From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 00:09:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 91D24237; Sun, 19 Jan 2014 00:09:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7220D1CEB; Sun, 19 Jan 2014 00:09:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J09c38011238; Sun, 19 Jan 2014 00:09:38 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J09bGs011233; Sun, 19 Jan 2014 00:09:37 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401190009.s0J09bGs011233@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 19 Jan 2014 00:09:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340224 - head/sysutils/atop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 00:09:38 -0000 Author: danilo Date: Sun Jan 19 00:09:37 2014 New Revision: 340224 URL: http://svnweb.freebsd.org/changeset/ports/340224 QAT: https://qat.redports.org/buildarchive/r340224/ Log: - Update from 2.0.2.b2 to 2.0.2.b3 while here - Add stage support PR: ports/185806 Submitted by: Alex Samorukov (maintainer) Modified: head/sysutils/atop/Makefile head/sysutils/atop/distinfo head/sysutils/atop/pkg-plist Modified: head/sysutils/atop/Makefile ============================================================================== --- head/sysutils/atop/Makefile Sat Jan 18 22:57:42 2014 (r340223) +++ head/sysutils/atop/Makefile Sun Jan 19 00:09:37 2014 (r340224) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= atop -PORTVERSION= 2.0.2.b2 +PORTVERSION= 2.0.2.b3 CATEGORIES= sysutils MAINTAINER= samm@os2.kiev.ua @@ -14,18 +14,16 @@ USE_GITHUB= yes GH_ACCOUNT= samm-git GH_PROJECT= atop-freebsd GH_TAGNAME= ${PORTNAME}-${PORTVERSION:C|b|fbsd.beta|} -GH_COMMIT= f9357ca +GH_COMMIT= 840de1c USES= ncurses MAKEFILE= BSDmakefile -MAN1= atop.1 atopsar.1 -MAN5= atoprc.5 LOGDIR?= /var/log/atop +PLIST_SUB+= LOGDIR="${LOGDIR}" +SUB_LIST= LOGDIR="${LOGDIR}" USE_RC_SUBR= atop -PLIST_SUB+= LOGDIR="${LOGDIR}" SUB_FILES= pkg-message -SUB_LIST= LOGDIR="${LOGDIR}" PORTDOCS= AUTHOR \ ChangeLog \ @@ -33,21 +31,17 @@ PORTDOCS= AUTHOR \ README \ README.FreeBSD -NO_STAGE= yes do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/atop ${PREFIX}/bin - @${LN} -sf ${PREFIX}/bin/atop ${PREFIX}/bin/atopsar -.for manpage in ${MAN1} - @${INSTALL_MAN} ${WRKSRC}/man/${manpage} ${MAN1PREFIX}/man/man1/ + ${INSTALL_PROGRAM} ${WRKSRC}/atop ${STAGEDIR}${PREFIX}/bin + ${LN} -sf atop ${STAGEDIR}${PREFIX}/bin/atopsar +.for manpage in atop.1 atopsar.1 + ${INSTALL_MAN} ${WRKSRC}/man/${manpage} ${STAGEDIR}${MAN1PREFIX}/man/man1/ .endfor - @${INSTALL_MAN} ${WRKSRC}/man/${MAN5} ${MAN5PREFIX}/man/man5/ - @${MKDIR} ${LOGDIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/man/atoprc.5 ${STAGEDIR}${MAN5PREFIX}/man/man5/ + @${MKDIR} ${STAGEDIR}${LOGDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor -.endif - @${CAT} ${PKGMESSAGE} .include Modified: head/sysutils/atop/distinfo ============================================================================== --- head/sysutils/atop/distinfo Sat Jan 18 22:57:42 2014 (r340223) +++ head/sysutils/atop/distinfo Sun Jan 19 00:09:37 2014 (r340224) @@ -1,2 +1,2 @@ -SHA256 (atop-2.0.2.b2.tar.gz) = 119d92437ec66aaffeb518956d6b92d31e7e303493717991a59ef060a22fedb0 -SIZE (atop-2.0.2.b2.tar.gz) = 179124 +SHA256 (atop-2.0.2.b3.tar.gz) = 48a451438327318d5b7eca39fc7674145c212f6c0a016bb7b7519677840657d5 +SIZE (atop-2.0.2.b3.tar.gz) = 179260 Modified: head/sysutils/atop/pkg-plist ============================================================================== --- head/sysutils/atop/pkg-plist Sat Jan 18 22:57:42 2014 (r340223) +++ head/sysutils/atop/pkg-plist Sun Jan 19 00:09:37 2014 (r340224) @@ -1,3 +1,7 @@ bin/atop bin/atopsar -@dirrmtry %%LOGDIR%% +man/man1/atop.1.gz +man/man1/atopsar.1.gz +man/man5/atoprc.5.gz +@exec if [ ! -d %%LOGDIR%% ] ; then mkdir %%LOGDIR%% ; fi +@unexec rmdir %%LOGDIR%% || true From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 01:12:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08084448; Sun, 19 Jan 2014 01:12:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DD0211104; Sun, 19 Jan 2014 01:12:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J1COlP037079; Sun, 19 Jan 2014 01:12:24 GMT (envelope-from nobutaka@svn.freebsd.org) Received: (from nobutaka@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J1CNM6037070; Sun, 19 Jan 2014 01:12:23 GMT (envelope-from nobutaka@svn.freebsd.org) Message-Id: <201401190112.s0J1CNM6037070@svn.freebsd.org> From: MANTANI Nobutaka Date: Sun, 19 Jan 2014 01:12:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340225 - in head/sysutils/dd_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.17 Precedence: list List-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, 19 Jan 2014 01:12:25 -0000 Author: nobutaka Date: Sun Jan 19 01:12:23 2014 New Revision: 340225 URL: http://svnweb.freebsd.org/changeset/ports/340225 QAT: https://qat.redports.org/buildarchive/r340225/ Log: Update to 1.40. Added: head/sysutils/dd_rescue/files/patch-dd_rescue.c (contents, props changed) head/sysutils/dd_rescue/files/patch-find_nonzero.h (contents, props changed) Modified: head/sysutils/dd_rescue/Makefile head/sysutils/dd_rescue/distinfo head/sysutils/dd_rescue/files/patch-Makefile Modified: head/sysutils/dd_rescue/Makefile ============================================================================== --- head/sysutils/dd_rescue/Makefile Sun Jan 19 00:09:37 2014 (r340224) +++ head/sysutils/dd_rescue/Makefile Sun Jan 19 01:12:23 2014 (r340225) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dd_rescue -PORTVERSION= 1.32 +PORTVERSION= 1.40 CATEGORIES= sysutils MASTER_SITES= http://www.garloff.de/kurt/linux/ddrescue/ \ http://fossies.org/unix/privat/ Modified: head/sysutils/dd_rescue/distinfo ============================================================================== --- head/sysutils/dd_rescue/distinfo Sun Jan 19 00:09:37 2014 (r340224) +++ head/sysutils/dd_rescue/distinfo Sun Jan 19 01:12:23 2014 (r340225) @@ -1,2 +1,2 @@ -SHA256 (dd_rescue-1.32.tar.gz) = 9e57d9b1a37d417ea5e2e0ae4de3b742d2370496034bc3a1133147dd9b400dbd -SIZE (dd_rescue-1.32.tar.gz) = 28968 +SHA256 (dd_rescue-1.40.tar.gz) = 54545ebbe2be00597d8c9ba3d51abcfdd7ba89f17d51974629e612c2619730ff +SIZE (dd_rescue-1.40.tar.gz) = 47107 Modified: head/sysutils/dd_rescue/files/patch-Makefile ============================================================================== --- head/sysutils/dd_rescue/files/patch-Makefile Sun Jan 19 00:09:37 2014 (r340224) +++ head/sysutils/dd_rescue/files/patch-Makefile Sun Jan 19 01:12:23 2014 (r340225) @@ -1,19 +1,23 @@ ---- Makefile.orig 2013-01-25 15:02:54.000000000 +0900 -+++ Makefile 2013-01-27 02:37:02.000000000 +0900 +--- Makefile.orig 2013-08-13 06:29:50.000000000 +0900 ++++ Makefile 2014-01-18 17:48:01.000000000 +0900 @@ -6,10 +6,6 @@ DESTDIR = -CC = gcc -RPM_OPT_FLAGS = -Os -Wall -g --CFLAGS = $(RPM_OPT_FLAGS) $(EXTRA_CFLAGS) +-CFLAGS = $(RPM_OPT_FLAGS) $(EXTRA_CFLAGS) -DHAVE_CONFIG_H -CFLAGS_OPT = $(CFLAGS) -O3 INSTALL = install INSTALLFLAGS = -s prefix = $(DESTDIR)/usr -@@ -26,12 +22,6 @@ - DEFINES = -DVERSION=\"$(VERSION)\" -D__COMPILER__="\"$(COMPILER)\"" - OUT = -o $@ +@@ -26,15 +22,9 @@ + INSTASROOT = -o root -g root + LIBDIR = /usr/lib + COMPILER = $(shell $(CC) --version | head -n1) +-DEFINES = -DVERSION=\"$(VERSION)\" -D__COMPILER__="\"$(COMPILER)\"" ++DEFINES = -DVERSION=\"$(VERSION)\" -D__COMPILER__="\"$(COMPILER)\"" -DHAVE_CONFIG_H + OUT = -o dd_rescue -ifeq ($(CC),wcl386) - CFLAGS = "-ox -wx $(EXTRA_CFLAGS)" @@ -21,6 +25,15 @@ - OUT = "" -endif - - default: $(TARGETS) + MACH := $(shell uname -m | tr A-Z a-z | sed 's/i[3456]86/i386/') + + ifeq ($(MACH),i386) +@@ -75,7 +65,7 @@ + $(CC) $(CFLAGS) -DNO_LIBDL $(DEFINES) $< $(OUT) $(OBJECTS) $(LIBDIR)/libfallocate.a + + dd_rescue: dd_rescue.c $(HEADERS) $(OBJECTS) +- $(CC) $(CFLAGS) $(DEFINES) $< $(OUT) $(OBJECTS) -ldl ++ $(CC) $(CFLAGS) $(DEFINES) $< $(OUT) $(OBJECTS) + + libfalloc-dl: dd_rescue - frandom.o: frandom.c Added: head/sysutils/dd_rescue/files/patch-dd_rescue.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dd_rescue/files/patch-dd_rescue.c Sun Jan 19 01:12:23 2014 (r340225) @@ -0,0 +1,24 @@ +--- dd_rescue.c.orig 2014-01-18 19:02:26.000000000 +0900 ++++ dd_rescue.c 2014-01-18 19:02:39.000000000 +0900 +@@ -1848,7 +1848,9 @@ + + const char* retstrdupcat3(const char* dir, char dirsep, const char* inm) + { +- char* ibase = basename(strdupa(inm)); ++ char* str = alloca(strlen(inm) + 1); ++ strcpy(str, inm); ++ char* ibase = basename(str); + const int dlen = strlen(dir) + (dirsep>0? 1: dirsep); + char* ret = (char*)malloc(dlen + strlen(inm) + 1); + strcpy(ret, dir); +@@ -1867,7 +1869,9 @@ + { + size_t oln = strlen(onm); + if (!strcmp(onm, ".")) { +- char* ret = strdup(basename(strdupa(iname))); ++ char* str = alloca(strlen(iname) + 1); ++ strcpy(str, iname); ++ char* ret = strdup(basename(str)); + LISTAPPEND(freenames, ret, charp); + return ret; + } Added: head/sysutils/dd_rescue/files/patch-find_nonzero.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dd_rescue/files/patch-find_nonzero.h Sun Jan 19 01:12:23 2014 (r340225) @@ -0,0 +1,10 @@ +--- find_nonzero.h.orig 2014-01-18 17:32:44.000000000 +0900 ++++ find_nonzero.h 2014-01-18 17:33:03.000000000 +0900 +@@ -12,6 +12,7 @@ + + #include + #include ++#include + + #ifdef HAVE_FFS + # define myffs(x) ffs(x) From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 01:16:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D75CE529; Sun, 19 Jan 2014 01:16:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B5BF9110D; Sun, 19 Jan 2014 01:16:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J1GMAC037702; Sun, 19 Jan 2014 01:16:22 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J1GM8s037699; Sun, 19 Jan 2014 01:16:22 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401190116.s0J1GM8s037699@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 19 Jan 2014 01:16:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340226 - head/devel/bzrtools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 01:16:23 -0000 Author: danilo Date: Sun Jan 19 01:16:21 2014 New Revision: 340226 URL: http://svnweb.freebsd.org/changeset/ports/340226 QAT: https://qat.redports.org/buildarchive/r340226/ Log: - Update from 2.5 to 2.6.0 - Add stage support - Remove RSYNC from OPTIONS_DEFAULT while here - Convert all "if's" to options helpers PR: ports/185728 Submitted by: Matthew D.Fuller (maintainer) Modified: head/devel/bzrtools/Makefile head/devel/bzrtools/distinfo head/devel/bzrtools/pkg-plist Modified: head/devel/bzrtools/Makefile ============================================================================== --- head/devel/bzrtools/Makefile Sun Jan 19 01:12:23 2014 (r340225) +++ head/devel/bzrtools/Makefile Sun Jan 19 01:16:21 2014 (r340226) @@ -2,36 +2,27 @@ # $FreeBSD$ PORTNAME= bzrtools -PORTVERSION= 2.5 -PORTREVISION= 1 +PORTVERSION= 2.6.0 CATEGORIES= devel -MASTER_SITES= https://launchpadlibrarian.net/90479443/ +MASTER_SITES= https://launchpad.net/bzrtools/stable/${PORTVERSION}/+download/ MAINTAINER= fullermd@over-yonder.net COMMENT= Extensions to devel/bzr +LICENSE= GPLv2 + RUN_DEPENDS= bzr:${PORTSDIR}/devel/bzr OPTIONS_DEFINE= GRAPHVIZ RSYNC GRAPHVIZ_DESC= graphviz for graph-ancestry RSYNC_DESC= rsync for rspush -OPTIONS_DEFAULT= RSYNC WRKSRC= ${WRKDIR}/bzrtools USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGVERSION= 2.5.0 PYDISTUTILS_PKGNAME= BzrTools -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MGRAPHVIZ} -RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz -.endif - -.if ${PORT_OPTIONS:MRSYNC} -RUN_DEPENDS+= rsync:${PORTSDIR}/net/rsync -.endif +GRAPHVIZ_RUN_DEPENDS= dot:${PORTSDIR}/graphics/graphviz +RSYNC_RUN_DEPENDS= rsync:${PORTSDIR}/net/rsync .include Modified: head/devel/bzrtools/distinfo ============================================================================== --- head/devel/bzrtools/distinfo Sun Jan 19 01:12:23 2014 (r340225) +++ head/devel/bzrtools/distinfo Sun Jan 19 01:16:21 2014 (r340226) @@ -1,2 +1,2 @@ -SHA256 (bzrtools-2.5.tar.gz) = bccff6fba6129013f92a7bf16e73efad159cabd7957f4de765068044f730f03f -SIZE (bzrtools-2.5.tar.gz) = 74508 +SHA256 (bzrtools-2.6.0.tar.gz) = 8b17fbba61dafc8dbefe1917a2ce084a8adc7650dee60add340615270dfb7f58 +SIZE (bzrtools-2.6.0.tar.gz) = 74748 Modified: head/devel/bzrtools/pkg-plist ============================================================================== --- head/devel/bzrtools/pkg-plist Sun Jan 19 01:12:23 2014 (r340225) +++ head/devel/bzrtools/pkg-plist Sun Jan 19 01:16:21 2014 (r340226) @@ -64,6 +64,9 @@ %%PYTHON_SITELIBDIR%%/bzrlib/plugins/bzrtools/rspush.py %%PYTHON_SITELIBDIR%%/bzrlib/plugins/bzrtools/rspush.pyc %%PYTHON_SITELIBDIR%%/bzrlib/plugins/bzrtools/rspush.pyo +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/bzrtools/setup.py +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/bzrtools/setup.pyc +%%PYTHON_SITELIBDIR%%/bzrlib/plugins/bzrtools/setup.pyo %%PYTHON_SITELIBDIR%%/bzrlib/plugins/bzrtools/shelf.py %%PYTHON_SITELIBDIR%%/bzrlib/plugins/bzrtools/shelf.pyc %%PYTHON_SITELIBDIR%%/bzrlib/plugins/bzrtools/shelf.pyo From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 02:04:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FE87D84; Sun, 19 Jan 2014 02:04:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B6B61391; Sun, 19 Jan 2014 02:04:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J24Nu3056001; Sun, 19 Jan 2014 02:04:23 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J24Mx0055998; Sun, 19 Jan 2014 02:04:22 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401190204.s0J24Mx0055998@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 19 Jan 2014 02:04:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340227 - in head/dns/ddclient: . 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.17 Precedence: list List-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, 19 Jan 2014 02:04:23 -0000 Author: danilo Date: Sun Jan 19 02:04:22 2014 New Revision: 340227 URL: http://svnweb.freebsd.org/changeset/ports/340227 QAT: https://qat.redports.org/buildarchive/r340227/ Log: - Update from 3.8.1 to 3.8.2 - Add stage support - Use options helpers - Use PLIST_FILES instead of pkg-plist PR: ports/185714 Submitted by: KATO Tsuguru Deleted: head/dns/ddclient/pkg-plist Modified: head/dns/ddclient/Makefile head/dns/ddclient/distinfo head/dns/ddclient/files/patch-ddclient Modified: head/dns/ddclient/Makefile ============================================================================== --- head/dns/ddclient/Makefile Sun Jan 19 01:16:21 2014 (r340226) +++ head/dns/ddclient/Makefile Sun Jan 19 02:04:22 2014 (r340227) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ddclient -PORTVERSION= 3.8.1 -PORTREVISION= 1 +PORTVERSION= 3.8.2 CATEGORIES= dns MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -12,51 +11,48 @@ COMMENT= Update dynamic DNS entries LICENSE= GPLv2 +NO_BUILD= yes + USE_BZIP2= yes USES= perl5 USE_PERL5= run -NO_BUILD= yes + USE_RC_SUBR= ${PORTNAME} +SUB_FILES= pkg-message ddclient_force + OPTIONS_DEFINE= SSL OPTIONS_DEFAULT=SSL -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MSSL} -RUN_DEPENDS+= p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL -.endif - -SUB_FILES= pkg-message ddclient_force -PKGMESSAGE= ${WRKDIR}/pkg-message +SSL_RUN_DEPENDS=ca_root_nss>0:${PORTSDIR}/security/ca_root_nss \ + p5-IO-Socket-SSL>0:${PORTSDIR}/security/p5-IO-Socket-SSL -PORTDOCS= COPYING COPYRIGHT Changelog README README.cisco README.ssl \ +PORTDOCS= COPYRIGHT Changelog README.cisco README.ssl README.md \ sample-etc_cron.d_ddclient sample-etc_dhclient-exit-hooks \ sample-etc_dhcpc_dhcpcd-eth0.exe sample-etc_ppp_ip-up.local +PLIST_FILES= etc/ddclient.conf.sample etc/periodic/daily/ddclient_force \ + sbin/ddclient +PLIST_DIRSTRY= etc/periodic/daily etc/periodic post-patch: - @${GREP} -lr '/usr' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' - @${REINPLACE_CMD} \ - -e 's|/tmp|/var/tmp|' \ - -e 's|/var/cache/ddclient|/var/tmp|' \ - -e '/PATH/s|/etc:/usr/local/lib:||' \ - -e 's|/usr.*perl|${PERL}|g' \ - -e 's|/usr/local|${LOCALBASE}|g' \ - -e 's|/etc/ddclient|${PREFIX}/etc|' \ - ${WRKSRC}/ddclient + @${GREP} -lR '/usr' ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ + 's|/usr|${PREFIX}|g' + @${REINPLACE_CMD} -e \ + 's|%%PERL%%|${PERL}| ; \ + s|%%ETCDIR%%|${ETCDIR}| ; \ + s|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/ddclient do-install: - @${INSTALL_DATA} ${WRKSRC}/sample-etc_ddclient.conf ${PREFIX}/etc/ddclient.conf.sample - @${INSTALL_SCRIPT} ${WRKSRC}/ddclient ${PREFIX}/sbin/ -.if ${PORT_OPTIONS:MDOCS} - @${INSTALL} -d ${DOCSDIR} - @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ -.endif - -post-install: - ${MKDIR} ${PREFIX}/etc/periodic/daily - ${INSTALL_SCRIPT} ${WRKDIR}/ddclient_force ${PREFIX}/etc/periodic/daily/ddclient_force - @${CAT} ${PKGMESSAGE} + (cd ${WRKSRC} && ${INSTALL_DATA} sample-etc_ddclient.conf \ + ${STAGEDIR}${PREFIX}/etc/ddclient.conf.sample) + (cd ${WRKSRC} && ${INSTALL_SCRIPT} ddclient \ + ${STAGEDIR}${PREFIX}/sbin) + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily + (cd ${WRKDIR} && ${INSTALL_SCRIPT} ddclient_force \ + ${STAGEDIR}${PREFIX}/etc/periodic/daily/ddclient_force) + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for i in ${PORTDOCS} + (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR}) +.endfor .include Modified: head/dns/ddclient/distinfo ============================================================================== --- head/dns/ddclient/distinfo Sun Jan 19 01:16:21 2014 (r340226) +++ head/dns/ddclient/distinfo Sun Jan 19 02:04:22 2014 (r340227) @@ -1,2 +1,2 @@ -SHA256 (ddclient-3.8.1.tar.bz2) = 77a82668a53fdbed1e05ad6febe6dbefb093e3922afb20b993d4ad9ee868258f -SIZE (ddclient-3.8.1.tar.bz2) = 43711 +SHA256 (ddclient-3.8.2.tar.bz2) = f343d2297b97b769949d4d6c3f603a8c52433acf2104245538808a2ea003ed5e +SIZE (ddclient-3.8.2.tar.bz2) = 41996 Modified: head/dns/ddclient/files/patch-ddclient ============================================================================== --- head/dns/ddclient/files/patch-ddclient Sun Jan 19 01:16:21 2014 (r340226) +++ head/dns/ddclient/files/patch-ddclient Sun Jan 19 02:04:22 2014 (r340227) @@ -1,19 +1,43 @@ --- ./ddclient.orig 2011-07-25 19:41:39.000000000 -0700 +++ ./ddclient 2011-07-25 19:41:48.000000000 -0700 -@@ -1,4 +1,3 @@ +@@ -1,5 +1,4 @@ -#!/usr/bin/perl -w - #!/usr/local/bin/perl -w +-#!/usr/local/bin/perl -w ++#!%%PERL%% -w ###################################################################### - # $Id: ddclient 130 2011-07-11 21:02:07Z wimpunk $ + # $Id: ddclient 157 2013-12-26 09:02:05Z wimpunk $ + # @@ -19,6 +18,7 @@ use Getopt::Long; use Sys::Hostname; use IO::Socket; +use POSIX 'setsid'; - my ($VERSION) = q$Revision: 130 $ =~ /(\d+)/; + my ($VERSION) = q$Revision: 157 $ =~ /(\d+)/; -@@ -668,6 +668,9 @@ +@@ -29,9 +29,9 @@ + $program =~ s/d$//; + my $now = time; + my $hostname = hostname(); +-my $etc = ($program =~ /test/i) ? './' : '/etc/ddclient/'; +-my $cachedir = ($program =~ /test/i) ? './' : '/var/cache/ddclient/'; +-my $savedir = ($program =~ /test/i) ? 'URL/' : '/tmp/'; ++my $etc = ($program =~ /test/i) ? './' : '%%ETCDIR%%/'; ++my $cachedir = ($program =~ /test/i) ? './' : '/var/tmp/'; ++my $savedir = ($program =~ /test/i) ? 'URL/' : '/var/tmp/'; + my $msgs = ''; + my $last_msgs = ''; + +@@ -39,7 +39,7 @@ + local $file = ''; + local $lineno = ''; + +-$ENV{'PATH'} = (exists($ENV{PATH}) ? "$ENV{PATH}:" : "") . "/sbin:/usr/sbin:/bin:/usr/bin:/etc:/usr/lib:"; ++$ENV{'PATH'} = (exists($ENV{PATH}) ? "$ENV{PATH}:" : "") . "/sbin:/usr/sbin:/bin:"; + + sub T_ANY {'any'}; + sub T_STRING {'string'}; +@@ -678,6 +678,9 @@ ; } elsif (opt('daemon')) { $SIG{'CHLD'} = 'IGNORE'; @@ -23,7 +47,7 @@ my $pid = fork; if ($pid < 0) { print STDERR "${program}: can not fork ($!)\n"; -@@ -675,10 +678,9 @@ +@@ -685,10 +688,9 @@ } elsif ($pid) { exit 0; } @@ -36,7 +60,7 @@ } # write out the pid file if we're daemon'ized -@@ -1463,17 +1465,17 @@ +@@ -1478,17 +1480,17 @@ ## execute the command. local *FD; if (! open(FD, $cmd)) { @@ -58,3 +82,11 @@ } else { $ok = 1; +@@ -1878,6 +1880,7 @@ + $sd = IO::Socket::SSL->new( + PeerAddr => $peer, + PeerPort => $port, ++ SSL_ca_file => '%%LOCALBASE%%/share/certs/ca-root-nss.crt', + Proto => 'tcp', + MultiHomed => 1, + Timeout => opt('timeout'), From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 02:20:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F7DBEEE; Sun, 19 Jan 2014 02:20:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4A11414CF; Sun, 19 Jan 2014 02:20:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J2KOWi062604; Sun, 19 Jan 2014 02:20:24 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J2KN7M062600; Sun, 19 Jan 2014 02:20:23 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401190220.s0J2KN7M062600@svn.freebsd.org> From: Rusmir Dusko Date: Sun, 19 Jan 2014 02:20:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340228 - in head/games/bomberclone: . 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.17 Precedence: list List-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, 19 Jan 2014 02:20:24 -0000 Author: nemysis Date: Sun Jan 19 02:20:23 2014 New Revision: 340228 URL: http://svnweb.freebsd.org/changeset/ports/340228 QAT: https://qat.redports.org/buildarchive/r340228/ Log: - Bump PORTREVISION - Simplify master site - Add licenses (GPLv2) - USES gmake instead of USE_GMAKE - Support STAGEDIR - Change DOCS and add DOCS Option - Add Desktop entry file - Mute FIND command - Use REINPLACE_CMD instead of simple patches - Add REINPLACE_CMD, install conditional DOCS - Recreate patches with make makepatch - Recreate pkg-plist with make makeplist, remove DOCS PR: ports/172482 Submitted by: nemysis (self) Approved by: maintainer timeout (14 months) Added: head/games/bomberclone/files/patch-src__single.c (contents, props changed) Deleted: head/games/bomberclone/files/patch-configure head/games/bomberclone/files/patch-src-single.c Modified: head/games/bomberclone/Makefile (contents, props changed) head/games/bomberclone/pkg-plist (contents, props changed) Modified: head/games/bomberclone/Makefile ============================================================================== --- head/games/bomberclone/Makefile Sun Jan 19 02:04:22 2014 (r340227) +++ head/games/bomberclone/Makefile Sun Jan 19 02:20:23 2014 (r340228) @@ -3,21 +3,44 @@ PORTNAME= bomberclone PORTVERSION= 0.11.9 +PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= http://master.dl.sourceforge.net/project/${PORTNAME}/${PORTNAME}/ +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/ MAINTAINER= edwin@mavetju.org COMMENT= Reimplementation of Atomic Bomber Man +LICENSE= GPLv2 + +USES= gmake USE_SDL= image mixer sdl GNU_CONFIGURE= yes -USE_GMAKE= yes CONFIGURE_ARGS= --target="" --disable-werror LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} CXXFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include -NO_STAGE= yes +PORTDOCS= AUTHORS ChangeLog README TODO + +OPTIONS_DEFINE= DOCS + +DESKTOP_ENTRIES="BomberMan clone" "" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" "" + post-extract: - ${FIND} ${WRKSRC} -type d -name CVS | ${XARGS} ${RM} -rf ; + @${FIND} ${WRKSRC} -type d -name CVS | ${XARGS} ${RM} -rf ; + +post-patch: + @${REINPLACE_CMD} -e 's|share/games/${PACKAGE}|share/${PACKAGE}|' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} \ + -e 's|install-data-am: install-bomberclonedocDATA|install-data-am: |' \ + ${WRKSRC}/Makefile.in + +post-install: + ${LN} -sf ${DATADIR}/pixmaps/${PORTNAME}.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/ + + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include Added: head/games/bomberclone/files/patch-src__single.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bomberclone/files/patch-src__single.c Sun Jan 19 02:20:23 2014 (r340228) @@ -0,0 +1,11 @@ +--- ./src/single.c.orig 2006-08-20 01:41:47.000000000 +0200 ++++ ./src/single.c 2014-01-19 02:30:56.000000000 +0100 +@@ -476,7 +476,7 @@ + }; + + +-inline int ++int + ai_checknewpos (_point pos, int d) + { + _point m; Modified: head/games/bomberclone/pkg-plist ============================================================================== --- head/games/bomberclone/pkg-plist Sun Jan 19 02:04:22 2014 (r340227) +++ head/games/bomberclone/pkg-plist Sun Jan 19 02:20:23 2014 (r340228) @@ -1,182 +1,174 @@ bin/bomberclone -%%DOCSDIR%%/AUTHORS -%%DOCSDIR%%/COPYING -%%DOCSDIR%%/ChangeLog -%%DOCSDIR%%/INSTALL -%%DOCSDIR%%/NEWS -%%DOCSDIR%%/README -%%DOCSDIR%%/TODO -%%DOCSDIR%%/bomberclone.nsi -@dirrm %%DOCSDIR%% -share/bomberclone/tileset/zbb_frog/stone.png -share/bomberclone/tileset/zbb_frog/block.png -share/bomberclone/tileset/zbb_frog/background.png -share/bomberclone/tileset/uccia_garbage/stone.png -share/bomberclone/tileset/uccia_garbage/dead.wav -share/bomberclone/tileset/uccia_garbage/block.png -share/bomberclone/tileset/uccia_garbage/background.png -share/bomberclone/tileset/tricked/stone.png -share/bomberclone/tileset/tricked/dead.wav -share/bomberclone/tileset/tricked/block.png -share/bomberclone/tileset/tricked/background.png -share/bomberclone/tileset/supermario/stone.png -share/bomberclone/tileset/supermario/block.png -share/bomberclone/tileset/supermario/background.png -share/bomberclone/tileset/sheep/stone.png -share/bomberclone/tileset/sheep/map.nfo -share/bomberclone/tileset/sheep/block.png -share/bomberclone/tileset/sheep/background.png -share/bomberclone/tileset/radioactive/stone.png -share/bomberclone/tileset/radioactive/block.png -share/bomberclone/tileset/radioactive/background.png -share/bomberclone/tileset/modern/stone.png -share/bomberclone/tileset/modern/dead.wav -share/bomberclone/tileset/modern/block.png -share/bomberclone/tileset/modern/background.png -share/bomberclone/tileset/jungle/stone.png -share/bomberclone/tileset/jungle/block.png -share/bomberclone/tileset/jungle/background.png -share/bomberclone/tileset/hell/stone.png -share/bomberclone/tileset/hell/map.nfo -share/bomberclone/tileset/hell/block.png -share/bomberclone/tileset/hell/background.png -share/bomberclone/tileset/farm/stone.png -share/bomberclone/tileset/farm/map.nfo -share/bomberclone/tileset/farm/block96.png -share/bomberclone/tileset/farm/background.png -share/bomberclone/tileset/default/tunnel.png -share/bomberclone/tileset/default/stone.png -share/bomberclone/tileset/default/sptrigger.png -share/bomberclone/tileset/default/sprow.png -share/bomberclone/tileset/default/sppush.png -share/bomberclone/tileset/default/spmoved.png -share/bomberclone/tileset/default/spliquid.png -share/bomberclone/tileset/default/spkick.png -share/bomberclone/tileset/default/pwshoe.png -share/bomberclone/tileset/default/pwfire.png -share/bomberclone/tileset/default/pwdeath.png -share/bomberclone/tileset/default/pwbomb.png -share/bomberclone/tileset/default/powerup.png -share/bomberclone/tileset/default/powersp.png -share/bomberclone/tileset/default/powerbad.png -share/bomberclone/tileset/default/fire.png -share/bomberclone/tileset/default/explode.wav -share/bomberclone/tileset/default/drop.wav -share/bomberclone/tileset/default/dead.wav -share/bomberclone/tileset/default/bomb.png -share/bomberclone/tileset/default/block.png -share/bomberclone/tileset/default/background.png -share/bomberclone/tileset/cucumber/stone.png -share/bomberclone/tileset/cucumber/powerup.png -share/bomberclone/tileset/cucumber/powersp.png -share/bomberclone/tileset/cucumber/powerbad.png -share/bomberclone/tileset/cucumber/fire.png -share/bomberclone/tileset/cucumber/drop.wav -share/bomberclone/tileset/cucumber/dead.wav -share/bomberclone/tileset/cucumber/block.png -share/bomberclone/tileset/cucumber/background.png -share/bomberclone/tileset/classic/stone.png -share/bomberclone/tileset/classic/block.png -share/bomberclone/tileset/classic/background.png -share/bomberclone/tileset/cementery/stone96.png -share/bomberclone/tileset/cementery/map.nfo -share/bomberclone/tileset/cementery/block96.png -share/bomberclone/tileset/cementery/background.png -share/bomberclone/player/respawn.png -share/bomberclone/player/playersick.png -share/bomberclone/player/player7.png -share/bomberclone/player/player6.png -share/bomberclone/player/player5.png -share/bomberclone/player/player4.png -share/bomberclone/player/player3.png -share/bomberclone/player/player2.png -share/bomberclone/player/player1.png -share/bomberclone/player/player0.png -share/bomberclone/player/dead0.png -share/bomberclone/player/ghost.png -share/bomberclone/pixmaps/bomberclone.png -share/bomberclone/pixmaps/bomberclone.ico -share/bomberclone/music/zb-tnt.xm -share/bomberclone/music/slice_me_nice.xm -share/bomberclone/music/mario_is_a_weenie.xm -share/bomberclone/music/cinderella_clown.mod -share/bomberclone/music/cerror-bomberclone_numero_2.xm -share/bomberclone/music/cerror-bobmberclone.xm -share/bomberclone/maps/third.map -share/bomberclone/maps/smalfull.map -share/bomberclone/maps/smal.map -share/bomberclone/maps/second.map -share/bomberclone/maps/kitutou2.map -share/bomberclone/maps/kitutou1.map -share/bomberclone/maps/fourth.map -share/bomberclone/maps/firstmap.map -share/bomberclone/maps/first.map -share/bomberclone/gfx/menuselect.png -share/bomberclone/gfx/menulist1_8.png -share/bomberclone/gfx/menulist1_7.png -share/bomberclone/gfx/menulist1_6.png -share/bomberclone/gfx/menulist1_5.png -share/bomberclone/gfx/menulist1_4.png -share/bomberclone/gfx/menulist1_3.png -share/bomberclone/gfx/menulist1_2.png -share/bomberclone/gfx/menulist1_1.png -share/bomberclone/gfx/menulist1_0.png -share/bomberclone/gfx/menulist0_8.png -share/bomberclone/gfx/menulist0_7.png -share/bomberclone/gfx/menulist0_6.png -share/bomberclone/gfx/menulist0_5.png -share/bomberclone/gfx/menulist0_4.png -share/bomberclone/gfx/menulist0_3.png -share/bomberclone/gfx/menulist0_2.png -share/bomberclone/gfx/menulist0_1.png -share/bomberclone/gfx/menulist0_0.png -share/bomberclone/gfx/menuentry1_2.png -share/bomberclone/gfx/menuentry1_1.png -share/bomberclone/gfx/menuentry1_0.png -share/bomberclone/gfx/menuentry0_2.png -share/bomberclone/gfx/menuentry0_1.png -share/bomberclone/gfx/menuentry0_0.png -share/bomberclone/gfx/menubutton2_2.png -share/bomberclone/gfx/menubutton2_1.png -share/bomberclone/gfx/menubutton2_0.png -share/bomberclone/gfx/menubutton1_2.png -share/bomberclone/gfx/menubutton1_1.png -share/bomberclone/gfx/menubutton1_0.png -share/bomberclone/gfx/menubutton0_2.png -share/bomberclone/gfx/menubutton0_1.png -share/bomberclone/gfx/menubutton0_0.png -share/bomberclone/gfx/menu8.png -share/bomberclone/gfx/menu7.png -share/bomberclone/gfx/menu6.png -share/bomberclone/gfx/menu5.png -share/bomberclone/gfx/menu4.png -share/bomberclone/gfx/menu3.png -share/bomberclone/gfx/menu2.png -share/bomberclone/gfx/menu1.png -share/bomberclone/gfx/menu0.png -share/bomberclone/gfx/logo1.png -share/bomberclone/gfx/logo.png -share/bomberclone/gfx/font2.png -share/bomberclone/gfx/font1.png -share/bomberclone/gfx/font0.png -@dirrm share/bomberclone/tileset/zbb_frog -@dirrm share/bomberclone/tileset/uccia_garbage -@dirrm share/bomberclone/tileset/tricked -@dirrm share/bomberclone/tileset/supermario -@dirrm share/bomberclone/tileset/sheep -@dirrm share/bomberclone/tileset/radioactive -@dirrm share/bomberclone/tileset/modern -@dirrm share/bomberclone/tileset/jungle -@dirrm share/bomberclone/tileset/hell -@dirrm share/bomberclone/tileset/farm -@dirrm share/bomberclone/tileset/default -@dirrm share/bomberclone/tileset/cucumber -@dirrm share/bomberclone/tileset/classic -@dirrm share/bomberclone/tileset/cementery -@dirrm share/bomberclone/tileset -@dirrm share/bomberclone/player -@dirrm share/bomberclone/pixmaps -@dirrm share/bomberclone/music -@dirrm share/bomberclone/maps -@dirrm share/bomberclone/gfx -@dirrm share/bomberclone +%%DATADIR%%/gfx/font0.png +%%DATADIR%%/gfx/font1.png +%%DATADIR%%/gfx/font2.png +%%DATADIR%%/gfx/logo.png +%%DATADIR%%/gfx/logo1.png +%%DATADIR%%/gfx/menu0.png +%%DATADIR%%/gfx/menu1.png +%%DATADIR%%/gfx/menu2.png +%%DATADIR%%/gfx/menu3.png +%%DATADIR%%/gfx/menu4.png +%%DATADIR%%/gfx/menu5.png +%%DATADIR%%/gfx/menu6.png +%%DATADIR%%/gfx/menu7.png +%%DATADIR%%/gfx/menu8.png +%%DATADIR%%/gfx/menubutton0_0.png +%%DATADIR%%/gfx/menubutton0_1.png +%%DATADIR%%/gfx/menubutton0_2.png +%%DATADIR%%/gfx/menubutton1_0.png +%%DATADIR%%/gfx/menubutton1_1.png +%%DATADIR%%/gfx/menubutton1_2.png +%%DATADIR%%/gfx/menubutton2_0.png +%%DATADIR%%/gfx/menubutton2_1.png +%%DATADIR%%/gfx/menubutton2_2.png +%%DATADIR%%/gfx/menuentry0_0.png +%%DATADIR%%/gfx/menuentry0_1.png +%%DATADIR%%/gfx/menuentry0_2.png +%%DATADIR%%/gfx/menuentry1_0.png +%%DATADIR%%/gfx/menuentry1_1.png +%%DATADIR%%/gfx/menuentry1_2.png +%%DATADIR%%/gfx/menulist0_0.png +%%DATADIR%%/gfx/menulist0_1.png +%%DATADIR%%/gfx/menulist0_2.png +%%DATADIR%%/gfx/menulist0_3.png +%%DATADIR%%/gfx/menulist0_4.png +%%DATADIR%%/gfx/menulist0_5.png +%%DATADIR%%/gfx/menulist0_6.png +%%DATADIR%%/gfx/menulist0_7.png +%%DATADIR%%/gfx/menulist0_8.png +%%DATADIR%%/gfx/menulist1_0.png +%%DATADIR%%/gfx/menulist1_1.png +%%DATADIR%%/gfx/menulist1_2.png +%%DATADIR%%/gfx/menulist1_3.png +%%DATADIR%%/gfx/menulist1_4.png +%%DATADIR%%/gfx/menulist1_5.png +%%DATADIR%%/gfx/menulist1_6.png +%%DATADIR%%/gfx/menulist1_7.png +%%DATADIR%%/gfx/menulist1_8.png +%%DATADIR%%/gfx/menuselect.png +%%DATADIR%%/maps/first.map +%%DATADIR%%/maps/firstmap.map +%%DATADIR%%/maps/fourth.map +%%DATADIR%%/maps/kitutou1.map +%%DATADIR%%/maps/kitutou2.map +%%DATADIR%%/maps/second.map +%%DATADIR%%/maps/smal.map +%%DATADIR%%/maps/smalfull.map +%%DATADIR%%/maps/third.map +%%DATADIR%%/music/cerror-bobmberclone.xm +%%DATADIR%%/music/cerror-bomberclone_numero_2.xm +%%DATADIR%%/music/cinderella_clown.mod +%%DATADIR%%/music/mario_is_a_weenie.xm +%%DATADIR%%/music/slice_me_nice.xm +%%DATADIR%%/music/zb-tnt.xm +%%DATADIR%%/pixmaps/bomberclone.ico +%%DATADIR%%/pixmaps/bomberclone.png +%%DATADIR%%/player/dead0.png +%%DATADIR%%/player/ghost.png +%%DATADIR%%/player/player0.png +%%DATADIR%%/player/player1.png +%%DATADIR%%/player/player2.png +%%DATADIR%%/player/player3.png +%%DATADIR%%/player/player4.png +%%DATADIR%%/player/player5.png +%%DATADIR%%/player/player6.png +%%DATADIR%%/player/player7.png +%%DATADIR%%/player/playersick.png +%%DATADIR%%/player/respawn.png +%%DATADIR%%/tileset/cementery/background.png +%%DATADIR%%/tileset/cementery/block96.png +%%DATADIR%%/tileset/cementery/map.nfo +%%DATADIR%%/tileset/cementery/stone96.png +%%DATADIR%%/tileset/classic/background.png +%%DATADIR%%/tileset/classic/block.png +%%DATADIR%%/tileset/classic/stone.png +%%DATADIR%%/tileset/cucumber/background.png +%%DATADIR%%/tileset/cucumber/block.png +%%DATADIR%%/tileset/cucumber/dead.wav +%%DATADIR%%/tileset/cucumber/drop.wav +%%DATADIR%%/tileset/cucumber/fire.png +%%DATADIR%%/tileset/cucumber/powerbad.png +%%DATADIR%%/tileset/cucumber/powersp.png +%%DATADIR%%/tileset/cucumber/powerup.png +%%DATADIR%%/tileset/cucumber/stone.png +%%DATADIR%%/tileset/default/background.png +%%DATADIR%%/tileset/default/block.png +%%DATADIR%%/tileset/default/bomb.png +%%DATADIR%%/tileset/default/dead.wav +%%DATADIR%%/tileset/default/drop.wav +%%DATADIR%%/tileset/default/explode.wav +%%DATADIR%%/tileset/default/fire.png +%%DATADIR%%/tileset/default/powerbad.png +%%DATADIR%%/tileset/default/powersp.png +%%DATADIR%%/tileset/default/powerup.png +%%DATADIR%%/tileset/default/pwbomb.png +%%DATADIR%%/tileset/default/pwdeath.png +%%DATADIR%%/tileset/default/pwfire.png +%%DATADIR%%/tileset/default/pwshoe.png +%%DATADIR%%/tileset/default/spkick.png +%%DATADIR%%/tileset/default/spliquid.png +%%DATADIR%%/tileset/default/spmoved.png +%%DATADIR%%/tileset/default/sppush.png +%%DATADIR%%/tileset/default/sprow.png +%%DATADIR%%/tileset/default/sptrigger.png +%%DATADIR%%/tileset/default/stone.png +%%DATADIR%%/tileset/default/tunnel.png +%%DATADIR%%/tileset/farm/background.png +%%DATADIR%%/tileset/farm/block96.png +%%DATADIR%%/tileset/farm/map.nfo +%%DATADIR%%/tileset/farm/stone.png +%%DATADIR%%/tileset/hell/background.png +%%DATADIR%%/tileset/hell/block.png +%%DATADIR%%/tileset/hell/map.nfo +%%DATADIR%%/tileset/hell/stone.png +%%DATADIR%%/tileset/jungle/background.png +%%DATADIR%%/tileset/jungle/block.png +%%DATADIR%%/tileset/jungle/stone.png +%%DATADIR%%/tileset/modern/background.png +%%DATADIR%%/tileset/modern/block.png +%%DATADIR%%/tileset/modern/dead.wav +%%DATADIR%%/tileset/modern/stone.png +%%DATADIR%%/tileset/radioactive/background.png +%%DATADIR%%/tileset/radioactive/block.png +%%DATADIR%%/tileset/radioactive/stone.png +%%DATADIR%%/tileset/sheep/background.png +%%DATADIR%%/tileset/sheep/block.png +%%DATADIR%%/tileset/sheep/map.nfo +%%DATADIR%%/tileset/sheep/stone.png +%%DATADIR%%/tileset/supermario/background.png +%%DATADIR%%/tileset/supermario/block.png +%%DATADIR%%/tileset/supermario/stone.png +%%DATADIR%%/tileset/tricked/background.png +%%DATADIR%%/tileset/tricked/block.png +%%DATADIR%%/tileset/tricked/dead.wav +%%DATADIR%%/tileset/tricked/stone.png +%%DATADIR%%/tileset/uccia_garbage/background.png +%%DATADIR%%/tileset/uccia_garbage/block.png +%%DATADIR%%/tileset/uccia_garbage/dead.wav +%%DATADIR%%/tileset/uccia_garbage/stone.png +%%DATADIR%%/tileset/zbb_frog/background.png +%%DATADIR%%/tileset/zbb_frog/block.png +%%DATADIR%%/tileset/zbb_frog/stone.png +share/pixmaps/bomberclone.png +@dirrm %%DATADIR%%/tileset/zbb_frog +@dirrm %%DATADIR%%/tileset/uccia_garbage +@dirrm %%DATADIR%%/tileset/tricked +@dirrm %%DATADIR%%/tileset/supermario +@dirrm %%DATADIR%%/tileset/sheep +@dirrm %%DATADIR%%/tileset/radioactive +@dirrm %%DATADIR%%/tileset/modern +@dirrm %%DATADIR%%/tileset/jungle +@dirrm %%DATADIR%%/tileset/hell +@dirrm %%DATADIR%%/tileset/farm +@dirrm %%DATADIR%%/tileset/default +@dirrm %%DATADIR%%/tileset/cucumber +@dirrm %%DATADIR%%/tileset/classic +@dirrm %%DATADIR%%/tileset/cementery +@dirrm %%DATADIR%%/tileset +@dirrm %%DATADIR%%/player +@dirrm %%DATADIR%%/pixmaps +@dirrm %%DATADIR%%/music +@dirrm %%DATADIR%%/maps +@dirrm %%DATADIR%%/gfx +@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 02:36:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7906B138; Sun, 19 Jan 2014 02:36:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A0AC1593; Sun, 19 Jan 2014 02:36:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J2aQWm068110; Sun, 19 Jan 2014 02:36:26 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J2aPq2068106; Sun, 19 Jan 2014 02:36:25 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401190236.s0J2aPq2068106@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 19 Jan 2014 02:36:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340229 - in head/databases/opendbx: . 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.17 Precedence: list List-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, 19 Jan 2014 02:36:26 -0000 Author: danilo Date: Sun Jan 19 02:36:25 2014 New Revision: 340229 URL: http://svnweb.freebsd.org/changeset/ports/340229 QAT: https://qat.redports.org/buildarchive/r340229/ Log: - Update from 1.4.5 to 1.4.6 - Use options helpers - Add stage support while here - Define LICENSE properly - Convert USE_GMAKE to USES - Remove the indefinite article from COMMENT PR: ports/185532 Submitted by: Ralf van der Enden (maintainer) Modified: head/databases/opendbx/Makefile head/databases/opendbx/distinfo head/databases/opendbx/files/patch-Makefile.in head/databases/opendbx/pkg-plist Modified: head/databases/opendbx/Makefile ============================================================================== --- head/databases/opendbx/Makefile Sun Jan 19 02:20:23 2014 (r340228) +++ head/databases/opendbx/Makefile Sun Jan 19 02:36:25 2014 (r340229) @@ -2,15 +2,16 @@ # $FreeBSD$ PORTNAME= opendbx -PORTVERSION= 1.4.5 -PORTREVISION= 2 +PORTVERSION= 1.4.6 CATEGORIES= databases MASTER_SITES= http://www.linuxnetworks.de/opendbx/download/ MAINTAINER= tremere@cainites.net -COMMENT= A C library for accessing databases with a single API +COMMENT= C library for accessing databases with a single API -USE_GMAKE= YES +LICENSE= LGPL21 + +USES= gmake USE_AUTOTOOLS= libtool CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} @@ -21,71 +22,54 @@ USE_LDCONFIG= ${PREFIX}/lib/opendbx OPTIONS_DEFINE= NLS OPTIONS_MULTI= DRIVER -OPTIONS_MULTI_DRIVER= MYSQL PGSQL SQLITE2 MSSQL SYBASE +OPTIONS_MULTI_DRIVER= MYSQL PGSQL SQLITE SQLITE3 MSSQL SYBASE OPTIONS_DEFAULT= MYSQL -SQLITE2_DESC= SQLite 2 database -SYBASE_DESC= Sybase database +SQLITE_DESC= SQLite 2 database support +SYBASE_DESC= Sybase database support DRIVER_DESC= Database drivers -NO_STAGE= yes +OPTIONS_SUB= YES +MYSQL_USE= MYSQL=YES +MYSQL_CPPFLAGS= -I${LOCALBASE}/include/mysql +MYSQL_LDFLAGS= -L${LOCALBASE}/lib/mysql + +PGSQL_USE= PGSQL=YES + +SQLITE_LIB_DEPENDS= libsqlite.so:${PORTSDIR}/databases/sqlite2 + +SQLITE3_USE= SQLITE=3 + +MSSQL_LIB_DEPENDS= sybdb:${PORTSDIR}/databases/freetds + +SYBASE_LIB_DEPENDS= ct:${PORTSDIR}/databases/freetds + +NLS_USES= gettext +NLS_CONFIGURE_DISABLE= nls + .include .if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL?= YES -CONFIGURE_MODULES+= "mysql" -CPPFLAGS+= -I${LOCALBASE}/include/mysql -LDFLAGS+= -L${LOCALBASE}/lib/mysql -PLIST_SUB+= WITHMYSQL="" -.else -PLIST_SUB+= WITHMYSQL="@comment " +CONFIGURE_MODULES+= mysql .endif .if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL?= YES -CONFIGURE_MODULES+= "pgsql" -PLIST_SUB+= WITHPGSQL="" -.else -PLIST_SUB+= WITHPGSQL="@comment " +CONFIGURE_MODULES+= pgsql .endif .if ${PORT_OPTIONS:MSQLITE} -LIB_DEPENDS+= libsqlite.so:${PORTSDIR}/databases/sqlite2 -CONFIGURE_MODULES+= "sqlite" -PLIST_SUB+= WITHSQLITE="" -.else -PLIST_SUB+= WITHSQLITE="@comment " +CONFIGURE_MODULES+= sqlite .endif .if ${PORT_OPTIONS:MSQLITE3} -LIB_DEPENDS+= libsqlite3.so:${PORTSDIR}/databases/sqlite3 -CONFIGURE_MODULES+= "sqlite3" -PLIST_SUB+= WITHSQLITE3="" -.else -PLIST_SUB+= WITHSQLITE3="@comment " +CONFIGURE_MODULES+= sqlite3 .endif .if ${PORT_OPTIONS:MMSSQL} -LIB_DEPENDS+= libsybdb.so:${PORTSDIR}/databases/freetds -CONFIGURE_MODULES+= "mssql" -PLIST_SUB+= WITHMSSQL="" -.else -PLIST_SUB+= WITHMSSQL="@comment " +CONFIGURE_MODULES+= mssql .endif .if ${PORT_OPTIONS:MSYBASE} -LIB_DEPENDS+= libct.so:${PORTSDIR}/databases/freetds -CONFIGURE_MODULES+= "sybase" -PLIST_SUB+= WITHSYBASE="" -.else -PLIST_SUB+= WITHSYBASE="@comment " -.endif - -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " +CONFIGURE_MODULES+= sybase .endif .include Modified: head/databases/opendbx/distinfo ============================================================================== --- head/databases/opendbx/distinfo Sun Jan 19 02:20:23 2014 (r340228) +++ head/databases/opendbx/distinfo Sun Jan 19 02:36:25 2014 (r340229) @@ -1,2 +1,2 @@ -SHA256 (opendbx-1.4.5.tar.gz) = 206c998f370d1677a5692a64941470205dc6cd8ad95be1af6b033df50a6431cd -SIZE (opendbx-1.4.5.tar.gz) = 582915 +SHA256 (opendbx-1.4.6.tar.gz) = 2246a03812c7d90f10194ad01c2213a7646e383000a800277c6fb8d2bf81497c +SIZE (opendbx-1.4.6.tar.gz) = 587514 Modified: head/databases/opendbx/files/patch-Makefile.in ============================================================================== --- head/databases/opendbx/files/patch-Makefile.in Sun Jan 19 02:20:23 2014 (r340228) +++ head/databases/opendbx/files/patch-Makefile.in Sun Jan 19 02:36:25 2014 (r340229) @@ -1,6 +1,6 @@ ---- Makefile.in.orig 2009-08-07 22:52:54.000000000 -0300 -+++ Makefile.in 2009-08-07 22:54:01.000000000 -0300 -@@ -260,7 +260,7 @@ +--- ./Makefile.in.orig 2012-06-10 18:33:53.000000000 -0300 ++++ ./Makefile.in 2014-01-19 00:08:50.000000000 -0200 +@@ -308,7 +308,7 @@ opendbx.spec \ ABOUT-NLS Modified: head/databases/opendbx/pkg-plist ============================================================================== --- head/databases/opendbx/pkg-plist Sun Jan 19 02:20:23 2014 (r340228) +++ head/databases/opendbx/pkg-plist Sun Jan 19 02:36:25 2014 (r340229) @@ -17,30 +17,30 @@ libdata/pkgconfig/opendbxplus.pc %%NLS%%share/locale/de/LC_MESSAGES/opendbx-utils.mo %%NLS%%share/locale/en@quot/LC_MESSAGES/opendbx.mo %%NLS%%share/locale/en@quot/LC_MESSAGES/opendbx-utils.mo -%%WITHPGSQL%%lib/opendbx/libpgsqlbackend.a -%%WITHPGSQL%%lib/opendbx/libpgsqlbackend.la -%%WITHPGSQL%%lib/opendbx/libpgsqlbackend.so -%%WITHPGSQL%%lib/opendbx/libpgsqlbackend.so.3 -%%WITHMYSQL%%lib/opendbx/libmysqlbackend.a -%%WITHMYSQL%%lib/opendbx/libmysqlbackend.la -%%WITHMYSQL%%lib/opendbx/libmysqlbackend.so -%%WITHMYSQL%%lib/opendbx/libmysqlbackend.so.3 -%%WITHSQLITE%%lib/opendbx/libsqlitebackend.a -%%WITHSQLITE%%lib/opendbx/libsqlitebackend.la -%%WITHSQLITE%%lib/opendbx/libsqlitebackend.so -%%WITHSQLITE%%lib/opendbx/libsqlitebackend.so.3 -%%WITHSQLITE3%%lib/opendbx/libsqlite3backend.a -%%WITHSQLITE3%%lib/opendbx/libsqlite3backend.la -%%WITHSQLITE3%%lib/opendbx/libsqlite3backend.so -%%WITHSQLITE3%%lib/opendbx/libsqlite3backend.so.3 -%%WITHMSSQL%%lib/opendbx/libmssqlbackend.a -%%WITHMSSQL%%lib/opendbx/libmssqlbackend.la -%%WITHMSSQL%%lib/opendbx/libmssqlbackend.so -%%WITHMSSQL%%lib/opendbx/libmssqlbackend.so.3 -%%WITHSYBASE%%lib/opendbx/libsybasebackend.a -%%WITHSYBASE%%lib/opendbx/libsybasebackend.la -%%WITHSYBASE%%lib/opendbx/libsybasebackend.so -%%WITHSYBASE%%lib/opendbx/libsybasebackend.so.3 +%%PGSQL%%lib/opendbx/libpgsqlbackend.a +%%PGSQL%%lib/opendbx/libpgsqlbackend.la +%%PGSQL%%lib/opendbx/libpgsqlbackend.so +%%PGSQL%%lib/opendbx/libpgsqlbackend.so.3 +%%MYSQL%%lib/opendbx/libmysqlbackend.a +%%MYSQL%%lib/opendbx/libmysqlbackend.la +%%MYSQL%%lib/opendbx/libmysqlbackend.so +%%MYSQL%%lib/opendbx/libmysqlbackend.so.3 +%%SQLITE%%lib/opendbx/libsqlitebackend.a +%%SQLITE%%lib/opendbx/libsqlitebackend.la +%%SQLITE%%lib/opendbx/libsqlitebackend.so +%%SQLITE%%lib/opendbx/libsqlitebackend.so.3 +%%SQLITE3%%lib/opendbx/libsqlite3backend.a +%%SQLITE3%%lib/opendbx/libsqlite3backend.la +%%SQLITE3%%lib/opendbx/libsqlite3backend.so +%%SQLITE3%%lib/opendbx/libsqlite3backend.so.3 +%%MSSQL%%lib/opendbx/libmssqlbackend.a +%%MSSQL%%lib/opendbx/libmssqlbackend.la +%%MSSQL%%lib/opendbx/libmssqlbackend.so +%%MSSQL%%lib/opendbx/libmssqlbackend.so.3 +%%SYBASE%%lib/opendbx/libsybasebackend.a +%%SYBASE%%lib/opendbx/libsybasebackend.la +%%SYBASE%%lib/opendbx/libsybasebackend.so +%%SYBASE%%lib/opendbx/libsybasebackend.so.3 @dirrm include/opendbx @dirrm lib/opendbx @dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 05:57:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DFEFE4EE; Sun, 19 Jan 2014 05:57:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CBF14118E; Sun, 19 Jan 2014 05:57:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J5vUtC044192; Sun, 19 Jan 2014 05:57:30 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J5vUEc044186; Sun, 19 Jan 2014 05:57:30 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201401190557.s0J5vUEc044186@svn.freebsd.org> From: TAKATSU Tomonari Date: Sun, 19 Jan 2014 05:57:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340230 - in head: . devel/astah-community X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 05:57:31 -0000 Author: tota Date: Sun Jan 19 05:57:29 2014 New Revision: 340230 URL: http://svnweb.freebsd.org/changeset/ports/340230 QAT: https://qat.redports.org/buildarchive/r340230/ Log: - Update to 6.8.0 - Make docs and examples unconditional to stage - Update RESTRICTED and LEGAL in sync Modified: head/LEGAL head/devel/astah-community/Makefile head/devel/astah-community/distinfo Modified: head/LEGAL ============================================================================== --- head/LEGAL Sun Jan 19 02:36:25 2014 (r340229) +++ head/LEGAL Sun Jan 19 05:57:29 2014 (r340230) @@ -41,7 +41,7 @@ annelid-* games/annelid No redistribut apache2/mod_h264_streaming-* www/mod_h264_streaming No commercial use AquaGatekeeper* net/AquaGatekeeper No redistribution allowed armyops*-linux.run games/linux-americasarmy Redistribution is limited -astah-community-*.zip devel/astah-community License restrictions +astah-community-*.zip devel/astah-community License restrictions -- see http://astah.net/faq/community/enduser-license-agreement asWedit-* www/aswedit Commercial software atari800/* emulators/atari800 xf25 contains copyright ROMs and cannot be distributed bamg* math/bamg Contact author personally regarding commercial use Modified: head/devel/astah-community/Makefile ============================================================================== --- head/devel/astah-community/Makefile Sun Jan 19 02:36:25 2014 (r340229) +++ head/devel/astah-community/Makefile Sun Jan 19 05:57:29 2014 (r340230) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= astah -PORTVERSION= 6.7.0 +PORTVERSION= 6.8.0 CATEGORIES= devel java MASTER_SITES= # PKGNAMESUFFIX= -community @@ -16,12 +16,12 @@ LICENSE_NAME= End User License Agreement LICENSE_TEXT= ${RESTRICTED} LICENSE_PERMS= no-dist-mirror no-dist-sell no-pkg-mirror no-pkg-sell no-auto-accept -RESTRICTED= See http://astah.net/faq/community/enduser-license-agreement +RESTRICTED= License restrictions -- See http://astah.net/faq/community/enduser-license-agreement USE_ZIP= yes USE_JAVA= yes JAVA_VERSION= 1.7+ -REVISION= 43495 +REVISION= d254c5 WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX:S!-!_!} @@ -58,33 +58,29 @@ IGNORE= needs you to fetch manually the post-patch: .for script in ${PLIST_FILES:S!bin/!!} - ${REINPLACE_CMD} -e "s!%%JAVA_HOME%%!${JAVA_HOME}!g; \ + @${REINPLACE_CMD} -e "s!%%JAVA_HOME%%!${JAVA_HOME}!g; \ s!%%DATADIR%%!${DATADIR}!" \ ${WRKSRC}/${script} .endfor .if ${PORT_OPTIONS:MDOCS} - ${REINPLACE_CMD} 's/png\\/png\//' ${WRKSRC}/api/en/doc/astahAPI_reference.html + @${REINPLACE_CMD} 's/png\\/png\//' ${WRKSRC}/api/en/doc/astahAPI_reference.html .endif do-install: .for script in ${PLIST_FILES:S!bin/!!} ${INSTALL_SCRIPT} ${WRKSRC}/${script} ${STAGEDIR}${PREFIX}/bin .endfor - ${MKDIR} ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} (cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA}" ${STAGEDIR}${DATADIR}) -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for docfile in ${PORTDOCS:Napi} ${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR} .endfor - ${MKDIR} ${STAGEDIR}${DOCSDIR}/api + @${MKDIR} ${STAGEDIR}${DOCSDIR}/api (cd ${WRKSRC}/api && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}/api) -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for examplefile in ${PORTEXAMPLES} ${INSTALL_DATA} ${WRKSRC}/${examplefile} ${STAGEDIR}${EXAMPLESDIR} .endfor -.endif .include Modified: head/devel/astah-community/distinfo ============================================================================== --- head/devel/astah-community/distinfo Sun Jan 19 02:36:25 2014 (r340229) +++ head/devel/astah-community/distinfo Sun Jan 19 05:57:29 2014 (r340230) @@ -1,2 +1,2 @@ -SHA256 (astah-community-6_7_0-43495.zip) = 00b4637c21e59a5df209218778cf4c46b1fe37c9bb309c3314f96228a08a3b8e -SIZE (astah-community-6_7_0-43495.zip) = 25814844 +SHA256 (astah-community-6_8_0-d254c5.zip) = b19ebc2b9a2f9ff5ed549ea76c490029cdb705977c5dcae74db48284700aafe9 +SIZE (astah-community-6_8_0-d254c5.zip) = 28800835 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 08:54:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF02FFA9; Sun, 19 Jan 2014 08:53:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BF28D1AD1; Sun, 19 Jan 2014 08:53:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J8rx5s011680; Sun, 19 Jan 2014 08:53:59 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J8rxPx011678; Sun, 19 Jan 2014 08:53:59 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190853.s0J8rxPx011678@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 08:53:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340231 - in head/graphics/xmms-gdancer: . 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.17 Precedence: list List-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, 19 Jan 2014 08:54:00 -0000 Author: miwi Date: Sun Jan 19 08:53:58 2014 New Revision: 340231 URL: http://svnweb.freebsd.org/changeset/ports/340231 QAT: https://qat.redports.org/buildarchive/r340231/ Log: - Fix build with clang PR: 185313 Submitted by: ports fury Added: head/graphics/xmms-gdancer/files/ head/graphics/xmms-gdancer/files/patch-src__image.c (contents, props changed) Modified: head/graphics/xmms-gdancer/Makefile (contents, props changed) Modified: head/graphics/xmms-gdancer/Makefile ============================================================================== --- head/graphics/xmms-gdancer/Makefile Sun Jan 19 05:57:29 2014 (r340230) +++ head/graphics/xmms-gdancer/Makefile Sun Jan 19 08:53:58 2014 (r340231) @@ -11,20 +11,25 @@ DISTNAME= gdancer-$(PORTVERSION) MAINTAINER= ports@FreeBSD.org COMMENT= XMMS Visualization plugin, displays dancing figures -LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms +LICENSE= GPLv2 # (or later) +LIB_DEPENDS= libxmms.so:${PORTSDIR}/multimedia/xmms + +USES= gmake USE_GNOME= gtk12 -USE_GMAKE= yes -GNU_CONFIGURE= yes +USE_CSTD= gnu89 +USE_AUTOTOOLS= libtool PLIST_FILES= lib/xmms/Visualization/gdancer.so -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} -e '/objformat=/s|=.*|=elf|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + 's|-O2|@CFLAGS@| ; \ + s|@GDK_PIXBUF_LIBS@||' ${WRKSRC}/src/Makefile.in do-install: - ${INSTALL_DATA} ${WRKSRC}/src/.libs/gdancer.so ${PREFIX}/lib/xmms/Visualization - @${CAT} ${PKGMESSAGE} + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/xmms/Visualization + (cd ${WRKSRC}/src/.libs && ${INSTALL_LIB} gdancer.so \ + ${STAGEDIR}${PREFIX}/lib/xmms/Visualization) .include Added: head/graphics/xmms-gdancer/files/patch-src__image.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/xmms-gdancer/files/patch-src__image.c Sun Jan 19 08:53:58 2014 (r340231) @@ -0,0 +1,37 @@ +--- src/image.c.orig ++++ src/image.c +@@ -1,5 +1,6 @@ + #include + #include ++#include + #include + #include + +@@ -12,6 +13,9 @@ + #include "../pics/neutral.xpm" // *neutralimage[] + #include "../pics/treble.xpm" // *trebleimage[] + ++void gd_image_change (GDancer *, enum gd_freq_type, gboolean); ++void load_images (GDancer *); ++ + // Clears the pixmaps from memory + void clear_images_sub (frame *frame) + { +@@ -109,7 +113,7 @@ + } + } + +-gint load_images (GDancer *dancer) ++void load_images (GDancer *dancer) + { + if (dancer->window == NULL) return; // Make sure dancer exists + +@@ -183,7 +187,7 @@ + gd_move_window (dancer); + } + +-gint gd_image_change (GDancer *dancer, enum gd_freq_type newtype, gboolean always_draw) ++void gd_image_change (GDancer *dancer, enum gd_freq_type newtype, gboolean always_draw) + { + static frame *oldtype = NULL; + frame *type; From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 08:55:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C280148; Sun, 19 Jan 2014 08:55:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6E3861ADC; Sun, 19 Jan 2014 08:55:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J8t2nk011958; Sun, 19 Jan 2014 08:55:02 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J8t2qG011955; Sun, 19 Jan 2014 08:55:02 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190855.s0J8t2qG011955@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 08:55:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340232 - in head/audio/xmms-modplug: . 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.17 Precedence: list List-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, 19 Jan 2014 08:55:02 -0000 Author: miwi Date: Sun Jan 19 08:55:01 2014 New Revision: 340232 URL: http://svnweb.freebsd.org/changeset/ports/340232 QAT: https://qat.redports.org/buildarchive/r340232/ Log: - Fix build with clang PR: 185313 Submitted by: Ports Fury Added: head/audio/xmms-modplug/files/ head/audio/xmms-modplug/files/patch-modplugxmms__modplugxmms.h (contents, props changed) Modified: head/audio/xmms-modplug/Makefile (contents, props changed) Modified: head/audio/xmms-modplug/Makefile ============================================================================== --- head/audio/xmms-modplug/Makefile Sun Jan 19 08:53:58 2014 (r340231) +++ head/audio/xmms-modplug/Makefile Sun Jan 19 08:55:01 2014 (r340232) @@ -12,21 +12,23 @@ DISTNAME= ${PORTNAME}${PKGNAMEPREFIX}2.0 MAINTAINER= ports@FreeBSD.org COMMENT= ModPlug-based plugin for XMMS -LIB_DEPENDS?= libxmms.so:${PORTSDIR}/multimedia/xmms -LIB_DEPENDS+= modplug:${PORTSDIR}/audio/libmodplug +BUILD_DEPENDS= xmms>0:${PORTSDIR}/multimedia/xmms +LIB_DEPENDS= libmodplug.so:${PORTSDIR}/audio/libmodplug +RUN_DEPENDS= xmms>0:${PORTSDIR}/multimedia/xmms USES= pkgconfig -NO_STAGE= yes +USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -HAS_CONFIGURE= yes -PLUGDIR?= lib/xmms/Input -PLIST_FILES= ${PLUGDIR}/libmodplugxmms.so + +PLIST_FILES= lib/xmms/Input/libmodplugxmms.so post-patch: - @${REINPLACE_CMD} -e '/objformat=/s|=.*|=elf|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + 's|-lstdc++||' ${WRKSRC}/modplugxmms/Makefile.in do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/modplugxmms/.libs/libmodplugxmms.so \ - ${PREFIX}/${PLUGDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/xmms/Input + (cd ${WRKSRC}/modplugxmms/.libs && ${INSTALL_LIB} libmodplugxmms.so \ + ${STAGEDIR}${PREFIX}/lib/xmms/Input) .include Added: head/audio/xmms-modplug/files/patch-modplugxmms__modplugxmms.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/xmms-modplug/files/patch-modplugxmms__modplugxmms.h Sun Jan 19 08:55:01 2014 (r340232) @@ -0,0 +1,10 @@ +--- modplugxmms/modplugxmms.h.orig ++++ modplugxmms/modplugxmms.h +@@ -8,6 +8,7 @@ + #define __MODPLUGXMMS_CMODPLUGXMMS_H_INCLUDED__ + + #include ++#include + + #ifndef __MODPLUGXMMS_STDDEFS_H__INCLUDED__ + #include "stddefs.h" From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 08:56:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B534264; Sun, 19 Jan 2014 08:56:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2E4661AEA; Sun, 19 Jan 2014 08:56:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J8uxcJ012212; Sun, 19 Jan 2014 08:56:59 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J8ux73012211; Sun, 19 Jan 2014 08:56:59 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190856.s0J8ux73012211@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 08:56:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340233 - in head/graphics/xmms-fishmatic: . 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.17 Precedence: list List-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, 19 Jan 2014 08:56:59 -0000 Author: miwi Date: Sun Jan 19 08:56:58 2014 New Revision: 340233 URL: http://svnweb.freebsd.org/changeset/ports/340233 QAT: https://qat.redports.org/buildarchive/r340233/ Log: - Fix build with clang PR: 185337 Deleted: head/graphics/xmms-fishmatic/files/ Modified: head/graphics/xmms-fishmatic/Makefile (contents, props changed) Modified: head/graphics/xmms-fishmatic/Makefile ============================================================================== --- head/graphics/xmms-fishmatic/Makefile Sun Jan 19 08:55:01 2014 (r340232) +++ head/graphics/xmms-fishmatic/Makefile Sun Jan 19 08:56:58 2014 (r340233) @@ -11,27 +11,33 @@ DISTNAME= fishmatic MAINTAINER= ports@FreeBSD.org COMMENT= XMMS non-static OpenGL stereogram visualization plugin -BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms -RUN_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms +BUILD_DEPENDS= xmms>0:${PORTSDIR}/multimedia/xmms +RUN_DEPENDS= xmms>0:${PORTSDIR}/multimedia/xmms -PLIST_FILES= lib/xmms/Visualization/libfishmatic.so -USE_GNOME= gtk12 USES= gmake pkgconfig -GNU_CONFIGURE= yes -USE_GL= glut USE_XORG= xext -USE_LDCONFIG= yes +USE_GNOME= gtk12 +USE_GL= glut +USE_AUTOTOOLS= libtool -CONFIGURE_ENV= LIBS="-lGL -lXext ${LIBS}" -CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES= lib/xmms/Visualization/libfishmatic.so -NO_STAGE= yes post-patch: + @${REINPLACE_CMD} -e \ + 's|"-lpthread|"-pthread|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + 's|-O2|| ; \ + s|@PNG_LIBS@||' ${WRKSRC}/Makefile.in + +pre-configure: @${RM} -f ${WRKSRC}/config.cache - @${REINPLACE_CMD} -e 's|-O2||; \ - s|-lpthreads|${PTHREAD_LIBS:S/"//g}|g' \ - ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} - @${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e '/objformat=/s|=.*|=elf|' ${WRKSRC}/ltconfig + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/xmms/Visualization + (cd ${WRKSRC}/.libs && ${INSTALL_LIB} libfishmatic.so \ + ${STAGEDIR}${PREFIX}/lib/xmms/Visualization) .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 08:57:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF93C36B; Sun, 19 Jan 2014 08:57:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 815EE1AEF; Sun, 19 Jan 2014 08:57:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J8veGp012356; Sun, 19 Jan 2014 08:57:40 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J8veRv012355; Sun, 19 Jan 2014 08:57:40 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190857.s0J8veRv012355@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 08:57:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340234 - head/audio/xmms-wma X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 08:57:40 -0000 Author: miwi Date: Sun Jan 19 08:57:40 2014 New Revision: 340234 URL: http://svnweb.freebsd.org/changeset/ports/340234 QAT: https://qat.redports.org/buildarchive/r340234/ Log: - Fix build with clang PR: 185340 Submitted by: ports fury Modified: head/audio/xmms-wma/Makefile Modified: head/audio/xmms-wma/Makefile ============================================================================== --- head/audio/xmms-wma/Makefile Sun Jan 19 08:56:58 2014 (r340233) +++ head/audio/xmms-wma/Makefile Sun Jan 19 08:57:40 2014 (r340234) @@ -3,7 +3,7 @@ PORTNAME= xmms-wma PORTVERSION= 1.0.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://mcmcc.bat.ru/xmms-wma/ @@ -12,38 +12,54 @@ COMMENT= WMA plugin for xmms LIB_DEPENDS= libxmms.so:${PORTSDIR}/multimedia/xmms -USES= gmake -NO_STAGE= yes -USE_BZIP2= yes -CFLAGS+= -fPIC -DPIC +OPTIONS_DEFINE= ICONV +OPTIONS_DEFAULT=ICONV + ONLY_FOR_ARCHS= i386 amd64 sparc64 + +USE_BZIP2= yes +USES= compiler gmake USE_XORG= xi xext x11 +USE_CSTD= gnu89 +USE_LDCONFIG= yes + +CFLAGS+= -fPIC -DPIC PLIST_FILES= lib/xmms/Input/libwma.so -USE_LDCONFIG= yes -.if defined(WITH_ICONV) +.include + +.if ${PORT_OPTIONS:MICONV} +USES+= iconv CFLAGS+= -DUSE_ICONV -USES= iconv .endif .include -pre-everything:: -.if !defined(WITH_ICONV) - @${ECHO_MSG} "You may specify the following on the command line:" - @${ECHO_MSG} " " - @${ECHO_MSG} "WITH_ICONV=yes Enable tag recoding support using iconv" - @${ECHO_MSG} " " +.if ${CHOSEN_COMPILER_TYPE} == "clang" +CFLAGS+= -D__inline__= .endif post-extract: - @${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/Makefile.inc - @${REINPLACE_CMD} -e 's|gcc|${CC}|g' ${WRKSRC}/ffmpeg-strip-wma/config.mak - @${REINPLACE_CMD} -e 's|CFLAGS :=|CFLAGS := ${CFLAGS}|g' ${WRKSRC}/Makefile.inc -.if ${ARCH}=="sparc64" - @${REINPLACE_CMD} -e 's|X86|SPARC64|' ${WRKSRC}/ffmpeg-strip-wma/config.mak - @${REINPLACE_CMD} -e 's|#define ARCH_X86 1|#define ARCH_SPARC64 1|' ${WRKSRC}/ffmpeg-strip-wma/config.h + @${REINPLACE_CMD} -e \ + 's|^CC :=|CC ?=| ; \ + s|^CFLAGS :=|CFLAGS += | ; \ + s|-O[0-9]||' ${WRKSRC}/Makefile.inc + @${REINPLACE_CMD} -e \ + 's|^MAKE=|MAKE?=| ; \ + s|^CC=|CC?=| ; \ + s|-O[0-9]||' ${WRKSRC}/ffmpeg-strip-wma/config.mak +.if ${ARCH} == "sparc64" + @${REINPLACE_CMD} -e \ + s|X86|SPARC64|' ${WRKSRC}/ffmpeg-strip-wma/config.mak + @${REINPLACE_CMD} -e \ + 's|#define ARCH_X86 1|#define ARCH_SPARC64 1|' \ + ${WRKSRC}/ffmpeg-strip-wma/config.h .endif +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/xmms/Input + (cd ${WRKSRC} && ${INSTALL_LIB} libwma.so \ + ${STAGEDIR}${PREFIX}/lib/xmms/Input) + .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 08:58:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16C45477; Sun, 19 Jan 2014 08:58:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 021491AF6; Sun, 19 Jan 2014 08:58:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J8wt1d012579; Sun, 19 Jan 2014 08:58:55 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J8wtFf012575; Sun, 19 Jan 2014 08:58:55 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190858.s0J8wtFf012575@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 08:58:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340235 - in head/graphics/xmms-dancingparticles: . 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.17 Precedence: list List-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, 19 Jan 2014 08:58:56 -0000 Author: miwi Date: Sun Jan 19 08:58:54 2014 New Revision: 340235 URL: http://svnweb.freebsd.org/changeset/ports/340235 QAT: https://qat.redports.org/buildarchive/r340235/ Log: - Fix build with clang PR: 185340 Submitted by: ports fury Added: head/graphics/xmms-dancingparticles/files/patch-plugin.cc (contents, props changed) head/graphics/xmms-dancingparticles/files/patch-signal.cc (contents, props changed) Deleted: head/graphics/xmms-dancingparticles/pkg-plist Modified: head/graphics/xmms-dancingparticles/Makefile (contents, props changed) head/graphics/xmms-dancingparticles/files/patch-Makefile (contents, props changed) Modified: head/graphics/xmms-dancingparticles/Makefile ============================================================================== --- head/graphics/xmms-dancingparticles/Makefile Sun Jan 19 08:57:40 2014 (r340234) +++ head/graphics/xmms-dancingparticles/Makefile Sun Jan 19 08:58:54 2014 (r340235) @@ -13,17 +13,33 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Makes particles dance with pretty neon colors -LIB_DEPENDS= t1.5:${PORTSDIR}/devel/t1lib \ - xmms.4:${PORTSDIR}/multimedia/xmms +LIB_DEPENDS= libt1.so:${PORTSDIR}/devel/t1lib \ + libxmms.so:${PORTSDIR}/multimedia/xmms USE_GL= glut USE_GNOME= gtk12 USE_SDL= sdl -CFLAGS+= -I${PREFIX}/include -NO_STAGE= yes +PLIST_FILES= lib/xmms/Visualization/libdancingparticles2.so \ + %%DATADIR%%/dance.epic \ + %%DATADIR%%/dancingparticles.conf \ + %%DATADIR%%/font.pfb \ + %%DATADIR%%/xmms.epic +PLIST_DIRS= %%DATADIR%% + post-patch: - @${REINPLACE_CMD} -e 's|\(#include.*\)SDL/\(SDL.*\)|\1\2| ; \ - s|/usr/local|${PREFIX}|' ${WRKSRC}/*.cc ${WRKSRC}/*.h + @${FIND} ${WRKSRC} -name "*.cc" -or -name "*.h" -print0 | ${XARGS} -0 \ + ${REINPLACE_CMD} -e \ + 's|\(#include.*\)SDL/\(SDL.*\)|\1\2| ; \ + s|/usr/local|${PREFIX}|' + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/xmms/Visualization + (cd ${WRKSRC} && ${INSTALL_LIB} libdancingparticles2.so \ + ${STAGEDIR}${PREFIX}/lib/xmms/Visualization) + @${MKDIR} ${STAGEDIR}${DATADIR} +.for i in dance.epic dancingparticles.conf font.pfb xmms.epic + (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DATADIR}) +.endfor .include Modified: head/graphics/xmms-dancingparticles/files/patch-Makefile ============================================================================== --- head/graphics/xmms-dancingparticles/files/patch-Makefile Sun Jan 19 08:57:40 2014 (r340234) +++ head/graphics/xmms-dancingparticles/files/patch-Makefile Sun Jan 19 08:58:54 2014 (r340235) @@ -1,5 +1,5 @@ ---- Makefile.orig Sat Jan 31 08:05:51 2004 -+++ Makefile Fri Oct 14 20:53:22 2005 +--- Makefile.orig 2004-01-31 20:05:51.000000000 +0900 ++++ Makefile 2013-12-12 06:44:52.000000000 +0900 @@ -1,14 +1,13 @@ -CC = gcc #OPT = -m486 -O2 @@ -8,9 +8,9 @@ -CFLAGS = $(OPT) -Wall -fPIC `gtk-config --cflags gthread` -LFLAGS = -shared -fPIC -L/usr/local/lib -lm -lstdc++ -lGL -lGLU -L/usr/X11R6/lib -lt1 -lSDL -LFLAGS2 = -L/usr/local/lib -lm -lstdc++ -lGL -lGLU -L/usr/X11R6/lib -lpthread -lgtk -lgdk -lglut -lt1 -+CFLAGS += -fPIC `gtk-config --cflags gthread` `${SDL_CONFIG} --cflags` -+LFLAGS = -shared -fPIC -L${LOCALBASE}/lib -lm -lstdc++ -lGL -lGLU -lt1 `${SDL_CONFIG} --libs` -+LFLAGS2 = -L${LOCALBASE}/lib -lm -lstdc++ -lGL -lGLU -lgtk -lgdk -lglut -lt1 ++CPPFLAGS += -fPIC `${GTK_CONFIG} --cflags gthread` `${SDL_CONFIG} --cflags` ++LFLAGS = -shared -fPIC -lm -lGL -lGLU -lt1 `${SDL_CONFIG} --libs` ++LFLAGS2 = -lm -lGL -lGLU -lglut -lt1 `${GTK_CONFIG} --libs gdk` OBJ = plugin.o gl.o etoile.o readme.o parameters.o epic.o config.o signal.o t1font.o INSTALL-DIR=`xmms-config --visualization-plugin-dir` @@ -19,24 +19,18 @@ BIN=libdancingparticles2.so all: $(BIN) -@@ -33,14 +32,12 @@ - rm -f *.o core *~ +@@ -20,11 +19,11 @@ + $(CC) -o test $(OBJ) main.o $(LFLAGS2) - install: $(BIN) -- strip $(BIN) -- install $(BIN) $(INSTALL-DIR) -- rm -Rf /usr/local/share/dancingparticles -- mkdir /usr/local/share/dancingparticles -- install dance.epic /usr/local/share/dancingparticles/ -- install dancingparticles.conf /usr/local/share/dancingparticles/ -- install xmms.epic /usr/local/share/dancingparticles/ -- install font.pfb /usr/local/share/dancingparticles/ -+ $(BSD_INSTALL_PROGRAM) $(BIN) $(INSTALL-DIR) -+ mkdir $(DATADIR) -+ $(BSD_INSTALL_DATA) dance.epic $(DATADIR) -+ $(BSD_INSTALL_DATA) dancingparticles.conf $(DATADIR) -+ $(BSD_INSTALL_DATA) xmms.epic $(DATADIR) -+ $(BSD_INSTALL_DATA) font.pfb $(DATADIR) + .cpp.o: +- $(CC) $(CFLAGS) $(XMMS_DATADIR_FLAGS) -c $< ++ $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(XMMS_DATADIR_FLAGS) -c $< + .cc.o: +- $(CC) $(CFLAGS) $(XMMS_DATADIR_FLAGS) -c $< ++ $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(XMMS_DATADIR_FLAGS) -c $< + .c.o: +- $(CC) $(CFLAGS) $(XMMS_DATADIR_FLAGS) -c $< ++ $(CC) $(CFLAGS) $(CPPFLAGS) $(XMMS_DATADIR_FLAGS) -c $< - - plugin.o: plugin.cc etoile.h + clean: + rm -f *.o core *.so* test *~ *\# readme.c Added: head/graphics/xmms-dancingparticles/files/patch-plugin.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/xmms-dancingparticles/files/patch-plugin.cc Sun Jan 19 08:58:54 2014 (r340235) @@ -0,0 +1,45 @@ +--- plugin.cc.orig ++++ plugin.cc +@@ -109,7 +109,7 @@ + + static SDL_Surface *opengl_screen = NULL; + static SDL_Thread *draw_thread = NULL; +-SDL_mutex *mutex = NULL; ++SDL_mutex *sdlmutex = NULL; + + VisPlugin dp_vplugin = { + NULL, /* internal */ +@@ -158,14 +158,14 @@ + void + init_mutexes (void) + { +- mutex = SDL_CreateMutex(); ++ sdlmutex = SDL_CreateMutex(); + } + + + void + destroy_mutexes (void) + { +- SDL_DestroyMutex(mutex); ++ SDL_DestroyMutex(sdlmutex); + } + + void +@@ -456,14 +456,14 @@ + + while (!point_general->finished) { + if (!point_general->paused) { +- SDL_mutexP(mutex); ++ SDL_mutexP(sdlmutex); + + update_playlist_info(); + look_conf_file(); + etoileLoop(); + draw_gl(); + +- SDL_mutexV(mutex); ++ SDL_mutexV(sdlmutex); + calc_fps(); + calc_max_fps(); + printf("\rFPS: %3.2f", framerate); printf(" "); Added: head/graphics/xmms-dancingparticles/files/patch-signal.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/xmms-dancingparticles/files/patch-signal.cc Sun Jan 19 08:58:54 2014 (r340235) @@ -0,0 +1,29 @@ +--- signal.cc.orig ++++ signal.cc +@@ -24,7 +24,7 @@ + #include + + beatdetector detector; +-extern SDL_mutex *mutex; ++extern SDL_mutex *sdlmutex; + + beatdetector::beatdetector() + { +@@ -93,7 +93,7 @@ + { + int i; + +- SDL_mutexP(mutex); ++ SDL_mutexP(sdlmutex); + + for(i = 0; i < 32; i++) + heights[i] = (heights[i] + spectrum[0][i]) / 2; +@@ -126,7 +126,7 @@ + + curloudness = (curloudness + 1)%200; + +- SDL_mutexV(mutex); ++ SDL_mutexV(sdlmutex); + + } + From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 08:59:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21B1F557; Sun, 19 Jan 2014 08:59:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D3521AFD; Sun, 19 Jan 2014 08:59:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J8xadk012732; Sun, 19 Jan 2014 08:59:36 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J8xak6012731; Sun, 19 Jan 2014 08:59:36 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190859.s0J8xak6012731@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 08:59:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340236 - in head/graphics/xmms-blursk: . 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.17 Precedence: list List-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, 19 Jan 2014 08:59:37 -0000 Author: miwi Date: Sun Jan 19 08:59:36 2014 New Revision: 340236 URL: http://svnweb.freebsd.org/changeset/ports/340236 QAT: https://qat.redports.org/buildarchive/r340236/ Log: - Fix build with clang PR: 185350 Submitted by: ports fury Deleted: head/graphics/xmms-blursk/files/ Modified: head/graphics/xmms-blursk/Makefile (contents, props changed) Modified: head/graphics/xmms-blursk/Makefile ============================================================================== --- head/graphics/xmms-blursk/Makefile Sun Jan 19 08:58:54 2014 (r340235) +++ head/graphics/xmms-blursk/Makefile Sun Jan 19 08:59:36 2014 (r340236) @@ -12,22 +12,34 @@ DISTNAME= Blursk-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= XMMS plugin inspired by "Blur Scope" -BUILD_DEPENDS= xmms-config:${PORTSDIR}/multimedia/xmms -RUN_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms +LICENSE= GPLv2 # (or later) -PLIST_FILES= lib/xmms/Visualization/libblursk.so -USE_GNOME= gtk12 +BUILD_DEPENDS= xmms>0:${PORTSDIR}/multimedia/xmms +RUN_DEPENDS= xmms>0:${PORTSDIR}/multimedia/xmms + +USES= compiler USE_XORG= x11 xv -GNU_CONFIGURE= yes +USE_GNOME= gtk12 +USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -CPPFLAGS+= ${CFLAGS} ${PTHREAD_CFLAGS} +PLIST_FILES= lib/xmms/Visualization/libblursk.so + +.include + +.if ${ARCH} == "i386" && ${COMPILER_TYPE} == "clang" +USE_BINUTILS= yes +CPPFLAGS+= -no-integrated-as +.endif -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} -e 's|-O2||' \ - ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} \ - ${BUILD_WRKSRC}/Makefile.in - @${REINPLACE_CMD} -e '/objformat=/s|=.*|=elf|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + 's|-O2|| ; \ + s|@PTHREAD_LIBS@||' ${WRKSRC}/Makefile.in -.include +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/xmms/Visualization + (cd ${WRKSRC}/.libs && ${INSTALL_LIB} libblursk.so \ + ${STAGEDIR}${PREFIX}/lib/xmms/Visualization) + +.include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:00:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E104E6C5; Sun, 19 Jan 2014 09:00:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CD3121B10; Sun, 19 Jan 2014 09:00:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J90A0D013067; Sun, 19 Jan 2014 09:00:10 GMT (envelope-from fluffy@svn.freebsd.org) Received: (from fluffy@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J90Aur013066; Sun, 19 Jan 2014 09:00:10 GMT (envelope-from fluffy@svn.freebsd.org) Message-Id: <201401190900.s0J90Aur013066@svn.freebsd.org> From: Dima Panov Date: Sun, 19 Jan 2014 09:00:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340237 - head/net/freerdp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:00:11 -0000 Author: fluffy Date: Sun Jan 19 09:00:10 2014 New Revision: 340237 URL: http://svnweb.freebsd.org/changeset/ports/340237 QAT: https://qat.redports.org/buildarchive/r340237/ Log: - Rely on modern compiler, which force gcc47/clang33 on gcc-default releases (8.x/9.x) Modified: head/net/freerdp/Makefile Modified: head/net/freerdp/Makefile ============================================================================== --- head/net/freerdp/Makefile Sun Jan 19 08:59:36 2014 (r340236) +++ head/net/freerdp/Makefile Sun Jan 19 09:00:10 2014 (r340237) @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_OPENSSL= yes USE_LDCONFIG= yes -USES= cmake pkgconfig compiler:c11 +USES= cmake:outsource pkgconfig compiler:c++11-lib USE_GITHUB= yes GH_ACCOUNT= FreeRDP GH_PROJECT= FreeRDP @@ -76,6 +76,8 @@ post-extract: ${WRKSRC}/client/X11/CMakeLists.txt ${REINPLACE_CMD} -e 's|HW_AVAILCPU|HW_NCPU|' \ ${WRKSRC}/winpr/libwinpr/sysinfo/sysinfo.c + ${REINPLACE_CMD} -e 's/NetBSD__)/NetBSD__) || defined(__FreeBSD__)/' \ + ${WRKSRC}/winpr/libwinpr/utils/trio/triodef.h ${REINPLACE_CMD} -e 's|||' \ ${WRKSRC}/winpr/libwinpr/crt/alignment.c \ ${WRKSRC}/channels/drive/client/statvfs.c From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:01:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E11FA890; Sun, 19 Jan 2014 09:01:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C11BA1C8B; Sun, 19 Jan 2014 09:01:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J91u5e015925; Sun, 19 Jan 2014 09:01:56 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J91tA0015921; Sun, 19 Jan 2014 09:01:55 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401190901.s0J91tA0015921@svn.freebsd.org> From: Marcus von Appen Date: Sun, 19 Jan 2014 09:01:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340238 - head/games/manaplus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:01:57 -0000 Author: mva Date: Sun Jan 19 09:01:55 2014 New Revision: 340238 URL: http://svnweb.freebsd.org/changeset/ports/340238 QAT: https://qat.redports.org/buildarchive/r340238/ Log: - Update to version 1.4.1.18 - Update COMMENT and description to actually refer to manaplus and not to the previous tmw client Submitted by: Brian Callahan Modified: head/games/manaplus/Makefile head/games/manaplus/distinfo head/games/manaplus/pkg-descr (contents, props changed) head/games/manaplus/pkg-plist Modified: head/games/manaplus/Makefile ============================================================================== --- head/games/manaplus/Makefile Sun Jan 19 09:00:10 2014 (r340237) +++ head/games/manaplus/Makefile Sun Jan 19 09:01:55 2014 (r340238) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= manaplus -PORTVERSION= 1.4.1.4 +PORTVERSION= 1.4.1.18 CATEGORIES= games MASTER_SITES= http://download.evolonline.org/manaplus/download/${PORTVERSION}/ MAINTAINER= mva@FreeBSD.org -COMMENT= Free open source 2D MMORPG in development +COMMENT= Free open source 2D MMORPG client for athena and evol servers LICENSE= GPLv2 Modified: head/games/manaplus/distinfo ============================================================================== --- head/games/manaplus/distinfo Sun Jan 19 09:00:10 2014 (r340237) +++ head/games/manaplus/distinfo Sun Jan 19 09:01:55 2014 (r340238) @@ -1,2 +1,2 @@ -SHA256 (manaplus-1.4.1.4.tar.xz) = 45bd70e67f894c4cdc6316571d93ffc888c124bbb5c9a8d3fc5821dce00dc4ce -SIZE (manaplus-1.4.1.4.tar.xz) = 7450908 +SHA256 (manaplus-1.4.1.18.tar.xz) = 92c77767454c478569ab1884fb16bece371d99bbcd188d4ae78e620e94f821b7 +SIZE (manaplus-1.4.1.18.tar.xz) = 9003412 Modified: head/games/manaplus/pkg-descr ============================================================================== --- head/games/manaplus/pkg-descr Sun Jan 19 09:00:10 2014 (r340237) +++ head/games/manaplus/pkg-descr Sun Jan 19 09:01:55 2014 (r340238) @@ -1,9 +1,5 @@ -The Mana World (TMW) is a serious effort to create an innovative free and -open source MMORPG. TMW uses 2D graphics and aims to create a large and -diverse interactive world. It is licensed under the GPL, making sure this -game can't ever run away from you. +ManaPlus is a 2D MMORPG client for games running on tmwAthena, evol or +eathena servers. It fully supports Evol Online, The Mana World and Land Of +Fire. -The project includes the development of both a client and a server, -as well as the development of an online world. - -WWW: http://themanaworld.org/ +WWW: http://www.manaplus.org Modified: head/games/manaplus/pkg-plist ============================================================================== --- head/games/manaplus/pkg-plist Sun Jan 19 09:00:10 2014 (r340237) +++ head/games/manaplus/pkg-plist Sun Jan 19 09:01:55 2014 (r340238) @@ -31,6 +31,7 @@ share/locale/zh_CN/LC_MESSAGES/manaplus. %%DATADIR%%/data/fonts/liberationsansmono.ttf %%DATADIR%%/data/fonts/mplus-1p-bold.ttf %%DATADIR%%/data/fonts/mplus-1p-regular.ttf +%%DATADIR%%/data/fonts/wqy-microhei.ttf %%DATADIR%%/data/graphics/flags/cn.png %%DATADIR%%/data/graphics/flags/cz.png %%DATADIR%%/data/graphics/flags/de.png From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:02:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECA72969; Sun, 19 Jan 2014 09:02:21 +0000 (UTC) Received: from mail-wi0-x230.google.com (mail-wi0-x230.google.com [IPv6:2a00:1450:400c:c05::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 196E91C91; Sun, 19 Jan 2014 09:02:20 +0000 (UTC) Received: by mail-wi0-f176.google.com with SMTP id hi8so2211056wib.3 for ; Sun, 19 Jan 2014 01:02:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=BVkwZmG4e0wzbwTIeXYHiQL8ry/PyUT7fzE1lUg423M=; b=Qw+py/Tv7s9vNAZCYofSir8/8V0TsEV0lISFzzq8YJtXYy5/o8Fm8lXILV/ivGP+iW gQTO7eII9v28hG7dlD30AtfMe5Er2A6UFVEn0hjKNCd7fqGUDyG16BLKPs/3J8lmPXST /n1nZEVER8KEoS4qkI/NU5/yX601htKhwHwSjQJw2/bf9QVZBx4UFs5LI6MQaA0R7iKV gjd7yaRtEmQZUHfTF5yvycXSiMpHI7s23KxFht6jN7Tma+G++hG2wa+QijtwqgpUTnKp E9Dql8AJgAuJALffdANUvqBO6wlMLQAyQ2TTA+DIWvJmRdlYjov2KgE1+Qmw9nx0OvYT sb5w== MIME-Version: 1.0 X-Received: by 10.180.105.65 with SMTP id gk1mr5521082wib.12.1390122139414; Sun, 19 Jan 2014 01:02:19 -0800 (PST) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.194.33.37 with HTTP; Sun, 19 Jan 2014 01:02:19 -0800 (PST) In-Reply-To: <201401152036.s0FKa0GB013595@svn.freebsd.org> References: <201401152036.s0FKa0GB013595@svn.freebsd.org> Date: Sun, 19 Jan 2014 10:02:19 +0100 X-Google-Sender-Auth: j5-lJzoICb0MmKbUadWOsClLWBg Message-ID: Subject: Re: svn commit: r339814 - head/x11-toolkits/gnustep-back From: Antoine Brodin To: David Chisnall 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.17 Precedence: list List-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, 19 Jan 2014 09:02:22 -0000 On Wed, Jan 15, 2014 at 9:36 PM, David Chisnall wrote: > Author: theraven > Date: Wed Jan 15 20:35:59 2014 > New Revision: 339814 > URL: http://svnweb.freebsd.org/changeset/ports/339814 > QAT: https://qat.redports.org/buildarchive/r339814/ > > Log: > Make GNUstep applications work out of the box without explicitly setting a > back end. Add staging support. > > Approved by: bapt (mentor) > > Deleted: > head/x11-toolkits/gnustep-back/pkg-message > Modified: > head/x11-toolkits/gnustep-back/Makefile > > Modified: head/x11-toolkits/gnustep-back/Makefile > ============================================================================== > --- head/x11-toolkits/gnustep-back/Makefile Wed Jan 15 20:23:16 2014 (r339813) > +++ head/x11-toolkits/gnustep-back/Makefile Wed Jan 15 20:35:59 2014 (r339814) > @@ -2,6 +2,7 @@ > > PORTNAME= gnustep-back > PORTVERSION= 0.24.0 > +PORTREVISION= 1 > CATEGORIES= x11-toolkits gnustep > MASTER_SITES= ${MASTER_SITE_GNUSTEP} > MASTER_SITE_SUBDIR= core > @@ -44,15 +45,12 @@ BREAKS_IF_PEDANTIC= yes > CFLAGS+= -I${LOCALBASE}/include/freetype2 > LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 > LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo > -CONFIGURE_ARGS+= --enable-graphics=cairo --with-name=cairo > +CONFIGURE_ARGS+= --enable-graphics=cairo > CONFIGURE_ARGS+= --disable-glitz > -PLIST_SUB+= BACK=cairo-${BACKVERSION} > -BACK_SUFFIX?= -cairo > +PLIST_SUB+= BACK=back-${BACKVERSION} > > -NO_STAGE= yes > .include > > -MAKE_FLAGS+= messages=yes > PLIST_SUB+= BACKVERSION=${PORTVERSION:C/([0-9])*[.]([0-9]*).*/\1\2/1} Hello, The following lines from bsd.gnustep.mk have to be adjusted after this change I guess: BACKCAIRO= libgnustep-cairo${BACKSUFFIX} BUILD_DEPENDS+= ${GNUSTEP_SYSTEM_BUNDLES}/${BACKCAIRO}.bundle/${BACKCAIRO}:${PORTSDIR}/${GNUSTEP_BACK_PORT} RUN_DEPENDS+= ${GNUSTEP_SYSTEM_BUNDLES}/${BACKCAIRO}.bundle/${BACKCAIRO}:${PORTSDIR}/${GNUSTEP_BACK_PORT} Cheers, Antoine From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:23:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3ED73AF1; Sun, 19 Jan 2014 09:23:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2A6911D9D; Sun, 19 Jan 2014 09:23:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9NDvJ024042; Sun, 19 Jan 2014 09:23:13 GMT (envelope-from nobutaka@svn.freebsd.org) Received: (from nobutaka@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9NCtx024038; Sun, 19 Jan 2014 09:23:12 GMT (envelope-from nobutaka@svn.freebsd.org) Message-Id: <201401190923.s0J9NCtx024038@svn.freebsd.org> From: MANTANI Nobutaka Date: Sun, 19 Jan 2014 09:23:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340239 - head/x11/mlterm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:23:13 -0000 Author: nobutaka Date: Sun Jan 19 09:23:12 2014 New Revision: 340239 URL: http://svnweb.freebsd.org/changeset/ports/340239 QAT: https://qat.redports.org/buildarchive/r340239/ Log: Update to 3.3.2. Modified: head/x11/mlterm/Makefile head/x11/mlterm/distinfo head/x11/mlterm/pkg-plist (contents, props changed) Modified: head/x11/mlterm/Makefile ============================================================================== --- head/x11/mlterm/Makefile Sun Jan 19 09:01:55 2014 (r340238) +++ head/x11/mlterm/Makefile Sun Jan 19 09:23:12 2014 (r340239) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mlterm -PORTVERSION= 3.1.8 +PORTVERSION= 3.3.2 CATEGORIES= x11 MASTER_SITES= SF/${PORTNAME}/01release/${PORTNAME}-${PORTVERSION} Modified: head/x11/mlterm/distinfo ============================================================================== --- head/x11/mlterm/distinfo Sun Jan 19 09:01:55 2014 (r340238) +++ head/x11/mlterm/distinfo Sun Jan 19 09:23:12 2014 (r340239) @@ -1,2 +1,2 @@ -SHA256 (mlterm-3.1.8.tar.gz) = 19acb356e0d7aa52bb0458f26460816cc00d61c4b26a68f5d20e455eaad4e240 -SIZE (mlterm-3.1.8.tar.gz) = 3525746 +SHA256 (mlterm-3.3.2.tar.gz) = 9622b601fbc550883f438016c3b95061495cb183fc690c1e809d156b5de23771 +SIZE (mlterm-3.3.2.tar.gz) = 3574269 Modified: head/x11/mlterm/pkg-plist ============================================================================== --- head/x11/mlterm/pkg-plist Sun Jan 19 09:01:55 2014 (r340238) +++ head/x11/mlterm/pkg-plist Sun Jan 19 09:23:12 2014 (r340239) @@ -19,7 +19,7 @@ etc/mlterm/xim lib/libkik.a lib/libkik.la lib/libkik.so -lib/libkik.so.14 +lib/libkik.so.15 lib/libmkf.a lib/libmkf.la lib/libmkf.so From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:24:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA746BD5; Sun, 19 Jan 2014 09:24:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A69121DA4; Sun, 19 Jan 2014 09:24:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9OZhj024263; Sun, 19 Jan 2014 09:24:35 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9OZ0K024261; Sun, 19 Jan 2014 09:24:35 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190924.s0J9OZ0K024261@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 09:24:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340240 - in head/emulators/xbraitenberg: . 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.17 Precedence: list List-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, 19 Jan 2014 09:24:35 -0000 Author: miwi Date: Sun Jan 19 09:24:34 2014 New Revision: 340240 URL: http://svnweb.freebsd.org/changeset/ports/340240 QAT: https://qat.redports.org/buildarchive/r340240/ Log: - Fix build with clang PR: 185500 Submitted by: Ports Fury Added: head/emulators/xbraitenberg/files/ head/emulators/xbraitenberg/files/patch-permstr.hh (contents, props changed) Modified: head/emulators/xbraitenberg/Makefile (contents, props changed) Modified: head/emulators/xbraitenberg/Makefile ============================================================================== --- head/emulators/xbraitenberg/Makefile Sun Jan 19 09:23:12 2014 (r340239) +++ head/emulators/xbraitenberg/Makefile Sun Jan 19 09:24:34 2014 (r340240) @@ -8,12 +8,16 @@ CATEGORIES= emulators MASTER_SITES= http://www.lcdf.org/~eddietwo/xbraitenberg/ MAINTAINER= ports@FreeBSD.org -COMMENT= A Braitenberg vehicle simulator with pseudo-physics +COMMENT= Braitenberg vehicle simulator with pseudo-physics USE_XORG= x11 ice sm xext GNU_CONFIGURE= yes +CONFIGURE_ENV= ac_cv_fpermissive=no PLIST_FILES= bin/xbraitenberg -NO_STAGE= yes +post-patch: + @${REINPLACE_CMD} -e \ + '/operator bool() const/d' ${WRKSRC}/operator.hh + .include Added: head/emulators/xbraitenberg/files/patch-permstr.hh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/xbraitenberg/files/patch-permstr.hh Sun Jan 19 09:24:34 2014 (r340240) @@ -0,0 +1,22 @@ +--- permstr.hh.orig ++++ permstr.hh +@@ -4,6 +4,10 @@ + #include + #include + ++class PermString; ++ ++PermString permprintf(const char *, ...); ++ + class PermString { struct Doodad; public: + + typedef Doodad *Capsule; +@@ -91,7 +95,7 @@ + inline int + hashcode(PermString s) + { +- return (int)(s.cc()); ++ return (int)(size_t)(s.cc()); + } + + #endif From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF806CE7; Sun, 19 Jan 2014 09:26:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9FD691DB1; Sun, 19 Jan 2014 09:26:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9QQuM024670; Sun, 19 Jan 2014 09:26:26 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9QQOp024656; Sun, 19 Jan 2014 09:26:26 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190926.s0J9QQOp024656@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 09:26:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340242 - head/audio/calf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:26:26 -0000 Author: miwi Date: Sun Jan 19 09:26:25 2014 New Revision: 340242 URL: http://svnweb.freebsd.org/changeset/ports/340242 QAT: https://qat.redports.org/buildarchive/r340242/ Log: - Fix build with clang PR: 185500 Submitted by: Ports Fury Modified: head/audio/calf/Makefile head/audio/calf/pkg-plist Modified: head/audio/calf/Makefile ============================================================================== --- head/audio/calf/Makefile Sun Jan 19 09:26:22 2014 (r340241) +++ head/audio/calf/Makefile Sun Jan 19 09:26:25 2014 (r340242) @@ -20,33 +20,51 @@ LIB_DEPENDS= libfluidsynth.so:${PORTSDIR OPTIONS_DEFINE= LASH LV2 OPTIONS_DEFAULT=LASH LV2 +OPTIONS_SUB= yes LV2_DESC= LV2 audio plugin USES= gmake pkgconfig USE_GNOME= gtk20 -USE_CSTD= gnu89 GNU_CONFIGURE= yes INSTALLS_ICONS= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS_SUB= yes LASH_LIB_DEPENDS= liblash.so:${PORTSDIR}/audio/lash LASH_CONFIGURE_WITH= lash -LV2_BUILD_DEPENDS+= lv2core>0:${PORTSDIR}/audio/lv2core -LV2_RUN_DEPENDS+= lv2core>0:${PORTSDIR}/audio/lv2core +LV2_BUILD_DEPENDS= lv2core>0:${PORTSDIR}/audio/lv2core +LV2_RUN_DEPENDS= lv2core>0:${PORTSDIR}/audio/lv2core LV2_CONFIGURE_WITH= lv2 +.include + post-patch: @${FIND} ${BUILD_WRKSRC} -name '*.cpp' | ${XARGS} ${REINPLACE_CMD} -e \ 's|||' @${REINPLACE_CMD} -e '/CXXFLAGS/s|-O3||' ${WRKSRC}/configure - @${REINPLACE_CMD} -e '/^install-data-am:/s|install-data-local||' \ - ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e '/calf.so/s|$$(pkglibdir)|../../calf|' \ + ${WRKSRC}/src/Makefile.in + @${REINPLACE_CMD} -e 's|src\.size();|src->size();|' \ + ${WRKSRC}/src/calf/buffer.h + @${REINPLACE_CMD} -e 's|data\[(1< Modified: head/audio/calf/pkg-plist ============================================================================== --- head/audio/calf/pkg-plist Sun Jan 19 09:26:22 2014 (r340241) +++ head/audio/calf/pkg-plist Sun Jan 19 09:26:25 2014 (r340242) @@ -34,6 +34,11 @@ lib/calf/calf.so %%LV2%%lib/lv2/calf.lv2/calf.so %%LV2%%lib/lv2/calf.lv2/calflv2gui.so %%LV2%%lib/lv2/calf.lv2/manifest.ttl +%%LV2%%lib/lv2/calf.lv2/presets-Filter.ttl +%%LV2%%lib/lv2/calf.lv2/presets-Flanger.ttl +%%LV2%%lib/lv2/calf.lv2/presets-Monosynth.ttl +%%LV2%%lib/lv2/calf.lv2/presets-Organ.ttl +%%LV2%%lib/lv2/calf.lv2/presets-Reverb.ttl man/man1/calfjackhost.1.gz man/man7/calf.7.gz share/applications/calf.desktop From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9BA29CE8; Sun, 19 Jan 2014 09:26:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 87D3E1DB2; Sun, 19 Jan 2014 09:26:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9QRNv024733; Sun, 19 Jan 2014 09:26:27 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9QRHH024732; Sun, 19 Jan 2014 09:26:27 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9QRHH024732@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340243 - head/devel/py-greenlet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:26:27 -0000 Author: sunpoet Date: Sun Jan 19 09:26:26 2014 New Revision: 340243 URL: http://svnweb.freebsd.org/changeset/ports/340243 QAT: https://qat.redports.org/buildarchive/r340243/ Log: - Use PYDISTUTILS_AUTOPLIST PR: ports/185637 Submitted by: koobs Deleted: head/devel/py-greenlet/pkg-plist Modified: head/devel/py-greenlet/Makefile Modified: head/devel/py-greenlet/Makefile ============================================================================== --- head/devel/py-greenlet/Makefile Sun Jan 19 09:26:25 2014 (r340242) +++ head/devel/py-greenlet/Makefile Sun Jan 19 09:26:26 2014 (r340243) @@ -14,8 +14,9 @@ COMMENT= Light-weight microthreads for P LICENSE= MIT ONLY_FOR_ARCHS= amd64 i386 -USE_PYTHON= yes +PYDISTUTILS_AUTOPLIST= yes USE_PYDISTUTILS=yes +USE_PYTHON= yes post-build: @${STRIP_CMD} ${WRKSRC}/greenlet.so From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 930F3CE6; Sun, 19 Jan 2014 09:26:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7E8071DB0; Sun, 19 Jan 2014 09:26:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9QNB8024571; Sun, 19 Jan 2014 09:26:23 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9QMeK024567; Sun, 19 Jan 2014 09:26:22 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9QMeK024567@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340241 - head/www/spdylay X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:26:23 -0000 Author: sunpoet Date: Sun Jan 19 09:26:22 2014 New Revision: 340241 URL: http://svnweb.freebsd.org/changeset/ports/340241 QAT: https://qat.redports.org/buildarchive/r340241/ Log: - Update to 1.2.2 - Update MASTER_SITES - Update COMMENT and pkg-descr Changes: https://github.com/tatsuhiro-t/spdylay/blob/master/NEWS PR: ports/185634 Submitted by: pluknet Modified: head/www/spdylay/Makefile head/www/spdylay/distinfo head/www/spdylay/pkg-descr head/www/spdylay/pkg-plist Modified: head/www/spdylay/Makefile ============================================================================== --- head/www/spdylay/Makefile Sun Jan 19 09:24:34 2014 (r340240) +++ head/www/spdylay/Makefile Sun Jan 19 09:26:22 2014 (r340241) @@ -2,13 +2,12 @@ # $FreeBSD$ PORTNAME= spdylay -PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTVERSION= 1.2.2 CATEGORIES= www net -MASTER_SITES= SF/${PORTNAME}/stable/${PORTNAME}-${PORTVERSION} +MASTER_SITES= https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ MAINTAINER= sunpoet@FreeBSD.org -COMMENT= SPDY protocol version 2 and 3 implementation in C +COMMENT= SPDY protocol version 2, 3 and 3.1 implementation in C LICENSE= MIT @@ -16,7 +15,7 @@ LIB_DEPENDS= libevent_openssl.so:${PORTS CONFIGURE_ARGS= --enable-examples CONFIGURE_ENV= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ - OPENSSL_LIBS="-L${OPENSSLLIB} -lssl" \ + OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" \ ZLIB_CFLAGS="-I${INCLUDEDIR}" \ ZLIB_LIBS="-L${LIBDIR} -lz" GNU_CONFIGURE= yes @@ -36,7 +35,7 @@ IGNORE= spdylay requires OpenSSL 1.0.1+ .endif post-build: - @${STRIP_CMD} ${WRKSRC}/lib/.libs/libspdylay.so.6 + @${STRIP_CMD} ${WRKSRC}/lib/.libs/libspdylay.so.7 post-install: @${INSTALL_SCRIPT} ${WRKSRC}/examples/spdycli ${STAGEDIR}${PREFIX}/bin/ Modified: head/www/spdylay/distinfo ============================================================================== --- head/www/spdylay/distinfo Sun Jan 19 09:24:34 2014 (r340240) +++ head/www/spdylay/distinfo Sun Jan 19 09:26:22 2014 (r340241) @@ -1,2 +1,2 @@ -SHA256 (spdylay-1.1.0.tar.xz) = f6382926fc42031bc01b9402be606356430ec122db0ff9bbeac895cc84085ec7 -SIZE (spdylay-1.1.0.tar.xz) = 411900 +SHA256 (spdylay-1.2.2.tar.xz) = 010e32f657deda922859293b5117db8a2c4f4b5d8213b1a96f36de55c32ec582 +SIZE (spdylay-1.2.2.tar.xz) = 414456 Modified: head/www/spdylay/pkg-descr ============================================================================== --- head/www/spdylay/pkg-descr Sun Jan 19 09:24:34 2014 (r340240) +++ head/www/spdylay/pkg-descr Sun Jan 19 09:26:22 2014 (r340241) @@ -1,12 +1,12 @@ Spdylay - SPDY C Library This is an experimental implementation of Google's SPDY protocol in C. This -library provides SPDY version 2 and 3 framing layer implementation. It does not -perform any I/O operations. When the library needs them, it calls the callback -functions provided by the application. It also does not include any event -polling mechanism, so the application can freely choose the way of handling -events. This library code does not depend on any particular SSL library (except -for example programs which depend on OpenSSL 1.0.1 or later). +library provides SPDY version 2, 3 and 3.1 framing layer implementation. It does +not perform any I/O operations. When the library needs them, it calls the +callback functions provided by the application. It also does not include any +event polling mechanism, so the application can freely choose the way of +handling events. This library code does not depend on any particular SSL library +(except for example programs which depend on OpenSSL 1.0.1 or later). This project also develops SPDY client, server and proxy on top of Spdylay library. Modified: head/www/spdylay/pkg-plist ============================================================================== --- head/www/spdylay/pkg-plist Sun Jan 19 09:24:34 2014 (r340240) +++ head/www/spdylay/pkg-plist Sun Jan 19 09:26:22 2014 (r340241) @@ -8,6 +8,6 @@ include/spdylay/spdylayver.h lib/libspdylay.a lib/libspdylay.la lib/libspdylay.so -lib/libspdylay.so.6 +lib/libspdylay.so.7 libdata/pkgconfig/libspdylay.pc @dirrm include/spdylay From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 077E0DBB; Sun, 19 Jan 2014 09:26:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E7C751DB3; Sun, 19 Jan 2014 09:26:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9QVeG024819; Sun, 19 Jan 2014 09:26:31 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9QVfN024816; Sun, 19 Jan 2014 09:26:31 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9QVfN024816@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340244 - head/devel/p5-Module-Build-XSUtil X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:26:32 -0000 Author: sunpoet Date: Sun Jan 19 09:26:31 2014 New Revision: 340244 URL: http://svnweb.freebsd.org/changeset/ports/340244 QAT: https://qat.redports.org/buildarchive/r340244/ Log: - Update to 0.06 Changes: http://search.cpan.org/dist/Module-Build-XSUtil/Changes Modified: head/devel/p5-Module-Build-XSUtil/Makefile head/devel/p5-Module-Build-XSUtil/distinfo Modified: head/devel/p5-Module-Build-XSUtil/Makefile ============================================================================== --- head/devel/p5-Module-Build-XSUtil/Makefile Sun Jan 19 09:26:26 2014 (r340243) +++ head/devel/p5-Module-Build-XSUtil/Makefile Sun Jan 19 09:26:31 2014 (r340244) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Module-Build-XSUtil -PORTVERSION= 0.05 +PORTVERSION= 0.06 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Module-Build-XSUtil/distinfo ============================================================================== --- head/devel/p5-Module-Build-XSUtil/distinfo Sun Jan 19 09:26:26 2014 (r340243) +++ head/devel/p5-Module-Build-XSUtil/distinfo Sun Jan 19 09:26:31 2014 (r340244) @@ -1,2 +1,2 @@ -SHA256 (Module-Build-XSUtil-0.05.tar.gz) = 69c203b52943b789271e7496f82abeb443efd358a3379e66466f5b8fdeda9c66 -SIZE (Module-Build-XSUtil-0.05.tar.gz) = 12775 +SHA256 (Module-Build-XSUtil-0.06.tar.gz) = 22df44b907737d6fef4ae0ce2849e715c02320eebfe4ce0d3d9be12106ddaa67 +SIZE (Module-Build-XSUtil-0.06.tar.gz) = 12799 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF945E7A; Sun, 19 Jan 2014 09:26:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B21651DB6; Sun, 19 Jan 2014 09:26:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9Qagc024907; Sun, 19 Jan 2014 09:26:36 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9QaYN024904; Sun, 19 Jan 2014 09:26:36 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9QaYN024904@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340245 - head/devel/p5-MooseX-Types-Set-Object X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:26:36 -0000 Author: sunpoet Date: Sun Jan 19 09:26:35 2014 New Revision: 340245 URL: http://svnweb.freebsd.org/changeset/ports/340245 QAT: https://qat.redports.org/buildarchive/r340245/ Log: - Update to 0.04 - Add LICENSE Changes: http://search.cpan.org/dist/MooseX-Types-Set-Object/Changes Modified: head/devel/p5-MooseX-Types-Set-Object/Makefile head/devel/p5-MooseX-Types-Set-Object/distinfo (contents, props changed) Modified: head/devel/p5-MooseX-Types-Set-Object/Makefile ============================================================================== --- head/devel/p5-MooseX-Types-Set-Object/Makefile Sun Jan 19 09:26:31 2014 (r340244) +++ head/devel/p5-MooseX-Types-Set-Object/Makefile Sun Jan 19 09:26:35 2014 (r340245) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MooseX-Types-Set-Object -PORTVERSION= 0.03 +PORTVERSION= 0.04 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Set::Object type with coercions and stuff +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Moose>=0.50:${PORTSDIR}/devel/p5-Moose \ p5-MooseX-Types>=0:${PORTSDIR}/devel/p5-MooseX-Types \ p5-Set-Object>=0:${PORTSDIR}/devel/p5-Set-Object @@ -17,7 +20,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Test-use-ok>=0:${PORTSDIR}/devel/p5-Test-use-ok -USE_PERL5= configure +USE_PERL5= modbuildtiny USES= perl5 .include Modified: head/devel/p5-MooseX-Types-Set-Object/distinfo ============================================================================== --- head/devel/p5-MooseX-Types-Set-Object/distinfo Sun Jan 19 09:26:31 2014 (r340244) +++ head/devel/p5-MooseX-Types-Set-Object/distinfo Sun Jan 19 09:26:35 2014 (r340245) @@ -1,2 +1,2 @@ -SHA256 (MooseX-Types-Set-Object-0.03.tar.gz) = a67530cfb7cf98f64dc59305bb2f56b8b03e85606ea7caf9067c55aac6d315af -SIZE (MooseX-Types-Set-Object-0.03.tar.gz) = 11085 +SHA256 (MooseX-Types-Set-Object-0.04.tar.gz) = f1b20427c60333b15e4e97a9ff69aba8f1bd7f7ed2f73f63a7c4d34e514a6ac0 +SIZE (MooseX-Types-Set-Object-0.04.tar.gz) = 21567 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60A15BC; Sun, 19 Jan 2014 09:26:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4D3621DC1; Sun, 19 Jan 2014 09:26:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9QoOl025169; Sun, 19 Jan 2014 09:26:50 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9Qn8l025167; Sun, 19 Jan 2014 09:26:49 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9Qn8l025167@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340248 - head/devel/p5-experimental X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:26:50 -0000 Author: sunpoet Date: Sun Jan 19 09:26:49 2014 New Revision: 340248 URL: http://svnweb.freebsd.org/changeset/ports/340248 QAT: https://qat.redports.org/buildarchive/r340248/ Log: - Update to 0.006 Changes: http://search.cpan.org/dist/experimental/Changes Modified: head/devel/p5-experimental/Makefile head/devel/p5-experimental/distinfo Modified: head/devel/p5-experimental/Makefile ============================================================================== --- head/devel/p5-experimental/Makefile Sun Jan 19 09:26:45 2014 (r340247) +++ head/devel/p5-experimental/Makefile Sun Jan 19 09:26:49 2014 (r340248) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= experimental -PORTVERSION= 0.005 +PORTVERSION= 0.006 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:LEONT Modified: head/devel/p5-experimental/distinfo ============================================================================== --- head/devel/p5-experimental/distinfo Sun Jan 19 09:26:45 2014 (r340247) +++ head/devel/p5-experimental/distinfo Sun Jan 19 09:26:49 2014 (r340248) @@ -1,2 +1,2 @@ -SHA256 (experimental-0.005.tar.gz) = b6c7b53b5e034727d301c59665fd72213db8b568aba8d8714fefe9ffef95b1a9 -SIZE (experimental-0.005.tar.gz) = 10614 +SHA256 (experimental-0.006.tar.gz) = a33572149c439b554885760daf64802def909a3b6ad7be94c3b6c63f3a908793 +SIZE (experimental-0.006.tar.gz) = 10791 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C997EF40; Sun, 19 Jan 2014 09:26:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 508EC1DBB; Sun, 19 Jan 2014 09:26:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9QfCv024991; Sun, 19 Jan 2014 09:26:41 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9Qedi024989; Sun, 19 Jan 2014 09:26:40 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9Qedi024989@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340246 - head/devel/p5-Parse-Method-Signatures X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:26:41 -0000 Author: sunpoet Date: Sun Jan 19 09:26:40 2014 New Revision: 340246 URL: http://svnweb.freebsd.org/changeset/ports/340246 QAT: https://qat.redports.org/buildarchive/r340246/ Log: - Update to 1.003016 Changes: http://search.cpan.org/dist/Parse-Method-Signatures/Changes Modified: head/devel/p5-Parse-Method-Signatures/Makefile head/devel/p5-Parse-Method-Signatures/distinfo Modified: head/devel/p5-Parse-Method-Signatures/Makefile ============================================================================== --- head/devel/p5-Parse-Method-Signatures/Makefile Sun Jan 19 09:26:35 2014 (r340245) +++ head/devel/p5-Parse-Method-Signatures/Makefile Sun Jan 19 09:26:40 2014 (r340246) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Parse-Method-Signatures -PORTVERSION= 1.003015 +PORTVERSION= 1.003016 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,7 +13,8 @@ COMMENT= Perl6 like method signature par LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-List-MoreUtils>=0.20:${PORTSDIR}/lang/p5-List-MoreUtils \ +BUILD_DEPENDS= p5-Class-Load>=0.19:${PORTSDIR}/devel/p5-Class-Load \ + p5-List-MoreUtils>=0.20:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-Moose>=0:${PORTSDIR}/devel/p5-Moose \ p5-MooseX-Traits>=0.06:${PORTSDIR}/devel/p5-MooseX-Traits \ p5-MooseX-Types>=0.17:${PORTSDIR}/devel/p5-MooseX-Types \ Modified: head/devel/p5-Parse-Method-Signatures/distinfo ============================================================================== --- head/devel/p5-Parse-Method-Signatures/distinfo Sun Jan 19 09:26:35 2014 (r340245) +++ head/devel/p5-Parse-Method-Signatures/distinfo Sun Jan 19 09:26:40 2014 (r340246) @@ -1,2 +1,2 @@ -SHA256 (Parse-Method-Signatures-1.003015.tar.gz) = 1ae1960722baf7b67a519a0092dd9f18671fcddd920acf6d0fade7ec0309ffe4 -SIZE (Parse-Method-Signatures-1.003015.tar.gz) = 42830 +SHA256 (Parse-Method-Signatures-1.003016.tar.gz) = f97aa40a4ed86169dcbccf80a666a7c11b4e600b3d1babab2b193e5d65212e65 +SIZE (Parse-Method-Signatures-1.003016.tar.gz) = 42928 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:27:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C79F5BC; Sun, 19 Jan 2014 09:27:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F1481DCD; Sun, 19 Jan 2014 09:27:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9RJrd025707; Sun, 19 Jan 2014 09:27:19 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9RIDR025705; Sun, 19 Jan 2014 09:27:18 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190927.s0J9RIDR025705@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:27:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340254 - head/sysutils/rubygem-guard-livereload X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:27:20 -0000 Author: sunpoet Date: Sun Jan 19 09:27:18 2014 New Revision: 340254 URL: http://svnweb.freebsd.org/changeset/ports/340254 QAT: https://qat.redports.org/buildarchive/r340254/ Log: - Update to 2.1.1 Changes: https://github.com/guard/guard-livereload/releases Modified: head/sysutils/rubygem-guard-livereload/Makefile head/sysutils/rubygem-guard-livereload/distinfo Modified: head/sysutils/rubygem-guard-livereload/Makefile ============================================================================== --- head/sysutils/rubygem-guard-livereload/Makefile Sun Jan 19 09:27:13 2014 (r340253) +++ head/sysutils/rubygem-guard-livereload/Makefile Sun Jan 19 09:27:18 2014 (r340254) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= guard-livereload -PORTVERSION= 2.1.0 +PORTVERSION= 2.1.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-guard-livereload/distinfo ============================================================================== --- head/sysutils/rubygem-guard-livereload/distinfo Sun Jan 19 09:27:13 2014 (r340253) +++ head/sysutils/rubygem-guard-livereload/distinfo Sun Jan 19 09:27:18 2014 (r340254) @@ -1,2 +1,2 @@ -SHA256 (rubygem/guard-livereload-2.1.0.gem) = 8e861d6c416b7ed5513dc61e28e2faae88e2236a6abcf5a1d44bb89d877d26af -SIZE (rubygem/guard-livereload-2.1.0.gem) = 17920 +SHA256 (rubygem/guard-livereload-2.1.1.gem) = b569a827200031383fd37e76713357f5e0403c8e1da97b6963ab0fa2f82163de +SIZE (rubygem/guard-livereload-2.1.1.gem) = 18432 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:27:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C2C25DD; Sun, 19 Jan 2014 09:27:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 286281DD0; Sun, 19 Jan 2014 09:27:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9RNbL025779; Sun, 19 Jan 2014 09:27:23 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9RN1x025778; Sun, 19 Jan 2014 09:27:23 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190927.s0J9RN1x025778@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:27:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340255 - head/archivers/p5-Compress-Snappy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:27:23 -0000 Author: sunpoet Date: Sun Jan 19 09:27:22 2014 New Revision: 340255 URL: http://svnweb.freebsd.org/changeset/ports/340255 QAT: https://qat.redports.org/buildarchive/r340255/ Log: - Remove LIB_DEPENDS: Compress::Snappy uses bundle snappy library - Bump PORTREVISION for dependency change Submitted by: vanilla Modified: head/archivers/p5-Compress-Snappy/Makefile Modified: head/archivers/p5-Compress-Snappy/Makefile ============================================================================== --- head/archivers/p5-Compress-Snappy/Makefile Sun Jan 19 09:27:18 2014 (r340254) +++ head/archivers/p5-Compress-Snappy/Makefile Sun Jan 19 09:27:22 2014 (r340255) @@ -3,6 +3,7 @@ PORTNAME= Compress-Snappy PORTVERSION= 0.22 +PORTREVISION= 1 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,8 +14,6 @@ COMMENT= Perl interface to Google Snappy LICENSE= ART10 GPLv1 LICENSE_COMB= dual -LIB_DEPENDS= libsnappy.so:${PORTSDIR}/archivers/snappy - USE_PERL5= configure USES= perl5 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCD5069; Sun, 19 Jan 2014 09:26:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D01651DBD; Sun, 19 Jan 2014 09:26:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9QjKx025084; Sun, 19 Jan 2014 09:26:45 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9Qjr1025080; Sun, 19 Jan 2014 09:26:45 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9Qjr1025080@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340247 - head/devel/p5-Test-utf8 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:26:47 -0000 Author: sunpoet Date: Sun Jan 19 09:26:45 2014 New Revision: 340247 URL: http://svnweb.freebsd.org/changeset/ports/340247 QAT: https://qat.redports.org/buildarchive/r340247/ Log: - Update to 1.01 - Add LICENSE Changes: http://search.cpan.org/dist/Test-utf8/CHANGES Modified: head/devel/p5-Test-utf8/Makefile head/devel/p5-Test-utf8/distinfo (contents, props changed) Modified: head/devel/p5-Test-utf8/Makefile ============================================================================== --- head/devel/p5-Test-utf8/Makefile Sun Jan 19 09:26:40 2014 (r340246) +++ head/devel/p5-Test-utf8/Makefile Sun Jan 19 09:26:45 2014 (r340247) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-utf8 -PORTVERSION= 1.00 +PORTVERSION= 1.01 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org COMMENT= Handy UTF-8 tests +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USE_PERL5= configure USES= perl5 Modified: head/devel/p5-Test-utf8/distinfo ============================================================================== --- head/devel/p5-Test-utf8/distinfo Sun Jan 19 09:26:40 2014 (r340246) +++ head/devel/p5-Test-utf8/distinfo Sun Jan 19 09:26:45 2014 (r340247) @@ -1,2 +1,2 @@ -SHA256 (Test-utf8-1.00.tar.gz) = f4122c6aa43d39d6b11a8b3d08900d1fcbdd539bc7d855f03b82b7aeffa0a80b -SIZE (Test-utf8-1.00.tar.gz) = 29395 +SHA256 (Test-utf8-1.01.tar.gz) = ef371b1769cd8d36d2d657e8321723d94c8f8d89e7fd7437c6648c5dc6711b7a +SIZE (Test-utf8-1.01.tar.gz) = 33308 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B658192; Sun, 19 Jan 2014 09:26:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 17BCF1DC3; Sun, 19 Jan 2014 09:26:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9Qsvg025256; Sun, 19 Jan 2014 09:26:54 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9QsUS025254; Sun, 19 Jan 2014 09:26:54 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9QsUS025254@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340249 - head/net/p5-IO-Socket-IP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:26:55 -0000 Author: sunpoet Date: Sun Jan 19 09:26:54 2014 New Revision: 340249 URL: http://svnweb.freebsd.org/changeset/ports/340249 QAT: https://qat.redports.org/buildarchive/r340249/ Log: - Update to 0.26 Changes: http://search.cpan.org/dist/IO-Socket-IP/Changes Modified: head/net/p5-IO-Socket-IP/Makefile head/net/p5-IO-Socket-IP/distinfo Modified: head/net/p5-IO-Socket-IP/Makefile ============================================================================== --- head/net/p5-IO-Socket-IP/Makefile Sun Jan 19 09:26:49 2014 (r340248) +++ head/net/p5-IO-Socket-IP/Makefile Sun Jan 19 09:26:54 2014 (r340249) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= IO-Socket-IP -PORTVERSION= 0.24 +PORTVERSION= 0.26 CATEGORIES= net ipv6 perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net/p5-IO-Socket-IP/distinfo ============================================================================== --- head/net/p5-IO-Socket-IP/distinfo Sun Jan 19 09:26:49 2014 (r340248) +++ head/net/p5-IO-Socket-IP/distinfo Sun Jan 19 09:26:54 2014 (r340249) @@ -1,2 +1,2 @@ -SHA256 (IO-Socket-IP-0.24.tar.gz) = 6f18e8402813175caea99e4221b66781660acc5222036ab0fddeb1cca5b7a80c -SIZE (IO-Socket-IP-0.24.tar.gz) = 39279 +SHA256 (IO-Socket-IP-0.26.tar.gz) = b44001baae44cfd5fbce2db82a5cf0990058900c13c57c9c5c8eac4dd68c7d0c +SIZE (IO-Socket-IP-0.26.tar.gz) = 40271 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:26:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E7D4326A; Sun, 19 Jan 2014 09:26:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D414C1DC7; Sun, 19 Jan 2014 09:26:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9QxsG025343; Sun, 19 Jan 2014 09:26:59 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9QxO2025340; Sun, 19 Jan 2014 09:26:59 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190926.s0J9QxO2025340@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:26:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340250 - head/net/rubygem-oauth2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:27:00 -0000 Author: sunpoet Date: Sun Jan 19 09:26:59 2014 New Revision: 340250 URL: http://svnweb.freebsd.org/changeset/ports/340250 QAT: https://qat.redports.org/buildarchive/r340250/ Log: - Update to 0.9.3 Changes: https://github.com/intridea/oauth2/commits/master Modified: head/net/rubygem-oauth2/Makefile head/net/rubygem-oauth2/distinfo Modified: head/net/rubygem-oauth2/Makefile ============================================================================== --- head/net/rubygem-oauth2/Makefile Sun Jan 19 09:26:54 2014 (r340249) +++ head/net/rubygem-oauth2/Makefile Sun Jan 19 09:26:59 2014 (r340250) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= oauth2 -PORTVERSION= 0.9.2 +PORTVERSION= 0.9.3 CATEGORIES= net rubygems MASTER_SITES= RG @@ -12,9 +12,8 @@ COMMENT= Ruby wrapper for the OAuth 2.0 LICENSE= MIT RUN_DEPENDS= rubygem-faraday>=0.8:${PORTSDIR}/www/rubygem-faraday \ - rubygem-httpauth>=0.2:${PORTSDIR}/net/rubygem-httpauth \ - rubygem-jwt>=0.1.4:${PORTSDIR}/www/rubygem-jwt \ - rubygem-multi_json>=1.0:${PORTSDIR}/devel/rubygem-multi_json \ + rubygem-jwt>=0.1.8:${PORTSDIR}/www/rubygem-jwt \ + rubygem-multi_json>=1.3:${PORTSDIR}/devel/rubygem-multi_json \ rubygem-multi_xml>=0.5:${PORTSDIR}/textproc/rubygem-multi_xml \ rubygem-rack>=1.2:${PORTSDIR}/www/rubygem-rack Modified: head/net/rubygem-oauth2/distinfo ============================================================================== --- head/net/rubygem-oauth2/distinfo Sun Jan 19 09:26:54 2014 (r340249) +++ head/net/rubygem-oauth2/distinfo Sun Jan 19 09:26:59 2014 (r340250) @@ -1,2 +1,2 @@ -SHA256 (rubygem/oauth2-0.9.2.gem) = 6d69c7efcd39c808b8faca37c84f46d04d6298451c9cce04d0d8316329ca6116 -SIZE (rubygem/oauth2-0.9.2.gem) = 22016 +SHA256 (rubygem/oauth2-0.9.3.gem) = 60ee80ea74541394f35c06330ec440470cb023e354bcce3ff4c55b6339546de5 +SIZE (rubygem/oauth2-0.9.3.gem) = 23552 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:27:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D442E33D; Sun, 19 Jan 2014 09:27:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C0ECB1DC8; Sun, 19 Jan 2014 09:27:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9R4Kp025442; Sun, 19 Jan 2014 09:27:04 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9R4Z1025440; Sun, 19 Jan 2014 09:27:04 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190927.s0J9R4Z1025440@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:27:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340251 - head/sysutils/rubygem-parallel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:27:04 -0000 Author: sunpoet Date: Sun Jan 19 09:27:04 2014 New Revision: 340251 URL: http://svnweb.freebsd.org/changeset/ports/340251 QAT: https://qat.redports.org/buildarchive/r340251/ Log: - Update to 0.9.2 Changes: https://github.com/grosser/parallel/commits/master Modified: head/sysutils/rubygem-parallel/Makefile head/sysutils/rubygem-parallel/distinfo Modified: head/sysutils/rubygem-parallel/Makefile ============================================================================== --- head/sysutils/rubygem-parallel/Makefile Sun Jan 19 09:26:59 2014 (r340250) +++ head/sysutils/rubygem-parallel/Makefile Sun Jan 19 09:27:04 2014 (r340251) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= parallel -PORTVERSION= 0.9.1 +PORTVERSION= 0.9.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-parallel/distinfo ============================================================================== --- head/sysutils/rubygem-parallel/distinfo Sun Jan 19 09:26:59 2014 (r340250) +++ head/sysutils/rubygem-parallel/distinfo Sun Jan 19 09:27:04 2014 (r340251) @@ -1,2 +1,2 @@ -SHA256 (rubygem/parallel-0.9.1.gem) = 7f9fea293557aba78089f9b9f886c478c57c8c12755e385d14c28288c9bb8007 -SIZE (rubygem/parallel-0.9.1.gem) = 12288 +SHA256 (rubygem/parallel-0.9.2.gem) = 5aaed25e508ab9eaf45a16f58a38c52ceb16c5544bacad5c12bbe429a20e21e9 +SIZE (rubygem/parallel-0.9.2.gem) = 11776 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:27:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 384CF40F; Sun, 19 Jan 2014 09:27:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 259D21DCA; Sun, 19 Jan 2014 09:27:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9R9dc025531; Sun, 19 Jan 2014 09:27:09 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9R81x025527; Sun, 19 Jan 2014 09:27:08 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190927.s0J9R81x025527@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:27:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340252 - head/devel/rubygem-listen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:27:09 -0000 Author: sunpoet Date: Sun Jan 19 09:27:08 2014 New Revision: 340252 URL: http://svnweb.freebsd.org/changeset/ports/340252 QAT: https://qat.redports.org/buildarchive/r340252/ Log: - Update to 2.4.0 Changes: https://github.com/guard/listen/releases Modified: head/devel/rubygem-listen/Makefile head/devel/rubygem-listen/distinfo Modified: head/devel/rubygem-listen/Makefile ============================================================================== --- head/devel/rubygem-listen/Makefile Sun Jan 19 09:27:04 2014 (r340251) +++ head/devel/rubygem-listen/Makefile Sun Jan 19 09:27:08 2014 (r340252) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= listen -PORTVERSION= 2.2.0 +PORTVERSION= 2.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-listen/distinfo ============================================================================== --- head/devel/rubygem-listen/distinfo Sun Jan 19 09:27:04 2014 (r340251) +++ head/devel/rubygem-listen/distinfo Sun Jan 19 09:27:08 2014 (r340252) @@ -1,2 +1,2 @@ -SHA256 (rubygem/listen-2.2.0.gem) = ac6c4d925eef371be0fff8fb92b3cc85317147250035d01a2f6d75d2ca65a6ba -SIZE (rubygem/listen-2.2.0.gem) = 23040 +SHA256 (rubygem/listen-2.4.0.gem) = 157476e9786fdc05a42c7224e4e42890f50558331839d2872a4a6089d5ea7056 +SIZE (rubygem/listen-2.4.0.gem) = 24064 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:27:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61DDA4E8; Sun, 19 Jan 2014 09:27:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4ED651DCB; Sun, 19 Jan 2014 09:27:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9RER0025619; Sun, 19 Jan 2014 09:27:14 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9RDmE025617; Sun, 19 Jan 2014 09:27:13 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401190927.s0J9RDmE025617@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Sun, 19 Jan 2014 09:27:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340253 - head/sysutils/rubygem-guard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 09:27:14 -0000 Author: sunpoet Date: Sun Jan 19 09:27:13 2014 New Revision: 340253 URL: http://svnweb.freebsd.org/changeset/ports/340253 QAT: https://qat.redports.org/buildarchive/r340253/ Log: - Update to 2.3.0 Changes: https://github.com/guard/guard/releases Modified: head/sysutils/rubygem-guard/Makefile head/sysutils/rubygem-guard/distinfo Modified: head/sysutils/rubygem-guard/Makefile ============================================================================== --- head/sysutils/rubygem-guard/Makefile Sun Jan 19 09:27:08 2014 (r340252) +++ head/sysutils/rubygem-guard/Makefile Sun Jan 19 09:27:13 2014 (r340253) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= guard -PORTVERSION= 2.2.5 +PORTVERSION= 2.3.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG Modified: head/sysutils/rubygem-guard/distinfo ============================================================================== --- head/sysutils/rubygem-guard/distinfo Sun Jan 19 09:27:08 2014 (r340252) +++ head/sysutils/rubygem-guard/distinfo Sun Jan 19 09:27:13 2014 (r340253) @@ -1,2 +1,2 @@ -SHA256 (rubygem/guard-2.2.5.gem) = 60bba100bfceff4d17fdf40280feb72f5e5dd2ee2cf90f603189679d7ad0f1be -SIZE (rubygem/guard-2.2.5.gem) = 230912 +SHA256 (rubygem/guard-2.3.0.gem) = 65c5f197067ba4a9acc6fcbd6a43ad233c05cdb4b9bca87888a0b1fe18191121 +SIZE (rubygem/guard-2.3.0.gem) = 231936 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:28:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E9BCB4E; Sun, 19 Jan 2014 09:28:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 502D71DDE; Sun, 19 Jan 2014 09:28:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9SOZ3026220; Sun, 19 Jan 2014 09:28:24 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9SLBq026206; Sun, 19 Jan 2014 09:28:21 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190928.s0J9SLBq026206@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 09:28:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340257 - in head/net/netmap: . 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.17 Precedence: list List-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, 19 Jan 2014 09:28:24 -0000 Author: miwi Date: Sun Jan 19 09:28:21 2014 New Revision: 340257 URL: http://svnweb.freebsd.org/changeset/ports/340257 QAT: https://qat.redports.org/buildarchive/r340257/ Log: - Fix build with clang PR: 185506 Submitted by: ports fury Added: head/net/netmap/files/patch-makelist__args.c (contents, props changed) head/net/netmap/files/patch-netmap__args.c (contents, props changed) head/net/netmap/files/patch-netmap__drawmap.c (contents, props changed) head/net/netmap/files/patch-netmap__hostclass.c (contents, props changed) head/net/netmap/files/patch-netmap__hostclass.h (contents, props changed) head/net/netmap/files/patch-netmap__lookup.h (contents, props changed) head/net/netmap/files/patch-netmap__misc.h (contents, props changed) head/net/netmap/files/patch-netmap__netmap.c (contents, props changed) Modified: head/net/netmap/Makefile (contents, props changed) head/net/netmap/files/patch-belgolib::files.c (contents, props changed) head/net/netmap/files/patch-netmap::Makefile (contents, props changed) head/net/netmap/files/patch-netmap::lookup.c (contents, props changed) head/net/netmap/files/patch-netmap::misc.c (contents, props changed) Modified: head/net/netmap/Makefile ============================================================================== --- head/net/netmap/Makefile Sun Jan 19 09:27:40 2014 (r340256) +++ head/net/netmap/Makefile Sun Jan 19 09:28:21 2014 (r340257) @@ -10,15 +10,18 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Make a graphical representation of the surrounding network +LICENSE= GPLv2 + RUN_DEPENDS= dotty:${PORTSDIR}/graphics/graphviz -USE_GMAKE= yes +USES= gmake PLIST_FILES= bin/makelist bin/netmap -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/makelist/makelist ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/netmap/netmap ${PREFIX}/bin +.for i in makelist netmap + (cd ${WRKSRC}/${i} && ${INSTALL_PROGRAM} ${i} \ + ${STAGEDIR}${PREFIX}/bin) +.endfor .include Modified: head/net/netmap/files/patch-belgolib::files.c ============================================================================== --- head/net/netmap/files/patch-belgolib::files.c Sun Jan 19 09:27:40 2014 (r340256) +++ head/net/netmap/files/patch-belgolib::files.c Sun Jan 19 09:28:21 2014 (r340257) @@ -1,14 +1,16 @@ --- belgolib/files.c.orig 2010-01-06 08:00:52.000000000 +0900 +++ belgolib/files.c 2011-11-23 22:22:36.000000000 +0900 -@@ -17,7 +17,7 @@ +@@ -17,8 +17,8 @@ Infile::Infile() : ifstream() { } -Infile::Infile(const string& file_name, int mode, bool fatal) +- : ifstream(file_name.c_str(), (std::_Ios_Openmode)mode) +Infile::Infile(const string& file_name, ios::openmode mode, bool fatal) - : ifstream(file_name.c_str(), (std::_Ios_Openmode)mode) ++ : ifstream(file_name.c_str(), (std::ios_base::openmode)mode) { + if(cdb>d_list) @@ -39,7 +39,7 @@ } @@ -18,3 +20,12 @@ { if(cdb>d_list) +@@ -49,7 +49,7 @@ + //file is open, close it first + close(); + +- open(file_name.c_str(), (std::_Ios_Openmode)mode); ++ open(file_name.c_str(), (std::ios_base::openmode)mode); + + if(int error_nr = check_open()) { + if(cdb>d_list) Added: head/net/netmap/files/patch-makelist__args.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/netmap/files/patch-makelist__args.c Sun Jan 19 09:28:21 2014 (r340257) @@ -0,0 +1,29 @@ +--- makelist/args.c.orig ++++ makelist/args.c +@@ -1,6 +1,6 @@ +-#include ++#include + #include +-#include ++#include + + using namespace std; + +@@ -35,7 +35,7 @@ + exit(-1); + } + +-static void set_string_arg(strstream& ss, string& val) ++static void set_string_arg(stringstream& ss, string& val) + { + string argvalue; + ss >> argvalue; +@@ -62,7 +62,7 @@ + + static void process(const string& argline) + { +- strstream ss; ++ stringstream ss; + ss << argline; + + string arg; Modified: head/net/netmap/files/patch-netmap::Makefile ============================================================================== --- head/net/netmap/files/patch-netmap::Makefile Sun Jan 19 09:27:40 2014 (r340256) +++ head/net/netmap/files/patch-netmap::Makefile Sun Jan 19 09:28:21 2014 (r340257) @@ -10,7 +10,14 @@ CPPFLAGS = -I../belgolib -@@ -34,7 +33,7 @@ +@@ -28,13 +27,13 @@ + + test: $(OFILES) + $(CC) -o $(OEXE) $(OFILES) $(LDFLAGS) +- strip $(OEXE) ++# strip $(OEXE) + + clean: -/bin/rm -f $(OFILES) $(OEXE) depend: Modified: head/net/netmap/files/patch-netmap::lookup.c ============================================================================== --- head/net/netmap/files/patch-netmap::lookup.c Sun Jan 19 09:27:40 2014 (r340256) +++ head/net/netmap/files/patch-netmap::lookup.c Sun Jan 19 09:28:21 2014 (r340257) @@ -1,7 +1,7 @@ --- netmap/lookup.c.orig 2010-01-06 07:59:38.000000000 +0900 +++ netmap/lookup.c 2011-11-23 22:32:15.000000000 +0900 -@@ -1,6 +1,8 @@ - #include +@@ -1,6 +1,7 @@ +-#include #include +#include Modified: head/net/netmap/files/patch-netmap::misc.c ============================================================================== --- head/net/netmap/files/patch-netmap::misc.c Sun Jan 19 09:27:40 2014 (r340256) +++ head/net/netmap/files/patch-netmap::misc.c Sun Jan 19 09:28:21 2014 (r340257) @@ -1,6 +1,21 @@ --- netmap/misc.c.orig Sun Dec 15 14:54:26 2002 +++ netmap/misc.c Sun Dec 15 14:54:26 2002 -@@ -54,7 +54,7 @@ +@@ -1,4 +1,4 @@ +-#include ++#include + #include + + #include "misc.h" +@@ -17,7 +17,7 @@ + + string int_to_str(int i) + { +- strstream ost; ++ stringstream ost; + + ost << i << char(0); + +@@ -55,7 +55,7 @@ return false; bool had_point = false; Added: head/net/netmap/files/patch-netmap__args.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/netmap/files/patch-netmap__args.c Sun Jan 19 09:28:21 2014 (r340257) @@ -0,0 +1,26 @@ +--- netmap/args.c.orig ++++ netmap/args.c +@@ -1,4 +1,4 @@ +-#include ++#include + #include + #include + +@@ -47,7 +47,7 @@ + exit(0); + } + +-static void set_string_arg(strstream& ss, string& val) ++static void set_string_arg(stringstream& ss, string& val) + { + string argvalue; + ss >> argvalue; +@@ -60,7 +60,7 @@ + + static void process(const string& argline) + { +- strstream ss; ++ stringstream ss; + ss << argline; + + string arg; Added: head/net/netmap/files/patch-netmap__drawmap.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/netmap/files/patch-netmap__drawmap.c Sun Jan 19 09:28:21 2014 (r340257) @@ -0,0 +1,7 @@ +--- netmap/drawmap.c.orig ++++ netmap/drawmap.c +@@ -1,4 +1,3 @@ +-#include + #include + + #include Added: head/net/netmap/files/patch-netmap__hostclass.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/netmap/files/patch-netmap__hostclass.c Sun Jan 19 09:28:21 2014 (r340257) @@ -0,0 +1,7 @@ +--- netmap/hostclass.c.orig ++++ netmap/hostclass.c +@@ -1,4 +1,3 @@ +-#include + #include + + //from belgolib Added: head/net/netmap/files/patch-netmap__hostclass.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/netmap/files/patch-netmap__hostclass.h Sun Jan 19 09:28:21 2014 (r340257) @@ -0,0 +1,15 @@ +--- netmap/hostclass.h.orig ++++ netmap/hostclass.h +@@ -48,10 +48,10 @@ + HostClass* a; + HostClass* b; + +- bool operator==(HostLink& hl) ++ bool operator==(const HostLink& hl) const + { return a == hl.a && b == hl.b; } + +- bool operator <(HostLink& hl) ++ bool operator <(const HostLink& hl) const + { return a==hl.a ? b < hl.b : a < hl.a; } + }; + Added: head/net/netmap/files/patch-netmap__lookup.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/netmap/files/patch-netmap__lookup.h Sun Jan 19 09:28:21 2014 (r340257) @@ -0,0 +1,15 @@ +--- netmap/lookup.h.orig ++++ netmap/lookup.h +@@ -14,10 +14,10 @@ + string ip; + string hostname; + +- bool operator==(const HostRec& hr) ++ bool operator==(const HostRec& hr) const + { return ip == hr.ip && hostname == hr.hostname; } + +- bool operator<(const HostRec& hr) ++ bool operator<(const HostRec& hr) const + { return ip==hr.ip ? hostname +-#include + #include + + #include Added: head/net/netmap/files/patch-netmap__netmap.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/netmap/files/patch-netmap__netmap.c Sun Jan 19 09:28:21 2014 (r340257) @@ -0,0 +1,26 @@ +--- netmap/netmap.c.orig ++++ netmap/netmap.c +@@ -1,4 +1,4 @@ +-#include ++#include + #include + #include + +@@ -18,7 +18,7 @@ + Dbgfile dbgs; + int cdb = 1; + +-static void copy_line(strstream& os, istream& inf) ++static void copy_line(stringstream& os, istream& inf) + { + string result; + +@@ -67,7 +67,7 @@ + int nr_hops = 0; + int invalid_hosts_found = 0; + while(inf && !inf.eof()) { +- strstream line; ++ stringstream line; + copy_line(line, inf); + + if(max_hops && ++nr_hops > max_hops) { From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 09:27:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF99C91C; Sun, 19 Jan 2014 09:27:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CC4E91DD4; Sun, 19 Jan 2014 09:27:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0J9RfqH025938; Sun, 19 Jan 2014 09:27:41 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0J9RetA025933; Sun, 19 Jan 2014 09:27:40 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401190927.s0J9RetA025933@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 09:27:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340256 - in head/mail/bbmail: . 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.17 Precedence: list List-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, 19 Jan 2014 09:27:42 -0000 Author: miwi Date: Sun Jan 19 09:27:40 2014 New Revision: 340256 URL: http://svnweb.freebsd.org/changeset/ports/340256 QAT: https://qat.redports.org/buildarchive/r340256/ Log: - Fix build - Add License PR: 185335 Submitted by: ports fury Added: head/mail/bbmail/files/ head/mail/bbmail/files/patch-src__bbmail.cpp (contents, props changed) head/mail/bbmail/files/patch-src__mailboxmenu.cpp (contents, props changed) head/mail/bbmail/files/patch-src__main.cpp (contents, props changed) head/mail/bbmail/files/patch-src__resource.cpp (contents, props changed) Modified: head/mail/bbmail/Makefile (contents, props changed) Modified: head/mail/bbmail/Makefile ============================================================================== --- head/mail/bbmail/Makefile Sun Jan 19 09:27:22 2014 (r340255) +++ head/mail/bbmail/Makefile Sun Jan 19 09:27:40 2014 (r340256) @@ -7,7 +7,9 @@ CATEGORIES= mail MASTER_SITES= SF/bbtools/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= A tool intended for Blackbox that checks for new mail +COMMENT= Tool intended for Blackbox that checks for new mail + +LICENSE= GPLv2 # (or later) BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/libbt.pc:${PORTSDIR}/x11-wm/blackbox @@ -15,12 +17,7 @@ USES= pkgconfig USE_XORG= xext GNU_CONFIGURE= yes -MAN1= bbmail.1 -PLIST_FILES= bin/bbmail share/bbtools/bbmail.rc - -NO_STAGE= yes -post-install: - @${ECHO_CMD} "@unexec rmdir %D/share/bbtools 2>/dev/null || true" \ - >> ${TMPPLIST} +PLIST_FILES= bin/bbmail man/man1/bbmail.1.gz share/bbtools/bbmail.rc +PLIST_DIRSTRY= share/bbtools .include Added: head/mail/bbmail/files/patch-src__bbmail.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/bbmail/files/patch-src__bbmail.cpp Sun Jan 19 09:27:40 2014 (r340256) @@ -0,0 +1,18 @@ +--- src/bbmail.cpp.orig ++++ src/bbmail.cpp +@@ -22,13 +22,14 @@ + #include "bbmail.h" + #include "config.h" + #include ++#include ++#include + + extern "C" { + #include + #include + #include + #include +-#include + } + + #include "EWMH.hh" Added: head/mail/bbmail/files/patch-src__mailboxmenu.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/bbmail/files/patch-src__mailboxmenu.cpp Sun Jan 19 09:27:40 2014 (r340256) @@ -0,0 +1,10 @@ +--- src/mailboxmenu.cpp.orig ++++ src/mailboxmenu.cpp +@@ -20,6 +20,7 @@ + // + // + #include "mailboxmenu.h" ++#include + + MailboxMenu::MailboxMenu(ToolWindow *toolwindow) : + Menu(*toolwindow, toolwindow->getCurrentScreen()), bbtool(toolwindow) Added: head/mail/bbmail/files/patch-src__main.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/bbmail/files/patch-src__main.cpp Sun Jan 19 09:27:40 2014 (r340256) @@ -0,0 +1,10 @@ +--- src/main.cpp.orig ++++ src/main.cpp +@@ -22,6 +22,7 @@ + #include "bbmail.h" + #include "main.h" + #include "config.h" ++#include + + Configuration::Configuration(int iargc, char **iargv) + { Added: head/mail/bbmail/files/patch-src__resource.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/bbmail/files/patch-src__resource.cpp Sun Jan 19 09:27:40 2014 (r340256) @@ -0,0 +1,10 @@ +--- src/resource.cpp.orig ++++ src/resource.cpp +@@ -22,6 +22,7 @@ + #include "bbmail.h" + #include "resource.h" + #include "blackboxstyle.h" ++#include + + Resource::Resource(ToolWindow *toolwindow, const std::string &rc_file): + BaseResource(*toolwindow, toolwindow->getCurrentScreen(), rc_file), From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 10:02:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C803F40; Sun, 19 Jan 2014 10:02:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4D01B1FD3; Sun, 19 Jan 2014 10:02:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JA2BIQ040520; Sun, 19 Jan 2014 10:02:11 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JA2Aux040516; Sun, 19 Jan 2014 10:02:10 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191002.s0JA2Aux040516@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 10:02:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340258 - in head/devel/libmpcbdm: . 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.17 Precedence: list List-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, 19 Jan 2014 10:02:11 -0000 Author: miwi Date: Sun Jan 19 10:02:10 2014 New Revision: 340258 URL: http://svnweb.freebsd.org/changeset/ports/340258 QAT: https://qat.redports.org/buildarchive/r340258/ Log: - Fix build with clang PR: 184851 Submitted by: ports fury Modified: head/devel/libmpcbdm/Makefile (contents, props changed) head/devel/libmpcbdm/files/patch-libmpc8xx_lptbdm.c (contents, props changed) head/devel/libmpcbdm/pkg-plist (contents, props changed) Modified: head/devel/libmpcbdm/Makefile ============================================================================== --- head/devel/libmpcbdm/Makefile Sun Jan 19 09:28:21 2014 (r340257) +++ head/devel/libmpcbdm/Makefile Sun Jan 19 10:02:10 2014 (r340258) @@ -13,19 +13,20 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Standalone library to control various mpc8xx boards WRKSRC= ${WRKDIR}/libmpc8xx -USE_GMAKE= yes -GNU_CONFIGURE= yes + +USES= gmake +USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS= amd64 i386 -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} -E -e 's,(objformat=).*,\1elf,' \ - ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + 's| $$(includedir)| $$(DESTDIR)$$(includedir)|' \ + ${WRKSRC}/libmpc8xx/Makefile.in post-install: - @${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/Flash.dev ${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${INSTALL_DATA} Flash.dev ${STAGEDIR}${DATADIR}) .include Modified: head/devel/libmpcbdm/files/patch-libmpc8xx_lptbdm.c ============================================================================== --- head/devel/libmpcbdm/files/patch-libmpc8xx_lptbdm.c Sun Jan 19 09:28:21 2014 (r340257) +++ head/devel/libmpcbdm/files/patch-libmpc8xx_lptbdm.c Sun Jan 19 10:02:10 2014 (r340258) @@ -9,12 +9,24 @@ #include static int lptbdm_read( void ); -@@ -252,7 +252,7 @@ +@@ -52,8 +52,9 @@ + + static uid_t lptbdm_euid = -1; + +-#define INB(x,port) asm volatile("inb %1, %0" : "=a" (x) : "d" (port)) +-#define OUTB(x,port) asm volatile("outb %0, %1" : : "a" (x), "d" (port)) ++#include ++#define INB(x,port) x = inb(port) ++#define OUTB(x,port) outb(port,x) + + /* in case of asm trouble (red hat 7.0?) try the code below and compile with -O option */ + /*#include +@@ -252,7 +253,7 @@ } } - nResult = ioperm( lptbdm_port.DATAAddr, 3, 1 ); -+ nResult = i386_set_ioperm( lptbdm_port.DATAAddr, 3, 1 ); ++ nResult = sysarch( I386_SET_IOPERM, (void *) ( lptbdm_port.DATAAddr, 3, 1 ) ); seteuid( getuid() ); Modified: head/devel/libmpcbdm/pkg-plist ============================================================================== --- head/devel/libmpcbdm/pkg-plist Sun Jan 19 09:28:21 2014 (r340257) +++ head/devel/libmpcbdm/pkg-plist Sun Jan 19 10:02:10 2014 (r340258) @@ -7,6 +7,7 @@ include/mpc8xx/mpc8xxmem.h include/mpc8xx/mpc8xxmisc.h include/mpc8xx/mpc8xxspr.h include/mpc8xx/mpc8xxtarget.h +lib/libmpc8xx.a lib/libmpc8xx.la lib/libmpc8xx.so lib/libmpc8xx.so.0 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 10:43:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B218591; Sun, 19 Jan 2014 10:43:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F11441279; Sun, 19 Jan 2014 10:43:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JAhd2C055823; Sun, 19 Jan 2014 10:43:39 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JAhdpZ055821; Sun, 19 Jan 2014 10:43:39 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191043.s0JAhdpZ055821@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 10:43:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340259 - head/dns/udns X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 10:43:40 -0000 Author: mm Date: Sun Jan 19 10:43:39 2014 New Revision: 340259 URL: http://svnweb.freebsd.org/changeset/ports/340259 QAT: https://qat.redports.org/buildarchive/r340259/ Log: Update to 0.3 and add STAGE support Modified: head/dns/udns/Makefile head/dns/udns/distinfo Modified: head/dns/udns/Makefile ============================================================================== --- head/dns/udns/Makefile Sun Jan 19 10:02:10 2014 (r340258) +++ head/dns/udns/Makefile Sun Jan 19 10:43:39 2014 (r340259) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= udns -PORTVERSION= 0.2 +PORTVERSION= 0.3 CATEGORIES= dns MASTER_SITES= http://www.corpit.ru/mjt/udns/ @@ -26,7 +26,6 @@ SHLIB_MAJOR= 0 MAN1= dnsget.1 rblcheck.1 MAN3= udns.3 -NO_STAGE= yes .include .if ${PORT_OPTIONS:MIPV6} @@ -40,25 +39,25 @@ post-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/libudns.so.${SHLIB_MAJOR} \ - ${PREFIX}/lib/libudns.so.${SHLIB_MAJOR} - ${LN} -sf ${PREFIX}/lib/libudns.so.${SHLIB_MAJOR} \ - ${PREFIX}/lib/libudns.so - ${INSTALL_DATA} ${WRKSRC}/udns.h ${PREFIX}/include/udns.h - ${INSTALL_DATA} ${WRKSRC}/libudns.a ${PREFIX}/lib/libudns.a - ${INSTALL_PROGRAM} ${WRKSRC}/dnsget_s ${PREFIX}/bin/dnsget - ${INSTALL_PROGRAM} ${WRKSRC}/rblcheck_s ${PREFIX}/bin/rblcheck + ${STAGEDIR}${PREFIX}/lib/libudns.so.${SHLIB_MAJOR} + ${LN} -sf ${STAGEDIR}${PREFIX}/lib/libudns.so.${SHLIB_MAJOR} \ + ${STAGEDIR}${PREFIX}/lib/libudns.so + ${INSTALL_DATA} ${WRKSRC}/udns.h ${STAGEDIR}${PREFIX}/include/udns.h + ${INSTALL_DATA} ${WRKSRC}/libudns.a ${STAGEDIR}${PREFIX}/lib/libudns.a + ${INSTALL_PROGRAM} ${WRKSRC}/dnsget_s ${STAGEDIR}${PREFIX}/bin/dnsget + ${INSTALL_PROGRAM} ${WRKSRC}/rblcheck_s ${STAGEDIR}${PREFIX}/bin/rblcheck .for FILE in ${MAN1} - ${INSTALL_MAN} ${WRKSRC}/${FILE} ${MANPREFIX}/man/man1/${FILE} + ${INSTALL_MAN} ${WRKSRC}/${FILE} ${STAGEDIR}${MANPREFIX}/man/man1/${FILE} .endfor .for FILE in ${MAN3} - ${INSTALL_MAN} ${WRKSRC}/${FILE} ${MANPREFIX}/man/man3/${FILE} + ${INSTALL_MAN} ${WRKSRC}/${FILE} ${STAGEDIR}${MANPREFIX}/man/man3/${FILE} .endfor post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for FILE in NEWS NOTES TODO - ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}/${FILE} + ${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE} .endfor .endif Modified: head/dns/udns/distinfo ============================================================================== --- head/dns/udns/distinfo Sun Jan 19 10:02:10 2014 (r340258) +++ head/dns/udns/distinfo Sun Jan 19 10:43:39 2014 (r340259) @@ -1,2 +1,2 @@ -SHA256 (udns-0.2.tar.gz) = 558c7d7acc358e13f91f73ba7fef0ed094010716a8dcee286eef05d0ff264224 -SIZE (udns-0.2.tar.gz) = 87308 +SHA256 (udns-0.3.tar.gz) = 08773c060e3e1841374ecca01a9a4430e5a4e9728a8b8b3a5157e54b67ab4e5d +SIZE (udns-0.3.tar.gz) = 84565 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 10:59:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 112B9740; Sun, 19 Jan 2014 10:59:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F0A48131E; Sun, 19 Jan 2014 10:59:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JAx3xU060142; Sun, 19 Jan 2014 10:59:03 GMT (envelope-from bar@svn.freebsd.org) Received: (from bar@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JAx33D060139; Sun, 19 Jan 2014 10:59:03 GMT (envelope-from bar@svn.freebsd.org) Message-Id: <201401191059.s0JAx33D060139@svn.freebsd.org> From: Barbara Guida Date: Sun, 19 Jan 2014 10:59:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340260 - head/www/xpi-adblock_plus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 10:59:04 -0000 Author: bar Date: Sun Jan 19 10:59:03 2014 New Revision: 340260 URL: http://svnweb.freebsd.org/changeset/ports/340260 QAT: https://qat.redports.org/buildarchive/r340260/ Log: Update to 2.4.1 Approved by: flo (mentor, implicit) Modified: head/www/xpi-adblock_plus/Makefile head/www/xpi-adblock_plus/distinfo head/www/xpi-adblock_plus/pkg-plist Modified: head/www/xpi-adblock_plus/Makefile ============================================================================== --- head/www/xpi-adblock_plus/Makefile Sun Jan 19 10:43:39 2014 (r340259) +++ head/www/xpi-adblock_plus/Makefile Sun Jan 19 10:59:03 2014 (r340260) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= adblock_plus -PORTVERSION= 2.4 -DISTVERSIONSUFFIX= -tb+fx+an+sm +PORTVERSION= 2.4.1 +DISTVERSIONSUFFIX= -fx+an+sm+tb CATEGORIES= www MAINTAINER= bar@FreeBSD.org Modified: head/www/xpi-adblock_plus/distinfo ============================================================================== --- head/www/xpi-adblock_plus/distinfo Sun Jan 19 10:43:39 2014 (r340259) +++ head/www/xpi-adblock_plus/distinfo Sun Jan 19 10:59:03 2014 (r340260) @@ -1,2 +1,2 @@ -SHA256 (xpi/adblock_plus-2.4-tb+fx+an+sm.xpi) = 0f2dd7a2231b3346edbd982beb7023758316fdc628c9f831c0b70fee870f991a -SIZE (xpi/adblock_plus-2.4-tb+fx+an+sm.xpi) = 915554 +SHA256 (xpi/adblock_plus-2.4.1-fx+an+sm+tb.xpi) = da6e694244439260d1789103effd15ba6441d9c086678fb26b8436d101a14077 +SIZE (xpi/adblock_plus-2.4.1-fx+an+sm+tb.xpi) = 940775 Modified: head/www/xpi-adblock_plus/pkg-plist ============================================================================== --- head/www/xpi-adblock_plus/pkg-plist Sun Jan 19 10:43:39 2014 (r340259) +++ head/www/xpi-adblock_plus/pkg-plist Sun Jan 19 10:59:03 2014 (r340260) @@ -229,6 +229,14 @@ %%XPI_XPIDIR%%/chrome/locale/hy-AM/sendReport.dtd %%XPI_XPIDIR%%/chrome/locale/hy-AM/sidebar.dtd %%XPI_XPIDIR%%/chrome/locale/hy-AM/subscriptionSelection.dtd +%%XPI_XPIDIR%%/chrome/locale/id/composer.dtd +%%XPI_XPIDIR%%/chrome/locale/id/filters.dtd +%%XPI_XPIDIR%%/chrome/locale/id/firstRun.properties +%%XPI_XPIDIR%%/chrome/locale/id/global.properties +%%XPI_XPIDIR%%/chrome/locale/id/overlay.dtd +%%XPI_XPIDIR%%/chrome/locale/id/sendReport.dtd +%%XPI_XPIDIR%%/chrome/locale/id/sidebar.dtd +%%XPI_XPIDIR%%/chrome/locale/id/subscriptionSelection.dtd %%XPI_XPIDIR%%/chrome/locale/is/composer.dtd %%XPI_XPIDIR%%/chrome/locale/is/filters.dtd %%XPI_XPIDIR%%/chrome/locale/is/firstRun.properties @@ -439,11 +447,9 @@ %%XPI_XPIDIR%%/chrome/locale/zh-TW/subscriptionSelection.dtd %%XPI_XPIDIR%%/chrome/skin/abp-icon-big.png %%XPI_XPIDIR%%/chrome/skin/abp-status-16.png +%%XPI_XPIDIR%%/chrome/skin/abp-status-32.png %%XPI_XPIDIR%%/chrome/skin/abp-status.png %%XPI_XPIDIR%%/chrome/skin/ajax-loader.gif -%%XPI_XPIDIR%%/chrome/skin/arrow-down.png -%%XPI_XPIDIR%%/chrome/skin/arrow-up.png -%%XPI_XPIDIR%%/chrome/skin/background-candomore.png %%XPI_XPIDIR%%/chrome/skin/background-main.png %%XPI_XPIDIR%%/chrome/skin/background-share.png %%XPI_XPIDIR%%/chrome/skin/background.png @@ -478,6 +484,7 @@ %%XPI_XPIDIR%%/lib/Public.jsm %%XPI_XPIDIR%%/lib/appSupport.js %%XPI_XPIDIR%%/lib/contentPolicy.js +%%XPI_XPIDIR%%/lib/customizableUI.js %%XPI_XPIDIR%%/lib/downloader.js %%XPI_XPIDIR%%/lib/elemHide.js %%XPI_XPIDIR%%/lib/elemHideHitRegistration.js @@ -526,6 +533,7 @@ @dirrm %%XPI_XPIDIR%%/chrome/locale/hsb @dirrm %%XPI_XPIDIR%%/chrome/locale/hu @dirrm %%XPI_XPIDIR%%/chrome/locale/hy-AM +@dirrm %%XPI_XPIDIR%%/chrome/locale/id @dirrm %%XPI_XPIDIR%%/chrome/locale/is @dirrm %%XPI_XPIDIR%%/chrome/locale/it @dirrm %%XPI_XPIDIR%%/chrome/locale/ja From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 11:00:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E4A88896; Sun, 19 Jan 2014 11:00:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C55561332; Sun, 19 Jan 2014 11:00:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JB0T5x062184; Sun, 19 Jan 2014 11:00:29 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JB0TUZ062181; Sun, 19 Jan 2014 11:00:29 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191100.s0JB0TUZ062181@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 11:00:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340261 - in head/www: lighttpd lighttpd-mod_geoip lighttpd-mod_h264_streaming X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 11:00:30 -0000 Author: mm Date: Sun Jan 19 11:00:28 2014 New Revision: 340261 URL: http://svnweb.freebsd.org/changeset/ports/340261 QAT: https://qat.redports.org/buildarchive/r340261/ Log: Add STAGE support Modified: head/www/lighttpd-mod_geoip/Makefile head/www/lighttpd-mod_h264_streaming/Makefile head/www/lighttpd/Makefile Modified: head/www/lighttpd-mod_geoip/Makefile ============================================================================== --- head/www/lighttpd-mod_geoip/Makefile Sun Jan 19 10:59:03 2014 (r340260) +++ head/www/lighttpd-mod_geoip/Makefile Sun Jan 19 11:00:28 2014 (r340261) @@ -27,21 +27,22 @@ ALL_TARGET= ${PORTNAME}.la _BUILDING_LIGHTTPD_MODULE= yes -NO_STAGE= yes do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/lighttpd @${INSTALL_KLD} ${WRKSRC}/src/.libs/${PORTNAME}.so \ - ${LOCALBASE}/lib/lighttpd + ${STAGEDIR}${PREFIX}/lib/lighttpd @${INSTALL_KLD} ${WRKSRC}/src/.libs/${PORTNAME}.la \ - ${LOCALBASE}/lib/lighttpd + ${STAGEDIR}${PREFIX}/lib/lighttpd @${INSTALL_DATA} ${WRKSRC}/src/.libs/${PORTNAME}.a \ - ${LOCALBASE}/lib/lighttpd + ${STAGEDIR}${PREFIX}/lib/lighttpd post-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d @${INSTALL_DATA} ${WRKSRC}/doc/config/conf.d/geoip.conf \ - ${PREFIX}/etc/lighttpd/conf.d/geoip.conf.sample -.if !exists(${PREFIX}/etc/lighttpd/conf.d/geoip.conf) + ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/geoip.conf.sample +.if !exists(${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/geoip.conf) @${INSTALL_DATA} ${WRKSRC}/doc/config/conf.d/geoip.conf \ - ${PREFIX}/etc/lighttpd/conf.d/geoip.conf.sample + ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/geoip.conf.sample .endif .include "${MASTERDIR}/Makefile" Modified: head/www/lighttpd-mod_h264_streaming/Makefile ============================================================================== --- head/www/lighttpd-mod_h264_streaming/Makefile Sun Jan 19 10:59:03 2014 (r340260) +++ head/www/lighttpd-mod_h264_streaming/Makefile Sun Jan 19 11:00:28 2014 (r340261) @@ -35,21 +35,22 @@ ALL_TARGET= ${PORTNAME}.la _BUILDING_LIGHTTPD_MODULE= yes -NO_STAGE= yes do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/lighttpd @${INSTALL_KLD} ${WRKSRC}/src/.libs/${PORTNAME}.so \ - ${LOCALBASE}/lib/lighttpd + ${STAGEDIR}${PREFIX}/lib/lighttpd @${INSTALL_KLD} ${WRKSRC}/src/.libs/${PORTNAME}.la \ - ${LOCALBASE}/lib/lighttpd + ${STAGEDIR}${PREFIX}/lib/lighttpd @${INSTALL_DATA} ${WRKSRC}/src/.libs/${PORTNAME}.a \ - ${LOCALBASE}/lib/lighttpd + ${STAGEDIR}${PREFIX}/lib/lighttpd post-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d @${INSTALL_DATA} ${FILESDIR}/h264_streaming.conf \ - ${PREFIX}/etc/lighttpd/conf.d/h264_streaming.conf.sample -.if !exists(${PREFIX}/etc/lighttpd/conf.d/h264_streaming.conf) + ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/h264_streaming.conf.sample +.if !exists(${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/h264_streaming.conf) @${INSTALL_DATA} ${FILESDIR}/h264_streaming.conf \ - ${PREFIX}/etc/lighttpd/conf.d/h264_streaming.conf + ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/h264_streaming.conf .endif .include "${MASTERDIR}/Makefile" Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Sun Jan 19 10:59:03 2014 (r340260) +++ head/www/lighttpd/Makefile Sun Jan 19 11:00:28 2014 (r340261) @@ -83,7 +83,6 @@ PLIST_SUB+= LOGROOT="${LIGHTTPD_LOGROOT .endif # !defined(_BUILDING_LIGHTTPD_MODULE) -NO_STAGE= yes .include .if !defined(_BUILDING_LIGHTTPD_MODULE) @@ -201,37 +200,37 @@ post-patch: ${WRKSRC}/doc/config/lighttpd.conf post-install: - @${MKDIR} ${PREFIX}/etc/lighttpd/conf.d ${PREFIX}/etc/lighttpd/vhosts.d + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d ${STAGEDIR}${PREFIX}/etc/lighttpd/vhosts.d .for FILE in ${LIGHTTPD_CONF_FILES} @${INSTALL_DATA} ${WRKSRC}/doc/config/${FILE} \ - ${PREFIX}/etc/lighttpd/${FILE}.sample -.if !exists(${PREFIX}/etc/lighttpd/${FILE}) + ${STAGEDIR}${PREFIX}/etc/lighttpd/${FILE}.sample +.if !exists(${STAGEDIR}${PREFIX}/etc/lighttpd/${FILE}) @${INSTALL_DATA} ${WRKSRC}/doc/config/${FILE} \ - ${PREFIX}/etc/lighttpd/${FILE} + ${STAGEDIR}${PREFIX}/etc/lighttpd/${FILE} .endif .endfor .for FILE in ${LIGHTTPD_CONF_D_FILES} @${INSTALL_DATA} ${WRKSRC}/doc/config/conf.d/${FILE} \ - ${PREFIX}/etc/lighttpd/conf.d/${FILE}.sample -.if !exists(${PREFIX}/etc/lighttpd/conf.d/${FILE}) + ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/${FILE}.sample +.if !exists(${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/${FILE}) @${INSTALL_DATA} ${WRKSRC}/doc/config/conf.d/${FILE} \ - ${PREFIX}/etc/lighttpd/conf.d/${FILE} + ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/${FILE} .endif .endfor @${INSTALL_DATA} ${WRKSRC}/doc/config/vhosts.d/vhosts.template \ - ${PREFIX}/etc/lighttpd/vhosts.d/vhosts.template - @${MKDIR} -m 0700 ${LIGHTTPD_LOGROOT} - @${CHOWN} ${LIGHTTPD_USER}:${LIGHTTPD_GROUP} ${LIGHTTPD_LOGROOT} + ${STAGEDIR}${PREFIX}/etc/lighttpd/vhosts.d/vhosts.template + @${MKDIR} -m 0700 ${STAGEDIR}${LIGHTTPD_LOGROOT} + @${CHOWN} ${LIGHTTPD_USER}:${LIGHTTPD_GROUP} ${STAGEDIR}${LIGHTTPD_LOGROOT} .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} . for FILE in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}/${FILE} + @${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE} . endfor .endif .if ${PORT_OPTIONS:MMYSQLAUTH} . for FILE in README.mysqlauth mysql_auth.sql - @${INSTALL_DATA} ${FILESDIR}/${FILE} ${DOCSDIR}/${FILE} + @${INSTALL_DATA} ${FILESDIR}/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE} . endfor .endif From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 11:24:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46B32B75; Sun, 19 Jan 2014 11:24:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 26D201501; Sun, 19 Jan 2014 11:24:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JBOP86071483; Sun, 19 Jan 2014 11:24:25 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JBOOuH071474; Sun, 19 Jan 2014 11:24:24 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191124.s0JBOOuH071474@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 11:24:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340262 - in head: databases/proftpd-mod_sql_mysql databases/proftpd-mod_sql_odbc databases/proftpd-mod_sql_postgres databases/proftpd-mod_sql_sqlite ftp/proftpd net/proftpd-mod_ldap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 11:24:26 -0000 Author: mm Date: Sun Jan 19 11:24:24 2014 New Revision: 340262 URL: http://svnweb.freebsd.org/changeset/ports/340262 QAT: https://qat.redports.org/buildarchive/r340262/ Log: Add STAGE support to ProFTPD Modified: head/databases/proftpd-mod_sql_mysql/Makefile head/databases/proftpd-mod_sql_odbc/Makefile head/databases/proftpd-mod_sql_postgres/Makefile head/databases/proftpd-mod_sql_sqlite/Makefile head/ftp/proftpd/Makefile head/net/proftpd-mod_ldap/Makefile Modified: head/databases/proftpd-mod_sql_mysql/Makefile ============================================================================== --- head/databases/proftpd-mod_sql_mysql/Makefile Sun Jan 19 11:00:28 2014 (r340261) +++ head/databases/proftpd-mod_sql_mysql/Makefile Sun Jan 19 11:24:24 2014 (r340262) @@ -22,5 +22,4 @@ LIBDIRS= ${LOCALBASE}/lib _BUILDING_PROFTPD_MODULE= ${PORTNAME} -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/databases/proftpd-mod_sql_odbc/Makefile ============================================================================== --- head/databases/proftpd-mod_sql_odbc/Makefile Sun Jan 19 11:00:28 2014 (r340261) +++ head/databases/proftpd-mod_sql_odbc/Makefile Sun Jan 19 11:24:24 2014 (r340262) @@ -25,5 +25,4 @@ LIBDIRS= ${LOCALBASE}/lib _BUILDING_PROFTPD_MODULE= ${PORTNAME} -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/databases/proftpd-mod_sql_postgres/Makefile ============================================================================== --- head/databases/proftpd-mod_sql_postgres/Makefile Sun Jan 19 11:00:28 2014 (r340261) +++ head/databases/proftpd-mod_sql_postgres/Makefile Sun Jan 19 11:24:24 2014 (r340262) @@ -22,5 +22,4 @@ LIBDIRS= ${LOCALBASE}/lib _BUILDING_PROFTPD_MODULE= ${PORTNAME} -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/databases/proftpd-mod_sql_sqlite/Makefile ============================================================================== --- head/databases/proftpd-mod_sql_sqlite/Makefile Sun Jan 19 11:00:28 2014 (r340261) +++ head/databases/proftpd-mod_sql_sqlite/Makefile Sun Jan 19 11:24:24 2014 (r340262) @@ -22,5 +22,4 @@ LIBDIRS= ${LOCALBASE}/lib _BUILDING_PROFTPD_MODULE= ${PORTNAME} -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/ftp/proftpd/Makefile ============================================================================== --- head/ftp/proftpd/Makefile Sun Jan 19 11:00:28 2014 (r340261) +++ head/ftp/proftpd/Makefile Sun Jan 19 11:24:24 2014 (r340262) @@ -96,7 +96,6 @@ PLIST_SUB+= LOCALSTATEDIR="${LOCALSTATED .endif #!defined(_BUILDING_PROFTPD_MODULE) -NO_STAGE= yes .include .if defined(USE_OPENSSL) @@ -246,25 +245,29 @@ post-configure: .if defined(_BUILDING_PROFTPD_MODULE) pre-build: @cd ${WRKSRC} && ${MAKE} include/buildstamp.h + +pre-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/proftpd + .else post-install: - @cd ${PREFIX}/etc/ && ${CP} -n proftpd.conf.sample proftpd.conf || ${TRUE} - @${MKDIR} ${LOCALSTATEDIR}/proftpd - @cd ${PREFIX}/etc/proftpd && ${CP} -n dhparams.pem.sample dhparams.pem || ${TRUE} - @cd ${PREFIX}/etc/proftpd && ${CP} -n blacklist.dat.sample blacklist.dat || ${TRUE} + @cd ${STAGEDIR}${PREFIX}/etc/ && ${CP} -n proftpd.conf.sample proftpd.conf || ${TRUE} + @${MKDIR} ${STAGEDIR}${LOCALSTATEDIR}/proftpd + @cd ${STAGEDIR}${PREFIX}/etc/proftpd && ${CP} -n dhparams.pem.sample dhparams.pem || ${TRUE} + @cd ${STAGEIDR}${PREFIX}/etc/proftpd && ${CP} -n blacklist.dat.sample blacklist.dat || ${TRUE} .if ${PORT_OPTIONS:MDOCS} - @${INSTALL} -d ${DOCSDIR} - @cd ${WRKSRC} && ${CP} README* RELEASE_NOTES ${DOCSDIR} - @cd ${WRKSRC}/doc/ && ${INSTALL_DATA} license.txt ${DOCSDIR} + @${INSTALL} -d ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC} && ${CP} README* RELEASE_NOTES ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC}/doc/ && ${INSTALL_DATA} license.txt ${STAGEDIR}${DOCSDIR} . if ${PORT_OPTIONS:MHTMLDOCS} - @${INSTALL} -d ${DOCSDIR}/html - @cd ${WRKSRC}/doc/ && ${INSTALL_DATA} Configuration.html faq.html ${DOCSDIR}/html - @${CP} -RP ${WRKSRC}/doc/contrib ${DOCSDIR}/html/contrib - @${CP} -RP ${WRKSRC}/doc/modules ${DOCSDIR}/html/modules - @${CP} -RP ${WRKSRC}/doc/howto ${DOCSDIR}/html/howto + @${INSTALL} -d ${STAGEDIR}${DOCSDIR}/html + @cd ${WRKSRC}/doc/ && ${INSTALL_DATA} Configuration.html faq.html ${STAGEDIR}${DOCSDIR}/html + @${CP} -RP ${WRKSRC}/doc/contrib ${STAGEDIR}${DOCSDIR}/html/contrib + @${CP} -RP ${WRKSRC}/doc/modules ${STAGEDIR}${DOCSDIR}/html/modules + @${CP} -RP ${WRKSRC}/doc/howto ${STAGEDIR}${DOCSDIR}/html/howto . endif .endif - @${INSTALL_MAN} ${WRKSRC}/src/ftpdctl.8 ${MAN8PREFIX}/man/man8/ + @${INSTALL_MAN} ${WRKSRC}/src/ftpdctl.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/ .endif #!defined(_BUILDING_PROFTPD_MODULE) .include Modified: head/net/proftpd-mod_ldap/Makefile ============================================================================== --- head/net/proftpd-mod_ldap/Makefile Sun Jan 19 11:00:28 2014 (r340261) +++ head/net/proftpd-mod_ldap/Makefile Sun Jan 19 11:24:24 2014 (r340262) @@ -24,5 +24,4 @@ LIBDIRS= ${LOCALBASE}/lib _BUILDING_PROFTPD_MODULE= ${PORTNAME} \ mod_quotatab_ldap -NO_STAGE= yes .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 11:35:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A6C5CBD; Sun, 19 Jan 2014 11:35:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E98A515B0; Sun, 19 Jan 2014 11:35:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JBZSnG075433; Sun, 19 Jan 2014 11:35:28 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JBZSuS075429; Sun, 19 Jan 2014 11:35:28 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191135.s0JBZSuS075429@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 11:35:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340263 - in head/net-mgmt: nsca nsca-client nsca27 nsca27-client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 11:35:29 -0000 Author: mm Date: Sun Jan 19 11:35:27 2014 New Revision: 340263 URL: http://svnweb.freebsd.org/changeset/ports/340263 QAT: https://qat.redports.org/buildarchive/r340263/ Log: Add STAGE support to net-mgmt/nsca and net-mgmt/nsca27 Modified: head/net-mgmt/nsca-client/Makefile head/net-mgmt/nsca/Makefile head/net-mgmt/nsca27-client/Makefile head/net-mgmt/nsca27/Makefile Modified: head/net-mgmt/nsca-client/Makefile ============================================================================== --- head/net-mgmt/nsca-client/Makefile Sun Jan 19 11:24:24 2014 (r340262) +++ head/net-mgmt/nsca-client/Makefile Sun Jan 19 11:35:27 2014 (r340263) @@ -10,5 +10,4 @@ LICENSE= GPLv2 _BUILDING_NSCA_CLIENT= yes MASTERDIR= ${.CURDIR}/../nsca -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/net-mgmt/nsca/Makefile ============================================================================== --- head/net-mgmt/nsca/Makefile Sun Jan 19 11:24:24 2014 (r340262) +++ head/net-mgmt/nsca/Makefile Sun Jan 19 11:35:27 2014 (r340263) @@ -49,22 +49,21 @@ PLIST_SUB+= CLIENT="@comment " DOCS= Changelog LEGAL README SECURITY -NO_STAGE= yes do-install: .if defined(_BUILDING_NSCA_CLIENT) - ${INSTALL_PROGRAM} ${WRKSRC}/src/send_nsca ${PREFIX}/sbin/send_nsca - ${MKDIR} ${PREFIX}/etc/nagios - ${INSTALL_DATA} ${WRKSRC}/sample-config/send_nsca.cfg ${PREFIX}/etc/nagios/send_nsca.cfg-sample + ${INSTALL_PROGRAM} ${WRKSRC}/src/send_nsca ${STAGEDIR}${PREFIX}/sbin/send_nsca + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/nagios + ${INSTALL_DATA} ${WRKSRC}/sample-config/send_nsca.cfg ${STAGEDIR}${PREFIX}/etc/nagios/send_nsca.cfg-sample .else - ${INSTALL_PROGRAM} ${WRKSRC}/src/nsca ${PREFIX}/sbin/nsca - ${MKDIR} ${PREFIX}/etc/nagios - ${INSTALL_DATA} ${WRKSRC}/sample-config/nsca.cfg ${PREFIX}/etc/nagios/nsca.cfg-sample + ${INSTALL_PROGRAM} ${WRKSRC}/src/nsca ${STAGEDIR}${PREFIX}/sbin/nsca + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/nagios + ${INSTALL_DATA} ${WRKSRC}/sample-config/nsca.cfg ${STAGEDIR}${PREFIX}/etc/nagios/nsca.cfg-sample .endif post-install: .if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} .endif @${CAT} ${PKGMESSAGE} Modified: head/net-mgmt/nsca27-client/Makefile ============================================================================== --- head/net-mgmt/nsca27-client/Makefile Sun Jan 19 11:24:24 2014 (r340262) +++ head/net-mgmt/nsca27-client/Makefile Sun Jan 19 11:35:27 2014 (r340263) @@ -10,5 +10,4 @@ LICENSE= GPLv2 _BUILDING_NSCA_CLIENT= yes MASTERDIR= ${.CURDIR}/../nsca27 -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/net-mgmt/nsca27/Makefile ============================================================================== --- head/net-mgmt/nsca27/Makefile Sun Jan 19 11:24:24 2014 (r340262) +++ head/net-mgmt/nsca27/Makefile Sun Jan 19 11:35:27 2014 (r340263) @@ -3,7 +3,7 @@ PORTNAME= nsca PORTVERSION= 2.7.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= net-mgmt MASTER_SITES= SF/nagios/nsca-2.x/nsca-${PORTVERSION} @@ -42,7 +42,7 @@ PKGMESSAGE= ${WRKDIR}/pkg-message.client SUB_FILES+= pkg-message.client .endif -.if !defined(_BUILDING_NSCA_CLIENT) +.if defined(_BUILDING_NSCA_CLIENT) PLIST_SUB+= CLIENT="" .else PLIST_SUB+= CLIENT="@comment " @@ -50,22 +50,21 @@ PLIST_SUB+= CLIENT="@comment " DOCS= Changelog LEGAL README SECURITY -NO_STAGE= yes do-install: .if defined(_BUILDING_NSCA_CLIENT) - ${INSTALL_PROGRAM} ${WRKSRC}/src/send_nsca ${PREFIX}/sbin/send_nsca - ${MKDIR} ${PREFIX}/etc/nagios - ${INSTALL_DATA} ${WRKSRC}/sample-config/send_nsca.cfg ${PREFIX}/etc/nagios/send_nsca.cfg-sample + ${INSTALL_PROGRAM} ${WRKSRC}/src/send_nsca ${STAGEDIR}${PREFIX}/sbin/send_nsca + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/nagios + ${INSTALL_DATA} ${WRKSRC}/sample-config/send_nsca.cfg ${STAGEDIR}${PREFIX}/etc/nagios/send_nsca.cfg-sample .else - ${INSTALL_PROGRAM} ${WRKSRC}/src/nsca ${PREFIX}/sbin/nsca - ${MKDIR} ${PREFIX}/etc/nagios - ${INSTALL_DATA} ${WRKSRC}/sample-config/nsca.cfg ${PREFIX}/etc/nagios/nsca.cfg-sample + ${INSTALL_PROGRAM} ${WRKSRC}/src/nsca ${STAGEDIR}${PREFIX}/sbin/nsca + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/nagios + ${INSTALL_DATA} ${WRKSRC}/sample-config/nsca.cfg ${STAGEDIR}${PREFIX}/etc/nagios/nsca.cfg-sample .endif post-install: .if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} .endif @${CAT} ${PKGMESSAGE} From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 11:38:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60500F33; Sun, 19 Jan 2014 11:38:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C61015C1; Sun, 19 Jan 2014 11:38:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JBcSUA075809; Sun, 19 Jan 2014 11:38:28 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JBcRMB075807; Sun, 19 Jan 2014 11:38:27 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201401191138.s0JBcRMB075807@svn.freebsd.org> From: Florian Smeets Date: Sun, 19 Jan 2014 11:38:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340264 - head/www/phpmyfaq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 11:38:28 -0000 Author: flo Date: Sun Jan 19 11:38:27 2014 New Revision: 340264 URL: http://svnweb.freebsd.org/changeset/ports/340264 QAT: https://qat.redports.org/buildarchive/r340264/ Log: Update to 2.8.5 Modified: head/www/phpmyfaq/Makefile head/www/phpmyfaq/distinfo Modified: head/www/phpmyfaq/Makefile ============================================================================== --- head/www/phpmyfaq/Makefile Sun Jan 19 11:35:27 2014 (r340263) +++ head/www/phpmyfaq/Makefile Sun Jan 19 11:38:27 2014 (r340264) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpmyfaq -PORTVERSION= 2.8.4 +PORTVERSION= 2.8.5 CATEGORIES= www MASTER_SITES= http://www.phpmyfaq.de/download/ Modified: head/www/phpmyfaq/distinfo ============================================================================== --- head/www/phpmyfaq/distinfo Sun Jan 19 11:35:27 2014 (r340263) +++ head/www/phpmyfaq/distinfo Sun Jan 19 11:38:27 2014 (r340264) @@ -1,2 +1,2 @@ -SHA256 (phpmyfaq-2.8.4.tar.gz) = da4762ce824a973f0303762e9028ea9c7e1b1b0bc0f7721388046bd1c35b0164 -SIZE (phpmyfaq-2.8.4.tar.gz) = 3903889 +SHA256 (phpmyfaq-2.8.5.tar.gz) = c033ea54b46bc1aa4c8b42613f11073c01dd28770c12feb167a57545facf6d85 +SIZE (phpmyfaq-2.8.5.tar.gz) = 3899748 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 11:38:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 19B48FDE; Sun, 19 Jan 2014 11:38:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F0BCE15C3; Sun, 19 Jan 2014 11:38:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JBcYOv075899; Sun, 19 Jan 2014 11:38:34 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JBcYSq075897; Sun, 19 Jan 2014 11:38:34 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191138.s0JBcYSq075897@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 11:38:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340265 - in head/devel: libevent libevent2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 11:38:35 -0000 Author: mm Date: Sun Jan 19 11:38:34 2014 New Revision: 340265 URL: http://svnweb.freebsd.org/changeset/ports/340265 QAT: https://qat.redports.org/buildarchive/r340265/ Log: Add STAGE support to devel/libevent and devel/libevent2 Modified: head/devel/libevent/Makefile head/devel/libevent2/Makefile Modified: head/devel/libevent/Makefile ============================================================================== --- head/devel/libevent/Makefile Sun Jan 19 11:38:27 2014 (r340264) +++ head/devel/libevent/Makefile Sun Jan 19 11:38:34 2014 (r340265) @@ -85,7 +85,6 @@ MLINKS= event.3 event_init.3 \ - evdns_config_windows_nameservers.3 .endif -NO_STAGE= yes pre-configure: @${MKDIR} ${WRKSRC}/m4 Modified: head/devel/libevent2/Makefile ============================================================================== --- head/devel/libevent2/Makefile Sun Jan 19 11:38:27 2014 (r340264) +++ head/devel/libevent2/Makefile Sun Jan 19 11:38:34 2014 (r340265) @@ -23,7 +23,6 @@ OPTIONS_DEFAULT= OPENSSL THREADS CONFIGURE_ARGS+= --libdir=${PREFIX}/lib/event2 -NO_STAGE= yes .include .if ${PORT_OPTIONS:MOPENSSL} @@ -49,7 +48,7 @@ post-patch: ${WRKSRC}/Makefile.in post-install: - @${INSTALL_SCRIPT} ${WRKSRC}/event_rpcgen.py ${PREFIX}/bin/event2_rpcgen.py + @${INSTALL_SCRIPT} ${WRKSRC}/event_rpcgen.py ${STAGEDIR}${PREFIX}/bin/event2_rpcgen.py regression-test: build @(${SH} ${WRKSRC}/test/regress) From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 11:40:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76FC4177; Sun, 19 Jan 2014 11:40:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6286515D1; Sun, 19 Jan 2014 11:40:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JBeIal076231; Sun, 19 Jan 2014 11:40:18 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JBeIkJ076226; Sun, 19 Jan 2014 11:40:18 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201401191140.s0JBeIkJ076226@svn.freebsd.org> From: Florian Smeets Date: Sun, 19 Jan 2014 11:40:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340266 - head/databases/pecl-rrd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 11:40:18 -0000 Author: flo Date: Sun Jan 19 11:40:17 2014 New Revision: 340266 URL: http://svnweb.freebsd.org/changeset/ports/340266 QAT: https://qat.redports.org/buildarchive/r340266/ Log: - Update to 1.1.3 - Add stage support PR: ports/185795 PR: ports/185833 Submitted by: Gasol Wu Modified: head/databases/pecl-rrd/Makefile head/databases/pecl-rrd/distinfo Modified: head/databases/pecl-rrd/Makefile ============================================================================== --- head/databases/pecl-rrd/Makefile Sun Jan 19 11:38:34 2014 (r340265) +++ head/databases/pecl-rrd/Makefile Sun Jan 19 11:40:17 2014 (r340266) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rrd -DISTVERSION= 1.1.1 +DISTVERSION= 1.1.3 CATEGORIES= databases pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- @@ -20,5 +20,4 @@ LDFLAGS+= -L${LOCALBASE}/lib USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/databases/pecl-rrd/distinfo ============================================================================== --- head/databases/pecl-rrd/distinfo Sun Jan 19 11:38:34 2014 (r340265) +++ head/databases/pecl-rrd/distinfo Sun Jan 19 11:40:17 2014 (r340266) @@ -1,2 +1,2 @@ -SHA256 (PECL/rrd-1.1.1.tgz) = f36e4b4e61c6d4025f7f5a8060bb6df2b05568e1807dfa74d9e82c83e681417a -SIZE (PECL/rrd-1.1.1.tgz) = 18823 +SHA256 (PECL/rrd-1.1.3.tgz) = 0415ac51e09fe2e7a999d155d10d6af42ddf40ab0b4847a63ed1f9458533858e +SIZE (PECL/rrd-1.1.3.tgz) = 19229 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 11:40:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5328B25B; Sun, 19 Jan 2014 11:40:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3FFD0162C; Sun, 19 Jan 2014 11:40:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JBeo9u077965; Sun, 19 Jan 2014 11:40:50 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JBeo40077964; Sun, 19 Jan 2014 11:40:50 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191140.s0JBeo40077964@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 11:40:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340267 - head/misc/mbuffer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 11:40:50 -0000 Author: mm Date: Sun Jan 19 11:40:49 2014 New Revision: 340267 URL: http://svnweb.freebsd.org/changeset/ports/340267 QAT: https://qat.redports.org/buildarchive/r340267/ Log: Add STAGE support to misc/mbuffer Modified: head/misc/mbuffer/Makefile Modified: head/misc/mbuffer/Makefile ============================================================================== --- head/misc/mbuffer/Makefile Sun Jan 19 11:40:17 2014 (r340266) +++ head/misc/mbuffer/Makefile Sun Jan 19 11:40:49 2014 (r340267) @@ -27,7 +27,6 @@ MHASH_DESC= Use mhash for hash generatio OPTIONS_DEFAULT= MHASH -NO_STAGE= yes .include .if ${PORT_OPTIONS:MMHASH} From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 11:43:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58279345; Sun, 19 Jan 2014 11:43:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4490F1636; Sun, 19 Jan 2014 11:43:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JBhNB2079207; Sun, 19 Jan 2014 11:43:23 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JBhNTU079206; Sun, 19 Jan 2014 11:43:23 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191143.s0JBhNTU079206@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 11:43:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340268 - head/archivers/pxz X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 11:43:23 -0000 Author: mm Date: Sun Jan 19 11:43:22 2014 New Revision: 340268 URL: http://svnweb.freebsd.org/changeset/ports/340268 QAT: https://qat.redports.org/buildarchive/r340268/ Log: Give up maintainership on pxz, return to ports@ Modified: head/archivers/pxz/Makefile Modified: head/archivers/pxz/Makefile ============================================================================== --- head/archivers/pxz/Makefile Sun Jan 19 11:40:49 2014 (r340267) +++ head/archivers/pxz/Makefile Sun Jan 19 11:43:22 2014 (r340268) @@ -8,7 +8,7 @@ MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= mm DISTNAME= pxz-git-${PORTVERSION:S/0.//} -MAINTAINER= mm@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Parallel LZMA compressor using liblzma LICENSE= GPLv2 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 12:01:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2ED249E9; Sun, 19 Jan 2014 12:01:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 19486174D; Sun, 19 Jan 2014 12:01:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JC1ESJ086493; Sun, 19 Jan 2014 12:01:14 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JC1EwZ086492; Sun, 19 Jan 2014 12:01:14 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191201.s0JC1EwZ086492@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 12:01:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340269 - head/irc/dircproxy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 12:01:15 -0000 Author: mm Date: Sun Jan 19 12:01:14 2014 New Revision: 340269 URL: http://svnweb.freebsd.org/changeset/ports/340269 QAT: https://qat.redports.org/buildarchive/r340269/ Log: Add STAGE support to irc/dircproxy Modified: head/irc/dircproxy/Makefile Modified: head/irc/dircproxy/Makefile ============================================================================== --- head/irc/dircproxy/Makefile Sun Jan 19 11:43:22 2014 (r340268) +++ head/irc/dircproxy/Makefile Sun Jan 19 12:01:14 2014 (r340269) @@ -21,7 +21,6 @@ PKGMESSAGE= ${WRKDIR}/pkg-message MAN1= dircproxy.1 dircproxy-crypt.1 .endif -NO_STAGE= yes post-install: .if !defined(NO_INSTALL_MANPAGES) @cd ${WRKSRC}/doc && make install-man From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 12:07:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85FFCADC; Sun, 19 Jan 2014 12:07:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 718F2175F; Sun, 19 Jan 2014 12:07:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JC7Mr8087417; Sun, 19 Jan 2014 12:07:22 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JC7MEn087416; Sun, 19 Jan 2014 12:07:22 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191207.s0JC7MEn087416@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 12:07:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340270 - head/net/relayd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 12:07:22 -0000 Author: mm Date: Sun Jan 19 12:07:21 2014 New Revision: 340270 URL: http://svnweb.freebsd.org/changeset/ports/340270 QAT: https://qat.redports.org/buildarchive/r340270/ Log: Add STAGE support to net/relayd Modified: head/net/relayd/Makefile Modified: head/net/relayd/Makefile ============================================================================== --- head/net/relayd/Makefile Sun Jan 19 12:01:14 2014 (r340269) +++ head/net/relayd/Makefile Sun Jan 19 12:07:21 2014 (r340270) @@ -30,7 +30,6 @@ GROUPS= _relayd OPTIONS_DEFINE= LIBEVENT_STATIC LIBEVENT_STATIC_DESC= Build with static libevent -NO_STAGE= yes .include .if ${PORT_OPTIONS:MLIBEVENT_STATIC} @@ -54,8 +53,9 @@ post-patch: post-install: @${INSTALL_DATA} ${WRKSRC}/../etc/relayd.conf \ - ${PREFIX}/etc/relayd.conf.sample - @${CP} -n ${PREFIX}/etc/relayd.conf.sample \ - ${PREFIX}/etc/relayd.conf || ${TRUE} + ${STAGEDIR}${PREFIX}/etc/relayd.conf.sample + @${CP} -n ${STAGEDIR}${PREFIX}/etc/relayd.conf.sample \ + ${STAGEDIR}${PREFIX}/etc/relayd.conf || ${TRUE} .include + From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 12:19:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0CAED67; Sun, 19 Jan 2014 12:19:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DD37D1819; Sun, 19 Jan 2014 12:19:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JCJPsm091708; Sun, 19 Jan 2014 12:19:25 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JCJPXY091705; Sun, 19 Jan 2014 12:19:25 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191219.s0JCJPXY091705@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 12:19:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340271 - head/net/relayd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 12:19:26 -0000 Author: mm Date: Sun Jan 19 12:19:25 2014 New Revision: 340271 URL: http://svnweb.freebsd.org/changeset/ports/340271 QAT: https://qat.redports.org/buildarchive/r340271/ Log: Fix pkg-plist for relayd Modified: head/net/relayd/Makefile head/net/relayd/pkg-plist Modified: head/net/relayd/Makefile ============================================================================== --- head/net/relayd/Makefile Sun Jan 19 12:07:21 2014 (r340270) +++ head/net/relayd/Makefile Sun Jan 19 12:19:25 2014 (r340271) @@ -2,6 +2,7 @@ PORTNAME= relayd PORTVERSION= 5.4.20131122 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= GH @@ -54,7 +55,7 @@ post-patch: post-install: @${INSTALL_DATA} ${WRKSRC}/../etc/relayd.conf \ ${STAGEDIR}${PREFIX}/etc/relayd.conf.sample - @${CP} -n ${STAGEDIR}${PREFIX}/etc/relayd.conf.sample \ + @${CP} -n ${WRKSRC}/../etc/relayd.conf \ ${STAGEDIR}${PREFIX}/etc/relayd.conf || ${TRUE} .include Modified: head/net/relayd/pkg-plist ============================================================================== --- head/net/relayd/pkg-plist Sun Jan 19 12:07:21 2014 (r340270) +++ head/net/relayd/pkg-plist Sun Jan 19 12:19:25 2014 (r340271) @@ -1,4 +1,5 @@ @unexec if cmp -s %D/etc/relayd.conf %D/etc/relayd.conf.sample; then rm -f %D/etc/relayd.conf; fi etc/relayd.conf.sample +@exec cp -n %B/%f %B/relayd.conf sbin/relayctl sbin/relayd From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 12:29:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F279EE0; Sun, 19 Jan 2014 12:29:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F360A18B0; Sun, 19 Jan 2014 12:29:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JCTcdR095602; Sun, 19 Jan 2014 12:29:38 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JCTcQa095598; Sun, 19 Jan 2014 12:29:38 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401191229.s0JCTcQa095598@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 19 Jan 2014 12:29:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340272 - in head/math/dynare: . 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.17 Precedence: list List-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, 19 Jan 2014 12:29:39 -0000 Author: danilo Date: Sun Jan 19 12:29:37 2014 New Revision: 340272 URL: http://svnweb.freebsd.org/changeset/ports/340272 QAT: https://qat.redports.org/buildarchive/r340272/ Log: - Update from 4.3.3 to 4.4.0 - Add stage support while here - Convert USE_GMAKE to USES - Use options helpers PR: ports/185783 Submitted by: Fernando (maintainer) Added: head/math/dynare/files/patch-configure (contents, props changed) head/math/dynare/files/patch-configure.ac (contents, props changed) Modified: head/math/dynare/Makefile head/math/dynare/distinfo Modified: head/math/dynare/Makefile ============================================================================== --- head/math/dynare/Makefile Sun Jan 19 12:19:25 2014 (r340271) +++ head/math/dynare/Makefile Sun Jan 19 12:29:37 2014 (r340272) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dynare -PORTVERSION= 4.3.3 -PORTREVISION= 1 +PORTVERSION= 4.4.0 CATEGORIES= math MASTER_SITES= http://www.dynare.org/release/source/ @@ -11,32 +10,25 @@ MAINTAINER= fernando.apesteguia@gmail.co COMMENT= Software platform for handling a wide class of economic models BUILD_DEPENDS= ${LOCALBASE}/include/boost/unordered_set.hpp:${PORTSDIR}/devel/boost-libs +BUILD_DEPENDS+= ${LOCALBASE}/lib/libumfpack.so:${PORTSDIR}/math/suitesparse +BUILD_DEPENDS+= ${LOCALBASE}/include/matio.h:${PORTSDIR}/math/matio WRKSRC= ${WRKDIR}/${DISTNAME} GNU_CONFIGURE= yes -USE_GMAKE= yes +USES= gmake USE_FORTRAN= yes USE_XZ= yes INFO= dynare -OPTIONS_DEFINE= OCTAVE MATLAB -OCTAVE_DESC=Enable compilation of MEX files for Octave -MATLAB_DESC= Enable compilation of MEX files for MATLAB +OPTIONS_DEFINE= OCTAVE MATLAB +OCTAVE_DESC= Enable compilation of MEX files for Octave +MATLAB_DESC= Enable compilation of MEX files for MATLAB OPTIONS_DEFAULT= OCTAVE -NO_STAGE= yes -.include - -.if empty(PORT_OPTIONS:MMATLAB) -CONFIGURE_ARGS+= --disable-matlab -.endif - -.if ${PORT_OPTIONS:MOCTAVE} -BUILD_DEPENDS+= octave:${PORTSDIR}/math/octave -.else -CONFIGURE_ARGS+= --disable-octave -.endif +MATLAB_CONFIGURE_ENABLE= matlab +OCTAVE_CONFIGURE_ENABLE= octave +OCTAVE_BUILD_DEPENDS= octave:${PORTSDIR}/math/octave post-configure: @${ECHO_MSG} "" Modified: head/math/dynare/distinfo ============================================================================== --- head/math/dynare/distinfo Sun Jan 19 12:19:25 2014 (r340271) +++ head/math/dynare/distinfo Sun Jan 19 12:29:37 2014 (r340272) @@ -1,2 +1,2 @@ -SHA256 (dynare-4.3.3.tar.xz) = 76c9ca44ed95d63f2b3a565dd8e91f5e6c51265dd1c75a5d80125eaac812f1d0 -SIZE (dynare-4.3.3.tar.xz) = 12430124 +SHA256 (dynare-4.4.0.tar.xz) = b6cd4ad5204d53ccfce4e463c3138a2059803fbae8670f44d79740616caa92fe +SIZE (dynare-4.4.0.tar.xz) = 14897624 Added: head/math/dynare/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/dynare/files/patch-configure Sun Jan 19 12:29:37 2014 (r340272) @@ -0,0 +1,11 @@ +--- mex/build/octave/configure.orig 2014-01-10 20:33:42.000000000 +0100 ++++ mex/build/octave/configure 2014-01-10 20:34:24.000000000 +0100 +@@ -6769,7 +6769,7 @@ + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lumfpack $LIBS" ++LIBS="-lumfpack -llapack -lblas -lsuitesparseconfig -lcholmod -lcolamd -lamd $LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + Added: head/math/dynare/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/dynare/files/patch-configure.ac Sun Jan 19 12:29:37 2014 (r340272) @@ -0,0 +1,27 @@ +--- mex/build/octave/configure.ac.orig 2013-12-06 14:52:59.682612000 +0100 ++++ mex/build/octave/configure.ac 2014-01-10 20:59:19.000000000 +0100 +@@ -36,6 +36,7 @@ + CFLAGS="$CFLAGS -Wall -Wno-parentheses" + FFLAGS="$FFLAGS -Wall" + CXXFLAGS="$CXXFLAGS -Wall -Wno-parentheses" ++LIBS="-lumfpack -llapack -lblas -lsuitesparseconfig -lcholmod -lcolamd -lamd" + + AC_PROG_F77([gfortran g77 f77]) + AC_PROG_CC +@@ -61,14 +62,10 @@ + AM_CONDITIONAL([HAVE_SLICOT], [test "x$has_slicot" = "xyes"]) + + # Check for UMFPACK, needed by bytecode +-AC_CHECK_LIB([umfpack], [umfpack_dl_defaults], [LIBADD_UMFPACK="-lumfpack"], [AC_MSG_ERROR([Can't find UMFPACK])]) ++AC_CHECK_LIB([umfpack], [umfpack_dl_defaults], [LIBADD_UMFPACK="-lumfpack -llapack -lblas -lsuitesparseconfig -lcholmod -lcolamd -lamd"], [AC_MSG_ERROR([Can't find UMFPACK])]) + # For OS X, explicitly add libraries that libumfpack depends on as Homebrew + # doesn't support the creation of shared libraries for suite-sparse 3.7.0 +-case ${host_os} in +- darwin*) +- LIBADD_UMFPACK="-lumfpack -lcholmod -lcolamd -lamd" +- ;; +-esac ++LIBADD_UMFPACK="-lumfpack -llapack -lblas -lsuitesparseconfig -lcholmod -lcolamd -lamd" + AC_SUBST([LIBADD_UMFPACK]) + + AM_CONDITIONAL([DO_SOMETHING], [test "x$MKOCTFILE" != "x"]) From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 12:41:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 54882133; Sun, 19 Jan 2014 12:41:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CDBF119A2; Sun, 19 Jan 2014 12:41:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JCf8Ij001965; Sun, 19 Jan 2014 12:41:08 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JCf8pX001960; Sun, 19 Jan 2014 12:41:08 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191241.s0JCf8pX001960@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 12:41:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340273 - head/irc/dircproxy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 12:41:09 -0000 Author: mm Date: Sun Jan 19 12:41:08 2014 New Revision: 340273 URL: http://svnweb.freebsd.org/changeset/ports/340273 QAT: https://qat.redports.org/buildarchive/r340273/ Log: Fix pkg-plist for dircproxy Modified: head/irc/dircproxy/Makefile head/irc/dircproxy/pkg-plist Modified: head/irc/dircproxy/Makefile ============================================================================== --- head/irc/dircproxy/Makefile Sun Jan 19 12:29:37 2014 (r340272) +++ head/irc/dircproxy/Makefile Sun Jan 19 12:41:08 2014 (r340273) @@ -3,9 +3,9 @@ PORTNAME= dircproxy DISTVERSION= 1.2.0-RC1 +PORTREVISION= 1 CATEGORIES= irc MASTER_SITES= http://dircproxy.googlecode.com/files/ -PKGNAMESUFFIX= -devel MAINTAINER= mm@FreeBSD.org COMMENT= A detachable irc proxy server with many features @@ -16,15 +16,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes SUB_FILES+= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message - -.if !defined(NO_INSTALL_MANPAGES) MAN1= dircproxy.1 dircproxy-crypt.1 -.endif post-install: -.if !defined(NO_INSTALL_MANPAGES) - @cd ${WRKSRC}/doc && make install-man -.endif + @cd ${WRKSRC}/doc && make install-man DESTDIR=${STAGEDIR} @${CAT} ${PKGMESSAGE} .include Modified: head/irc/dircproxy/pkg-plist ============================================================================== --- head/irc/dircproxy/pkg-plist Sun Jan 19 12:29:37 2014 (r340272) +++ head/irc/dircproxy/pkg-plist Sun Jan 19 12:41:08 2014 (r340273) @@ -1,5 +1,7 @@ bin/dircproxy bin/dircproxy-crypt +man/man1/dircproxy.1.gz +man/man1/dircproxy-crypt.1.gz %%DATADIR%%/cronchk.sh %%DATADIR%%/dircproxyrc.sample %%DATADIR%%/log.pl From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 12:45:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0B6DF336; Sun, 19 Jan 2014 12:45:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EBF6019D1; Sun, 19 Jan 2014 12:44:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JCix5Z002729; Sun, 19 Jan 2014 12:44:59 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JCixS1002725; Sun, 19 Jan 2014 12:44:59 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191244.s0JCixS1002725@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 12:44:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340274 - head/net/relayd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 12:45:00 -0000 Author: mm Date: Sun Jan 19 12:44:59 2014 New Revision: 340274 URL: http://svnweb.freebsd.org/changeset/ports/340274 QAT: https://qat.redports.org/buildarchive/r340274/ Log: Fix pkg-plist for relayd Modified: head/net/relayd/Makefile head/net/relayd/pkg-plist Modified: head/net/relayd/Makefile ============================================================================== --- head/net/relayd/Makefile Sun Jan 19 12:41:08 2014 (r340273) +++ head/net/relayd/Makefile Sun Jan 19 12:44:59 2014 (r340274) @@ -2,7 +2,7 @@ PORTNAME= relayd PORTVERSION= 5.4.20131122 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= GH @@ -13,11 +13,8 @@ LICENSE= BSD GH_ACCOUNT= mmatuska GH_COMMIT= a4f6140 -MANCOMPRESSED= yes WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT}/src/usr.sbin -MAN5= relayd.conf.5 -MAN8= relayctl.8 relayd.8 USE_GITHUB= yes USE_RC_SUBR= relayd Modified: head/net/relayd/pkg-plist ============================================================================== --- head/net/relayd/pkg-plist Sun Jan 19 12:41:08 2014 (r340273) +++ head/net/relayd/pkg-plist Sun Jan 19 12:44:59 2014 (r340274) @@ -1,5 +1,8 @@ @unexec if cmp -s %D/etc/relayd.conf %D/etc/relayd.conf.sample; then rm -f %D/etc/relayd.conf; fi etc/relayd.conf.sample @exec cp -n %B/%f %B/relayd.conf +man/man5/relayd.conf.5.gz +man/man8/relayctl.8.gz +man/man8/relayd.8.gz sbin/relayctl sbin/relayd From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 12:50:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B36254F6; Sun, 19 Jan 2014 12:50:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F4731A42; Sun, 19 Jan 2014 12:50:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JCov3r003777; Sun, 19 Jan 2014 12:50:57 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JCovCO003775; Sun, 19 Jan 2014 12:50:57 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191250.s0JCovCO003775@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 12:50:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340275 - head/dns/udns X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 12:50:57 -0000 Author: mm Date: Sun Jan 19 12:50:56 2014 New Revision: 340275 URL: http://svnweb.freebsd.org/changeset/ports/340275 QAT: https://qat.redports.org/buildarchive/r340275/ Log: Fix manpages in pkg-plist for dns/udns Modified: head/dns/udns/Makefile head/dns/udns/pkg-plist Modified: head/dns/udns/Makefile ============================================================================== --- head/dns/udns/Makefile Sun Jan 19 12:44:59 2014 (r340274) +++ head/dns/udns/Makefile Sun Jan 19 12:50:56 2014 (r340275) @@ -23,9 +23,6 @@ PORTDOCS= * SHLIB_MAJOR= 0 -MAN1= dnsget.1 rblcheck.1 -MAN3= udns.3 - .include .if ${PORT_OPTIONS:MIPV6} @@ -46,10 +43,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/libudns.a ${STAGEDIR}${PREFIX}/lib/libudns.a ${INSTALL_PROGRAM} ${WRKSRC}/dnsget_s ${STAGEDIR}${PREFIX}/bin/dnsget ${INSTALL_PROGRAM} ${WRKSRC}/rblcheck_s ${STAGEDIR}${PREFIX}/bin/rblcheck -.for FILE in ${MAN1} +.for FILE in dnsget.1 rblcheck.1 ${INSTALL_MAN} ${WRKSRC}/${FILE} ${STAGEDIR}${MANPREFIX}/man/man1/${FILE} .endfor -.for FILE in ${MAN3} +.for FILE in udns.3 ${INSTALL_MAN} ${WRKSRC}/${FILE} ${STAGEDIR}${MANPREFIX}/man/man3/${FILE} .endfor Modified: head/dns/udns/pkg-plist ============================================================================== --- head/dns/udns/pkg-plist Sun Jan 19 12:44:59 2014 (r340274) +++ head/dns/udns/pkg-plist Sun Jan 19 12:50:56 2014 (r340275) @@ -1,6 +1,9 @@ +bin/dnsget +bin/rblcheck include/udns.h lib/libudns.a lib/libudns.so lib/libudns.so.0 -bin/dnsget -bin/rblcheck +man/man1/dnsget.1.gz +man/man1/rblcheck.1.gz +man/man3/udns.3.gz From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 12:55:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24C1F61A; Sun, 19 Jan 2014 12:55:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1155E1A5A; Sun, 19 Jan 2014 12:55:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JCt6HZ006569; Sun, 19 Jan 2014 12:55:06 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JCt6fv006567; Sun, 19 Jan 2014 12:55:06 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191255.s0JCt6fv006567@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 12:55:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340276 - head/www/lighttpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 12:55:07 -0000 Author: mm Date: Sun Jan 19 12:55:06 2014 New Revision: 340276 URL: http://svnweb.freebsd.org/changeset/ports/340276 QAT: https://qat.redports.org/buildarchive/r340276/ Log: Fix install and pkg-plist for lighttpd Modified: head/www/lighttpd/Makefile head/www/lighttpd/pkg-plist Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Sun Jan 19 12:50:56 2014 (r340275) +++ head/www/lighttpd/Makefile Sun Jan 19 12:55:06 2014 (r340276) @@ -36,8 +36,6 @@ LDFLAGS+= -L${LOCALBASE}/lib .if !defined(_BUILDING_LIGHTTPD_MODULE) USE_RC_SUBR= lighttpd -MAN8= lighttpd.8 - OPTIONS_DEFINE= BZIP2 FAM GDBM IPV6 LIBEV LUA MEMCACHE MYSQL MYSQLAUTH \ NODELAY LDAP OPENSSL SPAWNFCGI VALGRIND WEBDAV @@ -223,7 +221,7 @@ post-install: @${CHOWN} ${LIGHTTPD_USER}:${LIGHTTPD_GROUP} ${STAGEDIR}${LIGHTTPD_LOGROOT} .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} . for FILE in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE} . endfor Modified: head/www/lighttpd/pkg-plist ============================================================================== --- head/www/lighttpd/pkg-plist Sun Jan 19 12:50:56 2014 (r340275) +++ head/www/lighttpd/pkg-plist Sun Jan 19 12:55:06 2014 (r340276) @@ -171,6 +171,7 @@ lib/lighttpd/mod_usertrack.so lib/lighttpd/mod_webdav.a lib/lighttpd/mod_webdav.la lib/lighttpd/mod_webdav.so +man/man8/lighttpd.8.gz sbin/lighttpd sbin/lighttpd-angel @dirrm lib/lighttpd From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 12:57:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB586703; Sun, 19 Jan 2014 12:57:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B78641A65; Sun, 19 Jan 2014 12:57:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JCvmCQ006884; Sun, 19 Jan 2014 12:57:48 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JCvmjh006883; Sun, 19 Jan 2014 12:57:48 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191257.s0JCvmjh006883@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 12:57:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340277 - head/misc/mbuffer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 12:57:48 -0000 Author: mm Date: Sun Jan 19 12:57:48 2014 New Revision: 340277 URL: http://svnweb.freebsd.org/changeset/ports/340277 QAT: https://qat.redports.org/buildarchive/r340277/ Log: Fix pkg-plist for mbuffer Modified: head/misc/mbuffer/Makefile Modified: head/misc/mbuffer/Makefile ============================================================================== --- head/misc/mbuffer/Makefile Sun Jan 19 12:55:06 2014 (r340276) +++ head/misc/mbuffer/Makefile Sun Jan 19 12:57:48 2014 (r340277) @@ -3,6 +3,7 @@ PORTNAME= mbuffer PORTVERSION= 2013.02.20 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://www.maier-komor.de/software/mbuffer/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g} @@ -18,9 +19,7 @@ USE_GMAKE= yes GNU_CONFIGURE= yes MAKE_ARGS= SHELL=${SH} -PLIST_FILES= bin/mbuffer - -MAN1= ${PORTNAME}.1 +PLIST_FILES= bin/mbuffer man/man1/mbuffer.1.gz OPTIONS_DEFINE= MHASH MHASH_DESC= Use mhash for hash generation From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:03:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B562A824; Sun, 19 Jan 2014 13:03:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A101E1ADB; Sun, 19 Jan 2014 13:03:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JD3fSe010384; Sun, 19 Jan 2014 13:03:41 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JD3fhk010382; Sun, 19 Jan 2014 13:03:41 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191303.s0JD3fhk010382@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 13:03:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340278 - head/ftp/proftpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:03:41 -0000 Author: mm Date: Sun Jan 19 13:03:40 2014 New Revision: 340278 URL: http://svnweb.freebsd.org/changeset/ports/340278 QAT: https://qat.redports.org/buildarchive/r340278/ Log: Fix pkg-plist for proftpd Modified: head/ftp/proftpd/Makefile head/ftp/proftpd/pkg-plist Modified: head/ftp/proftpd/Makefile ============================================================================== --- head/ftp/proftpd/Makefile Sun Jan 19 12:57:48 2014 (r340277) +++ head/ftp/proftpd/Makefile Sun Jan 19 13:03:40 2014 (r340278) @@ -3,7 +3,7 @@ PORTNAME?= proftpd PORTVERSION?= 1.3.4d -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= ftp MASTER_SITES= ftp://ftp.proftpd.org/distrib/source/ \ https://github.com/downloads/proftpd/proftpd.github.com/ \ @@ -23,7 +23,6 @@ LICENSE?= GPLv2 LICENSE_FILE?= ${WRKSRC}/COPYING .if defined(_BUILDING_PROFTPD_MODULE) -BUILD_DEPENDS+= ${LOCALBASE}/sbin/proftpd:${PORTSDIR}/ftp/proftpd RUN_DEPENDS+= ${LOCALBASE}/sbin/proftpd:${PORTSDIR}/ftp/proftpd .endif @@ -40,10 +39,6 @@ DISTFILES+= ${_PROFTPD_MODULE_DISTFILES} .endif .if !defined(_BUILDING_PROFTPD_MODULE) -MAN1= ftpcount.1 ftpmail.1 ftpasswd.1 ftpquota.1 ftpwho.1 ftptop.1 -MAN5= xferlog.5 -MAN8= proftpd.8 ftpscrub.8 ftpshut.8 ftpdctl.8 - PORTDOCS= * .endif Modified: head/ftp/proftpd/pkg-plist ============================================================================== --- head/ftp/proftpd/pkg-plist Sun Jan 19 12:57:48 2014 (r340277) +++ head/ftp/proftpd/pkg-plist Sun Jan 19 13:03:40 2014 (r340278) @@ -180,6 +180,17 @@ libexec/proftpd/mod_wrap2_file.so libexec/proftpd/mod_wrap2_sql.a libexec/proftpd/mod_wrap2_sql.la libexec/proftpd/mod_wrap2_sql.so +man/man1/ftpcount.1.gz +man/man1/ftpmail.1.gz +man/man1/ftpasswd.1.gz +man/man1/ftpquota.1.gz +man/man1/ftpwho.1.gz +man/man1/ftptop.1.gz +man/man5/xferlog.5.gz +man/man8/proftpd.8.gz +man/man8/ftpscrub.8.gz +man/man8/ftpshut.8.gz +man/man8/ftpdctl.8.gz sbin/ftpscrub sbin/ftpshut sbin/in.proftpd From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:06:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF7BB920; Sun, 19 Jan 2014 13:06:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9B8951AF1; Sun, 19 Jan 2014 13:06:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JD6JFH010839; Sun, 19 Jan 2014 13:06:19 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JD6JDh010838; Sun, 19 Jan 2014 13:06:19 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191306.s0JD6JDh010838@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 13:06:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340279 - head/ftp/proftpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:06:19 -0000 Author: mm Date: Sun Jan 19 13:06:19 2014 New Revision: 340279 URL: http://svnweb.freebsd.org/changeset/ports/340279 QAT: https://qat.redports.org/buildarchive/r340279/ Log: Fix one-line del prev. commit Modified: head/ftp/proftpd/Makefile Modified: head/ftp/proftpd/Makefile ============================================================================== --- head/ftp/proftpd/Makefile Sun Jan 19 13:03:40 2014 (r340278) +++ head/ftp/proftpd/Makefile Sun Jan 19 13:06:19 2014 (r340279) @@ -23,6 +23,7 @@ LICENSE?= GPLv2 LICENSE_FILE?= ${WRKSRC}/COPYING .if defined(_BUILDING_PROFTPD_MODULE) +BUILD_DEPENDS+= ${LOCALBASE}/sbin/proftpd:${PORTSDIR}/ftp/proftpd RUN_DEPENDS+= ${LOCALBASE}/sbin/proftpd:${PORTSDIR}/ftp/proftpd .endif From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:14:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 209CCA69; Sun, 19 Jan 2014 13:14:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E6CAD1B7E; Sun, 19 Jan 2014 13:14:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDEu6g014720; Sun, 19 Jan 2014 13:14:56 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDEuiA014718; Sun, 19 Jan 2014 13:14:56 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191314.s0JDEuiA014718@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 13:14:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340280 - head/devel/libevent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:14:57 -0000 Author: mm Date: Sun Jan 19 13:14:56 2014 New Revision: 340280 URL: http://svnweb.freebsd.org/changeset/ports/340280 QAT: https://qat.redports.org/buildarchive/r340280/ Log: Fix manpages plist for libevent Modified: head/devel/libevent/Makefile head/devel/libevent/pkg-plist Modified: head/devel/libevent/Makefile ============================================================================== --- head/devel/libevent/Makefile Sun Jan 19 13:06:19 2014 (r340279) +++ head/devel/libevent/Makefile Sun Jan 19 13:14:56 2014 (r340280) @@ -3,7 +3,7 @@ PORTNAME= libevent PORTVERSION= 1.4.14b -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= devel MASTER_SITES= http://monkey.org/~provos/ DISTNAME= ${PORTNAME}-${DISTVERSION}-stable @@ -16,73 +16,6 @@ LICENSE= BSD GNU_CONFIGURE= yes .if !defined(_BUILDING_LIBEVENT_HIPHOP) USE_LDCONFIG= yes - -MAN3= event.3 \ - evdns.3 -MLINKS= event.3 event_init.3 \ - - event_dispatch.3 \ - - event_loop.3 \ - - event_loopexit.3 \ - - event_set.3 \ - - event_base_dispatch.3 \ - - event_base_loop.3 \ - - event_base_loopexit.3 \ - - event_base_set.3 \ - - event_add.3 \ - - event_del.3 \ - - event_once.3 \ - - event_pending.3 \ - - event_initialized.3 \ - - event_priority_init.3 \ - - event_priority_set.3 \ - - evtimer_set.3 \ - - evtimer_add.3 \ - - evtimer_del.3 \ - - evtimer_pending.3 \ - - evtimer_initialized.3 \ - - signal_set.3 \ - - signal_add.3 \ - - signal_del.3 \ - - signal_pending.3 \ - - signal_initialized.3 \ - - bufferevent_new.3 \ - - bufferevent_free.3 \ - - bufferevent_write.3 \ - - bufferevent_write_buffer.3 \ - - bufferevent_read.3 \ - - bufferevent_enable.3 \ - - bufferevent_disable.3 \ - - bufferevent_settimeout.3 \ - - bufferevent_base_set.3 \ - - evbuffer_new.3 \ - - evbuffer_free.3 \ - - evbuffer_add.3 \ - - evbuffer_add_buffer.3 \ - - evbuffer_add_printf.3 \ - - evbuffer_add_vprintf.3 \ - - evbuffer_drain.3 \ - - evbuffer_write.3 \ - - evbuffer_read.3 \ - - evbuffer_find.3 \ - - evbuffer_readline.3 \ - - evhttp_start.3 \ - - evhttp_free.3 \ - evdns.3 evdns_init.3 \ - - evdns_shutdown.3 \ - - evdns_err_to_string.3 \ - - evdns_nameserver_add.3 \ - - evdns_count_nameservers.3 \ - - evdns_clear_nameservers_and_suspend.3 \ - - evdns_resume.3 \ - - evdns_nameserver_ip_add.3 \ - - evdns_resolve_ipv4.3 \ - - evdns_resolve_reverse.3 \ - - evdns_resolv_conf_parse.3 \ - - evdns_search_clear.3 \ - - evdns_search_add.3 \ - - evdns_search_ndots_set.3 \ - - evdns_set_log_fn.3 \ - - evdns_config_windows_nameservers.3 .endif pre-configure: Modified: head/devel/libevent/pkg-plist ============================================================================== --- head/devel/libevent/pkg-plist Sun Jan 19 13:06:19 2014 (r340279) +++ head/devel/libevent/pkg-plist Sun Jan 19 13:14:56 2014 (r340280) @@ -20,3 +20,5 @@ lib/libevent_extra.so lib/libevent.a lib/libevent.la lib/libevent.so +man/man3/event.3.gz +man/man3/evdns.3.gz From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:20:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ADD87B86; Sun, 19 Jan 2014 13:20:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E9D91C9E; Sun, 19 Jan 2014 13:20:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDK0nV015473; Sun, 19 Jan 2014 13:20:00 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDJwPj015407; Sun, 19 Jan 2014 13:19:58 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401191319.s0JDJwPj015407@svn.freebsd.org> From: Martin Matuska Date: Sun, 19 Jan 2014 13:19:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340281 - in head: archivers/pear-Horde_Compress comms/pear-Horde_ActiveSync mail/pear-Horde_Imap_Client mail/pear-Horde_Mail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:20:00 -0000 Author: mm Date: Sun Jan 19 13:19:58 2014 New Revision: 340281 URL: http://svnweb.freebsd.org/changeset/ports/340281 QAT: https://qat.redports.org/buildarchive/r340281/ Log: Horde package update: Horde_ActiveSync 2.10.0 -> 2.11.0 Horde_Compress 2.0.4 -> 2.0.6 Horde_Imap_Client 2.16.2 -> 2.17.0 Horde_Mail 2.1.2 -> 2.1.3 Modified: head/archivers/pear-Horde_Compress/Makefile head/archivers/pear-Horde_Compress/distinfo head/comms/pear-Horde_ActiveSync/Makefile head/comms/pear-Horde_ActiveSync/distinfo head/mail/pear-Horde_Imap_Client/Makefile head/mail/pear-Horde_Imap_Client/distinfo head/mail/pear-Horde_Mail/Makefile head/mail/pear-Horde_Mail/distinfo Modified: head/archivers/pear-Horde_Compress/Makefile ============================================================================== --- head/archivers/pear-Horde_Compress/Makefile Sun Jan 19 13:14:56 2014 (r340280) +++ head/archivers/pear-Horde_Compress/Makefile Sun Jan 19 13:19:58 2014 (r340281) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Horde_Compress -PORTVERSION= 2.0.4 +PORTVERSION= 2.0.6 CATEGORIES= archivers www pear PKGNAMEPREFIX= pear- Modified: head/archivers/pear-Horde_Compress/distinfo ============================================================================== --- head/archivers/pear-Horde_Compress/distinfo Sun Jan 19 13:14:56 2014 (r340280) +++ head/archivers/pear-Horde_Compress/distinfo Sun Jan 19 13:19:58 2014 (r340281) @@ -1,2 +1,2 @@ -SHA256 (Horde/Horde_Compress-2.0.4.tgz) = 2b2bc64b4d6692313ddf63aa651ade134d69d20a91d271a085d1d5b5089cac19 -SIZE (Horde/Horde_Compress-2.0.4.tgz) = 35715 +SHA256 (Horde/Horde_Compress-2.0.6.tgz) = f21241bc78daf8b9ca9bee21d4335259e2595cf1d1c8f7ffb95f842a3ed804dc +SIZE (Horde/Horde_Compress-2.0.6.tgz) = 2154478 Modified: head/comms/pear-Horde_ActiveSync/Makefile ============================================================================== --- head/comms/pear-Horde_ActiveSync/Makefile Sun Jan 19 13:14:56 2014 (r340280) +++ head/comms/pear-Horde_ActiveSync/Makefile Sun Jan 19 13:19:58 2014 (r340281) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Horde_ActiveSync -PORTVERSION= 2.10.0 +PORTVERSION= 2.11.0 CATEGORIES= comms www pear MAINTAINER= horde@FreeBSD.org Modified: head/comms/pear-Horde_ActiveSync/distinfo ============================================================================== --- head/comms/pear-Horde_ActiveSync/distinfo Sun Jan 19 13:14:56 2014 (r340280) +++ head/comms/pear-Horde_ActiveSync/distinfo Sun Jan 19 13:19:58 2014 (r340281) @@ -1,2 +1,2 @@ -SHA256 (Horde/Horde_ActiveSync-2.10.0.tgz) = 70ed5b70c6034a66887356c80230fd4834a6b289dd3fc5fc9e8b1ca325fa3b89 -SIZE (Horde/Horde_ActiveSync-2.10.0.tgz) = 218437 +SHA256 (Horde/Horde_ActiveSync-2.11.0.tgz) = f30ff30789bf755472136b3dcf6bc20633a71dee427f88e78dd4309282e94c2b +SIZE (Horde/Horde_ActiveSync-2.11.0.tgz) = 219522 Modified: head/mail/pear-Horde_Imap_Client/Makefile ============================================================================== --- head/mail/pear-Horde_Imap_Client/Makefile Sun Jan 19 13:14:56 2014 (r340280) +++ head/mail/pear-Horde_Imap_Client/Makefile Sun Jan 19 13:19:58 2014 (r340281) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Horde_Imap_Client -PORTVERSION= 2.16.2 +PORTVERSION= 2.17.0 CATEGORIES= mail www pear PKGNAMEPREFIX= pear- Modified: head/mail/pear-Horde_Imap_Client/distinfo ============================================================================== --- head/mail/pear-Horde_Imap_Client/distinfo Sun Jan 19 13:14:56 2014 (r340280) +++ head/mail/pear-Horde_Imap_Client/distinfo Sun Jan 19 13:19:58 2014 (r340281) @@ -1,2 +1,2 @@ -SHA256 (Horde/Horde_Imap_Client-2.16.2.tgz) = 63c0396593f3e1926770f1a6ea811f780db23370cafd56f51c7da62f4d8bf41f -SIZE (Horde/Horde_Imap_Client-2.16.2.tgz) = 186878 +SHA256 (Horde/Horde_Imap_Client-2.17.0.tgz) = f085faf50a7f1c9a558305d9d839c16ef2315f6bace316793717c3dbc962b611 +SIZE (Horde/Horde_Imap_Client-2.17.0.tgz) = 188672 Modified: head/mail/pear-Horde_Mail/Makefile ============================================================================== --- head/mail/pear-Horde_Mail/Makefile Sun Jan 19 13:14:56 2014 (r340280) +++ head/mail/pear-Horde_Mail/Makefile Sun Jan 19 13:19:58 2014 (r340281) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Horde_Mail -PORTVERSION= 2.1.2 +PORTVERSION= 2.1.3 CATEGORIES= mail www pear MAINTAINER= horde@FreeBSD.org Modified: head/mail/pear-Horde_Mail/distinfo ============================================================================== --- head/mail/pear-Horde_Mail/distinfo Sun Jan 19 13:14:56 2014 (r340280) +++ head/mail/pear-Horde_Mail/distinfo Sun Jan 19 13:19:58 2014 (r340281) @@ -1,2 +1,2 @@ -SHA256 (Horde/Horde_Mail-2.1.2.tgz) = 9153cef9fa340ebd005adf1a698722ddb4bdd179aa0e5da0293ee19c9efd9922 -SIZE (Horde/Horde_Mail-2.1.2.tgz) = 29124 +SHA256 (Horde/Horde_Mail-2.1.3.tgz) = 927cba057ec38473596a41610055c03ca1e35c6c7171e20604464a04e96dcd1d +SIZE (Horde/Horde_Mail-2.1.3.tgz) = 29222 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:29:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37EAACC1; Sun, 19 Jan 2014 13:29:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2160B1D12; Sun, 19 Jan 2014 13:29:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDTsst019081; Sun, 19 Jan 2014 13:29:54 GMT (envelope-from bar@svn.freebsd.org) Received: (from bar@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDTrOk019078; Sun, 19 Jan 2014 13:29:53 GMT (envelope-from bar@svn.freebsd.org) Message-Id: <201401191329.s0JDTrOk019078@svn.freebsd.org> From: Barbara Guida Date: Sun, 19 Jan 2014 13:29:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340282 - head/games/linux-enemyterritory-omni-bot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:29:54 -0000 Author: bar Date: Sun Jan 19 13:29:53 2014 New Revision: 340282 URL: http://svnweb.freebsd.org/changeset/ports/340282 QAT: https://qat.redports.org/buildarchive/r340282/ Log: - Update to 0.831 - Support STAGEDIR - Update MASTER_SITES (links on new vendor website are dynamic and subject to changes, so I'm hosting distfiles on googledrive) Approved by: flo (mentor) Modified: head/games/linux-enemyterritory-omni-bot/Makefile head/games/linux-enemyterritory-omni-bot/distinfo head/games/linux-enemyterritory-omni-bot/pkg-plist Modified: head/games/linux-enemyterritory-omni-bot/Makefile ============================================================================== --- head/games/linux-enemyterritory-omni-bot/Makefile Sun Jan 19 13:19:58 2014 (r340281) +++ head/games/linux-enemyterritory-omni-bot/Makefile Sun Jan 19 13:29:53 2014 (r340282) @@ -2,11 +2,12 @@ # $FreeBSD$ PORTNAME= omni-bot -PORTVERSION= 0.820 +PORTVERSION= 0.831 CATEGORIES= games linux -MASTER_SITES= http://www.omni-bot.com/forum/downloads/ +MASTER_SITES= http://googledrive.com/host/0BzZDKd40GAICUkZTaDJQQ2FKRTg/ PKGNAMEPREFIX= linux-enemyterritory- -DISTNAME= Omni-bot_0.82_ET_Linux +DISTFILES= omni-bot_0_831_ET_linux.zip \ + omni-bot_0_83_ET_waypoint_mod.zip MAINTAINER= bar@FreeBSD.org COMMENT= Omni-Bot is a bot for Enemy Territory @@ -20,7 +21,6 @@ NO_WRKSUBDIR= yes DATADIR= ${PREFIX}/lib/enemyterritory/${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/enemyterritory-${PORTNAME} -NO_STAGE= yes do-build: .for f in et etded @(${ECHO_CMD} "#!/bin/sh"; \ @@ -30,19 +30,14 @@ do-build: do-install: .for f in et etded - ${INSTALL_SCRIPT} ${WRKSRC}/${f}-${PORTNAME} ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/${f}-${PORTNAME} ${STAGEDIR}${PREFIX}/bin .endfor - ${MKDIR} ${DATADIR} + ${MKDIR} ${STAGEDIR}${DATADIR} ${MV} ${WRKSRC}/omni-bot/et/user/omni-bot.cfg \ ${WRKSRC}/omni-bot/et/user/omni-bot.cfg.sample - ${CP} -R ${WRKSRC}/omni-bot/* ${DATADIR} - ${INSTALL_PROGRAM} ${WRKSRC}/omnibot/qagame.mp.i386.so ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/omnibot/omnibot_et.pk3 ${DATADIR} - -post-install: - @if [ ! -f ${DATADIR}/et/user/omni-bot.cfg ]; then \ - ${CP} -p ${DATADIR}/et/user/omni-bot.cfg.sample \ - ${DATADIR}/et/user/omni-bot.cfg ; \ - fi + ${CP} -R ${WRKSRC}/omni-bot/* ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/omnibot/qagame.mp.i386.so ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/omnibot/ui.mp.i386.so ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/omnibot/omnibot_et.pk3 ${STAGEDIR}${DATADIR} .include Modified: head/games/linux-enemyterritory-omni-bot/distinfo ============================================================================== --- head/games/linux-enemyterritory-omni-bot/distinfo Sun Jan 19 13:19:58 2014 (r340281) +++ head/games/linux-enemyterritory-omni-bot/distinfo Sun Jan 19 13:29:53 2014 (r340282) @@ -1,2 +1,4 @@ -SHA256 (Omni-bot_0.82_ET_Linux.zip) = 4ebeeb3806dcf95a9c24f5a1be7eae39ac04e2a4b6e0ebc3793d651b541657cd -SIZE (Omni-bot_0.82_ET_Linux.zip) = 22176480 +SHA256 (omni-bot_0_831_ET_linux.zip) = 4d1e631a67b690aed9a5f8b7388ae4032736984cef534a9688f533886fae9650 +SIZE (omni-bot_0_831_ET_linux.zip) = 18392544 +SHA256 (omni-bot_0_83_ET_waypoint_mod.zip) = 225217bd6c06e0efa236de22a8ba47624d1c4ffcdecf73551854a69c03962618 +SIZE (omni-bot_0_83_ET_waypoint_mod.zip) = 3247967 Modified: head/games/linux-enemyterritory-omni-bot/pkg-plist ============================================================================== --- head/games/linux-enemyterritory-omni-bot/pkg-plist Sun Jan 19 13:19:58 2014 (r340281) +++ head/games/linux-enemyterritory-omni-bot/pkg-plist Sun Jan 19 13:29:53 2014 (r340282) @@ -1,468 +1,18 @@ bin/et-omni-bot bin/etded-omni-bot -%%DATADIR%%/et/incomplete_navs/no_script/al_abbasi.way -%%DATADIR%%/et/incomplete_navs/no_script/base55.way -%%DATADIR%%/et/incomplete_navs/no_script/beerrun_arena.way -%%DATADIR%%/et/incomplete_navs/no_script/berserk_beta2.way -%%DATADIR%%/et/incomplete_navs/no_script/bigforest.way -%%DATADIR%%/et/incomplete_navs/no_script/bzz_drunk.way -%%DATADIR%%/et/incomplete_navs/no_script/c_t_g.way -%%DATADIR%%/et/incomplete_navs/no_script/castleattack_b3.way -%%DATADIR%%/et/incomplete_navs/no_script/chaudron.way -%%DATADIR%%/et/incomplete_navs/no_script/citadel.way -%%DATADIR%%/et/incomplete_navs/no_script/death_ctf.way -%%DATADIR%%/et/incomplete_navs/no_script/ds_bunkers_b2.way -%%DATADIR%%/et/incomplete_navs/no_script/duplex_towers.way -%%DATADIR%%/et/incomplete_navs/no_script/el_kef.way -%%DATADIR%%/et/incomplete_navs/no_script/et_mor.way -%%DATADIR%%/et/incomplete_navs/no_script/et_mor2.way -%%DATADIR%%/et/incomplete_navs/no_script/et_november.way -%%DATADIR%%/et/incomplete_navs/no_script/etcenter_b4.way -%%DATADIR%%/et/incomplete_navs/no_script/falkenstein_b1.way -%%DATADIR%%/et/incomplete_navs/no_script/falkenstein_b2.way -%%DATADIR%%/et/incomplete_navs/no_script/falkenstein_sw2.way -%%DATADIR%%/et/incomplete_navs/no_script/fata_morgana.way -%%DATADIR%%/et/incomplete_navs/no_script/flag_in_the_middle.way -%%DATADIR%%/et/incomplete_navs/no_script/fliegerhorst.way -%%DATADIR%%/et/incomplete_navs/no_script/frost_final.way -%%DATADIR%%/et/incomplete_navs/no_script/golddays_v3.way -%%DATADIR%%/et/incomplete_navs/no_script/goldrush2_fk_b1.way -%%DATADIR%%/et/incomplete_navs/no_script/goldrush2_wx.way -%%DATADIR%%/et/incomplete_navs/no_script/highnoon.way -%%DATADIR%%/et/incomplete_navs/no_script/jv_bunker.way -%%DATADIR%%/et/incomplete_navs/no_script/lna1vs1.way -%%DATADIR%%/et/incomplete_navs/no_script/loffys_tram1.way -%%DATADIR%%/et/incomplete_navs/no_script/low_airstrip2.way -%%DATADIR%%/et/incomplete_navs/no_script/ludendorff.way -%%DATADIR%%/et/incomplete_navs/no_script/majori.way -%%DATADIR%%/et/incomplete_navs/no_script/marketgarden_et_r2.way -%%DATADIR%%/et/incomplete_navs/no_script/mlb_d_day.way -%%DATADIR%%/et/incomplete_navs/no_script/monkey_island.way -%%DATADIR%%/et/incomplete_navs/no_script/mp_sillyctf.way -%%DATADIR%%/et/incomplete_navs/no_script/mtz_closecombat.way -%%DATADIR%%/et/incomplete_navs/no_script/negoshk_b2.way -%%DATADIR%%/et/incomplete_navs/no_script/omg_caen.way -%%DATADIR%%/et/incomplete_navs/no_script/op_lucky_a2.way -%%DATADIR%%/et/incomplete_navs/no_script/opposites_2008.way -%%DATADIR%%/et/incomplete_navs/no_script/raw_b3.way -%%DATADIR%%/et/incomplete_navs/no_script/realhouse2.way -%%DATADIR%%/et/incomplete_navs/no_script/rfarm_b2.way -%%DATADIR%%/et/incomplete_navs/no_script/rhine_bridge3.way -%%DATADIR%%/et/incomplete_navs/no_script/ron_sniper_ruine.way -%%DATADIR%%/et/incomplete_navs/no_script/rop_river.way -%%DATADIR%%/et/incomplete_navs/no_script/rs_radars.way -%%DATADIR%%/et/incomplete_navs/no_script/rttr_b2.way -%%DATADIR%%/et/incomplete_navs/no_script/sandheli01b.way -%%DATADIR%%/et/incomplete_navs/no_script/sd4_wl1.way -%%DATADIR%%/et/incomplete_navs/no_script/secradar3_final.way -%%DATADIR%%/et/incomplete_navs/no_script/sg_caen.way -%%DATADIR%%/et/incomplete_navs/no_script/soccer_b2.way -%%DATADIR%%/et/incomplete_navs/no_script/soccer_b2_goals.gm -%%DATADIR%%/et/incomplete_navs/no_script/sp_delivery2.way -%%DATADIR%%/et/incomplete_navs/no_script/stnazaire.way -%%DATADIR%%/et/incomplete_navs/no_script/sub_base_final.way -%%DATADIR%%/et/incomplete_navs/no_script/summer_palace_b1.way -%%DATADIR%%/et/incomplete_navs/no_script/tarbox_island_v3.way -%%DATADIR%%/et/incomplete_navs/no_script/temple_sniper.way -%%DATADIR%%/et/incomplete_navs/no_script/the_street.way -%%DATADIR%%/et/incomplete_navs/no_script/tictactoe.way -%%DATADIR%%/et/incomplete_navs/no_script/tlya.way -%%DATADIR%%/et/incomplete_navs/no_script/tournementdm2.way -%%DATADIR%%/et/incomplete_navs/no_script/town.way -%%DATADIR%%/et/incomplete_navs/no_script/train_map.way -%%DATADIR%%/et/incomplete_navs/no_script/trainyard_te_b3.way -%%DATADIR%%/et/incomplete_navs/no_script/uboot.way -%%DATADIR%%/et/incomplete_navs/no_script/warehouse.way -%%DATADIR%%/et/incomplete_navs/no_script/warinwoods.way -%%DATADIR%%/et/incomplete_navs/no_script/watten.way -%%DATADIR%%/et/incomplete_navs/no_script/wolken6_b1.way -%%DATADIR%%/et/incomplete_navs/no_script/xdam2.way -%%DATADIR%%/et/incomplete_navs/no_script/zeus2vs2.way -%%DATADIR%%/et/incomplete_navs/priority_maps/Requested Waypoints.txt -%%DATADIR%%/et/incomplete_navs/priority_maps/axs_elsenheim_b2.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/axs_elsenheim_b2.way -%%DATADIR%%/et/incomplete_navs/priority_maps/axs_elsenheim_b2_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/craterlake_final.way -%%DATADIR%%/et/incomplete_navs/priority_maps/glider.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/glider.way -%%DATADIR%%/et/incomplete_navs/priority_maps/glider_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/mlb_bergheim_09.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/mlb_bergheim_09.way -%%DATADIR%%/et/incomplete_navs/priority_maps/ostrabrama.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/ostrabrama.way -%%DATADIR%%/et/incomplete_navs/priority_maps/pirates_b1.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/pirates_b1.way -%%DATADIR%%/et/incomplete_navs/priority_maps/pirates_b1_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/pirates_b2.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/pirates_b2.way -%%DATADIR%%/et/incomplete_navs/priority_maps/pirates_b2_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/radar_summer.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/radar_summer.way -%%DATADIR%%/et/incomplete_navs/priority_maps/resurrection.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/resurrection.way -%%DATADIR%%/et/incomplete_navs/priority_maps/resurrection_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/ron_sniper_gigant.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/ron_sniper_gigant.way -%%DATADIR%%/et/incomplete_navs/priority_maps/ron_sniper_gigant_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/tankrace_b1.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/tankrace_b1.way -%%DATADIR%%/et/incomplete_navs/priority_maps/tankrace_b1_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_airport.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_airport.way -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_airport_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_christmas_tank.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_christmas_tank.way -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_christmas_tank_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_snow_patrol.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_snow_patrol.way -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_snow_patrol_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_valley_escort.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_valley_escort.way -%%DATADIR%%/et/incomplete_navs/priority_maps/uje_valley_escort_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/warringgods.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/warringgods.way -%%DATADIR%%/et/incomplete_navs/priority_maps/warringgods_final.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/warringgods_final.way -%%DATADIR%%/et/incomplete_navs/priority_maps/warringgods_final_goals.gm -%%DATADIR%%/et/incomplete_navs/priority_maps/warringgods_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/110_factory.gm -%%DATADIR%%/et/incomplete_navs/with_script/110_factory.way -%%DATADIR%%/et/incomplete_navs/with_script/110_factory_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/1944_cherbourg2.gm -%%DATADIR%%/et/incomplete_navs/with_script/1944_cherbourg2.way -%%DATADIR%%/et/incomplete_navs/with_script/1944_huertgen.gm -%%DATADIR%%/et/incomplete_navs/with_script/1944_huertgen.way -%%DATADIR%%/et/incomplete_navs/with_script/1944_huertgen_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/1944_nordwind.gm -%%DATADIR%%/et/incomplete_navs/with_script/1944_nordwind.way -%%DATADIR%%/et/incomplete_navs/with_script/1944_nordwind_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/1944_omaha_b3.gm -%%DATADIR%%/et/incomplete_navs/with_script/1944_omaha_b3.way -%%DATADIR%%/et/incomplete_navs/with_script/1944_overlord.gm -%%DATADIR%%/et/incomplete_navs/with_script/1944_overlord.way -%%DATADIR%%/et/incomplete_navs/with_script/1944_siegfried.gm -%%DATADIR%%/et/incomplete_navs/with_script/1944_siegfried.way -%%DATADIR%%/et/incomplete_navs/with_script/1o1.gm -%%DATADIR%%/et/incomplete_navs/with_script/1o1.way -%%DATADIR%%/et/incomplete_navs/with_script/1v1dm.gm -%%DATADIR%%/et/incomplete_navs/with_script/1v1dm.way -%%DATADIR%%/et/incomplete_navs/with_script/2skilled.gm -%%DATADIR%%/et/incomplete_navs/with_script/2skilled.way -%%DATADIR%%/et/incomplete_navs/with_script/2vs2.gm -%%DATADIR%%/et/incomplete_navs/with_script/2vs2.way -%%DATADIR%%/et/incomplete_navs/with_script/aim_map.gm -%%DATADIR%%/et/incomplete_navs/with_script/aim_map.way -%%DATADIR%%/et/incomplete_navs/with_script/airassfp1.gm -%%DATADIR%%/et/incomplete_navs/with_script/airassfp1.way -%%DATADIR%%/et/incomplete_navs/with_script/alleys.gm -%%DATADIR%%/et/incomplete_navs/with_script/alleys.way -%%DATADIR%%/et/incomplete_navs/with_script/ammo_bunker_b1.gm -%%DATADIR%%/et/incomplete_navs/with_script/ammo_bunker_b1.way -%%DATADIR%%/et/incomplete_navs/with_script/ammodepot.gm -%%DATADIR%%/et/incomplete_navs/with_script/ammodepot.way -%%DATADIR%%/et/incomplete_navs/with_script/antarctica.gm -%%DATADIR%%/et/incomplete_navs/with_script/antarctica.way -%%DATADIR%%/et/incomplete_navs/with_script/aop_practice_b3.gm -%%DATADIR%%/et/incomplete_navs/with_script/aop_practice_b3.way -%%DATADIR%%/et/incomplete_navs/with_script/arena.gm -%%DATADIR%%/et/incomplete_navs/with_script/arena.way -%%DATADIR%%/et/incomplete_navs/with_script/arenaet.gm -%%DATADIR%%/et/incomplete_navs/with_script/arenaet.way -%%DATADIR%%/et/incomplete_navs/with_script/arhabeach.gm -%%DATADIR%%/et/incomplete_navs/with_script/arhabeach.way -%%DATADIR%%/et/incomplete_navs/with_script/artic_gun.gm -%%DATADIR%%/et/incomplete_navs/with_script/artic_gun.way -%%DATADIR%%/et/incomplete_navs/with_script/atlantic.gm -%%DATADIR%%/et/incomplete_navs/with_script/atlantic.way -%%DATADIR%%/et/incomplete_navs/with_script/bba0-beta2.gm -%%DATADIR%%/et/incomplete_navs/with_script/bba0-beta2.way -%%DATADIR%%/et/incomplete_navs/with_script/bba0-beta2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/beerrun_b7a.gm -%%DATADIR%%/et/incomplete_navs/with_script/beerrun_b7a.way -%%DATADIR%%/et/incomplete_navs/with_script/bloody_omaha.gm -%%DATADIR%%/et/incomplete_navs/with_script/bloody_omaha.way -%%DATADIR%%/et/incomplete_navs/with_script/bpaim4b2.gm -%%DATADIR%%/et/incomplete_navs/with_script/bpaim4b2.way -%%DATADIR%%/et/incomplete_navs/with_script/bremen_b2.gm -%%DATADIR%%/et/incomplete_navs/with_script/bremen_b2.way -%%DATADIR%%/et/incomplete_navs/with_script/bremen_b2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/bulldog.gm -%%DATADIR%%/et/incomplete_navs/with_script/bulldog.way -%%DATADIR%%/et/incomplete_navs/with_script/bunker_sg1945_3.gm -%%DATADIR%%/et/incomplete_navs/with_script/bunker_sg1945_3.way -%%DATADIR%%/et/incomplete_navs/with_script/bunker_sg1945_3_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/butchery.gm -%%DATADIR%%/et/incomplete_navs/with_script/butchery.way -%%DATADIR%%/et/incomplete_navs/with_script/byzantine.gm -%%DATADIR%%/et/incomplete_navs/with_script/byzantine.way -%%DATADIR%%/et/incomplete_navs/with_script/byzantine_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/caha_tavern_b1.gm -%%DATADIR%%/et/incomplete_navs/with_script/caha_tavern_b1.way -%%DATADIR%%/et/incomplete_navs/with_script/caha_tavern_b1_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/caha_tavern_b2.gm -%%DATADIR%%/et/incomplete_navs/with_script/caha_tavern_b2.way -%%DATADIR%%/et/incomplete_navs/with_script/caha_tavern_b2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/chariot.gm -%%DATADIR%%/et/incomplete_navs/with_script/chariot.way -%%DATADIR%%/et/incomplete_navs/with_script/chariot_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/chartwell.gm -%%DATADIR%%/et/incomplete_navs/with_script/chartwell.way -%%DATADIR%%/et/incomplete_navs/with_script/coldfortb1.gm -%%DATADIR%%/et/incomplete_navs/with_script/coldfortb1.way -%%DATADIR%%/et/incomplete_navs/with_script/coldfortb1_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/cortex.gm -%%DATADIR%%/et/incomplete_navs/with_script/cortex.way -%%DATADIR%%/et/incomplete_navs/with_script/crater_control.gm -%%DATADIR%%/et/incomplete_navs/with_script/crater_control.way -%%DATADIR%%/et/incomplete_navs/with_script/crater_control_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/ctf-face-fp1.gm -%%DATADIR%%/et/incomplete_navs/with_script/ctf-face-fp1.way -%%DATADIR%%/et/incomplete_navs/with_script/decoder_beta4.gm -%%DATADIR%%/et/incomplete_navs/with_script/decoder_beta4.way -%%DATADIR%%/et/incomplete_navs/with_script/denoflions_etdual.gm -%%DATADIR%%/et/incomplete_navs/with_script/denoflions_etdual.way -%%DATADIR%%/et/incomplete_navs/with_script/denoflions_etdual_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/desertfortress.gm -%%DATADIR%%/et/incomplete_navs/with_script/desertfortress.way -%%DATADIR%%/et/incomplete_navs/with_script/desertrats.gm -%%DATADIR%%/et/incomplete_navs/with_script/desertrats.way -%%DATADIR%%/et/incomplete_navs/with_script/doverbridge_final.gm -%%DATADIR%%/et/incomplete_navs/with_script/doverbridge_final.way -%%DATADIR%%/et/incomplete_navs/with_script/eiffel_tower.gm -%%DATADIR%%/et/incomplete_navs/with_script/eiffel_tower.way -%%DATADIR%%/et/incomplete_navs/with_script/et_mor2_night.gm -%%DATADIR%%/et/incomplete_navs/with_script/et_mor2_night.way -%%DATADIR%%/et/incomplete_navs/with_script/etcenter_final.gm -%%DATADIR%%/et/incomplete_navs/with_script/etcenter_final.way -%%DATADIR%%/et/incomplete_navs/with_script/etcenter_final_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/etdo1.gm -%%DATADIR%%/et/incomplete_navs/with_script/etdo1.way -%%DATADIR%%/et/incomplete_navs/with_script/etdo2.gm -%%DATADIR%%/et/incomplete_navs/with_script/etdo2.way -%%DATADIR%%/et/incomplete_navs/with_script/etdo3.gm -%%DATADIR%%/et/incomplete_navs/with_script/etdo3.way -%%DATADIR%%/et/incomplete_navs/with_script/etdo4.gm -%%DATADIR%%/et/incomplete_navs/with_script/etdo4.way -%%DATADIR%%/et/incomplete_navs/with_script/etdo5.gm -%%DATADIR%%/et/incomplete_navs/with_script/etdo5.way -%%DATADIR%%/et/incomplete_navs/with_script/etdo6.gm -%%DATADIR%%/et/incomplete_navs/with_script/etdo6.way -%%DATADIR%%/et/incomplete_navs/with_script/falkenstein_b3.gm -%%DATADIR%%/et/incomplete_navs/with_script/falkenstein_b3.way -%%DATADIR%%/et/incomplete_navs/with_script/falkenstein_b3_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/fatal_mill_b4.gm -%%DATADIR%%/et/incomplete_navs/with_script/fatal_mill_b4.way -%%DATADIR%%/et/incomplete_navs/with_script/field_hq_b4.gm -%%DATADIR%%/et/incomplete_navs/with_script/field_hq_b4.way -%%DATADIR%%/et/incomplete_navs/with_script/flak.gm -%%DATADIR%%/et/incomplete_navs/with_script/flak.way -%%DATADIR%%/et/incomplete_navs/with_script/flak_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/fort_paderborn.gm -%%DATADIR%%/et/incomplete_navs/with_script/fort_paderborn.way -%%DATADIR%%/et/incomplete_navs/with_script/fort_paderborn_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/fr_summer_b3.gm -%%DATADIR%%/et/incomplete_navs/with_script/fr_summer_b3.way -%%DATADIR%%/et/incomplete_navs/with_script/fueldump_revenge.gm -%%DATADIR%%/et/incomplete_navs/with_script/fueldump_revenge.way -%%DATADIR%%/et/incomplete_navs/with_script/fueldump_revenge_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/goldendunk_a2.gm -%%DATADIR%%/et/incomplete_navs/with_script/goldendunk_a2.way -%%DATADIR%%/et/incomplete_navs/with_script/greatpyramid.gm -%%DATADIR%%/et/incomplete_navs/with_script/greatpyramid.way -%%DATADIR%%/et/incomplete_navs/with_script/greatpyramid_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/heli_m1.way -%%DATADIR%%/et/incomplete_navs/with_script/heli_m1_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/hills_beta.gm -%%DATADIR%%/et/incomplete_navs/with_script/hills_beta.way -%%DATADIR%%/et/incomplete_navs/with_script/hills_beta_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/hindenburg.gm -%%DATADIR%%/et/incomplete_navs/with_script/hindenburg.way -%%DATADIR%%/et/incomplete_navs/with_script/hindenburg_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/ia_drang.gm -%%DATADIR%%/et/incomplete_navs/with_script/ia_drang.way -%%DATADIR%%/et/incomplete_navs/with_script/ia_drang_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/italyfp1.gm -%%DATADIR%%/et/incomplete_navs/with_script/italyfp1.way -%%DATADIR%%/et/incomplete_navs/with_script/jailbus_b2.gm -%%DATADIR%%/et/incomplete_navs/with_script/jailbus_b2.way -%%DATADIR%%/et/incomplete_navs/with_script/jailbus_b2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/jff_playground_b1.gm -%%DATADIR%%/et/incomplete_navs/with_script/jff_playground_b1.way -%%DATADIR%%/et/incomplete_navs/with_script/jff_playground_b1_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/karsiah_te2.gm -%%DATADIR%%/et/incomplete_navs/with_script/karsiah_te2.way -%%DATADIR%%/et/incomplete_navs/with_script/katastrophie.gm -%%DATADIR%%/et/incomplete_navs/with_script/katastrophie.way -%%DATADIR%%/et/incomplete_navs/with_script/katastrophie_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/kotf_te.gm -%%DATADIR%%/et/incomplete_navs/with_script/kotf_te.way -%%DATADIR%%/et/incomplete_navs/with_script/kotf_te_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/kotr_te.gm -%%DATADIR%%/et/incomplete_navs/with_script/kotr_te.way -%%DATADIR%%/et/incomplete_navs/with_script/lighthouse2.gm -%%DATADIR%%/et/incomplete_navs/with_script/lighthouse2.way -%%DATADIR%%/et/incomplete_navs/with_script/lighthouse2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/low_tram.gm -%%DATADIR%%/et/incomplete_navs/with_script/low_tram.way -%%DATADIR%%/et/incomplete_navs/with_script/low_tram_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/maiden1.gm -%%DATADIR%%/et/incomplete_navs/with_script/maiden1.way -%%DATADIR%%/et/incomplete_navs/with_script/maiden1_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/mars.gm -%%DATADIR%%/et/incomplete_navs/with_script/mars.way -%%DATADIR%%/et/incomplete_navs/with_script/mars_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/md_bridge.gm -%%DATADIR%%/et/incomplete_navs/with_script/md_bridge.way -%%DATADIR%%/et/incomplete_navs/with_script/mitchelldown.gm -%%DATADIR%%/et/incomplete_navs/with_script/mitchelldown.way -%%DATADIR%%/et/incomplete_navs/with_script/mlb_beach.gm -%%DATADIR%%/et/incomplete_navs/with_script/mlb_beach.way -%%DATADIR%%/et/incomplete_navs/with_script/mlb_hotchkiss.gm -%%DATADIR%%/et/incomplete_navs/with_script/mlb_hotchkiss.way -%%DATADIR%%/et/incomplete_navs/with_script/mlb_hotchkiss_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/mp_base.gm -%%DATADIR%%/et/incomplete_navs/with_script/mp_base.way -%%DATADIR%%/et/incomplete_navs/with_script/mp_checkpoint.gm -%%DATADIR%%/et/incomplete_navs/with_script/mp_checkpoint.way -%%DATADIR%%/et/incomplete_navs/with_script/mp_goldmine.gm -%%DATADIR%%/et/incomplete_navs/with_script/mp_goldmine.way -%%DATADIR%%/et/incomplete_navs/with_script/mp_mcassino.gm -%%DATADIR%%/et/incomplete_navs/with_script/mp_mcassino.way -%%DATADIR%%/et/incomplete_navs/with_script/nachteinbruch.gm -%%DATADIR%%/et/incomplete_navs/with_script/nachteinbruch.way -%%DATADIR%%/et/incomplete_navs/with_script/nachteinbruch_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/nemorosuspb3.gm -%%DATADIR%%/et/incomplete_navs/with_script/nemorosuspb3.way -%%DATADIR%%/et/incomplete_navs/with_script/neuschwaben_final2.gm -%%DATADIR%%/et/incomplete_navs/with_script/neuschwaben_final2.way -%%DATADIR%%/et/incomplete_navs/with_script/neuschwaben_final2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/nfl_b2.gm -%%DATADIR%%/et/incomplete_navs/with_script/nfl_b2.way -%%DATADIR%%/et/incomplete_navs/with_script/nfl_b2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/nightcrawlers.gm -%%DATADIR%%/et/incomplete_navs/with_script/nightcrawlers.way -%%DATADIR%%/et/incomplete_navs/with_script/nightcrawlers_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/now.gm -%%DATADIR%%/et/incomplete_navs/with_script/now.way -%%DATADIR%%/et/incomplete_navs/with_script/odenthal_b2.gm -%%DATADIR%%/et/incomplete_navs/with_script/odenthal_b2.way -%%DATADIR%%/et/incomplete_navs/with_script/odenthal_b2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/op_desert.gm -%%DATADIR%%/et/incomplete_navs/with_script/op_desert.way -%%DATADIR%%/et/incomplete_navs/with_script/op_desert_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/outpost.gm -%%DATADIR%%/et/incomplete_navs/with_script/outpost.way -%%DATADIR%%/et/incomplete_navs/with_script/password2.gm -%%DATADIR%%/et/incomplete_navs/with_script/password2.way -%%DATADIR%%/et/incomplete_navs/with_script/penemuende_b2.gm -%%DATADIR%%/et/incomplete_navs/with_script/penemuende_b2.way -%%DATADIR%%/et/incomplete_navs/with_script/pha_horus.gm -%%DATADIR%%/et/incomplete_navs/with_script/pha_horus.way -%%DATADIR%%/et/incomplete_navs/with_script/pha_horus_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/pong_v3.gm -%%DATADIR%%/et/incomplete_navs/with_script/pong_v3.way -%%DATADIR%%/et/incomplete_navs/with_script/praetoria_one.gm -%%DATADIR%%/et/incomplete_navs/with_script/praetoria_one.way -%%DATADIR%%/et/incomplete_navs/with_script/psl_koth.way -%%DATADIR%%/et/incomplete_navs/with_script/psl_koth_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/ramelle_b1.gm -%%DATADIR%%/et/incomplete_navs/with_script/ramelle_b1.way -%%DATADIR%%/et/incomplete_navs/with_script/raw_te_final.gm -%%DATADIR%%/et/incomplete_navs/with_script/raw_te_final.way -%%DATADIR%%/et/incomplete_navs/with_script/raw_te_final_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/reriver.gm -%%DATADIR%%/et/incomplete_navs/with_script/reriver.way -%%DATADIR%%/et/incomplete_navs/with_script/reriver_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/road2amiens_b1.gm -%%DATADIR%%/et/incomplete_navs/with_script/road2amiens_b1.way -%%DATADIR%%/et/incomplete_navs/with_script/ruins23.gm -%%DATADIR%%/et/incomplete_navs/with_script/ruins23.way -%%DATADIR%%/et/incomplete_navs/with_script/ruins23_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/rushers11.gm -%%DATADIR%%/et/incomplete_navs/with_script/rushers11.way -%%DATADIR%%/et/incomplete_navs/with_script/rushers11_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/santas_grotto_v1_2.gm -%%DATADIR%%/et/incomplete_navs/with_script/santas_grotto_v1_2.way -%%DATADIR%%/et/incomplete_navs/with_script/santas_grotto_v1_2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/sfx_tatooine.gm -%%DATADIR%%/et/incomplete_navs/with_script/sfx_tatooine.way -%%DATADIR%%/et/incomplete_navs/with_script/sfx_tatooine_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/sniper_lake_b2.gm -%%DATADIR%%/et/incomplete_navs/with_script/sniper_lake_b2.way -%%DATADIR%%/et/incomplete_navs/with_script/sod2.gm -%%DATADIR%%/et/incomplete_navs/with_script/sod2.way -%%DATADIR%%/et/incomplete_navs/with_script/stargate_1945.gm -%%DATADIR%%/et/incomplete_navs/with_script/stargate_1945.way -%%DATADIR%%/et/incomplete_navs/with_script/stargate_1945_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/stukton.gm -%%DATADIR%%/et/incomplete_navs/with_script/stukton.way -%%DATADIR%%/et/incomplete_navs/with_script/stukton_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/supply_desert.gm -%%DATADIR%%/et/incomplete_navs/with_script/supply_desert.way -%%DATADIR%%/et/incomplete_navs/with_script/supply_desert_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/supplydepot.gm -%%DATADIR%%/et/incomplete_navs/with_script/supplydepot.way -%%DATADIR%%/et/incomplete_navs/with_script/t_spookyb2.gm -%%DATADIR%%/et/incomplete_navs/with_script/t_spookyb2.way -%%DATADIR%%/et/incomplete_navs/with_script/t_spookyb2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/tankbuster.gm -%%DATADIR%%/et/incomplete_navs/with_script/tankbuster.way -%%DATADIR%%/et/incomplete_navs/with_script/tankbuster_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/tc_venice_rc2.gm -%%DATADIR%%/et/incomplete_navs/with_script/tc_venice_rc2.way -%%DATADIR%%/et/incomplete_navs/with_script/temple_final.gm -%%DATADIR%%/et/incomplete_navs/with_script/temple_final.way -%%DATADIR%%/et/incomplete_navs/with_script/the_town.gm -%%DATADIR%%/et/incomplete_navs/with_script/the_town.way -%%DATADIR%%/et/incomplete_navs/with_script/the_town_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/theriver2redux.gm -%%DATADIR%%/et/incomplete_navs/with_script/theriver2redux.way -%%DATADIR%%/et/incomplete_navs/with_script/tower_b27j.way -%%DATADIR%%/et/incomplete_navs/with_script/tower_b27j_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/towersrace_b6.gm -%%DATADIR%%/et/incomplete_navs/with_script/towersrace_b6.way -%%DATADIR%%/et/incomplete_navs/with_script/towersrace_b6_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/townsquare_beta2.gm -%%DATADIR%%/et/incomplete_navs/with_script/townsquare_beta2.way -%%DATADIR%%/et/incomplete_navs/with_script/tram_et.gm -%%DATADIR%%/et/incomplete_navs/with_script/tram_et.way -%%DATADIR%%/et/incomplete_navs/with_script/tram_rtcw.gm -%%DATADIR%%/et/incomplete_navs/with_script/tram_rtcw.way -%%DATADIR%%/et/incomplete_navs/with_script/transylvania_beta2.gm -%%DATADIR%%/et/incomplete_navs/with_script/transylvania_beta2.way -%%DATADIR%%/et/incomplete_navs/with_script/treetop_final.gm -%%DATADIR%%/et/incomplete_navs/with_script/treetop_final.way -%%DATADIR%%/et/incomplete_navs/with_script/treetop_final_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/tron_v1.gm -%%DATADIR%%/et/incomplete_navs/with_script/tron_v1.way -%%DATADIR%%/et/incomplete_navs/with_script/uje_temple_sniper_p.gm -%%DATADIR%%/et/incomplete_navs/with_script/uje_temple_sniper_p.way -%%DATADIR%%/et/incomplete_navs/with_script/uje_temple_sniper_p_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/ulmen.gm -%%DATADIR%%/et/incomplete_navs/with_script/ulmen.way -%%DATADIR%%/et/incomplete_navs/with_script/v1rocket_b2.gm -%%DATADIR%%/et/incomplete_navs/with_script/v1rocket_b2.way -%%DATADIR%%/et/incomplete_navs/with_script/v1rocket_b2_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/vengeance_te_final.gm -%%DATADIR%%/et/incomplete_navs/with_script/vengeance_te_final.way -%%DATADIR%%/et/incomplete_navs/with_script/vengeance_te_final_goals.gm -%%DATADIR%%/et/incomplete_navs/with_script/warinwoods2.gm -%%DATADIR%%/et/incomplete_navs/with_script/warinwoods2.way -%%DATADIR%%/et/incomplete_navs/with_script/wolfsrudel2.gm -%%DATADIR%%/et/incomplete_navs/with_script/wolfsrudel2.way -%%DATADIR%%/et/incomplete_navs/with_script/wolken1_final.gm -%%DATADIR%%/et/incomplete_navs/with_script/wolken1_final.way -%%DATADIR%%/et/incomplete_navs/with_script/wolken2_final.gm -%%DATADIR%%/et/incomplete_navs/with_script/wolken2_final.way -%%DATADIR%%/et/incomplete_navs/with_script/wurttemberg_b4.gm -%%DATADIR%%/et/incomplete_navs/with_script/wurttemberg_b4.way -%%DATADIR%%/et/incomplete_navs/with_script/wurttemberg_b4_goals.gm +%%DATADIR%%/changelog.txt %%DATADIR%%/et/nav/1944_beach.gm %%DATADIR%%/et/nav/1944_beach.way %%DATADIR%%/et/nav/1944_beach_goals.gm -%%DATADIR%%/et/nav/1944_nordwind2.gm -%%DATADIR%%/et/nav/1944_nordwind2.way -%%DATADIR%%/et/nav/1944_nordwind2_goals.gm +%%DATADIR%%/et/nav/1944_huertgen.gm +%%DATADIR%%/et/nav/1944_huertgen.way +%%DATADIR%%/et/nav/1944_huertgen_final2.gm +%%DATADIR%%/et/nav/1944_huertgen_final2.way +%%DATADIR%%/et/nav/1944_huertgen_final2_goals.gm +%%DATADIR%%/et/nav/1944_huertgen_goals.gm +%%DATADIR%%/et/nav/2dom1.gm +%%DATADIR%%/et/nav/2dom1.way +%%DATADIR%%/et/nav/2dom1_goals.gm %%DATADIR%%/et/nav/2hide.gm %%DATADIR%%/et/nav/2hide.way %%DATADIR%%/et/nav/2hide_cal_r1.gm @@ -499,6 +49,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/ae_wizerness_final.gm %%DATADIR%%/et/nav/ae_wizerness_final.way %%DATADIR%%/et/nav/ae_wizerness_final_goals.gm +%%DATADIR%%/et/nav/afd_beta5.gm +%%DATADIR%%/et/nav/afd_beta5.way +%%DATADIR%%/et/nav/afd_beta5_goals.gm %%DATADIR%%/et/nav/al_kad_b2.gm %%DATADIR%%/et/nav/al_kad_b2.way %%DATADIR%%/et/nav/al_kad_b2_goals.gm @@ -523,6 +76,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/am_hydro_dam.gm %%DATADIR%%/et/nav/am_hydro_dam.way %%DATADIR%%/et/nav/am_hydro_dam_goals.gm +%%DATADIR%%/et/nav/ammodepot.gm +%%DATADIR%%/et/nav/ammodepot.way +%%DATADIR%%/et/nav/ammodepot_goals.gm %%DATADIR%%/et/nav/apennines_b2.gm %%DATADIR%%/et/nav/apennines_b2.way %%DATADIR%%/et/nav/apennines_b2_goals.gm @@ -535,6 +91,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/axs_assault_b3.gm %%DATADIR%%/et/nav/axs_assault_b3.way %%DATADIR%%/et/nav/axs_assault_b3_goals.gm +%%DATADIR%%/et/nav/barrocas_base_b8.gm +%%DATADIR%%/et/nav/barrocas_base_b8.way +%%DATADIR%%/et/nav/barrocas_base_b8_goals.gm %%DATADIR%%/et/nav/base12_b6.gm %%DATADIR%%/et/nav/base12_b6.way %%DATADIR%%/et/nav/base12_b6_goals.gm @@ -616,6 +175,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/bunker.gm %%DATADIR%%/et/nav/bunker.way %%DATADIR%%/et/nav/bunker_goals.gm +%%DATADIR%%/et/nav/byzantine.gm +%%DATADIR%%/et/nav/byzantine.way +%%DATADIR%%/et/nav/byzantine_goals.gm %%DATADIR%%/et/nav/caen.gm %%DATADIR%%/et/nav/caen.way %%DATADIR%%/et/nav/caen2.gm @@ -646,6 +208,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/cathedral_final.gm %%DATADIR%%/et/nav/cathedral_final.way %%DATADIR%%/et/nav/cathedral_final_goals.gm +%%DATADIR%%/et/nav/cherbourg.gm +%%DATADIR%%/et/nav/cherbourg.way +%%DATADIR%%/et/nav/cherbourg_goals.gm %%DATADIR%%/et/nav/chess_v1.gm %%DATADIR%%/et/nav/chess_v1.way %%DATADIR%%/et/nav/citadel_obj.gm @@ -669,6 +234,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/cortex_who.gm %%DATADIR%%/et/nav/cortex_who.way %%DATADIR%%/et/nav/cortex_who_goals.gm +%%DATADIR%%/et/nav/country_road_jp.gm +%%DATADIR%%/et/nav/country_road_jp.way +%%DATADIR%%/et/nav/country_road_jp_goals.gm %%DATADIR%%/et/nav/crevasse_b3.gm %%DATADIR%%/et/nav/crevasse_b3.way %%DATADIR%%/et/nav/crevasse_b3_goals.gm @@ -693,6 +261,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/decrypted2_b2.way %%DATADIR%%/et/nav/decrypted2_b2_goals.gm %%DATADIR%%/et/nav/decrypted_goals.gm +%%DATADIR%%/et/nav/denoflions_etdual.gm +%%DATADIR%%/et/nav/denoflions_etdual.way +%%DATADIR%%/et/nav/denoflions_etdual_goals.gm %%DATADIR%%/et/nav/desert_sniper.gm %%DATADIR%%/et/nav/desert_sniper.way %%DATADIR%%/et/nav/desert_sniper_goals.gm @@ -711,6 +282,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/dubrovnik_final.gm %%DATADIR%%/et/nav/dubrovnik_final.way %%DATADIR%%/et/nav/dubrovnik_final_goals.gm +%%DATADIR%%/et/nav/duplex_towers.gm +%%DATADIR%%/et/nav/duplex_towers.way +%%DATADIR%%/et/nav/duplex_towers_goals.gm %%DATADIR%%/et/nav/dutchhaze-v2.gm %%DATADIR%%/et/nav/dutchhaze-v2.way %%DATADIR%%/et/nav/dutchhaze-v2_goals.gm @@ -732,6 +306,15 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/erdenberg_b2.gm %%DATADIR%%/et/nav/erdenberg_b2.way %%DATADIR%%/et/nav/erdenberg_b2_goals.gm +%%DATADIR%%/et/nav/es_alamo_sniper.gm +%%DATADIR%%/et/nav/es_alamo_sniper.way +%%DATADIR%%/et/nav/es_alamo_sniper_goals.gm +%%DATADIR%%/et/nav/es_garden_sniper.gm +%%DATADIR%%/et/nav/es_garden_sniper.way +%%DATADIR%%/et/nav/es_garden_sniper_goals.gm +%%DATADIR%%/et/nav/es_ziggurath_sniper_night_b2.gm +%%DATADIR%%/et/nav/es_ziggurath_sniper_night_b2.way +%%DATADIR%%/et/nav/es_ziggurath_sniper_night_b2_goals.gm %%DATADIR%%/et/nav/escape2.gm %%DATADIR%%/et/nav/escape2.way %%DATADIR%%/et/nav/escape2_goals.gm @@ -750,9 +333,15 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/et_ice.gm %%DATADIR%%/et/nav/et_ice.way %%DATADIR%%/et/nav/et_ice_goals.gm +%%DATADIR%%/et/nav/et_mor2.gm +%%DATADIR%%/et/nav/et_mor2.way +%%DATADIR%%/et/nav/et_mor2_goals.gm +%%DATADIR%%/et/nav/et_mor2_night.gm +%%DATADIR%%/et/nav/et_mor2_night.way %%DATADIR%%/et/nav/et_mor2_night_final.gm %%DATADIR%%/et/nav/et_mor2_night_final.way %%DATADIR%%/et/nav/et_mor2_night_final_goals.gm +%%DATADIR%%/et/nav/et_mor2_night_goals.gm %%DATADIR%%/et/nav/et_mor_pro.gm %%DATADIR%%/et/nav/et_mor_pro.way %%DATADIR%%/et/nav/et_mor_pro_goals.gm @@ -802,6 +391,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/fasthold_sp1.gm %%DATADIR%%/et/nav/fasthold_sp1.way %%DATADIR%%/et/nav/fasthold_sp1_goals.gm +%%DATADIR%%/et/nav/field_hq_b4.gm +%%DATADIR%%/et/nav/field_hq_b4.way +%%DATADIR%%/et/nav/field_hq_b4_goals.gm %%DATADIR%%/et/nav/flame-guards.gm %%DATADIR%%/et/nav/flame-guards.way %%DATADIR%%/et/nav/flame-guards_goals.gm @@ -841,6 +433,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/fueldump_uv.gm %%DATADIR%%/et/nav/fueldump_uv.way %%DATADIR%%/et/nav/fueldump_uv_goals.gm +%%DATADIR%%/et/nav/fueldump_uvf.gm +%%DATADIR%%/et/nav/fueldump_uvf.way +%%DATADIR%%/et/nav/fueldump_uvf_goals.gm %%DATADIR%%/et/nav/fun_beach_final.gm %%DATADIR%%/et/nav/fun_beach_final.way %%DATADIR%%/et/nav/fun_beach_final_goals.gm @@ -895,6 +490,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/industry2.gm %%DATADIR%%/et/nav/industry2.way %%DATADIR%%/et/nav/industry2_goals.gm +%%DATADIR%%/et/nav/intel_center.gm +%%DATADIR%%/et/nav/intel_center.way +%%DATADIR%%/et/nav/intel_center_goals.gm %%DATADIR%%/et/nav/invertedgoldrush_b1.gm %%DATADIR%%/et/nav/invertedgoldrush_b1.way %%DATADIR%%/et/nav/invertedgoldrush_b1_goals.gm @@ -910,6 +508,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/kharanthan.gm %%DATADIR%%/et/nav/kharanthan.way %%DATADIR%%/et/nav/kharanthan_goals.gm +%%DATADIR%%/et/nav/kings1.gm +%%DATADIR%%/et/nav/kings1.way +%%DATADIR%%/et/nav/kings1_goals.gm %%DATADIR%%/et/nav/kungfugrip_converted.gm %%DATADIR%%/et/nav/kungfugrip_converted.way %%DATADIR%%/et/nav/kungfugrip_converted_goals.gm @@ -1006,6 +607,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/mp_assault_rc1.gm %%DATADIR%%/et/nav/mp_assault_rc1.way %%DATADIR%%/et/nav/mp_assault_rc1_goals.gm +%%DATADIR%%/et/nav/mp_base.gm +%%DATADIR%%/et/nav/mp_base.way +%%DATADIR%%/et/nav/mp_base_goals.gm %%DATADIR%%/et/nav/mp_beach.gm %%DATADIR%%/et/nav/mp_beach.way %%DATADIR%%/et/nav/mp_beach_goals.gm @@ -1015,6 +619,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/mp_sub_rc1.gm %%DATADIR%%/et/nav/mp_sub_rc1.way %%DATADIR%%/et/nav/mp_sub_rc1_goals.gm +%%DATADIR%%/et/nav/mp_theriver_2nd.gm +%%DATADIR%%/et/nav/mp_theriver_2nd.way +%%DATADIR%%/et/nav/mp_theriver_2nd_goals.gm %%DATADIR%%/et/nav/navarone.gm %%DATADIR%%/et/nav/navarone.way %%DATADIR%%/et/nav/navarone_goals.gm @@ -1024,6 +631,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/necrology_final.gm %%DATADIR%%/et/nav/necrology_final.way %%DATADIR%%/et/nav/necrology_final_goals.gm +%%DATADIR%%/et/nav/negoshk_b2.gm +%%DATADIR%%/et/nav/negoshk_b2.way +%%DATADIR%%/et/nav/negoshk_b2_goals.gm %%DATADIR%%/et/nav/nemo.gm %%DATADIR%%/et/nav/nemo.way %%DATADIR%%/et/nav/nemo_goals.gm @@ -1051,6 +661,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/oilraid.gm %%DATADIR%%/et/nav/oilraid.way %%DATADIR%%/et/nav/oilraid_goals.gm +%%DATADIR%%/et/nav/op_lucky_a2.gm +%%DATADIR%%/et/nav/op_lucky_a2.way +%%DATADIR%%/et/nav/op_lucky_a2_goals.gm %%DATADIR%%/et/nav/op_tower.gm %%DATADIR%%/et/nav/op_tower.way %%DATADIR%%/et/nav/op_tower_goals.gm @@ -1072,6 +685,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/parisbastille_b3.gm %%DATADIR%%/et/nav/parisbastille_b3.way %%DATADIR%%/et/nav/parisbastille_b3_goals.gm +%%DATADIR%%/et/nav/password2.gm +%%DATADIR%%/et/nav/password2.way +%%DATADIR%%/et/nav/password2_goals.gm %%DATADIR%%/et/nav/pha_chateau.gm %%DATADIR%%/et/nav/pha_chateau.way %%DATADIR%%/et/nav/pha_chateau_goals.gm @@ -1125,6 +741,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/remagen.gm %%DATADIR%%/et/nav/remagen.way %%DATADIR%%/et/nav/remagen_goals.gm +%%DATADIR%%/et/nav/resurrection.gm +%%DATADIR%%/et/nav/resurrection.way +%%DATADIR%%/et/nav/resurrection_goals.gm %%DATADIR%%/et/nav/return2goldrush_b1.gm %%DATADIR%%/et/nav/return2goldrush_b1.way %%DATADIR%%/et/nav/return2goldrush_b1_goals.gm @@ -1166,6 +785,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/shivta.gm %%DATADIR%%/et/nav/shivta.way %%DATADIR%%/et/nav/shivta_goals.gm +%%DATADIR%%/et/nav/snatch2.gm +%%DATADIR%%/et/nav/snatch2.way +%%DATADIR%%/et/nav/snatch2_goals.gm %%DATADIR%%/et/nav/snatch3.gm %%DATADIR%%/et/nav/snatch3.way %%DATADIR%%/et/nav/snatch3_goals.gm @@ -1217,6 +839,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/supply_pro.gm %%DATADIR%%/et/nav/supply_pro.way %%DATADIR%%/et/nav/supply_pro_goals.gm +%%DATADIR%%/et/nav/supply_we.gm +%%DATADIR%%/et/nav/supply_we.way +%%DATADIR%%/et/nav/supply_we_goals.gm %%DATADIR%%/et/nav/supplydepot2.gm %%DATADIR%%/et/nav/supplydepot2.way %%DATADIR%%/et/nav/supplydepot2_goals.gm @@ -1232,6 +857,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/sw_oasis_b3.gm %%DATADIR%%/et/nav/sw_oasis_b3.way %%DATADIR%%/et/nav/sw_oasis_b3_goals.gm +%%DATADIR%%/et/nav/tankbuster.gm +%%DATADIR%%/et/nav/tankbuster.way +%%DATADIR%%/et/nav/tankbuster_goals.gm %%DATADIR%%/et/nav/tbnsdba.gm %%DATADIR%%/et/nav/tbnsdba.way %%DATADIR%%/et/nav/tbnsdba_goals.gm @@ -1396,6 +1024,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/uje_city_sniper_goals.gm %%DATADIR%%/et/nav/uje_convoy.gm %%DATADIR%%/et/nav/uje_convoy.way +%%DATADIR%%/et/nav/uje_convoy_final.gm +%%DATADIR%%/et/nav/uje_convoy_final.way +%%DATADIR%%/et/nav/uje_convoy_final_goals.gm %%DATADIR%%/et/nav/uje_convoy_goals.gm %%DATADIR%%/et/nav/uje_egypt_panzer.gm %%DATADIR%%/et/nav/uje_egypt_panzer.way @@ -1403,6 +1034,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/uje_egypt_sniper.gm %%DATADIR%%/et/nav/uje_egypt_sniper.way %%DATADIR%%/et/nav/uje_egypt_sniper_goals.gm +%%DATADIR%%/et/nav/uje_fantasie_sniper.gm +%%DATADIR%%/et/nav/uje_fantasie_sniper.way +%%DATADIR%%/et/nav/uje_fantasie_sniper_goals.gm %%DATADIR%%/et/nav/uje_farm_sniper.gm %%DATADIR%%/et/nav/uje_farm_sniper.way %%DATADIR%%/et/nav/uje_farm_sniper_goals.gm @@ -1493,6 +1127,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/uje_office_sniper.gm %%DATADIR%%/et/nav/uje_office_sniper.way %%DATADIR%%/et/nav/uje_office_sniper_goals.gm +%%DATADIR%%/et/nav/uje_oil.gm +%%DATADIR%%/et/nav/uje_oil.way +%%DATADIR%%/et/nav/uje_oil_goals.gm %%DATADIR%%/et/nav/uje_oil_sniper.gm %%DATADIR%%/et/nav/uje_oil_sniper.way %%DATADIR%%/et/nav/uje_oil_sniper_goals.gm @@ -1505,6 +1142,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/uje_oldskool_sniper_np.gm %%DATADIR%%/et/nav/uje_oldskool_sniper_np.way %%DATADIR%%/et/nav/uje_oldskool_sniper_np_goals.gm +%%DATADIR%%/et/nav/uje_parking_sniper.gm +%%DATADIR%%/et/nav/uje_parking_sniper.way +%%DATADIR%%/et/nav/uje_parking_sniper_goals.gm %%DATADIR%%/et/nav/uje_pirate_panzer.gm %%DATADIR%%/et/nav/uje_pirate_panzer.way %%DATADIR%%/et/nav/uje_pirate_panzer_goals.gm @@ -1550,6 +1190,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/uje_snow_sniper.gm %%DATADIR%%/et/nav/uje_snow_sniper.way %%DATADIR%%/et/nav/uje_snow_sniper_goals.gm +%%DATADIR%%/et/nav/uje_snowy_sniper.gm +%%DATADIR%%/et/nav/uje_snowy_sniper.way +%%DATADIR%%/et/nav/uje_snowy_sniper_goals.gm %%DATADIR%%/et/nav/uje_space_panzer.gm %%DATADIR%%/et/nav/uje_space_panzer.way %%DATADIR%%/et/nav/uje_space_panzer_goals.gm @@ -1577,6 +1220,9 @@ bin/etded-omni-bot %%DATADIR%%/et/nav/uje_underwater_sniper.gm %%DATADIR%%/et/nav/uje_underwater_sniper.way %%DATADIR%%/et/nav/uje_underwater_sniper_goals.gm +%%DATADIR%%/et/nav/uje_warzone.gm +%%DATADIR%%/et/nav/uje_warzone.way +%%DATADIR%%/et/nav/uje_warzone_goals.gm %%DATADIR%%/et/nav/uje_warzone_sniper.gm %%DATADIR%%/et/nav/uje_warzone_sniper.way %%DATADIR%%/et/nav/uje_warzone_sniper_goals.gm @@ -1748,18 +1394,40 @@ bin/etded-omni-bot %%DATADIR%%/et/scripts/weapons/weapon_akimbo_silenced_colt.gm %%DATADIR%%/et/scripts/weapons/weapon_akimbo_silenced_luger.gm %%DATADIR%%/et/scripts/weapons/weapon_ammopack.gm +%%DATADIR%%/et/scripts/weapons/weapon_bastardmod_bastard_bomb.gm +%%DATADIR%%/et/scripts/weapons/weapon_bastardmod_bat.gm +%%DATADIR%%/et/scripts/weapons/weapon_bastardmod_fg42.gm +%%DATADIR%%/et/scripts/weapons/weapon_bastardmod_fg42_scoped.gm +%%DATADIR%%/et/scripts/weapons/weapon_bastardmod_madsen.gm +%%DATADIR%%/et/scripts/weapons/weapon_bastardmod_minigun.gm +%%DATADIR%%/et/scripts/weapons/weapon_bastardmod_mountain_falcon.gm +%%DATADIR%%/et/scripts/weapons/weapon_bastardmod_mp28.gm +%%DATADIR%%/et/scripts/weapons/weapon_bastardmod_scrooge.gm %%DATADIR%%/et/scripts/weapons/weapon_binoculars.gm %%DATADIR%%/et/scripts/weapons/weapon_carbine.gm %%DATADIR%%/et/scripts/weapons/weapon_colt.gm %%DATADIR%%/et/scripts/weapons/weapon_defaults.gm %%DATADIR%%/et/scripts/weapons/weapon_dynamite.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_chainsaw.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_destroyer.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_destroyer_set.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_madsen.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_mp34.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_mp40ss.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_mp40ss_scoped.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_mp41.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_ppsh.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_proto.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_proto_scoped.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_q3x1.gm +%%DATADIR%%/et/scripts/weapons/weapon_etblight_supersmg.gm %%DATADIR%%/et/scripts/weapons/weapon_etnam_akimbo_mac10.gm %%DATADIR%%/et/scripts/weapons/weapon_etnam_gps.gm %%DATADIR%%/et/scripts/weapons/weapon_etnam_ithaca.gm %%DATADIR%%/et/scripts/weapons/weapon_etnam_law.gm %%DATADIR%%/et/scripts/weapons/weapon_etnam_m3a1.gm %%DATADIR%%/et/scripts/weapons/weapon_etnam_m79.gm -%%DATADIR%%/et/scripts/weapons/weapon_etnam_napalm_silent_ppsh.gm +%%DATADIR%%/et/scripts/weapons/weapon_etnam_napalm.gm %%DATADIR%%/et/scripts/weapons/weapon_etnam_revolver.gm %%DATADIR%%/et/scripts/weapons/weapon_etnam_rpd.gm %%DATADIR%%/et/scripts/weapons/weapon_etnam_s_ak47.gm @@ -1815,6 +1483,7 @@ bin/etded-omni-bot %%DATADIR%%/et/scripts/weapons/weapon_satchel_det.gm %%DATADIR%%/et/scripts/weapons/weapon_silenced_colt.gm %%DATADIR%%/et/scripts/weapons/weapon_silenced_luger.gm +%%DATADIR%%/et/scripts/weapons/weapon_silent_ppsh.gm %%DATADIR%%/et/scripts/weapons/weapon_silent_tripmine.gm %%DATADIR%%/et/scripts/weapons/weapon_smoke_grenade.gm %%DATADIR%%/et/scripts/weapons/weapon_smoke_marker.gm @@ -1823,7 +1492,8 @@ bin/etded-omni-bot %%DATADIR%%/et/scripts/weapons/weapon_thompson.gm @unexec if cmp %D/lib/enemyterritory/omni-bot/et/user/omni-bot.cfg %D/lib/enemyterritory/omni-bot/et/user/omni-bot.cfg.sample; then rm -f %D/lib/enemyterritory/omni-bot/et/user/omni-bot.cfg; fi %%DATADIR%%/et/user/omni-bot.cfg.sample -@exec if [ ! -f %D/lib/enemyterritory/omni-bot/et/user/omni-bot.cfg ] ; then cp -p %D/lib/enemyterritory/omni-bot/et/user/omni-bot.cfg.sample %D/lib/enemyterritory/omni-bot/et/user/omni-bot.cfg; fi +@exec if [ ! -f %D/lib/enemyterritory/omni-bot/et/user/omni-bot.cfg ] ; then cp -p %D/%F %B/omni-bot.cfg; fi +%%DATADIR%%/et/user/omni-bot.txt %%DATADIR%%/global_scripts/autowaypoint.gm %%DATADIR%%/global_scripts/commands.gm %%DATADIR%%/global_scripts/goals/goal_meatshield.gm @@ -1854,23 +1524,21 @@ bin/etded-omni-bot %%DATADIR%%/omnibot_et.pk3 %%DATADIR%%/omnibot_et.so %%DATADIR%%/qagame.mp.i386.so -@dirrm %%DATADIR%%/gui/images -@dirrm %%DATADIR%%/gui -@dirrm %%DATADIR%%/global_scripts/weapons -@dirrm %%DATADIR%%/global_scripts/mapgoals -@dirrm %%DATADIR%%/global_scripts/goals -@dirrm %%DATADIR%%/global_scripts +%%DATADIR%%/ui.mp.i386.so +@dirrmtry %%DATADIR%%/gui/images +@dirrmtry %%DATADIR%%/gui +@dirrmtry %%DATADIR%%/global_scripts/weapons +@dirrmtry %%DATADIR%%/global_scripts/mapgoals +@dirrmtry %%DATADIR%%/global_scripts/goals +@dirrmtry %%DATADIR%%/global_scripts +@dirrmtry %%DATADIR%%/et/user/download @dirrmtry %%DATADIR%%/et/user -@dirrm %%DATADIR%%/et/scripts/weapons -@dirrm %%DATADIR%%/et/scripts/mapgoals -@dirrm %%DATADIR%%/et/scripts/goals -@dirrm %%DATADIR%%/et/scripts -@dirrm %%DATADIR%%/et/nav -@dirrm %%DATADIR%%/et/incomplete_navs/with_script -@dirrm %%DATADIR%%/et/incomplete_navs/priority_maps -@dirrm %%DATADIR%%/et/incomplete_navs/no_script -@dirrm %%DATADIR%%/et/incomplete_navs -@exec mkdir -p %D/lib/enemyterritory/omni-bot/et/gui -@dirrm %%DATADIR%%/et/gui +@dirrmtry %%DATADIR%%/et/scripts/weapons +@dirrmtry %%DATADIR%%/et/scripts/mapgoals +@dirrmtry %%DATADIR%%/et/scripts/goals +@dirrmtry %%DATADIR%%/et/scripts +@dirrmtry %%DATADIR%%/et/nav +@dirrmtry %%DATADIR%%/et/gui @dirrmtry %%DATADIR%%/et @dirrmtry %%DATADIR%% +@dirrmtry lib/enemyterritory From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:37:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 369E9E58; Sun, 19 Jan 2014 13:37:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 22AAB1D9B; Sun, 19 Jan 2014 13:37:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDbdXg022879; Sun, 19 Jan 2014 13:37:39 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDbcmk022878; Sun, 19 Jan 2014 13:37:38 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401191337.s0JDbcmk022878@svn.freebsd.org> From: Marcus von Appen Date: Sun, 19 Jan 2014 13:37:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340283 - in head/devel/py-RPyC: . 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.17 Precedence: list List-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, 19 Jan 2014 13:37:39 -0000 Author: mva Date: Sun Jan 19 13:37:38 2014 New Revision: 340283 URL: http://svnweb.freebsd.org/changeset/ports/340283 QAT: https://qat.redports.org/buildarchive/r340283/ Log: - Convert to PYDISTUTILS_AUTOPLIST - Remove obsolete patch, now that setuptools is used PR: ports/184809 Submitted by: Kozlov Sergey Deleted: head/devel/py-RPyC/files/ head/devel/py-RPyC/pkg-plist Modified: head/devel/py-RPyC/Makefile (contents, props changed) Modified: head/devel/py-RPyC/Makefile ============================================================================== --- head/devel/py-RPyC/Makefile Sun Jan 19 13:29:53 2014 (r340282) +++ head/devel/py-RPyC/Makefile Sun Jan 19 13:37:38 2014 (r340283) @@ -14,5 +14,6 @@ LICENSE= MIT USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:39:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20BA1117; Sun, 19 Jan 2014 13:39:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 078E91DAB; Sun, 19 Jan 2014 13:39:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDdXI9023415; Sun, 19 Jan 2014 13:39:33 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDdXsK023413; Sun, 19 Jan 2014 13:39:33 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401191339.s0JDdXsK023413@svn.freebsd.org> From: Marcus von Appen Date: Sun, 19 Jan 2014 13:39:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340284 - in head: textproc/py-pdfminer www/py-django-registration-defaults X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:39:34 -0000 Author: mva Date: Sun Jan 19 13:39:33 2014 New Revision: 340284 URL: http://svnweb.freebsd.org/changeset/ports/340284 QAT: https://qat.redports.org/buildarchive/r340284/ Log: - Convert to PYDISTUTILS_AUTOPLIST PR: ports/184809 Submitted by: Kozlov Sergey Deleted: head/textproc/py-pdfminer/pkg-plist head/www/py-django-registration-defaults/pkg-plist Modified: head/textproc/py-pdfminer/Makefile head/www/py-django-registration-defaults/Makefile Modified: head/textproc/py-pdfminer/Makefile ============================================================================== --- head/textproc/py-pdfminer/Makefile Sun Jan 19 13:37:38 2014 (r340283) +++ head/textproc/py-pdfminer/Makefile Sun Jan 19 13:39:33 2014 (r340284) @@ -14,5 +14,6 @@ LICENSE= MIT USE_PYTHON= 2 USE_PYDISTUTILS=yes +PYDISTUTILS_AUTOPLIST= yes .include Modified: head/www/py-django-registration-defaults/Makefile ============================================================================== --- head/www/py-django-registration-defaults/Makefile Sun Jan 19 13:37:38 2014 (r340283) +++ head/www/py-django-registration-defaults/Makefile Sun Jan 19 13:39:33 2014 (r340284) @@ -16,5 +16,6 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}djan USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:41:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B2FC202; Sun, 19 Jan 2014 13:41:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CC5C81E0A; Sun, 19 Jan 2014 13:41:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDfVPx026392; Sun, 19 Jan 2014 13:41:31 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDfVuU026391; Sun, 19 Jan 2014 13:41:31 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401191341.s0JDfVuU026391@svn.freebsd.org> From: Marcus von Appen Date: Sun, 19 Jan 2014 13:41:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340285 - head/www/py-django-tables2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:41:32 -0000 Author: mva Date: Sun Jan 19 13:41:31 2014 New Revision: 340285 URL: http://svnweb.freebsd.org/changeset/ports/340285 QAT: https://qat.redports.org/buildarchive/r340285/ Log: - Change deprecated USE_PYDISTUTILS=easy_install to yes - Update LICENSE PR: ports/184809 Submitted by: Kozlov Sergey Modified: head/www/py-django-tables2/Makefile Modified: head/www/py-django-tables2/Makefile ============================================================================== --- head/www/py-django-tables2/Makefile Sun Jan 19 13:39:33 2014 (r340284) +++ head/www/py-django-tables2/Makefile Sun Jan 19 13:41:31 2014 (r340285) @@ -10,17 +10,13 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= kozlov.sergey.404@gmail.com COMMENT= Table/data-grid framework for Django -LICENSE= BSD +LICENSE= BSD2CLAUSE RUN_DEPENDS= ${PYTHON_SITELIBDIR}/django/bin/django-admin.py:${PORTSDIR}/www/py-django \ ${PYTHON_PKGNAMEPREFIX}six>=0:${PORTSDIR}/devel/py-six USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -PYDISTUTILS_AUTOPLIST=yes - -post-patch: - @${REINPLACE_CMD} 's|classifiers=\[|zip_safe=False, classifiers=\[|' \ - ${WRKSRC}/setup.py +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:42:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BF862E2; Sun, 19 Jan 2014 13:42:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3881C1E12; Sun, 19 Jan 2014 13:42:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDge45026668; Sun, 19 Jan 2014 13:42:40 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDgeSs026667; Sun, 19 Jan 2014 13:42:40 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401191342.s0JDgeSs026667@svn.freebsd.org> From: Marcus von Appen Date: Sun, 19 Jan 2014 13:42:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340286 - head/www/py-django-tinymce X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:42:40 -0000 Author: mva Date: Sun Jan 19 13:42:39 2014 New Revision: 340286 URL: http://svnweb.freebsd.org/changeset/ports/340286 QAT: https://qat.redports.org/buildarchive/r340286/ Log: - Change deprecated USE_PYDISTUTILS=easy_install to yes PR: ports/184809 Submitted by: Kozlov Sergey Modified: head/www/py-django-tinymce/Makefile Modified: head/www/py-django-tinymce/Makefile ============================================================================== --- head/www/py-django-tinymce/Makefile Sun Jan 19 13:41:31 2014 (r340285) +++ head/www/py-django-tinymce/Makefile Sun Jan 19 13:42:39 2014 (r340286) @@ -15,7 +15,7 @@ LICENSE= MIT RUN_DEPENDS= ${PYTHON_SITELIBDIR}/django/bin/django-admin.py:${PORTSDIR}/www/py-django USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:43:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9420D4A4; Sun, 19 Jan 2014 13:43:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7FBF31E1A; Sun, 19 Jan 2014 13:43:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDhTSB026945; Sun, 19 Jan 2014 13:43:29 GMT (envelope-from bar@svn.freebsd.org) Received: (from bar@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDhSbd026940; Sun, 19 Jan 2014 13:43:28 GMT (envelope-from bar@svn.freebsd.org) Message-Id: <201401191343.s0JDhSbd026940@svn.freebsd.org> From: Barbara Guida Date: Sun, 19 Jan 2014 13:43:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340287 - head/games/linux-enemyterritory-omni-bot-0660 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:43:29 -0000 Author: bar Date: Sun Jan 19 13:43:28 2014 New Revision: 340287 URL: http://svnweb.freebsd.org/changeset/ports/340287 QAT: https://qat.redports.org/buildarchive/r340287/ Log: - Support STAGEDIR - Update MASTER_SITES (links on new vendor website are dynamic and subject to changes, so I'm hosting distfiles on googledrive) - Update WWW Approved by: flo (mentor) Modified: head/games/linux-enemyterritory-omni-bot-0660/Makefile head/games/linux-enemyterritory-omni-bot-0660/pkg-descr head/games/linux-enemyterritory-omni-bot-0660/pkg-plist Modified: head/games/linux-enemyterritory-omni-bot-0660/Makefile ============================================================================== --- head/games/linux-enemyterritory-omni-bot-0660/Makefile Sun Jan 19 13:42:39 2014 (r340286) +++ head/games/linux-enemyterritory-omni-bot-0660/Makefile Sun Jan 19 13:43:28 2014 (r340287) @@ -5,8 +5,7 @@ PORTNAME= omni-bot PORTVERSION= 0.660 PORTREVISION= 1 CATEGORIES= games linux -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= alepulver +MASTER_SITES= http://googledrive.com/host/0BzZDKd40GAICUkZTaDJQQ2FKRTg/ PKGNAMEPREFIX= linux-enemyterritory- DISTNAME= ${PORTNAME}-${PORTVERSION:S/0$//} @@ -26,7 +25,6 @@ NO_WRKSUBDIR= yes DATADIR= ${PREFIX}/lib/enemyterritory/${PORTNAME}-${VERSTR} DOCSDIR= ${PREFIX}/share/doc/enemyterritory-${PORTNAME}-${VERSTR} -NO_STAGE= yes .include do-build: @@ -39,19 +37,18 @@ do-build: do-install: .for f in et etded ${MV} ${WRKSRC}/${f}-${PORTNAME} ${WRKSRC}/${f}-${PORTNAME}-${VERSTR} - ${INSTALL_SCRIPT} ${WRKSRC}/${f}-${PORTNAME}-${VERSTR} ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/${f}-${PORTNAME}-${VERSTR} \ + ${STAGEDIR}${PREFIX}/bin .endfor - ${MKDIR} ${DATADIR} - ${INSTALL_PROGRAM} ${WRKSRC}/omni-bot/omnibot_et.so ${DATADIR} - cd ${WRKSRC}/omni-bot && ${CP} -R et global_scripts ${DATADIR} - ${INSTALL_PROGRAM} ${WRKSRC}/omnibot/qagame.mp.i386.so ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/omnibot/omnibot_et.pk3 ${DATADIR} -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/omni-bot/omnibot_et.so ${STAGEDIR}${DATADIR} + cd ${WRKSRC}/omni-bot && ${CP} -R et global_scripts ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/omnibot/qagame.mp.i386.so ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/omnibot/omnibot_et.pk3 ${STAGEDIR}${DATADIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} . for f in *.txt omni-bot/*.txt - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} . endfor - ${CP} -R ${WRKSRC}/omni-bot/docs ${DOCSDIR} -.endif + ${CP} -R ${WRKSRC}/omni-bot/docs ${STAGEDIR}${DOCSDIR} .include Modified: head/games/linux-enemyterritory-omni-bot-0660/pkg-descr ============================================================================== --- head/games/linux-enemyterritory-omni-bot-0660/pkg-descr Sun Jan 19 13:42:39 2014 (r340286) +++ head/games/linux-enemyterritory-omni-bot-0660/pkg-descr Sun Jan 19 13:43:28 2014 (r340287) @@ -1,4 +1,4 @@ Omni-Bot is an Enemy Territory modification providing computer controlled players (bots). -WWW: http://www.omni-bot.de/ +WWW: http://omni-bot.invisionzone.com/ Modified: head/games/linux-enemyterritory-omni-bot-0660/pkg-plist ============================================================================== --- head/games/linux-enemyterritory-omni-bot-0660/pkg-plist Sun Jan 19 13:42:39 2014 (r340286) +++ head/games/linux-enemyterritory-omni-bot-0660/pkg-plist Sun Jan 19 13:43:28 2014 (r340287) @@ -49,3 +49,4 @@ bin/etded-omni-bot-%%VERSTR%% @dirrm %%DATADIR%%/et/nav @dirrm %%DATADIR%%/et @dirrm %%DATADIR%% +@dirrmtry lib/enemyterritory From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:44:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A61B2587; Sun, 19 Jan 2014 13:44:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 864FA1E24; Sun, 19 Jan 2014 13:44:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDiGnS027208; Sun, 19 Jan 2014 13:44:16 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDiF8k027205; Sun, 19 Jan 2014 13:44:15 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201401191344.s0JDiF8k027205@svn.freebsd.org> From: Jun Kuriyama Date: Sun, 19 Jan 2014 13:44:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340288 - in head/net-mgmt/nagios-check_memcached_paranoid: . 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.17 Precedence: list List-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, 19 Jan 2014 13:44:16 -0000 Author: kuriyama Date: Sun Jan 19 13:44:15 2014 New Revision: 340288 URL: http://svnweb.freebsd.org/changeset/ports/340288 QAT: https://qat.redports.org/buildarchive/r340288/ Log: Fix breakage with nagios-plugins 1.5. Modified: head/net-mgmt/nagios-check_memcached_paranoid/Makefile head/net-mgmt/nagios-check_memcached_paranoid/distinfo head/net-mgmt/nagios-check_memcached_paranoid/files/check_memcached_paranoid.c Modified: head/net-mgmt/nagios-check_memcached_paranoid/Makefile ============================================================================== --- head/net-mgmt/nagios-check_memcached_paranoid/Makefile Sun Jan 19 13:43:28 2014 (r340287) +++ head/net-mgmt/nagios-check_memcached_paranoid/Makefile Sun Jan 19 13:44:15 2014 (r340288) @@ -2,9 +2,10 @@ PORTNAME= check_memcached_paranoid PORTVERSION= 0.20131004 +PORTREVISION= 1 CATEGORIES= net-mgmt -MASTER_SITES= SF/nagiosplug/nagiosplug/1.4.16 -DISTFILES= nagios-plugins-1.4.16.tar.gz +MASTER_SITES= SF/nagiosplug/nagiosplug/1.5 +DISTFILES= nagios-plugins-1.5.tar.gz MAINTAINER= kuriyama@FreeBSD.org COMMENT= Nagios plugin for checking memcached @@ -34,7 +35,8 @@ do-build: -I$${NDIR} -I$${NDIR}/plugins -I$${NDIR}/gl -I$${NDIR}/lib -I${LOCALBASE}/include \ -o ${PORTNAME} \ $${NDIR}/plugins/netutils.o $${NDIR}/plugins/utils.o \ - $${NDIR}/lib/utils_base.o $${NDIR}/gl/getopt.o $${NDIR}/gl/getopt1.o \ + $${NDIR}/lib/utils_base.o $${NDIR}/lib/extra_opts.o $${NDIR}/lib/parse_ini.o \ + $${NDIR}/gl/getopt.o $${NDIR}/gl/getopt1.o \ $${NDIR}/gl/sha1.o \ -L${LOCALBASE}/lib -lintl -lmemcached ${FILE} Modified: head/net-mgmt/nagios-check_memcached_paranoid/distinfo ============================================================================== --- head/net-mgmt/nagios-check_memcached_paranoid/distinfo Sun Jan 19 13:43:28 2014 (r340287) +++ head/net-mgmt/nagios-check_memcached_paranoid/distinfo Sun Jan 19 13:44:15 2014 (r340288) @@ -1,2 +1,2 @@ -SHA256 (nagios-plugins-1.4.16.tar.gz) = b0caf07e0084e9b7f10fdd71cbd3ebabcd85ad78df64da360b51233b0e73b2bd -SIZE (nagios-plugins-1.4.16.tar.gz) = 2087089 +SHA256 (nagios-plugins-1.5.tar.gz) = fcc55e23bbf1c70bcf1a90749d30249955d4668a9b776b2521da023c5c2f2170 +SIZE (nagios-plugins-1.5.tar.gz) = 2428258 Modified: head/net-mgmt/nagios-check_memcached_paranoid/files/check_memcached_paranoid.c ============================================================================== --- head/net-mgmt/nagios-check_memcached_paranoid/files/check_memcached_paranoid.c Sun Jan 19 13:43:28 2014 (r340287) +++ head/net-mgmt/nagios-check_memcached_paranoid/files/check_memcached_paranoid.c Sun Jan 19 13:44:15 2014 (r340288) @@ -13,8 +13,6 @@ const char *revision = "$Revision: 0.1 $ const char *copyright = "2009"; const char *email = "hirose31 _at_ gmail.com"; -#include - #include "common.h" #include "utils.h" #include "utils_base.h" @@ -258,12 +256,6 @@ void print_help(void) printf (_(UT_HOST_PORT), 'P', mcport); printf (" -E, --expire=INTEGER\n expire time(second) for SET command (default: 0)\n"); -#ifdef NP_EXTRA_OPTS - printf ("\n"); - printf ("%s\n", _("Notes:")); - printf (_(UT_EXTRA_OPTS_NOTES)); -#endif - /* printf (_(UT_SUPPORT)); */ puts("\nRepository:\n http://github.com/hirose31/nagios-check_memcached_paranoid/tree/master\n\n"); } From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:44:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37E0065F; Sun, 19 Jan 2014 13:44:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 23C461E28; Sun, 19 Jan 2014 13:44:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDibSQ027350; Sun, 19 Jan 2014 13:44:37 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDiajW027349; Sun, 19 Jan 2014 13:44:36 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191344.s0JDiajW027349@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 13:44:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340289 - in head/multimedia/xmms-status-plugin: . 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.17 Precedence: list List-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, 19 Jan 2014 13:44:37 -0000 Author: miwi Date: Sun Jan 19 13:44:36 2014 New Revision: 340289 URL: http://svnweb.freebsd.org/changeset/ports/340289 QAT: https://qat.redports.org/buildarchive/r340289/ Log: - Fix build with clang PR: 185330 Submitted by: ports fury Deleted: head/multimedia/xmms-status-plugin/files/patch-configure Modified: head/multimedia/xmms-status-plugin/Makefile (contents, props changed) Modified: head/multimedia/xmms-status-plugin/Makefile ============================================================================== --- head/multimedia/xmms-status-plugin/Makefile Sun Jan 19 13:44:15 2014 (r340288) +++ head/multimedia/xmms-status-plugin/Makefile Sun Jan 19 13:44:36 2014 (r340289) @@ -10,17 +10,19 @@ MASTER_SITES= http://www.hellion.org.uk/ MAINTAINER= ports@FreeBSD.org COMMENT= XMMS control applet for GNOME 2 panel / KDE tray -LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms +LICENSE= GPLv2 # (or later) +LIB_DEPENDS= libxmms.so:${PORTSDIR}/multimedia/xmms + +USES= gettext gmake USE_XORG= x11 xpm -USE_GMAKE= yes -USE_LDCONFIG= yes +USE_CSTD= gnu89 USE_AUTOTOOLS= libtool + CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes post-patch: - ${REINPLACE_CMD} -e 's,-Werror,,' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's,-Werror,,' ${WRKSRC}/configure .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:45:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81B4A77C; Sun, 19 Jan 2014 13:45:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5523D1E39; Sun, 19 Jan 2014 13:45:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDjeaI027653; Sun, 19 Jan 2014 13:45:40 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDjdEa027651; Sun, 19 Jan 2014 13:45:39 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191345.s0JDjdEa027651@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 13:45:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340290 - in head/emulators/cpmemu: . 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.17 Precedence: list List-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, 19 Jan 2014 13:45:40 -0000 Author: miwi Date: Sun Jan 19 13:45:39 2014 New Revision: 340290 URL: http://svnweb.freebsd.org/changeset/ports/340290 QAT: https://qat.redports.org/buildarchive/r340290/ Log: - Fix build with clang PR: 185322 Submitted by: ports fury Modified: head/emulators/cpmemu/Makefile (contents, props changed) head/emulators/cpmemu/files/patch-ab (contents, props changed) Modified: head/emulators/cpmemu/Makefile ============================================================================== --- head/emulators/cpmemu/Makefile Sun Jan 19 13:44:36 2014 (r340289) +++ head/emulators/cpmemu/Makefile Sun Jan 19 13:45:39 2014 (r340290) @@ -18,5 +18,13 @@ COMMENT= Cpm emulator ONLY_FOR_ARCHS= i386 -NO_STAGE= yes -.include +USES= compiler + +.include + +.if ${COMPILER_TYPE} == "clang" +USE_BINUTILS= yes +CPPFLAGS+= -no-integrated-as +.endif + +.include Modified: head/emulators/cpmemu/files/patch-ab ============================================================================== --- head/emulators/cpmemu/files/patch-ab Sun Jan 19 13:44:36 2014 (r340289) +++ head/emulators/cpmemu/files/patch-ab Sun Jan 19 13:45:39 2014 (r340290) @@ -21,14 +21,14 @@ +CC ?= gcc -CFLAGS = -O2 -pipe -ansi -Wall \ -+CFLAGS += -ansi -Wall \ ++CFLAGS += $(CPPFLAGS) -ansi -Wall \ -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align \ -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes \ -Wnested-externs -Wwrite-strings \ -DCPMLIBDIR=\"$(CPMLIBDIR)\" -LDFLAGS = -s -+LDFLAGS += -s ++#LDFLAGS = -s OBJS = single.o z80emu.o em.o io.o bios.o \ commands.o running.o main.o disneu.o disz80.o low.o @@ -44,9 +44,10 @@ install: all - install -m 511 cpm $(BINDIR) -+ ${BSD_INSTALL_PROGRAM} cpm $(BINDIR)/cpmemu -+ ${BSD_INSTALL_PROGRAM} format $(BINDIR)/cpmformat - -mkdir $(CPMLIBDIR) +- -mkdir $(CPMLIBDIR) - chmod 755 $(CPMLIBDIR) - install -m 444 z80-binaries/* $(CPMLIBDIR) -+ ${BSD_INSTALL_DATA} z80-binaries/* $(CPMLIBDIR) ++ ${BSD_INSTALL_PROGRAM} cpm $(DESTDIR)$(BINDIR)/cpmemu ++ ${BSD_INSTALL_PROGRAM} format $(DESTDIR)$(BINDIR)/cpmformat ++ -mkdir $(DESTDIR)$(CPMLIBDIR) ++ ${BSD_INSTALL_DATA} z80-binaries/* $(DESTDIR)$(CPMLIBDIR) From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:46:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0C37894; Sun, 19 Jan 2014 13:46:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 911501E44; Sun, 19 Jan 2014 13:46:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDkMOa028018; Sun, 19 Jan 2014 13:46:22 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDkJdq027994; Sun, 19 Jan 2014 13:46:19 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191346.s0JDkJdq027994@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 13:46:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340291 - in head/graphics/ipe: . 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.17 Precedence: list List-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, 19 Jan 2014 13:46:22 -0000 Author: miwi Date: Sun Jan 19 13:46:19 2014 New Revision: 340291 URL: http://svnweb.freebsd.org/changeset/ports/340291 QAT: https://qat.redports.org/buildarchive/r340291/ Log: - Fix build with clang PR: 185318 Submitted by: ports fury Added: head/graphics/ipe/files/patch-include__ipedoc.h (contents, props changed) head/graphics/ipe/files/patch-include__ipereference.h (contents, props changed) head/graphics/ipe/files/patch-ipe6upgrade__ipe6upgrade.cpp (contents, props changed) head/graphics/ipe/files/patch-ipecairo__ipecairopainter.cpp (contents, props changed) head/graphics/ipe/files/patch-ipecairo__ipestdfonts.cpp (contents, props changed) head/graphics/ipe/files/patch-ipeextract__ipeextract.cpp (contents, props changed) head/graphics/ipe/files/patch-ipelib__ipebase.cpp (contents, props changed) head/graphics/ipe/files/patch-ipelib__ipedct.cpp (contents, props changed) head/graphics/ipe/files/patch-ipelib__ipegeo.cpp (contents, props changed) head/graphics/ipe/files/patch-ipelib__ipelatex.cpp (contents, props changed) head/graphics/ipe/files/patch-ipelib__ipepdfparser.cpp (contents, props changed) head/graphics/ipe/files/patch-ipelib__ipeshape.cpp (contents, props changed) head/graphics/ipe/files/patch-ipetoipe__ipetoipe.cpp (contents, props changed) Modified: head/graphics/ipe/Makefile head/graphics/ipe/pkg-plist Modified: head/graphics/ipe/Makefile ============================================================================== --- head/graphics/ipe/Makefile Sun Jan 19 13:45:39 2014 (r340290) +++ head/graphics/ipe/Makefile Sun Jan 19 13:46:19 2014 (r340291) @@ -24,12 +24,13 @@ USES= gmake iconv pkgconfig USE_QT4= gui moc_build qmake_build rcc_build uic_build USE_TEX= latex MAKE_ENV= DLL_CFLAGS="-fPIC" \ - ICONV_CFLAGS="-I${LOCALBASE}/include" \ - ICONV_LIBS="-L${LOCALBASE}/lib ${ICONV_LIB}" \ + ICONV_CFLAGS="-I${ICONV_PREFIX}/include" \ + ICONV_LIBS="-L${ICONV_PREFIX}/lib ${ICONV_LIB}" \ INSTALL_DIR="${MKDIR}" \ INSTALL_FILES="${INSTALL_DATA}" \ INSTALL_SCRIPTS="${INSTALL_SCRIPT}" \ INSTALL_PROGRAMS="${INSTALL_PROGRAM}" \ + INSTALL_ROOT="${STAGEDIR}" \ IPE_USE_ICONV="-DIPE_USE_ICONV" \ IPEDOCDIR="${DOCSDIR}" \ IPEMANDIR="${MANPREFIX}/man/man1" \ @@ -41,14 +42,11 @@ USE_LDCONFIG= yes PLIST_SUB= VERSION="${PORTVERSION}" -MAN1= ipe.1 ipe6upgrade.1 ipeextract.1 iperender.1 ipetoipe.1 \ - ipescript.1 PORTDOCS= * DESKTOP_ENTRIES="Ipe" "" "${DATADIR}/${PORTVERSION}/ipe.png" \ "${PORTNAME}" "" true -NO_STAGE= yes .include post-patch: @@ -68,10 +66,9 @@ post-patch: post-install: (cd ${WRKSRC}/../fontmaps && ${INSTALL_DATA} fontmap.xml \ - ${DATADIR}/${PORTVERSION}) -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @(cd ${WRKSRC}/../build/doc && ${COPYTREE_SHARE} . ${DOCSDIR}) -.endif + ${STAGEDIR}${DATADIR}/${PORTVERSION}) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @(cd ${WRKSRC}/../build/doc && ${COPYTREE_SHARE} . \ + ${STAGEDIR}${DOCSDIR}) .include Added: head/graphics/ipe/files/patch-include__ipedoc.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-include__ipedoc.h Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,10 @@ +--- include/ipedoc.h.orig ++++ include/ipedoc.h +@@ -37,6 +37,7 @@ + #include "ipeimage.h" + #include "ipestyle.h" + #include "ipefontpool.h" ++#include + + // -------------------------------------------------------------------- + Added: head/graphics/ipe/files/patch-include__ipereference.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-include__ipereference.h Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,10 @@ +--- include/ipereference.h.orig ++++ include/ipereference.h +@@ -33,6 +33,7 @@ + #define IPEREF_H + + #include "ipeobject.h" ++#include + + // -------------------------------------------------------------------- + Added: head/graphics/ipe/files/patch-ipe6upgrade__ipe6upgrade.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipe6upgrade__ipe6upgrade.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,11 @@ +--- ipe6upgrade/ipe6upgrade.cpp.orig ++++ ipe6upgrade/ipe6upgrade.cpp +@@ -30,6 +30,8 @@ + + #include "ipexml.h" + #include "ipeattributes.h" ++#include ++#include + + using namespace ipe; + Added: head/graphics/ipe/files/patch-ipecairo__ipecairopainter.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipecairo__ipecairopainter.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,10 @@ +--- ipecairo/ipecairopainter.cpp.orig ++++ ipecairo/ipecairopainter.cpp +@@ -32,6 +32,7 @@ + #include "ipepdfparser.h" + #include "ipecairopainter.h" + #include "ipefonts.h" ++#include + + using namespace ipe; + Added: head/graphics/ipe/files/patch-ipecairo__ipestdfonts.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipecairo__ipestdfonts.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,10 @@ +--- ipecairo/ipestdfonts.cpp.orig ++++ ipecairo/ipestdfonts.cpp +@@ -30,6 +30,7 @@ + */ + + #include "ipebase.h" ++#include + + using namespace ipe; + Added: head/graphics/ipe/files/patch-ipeextract__ipeextract.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipeextract__ipeextract.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,10 @@ +--- ipeextract/ipeextract.cpp.orig ++++ ipeextract/ipeextract.cpp +@@ -31,6 +31,7 @@ + #include "ipexml.h" + #include "ipeutils.h" + #include "ipepdfparser.h" ++#include + + using namespace ipe; + Added: head/graphics/ipe/files/patch-ipelib__ipebase.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipelib__ipebase.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,12 @@ +--- ipelib/ipebase.cpp.orig ++++ ipelib/ipebase.cpp +@@ -29,7 +29,9 @@ + */ + + #include "ipebase.h" ++#include + #include ++#include + + using namespace ipe; + Added: head/graphics/ipe/files/patch-ipelib__ipedct.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipelib__ipedct.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,10 @@ +--- ipelib/ipedct.cpp.orig ++++ ipelib/ipedct.cpp +@@ -31,6 +31,7 @@ + */ + + #include "ipebase.h" ++#include + + using namespace ipe; + Added: head/graphics/ipe/files/patch-ipelib__ipegeo.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipelib__ipegeo.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,11 @@ +--- ipelib/ipegeo.cpp.orig ++++ ipelib/ipegeo.cpp +@@ -38,6 +38,8 @@ + */ + + #include "ipegeo.h" ++#include ++#include + + using namespace ipe; + Added: head/graphics/ipe/files/patch-ipelib__ipelatex.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipelib__ipelatex.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,11 @@ +--- ipelib/ipelatex.cpp.orig ++++ ipelib/ipelatex.cpp +@@ -35,6 +35,8 @@ + #include "ipefontpool.h" + #include "ipelatex.h" + ++#include ++ + using namespace ipe; + + /*! \class ipe::Latex Added: head/graphics/ipe/files/patch-ipelib__ipepdfparser.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipelib__ipepdfparser.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,10 @@ +--- ipelib/ipepdfparser.cpp.orig ++++ ipelib/ipepdfparser.cpp +@@ -30,6 +30,7 @@ + + #include "ipepdfparser.h" + #include "ipeutils.h" ++#include + + using namespace ipe; + Added: head/graphics/ipe/files/patch-ipelib__ipeshape.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipelib__ipeshape.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,10 @@ +--- ipelib/ipeshape.cpp.orig ++++ ipelib/ipeshape.cpp +@@ -30,6 +30,7 @@ + + #include "ipeshape.h" + #include "ipepainter.h" ++#include + + using namespace ipe; + Added: head/graphics/ipe/files/patch-ipetoipe__ipetoipe.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/ipe/files/patch-ipetoipe__ipetoipe.cpp Sun Jan 19 13:46:19 2014 (r340291) @@ -0,0 +1,10 @@ +--- ipetoipe/ipetoipe.cpp.orig ++++ ipetoipe/ipetoipe.cpp +@@ -29,6 +29,7 @@ + */ + + #include "ipedoc.h" ++#include + + using ipe::Document; + using ipe::String; Modified: head/graphics/ipe/pkg-plist ============================================================================== --- head/graphics/ipe/pkg-plist Sun Jan 19 13:45:39 2014 (r340290) +++ head/graphics/ipe/pkg-plist Sun Jan 19 13:46:19 2014 (r340291) @@ -56,6 +56,12 @@ lib/libipelua.so lib/libipelua.so.%%VERSION%% lib/libipeui.so lib/libipeui.so.%%VERSION%% +man/man1/ipe.1.gz +man/man1/ipe6upgrade.1.gz +man/man1/ipeextract.1.gz +man/man1/iperender.1.gz +man/man1/ipescript.1.gz +man/man1/ipetoipe.1.gz %%DATADIR%%/%%VERSION%%/fontmap.xml %%DATADIR%%/%%VERSION%%/icons/copy.png %%DATADIR%%/%%VERSION%%/icons/cut.png From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:47:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 477439A5; Sun, 19 Jan 2014 13:47:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 32F171E4F; Sun, 19 Jan 2014 13:47:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDlIwa028296; Sun, 19 Jan 2014 13:47:18 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDlHpv028290; Sun, 19 Jan 2014 13:47:17 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191347.s0JDlHpv028290@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 13:47:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340292 - in head/games/gillo: . 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.17 Precedence: list List-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, 19 Jan 2014 13:47:18 -0000 Author: miwi Date: Sun Jan 19 13:47:16 2014 New Revision: 340292 URL: http://svnweb.freebsd.org/changeset/ports/340292 QAT: https://qat.redports.org/buildarchive/r340292/ Log: - Fix build with clang PR: 184836 Submitted by: Ports Fury Added: head/games/gillo/files/patch-src__goal.cpp (contents, props changed) head/games/gillo/files/patch-src__goal.h (contents, props changed) head/games/gillo/files/patch-src__simpleball.cpp (contents, props changed) head/games/gillo/files/patch-src__simpleball.h (contents, props changed) Modified: head/games/gillo/Makefile (contents, props changed) Modified: head/games/gillo/Makefile ============================================================================== --- head/games/gillo/Makefile Sun Jan 19 13:46:19 2014 (r340291) +++ head/games/gillo/Makefile Sun Jan 19 13:47:16 2014 (r340292) @@ -11,18 +11,20 @@ DISTNAME= ${PORTNAME}-${DISTVERSION}-src MAINTAINER= ports@FreeBSD.org COMMENT= Players are cars throwing a magnetic fuzzy ball into a goal +LICENSE= GPLv2 + BUILD_DEPENDS= ${JAM}:${PORTSDIR}/devel/jam \ ${LOCALBASE}/lib/libode.a:${PORTSDIR}/devel/ode \ ${LOCALBASE}/lib/libplibsg.a:${PORTSDIR}/x11-toolkits/plib +WRKSRC= ${WRKDIR}/${PORTNAME} + USE_BZIP2= yes USE_GL= gl USE_SDL= yes -WRKSRC= ${WRKDIR}/${PORTNAME} JAM?= ${LOCALBASE}/bin/jam -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -i '' -e 's|SDL/||g' ${WRKSRC}/src/* @${REINPLACE_CMD} -e 's|%%SDL_CFLAGS%%|`${SDL_CONFIG} --cflags`|' \ @@ -33,11 +35,11 @@ post-patch: do-build: cd ${WRKSRC} && ${SETENV} "C++=${CC}" "LOCALBASE=${LOCALBASE}" \ "CFLAGS=${CFLAGS} -DDATADIR=\\\"${PREFIX}/share\\\"" \ - ${JAM} -dx -sPREFIX=${PREFIX} + ${JAM} -dx -sPREFIX=${PREFIX} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/gillo3 ${PREFIX}/bin - @${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/data/*.* ${DATADIR} + (cd ${WRKSRC}/src && ${INSTALL_PROGRAM} gillo3 ${STAGEDIR}${PREFIX}/bin) + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC}/data && ${INSTALL_DATA} *.* ${STAGEDIR}${DATADIR}) .include Added: head/games/gillo/files/patch-src__goal.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/gillo/files/patch-src__goal.cpp Sun Jan 19 13:47:16 2014 (r340292) @@ -0,0 +1,11 @@ +--- src/goal.cpp.orig ++++ src/goal.cpp +@@ -22,6 +22,8 @@ + + namespace gillo { + ++const float Goal::areaRadius = ODE_GOAL_DISTANCE; ++ + Goal::Goal(Context& c) + : Entity(c) + { Added: head/games/gillo/files/patch-src__goal.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/gillo/files/patch-src__goal.h Sun Jan 19 13:47:16 2014 (r340292) @@ -0,0 +1,11 @@ +--- src/goal.h.orig ++++ src/goal.h +@@ -32,7 +32,7 @@ + */ + class Goal : public Entity + { +- static const float areaRadius = ODE_GOAL_DISTANCE; ++ static const float areaRadius; + dGeomID gids[6]; + public: + Goal(Context& c); Added: head/games/gillo/files/patch-src__simpleball.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/gillo/files/patch-src__simpleball.cpp Sun Jan 19 13:47:16 2014 (r340292) @@ -0,0 +1,11 @@ +--- src/simpleball.cpp.orig ++++ src/simpleball.cpp +@@ -26,6 +26,8 @@ + const sgVec4 SimpleBall::p1[3] = { {0.3, 0.0, 0.0, 1.0}, {1.0, 0.0, 0.0, 1.0}, {1.0, 0.4, 0.4, 1.0} }; + const sgVec4 SimpleBall::ne[3] = { {0.0, 0.0, 0.0, 1}, {0.6, 0.6, 0.6, 1}, {1.0, 1.0, 1.0, 1} }; + const sgVec4 SimpleBall::p2[3] = { {0.0, 0.0, 0.3, 1}, {0.0, 0.0, 1.0, 1}, {0.4, 0.4, 1.0, 1} }; ++const double SimpleBall::weight = ODE_BALL_MASS; ++const double SimpleBall::radius = ODE_BALL_RADIUS; + + SimpleBall::SimpleBall(Context& c) + : Entity(c), ballEffectPtr(NULL), possessionIncrement(0), targetSize(2*radius), currentSize(2*radius) Added: head/games/gillo/files/patch-src__simpleball.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/gillo/files/patch-src__simpleball.h Sun Jan 19 13:47:16 2014 (r340292) @@ -0,0 +1,13 @@ +--- src/simpleball.h.orig ++++ src/simpleball.h +@@ -37,8 +37,8 @@ + static const sgVec4 p1[3]; + static const sgVec4 ne[3]; + static const sgVec4 p2[3]; +- static const double weight = ODE_BALL_MASS; +- static const double radius = ODE_BALL_RADIUS; ++ static const double weight; ++ static const double radius; + + SimpleBall(Context& c); + SimpleBall(Context& c, float size, ssgSimpleState* state); From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:47:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 25804AB0; Sun, 19 Jan 2014 13:47:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EBAA51E57; Sun, 19 Jan 2014 13:47:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDlul7028490; Sun, 19 Jan 2014 13:47:56 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDlup2028487; Sun, 19 Jan 2014 13:47:56 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191347.s0JDlup2028487@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 13:47:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340293 - in head/audio/bmp-mac: . 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.17 Precedence: list List-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, 19 Jan 2014 13:47:57 -0000 Author: miwi Date: Sun Jan 19 13:47:56 2014 New Revision: 340293 URL: http://svnweb.freebsd.org/changeset/ports/340293 QAT: https://qat.redports.org/buildarchive/r340293/ Log: - Fix build with clang PR: 185515 Submitted by: ports fury Modified: head/audio/bmp-mac/Makefile (contents, props changed) head/audio/bmp-mac/files/patch-configure.in (contents, props changed) Modified: head/audio/bmp-mac/Makefile ============================================================================== --- head/audio/bmp-mac/Makefile Sun Jan 19 13:47:16 2014 (r340292) +++ head/audio/bmp-mac/Makefile Sun Jan 19 13:47:56 2014 (r340293) @@ -12,23 +12,27 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${ MAINTAINER= ports@FreeBSD.org COMMENT= Monkey's Audio Codec non-win32 port -LIB_DEPENDS= libbeep.so:${PORTSDIR}/multimedia/beep-media-player \ - libmac.so:${PORTSDIR}/audio/mac +LIB_DEPENDS= libmac.so:${PORTSDIR}/audio/mac \ + libbeep.so:${PORTSDIR}/multimedia/beep-media-player USES= gmake pkgconfig -GNU_CONFIGURE= yes -USE_AUTOTOOLS= autoconf libtool -CPPFLAGS+= "-I${LOCALBASE}/include" -PLUGDIR= lib/bmp/Input -PLUGFILE= lib${PKGNAMEPREFIX}${PORTNAME}.so -PLIST_FILES= ${PLUGDIR}/${PLUGFILE} +USE_AUTOTOOLS= libtoolize aclocal automake autoconf +LIBTOOLIZE_ARGS=--force --copy +AUTOMAKE_ARGS= --add-missing --copy + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES= lib/bmp/Input/libbmp-mac.so post-patch: - @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|-D.*_DISABLE_DEPRECATED||g' + @${REINPLACE_CMD} -e \ + 's|-D.*_DISABLE_DEPRECATED|| ; \ + s|@BMP_LIBS@|@GTK_LIBS@|' ${WRKSRC}/src/Makefile.am do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/${PLUGDIR} - ${INSTALL_LIB} ${WRKSRC}/src/.libs/${PLUGFILE} ${STAGEDIR}${PREFIX}/${PLUGDIR}/ + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/bmp/Input + (cd ${WRKSRC}/src/.libs && ${INSTALL_LIB} libbmp-mac.so \ + ${STAGEDIR}${PREFIX}/lib/bmp/Input) .include Modified: head/audio/bmp-mac/files/patch-configure.in ============================================================================== --- head/audio/bmp-mac/files/patch-configure.in Sun Jan 19 13:47:16 2014 (r340292) +++ head/audio/bmp-mac/files/patch-configure.in Sun Jan 19 13:47:56 2014 (r340293) @@ -1,11 +1,14 @@ --- configure.in.orig Tue Jan 17 23:49:11 2006 +++ configure.in Tue Jan 17 23:49:55 2006 -@@ -62,7 +62,7 @@ +@@ -62,9 +62,9 @@ AC_CHECK_LIB(mac, DecompressFile, []) -#MAC_LIBS="-lmac" -+MAC_LIBS="-lmac -lpthread" ++MAC_LIBS="-lmac -pthread" #MAC_INCLUDES="-I/usr/include/mac" - MAC_CXXFLAGS="-s -O3 -Wall -pedantic -DBUILD_CROSS_PLATFORM" +-MAC_CXXFLAGS="-s -O3 -Wall -pedantic -DBUILD_CROSS_PLATFORM" ++MAC_CXXFLAGS="-DBUILD_CROSS_PLATFORM" + AC_SUBST(MAC_LIBS) + AC_SUBST(MAC_CXXFLAGS) From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:48:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE7E1B60; Sun, 19 Jan 2014 13:48:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B23D01E5A; Sun, 19 Jan 2014 13:48:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDm3sO028627; Sun, 19 Jan 2014 13:48:03 GMT (envelope-from bar@svn.freebsd.org) Received: (from bar@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDm359028626; Sun, 19 Jan 2014 13:48:03 GMT (envelope-from bar@svn.freebsd.org) Message-Id: <201401191348.s0JDm359028626@svn.freebsd.org> From: Barbara Guida Date: Sun, 19 Jan 2014 13:48:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340294 - head/games/linux-enemyterritory-omni-bot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:48:04 -0000 Author: bar Date: Sun Jan 19 13:48:03 2014 New Revision: 340294 URL: http://svnweb.freebsd.org/changeset/ports/340294 QAT: https://qat.redports.org/buildarchive/r340294/ Log: Add forgotten WWW update on previous commit. Approved by: flo (mentor, implicit) Modified: head/games/linux-enemyterritory-omni-bot/pkg-descr Modified: head/games/linux-enemyterritory-omni-bot/pkg-descr ============================================================================== --- head/games/linux-enemyterritory-omni-bot/pkg-descr Sun Jan 19 13:47:56 2014 (r340293) +++ head/games/linux-enemyterritory-omni-bot/pkg-descr Sun Jan 19 13:48:03 2014 (r340294) @@ -1,4 +1,4 @@ Omni-Bot is an Enemy Territory modification providing computer controlled players (bots). -WWW: http://www.omni-bot.com/ +WWW: http://omni-bot.invisionzone.com/ From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:48:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1471D7A; Sun, 19 Jan 2014 13:48:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A3F6B1E66; Sun, 19 Jan 2014 13:48:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDmTi2028777; Sun, 19 Jan 2014 13:48:29 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDmTpR028776; Sun, 19 Jan 2014 13:48:29 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191348.s0JDmTpR028776@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 13:48:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340295 - head/audio/bmp-flac X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:48:29 -0000 Author: miwi Date: Sun Jan 19 13:48:29 2014 New Revision: 340295 URL: http://svnweb.freebsd.org/changeset/ports/340295 QAT: https://qat.redports.org/buildarchive/r340295/ Log: - Fix build with clang PR: 185512 Submitted by: ports fury Modified: head/audio/bmp-flac/Makefile Modified: head/audio/bmp-flac/Makefile ============================================================================== --- head/audio/bmp-flac/Makefile Sun Jan 19 13:48:03 2014 (r340294) +++ head/audio/bmp-flac/Makefile Sun Jan 19 13:48:29 2014 (r340295) @@ -12,22 +12,33 @@ DISTNAME= ${PORTNAME}-CVS-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= FLAC input plugin for beep-media-player -LIB_DEPENDS= libbeep.so:${PORTSDIR}/multimedia/beep-media-player \ - libFLAC.so:${PORTSDIR}/audio/flac +LICENSE= GPLv2 -PLIST_FILES= lib/bmp/Input/libbmp-flac.so +LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac \ + libbeep.so:${PORTSDIR}/multimedia/beep-media-player -USES= iconv pkgconfig USE_BZIP2= yes +USES= iconv pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= ${ICONV_CONFIGURE_ARG} \ --with-ogg="${LOCALBASE}" \ --with-xmms-prefix="${LOCALBASE}" - MAKEFILE= ${FILESDIR}/Makefile +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +PLIST_FILES= lib/bmp/Input/libbmp-flac.so + +.include + +.if ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif + post-patch: - @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + '/xtra_stdcpp/s|-lstdc++||' ${WRKSRC}/configure # "obj" is magic to our make(1) # make sure we get the new includes from ${LOCALBASE}/include/FLAC @@ -38,12 +49,7 @@ post-configure: # This is to avoid libtool running ldconfig -m ${LOCALBASE}/lib/bmp/Input do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/bmp/Input - ${INSTALL_LIB} ${WRKSRC}/src/plugin_bmp/.libs/libbmp-flac.so ${STAGEDIR}${PREFIX}/lib/bmp/Input - -.include - -.if ${ARCH} == "sparc64" -BROKEN= Does not compile with GCC 4.2 -.endif + (cd ${WRKSRC}/src/plugin_bmp/.libs && ${INSTALL_LIB} libbmp-flac.so \ + ${STAGEDIR}${PREFIX}/lib/bmp/Input) .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:49:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF2B9E8E; Sun, 19 Jan 2014 13:49:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BB4FD1E75; Sun, 19 Jan 2014 13:49:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDnKTh028996; Sun, 19 Jan 2014 13:49:20 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDnKvN028995; Sun, 19 Jan 2014 13:49:20 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191349.s0JDnKvN028995@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 13:49:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340296 - head/emulators/tuxnes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:49:20 -0000 Author: miwi Date: Sun Jan 19 13:49:20 2014 New Revision: 340296 URL: http://svnweb.freebsd.org/changeset/ports/340296 QAT: https://qat.redports.org/buildarchive/r340296/ Log: - Fix build with clang - Add LICENSE - Add DESKTOP_ENTRIES PR: 185310 Submitted by: Ports Fury Modified: head/emulators/tuxnes/Makefile (contents, props changed) Modified: head/emulators/tuxnes/Makefile ============================================================================== --- head/emulators/tuxnes/Makefile Sun Jan 19 13:48:29 2014 (r340295) +++ head/emulators/tuxnes/Makefile Sun Jan 19 13:49:20 2014 (r340296) @@ -3,21 +3,40 @@ PORTNAME= tuxnes PORTVERSION= 0.75 -PORTREVISION= 4 +PORTREVISION= 6 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/TuxNES/TuxNES%20v${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= A Nintendo Entertainment System 8-bit emulator +COMMENT= Nintendo Entertainment System 8-bit emulator + +LICENSE= GPLv2 ONLY_FOR_ARCHS= i386 ONLY_FOR_ARCHS_REASON= uses i386 assembly code +USES= compiler gmake USE_XORG= x11 ice sm xext xpm -USE_GMAKE= yes +USE_BINUTILS= yes GNU_CONFIGURE= yes -PLIST_FILES= bin/romfixer bin/tuxnes +PLIST_FILES= bin/romfixer bin/tuxnes share/pixmaps/tuxnes.xpm + +DESKTOP_ENTRIES="TuxNES" "" "${PREFIX}/share/pixmaps/tuxnes.xpm" \ + "${PORTNAME}" "" "" + +.include + +.if ${COMPILER_TYPE} == "clang" +CPPFLAGS+= -no-integrated-as +.endif + +post-patch: + @${REINPLACE_CMD} -e \ + 's|^CFLAGS=|#CFLAGS=|' ${WRKSRC}/configure + +post-install: + (cd ${WRKSRC} && ${INSTALL_DATA} tuxnes.xpm \ + ${STAGEDIR}${PREFIX}/share/pixmaps) -NO_STAGE= yes -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:50:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 88887FA0; Sun, 19 Jan 2014 13:50:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 69AD51E82; Sun, 19 Jan 2014 13:50:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDo6lW029300; Sun, 19 Jan 2014 13:50:06 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDo5Ma029296; Sun, 19 Jan 2014 13:50:05 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191350.s0JDo5Ma029296@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 13:50:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340297 - in head/games/species: . 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.17 Precedence: list List-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, 19 Jan 2014 13:50:06 -0000 Author: miwi Date: Sun Jan 19 13:50:05 2014 New Revision: 340297 URL: http://svnweb.freebsd.org/changeset/ports/340297 QAT: https://qat.redports.org/buildarchive/r340297/ Log: - FIx build with clang - Support CXXFLAGS properly - Support COPYTREE_SHARE - Add LICENSE PR: 185332 Submitted by: ports fury Modified: head/games/species/Makefile head/games/species/files/patch-Makefile (contents, props changed) head/games/species/files/patch-main.cpp Modified: head/games/species/Makefile ============================================================================== --- head/games/species/Makefile Sun Jan 19 13:49:20 2014 (r340296) +++ head/games/species/Makefile Sun Jan 19 13:50:05 2014 (r340297) @@ -3,14 +3,16 @@ PORTNAME= species PORTVERSION= 1.2d +PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= alepulver +MASTER_SITES= LOCAL/alepulver DISTNAME= redcoder MAINTAINER= ports@FreeBSD.org COMMENT= Corewars evolver - generates warriors using genetic algorithms +LICENSE= GPLv1 # (or later) + USE_BZIP2= yes USES= gmake dos2unix WRKSRC= ${WRKDIR}/${PORTNAME} @@ -25,11 +27,17 @@ VISITOOL_ALL_TARGET= all visitool .include +.if empty(PORT_OPTIONS:MVISITOOL) +MAKE_ENV+= WX_CONFIG="${TRUE}" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${DATADIR} cd ${WRKSRC} && ${INSTALL_DATA} koen.* species.ini *.rc ${STAGEDIR}${DATADIR} - cd ${WRKSRC} && ${CP} -r bench evolver_hill wilfiz ${STAGEDIR}${DATADIR} +.for i in bench evolver_hill wilfiz + @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${i} ${STAGEDIR}${DATADIR}) +.endfor .if ${PORT_OPTIONS:MVISITOOL} ${INSTALL_PROGRAM} ${WRKSRC}/visitool ${STAGEDIR}${PREFIX}/bin/${PORTNAME}-visitool .endif Modified: head/games/species/files/patch-Makefile ============================================================================== --- head/games/species/files/patch-Makefile Sun Jan 19 13:49:20 2014 (r340296) +++ head/games/species/files/patch-Makefile Sun Jan 19 13:50:05 2014 (r340297) @@ -1,6 +1,6 @@ --- ./Makefile.orig Sun Feb 22 03:54:24 2004 +++ ./Makefile Wed Jan 16 18:29:09 2008 -@@ -1,8 +1,8 @@ +@@ -1,22 +1,22 @@ # makefile for species -CC = gcc @@ -10,9 +10,11 @@ +CPP = $(CXX) +LD = $(CXX) - OPT = -O4 +-OPT = -O4 ++#OPT = -O4 DBG = -@@ -11,12 +11,12 @@ + # Recommended extra options for gcc: + #OPT += -fomit-frame-pointer -fforce-addr -finline-functions -funroll-loops #OPT += -mcpu=i686 -march=i686 #DBG += -W -Wall -pedantic -ansi Modified: head/games/species/files/patch-main.cpp ============================================================================== --- head/games/species/files/patch-main.cpp Sun Jan 19 13:49:20 2014 (r340296) +++ head/games/species/files/patch-main.cpp Sun Jan 19 13:50:05 2014 (r340297) @@ -1,11 +1,11 @@ ---- ./main.cpp.orig 2013-11-10 23:14:27.000000000 -0200 -+++ ./main.cpp 2013-11-10 23:14:37.000000000 -0200 +--- main.cpp.orig ++++ main.cpp @@ -29,7 +29,7 @@ /***** main program entry point ********************/ -int main(int /*argc*/,char /***args*/) { -+int main(int /*argc*/,char ** /*args*/) { ++int main(int /*argc*/,char **/*args*/) { CKingdom kingdom; #ifndef _WIN32 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:51:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D2A3D279; Sun, 19 Jan 2014 13:51:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BEE851EE4; Sun, 19 Jan 2014 13:51:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDpDco031830; Sun, 19 Jan 2014 13:51:13 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDpDf8031826; Sun, 19 Jan 2014 13:51:13 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191351.s0JDpDf8031826@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 13:51:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340298 - in head/sysutils/kdirstat: . 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.17 Precedence: list List-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, 19 Jan 2014 13:51:13 -0000 Author: miwi Date: Sun Jan 19 13:51:13 2014 New Revision: 340298 URL: http://svnweb.freebsd.org/changeset/ports/340298 QAT: https://qat.redports.org/buildarchive/r340298/ Log: - Stage support - Fix build with clang PR: 185333 Submitted by: ports fury Added: head/sysutils/kdirstat/files/ head/sysutils/kdirstat/files/patch-src__k4dirstat.cpp (contents, props changed) Modified: head/sysutils/kdirstat/Makefile Modified: head/sysutils/kdirstat/Makefile ============================================================================== --- head/sysutils/kdirstat/Makefile Sun Jan 19 13:50:05 2014 (r340297) +++ head/sysutils/kdirstat/Makefile Sun Jan 19 13:51:13 2014 (r340298) @@ -20,7 +20,6 @@ USE_KDE4= automoc4 kdelibs kdeprefix lib USE_QT4= moc_build qmake_build rcc_build uic_build INSTALLS_ICONS= yes -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ '/^Categories/s|=.*|=Qt;KDE;Utility;|' \ @@ -30,6 +29,6 @@ post-patch: ${WRKSRC}/src/kdirreadjob.cpp post-install: - @${LN} -sf k4dirstat ${PREFIX}/bin/kdirstat + @${LN} -sf k4dirstat ${STAGEDIR}${PREFIX}/bin/kdirstat .include Added: head/sysutils/kdirstat/files/patch-src__k4dirstat.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/kdirstat/files/patch-src__k4dirstat.cpp Sun Jan 19 13:51:13 2014 (r340298) @@ -0,0 +1,10 @@ +--- src/k4dirstat.cpp.orig ++++ src/k4dirstat.cpp +@@ -14,6 +14,7 @@ + //#include "k4dirstatview.h" + #include "settings.h" + ++#include + #include + #include + #include \ From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 13:55:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3310556B; Sun, 19 Jan 2014 13:55:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 139291F0A; Sun, 19 Jan 2014 13:55:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JDtv8l033105; Sun, 19 Jan 2014 13:55:57 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JDtvad033103; Sun, 19 Jan 2014 13:55:57 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401191355.s0JDtvad033103@svn.freebsd.org> From: Marcus von Appen Date: Sun, 19 Jan 2014 13:55:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340299 - head/devel/py-robotframework-selenium2library X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 13:55:58 -0000 Author: mva Date: Sun Jan 19 13:55:57 2014 New Revision: 340299 URL: http://svnweb.freebsd.org/changeset/ports/340299 QAT: https://qat.redports.org/buildarchive/r340299/ Log: - Update version 1.4.0 to version 1.5.0 - Convert to PYDISTUTILS_AUTOPLIST - Convert deprecated USE_PYDISTUTILS=easy_install to yes Changes made within the 1.5 release include ... - Added new 'Create Webdriver' keyword to allow greater control of local WebDrivers, such as setting a proxy or using Chrome options. - Added support for Safari Browser. - Copy Desired Capabilities before modifying to prevent affecting future sesions. - Fixed Mouse Up keyword attempting to click and hold one more time before release. - Refixed issue with parsing desired capabilities. - Fixed compatibility with RobotFramework v2.8.1 - Modified how internal tests are run and ignore known browser issues. Known Issues: - There is currently an issue with Firefox and 'Click Element At Coordinates' (added in Selenium2Library 1.3.0) does not currently work at Firefox. If this keyword is used in Firefox it will behave in same manner as the Click Element keyword (which always click in the center of an element). PR: ports/185443 Submitted by: Vladimir Chukharev (maintainer) Deleted: head/devel/py-robotframework-selenium2library/pkg-plist Modified: head/devel/py-robotframework-selenium2library/Makefile (contents, props changed) head/devel/py-robotframework-selenium2library/distinfo (contents, props changed) Modified: head/devel/py-robotframework-selenium2library/Makefile ============================================================================== --- head/devel/py-robotframework-selenium2library/Makefile Sun Jan 19 13:51:13 2014 (r340298) +++ head/devel/py-robotframework-selenium2library/Makefile Sun Jan 19 13:55:57 2014 (r340299) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= robotframework-selenium2library -PORTVERSION= 1.4.0 +PORTVERSION= 1.5.0 CATEGORIES= devel www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,8 +15,8 @@ LICENSE= APACHE20 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}robotframework>=2.7.5:${PORTSDIR}/devel/py-robotframework \ ${PYTHON_PKGNAMEPREFIX}decorator>=3.4.0:${PORTSDIR}/devel/py-decorator -USE_PYTHON= 2 -USE_PYDISTUTILS= easy_install +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/py-robotframework-selenium2library/distinfo ============================================================================== --- head/devel/py-robotframework-selenium2library/distinfo Sun Jan 19 13:51:13 2014 (r340298) +++ head/devel/py-robotframework-selenium2library/distinfo Sun Jan 19 13:55:57 2014 (r340299) @@ -1,2 +1,2 @@ -SHA256 (robotframework-selenium2library-1.4.0.tar.gz) = 028729f29a3f3c7ae2fd71020a584da6a83a7b8c1db75dd3a5e4f8c87297ffe5 -SIZE (robotframework-selenium2library-1.4.0.tar.gz) = 215011 +SHA256 (robotframework-selenium2library-1.5.0.tar.gz) = e173cb9a6cc8b831ec9a96a702ea36a450e599fd88a9c9d675581a7352565542 +SIZE (robotframework-selenium2library-1.5.0.tar.gz) = 216937 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:10:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B840584C; Sun, 19 Jan 2014 14:10:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A41B81002; Sun, 19 Jan 2014 14:10:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEAo0c040183; Sun, 19 Jan 2014 14:10:50 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEAoxh040178; Sun, 19 Jan 2014 14:10:50 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401191410.s0JEAoxh040178@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 19 Jan 2014 14:10:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340300 - head/print/qpdf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 14:10:50 -0000 Author: rakuco Date: Sun Jan 19 14:10:49 2014 New Revision: 340300 URL: http://svnweb.freebsd.org/changeset/ports/340300 QAT: https://qat.redports.org/buildarchive/r340300/ Log: Update to 5.1.1. PR: ports/185878 Submitted by: Dmitry Kazarov (maintainer) Modified: head/print/qpdf/Makefile head/print/qpdf/distinfo head/print/qpdf/pkg-plist Modified: head/print/qpdf/Makefile ============================================================================== --- head/print/qpdf/Makefile Sun Jan 19 13:55:57 2014 (r340299) +++ head/print/qpdf/Makefile Sun Jan 19 14:10:49 2014 (r340300) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qpdf -PORTVERSION= 5.0.1 +PORTVERSION= 5.1.1 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNAME}/${PORTVERSION} Modified: head/print/qpdf/distinfo ============================================================================== --- head/print/qpdf/distinfo Sun Jan 19 13:55:57 2014 (r340299) +++ head/print/qpdf/distinfo Sun Jan 19 14:10:49 2014 (r340300) @@ -1,2 +1,2 @@ -SHA256 (qpdf-5.0.1.tar.gz) = d0658a0b276ac5b811cc41edb8a4fc70d343a392aba53578df3c188f57b1efbd -SIZE (qpdf-5.0.1.tar.gz) = 7569985 +SHA256 (qpdf-5.1.1.tar.gz) = 95d355d8fa5e1c677e04d884161de94f5438bf3bdc1638498796b042bad4a726 +SIZE (qpdf-5.1.1.tar.gz) = 7662701 Modified: head/print/qpdf/pkg-plist ============================================================================== --- head/print/qpdf/pkg-plist Sun Jan 19 13:55:57 2014 (r340299) +++ head/print/qpdf/pkg-plist Sun Jan 19 14:10:49 2014 (r340300) @@ -25,12 +25,13 @@ include/qpdf/QPDFWriter.hh include/qpdf/QPDFXRefEntry.hh include/qpdf/QTC.hh include/qpdf/QUtil.hh +include/qpdf/RandomDataProvider.hh include/qpdf/Types.h include/qpdf/qpdf-c.h lib/libqpdf.a lib/libqpdf.la lib/libqpdf.so -lib/libqpdf.so.13 +lib/libqpdf.so.14 libdata/pkgconfig/libqpdf.pc man/man1/fix-qdf.1.gz man/man1/qpdf.1.gz From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:18:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF8EFA24; Sun, 19 Jan 2014 14:18:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D79521060; Sun, 19 Jan 2014 14:18:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEIICe041988; Sun, 19 Jan 2014 14:18:18 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEIIUT041985; Sun, 19 Jan 2014 14:18:18 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401191418.s0JEIIUT041985@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 19 Jan 2014 14:18:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340301 - head/news/nzbget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 14:18:19 -0000 Author: rakuco Date: Sun Jan 19 14:18:17 2014 New Revision: 340301 URL: http://svnweb.freebsd.org/changeset/ports/340301 QAT: https://qat.redports.org/buildarchive/r340301/ Log: Update to 12.0. PR: ports/185750 Submitted by: feld@ Approved by: Jeff Burchell (maintainer) Modified: head/news/nzbget/Makefile head/news/nzbget/distinfo head/news/nzbget/pkg-plist Modified: head/news/nzbget/Makefile ============================================================================== --- head/news/nzbget/Makefile Sun Jan 19 14:10:49 2014 (r340300) +++ head/news/nzbget/Makefile Sun Jan 19 14:18:17 2014 (r340301) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= nzbget -PORTVERSION= 11.0 -PORTREVISION= 1 +PORTVERSION= 12.0 CATEGORIES= news MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION} Modified: head/news/nzbget/distinfo ============================================================================== --- head/news/nzbget/distinfo Sun Jan 19 14:10:49 2014 (r340300) +++ head/news/nzbget/distinfo Sun Jan 19 14:18:17 2014 (r340301) @@ -1,2 +1,2 @@ -SHA256 (nzbget-11.0.tar.gz) = 27abacf6c604969dc987b7e50689caef22a65dbb1690b020b0c6d147ae123b3d -SIZE (nzbget-11.0.tar.gz) = 694197 +SHA256 (nzbget-12.0.tar.gz) = 023c4e3b9c7e920d9ea72b60135b438ce13543454f79984c06fd15365b9a882e +SIZE (nzbget-12.0.tar.gz) = 1114126 Modified: head/news/nzbget/pkg-plist ============================================================================== --- head/news/nzbget/pkg-plist Sun Jan 19 14:10:49 2014 (r340300) +++ head/news/nzbget/pkg-plist Sun Jan 19 14:18:17 2014 (r340301) @@ -5,6 +5,7 @@ sbin/nzbgetd %%DATADIR%%/webui/downloads.js %%DATADIR%%/webui/edit.js %%DATADIR%%/webui/fasttable.js +%%DATADIR%%/webui/feed.js %%DATADIR%%/webui/history.js %%DATADIR%%/webui/img/download-anim-green-2x.png %%DATADIR%%/webui/img/download-anim-orange-2x.png From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:22:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 150B3C41; Sun, 19 Jan 2014 14:22:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F404210D8; Sun, 19 Jan 2014 14:22:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEM912045112; Sun, 19 Jan 2014 14:22:09 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEM91t045104; Sun, 19 Jan 2014 14:22:09 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191422.s0JEM91t045104@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 14:22:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340302 - in head/x11-toolkits/nucleo: . 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.17 Precedence: list List-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, 19 Jan 2014 14:22:10 -0000 Author: miwi Date: Sun Jan 19 14:22:08 2014 New Revision: 340302 URL: http://svnweb.freebsd.org/changeset/ports/340302 QAT: https://qat.redports.org/buildarchive/r340302/ Log: - Fix build with clang PR: 185706 Submitted by: ports fury Added: head/x11-toolkits/nucleo/files/patch-nucleo__gl__scenegraph__sgNode.cxx (contents, props changed) head/x11-toolkits/nucleo/files/patch-nucleo__plugins__ffmpeg__ffmpegImageSink.cxx (contents, props changed) head/x11-toolkits/nucleo/files/patch-nucleo__plugins__ffmpeg__ffmpegImageSource.cxx (contents, props changed) Modified: head/x11-toolkits/nucleo/Makefile head/x11-toolkits/nucleo/pkg-plist (contents, props changed) Modified: head/x11-toolkits/nucleo/Makefile ============================================================================== --- head/x11-toolkits/nucleo/Makefile Sun Jan 19 14:18:17 2014 (r340301) +++ head/x11-toolkits/nucleo/Makefile Sun Jan 19 14:22:08 2014 (r340302) @@ -12,72 +12,68 @@ COMMENT= Toolkit to explore video and hu LICENSE= LGPL21 -LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png \ - exif:${PORTSDIR}/graphics/libexif +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libexif.so:${PORTSDIR}/graphics/libexif \ + libpng15.so:${PORTSDIR}/graphics/png \ + libfreetype.so:${PORTSDIR}/print/freetype2 USE_BZIP2= yes USES= gmake pkgconfig USE_GL= glu GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS= --without-opencv USE_LDCONFIG= yes -OPTIONS_DEFINE= GNUTLS DNSSD FFMPEG QT4 GD +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -DNSSD_DESC= DNS-SD support -FFMPEG_DESC= FFmpeg plugin -QT4_DESC= Qt4 plugin -GD_DESC= GD plugin +OPTIONS_DEFINE= FFMPEG GD GNUTLS QT4 +OPTIONS_RADIO= DNSSD +OPTIONS_RADIO_DNSSD= AVAHI MDNSRESPONDER +OPTIONS_SUB= yes + +AVAHI_BUILD_DEPENDS= avahi-libdns>0:${PORTSDIR}/net/avahi-libdns +AVAHI_LIB_DEPENDS= libdns_sd.so:${PORTSDIR}/net/avahi-libdns +AVAHI_CPPFLAGS= -I${LOCALBASE}/include/avahi-compat-libdns_sd +DNSSD_DESC= DNS-SD support +FFMPEG_DESC= FFmpeg plugin +FFMPEG_LIB_DEPENDS= libavformat.so:${PORTSDIR}/multimedia/ffmpeg +FFMPEG_CONFIGURE_WITH= ffmpeg +GD_DESC= GD plugin +GD_LIB_DEPENDS= libgd.so:${PORTSDIR}/graphics/gd +QT4_DESC= Qt4 plugin +GD_CONFIGURE_WITH= gd +GNUTLS_LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls +GNUTLS_CONFIGURE_WITH= gnutls +MDNSRESPONDER_BUILD_DEPENDS=\ + mDNSResponder>0:${PORTSDIR}/net/mDNSResponder +MDNSRESPONDER_LIB_DEPENDS=\ + libdns_sd.so:${PORTSDIR}/net/mDNSResponder +QT4_USE= QT4=moc_build,corelib +QT4_CONFIGURE_WITH= qt +QT4_MAKE_ARGS= QT4MOC="${MOC}" -NO_STAGE= yes -.include +.include -.if ${ARCH} == "powerpc" && ${OSVERSION} > 900000 -BROKEN= Does not compile on powerpc-9 +.if ! ${PORT_OPTIONS:MAVAHI} && ! ${PORT_OPTIONS:MMDNSRESPONDER} +CONFIGURE_ARGS+= --without-dns-sd .endif -.if ${PORT_OPTIONS:MGNUTLS} -LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls -.else -CONFIGURE_ARGS+= --without-gnutls +.if ${PORT_OPTIONS:MQT4} +QT_NONSTANDARD= yes .endif -.if ${PORT_OPTIONS:MDNSSD} -. if exists(${LOCALBASE}/include/avahi-compat-libdns_sd/dns_sd.h) -LIB_DEPENDS+= dns_sd:${PORTSDIR}/net/avahi-libdns -. else -LIB_DEPENDS+= dns_sd:${PORTSDIR}/net/mDNSResponder -. endif -.else -CONFIGURE_ARGS+= --without-dns-sd -.endif +.include -.if ${PORT_OPTIONS:MFFMPEG} -LIB_DEPENDS+= avformat:${PORTSDIR}/multimedia/ffmpeg -PLIST_SUB+= FFMPEG="" -.else -CONFIGURE_ARGS+= --without-ffmpeg -PLIST_SUB+= FFMPEG="@comment " +.if ${ARCH} == "powerpc" && ${OSVERSION} > 900000 +BROKEN= Does not compile on powerpc-9 .endif -.if ${PORT_OPTIONS:MQT4} -USE_QT4= moc_build corelib -MAKE_ARGS+= QT4MOC=${LOCALBASE}/bin/moc-qt4 -PLIST_SUB+= QT4="" -.else -CONFIGURE_ARGS+= --without-qt -PLIST_SUB+= QT4="@comment " -.endif +post-patch: + @${REINPLACE_CMD} -e \ + 's|-lpthread|-pthread|' ${WRKSRC}/configure -.if ${PORT_OPTIONS:MGD} -LIB_DEPENDS+= gd:${PORTSDIR}/graphics/gd -PLIST_SUB+= GD="" -.else -CONFIGURE_ARGS+= --without-gd -PLIST_SUB+= GD="@comment " -.endif +post-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/nucleo .include Added: head/x11-toolkits/nucleo/files/patch-nucleo__gl__scenegraph__sgNode.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/nucleo/files/patch-nucleo__gl__scenegraph__sgNode.cxx Sun Jan 19 14:22:08 2014 (r340302) @@ -0,0 +1,14 @@ +--- nucleo/gl/scenegraph/sgNode.cxx.orig ++++ nucleo/gl/scenegraph/sgNode.cxx +@@ -16,7 +16,10 @@ + #include + #include + +-#if defined (HAVE_TR1_UNORDERED_MAP) ++#if defined (_LIBCPP_VERSION) ++#include ++typedef std::unordered_map sgNodeMap; ++#elif defined (HAVE_TR1_UNORDERED_MAP) + #include + typedef std::tr1::unordered_map sgNodeMap; + #elif defined (HAVE_EXT_HASH_MAP) Added: head/x11-toolkits/nucleo/files/patch-nucleo__plugins__ffmpeg__ffmpegImageSink.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/nucleo/files/patch-nucleo__plugins__ffmpeg__ffmpegImageSink.cxx Sun Jan 19 14:22:08 2014 (r340302) @@ -0,0 +1,97 @@ +--- nucleo/plugins/ffmpeg/ffmpegImageSink.cxx.orig ++++ nucleo/plugins/ffmpeg/ffmpegImageSink.cxx +@@ -118,11 +118,11 @@ + + output_format = 0 ; + if (uri.scheme=="mpegts-udp") { +- output_format = guess_format("mpegts", NULL, NULL) ; ++ output_format = av_guess_format("mpegts", NULL, NULL) ; + } else { + filename = uri.opaque!="" ? uri.opaque : uri.path ; +- if (guessFormat) output_format = guess_format(NULL, filename.c_str(), NULL) ; +- if (!output_format) output_format = guess_format(format.c_str(), NULL, NULL) ; ++ if (guessFormat) output_format = av_guess_format(NULL, filename.c_str(), NULL) ; ++ if (!output_format) output_format = av_guess_format(format.c_str(), NULL, NULL) ; + } + + std::string message ; +@@ -190,7 +190,7 @@ + + AVCodecContext *codec_context = vstream->codec ; + codec_context->codec_id = output_format->video_codec ; +- codec_context->codec_type = CODEC_TYPE_VIDEO ; ++ codec_context->codec_type = AVMEDIA_TYPE_VIDEO ; + codec_context->pix_fmt = PIX_FMT_YUV420P ; + codec_context->width = img->getWidth() ; // must be a multiple of two + codec_context->height = img->getHeight() ; // must be a multiple of two +@@ -210,12 +210,7 @@ + || !strcmp(format_context->oformat->name, "3gp")) + codec_context->flags |= CODEC_FLAG_GLOBAL_HEADER ; + +- if (av_set_parameters(format_context, NULL) < 0) { +- std::cerr << "ffmpegImageSink: invalid output format parameters" << std::endl ; +- return false ; +- } +- +- dump_format(format_context, 0, filename.c_str(), 1) ; // FIXME: for debug only ++ av_dump_format(format_context, 0, filename.c_str(), 1) ; // FIXME: for debug only + + // ------------------ + +@@ -225,7 +220,7 @@ + return false ; + } + +- if (avcodec_open(codec_context, codec) < 0) { ++ if (avcodec_open2(codec_context, codec, NULL) < 0) { + std::cerr << "ffmpegImageSink: could not open codec" << std::endl ; + vstream->codec = 0 ; + return false ; +@@ -235,7 +230,7 @@ + + if (filename!="") { + sender = 0 ; +- if (url_fopen(&format_context->pb, filename.c_str(), URL_WRONLY) < 0) { ++ if (avio_open(&format_context->pb, filename.c_str(), AVIO_FLAG_WRITE) < 0) { + std::cerr << "ffmpegImageSink: could not open " << filename << std::endl ; + return false ; + } +@@ -245,17 +240,17 @@ + int port = uri.port ; + if (!port) port = 1234 ; + sender = new UdpSender(uri.host.c_str(), port) ; +- if (init_put_byte(format_context->pb, buffer, buffer_size, ++ if (avio_alloc_context(buffer, buffer_size, + 1, (void *)this, + 0, udp_callback, 0) < 0) { + std::cerr << "ffmpegImageSink: init_put_byte failed" << std::endl ; + return false ; + } +- format_context->pb->is_streamed = 1 ; // no seek ++ format_context->pb->seekable = 0 ; // no seek + format_context->pb->max_packet_size = buffer_size ; + } + +- av_write_header(format_context) ; ++ avformat_write_header(format_context, NULL) ; + + video_outbuf_size = 256*1024 ; // FIXME ? + video_outbuf = new uint8_t [video_outbuf_size] ; +@@ -346,7 +341,7 @@ + pkt.size = out_size ; + if (cctx->coded_frame) { + pkt.pts = pkt.dts = pts ; +- if (cctx->coded_frame->key_frame) pkt.flags |= PKT_FLAG_KEY ; ++ if (cctx->coded_frame->key_frame) pkt.flags |= AV_PKT_FLAG_KEY ; + } + if (av_write_frame(format_context, &pkt) != 0) { + // std::cerr << "ffmpegImageSink: error while writing video frame" << std::endl ; +@@ -372,7 +367,7 @@ + if (vstream->codec) { + avcodec_close(vstream->codec) ; + av_write_trailer(format_context) ; +- if (!sender) url_fclose(format_context->pb) ; ++ if (!sender) avio_close(format_context->pb) ; + } + av_freep(&vstream) ; + } Added: head/x11-toolkits/nucleo/files/patch-nucleo__plugins__ffmpeg__ffmpegImageSource.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/nucleo/files/patch-nucleo__plugins__ffmpeg__ffmpegImageSource.cxx Sun Jan 19 14:22:08 2014 (r340302) @@ -0,0 +1,48 @@ +--- nucleo/plugins/ffmpeg/ffmpegImageSource.cxx.orig ++++ nucleo/plugins/ffmpeg/ffmpegImageSource.cxx +@@ -47,23 +47,23 @@ + + bool + ffmpegImageSource::start(void) { +- int ret = av_open_input_file(&fctx, filename.c_str(), 0, 0, 0); ++ int ret = avformat_open_input(&fctx, filename.c_str(), 0, 0); + if (ret<0) { + std::cerr << "ffmpegImageSource: failed to open " << filename << " (" << ret << ")" << std::endl ; + return false ; + } + +- ret = av_find_stream_info(fctx) ; ++ ret = avformat_find_stream_info(fctx, NULL) ; + if (ret<0) { + std::cerr << "ffmpegImageSource: failed to find codec parameters for " << filename << " (" << ret << ")" << std::endl ; + return false ; + } + +- dump_format(fctx, 1, filename.c_str(), 0) ; ++ av_dump_format(fctx, 1, filename.c_str(), 0) ; + + bool found_video_stream = false ; + for (unsigned int i=0; inb_streams; ++i) { +- if (fctx->streams[i]->codec->codec_type==CODEC_TYPE_VIDEO) { ++ if (fctx->streams[i]->codec->codec_type==AVMEDIA_TYPE_VIDEO) { + video_stream = i ; + found_video_stream = true ; + } else +@@ -86,7 +86,7 @@ + return false ; + } + +- ret = avcodec_open(cctx, codec); ++ ret = avcodec_open2(cctx, codec, NULL); + if (ret<0) { + std::cerr << "ffmpegImageSource: unable to open codec" << std::endl ; + return false ; +@@ -123,7 +123,7 @@ + #endif + + int got_picture = 0 ; +- avcodec_decode_video(cctx, &frame, &got_picture, packet.data, packet.size) ; ++ avcodec_decode_video2(cctx, &frame, &got_picture, &packet) ; + av_free_packet(&packet) ; + if (!got_picture) continue ; + Modified: head/x11-toolkits/nucleo/pkg-plist ============================================================================== --- head/x11-toolkits/nucleo/pkg-plist Sun Jan 19 14:18:17 2014 (r340301) +++ head/x11-toolkits/nucleo/pkg-plist Sun Jan 19 14:22:08 2014 (r340302) @@ -11,7 +11,6 @@ include/nucleo/core/TimeKeeper.H include/nucleo/core/TimeStamp.H include/nucleo/core/URI.H include/nucleo/core/UUID.H -@dirrm include/nucleo/core include/nucleo/gl/glIncludes.H include/nucleo/gl/glUtils.H include/nucleo/gl/scenegraph/sgClipper.H @@ -29,15 +28,8 @@ include/nucleo/gl/window/_macos2keysym.H include/nucleo/gl/window/glWindow.H include/nucleo/gl/window/glWindow_GLX.H include/nucleo/gl/window/keysym.H -@dirrm include/nucleo/gl/window -@dirrm include/nucleo/gl/texture -@dirrm include/nucleo/gl/text -@dirrm include/nucleo/gl/shading -@dirrm include/nucleo/gl/scenegraph -@dirrm include/nucleo/gl include/nucleo/helpers/OpenCV.H include/nucleo/helpers/Phone.H -@dirrm include/nucleo/helpers include/nucleo/image/Image.H include/nucleo/image/ImageBridge.H include/nucleo/image/RegionOfInterest.H @@ -79,17 +71,6 @@ include/nucleo/image/source/nudpcImageSo include/nucleo/image/source/nudppImageSource.H include/nucleo/image/source/serverpushImageSource.H include/nucleo/image/source/vssImageSource.H -@dirrm include/nucleo/image/source -@dirrm include/nucleo/image/sink -@dirrm include/nucleo/image/processing/noise -@dirrm include/nucleo/image/processing/gamma -@dirrm include/nucleo/image/processing/difference -@dirrm include/nucleo/image/processing/convolution -@dirrm include/nucleo/image/processing/chromakeying -@dirrm include/nucleo/image/processing/basic -@dirrm include/nucleo/image/processing -@dirrm include/nucleo/image/encoding -@dirrm include/nucleo/image include/nucleo/network/NetworkUtils.H include/nucleo/network/dnssd/DNSService.H include/nucleo/network/dnssd/DNSServiceAnnouncer.H @@ -109,18 +90,10 @@ include/nucleo/network/udp/UdpReceiver.H include/nucleo/network/udp/UdpSender.H include/nucleo/network/udp/UdpSocket.H include/nucleo/network/xmpp/XmppConnection.H -@dirrm include/nucleo/network/xmpp -@dirrm include/nucleo/network/udp -@dirrm include/nucleo/network/tcp -@dirrm include/nucleo/network/http -@dirrm include/nucleo/network/dnssd -@dirrm include/nucleo/network include/nucleo/nucleo.H -%%QT4%%include/nucleo/plugins/qt/qtReactiveEngine.H %%QT4%%include/nucleo/plugins/qt/qtFileKeeper.H +%%QT4%%include/nucleo/plugins/qt/qtReactiveEngine.H %%QT4%%include/nucleo/plugins/qt/qtTimeKeeper.H -%%QT4%%@dirrm include/nucleo/plugins/qt -%%QT4%%@dirrm include/nucleo/plugins include/nucleo/utils/AppUtils.H include/nucleo/utils/Base64.H include/nucleo/utils/ByteOrder.H @@ -130,22 +103,19 @@ include/nucleo/utils/MD5.H include/nucleo/utils/SignalUtils.H include/nucleo/utils/StringUtils.H include/nucleo/utils/TimeUtils.H -@dirrm include/nucleo/utils -include/nucleo/xml/XmlText.H -include/nucleo/xml/XmlStructure.H include/nucleo/xml/XmlParser.H -@dirrm include/nucleo/xml -@dirrm include/nucleo +include/nucleo/xml/XmlStructure.H +include/nucleo/xml/XmlText.H lib/libNucleo.la lib/libNucleo.so lib/libNucleo.so.0 +@exec mkdir -p %D/lib/nucleo %%FFMPEG%%lib/nucleo/nPffmpeg.la %%FFMPEG%%lib/nucleo/nPffmpeg.so %%GD%%lib/nucleo/nPgd.la %%GD%%lib/nucleo/nPgd.so %%QT4%%lib/nucleo/nPqt.la %%QT4%%lib/nucleo/nPqt.so -@dirrmtry lib/nucleo libdata/pkgconfig/nucleo.pc %%DATADIR%%/Info.plist.tmpl %%DATADIR%%/fonts/Vera.ttf @@ -161,5 +131,36 @@ libdata/pkgconfig/nucleo.pc %%DATADIR%%/nucleo.icns %%DATADIR%%/nucleo.pdf %%DATADIR%%/plugin-list -@dirrm share/nucleo/fonts -@dirrm share/nucleo +@dirrm %%DATADIR%%/fonts +@dirrm %%DATADIR%% +@dirrmtry lib/nucleo +@dirrm include/nucleo/xml +@dirrm include/nucleo/utils +%%QT4%%@dirrm include/nucleo/plugins/qt +%%QT4%%@dirrm include/nucleo/plugins +@dirrm include/nucleo/network/xmpp +@dirrm include/nucleo/network/udp +@dirrm include/nucleo/network/tcp +@dirrm include/nucleo/network/http +@dirrm include/nucleo/network/dnssd +@dirrm include/nucleo/network +@dirrm include/nucleo/image/source +@dirrm include/nucleo/image/sink +@dirrm include/nucleo/image/processing/noise +@dirrm include/nucleo/image/processing/gamma +@dirrm include/nucleo/image/processing/difference +@dirrm include/nucleo/image/processing/convolution +@dirrm include/nucleo/image/processing/chromakeying +@dirrm include/nucleo/image/processing/basic +@dirrm include/nucleo/image/processing +@dirrm include/nucleo/image/encoding +@dirrm include/nucleo/image +@dirrm include/nucleo/helpers +@dirrm include/nucleo/gl/window +@dirrm include/nucleo/gl/texture +@dirrm include/nucleo/gl/text +@dirrm include/nucleo/gl/shading +@dirrm include/nucleo/gl/scenegraph +@dirrm include/nucleo/gl +@dirrm include/nucleo/core +@dirrm include/nucleo From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:23:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71F94D55; Sun, 19 Jan 2014 14:23:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5CC9B10E3; Sun, 19 Jan 2014 14:23:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JENbD5045341; Sun, 19 Jan 2014 14:23:37 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JENbdD045339; Sun, 19 Jan 2014 14:23:37 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401191423.s0JENbdD045339@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 19 Jan 2014 14:23:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340303 - in head: . textproc textproc/redland-bindings-python X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 14:23:37 -0000 Author: rakuco Date: Sun Jan 19 14:23:36 2014 New Revision: 340303 URL: http://svnweb.freebsd.org/changeset/ports/340303 QAT: https://qat.redports.org/buildarchive/r340303/ Log: Remove textproc/redland-bindings-python. This port was added at a time when people could not easily enable all the bindings offered in textproc/redland-bindings using options, which has not been the case for quite a while. The same files installed by redland-bindings-python can also be installed using redland-bindings with the PYTHON option on. In fact, ever since we moved away from WITH_ redland-bindings-python has worked simply because PYTHON is a default option in the master port. PR: ports/185215 Submitted by: rakuco@ Approved by: maintainer timeout (24 days) Deleted: head/textproc/redland-bindings-python/ Modified: head/MOVED head/textproc/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Sun Jan 19 14:22:08 2014 (r340302) +++ head/MOVED Sun Jan 19 14:23:36 2014 (r340303) @@ -5380,3 +5380,4 @@ games/deng|games/doomsday|2014-01-16|Ren misc/sword17|misc/sword|2014-01-16|Has expired: use misc/sword www/suphp||2014-01-17|Has expired: Upstream dead, EOL: https://lists.marsching.com/pipermail/suphp/2013-May/002554.html databases/postgis||2014-01-17|Has expired: EOLed upstream +textproc/redland-bindings-python||2014-01-19|Use textproc/redland-bindings directly instead Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Jan 19 14:22:08 2014 (r340302) +++ head/textproc/Makefile Sun Jan 19 14:23:36 2014 (r340303) @@ -1243,7 +1243,6 @@ SUBDIR += redet SUBDIR += redland SUBDIR += redland-bindings - SUBDIR += redland-bindings-python SUBDIR += refdb SUBDIR += reflex SUBDIR += replaceit From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:24:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3095AE6E; Sun, 19 Jan 2014 14:24:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B2CC10EF; Sun, 19 Jan 2014 14:24:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEOoRC045559; Sun, 19 Jan 2014 14:24:50 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEOoLX045555; Sun, 19 Jan 2014 14:24:50 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191424.s0JEOoLX045555@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 14:24:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340304 - in head/japanese/ebview: . 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.17 Precedence: list List-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, 19 Jan 2014 14:24:51 -0000 Author: miwi Date: Sun Jan 19 14:24:49 2014 New Revision: 340304 URL: http://svnweb.freebsd.org/changeset/ports/340304 QAT: https://qat.redports.org/buildarchive/r340304/ Log: - Fix build with clang - Add License PR: 185708 Submitted by: ports fury Added: head/japanese/ebview/files/patch-data__Makefile.in (contents, props changed) head/japanese/ebview/files/patch-help__Makefile.in (contents, props changed) head/japanese/ebview/files/patch-po__Makefile.in.in (contents, props changed) Modified: head/japanese/ebview/Makefile (contents, props changed) Modified: head/japanese/ebview/Makefile ============================================================================== --- head/japanese/ebview/Makefile Sun Jan 19 14:23:36 2014 (r340303) +++ head/japanese/ebview/Makefile Sun Jan 19 14:24:49 2014 (r340304) @@ -9,12 +9,16 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Electronic Book Viewer -LIB_DEPENDS= eb:${PORTSDIR}/japanese/eb +LICENSE= GPLv2 # (or later) -CONFLICTS= ja-ebview-gtk2-* +LIB_DEPENDS= libeb.so:${PORTSDIR}/japanese/eb +OPTIONS_DEFINE= DOCS + +CONFLICTS= ja-ebview-gtk2-[0-9]* + +USES= gettext gmake USE_GNOME= imlib -USE_GMAKE= yes USE_AUTOTOOLS= autoconf MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \ AUTOHEADER="${TRUE}" @@ -22,21 +26,16 @@ MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="$ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes -.include +.include -pre-build: -.for file in src/dictheading.c - cd ${WRKSRC} && ${MV} ${file} ${file}.pre_iconv \ - && iconv -c -t ascii ${file}.pre_iconv > ${file} || ${TRUE} -.endfor +post-patch: + @${REINPLACE_CMD} -e \ + 's|// .*||' ${WRKSRC}/src/dictheading.c post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ChangeLog README - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR}) .endfor -.endif -.include +.include Added: head/japanese/ebview/files/patch-data__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/ebview/files/patch-data__Makefile.in Sun Jan 19 14:24:49 2014 (r340304) @@ -0,0 +1,19 @@ +--- data/Makefile.in.orig ++++ data/Makefile.in +@@ -46,13 +46,13 @@ + + install: + if test -r $(MKINSTALLDIRS); then \ +- $(MKINSTALLDIRS) $(packagedatadir); \ ++ $(MKINSTALLDIRS) $(DESTDIR)$(packagedatadir); \ + else \ +- $(top_srcdir)/mkinstalldirs $(packagedatadir); \ ++ $(top_srcdir)/mkinstalldirs $(DESTDIR)$(packagedatadir); \ + fi; \ + data="$(data)"; \ + for file in $$data; do \ +- $(INSTALL_DATA) $(srcdir)/$$file $(packagedatadir)/$$file; \ ++ $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(packagedatadir)/$$file; \ + done; \ + + # Define this as empty until I found a useful application. Added: head/japanese/ebview/files/patch-help__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/ebview/files/patch-help__Makefile.in Sun Jan 19 14:24:49 2014 (r340304) @@ -0,0 +1,21 @@ +--- help/Makefile.in.orig ++++ help/Makefile.in +@@ -49,15 +49,15 @@ + dir="$(dir)"; \ + for lang in $$dir; do \ + if test -r $(MKINSTALLDIRS); then \ +- $(MKINSTALLDIRS) $(packagedatadir)/help/$$lang; \ ++ $(MKINSTALLDIRS) $(DESTDIR)$(packagedatadir)/help/$$lang; \ + else \ +- $(top_srcdir)/mkinstalldirs $(packagedatadir)/help/$$lang; \ ++ $(top_srcdir)/mkinstalldirs $(DESTDIR)$(packagedatadir)/help/$$lang; \ + fi; \ + done; \ + data="$(data)"; \ + for lang in $$dir; do \ + for file in $$data; do \ +- $(INSTALL_DATA) $(srcdir)/$$lang/$$file $(packagedatadir)/help/$$lang/$$file; \ ++ $(INSTALL_DATA) $(srcdir)/$$lang/$$file $(DESTDIR)$(packagedatadir)/help/$$lang/$$file; \ + done; \ + done; \ + Added: head/japanese/ebview/files/patch-po__Makefile.in.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/ebview/files/patch-po__Makefile.in.in Sun Jan 19 14:24:49 2014 (r340304) @@ -0,0 +1,52 @@ +--- po/Makefile.in.in.orig ++++ po/Makefile.in.in +@@ -111,9 +111,9 @@ + install-data-no: all + install-data-yes: all + if test -r "$(MKINSTALLDIRS)"; then \ +- $(MKINSTALLDIRS) $(datadir); \ ++ $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \ + else \ +- $(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \ ++ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \ + fi + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ +@@ -125,27 +125,27 @@ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + dir=$$destdir/$$lang/LC_MESSAGES; \ + if test -r "$(MKINSTALLDIRS)"; then \ +- $(MKINSTALLDIRS) $$dir; \ ++ $(MKINSTALLDIRS) $(DESTDIR)$$dir; \ + else \ +- $(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \ ++ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$$dir; \ + fi; \ + if test -r $$cat; then \ +- $(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ +- echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \ ++ $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT); \ ++ echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT)"; \ + else \ +- $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ ++ $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT); \ + echo "installing $(srcdir)/$$cat as" \ +- "$$dir/$(PACKAGE)$(INSTOBJEXT)"; \ ++ "$(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT)"; \ + fi; \ + if test -r $$cat.m; then \ +- $(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ +- echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ ++ $(INSTALL_DATA) $$cat.m $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT).m; \ ++ echo "installing $$cat.m as $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ + else \ + if test -r $(srcdir)/$$cat.m ; then \ + $(INSTALL_DATA) $(srcdir)/$$cat.m \ +- $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ ++ $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT).m; \ + echo "installing $(srcdir)/$$cat as" \ +- "$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ ++ "$(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ + else \ + true; \ + fi; \ From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:25:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 645BB7B; Sun, 19 Jan 2014 14:25:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4E1B41104; Sun, 19 Jan 2014 14:25:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEPd2C045754; Sun, 19 Jan 2014 14:25:39 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEPceC045751; Sun, 19 Jan 2014 14:25:38 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191425.s0JEPceC045751@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 14:25:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340305 - in head/x11-toolkits/viewklass: . 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.17 Precedence: list List-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, 19 Jan 2014 14:25:39 -0000 Author: miwi Date: Sun Jan 19 14:25:38 2014 New Revision: 340305 URL: http://svnweb.freebsd.org/changeset/ports/340305 QAT: https://qat.redports.org/buildarchive/r340305/ Log: - Fix build with clang PR: 185708 Submitted by: ports fury Added: head/x11-toolkits/viewklass/files/ head/x11-toolkits/viewklass/files/patch-VkProgram.C (contents, props changed) Modified: head/x11-toolkits/viewklass/Makefile (contents, props changed) Modified: head/x11-toolkits/viewklass/Makefile ============================================================================== --- head/x11-toolkits/viewklass/Makefile Sun Jan 19 14:24:49 2014 (r340304) +++ head/x11-toolkits/viewklass/Makefile Sun Jan 19 14:25:38 2014 (r340305) @@ -11,15 +11,16 @@ DISTNAME= ViewKlass-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= C++ Framework for Motif -BUILD_DEPENDS= imake:${PORTSDIR}/devel/imake +LICENSE= LGPL20 # (or later) -USES= motif -GNU_CONFIGURE= yes +USES= imake:env motif +USE_AUTOTOOLS= autoconf213 -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} -e 's/^CFLAGS=/CFLAGS+=/g ; \ - s/^CXXFLAGS=/CXXFLAGS+=/g ; \ - s/-g -Wall//g' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e \ + '/^CFLAGS=/s|-g|@CFLAGS@| ; \ + /^CXXFLAGS=/s|-g|@CXXFLAGS@| ; \ + s| $$(exec_prefix)| $$(DESTDIR)$$(exec_prefix)| ; \ + s| $$(prefix)| $$(DESTDIR)$$(prefix)|' ${WRKSRC}/Makefile.in .include Added: head/x11-toolkits/viewklass/files/patch-VkProgram.C ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/viewklass/files/patch-VkProgram.C Sun Jan 19 14:25:38 2014 (r340305) @@ -0,0 +1,11 @@ +--- VkProgram.C.orig ++++ VkProgram.C +@@ -34,6 +34,8 @@ + #endif + = "$Id: VkProgram.C,v 1.8 2009/03/21 11:44:34 jostle Exp $"; + ++#include ++ + #include + + using namespace std; From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:28:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 941641F3; Sun, 19 Jan 2014 14:28:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7430B1113; Sun, 19 Jan 2014 14:28:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JESc5d046185; Sun, 19 Jan 2014 14:28:38 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JESaAO046177; Sun, 19 Jan 2014 14:28:36 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191428.s0JESaAO046177@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 14:28:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340306 - in head/textproc/sdcv: . 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.17 Precedence: list List-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, 19 Jan 2014 14:28:38 -0000 Author: miwi Date: Sun Jan 19 14:28:36 2014 New Revision: 340306 URL: http://svnweb.freebsd.org/changeset/ports/340306 QAT: https://qat.redports.org/buildarchive/r340306/ Log: - Fix build with clang PR: 185696 Submitted by: ports fury Added: head/textproc/sdcv/files/patch-src__lib__lib.cpp (contents, props changed) head/textproc/sdcv/files/patch-src__lib__mapfile.hpp (contents, props changed) head/textproc/sdcv/files/patch-src__libwrapper.cpp (contents, props changed) head/textproc/sdcv/files/patch-src__readline.cpp (contents, props changed) head/textproc/sdcv/files/patch-src__sdcv.cpp (contents, props changed) head/textproc/sdcv/files/patch-src__utils.cpp (contents, props changed) Modified: head/textproc/sdcv/Makefile head/textproc/sdcv/pkg-plist (contents, props changed) Modified: head/textproc/sdcv/Makefile ============================================================================== --- head/textproc/sdcv/Makefile Sun Jan 19 14:25:38 2014 (r340305) +++ head/textproc/sdcv/Makefile Sun Jan 19 14:28:36 2014 (r340306) @@ -10,33 +10,33 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Text-based utility for work with dictionaries in StarDict's format -OPTIONS_DEFINE= NLS +LICENSE= GPLv2 # (or later) USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_AUTOTOOLS= libtool +USES= gettext pkgconfig readline USE_GNOME= glib20 -USES= pkgconfig iconv +USE_AUTOTOOLS= libtoolize aclocal automake autoconf +LIBTOOLIZE_ARGS=--copy --force +ACLOCAL_ARGS= --automake-acdir=${ACLOCAL_DIR} -I m4 +AUTOMAKE_ARGS= --add-missing --copy + SUB_FILES= pkg-message -NLS_USES= gettext -NLS_CPPFLAGS= -I${LOCALBASE}/include -NLS_LDFLAGS= -L${LOCALBASE}/lib -NLS_CONFIGURE_ENABLE= nls +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib post-patch: - @${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|g' \ - ${WRKSRC}/doc/sdcv.1 - @${REINPLACE_CMD} -e '1425 s, install-data,,' \ - ${WRKSRC}/po/Makefile.in.in - @${REINPLACE_CMD} -e 's, getopt.h,,g' ${WRKSRC}/src/Makefile.in - @${REINPLACE_CMD} -e '146 s|()|(int, char * const [], const char *)|g' \ - ${WRKSRC}/src/getopt.h - @${REINPLACE_CMD} -e '516 s|sizeof|(guint32)sizeof|g' \ - ${WRKSRC}/src/lib/lib.cpp - @${REINPLACE_CMD} -e 's|/usr/share|${PREFIX}/share|g' \ - ${WRKSRC}/src/sdcv.cpp - @${REINPLACE_CMD} -e 's,@mandir@/uk,@mandir@,' \ - ${WRKSRC}/doc/uk/Makefile.in +.for i in doc/sdcv.1 src/sdcv.cpp + @${REINPLACE_CMD} -e \ + 's|/usr/share|${PREFIX}/share|' ${WRKSRC}/${i} +.endfor + @${REINPLACE_CMD} -e \ + 's|@mandir@/uk|@mandir@|' ${WRKSRC}/doc/uk/Makefile.am + @${REINPLACE_CMD} -e \ + 's|getopt1.c getopt.h||' ${WRKSRC}/src/Makefile.am + +pre-configure: + @${RM} -f ${WRKSRC}/m4/gettext.m4 + @${RM} -f ${WRKSRC}/src/getopt.h .include Added: head/textproc/sdcv/files/patch-src__lib__lib.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/sdcv/files/patch-src__lib__lib.cpp Sun Jan 19 14:28:36 2014 (r340306) @@ -0,0 +1,27 @@ +--- src/lib/lib.cpp.orig ++++ src/lib/lib.cpp +@@ -496,9 +496,13 @@ + entries[i].keystr=p; + len=strlen(p); + p+=len+1; +- entries[i].off=g_ntohl(*reinterpret_cast(p)); ++ /* ++ * Can not use typecasting here, because *data does not have ++ * to be alligned and unalligned access fails on some architectures. ++ */ ++ entries[i].off=((unsigned char)p[0] << 24) | ((unsigned char)p[1] << 16) | ((unsigned char)p[2] << 8) | (unsigned char)p[3]; + p+=sizeof(guint32); +- entries[i].size=g_ntohl(*reinterpret_cast(p)); ++ entries[i].size=((unsigned char)p[0] << 24) | ((unsigned char)p[1] << 16) | ((unsigned char)p[2] << 8) | (unsigned char)p[3]; + p+=sizeof(guint32); + } + } +@@ -513,7 +517,7 @@ + { + fseek(idxfile, wordoffset[page_idx], SEEK_SET); + guint32 page_size=wordoffset[page_idx+1]-wordoffset[page_idx]; +- fread(wordentry_buf, std::min(sizeof(wordentry_buf), page_size), 1, idxfile); //TODO: check returned values, deal with word entry that strlen>255. ++ fread(wordentry_buf, std::min(sizeof(wordentry_buf), (size_t)page_size), 1, idxfile); //TODO: check returned values, deal with word entry that strlen>255. + return wordentry_buf; + } + Added: head/textproc/sdcv/files/patch-src__lib__mapfile.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/sdcv/files/patch-src__lib__mapfile.hpp Sun Jan 19 14:28:36 2014 (r340306) @@ -0,0 +1,12 @@ +--- src/lib/mapfile.hpp.orig ++++ src/lib/mapfile.hpp +@@ -5,6 +5,9 @@ + # include "config.h" + #endif + ++#include ++#include ++ + #ifdef HAVE_MMAP + # include + # include Added: head/textproc/sdcv/files/patch-src__libwrapper.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/sdcv/files/patch-src__libwrapper.cpp Sun Jan 19 14:28:36 2014 (r340306) @@ -0,0 +1,50 @@ +--- src/libwrapper.cpp.orig ++++ src/libwrapper.cpp +@@ -24,6 +24,7 @@ + + #include + #include ++#include + + #include "utils.hpp" + +@@ -117,7 +118,6 @@ + switch (*p++) { + case 'm': + case 'l': //need more work... +- case 'g': + sec_size = strlen(p); + if (sec_size) { + res+="\n"; +@@ -127,6 +127,7 @@ + } + sec_size++; + break; ++ case 'g': + case 'x': + sec_size = strlen(p); + if (sec_size) { +@@ -208,6 +209,15 @@ + + void Library::LookupData(const string &str, TSearchResultList& res_list) + { ++#if defined(_LIBCPP_VERSION) ++ std::vector > drl(ndicts()); ++ if (!Libs::LookupData(str.c_str(), &drl[0])) ++ return; ++ for (int idict=0; idict drl[ndicts()]; + if (!Libs::LookupData(str.c_str(), drl)) + return; +@@ -215,6 +225,7 @@ + for (std::vector::size_type j=0; j ++#include + #ifdef WITH_READLINE + # include + # include Added: head/textproc/sdcv/files/patch-src__sdcv.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/sdcv/files/patch-src__sdcv.cpp Sun Jan 19 14:28:36 2014 (r340306) @@ -0,0 +1,15 @@ +--- src/sdcv.cpp.orig ++++ src/sdcv.cpp +@@ -161,7 +161,11 @@ + + strlist_t dicts_dir_list; + +- dicts_dir_list.push_back(std::string(g_get_home_dir())+G_DIR_SEPARATOR+ ++ const char *homedir = g_getenv ("HOME"); ++ if (!homedir) ++ homedir = g_get_home_dir (); ++ ++ dicts_dir_list.push_back(std::string(homedir)+G_DIR_SEPARATOR+ + ".stardict"+G_DIR_SEPARATOR+"dic"); + dicts_dir_list.push_back(data_dir); + Added: head/textproc/sdcv/files/patch-src__utils.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/sdcv/files/patch-src__utils.cpp Sun Jan 19 14:28:36 2014 (r340306) @@ -0,0 +1,11 @@ +--- src/utils.cpp.orig ++++ src/utils.cpp +@@ -22,6 +22,8 @@ + # include "config.h" + #endif + ++#include ++#include + #include + #include + Modified: head/textproc/sdcv/pkg-plist ============================================================================== --- head/textproc/sdcv/pkg-plist Sun Jan 19 14:25:38 2014 (r340305) +++ head/textproc/sdcv/pkg-plist Sun Jan 19 14:28:36 2014 (r340306) @@ -1,7 +1,7 @@ bin/sdcv man/man1/sdcv.1.gz -%%NLS%%share/locale/ru/LC_MESSAGES/sdcv.mo -%%NLS%%share/locale/sk/LC_MESSAGES/sdcv.mo -%%NLS%%share/locale/uk/LC_MESSAGES/sdcv.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/sdcv.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/sdcv.mo +share/locale/ru/LC_MESSAGES/sdcv.mo +share/locale/sk/LC_MESSAGES/sdcv.mo +share/locale/uk/LC_MESSAGES/sdcv.mo +share/locale/zh_CN/LC_MESSAGES/sdcv.mo +share/locale/zh_TW/LC_MESSAGES/sdcv.mo From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:29:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F08F52CF; Sun, 19 Jan 2014 14:29:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CFD341118; Sun, 19 Jan 2014 14:29:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JETT2Z046387; Sun, 19 Jan 2014 14:29:29 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JETSDI046381; Sun, 19 Jan 2014 14:29:28 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191429.s0JETSDI046381@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 14:29:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340307 - in head/graphics/dynamechs: . 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.17 Precedence: list List-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, 19 Jan 2014 14:29:30 -0000 Author: miwi Date: Sun Jan 19 14:29:28 2014 New Revision: 340307 URL: http://svnweb.freebsd.org/changeset/ports/340307 QAT: https://qat.redports.org/buildarchive/r340307/ Log: - Fix build with clang PR: 185716 Submitted by: ports fury Added: head/graphics/dynamechs/files/patch-aquarobot__MatrixMy.cpp (contents, props changed) head/graphics/dynamechs/files/patch-dm__svd_linpack.cpp (contents, props changed) Modified: head/graphics/dynamechs/Makefile head/graphics/dynamechs/files/make.platform.freebsd (contents, props changed) head/graphics/dynamechs/files/patch-aquarobot::Gait.hpp (contents, props changed) Modified: head/graphics/dynamechs/Makefile ============================================================================== --- head/graphics/dynamechs/Makefile Sun Jan 19 14:28:36 2014 (r340306) +++ head/graphics/dynamechs/Makefile Sun Jan 19 14:29:28 2014 (r340307) @@ -10,32 +10,32 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} DISTNAME= ${PORTNAME}_${PORTVERSION:S/.p/pre/} MAINTAINER= ports@FreeBSD.org -COMMENT= A Multibody Dynamic Simulation Library +COMMENT= Multibody Dynamic Simulation Library -USES= perl5 USE_BZIP2= yes +USES= gmake perl5 USE_GL= glut -USE_GMAKE= yes USE_PERL5= build -CXXFLAGS+= ${PTHREAD_CFLAGS} MAKE_ENV= OPENGLINCDIR="${LOCALBASE}/include" \ OPENGLLIBDIR="${LOCALBASE}/lib" -LDFLAGS+= ${PTHREAD_LIBS} ALL_TARGET= freebsd USE_LDCONFIG= yes -NO_STAGE= yes -.include +post-patch: + @${REINPLACE_CMD} -e \ + 's|.SILENT:||' ${WRKSRC}/Makefile do-configure: @${CP} -f ${FILESDIR}/make.platform.freebsd ${WRKSRC}/make/ do-install: .for dir in dm dmu dmGL - ${RM} -f ${WRKSRC}/${dir}/*.orig - @${MKDIR} ${PREFIX}/include/${PORTNAME}/${dir} - ${INSTALL_DATA} ${WRKSRC}/${dir}/*.h* ${PREFIX}/include/${PORTNAME}/${dir} - ${INSTALL_DATA} ${WRKSRC}/lib/platform.freebsd/lib${dir}.so ${PREFIX}/lib + @${MKDIR} ${STAGEDIR}${PREFIX}/include/${PORTNAME}/${dir} + (cd ${WRKSRC}/${dir} && ${FIND} . -name "*.h" -or -name "*.hpp" | \ + ${XARGS} -J % ${INSTALL_DATA} % \ + ${STAGEDIR}${PREFIX}/include/${PORTNAME}/${dir}) + (cd ${WRKSRC}/lib/platform.freebsd && ${INSTALL_LIB} lib${dir}.so \ + ${STAGEDIR}${PREFIX}/lib) .endfor -.include +.include Modified: head/graphics/dynamechs/files/make.platform.freebsd ============================================================================== --- head/graphics/dynamechs/files/make.platform.freebsd Sun Jan 19 14:28:36 2014 (r340306) +++ head/graphics/dynamechs/files/make.platform.freebsd Sun Jan 19 14:29:28 2014 (r340307) @@ -2,7 +2,7 @@ CXXFLAGS += -D_BOOL -c -fPIC -I/$(OPENGL # -pthreads DEPENDFLAGS := $(CXXFLAGS) -LDFLAGS += -fPIC -L/$(OPENGLLIBDIR) -L${LOCALBASE}/lib -lX11 -lm -l$(MESA)GLU -l$(MESA)GL +LDFLAGS += -pthread -fPIC -L/$(OPENGLLIBDIR) -L${LOCALBASE}/lib -lX11 -lm -l$(MESA)GLU -l$(MESA)GL LDGLUT := -lglut # CXX := c++ Modified: head/graphics/dynamechs/files/patch-aquarobot::Gait.hpp ============================================================================== --- head/graphics/dynamechs/files/patch-aquarobot::Gait.hpp Sun Jan 19 14:28:36 2014 (r340306) +++ head/graphics/dynamechs/files/patch-aquarobot::Gait.hpp Sun Jan 19 14:29:28 2014 (r340307) @@ -1,15 +1,28 @@ ---- aquarobot/Gait.hpp.orig Thu Jul 19 08:40:44 2001 -+++ aquarobot/Gait.hpp Sat Dec 21 08:57:01 2002 -@@ -26,10 +26,11 @@ +--- aquarobot/Gait.hpp.orig 2001-07-19 08:40:44.000000000 +0900 ++++ aquarobot/Gait.hpp 2014-01-08 21:46:35.000000000 +0900 +@@ -26,24 +26,17 @@ #include #endif -#if defined(WIN32) || (defined(sgi) && defined(_STANDARD_C_PLUS_PLUS)) || (defined(__GNUC__) && (__GNUC__>=2) && (__GNUC_MINOR__>=91)) -+#if defined(WIN32) || (defined(sgi) && defined(_STANDARD_C_PLUS_PLUS)) || (defined(__GNUC__) && (__GNUC__>=2) && (__GNUC_MINOR__>=91)) || (defined(__GNUC__) && (__GNUC__>=3)) #include #include #include +-#else +-#include +-#include +-#include +-#endif +using namespace std; - #else - #include - #include + + #include + #include + #include + + // Use the std namespace. To do this we must first guarantee that it exists. +-#if defined(__sgi) || defined(__WIN32_) || defined(WIN32) + namespace std {} + using namespace std; +-#endif + + #endif Added: head/graphics/dynamechs/files/patch-aquarobot__MatrixMy.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/dynamechs/files/patch-aquarobot__MatrixMy.cpp Sun Jan 19 14:29:28 2014 (r340307) @@ -0,0 +1,11 @@ +--- aquarobot/MatrixMy.cpp.orig ++++ aquarobot/MatrixMy.cpp +@@ -38,7 +38,7 @@ + // Constructor + // ************************************************************************** + //MatrixMy::MatrixMy(int r = 4, int c = 4) +-MatrixMy::MatrixMy(int r = 3, int c = 3) ++MatrixMy::MatrixMy(int r, int c) + { + row = r; + column = c; Added: head/graphics/dynamechs/files/patch-dm__svd_linpack.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/dynamechs/files/patch-dm__svd_linpack.cpp Sun Jan 19 14:29:28 2014 (r340307) @@ -0,0 +1,13 @@ +--- dm/svd_linpack.cpp.orig ++++ dm/svd_linpack.cpp +@@ -10,7 +10,9 @@ + #endif + + #include +-#include ++#include ++#include ++using namespace std; + + #ifdef __cplusplus + extern "C" { From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:30:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47F464A5; Sun, 19 Jan 2014 14:30:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 33F15112F; Sun, 19 Jan 2014 14:30:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEUOv7047205; Sun, 19 Jan 2014 14:30:24 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEUNmb047198; Sun, 19 Jan 2014 14:30:23 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191430.s0JEUNmb047198@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 14:30:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340308 - in head/japanese/ebview-gtk2: . 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.17 Precedence: list List-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, 19 Jan 2014 14:30:24 -0000 Author: miwi Date: Sun Jan 19 14:30:23 2014 New Revision: 340308 URL: http://svnweb.freebsd.org/changeset/ports/340308 QAT: https://qat.redports.org/buildarchive/r340308/ Log: - Fix build with clang PR: 185717 Submitted by: ports fury Added: head/japanese/ebview-gtk2/files/patch-data__Makefile.in (contents, props changed) head/japanese/ebview-gtk2/files/patch-doc__Makefile.in (contents, props changed) head/japanese/ebview-gtk2/files/patch-po__Makefile.in.in (contents, props changed) Modified: head/japanese/ebview-gtk2/Makefile (contents, props changed) Modified: head/japanese/ebview-gtk2/Makefile ============================================================================== --- head/japanese/ebview-gtk2/Makefile Sun Jan 19 14:29:28 2014 (r340307) +++ head/japanese/ebview-gtk2/Makefile Sun Jan 19 14:30:23 2014 (r340308) @@ -10,36 +10,35 @@ PKGNAMESUFFIX= -gtk2 MAINTAINER= ports@FreeBSD.org COMMENT= Electronic Book Viewer -LIB_DEPENDS= eb:${PORTSDIR}/japanese/eb +LICENSE= GPLv2 # (or later) -CONFLICTS= ja-ebview-0* +LIB_DEPENDS= libeb.so:${PORTSDIR}/japanese/eb -USES= pkgconfig -USE_GNOME= gtk20 -USE_GMAKE= yes -GNU_CONFIGURE= yes +CONFLICTS= ja-ebview-[0-9]* + +USES= gettext gmake pkgconfig +USE_GNOME= gtk20 pangox-compat USE_CSTD= gnu89 -CONFIGURE_ARGS+=--with-eb-conf=${LOCALBASE}/etc/eb.conf -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-eb-conf=${LOCALBASE}/etc/eb.conf SUB_FILES= ebview.desktop -NO_STAGE= yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + post-patch: - @${REINPLACE_CMD} -e \ - 's|-pthread|${PTHREAD_LIBS:S/"//g}|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|#define GTK_DISABLE_DEPRECATED 1||g' \ ${WRKSRC}/src/ebview.c post-install: - ${INSTALL_DATA} ${WRKSRC}/pixmaps/ebview.xpm ${PREFIX}/share/pixmaps/ - ${INSTALL_DATA} ${WRKDIR}/${SUB_FILES} ${PREFIX}/share/applications/ -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in ChangeLog README - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} + (cd ${WRKDIR} && ${INSTALL_DATA} ${SUB_FILES} \ + ${STAGEDIR}${DESKTOPDIR}) + (cd ${WRKSRC}/pixmaps && ${INSTALL_DATA} ebview.xpm \ + ${STAGEDIR}${PREFIX}/share/pixmaps) + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for i in ChangeLog README + (cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR}) .endfor -.endif .include Added: head/japanese/ebview-gtk2/files/patch-data__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/ebview-gtk2/files/patch-data__Makefile.in Sun Jan 19 14:30:23 2014 (r340308) @@ -0,0 +1,19 @@ +--- data/Makefile.in.orig ++++ data/Makefile.in +@@ -304,13 +304,13 @@ + + install: + if test -r $(MKINSTALLDIRS); then \ +- $(MKINSTALLDIRS) $(pkgdatadir); \ ++ $(MKINSTALLDIRS) $(DESTDIR)$(pkgdatadir); \ + else \ +- $(top_srcdir)/mkinstalldirs $(pkgdatadir); \ ++ $(top_srcdir)/mkinstalldirs $(DESTDIR)$(pkgdatadir); \ + fi; \ + data="$(data)"; \ + for file in $$data; do \ +- $(INSTALL_DATA) $(srcdir)/$$file $(pkgdatadir)/$$file; \ ++ $(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(pkgdatadir)/$$file; \ + done; + + # Define this as empty until I found a useful application. Added: head/japanese/ebview-gtk2/files/patch-doc__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/ebview-gtk2/files/patch-doc__Makefile.in Sun Jan 19 14:30:23 2014 (r340308) @@ -0,0 +1,21 @@ +--- doc/Makefile.in.orig ++++ doc/Makefile.in +@@ -308,15 +308,15 @@ + dir="$(dir)"; \ + for lang in $$dir; do \ + if test -r $(MKINSTALLDIRS); then \ +- $(MKINSTALLDIRS) $(pkgdatadir)/help/$$lang; \ ++ $(MKINSTALLDIRS) $(DESTDIR)$(pkgdatadir)/help/$$lang; \ + else \ +- $(top_srcdir)/mkinstalldirs $(pkgdatadir)/help/$$lang; \ ++ $(top_srcdir)/mkinstalldirs $(DESTDIR)$(pkgdatadir)/help/$$lang; \ + fi; \ + done; \ + data="$(data)"; \ + for lang in $$dir; do \ + for file in $$data; do \ +- $(INSTALL_DATA) $(srcdir)/$$lang/$$file $(pkgdatadir)/help/$$lang/$$file; \ ++ $(INSTALL_DATA) $(srcdir)/$$lang/$$file $(DESTDIR)$(pkgdatadir)/help/$$lang/$$file; \ + done; \ + done; + Added: head/japanese/ebview-gtk2/files/patch-po__Makefile.in.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/ebview-gtk2/files/patch-po__Makefile.in.in Sun Jan 19 14:30:23 2014 (r340308) @@ -0,0 +1,52 @@ +--- po/Makefile.in.in.orig ++++ po/Makefile.in.in +@@ -115,9 +115,9 @@ + install-data-no: all + install-data-yes: all + if test -r "$(MKINSTALLDIRS)"; then \ +- $(MKINSTALLDIRS) $(datadir); \ ++ $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \ + else \ +- $(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \ ++ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \ + fi + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ +@@ -129,27 +129,27 @@ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + dir=$$destdir/$$lang/LC_MESSAGES; \ + if test -r "$(MKINSTALLDIRS)"; then \ +- $(MKINSTALLDIRS) $$dir; \ ++ $(MKINSTALLDIRS) $(DESTDIR)$$dir; \ + else \ +- $(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \ ++ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$$dir; \ + fi; \ + if test -r $$cat; then \ +- $(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ +- echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \ ++ $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT); \ ++ echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT)"; \ + else \ +- $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \ ++ $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT); \ + echo "installing $(srcdir)/$$cat as" \ +- "$$dir/$(PACKAGE)$(INSTOBJEXT)"; \ ++ "$(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT)"; \ + fi; \ + if test -r $$cat.m; then \ +- $(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ +- echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ ++ $(INSTALL_DATA) $$cat.m $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT).m; \ ++ echo "installing $$cat.m as $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ + else \ + if test -r $(srcdir)/$$cat.m ; then \ + $(INSTALL_DATA) $(srcdir)/$$cat.m \ +- $$dir/$(PACKAGE)$(INSTOBJEXT).m; \ ++ $(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT).m; \ + echo "installing $(srcdir)/$$cat as" \ +- "$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ ++ "$(DESTDIR)$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \ + else \ + true; \ + fi; \ From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:31:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47F6C729; Sun, 19 Jan 2014 14:31:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 29A4B1155; Sun, 19 Jan 2014 14:31:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEVSdM049399; Sun, 19 Jan 2014 14:31:28 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEVRJG049395; Sun, 19 Jan 2014 14:31:27 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191431.s0JEVRJG049395@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 14:31:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340309 - in head/emulators/hugo: . 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.17 Precedence: list List-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, 19 Jan 2014 14:31:28 -0000 Author: miwi Date: Sun Jan 19 14:31:27 2014 New Revision: 340309 URL: http://svnweb.freebsd.org/changeset/ports/340309 QAT: https://qat.redports.org/buildarchive/r340309/ Log: - Fix build with clang - Update MASTER_SITES - Support OPTIONS_DEFINE - Add LICENSE PR: 185334 Submitted by: ports fury Modified: head/emulators/hugo/Makefile head/emulators/hugo/files/patch-Makefile.in (contents, props changed) head/emulators/hugo/files/patch-configure (contents, props changed) head/emulators/hugo/pkg-plist (contents, props changed) Modified: head/emulators/hugo/Makefile ============================================================================== --- head/emulators/hugo/Makefile Sun Jan 19 14:30:23 2014 (r340308) +++ head/emulators/hugo/Makefile Sun Jan 19 14:31:27 2014 (r340309) @@ -5,52 +5,58 @@ PORTNAME= hugo PORTVERSION= 2.12 PORTREVISION= 12 CATEGORIES= emulators -MASTER_SITES= http://www.zeograd.com/download/ +MASTER_SITES= http://www.zeograd.com/download/ \ + http://www.sourcefiles.org/Emulators/Videogames/ MAINTAINER= ports@FreeBSD.org -COMMENT= A PC Engine (TurboGrafx 16) emulator +COMMENT= PC Engine (TurboGrafx 16) emulator -BUILD_DEPENDS= ${LOCALBASE}/include/argp.h:${PORTSDIR}/devel/argp-standalone +LICENSE= BSD GPLv2 +LICENSE_COMB= multi + +LIB_DEPENDS= libargp.so:${PORTSDIR}/devel/argp-standalone + +OPTIONS_DEFINE= GTK2 DOCS NETPLAY SDL_MIXER +OPTIONS_DEFAULT=GTK2 +OPTIONS_SUB= yes +NETPLAY_DESC= Netplay support +SDL_MIXER_DESC= SDL_mixer support -GNU_CONFIGURE= yes USES= gmake pkgconfig USE_SDL= sdl +USE_CSTD= gnu89 +GNU_CONFIGURE= yes + +CFLAGS+= -Wno-return-type +CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ENV+= SDL_CONFIG="${SDL_CONFIG}" -.if !defined(WITHOUT_NETPLAY) -USE_SDL+= net -.else -CONFIGURE_ARGS+= --enable-netplay=no +.include + +.if empty(PORT_OPTIONS:MGTK2) && ${PORT_OPTIONS:MNETPLAY} +IGNORE= NETPLAY support requires GTK2 support .endif -.if defined(WITHOUT_GUI) -CONFIGURE_ARGS+= --enable-gui=no --disable-gtktest -.else +.if ${PORT_OPTIONS:MGTK2} USE_GNOME= gtk20 +.else +CONFIGURE_ARGS+= --disable-gui --disable-gtktest .endif -.if defined(WITH_OGG_SUPPORT) -LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis -WITH_SDL_MIXER= yes -CONFIGURE_ARGS+= --with-ogg-support +.if ${PORT_OPTIONS:MNETPLAY} +USE_SDL+= net +.else +CONFIGURE_ENV+= ac_cv_lib_SDL_net_main=no .endif -.if defined(WITH_SDL_MIXER) +.if ${PORT_OPTIONS:MSDL_MIXER} +LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis USE_SDL+= mixer -CONFIGURE_ARGS+= --with-sdl-mixer -.endif - -MAKE_ENV+= DOCSDIR="${DOCSDIR}" - -.if defined(NOPORTDOCS) -MAKE_ENV+= PORTDOCS=false +CFLAGS+= -DOGG_SUPPORT .else -MAKE_ENV+= PORTDOCS=true +CONFIGURE_ENV+= ac_cv_lib_SDL_mixer_main=no \ + ac_cv_lib_vorbis_main=no \ + ac_cv_lib_vorbisfile_main=no .endif -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}|' ${WRKSRC}/configure - .include Modified: head/emulators/hugo/files/patch-Makefile.in ============================================================================== --- head/emulators/hugo/files/patch-Makefile.in Sun Jan 19 14:30:23 2014 (r340308) +++ head/emulators/hugo/files/patch-Makefile.in Sun Jan 19 14:31:27 2014 (r340309) @@ -16,12 +16,12 @@ - if test -d $(srcdir)/doc; then \ - $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/doc; \ - for doc in $(srcdir)/doc/*.{html,txt,css}; do \ -+ if test -d $(srcdir)/doc && ${PORTDOCS}; then \ -+ $(mkinstalldirs) ${DOCSDIR}; \ ++ if test -d $(srcdir)/doc; then \ ++ $(mkinstalldirs) $(DESTDIR)$(datadir)/doc/hugo; \ + for doc in $(srcdir)/doc/*.html $(srcdir)/doc/*.txt $(srcdir)/doc/*.css; do \ if test -f $$doc; then \ - $(INSTALL_DATA) $$doc $(DESTDIR)$(pkgdatadir)/doc; \ -+ $(INSTALL_DATA) $$doc ${DOCSDIR}; \ ++ $(INSTALL_DATA) $$doc $(DESTDIR)$(datadir)/doc/hugo; \ fi \ done \ fi Modified: head/emulators/hugo/files/patch-configure ============================================================================== --- head/emulators/hugo/files/patch-configure Sun Jan 19 14:30:23 2014 (r340308) +++ head/emulators/hugo/files/patch-configure Sun Jan 19 14:31:27 2014 (r340309) @@ -27,7 +27,7 @@ then -@@ -8657,7 +8659,7 @@ +@@ -8657,13 +8657,13 @@ fi ;; @@ -36,7 +36,15 @@ echo "FreeBSD build enabled" HUGO_TARGET_MACHINE="FREEBSD" -@@ -8675,6 +8677,35 @@ + +- CFLAGS="$CFLAGS `sdl-config --cflags`" +- LIBS="$LIBS `sdl-config --libs`" ++ CFLAGS="$CFLAGS `${SDL_CONFIG} --cflags`" ++ LIBS="$LIBS `${SDL_CONFIG} --libs`" + + + +@@ -8675,6 +8675,35 @@ SDL_FREEBSD_FALSE= fi Modified: head/emulators/hugo/pkg-plist ============================================================================== --- head/emulators/hugo/pkg-plist Sun Jan 19 14:30:23 2014 (r340308) +++ head/emulators/hugo/pkg-plist Sun Jan 19 14:31:27 2014 (r340309) @@ -1,5 +1,5 @@ bin/hugo -bin/hugod +%%NETPLAY%%bin/hugod %%PORTDOCS%%%%DOCSDIR%%/README.old.txt %%PORTDOCS%%%%DOCSDIR%%/cdrom.html %%PORTDOCS%%%%DOCSDIR%%/cdrom.txt From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:32:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9DC1837; Sun, 19 Jan 2014 14:32:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9B67611AC; Sun, 19 Jan 2014 14:32:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEW8Vb049540; Sun, 19 Jan 2014 14:32:08 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEW85x049539; Sun, 19 Jan 2014 14:32:08 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401191432.s0JEW85x049539@svn.freebsd.org> From: Martin Wilke Date: Sun, 19 Jan 2014 14:32:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340310 - head/security/poly1305aes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 14:32:08 -0000 Author: miwi Date: Sun Jan 19 14:32:08 2014 New Revision: 340310 URL: http://svnweb.freebsd.org/changeset/ports/340310 QAT: https://qat.redports.org/buildarchive/r340310/ Log: - Fix build with clang PR: 185334 Submitted by: ports fury Modified: head/security/poly1305aes/Makefile (contents, props changed) Modified: head/security/poly1305aes/Makefile ============================================================================== --- head/security/poly1305aes/Makefile Sun Jan 19 14:31:27 2014 (r340309) +++ head/security/poly1305aes/Makefile Sun Jan 19 14:32:08 2014 (r340310) @@ -7,23 +7,36 @@ CATEGORIES= security MASTER_SITES= http://cr.yp.to/mac/ MAINTAINER= ports@FreeBSD.org -COMMENT= The poly1305 message authentication reference implementation using AES +COMMENT= Poly1305 message authentication reference implementation using AES -CC+= ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} ${STRIP} ALL_TARGET= default -REPLACE_HDRS= aes.h cpucycles.h poly1305aes.h -PROGRAM_FILES= poly1305aes-speed test-aes test-poly1305aes +CC+= ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} + +NOT_FOR_ARCHS= amd64 + +.include + +pre-build: +.if ${ARCH} == "i386" + @${ECHO_CMD} "ppro" > ${WRKSRC}/poly1305aes.impl +.endif + +post-build: +.for i in aes.h cpucycles.h poly1305aes.h + @${REINPLACE_CMD} -e \ + 's|#include "|#include "poly1305/|' ${WRKSRC}/${i} +.endfor -NO_STAGE= yes do-install: - ${MKDIR} ${PREFIX}/include/poly1305 - ${INSTALL_DATA} ${WRKSRC}/*_*.h ${PREFIX}/include/poly1305/ -.for i in ${REPLACE_HDRS} - ${REINPLACE_CMD} -e "s,#include \",#include \"poly1305/," ${WRKSRC}/$i > ${WRKSRC}/$i.fixed - ${INSTALL_DATA} ${WRKSRC}/$i.fixed ${PREFIX}/include/poly1305/$i - ${INSTALL_DATA} ${WRKSRC}/*.a ${PREFIX}/lib/ - ${INSTALL_DATA} ${PROGRAM_FILES:S,^,${WRKSRC}/,} ${PREFIX}/bin/ +.for i in poly1305aes-speed test-aes test-poly1305aes + (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${i} \ + ${STAGEDIR}${PREFIX}/bin) .endfor + @${MKDIR} ${STAGEDIR}${PREFIX}/include/poly1305 + (cd ${WRKSRC} && ${INSTALL_DATA} *.h \ + ${STAGEDIR}${PREFIX}/include/poly1305) + (cd ${WRKSRC} && ${INSTALL_DATA} *.a \ + ${STAGEDIR}${PREFIX}/lib) -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:32:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8D2899A; Sun, 19 Jan 2014 14:32:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 892CE11B4; Sun, 19 Jan 2014 14:32:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEWX18049658; Sun, 19 Jan 2014 14:32:33 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEWXlw049656; Sun, 19 Jan 2014 14:32:33 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201401191432.s0JEWXlw049656@svn.freebsd.org> From: Matthew Seaman Date: Sun, 19 Jan 2014 14:32:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340311 - head/www/rt42 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 14:32:33 -0000 Author: matthew Date: Sun Jan 19 14:32:32 2014 New Revision: 340311 URL: http://svnweb.freebsd.org/changeset/ports/340311 QAT: https://qat.redports.org/buildarchive/r340311/ Log: * Fix up botched PGSQL dependencies * Add the missing HTML_DOC_DEPS * Use 'DEVELOPER' rather than 'DEV' consistently for that option * Since BUILD_DEPENDS is always going to be a super-set of RUN_DEPENDS for this port, simplify things by generating RUN_DEPENDS from the OPTIONS choices, and then just append that to the BUILD_DEPENDS. Modified: head/www/rt42/Makefile head/www/rt42/Makefile.cpan Modified: head/www/rt42/Makefile ============================================================================== --- head/www/rt42/Makefile Sun Jan 19 14:32:08 2014 (r340310) +++ head/www/rt42/Makefile Sun Jan 19 14:32:32 2014 (r340311) @@ -2,6 +2,7 @@ PORTNAME= rt DISTVERSION= 4.2.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://download.bestpractical.com/pub/rt/release/ PKGNAMESUFFIX= 42 @@ -31,7 +32,7 @@ NO_ARCH= yes # mentioned in the docs is currently unsupported in the ports, but see # http://www.infracaninophile.co.uk/articles/sphinxse.html -OPTIONS_DEFINE= DEV GD GPG GRAPHVIZ SMIME +OPTIONS_DEFINE= DEVELOPER GD GPG GRAPHVIZ SMIME OPTIONS_SINGLE= DB OPTIONS_SINGLE_DB= MYSQL ORACLE PGSQL SQLITE OPTIONS_RADIO= WEB @@ -42,18 +43,17 @@ OPTIONS_DEFAULT= AP_MODPERL GD GPG MYSQL USERS?= www GROUPS?= rt www -BUILD_DEPENDS+= ${LOCALBASE}/bin/jsmin:${PORTSDIR}/devel/jsmin +RUN_DEPENDS+= ${LOCALBASE}/bin/jsmin:${PORTSDIR}/devel/jsmin .include "${.CURDIR}/Makefile.cpan" -BUILD_DEPENDS+= ${CLI_DEPS} \ +RUN_DEPENDS+= ${CLI_DEPS} \ ${CORE_DEPS} \ ${DASHBOARDS_DEPS} \ ${ICAL_DEPS} \ ${MAILGATE_DEPS} \ - ${USERLOGO_DEPS} - -RUN_DEPENDS:= ${BUILD_DEPENDS} + ${USERLOGO_DEPS} \ + ${HTML_DOC_DEPS} USES+= perl5 USE_AUTOTOOLS= autoconf @@ -64,62 +64,51 @@ DOCSDIR= ${PREFIX}/share/doc/${PORTNAME} DATADIR= ${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX} AP_MODPERL_DESC= Deploy with apache and mod_perl -AP_MODPERL_BUILD_DEPENDS= ${MODPERL2_DEPS} AP_MODPERL_RUN_DEPENDS= ${MODPERL2_DEPS} AP_MODFASTCGI_DESC= Deploy with apache and mod_fastcgi AP_MODFASTCGI_USE= APACHE_RUN=22+ -AP_MODFASTCGI_BUILD_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi AP_MODFASTCGI_RUN_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi \ ${FASTCGI_DEPS} LIGHTTPD_DESC= Deploy with lighttpd and mod_fastcgi -LIGHTTPD_BUILD_DEPENDS= ${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd LIGHTTPD_RUN_DEPENDS= ${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd SPAWN_FCGI_DESC= Deploy with spawn_fcgi -SPAWN_FCGI_BUILD_DEPENDS= ${LOCALBASE}/bin/spawn-fcgi:${PORTSDIR}/www/spawn-fcgi SPAWN_FCGI_RUN_DEPENDS= ${LOCALBASE}/bin/spawn-fcgi:${PORTSDIR}/www/spawn-fcgi MYSQL_USE= MYSQL=yes -MYSQL_BUILD_DEPENDS= ${MYSQL_DEPS} MYSQL_RUN_DEPENDS= ${MYSQL_DEPS} PGSQL_USE= PGSQL=yes -PGSQL_BUILD_DEPENDS= ${PGSQL_DEPS} -RUN_DEPENDS= ${PGSQL_DEPS} +PGSQL_RUN_DEPENDS= ${PGSQL_DEPS} -ORACLE_BUILD_DEPENDS= ${ORACLE_DEPS} ORACLE_RUN_DEPENDS= ${ORACLE_DEPS} SQLITE_USE= SQLITE=yes -SQLITE_BUILD_DEPENDS= ${SQLITE_DEPS} SQLITE_RUN_DEPENDS= ${SQLITE_DEPS} -DEV_DESC= Configure for Developers -DEV_BUILD_DEPENDS= ${DEVELOPER_DEPS} -DEV_RUN_DEPENDS= ${DEVELOPER_DEPS} -DEV_CONFIGURE_ENABLE= developer +DEVELOPER_DESC= Configure for Developers +DEVELOPER_RUN_DEPENDS= ${DEVELOPER_DEPS} +DEVELOPER_CONFIGURE_ENABLE= developer SMIME_DESC= Enable Secure MIME support -SMIME_BUILD_DEPENDS= ${SMIME_DEPS} SMIME_RUN_DEPENDS= ${SMIME_DEPS} SMIME_CONFIGURE_ENABLE= smime -GRAPHVIZ_BUILD_DEPENDS= ${GRAPHVIZ_DEPS} GRAPHVIZ_RUN_DEPENDS= ${GRAPHVIZ_DEPS} GRAPHVIZ_CONFIGURE_ENABLE= graphviz GPG_DESC= Enable GnuPG support -GPG_BUILD_DEPENDS= ${GPG_DEPS} GPG_RUN_DEPENDS= ${GPG_DEPS} GPG_CONFIGURE_ENABLE= gpg GD_DESC= Enable GD Graphs and Charts -GD_BUILD_DEPENDS= ${GD_DEPS} GD_RUN_DEPENDS= ${GD_DEPS} GD_CONFIGURE_ENABLE= gd +BUILD_DEPENDS+= ${RUN_DEPENDS} + .include .if !${PORT_OPTIONS:MMYSQL} && !${PORT_OPTIONS:MPGSQL} && \ @@ -209,10 +198,8 @@ pre-install: @${RM} -f ${WRKSRC}/lib/RT.pm.in post-install: -.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR}/upgrade (cd ${WRKSRC}/etc && \ ${COPYTREE_SHARE} upgrade ${STAGEDIR}${DOCSDIR} "! -name *\.in") -.endif .include Modified: head/www/rt42/Makefile.cpan ============================================================================== --- head/www/rt42/Makefile.cpan Sun Jan 19 14:32:08 2014 (r340310) +++ head/www/rt42/Makefile.cpan Sun Jan 19 14:32:32 2014 (r340311) @@ -224,10 +224,10 @@ MYSQL_DEPS= p5-DBD-mysql>=2.1018:${PORTS ORACLE_DEPS= p5-DBD-Oracle>0:${PORTSDIR}/databases/p5-DBD-Oracle -### --- PG --- +### --- PGSQL --- ### DBD::Pg 1.43 -PG_DEPS= p5-DBD-Pg>=1.43:${PORTSDIR}/databases/p5-DBD-Pg +PGSQL_DEPS= p5-DBD-Pg>=1.43:${PORTSDIR}/databases/p5-DBD-Pg ### --- SQLITE --- ### DBD::SQLite 1.00 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:34:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E4B3B43; Sun, 19 Jan 2014 14:34:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EE42611D1; Sun, 19 Jan 2014 14:34:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEYdpD050007; Sun, 19 Jan 2014 14:34:39 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEYdEt050006; Sun, 19 Jan 2014 14:34:39 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201401191434.s0JEYdEt050006@svn.freebsd.org> From: Matthew Seaman Date: Sun, 19 Jan 2014 14:34:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340312 - head/www/rt40 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 14:34:40 -0000 Author: matthew Date: Sun Jan 19 14:34:39 2014 New Revision: 340312 URL: http://svnweb.freebsd.org/changeset/ports/340312 QAT: https://qat.redports.org/buildarchive/r340312/ Log: * Since BUILD_DEPENDS is always going to be a super-set of RUN_DEPENDS, simplfy things by calculating RUN_DEPENDS based on the OPTIONS settings, then just append that to BUILD_DEPENDS. No functional change to the generated packaage, so no PORTREVISION bump. Modified: head/www/rt40/Makefile Modified: head/www/rt40/Makefile ============================================================================== --- head/www/rt40/Makefile Sun Jan 19 14:32:32 2014 (r340311) +++ head/www/rt40/Makefile Sun Jan 19 14:34:39 2014 (r340312) @@ -43,11 +43,11 @@ OPTIONS_DEFAULT= AP_MODPERL GD GPG MYSQL USERS?= www GROUPS?= rt www -BUILD_DEPENDS+= ${LOCALBASE}/bin/jsmin:${PORTSDIR}/devel/jsmin +RUN_DEPENDS+= ${LOCALBASE}/bin/jsmin:${PORTSDIR}/devel/jsmin .include "${.CURDIR}/Makefile.cpan" -BUILD_DEPENDS+= ${CORE_DEPS} \ +RUN_DEPENDS+= ${CORE_DEPS} \ ${MASON_DEPS} \ ${PSGI_DEPS} \ ${MAILGATE_DEPS} \ @@ -58,8 +58,6 @@ BUILD_DEPENDS+= ${CORE_DEPS} \ ${USERLOGO_DEPS} \ ${HTML_DOC_DEPS} -RUN_DEPENDS:= ${BUILD_DEPENDS} - USES+= perl5 USE_AUTOTOOLS= autoconf @@ -69,64 +67,53 @@ DOCSDIR= ${PREFIX}/share/doc/${PORTNAME} DATADIR= ${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX} AP_MODPERL_DESC= Deploy with apache and mod_perl -AP_MODPERL_BUILD_DEPENDS= ${MODPERL2_DEPS} AP_MODPERL_RUN_DEPENDS= ${MODPERL2_DEPS} AP_MODPERL_CONFIGURE_ON= --with-apachectl=${LOCALBASE}/sbin/apachectl AP_MODFASTCGI_DESC= Deploy with apache and mod_fastcgi AP_MODFASTCGI_USE= APACHE_RUN=22+ -AP_MODFASTCGI_BUILD_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi AP_MODFASTCGI_RUN_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_fastcgi.so:${PORTSDIR}/www/mod_fastcgi \ ${FASTCGI_DEPS} AP_MODFASTCGI_CONFIGURE_ON= --with-apachectl=${LOCALBASE}/sbin/apachectl LIGHTTPD_DESC= Deploy with lighttpd and mod_fastcgi -LIGHTTPD_BUILD_DEPENDS= ${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd LIGHTTPD_RUN_DEPENDS= ${LOCALBASE}/sbin/lighttpd:${PORTSDIR}/www/lighttpd SPAWN_FCGI_DESC= Deploy with spawn_fcgi -SPAWN_FCGI_BUILD_DEPENDS= ${LOCALBASE}/bin/spawn-fcgi:${PORTSDIR}/www/spawn-fcgi SPAWN_FCGI_RUN_DEPENDS= ${LOCALBASE}/bin/spawn-fcgi:${PORTSDIR}/www/spawn-fcgi MYSQL_USE= MYSQL=yes -MYSQL_BUILD_DEPENDS= ${MYSQL_DEPS} MYSQL_RUN_DEPENDS= ${MYSQL_DEPS} PGSQL_USE= PGSQL=yes -PGSQL_BUILD_DEPENDS= ${PGSQL_DEPS} PGSQL_RUN_DEPENDS= ${PGSQL_DEPS} -ORACLE_BUILD_DEPENDS= ${ORACLE_DEPS} ORACLE_RUN_DEPENDS= ${ORACLE_DEPS} SQLITE_USE= SQLITE=yes -SQLITE_BUILD_DEPENDS= ${SQLITE_DEPS} SQLITE_RUN_DEPENDS= ${SQLITE_DEPS} DEV_DESC= Configure for Developers -DEV_BUILD_DEPENDS= ${DEV_DEPS} DEV_RUN_DEPENDS= ${DEV_DEPS} DEV_CONFIGURE_ON= --enable-developer-mode SSL_MAILGATE_DESC= Enable HTTPS support for rt-mailgate -SSL_MAILGATE_BUILD_DEPENDS= ${SSL_MAILGATE_DEPS} SSL_MAILGATE_RUN_DEPENDS= ${SSL_MAILGATE_DEPS} SSL_MAILGATE_CONFIGURE_ENABLE= ssl-mailgate -GRAPHVIZ_BUILD_DEPENDS= ${GRAPHVIZ_DEPS} GRAPHVIZ_RUN_DEPENDS= ${GRAPHVIZ_DEPS} GRAPHVIZ_CONFIGURE_ENABLE= graphviz GPG_DESC= Enable GnuPG support -GPG_BUILD_DEPENDS= ${GPG_DEPS} GPG_RUN_DEPENDS= ${GPG_DEPS} GPG_CONFIGURE_ENABLE= gpg GD_DESC= Enable GD Graphs and Charts -GD_BUILD_DEPENDS= ${GD_DEPS} GD_RUN_DEPENDS= ${GD_DEPS} GD_CONFIGURE_ENABLE= gd +BUILD_DEPENDS+= ${RUN_DEPENDS} + .include .if !${PORT_OPTIONS:MMYSQL} && !${PORT_OPTIONS:MPGSQL} && \ From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:48:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ADF6AF01; Sun, 19 Jan 2014 14:48:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7FD681283; Sun, 19 Jan 2014 14:48:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEmNLY054160; Sun, 19 Jan 2014 14:48:23 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEmNd2054157; Sun, 19 Jan 2014 14:48:23 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201401191448.s0JEmNd2054157@svn.freebsd.org> From: Bryan Drewery Date: Sun, 19 Jan 2014 14:48:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340313 - head/ports-mgmt/poudriere X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 14:48:23 -0000 Author: bdrewery Date: Sun Jan 19 14:48:22 2014 New Revision: 340313 URL: http://svnweb.freebsd.org/changeset/ports/340313 QAT: https://qat.redports.org/buildarchive/r340313/ Log: - Update to 3.0.14 Changes: * Fix dependencies when existing packages have their origins moved via MOVED by now loading and parsing MOVED for existing packages only. * Force umount some directories to avoid desktop utils traversing them causing them to remain mounted. * Fix stage orphan false-positives with KDE4_PREFIX * Fix a race condition in bulk which could lead to 'unknown stuck queue bug' * Fix usage of cpdup(1) -X [no functional change] * Speedup bulk startup by not rolling back fresh builder jails * Various parallel execution fixes * Parallel execution errors now wait up to 30 seconds for children to finish before ending the build. * Ignore home directory of users created by ports during leftover check Modified: head/ports-mgmt/poudriere/Makefile head/ports-mgmt/poudriere/distinfo Modified: head/ports-mgmt/poudriere/Makefile ============================================================================== --- head/ports-mgmt/poudriere/Makefile Sun Jan 19 14:34:39 2014 (r340312) +++ head/ports-mgmt/poudriere/Makefile Sun Jan 19 14:48:22 2014 (r340313) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 3.0.13 +PORTVERSION= 3.0.14 CATEGORIES= ports-mgmt MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ \ LOCAL/bdrewery/${PORTNAME}/ Modified: head/ports-mgmt/poudriere/distinfo ============================================================================== --- head/ports-mgmt/poudriere/distinfo Sun Jan 19 14:34:39 2014 (r340312) +++ head/ports-mgmt/poudriere/distinfo Sun Jan 19 14:48:22 2014 (r340313) @@ -1,2 +1,2 @@ -SHA256 (poudriere-3.0.13.tar.gz?uuid=3.0.13) = e7d40e6d75d13f970d6aae0bb9711299732d9fad99935f09ef6dfc7597595075 -SIZE (poudriere-3.0.13.tar.gz?uuid=3.0.13) = 153456 +SHA256 (poudriere-3.0.14.tar.gz?uuid=3.0.14) = 2e8432839c6a4df8d51d284ee6f466583cfefca346ba0dbfdf63507f07da88eb +SIZE (poudriere-3.0.14.tar.gz?uuid=3.0.14) = 154582 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:58:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 659061B3; Sun, 19 Jan 2014 14:58:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 42ECE1315; Sun, 19 Jan 2014 14:58:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEw5bh057822; Sun, 19 Jan 2014 14:58:05 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEw4Rw057818; Sun, 19 Jan 2014 14:58:04 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401191458.s0JEw4Rw057818@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 19 Jan 2014 14:58:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340314 - in head/emulators/snes9x-gtk: . 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.17 Precedence: list List-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, 19 Jan 2014 14:58:05 -0000 Author: rakuco Date: Sun Jan 19 14:58:04 2014 New Revision: 340314 URL: http://svnweb.freebsd.org/changeset/ports/340314 QAT: https://qat.redports.org/buildarchive/r340314/ Log: - Update to 1.53r81. - Remove the ASM and MMX option as the configure script does not recognize "--with-assembler" and "--with-mmx" anymore. - Support staging. PR: ports/ Added: head/emulators/snes9x-gtk/files/patch-gtk-configure (contents, props changed) head/emulators/snes9x-gtk/files/patch-gtk-src-gtk__s9x.cpp (contents, props changed) Modified: head/emulators/snes9x-gtk/Makefile head/emulators/snes9x-gtk/distinfo Modified: head/emulators/snes9x-gtk/Makefile ============================================================================== --- head/emulators/snes9x-gtk/Makefile Sun Jan 19 14:48:22 2014 (r340313) +++ head/emulators/snes9x-gtk/Makefile Sun Jan 19 14:58:04 2014 (r340314) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= snes9x -PORTVERSION= 1.52r79 -PORTREVISION= 4 +PORTVERSION= 1.53r81 CATEGORIES= emulators MASTER_SITES= http://snes9x-gtk.googlecode.com/files/ PKGNAMESUFFIX= -gtk -DISTNAME= snes9x-1.52-src +DISTNAME= snes9x-1.53-src MAINTAINER= root@cooltrainer.org COMMENT= Super Nintendo Entertainment System(SNES) Emulator @@ -23,19 +22,17 @@ USE_SDL= sdl CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS+= --without-alsa +#USE_AUTOTOOLS= autoconf aclocal WRKSRC= ${WRKDIR}/${DISTNAME}/gtk OPTIONS_DEFINE= DEBUG OPENGL JMA NETPLAY XV XRANDR OPTIONS_DEFAULT= JMA NETPLAY XV XRANDR -OPTIONS_DEFINE_i386= ASM MMX -OPTIONS_DEFAULT_i386= ASM JMA_DESC= Enable JMA archive decompression support NETPLAY_DESC= Enable network support XV_DESC= Enable XVideo output on GTK XRANDR_DESC= Enable XRandR support on GTK -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDEBUG} @@ -44,19 +41,6 @@ CONFIGURE_ARGS+= --with-debug CONFIGURE_ARGS+= --without-debug .endif -.if ${PORT_OPTIONS:MASM} -BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm -CONFIGURE_ARGS+= --with-assembler -.else -CONFIGURE_ARGS+= --without-assembler -.endif - -.if ${PORT_OPTIONS:MMMX} && !defined(PACKAGE_BUILDING) -CONFIGURE_ARGS+= --with-mmx -.else -CONFIGURE_ARGS+= --without-mmx -.endif - .if ${PORT_OPTIONS:MOPENGL} CONFIGURE_ARGS+= --with-opengl USE_GL= glu @@ -97,9 +81,12 @@ CONFIGURE_ARGS+= --without-joystick .endif do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}${PKGNAMESUFFIX} ${PREFIX}/bin/${PORTNAME}${PKGNAMESUFFIX} - ${INSTALL_DATA} ${WRKSRC}/data/snes9x.svg ${PREFIX}/share/pixmaps - ${INSTALL_DATA} ${WRKSRC}/data/snes9x.desktop ${PREFIX}/share/applications + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}${PKGNAMESUFFIX} \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME}${PKGNAMESUFFIX} + ${INSTALL_DATA} ${WRKSRC}/data/snes9x.svg \ + ${STAGEDIR}${PREFIX}/share/pixmaps + ${INSTALL_DATA} ${WRKSRC}/data/snes9x.desktop \ + ${STAGEDIR}${PREFIX}/share/applications post-install: -@update-desktop-database Modified: head/emulators/snes9x-gtk/distinfo ============================================================================== --- head/emulators/snes9x-gtk/distinfo Sun Jan 19 14:48:22 2014 (r340313) +++ head/emulators/snes9x-gtk/distinfo Sun Jan 19 14:58:04 2014 (r340314) @@ -1,2 +1,2 @@ -SHA256 (snes9x-1.52-src.tar.bz2) = 36e09b2da62b9210feb224cfd183047a151a71c1d5e5f92749dc28bd4b7ff1cb -SIZE (snes9x-1.52-src.tar.bz2) = 1720137 +SHA256 (snes9x-1.53-src.tar.bz2) = 9f7c5d2d0fa3fe753611cf94e8879b73b8bb3c0eab97cdbcb6ab7376efa78dc3 +SIZE (snes9x-1.53-src.tar.bz2) = 1838746 Added: head/emulators/snes9x-gtk/files/patch-gtk-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/snes9x-gtk/files/patch-gtk-configure Sun Jan 19 14:58:04 2014 (r340314) @@ -0,0 +1,11 @@ +--- configure.orig 2013-10-25 02:52:16.000000000 -0700 ++++ configure 2013-10-25 02:52:43.000000000 -0700 +@@ -6316,7 +6316,7 @@ + CFLAGS="$CFLAGS -fomit-frame-pointer" + fi + +-LIBS="$LIBS -lX11 -ldl -lXext" ++LIBS="$LIBS -lX11 -lXext" + + ZSNESFX='#ZSNESFX=yes' + ZSNESC4='#ZSNESC4=yes' Added: head/emulators/snes9x-gtk/files/patch-gtk-src-gtk__s9x.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/snes9x-gtk/files/patch-gtk-src-gtk__s9x.cpp Sun Jan 19 14:58:04 2014 (r340314) @@ -0,0 +1,19 @@ +--- src/gtk_s9x.cpp.orig 2013-10-25 03:47:08.000000000 -0700 ++++ src/gtk_s9x.cpp 2013-10-25 03:47:32.000000000 -0700 +@@ -44,6 +44,7 @@ + + g_thread_init (NULL); + gdk_threads_init (); ++ gdk_threads_enter(); + + gtk_init (&argc, &argv); + +@@ -127,6 +128,8 @@ + + gtk_main (); + ++ gdk_threads_leave(); ++ + return 0; + } + From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 14:58:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE62D291; Sun, 19 Jan 2014 14:58:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8F368131C; Sun, 19 Jan 2014 14:58:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JEwmJP057981; Sun, 19 Jan 2014 14:58:48 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JEwleF057978; Sun, 19 Jan 2014 14:58:47 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201401191458.s0JEwleF057978@svn.freebsd.org> From: Jun Kuriyama Date: Sun, 19 Jan 2014 14:58:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340315 - in head/japanese/php5-mecab: . 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.17 Precedence: list List-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, 19 Jan 2014 14:58:48 -0000 Author: kuriyama Date: Sun Jan 19 14:58:47 2014 New Revision: 340315 URL: http://svnweb.freebsd.org/changeset/ports/340315 QAT: https://qat.redports.org/buildarchive/r340315/ Log: - Upgrade to 0.5.0 and unbreak with modern PHP versions. Deleted: head/japanese/php5-mecab/files/patch-mecab.c Modified: head/japanese/php5-mecab/Makefile head/japanese/php5-mecab/distinfo head/japanese/php5-mecab/pkg-descr Modified: head/japanese/php5-mecab/Makefile ============================================================================== --- head/japanese/php5-mecab/Makefile Sun Jan 19 14:58:04 2014 (r340314) +++ head/japanese/php5-mecab/Makefile Sun Jan 19 14:58:47 2014 (r340315) @@ -1,11 +1,10 @@ # $FreeBSD$ PORTNAME= mecab -PORTVERSION= 0.4.0 +PORTVERSION= 0.5.0 CATEGORIES= japanese -MASTER_SITES= http://www.opendogs.org/pub/ \ - http://dist.bsdlab.org/ -DISTNAME= php_mecab-${PORTVERSION} +MASTER_SITES= http://github.com/downloads/rsky/php-${PORTNAME}/ +DISTNAME= php-mecab-${PORTVERSION} EXTRACT_SUFX= .tgz MAINTAINER= kuriyama@FreeBSD.org @@ -15,13 +14,10 @@ LIB_DEPENDS= mecab:${PORTSDIR}/japanese/ USE_PHP= yes USE_PHPEXT= yes -DEFAULT_PHP_VER=53 -IGNORE_WITH_PHP=5 CONFIGURE_ARGS= --with-mecab=${LOCALBASE}/bin/mecab-config CONFIGURE_ENV= LIBS="${LIBS} ${PTHREAD_LIBS}" CFLAGS+= ${PTHREAD_CFLAGS} -NO_STAGE= yes .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}php5- Modified: head/japanese/php5-mecab/distinfo ============================================================================== --- head/japanese/php5-mecab/distinfo Sun Jan 19 14:58:04 2014 (r340314) +++ head/japanese/php5-mecab/distinfo Sun Jan 19 14:58:47 2014 (r340315) @@ -1,2 +1,2 @@ -SHA256 (php_mecab-0.4.0.tgz) = 9779946dfe13cd8338d92263dea920bf2588f7b61610737482e2bd8e128b376d -SIZE (php_mecab-0.4.0.tgz) = 45388 +SHA256 (php-mecab-0.5.0.tgz) = e5c84a8ffa39a8a0dd60424b879806382ec0f66d50007f6bfad6831074b3bcc5 +SIZE (php-mecab-0.5.0.tgz) = 50180 Modified: head/japanese/php5-mecab/pkg-descr ============================================================================== --- head/japanese/php5-mecab/pkg-descr Sun Jan 19 14:58:04 2014 (r340314) +++ head/japanese/php5-mecab/pkg-descr Sun Jan 19 14:58:47 2014 (r340315) @@ -1,3 +1,3 @@ A PHP5 extension for MeCab Morphological Analyzer. -WWW: http://page2.xrea.jp/#php_mecab (Japanese) +WWW: https://github.com/rsky/php-mecab From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 15:00:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 209F039E; Sun, 19 Jan 2014 15:00:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0CD46132B; Sun, 19 Jan 2014 15:00:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JF0Ous058423; Sun, 19 Jan 2014 15:00:24 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JF0OCt058422; Sun, 19 Jan 2014 15:00:24 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401191500.s0JF0OCt058422@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 19 Jan 2014 15:00:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340316 - head/emulators/snes9x-gtk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 15:00:25 -0000 Author: rakuco Date: Sun Jan 19 15:00:24 2014 New Revision: 340316 URL: http://svnweb.freebsd.org/changeset/ports/340316 QAT: https://qat.redports.org/buildarchive/r340316/ Log: Remove commented out line Modified: head/emulators/snes9x-gtk/Makefile Modified: head/emulators/snes9x-gtk/Makefile ============================================================================== --- head/emulators/snes9x-gtk/Makefile Sun Jan 19 14:58:47 2014 (r340315) +++ head/emulators/snes9x-gtk/Makefile Sun Jan 19 15:00:24 2014 (r340316) @@ -22,7 +22,6 @@ USE_SDL= sdl CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS+= --without-alsa -#USE_AUTOTOOLS= autoconf aclocal WRKSRC= ${WRKDIR}/${DISTNAME}/gtk From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 15:01:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5420B47E; Sun, 19 Jan 2014 15:01:28 +0000 (UTC) Received: from mail-lb0-x233.google.com (mail-lb0-x233.google.com [IPv6:2a00:1450:4010:c04::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 747B11386; Sun, 19 Jan 2014 15:01:27 +0000 (UTC) Received: by mail-lb0-f179.google.com with SMTP id l4so2583366lbv.24 for ; Sun, 19 Jan 2014 07:01:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=CR8Zicz/7ie8+gAp/Epnw3CeF5DCMDKC24oi0LXLgu8=; b=iyBOxiVcHqaS48JT9JfUoAcgIQ1Sk0DTT28WFZTl0bqdfP/S9Rnj3OrCpiGSogsokO mB5XDYCb5mFjU8KQzR8SDC7gBDO+HSpZH6esDnulX1qjUBaJZ08Hr5x63bF1CSagLN4Y R29F0HK9OqrcmUqr08JcCfgfVgON+QmGlF3loj0d6zDe0CljRDQWCJ33PzW3CLrvSOPF 9W4S5am/U0BW/a+Ii8up2hmIqAkXwu3j0WIkI0g+nbgkxeM9JJCYfvHmI/wktDpi/vTK X32+m9HKgKnWX/8lg6LnvH35nh9isUPlmARTk36sS0XnbAYgODHOUdhzgYlo/gIXmN38 XAnw== X-Received: by 10.152.44.202 with SMTP id g10mr8525245lam.16.1390143685373; Sun, 19 Jan 2014 07:01:25 -0800 (PST) Received: from orwell.Elisa.gmail.com (a91-154-115-217.elisa-laajakaista.fi. [91.154.115.217]) by mx.google.com with ESMTPSA id qe4sm9162482lbb.8.2014.01.19.07.01.23 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 19 Jan 2014 07:01:24 -0800 (PST) Sender: Raphael Kubo da Costa From: Raphael Kubo da Costa To: ports-committers@freebsd.org Subject: Re: svn commit: r340314 - in head/emulators/snes9x-gtk: . files References: <201401191458.s0JEw4Rw057818@svn.freebsd.org> Date: Sun, 19 Jan 2014 17:01:16 +0200 In-Reply-To: <201401191458.s0JEw4Rw057818@svn.freebsd.org> (Raphael Kubo da Costa's message of "Sun, 19 Jan 2014 14:58:04 +0000 (UTC)") Message-ID: <86k3dwqamb.fsf@orwell.Elisa> User-Agent: Gnus/5.130008 (Ma Gnus v0.8) Emacs/24.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 15:01:28 -0000 Raphael Kubo da Costa writes: > Author: rakuco > Date: Sun Jan 19 14:58:04 2014 > New Revision: 340314 > URL: http://svnweb.freebsd.org/changeset/ports/340314 > QAT: https://qat.redports.org/buildarchive/r340314/ > > Log: > - Update to 1.53r81. > - Remove the ASM and MMX option as the configure script does not recognize > "--with-assembler" and "--with-mmx" anymore. > - Support staging. > > PR: ports/ PR: ports/183318 Submitted by: Max Sterling Approved by: maintainer timeout (85 days) From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 15:46:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02E79CDF; Sun, 19 Jan 2014 15:46:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D6B431666; Sun, 19 Jan 2014 15:46:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JFkqq1076759; Sun, 19 Jan 2014 15:46:52 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JFkqgu076752; Sun, 19 Jan 2014 15:46:52 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201401191546.s0JFkqgu076752@svn.freebsd.org> From: Jun Kuriyama Date: Sun, 19 Jan 2014 15:46:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340317 - head/devel/p5-carton X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 15:46:53 -0000 Author: kuriyama Date: Sun Jan 19 15:46:51 2014 New Revision: 340317 URL: http://svnweb.freebsd.org/changeset/ports/340317 QAT: https://qat.redports.org/buildarchive/r340317/ Log: - Upgrade to 1.0.12. Modified: head/devel/p5-carton/Makefile head/devel/p5-carton/distinfo head/devel/p5-carton/pkg-descr head/devel/p5-carton/pkg-plist Modified: head/devel/p5-carton/Makefile ============================================================================== --- head/devel/p5-carton/Makefile Sun Jan 19 15:00:24 2014 (r340316) +++ head/devel/p5-carton/Makefile Sun Jan 19 15:46:51 2014 (r340317) @@ -1,41 +1,33 @@ # $FreeBSD$ PORTNAME= carton -PORTVERSION= 0.9.15 +PORTVERSION= 1.0.12 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MIYAGAWA PKGNAMEPREFIX= p5- -DISTNAME= ${PORTNAME}-v${PORTVERSION} +DISTNAME= Carton-v${PORTVERSION} MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl module dependency manager RUN_DEPENDS= \ - p5-App-cpanminus>=1.6:${PORTSDIR}/devel/p5-App-cpanminus \ + p5-App-FatPacker>=0.009018:${PORTSDIR}/devel/p5-App-FatPacker \ + p5-App-cpanminus>=1.694:${PORTSDIR}/devel/p5-App-cpanminus \ p5-CPAN-Meta>=2.120921:${PORTSDIR}/devel/p5-CPAN-Meta \ p5-CPAN-Meta-Requirements>=2.121:${PORTSDIR}/devel/p5-CPAN-Meta-Requirements \ - p5-Capture-Tiny>0:${PORTSDIR}/devel/p5-Capture-Tiny \ p5-Exception-Class>=1.32:${PORTSDIR}/devel/p5-Exception-Class \ + p5-File-pushd>0:${PORTSDIR}/devel/p5-File-pushd \ p5-JSON>=2.53:${PORTSDIR}/converters/p5-JSON \ - p5-Module-CPANfile>=0.9004:${PORTSDIR}/devel/p5-Module-CPANfile \ + p5-Module-CPANfile>=0.9031:${PORTSDIR}/devel/p5-Module-CPANfile \ p5-Module-Metadata>=1.000003:${PORTSDIR}/devel/p5-Module-Metadata \ - p5-Try-Tiny>=0.09:${PORTSDIR}/lang/p5-Try-Tiny \ - p5-local-lib>=1.008:${PORTSDIR}/devel/p5-local-lib + p5-Module-Reader>=0.002:${PORTSDIR}/devel/p5-Module-Reader \ + p5-Moo>=1.002:${PORTSDIR}/devel/p5-Moo \ + p5-Path-Tiny>=0.033:${PORTSDIR}/devel/p5-Path-Tiny \ + p5-Try-Tiny>=0.09:${PORTSDIR}/lang/p5-Try-Tiny BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= modbuild -MAN3= Carton.3 \ - Carton::Doc::Check.3 \ - Carton::Doc::Exec.3 \ - Carton::Doc::FAQ.3 \ - Carton::Doc::Install.3 \ - Carton::Doc::List.3 \ - Carton::Doc::Show.3 \ - Carton::Doc::Tree.3 \ - Carton::Doc::Version.3 - -NO_STAGE= yes .include Modified: head/devel/p5-carton/distinfo ============================================================================== --- head/devel/p5-carton/distinfo Sun Jan 19 15:00:24 2014 (r340316) +++ head/devel/p5-carton/distinfo Sun Jan 19 15:46:51 2014 (r340317) @@ -1,2 +1,2 @@ -SHA256 (carton-v0.9.15.tar.gz) = 4407648c44729742c7170e98c6f5aa3f32f89ed0d7262f141703dbf981f906b8 -SIZE (carton-v0.9.15.tar.gz) = 77756 +SHA256 (Carton-v1.0.12.tar.gz) = 6ae0ae33bfa75e7cf23fd8d486fc6ed8b1dbb994472a8160e214498e95ddc3c3 +SIZE (Carton-v1.0.12.tar.gz) = 85683 Modified: head/devel/p5-carton/pkg-descr ============================================================================== --- head/devel/p5-carton/pkg-descr Sun Jan 19 15:00:24 2014 (r340316) +++ head/devel/p5-carton/pkg-descr Sun Jan 19 15:46:51 2014 (r340317) @@ -4,4 +4,4 @@ carton.lock file, which is meant to be v lock file allows other developers of your application will have the exact same versions of the modules. -WWW: http://search.cpan.org/dist/carton/ +WWW: http://search.cpan.org/dist/Carton/ Modified: head/devel/p5-carton/pkg-plist ============================================================================== --- head/devel/p5-carton/pkg-plist Sun Jan 19 15:00:24 2014 (r340316) +++ head/devel/p5-carton/pkg-plist Sun Jan 19 15:46:51 2014 (r340317) @@ -1,6 +1,25 @@ +man/man1/carton.1.gz +%%PERL5_MAN3%%/Carton.3.gz +%%PERL5_MAN3%%/Carton::Doc::Bundle.3.gz +%%PERL5_MAN3%%/Carton::Doc::Check.3.gz +%%PERL5_MAN3%%/Carton::Doc::Exec.3.gz +%%PERL5_MAN3%%/Carton::Doc::FAQ.3.gz +%%PERL5_MAN3%%/Carton::Doc::Install.3.gz +%%PERL5_MAN3%%/Carton::Doc::List.3.gz +%%PERL5_MAN3%%/Carton::Doc::Show.3.gz +%%PERL5_MAN3%%/Carton::Doc::Tree.3.gz +%%PERL5_MAN3%%/Carton::Doc::Update.3.gz +%%PERL5_MAN3%%/Carton::Doc::Upgrading.3.gz +%%PERL5_MAN3%%/Carton::Doc::Version.3.gz bin/carton %%SITE_PERL%%/Carton.pm +%%SITE_PERL%%/Carton/Builder.pm %%SITE_PERL%%/Carton/CLI.pm +%%SITE_PERL%%/Carton/CPANfile.pm +%%SITE_PERL%%/Carton/Dependency.pm +%%SITE_PERL%%/Carton/Dist.pm +%%SITE_PERL%%/Carton/Dist/Core.pm +%%SITE_PERL%%/Carton/Doc/Bundle.pod %%SITE_PERL%%/Carton/Doc/Check.pod %%SITE_PERL%%/Carton/Doc/Exec.pod %%SITE_PERL%%/Carton/Doc/FAQ.pod @@ -8,9 +27,21 @@ bin/carton %%SITE_PERL%%/Carton/Doc/List.pod %%SITE_PERL%%/Carton/Doc/Show.pod %%SITE_PERL%%/Carton/Doc/Tree.pod +%%SITE_PERL%%/Carton/Doc/Update.pod +%%SITE_PERL%%/Carton/Doc/Upgrading.pod %%SITE_PERL%%/Carton/Doc/Version.pod +%%SITE_PERL%%/Carton/Environment.pm %%SITE_PERL%%/Carton/Error.pm +%%SITE_PERL%%/Carton/Index.pm +%%SITE_PERL%%/Carton/Mirror.pm +%%SITE_PERL%%/Carton/Package.pm +%%SITE_PERL%%/Carton/Packer.pm +%%SITE_PERL%%/Carton/Snapshot.pm +%%SITE_PERL%%/Carton/Snapshot/Emitter.pm +%%SITE_PERL%%/Carton/Snapshot/Parser.pm %%SITE_PERL%%/Carton/Tree.pm %%SITE_PERL%%/Carton/Util.pm +@dirrm %%SITE_PERL%%/Carton/Snapshot @dirrm %%SITE_PERL%%/Carton/Doc +@dirrm %%SITE_PERL%%/Carton/Dist @dirrm %%SITE_PERL%%/Carton From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 15:52:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40258E32; Sun, 19 Jan 2014 15:52:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2BE7F16CA; Sun, 19 Jan 2014 15:52:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JFqCfZ079949; Sun, 19 Jan 2014 15:52:12 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JFqB9R079947; Sun, 19 Jan 2014 15:52:11 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201401191552.s0JFqB9R079947@svn.freebsd.org> From: TAKATSU Tomonari Date: Sun, 19 Jan 2014 15:52:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340318 - head/devel/R-cran-caret X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 15:52:12 -0000 Author: tota Date: Sun Jan 19 15:52:11 2014 New Revision: 340318 URL: http://svnweb.freebsd.org/changeset/ports/340318 QAT: https://qat.redports.org/buildarchive/r340318/ Log: - Update to 6.0-22 Modified: head/devel/R-cran-caret/Makefile head/devel/R-cran-caret/distinfo Modified: head/devel/R-cran-caret/Makefile ============================================================================== --- head/devel/R-cran-caret/Makefile Sun Jan 19 15:46:51 2014 (r340317) +++ head/devel/R-cran-caret/Makefile Sun Jan 19 15:52:11 2014 (r340318) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= caret -DISTVERSION= 6.0-21 +DISTVERSION= 6.0-22 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/devel/R-cran-caret/distinfo ============================================================================== --- head/devel/R-cran-caret/distinfo Sun Jan 19 15:46:51 2014 (r340317) +++ head/devel/R-cran-caret/distinfo Sun Jan 19 15:52:11 2014 (r340318) @@ -1,2 +1,2 @@ -SHA256 (caret_6.0-21.tar.gz) = cb91eb1fffda884220020230a9ac1c77372e57e1938e8830974e8c86c84464b8 -SIZE (caret_6.0-21.tar.gz) = 3232544 +SHA256 (caret_6.0-22.tar.gz) = 13f6c579aa564d9f1af6823b46a43aea318778b561d3ddf7c8851cb8e2daee7b +SIZE (caret_6.0-22.tar.gz) = 3233278 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 15:54:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E5FBF1E; Sun, 19 Jan 2014 15:54:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7A56116D7; Sun, 19 Jan 2014 15:54:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JFsJ7N080228; Sun, 19 Jan 2014 15:54:19 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JFsJ5D080227; Sun, 19 Jan 2014 15:54:19 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191554.s0JFsJ5D080227@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 15:54:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340319 - head/graphics/tesseract-data X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 15:54:19 -0000 Author: bapt Date: Sun Jan 19 15:54:18 2014 New Revision: 340319 URL: http://svnweb.freebsd.org/changeset/ports/340319 QAT: https://qat.redports.org/buildarchive/r340319/ Log: Support stage Get rid of noportdata references Modified: head/graphics/tesseract-data/Makefile Modified: head/graphics/tesseract-data/Makefile ============================================================================== --- head/graphics/tesseract-data/Makefile Sun Jan 19 15:52:11 2014 (r340318) +++ head/graphics/tesseract-data/Makefile Sun Jan 19 15:54:18 2014 (r340319) @@ -43,12 +43,9 @@ TESSERACT_LANGS_30${n}+= ${LANGS_30${n}: .endfor .endfor -.ifndef NOPORTDATA DATADIR= ${PREFIX}/share/tessdata PORTDATA= ${TESSERACT_LANGS:O:u:S|$|.traineddata|} -.endif -NO_STAGE= yes pre-fetch: @${ECHO_MSG} "" @${ECHO_MSG} "The choice of language data to be installed may" @@ -56,19 +53,16 @@ pre-fetch: @${ECHO_MSG} "" do-install: -.ifndef NOPORTDATA - @${MKDIR} ${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} .for l in ${TESSERACT_LANGS_300:O:u:S|$|.traineddata|} - @${GUNZIP_CMD} -c ${_DISTDIR}/${l}.gz > ${DATADIR}/${l} + @${GUNZIP_CMD} -c ${_DISTDIR}/${l}.gz > ${STAGEDIR}${DATADIR}/${l} .endfor .for n in 1 2 .for l in ${TESSERACT_LANGS_30${n}:O:u} - @${TAR} --strip-components 2 -C ${DATADIR} \ + @${TAR} --strip-components 2 -C ${STAGEDIR}${DATADIR} \ -xf ${_DISTDIR}/tesseract-ocr-3.0${n}.${l}.tar.gz *.traineddata .endfor .endfor - @cd ${DATADIR} ; ${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PORTDATA} ; \ - ${CHMOD} ${BINMODE} ${PORTDATA} -.endif + @cd ${STAGEDIR}${DATADIR} ; ${CHMOD} ${BINMODE} ${PORTDATA} .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:02:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA161D7; Sun, 19 Jan 2014 16:02:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BB77A1769; Sun, 19 Jan 2014 16:02:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JG2bob084014; Sun, 19 Jan 2014 16:02:37 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JG2bNq084011; Sun, 19 Jan 2014 16:02:37 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401191602.s0JG2bNq084011@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 19 Jan 2014 16:02:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340320 - in head/astro/qlandkartegt: . 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.17 Precedence: list List-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, 19 Jan 2014 16:02:38 -0000 Author: rakuco Date: Sun Jan 19 16:02:36 2014 New Revision: 340320 URL: http://svnweb.freebsd.org/changeset/ports/340320 QAT: https://qat.redports.org/buildarchive/r340320/ Log: Update to 1.7.5. While here, stop using MAN1 now that the port supports staging. PR: ports/185492 Submitted by: Christoph Moench-Tegeder Approved by: maintainer timeout (14 days) Deleted: head/astro/qlandkartegt/files/patch-3rdparty-map2gcm-main.cpp head/astro/qlandkartegt/files/patch-3rdparty-map2jnx-main.cpp head/astro/qlandkartegt/files/patch-src-CMapTDB.h Modified: head/astro/qlandkartegt/Makefile head/astro/qlandkartegt/distinfo head/astro/qlandkartegt/pkg-plist Modified: head/astro/qlandkartegt/Makefile ============================================================================== --- head/astro/qlandkartegt/Makefile Sun Jan 19 15:54:18 2014 (r340319) +++ head/astro/qlandkartegt/Makefile Sun Jan 19 16:02:36 2014 (r340320) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qlandkartegt -PORTVERSION= 1.7.4 +PORTVERSION= 1.7.5 CATEGORIES= astro MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/QLandkarteGT%20${PORTVERSION} @@ -20,6 +20,4 @@ USE_QT4= dbus gui opengl network sql xml moc_build uic_build rcc_build qmake_build USE_GL= glu -MAN1= qlandkartegt.1 - .include Modified: head/astro/qlandkartegt/distinfo ============================================================================== --- head/astro/qlandkartegt/distinfo Sun Jan 19 15:54:18 2014 (r340319) +++ head/astro/qlandkartegt/distinfo Sun Jan 19 16:02:36 2014 (r340320) @@ -1,2 +1,2 @@ -SHA256 (qlandkartegt-1.7.4.tar.gz) = d6412ae6b34c2ec8a5f929f7aa8b4d1a660f913f16ea52096f93b42d4f271daf -SIZE (qlandkartegt-1.7.4.tar.gz) = 8332394 +SHA256 (qlandkartegt-1.7.5.tar.gz) = a8b571ba838568ed258c61fa0ab18b370c7d22d2539a632a0028b78f4a22aa2c +SIZE (qlandkartegt-1.7.5.tar.gz) = 8351098 Modified: head/astro/qlandkartegt/pkg-plist ============================================================================== --- head/astro/qlandkartegt/pkg-plist Sun Jan 19 15:54:18 2014 (r340319) +++ head/astro/qlandkartegt/pkg-plist Sun Jan 19 16:02:36 2014 (r340320) @@ -4,6 +4,7 @@ bin/map2jnx bin/map2rmap bin/map2rmp bin/qlandkartegt +man/man1/qlandkartegt.1.gz share/applications/qlandkartegt.desktop share/pixmaps/qlandkartegt.png %%DATADIR%%/translations/qlandkartegt_cs.qm From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:15:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 7FD1C3FF; Sun, 19 Jan 2014 16:15:04 +0000 (UTC) Date: Sun, 19 Jan 2014 16:15:04 +0000 From: Alexey Dokuchaev To: Marcus von Appen Subject: Re: svn commit: r340160 - head/graphics/sdl_ttf Message-ID: <20140119161504.GA21615@FreeBSD.org> References: <201401180937.s0I9bogk078728@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401180937.s0I9bogk078728@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 19 Jan 2014 16:15:04 -0000 On Sat, Jan 18, 2014 at 09:37:50AM +0000, Marcus von Appen wrote: > New Revision: 340160 > URL: http://svnweb.freebsd.org/changeset/ports/340160 > QAT: https://qat.redports.org/buildarchive/r340160/ > > -.if !defined(WITHOUT_X11) && !defined(WITHOUT_GL) > -USE_GL= yes > -.endif > +OPTIONS_DEFINE= OPENGL > +OPTIONS_DEFAULT= OPENGL > + > +OPENGL_USE= GL=yes Hmm, it would be nice to get rid of somewhat vague UES_GL=yes (which really means USE_GL=glu); many ports that have GL=yes should really be USE_GL=gl instead. ./danfe From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:26:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCC135DE; Sun, 19 Jan 2014 16:26:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B7DE118CA; Sun, 19 Jan 2014 16:26:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JGQJ8l092349; Sun, 19 Jan 2014 16:26:19 GMT (envelope-from trociny@svn.freebsd.org) Received: (from trociny@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JGQJhH092348; Sun, 19 Jan 2014 16:26:19 GMT (envelope-from trociny@svn.freebsd.org) Message-Id: <201401191626.s0JGQJhH092348@svn.freebsd.org> From: Mikolaj Golub Date: Sun, 19 Jan 2014 16:26:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340321 - head/sysutils/bsdcrashtar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 16:26:19 -0000 Author: trociny Date: Sun Jan 19 16:26:19 2014 New Revision: 340321 URL: http://svnweb.freebsd.org/changeset/ports/340321 QAT: https://qat.redports.org/buildarchive/r340321/ Log: Fix packaging as an unprivileged user. Modified: head/sysutils/bsdcrashtar/Makefile Modified: head/sysutils/bsdcrashtar/Makefile ============================================================================== --- head/sysutils/bsdcrashtar/Makefile Sun Jan 19 16:02:36 2014 (r340320) +++ head/sysutils/bsdcrashtar/Makefile Sun Jan 19 16:26:19 2014 (r340321) @@ -15,4 +15,9 @@ PLIST_FILES= sbin/bsdcrashtar \ MAKE_ENV+= NO_OBJ=yes +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/bsdcrashtar.sh \ + ${STAGEDIR}${PREFIX}/sbin/bsdcrashtar + ${INSTALL_MAN} ${WRKSRC}/bsdcrashtar.8 ${STAGEDIR}${PREFIX}/man/man8 + .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:26:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96A076B7; Sun, 19 Jan 2014 16:26:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 82D2518D0; Sun, 19 Jan 2014 16:26:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JGQjj2092456; Sun, 19 Jan 2014 16:26:45 GMT (envelope-from trociny@svn.freebsd.org) Received: (from trociny@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JGQjsR092454; Sun, 19 Jan 2014 16:26:45 GMT (envelope-from trociny@svn.freebsd.org) Message-Id: <201401191626.s0JGQjsR092454@svn.freebsd.org> From: Mikolaj Golub Date: Sun, 19 Jan 2014 16:26:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340322 - head/devel/bmkdep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 16:26:45 -0000 Author: trociny Date: Sun Jan 19 16:26:44 2014 New Revision: 340322 URL: http://svnweb.freebsd.org/changeset/ports/340322 QAT: https://qat.redports.org/buildarchive/r340322/ Log: Fix packaging as an unprivileged user. Modified: head/devel/bmkdep/Makefile Modified: head/devel/bmkdep/Makefile ============================================================================== --- head/devel/bmkdep/Makefile Sun Jan 19 16:26:19 2014 (r340321) +++ head/devel/bmkdep/Makefile Sun Jan 19 16:26:44 2014 (r340322) @@ -13,4 +13,8 @@ MAKE_ENV= PKGDIR="${PKGDIR}" NO_OBJ=YES PLIST_FILES= bin/bmkdep man/man1/bmkdep.1.gz +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bmkdep ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/bmkdep.1 ${STAGEDIR}${PREFIX}/man/man1 + .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:32:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5D337DB; Sun, 19 Jan 2014 16:32:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9119D1946; Sun, 19 Jan 2014 16:32:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JGWZwa095788; Sun, 19 Jan 2014 16:32:35 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JGWZ6f095785; Sun, 19 Jan 2014 16:32:35 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201401191632.s0JGWZ6f095785@svn.freebsd.org> From: Florian Smeets Date: Sun, 19 Jan 2014 16:32:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340323 - head/databases/percona-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.17 Precedence: list List-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, 19 Jan 2014 16:32:35 -0000 Author: flo Date: Sun Jan 19 16:32:34 2014 New Revision: 340323 URL: http://svnweb.freebsd.org/changeset/ports/340323 QAT: https://qat.redports.org/buildarchive/r340323/ Log: - Update to 2.2.6 [1] - Add LICENSE [1] - Support STAGE PR: ports/185882 [1] Submitted by: Gea-Suan Lin [1] Modified: head/databases/percona-toolkit/Makefile head/databases/percona-toolkit/distinfo head/databases/percona-toolkit/pkg-plist Modified: head/databases/percona-toolkit/Makefile ============================================================================== --- head/databases/percona-toolkit/Makefile Sun Jan 19 16:26:44 2014 (r340322) +++ head/databases/percona-toolkit/Makefile Sun Jan 19 16:32:34 2014 (r340323) @@ -1,13 +1,16 @@ # $FreeBSD$ PORTNAME= percona-toolkit -PORTVERSION= 2.2.4 +PORTVERSION= 2.2.6 CATEGORIES= databases MASTER_SITES= http://www.percona.com/downloads/percona-toolkit/${PORTVERSION}/ MAINTAINER= flo@FreeBSD.org COMMENT= Collection of essential command-line utilities for MySQL +LICENSE= ARTPERL10 GPLv2 +LICENSE_COMB= dual + RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \ p5-DBD-mysql>=3:${PORTSDIR}/databases/p5-DBD-mysql \ p5-DBI>=1.46:${PORTSDIR}/databases/p5-DBI \ @@ -16,40 +19,4 @@ RUN_DEPENDS= bash:${PORTSDIR}/shells/bas USES= perl5 USE_PERL5= configure -MAN1= percona-toolkit.1 \ - pt-agent.1 \ - pt-align.1 \ - pt-archiver.1 \ - pt-config-diff.1 \ - pt-deadlock-logger.1 \ - pt-diskstats.1 \ - pt-duplicate-key-checker.1 \ - pt-fifo-split.1 \ - pt-find.1 \ - pt-fingerprint.1 \ - pt-fk-error-logger.1 \ - pt-heartbeat.1 \ - pt-index-usage.1 \ - pt-ioprofile.1 \ - pt-kill.1 \ - pt-mext.1 \ - pt-mysql-summary.1 \ - pt-online-schema-change.1 \ - pt-pmp.1 \ - pt-query-digest.1 \ - pt-show-grants.1 \ - pt-sift.1 \ - pt-slave-delay.1 \ - pt-slave-find.1 \ - pt-slave-restart.1 \ - pt-stalk.1 \ - pt-summary.1 \ - pt-table-checksum.1 \ - pt-table-sync.1 \ - pt-table-usage.1 \ - pt-upgrade.1 \ - pt-variable-advisor.1 \ - pt-visual-explain.1 - -NO_STAGE= yes .include Modified: head/databases/percona-toolkit/distinfo ============================================================================== --- head/databases/percona-toolkit/distinfo Sun Jan 19 16:26:44 2014 (r340322) +++ head/databases/percona-toolkit/distinfo Sun Jan 19 16:32:34 2014 (r340323) @@ -1,2 +1,2 @@ -SHA256 (percona-toolkit-2.2.4.tar.gz) = 7e9b26046e7bce0eca9e3598f9c05435b75960d7d81e0dba5e65b00587514ee9 -SIZE (percona-toolkit-2.2.4.tar.gz) = 1442080 +SHA256 (percona-toolkit-2.2.6.tar.gz) = 24cd6924080ef235b770b3d6ab7f0ec4a023ceee1a9c7a50f983fdc6fc2787c8 +SIZE (percona-toolkit-2.2.6.tar.gz) = 1453461 Modified: head/databases/percona-toolkit/pkg-plist ============================================================================== --- head/databases/percona-toolkit/pkg-plist Sun Jan 19 16:26:44 2014 (r340322) +++ head/databases/percona-toolkit/pkg-plist Sun Jan 19 16:32:34 2014 (r340323) @@ -31,5 +31,39 @@ bin/pt-table-usage bin/pt-upgrade bin/pt-variable-advisor bin/pt-visual-explain +man/man1/percona-toolkit.1.gz +man/man1/pt-agent.1.gz +man/man1/pt-align.1.gz +man/man1/pt-archiver.1.gz +man/man1/pt-config-diff.1.gz +man/man1/pt-deadlock-logger.1.gz +man/man1/pt-diskstats.1.gz +man/man1/pt-duplicate-key-checker.1.gz +man/man1/pt-fifo-split.1.gz +man/man1/pt-find.1.gz +man/man1/pt-fingerprint.1.gz +man/man1/pt-fk-error-logger.1.gz +man/man1/pt-heartbeat.1.gz +man/man1/pt-index-usage.1.gz +man/man1/pt-ioprofile.1.gz +man/man1/pt-kill.1.gz +man/man1/pt-mext.1.gz +man/man1/pt-mysql-summary.1.gz +man/man1/pt-online-schema-change.1.gz +man/man1/pt-pmp.1.gz +man/man1/pt-query-digest.1.gz +man/man1/pt-show-grants.1.gz +man/man1/pt-sift.1.gz +man/man1/pt-slave-delay.1.gz +man/man1/pt-slave-find.1.gz +man/man1/pt-slave-restart.1.gz +man/man1/pt-stalk.1.gz +man/man1/pt-summary.1.gz +man/man1/pt-table-checksum.1.gz +man/man1/pt-table-sync.1.gz +man/man1/pt-table-usage.1.gz +man/man1/pt-upgrade.1.gz +man/man1/pt-variable-advisor.1.gz +man/man1/pt-visual-explain.1.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/percona-toolkit/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/percona-toolkit From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:36:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D52096B; Sun, 19 Jan 2014 16:36:36 +0000 (UTC) Received: from mail-wi0-x229.google.com (mail-wi0-x229.google.com [IPv6:2a00:1450:400c:c05::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 48F1E1971; Sun, 19 Jan 2014 16:36:35 +0000 (UTC) Received: by mail-wi0-f169.google.com with SMTP id e4so3677443wiv.4 for ; Sun, 19 Jan 2014 08:36:33 -0800 (PST) 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=c/jy9TV82lZfVfYTpVctnpKjCOsH/8STf0LvdXS33lI=; b=Vz8GGMxLttAqpVKCvUXaAmUXbXOCnMp6q4FAmlKw0UOqCivVaRThgVR1HxhzPSLS5N qJMOiE6r/w5vOnCKlufyCyYecOubwxF/Jnqg3zS1J0WRWASV6ViNH6vJXEqzlscrGwnF pl27HjHqGtzncxu/foW9uYUPW1S2vR7WYFqf0louSXbPolaiAEST246BhOWMyBhLMykM Eop6hM+pTys9KEj/c2hPrRs6FYn9caSlWqqaDrYzLpZkNATDFuREk/3eivBXH1DwZ9Yd uxSO4TqgVZUEIXhk8lvPsUsnm6TvtaEFzQYvwfwLDcGWs/ULNNZwHXIFafvaGPXS4FDV FK5g== X-Received: by 10.195.13.164 with SMTP id ez4mr10632759wjd.11.1390149393596; Sun, 19 Jan 2014 08:36:33 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id dd3sm16245507wjb.9.2014.01.19.08.36.32 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Sun, 19 Jan 2014 08:36:32 -0800 (PST) Sender: Baptiste Daroussin Date: Sun, 19 Jan 2014 17:36:30 +0100 From: Baptiste Daroussin To: Mikolaj Golub Subject: Re: svn commit: r340322 - head/devel/bmkdep Message-ID: <20140119163630.GE78580@ithaqua.etoilebsd.net> References: <201401191626.s0JGQjsR092454@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="JBi0ZxuS5uaEhkUZ" Content-Disposition: inline In-Reply-To: <201401191626.s0JGQjsR092454@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.17 Precedence: list List-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, 19 Jan 2014 16:36:36 -0000 --JBi0ZxuS5uaEhkUZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 19, 2014 at 04:26:45PM +0000, Mikolaj Golub wrote: > Author: trociny > Date: Sun Jan 19 16:26:44 2014 > New Revision: 340322 > URL: http://svnweb.freebsd.org/changeset/ports/340322 > QAT: https://qat.redports.org/buildarchive/r340322/ >=20 > Log: > Fix packaging as an unprivileged user. >=20 > Modified: > head/devel/bmkdep/Makefile >=20 > Modified: head/devel/bmkdep/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/bmkdep/Makefile Sun Jan 19 16:26:19 2014 (r340321) > +++ head/devel/bmkdep/Makefile Sun Jan 19 16:26:44 2014 (r340322) > @@ -13,4 +13,8 @@ MAKE_ENV=3D PKGDIR=3D"${PKGDIR}" NO_OBJ=3DYES > =20 > PLIST_FILES=3D bin/bmkdep man/man1/bmkdep.1.gz > =20 > +do-install: > + ${INSTALL_PROGRAM} ${WRKSRC}/bmkdep ${STAGEDIR}${PREFIX}/bin > + ${INSTALL_MAN} ${WRKSRC}/bmkdep.1 ${STAGEDIR}${PREFIX}/man/man1 > + USES=3Duidfix is not enough? regards, Bapt --JBi0ZxuS5uaEhkUZ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (FreeBSD) iEYEARECAAYFAlLb/w4ACgkQ8kTtMUmk6Ewa/ACghhGb+0fnSYJmJz/TCU1nD9oH qe0An0eRtzQhZ4mppxJhYrlUsifkhtdL =fBSh -----END PGP SIGNATURE----- --JBi0ZxuS5uaEhkUZ-- From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:37:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5482A44; Sun, 19 Jan 2014 16:37:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A17BE1975; Sun, 19 Jan 2014 16:37:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JGbgOM096427; Sun, 19 Jan 2014 16:37:42 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JGbgm8096426; Sun, 19 Jan 2014 16:37:42 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401191637.s0JGbgm8096426@svn.freebsd.org> From: John Marino Date: Sun, 19 Jan 2014 16:37:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340324 - head/graphics/gpicview X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 16:37:42 -0000 Author: marino Date: Sun Jan 19 16:37:42 2014 New Revision: 340324 URL: http://svnweb.freebsd.org/changeset/ports/340324 QAT: https://qat.redports.org/buildarchive/r340324/ Log: graphics/gpicview: Reset maintainer This port has a history of maintainer timeouts, going back to June 2013. To list a few PRs that timed out: 179825, 184544, 184559, 184564, 184634, 184709, 184727, and apparently private mail (~2 Dec 2013) Approved by: portmgr (bapt) Modified: head/graphics/gpicview/Makefile Modified: head/graphics/gpicview/Makefile ============================================================================== --- head/graphics/gpicview/Makefile Sun Jan 19 16:32:34 2014 (r340323) +++ head/graphics/gpicview/Makefile Sun Jan 19 16:37:42 2014 (r340324) @@ -6,7 +6,7 @@ PORTVERSION= 0.2.4 CATEGORIES= graphics MASTER_SITES= SF/lxde/GPicView%20%28image%20Viewer%29/GpicView%20${PORTVERSION}/ -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= ports@FreeBSD.org COMMENT= Simple and fast image viewer for X11 LICENSE= GPLv2 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:38:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id BDA19C56; Sun, 19 Jan 2014 16:38:26 +0000 (UTC) Date: Sun, 19 Jan 2014 16:38:26 +0000 From: Alexey Dokuchaev To: Martin Wilke Subject: Re: svn commit: r340231 - in head/graphics/xmms-gdancer: . files Message-ID: <20140119163826.GB21615@FreeBSD.org> References: <201401190853.s0J8rxPx011678@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401190853.s0J8rxPx011678@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 19 Jan 2014 16:38:26 -0000 On Sun, Jan 19, 2014 at 08:53:59AM +0000, Martin Wilke wrote: > New Revision: 340231 > URL: http://svnweb.freebsd.org/changeset/ports/340231 > QAT: https://qat.redports.org/buildarchive/r340231/ > > Log: > - Fix build with clang > > PR: 185313 > Submitted by: ports fury Commit log looks incomplete; at least it should have mentioned LICENSE and staging support. Ditto for adjacent commits. ./danfe From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:50:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E27A9E0C; Sun, 19 Jan 2014 16:50:31 +0000 (UTC) Received: from mail-lb0-x230.google.com (mail-lb0-x230.google.com [IPv6:2a00:1450:4010:c04::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D8B791A27; Sun, 19 Jan 2014 16:50:30 +0000 (UTC) Received: by mail-lb0-f176.google.com with SMTP id w7so3787525lbi.35 for ; Sun, 19 Jan 2014 08:50:28 -0800 (PST) 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=lEzi+zwSoTgWFsaRVhlwOb+MFSJCNUGaR3QXJt6EpJs=; b=lJo2cDzNj7HDzZtHzVrvsGd5slvUV02+Gt4jgbjUzwEY6Qu56h1CgGPwRvA03RGnVA Xx5EPxH2pbemYcayM4bwqKAsYR6zoemZjQZdX4m0YI0nBMX5PNUtJzv7UnVaVQis/K+3 A5aJFIzKADMkz84jYvIJmm9QNcJMpHHnb31QK97ciBCeqrCSN3cc2Bo1+IsTJI0p6MRM 4/fpNlc7wZJlvaYD8711Znjw5tiMFHqQhGxSfC3s72YQIf/ofbJ0PVKwApSRX6L9Oe+x 47ln6ykQeMDOlEctt/IEfCJuCT6z2caBV4n8uHYccG+jUT3qpvYk4hWLp6Z6Trp/cFyJ quDw== MIME-Version: 1.0 X-Received: by 10.152.19.97 with SMTP id d1mr11882lae.57.1390150228842; Sun, 19 Jan 2014 08:50:28 -0800 (PST) Received: by 10.114.2.146 with HTTP; Sun, 19 Jan 2014 08:50:28 -0800 (PST) In-Reply-To: <20140119163826.GB21615@FreeBSD.org> References: <201401190853.s0J8rxPx011678@svn.freebsd.org> <20140119163826.GB21615@FreeBSD.org> Date: Mon, 20 Jan 2014 00:50:28 +0800 Message-ID: Subject: Re: svn commit: r340231 - in head/graphics/xmms-gdancer: . files From: Martin Wilke To: Alexey Dokuchaev Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 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.17 Precedence: list List-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, 19 Jan 2014 16:50:32 -0000 seriously? start we every year again that topic? On Mon, Jan 20, 2014 at 12:38 AM, Alexey Dokuchaev wrote: > On Sun, Jan 19, 2014 at 08:53:59AM +0000, Martin Wilke wrote: > > New Revision: 340231 > > URL: http://svnweb.freebsd.org/changeset/ports/340231 > > QAT: https://qat.redports.org/buildarchive/r340231/ > > > > Log: > > - Fix build with clang > > > > PR: 185313 > > Submitted by: ports fury > > Commit log looks incomplete; at least it should have mentioned LICENSE > and staging support. Ditto for adjacent commits. > > ./danfe > From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 16:54:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A91B3F2F; Sun, 19 Jan 2014 16:54:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94D5B1A8D; Sun, 19 Jan 2014 16:54:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JGswbQ003613; Sun, 19 Jan 2014 16:54:58 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JGsw6N003612; Sun, 19 Jan 2014 16:54:58 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401191654.s0JGsw6N003612@svn.freebsd.org> From: Dmitry Marakasov Date: Sun, 19 Jan 2014 16:54:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340325 - head/games/springlobby X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 16:54:58 -0000 Author: amdmi3 Date: Sun Jan 19 16:54:58 2014 New Revision: 340325 URL: http://svnweb.freebsd.org/changeset/ports/340325 QAT: https://qat.redports.org/buildarchive/r340325/ Log: Mark IGNORE on < 9.1 Modified: head/games/springlobby/Makefile Modified: head/games/springlobby/Makefile ============================================================================== --- head/games/springlobby/Makefile Sun Jan 19 16:37:42 2014 (r340324) +++ head/games/springlobby/Makefile Sun Jan 19 16:54:58 2014 (r340325) @@ -45,4 +45,10 @@ NOTIFY_CMAKE_ON= -DOPTION_NOTIFY=ON NOTIFY_CMAKE_OFF= -DOPTION_NOTIFY=OFF NOTIFY_LIB_DEPENDS= libnotify.so:${PORTSDIR}/devel/libnotify +.include + +.if ${OSVERSION} < 901000 +IGNORE= does not build (no strtoll(3) support) +.endif + .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 17:31:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 09B95670; Sun, 19 Jan 2014 17:31:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E9C471DDF; Sun, 19 Jan 2014 17:31:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JHVm5H018577; Sun, 19 Jan 2014 17:31:48 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JHVmcE018575; Sun, 19 Jan 2014 17:31:48 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401191731.s0JHVmcE018575@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 19 Jan 2014 17:31:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340326 - in head/audio/libmikmod: . 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.17 Precedence: list List-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, 19 Jan 2014 17:31:49 -0000 Author: danilo Date: Sun Jan 19 17:31:48 2014 New Revision: 340326 URL: http://svnweb.freebsd.org/changeset/ports/340326 QAT: https://qat.redports.org/buildarchive/r340326/ Log: - Fix a problem with the libdir of a file (libmikmod.la). It was pointing to the STAGEDIR. Added: head/audio/libmikmod/files/patch-libmikmod__Makefile.in (contents, props changed) Modified: head/audio/libmikmod/Makefile Modified: head/audio/libmikmod/Makefile ============================================================================== --- head/audio/libmikmod/Makefile Sun Jan 19 16:54:58 2014 (r340325) +++ head/audio/libmikmod/Makefile Sun Jan 19 17:31:48 2014 (r340326) @@ -3,6 +3,7 @@ PORTNAME= libmikmod PORTVERSION= 3.1.12 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF/mikmod/libmikmod%20%28source%29/${PORTVERSION}/ Added: head/audio/libmikmod/files/patch-libmikmod__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/libmikmod/files/patch-libmikmod__Makefile.in Sun Jan 19 17:31:48 2014 (r340326) @@ -0,0 +1,11 @@ +--- ./libmikmod/Makefile.in.orig 2014-01-19 10:54:34.000000000 -0200 ++++ ./libmikmod/Makefile.in 2014-01-19 10:54:45.000000000 -0200 +@@ -72,7 +72,7 @@ + rm -f Makefile + + $(LIB): $(OBJ) +- $(LIBTOOL) --mode=link $(CC) -version-info 2:4:0 -o $@ $(OBJ) $(LIBRARY_LIB) -rpath $(DESTDIR)$(libdir) ++ $(LIBTOOL) --mode=link $(CC) -version-info 2:4:0 -o $@ $(OBJ) $(LIBRARY_LIB) -rpath $(libdir) + + dl_hpux.lo: $(top_srcdir)/dlapi/dl_hpux.c \ + $(top_srcdir)/dlapi/dlfcn.h From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:04:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB93D4FB; Sun, 19 Jan 2014 18:04:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B81F51087; Sun, 19 Jan 2014 18:04:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JI4Zdr030317; Sun, 19 Jan 2014 18:04:35 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JI4ZNp030313; Sun, 19 Jan 2014 18:04:35 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401191804.s0JI4ZNp030313@svn.freebsd.org> From: John Marino Date: Sun, 19 Jan 2014 18:04:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340327 - head/x11-wm/herbstluftwm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:04:35 -0000 Author: marino Date: Sun Jan 19 18:04:35 2014 New Revision: 340327 URL: http://svnweb.freebsd.org/changeset/ports/340327 QAT: https://qat.redports.org/buildarchive/r340327/ Log: x11-wm/herbsluftwm: Update to 0.5.3 PR: ports/185178 tested on: Redports (6x pass) Approved by: maintainer timeout Modified: head/x11-wm/herbstluftwm/Makefile head/x11-wm/herbstluftwm/distinfo Modified: head/x11-wm/herbstluftwm/Makefile ============================================================================== --- head/x11-wm/herbstluftwm/Makefile Sun Jan 19 17:31:48 2014 (r340326) +++ head/x11-wm/herbstluftwm/Makefile Sun Jan 19 18:04:35 2014 (r340327) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= herbstluftwm -PORTVERSION= 0.5.2 +PORTVERSION= 0.5.3 CATEGORIES= x11-wm MASTER_SITES= http://herbstluftwm.org/tarballs/ @@ -25,7 +25,6 @@ MAN7= herbstluftwm-tutorial.7 OPTIONS_DEFINE= BASH ZSH DOCS EXAMPLES -NO_STAGE= yes .include .if ${PORT_OPTIONS:MBASH} Modified: head/x11-wm/herbstluftwm/distinfo ============================================================================== --- head/x11-wm/herbstluftwm/distinfo Sun Jan 19 17:31:48 2014 (r340326) +++ head/x11-wm/herbstluftwm/distinfo Sun Jan 19 18:04:35 2014 (r340327) @@ -1,2 +1,2 @@ -SHA256 (herbstluftwm-0.5.2.tar.gz) = c53d3309f9f05cc4b1b23907f4c0c403d850817dac8d1cc481e122fece599995 -SIZE (herbstluftwm-0.5.2.tar.gz) = 190035 +SHA256 (herbstluftwm-0.5.3.tar.gz) = 910cf98f57a439593a3114fd78bf36c107a2e033e75383f95d8e51128a04d0bf +SIZE (herbstluftwm-0.5.3.tar.gz) = 205515 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:16:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F356848; Sun, 19 Jan 2014 18:16:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 21C831149; Sun, 19 Jan 2014 18:16:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIGk4r034757; Sun, 19 Jan 2014 18:16:47 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIGk21034755; Sun, 19 Jan 2014 18:16:46 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401191816.s0JIGk21034755@svn.freebsd.org> From: John Marino Date: Sun, 19 Jan 2014 18:16:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340328 - head/games/nsnake X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:16:47 -0000 Author: marino Date: Sun Jan 19 18:16:46 2014 New Revision: 340328 URL: http://svnweb.freebsd.org/changeset/ports/340328 QAT: https://qat.redports.org/buildarchive/r340328/ Log: games/nsnake: games/nsnake: fix permissions and fix score file Support stage too. PR: ports/184920 Approved by: maintainer timeout Added: head/games/nsnake/pkg-plist (contents, props changed) Modified: head/games/nsnake/Makefile Modified: head/games/nsnake/Makefile ============================================================================== --- head/games/nsnake/Makefile Sun Jan 19 18:04:35 2014 (r340327) +++ head/games/nsnake/Makefile Sun Jan 19 18:16:46 2014 (r340328) @@ -3,6 +3,7 @@ PORTNAME= nsnake PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://releases.malikania.fr/nsnake/ EXTRACT_SUFX= .tgz @@ -13,12 +14,8 @@ COMMENT= Snake game written in C and ncu LICENSE= MIT OPTIONS_DEFINE= DOCS +OPTIONS_SUB= yes -MAN6= ${PORTNAME}.6 -PORTDOCS= CHANGELOG -PLIST_FILES= bin/${PORTNAME} - -NO_STAGE= yes .include do-build: @@ -26,11 +23,11 @@ do-build: do-install: (cd ${WRKSRC} \ - && ${INSTALL_PROGRAM} ${PORTNAME} ${PREFIX}/bin \ - && ${INSTALL_MAN} ${PORTNAME}.6 ${MANPREFIX}/man/man6) + && ${INSTALL_PROGRAM} ${PORTNAME} ${STAGEDIR}${PREFIX}/bin \ + && ${INSTALL_MAN} ${PORTNAME}.6 ${STAGEDIR}${MANPREFIX}/man/man6) .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} CHANGELOG ${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} CHANGELOG ${STAGEDIR}${DOCSDIR}) .endif .include Added: head/games/nsnake/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/nsnake/pkg-plist Sun Jan 19 18:16:46 2014 (r340328) @@ -0,0 +1,10 @@ +@owner games +@group games +@mode 4555 +bin/nsnake +man/man6/nsnake.6.gz +%%DOCS%%%%DOCSDIR%%/CHANGELOG +%%DOCS%%@dirrm %%DOCSDIR%% +@mode +@exec mkdir -p /var/db/nsnake +@exec chown games:games /var/db/nsnake From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:17:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF653930; Sun, 19 Jan 2014 18:17:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A34981155; Sun, 19 Jan 2014 18:17:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIHsqv034939; Sun, 19 Jan 2014 18:17:54 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIHsgk034937; Sun, 19 Jan 2014 18:17:54 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191817.s0JIHsgk034937@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 18:17:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340329 - head/devel/upp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:17:54 -0000 Author: bapt Date: Sun Jan 19 18:17:54 2014 New Revision: 340329 URL: http://svnweb.freebsd.org/changeset/ports/340329 QAT: https://qat.redports.org/buildarchive/r340329/ Log: Support stage Use options helpers Unsilent install Remove references to NOPORTDATA Modified: head/devel/upp/Makefile Modified: head/devel/upp/Makefile ============================================================================== --- head/devel/upp/Makefile Sun Jan 19 18:16:46 2014 (r340328) +++ head/devel/upp/Makefile Sun Jan 19 18:17:54 2014 (r340329) @@ -11,15 +11,15 @@ DISTNAME= ${PORTNAME}-x11-src-${PORTVERS MAINTAINER= m.sund@arcor.de COMMENT= Ultimate++, a BSD-licensed, cross-platform, C/C++ RAD suite -LICENSE= BSD +LICENSE= BSD2CLAUSE -LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 \ - expat:${PORTSDIR}/textproc/expat2 \ - notify:${PORTSDIR}/devel/libnotify +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ + libexpat.so:${PORTSDIR}/textproc/expat2 \ + libnotify.so:${PORTSDIR}/devel/libnotify +USES= gmake USE_XORG= xft USE_GNOME= gtk20 -USE_GMAKE= yes WRKSRC= ${WRKDIR}/${DISTNAME} BUILD_WRKSRC= ${WRKSRC}/uppsrc @@ -44,21 +44,15 @@ DESKTOP_ENTRIES="TheIDE" "IDE for cross- OPTIONS_DEFINE= SDL OPENGL MYSQL PGSQL USEMALLOC USEMALLOC_DESC= Compile without U++ heap allocator -NO_STAGE= yes +PLIST_FILES= bin/theide + +SDL_USE= sql +OPENGL_USE= gl +MYSQL_USE= mysql=yes +PHSQL_USE= pgsql=yes + .include -.if ${PORT_OPTIONS:MSDL} -USE_SDL= sdl -.endif -.if ${PORT_OPTIONS:MOPENGL} -USE_GL= gl -.endif -.if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= yes -.endif -.if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL= yes -.endif .if ${PORT_OPTIONS:MUSEMALLOC} MACRO_FLAGS+= -DflagUSEMALLOC .endif @@ -97,14 +91,9 @@ post-build: .SILENT ${ECHO_CMD} "REMOTE_MAP = \"\";" >> ${WRKSRC}/GCC.bm ${ECHO_CMD} "LINKMODE_LOCK = \"0\";" >> ${WRKSRC}/GCC.bm -do-install: .SILENT - ${INSTALL_PROGRAM} ${WRKSRC}/theide ${PREFIX}/bin -.if !defined(NOPORTDATA) - ${MKDIR} ${DATADIR} - cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA}" ${DATADIR} -.endif - -post-install: - @${ECHO_CMD} bin/theide >> ${TMPPLIST} +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/theide ${STAGEDIR}${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${DATADIR} + cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA}" ${STAGEDIR}${DATADIR} .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:21:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50225AB7; Sun, 19 Jan 2014 18:21:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3CB5D11C3; Sun, 19 Jan 2014 18:21:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JILIA0036342; Sun, 19 Jan 2014 18:21:18 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JILHpm036339; Sun, 19 Jan 2014 18:21:17 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401191821.s0JILHpm036339@svn.freebsd.org> From: Emanuel Haupt Date: Sun, 19 Jan 2014 18:21:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340330 - 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.17 Precedence: list List-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, 19 Jan 2014 18:21:18 -0000 Author: ehaupt Date: Sun Jan 19 18:21:17 2014 New Revision: 340330 URL: http://svnweb.freebsd.org/changeset/ports/340330 QAT: https://qat.redports.org/buildarchive/r340330/ Log: Simplify desktop-file-utils usage. Submitted by: bapt Modified: head/x11/xterm/Makefile head/x11/xterm/pkg-plist Modified: head/x11/xterm/Makefile ============================================================================== --- head/x11/xterm/Makefile Sun Jan 19 18:17:54 2014 (r340329) +++ head/x11/xterm/Makefile Sun Jan 19 18:21:17 2014 (r340330) @@ -15,8 +15,8 @@ COMMENT= Terminal emulator for the X Win CONFLICTS= x11iraf-[0-9]* +USES= desktop-file-utils USE_XORG= xaw xft -WANT_GNOME= desktopfileutils GNU_CONFIGURE= yes CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib" @@ -26,7 +26,7 @@ CPPFLAGS+= -I${LOCALBASE}/include ICONVERSION= 1 -OPTIONS_DEFINE= WCHAR LUIT DECTERM PCRE GNOME DABBREV 256COLOR SIXEL +OPTIONS_DEFINE= WCHAR LUIT DECTERM PCRE DABBREV 256COLOR SIXEL DABBREV_DESC= Enable support for dabbrev-expand DECTERM_DESC= Enable DECterm Locator support @@ -46,7 +46,6 @@ PCRE_CONFIGURE_WITH= pcre PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre DABBREV_CONFIGURE_ENABLE= dabbrev SIXEL_CONFIGURE_ENABLE= sixel-graphics -GNOME_USES= desktop-file-utils .include Modified: head/x11/xterm/pkg-plist ============================================================================== --- head/x11/xterm/pkg-plist Sun Jan 19 18:17:54 2014 (r340329) +++ head/x11/xterm/pkg-plist Sun Jan 19 18:21:17 2014 (r340330) @@ -21,3 +21,5 @@ share/pixmaps/xterm-color_32x32.xpm share/pixmaps/xterm-color_48x48.xpm share/pixmaps/xterm_32x32.xpm share/pixmaps/xterm_48x48.xpm +%%GNOME%%@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +%%GNOME%%@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:24:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46242BBA; Sun, 19 Jan 2014 18:24:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3307811DE; Sun, 19 Jan 2014 18:24:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIOIAW038349; Sun, 19 Jan 2014 18:24:18 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIOIZe038348; Sun, 19 Jan 2014 18:24:18 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401191824.s0JIOIZe038348@svn.freebsd.org> From: Emanuel Haupt Date: Sun, 19 Jan 2014 18:24:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340331 - 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.17 Precedence: list List-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, 19 Jan 2014 18:24:18 -0000 Author: ehaupt Date: Sun Jan 19 18:24:17 2014 New Revision: 340331 URL: http://svnweb.freebsd.org/changeset/ports/340331 QAT: https://qat.redports.org/buildarchive/r340331/ Log: Fix package list. This got accidentally introduced by a reversed patch. Modified: head/x11/xterm/pkg-plist Modified: head/x11/xterm/pkg-plist ============================================================================== --- head/x11/xterm/pkg-plist Sun Jan 19 18:21:17 2014 (r340330) +++ head/x11/xterm/pkg-plist Sun Jan 19 18:24:17 2014 (r340331) @@ -21,5 +21,3 @@ share/pixmaps/xterm-color_32x32.xpm share/pixmaps/xterm-color_48x48.xpm share/pixmaps/xterm_32x32.xpm share/pixmaps/xterm_48x48.xpm -%%GNOME%%@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -%%GNOME%%@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:32:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E83C9F26; Sun, 19 Jan 2014 18:32:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D4943127B; Sun, 19 Jan 2014 18:32:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIWctW041860; Sun, 19 Jan 2014 18:32:38 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIWcNq041859; Sun, 19 Jan 2014 18:32:38 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191832.s0JIWcNq041859@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 18:32:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340332 - head/sysutils/asusoled X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:32:39 -0000 Author: bapt Date: Sun Jan 19 18:32:38 2014 New Revision: 340332 URL: http://svnweb.freebsd.org/changeset/ports/340332 QAT: https://qat.redports.org/buildarchive/r340332/ Log: Get rid of NOPORTDATA Modified: head/sysutils/asusoled/Makefile Modified: head/sysutils/asusoled/Makefile ============================================================================== --- head/sysutils/asusoled/Makefile Sun Jan 19 18:24:17 2014 (r340331) +++ head/sysutils/asusoled/Makefile Sun Jan 19 18:32:38 2014 (r340332) @@ -29,19 +29,13 @@ FONTDIR?= ${LOCALBASE}/lib/X11/fonts OPTIONS_DEFINE= DOCS -.include - do-install: @${INSTALL_PROGRAM} ${WRKSRC}/asusoled ${STAGEDIR}${PREFIX}/sbin -.if !defined(NOPORTDATA) @${MKDIR} ${STAGEDIR}${DATADIR} .for i in ${PORTDATA} @${INSTALL_DATA} ${WRKSRC}/data/${i} ${STAGEDIR}${DATADIR} .endfor -.endif -.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} @${INSTALL_DATA} ${PKGMESSAGE} ${STAGEDIR}${DOCSDIR}/README.FreeBSD -.endif .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:34:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 481CEDD; Sun, 19 Jan 2014 18:34:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 345521296; Sun, 19 Jan 2014 18:34:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIYgr0042177; Sun, 19 Jan 2014 18:34:42 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIYgAC042176; Sun, 19 Jan 2014 18:34:42 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191834.s0JIYgAC042176@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 18:34:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340333 - head/math/py-nzmath X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:34:42 -0000 Author: bapt Date: Sun Jan 19 18:34:41 2014 New Revision: 340333 URL: http://svnweb.freebsd.org/changeset/ports/340333 QAT: https://qat.redports.org/buildarchive/r340333/ Log: Support stage Get rid of NOPORTDATA Modified: head/math/py-nzmath/Makefile Modified: head/math/py-nzmath/Makefile ============================================================================== --- head/math/py-nzmath/Makefile Sun Jan 19 18:32:38 2014 (r340332) +++ head/math/py-nzmath/Makefile Sun Jan 19 18:34:41 2014 (r340333) @@ -15,16 +15,10 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= NZMATH -NO_STAGE= yes post-install: -.if !defined(NOPORTDATA) - ${MKDIR} ${DATADIR} - ${CP} ${WRKSRC}/data/discriminant.csv ${DATADIR} -.endif - -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${CP} ${WRKSRC}/manual/*.pdf ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/data/discriminant.csv ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/manual/*.pdf ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:40:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF4E51F2; Sun, 19 Jan 2014 18:40:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B01FE12B4; Sun, 19 Jan 2014 18:40:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIeRZk043170; Sun, 19 Jan 2014 18:40:27 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIeRO1043168; Sun, 19 Jan 2014 18:40:27 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191840.s0JIeRO1043168@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 18:40:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340334 - head/net-mgmt/chillispot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:40:28 -0000 Author: bapt Date: Sun Jan 19 18:40:27 2014 New Revision: 340334 URL: http://svnweb.freebsd.org/changeset/ports/340334 QAT: https://qat.redports.org/buildarchive/r340334/ Log: Support stage Fix shebang Modified: head/net-mgmt/chillispot/Makefile head/net-mgmt/chillispot/pkg-plist Modified: head/net-mgmt/chillispot/Makefile ============================================================================== --- head/net-mgmt/chillispot/Makefile Sun Jan 19 18:34:41 2014 (r340333) +++ head/net-mgmt/chillispot/Makefile Sun Jan 19 18:40:27 2014 (r340334) @@ -14,11 +14,12 @@ COMMENT= Wireless LAN Access Point Contr CONFLICTS= coovachilli-[0-9]* +USES= shebangfix +SHEBANG_FILES= doc/hotspotlogin.cgi GNU_CONFIGURE= yes CONFIGURE_ARGS=-sysconfdir=${PREFIX}/etc USE_RC_SUBR= chillispot SUB_FILES= pkg-message installguide.txt -MAN8= chilli.8 USE_GCC= any OPTIONS_DEFINE= APACHE RADIUS @@ -28,32 +29,18 @@ OPTIONS_SINGLE_RADIUS= FREERADIUS OPENRA FREERADIUS_DESC=depend on FreeRADIUS OPENRADIUS_DESC=depend on OpenRADIUS -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MAPACHE} -USE_APACHE_RUN= 22+ -.endif - -.if ${PORT_OPTIONS:MFREERADIUS} -RUN_DEPENDS+= radiusd:${PORTSDIR}/net/freeradius -.endif - -.if ${PORT_OPTIONS:MOPENRADIUS} -RUN_DEPENDS+= radiusd:${PORTSDIR}/net/openradius -.endif +APACHE_USE= apache_run=22+ +FREERADIUS_RUN_DEPENDS= radiusd:${PORTSDIR}/net/freeradius +OPENRADIUS_RUN_DEPENDS= radiusd:${PORTSDIR}/net/openradius post-install: -.if !defined(NOPORTDATA) - ${MKDIR} ${DATADIR} - ${INSTALL_MAN} ${WRKSRC}/doc/chilli.conf ${DATADIR}/chilli.conf.sample - ${INSTALL_MAN} ${WRKSRC}/doc/dictionary.chillispot ${DATADIR} - ${INSTALL_MAN} ${WRKSRC}/doc/freeradius.users ${DATADIR} - ${INSTALL_MAN} ${WRKSRC}/doc/hotspotlogin.cgi ${DATADIR} - ${INSTALL_MAN} ${WRKDIR}/installguide.txt ${DATADIR} - ${INSTALL_MAN} ${FILESDIR}/pf.conf.sample ${DATADIR} - ${INSTALL_MAN} ${FILESDIR}/ipfw-config.sample ${DATADIR} -.endif - @${CAT} ${PKGMESSAGE} + ${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/doc/chilli.conf ${STAGEDIR}${DATADIR}/chilli.conf.sample + ${INSTALL_DATA} ${WRKSRC}/doc/dictionary.chillispot ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/doc/freeradius.users ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/doc/hotspotlogin.cgi ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKDIR}/installguide.txt ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${FILESDIR}/pf.conf.sample ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${FILESDIR}/ipfw-config.sample ${STAGEDIR}${DATADIR} .include Modified: head/net-mgmt/chillispot/pkg-plist ============================================================================== --- head/net-mgmt/chillispot/pkg-plist Sun Jan 19 18:34:41 2014 (r340333) +++ head/net-mgmt/chillispot/pkg-plist Sun Jan 19 18:40:27 2014 (r340334) @@ -1,5 +1,6 @@ @stopdaemon chillispot sbin/chilli +man/man8/chilli.8.gz %%PORTDATA%%%%DATADIR%%/chilli.conf.sample %%PORTDATA%%%%DATADIR%%/dictionary.chillispot %%PORTDATA%%%%DATADIR%%/freeradius.users From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:42:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D7F572D4; Sun, 19 Jan 2014 18:42:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C49CC130F; Sun, 19 Jan 2014 18:42:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIgsD1045757; Sun, 19 Jan 2014 18:42:54 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIgsR7045756; Sun, 19 Jan 2014 18:42:54 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401191842.s0JIgsR7045756@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 19 Jan 2014 18:42:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340335 - head/dns/ddclient X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:42:54 -0000 Author: danilo Date: Sun Jan 19 18:42:54 2014 New Revision: 340335 URL: http://svnweb.freebsd.org/changeset/ports/340335 QAT: https://qat.redports.org/buildarchive/r340335/ Log: - Fix a problem with the config files path. PR: ports/185881 Submitted by: Matthew Luckie Modified: head/dns/ddclient/Makefile Modified: head/dns/ddclient/Makefile ============================================================================== --- head/dns/ddclient/Makefile Sun Jan 19 18:40:27 2014 (r340334) +++ head/dns/ddclient/Makefile Sun Jan 19 18:42:54 2014 (r340335) @@ -3,6 +3,7 @@ PORTNAME= ddclient PORTVERSION= 3.8.2 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -39,7 +40,7 @@ post-patch: 's|/usr|${PREFIX}|g' @${REINPLACE_CMD} -e \ 's|%%PERL%%|${PERL}| ; \ - s|%%ETCDIR%%|${ETCDIR}| ; \ + s|%%ETCDIR%%|${PREFIX}/etc| ; \ s|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/ddclient do-install: From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:44:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5AAEC4E2; Sun, 19 Jan 2014 18:44:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 466681330; Sun, 19 Jan 2014 18:44:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIifs8046063; Sun, 19 Jan 2014 18:44:41 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIifQd046062; Sun, 19 Jan 2014 18:44:41 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191844.s0JIifQd046062@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 18:44:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340336 - head/astro/accrete X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:44:41 -0000 Author: bapt Date: Sun Jan 19 18:44:40 2014 New Revision: 340336 URL: http://svnweb.freebsd.org/changeset/ports/340336 QAT: https://qat.redports.org/buildarchive/r340336/ Log: Support stage by cheating on PREFIX Modified: head/astro/accrete/Makefile Modified: head/astro/accrete/Makefile ============================================================================== --- head/astro/accrete/Makefile Sun Jan 19 18:42:54 2014 (r340335) +++ head/astro/accrete/Makefile Sun Jan 19 18:44:40 2014 (r340336) @@ -9,8 +9,7 @@ MASTER_SITES= SF MAINTAINER= chuck@pkix.net COMMENT= Accrete is a physical simulation of solar system planet formation -NO_STAGE= yes -MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" PREFIX=${PREFIX} \ +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" PREFIX=${STAGEDIR}${PREFIX} \ CDEBUG="" COPT="" PLIST_FILES= bin/accrete From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:53:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA0C07E9; Sun, 19 Jan 2014 18:53:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5E6913CB; Sun, 19 Jan 2014 18:53:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIrPKS049647; Sun, 19 Jan 2014 18:53:25 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIrPa0049646; Sun, 19 Jan 2014 18:53:25 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401191853.s0JIrPa0049646@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 19 Jan 2014 18:53:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340337 - head/devel/libevent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:53:26 -0000 Author: rakuco Date: Sun Jan 19 18:53:25 2014 New Revision: 340337 URL: http://svnweb.freebsd.org/changeset/ports/340337 QAT: https://qat.redports.org/buildarchive/r340337/ Log: Use a valid LICENSE name Modified: head/devel/libevent/Makefile Modified: head/devel/libevent/Makefile ============================================================================== --- head/devel/libevent/Makefile Sun Jan 19 18:44:40 2014 (r340336) +++ head/devel/libevent/Makefile Sun Jan 19 18:53:25 2014 (r340337) @@ -11,7 +11,7 @@ DISTNAME= ${PORTNAME}-${DISTVERSION}-sta MAINTAINER= mm@FreeBSD.org COMMENT?= Provides an API to execute callback functions on certain events -LICENSE= BSD +LICENSE= BSD3CLAUSE GNU_CONFIGURE= yes .if !defined(_BUILDING_LIBEVENT_HIPHOP) From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:53:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86C588C2; Sun, 19 Jan 2014 18:53:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 72F2C13D2; Sun, 19 Jan 2014 18:53:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIrlHi049749; Sun, 19 Jan 2014 18:53:47 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIrlaI049748; Sun, 19 Jan 2014 18:53:47 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191853.s0JIrlaI049748@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 18:53:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340338 - head/astro/dgpsip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:53:47 -0000 Author: bapt Date: Sun Jan 19 18:53:46 2014 New Revision: 340338 URL: http://svnweb.freebsd.org/changeset/ports/340338 QAT: https://qat.redports.org/buildarchive/r340338/ Log: Support stage Modified: head/astro/dgpsip/Makefile Modified: head/astro/dgpsip/Makefile ============================================================================== --- head/astro/dgpsip/Makefile Sun Jan 19 18:53:25 2014 (r340337) +++ head/astro/dgpsip/Makefile Sun Jan 19 18:53:46 2014 (r340338) @@ -10,9 +10,8 @@ MAINTAINER= jharris@widomaker.com COMMENT= Differential GPS over IP communication device GNU_CONFIGURE= yes -NO_STAGE= yes -MAN1= dgpsip.1 -PLIST_FILES= bin/dgpsip +PLIST_FILES= bin/dgpsip \ + man/man1/dgpsip.1.gz .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:55:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9420899E; Sun, 19 Jan 2014 18:55:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7FC6E13D9; Sun, 19 Jan 2014 18:55:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JItSWH050060; Sun, 19 Jan 2014 18:55:28 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JItSGk050059; Sun, 19 Jan 2014 18:55:28 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191855.s0JItSGk050059@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 18:55:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340339 - head/astro/ephem X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:55:28 -0000 Author: bapt Date: Sun Jan 19 18:55:28 2014 New Revision: 340339 URL: http://svnweb.freebsd.org/changeset/ports/340339 QAT: https://qat.redports.org/buildarchive/r340339/ Log: Support stage Modified: head/astro/ephem/Makefile Modified: head/astro/ephem/Makefile ============================================================================== --- head/astro/ephem/Makefile Sun Jan 19 18:53:46 2014 (r340338) +++ head/astro/ephem/Makefile Sun Jan 19 18:55:28 2014 (r340339) @@ -11,7 +11,6 @@ DISTNAME= ${PORTNAME}_${PORTVERSION}_uni MAINTAINER= slaven@rezic.de COMMENT= An interactive terminal-based astronomical ephemeris program -NO_STAGE= yes NO_WRKSUBDIR= yes ALL_TARGET= @@ -19,11 +18,11 @@ CFLAGS+= -Wno-implicit -Wno-return-type do-install: -cd ${WRKSRC}; \ - ${INSTALL_PROGRAM} ephem ${PREFIX}/bin; \ - ${MKDIR} ${PREFIX}/share/ephem; \ - ${INSTALL_DATA} Man.txt ${PREFIX}/share/ephem/; \ - [ ! -f ${PREFIX}/share/ephem/ephem.db ] && ${INSTALL_DATA} ephem.db ${PREFIX}/share/ephem/; \ - [ ! -f ${PREFIX}/share/ephem/ephem.cfg ] && ${INSTALL_DATA} ephem.cfg ${PREFIX}/share/ephem/ + ${INSTALL_PROGRAM} ephem ${STAGEDIR}${PREFIX}/bin; \ + ${MKDIR} ${STAGEDIR}${PREFIX}/share/ephem; \ + ${INSTALL_DATA} Man.txt ${STAGEDIR}${PREFIX}/share/ephem/; \ + [ ! -f ${PREFIX}/share/ephem/ephem.db ] && ${INSTALL_DATA} ephem.db ${STAGEDIR}${PREFIX}/share/ephem/; \ + [ ! -f ${PREFIX}/share/ephem/ephem.cfg ] && ${INSTALL_DATA} ephem.cfg ${STAGEDIR}${PREFIX}/share/ephem/ post-install: @${ECHO_MSG} Don\'t forget to edit ${PREFIX}/share/ephem/ephem.cfg! From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:56:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5099FA7B; Sun, 19 Jan 2014 18:56:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3CE5213E0; Sun, 19 Jan 2014 18:56:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIuOHM050284; Sun, 19 Jan 2014 18:56:24 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIuOvR050283; Sun, 19 Jan 2014 18:56:24 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191856.s0JIuOvR050283@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 18:56:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340340 - head/astro/fowsr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:56:24 -0000 Author: bapt Date: Sun Jan 19 18:56:23 2014 New Revision: 340340 URL: http://svnweb.freebsd.org/changeset/ports/340340 QAT: https://qat.redports.org/buildarchive/r340340/ Log: Support stage Modified: head/astro/fowsr/Makefile Modified: head/astro/fowsr/Makefile ============================================================================== --- head/astro/fowsr/Makefile Sun Jan 19 18:55:28 2014 (r340339) +++ head/astro/fowsr/Makefile Sun Jan 19 18:56:23 2014 (r340340) @@ -16,19 +16,16 @@ FILEVER= 1.0 FILEDATE= 20100718 WRKSRC= ${WRKDIR}/${PORTNAME}-${FILEVER} -USES= gmake -NO_STAGE= yes +USES= gmake dos2unix PLIST_FILES= bin/fowsr -USE_DOS2UNIX= yes - post-patch: ${REINPLACE_CMD} 's:gcc:${CC}:g' ${WRKSRC}/Makefile ${REINPLACE_CMD} 's:/usr/bin/fowsr:fowsr:g ; s://var//://var/tmp//:g' \ ${WRKSRC}/*.sh ${WRKSRC}/fowsr.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/fowsr ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/fowsr ${STAGEDIR}${PREFIX}/bin/ .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 18:57:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F29C3B8A; Sun, 19 Jan 2014 18:57:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DE8CE1410; Sun, 19 Jan 2014 18:57:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JIvJ9j050443; Sun, 19 Jan 2014 18:57:19 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JIvJI9050442; Sun, 19 Jan 2014 18:57:19 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191857.s0JIvJI9050442@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 18:57:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340341 - head/astro/garmindev X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 18:57:20 -0000 Author: bapt Date: Sun Jan 19 18:57:19 2014 New Revision: 340341 URL: http://svnweb.freebsd.org/changeset/ports/340341 QAT: https://qat.redports.org/buildarchive/r340341/ Log: Support stage Modified: head/astro/garmindev/Makefile Modified: head/astro/garmindev/Makefile ============================================================================== --- head/astro/garmindev/Makefile Sun Jan 19 18:56:23 2014 (r340340) +++ head/astro/garmindev/Makefile Sun Jan 19 18:57:19 2014 (r340341) @@ -12,6 +12,5 @@ COMMENT= Drivers for using Garmin GPS un LICENSE= GPLv2 USES= cmake -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 19:08:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC997E1E; Sun, 19 Jan 2014 19:08:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8E7B150B; Sun, 19 Jan 2014 19:08:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JJ82Dq054593; Sun, 19 Jan 2014 19:08:02 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JJ82Ab054591; Sun, 19 Jan 2014 19:08:02 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191908.s0JJ82Ab054591@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 19:08:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340342 - head/x11-wm/libwraster X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 19:08:02 -0000 Author: bapt Date: Sun Jan 19 19:08:01 2014 New Revision: 340342 URL: http://svnweb.freebsd.org/changeset/ports/340342 QAT: https://qat.redports.org/buildarchive/r340342/ Log: Remove deprecated MAN macros Fix properties Modified: head/x11-wm/libwraster/Makefile head/x11-wm/libwraster/pkg-plist (contents, props changed) Modified: head/x11-wm/libwraster/Makefile ============================================================================== --- head/x11-wm/libwraster/Makefile Sun Jan 19 18:57:19 2014 (r340341) +++ head/x11-wm/libwraster/Makefile Sun Jan 19 19:08:01 2014 (r340342) @@ -34,8 +34,6 @@ CONFIGURE_ARGS= --with-pixmapdir=${PREFI CPPFLAGS+= -DPREFIX=\\\"${PREFIX}\\\" -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN1= get-wraster-flags.1 - pre-build: cd ${WRKSRC} && ${MAKE} config-paths.h Modified: head/x11-wm/libwraster/pkg-plist ============================================================================== --- head/x11-wm/libwraster/pkg-plist Sun Jan 19 18:57:19 2014 (r340341) +++ head/x11-wm/libwraster/pkg-plist Sun Jan 19 19:08:01 2014 (r340342) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/get-wraster-flags include/wraster.h lib/libwraster.a From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 19:13:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7F7FF39; Sun, 19 Jan 2014 19:13:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A3A751586; Sun, 19 Jan 2014 19:13:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JJDYOj058038; Sun, 19 Jan 2014 19:13:34 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JJDYBm058037; Sun, 19 Jan 2014 19:13:34 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401191913.s0JJDYBm058037@svn.freebsd.org> From: Baptiste Daroussin Date: Sun, 19 Jan 2014 19:13:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340343 - head/astro/wmglobe X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 19:13:34 -0000 Author: bapt Date: Sun Jan 19 19:13:34 2014 New Revision: 340343 URL: http://svnweb.freebsd.org/changeset/ports/340343 QAT: https://qat.redports.org/buildarchive/r340343/ Log: Support stage Modified: head/astro/wmglobe/Makefile Modified: head/astro/wmglobe/Makefile ============================================================================== --- head/astro/wmglobe/Makefile Sun Jan 19 19:08:01 2014 (r340342) +++ head/astro/wmglobe/Makefile Sun Jan 19 19:13:34 2014 (r340343) @@ -8,12 +8,12 @@ CATEGORIES= astro windowmaker geography MASTER_SITES= http://hamete.org/static/wmg/ MAINTAINER= will@FreeBSD.org -COMMENT= A neat xearth-like WindowMaker dockapp +COMMENT= Neat xearth-like WindowMaker dockapp -LIB_DEPENDS= libwraster.so:${PORTSDIR}/x11-wm/windowmaker +LIB_DEPENDS= libwraster.so:${PORTSDIR}/x11-wm/libwraster -NO_STAGE= yes -MAN1= wmglobe.1 -PLIST_FILES= bin/wmglobe +PLIST_FILES= bin/wmglobe \ + man/man1/wmglobe.1.gz +MAKE_ARGS= PREFIX=${STAGEDIR}${PREFIX} .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 19:24:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 185E1182; Sun, 19 Jan 2014 19:24:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 03A58161C; Sun, 19 Jan 2014 19:24:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JJOukF061953; Sun, 19 Jan 2014 19:24:56 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JJOuOp061951; Sun, 19 Jan 2014 19:24:56 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401191924.s0JJOuOp061951@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 19 Jan 2014 19:24:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340344 - in head/games/asc: . 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.17 Precedence: list List-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, 19 Jan 2014 19:24:57 -0000 Author: danilo Date: Sun Jan 19 19:24:56 2014 New Revision: 340344 URL: http://svnweb.freebsd.org/changeset/ports/340344 QAT: https://qat.redports.org/buildarchive/r340344/ Log: - Update from 2.5.0.0 to 2.6.0.0 - Convert USE_GMAKE to USES - Add a desktop entry - Add stage support PR: ports/185511 Submitted by: KATO Tsuguru Deleted: head/games/asc/files/ Modified: head/games/asc/Makefile head/games/asc/distinfo (contents, props changed) Modified: head/games/asc/Makefile ============================================================================== --- head/games/asc/Makefile Sun Jan 19 19:13:34 2014 (r340343) +++ head/games/asc/Makefile Sun Jan 19 19:24:56 2014 (r340344) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= asc -PORTVERSION= 2.5.0.0 -PORTREVISION= 2 +PORTVERSION= 2.6.0.0 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}-hq/ASC%20Source/${PORTVERSION:R} \ - http://www.asc-hq.org/music/ -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${ASC_MUSICS} + http://www.asc-hq.org/music/:music +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${ASC_MUSICS:S/$/:music/} DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} @@ -27,36 +26,47 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= MUSIC XVID MUSIC_DESC= Install extra music files -USES= perl5 pkgconfig USE_BZIP2= yes +USES= gmake perl5 pkgconfig USE_SDL= image mixer sound sdl USE_WX= 2.4+ WX_CONF_ARGS= absolute USE_LUA= 5.1 LUA_COMPS= lua USE_PERL5= build -USE_GMAKE= yes GNU_CONFIGURE= yes -MAN6= asc.6 asc_demount.6 asc_mapedit.6 asc_mount.6 \ - asc_weaponguide.6 -PLIST_FILES= bin/asc bin/asc_demount bin/asc_mapedit bin/asc_mount \ - bin/asc_weaponguide \ - %%DATADIR%%/asc2_dlg.zip %%DATADIR%%/main.ascdat -PLIST_DIRS= ${ASC_MUSICDIR} %%DATADIR%% - CFLAGS+= -D_UNICODE_BROKEN_ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes +PLIST_FILES= bin/asc \ + bin/asc_demount \ + bin/asc_mapedit \ + bin/asc_mount \ + bin/asc_weaponguide \ + man/man6/asc.6.gz \ + man/man6/asc_demount.6.gz \ + man/man6/asc_mapedit.6.gz \ + man/man6/asc_mount.6.gz \ + man/man6/asc_weaponguide.6.gz \ + share/appdata/asc.appdata.xml \ + %%DATADIR%%/asc2_dlg.zip \ + %%DATADIR%%/main.ascdat +PLIST_DIRS= ${ASC_MUSICDIR} \ + %%DATADIR%% +PLIST_DIRSTRY= share/appdata + +DESKTOP_ENTRIES="Advanced Strategic Command" "Turn based strategic game" "" \ + "${PORTNAME}" "" "" + .include .if ${PORT_OPTIONS:MMUSIC} ASC_MUSICS= frontiers.ogg time_to_strike.ogg machine_wars.ogg ASC_MUSICDIR= %%DATADIR%%/music -.for file in ${ASC_MUSICS} -PLIST_FILES+= ${ASC_MUSICDIR}/${file} +.for i in ${ASC_MUSICS} +PLIST_FILES+= ${ASC_MUSICDIR}/${i} .endfor .else .undef ASC_MUSICS @@ -71,9 +81,8 @@ CONFIGURE_ENV+= ac_cv_lib_xvidcore_xvid_ post-extract: .if ${PORT_OPTIONS:MMUSIC} -.for file in ${ASC_MUSICS} - @${TAR} -C ${DISTDIR}/${DIST_SUBDIR} -cf - ${file} | \ - ${TAR} -C ${WRKSRC}/data/music --unlink -xf - +.for i in ${ASC_MUSICS} + @(cd ${DISTDIR}/${DIST_SUBDIR} && ${PAX} -rw ${i} ${WRKSRC}/data/music) .endfor .endif @@ -85,8 +94,7 @@ post-patch: 's|/games/|/|g ; \ s|lua >=|lua-5.1 >=|g ; \ /if test/s|==|=|g' ${WRKSRC}/configure - -post-install: - @${CAT} ${PKGMESSAGE} + @${REINPLACE_CMD} -e \ + 's|? 0 :|? (void)0 :|' ${WRKSRC}/source/errors.h .include Modified: head/games/asc/distinfo ============================================================================== --- head/games/asc/distinfo Sun Jan 19 19:13:34 2014 (r340343) +++ head/games/asc/distinfo Sun Jan 19 19:24:56 2014 (r340344) @@ -1,5 +1,5 @@ -SHA256 (asc/asc-2.5.0.0.tar.bz2) = ad6edb629049bda615b7c9b3046ab33d35dbc25de39a5ed15b9279fe48f779c6 -SIZE (asc/asc-2.5.0.0.tar.bz2) = 42084514 +SHA256 (asc/asc-2.6.0.0.tar.bz2) = e59caa549dc8d8a321211f60652cc809cbbf37d000ee85af790e676d9656cbbb +SIZE (asc/asc-2.6.0.0.tar.bz2) = 42280527 SHA256 (asc/frontiers.ogg) = eabc9b07d1db07626fa817a30dad23b11aada059e32c08914d2d0cf1d58c7fff SIZE (asc/frontiers.ogg) = 4691844 SHA256 (asc/time_to_strike.ogg) = 0334a027b8a45a5df88e1e3e7db9cace2def02396fbcc794d157289e41c9ad05 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 19:48:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27534687; Sun, 19 Jan 2014 19:48:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EC4EF175D; Sun, 19 Jan 2014 19:48:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JJmfVH069841; Sun, 19 Jan 2014 19:48:41 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JJmfg2069840; Sun, 19 Jan 2014 19:48:41 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401191948.s0JJmfg2069840@svn.freebsd.org> From: Rusmir Dusko Date: Sun, 19 Jan 2014 19:48:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340345 - head/games/abe X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 19:48:42 -0000 Author: nemysis Date: Sun Jan 19 19:48:41 2014 New Revision: 340345 URL: http://svnweb.freebsd.org/changeset/ports/340345 QAT: https://qat.redports.org/buildarchive/r340345/ Log: - Change Desktop entry file - Add REINPLACE_CMD, fix src/MapIO.c - Break lines around 80 characters PR: ports/185758 Submitted by: Hardy Schumacher Modified: head/games/abe/Makefile Modified: head/games/abe/Makefile ============================================================================== --- head/games/abe/Makefile Sun Jan 19 19:24:56 2014 (r340344) +++ head/games/abe/Makefile Sun Jan 19 19:48:41 2014 (r340345) @@ -26,8 +26,8 @@ MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="$ PORTDOCS= AUTHORS ChangeLog README -DESKTOP_ENTRIES="Abe's Amazing Avanture" "${COMMENT}" "${PORTNAME}" \ - "${PORTNAME}" "Game;ArcadeGame;" false +DESKTOP_ENTRIES="Abe's Amazing Avanture" "" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" "" OPTIONS_DEFINE= DOCS GOD_MODE OPTIMIZED_CFLAGS OPTIONS_DEFAULT= GOD_MODE OPTIMIZED_CFLAGS @@ -37,21 +37,25 @@ GOD_MODE_DESC= Enable God Mode (toggle w post-patch: .if ${PORT_OPTIONS:MGOD_MODE} || ! ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} -. if ${PORT_OPTIONS:MGOD_MODE} +. if ${PORT_OPTIONS:MGOD_MODE} @${REINPLACE_CMD} -e 's|#define GOD_MODE 0|#define GOD_MODE 1|' \ ${WRKSRC}/src/Game.h -. endif -. if ! ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} +. endif +. if ! ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} @${REINPLACE_CMD} -e 's|-O2||g ; \ s|-fomit-frame-pointer||g ; \ s|-ffast-math||g ; \ s|-fexpensive-optimizations||g' \ ${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} -. endif +. endif .endif + @${REINPLACE_CMD} -e 's|%u|%zu|' \ + ${WRKSRC}/src/MapIO.c + post-install: - ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png ${STAGEDIR}${PREFIX}/share/pixmaps/ + ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/ .for d in images maps sounds @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR}) From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 19:59:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDE49B8D; Sun, 19 Jan 2014 19:59:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B06E21829; Sun, 19 Jan 2014 19:59:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JJxAnh073736; Sun, 19 Jan 2014 19:59:10 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JJxA2e073731; Sun, 19 Jan 2014 19:59:10 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401191959.s0JJxA2e073731@svn.freebsd.org> From: Rusmir Dusko Date: Sun, 19 Jan 2014 19:59:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340346 - in head/games/3dpong: . 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.17 Precedence: list List-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, 19 Jan 2014 19:59:10 -0000 Author: nemysis Date: Sun Jan 19 19:59:10 2014 New Revision: 340346 URL: http://svnweb.freebsd.org/changeset/ports/340346 QAT: https://qat.redports.org/buildarchive/r340346/ Log: - Change Makefile header - Add USE_CSTD=gnu89 - Change Desktop entry file - Break lines around 80 characters - Add patch, fix bad C++ code PR: ports/185756 Submitted by: Hardy Schumacher Added: head/games/3dpong/files/ head/games/3dpong/files/patch-src__text.c (contents, props changed) Modified: head/games/3dpong/Makefile Modified: head/games/3dpong/Makefile ============================================================================== --- head/games/3dpong/Makefile Sun Jan 19 19:48:41 2014 (r340345) +++ head/games/3dpong/Makefile Sun Jan 19 19:59:10 2014 (r340346) @@ -1,3 +1,4 @@ +# Created by: Andrey Zakhvatov # $FreeBSD$ PORTNAME= 3dpong @@ -21,25 +22,29 @@ USES= gmake USE_XORG= x11 MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ XLIB="-L${LOCALBASE}/lib -lX11" +USE_CSTD= gnu89 PORTDOCS= AUTHORS.txt CHANGES.txt README.txt TODO.txt PORTEXAMPLES= * -DESKTOP_ENTRIES="3D Pong" "${COMMENT}" "${PORTNAME}" \ - "${PORTNAME}" "Game;ArcadeGame;" false - OPTIONS_DEFINE= DOCS EXAMPLES +DESKTOP_ENTRIES="3D Pong" "" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" "" + post-patch: - @${REINPLACE_CMD} -e 's|cat sounds/|cat ${DATADIR}/|g' ${WRKSRC}/src/3dpong.c + @${REINPLACE_CMD} -e 's|cat sounds/|cat ${DATADIR}/|g' \ + ${WRKSRC}/src/3dpong.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ @${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/sounds/*.au ${STAGEDIR}${DATADIR} - ${INSTALL_MAN} ${WRKSRC}/src/${PORTNAME}.6 ${STAGEDIR}${MAN6PREFIX}/man/man6/ - ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png ${STAGEDIR}${PREFIX}/share/pixmaps/ + ${INSTALL_MAN} ${WRKSRC}/src/${PORTNAME}.6 \ + ${STAGEDIR}${MAN6PREFIX}/man/man6/ + ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/ @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${STAGEDIR}${DOCSDIR} Added: head/games/3dpong/files/patch-src__text.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/3dpong/files/patch-src__text.c Sun Jan 19 19:59:10 2014 (r340346) @@ -0,0 +1,11 @@ +--- ./src/text.c.orig 1997-12-11 00:27:49.000000000 +0100 ++++ ./src/text.c 2014-01-19 19:19:52.000000000 +0100 +@@ -7,6 +7,8 @@ + + #include + #include "text.h" ++#include ++#include + + int FontHeight(XFontStruct *font_struct) + { From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 20:17:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 696C3E48; Sun, 19 Jan 2014 20:17:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 52EAC1951; Sun, 19 Jan 2014 20:17:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JKHc4T081709; Sun, 19 Jan 2014 20:17:38 GMT (envelope-from sbruno@svn.freebsd.org) Received: (from sbruno@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JKHckf081707; Sun, 19 Jan 2014 20:17:38 GMT (envelope-from sbruno@svn.freebsd.org) Message-Id: <201401192017.s0JKHckf081707@svn.freebsd.org> From: Sean Bruno Date: Sun, 19 Jan 2014 20:17:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340347 - head/audio/clementine-player X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 20:17:38 -0000 Author: sbruno (src committer) Date: Sun Jan 19 20:17:37 2014 New Revision: 340347 URL: http://svnweb.freebsd.org/changeset/ports/340347 QAT: https://qat.redports.org/buildarchive/r340347/ Log: Update pkg-plist to handle the case where Visualisation is disabled. PR: ports/185597 Submitted by: mandree@ Modified: head/audio/clementine-player/Makefile head/audio/clementine-player/pkg-plist Modified: head/audio/clementine-player/Makefile ============================================================================== --- head/audio/clementine-player/Makefile Sun Jan 19 19:59:10 2014 (r340346) +++ head/audio/clementine-player/Makefile Sun Jan 19 20:17:37 2014 (r340347) @@ -3,7 +3,7 @@ PORTNAME= clementine PORTVERSION= 1.2.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= audio MASTER_SITES= GOOGLE_CODE PKGNAMESUFFIX= -player @@ -27,7 +27,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boos LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} PROJECTHOST= ${PORTNAME}${PKGNAMESUFFIX} -USES= compiler:c++11-lib cmake pkgconfig +USES= compiler:c++11-lib cmake pkgconfig desktop-file-utils USE_GL= glew USE_QT4= dbus gui xml qmake_build uic_build moc_build rcc_build \ linguist_build network sql opengl qtestlib corelib webkit \ @@ -45,6 +45,8 @@ CMAKE_ARGS+= -DCMAKE_LIBRARY_PATH:PATH=" OPTIONS_DEFINE= AUDIOCD BREAKPAD DEVICEKIT DROPBOX BOX GIO GOOGLE_DRIVE \ GPOD LASTFM MTP VISUALISATION WIIMOTEDEV MOODBAR +OPTIONS_SUB= VISUALISATION + AUDIOCD_DESC= Devices: Audio CD support BREAKPAD_DESC= Crash reporting BOX_DESC= Box Drive support Modified: head/audio/clementine-player/pkg-plist ============================================================================== --- head/audio/clementine-player/pkg-plist Sun Jan 19 19:59:10 2014 (r340346) +++ head/audio/clementine-player/pkg-plist Sun Jan 19 20:17:37 2014 (r340347) @@ -1,3 +1,4 @@ +@comment keep this sorted with env LC_ALL=C sort -f bin/clementine-player bin/clementine-tagreader share/applications/clementine.desktop @@ -7,578 +8,578 @@ share/kde4/services/clementine-feed.prot share/kde4/services/clementine-itms.protocol share/kde4/services/clementine-itpc.protocol share/kde4/services/clementine-zune.protocol -share/clementine/projectm-presets/Geiss - Pistons.milk -share/clementine/projectm-presets/Rovastar - The Shroomery.milk -share/clementine/projectm-presets/Idiot - MOTIVATION!.milk -share/clementine/projectm-presets/Rovastar - Fractopia (Fantic Dancing Lights Mix).milk -share/clementine/projectm-presets/Geiss - Monotone Ripples.milk -share/clementine/projectm-presets/Zylot - Ether Storm.milk -share/clementine/projectm-presets/Zylot - De(-a)range(d)(ment) strain.milk -share/clementine/projectm-presets/Rocke - Personal Comet.milk -share/clementine/projectm-presets/Aderrasi - What Cannot Be Undone.milk -share/clementine/projectm-presets/project.tga -share/clementine/projectm-presets/Unchained - Jaundice.milk -share/clementine/projectm-presets/Unchained - Cartoon Factory.milk -share/clementine/projectm-presets/Rovastar & Geiss - Octoplasm.milk -share/clementine/projectm-presets/DaNOnE - Highway to Heaven (rotating).milk -share/clementine/projectm-presets/Rovastar - Hyperspace.milk -share/clementine/projectm-presets/Rovastar - Attacking Freedom.milk -share/clementine/projectm-presets/Unchained - Ghostlight Whisper.milk -share/clementine/projectm-presets/Zylot - Rainbow Planet Under Attack.milk -share/clementine/projectm-presets/Rozzor and Zylot - Associative Order.milk -share/clementine/projectm-presets/Unchained - ReAwoke.milk -share/clementine/projectm-presets/Mstress - Acoustic Nerve Impulses (Under Drug Effetcs (Hypn.milk -share/clementine/projectm-presets/Geiss - Cepiasound.milk -share/clementine/projectm-presets/Geiss - Flotsam.milk -share/clementine/projectm-presets/Rovastar - Snapshot Of Space.milk -share/clementine/projectm-presets/Geiss & Rovastar - Notions Of Tonality 2.milk -share/clementine/projectm-presets/Krash - Framed Geometry.milk -share/clementine/projectm-presets/Rovastar & Sperl - Tuxflower.prjm -share/clementine/projectm-presets/Unchained - Jaded Emotion.milk -share/clementine/projectm-presets/idiot - Nucleus.milk -share/clementine/projectm-presets/Telek - Spiral Tabletop (New and Improved!).milk -share/clementine/projectm-presets/Geiss - The Fatty Lumpkin Sunkle Tweaker.milk -share/clementine/projectm-presets/Reenen - phoenix.milk -share/clementine/projectm-presets/Aderrasi - Potion of Spirits.milk -share/clementine/projectm-presets/Rovastar & Unchained - Voodoo Chess Magnet (Everglow Mix).milk -share/clementine/projectm-presets/Rovastar - Altars Of Madness (Duel Mix).milk -share/clementine/projectm-presets/Rozzor & Rovastar - Oozing Resistance (Waveform Mod).milk -share/clementine/projectm-presets/Rovastar - Altars Of Madness.milk -share/clementine/projectm-presets/idiot - Spectrum.milk -share/clementine/projectm-presets/Geiss - Anomaly 2.milk -share/clementine/projectm-presets/Rovastar - Inner Thoughts (Distant Memories Mix).milk -share/clementine/projectm-presets/Unchained & Illusion - Dual Wave 3.milk -share/clementine/projectm-presets/Jess - Trying To Trap A Twister.milk -share/clementine/projectm-presets/Krash & Rovastar - Cerebral Demons (Distant Memory Mix).milk -share/clementine/projectm-presets/Unchained - Beat Demo 2.1.milk -share/clementine/projectm-presets/Geiss - High Dynamic Range.milk -share/clementine/projectm-presets/Geiss - Four Kinds of Amphetamines.milk -share/clementine/projectm-presets/Geiss - Starfish 2.milk -share/clementine/projectm-presets/Geiss - Bass Zoom.milk -share/clementine/projectm-presets/Rovastar & Che - Adela The Flower (Altars Of Madness Mix 2).milk -share/clementine/projectm-presets/Rovastar - Space.milk -share/clementine/projectm-presets/Unchained - Unclaimed Wreckage 2 (Shamanic).milk -share/clementine/projectm-presets/Aderrasi - Contortion.milk -share/clementine/projectm-presets/Rovastar & Telek - Altars of Madness (Rolling Oceans Mix).milk -share/clementine/projectm-presets/Telek - Slow Shift Matrix (bb4.5).milk -share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Poltergiest Mix).milk -share/clementine/projectm-presets/Rovastar & Unchained - Oddball World.milk -share/clementine/projectm-presets/Rovastar & Geiss - Ice Planet.milk -share/clementine/projectm-presets/Idiot & Zylot - Unhealthy Love (Idiot's STDs Mix).milk -share/clementine/projectm-presets/Unchained - Housed In A Childish Mind.milk -share/clementine/projectm-presets/Geiss - Bipolar 3.milk -share/clementine/projectm-presets/Rovastar - Harlequin's Delight (Endless Tunnel Mix).milk -share/clementine/projectm-presets/Bmelgren - Godhead.milk -share/clementine/projectm-presets/Geiss - Ultrafast.milk -share/clementine/projectm-presets/Aderrasi - Aimless (Spirogravity Mix).milk -share/clementine/projectm-presets/Idiot24-7 - Ascending to heaven 2.milk -share/clementine/projectm-presets/Rovastar - Altars Of Madness 4 (Spirit Of Twisted Madness M.milk -share/clementine/projectm-presets/Geiss - Rocket.milk -share/clementine/projectm-presets/Fvese - A Blur.milk -share/clementine/projectm-presets/Geiss - Scary.milk -share/clementine/projectm-presets/Krash & Illusion - Indecisive Mosaic.milk -share/clementine/projectm-presets/Eo.S. - glowsticks v2 05 and proton lights (+Krash's beat code) _Phat_remix07 recursive demons.milk -share/clementine/projectm-presets/Unchained - God Of The Game (Remix).milk -share/clementine/projectm-presets/Che - Watch & Fly.milk -share/clementine/projectm-presets/Geiss - Warp Of Dali 1.milk -share/clementine/projectm-presets/Unchained & Rovastar - Wormhole Pillars.milk -share/clementine/projectm-presets/Geiss & Sperl - Feedback (projectM idle HDR mix).prjm -share/clementine/projectm-presets/baked - mushroom rainbows[2].milk -share/clementine/projectm-presets/Bmelgren - Pentultimate Nerual Slipstream (Tweak 2).milk -share/clementine/projectm-presets/Geiss - Eddies 2.milk -share/clementine/projectm-presets/Idiot - 9-7-02 (Remix) (sustain fixed).milk -share/clementine/projectm-presets/Studio Music and Unchained - Rapid Alteration.milk -share/clementine/projectm-presets/Geiss - Runoff.milk -share/clementine/projectm-presets/Aderrasi - Antidote.milk -share/clementine/projectm-presets/Telek - Slow Thing (Spiderman Mix).milk -share/clementine/projectm-presets/Geiss - Microcosm.milk -share/clementine/projectm-presets/StudioMusic - It's Only Make Believe.milk -share/clementine/projectm-presets/Geiss - Swirl 1.milk -share/clementine/projectm-presets/Unchained & Rovastar - Slow Solstice.milk -share/clementine/projectm-presets/Studio Music - Cherished Desires.milk -share/clementine/projectm-presets/Geiss - Digital Smoke.milk -share/clementine/projectm-presets/Geiss - Vortex 2.milk -share/clementine/projectm-presets/Rovastar - Multiverse Starfield 3.milk -share/clementine/projectm-presets/Geiss - El Cubismo.milk -share/clementine/projectm-presets/Geiss - Swirlie 4.milk -share/clementine/projectm-presets/nil - Vortex of Vortices.milk -share/clementine/projectm-presets/Bmelgren & Krash - Rainbow Orb Peacock (Centred Journey Mix.milk -share/clementine/projectm-presets/EMPR - Random - Turbulence Sandwich.milk -share/clementine/projectm-presets/Tschoey - Music Flower.milk -share/clementine/projectm-presets/PieturP - triptrap_(ultimate-trip-mix).milk -share/clementine/projectm-presets/Rovastar & Fvese - Stranger Minds (Astral Mix).milk -share/clementine/projectm-presets/Geiss - Sinews 2.milk -share/clementine/projectm-presets/Geiss - Trampoline.milk -share/clementine/projectm-presets/Aderrasi - Contortion (Xenomorph Mix).milk -share/clementine/projectm-presets/Rovastar - The Chaos Of Colours.milk -share/clementine/projectm-presets/Rovastar - A Million Miles from Earth (Pathfinder Mix).milk -share/clementine/projectm-presets/Geiss - Bright Fiber Matrix 2.milk -share/clementine/projectm-presets/Rovastar - Explosive Minds.milk -share/clementine/projectm-presets/Rovastar - Parallel Universe.milk -share/clementine/projectm-presets/Rovastar & Unchained - Demonology (Vampire Soul Mix).milk -share/clementine/projectm-presets/Rovastar - Harlequin's Fractal Encounter 2.milk -share/clementine/projectm-presets/Zylot - Azirphaeli's Mirror.milk -share/clementine/projectm-presets/Fvese - New meetings.milk -share/clementine/projectm-presets/Geiss - Music Box.milk -share/clementine/projectm-presets/Unchained - Working the Grid.milk -share/clementine/projectm-presets/EMPR - Random - Changing Polyevolution.milk -share/clementine/projectm-presets/Eo.S. - glowsticks v2 04 music minimal.milk -share/clementine/projectm-presets/Rovastar - Cosmic Mosaic (Active Mix).milk -share/clementine/projectm-presets/illusion & studio music - charged bliss.milk -share/clementine/projectm-presets/Rovastar - Dreamcatcher.milk -share/clementine/projectm-presets/Geiss - De La Moutard 2.milk -share/clementine/projectm-presets/Geiss - Solar Flare (Reptile).milk -share/clementine/projectm-presets/Rovastar - Hallucinogenic Pyramids (Beat Time Mix).milk -share/clementine/projectm-presets/Zylot - Rush.milk -share/clementine/projectm-presets/Zylot - The Deeper.milk -share/clementine/projectm-presets/Rovastar & Che - Asylum Animations.milk -share/clementine/projectm-presets/Aderrasi - Floater Society.milk -share/clementine/projectm-presets/Aderrasi - Blender.milk -share/clementine/projectm-presets/Phat+fiShbRaiN+Eo.S_Mandala_Chasers_remix - www.eos4life.com.milk -share/clementine/projectm-presets/Zylot & Rovastar - Crystal Ball (Cerimonial Decor Mix).milk -share/clementine/projectm-presets/Geiss - Davod The Pod.milk -share/clementine/projectm-presets/Rovastar - Fractopia (Galaxy Swirl Mix).milk -share/clementine/projectm-presets/Krash - War Machine (Shifting Complexity Mix).milk -share/clementine/projectm-presets/Idiot - Cortex (Spiritual Visions Mix).milk -share/clementine/projectm-presets/Zylot - Inside The Planar Portal.milk -share/clementine/projectm-presets/Unchained - Resistance.milk -share/clementine/projectm-presets/Geiss - Octopus.milk -share/clementine/projectm-presets/Geiss - Luz.milk -share/clementine/projectm-presets/Zylot - Block Of Sound (Abstract Architecture Mix).milk -share/clementine/projectm-presets/PieturP - triptrap_(getting_concrete_visions_through_a_diafragma_version).milk -share/clementine/projectm-presets/Rovastar - Omnipresence Resurrection (Raw Mix).milk -share/clementine/projectm-presets/Geiss - Demonic Distortion.milk -share/clementine/projectm-presets/Zylot & Mstress - Toxic Storm On Acid Sea (The End Of The W.milk -share/clementine/projectm-presets/Rovastar - Tripmaker.milk -share/clementine/projectm-presets/Unchained & Rovastar - Triptionary.milk -share/clementine/projectm-presets/che - burning hus (oil mix).milk -share/clementine/projectm-presets/Aderrasi - Agitator.milk -share/clementine/projectm-presets/Geiss - Journey.milk -share/clementine/projectm-presets/Krash & TEcHNO - Rhythmic Mantas.milk -share/clementine/projectm-presets/Fvese - Zoom Effects (Remix 2).milk -share/clementine/projectm-presets/Geiss - Julia Fractal 2.milk -share/clementine/projectm-presets/Geiss - Smoke.milk -share/clementine/projectm-presets/Geiss - Supernova 2.milk -share/clementine/projectm-presets/Rovastar - Frozen Rapture .milk -share/clementine/projectm-presets/Geiss - Space Voyage.milk -share/clementine/projectm-presets/Rovastar & Unchained - Centre Of Gravity.milk -share/clementine/projectm-presets/nil - Can't Stop the Blithering.milk -share/clementine/projectm-presets/headphones.tga -share/clementine/projectm-presets/Geiss - Swirlie 5.milk -share/clementine/projectm-presets/Unchained & Illusion - Logic Morph.milk -share/clementine/projectm-presets/Fvese - Window Reflection 6.milk -share/clementine/projectm-presets/Eo.S.+Phat - Arm_upgrades - transformer.milk -share/clementine/projectm-presets/Unchained - Custom Gramatix (Remix).milk -share/clementine/projectm-presets/Rovastar & Illusion - Shifting Sphere.milk -share/clementine/projectm-presets/Rovastar & Krash - Interwoven (Contra Mix).milk -share/clementine/projectm-presets/Rovastar - Solarized Space.milk -share/clementine/projectm-presets/Rovastar - Magic Carpet.milk -share/clementine/projectm-presets/Rozzor and che - Inside the House of nil.milk -share/clementine/projectm-presets/Rovastar - Kalideostars.milk -share/clementine/projectm-presets/Geiss - Octopus Blue.milk -share/clementine/projectm-presets/Geiss - Dynamic Swirls 2.milk -share/clementine/projectm-presets/che - terracarbon stream.milk -share/clementine/projectm-presets/Aderrasi - Spillswirl.milk -share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Voyage Of Twisted Soul.milk -share/clementine/projectm-presets/Phat+fiShbRaiN+Eo.S_Mandala_Chasers_remix.milk -share/clementine/projectm-presets/Rovastar - Harlequin's Spirit.milk -share/clementine/projectm-presets/Telek - Lost Star (Flash).milk -share/clementine/projectm-presets/Telek - Spokes (More Dynamic).milk -share/clementine/projectm-presets/Krash - Dynamic Borders 1.milk -share/clementine/projectm-presets/Illusion - Heavenly Eye.milk -share/clementine/projectm-presets/Rovastar & Telek - Cosmic Fireworks.milk -share/clementine/projectm-presets/Geiss - Shift.milk -share/clementine/projectm-presets/Aderrasi - Antidote (Side Effects Mix).milk -share/clementine/projectm-presets/Geiss - Swirlie 1.milk -share/clementine/projectm-presets/Fvese - Quicksand.milk -share/clementine/projectm-presets/Geiss - Calligraphy.milk -share/clementine/projectm-presets/Krash - 3D Shapes Demo.milk -share/clementine/projectm-presets/Krash - 3D Shapes Demo 2.milk -share/clementine/projectm-presets/Geiss - Greenland.milk -share/clementine/projectm-presets/Krash - Windowframe To Mega Swirl 2.milk -share/clementine/projectm-presets/Illusion - Figure Eight.milk -share/clementine/projectm-presets/Rovastar - Bellanova (New Wave Mix).milk -share/clementine/projectm-presets/Aderrasi - Airhandler (Menagerie Mix).milk -share/clementine/projectm-presets/Illusion & Rovastar - Snowflake Return.milk -share/clementine/projectm-presets/Rovastar - VooV's Movement (After Dark Mix).milk -share/clementine/projectm-presets/Rovastar - Mosaics Of Ages.milk -share/clementine/projectm-presets/Rovastar and Unchained - Life After Pie (Remix).milk -share/clementine/projectm-presets/Geiss - Inkblot.milk -share/clementine/projectm-presets/Rovastar - Altars Of Madness 2 (Frozen Time Mix).milk -share/clementine/projectm-presets/Unchained - A Matter Of Taste (Remix).milk -share/clementine/projectm-presets/Rovastar & Idiot24-7 - Mixed Emotions (Harlequin's Shame Mi.milk -share/clementine/projectm-presets/Zylot - Waves Of Blood.milk -share/clementine/projectm-presets/Eo.S. - repeater 15 - kaleidoscope b.milk -share/clementine/projectm-presets/Rovastar - Harlequin's Dynamic Fractal 1.milk -share/clementine/projectm-presets/StudioMusic & Unchained - So Much Love.milk -share/clementine/projectm-presets/Mstress & Juppy - Dancers In The Dark.milk -share/clementine/projectm-presets/Rovastar - Altars Of Madness (A Million Miles From Earth Mi.milk -share/clementine/projectm-presets/Aderrasi - Antidote (Aqualung Mix).milk -share/clementine/projectm-presets/Rovastar - Dark Ritual (Star Of Destiny Denied Mix).milk -share/clementine/projectm-presets/Rovastar - Clouded Judgement 3.milk -share/clementine/projectm-presets/Geiss - Constant Velocity.milk -share/clementine/projectm-presets/EvilJim - Follow the ball.milk -share/clementine/projectm-presets/Geiss - Mega Swirl 1.milk -share/clementine/projectm-presets/Unchained & CTho - Bad Vibes.milk -share/clementine/projectm-presets/Geiss - Warp Of Dali Bright.milk -share/clementine/projectm-presets/Aderrasi - Aimless (Gravity Directive Mix).milk -share/clementine/projectm-presets/Rovastar & Unchained - Ambrosia Mystic (Dark Heart Mix).milk -share/clementine/projectm-presets/Illusion & Unchained - Invade My Mind.milk -share/clementine/projectm-presets/Illusion & Unchained - Frozen Eye 1.milk -share/clementine/projectm-presets/Geiss - Volume Zoom.milk -share/clementine/projectm-presets/Geiss - Cycloid 1.milk -share/clementine/projectm-presets/Geiss - Galaxy 1.milk -share/clementine/projectm-presets/Aderrasi - Crystal Storm.milk -share/clementine/projectm-presets/Rovastar - Cosmic Echoes 1.milk -share/clementine/projectm-presets/Rovastar - Inner Thoughts (Strange Cargo Mix).milk -share/clementine/projectm-presets/Geiss - Tornado.milk -share/clementine/projectm-presets/Unchained - Goo Kung Fu.milk -share/clementine/projectm-presets/Unchained - Morat's Final Voyage.milk -share/clementine/projectm-presets/Geiss - Cosmic Dust 2.milk -share/clementine/projectm-presets/Zylot & Krash - Extremophile.milk -share/clementine/projectm-presets/Krash & Illusion - Spiral Movement.milk -share/clementine/projectm-presets/Telek - Slow Shift Matrix (Ethereal Drift).milk -share/clementine/projectm-presets/Telek - Directive Swagger (Spectral Inferno) (fix...) maybe.milk -share/clementine/projectm-presets/Telek EMPR - Scanner - Trust me I've got a Melways.milk -share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Broken Destiny Mix).milk -share/clementine/projectm-presets/Krash & Idiot - Memories Of The Castle.milk -share/clementine/projectm-presets/Fvese - Round and Round (geiss gamma mix).milk -share/clementine/projectm-presets/Aderrasi - Anchorpulse (Pulse Of A Ghast II Mix).milk -share/clementine/projectm-presets/Krash & Rovastar - A Million Miles from Earth (Ripple Mix).milk -share/clementine/projectm-presets/Rovastar - Altars Of Madness (Boxfresh Mix).milk -share/clementine/projectm-presets/Geiss - Pelota De Fuego.milk -share/clementine/projectm-presets/Rovastar - A Million Miles from Earth.milk -share/clementine/projectm-presets/Geiss - Heavenly 1.milk -share/clementine/projectm-presets/Aderrasi - Causeway Of Dreams.milk -share/clementine/projectm-presets/Rovastar and Unchained - Braindance Visions.milk -share/clementine/projectm-presets/Rovastar & Krash - Flowing Synergy.milk -share/clementine/projectm-presets/Idiot - Texture Boxes (Remix 2).milk -share/clementine/projectm-presets/Zylot - Digiscape Advanced Processor.milk -share/clementine/projectm-presets/EMPR - Random - Look mama I'm on TV! 2.milk -share/clementine/projectm-presets/Eo.S.+Phat Cool Bug v2 + (Krash's beat detection).milk -share/clementine/projectm-presets/Zylot - String.milk -share/clementine/projectm-presets/Rovastar - Biohazard Warning.milk -share/clementine/projectm-presets/nil - Disco Comet.milk -share/clementine/projectm-presets/Rovastar - Lost Souls of the Bermuda Triangle (Darkest Soul.milk -share/clementine/projectm-presets/Rovastar & Idiot24-7 - Balk Acid.milk -share/clementine/projectm-presets/Geiss - Tube.milk -share/clementine/projectm-presets/Rovastar & StudioMusic - More Cherished Desires.milk -share/clementine/projectm-presets/Geiss - Reducto Ad Nauseum.milk -share/clementine/projectm-presets/Zylot - Tangent Universe (Collapsed With Artifact Mix).milk -share/clementine/projectm-presets/Krash - Pulse.milk -share/clementine/projectm-presets/Geiss - Bass Kaleidosphere.milk -share/clementine/projectm-presets/Geiss - Planet 2.milk -share/clementine/projectm-presets/Unchained - Beat Demo 2.0.milk -share/clementine/projectm-presets/Rovastar & Zylot - Passion Flower.milk -share/clementine/projectm-presets/Mstress - Snowing Fiber City.milk -share/clementine/projectm-presets/Geiss - Bipolar 2.milk -share/clementine/projectm-presets/Rovastar - Dark Ritual (Star Of Destiny Mix).milk -share/clementine/projectm-presets/Zylot - Wisps.milk -share/clementine/projectm-presets/Rovastar and Krash - Hallucinogenic Pyramids (Extra Beat Ti.milk -share/clementine/projectm-presets/Rovastar - The Chaos Of Colours (Drifting Mix).milk -share/clementine/projectm-presets/Unchained - Non-Professional Music Analyzer.milk -share/clementine/projectm-presets/Illusion & Che - Return Of The King.milk -share/clementine/projectm-presets/Unchained - Beat Demo 10.milk -share/clementine/projectm-presets/Geiss - Warp Of Dali 2.milk -share/clementine/projectm-presets/TEcHNO and SandStorm - Psychodelic Highway.milk -share/clementine/projectm-presets/Aderrasi - Circlefacade.milk -share/clementine/projectm-presets/Rovastar - Harlequin's Fractal Encounter.milk -share/clementine/projectm-presets/Rovastar & Aderrasi - Oceanic Bassograph (Underwater Mix).milk -share/clementine/projectm-presets/Rozzor & Che - Inside The House Of Nil.milk -share/clementine/projectm-presets/Unchained - Games With Light & Sound.milk -share/clementine/projectm-presets/Aderrasi - Elastoid.milk -share/clementine/projectm-presets/Unchained - Beat Demo 1.0.milk -share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Smoking Delusion Mix).milk -share/clementine/projectm-presets/Unchained - French Clothing.milk -share/clementine/projectm-presets/Telek - Flicker (xis).milk -share/clementine/projectm-presets/Telek - Target Practice (tracking retreat slide).milk -share/clementine/projectm-presets/Rovastar & StudioMusic - Twisted Spider Web.milk -share/clementine/projectm-presets/Rovastar - Kalideostars (Round Round Mix).milk -share/clementine/projectm-presets/Idiot - Texture Boxes (Remix).milk -share/clementine/projectm-presets/Geiss - Tokamak.milk -share/clementine/projectm-presets/EMPR - Random - They're so cute Dad can I keep one!.milk -share/clementine/projectm-presets/Zylot and Rovastar - Iouo Stone Morphic Fusion.milk -share/clementine/projectm-presets/Geiss - Two-Pointed Pulsagon.milk -share/clementine/projectm-presets/StudioMusic & Unchained - Entity.milk -share/clementine/projectm-presets/Idiot - What Is.milk -share/clementine/projectm-presets/Geiss - Eddies 1.milk -share/clementine/projectm-presets/Geiss - Toy.milk -share/clementine/projectm-presets/Geiss - Swirl 2.milk -share/clementine/projectm-presets/Rovastar - Altars Of Harlequin's Maddess.milk -share/clementine/projectm-presets/Telek - Sine Wave.milk -share/clementine/projectm-presets/Geiss - Vortex 1.milk -share/clementine/projectm-presets/Rovastar & Zylot - Azirphaeli's Plan (Multiplan Mix).milk -share/clementine/projectm-presets/Geiss - Space Voyage Bright.milk -share/clementine/projectm-presets/Geiss - Three Kinds Of Amphetamines.milk -share/clementine/projectm-presets/Geiss - Solar Flare.milk -share/clementine/projectm-presets/Rozzor & Aderrasi - Canon.milk -share/clementine/projectm-presets/shifter - escape the worm - Eo.S. + Phat - Before_It_Eats_Your_Brain_Mix_v2.milk -share/clementine/projectm-presets/Rovastar - Hyperspace (Frozen Rapture Mix).milk -share/clementine/projectm-presets/Geiss - Fiberglass.milk -share/clementine/projectm-presets/Rovastar & Unchained - Xen Traffic.milk -share/clementine/projectm-presets/Rovastar - Future Speakers.milk -share/clementine/projectm-presets/Rovastar & Fvese - Paranormal Static.milk -share/clementine/projectm-presets/Rovastar - Harlequin's Dynamic Fractal (Dual Spiral Mix ).milk -share/clementine/projectm-presets/Geiss - Sinews 1.milk -share/clementine/projectm-presets/Aderrasi - Ashes Of Air (Remix).milk -share/clementine/projectm-presets/Geiss and Rovastar - The Chaos Of Colours (sprouting diment.milk -share/clementine/projectm-presets/Bmelgren & Krash - Rainbow Orb Peacock (Lonely Signal Gone .milk -share/clementine/projectm-presets/Unchained - Unclaimed Wreckage.milk -share/clementine/projectm-presets/Unchained - All You Can Eat.milk -share/clementine/projectm-presets/Redi Jedi - acid in your brain.milk -share/clementine/projectm-presets/Rovastar - twisted bytes.milk -share/clementine/projectm-presets/Rovastar & Rocke - Headspin.milk -share/clementine/projectm-presets/Geiss - Space Voyage (High-Warp).milk -share/clementine/projectm-presets/Aderrasi - Songflower (Moss Posy).milk -share/clementine/projectm-presets/Rovastar - Timeless Voyage.milk -share/clementine/projectm-presets/Geiss - Bright Fiber Matrix 1.milk -share/clementine/projectm-presets/Geiss - Octopus Gold with Dots.milk -share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Mysticial Awakening Mi.milk -share/clementine/projectm-presets/Idiot & Che - Various Abstract Effects.milk -share/clementine/projectm-presets/Rovastar & Rocke - Sugar Spun Sister.milk -share/clementine/projectm-presets/Rovastar - Forgotten Moon.milk -share/clementine/projectm-presets/Aderrasi - Anchorpulse (Verified Mix).milk -share/clementine/projectm-presets/Rovastar - Halcyon Dreams 3.milk -share/clementine/projectm-presets/Geiss - Serpent.milk -share/clementine/projectm-presets/Geiss - Octopus Fat and Ever Changing.milk -share/clementine/projectm-presets/Rovastar - Oozing Resistance.milk -share/clementine/projectm-presets/Geiss - Quasilinear Submanifolds.milk -share/clementine/projectm-presets/Rovastar & Zylot - Sea Of Zigrot.milk -share/clementine/projectm-presets/Eo.S. + Phat - chasers 18 hallway.milk -share/clementine/projectm-presets/Zylot & Idiot - ATan2 Demo (Spiraling Mad Mix).milk -share/clementine/projectm-presets/Unchained - Beat Demo (Demonology Mix).milk -share/clementine/projectm-presets/CrystalHigh - mad ravetriping.milk -share/clementine/projectm-presets/Krash - Digital Flame.milk -share/clementine/projectm-presets/Geiss - Octopus Gold.milk -share/clementine/projectm-presets/Geiss - De La Moutard 1.milk -share/clementine/projectm-presets/Aderrasi - Airs (Windy Mix).milk -share/clementine/projectm-presets/Rovastar - Kalideostars (Altars Of Madness MIx).milk -share/clementine/projectm-presets/M.tga -share/clementine/projectm-presets/Unchained - Goofy Beat Detection.milk -share/clementine/projectm-presets/Rovastar - Sea Shells.milk -share/clementine/projectm-presets/Unchained - Making a Science of It 4.milk -share/clementine/projectm-presets/Rovastar - Fractopia (Upspoken Mix)_Phat_Speak_When_Spoken_2.milk -share/clementine/projectm-presets/Geiss - Swirlie 3.milk -share/clementine/projectm-presets/Telek - Flicker.milk -share/clementine/projectm-presets/Idiot24-7 - Meeting place.milk -share/clementine/projectm-presets/Zylot & Aderrasi - Oceanic Bassograph (New Jersey Shore Mix.milk -share/clementine/projectm-presets/Rovastar - Harlequin's Dynamic Fractal 3.milk -share/clementine/projectm-presets/StudioMusic & Unchained - Wrenched Fate.milk -share/clementine/projectm-presets/Idiot - Madness Within The Void (Remix).milk -share/clementine/projectm-presets/Geiss - Surface.milk -share/clementine/projectm-presets/Illusion & Rovastar - Clouded Bottle.milk -share/clementine/projectm-presets/Aderrasi - Flowing Form.milk -share/clementine/projectm-presets/Aderrasi - Causeway Of Dreams (Nightmare Mix).milk -share/clementine/projectm-presets/Unchained - Cranked On Failure.milk -share/clementine/projectm-presets/Zylot & Mstress - Celebrate.milk -share/clementine/projectm-presets/Geiss - Mega Swirl 3.milk -share/clementine/projectm-presets/Geiss - Aieeeeee!!!.milk -share/clementine/projectm-presets/Geiss - Script.milk -share/clementine/projectm-presets/Unchained - Deeper Logic.milk -share/clementine/projectm-presets/StudioMusic - Harmonic Bliss (elated mix).milk -share/clementine/projectm-presets/Rovastar & Geiss - Approach (Vectrip Mix).milk -share/clementine/projectm-presets/idiot - Some big word I learned.milk -share/clementine/projectm-presets/Idiot - Tentacle Dreams (Remix).milk -share/clementine/projectm-presets/Geiss - Waterfall.milk -share/clementine/projectm-presets/idiot - Sinful Code (unchained style).milk -share/clementine/projectm-presets/Illusion & Che - The Piper.milk -share/clementine/projectm-presets/Geiss - Festive.milk -share/clementine/projectm-presets/Geiss - Approach.milk -share/clementine/projectm-presets/[Ishan] - Life in the drains.milk -share/clementine/projectm-presets/Aderrasi - Making Time (Swamp Mix).milk -share/clementine/projectm-presets/Krash - Twisting Indecision.milk -share/clementine/projectm-presets/Zylot - S Pulse Virus.milk -share/clementine/projectm-presets/Rovastar - Harlequin's Spirit (Twisted Mix).milk -share/clementine/projectm-presets/Geiss - Bipolar 4.milk -share/clementine/projectm-presets/Rovastar - Pandora's Volcano.milk -share/clementine/projectm-presets/Unchained - Free to Feel (Valium Remix).milk -share/clementine/projectm-presets/nil - Cid and Lucy.milk -share/clementine/projectm-presets/Geiss - Diffraction.milk -share/clementine/projectm-presets/Rozzor - Learning Curve (Invert tweak).milk -share/clementine/projectm-presets/Rovastar - Harlequin's Dynamic Fractal (Crazed Spiral Mix).milk -share/clementine/projectm-presets/Rovastar & Krash - Cerebral Demons.milk -share/clementine/projectm-presets/Redi Jedi - multiple points of origin, one destination.milk -share/clementine/projectm-presets/Rovastar & Rocke - Answer.42 (Trippy S. Mix).milk -share/clementine/projectm-presets/nil - Can't Stop the Cramming.milk -share/clementine/projectm-presets/Fvese - simple.milk -share/clementine/projectm-presets/Rozzor and StudioMusic - Vertigyny (Geiss shape mod).milk -share/clementine/projectm-presets/Rovastar - Fractopia (Upspoken Mix).milk -share/clementine/projectm-presets/Geiss - Descent.milk -share/clementine/projectm-presets/Idiot - Typomatic (Remix 2).milk -share/clementine/projectm-presets/Geiss - Anomaly 1.milk -share/clementine/projectm-presets/Krash & Zylot - Inside The Planar Portal (Indecision Mix).milk -share/clementine/projectm-presets/Eo.S. - glowsticks v2 03 music.milk -share/clementine/projectm-presets/Rovastar - Altars Of Madness (Surealist Mix).milk -share/clementine/projectm-presets/Geiss - Heavenly 3.milk -share/clementine/projectm-presets/Rovastar - The Awakening.milk -share/clementine/projectm-presets/Geiss - Nautilus.milk -share/clementine/projectm-presets/Geiss - Oldskool Mellowstyle.milk -share/clementine/projectm-presets/Idiot - What Shall Come.milk -share/clementine/projectm-presets/Geiss - Sound And The Fury.milk -share/clementine/projectm-presets/Aderrasi - Chromatic Abyss (The Other Side).milk -share/clementine/projectm-presets/Geiss - Three And A Half Kinds Of Amphetamines.milk -share/clementine/projectm-presets/Aderrasi - Candy Avian.milk -share/clementine/projectm-presets/Krash & Rovastar - Cerebral Demons - Phat + Eo.S. hall of ghouls Remix.milk -share/clementine/projectm-presets/Aderrasi - Bitterfeld (Crystal Border Mix).milk -share/clementine/projectm-presets/Rovastar - Chapel Of Ghouls.milk -share/clementine/projectm-presets/Rozzor and Rovastar - Altars Of Madness 3 (ooze tweak).milk -share/clementine/projectm-presets/Rovastar - Starquake (Sunquake Mix).milk -share/clementine/projectm-presets/Geiss - Hovering.milk -share/clementine/projectm-presets/Unchained & Che - Oddnezz 3.milk -share/clementine/projectm-presets/Unchained & Che - Oddnezz 4 (Done it again).milk -share/clementine/projectm-presets/Unchained - Beat Demo 2.2.milk -share/clementine/projectm-presets/Geiss - Downward Spiral.milk -share/clementine/projectm-presets/Geiss - Eggs.milk -share/clementine/projectm-presets/Unchained - Bad Karma Oddnezz Style.milk -share/clementine/projectm-presets/Rovastar & Fvese - Dark Subconscious.milk -share/clementine/projectm-presets/Rovastar - Inner Thoughts (Dark Secret Mix).milk -share/clementine/projectm-presets/Geiss - Starfish 1.milk -share/clementine/projectm-presets/Rovastar - VooV's Movement.milk -share/clementine/projectm-presets/Rovastar - Space (Twisted Dimension Mix).milk -share/clementine/projectm-presets/Unchained - Subjective Experience Of The Manifold.milk -share/clementine/projectm-presets/Geiss - Pinch.milk -share/clementine/projectm-presets/Eo.S. - glowsticks v2 05 and proton lights (+Krash's beat code) _Phat_remix02b.milk -share/clementine/projectm-presets/Geiss - Solar Flare (Blue).milk -share/clementine/projectm-presets/Unchained - Perverted Dialect.milk -share/clementine/projectm-presets/Geiss - Destruction.milk -share/clementine/projectm-presets/Rovastar - Decreasing Dreams (Extended Movement Mix).milk -share/clementine/projectm-presets/Rovastar & Geiss - Octotrip (MultiTrip Mix).milk -share/clementine/projectm-presets/Bmelgren - Take This Highway.milk -share/clementine/projectm-presets/Aderrasi - Anomalous Material Science (Pure Splinter Mix).milk -share/clementine/projectm-presets/nil - Singularity in My Oscilloscope.milk -share/clementine/projectm-presets/Unchained - Shaping The Grid.milk -share/clementine/projectm-presets/Geiss - Mega Swirl 2.milk -share/clementine/projectm-presets/StudioMusic - Twisted Galaxy.milk -share/clementine/projectm-presets/Geiss - Cycloid 2.milk -share/clementine/projectm-presets/Rovastar - Cosmic Echoes 2.milk -share/clementine/projectm-presets/Geiss - Flower.milk -share/clementine/projectm-presets/Geiss - Galaxy 2.milk -share/clementine/projectm-presets/Zylot - Global Earthquake.milk -share/clementine/projectm-presets/Krash & Rovastar - The Devil Is In The Details.milk -share/clementine/projectm-presets/Geiss - Feedback.milk -share/clementine/projectm-presets/Rozzor and Idiot - Any Other Deep Rising.milk -share/clementine/projectm-presets/Geiss - Cosmic Dust 1.milk -share/clementine/projectm-presets/Eo.S. - repeater 05 - rave on acid.milk -share/clementine/projectm-presets/Unchained - Picture Of Poison.milk -share/clementine/projectm-presets/Geiss - Bipolar 5.milk -share/clementine/projectm-presets/Illusion & Unchained - Re-Enter Homeworld.milk -share/clementine/projectm-presets/Aderrasi - Bow To Gravity.milk -share/clementine/projectm-presets/Eo.S. - heater core C_Phat's_class + sparks_mix.milk -share/clementine/projectm-presets/idiot - Nothing Yet - 03 - The worst of the pack.milk -share/clementine/projectm-presets/Zylot - De(-a)range(d)(ment) complex.milk -share/clementine/projectm-presets/StudioMusic Aderrasi & nil - LA movement (Intellectual Sens.milk -share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Smoke Mix).milk -share/clementine/projectm-presets/Geiss - Iris.milk -share/clementine/projectm-presets/Geiss - Cruzin'.milk -share/clementine/projectm-presets/Zylot - Block Of Sound (Fractal Construction Mix).milk -share/clementine/projectm-presets/Fvese & Idiot24-7 - Rearview Mirror.milk -share/clementine/projectm-presets/Unchained - Unified Drag 2.milk -share/clementine/projectm-presets/Geiss - Symmetry.milk -share/clementine/projectm-presets/Rovastar - Omnipresence Resurrection.milk -share/clementine/projectm-presets/Geiss - Heavenly 2.milk -share/clementine/projectm-presets/Rovastar & Fvese - Mosaic Waves.milk -share/clementine/projectm-presets/Unchained - Invariant Under Rigorous Motions.milk -share/clementine/projectm-presets/Krash and Rovastar - Rainbow Orb.milk -share/clementine/projectm-presets/Geiss - Octopus Ever Changing.milk -share/clementine/projectm-presets/Geiss - Bonfire.milk -share/clementine/projectm-presets/Geiss - Blasto.milk -share/clementine/projectm-presets/Eo.S. - heater core C_Phat's_on route_mix+beam.milk -share/clementine/projectm-presets/TobiasWolfBoi - The Pit.milk -share/clementine/projectm-presets/Rovastar - LabFunk.milk -share/clementine/projectm-presets/Krash & Rovastar - Altars Of Madness (Mad Ocean Mix).milk -share/clementine/projectm-presets/StudioMusic - Numerosity.milk -share/clementine/projectm-presets/Geiss - Shake.milk -share/clementine/projectm-presets/Unchained - Painful Plasma (Multi-Wave Mirrored Rage) -- Ro.milk -share/clementine/projectm-presets/Rovastar & Fvese - Deadly Flower.milk -share/clementine/projectm-presets/Rovastar - Inner Thoughts (Frantic Thoughts Mix).milk -share/clementine/projectm-presets/Geiss & Rovastar - Tokamak (Naked Intrusion Mix).milk -share/clementine/projectm-presets/Zylot - The Inner Workings of my New Computer.milk -share/clementine/projectm-presets/Rovastar - Cosmic Havoc.milk -share/clementine/projectm-presets/Unchained - Beat Demo 2.3.milk -share/clementine/projectm-presets/fiShbRaiN - blueprint.milk -share/clementine/projectm-presets/Geiss - Hyperion.milk -share/clementine/projectm-presets/Geiss - Planet 1.milk -share/clementine/projectm-presets/Fvese - The Tunnel (Final Stage Mix).milk -share/clementine/projectm-presets/Rovastar - Touchdown on Mars (Detailed Pictures Mix).milk -share/clementine/projectm-presets/Rovastar - A Million Miles From Earth (Wormhole Mix).milk -share/clementine/projectm-presets/Mstress & Juppy - Dancer.milk -share/clementine/projectm-presets/Rovastar - Hyperspace (Hyper Speed Mix).milk -share/clementine/projectm-presets/Geiss - Churn.milk -share/clementine/projectm-presets/Geiss & Rovastar - Julia Fractal (Vectrip Mix).milk -share/clementine/projectm-presets/Zylot - Color Of Music.milk -share/clementine/projectm-presets/Geiss - Bipolar 1.milk -share/clementine/projectm-presets/Unchained - Ribald Ballad.milk -share/clementine/projectm-presets/Fvese - Stand Still!.milk -share/clementine/projectm-presets/Unchained & Rovastar - Luckless.milk -share/clementine/projectm-presets/Geiss - Drift.milk -share/clementine/projectm-presets/Che - Escape.milk -share/clementine/projectm-presets/StudioMusic & Unchained - Minor Alteration.milk -share/clementine/projectm-presets/Unchained - ventilation.milk -share/clementine/projectm-presets/Zylot - Crystal Ball (Magical Reaction Mix).milk -share/clementine/projectm-presets/Geiss - Spacedust.milk -share/clementine/projectm-presets/Rovastar & Idiot24-7 - Mixed Emotions (Harlequin's Shame Mix).milk -share/clementine/projectm-presets/Fvese - 0 To 60.milk -share/clementine/projectm-presets/Unchained & Rovastar - Rainbow Obscura.milk -share/clementine/projectm-presets/Rovastar & Fvese - Stranger Minds.milk -share/clementine/projectm-presets/Telek - Recirculate (Cool).milk -share/clementine/projectm-presets/Fvese - Lifesavor Anyone.milk -share/clementine/projectm-presets/Rovastar & Geiss - Bipolar 2 (Vectrip Mix).milk -share/clementine/projectm-presets/Geiss - Supernova 1.milk -share/clementine/projectm-presets/Unchained & Illusion - Spirit Morph.milk -share/clementine/projectm-presets/TobiasWolfBoi - Cataract.milk -share/clementine/projectm-presets/Rovastar - Multiverse Starfield 1.milk -share/clementine/projectm-presets/Rozzer & Zylot - Force Field Generator (Slowtime Tweak).milk -share/clementine/projectm-presets/Rovastar - Solarized Space (Space DNA Mix).milk -share/clementine/projectm-presets/Krash - Season's Greetings 2.milk -share/clementine/projectm-presets/Unchained - In Memory Of Peg.milk -share/clementine/projectm-presets/Tux.tga -share/clementine/projectm-presets/Unchained & Rovastar - For The Seagull.milk -share/clementine/projectm-presets/Geiss - Julia Fractal 1.milk -share/clementine/projectm-presets/Unchained - Picture Of Exile.milk -share/clementine/projectm-presets/Telek - City Helix Lattice.milk -share/clementine/projectm-presets/Telek - Slow Shift Matrix.milk -share/clementine/projectm-presets/Rocke - Cold Love (Tei Zwaa).milk -share/clementine/projectm-presets/Geiss - Reducto Absurdum.milk -share/clementine/projectm-presets/che - adela the flower.milk -share/clementine/projectm-presets/Geiss - Corpus Callosum.milk -share/clementine/projectm-presets/Geiss & Rovastar - The Chaos Of Colours (sprouting dimentia mix).milk -share/clementine/projectm-presets/Geiss - Sunsets.milk -share/clementine/projectm-presets/Geiss - Asymptote.milk -share/clementine/projectm-presets/shifter - escape the worm - Eo.S. + Phat 5362.milk -share/clementine/projectm-presets/Geiss - Dynamic Swirls 1.milk -share/clementine/projectm-presets/Geiss - Casino.milk -share/clementine/projectm-presets/Rozzor and Rovastar - Altars Of Madness 3 (ooze tweak with .milk -share/clementine/projectm-presets/Zylot - Puddle Of Music.milk -share/clementine/projectm-presets/Rovastar - Altars Of Harlequin's Madness (Dark Disorder Mix.milk -share/clementine/projectm-presets/Idiot & Rovastar - Altars Of Madness 2 (X.42 Mix).milk -share/clementine/projectm-presets/Krash & Rovastar - Switching Polygons.milk -share/clementine/projectm-presets/Zylot - Visionarie (geiss aspect ratio fix).milk -share/clementine/projectm-presets/Aderrasi - Antique Abyss.milk -share/clementine/projectm-presets/Zylot - light of the path.milk -share/clementine/projectm-presets/StudioMusic & Unchained - State Of Discretion.milk -share/clementine/projectm-presets/Unchained & Rovastar - Xen Traffic.milk -share/clementine/projectm-presets/Rovastar & Geiss - Octotrip.milk -share/clementine/projectm-presets/Krash and Fvese - Molten Indecision (Fvese Remix).milk -share/clementine/projectm-presets/EvilJim - Ice Drops.milk -share/clementine/projectm-presets/Rovastar - Chemical Spirituality.milk -share/clementine/projectm-presets/Geiss - Flower Blossom.milk -share/clementine/projectm-presets/Rovastar & Zylot - Narell's Fever.milk -share/clementine/projectm-presets/Zylot - Mixing Pot.milk -share/clementine/projectm-presets/Aderrasi - Arise! (Padded Mix).milk -share/clementine/projectm-presets/Aderrasi - Dark Matter (Converse Mix).milk -share/clementine/projectm-presets/Aderrasi - Causeway Of Dreams (REMix).milk -share/clementine/projectm-presets/Geiss - Feedback 2.milk -share/clementine/projectm-presets/Geiss - Swirlie 2.milk -share/clementine/projectm-presets/Rovastar - Harlequin's Dynamic Fractal 2.milk -share/clementine/projectm-presets/Unchained - Picture Of Nectar.milk -share/clementine/projectm-presets/Geiss - Coral.milk -share/clementine/projectm-presets/Aderrasi - Brakefreak.milk -share/clementine/projectm-presets/Illusion & Rovastar - Snowflake Delight.milk -share/clementine/projectm-presets/Aderrasi - What cannot be.milk -share/clementine/projectm-presets/Unchained & Rovastar - Wormhole Pillars (Hall of Shadows mi.milk -share/clementine/projectm-presets/Rovastar - Inner Thoughts (Clouded Judgement Mix).milk -share/clementine/projectm-presets/Che - Burning Hus.milk -@dirrmtry share/clementine/projectm-presets +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Agitator.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Aimless (Gravity Directive Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Aimless (Spirogravity Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Airhandler (Menagerie Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Airs (Windy Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Anchorpulse (Pulse Of A Ghast II Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Anchorpulse (Verified Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Anomalous Material Science (Pure Splinter Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Antidote (Aqualung Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Antidote (Side Effects Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Antidote.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Antique Abyss.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Arise! (Padded Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Ashes Of Air (Remix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Bitterfeld (Crystal Border Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Blender.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Bow To Gravity.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Brakefreak.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Candy Avian.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Causeway Of Dreams (Nightmare Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Causeway Of Dreams (REMix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Causeway Of Dreams.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Chromatic Abyss (The Other Side).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Circlefacade.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Contortion (Xenomorph Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Contortion.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Crystal Storm.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Dark Matter (Converse Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Elastoid.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Floater Society.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Flowing Form.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Making Time (Swamp Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Potion of Spirits.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Songflower (Moss Posy).milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - Spillswirl.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - What Cannot Be Undone.milk +%%VISUALISATION%%share/clementine/projectm-presets/Aderrasi - What cannot be.milk +%%VISUALISATION%%share/clementine/projectm-presets/baked - mushroom rainbows[2].milk +%%VISUALISATION%%share/clementine/projectm-presets/Bmelgren & Krash - Rainbow Orb Peacock (Centred Journey Mix.milk +%%VISUALISATION%%share/clementine/projectm-presets/Bmelgren & Krash - Rainbow Orb Peacock (Lonely Signal Gone .milk +%%VISUALISATION%%share/clementine/projectm-presets/Bmelgren - Godhead.milk +%%VISUALISATION%%share/clementine/projectm-presets/Bmelgren - Pentultimate Nerual Slipstream (Tweak 2).milk +%%VISUALISATION%%share/clementine/projectm-presets/Bmelgren - Take This Highway.milk +%%VISUALISATION%%share/clementine/projectm-presets/che - adela the flower.milk +%%VISUALISATION%%share/clementine/projectm-presets/che - burning hus (oil mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Che - Burning Hus.milk +%%VISUALISATION%%share/clementine/projectm-presets/Che - Escape.milk +%%VISUALISATION%%share/clementine/projectm-presets/che - terracarbon stream.milk +%%VISUALISATION%%share/clementine/projectm-presets/Che - Watch & Fly.milk +%%VISUALISATION%%share/clementine/projectm-presets/CrystalHigh - mad ravetriping.milk +%%VISUALISATION%%share/clementine/projectm-presets/DaNOnE - Highway to Heaven (rotating).milk +%%VISUALISATION%%share/clementine/projectm-presets/EMPR - Random - Changing Polyevolution.milk +%%VISUALISATION%%share/clementine/projectm-presets/EMPR - Random - Look mama I'm on TV! 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/EMPR - Random - They're so cute Dad can I keep one!.milk +%%VISUALISATION%%share/clementine/projectm-presets/EMPR - Random - Turbulence Sandwich.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S. + Phat - chasers 18 hallway.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S. - glowsticks v2 03 music.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S. - glowsticks v2 04 music minimal.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S. - glowsticks v2 05 and proton lights (+Krash's beat code) _Phat_remix02b.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S. - glowsticks v2 05 and proton lights (+Krash's beat code) _Phat_remix07 recursive demons.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S. - heater core C_Phat's_class + sparks_mix.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S. - heater core C_Phat's_on route_mix+beam.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S. - repeater 05 - rave on acid.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S. - repeater 15 - kaleidoscope b.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S.+Phat - Arm_upgrades - transformer.milk +%%VISUALISATION%%share/clementine/projectm-presets/Eo.S.+Phat Cool Bug v2 + (Krash's beat detection).milk +%%VISUALISATION%%share/clementine/projectm-presets/EvilJim - Follow the ball.milk +%%VISUALISATION%%share/clementine/projectm-presets/EvilJim - Ice Drops.milk +%%VISUALISATION%%share/clementine/projectm-presets/fiShbRaiN - blueprint.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese & Idiot24-7 - Rearview Mirror.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - 0 To 60.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - A Blur.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - Lifesavor Anyone.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - New meetings.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - Quicksand.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - Round and Round (geiss gamma mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - simple.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - Stand Still!.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - The Tunnel (Final Stage Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - Window Reflection 6.milk +%%VISUALISATION%%share/clementine/projectm-presets/Fvese - Zoom Effects (Remix 2).milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss & Rovastar - Julia Fractal (Vectrip Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss & Rovastar - Notions Of Tonality 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss & Rovastar - The Chaos Of Colours (sprouting dimentia mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss & Rovastar - Tokamak (Naked Intrusion Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss & Sperl - Feedback (projectM idle HDR mix).prjm +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Aieeeeee!!!.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Anomaly 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Anomaly 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Approach.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Asymptote.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bass Kaleidosphere.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bass Zoom.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bipolar 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bipolar 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bipolar 3.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bipolar 4.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bipolar 5.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Blasto.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bonfire.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bright Fiber Matrix 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Bright Fiber Matrix 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Calligraphy.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Casino.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Cepiasound.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Churn.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Constant Velocity.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Coral.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Corpus Callosum.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Cosmic Dust 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Cosmic Dust 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Cruzin'.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Cycloid 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Cycloid 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Davod The Pod.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - De La Moutard 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - De La Moutard 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Demonic Distortion.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Descent.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Destruction.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Diffraction.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Digital Smoke.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Downward Spiral.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Drift.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Dynamic Swirls 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Dynamic Swirls 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Eddies 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Eddies 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Eggs.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - El Cubismo.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Feedback 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Feedback.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Festive.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Fiberglass.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Flotsam.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Flower Blossom.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Flower.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Four Kinds of Amphetamines.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Galaxy 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Galaxy 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Greenland.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Heavenly 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Heavenly 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Heavenly 3.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - High Dynamic Range.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Hovering.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Hyperion.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Inkblot.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Iris.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Journey.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Julia Fractal 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Julia Fractal 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Luz.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Mega Swirl 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Mega Swirl 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Mega Swirl 3.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Microcosm.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Monotone Ripples.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Music Box.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Nautilus.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Octopus Blue.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Octopus Ever Changing.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Octopus Fat and Ever Changing.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Octopus Gold with Dots.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Octopus Gold.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Octopus.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Oldskool Mellowstyle.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Pelota De Fuego.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Pinch.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Pistons.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Planet 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Planet 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Quasilinear Submanifolds.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Reducto Absurdum.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Reducto Ad Nauseum.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Rocket.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Runoff.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Scary.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Script.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Serpent.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Shake.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Shift.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Sinews 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Sinews 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Smoke.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Solar Flare (Blue).milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Solar Flare (Reptile).milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Solar Flare.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Sound And The Fury.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Space Voyage (High-Warp).milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Space Voyage Bright.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Space Voyage.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Spacedust.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Starfish 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Starfish 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Sunsets.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Supernova 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Supernova 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Surface.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Swirl 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Swirl 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Swirlie 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Swirlie 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Swirlie 3.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Swirlie 4.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Swirlie 5.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Symmetry.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - The Fatty Lumpkin Sunkle Tweaker.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Three And A Half Kinds Of Amphetamines.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Three Kinds Of Amphetamines.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Tokamak.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Tornado.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Toy.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Trampoline.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Tube.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Two-Pointed Pulsagon.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Ultrafast.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Volume Zoom.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Vortex 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Vortex 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Warp Of Dali 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Warp Of Dali 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Warp Of Dali Bright.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss - Waterfall.milk +%%VISUALISATION%%share/clementine/projectm-presets/Geiss and Rovastar - The Chaos Of Colours (sprouting diment.milk +%%VISUALISATION%%share/clementine/projectm-presets/headphones.tga +%%VISUALISATION%%share/clementine/projectm-presets/Idiot & Che - Various Abstract Effects.milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot & Rovastar - Altars Of Madness 2 (X.42 Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot & Zylot - Unhealthy Love (Idiot's STDs Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - 9-7-02 (Remix) (sustain fixed).milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - Cortex (Spiritual Visions Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - Madness Within The Void (Remix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - MOTIVATION!.milk +%%VISUALISATION%%share/clementine/projectm-presets/idiot - Nothing Yet - 03 - The worst of the pack.milk +%%VISUALISATION%%share/clementine/projectm-presets/idiot - Nucleus.milk +%%VISUALISATION%%share/clementine/projectm-presets/idiot - Sinful Code (unchained style).milk +%%VISUALISATION%%share/clementine/projectm-presets/idiot - Some big word I learned.milk +%%VISUALISATION%%share/clementine/projectm-presets/idiot - Spectrum.milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - Tentacle Dreams (Remix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - Texture Boxes (Remix 2).milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - Texture Boxes (Remix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - Typomatic (Remix 2).milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - What Is.milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot - What Shall Come.milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot24-7 - Ascending to heaven 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Idiot24-7 - Meeting place.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion & Che - Return Of The King.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion & Che - The Piper.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion & Rovastar - Clouded Bottle.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion & Rovastar - Snowflake Delight.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion & Rovastar - Snowflake Return.milk +%%VISUALISATION%%share/clementine/projectm-presets/illusion & studio music - charged bliss.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion & Unchained - Frozen Eye 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion & Unchained - Invade My Mind.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion & Unchained - Re-Enter Homeworld.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion - Figure Eight.milk +%%VISUALISATION%%share/clementine/projectm-presets/Illusion - Heavenly Eye.milk +%%VISUALISATION%%share/clementine/projectm-presets/Jess - Trying To Trap A Twister.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Idiot - Memories Of The Castle.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Illusion - Indecisive Mosaic.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Illusion - Spiral Movement.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Rovastar - A Million Miles from Earth (Ripple Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Rovastar - Altars Of Madness (Mad Ocean Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Rovastar - Cerebral Demons (Distant Memory Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Rovastar - Cerebral Demons - Phat + Eo.S. hall of ghouls Remix.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Rovastar - Switching Polygons.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Rovastar - The Devil Is In The Details.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & TEcHNO - Rhythmic Mantas.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash & Zylot - Inside The Planar Portal (Indecision Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - 3D Shapes Demo 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - 3D Shapes Demo.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - Digital Flame.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - Dynamic Borders 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - Framed Geometry.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - Pulse.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - Season's Greetings 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - Twisting Indecision.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - War Machine (Shifting Complexity Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash - Windowframe To Mega Swirl 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash and Fvese - Molten Indecision (Fvese Remix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Krash and Rovastar - Rainbow Orb.milk +%%VISUALISATION%%share/clementine/projectm-presets/M.tga +%%VISUALISATION%%share/clementine/projectm-presets/Mstress & Juppy - Dancer.milk +%%VISUALISATION%%share/clementine/projectm-presets/Mstress & Juppy - Dancers In The Dark.milk +%%VISUALISATION%%share/clementine/projectm-presets/Mstress - Acoustic Nerve Impulses (Under Drug Effetcs (Hypn.milk +%%VISUALISATION%%share/clementine/projectm-presets/Mstress - Snowing Fiber City.milk +%%VISUALISATION%%share/clementine/projectm-presets/nil - Can't Stop the Blithering.milk +%%VISUALISATION%%share/clementine/projectm-presets/nil - Can't Stop the Cramming.milk +%%VISUALISATION%%share/clementine/projectm-presets/nil - Cid and Lucy.milk +%%VISUALISATION%%share/clementine/projectm-presets/nil - Disco Comet.milk +%%VISUALISATION%%share/clementine/projectm-presets/nil - Singularity in My Oscilloscope.milk +%%VISUALISATION%%share/clementine/projectm-presets/nil - Vortex of Vortices.milk +%%VISUALISATION%%share/clementine/projectm-presets/Phat+fiShbRaiN+Eo.S_Mandala_Chasers_remix - www.eos4life.com.milk +%%VISUALISATION%%share/clementine/projectm-presets/Phat+fiShbRaiN+Eo.S_Mandala_Chasers_remix.milk +%%VISUALISATION%%share/clementine/projectm-presets/PieturP - triptrap_(getting_concrete_visions_through_a_diafragma_version).milk +%%VISUALISATION%%share/clementine/projectm-presets/PieturP - triptrap_(ultimate-trip-mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/project.tga +%%VISUALISATION%%share/clementine/projectm-presets/Redi Jedi - acid in your brain.milk +%%VISUALISATION%%share/clementine/projectm-presets/Redi Jedi - multiple points of origin, one destination.milk +%%VISUALISATION%%share/clementine/projectm-presets/Reenen - phoenix.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rocke - Cold Love (Tei Zwaa).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rocke - Personal Comet.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Aderrasi - Oceanic Bassograph (Underwater Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Che - Adela The Flower (Altars Of Madness Mix 2).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Che - Asylum Animations.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Fvese - Dark Subconscious.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Fvese - Deadly Flower.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Fvese - Mosaic Waves.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Fvese - Paranormal Static.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Fvese - Stranger Minds (Astral Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Fvese - Stranger Minds.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Approach (Vectrip Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Bipolar 2 (Vectrip Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Broken Destiny Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Mysticial Awakening Mi.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Poltergiest Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Smoke Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Smoking Delusion Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Dynamic Swirls 3 (Voyage Of Twisted Soul.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Ice Planet.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Octoplasm.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Octotrip (MultiTrip Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Geiss - Octotrip.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Idiot24-7 - Balk Acid.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Idiot24-7 - Mixed Emotions (Harlequin's Shame Mi.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Idiot24-7 - Mixed Emotions (Harlequin's Shame Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Illusion - Shifting Sphere.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Krash - Cerebral Demons.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Krash - Flowing Synergy.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Krash - Interwoven (Contra Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Rocke - Answer.42 (Trippy S. Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Rocke - Headspin.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Rocke - Sugar Spun Sister.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Sperl - Tuxflower.prjm +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & StudioMusic - More Cherished Desires.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & StudioMusic - Twisted Spider Web.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Telek - Altars of Madness (Rolling Oceans Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Telek - Cosmic Fireworks.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Unchained - Ambrosia Mystic (Dark Heart Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Unchained - Centre Of Gravity.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Unchained - Demonology (Vampire Soul Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Unchained - Oddball World.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Unchained - Voodoo Chess Magnet (Everglow Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Unchained - Xen Traffic.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Zylot - Azirphaeli's Plan (Multiplan Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Zylot - Narell's Fever.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Zylot - Passion Flower.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar & Zylot - Sea Of Zigrot.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - A Million Miles from Earth (Pathfinder Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - A Million Miles From Earth (Wormhole Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - A Million Miles from Earth.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Altars Of Harlequin's Maddess.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Altars Of Harlequin's Madness (Dark Disorder Mix.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Altars Of Madness (A Million Miles From Earth Mi.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Altars Of Madness (Boxfresh Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Altars Of Madness (Duel Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Altars Of Madness (Surealist Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Altars Of Madness 2 (Frozen Time Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Altars Of Madness 4 (Spirit Of Twisted Madness M.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Altars Of Madness.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Attacking Freedom.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Bellanova (New Wave Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Biohazard Warning.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Chapel Of Ghouls.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Chemical Spirituality.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Clouded Judgement 3.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Cosmic Echoes 1.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Cosmic Echoes 2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Cosmic Havoc.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Cosmic Mosaic (Active Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Dark Ritual (Star Of Destiny Denied Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Dark Ritual (Star Of Destiny Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Decreasing Dreams (Extended Movement Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Dreamcatcher.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Explosive Minds.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Forgotten Moon.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Fractopia (Fantic Dancing Lights Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Fractopia (Galaxy Swirl Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Fractopia (Upspoken Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Fractopia (Upspoken Mix)_Phat_Speak_When_Spoken_2.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Frozen Rapture .milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Future Speakers.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Halcyon Dreams 3.milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Hallucinogenic Pyramids (Beat Time Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Harlequin's Delight (Endless Tunnel Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Harlequin's Dynamic Fractal (Crazed Spiral Mix).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Harlequin's Dynamic Fractal (Dual Spiral Mix ).milk +%%VISUALISATION%%share/clementine/projectm-presets/Rovastar - Harlequin's Dynamic Fractal 1.milk *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 20:21:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83EB2F76; Sun, 19 Jan 2014 20:21:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 63C81197B; Sun, 19 Jan 2014 20:21:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JKL1Yu084201; Sun, 19 Jan 2014 20:21:01 GMT (envelope-from flo@svn.freebsd.org) Received: (from flo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JKL0rJ084193; Sun, 19 Jan 2014 20:21:00 GMT (envelope-from flo@svn.freebsd.org) Message-Id: <201401192021.s0JKL0rJ084193@svn.freebsd.org> From: Florian Smeets Date: Sun, 19 Jan 2014 20:21:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340348 - in head/databases/percona55-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.17 Precedence: list List-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, 19 Jan 2014 20:21:01 -0000 Author: flo Date: Sun Jan 19 20:21:00 2014 New Revision: 340348 URL: http://svnweb.freebsd.org/changeset/ports/340348 QAT: https://qat.redports.org/buildarchive/r340348/ Log: - Update to 5.5.35-33.0 - Pet portlint PR: ports/185889 Submitted by: Jim Ohlstein Modified: head/databases/percona55-server/Makefile head/databases/percona55-server/distinfo head/databases/percona55-server/files/patch-libmysql_CMakeLists.txt head/databases/percona55-server/files/patch-storage__innobase__handler__i_s.cc Modified: head/databases/percona55-server/Makefile ============================================================================== --- head/databases/percona55-server/Makefile Sun Jan 19 20:17:37 2014 (r340347) +++ head/databases/percona55-server/Makefile Sun Jan 19 20:21:00 2014 (r340348) @@ -1,13 +1,12 @@ # $FreeBSD$ PORTNAME?= percona -DISTVERSION= 5.5.34-32.0 -DISTNAME= Percona-Server-5.5.34-rel32.0 +DISTVERSION= 5.5.35-33.0 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.5/${DISTNAME}/source/ -MASTER_SITE_SUBDIR= MySQL-5.5 PKGNAMESUFFIX?= 55-server +DISTNAME= Percona-Server-5.5.35-rel33.0 MAINTAINER= flo@FreeBSD.org COMMENT?= Multithreaded SQL database (server) Modified: head/databases/percona55-server/distinfo ============================================================================== --- head/databases/percona55-server/distinfo Sun Jan 19 20:17:37 2014 (r340347) +++ head/databases/percona55-server/distinfo Sun Jan 19 20:21:00 2014 (r340348) @@ -1,2 +1,2 @@ -SHA256 (Percona-Server-5.5.34-rel32.0.tar.gz) = 775931aba537dea4fcd4ff6d37f2f30ce24921c79cef17f0c9c595222f95a741 -SIZE (Percona-Server-5.5.34-rel32.0.tar.gz) = 22579884 +SHA256 (Percona-Server-5.5.35-rel33.0.tar.gz) = ffa9335fc6ee204b13c5d6ebe32709f2b5bc930665e8000db1864555a02049b8 +SIZE (Percona-Server-5.5.35-rel33.0.tar.gz) = 22465700 Modified: head/databases/percona55-server/files/patch-libmysql_CMakeLists.txt ============================================================================== --- head/databases/percona55-server/files/patch-libmysql_CMakeLists.txt Sun Jan 19 20:17:37 2014 (r340347) +++ head/databases/percona55-server/files/patch-libmysql_CMakeLists.txt Sun Jan 19 20:21:00 2014 (r340348) @@ -1,6 +1,6 @@ ---- libmysql/CMakeLists.txt.orig 2010-12-03 18:58:26.000000000 +0100 -+++ libmysql/CMakeLists.txt 2010-12-23 22:01:37.000000000 +0100 -@@ -153,13 +153,14 @@ +--- libmysql/CMakeLists.txt.orig 2014-01-19 11:47:44.423382348 -0500 ++++ libmysql/CMakeLists.txt 2014-01-19 12:08:16.021297429 -0500 +@@ -165,7 +165,7 @@ # Merge several convenience libraries into one big mysqlclient # and link them together into shared library. @@ -8,15 +8,16 @@ +MERGE_LIBRARIES(mysqlclient STATIC ${LIBS} COMPONENT Development NOINSTALL) # Visual Studio users need debug static library for debug projects - IF(MSVC) - INSTALL_DEBUG_TARGET(mysqlclient DESTINATION ${INSTALL_LIBDIR}/debug) + INSTALL_DEBUG_SYMBOLS(clientlib) +@@ -174,6 +174,7 @@ + INSTALL_DEBUG_TARGET(clientlib DESTINATION ${INSTALL_LIBDIR}/debug) ENDIF() +IF(FALSE) IF(UNIX) MACRO(GET_VERSIONED_LIBNAME LIBNAME EXTENSION VERSION OUTNAME) SET(DOT_VERSION ".${VERSION}") -@@ -174,9 +175,11 @@ +@@ -188,9 +189,11 @@ ENDMACRO() INSTALL_SYMLINK(${CMAKE_STATIC_LIBRARY_PREFIX}mysqlclient_r.a mysqlclient ${INSTALL_LIBDIR} Development) ENDIF() @@ -25,11 +26,11 @@ IF(NOT DISABLE_SHARED) - MERGE_LIBRARIES(libmysql SHARED ${LIBS} EXPORTS ${CLIENT_API_FUNCTIONS} COMPONENT SharedLibraries) + MERGE_LIBRARIES(libmysql SHARED ${LIBS} EXPORTS ${CLIENT_API_FUNCTIONS} COMPONENT SharedLibraries NOINSTALL) -+IF(FALSE) ++ IF(FALSE) IF(UNIX) # libtool compatability IF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD" OR APPLE) -@@ -223,3 +226,4 @@ +@@ -240,3 +243,4 @@ ENDFOREACH() ENDIF() ENDIF() Modified: head/databases/percona55-server/files/patch-storage__innobase__handler__i_s.cc ============================================================================== --- head/databases/percona55-server/files/patch-storage__innobase__handler__i_s.cc Sun Jan 19 20:17:37 2014 (r340347) +++ head/databases/percona55-server/files/patch-storage__innobase__handler__i_s.cc Sun Jan 19 20:21:00 2014 (r340348) @@ -1,20 +1,23 @@ ---- storage/innobase/handler/i_s.cc.orig 2013-08-27 16:58:46.000000000 +0200 -+++ storage/innobase/handler/i_s.cc 2013-09-30 19:31:59.983048770 +0200 -@@ -48,14 +48,18 @@ - #include "btr0types.h" +--- storage/innobase/handler/i_s.cc.orig 2013-12-02 01:43:24.000000000 -0500 ++++ storage/innobase/handler/i_s.cc 2014-01-19 12:21:24.113243651 -0500 +@@ -49,17 +49,21 @@ #include "buf0buddy.h" #include "buf0buf.h" -+#include "buf0lru.h" + #include "buf0lru.h" +#include "dict0load.h" ++#include "buf0lru.h" #include "ibuf0ibuf.h" #include "dict0mem.h" #include "dict0types.h" #include "dict0boot.h" + #include "dict0load.h" #include "ha_prototypes.h" +#include "srv0srv.h" #include "srv0start.h" + #include "srv0srv.h" #include "trx0i_s.h" #include "trx0rseg.h" + #include "trx0trx.h" +#include "trx0trx.h" #include "trx0undo.h" #include "log0online.h" From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 20:43:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D5F7478; Sun, 19 Jan 2014 20:43:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6827B1AF5; Sun, 19 Jan 2014 20:43:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JKhjv7092412; Sun, 19 Jan 2014 20:43:45 GMT (envelope-from trociny@svn.freebsd.org) Received: (from trociny@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JKhjQi092410; Sun, 19 Jan 2014 20:43:45 GMT (envelope-from trociny@svn.freebsd.org) Message-Id: <201401192043.s0JKhjQi092410@svn.freebsd.org> From: Mikolaj Golub Date: Sun, 19 Jan 2014 20:43:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340349 - head/sysutils/gather X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 20:43:45 -0000 Author: trociny Date: Sun Jan 19 20:43:44 2014 New Revision: 340349 URL: http://svnweb.freebsd.org/changeset/ports/340349 QAT: https://qat.redports.org/buildarchive/r340349/ Log: Convert to stage. Modified: head/sysutils/gather/Makefile head/sysutils/gather/pkg-plist Modified: head/sysutils/gather/Makefile ============================================================================== --- head/sysutils/gather/Makefile Sun Jan 19 20:21:00 2014 (r340348) +++ head/sysutils/gather/Makefile Sun Jan 19 20:43:44 2014 (r340349) @@ -22,40 +22,21 @@ MAKE_ENV+= CONFDIR=${PREFIX}/etc/gather SUB_FILES= pkg-message -MAN1= gather.1 - -.if !defined(NOPORTDOCS) -PORTDOCS= Changelog README -.endif -.if !defined(NOPORTEXAMPLES) -PORTEXAMPLES= * -.endif - -NO_STAGE= yes do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/gather ${PREFIX}/bin/ - @${INSTALL_MAN} ${WRKSRC}/gather.1 ${PREFIX}/man/man1 -.if !exists(${PREFIX}/etc/gather) - @${MKDIR} ${PREFIX}/etc/gather -.endif - @${INSTALL_DATA} ${WRKSRC}/gather.cfg ${PREFIX}/etc/gather/gather.cfg.sample -.if !exists(${CONFDIR}/gather.cfg) - @${INSTALL_DATA} ${WRKSRC}/gather.cfg ${PREFIX}/etc/gather/gather.cfg -.endif - @${INSTALL_DATA} ${WRKSRC}/examples/gather.map.freebsd ${PREFIX}/etc/gather/gather.map.sample -.if !exists(${PREFIX}/etc/gather/gather.cfg) - @${INSTALL_DATA} ${WRKSRC}/examples/gather.map.freebsd ${PREFIX}/etc/gather/gather.map -.endif -.if !defined(NOPORTEXAMPLES) - @${MKDIR} ${EXAMPLESDIR} - @${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR} -.endif -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for doc in ${PORTDOCS} - @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} -.endfor -.endif - @${CAT} ${PKGMESSAGE} + ${INSTALL_SCRIPT} ${WRKSRC}/gather ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/gather.1 ${STAGEDIR}${PREFIX}/man/man1 + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/gather + ${INSTALL_DATA} ${WRKSRC}/gather.cfg \ + ${STAGEDIR}${PREFIX}/etc/gather/gather.cfg.sample + ${INSTALL_DATA} ${WRKSRC}/examples/gather.map.freebsd \ + ${STAGEDIR}${PREFIX}/etc/gather/gather.map.sample + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Changelog ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/gather.map.freebsd \ + ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/gather.map.linux \ + ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/sysutils/gather/pkg-plist ============================================================================== --- head/sysutils/gather/pkg-plist Sun Jan 19 20:21:00 2014 (r340348) +++ head/sysutils/gather/pkg-plist Sun Jan 19 20:43:44 2014 (r340349) @@ -1,6 +1,15 @@ bin/gather +man/man1/gather.1.gz +%%PORTDOCS%%%%DOCSDIR%%/Changelog +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gather.map.freebsd +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gather.map.linux +%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%% +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% @unexec if cmp -s %D/etc/gather/gather.cfg.sample %D/etc/gather/gather.cfg; then rm -f %D/etc/gather/gather.cfg; else echo "If permanently deleting this package, %D/etc/gather/gather.cfg must be removed manually."; fi etc/gather/gather.cfg.sample +@exec if [ ! -f %D/etc/gather/gather.cfg ]; then cp -p %D/%F %B/gather.cfg; fi @unexec if cmp -s %D/etc/gather/gather.map.sample %D/etc/gather/gather.map; then rm -f %D/etc/gather/gather.map; else echo "If permanently deleting this package, %D/etc/gather/gather.map must be removed manually."; fi etc/gather/gather.map.sample +@exec if [ ! -f %D/etc/gather/gather.map ]; then cp -p %D/%F %B/gather.map; fi @dirrmtry etc/gather From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 20:56:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D74C5E6; Sun, 19 Jan 2014 20:56:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 796761CAD; Sun, 19 Jan 2014 20:56:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JKuKQi096442; Sun, 19 Jan 2014 20:56:20 GMT (envelope-from trociny@svn.freebsd.org) Received: (from trociny@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JKuKHH096441; Sun, 19 Jan 2014 20:56:20 GMT (envelope-from trociny@svn.freebsd.org) Message-Id: <201401192056.s0JKuKHH096441@svn.freebsd.org> From: Mikolaj Golub Date: Sun, 19 Jan 2014 20:56:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340350 - head/devel/bmkdep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 20:56:20 -0000 Author: trociny Date: Sun Jan 19 20:56:19 2014 New Revision: 340350 URL: http://svnweb.freebsd.org/changeset/ports/340350 QAT: https://qat.redports.org/buildarchive/r340350/ Log: Revert r340322 and use USES=uidfix instead. Submitted by: bapt Modified: head/devel/bmkdep/Makefile Modified: head/devel/bmkdep/Makefile ============================================================================== --- head/devel/bmkdep/Makefile Sun Jan 19 20:43:44 2014 (r340349) +++ head/devel/bmkdep/Makefile Sun Jan 19 20:56:19 2014 (r340350) @@ -9,12 +9,9 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= trociny@FreeBSD.org COMMENT= Construct Makefile dependency list +USES= uidfix MAKE_ENV= PKGDIR="${PKGDIR}" NO_OBJ=YES PLIST_FILES= bin/bmkdep man/man1/bmkdep.1.gz -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bmkdep ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/bmkdep.1 ${STAGEDIR}${PREFIX}/man/man1 - .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 20:57:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2EF506CE; Sun, 19 Jan 2014 20:57:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1AAA61CB7; Sun, 19 Jan 2014 20:57:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JKvigg096649; Sun, 19 Jan 2014 20:57:44 GMT (envelope-from trociny@svn.freebsd.org) Received: (from trociny@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JKvi5h096648; Sun, 19 Jan 2014 20:57:44 GMT (envelope-from trociny@svn.freebsd.org) Message-Id: <201401192057.s0JKvi5h096648@svn.freebsd.org> From: Mikolaj Golub Date: Sun, 19 Jan 2014 20:57:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340351 - head/sysutils/bsdcrashtar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 20:57:45 -0000 Author: trociny Date: Sun Jan 19 20:57:44 2014 New Revision: 340351 URL: http://svnweb.freebsd.org/changeset/ports/340351 QAT: https://qat.redports.org/buildarchive/r340351/ Log: Revert r340321 and use USES=uidfix instead. Submitted by: bapt Modified: head/sysutils/bsdcrashtar/Makefile Modified: head/sysutils/bsdcrashtar/Makefile ============================================================================== --- head/sysutils/bsdcrashtar/Makefile Sun Jan 19 20:56:19 2014 (r340350) +++ head/sysutils/bsdcrashtar/Makefile Sun Jan 19 20:57:44 2014 (r340351) @@ -13,11 +13,7 @@ COMMENT= Archive FreeBSD kernel crash fi PLIST_FILES= sbin/bsdcrashtar \ man/man8/bsdcrashtar.8.gz +USES= uidfix MAKE_ENV+= NO_OBJ=yes -do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/bsdcrashtar.sh \ - ${STAGEDIR}${PREFIX}/sbin/bsdcrashtar - ${INSTALL_MAN} ${WRKSRC}/bsdcrashtar.8 ${STAGEDIR}${PREFIX}/man/man8 - .include From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 21:02:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 22DCB925; Sun, 19 Jan 2014 21:02:44 +0000 (UTC) Received: from mail-ee0-x236.google.com (mail-ee0-x236.google.com [IPv6:2a00:1450:4013:c00::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 20E131D3F; Sun, 19 Jan 2014 21:02:42 +0000 (UTC) Received: by mail-ee0-f54.google.com with SMTP id e53so2311424eek.41 for ; Sun, 19 Jan 2014 13:02:41 -0800 (PST) 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=dQzvMRFUCV5FQyar9g2T7mN4gj7XSHgdQN1hC5sD+3M=; b=j5v7ykMu3GmesMeY5BaLZiQ5uoVOkKKc5UrKaLDhECT6gtS2B+k67UwIC1IMt1dHzg UmvHI5QKCax2pu1dw+PQRgaIeziKWRTSXMMAzDDz8QaD3o98zTworEQQBNG0A7y0HwcV qtlG2JJOpiomJ8aS/TbmQQ/jCMEJXmdhdeHMQVttAY3jNdwldpqBCg9xpJM36W7xpojP lFoBzZCc+6kYUyv9l0cYTXJSIhbjuGi4rjhGEMNTaH4MbxfMwoVdN3KmvB7mquCczVSo WmABatIBjrcvq3ImerzWNW29Vc9Eta3a2cKe2KZeDJuROlt0r918wl6Bo6TvmAGR6HKu opPg== X-Received: by 10.14.225.195 with SMTP id z43mr14302622eep.19.1390165361483; Sun, 19 Jan 2014 13:02:41 -0800 (PST) Received: from localhost ([178.150.115.244]) by mx.google.com with ESMTPSA id o47sm46758612eem.21.2014.01.19.13.02.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 19 Jan 2014 13:02:40 -0800 (PST) Sender: Mikolaj Golub Date: Sun, 19 Jan 2014 23:02:38 +0200 From: Mikolaj Golub To: Baptiste Daroussin Subject: Re: svn commit: r340322 - head/devel/bmkdep Message-ID: <20140119210237.GA47712@gmail.com> References: <201401191626.s0JGQjsR092454@svn.freebsd.org> <20140119163630.GE78580@ithaqua.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140119163630.GE78580@ithaqua.etoilebsd.net> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 19 Jan 2014 21:02:44 -0000 On Sun, Jan 19, 2014 at 05:36:30PM +0100, Baptiste Daroussin wrote: > USES=uidfix is not enough? Ah, did not find this functionality (was looking for something with "unprivileged" in name :-). Fixed. Thanks! -- Mikolaj Golub From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 21:36:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A7DCC0C; Sun, 19 Jan 2014 21:36:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 164D01F2A; Sun, 19 Jan 2014 21:36:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JLa5HT012193; Sun, 19 Jan 2014 21:36:05 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JLa50P012189; Sun, 19 Jan 2014 21:36:05 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201401192136.s0JLa50P012189@svn.freebsd.org> From: Carlo Strub Date: Sun, 19 Jan 2014 21:36:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340352 - in head/security: . pond X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 21:36:06 -0000 Author: cs Date: Sun Jan 19 21:36:04 2014 New Revision: 340352 URL: http://svnweb.freebsd.org/changeset/ports/340352 QAT: https://qat.redports.org/buildarchive/r340352/ Log: Pond is not email. Pond is forward secure, asynchronous messaging for the discerning. Pond messages are asynchronous, but are not a record; they expire automatically a week after they are received. Pond seeks to prevent leaking traffic information against everyone except a global passive attacker. Pond is experimental software! DO NOT USE IT FOR ANYTHING REAL!!! Use security/gnupg instead. !!! THIS INSTALLS THE POND SERVER ONLY, NOT THE CLIENT !!! WWW: https://github.com/agl/pond/ Added: head/security/pond/ head/security/pond/Makefile (contents, props changed) head/security/pond/distinfo (contents, props changed) head/security/pond/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sun Jan 19 20:57:44 2014 (r340351) +++ head/security/Makefile Sun Jan 19 21:36:04 2014 (r340352) @@ -725,6 +725,7 @@ SUBDIR += please SUBDIR += polarssl SUBDIR += poly1305aes + SUBDIR += pond SUBDIR += portsentry SUBDIR += ppars SUBDIR += prelude-lml Added: head/security/pond/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pond/Makefile Sun Jan 19 21:36:04 2014 (r340352) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= pond +PORTVERSION= 20140118 +CATEGORIES= security +MASTER_SITES= http://c-s.li/ports/ +DISTFILES= pond-20140118.tar.gz \ + go-gtk-20131128.tar.gz \ + ed25519-20131225.tar.gz + +MAINTAINER= cs@FreeBSD.org +COMMENT= Forward secure, asynchronous messenger -- Server Only + +LICENSE= BSD3CLAUSE + +BUILD_DEPENDS= ${LOCALBASE}/${GO_LIBDIR}/code.google.com/p/go.crypto/bcrypt.a:${PORTSDIR}/security/go.crypto \ + ${LOCALBASE}/${GO_LIBDIR}/code.google.com/p/goprotobuf/proto.a:${PORTSDIR}/devel/goprotobuf \ + ${LOCALBASE}/${GO_LIBDIR}/code.google.com/p/go.net/dict.a:${PORTSDIR}/net/go.net + +BROKEN= Experimental. Know what you do! +PLIST_FILES= bin/server +# USE_GNOME= gtk30 +GO_PKGNAME= github.com/agl/pond +GO_TARGET= ${GO_PKGNAME}/server +# ${GO_PKGNAME}/client + +post-extract: + @${MKDIR} ${GO_WRKSRC:H} + @${LN} -sf ${WRKSRC} ${GO_WRKSRC} + @${LN} -sf ${WRKDIR}/go-gtk-20131128 ${GO_WRKDIR_SRC}/github.com/agl/go-gtk + @${LN} -sf ${WRKDIR}/ed25519-20131225 ${GO_WRKDIR_SRC}/github.com/agl/ed25519 + +.include +.include "${PORTSDIR}/lang/go/files/bsd.go.mk" +.include Added: head/security/pond/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pond/distinfo Sun Jan 19 21:36:04 2014 (r340352) @@ -0,0 +1,6 @@ +SHA256 (pond-20140118.tar.gz) = fab50333d564e8b286aa62daac55ad0b6f0391731478a5490cbccd5bd1a74cc2 +SIZE (pond-20140118.tar.gz) = 1049288 +SHA256 (ed25519-20131225.tar.gz) = 6cd982fc6d93fd47b650e8922ab66fa64f40d395ddb5879497dbd8aa0c3c8c6d +SIZE (ed25519-20131225.tar.gz) = 105671 +SHA256 (go-gtk-20131128.tar.gz) = 505452cfb7972a49e6960ad26a48c743d02598113b44e1fe0d5b9ee2a20719a4 +SIZE (go-gtk-20131128.tar.gz) = 206393 Added: head/security/pond/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pond/pkg-descr Sun Jan 19 21:36:04 2014 (r340352) @@ -0,0 +1,11 @@ +Pond is not email. Pond is forward secure, asynchronous messaging for the +discerning. Pond messages are asynchronous, but are not a record; they expire +automatically a week after they are received. Pond seeks to prevent leaking +traffic information against everyone except a global passive attacker. + +Pond is experimental software! DO NOT USE IT FOR ANYTHING REAL!!! +Use security/gnupg instead. + +!!! THIS INSTALLS THE POND SERVER ONLY, NOT THE CLIENT !!! + +WWW: https://github.com/agl/pond/ From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 21:52:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0483E5A; Sun, 19 Jan 2014 21:52:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DB9A71031; Sun, 19 Jan 2014 21:52:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JLq2Ze019096; Sun, 19 Jan 2014 21:52:02 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JLq2J2019094; Sun, 19 Jan 2014 21:52:02 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401192152.s0JLq2J2019094@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 19 Jan 2014 21:52:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340353 - head/lang/groovy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 21:52:03 -0000 Author: rakuco Date: Sun Jan 19 21:52:02 2014 New Revision: 340353 URL: http://svnweb.freebsd.org/changeset/ports/340353 QAT: https://qat.redports.org/buildarchive/r340353/ Log: - Update to 2.2.1. - Support staging. PR: ports/184970 Submitted by: Radim Kolar Approved by: Mitchell Smith (maintainer) Modified: head/lang/groovy/Makefile head/lang/groovy/distinfo Modified: head/lang/groovy/Makefile ============================================================================== --- head/lang/groovy/Makefile Sun Jan 19 21:36:04 2014 (r340352) +++ head/lang/groovy/Makefile Sun Jan 19 21:52:02 2014 (r340353) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= groovy -DISTVERSION= 2.0.5 +DISTVERSION= 2.2.1 CATEGORIES= lang java MASTER_SITES= http://dist.groovy.codehaus.org/distributions/ -DISTNAME= groovy-${PORTVERSION} DISTFILES= groovy-binary-${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= mjs@Bur.st @@ -23,7 +22,6 @@ DATADIR= ${JAVASHAREDIR}/${PORTNAME} DATAFILES= ANTLR-LICENSE.txt ASM-LICENSE.txt CLI-LICENSE.txt JSR223-LICENSE.txt LICENSE.txt conf lib SCRIPTFILES= groovy groovyConsole groovyc groovysh java2groovy startGroovy -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDOCS} @@ -34,26 +32,26 @@ PLIST_FILES= ${SCRIPTFILES:S,^,bin/,} %% SUB_FILES= set-groovy_home.sed do-install: - @${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..." - @${INSTALL_DATA} ${WRKSRC}/embeddable/${PORTNAME}-all-${DISTVERSION:U}.jar ${JAVAJARDIR}/${PORTNAME}.jar + @${ECHO_MSG} -n ">> Staging JAR as ${JAVAJARDIR}/${PORTNAME}.jar..." + @${INSTALL_DATA} ${WRKSRC}/embeddable/${PORTNAME}-all-${DISTVERSION:U}.jar ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar @${ECHO_MSG} " [ DONE ]" - @${ECHO_MSG} -n ">> Installing data files in ${DATADIR}..." + @${ECHO_MSG} -n ">> Staging data files in ${DATADIR}..." @cd ${WRKSRC} \ - && ${FIND} ${DATAFILES} -type d -exec ${MKDIR} ${DATADIR}/{} \; \ - && ${FIND} ${DATAFILES} -type f -exec ${INSTALL_DATA} {} ${DATADIR}/{} \; + && ${FIND} ${DATAFILES} -type d -exec ${MKDIR} ${STAGEDIR}${DATADIR}/{} \; \ + && ${FIND} ${DATAFILES} -type f -exec ${INSTALL_DATA} {} ${STAGEDIR}${DATADIR}/{} \; @${ECHO_MSG} " [ DONE ]" - @${ECHO_MSG} -n ">> Installing executables in ${PREFIX}/bin..." + @${ECHO_MSG} -n ">> Staging executables in ${PREFIX}/bin..." @${REINPLACE_CMD} -f ${WRKDIR}/set-groovy_home.sed ${WRKSRC}/bin/startGroovy .for file in ${SCRIPTFILES} @${ECHO_MSG} -n " ${file}" - @${INSTALL_SCRIPT} ${WRKSRC}/bin/${file} ${PREFIX}/bin/ + @${INSTALL_SCRIPT} ${WRKSRC}/bin/${file} ${STAGEDIR}${PREFIX}/bin/ .endfor @${ECHO_MSG} " [ DONE ]" .if ${PORT_OPTIONS:MDOCS} - @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..." + @${ECHO_MSG} -n ">> Staging documentation in ${DOCSDIR}..." @cd ${WRKSRC} \ - && ${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${DOCSDIR}/{} \; \ - && ${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \; + && ${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${STAGEDIR}${DOCSDIR}/{} \; \ + && ${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${STAGEDIR}${DOCSDIR}/{} \; @${ECHO_MSG} " [ DONE ]" .endif Modified: head/lang/groovy/distinfo ============================================================================== --- head/lang/groovy/distinfo Sun Jan 19 21:36:04 2014 (r340352) +++ head/lang/groovy/distinfo Sun Jan 19 21:52:02 2014 (r340353) @@ -1,4 +1,4 @@ -SHA256 (groovy-binary-2.0.5.zip) = 1d0d6b8054a2347c2a53e3dbb6f96502fd4762837daff6c86decddf0bb3496c0 -SIZE (groovy-binary-2.0.5.zip) = 28341029 -SHA256 (groovy-docs-2.0.5.zip) = 067820d5da7aadc19469199370c2b1de22b585d78fd3c588db546658d3e41c54 -SIZE (groovy-docs-2.0.5.zip) = 17600013 +SHA256 (groovy-binary-2.2.1.zip) = 11262c2a0883018d4c68d353479a84bf32a694706437a31b23e17e3f2db695dc +SIZE (groovy-binary-2.2.1.zip) = 29669397 +SHA256 (groovy-docs-2.2.1.zip) = 6eae39c07a6d2cf492105bd782090ced4e1542f714c478ddd5644fc5529d337a +SIZE (groovy-docs-2.2.1.zip) = 27031538 From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 22:27:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 417F664E; Sun, 19 Jan 2014 22:27:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2C4C011E8; Sun, 19 Jan 2014 22:27:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JMRFVC031512; Sun, 19 Jan 2014 22:27:15 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JMREhN031504; Sun, 19 Jan 2014 22:27:14 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201401192227.s0JMREhN031504@svn.freebsd.org> From: Juergen Lock Date: Sun, 19 Jan 2014 22:27:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340354 - in head/emulators/qemu-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.17 Precedence: list List-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, 19 Jan 2014 22:27:15 -0000 Author: nox Date: Sun Jan 19 22:27:14 2014 New Revision: 340354 URL: http://svnweb.freebsd.org/changeset/ports/340354 QAT: https://qat.redports.org/buildarchive/r340354/ Log: - Remove last mentions of SEABIOS_GIT. (which were nops already tho) - Update LIB_DEPENDS. - Rewrite NOPORTDOCS. - Stagify. - Fix plist. (empty dirs) - Bump PORTREISION. Submitted by: rene (via private emai) Modified: head/emulators/qemu-devel/Makefile head/emulators/qemu-devel/files/patch-Makefile head/emulators/qemu-devel/pkg-plist Modified: head/emulators/qemu-devel/Makefile ============================================================================== --- head/emulators/qemu-devel/Makefile Sun Jan 19 21:52:02 2014 (r340353) +++ head/emulators/qemu-devel/Makefile Sun Jan 19 22:27:14 2014 (r340354) @@ -3,6 +3,7 @@ PORTNAME= qemu PORTVERSION= 1.7.0 +PORTREISION= 1 CATEGORIES= emulators MASTER_SITES= http://wiki.qemu.org/download/:release \ LOCAL/nox:snapshot @@ -22,8 +23,6 @@ USE_XORG= pixman USE_GNOME+= glib20 PATCH_STRIP= -p1 MAKE_ENV+= BSD_MAKE="${MAKE}" -MAN1= qemu.1 qemu-img.1 -MAN8= qemu-nbd.8 ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 # XXX someone wants to debug sparc64 hosts? CONFLICTS_INSTALL= qemu-[0-9]* @@ -37,7 +36,6 @@ JPEG_DESC= jpeg dependency (vnc lossy c PNG_DESC= png dependency (vnc compression) CDROM_DMA_DESC= IDE CDROM DMA PCAP_DESC= pcap dependency (networking with bpf) -SEABIOS_GIT_DESC= add seabios snapshot (-bios bios.bin-1.6.3.1) USBREDIR_DESC= usb device network redirection (experimental!) GNS3_DESC= gns3 patches (promiscuous multicast) X86_TARGETS_DESC= Don't build non-x86 system targets @@ -45,8 +43,6 @@ BSD_USER_DESC= Also build bsd-user targ STATIC_LINK_DESC= Statically link the executables OPTIONS_DEFAULT=X11 GTK2 OPENGL GNUTLS SASL JPEG PNG CDROM_DMA CURL PCAP -NO_STAGE= yes - .include .if ${PORT_OPTIONS:MBSD_USER} @@ -150,31 +146,31 @@ PLIST_SUB+= GTK2="" .if empty(PORT_OPTIONS:MGNUTLS) CONFIGURE_ARGS+= --disable-vnc-tls .else -LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/security/gnutls .endif .if empty(PORT_OPTIONS:MSASL) CONFIGURE_ARGS+= --disable-vnc-sasl .else -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .endif .if empty(PORT_OPTIONS:MJPEG) CONFIGURE_ARGS+= --disable-vnc-jpeg .else -LIB_DEPENDS+= jpeg:${PORTSDIR}/graphics/jpeg +LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/graphics/jpeg .endif .if empty(PORT_OPTIONS:MPNG) CONFIGURE_ARGS+= --disable-vnc-png .else -LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png +LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png .endif .if empty(PORT_OPTIONS:MCURL) CONFIGURE_ARGS+= --disable-curl .else -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl .endif .if empty(PORT_OPTIONS:MOPENGL) @@ -205,14 +201,10 @@ CONFIGURE_ARGS+= --static RUN_DEPENDS+= ${LOCALBASE}/sbin/smbd:${PORTSDIR}/net/samba36 .endif -.if ${PORT_OPTIONS:MSEABIOS_GIT} -RUN_DEPENDS+= seabios-devel>=1.6.3.1:${PORTSDIR}/emulators/seabios-devel -.endif - -.if defined(NOPORTDOCS) -MAKE_ARGS+= NOPORTDOCS=1 -.else +.if ${PORT_OPTIONS:MDOCS} BUILD_DEPENDS+= texi2html:${PORTSDIR}/textproc/texi2html +.else +MAKE_ARGS+= NOPORTDOCS=1 .endif .if !defined(STRIP) || ${STRIP} == "" @@ -287,16 +279,15 @@ post-configure: post-install: .if ${PORT_OPTIONS:MDOCS} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${DOCSDIR}/) + @(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}/) .endif - @${INSTALL_SCRIPT} ${FILESDIR}/qemu-ifup.sample ${PREFIX}/etc - @${INSTALL_SCRIPT} ${FILESDIR}/qemu-ifdown.sample ${PREFIX}/etc + @${INSTALL_SCRIPT} ${FILESDIR}/qemu-ifup.sample ${STAGEDIR}${PREFIX}/etc + @${INSTALL_SCRIPT} ${FILESDIR}/qemu-ifdown.sample ${STAGEDIR}${PREFIX}/etc @if [ ! -f ${PREFIX}/etc/qemu-ifup ]; then \ - ${CP} -p ${PREFIX}/etc/qemu-ifup.sample ${PREFIX}/etc/qemu-ifup ; \ + ${CP} -p ${STAGEDIR}${PREFIX}/etc/qemu-ifup.sample ${STAGEDIR}${PREFIX}/etc/qemu-ifup ; \ fi @if [ ! -f ${PREFIX}/etc/qemu-ifdown ]; then \ - ${CP} -p ${PREFIX}/etc/qemu-ifdown.sample ${PREFIX}/etc/qemu-ifdown ; \ + ${CP} -p ${STAGEDIR}${PREFIX}/etc/qemu-ifdown.sample ${STAGEDIR}${PREFIX}/etc/qemu-ifdown ; \ fi - @${CAT} ${PKGMESSAGE} .include Modified: head/emulators/qemu-devel/files/patch-Makefile ============================================================================== --- head/emulators/qemu-devel/files/patch-Makefile Sun Jan 19 21:52:02 2014 (r340353) +++ head/emulators/qemu-devel/files/patch-Makefile Sun Jan 19 22:27:14 2014 (r340354) @@ -1,5 +1,6 @@ -Index: qemu/Makefile -@@ -65,7 +65,11 @@ LIBS+=-lz $(LIBS_TOOLS) +--- Makefile.orig 2013-11-27 23:15:55.000000000 +0100 ++++ Makefile 2014-01-19 15:35:48.000000000 +0100 +@@ -72,7 +72,11 @@ HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF) ifdef BUILD_DOCS @@ -11,7 +12,7 @@ Index: qemu/Makefile ifdef CONFIG_VIRTFS DOCS+=fsdev/virtfs-proxy-helper.1 endif -@@ -304,8 +308,10 @@ endif +@@ -311,8 +315,10 @@ install-doc: $(DOCS) $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)" @@ -22,14 +23,14 @@ Index: qemu/Makefile ifdef CONFIG_POSIX $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1" $(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1" -@@ -334,7 +340,10 @@ install-confdir: +@@ -341,7 +347,10 @@ $(INSTALL_DIR) "$(DESTDIR)$(qemu_confdir)" install-sysconfig: install-datadir install-confdir - $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)" + $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)/target-x86_64.conf.sample" + if [ ! -f "$(qemu_confdir)/target-x86_64.conf" ]; then \ -+ $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(qemu_confdir)"; \ ++ $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(DESTDIR)$(qemu_confdir)"; \ + fi install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig \ Modified: head/emulators/qemu-devel/pkg-plist ============================================================================== --- head/emulators/qemu-devel/pkg-plist Sun Jan 19 21:52:02 2014 (r340353) +++ head/emulators/qemu-devel/pkg-plist Sun Jan 19 22:27:14 2014 (r340354) @@ -37,6 +37,9 @@ bin/qemu-system-i386 bin/qemu-system-x86_64 %%NONX86%%bin/qemu-system-xtensa %%NONX86%%bin/qemu-system-xtensaeb +man/man1/qemu.1.gz +man/man1/qemu-img.1.gz +man/man8/qemu-nbd.8.gz @unexec if cmp -s %D/etc/qemu-ifup.sample %D/etc/qemu-ifup; then rm -f %D/etc/qemu-ifup; fi etc/qemu-ifup.sample @exec if [ ! -f %D/etc/qemu-ifup ] ; then cp -p %D/%F %B/qemu-ifup; fi @@ -132,4 +135,6 @@ etc/qemu/target-x86_64.conf.sample %%GTK2%%@dirrmtry share/locale/de_DE/LC_MESSAGES %%GTK2%%@dirrmtry share/locale/de_DE @dirrmtry %%DATADIR%% -@dirrmtry %%DOCSDIR%% +@exec mkdir -p %D/var/run +@dirrmtry var/run +@dirrmtry var From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 22:46:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E57F1901; Sun, 19 Jan 2014 22:46:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1A521326; Sun, 19 Jan 2014 22:46:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JMk1de038822; Sun, 19 Jan 2014 22:46:01 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JMk1oD038820; Sun, 19 Jan 2014 22:46:01 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201401192246.s0JMk1oD038820@svn.freebsd.org> From: Rene Ladan Date: Sun, 19 Jan 2014 22:46:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340355 - in head: . emulators emulators/seabios-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.17 Precedence: list List-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, 19 Jan 2014 22:46:02 -0000 Author: rene Date: Sun Jan 19 22:46:01 2014 New Revision: 340355 URL: http://svnweb.freebsd.org/changeset/ports/340355 QAT: https://qat.redports.org/buildarchive/r340355/ Log: Remove expired port: 2014-01-15 emulators/seabios-devel: Outdated, no longer needed, broken on 10+ Deleted: head/emulators/seabios-devel/ Modified: head/MOVED head/emulators/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Sun Jan 19 22:27:14 2014 (r340354) +++ head/MOVED Sun Jan 19 22:46:01 2014 (r340355) @@ -5381,3 +5381,4 @@ misc/sword17|misc/sword|2014-01-16|Has e www/suphp||2014-01-17|Has expired: Upstream dead, EOL: https://lists.marsching.com/pipermail/suphp/2013-May/002554.html databases/postgis||2014-01-17|Has expired: EOLed upstream textproc/redland-bindings-python||2014-01-19|Use textproc/redland-bindings directly instead +emulators/seabios-devel||2014-01-19|Has expired: Outdated, no longer needed, broken on 10+ Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Sun Jan 19 22:27:14 2014 (r340354) +++ head/emulators/Makefile Sun Jan 19 22:46:01 2014 (r340355) @@ -135,7 +135,6 @@ SUBDIR += quasi88 SUBDIR += raine SUBDIR += rtc - SUBDIR += seabios-devel SUBDIR += sim6811 SUBDIR += simh SUBDIR += ski From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 23:02:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6EE31B0A; Sun, 19 Jan 2014 23:02:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B92D14A6; Sun, 19 Jan 2014 23:02:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JN20ne045800; Sun, 19 Jan 2014 23:02:00 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JN20kk045799; Sun, 19 Jan 2014 23:02:00 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201401192302.s0JN20kk045799@svn.freebsd.org> From: Juergen Lock Date: Sun, 19 Jan 2014 23:02:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340356 - head/emulators/qemu-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.17 Precedence: list List-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, 19 Jan 2014 23:02:00 -0000 Author: nox Date: Sun Jan 19 23:01:59 2014 New Revision: 340356 URL: http://svnweb.freebsd.org/changeset/ports/340356 QAT: https://qat.redports.org/buildarchive/r340356/ Log: Spell PORTREVISION correctly. Modified: head/emulators/qemu-devel/Makefile Modified: head/emulators/qemu-devel/Makefile ============================================================================== --- head/emulators/qemu-devel/Makefile Sun Jan 19 22:46:01 2014 (r340355) +++ head/emulators/qemu-devel/Makefile Sun Jan 19 23:01:59 2014 (r340356) @@ -3,7 +3,7 @@ PORTNAME= qemu PORTVERSION= 1.7.0 -PORTREISION= 1 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://wiki.qemu.org/download/:release \ LOCAL/nox:snapshot From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 23:21:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37C65D11; Sun, 19 Jan 2014 23:21:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 22D7D1606; Sun, 19 Jan 2014 23:21:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JNLViE053831; Sun, 19 Jan 2014 23:21:31 GMT (envelope-from feld@svn.freebsd.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JNLUcb053828; Sun, 19 Jan 2014 23:21:30 GMT (envelope-from feld@svn.freebsd.org) Message-Id: <201401192321.s0JNLUcb053828@svn.freebsd.org> From: Mark Felder Date: Sun, 19 Jan 2014 23:21:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340357 - in head/security/maia: . 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.17 Precedence: list List-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, 19 Jan 2014 23:21:31 -0000 Author: feld Date: Sun Jan 19 23:21:30 2014 New Revision: 340357 URL: http://svnweb.freebsd.org/changeset/ports/340357 QAT: https://qat.redports.org/buildarchive/r340357/ Log: - put the scripts in DATADIR - proper WWWOWN and WWWGRP usage - ETCDIR usage; config files are now in ${PREFIX}/etc/maia/ - template files are probably going to be edited by the users. Now they're in ${ETCDIR}/templates/ - STAGE support - MYSQLSERVER option is now: USE_MYSQL= server - PGSQLSERVER option is now: USE_PGSQL= server - lots of cleanup - several installation tasks should not have been silenced (prefixed with @) - rc script passes rclint - rc script handles the creation of several important directories in start_precmd - config files and templates are not overwritten on port upgrade if they have been modified PR: ports/185452 Approved by: swills (mentor) Deleted: head/security/maia/files/pkg-deinstall.in head/security/maia/files/pkg-install.in Modified: head/security/maia/Makefile head/security/maia/files/maiad.in head/security/maia/pkg-plist Modified: head/security/maia/Makefile ============================================================================== --- head/security/maia/Makefile Sun Jan 19 23:01:59 2014 (r340356) +++ head/security/maia/Makefile Sun Jan 19 23:21:30 2014 (r340357) @@ -3,7 +3,7 @@ PORTNAME= maia DISTVERSION= 1.0.3-${SVNREVISION} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security MASTER_SITES= http://www.purplehat.org/downloads/maia/ @@ -35,9 +35,10 @@ DOCS= LICENSE README maiad.conf.dist mai USERS= vscan GROUPS= vscan -MAIADIR?= /var/maiad +MAIAHOME= /var/maiad MAIAQUARANTINE?= /var/maiad/virusmails PEAR_DIR?= ${LOCALBASE}/share/pear +PLIST_SUB+= USERS="${USERS}" GROUPS="${GROUPS}" WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" OPTIONS_DEFINE= APACHE LIGHTTPD WEBHOST MYSQL MYSQLSERVER PGSQL PGSQLSERVER DOVECOT \ POSTFIX PFA FUZZYOCR CLAMAV SPAMASSASSIN GRAPHICS BDB ALTERMIME CRYPT \ @@ -83,14 +84,14 @@ FREEZE_DESC= FREEZE support with archiv P7ZIP_DESC= P7ZIP support with archivers/p7zip TNEF_DESC= Add external tnef decoder -SUB_FILES= pkg-install pkg-deinstall pkg-message -SUB_LIST+= MAIAUSER=${USERS} \ - MAIAGROUP=${GROUPS} \ - MAIADIR=${MAIADIR} \ - MAIAQUARANTINE=${MAIAQUARANTINE} +SUB_FILES= maiad pkg-message +SUB_LIST+= USERS=${USERS} \ + GROUPS=${GROUPS} \ + MAIAHOME=${MAIAHOME} \ + MAIAQUARANTINE=${MAIAQUARANTINE} \ + ETCDIR=${ETCDIR} USE_RC_SUBR+= maiad -NO_STAGE= yes .include # Code is a bit fiddly here; we can't use USE variables after pre.mk so we have @@ -117,8 +118,6 @@ USE_PGSQL= yes USE_PHP+= pgsql .endif -.include - .if ${PORT_OPTIONS:MLIGHTTPD} RUN_DEPENDS+= lighttpd:${PORTSDIR}/www/lighttpd .endif @@ -139,7 +138,7 @@ RUN_DEPENDS+= p5-DBD-mysql>=0:${PORTSDIR .endif .if ${PORT_OPTIONS:MMYSQLSERVER} -RUN_DEPENDS+= ${LOCALBASE}/bin/mysqld_safe:${PORTSDIR}/databases/mysql55-server +USE_MYSQL= server .endif .if ${PORT_OPTIONS:MPGSQL} @@ -147,7 +146,7 @@ RUN_DEPENDS+= p5-DBD-Pg>=0:${PORTSDIR}/d .endif .if ${PORT_OPTIONS:MPGSQLSERVER} -RUN_DEPENDS+= ${LOCALBASE}/bin/pg_ctl:${PORTSDIR}/databases/postgresql84-server +USE_PGSQL= server .endif .if ${PORT_OPTIONS:MDOVECOT} @@ -282,85 +281,65 @@ RUN_DEPENDS+= 7zr:${PORTSDIR}/archivers/ RUN_DEPENDS+= tnef:${PORTSDIR}/converters/tnef .endif +.include + post-patch: .for m in scripts/configtest.pl scripts/expire-quarantine-cache.pl \ scripts/generate-key.pl scripts/load-sa-rules.pl scripts/maiadbtool.pl \ scripts/process-quarantine.pl scripts/resend.pl scripts/send-quarantine-digests.pl \ scripts/send-quarantine-reminders.pl scripts/stats-snapshot.pl - @${REINPLACE_CMD} -e "s|/etc/maia/maia.conf|${PREFIX}/etc/maia.conf|" \ + @${REINPLACE_CMD} -e "s|/etc/maia/maia.conf|${ETCDIR}/maia.conf|" \ ${WRKSRC}/${m} +.endfor +.for i in digest.tpl newuser.tpl reminder.tpl + ${MV} ${WRKSRC}/templates/${i} ${WRKSRC}/templates/${i}.dist .endfor -.for a in maiad.conf.dist + @${REINPLACE_CMD} -e "s|daemon_user = 'maia'|daemon_user = '${USERS}'|" \ -e "s|daemon_group = 'maia'|daemon_group = '${GROUPS}'|" \ - -e "s|/var/lib/maia|${MAIADIR}|" \ - -e "s|/var/log/maia|${MAIADIR}|" ${WRKSRC}/${a} -.endfor -.for i in maia.conf.dist - @${REINPLACE_CMD} -e "s|/etc/maia.conf|${PREFIX}/etc/maia.conf|" \ + -e "s|/var/lib/maia|${MAIAHOME}|" ${WRKSRC}/maiad.conf.dist + + @${REINPLACE_CMD} -e "s|/etc/maia.conf|${ETCDIR}/maia.conf|" \ -e "s|username = 'maia'|username = '${USERS}'|" \ - -e "s|/var/lib/maia|${MAIADIR}/maia|" \ - -e "s|/usr/bin/sa-learn|/usr/local/bin/sa-learn|" \ + -e "s|/var/lib/maia|${DATADIR}|" \ + -e "s|/usr/bin/sa-learn|${PREFIX}/bin/sa-learn|" \ -e "s|local_cf_dir = undef|local_cf_dir = '${PREFIX}/etc/mail/spamassassin'|" \ -e "s|system_rules_dir = undef|system_rules_dir = '/var/db/spamassassin'|" \ - -e "s|user_rules_dir = undef|user_rules_dir = '${MAIADIR}/.spamassassin'|" \ - -e "s|pid_dir = '/var/run/maia/'|pid_dir = '${MAIADIR}/'|" \ - -e "s|log_dir = '/var/log/maia'|log_dir = '${MAIADIR}'|" \ - -e "s|template_dir = '/etc/maia/templates/'|template_dir = '${MAIADIR}/maia/templates/'|" \ - ${WRKSRC}/${i} -.endfor -.for a in maiad - @${REINPLACE_CMD} -e "s|/etc/maia/maiad.conf|${PREFIX}/etc/maiad.conf|" \ - -e "s|/var/lib/maia|${MAIADIR}|" \ - -e "s@'zoo'\]@['zoo','unzoo'] ]@" ${WRKSRC}/${a} -.endfor - @${FIND} -E ${WRKSRC} -iregex '.*(bak|~)$$' -delete + -e "s|user_rules_dir = undef|user_rules_dir = '${DATADIR}/.spamassassin'|" \ + -e "s|template_dir = '/etc/maia/templates/'|template_dir = '${ETCDIR}/templates/'|" \ + ${WRKSRC}/maia.conf.dist + + @${REINPLACE_CMD} -e "s|/etc/maia/maiad.conf|${ETCDIR}/maiad.conf|" \ + -e "s|/var/lib/maia|${DATADIR}|" \ + -e "s@'zoo'\]@['zoo','unzoo'] ]@" ${WRKSRC}/maiad -pre-install: - @${SH} ${PKGINSTALL} ${DISTNAME} PRE-INSTALL + @${FIND} -E ${WRKSRC} -iregex '.*(bak|~)$$' -delete do-install: - @${INSTALL} -d ${WWWDIR} - @cd ${WRKSRC}/php && ${FIND} . | ${CPIO} --quiet -pdm -L ${WWWDIR} - @cd ${WRKSRC}/scripts && ${FIND} . | ${CPIO} --quiet -pdm -L ${MAIADIR}/maia/scripts - @cd ${WRKSRC}/templates && ${FIND} . | ${CPIO} --quiet -pdm -L ${MAIADIR}/maia/templates - -.for i in maiad - @${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/sbin + ${MKDIR} -p ${STAGEDIR}${WWWDIR} + @cd ${WRKSRC}/php && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} + ${MKDIR} -p ${STAGEDIR}${DATADIR} + @cd ${WRKSRC}/scripts && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/scripts + ${MKDIR} -p ${STAGEDIR}${ETCDIR}/templates +.for i in digest.tpl newuser.tpl reminder.tpl + ${INSTALL} -m 644 ${WRKSRC}/templates/${i}.dist ${STAGEDIR}${ETCDIR}/templates .endfor - @${INSTALL_SCRIPT} -m 640 ${WRKSRC}/maiad.conf.dist ${PREFIX}/etc/maiad.conf.dist - @${INSTALL_SCRIPT} -m 640 ${WRKSRC}/maia.conf.dist ${PREFIX}/etc/maia.conf.dist -# -# This can contain sensitive information, e.g. SQL passwords, so it should be handled -# with care. -# -.if !exists(${PREFIX}/www/${PORTNAME}/config.php) - @${INSTALL} -o ${WWWOWN} -g ${WWWGRP} -m 640 \ - ${WRKSRC}/php/config.php.dist \ - ${PREFIX}/www/${PORTNAME}/config.php -.endif + ${INSTALL_SCRIPT} ${WRKSRC}/maiad ${STAGEDIR}${PREFIX}/sbin + ${INSTALL} -m 644 ${WRKSRC}/maiad.conf.dist ${STAGEDIR}${ETCDIR}/maiad.conf.dist + ${INSTALL} -m 644 ${WRKSRC}/maia.conf.dist ${STAGEDIR}${ETCDIR}/maia.conf.dist + ${CHOWN} ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/themes/*/compiled + ${LN} -s ${PREFIX}/share/smarty ${STAGEDIR}${WWWDIR}/libs/Smarty + .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif post-install: -.for maiaconf in maia maiad - @if [ ! -f ${PREFIX}/etc/${maiaconf}.conf ]; then \ - ${CP} -p ${PREFIX}/etc/${maiaconf}.conf.dist \ - ${PREFIX}/etc/${maiaconf}.conf ; \ - fi - @${CHOWN} ${USERS}:${GROUPS} ${PREFIX}/etc/${maiaconf}.conf \ - ${PREFIX}/etc/${maiaconf}.conf.dist -.endfor - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${CHOWN} -R ${USERS}:${GROUPS} ${MAIADIR}/ - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' >> ${TMPPLIST} - @${ECHO_CMD} '@exec ${CHOWN} -R ${USERS}:${GROUPS} ${MAIADIR}' >> ${TMPPLIST} - @${LN} -s ${PREFIX}/share/smarty ${PREFIX}/www/${PORTNAME}/libs/Smarty @${CAT} ${PKGMESSAGE} .include + Modified: head/security/maia/files/maiad.in ============================================================================== --- head/security/maia/files/maiad.in Sun Jan 19 23:01:59 2014 (r340356) +++ head/security/maia/files/maiad.in Sun Jan 19 23:21:30 2014 (r340357) @@ -13,34 +13,39 @@ . /etc/rc.subr -name="maiad" +name=maiad rcvar=maiad_enable load_rc_config $name -: ${maiad_enable="NO"} -: ${maiad_pidfile="%%MAIADIR%%/maiad.pid"} +: ${maiad_enable:=NO} +: ${maiad_pidfile="/var/run/maia/maiad.pid"} -required_files=%%PREFIX%%/etc/maiad.conf - -start_cmd=${name}_start -stop_cmd=${name}_stop +required_files=%%ETCDIR%%/maiad.conf +start_cmd="%%PREFIX%%/sbin/maiad start" +start_precmd="start_precmd" +extra_commands="status" pidfile=${maiad_pidfile} -procname=${maiad_procname} - -start_precmd=${name}_prestart - -maiad_prestart() { - rm -rf %%MAIADIR%%/tmp/* %%MAIADIR%%/tmp/.* 2>/dev/null || true -} +procname=maiad -maiad_start() { - %%PREFIX%%/sbin/maiad start -} +start_precmd() +{ + for i in db tmp var virusmails; do + if [ ! -e %%MAIAHOME%%/${i} ]; then + install -d -o %%USERS%% -g %%GROUPS%% -m 750 %%MAIAHOME%%/${i} + fi + done + + for i in log run lock; do + if [ ! -e /var/${i}/maia ]; then + install -d -o %%USERS%% -g %%GROUPS%% /var/${i}/maia + fi + done -maiad_stop() { - %%PREFIX%%/sbin/maiad stop + # not sure why, but previous maintainer had this in the rc script + rm -rf %%MAIAHOME%%/tmp/* %%MAIAHOME%%/tmp/.* 2>/dev/null || true } run_rc_command "$1" + Modified: head/security/maia/pkg-plist ============================================================================== --- head/security/maia/pkg-plist Sun Jan 19 23:01:59 2014 (r340356) +++ head/security/maia/pkg-plist Sun Jan 19 23:21:30 2014 (r340357) @@ -1,9 +1,33 @@ -@unexec if cmp -s %D/etc/maiad.conf.dist %D/etc/maiad.conf; then rm -f %D/etc/maiad.conf; fi -etc/maiad.conf.dist -@exec if [ ! -f %D/etc/maiad.conf ] ; then cp -p %D/%F %B/maiad.conf; fi -@unexec if cmp -s %D/etc/maia.conf.dist %D/etc/maia.conf; then rm -f %D/etc/maia.conf; fi -etc/maia.conf.dist -@exec if [ ! -f %D/etc/maia.conf ] ; then cp -p %D/%F %B/maia.conf; fi +@unexec cmp -s %D/%%ETCDIR%%/maiad.conf.dist %D/%%ETCDIR%%/maiad.conf && rm -f %D/%%ETCDIR%%/maiad.conf || true +@exec if [ ! -f %D/%%ETCDIR%%/maiad.conf ] ; then cp -p %D/%%ETCDIR%%/maiad.conf.dist %D/%%ETCDIR%%/maiad.conf; fi +@unexec cmp -s %D/%%ETCDIR%%/maia.conf.dist %D/%%ETCDIR%%/maia.conf && rm -f %D/%%ETCDIR%%/maia.conf || true +@exec if [ ! -f %D/%%ETCDIR%%/maia.conf ] ; then cp -p %D/%%ETCDIR%%/maia.conf.dist %D/%%ETCDIR%%/maia.conf; fi +@unexec cmp -s %D/%%ETCDIR%%/templates/digest.tpl.dist %D/%%ETCDIR%%/templates/digest.tpl && rm -f %D/%%ETCDIR%%/templates/digest.tpl || true +@exec if [ ! -f %D/%%ETCDIR%%/templates/digest.tpl ] ; then cp -p %D/%%ETCDIR%%/templates/digest.tpl.dist %D/%%ETCDIR%%/templates/digest.tpl; fi +@unexec cmp -s %D/%%ETCDIR%%/templates/newuser.tpl.dist %D/%%ETCDIR%%/templates/newuser.tpl && rm -f %D/%%ETCDIR%%/templates/newuser.tpl || true +@exec if [ ! -f %D/%%ETCDIR%%/templates/newuser.tpl ] ; then cp -p %D/%%ETCDIR%%/templates/newuser.tpl.dist %D/%%ETCDIR%%/templates/newuser.tpl; fi +@unexec cmp -s %D/%%ETCDIR%%/templates/reminder.tpl.dist %D/%%ETCDIR%%/templates/reminder.tpl && rm -f %D/%%ETCDIR%%/templates/reminder.tpl || true +@exec if [ ! -f %D/%%ETCDIR%%/templates/reminder.tpl ] ; then cp -p %D/%%ETCDIR%%/templates/reminder.tpl.dist %D/%%ETCDIR%%/templates/reminder.tpl; fi +@unexec cmp -s %D/www/maia/config.php.dist %D/www/maia/config.php && rm -f %D/www/maia/config.php || true +@exec if [ ! -f %D/www/maia/config.php ] ; then cp -p %D/www/maia/config.php.dist %D/www/maia/config.php; fi +@exec install -d -o %%WWWOWN%% -g %%WWWGRP%% %D/www/maia/themes/desert_sand/compiled +@exec install -d -o %%WWWOWN%% -g %%WWWGRP%% %D/www/maia/themes/dgm/compiled +@exec install -d -o %%WWWOWN%% -g %%WWWGRP%% %D/www/maia/themes/ocean_surf/compiled +%%ETCDIR%%/maia.conf.dist +%%ETCDIR%%/maiad.conf.dist +%%ETCDIR%%/templates/digest.tpl.dist +%%ETCDIR%%/templates/newuser.tpl.dist +%%ETCDIR%%/templates/reminder.tpl.dist +share/maia/scripts/configtest.pl +share/maia/scripts/expire-quarantine-cache.pl +share/maia/scripts/generate-key.pl +share/maia/scripts/load-sa-rules.pl +share/maia/scripts/maiadbtool.pl +share/maia/scripts/process-quarantine.pl +share/maia/scripts/resend.pl +share/maia/scripts/send-quarantine-digests.pl +share/maia/scripts/send-quarantine-reminders.pl +share/maia/scripts/stats-snapshot.pl sbin/maiad %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README @@ -47,9 +71,6 @@ sbin/maiad %%WWWDIR%%/chart_rules.php %%WWWDIR%%/chart_stats.php %%WWWDIR%%/chart_virus.php -@unexec if cmp -s %D/www/maia/config.php.dist %D/www/maia/config.php; then rm -f %D/www/maia/config.php; fi -%%WWWDIR%%/config.php.dist -@exec if [ ! -f %D/www/maia/config.php ] ; then cp -p %D/%F %B/config.php; fi %%WWWDIR%%/config.php.dist %%WWWDIR%%/confirm.php %%WWWDIR%%/constants.php @@ -895,53 +916,58 @@ sbin/maiad %%WWWDIR%%/ximpersonate.php %%WWWDIR%%/xlogin.php %%WWWDIR%%/xsettings.php -@dirrm %%WWWDIR%%/themes/ocean_surf/templates/settings -@dirrm %%WWWDIR%%/themes/ocean_surf/templates -@dirrm %%WWWDIR%%/themes/ocean_surf/javascript -@dirrm %%WWWDIR%%/themes/ocean_surf/images -@dirrm %%WWWDIR%%/themes/ocean_surf/css/images -@dirrm %%WWWDIR%%/themes/ocean_surf/css -@dirrm %%WWWDIR%%/themes/ocean_surf/compiled -@dirrm %%WWWDIR%%/themes/ocean_surf/code -@dirrm %%WWWDIR%%/themes/ocean_surf -@dirrm %%WWWDIR%%/themes/dgm/templates -@dirrm %%WWWDIR%%/themes/dgm/images -@dirrm %%WWWDIR%%/themes/dgm/css -@dirrm %%WWWDIR%%/themes/dgm/compiled -@dirrm %%WWWDIR%%/themes/dgm/code -@dirrm %%WWWDIR%%/themes/dgm -@dirrm %%WWWDIR%%/themes/desert_sand/templates/welcome -@dirrm %%WWWDIR%%/themes/desert_sand/templates/settings -@dirrm %%WWWDIR%%/themes/desert_sand/templates -@dirrm %%WWWDIR%%/themes/desert_sand/javascript -@dirrm %%WWWDIR%%/themes/desert_sand/images -@dirrm %%WWWDIR%%/themes/desert_sand/css/images -@dirrm %%WWWDIR%%/themes/desert_sand/css -@dirrm %%WWWDIR%%/themes/desert_sand/compiled -@dirrm %%WWWDIR%%/themes/desert_sand/code -@dirrm %%WWWDIR%%/themes/desert_sand -@dirrm %%WWWDIR%%/themes -@dirrm %%WWWDIR%%/overlib/mini -@dirrm %%WWWDIR%%/overlib -@dirrm %%WWWDIR%%/maia_db -@dirrm %%WWWDIR%%/locale/sv -@dirrm %%WWWDIR%%/locale/ru -@dirrm %%WWWDIR%%/locale/pt -@dirrm %%WWWDIR%%/locale/no -@dirrm %%WWWDIR%%/locale/nl -@dirrm %%WWWDIR%%/locale/it -@dirrm %%WWWDIR%%/locale/hu -@dirrm %%WWWDIR%%/locale/fr -@dirrm %%WWWDIR%%/locale/en -@dirrm %%WWWDIR%%/locale/de -@dirrm %%WWWDIR%%/locale/da -@dirrm %%WWWDIR%%/locale/cs -@dirrm %%WWWDIR%%/locale -@dirrm %%WWWDIR%%/libs/jquery/images -@dirrm %%WWWDIR%%/libs/jquery -@dirrm %%WWWDIR%%/libs -@dirrm %%WWWDIR%%/images -@dirrm %%WWWDIR%%/admin/scripts -@dirrm %%WWWDIR%%/admin +@dirrmtry %%WWWDIR%%/themes/ocean_surf/templates/settings +@dirrmtry %%WWWDIR%%/themes/ocean_surf/templates +@dirrmtry %%WWWDIR%%/themes/ocean_surf/javascript +@dirrmtry %%WWWDIR%%/themes/ocean_surf/images +@dirrmtry %%WWWDIR%%/themes/ocean_surf/css/images +@dirrmtry %%WWWDIR%%/themes/ocean_surf/css +@dirrmtry %%WWWDIR%%/themes/ocean_surf/compiled +@dirrmtry %%WWWDIR%%/themes/ocean_surf/code +@dirrmtry %%WWWDIR%%/themes/ocean_surf +@dirrmtry %%WWWDIR%%/themes/dgm/templates +@dirrmtry %%WWWDIR%%/themes/dgm/images +@dirrmtry %%WWWDIR%%/themes/dgm/css +@dirrmtry %%WWWDIR%%/themes/dgm/compiled +@dirrmtry %%WWWDIR%%/themes/dgm/code +@dirrmtry %%WWWDIR%%/themes/dgm +@dirrmtry %%WWWDIR%%/themes/desert_sand/templates/welcome +@dirrmtry %%WWWDIR%%/themes/desert_sand/templates/settings +@dirrmtry %%WWWDIR%%/themes/desert_sand/templates +@dirrmtry %%WWWDIR%%/themes/desert_sand/javascript +@dirrmtry %%WWWDIR%%/themes/desert_sand/images +@dirrmtry %%WWWDIR%%/themes/desert_sand/css/images +@dirrmtry %%WWWDIR%%/themes/desert_sand/css +@dirrmtry %%WWWDIR%%/themes/desert_sand/compiled +@dirrmtry %%WWWDIR%%/themes/desert_sand/code +@dirrmtry %%WWWDIR%%/themes/desert_sand +@dirrmtry %%WWWDIR%%/themes +@dirrmtry %%WWWDIR%%/overlib/mini +@dirrmtry %%WWWDIR%%/overlib +@dirrmtry %%WWWDIR%%/maia_db +@dirrmtry %%WWWDIR%%/locale/sv +@dirrmtry %%WWWDIR%%/locale/ru +@dirrmtry %%WWWDIR%%/locale/pt +@dirrmtry %%WWWDIR%%/locale/no +@dirrmtry %%WWWDIR%%/locale/nl +@dirrmtry %%WWWDIR%%/locale/it +@dirrmtry %%WWWDIR%%/locale/hu +@dirrmtry %%WWWDIR%%/locale/fr +@dirrmtry %%WWWDIR%%/locale/en +@dirrmtry %%WWWDIR%%/locale/de +@dirrmtry %%WWWDIR%%/locale/da +@dirrmtry %%WWWDIR%%/locale/cs +@dirrmtry %%WWWDIR%%/locale +@dirrmtry %%WWWDIR%%/libs/jquery/images +@dirrmtry %%WWWDIR%%/libs/jquery +@dirrmtry %%WWWDIR%%/libs +@dirrmtry %%WWWDIR%%/images +@dirrmtry %%WWWDIR%%/admin/scripts +@dirrmtry %%WWWDIR%%/admin @dirrmtry %%WWWDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrmtry %%DATADIR%%/scripts +@dirrmtry %%DATADIR%% +@dirrmtry %%ETCDIR%%/templates +@dirrmtry %%ETCDIR%% +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% + From owner-svn-ports-head@FreeBSD.ORG Sun Jan 19 23:39:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E669928F; Sun, 19 Jan 2014 23:39:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B85E816F3; Sun, 19 Jan 2014 23:39:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0JNdIJf058389; Sun, 19 Jan 2014 23:39:18 GMT (envelope-from ashish@svn.freebsd.org) Received: (from ashish@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0JNdI9c058385; Sun, 19 Jan 2014 23:39:18 GMT (envelope-from ashish@svn.freebsd.org) Message-Id: <201401192339.s0JNdI9c058385@svn.freebsd.org> From: Ashish SHUKLA Date: Sun, 19 Jan 2014 23:39:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340358 - head/dns/pdnsd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 19 Jan 2014 23:39:19 -0000 Author: ashish Date: Sun Jan 19 23:39:17 2014 New Revision: 340358 URL: http://svnweb.freebsd.org/changeset/ports/340358 QAT: https://qat.redports.org/buildarchive/r340358/ Log: - Add STAGE support - Fix issue during installation[1] - Remove incorrect pkg-message Submitted by: Серж ИвановЪ (via private mail) Deleted: head/dns/pdnsd/pkg-message Modified: head/dns/pdnsd/Makefile head/dns/pdnsd/pkg-install head/dns/pdnsd/pkg-plist Modified: head/dns/pdnsd/Makefile ============================================================================== --- head/dns/pdnsd/Makefile Sun Jan 19 23:21:30 2014 (r340357) +++ head/dns/pdnsd/Makefile Sun Jan 19 23:39:17 2014 (r340358) @@ -24,9 +24,6 @@ OPTIONS_DEFINE= IPV6 DOCS WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -MAN5= pdnsd.conf.5 -MAN8= pdnsd.8 pdnsd-ctl.8 - PDNSDB= /var/db/pdnsd DOCSRCDIR= ${WRKSRC}/doc DOC_FILES= html/dl.html html/doc.html html/faq.html html/index.html @@ -34,20 +31,14 @@ DOC_FILES+= txt/faq.txt txt/intro.txt tx CFLAGS+= -pthread -NO_STAGE= yes -.include +IPV6_CONFIGURE_ENABLE= ipv6 -.if ${PORT_OPTIONS:MIPV6} -CONFIGURE_ARGS+= --enable-ipv6 -.endif +.include post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${DOC_FILES:S@^@${DOCSRCDIR}/@} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @${INSTALL_DATA} ${DOC_FILES:S@^@${DOCSRCDIR}/@} ${STAGEDIR}${DOCSDIR} .endif - @[ -f ${PREFIX}/etc/pdnsd.conf ] || \ - ${INSTALL_DATA} ${PREFIX}/etc/pdnsd.conf.sample ${PREFIX}/etc/pdnsd.conf - @${CAT} ${PKGMESSAGE} .include Modified: head/dns/pdnsd/pkg-install ============================================================================== --- head/dns/pdnsd/pkg-install Sun Jan 19 23:21:30 2014 (r340357) +++ head/dns/pdnsd/pkg-install Sun Jan 19 23:39:17 2014 (r340358) @@ -4,6 +4,6 @@ PDNSDB=/var/db/pdnsd mkdir -p ${PDNSDB} chown nobody ${PDNSDB} chmod 755 ${PDNSDB} -truncate -s 4 ${PDNSDB} +touch ${PDNSDB}/pdnsd.cache chown nobody ${PDNSDB}/pdnsd.cache chmod 640 ${PDNSDB}/pdnsd.cache Modified: head/dns/pdnsd/pkg-plist ============================================================================== --- head/dns/pdnsd/pkg-plist Sun Jan 19 23:21:30 2014 (r340357) +++ head/dns/pdnsd/pkg-plist Sun Jan 19 23:39:17 2014 (r340358) @@ -1,6 +1,9 @@ @unexec if cmp -s %D/etc/pdnsd.conf %D/etc/pdnsd.conf.sample; then rm %D/etc/pdnsd.conf; fi etc/pdnsd.conf.sample @exec [ -f %D/etc/pdnsd.conf ] || install -m 644 %D/etc/pdnsd.conf.sample %D/etc/pdnsd.conf +man/man5/pdnsd.conf.5.gz +man/man8/pdnsd-ctl.8.gz +man/man8/pdnsd.8.gz sbin/pdnsd sbin/pdnsd-ctl %%PORTDOCS%%%%DOCSDIR%%/dl.html From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 01:24:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73957BD8; Mon, 20 Jan 2014 01:24:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E32C1EDC; Mon, 20 Jan 2014 01:24:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K1Os2W000197; Mon, 20 Jan 2014 01:24:54 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K1Orb9000194; Mon, 20 Jan 2014 01:24:53 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401200124.s0K1Orb9000194@svn.freebsd.org> From: Rusmir Dusko Date: Mon, 20 Jan 2014 01:24:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340359 - head/multimedia/gtk-youtube-viewer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 01:24:54 -0000 Author: nemysis Date: Mon Jan 20 01:24:53 2014 New Revision: 340359 URL: http://svnweb.freebsd.org/changeset/ports/340359 QAT: https://qat.redports.org/buildarchive/r340359/ Log: - Update to 3.0.9 - Change license GPLv3 to ART20 GPLv3 - Change dependencies according to Build.PL, and add net/p5-Socket - Add DOCS Option - Add CLI to defualt Options - Support STAGEDIR and add OPTIONS_SUB - Remove obsolete REINPLACE_CMD after changes Build.PL - Break lines around 80 characters - Symlink the icon and Desktop entry file Reviewed by: horia Modified: head/multimedia/gtk-youtube-viewer/Makefile head/multimedia/gtk-youtube-viewer/distinfo head/multimedia/gtk-youtube-viewer/pkg-plist Modified: head/multimedia/gtk-youtube-viewer/Makefile ============================================================================== --- head/multimedia/gtk-youtube-viewer/Makefile Sun Jan 19 23:39:17 2014 (r340358) +++ head/multimedia/gtk-youtube-viewer/Makefile Mon Jan 20 01:24:53 2014 (r340359) @@ -2,35 +2,45 @@ # $FreeBSD$ PORTNAME= gtk-youtube-viewer -PORTVERSION= 3.0.7 -PORTREVISION= 2 +PORTVERSION= 3.0.9 CATEGORIES= multimedia perl5 MAINTAINER= nemysis@FreeBSD.org COMMENT= GTK Search and play YouTube videos streaming in MPlayer -LICENSE= GPLv3 +LICENSE= ART20 GPLv3 +LICENSE_COMB= dual # According to Build.PL -BUILD_DEPENDS= p5-Data-Dump>=0:${PORTSDIR}/devel/p5-Data-Dump \ - p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ - p5-Term-ANSIColor>=0:${PORTSDIR}/devel/p5-Term-ANSIColor \ - p5-URI>=0:${PORTSDIR}/net/p5-URI \ - p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ +BUILD_DEPENDS= p5-Test-More-UTF8>=0:${PORTSDIR}/devel/p5-Test-More-UTF8 \ + p5-Scalar-List-Utils>=0:${PORTSDIR}/lang/p5-Scalar-List-Utils \ + p5-MIME-Base64>=0:${PORTSDIR}/converters/p5-MIME-Base64 \ p5-LWP-Protocol-https>=0:${PORTSDIR}/www/p5-LWP-Protocol-https \ - p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey \ + p5-File-Temp>=0:${PORTSDIR}/devel/p5-File-Temp \ + p5-Text-CharWidth>=0:${PORTSDIR}/textproc/p5-Text-CharWidth \ + p5-threads>=0:${PORTSDIR}/devel/p5-threads \ + p5-Thread-Queue>=0:${PORTSDIR}/devel/p5-Thread-Queue \ p5-ReadLine-Gnu>=0:${PORTSDIR}/devel/p5-ReadLine-Gnu \ - p5-XML-Fast>=0:${PORTSDIR}/net/p5-XML-Fast + p5-XML-Fast>=0:${PORTSDIR}/net/p5-XML-Fast \ + p5-Data-Dump>=0:${PORTSDIR}/devel/p5-Data-Dump \ + p5-PathTools>=0:${PORTSDIR}/devel/p5-PathTools \ + p5-File-Path>=0:${PORTSDIR}/devel/p5-File-Path \ + p5-Getopt-Long>=0:${PORTSDIR}/devel/p5-Getopt-Long \ + p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ + p5-Term-ANSIColor>=0:${PORTSDIR}/devel/p5-Term-ANSIColor \ + p5-Term-UI>=0:${PORTSDIR}/devel/p5-Term-UI \ + p5-Text-ParseWords>=0:${PORTSDIR}/textproc/p5-Text-ParseWords \ + p5-Text-Tabs+Wrap>=0:${PORTSDIR}/textproc/p5-Text-Tabs+Wrap \ + p5-Socket>=0:${PORTSDIR}/net/p5-Socket RUN_DEPENDS:= ${BUILD_DEPENDS} \ mplayer:${PORTSDIR}/multimedia/mplayer -TEST_DEPENDS= p5-Test-More-UTF8>=0:${PORTSDIR}/devel/p5-Test-More-UTF8 CONFLICTS= youtube-viewer-[0-9]* USE_GITHUB= yes GH_ACCOUNT= trizen GH_PROJECT= youtube-viewer -GH_COMMIT= c26d9a7 +GH_COMMIT= 116eb3f WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT}/WWW-YoutubeViewer @@ -38,63 +48,43 @@ CONFIGURE_ARGS+=${DATADIR} USES= perl5 USE_PERL5= 5.16+ patch modbuild -MAN3= WWW::YoutubeViewer::RegularExpressions.3 \ - WWW::YoutubeViewer.3 \ - WWW::YoutubeViewer::Itags.3 \ - WWW::YoutubeViewer::Utils.3 \ - WWW::YoutubeViewer::GetCaption.3 \ - WWW::YoutubeViewer::ParseXML.3 - PORTDOCS= Changes README -OPTIONS_DEFINE= GCAP +OPTIONS_DEFINE= DOCS GCAP OPTIONS_MULTI= USER_INTERFACE OPTIONS_MULTI_USER_INTERFACE= CLI GTK2 -OPTIONS_DEFAULT= GTK2 GCAP +OPTIONS_DEFAULT= CLI GCAP GTK2 CLI_DESC= Enable CLI version GCAP_DESC= Enable YouTube captions support -NO_STAGE= yes -.include +OPTIONS_SUB= yes -.if ${PORT_OPTIONS:MCLI} -MAN1= youtube-viewer.1 -PLIST_SUB+= CLI="" -.else -PLIST_SUB+= CLI="@comment " -.endif +GCAP_RUN_DEPENDS= ${LOCALBASE}/bin/gcap:${PORTSDIR}/multimedia/gcap +GTK2_BUILD_DEPENDS= p5-Gtk2>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2 \ + p5-File-ShareDir>=0:${PORTSDIR}/devel/p5-File-ShareDir +GTK2_RUN_DEPENDS= p5-Gtk2>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2 \ + p5-File-ShareDir>=0:${PORTSDIR}/devel/p5-File-ShareDir -.if ${PORT_OPTIONS:MGTK2} -BUILD_DEPENDS+= p5-Gtk2>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2 -RUN_DEPENDS+= p5-Gtk2>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2 -CONFIGURE_ARGS+=--gtk-youtube-viewer -PLIST_SUB+= GTK2="" -.else -PLIST_SUB+= GTK2="@comment " -.endif +.include +.include -.if ${PORT_OPTIONS:MGCAP} -RUN_DEPENDS+= ${LOCALBASE}/bin/gcap:${PORTSDIR}/multimedia/gcap +.if ${PORT_OPTIONS:MGTK2} +CONFIGURE_ARGS+=-gtk-youtube-viewer .endif -.include - post-patch: - @${REINPLACE_CMD} -n '1,/create_build_script()/p' \ - ${WRKSRC}/Build.PL - @${REINPLACE_CMD} \ - -e 's|5.016|0|' \ - ${WRKSRC}/Build.PL + @${REINPLACE_CMD} -e 's|5.016|0|' ${WRKSRC}/Build.PL @cd ${WRKSRC}/bin && ${REINPLACE_CMD} -e 's|/usr|${PREFIX}|g' \ gtk-youtube-viewer youtube-viewer .if ${PERL_LEVEL} <= 501600 @${CP} ${FILESDIR}/yv_5.16_to_5.10.pl ${WRKSRC} @${CP} ${WRKSRC}/bin/youtube-viewer ${WRKSRC}/bin/youtube-viewer-2patch @${PERL} \ - ${WRKSRC}/yv_5.16_to_5.10.pl ${WRKSRC}/bin/youtube-viewer-2patch > ${WRKSRC}/bin/youtube-viewer + ${WRKSRC}/yv_5.16_to_5.10.pl ${WRKSRC}/bin/youtube-viewer-2patch > \ + ${WRKSRC}/bin/youtube-viewer @${RM} ${WRKSRC}/bin/youtube-viewer-2patch .endif @@ -107,17 +97,16 @@ post-patch: post-install: .if ${PORT_OPTIONS:MGTK2} - ${INSTALL_DATA} ${WRKSRC}/share/gtk-youtube-viewer.desktop ${PREFIX}/share/applications - @${MKDIR} ${DATADIR}/icons - ${INSTALL_DATA} ${WRKSRC}/share/gtk-youtube-viewer.glade ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/share/gtk-youtube-viewer-icons/* ${DATADIR}/icons - ${INSTALL_DATA} ${WRKSRC}/share/icons/gtk-youtube-viewer.png ${PREFIX}/share/pixmaps + ${LN} -sf \ + ${SITE_PERL}${PERL_ARCH}/auto/share/dist/WWW-YoutubeViewer/gtk-youtube-viewer.desktop \ + ${STAGEDIR}${DESKTOPDIR} + ${LN} -sf \ + ${SITE_PERL}${PERL_ARCH}/auto/share/dist/WWW-YoutubeViewer/gtk-youtube-viewer.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/ .endif -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} regression-test: build cd ${WRKSRC} && ${PERL} ./Build test Modified: head/multimedia/gtk-youtube-viewer/distinfo ============================================================================== --- head/multimedia/gtk-youtube-viewer/distinfo Sun Jan 19 23:39:17 2014 (r340358) +++ head/multimedia/gtk-youtube-viewer/distinfo Mon Jan 20 01:24:53 2014 (r340359) @@ -1,2 +1,2 @@ -SHA256 (gtk-youtube-viewer-3.0.7.tar.gz) = 3a7aea5ef93d8d7015295771047172fea588b9135a1707585df253a6ed52f1dc -SIZE (gtk-youtube-viewer-3.0.7.tar.gz) = 116915 +SHA256 (gtk-youtube-viewer-3.0.9.tar.gz) = c3ae4f5e05671c8e80073000871d7ed2a4795e08bce7f0fc17fe94cf2d3336c8 +SIZE (gtk-youtube-viewer-3.0.9.tar.gz) = 116144 Modified: head/multimedia/gtk-youtube-viewer/pkg-plist ============================================================================== --- head/multimedia/gtk-youtube-viewer/pkg-plist Sun Jan 19 23:39:17 2014 (r340358) +++ head/multimedia/gtk-youtube-viewer/pkg-plist Mon Jan 20 01:24:53 2014 (r340359) @@ -1,22 +1,32 @@ %%GTK2%%bin/gtk-youtube-viewer %%CLI%%bin/youtube-viewer +%%PERL5_MAN3%%/WWW::YoutubeViewer.3.gz +%%PERL5_MAN3%%/WWW::YoutubeViewer::AuthToken.3.gz +%%PERL5_MAN3%%/WWW::YoutubeViewer::ConfigData.3.gz +%%PERL5_MAN3%%/WWW::YoutubeViewer::GetCaption.3.gz +%%PERL5_MAN3%%/WWW::YoutubeViewer::Itags.3.gz +%%PERL5_MAN3%%/WWW::YoutubeViewer::ParseXML.3.gz +%%PERL5_MAN3%%/WWW::YoutubeViewer::RegularExpressions.3.gz +%%PERL5_MAN3%%/WWW::YoutubeViewer::Utils.3.gz %%SITE_PERL%%/WWW/YoutubeViewer.pm +%%SITE_PERL%%/WWW/YoutubeViewer/AuthToken.pm +%%SITE_PERL%%/WWW/YoutubeViewer/ConfigData.pm %%SITE_PERL%%/WWW/YoutubeViewer/GetCaption.pm %%SITE_PERL%%/WWW/YoutubeViewer/Itags.pm %%SITE_PERL%%/WWW/YoutubeViewer/ParseXML.pm %%SITE_PERL%%/WWW/YoutubeViewer/RegularExpressions.pm %%SITE_PERL%%/WWW/YoutubeViewer/Utils.pm -%%GTK2%%%%SITE_PERL%%/mach/auto/WWW/YoutubeViewer/.packlist +%%GTK2%%%%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer/gtk-youtube-viewer.desktop +%%GTK2%%%%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer/gtk-youtube-viewer.glade +%%GTK2%%%%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer/gtk-youtube-viewer.png +%%GTK2%%%%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer/icons/default_thumb.jpg +%%GTK2%%%%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer/icons/feed_icon.png +%%GTK2%%%%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer/icons/gtk-youtube-viewer.png +%%GTK2%%%%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer/icons/spinner.gif +%%GTK2%%%%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer/icons/user.png +%%CLI%%man/man1/youtube-viewer.1.gz %%GTK2%%share/applications/gtk-youtube-viewer.desktop -%%GTK2%%%%DATADIR%%/gtk-youtube-viewer.glade -%%GTK2%%%%DATADIR%%/icons/default_thumb.jpg -%%GTK2%%%%DATADIR%%/icons/donate.png -%%GTK2%%%%DATADIR%%/icons/feed_icon.png -%%GTK2%%%%DATADIR%%/icons/gtk-youtube-viewer.png -%%GTK2%%%%DATADIR%%/icons/spinner.gif -%%GTK2%%%%DATADIR%%/icons/user.png %%GTK2%%share/pixmaps/gtk-youtube-viewer.png -%%GTK2%%@dirrm %%DATADIR%%/icons -%%GTK2%%@dirrm %%DATADIR%% -%%GTK2%%@dirrm %%SITE_PERL%%/mach/auto/WWW/YoutubeViewer +%%GTK2%%@dirrm %%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer/icons +%%GTK2%%@dirrm %%SITE_PERL%%/auto/share/dist/WWW-YoutubeViewer @dirrm %%SITE_PERL%%/WWW/YoutubeViewer From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 01:34:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9689DD49; Mon, 20 Jan 2014 01:34:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81AEA1F88; Mon, 20 Jan 2014 01:34:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K1YWoY003962; Mon, 20 Jan 2014 01:34:32 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K1YVB3003955; Mon, 20 Jan 2014 01:34:31 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401200134.s0K1YVB3003955@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 20 Jan 2014 01:34:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340360 - in head/devel/bennugd-core: . 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.17 Precedence: list List-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, 20 Jan 2014 01:34:32 -0000 Author: amdmi3 Date: Mon Jan 20 01:34:31 2014 New Revision: 340360 URL: http://svnweb.freebsd.org/changeset/ports/340360 QAT: https://qat.redports.org/buildarchive/r340360/ Log: - Update to svn20130912 - Support staging - Fix build on 10.x Deleted: head/devel/bennugd-core/files/patch-include-crypt.h Modified: head/devel/bennugd-core/Makefile head/devel/bennugd-core/distinfo head/devel/bennugd-core/files/patch-bgdrtm-src-dirs.c head/devel/bennugd-core/files/patch-configure Modified: head/devel/bennugd-core/Makefile ============================================================================== --- head/devel/bennugd-core/Makefile Mon Jan 20 01:24:53 2014 (r340359) +++ head/devel/bennugd-core/Makefile Mon Jan 20 01:34:31 2014 (r340360) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= core -PORTVERSION= r20091106 +PORTVERSION= svn20130912 CATEGORIES= devel games MASTER_SITES= http://mirror.amdmi3.ru/distfiles/ PKGNAMEPREFIX= bennugd- @@ -11,6 +11,7 @@ DISTNAME= bennugd-${PORTVERSION} MAINTAINER= amdmi3@FreeBSD.org COMMENT= High level open source game development suite, core libs +USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --bindir="${PREFIX}/libexec" SUB_FILES= bgdc bgdi @@ -20,13 +21,14 @@ USE_DOS2UNIX= *.c *.h ONLY_FOR_ARCHS= i386 ONLY_FOR_ARCHS_REASON= Segfaults on !i386 +CONFIGURE_ENV= ZLIB_CFLAGS=" " ZLIB_LIBS="-lz" + WRKSRC= ${WRKDIR}/bennugd/${PORTNAME} PLIST_FILES= bin/bgdc bin/bgdi \ libexec/bgdc libexec/bgdi \ - lib/libbgdrtm.a lib/libbgdrtm.la lib/libbgdrtm.so + lib/libbgdrtm.la lib/libbgdrtm.so -NO_STAGE= yes post-extract: @${CHMOD} a+x ${WRKSRC}/configure ${WRKSRC}/install-sh @@ -35,7 +37,7 @@ post-patch: ${WRKSRC}/configure post-install: - ${INSTALL_SCRIPT} ${WRKDIR}/bgdi ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKDIR}/bgdc ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKDIR}/bgdi ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKDIR}/bgdc ${STAGEDIR}${PREFIX}/bin .include Modified: head/devel/bennugd-core/distinfo ============================================================================== --- head/devel/bennugd-core/distinfo Mon Jan 20 01:24:53 2014 (r340359) +++ head/devel/bennugd-core/distinfo Mon Jan 20 01:34:31 2014 (r340360) @@ -1,2 +1,2 @@ -SHA256 (bennugd-r20091106.tar.gz) = bdef09e9da715b5001411bc8c8276e66120e904596050f2175cca5405c9cec12 -SIZE (bennugd-r20091106.tar.gz) = 1468705 +SHA256 (bennugd-svn20130912.tar.bz2) = 13da09c0078619c25c689b1d81777ff54f026dbbf7b5638d80b2c3077287e27d +SIZE (bennugd-svn20130912.tar.bz2) = 1092409 Modified: head/devel/bennugd-core/files/patch-bgdrtm-src-dirs.c ============================================================================== --- head/devel/bennugd-core/files/patch-bgdrtm-src-dirs.c Mon Jan 20 01:24:53 2014 (r340359) +++ head/devel/bennugd-core/files/patch-bgdrtm-src-dirs.c Mon Jan 20 01:34:31 2014 (r340360) @@ -1,13 +1,11 @@ ---- bgdrtm/src/dirs.c.orig 2009-07-09 05:10:52.000000000 +0400 -+++ bgdrtm/src/dirs.c 2009-11-06 05:50:02.000000000 +0300 -@@ -230,9 +230,7 @@ - /* Convert *.* to * */ - if ( fptr > path_final + 2 && fptr[ -1 ] == '*' && fptr[ -2 ] == '.' && fptr[ -3 ] == '*' ) fptr[ -2 ] = 0; +--- bgdrtm/src/dirs.c.orig 2013-09-12 05:40:07.257227650 +0400 ++++ bgdrtm/src/dirs.c 2013-09-12 05:40:48.926466619 +0400 +@@ -261,7 +261,7 @@ + /* Convert '*.*' to '*' */ + if ( fptr > hDir->pattern + 2 && fptr[ -1 ] == '*' && fptr[ -2 ] == '.' && fptr[ -3 ] == '*' ) fptr[ -2 ] = 0; --#if defined(TARGET_MAC) -- glob( path_final, GLOB_ERR | GLOB_NOSORT, NULL, &hDir->globd ); --#elif defined(TARGET_BEOS) -+#if defined(TARGET_MAC) || defined(TARGET_BEOS) || defined(TARGET_BSD) - glob( path_final, GLOB_ERR | GLOB_NOSORT, NULL, &hDir->globd ); +-#if defined(TARGET_MAC) || defined(TARGET_BEOS) ++#if defined(TARGET_MAC) || defined(TARGET_BEOS) || defined (TARGET_BSD) + r = glob( hDir->pattern, GLOB_ERR | GLOB_NOSORT, NULL, &hDir->globd ); #else - glob( path_final, GLOB_ERR | GLOB_PERIOD | GLOB_NOSORT, NULL, &hDir->globd ); + r = glob( hDir->pattern, GLOB_ERR | GLOB_PERIOD | GLOB_NOSORT, NULL, &hDir->globd ); Modified: head/devel/bennugd-core/files/patch-configure ============================================================================== --- head/devel/bennugd-core/files/patch-configure Mon Jan 20 01:24:53 2014 (r340359) +++ head/devel/bennugd-core/files/patch-configure Mon Jan 20 01:34:31 2014 (r340360) @@ -1,60 +1,15 @@ ---- configure.orig 2009-07-22 06:02:45.000000000 +0400 -+++ configure 2009-11-06 06:00:29.000000000 +0300 -@@ -10929,7 +10929,7 @@ - COMMON_LDFLAGS="-L/usr/i586-mingw32msvc/lib -lshlwapi" +--- configure.orig 2013-01-06 05:50:56.000000000 +0400 ++++ configure 2013-09-12 05:48:18.186226351 +0400 +@@ -11277,10 +11277,10 @@ + USE_OPENSSL=no ;; - dragonfly*) -+ freebsd* | dragonfly*) ++ dragonfly* | freebsd*) INCLUDES="-I/usr/local/include" - COMMON_CFLAGS="-Wall -DTARGET_BSD" - COMMON_LDFLAGS="-L/usr/local/lib -lpthread" -@@ -12461,13 +12461,13 @@ - { (exit 1); exit 1; }; } - fi - --{ $as_echo "$as_me:$LINENO: checking for des_ecb_encrypt in -ldes" >&5 --$as_echo_n "checking for des_ecb_encrypt in -ldes... " >&6; } -+{ $as_echo "$as_me:$LINENO: checking for des_ecb_encrypt in -lcrypto" >&5 -+$as_echo_n "checking for des_ecb_encrypt in -lcrypto... " >&6; } - if test "${ac_cv_lib_des_des_ecb_encrypt+set}" = set; then - $as_echo_n "(cached) " >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-ldes $LIBS" -+LIBS="-lcrypto $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -12481,11 +12481,11 @@ - #ifdef __cplusplus - extern "C" - #endif --char des_ecb_encrypt (); -+char DES_ecb_encrypt (); - int - main () - { --return des_ecb_encrypt (); -+return DES_ecb_encrypt(); - ; - return 0; - } -@@ -12587,7 +12587,7 @@ - cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ --#include -+#include - _ACEOF - if { (ac_try="$ac_cpp conftest.$ac_ext" - case "(($ac_try" in -@@ -12655,7 +12655,7 @@ - - fi - if test "x$ac_cv_header_des_h" = x""yes; then -- DESLIBS="-ldes" -+ DESLIBS="-lcrypto" - fi - - + COMMON_CFLAGS="-Wall -DTARGET_BSD -DUSE_OPENSSL" +- COMMON_LDFLAGS="-L/usr/local/lib -lpthread" ++ COMMON_LDFLAGS="-L/usr/local/lib -pthread" + LIBSSL="crypto" + USE_OPENSSL=yes + ;; From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 01:34:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71AACE2E; Mon, 20 Jan 2014 01:34:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5C81E1F90; Mon, 20 Jan 2014 01:34:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K1YtNH004125; Mon, 20 Jan 2014 01:34:55 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K1YsgP004120; Mon, 20 Jan 2014 01:34:54 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401200134.s0K1YsgP004120@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 20 Jan 2014 01:34:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340361 - in head/devel/bennugd-modules: . 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.17 Precedence: list List-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, 20 Jan 2014 01:34:55 -0000 Author: amdmi3 Date: Mon Jan 20 01:34:53 2014 New Revision: 340361 URL: http://svnweb.freebsd.org/changeset/ports/340361 QAT: https://qat.redports.org/buildarchive/r340361/ Log: - Update to svn20130912 - Support staging - Fix build on 10.x Deleted: head/devel/bennugd-modules/files/patch-include-crypt.h head/devel/bennugd-modules/files/patch-mod__map-file__png.c Modified: head/devel/bennugd-modules/Makefile head/devel/bennugd-modules/distinfo head/devel/bennugd-modules/files/patch-configure head/devel/bennugd-modules/files/patch-mod__mem-mod__mem.c head/devel/bennugd-modules/pkg-plist Modified: head/devel/bennugd-modules/Makefile ============================================================================== --- head/devel/bennugd-modules/Makefile Mon Jan 20 01:34:31 2014 (r340360) +++ head/devel/bennugd-modules/Makefile Mon Jan 20 01:34:53 2014 (r340361) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= modules -PORTVERSION= r20091106 -PORTREVISION= 4 +PORTVERSION= svn20130912 CATEGORIES= devel games MASTER_SITES= http://mirror.amdmi3.ru/distfiles/ PKGNAMEPREFIX= bennugd- @@ -12,21 +11,22 @@ DISTNAME= bennugd-${PORTVERSION} MAINTAINER= amdmi3@FreeBSD.org COMMENT= High level open source game development suite, modules -BUILD_DEPENDS= ${LOCALBASE}/lib/libbgdrtm.so:${PORTSDIR}/devel/bennugd-core -RUN_DEPENDS= ${LOCALBASE}/lib/libbgdrtm.so:${PORTSDIR}/devel/bennugd-core -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libbgdrtm.so:${PORTSDIR}/devel/bennugd-core \ + libpng.so:${PORTSDIR}/graphics/png +USE_BZIP2= yes USE_SDL= sdl mixer GNU_CONFIGURE= yes +USES= pkgconfig CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --libdir="${PREFIX}/lib/bennugd" +CONFIGURE_ENV= ZLIB_CFLAGS=" " ZLIB_LIBS="-lz" USE_DOS2UNIX= *.c WRKSRC= ${WRKDIR}/bennugd/${PORTNAME} -NO_STAGE= yes post-extract: @${CHMOD} a+x ${WRKSRC}/configure ${WRKSRC}/install-sh Modified: head/devel/bennugd-modules/distinfo ============================================================================== --- head/devel/bennugd-modules/distinfo Mon Jan 20 01:34:31 2014 (r340360) +++ head/devel/bennugd-modules/distinfo Mon Jan 20 01:34:53 2014 (r340361) @@ -1,2 +1,2 @@ -SHA256 (bennugd-r20091106.tar.gz) = bdef09e9da715b5001411bc8c8276e66120e904596050f2175cca5405c9cec12 -SIZE (bennugd-r20091106.tar.gz) = 1468705 +SHA256 (bennugd-svn20130912.tar.bz2) = 13da09c0078619c25c689b1d81777ff54f026dbbf7b5638d80b2c3077287e27d +SIZE (bennugd-svn20130912.tar.bz2) = 1092409 Modified: head/devel/bennugd-modules/files/patch-configure ============================================================================== --- head/devel/bennugd-modules/files/patch-configure Mon Jan 20 01:34:31 2014 (r340360) +++ head/devel/bennugd-modules/files/patch-configure Mon Jan 20 01:34:53 2014 (r340361) @@ -1,60 +1,11 @@ ---- configure.orig 2009-07-22 06:02:45.000000000 +0400 -+++ configure 2009-11-06 06:10:30.000000000 +0300 -@@ -10946,7 +10946,7 @@ - COMMON_LDFLAGS="-L/usr/i586-mingw32msvc/lib -lshlwapi" +--- configure.orig 2013-01-06 05:50:56.000000000 +0400 ++++ configure 2013-09-12 05:47:52.458664790 +0400 +@@ -11315,7 +11315,7 @@ + USE_OPENSSL=yes ;; - dragonfly*) -+ freebsd* | dragonfly*) ++ dragonfly* | freebsd*) COMMON_CFLAGS="-I/usr/local/include -Wall -DTARGET_BSD" COMMON_LDFLAGS="-pthread -L/usr/local/lib" - ;; -@@ -13073,13 +13073,13 @@ - { (exit 1); exit 1; }; } - fi - --{ $as_echo "$as_me:$LINENO: checking for des_ecb_encrypt in -ldes" >&5 --$as_echo_n "checking for des_ecb_encrypt in -ldes... " >&6; } -+{ $as_echo "$as_me:$LINENO: checking for des_ecb_encrypt in -lcrypto" >&5 -+$as_echo_n "checking for des_ecb_encrypt in -lcrypto... " >&6; } - if test "${ac_cv_lib_des_des_ecb_encrypt+set}" = set; then - $as_echo_n "(cached) " >&6 - else - ac_check_lib_save_LIBS=$LIBS --LIBS="-ldes $LIBS" -+LIBS="-lcrypto $LIBS" - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -13093,11 +13093,11 @@ - #ifdef __cplusplus - extern "C" - #endif --char des_ecb_encrypt (); -+char DES_ecb_encrypt (); - int - main () - { --return des_ecb_encrypt (); -+return DES_ecb_encrypt (); - ; - return 0; - } -@@ -13199,7 +13199,7 @@ - cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ --#include -+#include - _ACEOF - if { (ac_try="$ac_cpp conftest.$ac_ext" - case "(($ac_try" in -@@ -13267,7 +13267,7 @@ - - fi - if test "x$ac_cv_header_des_h" = x""yes; then -- DESLIBS="-ldes" -+ DESLIBS="-lcrypto" - fi - - + LM=-lm Modified: head/devel/bennugd-modules/files/patch-mod__mem-mod__mem.c ============================================================================== --- head/devel/bennugd-modules/files/patch-mod__mem-mod__mem.c Mon Jan 20 01:34:31 2014 (r340360) +++ head/devel/bennugd-modules/files/patch-mod__mem-mod__mem.c Mon Jan 20 01:34:53 2014 (r340361) @@ -1,20 +1,20 @@ ---- mod_mem/mod_mem.c.orig 2009-06-15 22:34:24.000000000 +0400 -+++ mod_mem/mod_mem.c 2009-11-06 06:28:55.000000000 +0300 -@@ -128,7 +128,7 @@ +--- mod_mem/mod_mem.c.orig 2013-09-12 06:03:12.588226648 +0400 ++++ mod_mem/mod_mem.c 2013-09-12 06:03:50.452231577 +0400 +@@ -133,7 +133,7 @@ get_system_info( &info ); return B_PAGE_SIZE * ( info.max_pages - info.used_pages ); --#elif !defined(TARGET_MAC) -+#elif !defined(TARGET_MAC) && !defined(TARGET_BSD) +-#elif !defined(TARGET_MAC) && !defined(TARGET_WII) ++#elif !defined(TARGET_MAC) && !defined(TARGET_WII) && !defined(TARGET_BSD) /* Linux and other Unix (?) */ struct sysinfo meminf; int fv; -@@ -166,7 +166,7 @@ +@@ -171,7 +171,7 @@ get_system_info( &info ); return B_PAGE_SIZE * ( info.max_pages ); --#elif !defined(TARGET_MAC) -+#elif !defined(TARGET_MAC) && !defined(TARGET_BSD) +-#elif !defined(TARGET_MAC) && !defined(TARGET_WII) ++#elif !defined(TARGET_MAC) && !defined(TARGET_WII) && !defined(TARGET_BSD) /* Linux and other Unix (?) */ struct sysinfo meminf; int fv; Modified: head/devel/bennugd-modules/pkg-plist ============================================================================== --- head/devel/bennugd-modules/pkg-plist Mon Jan 20 01:34:31 2014 (r340360) +++ head/devel/bennugd-modules/pkg-plist Mon Jan 20 01:34:53 2014 (r340361) @@ -1,139 +1,97 @@ -lib/bennugd/libblit.a +lib/bennugd/libbgload.la +lib/bennugd/libbgload.so lib/bennugd/libblit.la lib/bennugd/libblit.so -lib/bennugd/libdraw.a lib/bennugd/libdraw.la lib/bennugd/libdraw.so -lib/bennugd/libfont.a lib/bennugd/libfont.la lib/bennugd/libfont.so -lib/bennugd/libgrbase.a lib/bennugd/libgrbase.la lib/bennugd/libgrbase.so -lib/bennugd/libjoy.a lib/bennugd/libjoy.la lib/bennugd/libjoy.so -lib/bennugd/libkey.a lib/bennugd/libkey.la lib/bennugd/libkey.so -lib/bennugd/libmouse.a +lib/bennugd/libmod_blendop.la +lib/bennugd/libmod_blendop.so +lib/bennugd/libmod_cd.la +lib/bennugd/libmod_cd.so +lib/bennugd/libmod_crypt.la +lib/bennugd/libmod_crypt.so +lib/bennugd/libmod_debug.la +lib/bennugd/libmod_debug.so +lib/bennugd/libmod_dir.la +lib/bennugd/libmod_dir.so +lib/bennugd/libmod_draw.la +lib/bennugd/libmod_draw.so +lib/bennugd/libmod_effects.la +lib/bennugd/libmod_effects.so +lib/bennugd/libmod_file.la +lib/bennugd/libmod_file.so +lib/bennugd/libmod_flic.la +lib/bennugd/libmod_flic.so +lib/bennugd/libmod_grproc.la +lib/bennugd/libmod_grproc.so +lib/bennugd/libmod_joy.la +lib/bennugd/libmod_joy.so +lib/bennugd/libmod_key.la +lib/bennugd/libmod_key.so +lib/bennugd/libmod_m7.la +lib/bennugd/libmod_m7.so +lib/bennugd/libmod_map.la +lib/bennugd/libmod_map.so +lib/bennugd/libmod_math.la +lib/bennugd/libmod_math.so +lib/bennugd/libmod_mathi.la +lib/bennugd/libmod_mathi.so +lib/bennugd/libmod_mem.la +lib/bennugd/libmod_mem.so +lib/bennugd/libmod_mouse.la +lib/bennugd/libmod_mouse.so +lib/bennugd/libmod_path.la +lib/bennugd/libmod_path.so +lib/bennugd/libmod_proc.la +lib/bennugd/libmod_proc.so +lib/bennugd/libmod_rand.la +lib/bennugd/libmod_rand.so +lib/bennugd/libmod_regex.la +lib/bennugd/libmod_regex.so +lib/bennugd/libmod_say.la +lib/bennugd/libmod_say.so +lib/bennugd/libmod_screen.la +lib/bennugd/libmod_screen.so +lib/bennugd/libmod_scroll.la +lib/bennugd/libmod_scroll.so +lib/bennugd/libmod_sort.la +lib/bennugd/libmod_sort.so +lib/bennugd/libmod_sound.la +lib/bennugd/libmod_sound.so +lib/bennugd/libmod_string.la +lib/bennugd/libmod_string.so +lib/bennugd/libmod_sys.la +lib/bennugd/libmod_sys.so +lib/bennugd/libmod_text.la +lib/bennugd/libmod_text.so +lib/bennugd/libmod_time.la +lib/bennugd/libmod_time.so +lib/bennugd/libmod_timers.la +lib/bennugd/libmod_timers.so +lib/bennugd/libmod_video.la +lib/bennugd/libmod_video.so +lib/bennugd/libmod_wm.la +lib/bennugd/libmod_wm.so lib/bennugd/libmouse.la lib/bennugd/libmouse.so -lib/bennugd/librender.a lib/bennugd/librender.la lib/bennugd/librender.so -lib/bennugd/libscroll.a lib/bennugd/libscroll.la lib/bennugd/libscroll.so -lib/bennugd/libsdlhandler.a lib/bennugd/libsdlhandler.la lib/bennugd/libsdlhandler.so -lib/bennugd/libtext.a lib/bennugd/libtext.la lib/bennugd/libtext.so -lib/bennugd/libvideo.a lib/bennugd/libvideo.la lib/bennugd/libvideo.so -lib/bennugd/libwm.a lib/bennugd/libwm.la lib/bennugd/libwm.so -lib/bennugd/mod_blendop.a -lib/bennugd/mod_blendop.la -lib/bennugd/mod_blendop.so -lib/bennugd/mod_cd.a -lib/bennugd/mod_cd.la -lib/bennugd/mod_cd.so -lib/bennugd/mod_crypt.a -lib/bennugd/mod_crypt.la -lib/bennugd/mod_crypt.so -lib/bennugd/mod_debug.a -lib/bennugd/mod_debug.la -lib/bennugd/mod_debug.so -lib/bennugd/mod_dir.a -lib/bennugd/mod_dir.la -lib/bennugd/mod_dir.so -lib/bennugd/mod_draw.a -lib/bennugd/mod_draw.la -lib/bennugd/mod_draw.so -lib/bennugd/mod_effects.a -lib/bennugd/mod_effects.la -lib/bennugd/mod_effects.so -lib/bennugd/mod_file.a -lib/bennugd/mod_file.la -lib/bennugd/mod_file.so -lib/bennugd/mod_flic.a -lib/bennugd/mod_flic.la -lib/bennugd/mod_flic.so -lib/bennugd/mod_grproc.a -lib/bennugd/mod_grproc.la -lib/bennugd/mod_grproc.so -lib/bennugd/mod_joy.a -lib/bennugd/mod_joy.la -lib/bennugd/mod_joy.so -lib/bennugd/mod_key.a -lib/bennugd/mod_key.la -lib/bennugd/mod_key.so -lib/bennugd/mod_m7.a -lib/bennugd/mod_m7.la -lib/bennugd/mod_m7.so -lib/bennugd/mod_map.a -lib/bennugd/mod_map.la -lib/bennugd/mod_map.so -lib/bennugd/mod_math.a -lib/bennugd/mod_math.la -lib/bennugd/mod_math.so -lib/bennugd/mod_mem.a -lib/bennugd/mod_mem.la -lib/bennugd/mod_mem.so -lib/bennugd/mod_mouse.a -lib/bennugd/mod_mouse.la -lib/bennugd/mod_mouse.so -lib/bennugd/mod_path.a -lib/bennugd/mod_path.la -lib/bennugd/mod_path.so -lib/bennugd/mod_proc.a -lib/bennugd/mod_proc.la -lib/bennugd/mod_proc.so -lib/bennugd/mod_rand.a -lib/bennugd/mod_rand.la -lib/bennugd/mod_rand.so -lib/bennugd/mod_regex.a -lib/bennugd/mod_regex.la -lib/bennugd/mod_regex.so -lib/bennugd/mod_say.a -lib/bennugd/mod_say.la -lib/bennugd/mod_say.so -lib/bennugd/mod_screen.a -lib/bennugd/mod_screen.la -lib/bennugd/mod_screen.so -lib/bennugd/mod_scroll.a -lib/bennugd/mod_scroll.la -lib/bennugd/mod_scroll.so -lib/bennugd/mod_sort.a -lib/bennugd/mod_sort.la -lib/bennugd/mod_sort.so -lib/bennugd/mod_sound.a -lib/bennugd/mod_sound.la -lib/bennugd/mod_sound.so -lib/bennugd/mod_string.a -lib/bennugd/mod_string.la -lib/bennugd/mod_string.so -lib/bennugd/mod_sys.a -lib/bennugd/mod_sys.la -lib/bennugd/mod_sys.so -lib/bennugd/mod_text.a -lib/bennugd/mod_text.la -lib/bennugd/mod_text.so -lib/bennugd/mod_time.a -lib/bennugd/mod_time.la -lib/bennugd/mod_time.so -lib/bennugd/mod_timers.a -lib/bennugd/mod_timers.la -lib/bennugd/mod_timers.so -lib/bennugd/mod_video.a -lib/bennugd/mod_video.la -lib/bennugd/mod_video.so -lib/bennugd/mod_wm.a -lib/bennugd/mod_wm.la -lib/bennugd/mod_wm.so @dirrm lib/bennugd From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 01:36:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13F9FFF5; Mon, 20 Jan 2014 01:36:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F38161F9A; Mon, 20 Jan 2014 01:36:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K1aI7u004420; Mon, 20 Jan 2014 01:36:18 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K1aIk6004418; Mon, 20 Jan 2014 01:36:18 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201401200136.s0K1aIk6004418@svn.freebsd.org> From: Gerald Pfeifer Date: Mon, 20 Jan 2014 01:36:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340362 - head/lang/gcc48 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 01:36:19 -0000 Author: gerald Date: Mon Jan 20 01:36:18 2014 New Revision: 340362 URL: http://svnweb.freebsd.org/changeset/ports/340362 QAT: https://qat.redports.org/buildarchive/r340362/ Log: Update to the 20140116 snapshot of GCC 4.8.3. Modified: head/lang/gcc48/Makefile head/lang/gcc48/distinfo Modified: head/lang/gcc48/Makefile ============================================================================== --- head/lang/gcc48/Makefile Mon Jan 20 01:34:53 2014 (r340361) +++ head/lang/gcc48/Makefile Mon Jan 20 01:36:18 2014 (r340362) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc48 -PORTVERSION= 4.8.3.s20131212 +PORTVERSION= 4.8.3.s20140116 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc48/distinfo ============================================================================== --- head/lang/gcc48/distinfo Mon Jan 20 01:34:53 2014 (r340361) +++ head/lang/gcc48/distinfo Mon Jan 20 01:36:18 2014 (r340362) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.8-20131212.tar.bz2) = 78986e1464f209c18e19a9fe3ddd5fe676b3d57cb0a88dc0ceea9faf12cd2606 -SIZE (gcc-4.8-20131212.tar.bz2) = 81860364 +SHA256 (gcc-4.8-20140116.tar.bz2) = bba7542a6845931e244576c23fcf62c5766b769c12f9af5e0cdf99ea2ec51408 +SIZE (gcc-4.8-20140116.tar.bz2) = 81863240 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 01:36:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EFC0A12E; Mon, 20 Jan 2014 01:36:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2483E1F9B; Mon, 20 Jan 2014 01:36:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K1aPIs004500; Mon, 20 Jan 2014 01:36:25 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K1aO1K004499; Mon, 20 Jan 2014 01:36:24 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401200136.s0K1aO1K004499@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 20 Jan 2014 01:36:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340363 - head/games/railroad-rampage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 01:36:26 -0000 Author: amdmi3 Date: Mon Jan 20 01:36:24 2014 New Revision: 340363 URL: http://svnweb.freebsd.org/changeset/ports/340363 QAT: https://qat.redports.org/buildarchive/r340363/ Log: - Support staging Modified: head/games/railroad-rampage/Makefile Modified: head/games/railroad-rampage/Makefile ============================================================================== --- head/games/railroad-rampage/Makefile Mon Jan 20 01:36:18 2014 (r340362) +++ head/games/railroad-rampage/Makefile Mon Jan 20 01:36:24 2014 (r340363) @@ -3,7 +3,7 @@ PORTNAME= railroad-rampage PORTVERSION= 1.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= http://mirror.amdmi3.ru/distfiles/ DISTNAME= RailroadRampage_${PORTVERSION}_Linux @@ -12,9 +12,9 @@ MAINTAINER= amdmi3@FreeBSD.org COMMENT= Tower Defence-like Arcade and Strategy combination BUILD_DEPENDS= bgdc:${PORTSDIR}/devel/bennugd-core \ - ${LOCALBASE}/lib/bennugd/mod_grproc.so:${PORTSDIR}/devel/bennugd-modules + ${LOCALBASE}/lib/bennugd/libmod_grproc.so:${PORTSDIR}/devel/bennugd-modules RUN_DEPENDS= bgdi:${PORTSDIR}/devel/bennugd-core \ - ${LOCALBASE}/lib/bennugd/mod_grproc.so:${PORTSDIR}/devel/bennugd-modules + ${LOCALBASE}/lib/bennugd/libmod_grproc.so:${PORTSDIR}/devel/bennugd-modules USE_ZIP= yes @@ -30,24 +30,21 @@ DESKTOP_ENTRIES="Railroad Rampage" \ "Game;StrategyGame;ArcadeGame;" \ false -NO_STAGE= yes -.include +OPTIONS_DEFINE= DOCS do-build: cd ${WRKSRC} && ${SETENV} \ - LD_LIBRARY_PATH=${LOCALBASE}/lib/bennugd \ - BENNUDIR=${LOCALBASE}/lib/bennugd \ - ${LOCALBASE}/bin/bgdc RailroadRampage.prg || true + LD_LIBRARY_PATH="${LOCALBASE}/lib/bennugd" \ + BENNUDIR="${LOCALBASE}/lib/bennugd" \ + "${LOCALBASE}/bin/bgdc" RailroadRampage.prg || true; \ + [ -e RailroadRampage.dcb ] do-install: - ${MKDIR} ${DATADIR} - cd ${WRKSRC} && ${COPYTREE_SHARE} "Music Sound" ${DATADIR}/ + cd ${WRKSRC} && ${COPYTREE_SHARE} "Music Sound" ${STAGEDIR}${DATADIR}/ ${INSTALL_DATA} ${WRKSRC}/traintd.fpg ${WRKSRC}/RailroadRampage.dcb \ - ${WRKSRC}/RailroadRampage.png ${DATADIR}/ - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin/ -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/ReadMe.txt ${DOCSDIR}/ -.endif + ${WRKSRC}/RailroadRampage.png ${STAGEDIR}${DATADIR}/ + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/ReadMe.txt ${STAGEDIR}${DOCSDIR}/ .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 01:40:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6BA45251; Mon, 20 Jan 2014 01:40:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 578BA1FB5; Mon, 20 Jan 2014 01:40:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K1egmf007288; Mon, 20 Jan 2014 01:40:42 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K1egkZ007287; Mon, 20 Jan 2014 01:40:42 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401200140.s0K1egkZ007287@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 20 Jan 2014 01:40:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340364 - head/multimedia/openmovieeditor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 01:40:42 -0000 Author: amdmi3 Date: Mon Jan 20 01:40:41 2014 New Revision: 340364 URL: http://svnweb.freebsd.org/changeset/ports/340364 QAT: https://qat.redports.org/buildarchive/r340364/ Log: - Mark BROKEN, DEPRECATED and set EXPIRATION_DATA: the app segfaults and is unusable, upstream development ceased PR: 177327 Submitted by: Luke Modified: head/multimedia/openmovieeditor/Makefile Modified: head/multimedia/openmovieeditor/Makefile ============================================================================== --- head/multimedia/openmovieeditor/Makefile Mon Jan 20 01:36:24 2014 (r340363) +++ head/multimedia/openmovieeditor/Makefile Mon Jan 20 01:40:41 2014 (r340364) @@ -24,6 +24,10 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libmpeg3 ${LOCALBASE}/lib/libquicktime/lqt_lame.so:${PORTSDIR}/multimedia/libquicktime-lame RUN_DEPENDS= ${LOCALBASE}/lib/libquicktime/lqt_lame.so:${PORTSDIR}/multimedia/libquicktime-lame +BROKEN= segfaults, upstread development ceased +DEPRECATED= segfaults, upstread development ceased +EXPIRATION_DATE=2014-02-03 + USES= gmake pkgconfig GNU_CONFIGURE= yes USE_GL= yes From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 02:15:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44F4872C; Mon, 20 Jan 2014 02:15:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 30D5911F5; Mon, 20 Jan 2014 02:15:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K2Fe59020031; Mon, 20 Jan 2014 02:15:40 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K2Fd6V020029; Mon, 20 Jan 2014 02:15:39 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201401200215.s0K2Fd6V020029@svn.freebsd.org> From: Gerald Pfeifer Date: Mon, 20 Jan 2014 02:15:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340365 - head/lang/gcc49 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 02:15:40 -0000 Author: gerald Date: Mon Jan 20 02:15:39 2014 New Revision: 340365 URL: http://svnweb.freebsd.org/changeset/ports/340365 QAT: https://qat.redports.org/buildarchive/r340365/ Log: Update to the 20140119 snapshot of GCC 4.9.0. Modified: head/lang/gcc49/Makefile head/lang/gcc49/distinfo Modified: head/lang/gcc49/Makefile ============================================================================== --- head/lang/gcc49/Makefile Mon Jan 20 01:40:41 2014 (r340364) +++ head/lang/gcc49/Makefile Mon Jan 20 02:15:39 2014 (r340365) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc49 -PORTVERSION= 4.9.0.20131215 +PORTVERSION= 4.9.0.20140119 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc49/distinfo ============================================================================== --- head/lang/gcc49/distinfo Mon Jan 20 01:40:41 2014 (r340364) +++ head/lang/gcc49/distinfo Mon Jan 20 02:15:39 2014 (r340365) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.9-20131215.tar.bz2) = 23cbfc976cb4b89800c1fe41f7ebd9f141e8baf7502bb00d0d012c7fd6c15cb3 -SIZE (gcc-4.9-20131215.tar.bz2) = 84507310 +SHA256 (gcc-4.9-20140119.tar.bz2) = 084777a14afa345c5b42478cbd7d0497cdee8550d390fed9eb301789e6037045 +SIZE (gcc-4.9-20140119.tar.bz2) = 84867798 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 04:23:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E43B9FCB; Mon, 20 Jan 2014 04:23:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CFBA11E45; Mon, 20 Jan 2014 04:23:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K4NiU3070154; Mon, 20 Jan 2014 04:23:44 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K4NinA070153; Mon, 20 Jan 2014 04:23:44 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401200423.s0K4NinA070153@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Mon, 20 Jan 2014 04:23:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340366 - head/dns/ddclient X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 04:23:45 -0000 Author: danilo Date: Mon Jan 20 04:23:44 2014 New Revision: 340366 URL: http://svnweb.freebsd.org/changeset/ports/340366 QAT: https://qat.redports.org/buildarchive/r340366/ Log: - Pass maintainership to submitter. I forgot it on the last commit. PR: ports/185881 Submitted by: Matthew Luckie Reported by: miwi Modified: head/dns/ddclient/Makefile Modified: head/dns/ddclient/Makefile ============================================================================== --- head/dns/ddclient/Makefile Mon Jan 20 02:15:39 2014 (r340365) +++ head/dns/ddclient/Makefile Mon Jan 20 04:23:44 2014 (r340366) @@ -7,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= mjl@luckie.org.nz COMMENT= Update dynamic DNS entries LICENSE= GPLv2 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 04:45:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81B8E207; Mon, 20 Jan 2014 04:45:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D7491F59; Mon, 20 Jan 2014 04:45:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K4jodL077807; Mon, 20 Jan 2014 04:45:50 GMT (envelope-from fluffy@svn.freebsd.org) Received: (from fluffy@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K4jonN077805; Mon, 20 Jan 2014 04:45:50 GMT (envelope-from fluffy@svn.freebsd.org) Message-Id: <201401200445.s0K4jonN077805@svn.freebsd.org> From: Dima Panov Date: Mon, 20 Jan 2014 04:45:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340367 - in head/net: remmina-plugin-nx remmina-plugins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 04:45:50 -0000 Author: fluffy Date: Mon Jan 20 04:45:49 2014 New Revision: 340367 URL: http://svnweb.freebsd.org/changeset/ports/340367 QAT: https://qat.redports.org/buildarchive/r340367/ Log: - Unbroke remmina-plugin-nx build by define dependency on libssh directly - Remove libssh block from common plugins block, it used only for -nx Modified: head/net/remmina-plugin-nx/Makefile head/net/remmina-plugins/bsd.plugin.mk Modified: head/net/remmina-plugin-nx/Makefile ============================================================================== --- head/net/remmina-plugin-nx/Makefile Mon Jan 20 04:23:44 2014 (r340366) +++ head/net/remmina-plugin-nx/Makefile Mon Jan 20 04:45:49 2014 (r340367) @@ -9,6 +9,8 @@ USE_XORG+= xkbfile MASTERDIR= ${.CURDIR}/../remmina-plugins +LIB_DEPENDS+= libssh.so:${PORTSDIR}/security/libssh + PLIST_SUB+= ICONS="" SSH="@comment " .include "${MASTERDIR}/Makefile" Modified: head/net/remmina-plugins/bsd.plugin.mk ============================================================================== --- head/net/remmina-plugins/bsd.plugin.mk Mon Jan 20 04:23:44 2014 (r340366) +++ head/net/remmina-plugins/bsd.plugin.mk Mon Jan 20 04:45:49 2014 (r340367) @@ -27,17 +27,6 @@ SSH_DESC= Build with SSH tunneling suppo .include -.if ${PORT_OPTIONS:MSSH} -LIB_DEPENDS+= libssh.so:${PORTSDIR}/security/libssh -PLIST_SUB+= SSH="" -.if ${OSVERSION} >= 800040 -LDFLAGS+= -fstack-protector -.endif -.else -CMAKE_ARGS+= -DWITH_LIBSSH=OFF -PLIST_SUB+= SSH="@comment " -.endif - .include .if ${PKGNAMESUFFIX} == "-i18n" || ${PKGNAMESUFFIX} == "-gnome" From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 07:32:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB2FB4E1; Mon, 20 Jan 2014 07:32:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B4DDC19F5; Mon, 20 Jan 2014 07:32:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K7W6HW041691; Mon, 20 Jan 2014 07:32:06 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K7W6OA041690; Mon, 20 Jan 2014 07:32:06 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401200732.s0K7W6OA041690@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 07:32:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340368 - head/sysutils/tw_cli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 07:32:06 -0000 Author: bapt Date: Mon Jan 20 07:32:06 2014 New Revision: 340368 URL: http://svnweb.freebsd.org/changeset/ports/340368 QAT: https://qat.redports.org/buildarchive/r340368/ Log: Cosmetic changes: - .pre.mk should not been used without a .post.mk, in this case it worked by changes, it is better not to promote this usage - Always install DOCS and let stage decide what should be packed, this allows us not to include bsd.port.options.mk while DOCS is still respected. Modified: head/sysutils/tw_cli/Makefile Modified: head/sysutils/tw_cli/Makefile ============================================================================== --- head/sysutils/tw_cli/Makefile Mon Jan 20 04:45:49 2014 (r340367) +++ head/sysutils/tw_cli/Makefile Mon Jan 20 07:32:06 2014 (r340368) @@ -10,7 +10,7 @@ DISTNAME= cli_freebsd_10.2.1_9.5.4 MAINTAINER= jpaetzel@FreeBSD.org COMMENT= 3ware storage controllers management CLI -EXTRACT_SUFX:= .zip +EXTRACT_SUFX= .zip RESTRICTED= Redistribution is not allowed # i386 binary should work on ia64, but not tested @@ -22,8 +22,6 @@ BINSUFFIX= ${ARCH:S,i386,x86,:S,amd64,x8 SUB_FILES= 407.status-3ware-raid PORTDOCS= tw_cli.8.html -.include - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${BINSUFFIX}/tw_cli\ ${STAGEDIR}/${PREFIX}/sbin/ @@ -32,11 +30,7 @@ do-install: @${MKDIR} ${STAGEDIR}/${PREFIX}/etc/periodic/daily ${INSTALL_SCRIPT} ${WRKDIR}/407.status-3ware-raid \ ${STAGEDIR}/${PREFIX}/etc/periodic/daily/ - -post-install: -.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}/${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/tw_cli.8.html ${STAGEDIR}/${DOCSDIR}/ -.endif .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 07:42:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B233774E; Mon, 20 Jan 2014 07:42:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E1E01AF0; Mon, 20 Jan 2014 07:42:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K7g0Qs045374; Mon, 20 Jan 2014 07:42:00 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K7g0kF045373; Mon, 20 Jan 2014 07:42:00 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401200742.s0K7g0kF045373@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 07:42:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340369 - 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.17 Precedence: list List-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, 20 Jan 2014 07:42:00 -0000 Author: bapt Date: Mon Jan 20 07:42:00 2014 New Revision: 340369 URL: http://svnweb.freebsd.org/changeset/ports/340369 QAT: https://qat.redports.org/buildarchive/r340369/ Log: NO_STAGEd ports will fail if STAGEDIR is defined. Undefined STAGEDIR if already set from make.conf Raise an error if set from command line (which cannot be undefined) PR: ports/182972 Submitted by: "Scot W. Hetzel" Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Mon Jan 20 07:32:06 2014 (r340368) +++ head/Mk/bsd.port.mk Mon Jan 20 07:42:00 2014 (r340369) @@ -1821,6 +1821,11 @@ RUN_DEPENDS+= ${_GL_${_component}_RUN_DE .if !defined(NO_STAGE) .include "${PORTSDIR}/Mk/bsd.stage.mk" +.else +# Ignore STAGEDIR if set from make.conf +.undef STAGEDIR +# From command line it is impossible to undefined so we must raise an error +IGNORE= Do not define STAGEDIR in command line .endif .if defined(WITH_PKGNG) From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 07:51:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 443588AB; Mon, 20 Jan 2014 07:51:34 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B9A791C94; Mon, 20 Jan 2014 07:51:33 +0000 (UTC) Received: from lqc.issp.ac.ru [77.236.34.156:37091] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id s0K7pN8w037101 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Mon, 20 Jan 2014 11:51:24 +0400 (MSK) From: Max Brazhnikov To: Raphael Kubo da Costa Subject: Re: svn commit: r340208 - head/games/doomsday Date: Mon, 20 Jan 2014 07:51:23 +0000 Message-ID: <14044511.JMJakl4Bch@mercury.ph.man.ac.uk> User-Agent: KMail/4.10.5 (FreeBSD/9.2-STABLE; KDE/4.10.5; amd64; ; ) In-Reply-To: <201401181944.s0IJimHO009575@svn.freebsd.org> References: <201401181944.s0IJimHO009575@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" 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.17 Precedence: list List-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, 20 Jan 2014 07:51:34 -0000 On Sat, 18 Jan 2014 19:44:48 +0000Sat Jan 18 19:44:47 2014 Raphael Kubo da Costa wrote: > Author: rakuco > Date: Sat Jan 18 19:44:47 2014 > New Revision: 340208 > URL: http://svnweb.freebsd.org/changeset/ports/340208 > QAT: https://qat.redports.org/buildarchive/r340208/ > > Log: > Fix `make fetch' after r339985. > > We cannot use ${PORTNAME} in MASTER_SITE now that the port was renamed. > > PR: ports/185830 > Submitted by: Max Sterling Pointyhat to me. I renamed the port after downloading distfiles and missed this problem. Max > Modified: > head/games/doomsday/Makefile > > Modified: head/games/doomsday/Makefile > ============================================================================== > --- head/games/doomsday/Makefile Sat Jan 18 19:29:53 2014 (r340207) > +++ head/games/doomsday/Makefile Sat Jan 18 19:44:47 2014 (r340208) > @@ -4,7 +4,7 @@ > PORTNAME= doomsday > PORTVERSION= 1.12.2 > CATEGORIES= games > -MASTER_SITES= SF/${PORTNAME}/Doomsday%20Engine/${PORTVERSION} > +MASTER_SITES= SF/deng/Doomsday%20Engine/${PORTVERSION} > > MAINTAINER= ports@FreeBSD.org > COMMENT= Enhanced Doom, Heretic, and Hexen source port From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 07:52:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED9F9987; Mon, 20 Jan 2014 07:52:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D92AB1C9A; Mon, 20 Jan 2014 07:52:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K7q1vX049143; Mon, 20 Jan 2014 07:52:01 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K7q1bb049139; Mon, 20 Jan 2014 07:52:01 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401200752.s0K7q1bb049139@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 07:52:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340370 - head/sysutils/megarc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 07:52:02 -0000 Author: bapt Date: Mon Jan 20 07:52:01 2014 New Revision: 340370 URL: http://svnweb.freebsd.org/changeset/ports/340370 QAT: https://qat.redports.org/buildarchive/r340370/ Log: Use bsdtar to extract .zip files Update WWW PR: ports/184364 Submitted by: Takefu Modified: head/sysutils/megarc/Makefile head/sysutils/megarc/pkg-descr Modified: head/sysutils/megarc/Makefile ============================================================================== --- head/sysutils/megarc/Makefile Mon Jan 20 07:42:00 2014 (r340369) +++ head/sysutils/megarc/Makefile Mon Jan 20 07:52:01 2014 (r340370) @@ -6,6 +6,7 @@ PORTVERSION= 1.51 CATEGORIES= sysutils MASTER_SITES= # not available DISTNAME= dr_freebsd_${PORTVERSION} +EXTRACT_SUFX= .zip MAINTAINER= ports@FreeBSD.org COMMENT= LSI Logic's MegaRAID controlling software @@ -13,7 +14,6 @@ COMMENT= LSI Logic's MegaRAID controllin OPTIONS_DEFINE= DOCS USES= dos2unix -USE_ZIP= yes DOS2UNIX_GLOB= *.txt NO_BUILD= yes NO_WRKSUBDIR= yes @@ -26,7 +26,8 @@ PLIST_FILES= sbin/megarc PORTDOCS= * post-extract: - @cd ${WRKSRC} && ${UNZIP_CMD} ${EXTRACT_BEFORE_ARGS} 'MegaRC 1.04.zip' + @cd ${WRKSRC} && \ + ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} 'MegaRC 1.04.zip' -C ${WRKSRC} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/megarc ${STAGEDIR}${PREFIX}/sbin Modified: head/sysutils/megarc/pkg-descr ============================================================================== --- head/sysutils/megarc/pkg-descr Mon Jan 20 07:42:00 2014 (r340369) +++ head/sysutils/megarc/pkg-descr Mon Jan 20 07:52:01 2014 (r340370) @@ -1,4 +1,4 @@ This port provides an utility for controlling most of the LSI Logic's MegaRAID BIOS functions. -WWW: http://www.lsilogic.com/products/megaraid/ +WWW: http://www.lsi.com/products/raid-controllers/pages/default.aspx From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 07:53:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20C83A9B; Mon, 20 Jan 2014 07:53:23 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7A24B1CA7; Mon, 20 Jan 2014 07:53:21 +0000 (UTC) Received: from lqc.issp.ac.ru [77.236.34.156:33225] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id s0K7rJeb037218 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Mon, 20 Jan 2014 11:53:19 +0400 (MSK) From: Max Brazhnikov To: Raphael Kubo da Costa Subject: Re: svn commit: r340198 - in head/textproc/sigil: . files Date: Mon, 20 Jan 2014 07:53:19 +0000 Message-ID: <4078889.Pc4XLY34Bx@mercury.ph.man.ac.uk> User-Agent: KMail/4.10.5 (FreeBSD/9.2-STABLE; KDE/4.10.5; amd64; ; ) In-Reply-To: <201401181756.s0IHulHB067303@svn.freebsd.org> References: <201401181756.s0IHulHB067303@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" 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.17 Precedence: list List-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, 20 Jan 2014 07:53:23 -0000 On Sat, 18 Jan 2014 17:56:47 +0000Sat Jan 18 17:56:47 2014 Raphael Kubo da Costa wrote: > Author: rakuco > Date: Sat Jan 18 17:56:47 2014 > New Revision: 340198 > URL: http://svnweb.freebsd.org/changeset/ports/340198 > QAT: https://qat.redports.org/buildarchive/r340198/ > > Log: > - Allow the port to build with archivers/libzip installed. > libzip installs /usr/local/include/zip.h, and -I/usr/local/include ended > up being passed to the compiler before -I, > which caused problems. [1] > > While here, modernize the Makefile: > - Move LICENSE to the appropriate place. > - Remove USE_DOS2UNIX: the files it was supposed to fix are not DOS-encoded > anymore. > - Support staging. > - Convert from manually calling update-desktop-database and > USE_GNOME=desktopfileutils to USES=desktop-file-utils. > > PR: ports/180350 [1] > Approved by: maintainer timeout (no activity since the original report 7 months ago) > MFH: 2014Q1 > > Added: > head/textproc/sigil/files/patch-src_Sigil_CMakeLists.txt (contents, props changed) > Modified: > head/textproc/sigil/Makefile > > Modified: head/textproc/sigil/Makefile > ============================================================================== > --- head/textproc/sigil/Makefile Sat Jan 18 16:47:31 2014 (r340197) > +++ head/textproc/sigil/Makefile Sat Jan 18 17:56:47 2014 (r340198) > @@ -11,25 +11,19 @@ DISTNAME= Sigil-${PORTVERSION}-Code > MAINTAINER= jonc@chen.org.nz > COMMENT= WYSIWYG ePub editor > > +LICENSE= GPLv3 > + > LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ > libxerces-c.so:${PORTSDIR}/textproc/xerces-c3 \ > libhunspell-1.3.so:${PORTSDIR}/textproc/hunspell \ > libpcre.so:${PORTSDIR}/devel/pcre > > -LICENSE= GPLv3 > - > USE_ZIP= yes > -USES= cmake pkgconfig > -USE_DOS2UNIX= CMakeLists.txt DirEnumerator.cpp ZipFile_stl.cpp ZipPlatform_lnx.cpp > +USES= cmake desktop-file-utils pkgconfig > NO_WRKSUBDIR= yes > USE_QT4= qmake gui svg webkit xml moc uic rcc imageformats linguist Raphael, You have missed the opportunity to add _build suffix to some Qt4 dependencies :) Cheers, Max From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 07:54:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DD58FB86; Mon, 20 Jan 2014 07:54:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF0F21CB2; Mon, 20 Jan 2014 07:54:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K7st8K049495; Mon, 20 Jan 2014 07:54:55 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K7stUi049492; Mon, 20 Jan 2014 07:54:55 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401200754.s0K7stUi049492@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 07:54:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340371 - head/vietnamese/vnroff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 07:54:55 -0000 Author: bapt Date: Mon Jan 20 07:54:54 2014 New Revision: 340371 URL: http://svnweb.freebsd.org/changeset/ports/340371 QAT: https://qat.redports.org/buildarchive/r340371/ Log: Support stage Fix WWW PR: ports/184278 Submitted by: Takefu Approved by: maintainer timeout Modified: head/vietnamese/vnroff/Makefile head/vietnamese/vnroff/pkg-descr head/vietnamese/vnroff/pkg-plist (contents, props changed) Modified: head/vietnamese/vnroff/Makefile ============================================================================== --- head/vietnamese/vnroff/Makefile Mon Jan 20 07:52:01 2014 (r340370) +++ head/vietnamese/vnroff/Makefile Mon Jan 20 07:54:54 2014 (r340371) @@ -6,16 +6,14 @@ PORTVERSION= 2.1 CATEGORIES= vietnamese print MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= obrien -DISTFILES= vnroff.c.Z vnroff.1.Z DISTNAME= ${PORTNAME}-2.0 +DISTFILES= vnroff.c.Z vnroff.1.Z MAINTAINER= obrien@FreeBSD.org COMMENT= Converts Vietnamese VIQR text into troff format NO_WRKSUBDIR= yes -MAN1= vnroff.1 -NO_STAGE= yes do-extract: @${RM} -rf ${WRKDIR} @${MKDIR} ${WRKDIR} @@ -31,7 +29,7 @@ do-build: (cd ${WRKSRC} && ${CC} ${CFLAGS} -o vnroff vnroff.c) do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/vnroff ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/vnroff.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/vnroff ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/vnroff.1 ${STAGEDIR}${PREFIX}/man/man1 .include Modified: head/vietnamese/vnroff/pkg-descr ============================================================================== --- head/vietnamese/vnroff/pkg-descr Mon Jan 20 07:52:01 2014 (r340370) +++ head/vietnamese/vnroff/pkg-descr Mon Jan 20 07:54:54 2014 (r340371) @@ -7,4 +7,4 @@ format so groff/troff can print it out. vnroff file | whater_program_that_print_out_a_troff_file -WWW: http://www.trichlor.org/ +WWW: http://www.trichlor.org/ Modified: head/vietnamese/vnroff/pkg-plist ============================================================================== --- head/vietnamese/vnroff/pkg-plist Mon Jan 20 07:52:01 2014 (r340370) +++ head/vietnamese/vnroff/pkg-plist Mon Jan 20 07:54:54 2014 (r340371) @@ -1,2 +1,2 @@ -@comment $FreeBSD$ bin/vnroff +man/man1/vnroff.1.gz From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 07:58:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16999C7B; Mon, 20 Jan 2014 07:58:00 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81A9B1CC5; Mon, 20 Jan 2014 07:57:59 +0000 (UTC) Received: from lqc.issp.ac.ru [77.236.34.156:709] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id s0K7vueU037496 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Mon, 20 Jan 2014 11:57:57 +0400 (MSK) From: Max Brazhnikov To: Steve Wills Subject: Re: svn commit: r340216 - in head/net-p2p: . digitalcoin digitalcoin/files Date: Mon, 20 Jan 2014 07:57:56 +0000 Message-ID: <1545001.XUbRJ8FktG@mercury.ph.man.ac.uk> User-Agent: KMail/4.10.5 (FreeBSD/9.2-STABLE; KDE/4.10.5; amd64; ; ) In-Reply-To: <201401182102.s0IL2af9040488@svn.freebsd.org> References: <201401182102.s0IL2af9040488@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Cc: svn-ports-head@freebsd.org, myst3r10n@rocketmail.com, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 07:58:00 -0000 On Sat, 18 Jan 2014 21:02:36 +0000Sat Jan 18 21:02:36 2014 Steve Wills wrote: > Author: swills > Date: Sat Jan 18 21:02:36 2014 > New Revision: 340216 > URL: http://svnweb.freebsd.org/changeset/ports/340216 > QAT: https://qat.redports.org/buildarchive/r340216/ > > Log: > Digitalcoin is an open source digital currency, originally based on Bitcoin, > but now heavily modified and improved. Digitalcoin works over a distributed > peer-to-peer network to offer irreversible, low-cost, anonymous and > decentralized monetary transactions. > > WWW: http://digitalcoin.co/ > > PR: ports/184369 > Submitted by: myst3r10n > > Added: > head/net-p2p/digitalcoin/ > head/net-p2p/digitalcoin/Makefile (contents, props changed) > head/net-p2p/digitalcoin/distinfo (contents, props changed) > head/net-p2p/digitalcoin/files/ > head/net-p2p/digitalcoin/files/patch-src__net.cpp (contents, props changed) > head/net-p2p/digitalcoin/files/patch-src__qt__qtipcserver.cpp (contents, props changed) > head/net-p2p/digitalcoin/files/patch-src__serialize.h (contents, props changed) > head/net-p2p/digitalcoin/pkg-descr (contents, props changed) > Modified: > head/net-p2p/Makefile > > Modified: head/net-p2p/Makefile > ============================================================================== > --- head/net-p2p/Makefile Sat Jan 18 21:02:02 2014 (r340215) > +++ head/net-p2p/Makefile Sat Jan 18 21:02:36 2014 (r340216) > @@ -21,6 +21,7 @@ > SUBDIR += ctorrent > SUBDIR += dclib > SUBDIR += deluge > + SUBDIR += digitalcoin > SUBDIR += dogecoin > SUBDIR += ed2k > SUBDIR += edonkey-tool-hash > > Added: head/net-p2p/digitalcoin/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/net-p2p/digitalcoin/Makefile Sat Jan 18 21:02:36 2014 (r340216) > @@ -0,0 +1,51 @@ > +# Created by: myst3r10n > +# $FreeBSD$ > + > +PORTNAME= digitalcoin > +PORTVERSION= 1.0.0.0b > +CATEGORIES= net-p2p > + > +MAINTAINER= myst3r10n@rocketmail.com > +COMMENT= Alternative Bitcoin peer-to-peer currency client > + > +LIB_DEPENDS= libboost_date_time.so:${PORTSDIR}/devel/boost-libs \ > + libminiupnpc.so:${PORTSDIR}/net/miniupnpc > + > +WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${PORTNAME}-${GH_COMMIT} > + > +USE_GITHUB= yes > +GH_ACCOUNT= baritus > +GH_PROJECT= ${PORTNAME} > +GH_COMMIT= 96b098a > +GH_TAGNAME= ${GH_COMMIT} > + > +USES= gmake > +USE_OPENSSL= yes > +USE_BDB= yes > +WANT_BDB_VER= 48 > +USE_QT4= corelib gui qmake_build linguist uic moc rcc You can safely add _build suffix to 'uic', 'moc', rcc', and probably to linguist. > + > +PLIST_FILES= bin/${BINARY} share/applications/digitalcoin-qt.desktop share/pixmaps/digitalcoin.png > + > +BINARY= digitalcoin-qt > + > +.include > + > +do-configure: > + cd ${WRKSRC} && ${SETENV} ${QMAKE_ENV} \ > + ${QMAKE} ${QMAKE_ARGS} USE_UPNP=${QMAKE_USE_UPNP} USE_QRCODE=${QMAKE_USE_QRCODE} \ > + QMAKE_LRELEASE=lrelease-qt4 PREFIX=${PREFIX} INCLUDEPATH=${BDB_INCLUDE_DIR} \ > + QMAKE_LIBDIR+=${BDB_LIB_DIR} ${PORTNAME}-qt.pro USES=qmake could help here. Max From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 08:01:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9DF06EA7; Mon, 20 Jan 2014 08:01:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6FB3E1CF9; Mon, 20 Jan 2014 08:01:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K816iO051168; Mon, 20 Jan 2014 08:01:06 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K8151s051165; Mon, 20 Jan 2014 08:01:05 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401200801.s0K8151s051165@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 08:01:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340372 - in head/x11-wm/ctwm: . 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.17 Precedence: list List-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, 20 Jan 2014 08:01:06 -0000 Author: bapt Date: Mon Jan 20 08:01:05 2014 New Revision: 340372 URL: http://svnweb.freebsd.org/changeset/ports/340372 QAT: https://qat.redports.org/buildarchive/r340372/ Log: Support stage PR: ports/185730 Submitted by: Matthew D.Fuller (maintainer) Added: head/x11-wm/ctwm/files/patch-Imakefile (contents, props changed) Modified: head/x11-wm/ctwm/Makefile head/x11-wm/ctwm/pkg-plist Modified: head/x11-wm/ctwm/Makefile ============================================================================== --- head/x11-wm/ctwm/Makefile Mon Jan 20 07:54:54 2014 (r340371) +++ head/x11-wm/ctwm/Makefile Mon Jan 20 08:01:05 2014 (r340372) @@ -12,13 +12,11 @@ MASTER_SITES= http://ctwm.free.lp.se/dis MAINTAINER= fullermd@over-yonder.net COMMENT= Extension to twm, with support for multiple virtual screens, etc -LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg USES= imake USE_XORG= xpm xmu -MAN1= ctwm.1 -NO_STAGE= yes pre-configure: ${CP} ${WRKSRC}/Imakefile.local-template ${WRKSRC}/Imakefile.local ${CAT} ${FILESDIR}/Imakefile.local-additional >> ${WRKSRC}/Imakefile.local Added: head/x11-wm/ctwm/files/patch-Imakefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/ctwm/files/patch-Imakefile Mon Jan 20 08:01:05 2014 (r340372) @@ -0,0 +1,13 @@ +--- ./Imakefile.orig 2014-01-20 08:59:13.000000000 +0100 ++++ ./Imakefile 2014-01-20 08:59:40.000000000 +0100 +@@ -167,8 +167,8 @@ + 3dcircle.xpm 3ddimple.xpm 3ddot.xpm 3dfeet.xpm 3dleopard.xpm \ + 3dpie.xpm 3dpyramid.xpm 3dslant.xpm + +-SpecialObjectRule(parse.o,parse.c,'-DSYSTEM_INIT_FILE="$(DESTDIR)$(CONFDIR)/system.ctwmrc"' '-DPIXMAP_DIRECTORY="$(DESTDIR)$(PIXMAPDIR)"') +-SpecialObjectRule(ctwm.o,ctwm.c,'-DPIXMAP_DIRECTORY="$(DESTDIR)$(PIXMAPDIR)"') ++SpecialObjectRule(parse.o,parse.c,'-DSYSTEM_INIT_FILE="$(CONFDIR)/system.ctwmrc"' '-DPIXMAP_DIRECTORY="$(PIXMAPDIR)"') ++SpecialObjectRule(ctwm.o,ctwm.c,'-DPIXMAP_DIRECTORY="$(PIXMAPDIR)"') + #if !HasPutenv + SpecialObjectRule(util.o,util.c,-DNOPUTENV) + #endif Modified: head/x11-wm/ctwm/pkg-plist ============================================================================== --- head/x11-wm/ctwm/pkg-plist Mon Jan 20 07:54:54 2014 (r340371) +++ head/x11-wm/ctwm/pkg-plist Mon Jan 20 08:01:05 2014 (r340372) @@ -90,5 +90,6 @@ lib/X11/twm/images/xrn.nonews.xpm lib/X11/twm/images/xrn.xpm lib/X11/twm/images/xterm.xpm lib/X11/twm/system.ctwmrc +man/man1/ctwm.1.gz @dirrm lib/X11/twm/images @dirrmtry lib/X11/twm From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 08:11:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52299149; Mon, 20 Jan 2014 08:11:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3CA551E08; Mon, 20 Jan 2014 08:11:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K8BSXD057243; Mon, 20 Jan 2014 08:11:28 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K8BRtP057236; Mon, 20 Jan 2014 08:11:27 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401200811.s0K8BRtP057236@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 20 Jan 2014 08:11:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340373 - in head/net/ns: . 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.17 Precedence: list List-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, 20 Jan 2014 08:11:28 -0000 Author: gahr Date: Mon Jan 20 08:11:26 2014 New Revision: 340373 URL: http://svnweb.freebsd.org/changeset/ports/340373 QAT: https://qat.redports.org/buildarchive/r340373/ Log: - Fix build with modern compilers [MFH] - Convert to USES=tk - STAGE-clean MFH: 2014Q1 PR: 185840 Approved by: maintainer Added: head/net/ns/files/patch-common_tclAppInit.cc (contents, props changed) head/net/ns/files/patch-common_tkAppInit.c (contents, props changed) head/net/ns/files/patch-mdart_mdart_adp.cc (contents, props changed) head/net/ns/files/patch-nix_nixnode.cc (contents, props changed) Modified: head/net/ns/Makefile (contents, props changed) head/net/ns/pkg-plist (contents, props changed) Modified: head/net/ns/Makefile ============================================================================== --- head/net/ns/Makefile Mon Jan 20 08:01:05 2014 (r340372) +++ head/net/ns/Makefile Mon Jan 20 08:11:26 2014 (r340373) @@ -12,8 +12,7 @@ COMMENT= Discrete event simulator for ne BUILD_DEPENDS= ${LOCALBASE}/lib/libtclcl.a:${PORTSDIR}/devel/tclcl -USES= gmake -USE_TK= 85+ +USES= gmake tk:85+ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-tcl-ver=${TCL_VER} \ --with-tk-ver=${TK_VER} \ @@ -22,11 +21,8 @@ CONFIGURE_ARGS= --with-tcl-ver=${TCL_VER WRKSRC= ${WRKDIR}/ns-${PORTVERSION} -MAN1= ns.1 - OPTIONS_DEFINE= EXAMPLES -NO_STAGE= yes .include post-patch: @@ -42,11 +38,11 @@ post-patch: ${WRKSRC}/indep-utils/webtrace-conv/ucb/Makefile.in do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/ns ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/ns.1 ${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/ns ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/ns.1 ${STAGEDIR}${PREFIX}/man/man1 .if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/tcl/ex/*.tcl ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/tcl/ex/*.tcl ${STAGEDIR}${EXAMPLESDIR} .endif .include Added: head/net/ns/files/patch-common_tclAppInit.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ns/files/patch-common_tclAppInit.cc Mon Jan 20 08:11:26 2014 (r340373) @@ -0,0 +1,10 @@ +--- common/tclAppInit.cc.orig 2014-01-17 10:38:38.000000000 +0100 ++++ common/tclAppInit.cc 2014-01-17 10:38:45.000000000 +0100 +@@ -237,7 +237,6 @@ + Tcl_AppInit(Tcl_Interp *interp) + { + #ifdef MEMDEBUG_SIMULATIONS +- extern MemTrace *globalMemTrace; + globalMemTrace = new MemTrace; + #endif + Added: head/net/ns/files/patch-common_tkAppInit.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ns/files/patch-common_tkAppInit.c Mon Jan 20 08:11:26 2014 (r340373) @@ -0,0 +1,10 @@ +--- common/tkAppInit.cc.orig 2014-01-17 10:37:16.000000000 +0100 ++++ common/tkAppInit.cc 2014-01-17 10:38:11.000000000 +0100 +@@ -293,7 +293,6 @@ + Tcl_AppInit(Tcl_Interp *interp) + { + #ifdef MEMDEBUG_SIMULATIONS +- extern MemTrace *globalMemTrace; + globalMemTrace = new MemTrace; + #endif + Added: head/net/ns/files/patch-mdart_mdart_adp.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ns/files/patch-mdart_mdart_adp.cc Mon Jan 20 08:11:26 2014 (r340373) @@ -0,0 +1,20 @@ +--- mdart/mdart_adp.cc.orig 2014-01-17 10:40:08.000000000 +0100 ++++ mdart/mdart_adp.cc 2014-01-17 10:40:17.000000000 +0100 +@@ -105,7 +105,7 @@ + #ifdef DEBUG_ADP + fprintf(stdout, "%.9f\tADP::sendDarq(%d)\t\t\tin node %d\twith address %s\n", CURRENT_TIME, reqId, mdart_->id_, bitString(mdart_->address_)); + #endif +- nsaddr_t dstAdd_ = hash(reqId); ++ nsaddr_t dstAdd_ = ::hash(reqId); + #ifdef DEBUG_ADP + fprintf(stdout, "\tsending darq for node %s\n", bitString(dstAdd_)); + #endif +@@ -393,7 +393,7 @@ + fprintf(stdout, "%.9f\tMDART::sendDaup()\t\t\t\tin node %d\twith address %s\n", CURRENT_TIME, mdart_->id_, bitString(mdart_->address_)); + // printDHT(); + #endif +- nsaddr_t dstAdd_ = hash(mdart_->id_); ++ nsaddr_t dstAdd_ = ::hash(mdart_->id_); + #ifdef DEBUG_ADP + fprintf(stdout, "\tsending daup for node %s\n", bitString(dstAdd_)); + mdart_->routingTable_->print(); Added: head/net/ns/files/patch-nix_nixnode.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ns/files/patch-nix_nixnode.cc Mon Jan 20 08:11:26 2014 (r340373) @@ -0,0 +1,11 @@ +--- nix/nixnode.cc.orig 2014-01-17 10:33:55.000000000 +0100 ++++ nix/nixnode.cc 2014-01-17 10:35:51.000000000 +0100 +@@ -156,8 +156,6 @@ + if (last.first == NODE_NONE) + { + prev = m_Adj.begin(); +- if (prev == (EdgeVec_it) NULL) // ! How can this happen? +- return(NodeWeight_t(NODE_NONE, 0)); + pE = *prev; + if(0)printf("NextAdj returning first edge %ld\n", + pE->m_n); Modified: head/net/ns/pkg-plist ============================================================================== --- head/net/ns/pkg-plist Mon Jan 20 08:01:05 2014 (r340372) +++ head/net/ns/pkg-plist Mon Jan 20 08:11:26 2014 (r340373) @@ -1,125 +1,126 @@ bin/ns -%%EXAMPLESDIR%%/agent-gen-script.tcl -%%EXAMPLESDIR%%/agent-gen.tcl -%%EXAMPLESDIR%%/aomdv.tcl -%%EXAMPLESDIR%%/callback_demo.tcl -%%EXAMPLESDIR%%/dccp.tcl -%%EXAMPLESDIR%%/diffusion-prob-run.tcl -%%EXAMPLESDIR%%/diffusion-rate-run.tcl -%%EXAMPLESDIR%%/dumbbell.tcl -%%EXAMPLESDIR%%/example.tcl -%%EXAMPLESDIR%%/flooding-run.tcl -%%EXAMPLESDIR%%/flooding.tcl -%%EXAMPLESDIR%%/fq-cbr.tcl -%%EXAMPLESDIR%%/fq.tcl -%%EXAMPLESDIR%%/grid2.tcl -%%EXAMPLESDIR%%/gridkeeper.tcl -%%EXAMPLESDIR%%/hier-rtg-10.tcl -%%EXAMPLESDIR%%/hier-rtg-100.tcl -%%EXAMPLESDIR%%/hts100-0.tcl -%%EXAMPLESDIR%%/lantest.tcl -%%EXAMPLESDIR%%/large-scale-web-traffic-old.tcl -%%EXAMPLESDIR%%/large-scale-web-traffic.tcl -%%EXAMPLESDIR%%/large-sim.tcl -%%EXAMPLESDIR%%/mac-test.tcl -%%EXAMPLESDIR%%/many_tcp.tcl -%%EXAMPLESDIR%%/manytcp_trmodel.tcl -%%EXAMPLESDIR%%/mcast.tcl -%%EXAMPLESDIR%%/miptest.tcl -%%EXAMPLESDIR%%/nam-example-em.tcl -%%EXAMPLESDIR%%/nam-example.tcl -%%EXAMPLESDIR%%/nam-large-flowid.tcl -%%EXAMPLESDIR%%/nam-separate-trace.tcl -%%EXAMPLESDIR%%/nam-simplexlink.tcl -%%EXAMPLESDIR%%/omni-run.tcl -%%EXAMPLESDIR%%/pkts.tcl -%%EXAMPLESDIR%%/puma.tcl -%%EXAMPLESDIR%%/ranvar.tcl -%%EXAMPLESDIR%%/rbp_demo.tcl -%%EXAMPLESDIR%%/rc.tcl -%%EXAMPLESDIR%%/redlight.tcl -%%EXAMPLESDIR%%/rng-test.tcl -%%EXAMPLESDIR%%/rng-test2.tcl -%%EXAMPLESDIR%%/route-gen.tcl -%%EXAMPLESDIR%%/sat-aloha.tcl -%%EXAMPLESDIR%%/sat-iridium-links.tcl -%%EXAMPLESDIR%%/sat-iridium-nodes.tcl -%%EXAMPLESDIR%%/sat-iridium.tcl -%%EXAMPLESDIR%%/sat-mixed.tcl -%%EXAMPLESDIR%%/sat-repeater.tcl -%%EXAMPLESDIR%%/sat-teledesic-links.tcl -%%EXAMPLESDIR%%/sat-teledesic-nodes.tcl -%%EXAMPLESDIR%%/sat-teledesic.tcl -%%EXAMPLESDIR%%/sat-wired.tcl -%%EXAMPLESDIR%%/shuttle-mcast.tcl -%%EXAMPLESDIR%%/shuttle.tcl -%%EXAMPLESDIR%%/simple-dyn.tcl -%%EXAMPLESDIR%%/simple-eqp.tcl -%%EXAMPLESDIR%%/simple-eqp1.tcl -%%EXAMPLESDIR%%/simple-fsm-tcp.tcl -%%EXAMPLESDIR%%/simple-heap.tcl -%%EXAMPLESDIR%%/simple-plm.tcl -%%EXAMPLESDIR%%/simple-rtg.tcl -%%EXAMPLESDIR%%/simple-rtp.tcl -%%EXAMPLESDIR%%/simple-tcp.tcl -%%EXAMPLESDIR%%/simple-webcache-comp.tcl -%%EXAMPLESDIR%%/simple-webcache-trace.tcl -%%EXAMPLESDIR%%/simple-webcache.tcl -%%EXAMPLESDIR%%/simple-wireless.tcl -%%EXAMPLESDIR%%/simple.tcl -%%EXAMPLESDIR%%/src_test.tcl -%%EXAMPLESDIR%%/srm-adapt-rep-session.tcl -%%EXAMPLESDIR%%/srm-adapt-rep.tcl -%%EXAMPLESDIR%%/srm-adapt-req-session.tcl -%%EXAMPLESDIR%%/srm-adapt-req.tcl -%%EXAMPLESDIR%%/srm-chain-session.tcl -%%EXAMPLESDIR%%/srm-chain.tcl -%%EXAMPLESDIR%%/srm-demo.tcl -%%EXAMPLESDIR%%/srm-session.tcl -%%EXAMPLESDIR%%/srm-star-session.tcl -%%EXAMPLESDIR%%/srm-star.tcl -%%EXAMPLESDIR%%/srm.tcl -%%EXAMPLESDIR%%/ss.tcl -%%EXAMPLESDIR%%/swp.tcl -%%EXAMPLESDIR%%/t1000.tcl -%%EXAMPLESDIR%%/tcp-et.tcl -%%EXAMPLESDIR%%/tcp-int.tcl -%%EXAMPLESDIR%%/tcpapp.tcl -%%EXAMPLESDIR%%/tcpecn.tcl -%%EXAMPLESDIR%%/tcpsrm.tcl -%%EXAMPLESDIR%%/test-drr.tcl -%%EXAMPLESDIR%%/test-emulator.tcl -%%EXAMPLESDIR%%/test-rcvr.tcl -%%EXAMPLESDIR%%/test-rlm.tcl -%%EXAMPLESDIR%%/test-suite-intserv.tcl -%%EXAMPLESDIR%%/test-suite.tcl -%%EXAMPLESDIR%%/test-tbf.tcl -%%EXAMPLESDIR%%/tg.tcl -%%EXAMPLESDIR%%/topo-gen-script.tcl -%%EXAMPLESDIR%%/topo-gen.tcl -%%EXAMPLESDIR%%/topo-view.tcl -%%EXAMPLESDIR%%/trace-driven.tcl -%%EXAMPLESDIR%%/udpdata.tcl -%%EXAMPLESDIR%%/varybell.tcl -%%EXAMPLESDIR%%/virtual-classifier.tcl -%%EXAMPLESDIR%%/vlantest-flat.tcl -%%EXAMPLESDIR%%/vlantest-hier.tcl -%%EXAMPLESDIR%%/vlantest-mcst.tcl -%%EXAMPLESDIR%%/web-traffic-embobj.tcl -%%EXAMPLESDIR%%/web-traffic.tcl -%%EXAMPLESDIR%%/wired-cum-wireless-sim.tcl -%%EXAMPLESDIR%%/wireless-demo-csci694.tcl -%%EXAMPLESDIR%%/wireless-dsdv-newnode.tcl -%%EXAMPLESDIR%%/wireless-flooding.tcl -%%EXAMPLESDIR%%/wireless-landmark.tcl -%%EXAMPLESDIR%%/wireless-mip-test.tcl -%%EXAMPLESDIR%%/wireless-mitf.tcl -%%EXAMPLESDIR%%/wireless-newnode-energy.tcl -%%EXAMPLESDIR%%/wireless-pkt-demo.tcl -%%EXAMPLESDIR%%/wireless-shadowing-test.tcl -%%EXAMPLESDIR%%/wireless-shadowing-vis-test.tcl -%%EXAMPLESDIR%%/wireless-simple-mac.tcl -%%EXAMPLESDIR%%/wireless-test.tcl -%%EXAMPLESDIR%%/wireless.tcl -%%EXAMPLESDIR%%/worm.tcl -@dirrm %%EXAMPLESDIR%% +man/man1/ns.1.gz +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/agent-gen-script.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/agent-gen.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/aomdv.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/callback_demo.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dccp.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diffusion-prob-run.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/diffusion-rate-run.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dumbbell.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flooding-run.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flooding.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fq-cbr.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fq.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grid2.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gridkeeper.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hier-rtg-10.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hier-rtg-100.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hts100-0.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lantest.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/large-scale-web-traffic-old.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/large-scale-web-traffic.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/large-sim.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mac-test.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/many_tcp.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/manytcp_trmodel.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mcast.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/miptest.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-example-em.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-example.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-large-flowid.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-separate-trace.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nam-simplexlink.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/omni-run.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pkts.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/puma.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ranvar.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rbp_demo.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rc.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/redlight.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rng-test.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rng-test2.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/route-gen.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-aloha.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-iridium-links.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-iridium-nodes.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-iridium.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-mixed.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-repeater.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-teledesic-links.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-teledesic-nodes.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-teledesic.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sat-wired.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/shuttle-mcast.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/shuttle.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-dyn.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-eqp.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-eqp1.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-fsm-tcp.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-heap.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-plm.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-rtg.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-rtp.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-tcp.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-webcache-comp.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-webcache-trace.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-webcache.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple-wireless.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src_test.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-adapt-rep-session.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-adapt-rep.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-adapt-req-session.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-adapt-req.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-chain-session.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-chain.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-demo.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-session.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-star-session.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm-star.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/srm.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ss.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/swp.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/t1000.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcp-et.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcp-int.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcpapp.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcpecn.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcpsrm.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-drr.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-emulator.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-rcvr.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-rlm.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-suite-intserv.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-suite.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/test-tbf.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tg.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/topo-gen-script.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/topo-gen.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/topo-view.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trace-driven.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/udpdata.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/varybell.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/virtual-classifier.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vlantest-flat.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vlantest-hier.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/vlantest-mcst.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/web-traffic-embobj.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/web-traffic.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wired-cum-wireless-sim.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-demo-csci694.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-dsdv-newnode.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-flooding.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-landmark.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-mip-test.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-mitf.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-newnode-energy.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-pkt-demo.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-shadowing-test.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-shadowing-vis-test.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-simple-mac.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless-test.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wireless.tcl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/worm.tcl +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 08:11:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20ABB261; Mon, 20 Jan 2014 08:11:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0AD721E0F; Mon, 20 Jan 2014 08:11:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K8BqwI057389; Mon, 20 Jan 2014 08:11:52 GMT (envelope-from knu@svn.freebsd.org) Received: (from knu@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K8Bpfa057386; Mon, 20 Jan 2014 08:11:51 GMT (envelope-from knu@svn.freebsd.org) Message-Id: <201401200811.s0K8Bpfa057386@svn.freebsd.org> From: Akinori MUSHA Date: Mon, 20 Jan 2014 08:11:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340374 - head/lang/jruby X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 08:11:52 -0000 Author: knu Date: Mon Jan 20 08:11:51 2014 New Revision: 340374 URL: http://svnweb.freebsd.org/changeset/ports/340374 QAT: https://qat.redports.org/buildarchive/r340374/ Log: Update to 1.7.10. Modified: head/lang/jruby/Makefile head/lang/jruby/distinfo head/lang/jruby/pkg-plist Modified: head/lang/jruby/Makefile ============================================================================== --- head/lang/jruby/Makefile Mon Jan 20 08:11:26 2014 (r340373) +++ head/lang/jruby/Makefile Mon Jan 20 08:11:51 2014 (r340374) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jruby -PORTVERSION= 1.7.8 +PORTVERSION= 1.7.10 CATEGORIES= lang ruby java MASTER_SITES= http://jruby.org.s3.amazonaws.com/downloads/${PORTVERSION}/ DISTNAME= ${PORTNAME}-bin-${PORTVERSION} Modified: head/lang/jruby/distinfo ============================================================================== --- head/lang/jruby/distinfo Mon Jan 20 08:11:26 2014 (r340373) +++ head/lang/jruby/distinfo Mon Jan 20 08:11:51 2014 (r340374) @@ -1,2 +1,2 @@ -SHA256 (jruby-bin-1.7.8.tar.gz) = 034ff3b501605a1d8e740387a5eae193faa96f7d07088b6727d2bcf2892db84a -SIZE (jruby-bin-1.7.8.tar.gz) = 19997652 +SHA256 (jruby-bin-1.7.10.tar.gz) = 223285ee2fca5a4825f017b8a441232ec05d3fba5de213336c7ef6b6a36de651 +SIZE (jruby-bin-1.7.10.tar.gz) = 19800571 Modified: head/lang/jruby/pkg-plist ============================================================================== --- head/lang/jruby/pkg-plist Mon Jan 20 08:11:26 2014 (r340373) +++ head/lang/jruby/pkg-plist Mon Jan 20 08:11:51 2014 (r340374) @@ -10,11 +10,7 @@ bin/jruby %%JRUBY_HOME%%/bin/jruby.bash %%JRUBY_HOME%%/bin/jruby.dll %%JRUBY_HOME%%/bin/jruby.sh -%%JRUBY_HOME%%/bin/jruby_visualizer %%JRUBY_HOME%%/bin/jrubyc -%%JRUBY_HOME%%/bin/jrubyfx-compile -%%JRUBY_HOME%%/bin/jrubyfx-generator -%%JRUBY_HOME%%/bin/jrubyfx-jarify %%JRUBY_HOME%%/bin/rake %%JRUBY_HOME%%/bin/rdoc %%JRUBY_HOME%%/bin/ri @@ -674,29 +670,6 @@ bin/jruby %%JRUBY_HOME%%/lib/ruby/1.9/irb/workspace.rb %%JRUBY_HOME%%/lib/ruby/1.9/irb/ws-for-case-2.rb %%JRUBY_HOME%%/lib/ruby/1.9/irb/xmp.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/bigdecimal.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/complex.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/core.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/date.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/date_time.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/exception.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/ostruct.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/range.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/rational.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/regexp.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/struct.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/symbol.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/add/time.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/common.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/ext.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/ext/generator.jar -%%JRUBY_HOME%%/lib/ruby/1.9/json/ext/parser.jar -%%JRUBY_HOME%%/lib/ruby/1.9/json/generic_object.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/pure.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/pure/generator.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/pure/parser.rb -%%JRUBY_HOME%%/lib/ruby/1.9/json/version.rb %%JRUBY_HOME%%/lib/ruby/1.9/kconv.rb %%JRUBY_HOME%%/lib/ruby/1.9/logger.rb %%JRUBY_HOME%%/lib/ruby/1.9/mathn.rb @@ -1646,163 +1619,17 @@ bin/jruby %%JRUBY_HOME%%/lib/ruby/2.0/yaml.rb %%JRUBY_HOME%%/lib/ruby/2.0/yaml/dbm.rb %%JRUBY_HOME%%/lib/ruby/2.0/yaml/store.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/cache/rake-10.1.0.gem -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/.gemtest -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/CHANGES -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/MIT-LICENSE -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/README.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/Rakefile -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/TODO %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/bin/rake -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/command_line_usage.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/example/Rakefile1 -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/example/Rakefile2 -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/example/a.c -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/example/b.c -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/example/main.c -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/glossary.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/jamis.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/proto_rake.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/rake.1.gz -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/rakefile.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/rational.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.4.14.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.4.15.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.5.0.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.5.3.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.5.4.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.6.0.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.7.0.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.7.1.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.7.2.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.7.3.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.8.0.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.8.2.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.8.3.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.8.4.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.8.5.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.8.6.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.8.7.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.9.0.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.9.1.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.9.2.2.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.9.2.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.9.3.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.9.4.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.9.5.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-0.9.6.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-10.0.0.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-10.0.1.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-10.0.2.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-10.0.3.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes/rake-10.1.0.rdoc -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/install.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/alt_system.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/application.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/backtrace.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/clean.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/cloneable.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/contrib/compositepublisher.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/contrib/ftptools.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/contrib/publisher.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/contrib/rubyforgepublisher.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/contrib/sshpublisher.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/contrib/sys.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/default_loader.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/dsl_definition.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/early_time.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/ext/core.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/ext/module.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/ext/string.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/ext/time.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/file_creation_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/file_list.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/file_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/file_utils.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/file_utils_ext.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/gempackagetask.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/invocation_chain.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/invocation_exception_mixin.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/linked_list.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/loaders/makefile.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/multi_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/name_space.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/packagetask.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/pathmap.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/phony.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/private_reader.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/promise.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/pseudo_status.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/rake_module.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/rake_test_loader.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/rdoctask.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/ruby182_test_unit_fix.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/rule_recursion_overflow_error.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/runtest.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/scope.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/task_argument_error.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/task_arguments.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/task_manager.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/tasklib.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/testtask.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/thread_history_display.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/thread_pool.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/trace_output.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/version.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/win32.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/file_creation.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/helper.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/support/rakefile_definitions.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/support/ruby_runner.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_private_reader.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_application.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_application_options.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_backtrace.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_clean.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_definitions.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_directory_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_dsl.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_early_time.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_extension.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_file_creation_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_file_list.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_file_list_path_map.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_file_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_file_utils.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_ftp_file.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_functional.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_invocation_chain.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_linked_list.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_makefile_loader.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_multi_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_name_space.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_package_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_path_map.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_path_map_explode.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_path_map_partial.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_pseudo_status.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_rake_test_loader.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_reduce_compat.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_require.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_rules.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_scope.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_task_argument_parsing.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_task_arguments.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_task_lib.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_task_manager.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_task_manager_argument_resolution.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_task_with_arguments.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_test_task.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_thread_pool.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_top_level_functions.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_rake_win32.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_thread_history_display.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/test_trace_output.rb -%%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/rake-10.1.0.gemspec +%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rdoc-4.0.1/bin/rdoc +%%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rdoc-4.0.1/bin/ri +%%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/default/bouncy-castle-java-1.5.0147.gemspec +%%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/default/jruby-openssl-0.9.3.gemspec +%%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/default/json-1.8.0-java.gemspec +%%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/default/krypt-0.0.1.gemspec +%%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/default/krypt-core-0.0.1-universal-java.gemspec +%%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/default/krypt-provider-jdk-0.0.1.gemspec +%%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/default/rake-10.1.0.gemspec +%%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/default/rdoc-4.0.1.gemspec %%JRUBY_HOME%%/lib/ruby/shared/Win32API.rb %%JRUBY_HOME%%/lib/ruby/shared/ant.rb %%JRUBY_HOME%%/lib/ruby/shared/ant/ant.rb @@ -2041,6 +1868,29 @@ bin/jruby %%JRUBY_HOME%%/lib/ruby/shared/jruby/thread_dump.rb %%JRUBY_HOME%%/lib/ruby/shared/jruby/vm.rb %%JRUBY_HOME%%/lib/ruby/shared/jruby/win32ole/stub.rb +%%JRUBY_HOME%%/lib/ruby/shared/json.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/bigdecimal.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/complex.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/core.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/date.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/date_time.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/exception.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/ostruct.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/range.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/rational.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/regexp.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/struct.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/symbol.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/add/time.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/common.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/ext.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/ext/generator.jar +%%JRUBY_HOME%%/lib/ruby/shared/json/ext/parser.jar +%%JRUBY_HOME%%/lib/ruby/shared/json/generic_object.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/pure.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/pure/generator.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/pure/parser.rb +%%JRUBY_HOME%%/lib/ruby/shared/json/version.rb %%JRUBY_HOME%%/lib/ruby/shared/krypt-core.rb %%JRUBY_HOME%%/lib/ruby/shared/krypt-provider-jdk.rb %%JRUBY_HOME%%/lib/ruby/shared/krypt.rb @@ -2344,6 +2194,10 @@ bin/jruby @dirrm %%JRUBY_HOME%%/lib/ruby/shared/krypt/codec @dirrm %%JRUBY_HOME%%/lib/ruby/shared/krypt/asn1 @dirrm %%JRUBY_HOME%%/lib/ruby/shared/krypt +@dirrm %%JRUBY_HOME%%/lib/ruby/shared/json/pure +@dirrm %%JRUBY_HOME%%/lib/ruby/shared/json/ext +@dirrm %%JRUBY_HOME%%/lib/ruby/shared/json/add +@dirrm %%JRUBY_HOME%%/lib/ruby/shared/json @dirrm %%JRUBY_HOME%%/lib/ruby/shared/jruby/win32ole @dirrm %%JRUBY_HOME%%/lib/ruby/shared/jruby/profiler @dirrm %%JRUBY_HOME%%/lib/ruby/shared/jruby/core_ext @@ -2388,22 +2242,13 @@ bin/jruby @dirrm %%JRUBY_HOME%%/lib/ruby/shared/ant/tasks @dirrm %%JRUBY_HOME%%/lib/ruby/shared/ant @dirrm %%JRUBY_HOME%%/lib/ruby/shared +@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/specifications/default @dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/specifications -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test/support -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/test -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/loaders -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/ext -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake/contrib -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib/rake -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/lib -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/release_notes -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc/example -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/doc +@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rdoc-4.0.1/bin +@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rdoc-4.0.1 @dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0/bin @dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems/rake-10.1.0 @dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/gems -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/doc -@dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared/cache @dirrm %%JRUBY_HOME%%/lib/ruby/gems/shared @dirrm %%JRUBY_HOME%%/lib/ruby/gems @dirrm %%JRUBY_HOME%%/lib/ruby/2.0/yaml @@ -2512,10 +2357,6 @@ bin/jruby @dirrm %%JRUBY_HOME%%/lib/ruby/1.9/net @dirrm %%JRUBY_HOME%%/lib/ruby/1.9/minitest @dirrm %%JRUBY_HOME%%/lib/ruby/1.9/matrix -@dirrm %%JRUBY_HOME%%/lib/ruby/1.9/json/pure -@dirrm %%JRUBY_HOME%%/lib/ruby/1.9/json/ext -@dirrm %%JRUBY_HOME%%/lib/ruby/1.9/json/add -@dirrm %%JRUBY_HOME%%/lib/ruby/1.9/json @dirrm %%JRUBY_HOME%%/lib/ruby/1.9/irb/lc/ja @dirrm %%JRUBY_HOME%%/lib/ruby/1.9/irb/lc @dirrm %%JRUBY_HOME%%/lib/ruby/1.9/irb/ext @@ -2633,10 +2474,8 @@ bin/jruby %%PORTDOCS%%%%DOCSDIR%%/jvyaml/LICENSE %%PORTDOCS%%%%DOCSDIR%%/jvyaml/README %%PORTDOCS%%%%DOCSDIR%%/man/pom.xml -%%PORTDOCS%%%%DOCSDIR%%/man/pom.xml.versionsBackup %%PORTDOCS%%%%DOCSDIR%%/man/src/docbkx/jruby.xml %%PORTDOCS%%%%DOCSDIR%%/pom.xml -%%PORTDOCS%%%%DOCSDIR%%/pom.xml.versionsBackup %%PORTDOCS%%@dirrm %%DOCSDIR%%/man/src/docbkx %%PORTDOCS%%@dirrm %%DOCSDIR%%/man/src %%PORTDOCS%%@dirrm %%DOCSDIR%%/man From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 08:19:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44C924D9; Mon, 20 Jan 2014 08:19:36 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 618151E70; Mon, 20 Jan 2014 08:19:34 +0000 (UTC) Received: from lqc.issp.ac.ru [77.236.34.156:18910] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id s0K8JWfH038756 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Mon, 20 Jan 2014 12:19:32 +0400 (MSK) From: Max Brazhnikov To: Raphael Kubo da Costa Subject: Re: svn commit: r340207 - in head/devel/kdevplatform: . files Date: Mon, 20 Jan 2014 08:19:32 +0000 Message-ID: <1759573.2KzvWMyLvx@mercury.ph.man.ac.uk> User-Agent: KMail/4.10.5 (FreeBSD/9.2-STABLE; KDE/4.10.5; amd64; ; ) In-Reply-To: <201401181929.s0IJTrAi002777@svn.freebsd.org> References: <201401181929.s0IJTrAi002777@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" 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.17 Precedence: list List-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, 20 Jan 2014 08:19:36 -0000 On Sat, 18 Jan 2014 19:29:53 +0000Sat Jan 18 19:29:53 2014 Raphael Kubo da Costa wrote: > Author: rakuco > Date: Sat Jan 18 19:29:53 2014 > New Revision: 340207 > URL: http://svnweb.freebsd.org/changeset/ports/340207 > QAT: https://qat.redports.org/buildarchive/r340207/ > > Log: > - Fix the build with libc++ by backporting some upstream commits. Thanks! From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 09:08:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5D48BE1; Mon, 20 Jan 2014 09:08:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C02061230; Mon, 20 Jan 2014 09:08:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K98XYf077413; Mon, 20 Jan 2014 09:08:33 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K98XNK077409; Mon, 20 Jan 2014 09:08:33 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401200908.s0K98XNK077409@svn.freebsd.org> From: Rusmir Dusko Date: Mon, 20 Jan 2014 09:08:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340376 - head/textproc/sablotron X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 09:08:33 -0000 Author: nemysis Date: Mon Jan 20 09:08:32 2014 New Revision: 340376 URL: http://svnweb.freebsd.org/changeset/ports/340376 QAT: https://qat.redports.org/buildarchive/r340376/ Log: - Add licenses (GPLv2) - Use the new format for LIB_DEPENDS - Reordering Options - Change DOCS and remove from pkg-plist - Support STAGEDIR - Change pkg-descr and use working WWW Modified: head/textproc/sablotron/Makefile head/textproc/sablotron/pkg-descr (contents, props changed) head/textproc/sablotron/pkg-plist (contents, props changed) Modified: head/textproc/sablotron/Makefile ============================================================================== --- head/textproc/sablotron/Makefile Mon Jan 20 08:31:20 2014 (r340375) +++ head/textproc/sablotron/Makefile Mon Jan 20 09:08:32 2014 (r340376) @@ -9,46 +9,53 @@ MASTER_SITES= SF/sablotron/sablotron-${P MAINTAINER= ports@FreeBSD.org COMMENT= XML toolkit implementing XSLT 1.0, XPath 1.0 and DOM Level2 -LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 +LICENSE= GPLv2 + +LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 + +OPTIONS_DEFINE= CHECK_LEAKS DEBUGGER DISABLE_META DOCS \ + DOCUMENT_ERRORS DOM ICONV_TYPECAST -OPTIONS_DEFINE= DISABLE_META ICONV_TYPECAST DOM DOCUMENT_ERRORS CHECK_LEAKS DEBUGGER DOCS -DISABLE_META_DESC= Do not output the META html tag -ICONV_TYPECAST_DESC= Use iconv typecast -DOM_DESC= Use DOM -DOCUMENT_ERRORS_DESC= Allow document errors CHECK_LEAKS_DESC= Enable memory leaks checking DEBUGGER_DESC= Enable debugger +DISABLE_META_DESC= Do not output the META html tag +DOCUMENT_ERRORS_DESC= Allow document errors +DOM_DESC= Use DOM +ICONV_TYPECAST_DESC= Use iconv typecast + OPTIONS_DEFAULT= DOM DOCUMENT_ERRORS -DISABLE_META_CONFIGURE_ON= --disable-adding-meta -ICONV_TYPECAST_CONFIGURE_ENABLE= iconv-typecast -DOM_CONFIGURE_ENABLE= dom +CHECK_LEAKS_CONFIGURE_ENABLE= check-leaks +DEBUGGER_CONFIGURE_ENABLE= debugger +DISABLE_META_CONFIGURE_ON= --disable-adding-meta +DOCS_BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser +DOCS_CONFIGURE_ON= --with-html-dir=${DOCSDIR} +DOM_CONFIGURE_ENABLE= dom DOCUMENT_ERRORS_CONFIGURE_ENABLE= document-errors -CHECK_LEAKS_CONFIGURE_ENABLE= check-leaks -DEBUGGER_CONFIGURE_ENABLE= debugger -DOCS_BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser -DOCS_CONFIGURE_ON= --with-html-dir=${DOCSDIR} - -USE_LDCONFIG= yes +ICONV_TYPECAST_CONFIGURE_ENABLE= iconv-typecast SHLIB_MAJOR= 70 # API changes counter PLIST_SUB+= SHLIB_MAJOR="${SHLIB_MAJOR}" -CONFIGURE_ENV= LIBTOOL=${LIBTOOL} -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lexpat ${ICONV_LIB} +USES= gmake iconv perl5 +USE_PERL5= build patch USE_AUTOTOOLS= libtool -USE_GMAKE= yes -USES= iconv perl5 GNU_CONFIGURE= yes -USE_PERL5= build patch +CONFIGURE_ENV= LIBTOOL=${LIBTOOL} +USE_LDCONFIG= yes +CPPFLAGS+= -I${LOCALBASE}/include -w +LDFLAGS+= -L${LOCALBASE}/lib -lexpat ${ICONV_LIB} + +PORTDOCS= * -MAN1= sabcmd.1 +DOCSRCDIR1= ${WRKSRC} +DOC_FILES1= README README_JS RELEASE -NO_STAGE= yes -.include +DOCSRCDIR2= ${WRKSRC}/doc/misc +DOCSDIR2= ${DOCSDIR}/doc/misc +DOC_FILES2= DEBUGGER NOTES -DOCSLIST= README README_JS RELEASE doc/misc/DEBUGGER doc/misc/NOTES +.include post-patch: @${PERL} -pi -e \ @@ -60,9 +67,9 @@ post-patch: .endif post-install: -.if ${PORT_OPTIONS:MDOCS} - @${ECHO_MSG} "===> Installing additional documentation for ${PKGNAME}" - @${INSTALL_DATA} ${DOCSLIST:S!^!${WRKSRC}/!} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR2} + ${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2} -.include +.include Modified: head/textproc/sablotron/pkg-descr ============================================================================== --- head/textproc/sablotron/pkg-descr Mon Jan 20 08:31:20 2014 (r340375) +++ head/textproc/sablotron/pkg-descr Mon Jan 20 09:08:32 2014 (r340376) @@ -1,7 +1,7 @@ -Sablotron is an XML processor fully implemented in C++. It uses Expat -by James Clark as an XML parser. Sablotron implements XSLT 1.0, XPath +Sablotron is an XML processor fully implemented in C++. It uses Expat +by James Clark as an XML parser. Sablotron implements XSLT 1.0, XPath 1.0 and DOM Level2. Original creator of Sablotron is Ginger Alliance Ltd; Czech Republic. -WWW: http://www.gingerall.org/sablotron.html +WWW: http://sourceforge.net/projects/sablotron/ Modified: head/textproc/sablotron/pkg-plist ============================================================================== --- head/textproc/sablotron/pkg-plist Mon Jan 20 08:31:20 2014 (r340375) +++ head/textproc/sablotron/pkg-plist Mon Jan 20 09:08:32 2014 (r340376) @@ -10,221 +10,4 @@ lib/libsablot.a lib/libsablot.la lib/libsablot.so lib/libsablot.so.%%SHLIB_MAJOR%% -%%PORTDOCS%%%%DOCSDIR%%/DEBUGGER -%%PORTDOCS%%%%DOCSDIR%%/NOTES -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/README_JS -%%PORTDOCS%%%%DOCSDIR%%/RELEASE -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-content.css -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-toc.css -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-.Conversions.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-.Debugging.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-.Example.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-.Introduction.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-.Objects.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Attr.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Attr.name.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Attr.ownerElement.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Attr.specified.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Attr.value.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-CharacterData.data.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-CharacterData.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-CharacterData.length.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-DOMException.code.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-CharacterData.substringData().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-DOMException.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-DOMImplementation.hasFeature().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-DOMImplementation.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Document.documentElement.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Document.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Document.implementation.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Element.getAttribute().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Element.getAttributeNode().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Element.hasAttribute().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Element.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Element.tagName.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-NamedNodeMap.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-NamedNodeMap.getNamedItem().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-NamedNodeMap.item().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-NamedNodeMap.length.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.attributes.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.childNodes.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.firstChild.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.hasAttributes().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.hasChildNodes().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.isSupported().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.lastChild.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.localName.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.namespaceURI.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.nextSibling.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.nodeName.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.nodeType.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.nodeValue.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.ownerDocument.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.parentNode.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.prefix.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-Node.previousSibling.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-NodeList.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-NodeList.item().html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-NodeList.length.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-XSLTContext.contextNode.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-XSLTContext.contextPosition.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-XSLTContext.contextSize.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-XSLTContext.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-XSLTContext.currentNode.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/api-XSLTContext.ownerDocument.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/complete-toc-abc.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/complete-toc-grp.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/complete-toc.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/complete.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/sparse-toc-abc.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/sparse-toc-grp.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/sparse-toc.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/apidocs/sidebar-toc.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/complete-frameset.html -%%PORTDOCS%%%%DOCSDIR%%/jsdom-ref/sparse-frameset.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/complete-frameset.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/sparse-frameset.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-content.css -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-toc.css -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Debugging XSLT.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Dependencies.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Encodings.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Errors and logs.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Extensions.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Handlers.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Introduction.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Known Issues.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.License.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Named buffers.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Sablotron DOM.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.URIs.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-.Usage.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-DOM functions.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-DOM types.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-EncHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-MessageHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-MiscHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SAXHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SDOM_Document.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotAddArgBuffer.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotAddArgTree.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotAddParam.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotClearError.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotClearSituation.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotCreateDocument.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotCreateProcessor.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotCreateProcessorForSituation.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotCreateSituation.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotDestroyDocument.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotDestroyProcessor.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotDestroySituation.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotFree.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotFreeResultArgs.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotGetInstanceData.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotGetMsgText.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotGetResultArg.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotHandle.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotLockDocument.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotParse.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotParseBuffer.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotProcess.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotParseStylesheet.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotParseStylesheetBuffer.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotProcessFiles.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotProcessStrings.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotProcessStringsWithBase.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotRegHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotRunProcessor.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotRunProcessorExt.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotRunProcessorGen.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotSetBase.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotSetBaseForScheme.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotSetEncoding.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotSetInstanceData.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotSetLog.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotSetOptions.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotSituation.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotUnregHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SchemeHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-sabcmd.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/complete-toc-abc.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/complete-toc-grp.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/complete-toc.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/complete.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/sparse-toc-abc.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/sparse-toc-grp.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/sparse-toc.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/api-SablotGetOptions.html -%%PORTDOCS%%%%DOCSDIR%%/sablot/apidocs/sidebar-toc.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-content.css -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-toc.css -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-.Building.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-.Errors.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-.Introduction.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-.Usage.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-DOMHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-QueryContext.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_Document.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_ExpressionType.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_Node.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_NodeList.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_NodeType.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_addNamespaceDeclaration.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_addVariableBinding.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/complete.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_addVariableBoolean.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_addVariableNumber.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_addVariableString.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_char.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_createQueryContext.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_destroyQueryContext.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_getNodeListItem.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_getNodeListLength.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_getResultBool.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_getResultNodeset.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_getResultNumber.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_getResultString.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_getResultType.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_query.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_registerDOMHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SXP_unregisterDOMHandler.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SablotCreateSituation.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SablotDestroySituation.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-SablotSituation.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-compareNodes.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getAttributeCount.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getAttributeNo.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getChildCount.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getChildNo.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getNamespaceCount.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getNamespaceNo.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getNextAttrNS.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/sparse-toc.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getNextSibling.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getNodeName.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getNodeNameLocal.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getNodeNameURI.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getNodeType.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getNodeValue.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getOwnerDocument.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getParent.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getPreviousAttrNS.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-getPreviousSibling.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/api-retrieveDocument.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/complete-toc-abc.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/complete-toc-grp.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/complete-toc.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/sparse-toc-abc.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/sparse-toc-grp.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/apidocs/sidebar-toc.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/complete-frameset.html -%%PORTDOCS%%%%DOCSDIR%%/sxp/sparse-frameset.html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/jsdom-ref/apidocs -%%PORTDOCS%%@dirrm %%DOCSDIR%%/jsdom-ref -%%PORTDOCS%%@dirrm %%DOCSDIR%%/sablot/apidocs -%%PORTDOCS%%@dirrm %%DOCSDIR%%/sablot -%%PORTDOCS%%@dirrm %%DOCSDIR%%/sxp/apidocs -%%PORTDOCS%%@dirrm %%DOCSDIR%%/sxp -%%PORTDOCS%%@dirrm %%DOCSDIR%% +man/man1/sabcmd.1.gz From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 09:09:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42C69DBB; Mon, 20 Jan 2014 09:09:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2F50D124A; Mon, 20 Jan 2014 09:09:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K995Xo077564; Mon, 20 Jan 2014 09:09:05 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K995jD077563; Mon, 20 Jan 2014 09:09:05 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401200909.s0K995jD077563@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 09:09:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340377 - 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.17 Precedence: list List-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, 20 Jan 2014 09:09:05 -0000 Author: bapt Date: Mon Jan 20 09:09:04 2014 New Revision: 340377 URL: http://svnweb.freebsd.org/changeset/ports/340377 QAT: https://qat.redports.org/buildarchive/r340377/ Log: Add the forgotten test around the IGNORE Pointyhat to: bapt Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Mon Jan 20 09:08:32 2014 (r340376) +++ head/Mk/bsd.port.mk Mon Jan 20 09:09:04 2014 (r340377) @@ -1825,8 +1825,10 @@ RUN_DEPENDS+= ${_GL_${_component}_RUN_DE # Ignore STAGEDIR if set from make.conf .undef STAGEDIR # From command line it is impossible to undefined so we must raise an error +.if defined(STAGEDIR) IGNORE= Do not define STAGEDIR in command line .endif +.endif .if defined(WITH_PKGNG) .include "${PORTSDIR}/Mk/bsd.pkgng.mk" From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 09:37:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A38C73B8; Mon, 20 Jan 2014 09:37:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8F6A01520; Mon, 20 Jan 2014 09:37:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K9brKO088818; Mon, 20 Jan 2014 09:37:53 GMT (envelope-from arved@svn.freebsd.org) Received: (from arved@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K9brWJ088816; Mon, 20 Jan 2014 09:37:53 GMT (envelope-from arved@svn.freebsd.org) Message-Id: <201401200937.s0K9brWJ088816@svn.freebsd.org> From: Tilman Keskinoz Date: Mon, 20 Jan 2014 09:37:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340378 - head/www/newsbeuter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 09:37:53 -0000 Author: arved Date: Mon Jan 20 09:37:52 2014 New Revision: 340378 URL: http://svnweb.freebsd.org/changeset/ports/340378 QAT: https://qat.redports.org/buildarchive/r340378/ Log: Update to 2.8 Modified: head/www/newsbeuter/Makefile head/www/newsbeuter/distinfo Modified: head/www/newsbeuter/Makefile ============================================================================== --- head/www/newsbeuter/Makefile Mon Jan 20 09:09:04 2014 (r340377) +++ head/www/newsbeuter/Makefile Mon Jan 20 09:37:52 2014 (r340378) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= newsbeuter -PORTVERSION= 2.7 -PORTREVISION= 1 +PORTVERSION= 2.8 CATEGORIES= www MASTER_SITES= http://newsbeuter.org/downloads/ @@ -43,7 +42,7 @@ post-patch: ${WRKSRC}/Makefile ${REINPLACE_CMD} -e 's,,,' \ ${WRKSRC}/src/controller.cpp ${WRKSRC}/src/view.cpp - ${REINPLACE_CMD} -e 's,fail "ncursesw5",true,; s,fail "libcrypto",true,' \ + ${REINPLACE_CMD} -e 's,fail "ncursesw",true,; s,fail "libcrypto",true,' \ ${WRKSRC}/config.sh ${REINPLACE_CMD} -e 's|-liconv|${ICONV_LIB} -lcrypto -lncursesw|' \ ${WRKSRC}/Makefile Modified: head/www/newsbeuter/distinfo ============================================================================== --- head/www/newsbeuter/distinfo Mon Jan 20 09:09:04 2014 (r340377) +++ head/www/newsbeuter/distinfo Mon Jan 20 09:37:52 2014 (r340378) @@ -1,2 +1,2 @@ -SHA256 (newsbeuter-2.7.tar.gz) = e6720da7ac3f5ea83bc39cd17bd61ccf458b7167f5a17170ae32c7b6e8ff903a -SIZE (newsbeuter-2.7.tar.gz) = 418848 +SHA256 (newsbeuter-2.8.tar.gz) = c872a068ec7792680b11126230dff240dee72acdab8f153016ba5ef83c8a7804 +SIZE (newsbeuter-2.8.tar.gz) = 431299 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 09:52:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2CAC54B; Mon, 20 Jan 2014 09:52:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F0161653; Mon, 20 Jan 2014 09:52:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0K9qheE095659; Mon, 20 Jan 2014 09:52:43 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0K9qhMi095655; Mon, 20 Jan 2014 09:52:43 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401200952.s0K9qhMi095655@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 20 Jan 2014 09:52:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340379 - head/print/lilypond-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.17 Precedence: list List-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, 20 Jan 2014 09:52:43 -0000 Author: gahr Date: Mon Jan 20 09:52:42 2014 New Revision: 340379 URL: http://svnweb.freebsd.org/changeset/ports/340379 QAT: https://qat.redports.org/buildarchive/r340379/ Log: - Update to 2.19.1 Modified: head/print/lilypond-devel/Makefile head/print/lilypond-devel/distinfo Modified: head/print/lilypond-devel/Makefile ============================================================================== --- head/print/lilypond-devel/Makefile Mon Jan 20 09:37:52 2014 (r340378) +++ head/print/lilypond-devel/Makefile Mon Jan 20 09:52:42 2014 (r340379) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= lilypond -PORTVERSION= 2.19.0 +PORTVERSION= 2.19.1 CATEGORIES= print audio MASTER_SITES= http://download.linuxaudio.org/lilypond/sources/v${PORTVERSION:R}/ PKGNAMESUFFIX= -devel Modified: head/print/lilypond-devel/distinfo ============================================================================== --- head/print/lilypond-devel/distinfo Mon Jan 20 09:37:52 2014 (r340378) +++ head/print/lilypond-devel/distinfo Mon Jan 20 09:52:42 2014 (r340379) @@ -1,2 +1,2 @@ -SHA256 (lilypond-2.19.0.tar.gz) = 358da6b1b3bd1fc7649d4c2d883b7b2e185497f6c710cafe2985f33b77a3891b -SIZE (lilypond-2.19.0.tar.gz) = 16022495 +SHA256 (lilypond-2.19.1.tar.gz) = 1059a425cd79275f72f13134e311a4161e766e8ad7a7cb181d3e763f8ec7d77f +SIZE (lilypond-2.19.1.tar.gz) = 16020944 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 10:02:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AED4D92D; Mon, 20 Jan 2014 10:02:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9A3571739; Mon, 20 Jan 2014 10:02:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KA2TaN099585; Mon, 20 Jan 2014 10:02:29 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KA2TeI099582; Mon, 20 Jan 2014 10:02:29 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401201002.s0KA2TeI099582@svn.freebsd.org> From: Emanuel Haupt Date: Mon, 20 Jan 2014 10:02:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340380 - 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.17 Precedence: list List-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, 20 Jan 2014 10:02:29 -0000 Author: ehaupt Date: Mon Jan 20 10:02:28 2014 New Revision: 340380 URL: http://svnweb.freebsd.org/changeset/ports/340380 QAT: https://qat.redports.org/buildarchive/r340380/ Log: Update to 301 Modified: head/x11/xterm/Makefile head/x11/xterm/distinfo Modified: head/x11/xterm/Makefile ============================================================================== --- head/x11/xterm/Makefile Mon Jan 20 09:52:42 2014 (r340379) +++ head/x11/xterm/Makefile Mon Jan 20 10:02:28 2014 (r340380) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xterm -PORTVERSION= 300 +PORTVERSION= 301 CATEGORIES= x11 MASTER_SITES= ftp://invisible-island.net/xterm/:src1 \ CRITICAL:src1 CRITICAL:src2 Modified: head/x11/xterm/distinfo ============================================================================== --- head/x11/xterm/distinfo Mon Jan 20 09:52:42 2014 (r340379) +++ head/x11/xterm/distinfo Mon Jan 20 10:02:28 2014 (r340380) @@ -1,4 +1,4 @@ -SHA256 (xterm-300.tgz) = 615095640cc357405ecae3521b00d8027b3016d21ea235e337f3bed0083e17cd -SIZE (xterm-300.tgz) = 1123519 +SHA256 (xterm-301.tgz) = 1fbabb68263f80673747e0b02801811584fd8e1d15787c2605efa3b077561910 +SIZE (xterm-301.tgz) = 1125949 SHA256 (bsd-xterm-icons-1.tgz) = fcf51dce0e23e9911a16ed7f2ce835bb6ff2ada65f023c29fdd8abda2795bf7c SIZE (bsd-xterm-icons-1.tgz) = 22718 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 10:13:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47CADBD7; Mon, 20 Jan 2014 10:13:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 33252181B; Mon, 20 Jan 2014 10:13:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KADtAw004008; Mon, 20 Jan 2014 10:13:55 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KADti7004007; Mon, 20 Jan 2014 10:13:55 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401201013.s0KADti7004007@svn.freebsd.org> From: Raphael Kubo da Costa Date: Mon, 20 Jan 2014 10:13:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340381 - head/graphics/libexif X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 10:13:55 -0000 Author: rakuco Date: Mon Jan 20 10:13:54 2014 New Revision: 340381 URL: http://svnweb.freebsd.org/changeset/ports/340381 QAT: https://qat.redports.org/buildarchive/r340381/ Log: - Modernise some USES: USE_GMAKE -> USES=gmake USE_GNOME=gnomehack -> USES=pathfix Modified: head/graphics/libexif/Makefile Modified: head/graphics/libexif/Makefile ============================================================================== --- head/graphics/libexif/Makefile Mon Jan 20 10:02:28 2014 (r340380) +++ head/graphics/libexif/Makefile Mon Jan 20 10:13:54 2014 (r340381) @@ -13,10 +13,9 @@ LICENSE= LGPL21 OPTIONS_DEFINE= DOCS NLS -USES= pkgconfig +USES= gmake pathfix pkgconfig USE_BZIP2= yes -USE_GNOME= gnomehack ltverhack -USE_GMAKE= yes +USE_GNOME= ltverhack USE_AUTOTOOLS= libtool CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 10:26:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6357E00; Mon, 20 Jan 2014 10:26:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A15C618E7; Mon, 20 Jan 2014 10:26:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KAQo3V008120; Mon, 20 Jan 2014 10:26:50 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KAQoWI008117; Mon, 20 Jan 2014 10:26:50 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401201026.s0KAQoWI008117@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 20 Jan 2014 10:26:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340382 - head/lang/seed7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 10:26:50 -0000 Author: gahr Date: Mon Jan 20 10:26:49 2014 New Revision: 340382 URL: http://svnweb.freebsd.org/changeset/ports/340382 QAT: https://qat.redports.org/buildarchive/r340382/ Log: - Update to 20140119 Changes: * The library tdes.s7i with TDES (Triple DES respectively 3DES) cipher support has been added. * The library tls.s7i has been improved to allow encoding with TDES (3DES) and to accept the handshake message CertificateRequest. * The function drwGetImage has been added to drw_dos.c (thanks to "Rugxulo" for pointing out, that it was missing). * Checks for mdiv and mod have been added to chkbig.sd7. * The compiler (s7c) has been improved to do more optimizations for the action BIG_MOD (operator mod). Now the functions bigLowerBits and bigLowerBitsTemp are used when the divisor is a power of two. * The compiler has been improved to optimize if-statements, when the condition is constant. * The compiler has been improved to optimize the action BIG_MDIV (operator mdiv) correctly, when the divisor is a negated power of two (e.g. n div -8). The generated code now corresponds to the Seed7 expression -dividend >> log(-divisor). * New functions to open files have been introduced in various libraries. The new functions are openUtf8, openUtf16, openEcho, openLine, openTee, openMore, openUpper, openLower, openReverse, openWindow and openField. The new functions have been added as replacement for the functions open_utf8, open_utf16, open_echo, open_line, open_tee, open_more, open_upper, open_lower, open_reverse, open_window and open_field. The old functions are still supported, but they are deprecated and should not be used. Deprecated functions will be removed in a future version. * The example programs have been changed to use the new functions to open files. * Documentation comments have been added or improved in cipher.s7i, clib_file.s7i, external_file.s7i, shell.s7i, utf8.s7i, utf16.s7i, unicode.s7i, bytedata.s7i, big_gmp.c, biglib.c, big_rtl.c, cmdlib.c, cmd_rtl.c, fillib.c, fil_rtl.c, intlib.c, int_rtl.c, strlib.c, str_rtl.c and entutl.c. * The functions bigLowerBits and bigLowerBitsTemp have been added to big_rtl.c and big_gmp.c. * The free list management in big_rtl.c and big_gmp.c has been improved to allow the configuration of a maximum free list length. * The function bigMultAssign1 has been added to big_rtl.c. This function is used by bigMultAssign when the factor is just one bigdigit. * The function bigLog2BaseLShift has been renamed to bigLog2BaseIPow in big_rtl.c, big_gmp.c and s7c.sd7. * The function getValue for boolean values has been added to progs.s7i. Interpreter, compiler and runtime library have been improved to support it. * the management of types in the runtime library has been improved. Now they are attached to the corresponding program. This way they can be freed by prgDestr(). Modified: head/lang/seed7/Makefile head/lang/seed7/distinfo head/lang/seed7/pkg-plist Modified: head/lang/seed7/Makefile ============================================================================== --- head/lang/seed7/Makefile Mon Jan 20 10:13:54 2014 (r340381) +++ head/lang/seed7/Makefile Mon Jan 20 10:26:49 2014 (r340382) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= seed7 -DISTVERSION= 05_20140105 +DISTVERSION= 05_20140119 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/lang/seed7/distinfo ============================================================================== --- head/lang/seed7/distinfo Mon Jan 20 10:13:54 2014 (r340381) +++ head/lang/seed7/distinfo Mon Jan 20 10:26:49 2014 (r340382) @@ -1,2 +1,2 @@ -SHA256 (seed7_05_20140105.tgz) = 24383c1537d36b669b57494666fbf2199b9bfbdc6f2e2134def4aa23769e332e -SIZE (seed7_05_20140105.tgz) = 2002939 +SHA256 (seed7_05_20140119.tgz) = 773f1a221285cc8d9391fe27a9ed3e5d643423d8551882546693f646bcf67d01 +SIZE (seed7_05_20140119.tgz) = 2014847 Modified: head/lang/seed7/pkg-plist ============================================================================== --- head/lang/seed7/pkg-plist Mon Jan 20 10:13:54 2014 (r340381) +++ head/lang/seed7/pkg-plist Mon Jan 20 10:26:49 2014 (r340382) @@ -127,6 +127,7 @@ lib/seed7/lib/struct.s7i lib/seed7/lib/subrange.s7i lib/seed7/lib/syntax.s7i lib/seed7/lib/tar.s7i +lib/seed7/lib/tdes.s7i lib/seed7/lib/tee.s7i lib/seed7/lib/text.s7i lib/seed7/lib/time.s7i From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 10:32:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2BE471B1; Mon, 20 Jan 2014 10:32:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 17A521999; Mon, 20 Jan 2014 10:32:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KAWqv4011463; Mon, 20 Jan 2014 10:32:52 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KAWqfF011462; Mon, 20 Jan 2014 10:32:52 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401201032.s0KAWqfF011462@svn.freebsd.org> From: Rusmir Dusko Date: Mon, 20 Jan 2014 10:32:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340383 - head/games/anki X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 10:32:53 -0000 Author: nemysis Date: Mon Jan 20 10:32:52 2014 New Revision: 340383 URL: http://svnweb.freebsd.org/changeset/ports/340383 QAT: https://qat.redports.org/buildarchive/r340383/ Log: - Change REINPLACE_CMD, make PREFIX safe Reported by: makc Modified: head/games/anki/Makefile Modified: head/games/anki/Makefile ============================================================================== --- head/games/anki/Makefile Mon Jan 20 10:26:49 2014 (r340382) +++ head/games/anki/Makefile Mon Jan 20 10:32:52 2014 (r340383) @@ -39,11 +39,11 @@ post-patch: @${REINPLACE_CMD} -e \ 's|^Categories=.*|Categories=Education;Languages;KDE;Qt;Game;|' \ ${WRKSRC}/${PORTNAME}.desktop - @${REINPLACE_CMD} -e 's|/usr/bin/env python|${PYTHON_CMD}| ; \ - s|/usr/share/anki|/usr/local/share/anki|' \ + @${REINPLACE_CMD} -e 's|/usr/bin/env python|${PYTHON_CMD}|; \ + s|/usr/share/anki|${DATADIR}|' \ ${WRKSRC}/runanki @${REINPLACE_CMD} -e \ - 's|/usr/share/anki/locale|/usr/local/share/locale|' \ + 's|/usr/share/anki/locale|${PREFIX}/share/locale|' \ ${WRKSRC}/anki/lang.py @${FIND} ${WRKSRC} -name "*.bak" -delete -or -name "*.orig" -delete From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 12:27:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBF67863; Mon, 20 Jan 2014 12:27:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BBE181A75; Mon, 20 Jan 2014 12:27:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KCRcYc053739; Mon, 20 Jan 2014 12:27:38 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KCRct8053738; Mon, 20 Jan 2014 12:27:38 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401201227.s0KCRct8053738@svn.freebsd.org> From: Raphael Kubo da Costa Date: Mon, 20 Jan 2014 12:27:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340384 - head/graphics/kamera-kde4/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.17 Precedence: list List-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, 20 Jan 2014 12:27:39 -0000 Author: rakuco Date: Mon Jan 20 12:27:38 2014 New Revision: 340384 URL: http://svnweb.freebsd.org/changeset/ports/340384 QAT: https://qat.redports.org/buildarchive/r340384/ Log: Fix the build after libgphoto was updated to 2.5.3 in r340071. Add an upstream patch to fix the way the detection of the gphoto version was being done in the build system. Added: head/graphics/kamera-kde4/files/ head/graphics/kamera-kde4/files/patch-git_1b10fdf (contents, props changed) Added: head/graphics/kamera-kde4/files/patch-git_1b10fdf ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/kamera-kde4/files/patch-git_1b10fdf Mon Jan 20 12:27:38 2014 (r340384) @@ -0,0 +1,61 @@ +commit 1b10fdfc22646ea08683a881648989ef16d61dd1 +Author: Raphael Kubo da Costa +Date: Mon Jan 20 14:16:47 2014 +0200 + + cmake: Correctly check for gp_port_info_get_name. + + CHECK_LIBRARY_EXISTS() is the wrong function to call here; we've already + looked for gphoto's librares in FindGphoto2.cmake. Instead, we are + interested in knowing whether the symbol gp_port_info_get_name is present in + the libraries, since this indicates we have gphoto >= 2.5.0. + + Additionally, we must also set CMAKE_REQUIRED_{INCLUDES,LIBRARIES} to take + into account the gphoto header and library paths we have found, otherwise + we're just relying on them being in the compiler/linker's default paths. + + While here, also set HAVE_GPHOTO2_5 directly instead of setting GPHOTO2_5 + and then using its value to set the former. + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index ebae998..08d3b0e 100644 +--- CMakeLists.txt ++++ CMakeLists.txt +@@ -1,25 +1,28 @@ + project(kamera) + + find_package(KDE4 REQUIRED) ++include(CMakePushCheckState) ++include(CheckSymbolExists) + include(KDE4Defaults) + include(MacroLibrary) + include(MacroOptionalAddSubdirectory) +- + + find_package(Gphoto2) + macro_log_feature(GPHOTO2_FOUND "gphoto2" "Required to build kamera" "http://heanet.dl.sourceforge.net/sourceforge/gphoto" TRUE "" "") + +-check_library_exists(gphoto2_port gp_port_info_get_name "" GPHOTO2_5) +-if(GPHOTO2_5) +- message(STATUS "Found libgphoto 2.5") +-else(GPHOTO2_5) +- message(STATUS "libgphoto 2.5 not found, assuming libgphoto2 2.4") +-endif(GPHOTO2_5) +-set(HAVE_GPHOTO2_5 ${GPHOTO2_5}) +- +-include(ConfigureChecks.cmake) ++cmake_push_check_state() ++set(CMAKE_REQUIRED_INCLUDES "${GPHOTO2_INCLUDE_DIR}") ++set(CMAKE_REQUIRED_LIBRARIES "${GPHOTO2_LIBRARIES}") ++check_symbol_exists(gp_port_info_get_name "gphoto2.h" HAVE_GPHOTO2_5) ++cmake_pop_check_state() + ++if(HAVE_GPHOTO2_5) ++ message(STATUS "Detected libgphoto 2.5.0 or newer") ++else() ++ message(STATUS "Detected libgphoto2 2.4 or older") ++endif() + ++include(ConfigureChecks.cmake) + + configure_file(config-kamera.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-kamera.h) + From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 12:37:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1322BBA; Mon, 20 Jan 2014 12:37:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AC7A01B4E; Mon, 20 Jan 2014 12:37:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KCbWX3057533; Mon, 20 Jan 2014 12:37:32 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KCbWMJ057532; Mon, 20 Jan 2014 12:37:32 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201401201237.s0KCbWMJ057532@svn.freebsd.org> From: Koop Mast Date: Mon, 20 Jan 2014 12:37:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340385 - head/graphics/kamera-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.17 Precedence: list List-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, 20 Jan 2014 12:37:32 -0000 Author: kwm Date: Mon Jan 20 12:37:32 2014 New Revision: 340385 URL: http://svnweb.freebsd.org/changeset/ports/340385 QAT: https://qat.redports.org/buildarchive/r340385/ Log: Update LIB_DEPEND for libgphoto2. Modified: head/graphics/kamera-kde4/Makefile Modified: head/graphics/kamera-kde4/Makefile ============================================================================== --- head/graphics/kamera-kde4/Makefile Mon Jan 20 12:27:38 2014 (r340384) +++ head/graphics/kamera-kde4/Makefile Mon Jan 20 12:37:32 2014 (r340385) @@ -12,7 +12,7 @@ COMMENT= Digital camera manager for KDE LATEST_LINK= ${PORTNAME}-kde4 -LIB_DEPENDS= gphoto2.2:${PORTSDIR}/graphics/libgphoto2 +LIB_DEPENDS= libgphoto2.so:${PORTSDIR}/graphics/libgphoto2 CONFLICTS= kdegraphics-4.[0-6].* From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:05:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F09BF49; Mon, 20 Jan 2014 13:05:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5ADEC1E4C; Mon, 20 Jan 2014 13:05:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KD5cnr068838; Mon, 20 Jan 2014 13:05:38 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KD5cGK068835; Mon, 20 Jan 2014 13:05:38 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401201305.s0KD5cGK068835@svn.freebsd.org> From: William Grzybowski Date: Mon, 20 Jan 2014 13:05:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340386 - head/mail/imapsync X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:05:38 -0000 Author: wg Date: Mon Jan 20 13:05:37 2014 New Revision: 340386 URL: http://svnweb.freebsd.org/changeset/ports/340386 QAT: https://qat.redports.org/buildarchive/r340386/ Log: mail/imapsync: update to 1.580 PR: ports/185883 Submitted by: maintainer Modified: head/mail/imapsync/Makefile head/mail/imapsync/distinfo Modified: head/mail/imapsync/Makefile ============================================================================== --- head/mail/imapsync/Makefile Mon Jan 20 12:37:32 2014 (r340385) +++ head/mail/imapsync/Makefile Mon Jan 20 13:05:37 2014 (r340386) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= imapsync -PORTVERSION= 1.569 +PORTVERSION= 1.580 PORTREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= https://fedorahosted.org/released/${PORTNAME}/ Modified: head/mail/imapsync/distinfo ============================================================================== --- head/mail/imapsync/distinfo Mon Jan 20 12:37:32 2014 (r340385) +++ head/mail/imapsync/distinfo Mon Jan 20 13:05:37 2014 (r340386) @@ -1,2 +1,2 @@ -SHA256 (imapsync-1.569.tgz) = 7799b5d3787021d14c10cda08b36c54a285373c729b256235421da21f1f47a1e -SIZE (imapsync-1.569.tgz) = 955754 +SHA256 (imapsync-1.580.tgz) = 053992837b652406d646eb3d83f1128799ea17116df544cd4f9364f3762b0bec +SIZE (imapsync-1.580.tgz) = 1029856 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:11:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75910117; Mon, 20 Jan 2014 13:11:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 614051ED7; Mon, 20 Jan 2014 13:11:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KDBh4f072402; Mon, 20 Jan 2014 13:11:43 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KDBh60072401; Mon, 20 Jan 2014 13:11:43 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401201311.s0KDBh60072401@svn.freebsd.org> From: William Grzybowski Date: Mon, 20 Jan 2014 13:11:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340387 - head/devel/libgit2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:11:43 -0000 Author: wg Date: Mon Jan 20 13:11:42 2014 New Revision: 340387 URL: http://svnweb.freebsd.org/changeset/ports/340387 QAT: https://qat.redports.org/buildarchive/r340387/ Log: devel/libgit2: fix pkgconfig file and missing dependency PR: ports/185892 Submitted by: amdmi3 Modified: head/devel/libgit2/Makefile Modified: head/devel/libgit2/Makefile ============================================================================== --- head/devel/libgit2/Makefile Mon Jan 20 13:05:37 2014 (r340386) +++ head/devel/libgit2/Makefile Mon Jan 20 13:11:42 2014 (r340387) @@ -2,6 +2,7 @@ PORTNAME= libgit2 PORTVERSION= 0.20.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= wg@FreeBSD.org @@ -17,9 +18,18 @@ GH_COMMIT= 43cb8b3 USES= cmake USE_LDCONFIG= yes USE_PYTHON_BUILD= yes +USE_OPENSSL= yes PLIST_SUB= SHLIB_VER=${PORTVERSION} +OPTIONS_DEFINE= SSH +OPTIONS_DEFAULT=SSH +SSH_DESC= Enable SSH support through libssh2 + +SSH_LIB_DEPENDS= libssh2.so:${PORTSDIR}/security/libssh2 +SSH_CMAKE_ON= -DUSE_SSH=ON +SSH_CMAKE_OFF= -DUSE_SSH=OFF + .include .if ${ARCH} == "sparc64" @@ -27,6 +37,11 @@ BROKEN= Does not install on sparc64: th .endif post-patch: - @${REINPLACE_CMD} -e "s|/pkgconfig|/../libdata/pkgconfig|" ${WRKSRC}/CMakeLists.txt + @${REINPLACE_CMD} -e "s|/pkgconfig|/../libdata/pkgconfig|; \ + /LIBGIT2_PC_REQUIRES.*zlib/ d" ${WRKSRC}/CMakeLists.txt +.if defined(WITH_OPENSSL_BASE) + @${REINPLACE_CMD} -e "/LIBGIT2_PC_REQUIRES.*openssl/ d" \ + ${WRKSRC}/CMakeLists.txt +.endif .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:12:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D1381F5; Mon, 20 Jan 2014 13:12:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 08E961EDE; Mon, 20 Jan 2014 13:12:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KDCQCO072601; Mon, 20 Jan 2014 13:12:26 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KDCQBs072599; Mon, 20 Jan 2014 13:12:26 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401201312.s0KDCQBs072599@svn.freebsd.org> From: William Grzybowski Date: Mon, 20 Jan 2014 13:12:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340388 - head/devel/py-billiard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:12:27 -0000 Author: wg Date: Mon Jan 20 13:12:26 2014 New Revision: 340388 URL: http://svnweb.freebsd.org/changeset/ports/340388 QAT: https://qat.redports.org/buildarchive/r340388/ Log: devel/py-billiard: update to 3.3.0.14 Modified: head/devel/py-billiard/Makefile head/devel/py-billiard/distinfo Modified: head/devel/py-billiard/Makefile ============================================================================== --- head/devel/py-billiard/Makefile Mon Jan 20 13:11:42 2014 (r340387) +++ head/devel/py-billiard/Makefile Mon Jan 20 13:12:26 2014 (r340388) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= billiard -PORTVERSION= 3.3.0.13 +PORTVERSION= 3.3.0.14 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-billiard/distinfo ============================================================================== --- head/devel/py-billiard/distinfo Mon Jan 20 13:11:42 2014 (r340387) +++ head/devel/py-billiard/distinfo Mon Jan 20 13:12:26 2014 (r340388) @@ -1,2 +1,2 @@ -SHA256 (billiard-3.3.0.13.tar.gz) = 833e294e1302089c6c42a26f796fc15f67a1a81cb6a995ec775bb112650ac270 -SIZE (billiard-3.3.0.13.tar.gz) = 148777 +SHA256 (billiard-3.3.0.14.tar.gz) = f679a4635df6c5780a0bf80208885c5cf30a5a6e0072c2e293005abbebb0c05e +SIZE (billiard-3.3.0.14.tar.gz) = 149022 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:14:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9EB662E6; Mon, 20 Jan 2014 13:14:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 70CC71EEE; Mon, 20 Jan 2014 13:14:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KDEu1t073181; Mon, 20 Jan 2014 13:14:56 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KDEueK073177; Mon, 20 Jan 2014 13:14:56 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401201314.s0KDEueK073177@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 13:14:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340389 - head/security/signing-party X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:14:56 -0000 Author: mat Date: Mon Jan 20 13:14:55 2014 New Revision: 340389 URL: http://svnweb.freebsd.org/changeset/ports/340389 QAT: https://qat.redports.org/buildarchive/r340389/ Log: * Fix build on 10 * Add a plist so that it actually installs something Added: head/security/signing-party/pkg-plist (contents, props changed) Modified: head/security/signing-party/Makefile Modified: head/security/signing-party/Makefile ============================================================================== --- head/security/signing-party/Makefile Mon Jan 20 13:12:26 2014 (r340388) +++ head/security/signing-party/Makefile Mon Jan 20 13:14:55 2014 (r340389) @@ -38,6 +38,7 @@ SCRIPTS= caff/caff caff/pgp-clean caff/p gpgparticipants/gpgparticipants MANUALS1= ${SCRIPTS:S/$/.1/} ${BINS:S/$/.1/} EXAMPLES= caff/caffrc.sample gpg-mailkeys/example.gpg-mailkeysrc +PORTEXAMPLES= ${EXAMPLES:T} PORTDOCS= * @@ -50,6 +51,7 @@ post-patch: -e 's|make pgpring|make|' \ ${WRKSRC}/gpgwrap/Makefile \ ${WRKSRC}/keyanalyze/Makefile + @${REINPLACE_CMD} -e 's|gcc|${CC}|' ${WRKSRC}/gpgwrap/src/Makefile # Rename pgpring to pgppubring to avoid conflict with mail/mutt @${REINPLACE_CMD} -e 's|pgpring|pgppubring|g' \ ${WRKSRC}/keyanalyze/pgpring/Makefile.in Added: head/security/signing-party/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/signing-party/pkg-plist Mon Jan 20 13:14:55 2014 (r340389) @@ -0,0 +1,28 @@ +bin/caff +bin/gpg-key2ps +bin/gpg-mailkeys +bin/gpglist +bin/gpgparticipants +bin/gpgsigs +bin/keyanalyze +bin/keylookup +bin/pgp-clean +bin/pgp-fixkey +bin/pgppubring +bin/process_keys +bin/sig2dot +bin/springgraph +man/man1/caff.1.gz +man/man1/gpg-key2ps.1.gz +man/man1/gpg-mailkeys.1.gz +man/man1/gpglist.1.gz +man/man1/gpgparticipants.1.gz +man/man1/gpgsigs.1.gz +man/man1/keyanalyze.1.gz +man/man1/keylookup.1.gz +man/man1/pgp-clean.1.gz +man/man1/pgp-fixkey.1.gz +man/man1/pgppubring.1.gz +man/man1/process_keys.1.gz +man/man1/sig2dot.1.gz +man/man1/springgraph.1.gz From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:17:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 719C03F7; Mon, 20 Jan 2014 13:17:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5DD171F10; Mon, 20 Jan 2014 13:17:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KDHmP5074359; Mon, 20 Jan 2014 13:17:48 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KDHmQk074358; Mon, 20 Jan 2014 13:17:48 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401201317.s0KDHmQk074358@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 13:17:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340390 - head/security/signing-party X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:17:48 -0000 Author: mat Date: Mon Jan 20 13:17:47 2014 New Revision: 340390 URL: http://svnweb.freebsd.org/changeset/ports/340390 QAT: https://qat.redports.org/buildarchive/r340390/ Log: And bump portrevision, the package was empty before. Modified: head/security/signing-party/Makefile Modified: head/security/signing-party/Makefile ============================================================================== --- head/security/signing-party/Makefile Mon Jan 20 13:14:55 2014 (r340389) +++ head/security/signing-party/Makefile Mon Jan 20 13:17:47 2014 (r340390) @@ -3,7 +3,7 @@ PORTNAME= signing-party PORTVERSION= 1.1.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security MASTER_SITES= ftp://ftp.stack.nl/pub/users/johans/signing-party/ \ ${MASTER_SITE_DEBIAN} From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:20:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA455524; Mon, 20 Jan 2014 13:20:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 969D81F2A; Mon, 20 Jan 2014 13:20:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KDK9CY075393; Mon, 20 Jan 2014 13:20:09 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KDK949075387; Mon, 20 Jan 2014 13:20:09 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401201320.s0KDK949075387@svn.freebsd.org> From: William Grzybowski Date: Mon, 20 Jan 2014 13:20:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340391 - head/net/py-amqp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:20:09 -0000 Author: wg Date: Mon Jan 20 13:20:08 2014 New Revision: 340391 URL: http://svnweb.freebsd.org/changeset/ports/340391 QAT: https://qat.redports.org/buildarchive/r340391/ Log: net/py-amqp: update to 1.4.1 Modified: head/net/py-amqp/Makefile head/net/py-amqp/distinfo Modified: head/net/py-amqp/Makefile ============================================================================== --- head/net/py-amqp/Makefile Mon Jan 20 13:17:47 2014 (r340390) +++ head/net/py-amqp/Makefile Mon Jan 20 13:20:08 2014 (r340391) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= amqp -PORTVERSION= 1.3.3 +PORTVERSION= 1.4.1 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,7 +18,7 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}uni LICENSE= LGPL21 USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes regression-test: build Modified: head/net/py-amqp/distinfo ============================================================================== --- head/net/py-amqp/distinfo Mon Jan 20 13:17:47 2014 (r340390) +++ head/net/py-amqp/distinfo Mon Jan 20 13:20:08 2014 (r340391) @@ -1,2 +1,2 @@ -SHA256 (amqp-1.3.3.tar.gz) = e65da719efcd1d0a9cff44431e2476f88de8ffeeb7abc0c77e82361c9281170f -SIZE (amqp-1.3.3.tar.gz) = 75574 +SHA256 (amqp-1.4.1.tar.gz) = 0d3c3878ba143d33a74265c8689eefb34462628df9fd8a238efea696b14ea5ff +SIZE (amqp-1.4.1.tar.gz) = 76927 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:25:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 015457FB; Mon, 20 Jan 2014 13:25:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C93811FB7; Mon, 20 Jan 2014 13:25:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KDPIST080034; Mon, 20 Jan 2014 13:25:18 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KDPIk2080031; Mon, 20 Jan 2014 13:25:18 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401201325.s0KDPIk2080031@svn.freebsd.org> From: William Grzybowski Date: Mon, 20 Jan 2014 13:25:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340393 - head/net/py-kombu X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:25:19 -0000 Author: wg Date: Mon Jan 20 13:25:18 2014 New Revision: 340393 URL: http://svnweb.freebsd.org/changeset/ports/340393 QAT: https://qat.redports.org/buildarchive/r340393/ Log: net/py-kombu: update to 1.4.1 - Update to 1.4.1 - Switch to appropriate BSD license - Remove deprecated python <2.7 detection Modified: head/net/py-kombu/Makefile head/net/py-kombu/distinfo Modified: head/net/py-kombu/Makefile ============================================================================== --- head/net/py-kombu/Makefile Mon Jan 20 13:21:06 2014 (r340392) +++ head/net/py-kombu/Makefile Mon Jan 20 13:25:18 2014 (r340393) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= kombu -PORTVERSION= 3.0.8 +PORTVERSION= 3.0.10 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,9 +10,9 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wg@FreeBSD.org COMMENT= AMQP messaging framework for Python -LICENSE= BSD +LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}amqp>=1.3.2:${PORTSDIR}/net/py-amqp \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}amqp>=1.4.1:${PORTSDIR}/net/py-amqp \ ${PYTHON_PKGNAMEPREFIX}anyjson>=0.3.3:${PORTSDIR}/devel/py-anyjson OPTIONS_DEFINE= BEANSTALK BOTO MONGODB REDIS SQLALCHEMY ZMQ @@ -38,10 +38,4 @@ USE_PYTHON= yes USE_PYDISTUTILS=yes PYDISTUTILS_AUTOPLIST= yes -.include - -.if ${PYTHON_REL} < 270 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ordereddict>=0:${PORTSDIR}/devel/py-ordereddict -.endif - -.include +.include Modified: head/net/py-kombu/distinfo ============================================================================== --- head/net/py-kombu/distinfo Mon Jan 20 13:21:06 2014 (r340392) +++ head/net/py-kombu/distinfo Mon Jan 20 13:25:18 2014 (r340393) @@ -1,2 +1,2 @@ -SHA256 (kombu-3.0.8.tar.gz) = de8eea1b9dc83c268a135bcaa9b89aedec1b07f63ebb487f3ba09d35d37f07d2 -SIZE (kombu-3.0.8.tar.gz) = 335226 +SHA256 (kombu-3.0.10.tar.gz) = 796f5a65a95bf518eab1ad04b10e1a45ddb84918348781391d547c943b87f7bc +SIZE (kombu-3.0.10.tar.gz) = 337255 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:32:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C7CF9B0; Mon, 20 Jan 2014 13:32:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 68C8F1083; Mon, 20 Jan 2014 13:32:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KDWqdT085499; Mon, 20 Jan 2014 13:32:52 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KDWq3l085497; Mon, 20 Jan 2014 13:32:52 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401201332.s0KDWq3l085497@svn.freebsd.org> From: William Grzybowski Date: Mon, 20 Jan 2014 13:32:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340394 - head/devel/py-celery X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:32:52 -0000 Author: wg Date: Mon Jan 20 13:32:51 2014 New Revision: 340394 URL: http://svnweb.freebsd.org/changeset/ports/340394 QAT: https://qat.redports.org/buildarchive/r340394/ Log: devel/py-celery: update to 3.1.8 Modified: head/devel/py-celery/Makefile head/devel/py-celery/distinfo Modified: head/devel/py-celery/Makefile ============================================================================== --- head/devel/py-celery/Makefile Mon Jan 20 13:25:18 2014 (r340393) +++ head/devel/py-celery/Makefile Mon Jan 20 13:32:51 2014 (r340394) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= celery -PORTVERSION= 3.1.7 +PORTVERSION= 3.1.8 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,9 +13,9 @@ COMMENT= Asynchronous task queue/job que LICENSE= BSD3CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}amqp>=0:${PORTSDIR}/net/py-amqp \ - ${PYTHON_PKGNAMEPREFIX}billiard>=3.3.0.10:${PORTSDIR}/devel/py-billiard \ + ${PYTHON_PKGNAMEPREFIX}billiard>=3.3.0.14:${PORTSDIR}/devel/py-billiard \ ${PYTHON_PKGNAMEPREFIX}pytz>=1.5:${PORTSDIR}/devel/py-pytz \ - ${PYTHON_PKGNAMEPREFIX}kombu>=3.0.7:${PORTSDIR}/net/py-kombu \ + ${PYTHON_PKGNAMEPREFIX}kombu>=3.0.10:${PORTSDIR}/net/py-kombu \ ${PYTHON_PKGNAMEPREFIX}memcached>=0:${PORTSDIR}/databases/py-memcached USE_PYTHON= yes Modified: head/devel/py-celery/distinfo ============================================================================== --- head/devel/py-celery/distinfo Mon Jan 20 13:25:18 2014 (r340393) +++ head/devel/py-celery/distinfo Mon Jan 20 13:32:51 2014 (r340394) @@ -1,2 +1,2 @@ -SHA256 (celery-3.1.7.tar.gz) = 4a46dd4eba08831605d0373d9f90c150580ab0bd0a5e50021baef16403d06304 -SIZE (celery-3.1.7.tar.gz) = 1271174 +SHA256 (celery-3.1.8.tar.gz) = 0786c9aa2e1656baa96f8816a2a41886a49edd3e928f93f83b2820b2a072bbb9 +SIZE (celery-3.1.8.tar.gz) = 1276228 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:39:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 002FAAE5; Mon, 20 Jan 2014 13:39:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E086110BE; Mon, 20 Jan 2014 13:39:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KDdAEK087950; Mon, 20 Jan 2014 13:39:10 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KDdA9X087946; Mon, 20 Jan 2014 13:39:10 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401201339.s0KDdA9X087946@svn.freebsd.org> From: William Grzybowski Date: Mon, 20 Jan 2014 13:39:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340395 - head/devel/py-paver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:39:11 -0000 Author: wg Date: Mon Jan 20 13:39:10 2014 New Revision: 340395 URL: http://svnweb.freebsd.org/changeset/ports/340395 QAT: https://qat.redports.org/buildarchive/r340395/ Log: devel/py-paver: update to 1.2.2 and remove deprecated dependency Modified: head/devel/py-paver/Makefile head/devel/py-paver/distinfo Modified: head/devel/py-paver/Makefile ============================================================================== --- head/devel/py-paver/Makefile Mon Jan 20 13:32:51 2014 (r340394) +++ head/devel/py-paver/Makefile Mon Jan 20 13:39:10 2014 (r340395) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= paver -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,11 +11,8 @@ DISTNAME= Paver-${PORTVERSION} MAINTAINER= wg@FreeBSD.org COMMENT= Easy build, distribution and deployment scripting -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:${PORTSDIR}/devel/py-setuptools - USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= Paver PYDISTUTILS_AUTOPLIST= yes .include Modified: head/devel/py-paver/distinfo ============================================================================== --- head/devel/py-paver/distinfo Mon Jan 20 13:32:51 2014 (r340394) +++ head/devel/py-paver/distinfo Mon Jan 20 13:39:10 2014 (r340395) @@ -1,2 +1,2 @@ -SHA256 (Paver-1.2.1.tar.gz) = 1e281faaef479674299ba00031f95e04b6d3bff0c33778790ef1053de51020ac -SIZE (Paver-1.2.1.tar.gz) = 305670 +SHA256 (Paver-1.2.2.tar.gz) = 1e6b84228f1d77916f6a607a6038b8bd2e0790a43f546dcaf463353b464b3d52 +SIZE (Paver-1.2.2.tar.gz) = 300099 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 13:44:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 419B0D7D; Mon, 20 Jan 2014 13:44:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2E47C1160; Mon, 20 Jan 2014 13:44:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KDiZan092688; Mon, 20 Jan 2014 13:44:35 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KDiZdu092687; Mon, 20 Jan 2014 13:44:35 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401201344.s0KDiZdu092687@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 13:44:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340396 - head/mail/spampd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 13:44:35 -0000 Author: mat Date: Mon Jan 20 13:44:34 2014 New Revision: 340396 URL: http://svnweb.freebsd.org/changeset/ports/340396 QAT: https://qat.redports.org/buildarchive/r340396/ Log: Support staging. Modified: head/mail/spampd/Makefile Modified: head/mail/spampd/Makefile ============================================================================== --- head/mail/spampd/Makefile Mon Jan 20 13:39:10 2014 (r340395) +++ head/mail/spampd/Makefile Mon Jan 20 13:44:34 2014 (r340396) @@ -15,11 +15,11 @@ RUN_DEPENDS= spamc:${PORTSDIR}/mail/p5-M NO_BUILD= yes PLIST_FILES= sbin/spampd -USES= perl5 +USES= perl5 shebangfix +SHEBANG_FILES= spampd USE_RC_SUBR= spampd -NO_STAGE= yes do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/spampd ${PREFIX}/sbin + @${INSTALL_SCRIPT} ${WRKSRC}/spampd ${STAGEDIR}${PREFIX}/sbin .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 14:18:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D5CBAA4; Mon, 20 Jan 2014 14:18:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8879E147C; Mon, 20 Jan 2014 14:18:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KEI8Nr006255; Mon, 20 Jan 2014 14:18:08 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KEI7xr006249; Mon, 20 Jan 2014 14:18:07 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401201418.s0KEI7xr006249@svn.freebsd.org> From: John Marino Date: Mon, 20 Jan 2014 14:18:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340397 - in head/lang/gnatdroid-binutils: . 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.17 Precedence: list List-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, 20 Jan 2014 14:18:08 -0000 Author: marino Date: Mon Jan 20 14:18:07 2014 New Revision: 340397 URL: http://svnweb.freebsd.org/changeset/ports/340397 QAT: https://qat.redports.org/buildarchive/r340397/ Log: lang/gnatdroid-binutils: Update to version 2.24 Seven patches were present that barred this port from building and, more importantly, installing info pages and man pages. Reduce the patch count from nine to two by allowing the documentation to build and install in the stage directory, but then moving the documentation out of the way before staging occurs. The remaining two patches were regenerated although they did apply "cleanly". Deleted: head/lang/gnatdroid-binutils/files/patch-bfd__Makefile.in head/lang/gnatdroid-binutils/files/patch-binutils__Makefile.in head/lang/gnatdroid-binutils/files/patch-configure head/lang/gnatdroid-binutils/files/patch-gas__Makefile.in head/lang/gnatdroid-binutils/files/patch-gprof__Makefile.in head/lang/gnatdroid-binutils/files/patch-ld__Makefile.in head/lang/gnatdroid-binutils/files/patch-libiberty__Makefile.in Modified: head/lang/gnatdroid-binutils/Makefile head/lang/gnatdroid-binutils/distinfo head/lang/gnatdroid-binutils/files/patch-gas__configure.tgt head/lang/gnatdroid-binutils/files/patch-ld__configure.tgt Modified: head/lang/gnatdroid-binutils/Makefile ============================================================================== --- head/lang/gnatdroid-binutils/Makefile Mon Jan 20 13:44:34 2014 (r340396) +++ head/lang/gnatdroid-binutils/Makefile Mon Jan 20 14:18:07 2014 (r340397) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= binutils -PORTVERSION= 2.21.1 -PORTREVISION= 1 +PORTVERSION= 2.24 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_SOURCEWARE} MASTER_SITE_SUBDIR= binutils/releases @@ -42,6 +41,8 @@ CONFIGURE_ARGS+= --disable-werror CONFIGURE_ARGS+= --disable-nls post-install: +# Move the unwanted documentation out of the stage directory + ${MV} ${STAGEDIR}${BR1_PREFIX}/share ${WRKDIR} ${MKDIR} ${STAGEDIR}${BR2_PREFIX} (cd ${STAGEDIR}${BR1_PREFIX} && ${COPYTREE_BIN} \* \ ${STAGEDIR}${BR2_PREFIX}) Modified: head/lang/gnatdroid-binutils/distinfo ============================================================================== --- head/lang/gnatdroid-binutils/distinfo Mon Jan 20 13:44:34 2014 (r340396) +++ head/lang/gnatdroid-binutils/distinfo Mon Jan 20 14:18:07 2014 (r340397) @@ -1,2 +1,2 @@ -SHA256 (binutils-2.21.1.tar.bz2) = f769b64350a02fbee009e1582cc12b6ed43b41985de65effb741e258e075dd05 -SIZE (binutils-2.21.1.tar.bz2) = 18890094 +SHA256 (binutils-2.24.tar.bz2) = e5e8c5be9664e7f7f96e0d09919110ab5ad597794f5b1809871177a0f0f14137 +SIZE (binutils-2.24.tar.bz2) = 22716802 Modified: head/lang/gnatdroid-binutils/files/patch-gas__configure.tgt ============================================================================== --- head/lang/gnatdroid-binutils/files/patch-gas__configure.tgt Mon Jan 20 13:44:34 2014 (r340396) +++ head/lang/gnatdroid-binutils/files/patch-gas__configure.tgt Mon Jan 20 14:18:07 2014 (r340397) @@ -1,10 +1,10 @@ ---- gas/configure.tgt.orig 2011-01-29 04:08:15 +0100 -+++ gas/configure.tgt 2011-01-29 04:15:35 +0100 -@@ -105,6 +105,7 @@ +--- gas/configure.tgt.orig 2013-11-04 15:33:37.000000000 +0000 ++++ gas/configure.tgt +@@ -128,6 +128,7 @@ case ${generic_target} in arc-*-elf*) fmt=elf ;; + arm-android-eabi*) fmt=elf em=armlinuxeabi ;; arm-*-aout) fmt=aout ;; - arm-*-coff | thumb-*-coff) fmt=coff ;; - arm-*-rtems* | thumb-*-rtems*) fmt=elf ;; + arm-*-coff) fmt=coff ;; + arm-*-rtems*) fmt=elf ;; Modified: head/lang/gnatdroid-binutils/files/patch-ld__configure.tgt ============================================================================== --- head/lang/gnatdroid-binutils/files/patch-ld__configure.tgt Mon Jan 20 13:44:34 2014 (r340396) +++ head/lang/gnatdroid-binutils/files/patch-ld__configure.tgt Mon Jan 20 14:18:07 2014 (r340397) @@ -1,6 +1,6 @@ ---- ld/configure.tgt.orig 2011-01-29 04:17:31 +0100 -+++ ld/configure.tgt 2011-01-29 04:18:28 +0100 -@@ -44,6 +44,10 @@ +--- ld/configure.tgt.orig 2013-11-26 11:37:33.000000000 +0000 ++++ ld/configure.tgt +@@ -72,6 +72,10 @@ alpha*-*-*vms*) targ_emul=alphavms ;; arc-*-elf*) targ_emul=arcelf ;; From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 14:20:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE48AC04; Mon, 20 Jan 2014 14:20:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E9D014A2; Mon, 20 Jan 2014 14:20:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KEKYlX008531; Mon, 20 Jan 2014 14:20:34 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KEKYmn008528; Mon, 20 Jan 2014 14:20:34 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201401201420.s0KEKYmn008528@svn.freebsd.org> From: Cy Schubert Date: Mon, 20 Jan 2014 14:20:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340398 - head/sysutils/syslog-ng-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.17 Precedence: list List-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, 20 Jan 2014 14:20:34 -0000 Author: cy Date: Mon Jan 20 14:20:33 2014 New Revision: 340398 URL: http://svnweb.freebsd.org/changeset/ports/340398 QAT: https://qat.redports.org/buildarchive/r340398/ Log: Update 3.5.2 --> 3.5.3 Submitted by: Peter Czanik (syslog-ng upline) Modified: head/sysutils/syslog-ng-devel/Makefile head/sysutils/syslog-ng-devel/distinfo head/sysutils/syslog-ng-devel/pkg-plist Modified: head/sysutils/syslog-ng-devel/Makefile ============================================================================== --- head/sysutils/syslog-ng-devel/Makefile Mon Jan 20 14:18:07 2014 (r340397) +++ head/sysutils/syslog-ng-devel/Makefile Mon Jan 20 14:20:33 2014 (r340398) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= syslog-ng -PORTVERSION= 3.5.2 +PORTVERSION= 3.5.3 CATEGORIES= sysutils PKGNAMESUFFIX= -devel DISTVERSION= $(PORTVERSION:S/a/alpha/:S/b/beta/:S/r/rc/) Modified: head/sysutils/syslog-ng-devel/distinfo ============================================================================== --- head/sysutils/syslog-ng-devel/distinfo Mon Jan 20 14:18:07 2014 (r340397) +++ head/sysutils/syslog-ng-devel/distinfo Mon Jan 20 14:20:33 2014 (r340398) @@ -1,2 +1,2 @@ -SHA256 (syslog-ng_3.5.2.tar.gz) = 7551d4fcc63fb3937dd6acbeb87ade71880c6b4689de98c527e724ec5ab9588e -SIZE (syslog-ng_3.5.2.tar.gz) = 3048740 +SHA256 (syslog-ng_3.5.3.tar.gz) = a349a1baa272e7b07fa4b0d6a85512e71dd946476ae12bc8f9c9ad64311164d0 +SIZE (syslog-ng_3.5.3.tar.gz) = 3049273 Modified: head/sysutils/syslog-ng-devel/pkg-plist ============================================================================== --- head/sysutils/syslog-ng-devel/pkg-plist Mon Jan 20 14:18:07 2014 (r340397) +++ head/sysutils/syslog-ng-devel/pkg-plist Mon Jan 20 14:20:33 2014 (r340398) @@ -106,7 +106,7 @@ include/syslog-ng/rewrite/rewrite-set.h include/syslog-ng/rewrite/rewrite-subst.h include/syslog-ng/rewrite/rewrite-expr-parser.h include/syslog-ng/template/templates.h -lib/libsyslog-ng-3.5.2.so +lib/libsyslog-ng-3.5.3.so lib/libsyslog-ng.la lib/libsyslog-ng.so lib/syslog-ng/libafamqp.la @@ -120,6 +120,8 @@ lib/syslog-ng/libafprog.so lib/syslog-ng/libafsocket-notls.la lib/syslog-ng/libafsocket-notls.so lib/syslog-ng/libafsocket.so +lib/syslog-ng/libafstomp.la +lib/syslog-ng/libafstomp.so lib/syslog-ng/libafuser.la lib/syslog-ng/libafuser.so lib/syslog-ng/libbasicfuncs.la @@ -132,6 +134,8 @@ lib/syslog-ng/libcsvparser.la lib/syslog-ng/libcsvparser.so lib/syslog-ng/libdbparser.la lib/syslog-ng/libdbparser.so +lib/syslog-ng/liblinux-kmsg-format.la +lib/syslog-ng/liblinux-kmsg-format.so lib/syslog-ng/libsyslog-ng-crypto.la lib/syslog-ng/libsyslog-ng-crypto.so lib/syslog-ng/libsyslogformat.la @@ -139,6 +143,11 @@ lib/syslog-ng/libsyslogformat.so lib/syslog-ng/libsystem-source.la lib/syslog-ng/libsystem-source.so libdata/pkgconfig/syslog-ng.pc +man/man1/loggen.1.gz +man/man1/pdbtool.1.gz +man/man1/syslog-ng-ctl.1.gz +man/man5/syslog-ng.conf.5.gz +man/man8/syslog-ng.8.gz sbin/syslog-ng sbin/syslog-ng-ctl share/include/scl/pacct/plugin.conf From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 14:28:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B3C9DAE; Mon, 20 Jan 2014 14:28:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4D624157F; Mon, 20 Jan 2014 14:28:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KES4Hg010139; Mon, 20 Jan 2014 14:28:04 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KES3rI010136; Mon, 20 Jan 2014 14:28:03 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401201428.s0KES3rI010136@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 20 Jan 2014 14:28:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340399 - head/security/bruteblock X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 14:28:04 -0000 Author: amdmi3 Date: Mon Jan 20 14:28:03 2014 New Revision: 340399 URL: http://svnweb.freebsd.org/changeset/ports/340399 QAT: https://qat.redports.org/buildarchive/r340399/ Log: - Support staging - Use new LIB_DEPENDS syntax Modified: head/security/bruteblock/Makefile head/security/bruteblock/pkg-plist Modified: head/security/bruteblock/Makefile ============================================================================== --- head/security/bruteblock/Makefile Mon Jan 20 14:20:33 2014 (r340398) +++ head/security/bruteblock/Makefile Mon Jan 20 14:28:03 2014 (r340399) @@ -11,40 +11,30 @@ MASTER_SITES= http://samm.kiev.ua/bruteb MAINTAINER= amdmi3@FreeBSD.org COMMENT= Software for blocking bruteforce attacks with ipfw -LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre PKGMESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message USE_RC_SUBR= bruteblockd -MAN8= bruteblock.8 CONFDIR= ${PREFIX}/etc/${PORTNAME} PORTDOCS= FAQ README CHANGES -NO_STAGE= yes -.include +OPTIONS_DEFINE= DOCS do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bruteblock ${PREFIX}/sbin/ - ${INSTALL_PROGRAM} ${WRKSRC}/bruteblockd ${PREFIX}/sbin/ - ${MKDIR} ${PREFIX}/etc/bruteblock + ${INSTALL_PROGRAM} ${WRKSRC}/bruteblock ${STAGEDIR}${PREFIX}/sbin/ + ${INSTALL_PROGRAM} ${WRKSRC}/bruteblockd ${STAGEDIR}${PREFIX}/sbin/ + ${MKDIR} ${STAGEDIR}${CONFDIR} .for file in ssh proftpd - ${INSTALL_DATA} ${WRKSRC}/etc/${file}.conf ${CONFDIR}/${file}.conf.dist - if [ ! -f ${CONFDIR}/${file}.conf ]; then \ - ${INSTALL_DATA} ${CONFDIR}/${file}.conf.dist ${CONFDIR}/${file}.conf; \ - fi + ${INSTALL_DATA} ${WRKSRC}/etc/${file}.conf ${STAGEDIR}${CONFDIR}/${file}.conf.dist +.endfor + ${INSTALL_MAN} ${WRKSRC}/doc/bruteblock.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/ + ${MKDIR} ${STAGEDIR}${DOCSDIR} +.for file in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${STAGEDIR}${DOCSDIR}/ .endfor - ${INSTALL_MAN} ${WRKSRC}/doc/bruteblock.8 ${PREFIX}/man/man8/ -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/doc/FAQ ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/doc/README ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/doc/CHANGES ${DOCSDIR}/ -.endif - -post-install: - @${CAT} ${PKGMESSAGE} .include Modified: head/security/bruteblock/pkg-plist ============================================================================== --- head/security/bruteblock/pkg-plist Mon Jan 20 14:20:33 2014 (r340398) +++ head/security/bruteblock/pkg-plist Mon Jan 20 14:28:03 2014 (r340399) @@ -6,4 +6,5 @@ etc/bruteblock/proftpd.conf.dist @unexec if cmp -s %D/etc/bruteblock/ssh.conf.dist %D/etc/bruteblock/ssh.conf; then rm -f %D/etc/bruteblock/ssh.conf; fi etc/bruteblock/ssh.conf.dist @exec if [ ! -f %B/ssh.conf ]; then cp -p %D/%F %B/ssh.conf; fi +man/man8/bruteblock.8.gz @dirrmtry etc/bruteblock From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 14:29:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A2B3E99; Mon, 20 Jan 2014 14:29:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 56A381593; Mon, 20 Jan 2014 14:29:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KET383010333; Mon, 20 Jan 2014 14:29:03 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KET2S2010328; Mon, 20 Jan 2014 14:29:02 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201401201429.s0KET2S2010328@svn.freebsd.org> From: Cy Schubert Date: Mon, 20 Jan 2014 14:29:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340400 - head/sysutils/syslog-ng X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 14:29:03 -0000 Author: cy Date: Mon Jan 20 14:29:02 2014 New Revision: 340400 URL: http://svnweb.freebsd.org/changeset/ports/340400 QAT: https://qat.redports.org/buildarchive/r340400/ Log: Update 3.4.6 --> 3.4.7 Submitted by: Peter Czanik (syslog-ng upline) Modified: head/sysutils/syslog-ng/Makefile head/sysutils/syslog-ng/distinfo head/sysutils/syslog-ng/pkg-plist Modified: head/sysutils/syslog-ng/Makefile ============================================================================== --- head/sysutils/syslog-ng/Makefile Mon Jan 20 14:28:03 2014 (r340399) +++ head/sysutils/syslog-ng/Makefile Mon Jan 20 14:29:02 2014 (r340400) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= syslog-ng -PORTVERSION= 3.4.6 +PORTVERSION= 3.4.7 CATEGORIES= sysutils DISTVERSION= $(PORTVERSION:S/a/alpha/:S/b/beta/:S/r/rc/) DISTFILES= syslog-ng_${DISTVERSION}.tar.gz Modified: head/sysutils/syslog-ng/distinfo ============================================================================== --- head/sysutils/syslog-ng/distinfo Mon Jan 20 14:28:03 2014 (r340399) +++ head/sysutils/syslog-ng/distinfo Mon Jan 20 14:29:02 2014 (r340400) @@ -1,2 +1,2 @@ -SHA256 (syslog-ng_3.4.6.tar.gz) = 9484abba03a91d093542996deef68b187186a037f4537606a35f548da0199133 -SIZE (syslog-ng_3.4.6.tar.gz) = 3202600 +SHA256 (syslog-ng_3.4.7.tar.gz) = 7b1114ff0bd9d2c52a8ce407f0f59102ea4123ff7efb3f84253961e0de6ac1b0 +SIZE (syslog-ng_3.4.7.tar.gz) = 3203894 Modified: head/sysutils/syslog-ng/pkg-plist ============================================================================== --- head/sysutils/syslog-ng/pkg-plist Mon Jan 20 14:28:03 2014 (r340399) +++ head/sysutils/syslog-ng/pkg-plist Mon Jan 20 14:29:02 2014 (r340400) @@ -86,7 +86,7 @@ include/syslog-ng/uuid.h include/syslog-ng/value-pairs.h include/syslog-ng/versioning.h include/syslog-ng/vptransform.h -lib/libsyslog-ng-3.4.6.so +lib/libsyslog-ng-3.4.7.so lib/libsyslog-ng.la lib/libsyslog-ng.so lib/syslog-ng/libafamqp.la From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 14:29:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC226F88; Mon, 20 Jan 2014 14:29:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 975E915A8; Mon, 20 Jan 2014 14:29:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KETubp010503; Mon, 20 Jan 2014 14:29:56 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KETuj9010501; Mon, 20 Jan 2014 14:29:56 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401201429.s0KETuj9010501@svn.freebsd.org> From: William Grzybowski Date: Mon, 20 Jan 2014 14:29:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340401 - head/www/py-flexget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 14:29:56 -0000 Author: wg Date: Mon Jan 20 14:29:55 2014 New Revision: 340401 URL: http://svnweb.freebsd.org/changeset/ports/340401 QAT: https://qat.redports.org/buildarchive/r340401/ Log: www/py-flexget: update to 1.2.54 Modified: head/www/py-flexget/Makefile head/www/py-flexget/distinfo Modified: head/www/py-flexget/Makefile ============================================================================== --- head/www/py-flexget/Makefile Mon Jan 20 14:29:02 2014 (r340400) +++ head/www/py-flexget/Makefile Mon Jan 20 14:29:55 2014 (r340401) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flexget -PORTVERSION= 1.2.27 +PORTVERSION= 1.2.54 PORTEPOCH= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP Modified: head/www/py-flexget/distinfo ============================================================================== --- head/www/py-flexget/distinfo Mon Jan 20 14:29:02 2014 (r340400) +++ head/www/py-flexget/distinfo Mon Jan 20 14:29:55 2014 (r340401) @@ -1,2 +1,2 @@ -SHA256 (FlexGet-1.2.27.tar.gz) = fcafd234ac75d3b50fa95abbe7c7c73aed0dd30686e81e5c683a6f4f8713109f -SIZE (FlexGet-1.2.27.tar.gz) = 910358 +SHA256 (FlexGet-1.2.54.tar.gz) = cb19d2ed58b3c27f474ec2b05103956d9d7e4850f429da6f00a859fc428f5fb7 +SIZE (FlexGet-1.2.54.tar.gz) = 920655 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 14:35:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8E0B207; Mon, 20 Jan 2014 14:35:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B3D36164E; Mon, 20 Jan 2014 14:35:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KEZAfr014058; Mon, 20 Jan 2014 14:35:10 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KEZ9Cf014047; Mon, 20 Jan 2014 14:35:09 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401201435.s0KEZ9Cf014047@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 20 Jan 2014 14:35:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340402 - in head/graphics/osg: . 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.17 Precedence: list List-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, 20 Jan 2014 14:35:10 -0000 Author: amdmi3 Date: Mon Jan 20 14:35:09 2014 New Revision: 340402 URL: http://svnweb.freebsd.org/changeset/ports/340402 QAT: https://qat.redports.org/buildarchive/r340402/ Log: - Update to 3.2.0 - Update MASTER_SITES - Add license [1] - Switch to outsource cmake build - Add missing NVTT, GTA and QT4 options - Remove ITK option - Some pathes were integrated upstream PR: 185227 [1] Submitted by: Hardy Schumacher [1] Added: head/graphics/osg/files/patch-CMakeModules-FindGTA.cmake (contents, props changed) head/graphics/osg/files/patch-src-osgPlugins-osc-osc-OscHostEndianess.h (contents, props changed) Deleted: head/graphics/osg/files/patch-include-OpenThreads-Atomic head/graphics/osg/files/patch-include-osg-Math head/graphics/osg/files/patch-libav07 head/graphics/osg/files/patch-libav9 head/graphics/osg/files/patch-src-OpenThreads-common-Atomic.cpp head/graphics/osg/files/patch-src-osgPlugins-ffmpeg-FFmpegDecoderAudio.cpp head/graphics/osg/files/patch-src-osgPlugins-xine-video__out__rgb.c Modified: head/graphics/osg/Makefile head/graphics/osg/distinfo head/graphics/osg/pkg-plist Modified: head/graphics/osg/Makefile ============================================================================== --- head/graphics/osg/Makefile Mon Jan 20 14:29:55 2014 (r340401) +++ head/graphics/osg/Makefile Mon Jan 20 14:35:09 2014 (r340402) @@ -2,16 +2,20 @@ # $FreeBSD$ PORTNAME= osg -PORTVERSION= 3.0.1 -PORTREVISION= 9 +PORTVERSION= 3.2.0 CATEGORIES= graphics -MASTER_SITES= http://www.openscenegraph.org/downloads/stable_releases/OpenSceneGraph-${PORTVERSION}/source/ \ +MASTER_SITES= http://trac.openscenegraph.org/downloads/developer_releases/ \ http://mirror.amdmi3.ru/distfiles/ DISTNAME= OpenSceneGraph-${PORTVERSION} MAINTAINER= amdmi3@FreeBSD.org COMMENT= C++ OpenGL scene graph library for real-time rendering +LICENSE= OSGPL +LICENSE_NAME= OpenSceneGraph Public License +LICENSE_FILE= ${WRKSRC}/LICENSE.txt +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ libpng.so:${PORTSDIR}/graphics/png \ libtiff.so:${PORTSDIR}/graphics/tiff @@ -19,27 +23,28 @@ LIB_DEPENDS= libjpeg.so:${PORTSDIR}/grap CONFLICTS= osg-devel-[0-9]* USE_ZIP= yes -USES= cmake pkgconfig +USES= cmake:outsource pkgconfig USE_GL= gl glu USE_XORG= x11 USE_LDCONFIG= yes PLIST_SUB= OSG_VERSION=${PORTVERSION} \ - OSG_SHLIBVER=80 \ - OPENTHREADS_VERSION=2.6.0 \ - OPENTHREADS_SHLIBVER=12 + OSG_SHLIBVER=100 \ + OPENTHREADS_VERSION=${PORTVERSION} \ + OPENTHREADS_SHLIBVER=13 PORTSCOUT= limitw:1,even -OPTIONS_DEFINE= CURL FREETYPE GDAL GIF INVENTOR JASPER XINE ITK \ - VNC OPENEXR FFMPEG SVG PDF XRANDR SDL +OPTIONS_DEFINE= CURL FREETYPE GDAL GIF INVENTOR JASPER XINE GTA \ + VNC OPENEXR FFMPEG SVG PDF SDL NVTT QT4 XRANDR OPTIONS_DEFAULT=FREETYPE GIF FFMPEG XRANDR GDAL_DESC= GDAL support INVENTOR_DESC= SGI OpenInventor support -ITK_DESC= InsightToolkit support +GTA_DESC= GTA file format support VNC_DESC= LibVNCServer support SDL_DESC= Use SDL (joystick support in present3d) +NVTT_DESC= Use NVidia texture tools OPTIONS_SUB= yes @@ -50,21 +55,27 @@ GIF_LIB_DEPENDS= libgif.so:${PORTSDIR}/g INVENTOR_LIB_DEPENDS= libInventor.so:${PORTSDIR}/graphics/inventor JASPER_LIB_DEPENDS= libjasper.so:${PORTSDIR}/graphics/jasper XINE_LIB_DEPENDS= libxine.so:${PORTSDIR}/multimedia/libxine -ITK_BUILD_DEPENDS= ${LOCALBASE}/lib/InsightToolkit/UseITK.cmake:${PORTSDIR}/science/InsightToolkit -ITK_RUN_DEPENDS= ${LOCALBASE}/lib/InsightToolkit/UseITK.cmake:${PORTSDIR}/science/InsightToolkit +GTA_LIB_DEPENDS= libgta.so:${PORTSDIR}/devel/libgta VNC_LIB_DEPENDS= libvncserver.so:${PORTSDIR}/net/libvncserver OPENEXR_LIB_DEPENDS= libIlmImf.so:${PORTSDIR}/graphics/OpenEXR FFMPEG_LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg SVG_LIB_DEPENDS= librsvg-2.so:${PORTSDIR}/graphics/librsvg2 PDF_LIB_DEPENDS= libpoppler-glib.so:${PORTSDIR}/graphics/poppler-glib +SDL_USE= SDL=sdl +NVTT_LIB_DEPENDS= libnvtt.so:${PORTSDIR}/graphics/nvidia-texture-tools XRANDR_CMAKE_ON= -DOSGVIEWER_USE_XRANDR:BOOL=ON XRANDR_CMAKE_OFF= -DOSGVIEWER_USE_XRANDR:BOOL=OFF +QT4_USE= QT4=corelib,gui,opengl,qmake_build,moc_build,uic_build,rcc_build +QT4_CMAKE_ON= -DOSG_USE_QT=ON +QT4_CMAKE_OFF= -DOSG_USE_QT=OFF .include # GUI toolkits are only needed for building examples, which are not even installed -FORCE_IGNORE= FLTK GLUT FOX Qt3 Qt4 wxWidgets OpenAL GtkGl # only for examples +FORCE_IGNORE= FLTK GLUT FOX Qt3 Qt5Widgets wxWidgets OpenAL GtkGl # only for examples FORCE_IGNORE+= COLLADA Performer OurDCMTK XUL FBX # not in ports +FORCE_IGNORE+= OpenVRML # ports version too old +FORCE_IGNORE+= ITK # ports version doesn't build on 10.x FORCE_REQUIRE= Threads OpenGL X11 JPEG PNG TIFF ZLIB # common & lightweight # options that affect FIND_PACKAGE @@ -104,20 +115,16 @@ FORCE_REQUIRE+= Jasper FORCE_IGNORE+= Jasper .endif -# broken (openvrml from ports is too old) -FORCE_IGNORE+= OpenVRML - .if ${PORT_OPTIONS:MXINE} FORCE_REQUIRE+= Xine .else FORCE_IGNORE+= Xine .endif -.if ${PORT_OPTIONS:MITK} -FORCE_REQUIRE+= ITK -CXXFLAGS+= -DVCL_CAN_STATIC_CONST_INIT_FLOAT=0 +.if ${PORT_OPTIONS:MGTA} +FORCE_REQUIRE+= GTA .else -FORCE_IGNORE+= ITK +FORCE_IGNORE+= GTA .endif .if ${PORT_OPTIONS:MVNC} @@ -140,11 +147,16 @@ FORCE_IGNORE+= FFmpeg .if ${PORT_OPTIONS:MSDL} FORCE_REQUIRE+= SDL -USE_SDL= sdl .else FORCE_IGNORE+= SDL .endif +.if ${PORT_OPTIONS:MNVTT} +FORCE_REQUIRE+= NVTT +.else +FORCE_IGNORE+= NVTT +.endif + # options that affect PKG_CHECK_MODULES .if ${PORT_OPTIONS:MSVG} FORCE_REQUIRE+= RSVG Modified: head/graphics/osg/distinfo ============================================================================== --- head/graphics/osg/distinfo Mon Jan 20 14:29:55 2014 (r340401) +++ head/graphics/osg/distinfo Mon Jan 20 14:35:09 2014 (r340402) @@ -1,2 +1,2 @@ -SHA256 (OpenSceneGraph-3.0.1.zip) = 0c1103574b0a5a27c7d68d43454f1bf9c0cea114a583c42637bc8eb47b1d8296 -SIZE (OpenSceneGraph-3.0.1.zip) = 6780282 +SHA256 (OpenSceneGraph-3.2.0.zip) = ceca56e58e9ba245d5f9d0661352ddf405a7cb105341a122c5541b69c0ce032e +SIZE (OpenSceneGraph-3.2.0.zip) = 7195748 Added: head/graphics/osg/files/patch-CMakeModules-FindGTA.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/osg/files/patch-CMakeModules-FindGTA.cmake Mon Jan 20 14:35:09 2014 (r340402) @@ -0,0 +1,25 @@ +--- CMakeModules/FindGTA.cmake.orig 2014-01-19 17:46:13.693927259 +0400 ++++ CMakeModules/FindGTA.cmake 2014-01-19 18:38:17.868997891 +0400 +@@ -8,16 +8,6 @@ + # correspond to the ./configure --prefix=$GTA_DIR + # used in building libgta. + +-INCLUDE(FindPkgConfig OPTIONAL) +- +-IF(PKG_CONFIG_FOUND) +- +- INCLUDE(FindPkgConfig) +- +- PKG_CHECK_MODULES(GTA gta) +- +-ELSE(PKG_CONFIG_FOUND) +- + FIND_PATH(GTA_INCLUDE_DIRS gta/gta.hpp + $ENV{GTA_DIR}/include + $ENV{GTA_DIR} +@@ -52,5 +42,3 @@ + IF(GTA_LIBRARIES AND GTA_INCLUDE_DIRS) + SET(GTA_FOUND "YES") + ENDIF(GTA_LIBRARIES AND GTA_INCLUDE_DIRS) +- +-ENDIF(PKG_CONFIG_FOUND) Added: head/graphics/osg/files/patch-src-osgPlugins-osc-osc-OscHostEndianess.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/osg/files/patch-src-osgPlugins-osc-osc-OscHostEndianess.h Mon Jan 20 14:35:09 2014 (r340402) @@ -0,0 +1,29 @@ +Index: src/osgPlugins/osc/osc/OscHostEndianness.h +=================================================================== +--- src/osgPlugins/osc/osc/OscHostEndianness.h (revision 13802) ++++ src/osgPlugins/osc/osc/OscHostEndianness.h (working copy) +@@ -60,6 +60,15 @@ + #else + #error Unknown machine endianness detected. + #endif ++ #elif defined(__FreeBSD__) ++ #include ++ #if (_BYTE_ORDER == _LITTLE_ENDIAN) ++ #define __LITTLE_ENDIAN__ ++ #elif (_BYTE_ORDER == _BIG_ENDIAN) ++ #define __BIG_ENDIAN__ ++ #else ++ #error Unknown machine endianness detected. ++ #endif + #endif + + #if defined(__LITTLE_ENDIAN__) +@@ -74,7 +83,7 @@ + + #else + +- #error please edit OSCHostEndianness.h to configure endianness ++ #error please edit OscHostEndianness.h to configure endianness + + #endif + Modified: head/graphics/osg/pkg-plist ============================================================================== --- head/graphics/osg/pkg-plist Mon Jan 20 14:29:55 2014 (r340401) +++ head/graphics/osg/pkg-plist Mon Jan 20 14:35:09 2014 (r340402) @@ -112,6 +112,7 @@ include/osg/OccluderNode include/osg/OcclusionQueryNode include/osg/OperationThread include/osg/PagedLOD +include/osg/PatchParameter include/osg/Plane include/osg/Point include/osg/PointSprite @@ -120,6 +121,7 @@ include/osg/PolygonOffset include/osg/PolygonStipple include/osg/Polytope include/osg/PositionAttitudeTransform +include/osg/PrimitiveRestartIndex include/osg/PrimitiveSet include/osg/Program include/osg/Projection @@ -127,6 +129,7 @@ include/osg/ProxyNode include/osg/Quat include/osg/Referenced include/osg/RenderInfo +include/osg/SampleMaski include/osg/Scissor include/osg/Sequence include/osg/ShadeModel @@ -157,6 +160,7 @@ include/osg/Texture2D include/osg/Texture2DArray include/osg/Texture2DMultisample include/osg/Texture3D +include/osg/TextureBuffer include/osg/TextureCubeMap include/osg/TextureRectangle include/osg/Timer @@ -171,18 +175,29 @@ include/osg/Vec2 include/osg/Vec2b include/osg/Vec2d include/osg/Vec2f +include/osg/Vec2i include/osg/Vec2s +include/osg/Vec2ub +include/osg/Vec2ui +include/osg/Vec2us include/osg/Vec3 include/osg/Vec3b include/osg/Vec3d include/osg/Vec3f +include/osg/Vec3i include/osg/Vec3s +include/osg/Vec3ub +include/osg/Vec3ui +include/osg/Vec3us include/osg/Vec4 include/osg/Vec4b include/osg/Vec4d include/osg/Vec4f +include/osg/Vec4i include/osg/Vec4s include/osg/Vec4ub +include/osg/Vec4ui +include/osg/Vec4us include/osg/Version include/osg/VertexProgram include/osg/View @@ -288,6 +303,7 @@ include/osgFX/Version include/osgGA/AnimationPathManipulator include/osgGA/CameraManipulator include/osgGA/CameraViewSwitchManipulator +include/osgGA/Device include/osgGA/DriveManipulator include/osgGA/EventQueue include/osgGA/EventVisitor @@ -382,9 +398,18 @@ include/osgParticle/range include/osgPresentation/AnimationMaterial include/osgPresentation/CompileSlideCallback include/osgPresentation/Export +include/osgPresentation/KeyEventHandler include/osgPresentation/PickEventHandler +include/osgPresentation/PropertyManager include/osgPresentation/SlideEventHandler include/osgPresentation/SlideShowConstructor +include/osgPresentation/Timeout +%%QT4%%include/osgQt/Export +%%QT4%%include/osgQt/GraphicsWindowQt +%%QT4%%include/osgQt/QFontImplementation +%%QT4%%include/osgQt/QGraphicsViewAdapter +%%QT4%%include/osgQt/QWebViewImage +%%QT4%%include/osgQt/QWidgetImage include/osgShadow/ConvexPolyhedron include/osgShadow/DebugShadowMap include/osgShadow/Export @@ -396,6 +421,7 @@ include/osgShadow/OccluderGeometry include/osgShadow/ParallelSplitShadowMap include/osgShadow/ProjectionShadowMap include/osgShadow/ShadowMap +include/osgShadow/ShadowSettings include/osgShadow/ShadowTechnique include/osgShadow/ShadowTexture include/osgShadow/ShadowVolume @@ -403,6 +429,7 @@ include/osgShadow/ShadowedScene include/osgShadow/SoftShadowMap include/osgShadow/StandardShadowMap include/osgShadow/Version +include/osgShadow/ViewDependentShadowMap include/osgShadow/ViewDependentShadowTechnique include/osgSim/BlinkSequence include/osgSim/ColorRange @@ -467,6 +494,7 @@ include/osgUtil/LineSegmentIntersector include/osgUtil/MeshOptimizers include/osgUtil/OperationArrayFunctor include/osgUtil/Optimizer +include/osgUtil/PerlinNoise include/osgUtil/PlaneIntersector include/osgUtil/PolytopeIntersector include/osgUtil/PositionalStateContainer @@ -493,6 +521,7 @@ include/osgUtil/Version include/osgViewer/CompositeViewer include/osgViewer/Export include/osgViewer/GraphicsWindow +include/osgViewer/Keystone include/osgViewer/Renderer include/osgViewer/Scene include/osgViewer/Version @@ -564,6 +593,9 @@ lib/libosgParticle.so.%%OSG_SHLIBVER%% lib/libosgPresentation.so lib/libosgPresentation.so.%%OSG_VERSION%% lib/libosgPresentation.so.%%OSG_SHLIBVER%% +%%QT4%%lib/libosgQt.so +%%QT4%%lib/libosgQt.so.%%OSG_VERSION%% +%%QT4%%lib/libosgQt.so.%%OSG_SHLIBVER%% lib/libosgShadow.so lib/libosgShadow.so.%%OSG_VERSION%% lib/libosgShadow.so.%%OSG_SHLIBVER%% @@ -608,7 +640,6 @@ lib/osgPlugins-%%OSG_VERSION%%/osgdb_dep lib/osgPlugins-%%OSG_VERSION%%/osgdb_deprecated_osgviewer.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_deprecated_osgvolume.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_deprecated_osgwidget.so -%%ITK%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_dicom.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_dot.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_dw.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_dxf.so @@ -616,24 +647,27 @@ lib/osgPlugins-%%OSG_VERSION%%/osgdb_dxf %%FFMPEG%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_ffmpeg.so %%FREETYPE%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_freetype.so %%GDAL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gdal.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_geo.so %%GIF%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gif.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_glsl.so +%%GTA%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gta.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_gz.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_hdr.so %%INVENTOR%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_iv.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_ive.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_jpeg.so %%JASPER%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_jp2.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_ktx.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_logo.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_lwo.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_lws.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_md2.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_mdl.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_normals.so +%%NVTT%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_nvtt.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_obj.so %%GDAL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_ogr.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_openflight.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osc.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_osg.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_osga.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgshadow.so @@ -648,6 +682,7 @@ lib/osgPlugins-%%OSG_VERSION%%/osgdb_png lib/osgPlugins-%%OSG_VERSION%%/osgdb_pnm.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_pov.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_pvr.so +%%QT4%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_qfont.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_revisions.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_rgb.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_rot.so @@ -655,13 +690,16 @@ lib/osgPlugins-%%OSG_VERSION%%/osgdb_sca lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osg.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osganimation.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgfx.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgga.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgmanipulator.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgparticle.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgshadow.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgsim.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgterrain.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgtext.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgviewer.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgvolume.so +%%SDL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_sdl.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_shp.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_stl.so %%SVG%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_svg.so @@ -669,6 +707,7 @@ lib/osgPlugins-%%OSG_VERSION%%/osgdb_tga lib/osgPlugins-%%OSG_VERSION%%/osgdb_tgz.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_tiff.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_trans.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_trk.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_txf.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_txp.so %%VNC%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_vnc.so @@ -683,6 +722,7 @@ libdata/pkgconfig/openscenegraph-osgFX.p libdata/pkgconfig/openscenegraph-osgGA.pc libdata/pkgconfig/openscenegraph-osgManipulator.pc libdata/pkgconfig/openscenegraph-osgParticle.pc +%%QT4%%libdata/pkgconfig/openscenegraph-osgQt.pc libdata/pkgconfig/openscenegraph-osgShadow.pc libdata/pkgconfig/openscenegraph-osgSim.pc libdata/pkgconfig/openscenegraph-osgTerrain.pc @@ -704,6 +744,7 @@ libdata/pkgconfig/openthreads.pc @dirrm include/osgTerrain @dirrm include/osgSim @dirrm include/osgShadow +%%QT4%%@dirrm include/osgQt @dirrm include/osgPresentation @dirrm include/osgParticle @dirrm include/osgManipulator From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 14:35:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id BC328209; Mon, 20 Jan 2014 14:35:16 +0000 (UTC) Date: Mon, 20 Jan 2014 14:35:16 +0000 From: Alexey Dokuchaev To: Mathieu Arnold Subject: Re: svn commit: r340396 - head/mail/spampd Message-ID: <20140120143516.GA43531@FreeBSD.org> References: <201401201344.s0KDiZdu092687@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401201344.s0KDiZdu092687@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 20 Jan 2014 14:35:16 -0000 On Mon, Jan 20, 2014 at 01:44:35PM +0000, Mathieu Arnold wrote: > New Revision: 340396 > URL: http://svnweb.freebsd.org/changeset/ports/340396 > QAT: https://qat.redports.org/buildarchive/r340396/ > > -NO_STAGE= yes > do-install: > - @${INSTALL_SCRIPT} ${WRKSRC}/spampd ${PREFIX}/sbin > + @${INSTALL_SCRIPT} ${WRKSRC}/spampd ${STAGEDIR}${PREFIX}/sbin It would be nice if you unmute installation command next time you touch this port. ./danfe From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 14:48:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3018641; Mon, 20 Jan 2014 14:48:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8303A1750; Mon, 20 Jan 2014 14:48:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KEm7Wb018186; Mon, 20 Jan 2014 14:48:07 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KEm6RB018183; Mon, 20 Jan 2014 14:48:06 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401201448.s0KEm6RB018183@svn.freebsd.org> From: John Marino Date: Mon, 20 Jan 2014 14:48:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340403 - head/devel/ocaml-opam X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 14:48:07 -0000 Author: marino Date: Mon Jan 20 14:48:06 2014 New Revision: 340403 URL: http://svnweb.freebsd.org/changeset/ports/340403 QAT: https://qat.redports.org/buildarchive/r340403/ Log: devel/ocaml-opam: Update to versions from 1.0 to 1.1 This also has benefit of fixing the problem where a .conf file was created in ${HOME} which is illegal and the reason ocaml-opam never made it into dports. The original complaint of the PR could not be reproduced, however. PR: ports/180753 Fixed by: maintainer (Joris G.) Added: head/devel/ocaml-opam/pkg-plist (contents, props changed) Modified: head/devel/ocaml-opam/Makefile head/devel/ocaml-opam/distinfo Modified: head/devel/ocaml-opam/Makefile ============================================================================== --- head/devel/ocaml-opam/Makefile Mon Jan 20 14:35:09 2014 (r340402) +++ head/devel/ocaml-opam/Makefile Mon Jan 20 14:48:06 2014 (r340403) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= opam -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.0 CATEGORIES= devel MASTER_SITES= http://www.ocamlpro.com/pub/ PKGNAMEPREFIX= ocaml- @@ -15,31 +15,8 @@ LICENSE= GPLv3 BUILD_DEPENDS= curl:${PORTSDIR}/ftp/curl -USE_GMAKE= yes +USES= gmake USE_OCAML= yes GNU_CONFIGURE= yes -PLIST_FILES= bin/opam bin/opam-mk-repo - -MAN1= opam-check.1 \ - opam-remote.1 \ - opam-config.1 \ - opam-remove.1 \ - opam-help.1 \ - opam-repository.1 \ - opam-info.1 \ - opam-search.1 \ - opam-init.1 \ - opam-switch.1 \ - opam-install.1 \ - opam-update.1 \ - opam-list.1 \ - opam-upgrade.1 \ - opam-mk-repo.1 \ - opam-upload.1 \ - opam-pin.1 \ - opam.1 \ - opam-reinstall.1 - -NO_STAGE= yes .include Modified: head/devel/ocaml-opam/distinfo ============================================================================== --- head/devel/ocaml-opam/distinfo Mon Jan 20 14:35:09 2014 (r340402) +++ head/devel/ocaml-opam/distinfo Mon Jan 20 14:48:06 2014 (r340403) @@ -1,2 +1,2 @@ -SHA256 (opam-full-1.0.0.tar.gz) = e2504c044fb730451f2d728e2b24810798b1f1b0153917b21524ad807fbf8709 -SIZE (opam-full-1.0.0.tar.gz) = 2304000 +SHA256 (opam-full-1.1.0.tar.gz) = c0ab5e85b6cd26e533a40686e08aea173387d15bead817026f5b08f264642583 +SIZE (opam-full-1.1.0.tar.gz) = 2271477 Added: head/devel/ocaml-opam/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ocaml-opam/pkg-plist Mon Jan 20 14:48:06 2014 (r340403) @@ -0,0 +1,22 @@ +bin/opam +bin/opam-admin +man/man1/opam-admin-check.1.gz +man/man1/opam-admin-make.1.gz +man/man1/opam-admin.1.gz +man/man1/opam-check.1.gz +man/man1/opam-config.1.gz +man/man1/opam-help.1.gz +man/man1/opam-info.1.gz +man/man1/opam-init.1.gz +man/man1/opam-install.1.gz +man/man1/opam-list.1.gz +man/man1/opam-pin.1.gz +man/man1/opam-reinstall.1.gz +man/man1/opam-remote.1.gz +man/man1/opam-remove.1.gz +man/man1/opam-repository.1.gz +man/man1/opam-search.1.gz +man/man1/opam-switch.1.gz +man/man1/opam-update.1.gz +man/man1/opam-upgrade.1.gz +man/man1/opam.1.gz From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 15:12:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D09F3AC9; Mon, 20 Jan 2014 15:12:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A2CCA1969; Mon, 20 Jan 2014 15:12:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KFCN1D029352; Mon, 20 Jan 2014 15:12:23 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KFCNic029350; Mon, 20 Jan 2014 15:12:23 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401201512.s0KFCNic029350@svn.freebsd.org> From: John Marino Date: Mon, 20 Jan 2014 15:12:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340404 - 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.17 Precedence: list List-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, 20 Jan 2014 15:12:23 -0000 Author: marino Date: Mon Jan 20 15:12:23 2014 New Revision: 340404 URL: http://svnweb.freebsd.org/changeset/ports/340404 QAT: https://qat.redports.org/buildarchive/r340404/ Log: Mk/bsd.site.mk: Remove cs.pu.edu.tw addresses All the cs.pu.edu.tw addresses, http and ftp, have been down for at least three weeks. It doesn't appear to be a transient outage. Affects gcc, x, kde, openbsd, sourceware MASTER_SITES Modified: head/Mk/bsd.sites.mk Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Mon Jan 20 14:48:06 2014 (r340403) +++ head/Mk/bsd.sites.mk Mon Jan 20 15:12:23 2014 (r340404) @@ -454,7 +454,6 @@ MASTER_SITE_GCC+= \ http://robotlab.itk.ppke.hu/gcc/%SUBDIR%/ \ http://gcc.fyxm.net/%SUBDIR%/ \ http://gcc.igor.onlinedirect.bg/%SUBDIR%/ \ - http://ftp.cs.pu.edu.tw/Linux/sourceware/gcc/%SUBDIR%/ \ ftp://ftp.funet.fi/pub/mirrors/sources.redhat.com/pub/gcc/%SUBDIR%/ \ ftp://gcc.gnu.org/pub/gcc/%SUBDIR%/ \ ftp://ftp.lip6.fr/pub/gcc/%SUBDIR%/ \ @@ -707,7 +706,6 @@ MASTER_SITE_KDE+= \ http://ftp.heanet.ie/mirrors/ftp.kde.org/%SUBDIR%/ \ ftp://ftp.kddlabs.co.jp/pub/X11/kde/%SUBDIR%/ \ http://ftp.kddlabs.co.jp/pub/X11/kde/%SUBDIR%/ \ - http://ftp.cs.pu.edu.tw/pub/kde/%SUBDIR%/ \ http://kde.mirror.uber.com.au/%SUBDIR%/ \ ftp://ftp.ussg.iu.edu/pub/kde/%SUBDIR%/ \ http://ftp.ussg.iu.edu/kde/%SUBDIR%/ \ @@ -893,7 +891,6 @@ MASTER_SITE_OPENBSD+= \ http://ftp.chg.ru/pub/OpenBSD/%SUBDIR%/ \ http://ftp.arcane-networks.fr/pub/OpenBSD/%SUBDIR%/ \ http://ftp.netbsd.se/OpenBSD/%SUBDIR%/ \ - http://openbsd.cs.pu.edu.tw/%SUBDIR%/ \ http://www.mirrorservice.org/pub/OpenBSD/%SUBDIR%/ \ http://mirror.switch.ch/ftp/pub/OpenBSD/%SUBDIR%/ \ http://ftp.jaist.ac.jp/pub/OpenBSD/%SUBDIR%/ \ @@ -1169,7 +1166,6 @@ MASTER_SITE_SOURCEFORGE_JP+= \ MASTER_SITE_SOURCEWARE+= \ http://mirrors.kernel.org/sources.redhat.com/%SUBDIR%/ \ http://gd.tuwien.ac.at/gnu/sourceware/%SUBDIR%/ \ - http://ftp.cs.pu.edu.tw/Linux/sourceware/%SUBDIR%/ \ ftp://ftp.funet.fi/pub/mirrors/sources.redhat.com/pub/%SUBDIR%/ .endif @@ -1448,8 +1444,7 @@ MASTER_SITE_XORG+= \ http://mirror.de.leaseweb.net/xorg/%SUBDIR%/ \ http://mirrors.go-part.com/xorg/%SUBDIR%/ \ http://ftp.yz.yamagata-u.ac.jp/pub/X11/x.org/%SUBDIR%/ \ - http://ftp.kaist.ac.kr/x.org/%SUBDIR%/ \ - http://x.cs.pu.edu.tw/%SUBDIR%/ + http://ftp.kaist.ac.kr/x.org/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_KERNEL_ORG) From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 15:19:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4687BCA8; Mon, 20 Jan 2014 15:19:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 26AF819A9; Mon, 20 Jan 2014 15:19:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KFJMWp030403; Mon, 20 Jan 2014 15:19:22 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KFJLOR030399; Mon, 20 Jan 2014 15:19:21 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401201519.s0KFJLOR030399@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 20 Jan 2014 15:19:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340405 - in head/devel: . gitg gitg0 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 15:19:22 -0000 Author: amdmi3 Date: Mon Jan 20 15:19:20 2014 New Revision: 340405 URL: http://svnweb.freebsd.org/changeset/ports/340405 QAT: https://qat.redports.org/buildarchive/r340405/ Log: - As gitg is becoming more and more bloated with heavy gnome3 depends, resurrect lightweight gtk2 gitg version 0.0.8 as a separate port - Add mutual conflicts between gitg and gitg0 - While here, fix portlint warning in gitg Added: head/devel/gitg0/ - copied from r327723, head/devel/gitg/ Modified: head/devel/Makefile head/devel/gitg/Makefile head/devel/gitg0/Makefile head/devel/gitg0/pkg-plist Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jan 20 15:12:23 2014 (r340404) +++ head/devel/Makefile Mon Jan 20 15:19:20 2014 (r340405) @@ -554,6 +554,7 @@ SUBDIR += git-merge-changelog SUBDIR += git-review SUBDIR += git-subversion + SUBDIR += gitg0 SUBDIR += gitg SUBDIR += gitolite SUBDIR += gitolite2 Modified: head/devel/gitg/Makefile ============================================================================== --- head/devel/gitg/Makefile Mon Jan 20 15:12:23 2014 (r340404) +++ head/devel/gitg/Makefile Mon Jan 20 15:19:20 2014 (r340405) @@ -14,7 +14,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas RUN_DEPENDS= gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas \ - git>=1.7.0.2:${PORTSDIR}/devel/git + git:${PORTSDIR}/devel/git + +CONFLICTS= gitg0-[0-9]* USE_XZ= yes GNU_CONFIGURE= yes @@ -27,7 +29,7 @@ USES= gettext gmake pkgconfig pathfix INSTALLS_ICONS= yes GLIB_SCHEMAS= org.gnome.gitg.gschema.xml -LDFLAGS= -L${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= NLS OPTIONS_SUB= yes Modified: head/devel/gitg0/Makefile ============================================================================== --- head/devel/gitg/Makefile Fri Sep 20 17:04:43 2013 (r327723) +++ head/devel/gitg0/Makefile Mon Jan 20 15:19:20 2014 (r340405) @@ -3,27 +3,35 @@ PORTNAME= gitg PORTVERSION= 0.0.8 -PORTREVISION= 1 CATEGORIES= devel deskutils gnome MASTER_SITES= GNOME +PKGNAMESUFFIX= 0 MAINTAINER= amdmi3@FreeBSD.org -COMMENT= GTK-based git repository viewer +COMMENT= GTK-based git repository viewer (gtk2 version) LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= git>=1.7.0.2:${PORTSDIR}/devel/git +RUN_DEPENDS= git:${PORTSDIR}/devel/git + +CONFLICTS= gitg-[0-9]* USE_BZIP2= yes GNU_CONFIGURE= yes USE_GNOME= gconf2 gtk20 gtksourceview2 gnomehack -USES= gettext gmake pkgconfig +USES= gmake pkgconfig INSTALLS_ICONS= yes GCONF_SCHEMAS= gitg.schemas -MAN1= gitg.1 +PORTSCOUT= limit:^0\. + +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes + +NLS_USES= gettext +NLS_CONFIGURE_ENABLE=nls +NLS_CPPFLAGS= -I${LOCALBASE}/include +NLS_LDFLAGS= -L${LOCALBASE}/lib -NO_STAGE= yes .include Modified: head/devel/gitg0/pkg-plist ============================================================================== --- head/devel/gitg/pkg-plist Fri Sep 20 17:04:43 2013 (r327723) +++ head/devel/gitg0/pkg-plist Mon Jan 20 15:19:20 2014 (r340405) @@ -18,6 +18,7 @@ lib/libgitg-1.0.la lib/libgitg-1.0.so lib/libgitg-1.0.so.0 libdata/pkgconfig/libgitg-1.0.pc +man/man1/gitg.1.gz share/applications/gitg.desktop %%DATADIR%%/icons/gitg.svg %%DATADIR%%/icons/gitg128x128.png @@ -46,22 +47,22 @@ share/icons/hicolor/24x24/apps/gitg.png share/icons/hicolor/32x32/apps/gitg.png share/icons/hicolor/48x48/apps/gitg.png share/icons/hicolor/scalable/apps/gitg.svg -share/locale/da/LC_MESSAGES/gitg.mo -share/locale/de/LC_MESSAGES/gitg.mo -share/locale/en_GB/LC_MESSAGES/gitg.mo -share/locale/es/LC_MESSAGES/gitg.mo -share/locale/fr/LC_MESSAGES/gitg.mo -share/locale/gl/LC_MESSAGES/gitg.mo -share/locale/it/LC_MESSAGES/gitg.mo -share/locale/lt/LC_MESSAGES/gitg.mo -share/locale/nb/LC_MESSAGES/gitg.mo -share/locale/nl/LC_MESSAGES/gitg.mo -share/locale/pa/LC_MESSAGES/gitg.mo -share/locale/pt_BR/LC_MESSAGES/gitg.mo -share/locale/ro/LC_MESSAGES/gitg.mo -share/locale/sl/LC_MESSAGES/gitg.mo -share/locale/sv/LC_MESSAGES/gitg.mo -share/locale/zh_CN/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/da/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/de/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/es/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/fr/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/gl/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/it/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/lt/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/nb/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/nl/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/pa/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/ro/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/sl/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/sv/LC_MESSAGES/gitg.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/gitg.mo @dirrmtry share/icons/hicolor/scalable/apps @dirrmtry share/icons/hicolor/scalable @dirrmtry share/icons/hicolor/48x48/apps @@ -81,6 +82,5 @@ share/locale/zh_CN/LC_MESSAGES/gitg.mo @dirrm %%DATADIR%%/language-specs @dirrm %%DATADIR%%/icons @dirrm %%DATADIR%% -@dirrmtry share/applications @dirrm include/libgitg-1.0/libgitg @dirrm include/libgitg-1.0 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 15:45:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C128662; Mon, 20 Jan 2014 15:45:33 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DDA791D06; Mon, 20 Jan 2014 15:45:32 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 72548BDC5C; Mon, 20 Jan 2014 16:45:31 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 653FDBDC30; Mon, 20 Jan 2014 16:45:31 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 1AF21613F; Mon, 20 Jan 2014 16:45:30 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 8822D681B568; Mon, 20 Jan 2014 16:45:29 +0100 (CET) Date: Mon, 20 Jan 2014 16:45:29 +0100 From: Mathieu Arnold To: Alexey Dokuchaev Subject: Re: svn commit: r340396 - head/mail/spampd Message-ID: <46908ACA3E1C4CA6B93B2A39@ogg.in.absolight.net> In-Reply-To: <20140120143516.GA43531@FreeBSD.org> References: <201401201344.s0KDiZdu092687@svn.freebsd.org> <20140120143516.GA43531@FreeBSD.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline 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.17 Precedence: list List-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, 20 Jan 2014 15:45:33 -0000 +--On 20 janvier 2014 14:35:16 +0000 Alexey Dokuchaev wrote: | On Mon, Jan 20, 2014 at 01:44:35PM +0000, Mathieu Arnold wrote: |> New Revision: 340396 |> URL: http://svnweb.freebsd.org/changeset/ports/340396 |> QAT: https://qat.redports.org/buildarchive/r340396/ |> |> -NO_STAGE= yes |> do-install: |> - @${INSTALL_SCRIPT} ${WRKSRC}/spampd ${PREFIX}/sbin |> + @${INSTALL_SCRIPT} ${WRKSRC}/spampd ${STAGEDIR}${PREFIX}/sbin | | It would be nice if you unmute installation command next time you touch | this port. I doubt very much I'll ever re-touch that port, as it is staged now :-) -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 16:28:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 07846E4C; Mon, 20 Jan 2014 16:28:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E6D0E108A; Mon, 20 Jan 2014 16:28:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KGSwRx056897; Mon, 20 Jan 2014 16:28:58 GMT (envelope-from jpaetzel@svn.freebsd.org) Received: (from jpaetzel@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KGSwsM056896; Mon, 20 Jan 2014 16:28:58 GMT (envelope-from jpaetzel@svn.freebsd.org) Message-Id: <201401201628.s0KGSwsM056896@svn.freebsd.org> From: Josh Paetzel Date: Mon, 20 Jan 2014 16:28:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340406 - head/irc/epic5/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.17 Precedence: list List-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, 20 Jan 2014 16:28:59 -0000 Author: jpaetzel Date: Mon Jan 20 16:28:58 2014 New Revision: 340406 URL: http://svnweb.freebsd.org/changeset/ports/340406 QAT: https://qat.redports.org/buildarchive/r340406/ Log: Patch configure to DTRT with the optional ruby support Submitted by: zlonix Approved by: hop (code maintainer) Added: head/irc/epic5/files/patch-configure (contents, props changed) Added: head/irc/epic5/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/irc/epic5/files/patch-configure Mon Jan 20 16:28:58 2014 (r340406) @@ -0,0 +1,19 @@ +*** configure.orig 2013-09-25 01:07:24.000000000 +0400 +--- configure 2014-01-19 11:11:54.000000000 +0400 +*************** +*** 6262,6268 **** + fi + + # Check whether --with-ruby or --without-ruby was given. +! if test "${with_ruby+set}" = set; then + withval="$with_ruby" + + rubyexe=$withval +--- 6262,6268 ---- + fi + + # Check whether --with-ruby or --without-ruby was given. +! if test "${with_ruby+set}" = set -a "x$with_ruby" != "xyes"; then + withval="$with_ruby" + + rubyexe=$withval From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 16:54:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B78090A; Mon, 20 Jan 2014 16:54:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6713C132E; Mon, 20 Jan 2014 16:54:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KGs0N7067696; Mon, 20 Jan 2014 16:54:00 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KGs03f067695; Mon, 20 Jan 2014 16:54:00 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201654.s0KGs03f067695@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 16:54:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340407 - head/devel/rubygem-coffee-script X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 16:54:00 -0000 Author: sunpoet Date: Mon Jan 20 16:53:59 2014 New Revision: 340407 URL: http://svnweb.freebsd.org/changeset/ports/340407 QAT: https://qat.redports.org/buildarchive/r340407/ Log: - Add LICENSE Modified: head/devel/rubygem-coffee-script/Makefile Modified: head/devel/rubygem-coffee-script/Makefile ============================================================================== --- head/devel/rubygem-coffee-script/Makefile Mon Jan 20 16:28:58 2014 (r340406) +++ head/devel/rubygem-coffee-script/Makefile Mon Jan 20 16:53:59 2014 (r340407) @@ -10,6 +10,8 @@ MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby CoffeeScript is a bridge to the JS CoffeeScript compiler +LICENSE= MIT + RUN_DEPENDS= rubygem-coffee-script-source>=1.4.0:${PORTSDIR}/devel/rubygem-coffee-script-source \ rubygem-execjs>=0:${PORTSDIR}/devel/rubygem-execjs From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 16:55:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 309939F9; Mon, 20 Jan 2014 16:55:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1CC3F133D; Mon, 20 Jan 2014 16:55:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KGtAOg067972; Mon, 20 Jan 2014 16:55:10 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KGtAMu067971; Mon, 20 Jan 2014 16:55:10 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201655.s0KGtAMu067971@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 16:55:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340408 - head/devel/rubygem-execjs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 16:55:11 -0000 Author: sunpoet Date: Mon Jan 20 16:55:10 2014 New Revision: 340408 URL: http://svnweb.freebsd.org/changeset/ports/340408 QAT: https://qat.redports.org/buildarchive/r340408/ Log: - Add LICENSE Modified: head/devel/rubygem-execjs/Makefile Modified: head/devel/rubygem-execjs/Makefile ============================================================================== --- head/devel/rubygem-execjs/Makefile Mon Jan 20 16:53:59 2014 (r340407) +++ head/devel/rubygem-execjs/Makefile Mon Jan 20 16:55:10 2014 (r340408) @@ -9,6 +9,8 @@ MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= ExecJS lets you run JavaScript code from Ruby +LICENSE= MIT + RUN_DEPENDS= rubygem-multi_json>=1.0:${PORTSDIR}/devel/rubygem-multi_json USE_RUBY= yes From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 16:58:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BFC71C0A; Mon, 20 Jan 2014 16:58:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ABAE01371; Mon, 20 Jan 2014 16:58:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KGwScC068413; Mon, 20 Jan 2014 16:58:28 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KGwRMO068408; Mon, 20 Jan 2014 16:58:27 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201658.s0KGwRMO068408@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 16:58:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340409 - in head/www: . p5-Browser-Open X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 16:58:28 -0000 Author: sunpoet Date: Mon Jan 20 16:58:27 2014 New Revision: 340409 URL: http://svnweb.freebsd.org/changeset/ports/340409 QAT: https://qat.redports.org/buildarchive/r340409/ Log: - Add p5-Browser-Open 0.04 The functions optionaly exported by this module allows you to open URLs in the user browser. A set of known commands per OS-name is tested for presence, and the first one found is executed. With an optional parameter, all known commands are checked. The "open_browser" uses the system() function to execute the command. If you want more control, you can get the command with the "open_browser_cmd" or "open_browser_cmd_all" functions and then use whatever method you want to execute it. WWW: http://search.cpan.org/dist/Browser-Open/ Added: head/www/p5-Browser-Open/ head/www/p5-Browser-Open/Makefile (contents, props changed) head/www/p5-Browser-Open/distinfo (contents, props changed) head/www/p5-Browser-Open/pkg-descr (contents, props changed) head/www/p5-Browser-Open/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Jan 20 16:55:10 2014 (r340408) +++ head/www/Makefile Mon Jan 20 16:58:27 2014 (r340409) @@ -635,6 +635,7 @@ SUBDIR += p5-Ark SUBDIR += p5-Bigtop SUBDIR += p5-Blog-Spam + SUBDIR += p5-Browser-Open SUBDIR += p5-Business-PayPal SUBDIR += p5-CGI-Ajax SUBDIR += p5-CGI-Application Added: head/www/p5-Browser-Open/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Browser-Open/Makefile Mon Jan 20 16:58:27 2014 (r340409) @@ -0,0 +1,20 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Browser-Open +PORTVERSION= 0.04 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:CFRANKS +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Open a browser in a given URL + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USE_PERL5= configure +USES= perl5 + +.include Added: head/www/p5-Browser-Open/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Browser-Open/distinfo Mon Jan 20 16:58:27 2014 (r340409) @@ -0,0 +1,2 @@ +SHA256 (Browser-Open-0.04.tar.gz) = aceb3129782fe06e5b6e3e4b1a97e20c208426e5870ea67fb63b79188b056867 +SIZE (Browser-Open-0.04.tar.gz) = 4006 Added: head/www/p5-Browser-Open/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Browser-Open/pkg-descr Mon Jan 20 16:58:27 2014 (r340409) @@ -0,0 +1,12 @@ +The functions optionaly exported by this module allows you to open URLs in the +user browser. + +A set of known commands per OS-name is tested for presence, and the first one +found is executed. With an optional parameter, all known commands are checked. + +The "open_browser" uses the system() function to execute the command. If you +want more control, you can get the command with the "open_browser_cmd" or +"open_browser_cmd_all" functions and then use whatever method you want to +execute it. + +WWW: http://search.cpan.org/dist/Browser-Open/ Added: head/www/p5-Browser-Open/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Browser-Open/pkg-plist Mon Jan 20 16:58:27 2014 (r340409) @@ -0,0 +1,6 @@ +%%SITE_PERL%%/Browser/Open.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Browser/Open/.packlist +%%PERL5_MAN3%%/Browser::Open.3.gz +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Browser/Open +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Browser +@dirrmtry %%SITE_PERL%%/Browser From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:00:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 39297D43; Mon, 20 Jan 2014 17:00:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2574E141A; Mon, 20 Jan 2014 17:00:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH0wbT070868; Mon, 20 Jan 2014 17:00:58 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH0vgY070865; Mon, 20 Jan 2014 17:00:57 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201700.s0KH0vgY070865@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:00:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340410 - head/www/p5-App-Nopaste X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:00:58 -0000 Author: sunpoet Date: Mon Jan 20 17:00:57 2014 New Revision: 340410 URL: http://svnweb.freebsd.org/changeset/ports/340410 QAT: https://qat.redports.org/buildarchive/r340410/ Log: - Update to 0.94 - Sort *_DEPENDS - Add TEST_DEPENDS - Convert to new options helper Changes: http://search.cpan.org/dist/App-Nopaste/Changes Modified: head/www/p5-App-Nopaste/Makefile head/www/p5-App-Nopaste/distinfo (contents, props changed) Modified: head/www/p5-App-Nopaste/Makefile ============================================================================== --- head/www/p5-App-Nopaste/Makefile Mon Jan 20 16:58:27 2014 (r340409) +++ head/www/p5-App-Nopaste/Makefile Mon Jan 20 17:00:57 2014 (r340410) @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= App-Nopaste -PORTVERSION= 0.92 +PORTVERSION= 0.94 CATEGORIES= www perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:SARTAK +MASTER_SITE_SUBDIR= CPAN:ETHER PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org @@ -13,12 +13,16 @@ COMMENT= Easy access to any pastebin LICENSE= ART10 GPLv1 LICENSE_COMB= dual -BUILD_DEPENDS= p5-JSON>=0:${PORTSDIR}/converters/p5-JSON \ +BUILD_DEPENDS= p5-Browser-Open>=0:${PORTSDIR}/www/p5-Browser-Open \ p5-Class-Load>=0:${PORTSDIR}/devel/p5-Class-Load \ p5-Getopt-Long-Descriptive>=0:${PORTSDIR}/devel/p5-Getopt-Long-Descriptive \ + p5-JSON>=0:${PORTSDIR}/converters/p5-JSON \ p5-URI>=0:${PORTSDIR}/net/p5-URI \ p5-WWW-Mechanize>=0:${PORTSDIR}/www/p5-WWW-Mechanize RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww + +CONFLICTS= p5-WebService-NoPaste-[0-9]* OPTIONS_DEFINE= CLIPBOARD GITHUB PASTEBIN OPTIONS_DEFAULT=CLIPBOARD GITHUB PASTEBIN @@ -27,25 +31,13 @@ GITHUB_DESC= Support github.com PASTEBIN_DESC= Support pastebin.com USES= perl5 -USE_PERL5= configure - -CONFLICTS= p5-WebService-NoPaste-[0-9]* - -.include +USE_PERL5= modbuildtiny -.if ${PORT_OPTIONS:MCLIPBOARD} -BUILD_DEPENDS+= p5-Clipboard>=0:${PORTSDIR}/x11/p5-Clipboard -RUN_DEPENDS+= p5-Clipboard>=0:${PORTSDIR}/x11/p5-Clipboard -.endif - -.if ${PORT_OPTIONS:MGITHUB} -BUILD_DEPENDS+= p5-Config-GitLike>=0:${PORTSDIR}/devel/p5-Config-GitLike -RUN_DEPENDS+= p5-Config-GitLike>=0:${PORTSDIR}/devel/p5-Config-GitLike -.endif - -.if ${PORT_OPTIONS:MPASTEBIN} -BUILD_DEPENDS+= p5-WWW-Pastebin-PastebinCom-Create>=0:${PORTSDIR}/www/p5-WWW-Pastebin-PastebinCom-Create -RUN_DEPENDS+= p5-WWW-Pastebin-PastebinCom-Create>=0:${PORTSDIR}/www/p5-WWW-Pastebin-PastebinCom-Create -.endif +CLIPBOARD_BUILD_DEPENDS=p5-Clipboard>=0:${PORTSDIR}/x11/p5-Clipboard +CLIPBOARD_RUN_DEPENDS= p5-Clipboard>=0:${PORTSDIR}/x11/p5-Clipboard +GITHUB_BUILD_DEPENDS= p5-Config-GitLike>=0:${PORTSDIR}/devel/p5-Config-GitLike +GITHUB_RUN_DEPENDS= p5-Config-GitLike>=0:${PORTSDIR}/devel/p5-Config-GitLike +PASTEBIN_BUILD_DEPENDS= p5-WWW-Pastebin-PastebinCom-Create>=0:${PORTSDIR}/www/p5-WWW-Pastebin-PastebinCom-Create +PASTEBIN_RUN_DEPENDS= p5-WWW-Pastebin-PastebinCom-Create>=0:${PORTSDIR}/www/p5-WWW-Pastebin-PastebinCom-Create .include Modified: head/www/p5-App-Nopaste/distinfo ============================================================================== --- head/www/p5-App-Nopaste/distinfo Mon Jan 20 16:58:27 2014 (r340409) +++ head/www/p5-App-Nopaste/distinfo Mon Jan 20 17:00:57 2014 (r340410) @@ -1,2 +1,2 @@ -SHA256 (App-Nopaste-0.92.tar.gz) = 8a7d8b19662c96679a7844685d9833cd16a75c47683d8a68908b56a2cc2da211 -SIZE (App-Nopaste-0.92.tar.gz) = 42911 +SHA256 (App-Nopaste-0.94.tar.gz) = 166f7d966d89276aacf4fd3a1f1088f81d90b0123fc9543180efd770a1a535d8 +SIZE (App-Nopaste-0.94.tar.gz) = 38611 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:02:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F6C6E3E; Mon, 20 Jan 2014 17:02:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 120491436; Mon, 20 Jan 2014 17:02:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH2B4B071790; Mon, 20 Jan 2014 17:02:11 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH2BuP071788; Mon, 20 Jan 2014 17:02:11 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401201702.s0KH2BuP071788@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 17:02:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340411 - head/biology/iolib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:02:12 -0000 Author: bapt Date: Mon Jan 20 17:02:11 2014 New Revision: 340411 URL: http://svnweb.freebsd.org/changeset/ports/340411 QAT: https://qat.redports.org/buildarchive/r340411/ Log: Support stage Conver USE_GMAKE Modified: head/biology/iolib/Makefile head/biology/iolib/pkg-plist Modified: head/biology/iolib/Makefile ============================================================================== --- head/biology/iolib/Makefile Mon Jan 20 17:00:57 2014 (r340410) +++ head/biology/iolib/Makefile Mon Jan 20 17:02:11 2014 (r340411) @@ -11,24 +11,13 @@ MASTER_SITE_SUBDIR= staden/${PORTNAME}/$ MAINTAINER= culot@FreeBSD.org COMMENT= General purpose trace file (and Experiment File) reading interface -LICENSE= BSD +LICENSE= BSD3CLAUSE LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl +USES= gmake USE_AUTOTOOLS= libtool:env GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes -MAN1= scramble.1 srf_index_hash.1 srf_info.1 srf_list.1 \ - srf2fasta.1 srf2fastq.1 -MAN3= read_scf_header.3 read_allocate.3 ExperimentFile.3 \ - write_reading.3 write_scf.3 read_deallocate.3 \ - fwrite_reading.3 read2scf.3 scf2read.3 \ - fwrite_scf.3 write_scf_header.3 read_reading.3 \ - read_scf.3 exp2read.3 fread_reading.3 \ - read2exp.3 fread_scf.3 -MAN4= Read.4 - -NO_STAGE= yes .include Modified: head/biology/iolib/pkg-plist ============================================================================== --- head/biology/iolib/pkg-plist Mon Jan 20 17:00:57 2014 (r340410) +++ head/biology/iolib/pkg-plist Mon Jan 20 17:02:11 2014 (r340411) @@ -84,4 +84,28 @@ lib/libstaden-read.a lib/libstaden-read.la lib/libstaden-read.so lib/libstaden-read.so.3 +man/man1/scramble.1.gz +man/man1/srf2fasta.1.gz +man/man1/srf2fastq.1.gz +man/man1/srf_index_hash.1.gz +man/man1/srf_info.1.gz +man/man1/srf_list.1.gz +man/man3/ExperimentFile.3.gz +man/man3/exp2read.3.gz +man/man3/fread_reading.3.gz +man/man3/fread_scf.3.gz +man/man3/fwrite_reading.3.gz +man/man3/fwrite_scf.3.gz +man/man3/read2exp.3.gz +man/man3/read2scf.3.gz +man/man3/read_allocate.3.gz +man/man3/read_deallocate.3.gz +man/man3/read_reading.3.gz +man/man3/read_scf.3.gz +man/man3/read_scf_header.3.gz +man/man3/scf2read.3.gz +man/man3/write_reading.3.gz +man/man3/write_scf.3.gz +man/man3/write_scf_header.3.gz +man/man4/Read.4.gz @dirrm include/io_lib From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:02:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC3A9F19; Mon, 20 Jan 2014 17:02:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D70BA143C; Mon, 20 Jan 2014 17:02:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH2PcO071904; Mon, 20 Jan 2014 17:02:25 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH2P6w071902; Mon, 20 Jan 2014 17:02:25 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201702.s0KH2P6w071902@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:02:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340412 - head/converters/p5-JSON-Tiny X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:02:26 -0000 Author: sunpoet Date: Mon Jan 20 17:02:25 2014 New Revision: 340412 URL: http://svnweb.freebsd.org/changeset/ports/340412 QAT: https://qat.redports.org/buildarchive/r340412/ Log: - Update to 0.40 Changes: http://search.cpan.org/dist/JSON-Tiny/Changes Modified: head/converters/p5-JSON-Tiny/Makefile head/converters/p5-JSON-Tiny/distinfo Modified: head/converters/p5-JSON-Tiny/Makefile ============================================================================== --- head/converters/p5-JSON-Tiny/Makefile Mon Jan 20 17:02:11 2014 (r340411) +++ head/converters/p5-JSON-Tiny/Makefile Mon Jan 20 17:02:25 2014 (r340412) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= JSON-Tiny -PORTVERSION= 0.38 +PORTVERSION= 0.40 CATEGORIES= converters perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/converters/p5-JSON-Tiny/distinfo ============================================================================== --- head/converters/p5-JSON-Tiny/distinfo Mon Jan 20 17:02:11 2014 (r340411) +++ head/converters/p5-JSON-Tiny/distinfo Mon Jan 20 17:02:25 2014 (r340412) @@ -1,2 +1,2 @@ -SHA256 (JSON-Tiny-0.38.tar.gz) = 44648d784a26e0867abf3138823a1252d9e446384823ebcd0e5b859af11c6d2f -SIZE (JSON-Tiny-0.38.tar.gz) = 19897 +SHA256 (JSON-Tiny-0.40.tar.gz) = e5d7fa0d89cb2b462ec69d02a955bc8f8648714a12b2b30f6c21405fa2de2b6b +SIZE (JSON-Tiny-0.40.tar.gz) = 19651 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:02:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E2AB217; Mon, 20 Jan 2014 17:02:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A4DD1449; Mon, 20 Jan 2014 17:02:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH2jHq072275; Mon, 20 Jan 2014 17:02:45 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH2jsd072273; Mon, 20 Jan 2014 17:02:45 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201702.s0KH2jsd072273@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:02:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340416 - head/net/p5-Net-Whois-Raw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:02:45 -0000 Author: sunpoet Date: Mon Jan 20 17:02:44 2014 New Revision: 340416 URL: http://svnweb.freebsd.org/changeset/ports/340416 QAT: https://qat.redports.org/buildarchive/r340416/ Log: - Update to 2.51 - Sort *_DEPENDS Changes: http://search.cpan.org/dist/Net-Whois-Raw/Changes Modified: head/net/p5-Net-Whois-Raw/Makefile head/net/p5-Net-Whois-Raw/distinfo Modified: head/net/p5-Net-Whois-Raw/Makefile ============================================================================== --- head/net/p5-Net-Whois-Raw/Makefile Mon Jan 20 17:02:39 2014 (r340415) +++ head/net/p5-Net-Whois-Raw/Makefile Mon Jan 20 17:02:44 2014 (r340416) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-Whois-Raw -PORTVERSION= 2.48 +PORTVERSION= 2.51 CATEGORIES= net perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DESPAIR @@ -16,8 +16,8 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message \ p5-Net-IDN-Encode>=1:${PORTSDIR}/textproc/p5-Net-IDN-Encode \ - p5-URI>=0:${PORTSDIR}/net/p5-URI \ p5-Regexp-IPv6>=0:${PORTSDIR}/textproc/p5-Regexp-IPv6 \ + p5-URI>=0:${PORTSDIR}/net/p5-URI \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww RUN_DEPENDS:= ${BUILD_DEPENDS} Modified: head/net/p5-Net-Whois-Raw/distinfo ============================================================================== --- head/net/p5-Net-Whois-Raw/distinfo Mon Jan 20 17:02:39 2014 (r340415) +++ head/net/p5-Net-Whois-Raw/distinfo Mon Jan 20 17:02:44 2014 (r340416) @@ -1,2 +1,2 @@ -SHA256 (Net-Whois-Raw-2.48.tar.gz) = 83c9f258be089b79f02da69895ecf91c3a2a39e815c327343e1659d09d8e7237 -SIZE (Net-Whois-Raw-2.48.tar.gz) = 47710 +SHA256 (Net-Whois-Raw-2.51.tar.gz) = 9d0b370597d67ebd4f0ffd1e7eb0903f2fbe38535c564e8e94f0c8b57cb2f635 +SIZE (Net-Whois-Raw-2.51.tar.gz) = 50920 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:02:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2650EF1F; Mon, 20 Jan 2014 17:02:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ECFF21440; Mon, 20 Jan 2014 17:02:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH2U0A072006; Mon, 20 Jan 2014 17:02:30 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH2UH3072002; Mon, 20 Jan 2014 17:02:30 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201702.s0KH2UH3072002@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:02:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340413 - head/devel/p5-Exporter-Tiny X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:02:31 -0000 Author: sunpoet Date: Mon Jan 20 17:02:29 2014 New Revision: 340413 URL: http://svnweb.freebsd.org/changeset/ports/340413 QAT: https://qat.redports.org/buildarchive/r340413/ Log: - Update to 0.034 Changes: http://search.cpan.org/dist/Exporter-Tiny/Changes Modified: head/devel/p5-Exporter-Tiny/Makefile head/devel/p5-Exporter-Tiny/distinfo head/devel/p5-Exporter-Tiny/pkg-plist Modified: head/devel/p5-Exporter-Tiny/Makefile ============================================================================== --- head/devel/p5-Exporter-Tiny/Makefile Mon Jan 20 17:02:25 2014 (r340412) +++ head/devel/p5-Exporter-Tiny/Makefile Mon Jan 20 17:02:29 2014 (r340413) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Exporter-Tiny -PORTVERSION= 0.032 +PORTVERSION= 0.034 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Exporter-Tiny/distinfo ============================================================================== --- head/devel/p5-Exporter-Tiny/distinfo Mon Jan 20 17:02:25 2014 (r340412) +++ head/devel/p5-Exporter-Tiny/distinfo Mon Jan 20 17:02:29 2014 (r340413) @@ -1,2 +1,2 @@ -SHA256 (Exporter-Tiny-0.032.tar.gz) = ac32efeb018a2ac4b9586f99a3b1b396ef33d60533627b4bd435f8628ff3f0b6 -SIZE (Exporter-Tiny-0.032.tar.gz) = 24800 +SHA256 (Exporter-Tiny-0.034.tar.gz) = 7ecefcc241f37d3263935e8f9db583e896fee0093eace121cc2ecf283fada3ef +SIZE (Exporter-Tiny-0.034.tar.gz) = 25678 Modified: head/devel/p5-Exporter-Tiny/pkg-plist ============================================================================== --- head/devel/p5-Exporter-Tiny/pkg-plist Mon Jan 20 17:02:25 2014 (r340412) +++ head/devel/p5-Exporter-Tiny/pkg-plist Mon Jan 20 17:02:29 2014 (r340413) @@ -1,5 +1,7 @@ +%%SITE_PERL%%/Exporter/Shiny.pm %%SITE_PERL%%/Exporter/Tiny.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Exporter/Tiny/.packlist +%%PERL5_MAN3%%/Exporter::Shiny.3.gz %%PERL5_MAN3%%/Exporter::Tiny.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Exporter/Tiny @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Exporter From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:02:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1B25FDD; Mon, 20 Jan 2014 17:02:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E53E1443; Mon, 20 Jan 2014 17:02:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH2ZDu072098; Mon, 20 Jan 2014 17:02:35 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH2ZlG072095; Mon, 20 Jan 2014 17:02:35 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201702.s0KH2ZlG072095@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:02:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340414 - head/devel/p5-Cairo-GObject X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:02:35 -0000 Author: sunpoet Date: Mon Jan 20 17:02:34 2014 New Revision: 340414 URL: http://svnweb.freebsd.org/changeset/ports/340414 QAT: https://qat.redports.org/buildarchive/r340414/ Log: - Update to 1.004 Changes: http://search.cpan.org/dist/Cairo-GObject/NEWS Modified: head/devel/p5-Cairo-GObject/Makefile head/devel/p5-Cairo-GObject/distinfo Modified: head/devel/p5-Cairo-GObject/Makefile ============================================================================== --- head/devel/p5-Cairo-GObject/Makefile Mon Jan 20 17:02:29 2014 (r340413) +++ head/devel/p5-Cairo-GObject/Makefile Mon Jan 20 17:02:34 2014 (r340414) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Cairo-GObject -PORTVERSION= 1.003 +PORTVERSION= 1.004 CATEGORIES= devel graphics perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:XAOC Modified: head/devel/p5-Cairo-GObject/distinfo ============================================================================== --- head/devel/p5-Cairo-GObject/distinfo Mon Jan 20 17:02:29 2014 (r340413) +++ head/devel/p5-Cairo-GObject/distinfo Mon Jan 20 17:02:34 2014 (r340414) @@ -1,2 +1,2 @@ -SHA256 (Cairo-GObject-1.003.tar.gz) = f43ac382fe990570b2b396778a8ad78e8ebe3631e18acf051e52d796a3173ac1 -SIZE (Cairo-GObject-1.003.tar.gz) = 16595 +SHA256 (Cairo-GObject-1.004.tar.gz) = 3bb9d40e802e51f56f1364abc553758152131803c12d85ba6e14bad6813409d5 +SIZE (Cairo-GObject-1.004.tar.gz) = 16786 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:02:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57CDD2DB; Mon, 20 Jan 2014 17:02:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 44760144E; Mon, 20 Jan 2014 17:02:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH2o7p072365; Mon, 20 Jan 2014 17:02:50 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH2nNK072363; Mon, 20 Jan 2014 17:02:49 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201702.s0KH2nNK072363@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:02:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340417 - head/french/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.17 Precedence: list List-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, 20 Jan 2014 17:02:50 -0000 Author: sunpoet Date: Mon Jan 20 17:02:49 2014 New Revision: 340417 URL: http://svnweb.freebsd.org/changeset/ports/340417 QAT: https://qat.redports.org/buildarchive/r340417/ Log: - Update to 5.0.2 Modified: head/french/hunspell/Makefile head/french/hunspell/distinfo Modified: head/french/hunspell/Makefile ============================================================================== --- head/french/hunspell/Makefile Mon Jan 20 17:02:44 2014 (r340416) +++ head/french/hunspell/Makefile Mon Jan 20 17:02:49 2014 (r340417) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 5.0.1 +PORTVERSION= 5.0.2 CATEGORIES= french textproc MASTER_SITES= http://www.dicollecte.org/download/fr/ \ LOCAL/sunpoet/${PORTNAME} Modified: head/french/hunspell/distinfo ============================================================================== --- head/french/hunspell/distinfo Mon Jan 20 17:02:44 2014 (r340416) +++ head/french/hunspell/distinfo Mon Jan 20 17:02:49 2014 (r340417) @@ -1,2 +1,2 @@ -SHA256 (hunspell/hunspell-french-dictionaries-v5.0.1.zip) = 54b31884e31bc6837a1a0282ec6fdeff33660e6f7252e2ad27dfc2eb4331bbfb -SIZE (hunspell/hunspell-french-dictionaries-v5.0.1.zip) = 1405581 +SHA256 (hunspell/hunspell-french-dictionaries-v5.0.2.zip) = e76f98a3ff4bec907a2e19859293362d9c270eddd8daa08b79a4a96dccea9b13 +SIZE (hunspell/hunspell-french-dictionaries-v5.0.2.zip) = 1409496 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:02:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 731BF141; Mon, 20 Jan 2014 17:02:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F47C1446; Mon, 20 Jan 2014 17:02:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH2eBn072187; Mon, 20 Jan 2014 17:02:40 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH2eBc072183; Mon, 20 Jan 2014 17:02:40 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201702.s0KH2eBc072183@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:02:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340415 - head/devel/p5-Glib-Object-Introspection X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:02:40 -0000 Author: sunpoet Date: Mon Jan 20 17:02:39 2014 New Revision: 340415 URL: http://svnweb.freebsd.org/changeset/ports/340415 QAT: https://qat.redports.org/buildarchive/r340415/ Log: - Update to 0.019 Changes: http://search.cpan.org/dist/Glib-Object-Introspection/NEWS Modified: head/devel/p5-Glib-Object-Introspection/Makefile head/devel/p5-Glib-Object-Introspection/distinfo Modified: head/devel/p5-Glib-Object-Introspection/Makefile ============================================================================== --- head/devel/p5-Glib-Object-Introspection/Makefile Mon Jan 20 17:02:34 2014 (r340414) +++ head/devel/p5-Glib-Object-Introspection/Makefile Mon Jan 20 17:02:39 2014 (r340415) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Glib-Object-Introspection -PORTVERSION= 0.018 +PORTVERSION= 0.019 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Glib-Object-Introspection/distinfo ============================================================================== --- head/devel/p5-Glib-Object-Introspection/distinfo Mon Jan 20 17:02:34 2014 (r340414) +++ head/devel/p5-Glib-Object-Introspection/distinfo Mon Jan 20 17:02:39 2014 (r340415) @@ -1,2 +1,2 @@ -SHA256 (Glib-Object-Introspection-0.018.tar.gz) = 4a7c931540802fc6645b2d191c9c602de34f7266e393e28be5edaec336d95106 -SIZE (Glib-Object-Introspection-0.018.tar.gz) = 59603 +SHA256 (Glib-Object-Introspection-0.019.tar.gz) = 37fddff9639a0aca983c005ef5487ead5d16e453460a9e586a02d37840c71667 +SIZE (Glib-Object-Introspection-0.019.tar.gz) = 59668 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:02:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2FD473B1; Mon, 20 Jan 2014 17:02:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D2AD1452; Mon, 20 Jan 2014 17:02:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH2sZX072456; Mon, 20 Jan 2014 17:02:54 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH2sKC072454; Mon, 20 Jan 2014 17:02:54 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201702.s0KH2sKC072454@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:02:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340418 - 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.17 Precedence: list List-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, 20 Jan 2014 17:02:55 -0000 Author: sunpoet Date: Mon Jan 20 17:02:54 2014 New Revision: 340418 URL: http://svnweb.freebsd.org/changeset/ports/340418 QAT: https://qat.redports.org/buildarchive/r340418/ Log: - Update to 2014.01.19 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Mon Jan 20 17:02:49 2014 (r340417) +++ head/german/mythes/Makefile Mon Jan 20 17:02:54 2014 (r340418) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2014.01.05 +PORTVERSION= 2014.01.19 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Mon Jan 20 17:02:49 2014 (r340417) +++ head/german/mythes/distinfo Mon Jan 20 17:02:54 2014 (r340418) @@ -1,2 +1,2 @@ -SHA256 (mythes/Deutscher-Thesaurus-20140105.oxt) = ed97aac2f4e526b30058ab7136d57105145dd5bd5e47c7f88d16051fe7840374 -SIZE (mythes/Deutscher-Thesaurus-20140105.oxt) = 5220684 +SHA256 (mythes/Deutscher-Thesaurus-20140119.oxt) = 9a04d2459d7db426f8beea4b9cf358b669064d8cef7db27cef5a6cabc7049780 +SIZE (mythes/Deutscher-Thesaurus-20140119.oxt) = 5252391 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:03:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5ABB3616; Mon, 20 Jan 2014 17:03:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DD3061469; Mon, 20 Jan 2014 17:03:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH3AJe072748; Mon, 20 Jan 2014 17:03:10 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH3AeW072746; Mon, 20 Jan 2014 17:03:10 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201703.s0KH3AeW072746@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:03:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340421 - 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.17 Precedence: list List-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, 20 Jan 2014 17:03:11 -0000 Author: sunpoet Date: Mon Jan 20 17:03:10 2014 New Revision: 340421 URL: http://svnweb.freebsd.org/changeset/ports/340421 QAT: https://qat.redports.org/buildarchive/r340421/ Log: - Update to 2014.01.19 Modified: head/textproc/sl-mythes/Makefile head/textproc/sl-mythes/distinfo Modified: head/textproc/sl-mythes/Makefile ============================================================================== --- head/textproc/sl-mythes/Makefile Mon Jan 20 17:03:04 2014 (r340420) +++ head/textproc/sl-mythes/Makefile Mon Jan 20 17:03:10 2014 (r340421) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2014.01.05 +PORTVERSION= 2014.01.19 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sl- Modified: head/textproc/sl-mythes/distinfo ============================================================================== --- head/textproc/sl-mythes/distinfo Mon Jan 20 17:03:04 2014 (r340420) +++ head/textproc/sl-mythes/distinfo Mon Jan 20 17:03:10 2014 (r340421) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_sl_SI_v2-20140105.zip) = 403bef01c89244d208c258b31922157ab473c2aa8fec77e4c72d779253ef0b8a -SIZE (mythes/thes_sl_SI_v2-20140105.zip) = 346634 +SHA256 (mythes/thes_sl_SI_v2-20140119.zip) = 3d59388a729a751debe10bcfb6c81f83714725f20e87f0f4dffbff8c7db9f1cc +SIZE (mythes/thes_sl_SI_v2-20140119.zip) = 350120 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:03:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 851C37F3; Mon, 20 Jan 2014 17:03:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 714B21471; Mon, 20 Jan 2014 17:03:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH3SSi072868; Mon, 20 Jan 2014 17:03:28 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH3S7O072866; Mon, 20 Jan 2014 17:03:28 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201703.s0KH3S7O072866@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:03:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340422 - head/textproc/p5-JavaScript-Minifier X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:03:28 -0000 Author: sunpoet Date: Mon Jan 20 17:03:27 2014 New Revision: 340422 URL: http://svnweb.freebsd.org/changeset/ports/340422 QAT: https://qat.redports.org/buildarchive/r340422/ Log: - Update to 1.06 - Update LICENSE Changes: http://search.cpan.org/dist/JavaScript-Minifier/Changes Modified: head/textproc/p5-JavaScript-Minifier/Makefile head/textproc/p5-JavaScript-Minifier/distinfo (contents, props changed) Modified: head/textproc/p5-JavaScript-Minifier/Makefile ============================================================================== --- head/textproc/p5-JavaScript-Minifier/Makefile Mon Jan 20 17:03:10 2014 (r340421) +++ head/textproc/p5-JavaScript-Minifier/Makefile Mon Jan 20 17:03:27 2014 (r340422) @@ -2,17 +2,16 @@ # $FreeBSD$ PORTNAME= JavaScript-Minifier -PORTVERSION= 1.05 +PORTVERSION= 1.06 CATEGORIES= textproc perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:PMICHAUX +MASTER_SITE_SUBDIR= CPAN:ZOFFIX PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= JavaScript whitespace/comment eliminator -LICENSE= ART10 GPLv1 -LICENSE_COMB= dual +LICENSE= ART20 USES= perl5 USE_PERL5= configure Modified: head/textproc/p5-JavaScript-Minifier/distinfo ============================================================================== --- head/textproc/p5-JavaScript-Minifier/distinfo Mon Jan 20 17:03:10 2014 (r340421) +++ head/textproc/p5-JavaScript-Minifier/distinfo Mon Jan 20 17:03:27 2014 (r340422) @@ -1,2 +1,2 @@ -SHA256 (JavaScript-Minifier-1.05.tar.gz) = 83b0ce3d9aa21b9e9328ab4ffcf6ba57d0a13b2ef80d4bdb7888a804dfc236ae -SIZE (JavaScript-Minifier-1.05.tar.gz) = 7314 +SHA256 (JavaScript-Minifier-1.06.tar.gz) = 022c626877440cb7094e6b8dbe69d4390b80454185edfcdc35dfdfe982586c52 +SIZE (JavaScript-Minifier-1.06.tar.gz) = 13221 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:03:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD59345E; Mon, 20 Jan 2014 17:03:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 62B69145B; Mon, 20 Jan 2014 17:03:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH30AF072556; Mon, 20 Jan 2014 17:03:00 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH301p072548; Mon, 20 Jan 2014 17:03:00 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201703.s0KH301p072548@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:03:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340419 - 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.17 Precedence: list List-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, 20 Jan 2014 17:03:00 -0000 Author: sunpoet Date: Mon Jan 20 17:02:59 2014 New Revision: 340419 URL: http://svnweb.freebsd.org/changeset/ports/340419 QAT: https://qat.redports.org/buildarchive/r340419/ Log: - Update to 20140119 Modified: head/polish/hunspell/Makefile head/polish/hunspell/distinfo Modified: head/polish/hunspell/Makefile ============================================================================== --- head/polish/hunspell/Makefile Mon Jan 20 17:02:54 2014 (r340418) +++ head/polish/hunspell/Makefile Mon Jan 20 17:02:59 2014 (r340419) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 20140105 +PORTVERSION= 20140119 CATEGORIES= polish textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME} DISTNAME= sjp-myspell-pl-${PORTVERSION} Modified: head/polish/hunspell/distinfo ============================================================================== --- head/polish/hunspell/distinfo Mon Jan 20 17:02:54 2014 (r340418) +++ head/polish/hunspell/distinfo Mon Jan 20 17:02:59 2014 (r340419) @@ -1,2 +1,2 @@ -SHA256 (hunspell/sjp-myspell-pl-20140105.zip) = 5b83948678e1ea89f5fd645a07061396cb08bf7fd576970bc774361f4431e38a -SIZE (hunspell/sjp-myspell-pl-20140105.zip) = 1127272 +SHA256 (hunspell/sjp-myspell-pl-20140119.zip) = 95f579242076b35f9fd10eeb782b21f985f5641957275d47a9e770a50d477295 +SIZE (hunspell/sjp-myspell-pl-20140119.zip) = 1127278 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:03:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 429E153A; Mon, 20 Jan 2014 17:03:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9D8931462; Mon, 20 Jan 2014 17:03:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KH35nj072655; Mon, 20 Jan 2014 17:03:05 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KH35ga072651; Mon, 20 Jan 2014 17:03:05 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201703.s0KH35ga072651@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:03:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340420 - 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.17 Precedence: list List-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, 20 Jan 2014 17:03:06 -0000 Author: sunpoet Date: Mon Jan 20 17:03:04 2014 New Revision: 340420 URL: http://svnweb.freebsd.org/changeset/ports/340420 QAT: https://qat.redports.org/buildarchive/r340420/ Log: - Update to 2014.01.19 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Mon Jan 20 17:02:59 2014 (r340419) +++ head/textproc/sk-mythes/Makefile Mon Jan 20 17:03:04 2014 (r340420) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2014.01.05 +PORTVERSION= 2014.01.19 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Mon Jan 20 17:02:59 2014 (r340419) +++ head/textproc/sk-mythes/distinfo Mon Jan 20 17:03:04 2014 (r340420) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20140105.zip) = 637c7e8f4f0f56c7f2de6c84b9696a6bc7b5ba2a317cfe4bcccebc22eae05f73 -SIZE (mythes/OOo-Thesaurus2-sk_SK-20140105.zip) = 332466 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20140119.zip) = 2ef81f6c08dcf611f53698ce77f2f6e8398f7191ecef15b1b412316d6aaf745b +SIZE (mythes/OOo-Thesaurus2-sk_SK-20140119.zip) = 332466 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:11:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 31480A06; Mon, 20 Jan 2014 17:11:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1DBF41535; Mon, 20 Jan 2014 17:11:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHBYdj076741; Mon, 20 Jan 2014 17:11:34 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHBYDp076740; Mon, 20 Jan 2014 17:11:34 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201711.s0KHBYDp076740@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:11:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340423 - 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.17 Precedence: list List-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, 20 Jan 2014 17:11:35 -0000 Author: sunpoet Date: Mon Jan 20 17:11:34 2014 New Revision: 340423 URL: http://svnweb.freebsd.org/changeset/ports/340423 QAT: https://qat.redports.org/buildarchive/r340423/ Log: - Update LICENSE Modified: head/textproc/sk-mythes/Makefile Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Mon Jan 20 17:03:27 2014 (r340422) +++ head/textproc/sk-mythes/Makefile Mon Jan 20 17:11:34 2014 (r340423) @@ -12,7 +12,7 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Slovak thesaurus -LICENSE= BSD +LICENSE= MIT NO_BUILD= yes NO_WRKSUBDIR= yes From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:13:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93A92B1C; Mon, 20 Jan 2014 17:13:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F8711563; Mon, 20 Jan 2014 17:13:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHDtEk077128; Mon, 20 Jan 2014 17:13:55 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHDt1C077127; Mon, 20 Jan 2014 17:13:55 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201713.s0KHDt1C077127@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:13:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340424 - 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.17 Precedence: list List-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, 20 Jan 2014 17:13:55 -0000 Author: sunpoet Date: Mon Jan 20 17:13:54 2014 New Revision: 340424 URL: http://svnweb.freebsd.org/changeset/ports/340424 QAT: https://qat.redports.org/buildarchive/r340424/ Log: - Update LICENSE Modified: head/textproc/nl-mythes/Makefile Modified: head/textproc/nl-mythes/Makefile ============================================================================== --- head/textproc/nl-mythes/Makefile Mon Jan 20 17:11:34 2014 (r340423) +++ head/textproc/nl-mythes/Makefile Mon Jan 20 17:13:54 2014 (r340424) @@ -12,7 +12,7 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= office@FreeBSD.org COMMENT= Dutch thesaurus -LICENSE= BSD +LICENSE= BSD3CLAUSE NO_BUILD= yes NO_WRKSUBDIR= yes From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:24:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1ED1FEA; Mon, 20 Jan 2014 17:24:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 850621671; Mon, 20 Jan 2014 17:24:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHOaEc081116; Mon, 20 Jan 2014 17:24:36 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHOaNE081114; Mon, 20 Jan 2014 17:24:36 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201724.s0KHOaNE081114@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:24:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340426 - head/security/p5-Net-SSLeay X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:24:36 -0000 Author: sunpoet Date: Mon Jan 20 17:24:35 2014 New Revision: 340426 URL: http://svnweb.freebsd.org/changeset/ports/340426 QAT: https://qat.redports.org/buildarchive/r340426/ Log: - Update to 1.57 - Fix shebang - Simplify Makefile Changes: http://search.cpan.org/dist/Net-SSLeay/Changes Modified: head/security/p5-Net-SSLeay/Makefile head/security/p5-Net-SSLeay/distinfo Modified: head/security/p5-Net-SSLeay/Makefile ============================================================================== --- head/security/p5-Net-SSLeay/Makefile Mon Jan 20 17:24:30 2014 (r340425) +++ head/security/p5-Net-SSLeay/Makefile Mon Jan 20 17:24:35 2014 (r340426) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-SSLeay -PORTVERSION= 1.55 +PORTVERSION= 1.57 CATEGORIES= security perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -16,26 +16,18 @@ TEST_DEPENDS= p5-Test-Exception>=0:${POR OPTIONS_DEFINE= EXAMPLES -USES= perl5 -USE_PERL5= configure CONFIGURE_ENV= OPENSSL_PREFIX=${OPENSSLBASE} -REINPLACE_ARGS= -i '' +USES= perl5 shebangfix USE_OPENSSL= yes +USE_PERL5= configure PORTEXAMPLES= * -.include - -post-patch: -.if ${PORT_OPTIONS:MEXAMPLES} - @${REINPLACE_CMD} -e '1 s|/usr/bin/perl|${PERL}|' ${WRKSRC}/examples/*.pl -.endif +SHEBANG_FILES= examples/*.pl post-install: -.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/examples/req.conf ${STAGEDIR}${EXAMPLESDIR}/req.conf -.endif .include Modified: head/security/p5-Net-SSLeay/distinfo ============================================================================== --- head/security/p5-Net-SSLeay/distinfo Mon Jan 20 17:24:30 2014 (r340425) +++ head/security/p5-Net-SSLeay/distinfo Mon Jan 20 17:24:35 2014 (r340426) @@ -1,2 +1,2 @@ -SHA256 (Net-SSLeay-1.55.tar.gz) = 8cd5f09722e07b4e436102cb3a4b93623d753c171665ca9752c3b39a62ea3a79 -SIZE (Net-SSLeay-1.55.tar.gz) = 394657 +SHA256 (Net-SSLeay-1.57.tar.gz) = 660f42833982eeb23c45f46da28627c3fefd6efdb33a34480db6a925055dc682 +SIZE (Net-SSLeay-1.57.tar.gz) = 398797 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:24:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CE16FE7; Mon, 20 Jan 2014 17:24:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 67FAB166D; Mon, 20 Jan 2014 17:24:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHOVQo081032; Mon, 20 Jan 2014 17:24:31 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHOVBw081029; Mon, 20 Jan 2014 17:24:31 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201724.s0KHOVBw081029@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:24:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340425 - head/devel/p5-CPANPLUS-Dist-Build X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:24:31 -0000 Author: sunpoet Date: Mon Jan 20 17:24:30 2014 New Revision: 340425 URL: http://svnweb.freebsd.org/changeset/ports/340425 QAT: https://qat.redports.org/buildarchive/r340425/ Log: - Update to 0.76 Changes: http://search.cpan.org/dist/CPANPLUS-Dist-Build/Changes Modified: head/devel/p5-CPANPLUS-Dist-Build/Makefile head/devel/p5-CPANPLUS-Dist-Build/distinfo (contents, props changed) Modified: head/devel/p5-CPANPLUS-Dist-Build/Makefile ============================================================================== --- head/devel/p5-CPANPLUS-Dist-Build/Makefile Mon Jan 20 17:13:54 2014 (r340424) +++ head/devel/p5-CPANPLUS-Dist-Build/Makefile Mon Jan 20 17:24:30 2014 (r340425) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CPANPLUS-Dist-Build -PORTVERSION= 0.74 +PORTVERSION= 0.76 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-CPANPLUS-Dist-Build/distinfo ============================================================================== --- head/devel/p5-CPANPLUS-Dist-Build/distinfo Mon Jan 20 17:13:54 2014 (r340424) +++ head/devel/p5-CPANPLUS-Dist-Build/distinfo Mon Jan 20 17:24:30 2014 (r340425) @@ -1,2 +1,2 @@ -SHA256 (CPANPLUS-Dist-Build-0.74.tar.gz) = d5a96d8eb830ab9f9f7d4912ae0dfa305db62adbdf8a8fcb15434750ed4c8289 -SIZE (CPANPLUS-Dist-Build-0.74.tar.gz) = 48487 +SHA256 (CPANPLUS-Dist-Build-0.76.tar.gz) = 4d7683d8cdf7945c4dcc701214b3f1dbb07a4ae4f85b8b141e1d276eb8580fab +SIZE (CPANPLUS-Dist-Build-0.76.tar.gz) = 48715 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:24:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF3E920E; Mon, 20 Jan 2014 17:24:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA4441678; Mon, 20 Jan 2014 17:24:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHOixf081288; Mon, 20 Jan 2014 17:24:44 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHOiQE081286; Mon, 20 Jan 2014 17:24:44 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201724.s0KHOiQE081286@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:24:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340428 - head/databases/p5-Rose-DB-Object X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:24:45 -0000 Author: sunpoet Date: Mon Jan 20 17:24:44 2014 New Revision: 340428 URL: http://svnweb.freebsd.org/changeset/ports/340428 QAT: https://qat.redports.org/buildarchive/r340428/ Log: - Update to 0.810 Changes: http://search.cpan.org/dist/Rose-DB-Object/Changes Modified: head/databases/p5-Rose-DB-Object/Makefile head/databases/p5-Rose-DB-Object/distinfo Modified: head/databases/p5-Rose-DB-Object/Makefile ============================================================================== --- head/databases/p5-Rose-DB-Object/Makefile Mon Jan 20 17:24:39 2014 (r340427) +++ head/databases/p5-Rose-DB-Object/Makefile Mon Jan 20 17:24:44 2014 (r340428) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Rose-DB-Object -PORTVERSION= 0.8090 +PORTVERSION= 0.8100 PORTEPOCH= 1 CATEGORIES= databases perl5 MASTER_SITES= CPAN Modified: head/databases/p5-Rose-DB-Object/distinfo ============================================================================== --- head/databases/p5-Rose-DB-Object/distinfo Mon Jan 20 17:24:39 2014 (r340427) +++ head/databases/p5-Rose-DB-Object/distinfo Mon Jan 20 17:24:44 2014 (r340428) @@ -1,2 +1,2 @@ -SHA256 (Rose-DB-Object-0.809.tar.gz) = b88ca0dd4ba62485e816f8fd0f8d57f2ed5660fc659abb825c0ad32338ffe2c1 -SIZE (Rose-DB-Object-0.809.tar.gz) = 556854 +SHA256 (Rose-DB-Object-0.810.tar.gz) = 29ab9c8bf6b192a0b693716bdcfb5a4391a56b656f907efc4b3775f4ac57ddf6 +SIZE (Rose-DB-Object-0.810.tar.gz) = 556911 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:24:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD26614F; Mon, 20 Jan 2014 17:24:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A224C1675; Mon, 20 Jan 2014 17:24:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHOeL2081203; Mon, 20 Jan 2014 17:24:40 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHOeQ9081201; Mon, 20 Jan 2014 17:24:40 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201724.s0KHOeQ9081201@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:24:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340427 - head/databases/p5-Rose-DB X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:24:40 -0000 Author: sunpoet Date: Mon Jan 20 17:24:39 2014 New Revision: 340427 URL: http://svnweb.freebsd.org/changeset/ports/340427 QAT: https://qat.redports.org/buildarchive/r340427/ Log: - Update to 0.775 Changes: http://search.cpan.org/dist/Rose-DB/Changes Modified: head/databases/p5-Rose-DB/Makefile head/databases/p5-Rose-DB/distinfo Modified: head/databases/p5-Rose-DB/Makefile ============================================================================== --- head/databases/p5-Rose-DB/Makefile Mon Jan 20 17:24:35 2014 (r340426) +++ head/databases/p5-Rose-DB/Makefile Mon Jan 20 17:24:39 2014 (r340427) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Rose-DB -PORTVERSION= 0.774 +PORTVERSION= 0.775 PORTEPOCH= 1 CATEGORIES= databases perl5 MASTER_SITES= CPAN Modified: head/databases/p5-Rose-DB/distinfo ============================================================================== --- head/databases/p5-Rose-DB/distinfo Mon Jan 20 17:24:35 2014 (r340426) +++ head/databases/p5-Rose-DB/distinfo Mon Jan 20 17:24:39 2014 (r340427) @@ -1,2 +1,2 @@ -SHA256 (Rose-DB-0.774.tar.gz) = ee64680bf448cd766e15eaa6216f3dee48efba5f1e3a49d052441526bb89bbe0 -SIZE (Rose-DB-0.774.tar.gz) = 116116 +SHA256 (Rose-DB-0.775.tar.gz) = 0c43ff5eebbdf9241827d57e946c4f126fa0baf94d6d16a918204a81d5395165 +SIZE (Rose-DB-0.775.tar.gz) = 116327 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:25:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7AD48499; Mon, 20 Jan 2014 17:25:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 552AF1689; Mon, 20 Jan 2014 17:25:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHP2bY081677; Mon, 20 Jan 2014 17:25:02 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHP1VY081675; Mon, 20 Jan 2014 17:25:01 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201725.s0KHP1VY081675@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:25:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340432 - head/databases/p5-DBIx-Class-Schema-Loader X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:25:02 -0000 Author: sunpoet Date: Mon Jan 20 17:25:01 2014 New Revision: 340432 URL: http://svnweb.freebsd.org/changeset/ports/340432 QAT: https://qat.redports.org/buildarchive/r340432/ Log: - Update to 0.07039 Changes: http://search.cpan.org/dist/DBIx-Class-Schema-Loader/Changes Modified: head/databases/p5-DBIx-Class-Schema-Loader/Makefile head/databases/p5-DBIx-Class-Schema-Loader/distinfo Modified: head/databases/p5-DBIx-Class-Schema-Loader/Makefile ============================================================================== --- head/databases/p5-DBIx-Class-Schema-Loader/Makefile Mon Jan 20 17:24:57 2014 (r340431) +++ head/databases/p5-DBIx-Class-Schema-Loader/Makefile Mon Jan 20 17:25:01 2014 (r340432) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DBIx-Class-Schema-Loader -PORTVERSION= 0.07038 +PORTVERSION= 0.07039 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/databases/p5-DBIx-Class-Schema-Loader/distinfo ============================================================================== --- head/databases/p5-DBIx-Class-Schema-Loader/distinfo Mon Jan 20 17:24:57 2014 (r340431) +++ head/databases/p5-DBIx-Class-Schema-Loader/distinfo Mon Jan 20 17:25:01 2014 (r340432) @@ -1,2 +1,2 @@ -SHA256 (DBIx-Class-Schema-Loader-0.07038.tar.gz) = d4815465bcdb937efd18fd11b8633ea36a31ade2a0c8e973b3eb9fbe97f90ad1 -SIZE (DBIx-Class-Schema-Loader-0.07038.tar.gz) = 209774 +SHA256 (DBIx-Class-Schema-Loader-0.07039.tar.gz) = 53d440a7f3bc18a84dbda7db97197f546c91e82086835fd2757d54c4d19eeab3 +SIZE (DBIx-Class-Schema-Loader-0.07039.tar.gz) = 210927 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:24:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A1122D0; Mon, 20 Jan 2014 17:24:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6351A167F; Mon, 20 Jan 2014 17:24:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHOn9Y081372; Mon, 20 Jan 2014 17:24:49 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHOng3081370; Mon, 20 Jan 2014 17:24:49 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201724.s0KHOng3081370@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:24:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340429 - head/devel/p5-Test-CheckManifest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:24:49 -0000 Author: sunpoet Date: Mon Jan 20 17:24:48 2014 New Revision: 340429 URL: http://svnweb.freebsd.org/changeset/ports/340429 QAT: https://qat.redports.org/buildarchive/r340429/ Log: - Update to 1.28 - Remove unnecessary MASTER_SITE_SUBDIR - Add LICENSE Changes: http://search.cpan.org/dist/Test-CheckManifest/Changes Modified: head/devel/p5-Test-CheckManifest/Makefile head/devel/p5-Test-CheckManifest/distinfo (contents, props changed) Modified: head/devel/p5-Test-CheckManifest/Makefile ============================================================================== --- head/devel/p5-Test-CheckManifest/Makefile Mon Jan 20 17:24:44 2014 (r340428) +++ head/devel/p5-Test-CheckManifest/Makefile Mon Jan 20 17:24:48 2014 (r340429) @@ -2,15 +2,16 @@ # $FreeBSD$ PORTNAME= Test-CheckManifest -PORTVERSION= 1.26 +PORTVERSION= 1.28 CATEGORIES= devel perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= Test PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Check if your Manifest matches your distro +LICENSE= ART20 + USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Test-CheckManifest/distinfo ============================================================================== --- head/devel/p5-Test-CheckManifest/distinfo Mon Jan 20 17:24:44 2014 (r340428) +++ head/devel/p5-Test-CheckManifest/distinfo Mon Jan 20 17:24:48 2014 (r340429) @@ -1,2 +1,2 @@ -SHA256 (Test-CheckManifest-1.26.tar.gz) = 59a9e95791bb3428c1577b6f7709772c3d827f6c0fbc54d89127c2da42f76b03 -SIZE (Test-CheckManifest-1.26.tar.gz) = 10358 +SHA256 (Test-CheckManifest-1.28.tar.gz) = e869a1743af1a2208957de5ed674f6aab2876be0b5f00c63e4e4d83172d74fa1 +SIZE (Test-CheckManifest-1.28.tar.gz) = 9637 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:24:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63EFB3C2; Mon, 20 Jan 2014 17:24:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4A8731686; Mon, 20 Jan 2014 17:24:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHOwr2081555; Mon, 20 Jan 2014 17:24:58 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHOv45081553; Mon, 20 Jan 2014 17:24:57 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201724.s0KHOv45081553@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:24:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340431 - head/devel/p5-Module-Load X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:24:58 -0000 Author: sunpoet Date: Mon Jan 20 17:24:57 2014 New Revision: 340431 URL: http://svnweb.freebsd.org/changeset/ports/340431 QAT: https://qat.redports.org/buildarchive/r340431/ Log: - Update to 0.28 Changes: http://search.cpan.org/dist/Module-Load/CHANGES Modified: head/devel/p5-Module-Load/Makefile head/devel/p5-Module-Load/distinfo Modified: head/devel/p5-Module-Load/Makefile ============================================================================== --- head/devel/p5-Module-Load/Makefile Mon Jan 20 17:24:52 2014 (r340430) +++ head/devel/p5-Module-Load/Makefile Mon Jan 20 17:24:57 2014 (r340431) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Module-Load -PORTVERSION= 0.24 +PORTVERSION= 0.28 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Module-Load/distinfo ============================================================================== --- head/devel/p5-Module-Load/distinfo Mon Jan 20 17:24:52 2014 (r340430) +++ head/devel/p5-Module-Load/distinfo Mon Jan 20 17:24:57 2014 (r340431) @@ -1,2 +1,2 @@ -SHA256 (Module-Load-0.24.tar.gz) = da16ec02899d39e0e7aeeced876350fb530d811f3468a64298f085db8ca56a82 -SIZE (Module-Load-0.24.tar.gz) = 6089 +SHA256 (Module-Load-0.28.tar.gz) = 5b9a677535f7c695d1b20f22805eb12435edb2b645db1791501d9d6593801538 +SIZE (Module-Load-0.28.tar.gz) = 8311 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:24:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DD9F6380; Mon, 20 Jan 2014 17:24:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CBB3C1683; Mon, 20 Jan 2014 17:24:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHOr4k081470; Mon, 20 Jan 2014 17:24:53 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHOrJF081467; Mon, 20 Jan 2014 17:24:53 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201724.s0KHOrJF081467@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:24:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340430 - head/archivers/p5-Compress-LZW X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:24:55 -0000 Author: sunpoet Date: Mon Jan 20 17:24:52 2014 New Revision: 340430 URL: http://svnweb.freebsd.org/changeset/ports/340430 QAT: https://qat.redports.org/buildarchive/r340430/ Log: - Update to 0.02 - Add LICENSE Changes: https://github.com/merrilymeredith/p5-Compress-LZW/commits/master Modified: head/archivers/p5-Compress-LZW/Makefile head/archivers/p5-Compress-LZW/distinfo (contents, props changed) head/archivers/p5-Compress-LZW/pkg-plist (contents, props changed) Modified: head/archivers/p5-Compress-LZW/Makefile ============================================================================== --- head/archivers/p5-Compress-LZW/Makefile Mon Jan 20 17:24:48 2014 (r340429) +++ head/archivers/p5-Compress-LZW/Makefile Mon Jan 20 17:24:52 2014 (r340430) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Compress-LZW -PORTVERSION= 0.01 -PORTREVISION= 1 +PORTVERSION= 0.02 CATEGORIES= archivers perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,11 +10,15 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Pure perl implementation of LZW +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-Moo>=0:${PORTSDIR}/devel/p5-Moo \ + p5-namespace-clean>=0:${PORTSDIR}/devel/p5-namespace-clean \ + p5-strictures>=0:${PORTSDIR}/devel/p5-strictures +RUN_DEPENDS:= ${BUILD_DEPENDS} + USES= perl5 USE_PERL5= configure -post-patch: - @${REINPLACE_CMD} -i '' -e 's|\@hattmoward|\\@hattmoward|' \ - ${WRKSRC}/Makefile.PL - .include Modified: head/archivers/p5-Compress-LZW/distinfo ============================================================================== --- head/archivers/p5-Compress-LZW/distinfo Mon Jan 20 17:24:48 2014 (r340429) +++ head/archivers/p5-Compress-LZW/distinfo Mon Jan 20 17:24:52 2014 (r340430) @@ -1,2 +1,2 @@ -SHA256 (Compress-LZW-0.01.tar.gz) = baa1eaaf45b329898fcd5a79af3c468a5a727f944a0fff354f8727f30a72edf0 -SIZE (Compress-LZW-0.01.tar.gz) = 3106 +SHA256 (Compress-LZW-0.02.tar.gz) = 231d822edc7baa6b2cd5e2b79386740c86d0925cdcbdfe90716e74144b0e50d5 +SIZE (Compress-LZW-0.02.tar.gz) = 12455 Modified: head/archivers/p5-Compress-LZW/pkg-plist ============================================================================== --- head/archivers/p5-Compress-LZW/pkg-plist Mon Jan 20 17:24:48 2014 (r340429) +++ head/archivers/p5-Compress-LZW/pkg-plist Mon Jan 20 17:24:52 2014 (r340430) @@ -1,6 +1,11 @@ %%PERL5_MAN3%%/Compress::LZW.3.gz +%%PERL5_MAN3%%/Compress::LZW::Compressor.3.gz +%%PERL5_MAN3%%/Compress::LZW::Decompressor.3.gz %%SITE_PERL%%/Compress/LZW.pm +%%SITE_PERL%%/Compress/LZW/Compressor.pm +%%SITE_PERL%%/Compress/LZW/Decompressor.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/LZW/.packlist -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/LZW +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/LZW @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress +@dirrm %%SITE_PERL%%/Compress/LZW @dirrmtry %%SITE_PERL%%/Compress From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:25:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 464A0576; Mon, 20 Jan 2014 17:25:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 087551690; Mon, 20 Jan 2014 17:25:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHP8OG081772; Mon, 20 Jan 2014 17:25:08 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHP83p081770; Mon, 20 Jan 2014 17:25:08 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401201725.s0KHP83p081770@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Mon, 20 Jan 2014 17:25:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340433 - head/devel/rubygem-execjs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:25:09 -0000 Author: sunpoet Date: Mon Jan 20 17:25:08 2014 New Revision: 340433 URL: http://svnweb.freebsd.org/changeset/ports/340433 QAT: https://qat.redports.org/buildarchive/r340433/ Log: - Update to 2.0.2 Changes: https://github.com/sstephenson/execjs/commits/master Modified: head/devel/rubygem-execjs/Makefile head/devel/rubygem-execjs/distinfo (contents, props changed) Modified: head/devel/rubygem-execjs/Makefile ============================================================================== --- head/devel/rubygem-execjs/Makefile Mon Jan 20 17:25:01 2014 (r340432) +++ head/devel/rubygem-execjs/Makefile Mon Jan 20 17:25:08 2014 (r340433) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= execjs -PORTVERSION= 1.4.0 +PORTVERSION= 2.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-execjs/distinfo ============================================================================== --- head/devel/rubygem-execjs/distinfo Mon Jan 20 17:25:01 2014 (r340432) +++ head/devel/rubygem-execjs/distinfo Mon Jan 20 17:25:08 2014 (r340433) @@ -1,2 +1,2 @@ -SHA256 (rubygem/execjs-1.4.0.gem) = 9af5c2e89fe9742ea0e9c5acd675a7ea1e79f45109c511b3c68d2da74464c92c -SIZE (rubygem/execjs-1.4.0.gem) = 15360 +SHA256 (rubygem/execjs-2.0.2.gem) = 5a2e097ea0ae440cbbe6aebf54d83cf8596324fa85b7a725dfdb1e8afd5cf398 +SIZE (rubygem/execjs-2.0.2.gem) = 15872 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 17:56:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4595F72D; Mon, 20 Jan 2014 17:56:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 17F401939; Mon, 20 Jan 2014 17:56:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KHuJ04093801; Mon, 20 Jan 2014 17:56:19 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KHuJce093799; Mon, 20 Jan 2014 17:56:19 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401201756.s0KHuJce093799@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 17:56:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340434 - head/net/l2tpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 17:56:20 -0000 Author: mat Date: Mon Jan 20 17:56:19 2014 New Revision: 340434 URL: http://svnweb.freebsd.org/changeset/ports/340434 QAT: https://qat.redports.org/buildarchive/r340434/ Log: * Fix build on 10 * Stagify Sponsored by: Absolight Modified: head/net/l2tpd/Makefile head/net/l2tpd/pkg-plist Modified: head/net/l2tpd/Makefile ============================================================================== --- head/net/l2tpd/Makefile Mon Jan 20 17:25:08 2014 (r340433) +++ head/net/l2tpd/Makefile Mon Jan 20 17:56:19 2014 (r340434) @@ -10,11 +10,10 @@ MASTER_SITES= SF/${PORTNAME}/L2TPd/${POR MAINTAINER= sobomax@FreeBSD.org COMMENT= An implementation of the layer two tunneling protocol -MAN5= l2tp-secrets.5 l2tpd.conf.5 -MAN8= l2tpd.8 +USES= compiler:nestedfct -NO_STAGE= yes -.include +PORTDOCS= README +ETCDIR= ${PREFIX}/etc/l2tp do-configure: ${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/doc/l2tpd.8 \ @@ -22,16 +21,14 @@ do-configure: ${WRKSRC}/doc/l2tpd.conf.5 do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/l2tpd ${PREFIX}/bin -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif - ${INSTALL_MAN} ${WRKSRC}/doc/l2tpd.8 ${PREFIX}/man/man8 - ${INSTALL_MAN} ${WRKSRC}/doc/l2tp-secrets.5 ${PREFIX}/man/man5 - ${INSTALL_MAN} ${WRKSRC}/doc/l2tpd.conf.5 ${PREFIX}/man/man5 - ${MKDIR} ${PREFIX}/etc/l2tp - ${INSTALL_DATA} ${WRKSRC}/doc/l2tpd.conf.sample ${PREFIX}/etc/l2tp - ${INSTALL_DATA} ${WRKSRC}/doc/l2tp-secrets.sample ${PREFIX}/etc/l2tp + ${INSTALL_PROGRAM} ${WRKSRC}/l2tpd ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/doc/l2tpd.8 ${STAGEDIR}${PREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/doc/l2tp-secrets.5 ${STAGEDIR}${PREFIX}/man/man5 + ${INSTALL_MAN} ${WRKSRC}/doc/l2tpd.conf.5 ${STAGEDIR}${PREFIX}/man/man5 + @${MKDIR} ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/l2tpd.conf.sample ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/l2tp-secrets.sample ${STAGEDIR}${ETCDIR} -.include +.include Modified: head/net/l2tpd/pkg-plist ============================================================================== --- head/net/l2tpd/pkg-plist Mon Jan 20 17:25:08 2014 (r340433) +++ head/net/l2tpd/pkg-plist Mon Jan 20 17:56:19 2014 (r340434) @@ -1,6 +1,7 @@ bin/l2tpd -etc/l2tp/l2tp-secrets.sample -etc/l2tp/l2tpd.conf.sample -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm etc/l2tp +%%ETCDIR%%/l2tp-secrets.sample +%%ETCDIR%%/l2tpd.conf.sample +man/man5/l2tp-secrets.5.gz +man/man5/l2tpd.conf.5.gz +man/man8/l2tpd.8.gz +@dirrm %%ETCDIR%% From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:14:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34E41CE7; Mon, 20 Jan 2014 18:14:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 20DC51ABD; Mon, 20 Jan 2014 18:14:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KIEbbX002847; Mon, 20 Jan 2014 18:14:38 GMT (envelope-from dbn@svn.freebsd.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KIEb0u002843; Mon, 20 Jan 2014 18:14:37 GMT (envelope-from dbn@svn.freebsd.org) Message-Id: <201401201814.s0KIEb0u002843@svn.freebsd.org> From: David Naylor Date: Mon, 20 Jan 2014 18:14:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340435 - head/emulators/i386-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.17 Precedence: list List-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, 20 Jan 2014 18:14:38 -0000 Author: dbn Date: Mon Jan 20 18:14:37 2014 New Revision: 340435 URL: http://svnweb.freebsd.org/changeset/ports/340435 QAT: https://qat.redports.org/buildarchive/r340435/ Log: Update emulators/i386-wine-devel to 1.7.11. Modified: head/emulators/i386-wine-devel/Makefile.inc head/emulators/i386-wine-devel/distinfo head/emulators/i386-wine-devel/pkg-plist Modified: head/emulators/i386-wine-devel/Makefile.inc ============================================================================== --- head/emulators/i386-wine-devel/Makefile.inc Mon Jan 20 17:56:19 2014 (r340434) +++ head/emulators/i386-wine-devel/Makefile.inc Mon Jan 20 18:14:37 2014 (r340435) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -PORTVERSION= 1.7.10 +PORTVERSION= 1.7.11 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= LOCAL/dbn/repos/wine/${DIST_SUBDIR}/${PORTVERSION} Modified: head/emulators/i386-wine-devel/distinfo ============================================================================== --- head/emulators/i386-wine-devel/distinfo Mon Jan 20 17:56:19 2014 (r340434) +++ head/emulators/i386-wine-devel/distinfo Mon Jan 20 18:14:37 2014 (r340435) @@ -1,4 +1,4 @@ -SHA256 (freebsd:8:x86:64/i386-wine-devel-1.7.10,1.txz) = 320785a69bddc72daf14845892383661803338efd7f1e4bd53b27ab56c053d61 -SIZE (freebsd:8:x86:64/i386-wine-devel-1.7.10,1.txz) = 25519404 -SHA256 (freebsd:9:x86:64/i386-wine-devel-1.7.10,1.txz) = 47e2f8ee56889227e17657efcb5608e26acc04bed0499464fd0148e3b4335e9b -SIZE (freebsd:9:x86:64/i386-wine-devel-1.7.10,1.txz) = 25503228 +SHA256 (freebsd:8:x86:64/i386-wine-devel-1.7.11,1.txz) = 7239fe246403cc6f6e1316a0973ae14dcb11ef9f36291be22f8a06469a740685 +SIZE (freebsd:8:x86:64/i386-wine-devel-1.7.11,1.txz) = 25612604 +SHA256 (freebsd:9:x86:64/i386-wine-devel-1.7.11,1.txz) = 341cee96f07c4cc2957dca97c687ee5b23c862d1196c0d3c8b0bd187a87140cb +SIZE (freebsd:9:x86:64/i386-wine-devel-1.7.11,1.txz) = 25604864 Modified: head/emulators/i386-wine-devel/pkg-plist ============================================================================== --- head/emulators/i386-wine-devel/pkg-plist Mon Jan 20 17:56:19 2014 (r340434) +++ head/emulators/i386-wine-devel/pkg-plist Mon Jan 20 18:14:37 2014 (r340435) @@ -847,8 +847,16 @@ lib32/wine/actxprxy.dll.so lib32/wine/advapi32.dll.so lib32/wine/advpack.dll.so lib32/wine/amstream.dll.so +lib32/wine/api-ms-win-core-debug-l1-1-1.dll.so +lib32/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so +lib32/wine/api-ms-win-core-interlocked-l1-2-0.dll.so lib32/wine/api-ms-win-core-localregistry-l1-1-0.dll.so lib32/wine/api-ms-win-core-processthreads-l1-1-0.dll.so +lib32/wine/api-ms-win-core-processthreads-l1-1-1.dll.so +lib32/wine/api-ms-win-core-profile-l1-1-0.dll.so +lib32/wine/api-ms-win-core-string-l1-1-0.dll.so +lib32/wine/api-ms-win-core-sysinfo-l1-2-0.dll.so +lib32/wine/api-ms-win-core-util-l1-1-0.dll.so lib32/wine/api-ms-win-core-winrt-error-l1-1-0.dll.so lib32/wine/api-ms-win-core-winrt-string-l1-1-0.dll.so lib32/wine/api-ms-win-downlevel-advapi32-l1-1-0.dll.so @@ -1013,8 +1021,16 @@ lib32/wine/fakedlls/actxprxy.dll lib32/wine/fakedlls/advapi32.dll lib32/wine/fakedlls/advpack.dll lib32/wine/fakedlls/amstream.dll +lib32/wine/fakedlls/api-ms-win-core-debug-l1-1-1.dll +lib32/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-1.dll +lib32/wine/fakedlls/api-ms-win-core-interlocked-l1-2-0.dll lib32/wine/fakedlls/api-ms-win-core-localregistry-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-processthreads-l1-1-0.dll +lib32/wine/fakedlls/api-ms-win-core-processthreads-l1-1-1.dll +lib32/wine/fakedlls/api-ms-win-core-profile-l1-1-0.dll +lib32/wine/fakedlls/api-ms-win-core-string-l1-1-0.dll +lib32/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-0.dll +lib32/wine/fakedlls/api-ms-win-core-util-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-winrt-error-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-core-winrt-string-l1-1-0.dll lib32/wine/fakedlls/api-ms-win-downlevel-advapi32-l1-1-0.dll From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:23:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 010AB113; Mon, 20 Jan 2014 18:23:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E120D1C81; Mon, 20 Jan 2014 18:23:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KINwbh007559; Mon, 20 Jan 2014 18:23:58 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KINwZm007558; Mon, 20 Jan 2014 18:23:58 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201823.s0KINwZm007558@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 18:23:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340436 - head/chinese/tin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 18:23:59 -0000 Author: antoine Date: Mon Jan 20 18:23:58 2014 New Revision: 340436 URL: http://svnweb.freebsd.org/changeset/ports/340436 QAT: https://qat.redports.org/buildarchive/r340436/ Log: Stage support Modified: head/chinese/tin/Makefile Modified: head/chinese/tin/Makefile ============================================================================== --- head/chinese/tin/Makefile Mon Jan 20 18:14:37 2014 (r340435) +++ head/chinese/tin/Makefile Mon Jan 20 18:23:58 2014 (r340436) @@ -15,7 +15,6 @@ EXTRA_PATCHES= ${.CURDIR}/files/patch-at MASTERDIR= ${.CURDIR}/../../news/tin post-patch: post-patch-zh -NO_STAGE= yes post-patch-zh: ${REINPLACE_CMD} -e 's,iso-8859-1,Big5,g' ${WRKSRC}/doc/tin.defaults From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:25:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C31E29E; Mon, 20 Jan 2014 18:25:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EC8AC1C99; Mon, 20 Jan 2014 18:25:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KIPfxx007875; Mon, 20 Jan 2014 18:25:41 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KIPfuD007874; Mon, 20 Jan 2014 18:25:41 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201401201825.s0KIPfuD007874@svn.freebsd.org> From: Jung-uk Kim Date: Mon, 20 Jan 2014 18:25:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340437 - head/sysutils/asusoled X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 18:25:42 -0000 Author: jkim Date: Mon Jan 20 18:25:41 2014 New Revision: 340437 URL: http://svnweb.freebsd.org/changeset/ports/340437 QAT: https://qat.redports.org/buildarchive/r340437/ Log: Fix DOCS option broken by r340332. Pointyhat to: bapt Modified: head/sysutils/asusoled/Makefile Modified: head/sysutils/asusoled/Makefile ============================================================================== --- head/sysutils/asusoled/Makefile Mon Jan 20 18:23:58 2014 (r340436) +++ head/sysutils/asusoled/Makefile Mon Jan 20 18:25:41 2014 (r340437) @@ -1,4 +1,3 @@ -# Created by: Jung-uk Kim # $FreeBSD$ PORTNAME= asusoled @@ -29,13 +28,17 @@ FONTDIR?= ${LOCALBASE}/lib/X11/fonts OPTIONS_DEFINE= DOCS +.include + do-install: @${INSTALL_PROGRAM} ${WRKSRC}/asusoled ${STAGEDIR}${PREFIX}/sbin @${MKDIR} ${STAGEDIR}${DATADIR} .for i in ${PORTDATA} @${INSTALL_DATA} ${WRKSRC}/data/${i} ${STAGEDIR}${DATADIR} .endfor +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} @${INSTALL_DATA} ${PKGMESSAGE} ${STAGEDIR}${DOCSDIR}/README.FreeBSD +.endif .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:28:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B4E93C3; Mon, 20 Jan 2014 18:28:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 76FAE1CB8; Mon, 20 Jan 2014 18:28:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KISqfS008241; Mon, 20 Jan 2014 18:28:52 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KISq0M008240; Mon, 20 Jan 2014 18:28:52 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201828.s0KISq0M008240@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 18:28:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340438 - head/comms/hcidump X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 18:28:52 -0000 Author: antoine Date: Mon Jan 20 18:28:51 2014 New Revision: 340438 URL: http://svnweb.freebsd.org/changeset/ports/340438 QAT: https://qat.redports.org/buildarchive/r340438/ Log: Stage support Modified: head/comms/hcidump/Makefile Modified: head/comms/hcidump/Makefile ============================================================================== --- head/comms/hcidump/Makefile Mon Jan 20 18:25:41 2014 (r340437) +++ head/comms/hcidump/Makefile Mon Jan 20 18:28:51 2014 (r340438) @@ -11,11 +11,9 @@ COMMENT= Bluetooth traffic dumper, simil LICENSE= GPLv2 +USES= uidfix WRKSRC= ${WRKDIR}/${PORTNAME} -MAN1= hcidump.1 -MANCOMPRESSED= yes -PLIST_FILES= bin/hcidump +PLIST_FILES= bin/hcidump man/man1/hcidump.1.gz -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:29:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B84DD4BA; Mon, 20 Jan 2014 18:29:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9815E1CC2; Mon, 20 Jan 2014 18:29:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KITpQG008429; Mon, 20 Jan 2014 18:29:51 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KITpJ0008427; Mon, 20 Jan 2014 18:29:51 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401201829.s0KITpJ0008427@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 18:29:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340439 - in head/security/snortsam: . 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.17 Precedence: list List-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, 20 Jan 2014 18:29:51 -0000 Author: mat Date: Mon Jan 20 18:29:50 2014 New Revision: 340439 URL: http://svnweb.freebsd.org/changeset/ports/340439 QAT: https://qat.redports.org/buildarchive/r340439/ Log: * Fix build on 10 * Support staging * General cleanup Sponsored by: Absolight Modified: head/security/snortsam/Makefile head/security/snortsam/files/pkg-install.in Modified: head/security/snortsam/Makefile ============================================================================== --- head/security/snortsam/Makefile Mon Jan 20 18:28:51 2014 (r340438) +++ head/security/snortsam/Makefile Mon Jan 20 18:29:50 2014 (r340439) @@ -16,24 +16,17 @@ OPTIONS_DEFAULT= IPFW SAMTOOL IPFW_DESC= checks if configured tables are available SAMTOOL_DESC= install samtool -NO_STAGE= yes .include USE_RC_SUBR= snortsam SUB_FILES= pkg-message \ pkg-install -HAS_CONFIGURE= yes -NO_BUILD= yes -CONFIGURE_SCRIPT= src/Makefile - -CONFIG_DIR?= ${PREFIX}/etc/snortsam - PLIST_DIRS= etc/snortsam PLIST_FILES= sbin/snortsam \ - etc/snortsam/snortsam.conf.sample \ - etc/snortsam/country-rootservers.conf.sample \ - etc/snortsam/rootservers.cfg.sample + %%ETCDIR%%/snortsam.conf.sample \ + %%ETCDIR%%/country-rootservers.conf.sample \ + %%ETCDIR%%/rootservers.cfg.sample .if ${PORT_OPTIONS:MSAMTOOL} PLIST_FILES+= sbin/samtool @@ -52,40 +45,34 @@ EXTRA_PATCHES+= ${FILESDIR}/ssp_ipfw2_no DEBUG=-DDEBUG .endif +# This seems silly, but the RC file gets into ${WRKDIR}/${PORTNAME} which +# without this, would exist and be a directory. post-extract: @${MV} ${WRKDIR}/${PORTNAME} ${WRKSRC} -pre-configure: - @${REINPLACE_CMD} -e "s|/etc/snortsam.conf|${CONFIG_DIR}/snortsam.conf|g" ${WRKSRC}/conf/snortsam.conf.sample - @${REINPLACE_CMD} -e "s|/etc/snortsam.conf|${CONFIG_DIR}/snortsam.conf|g" ${WRKSRC}/docs/README.conf - @${REINPLACE_CMD} -e "s|/etc/snortsam.conf|${CONFIG_DIR}/snortsam.conf|g" ${WRKSRC}/src/snortsam.h - @${REINPLACE_CMD} -e "s|/etc/snortsam.conf|${CONFIG_DIR}/snortsam.conf|g" ${WRKSRC}/contrib/snortsam-state.c +post-patch: + @${REINPLACE_CMD} -e '/^CC/d' ${WRKSRC}/src/Makefile + @${REINPLACE_CMD} -e "s|/etc/snortsam.conf|${ETCDIR}/snortsam.conf|g" ${WRKSRC}/conf/snortsam.conf.sample + @${REINPLACE_CMD} -e "s|/etc/snortsam.conf|${ETCDIR}/snortsam.conf|g" ${WRKSRC}/docs/README.conf + @${REINPLACE_CMD} -e "s|/etc/snortsam.conf|${ETCDIR}/snortsam.conf|g" ${WRKSRC}/src/snortsam.h + @${REINPLACE_CMD} -e "s|/etc/snortsam.conf|${ETCDIR}/snortsam.conf|g" ${WRKSRC}/contrib/snortsam-state.c @${CHMOD} +x ${WRKSRC}/makesnortsam.sh -do-configure: +do-build: @cd ${WRKSRC}/src && ${MAKE} ${DEBUG} @cd ${WRKSRC}/src && ${MAKE} samtool ${DEBUG} -# no access to snortsam.conf and samtool for non root users! do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/snortsam ${PREFIX}/sbin -.if ${PORT_OPTIONS:MSAMTOOL} - @${INSTALL} -o root -g wheel -m 500 ${WRKSRC}/samtool ${PREFIX}/sbin -.endif - @${MKDIR} -m 700 ${CONFIG_DIR} - @${INSTALL_DATA} -m 600 ${WRKSRC}/conf/snortsam.conf.sample ${CONFIG_DIR}/snortsam.conf.sample - @${INSTALL_DATA} ${WRKSRC}/conf/rootservers.cfg ${CONFIG_DIR}/rootservers.cfg.sample - @${INSTALL_DATA} ${WRKSRC}/conf/country-rootservers.conf ${CONFIG_DIR}/country-rootservers.conf.sample + ${INSTALL_PROGRAM} ${WRKSRC}/snortsam ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/samtool ${STAGEDIR}${PREFIX}/sbin + @${MKDIR} ${STAGEDIR}${ETCDIR} + ${INSTALL_DATA} ${WRKSRC}/conf/snortsam.conf.sample ${STAGEDIR}${ETCDIR}/snortsam.conf.sample + ${INSTALL_DATA} ${WRKSRC}/conf/rootservers.cfg ${STAGEDIR}${ETCDIR}/rootservers.cfg.sample + ${INSTALL_DATA} ${WRKSRC}/conf/country-rootservers.conf ${STAGEDIR}${ETCDIR}/country-rootservers.conf.sample -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} - @${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/${f} ${STAGEDIR}${DOCSDIR} .endfor -.endif - -post-install: - @${SH} ${PKGINSTALL} ${DISTNAME} POST-INSTALL - @${CAT} ${PKGMESSAGE} .include Modified: head/security/snortsam/files/pkg-install.in ============================================================================== --- head/security/snortsam/files/pkg-install.in Mon Jan 20 18:28:51 2014 (r340438) +++ head/security/snortsam/files/pkg-install.in Mon Jan 20 18:29:50 2014 (r340439) @@ -3,15 +3,22 @@ # $FreeBSD$ ETCDIR=${ETCDIR:=%%ETCDIR%%} +PREFIX=${PREFIX:=%%PREFIX%%} # snortsam config file contain sensitive data like # passwords needed to block IP's on the firewalls. # Set permission of the config dir to 700 so only # root:wheel can access this directory. +# Also, samtool shouldn't be run by non root. if [ "$2" = "POST-INSTALL" ]; then if [ -d ${ETCDIR} ]; then /usr/sbin/chown root:wheel ${ETCDIR} /bin/chmod 700 ${ETCDIR} + /bin/chmod 600 ${ETCDIR}/snortsam.conf.sample + fi + if [ -x ${PREFIX}/sbin/samtool ] + then + /bin/chmod 500 ${PREFIX}/sbin/samtool fi fi From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:30:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A1155A0; Mon, 20 Jan 2014 18:30:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 468661D27; Mon, 20 Jan 2014 18:30:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KIUfZW010980; Mon, 20 Jan 2014 18:30:41 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KIUfqH010979; Mon, 20 Jan 2014 18:30:41 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401201830.s0KIUfqH010979@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 18:30:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340440 - head/security/snortsam/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.17 Precedence: list List-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, 20 Jan 2014 18:30:41 -0000 Author: mat Date: Mon Jan 20 18:30:40 2014 New Revision: 340440 URL: http://svnweb.freebsd.org/changeset/ports/340440 QAT: https://qat.redports.org/buildarchive/r340440/ Log: Add forgotten patch for fixing on 10. Sponsored by: Absolight Added: head/security/snortsam/files/patch-src__ssp_pf2.c (contents, props changed) Added: head/security/snortsam/files/patch-src__ssp_pf2.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/snortsam/files/patch-src__ssp_pf2.c Mon Jan 20 18:30:40 2014 (r340440) @@ -0,0 +1,11 @@ +--- ./src/ssp_pf2.c.orig 2009-11-27 02:39:40.000000000 +0100 ++++ ./src/ssp_pf2.c 2014-01-20 19:03:47.000000000 +0100 +@@ -95,7 +95,7 @@ + } + } + +- return; ++ return 0; + } + + From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:32:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3767A7DE; Mon, 20 Jan 2014 18:32:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 23A271D44; Mon, 20 Jan 2014 18:32:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KIWK1r011600; Mon, 20 Jan 2014 18:32:20 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KIWJSi011599; Mon, 20 Jan 2014 18:32:19 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201832.s0KIWJSi011599@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 18:32:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340442 - head/comms/mlan3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 18:32:20 -0000 Author: antoine Date: Mon Jan 20 18:32:19 2014 New Revision: 340442 URL: http://svnweb.freebsd.org/changeset/ports/340442 QAT: https://qat.redports.org/buildarchive/r340442/ Log: - Stage support - Get rid of infozip dependency Modified: head/comms/mlan3/Makefile Modified: head/comms/mlan3/Makefile ============================================================================== --- head/comms/mlan3/Makefile Mon Jan 20 18:30:56 2014 (r340441) +++ head/comms/mlan3/Makefile Mon Jan 20 18:32:19 2014 (r340442) @@ -6,12 +6,12 @@ PORTVERSION= 1.00 CATEGORIES= comms MASTER_SITES= ftp://ftp.dalsemi.com/pub/auto_id/public/ DISTNAME= owpd300b +EXTRACT_SUFX= .zip MAINTAINER= ports@FreeBSD.org COMMENT= Version 3.00 beta API for Dallas Semiconductors 1-wire lan devices NO_WRKSUBDIR= yes -USE_ZIP= yes +USES= uidfix -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:37:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C1A1B17; Mon, 20 Jan 2014 18:37:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3653F1D87; Mon, 20 Jan 2014 18:37:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KIbD6K012377; Mon, 20 Jan 2014 18:37:13 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KIbDb5012376; Mon, 20 Jan 2014 18:37:13 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201837.s0KIbDb5012376@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 18:37:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340444 - head/converters/gbase X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 18:37:13 -0000 Author: antoine Date: Mon Jan 20 18:37:12 2014 New Revision: 340444 URL: http://svnweb.freebsd.org/changeset/ports/340444 QAT: https://qat.redports.org/buildarchive/r340444/ Log: Stage support Modified: head/converters/gbase/Makefile Modified: head/converters/gbase/Makefile ============================================================================== --- head/converters/gbase/Makefile Mon Jan 20 18:33:14 2014 (r340443) +++ head/converters/gbase/Makefile Mon Jan 20 18:37:12 2014 (r340444) @@ -8,7 +8,7 @@ CATEGORIES= converters MASTER_SITES= http://www.fluxcode.net/files/ MAINTAINER= ports@FreeBSD.org -COMMENT= A program to convert between the 4 common bases used in programming +COMMENT= Program to convert between the 4 common bases used in programming LICENSE= ART10 @@ -17,7 +17,6 @@ OPTIONS_DEFINE= GTK2 PLIST_FILES= bin/${PORTNAME} USES= pkgconfig -NO_STAGE= yes .include .if ${PORT_OPTIONS:MGTK2} @@ -39,6 +38,6 @@ do-build: -o ${PORTNAME} ${GTK_LIBS} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:38:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06A27D3A; Mon, 20 Jan 2014 18:38:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E641E1D98; Mon, 20 Jan 2014 18:38:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KIcEtp012633; Mon, 20 Jan 2014 18:38:14 GMT (envelope-from gblach@svn.freebsd.org) Received: (from gblach@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KIcELW012628; Mon, 20 Jan 2014 18:38:14 GMT (envelope-from gblach@svn.freebsd.org) Message-Id: <201401201838.s0KIcELW012628@svn.freebsd.org> From: Grzegorz Blach Date: Mon, 20 Jan 2014 18:38:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340445 - in head/multimedia/mpv: . 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.17 Precedence: list List-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, 20 Jan 2014 18:38:15 -0000 Author: gblach Date: Mon Jan 20 18:38:14 2014 New Revision: 340445 URL: http://svnweb.freebsd.org/changeset/ports/340445 QAT: https://qat.redports.org/buildarchive/r340445/ Log: - Update to 0.3.3 - Fix build when devel/talloc is installed Added: head/multimedia/mpv/files/patch-wscript (contents, props changed) Deleted: head/multimedia/mpv/files/patch-waftools-checks-custom.py Modified: head/multimedia/mpv/Makefile head/multimedia/mpv/distinfo Modified: head/multimedia/mpv/Makefile ============================================================================== --- head/multimedia/mpv/Makefile Mon Jan 20 18:37:12 2014 (r340444) +++ head/multimedia/mpv/Makefile Mon Jan 20 18:38:14 2014 (r340445) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mpv -PORTVERSION= 0.3.2 +PORTVERSION= 0.3.3 PORTEPOCH= 1 CATEGORIES= multimedia audio MASTER_SITES= GH:0 GHC:0 https://waf.googlecode.com/files/:1 @@ -22,9 +22,9 @@ BUILD_DEPENDS= rst2man:${PORTSDIR}/textp USE_GITHUB= yes GH_ACCOUNT= mpv-player GH_TAGNAME= v${PORTVERSION} -GH_COMMIT= 6b20c24 +GH_COMMIT= d276f75 -WAF_VERSION= 1.7.14 +WAF_VERSION= 1.7.15 USES= compiler:c11 desktop-file-utils gmake iconv pkgconfig USE_PYTHON_BUILD= yes @@ -43,9 +43,10 @@ CONFIGURE_ARGS= --prefix=${PREFIX} \ OPTIONS_DEFINE= BS2B ENCA LADSPA LCMS2 LIRC OPTIONS_GROUP= IN VO AO -OPTIONS_GROUP_IN= CDIO DVDNAV LIBBLURAY V4L QUVI +OPTIONS_GROUP_IN= CDIO DVDNAV LIBBLURAY V4L QUVI SMB OPTIONS_GROUP_VO= CACA OPENGL VAAPI VDPAU XINERAMA OPTIONS_GROUP_AO= JACK PULSEAUDIO +OPTIONS_DEFAULT= SMB BS2B_DESC= Enable Bauer Stereophonic-to-Binaural DSP support DVDNAV_DESC= Enable DVD navigation menus support @@ -119,11 +120,11 @@ LIB_DEPENDS+= libquvi.so:${PORTSDIR}/mu CONFIGURE_ARGS+= --disable-libquvi .endif -#.if ${PORT_OPTIONS:MSMB} -#LIB_DEPENDS+= libsmbclient.so:${PORTSDIR}/net/samba-libsmbclient -#.else +.if ${PORT_OPTIONS:MSMB} +LIB_DEPENDS+= libsmbclient.so:${PORTSDIR}/net/samba-libsmbclient +.else CONFIGURE_ARGS+= --disable-libsmbclient -#.endif +.endif .if ${PORT_OPTIONS:MCACA} LIB_DEPENDS+= libcaca.so:${PORTSDIR}/graphics/libcaca Modified: head/multimedia/mpv/distinfo ============================================================================== --- head/multimedia/mpv/distinfo Mon Jan 20 18:37:12 2014 (r340444) +++ head/multimedia/mpv/distinfo Mon Jan 20 18:38:14 2014 (r340445) @@ -1,4 +1,4 @@ -SHA256 (mpv-0.3.2.tar.gz) = 3d91142ade5020e6da8174d0fffc7faeead1b5a8e56003e6c059a5ae4c6cc9f2 -SIZE (mpv-0.3.2.tar.gz) = 2514802 -SHA256 (waf-1.7.14) = 93b2783e8a9027d5a6f6f11aed784e506765707bdcbd7c39eaeb7f000b171fe7 -SIZE (waf-1.7.14) = 90755 +SHA256 (mpv-0.3.3.tar.gz) = 73d0ee4c1d73e97c3b1911b5c4513f08072b20f4d81b76ae923ba82dc4a5b1da +SIZE (mpv-0.3.3.tar.gz) = 2514903 +SHA256 (waf-1.7.15) = e5ae7028f9b2d8ce1acb9fe1092e8010a90ba764d3ac065ea4e846743290b1d6 +SIZE (waf-1.7.15) = 90909 Added: head/multimedia/mpv/files/patch-wscript ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mpv/files/patch-wscript Mon Jan 20 18:38:14 2014 (r340445) @@ -0,0 +1,11 @@ +--- wscript.orig 2014-01-20 18:59:38.000000000 +0100 ++++ wscript 2014-01-20 19:00:04.000000000 +0100 +@@ -806,7 +806,7 @@ + ctx.load('detections.devices') + + if ctx.env.DEST_OS in ('freebsd', 'openbsd'): +- ctx.env.CFLAGS += ['-I/usr/local/include'] ++ ctx.env.CFLAGS += ['-I..', '-I/usr/local/include'] + ctx.env.LINKFLAGS += ['-L/usr/local/lib'] + + if ctx.env.DEST_OS == 'netbsd': From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:39:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6307FE57; Mon, 20 Jan 2014 18:39:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F4041DAB; Mon, 20 Jan 2014 18:39:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KIdogu012854; Mon, 20 Jan 2014 18:39:50 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KIdoeZ012853; Mon, 20 Jan 2014 18:39:50 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201839.s0KIdoeZ012853@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 18:39:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340446 - head/converters/nomyso X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 18:39:50 -0000 Author: antoine Date: Mon Jan 20 18:39:49 2014 New Revision: 340446 URL: http://svnweb.freebsd.org/changeset/ports/340446 QAT: https://qat.redports.org/buildarchive/r340446/ Log: - Stage support - Get rid of infozip dependency Modified: head/converters/nomyso/Makefile Modified: head/converters/nomyso/Makefile ============================================================================== --- head/converters/nomyso/Makefile Mon Jan 20 18:38:14 2014 (r340445) +++ head/converters/nomyso/Makefile Mon Jan 20 18:39:49 2014 (r340446) @@ -6,19 +6,18 @@ PORTVERSION= 4.3 CATEGORIES= converters devel MASTER_SITES= http://www.devoresoftware.com/nomyso/ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//} +EXTRACT_SUFX= .zip MAINTAINER= ports@FreeBSD.org COMMENT= Convert MASM/TASM files to NASM compatible sources USES= perl5 -USE_ZIP= yes USE_PERL5= run NO_WRKSUBDIR= yes NO_BUILD= yes PLIST_FILES= bin/${PORTNAME}.pl -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -E \ -e 's|[[:cntrl:]]$$||' \ @@ -28,6 +27,6 @@ post-patch: do-install: @${INSTALL_SCRIPT} \ ${WRKSRC}/${PORTNAME}.pl \ - ${PREFIX}/bin + ${STAGEDIR}${PREFIX}/bin .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:40:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 705F7284; Mon, 20 Jan 2014 18:40:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D5681E3C; Mon, 20 Jan 2014 18:40:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KIewAT013869; Mon, 20 Jan 2014 18:40:58 GMT (envelope-from gblach@svn.freebsd.org) Received: (from gblach@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KIewag013868; Mon, 20 Jan 2014 18:40:58 GMT (envelope-from gblach@svn.freebsd.org) Message-Id: <201401201840.s0KIewag013868@svn.freebsd.org> From: Grzegorz Blach Date: Mon, 20 Jan 2014 18:40:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340447 - head/multimedia/mpv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 18:40:58 -0000 Author: gblach Date: Mon Jan 20 18:40:57 2014 New Revision: 340447 URL: http://svnweb.freebsd.org/changeset/ports/340447 QAT: https://qat.redports.org/buildarchive/r340447/ Log: - Remove OPTIONS_DEFAULT=SMB, this line was only for testing purposes. Modified: head/multimedia/mpv/Makefile Modified: head/multimedia/mpv/Makefile ============================================================================== --- head/multimedia/mpv/Makefile Mon Jan 20 18:39:49 2014 (r340446) +++ head/multimedia/mpv/Makefile Mon Jan 20 18:40:57 2014 (r340447) @@ -46,7 +46,6 @@ OPTIONS_GROUP= IN VO AO OPTIONS_GROUP_IN= CDIO DVDNAV LIBBLURAY V4L QUVI SMB OPTIONS_GROUP_VO= CACA OPENGL VAAPI VDPAU XINERAMA OPTIONS_GROUP_AO= JACK PULSEAUDIO -OPTIONS_DEFAULT= SMB BS2B_DESC= Enable Bauer Stereophonic-to-Binaural DSP support DVDNAV_DESC= Enable DVD navigation menus support From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 18:53:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C6FBBAB2; Mon, 20 Jan 2014 18:53:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B26ED1F3C; Mon, 20 Jan 2014 18:53:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KIr3l5019986; Mon, 20 Jan 2014 18:53:03 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KIr3rX019985; Mon, 20 Jan 2014 18:53:03 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201853.s0KIr3rX019985@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 18:53:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340448 - head/converters/py-iconv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 18:53:03 -0000 Author: antoine Date: Mon Jan 20 18:53:03 2014 New Revision: 340448 URL: http://svnweb.freebsd.org/changeset/ports/340448 QAT: https://qat.redports.org/buildarchive/r340448/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST Deleted: head/converters/py-iconv/pkg-plist Modified: head/converters/py-iconv/Makefile Modified: head/converters/py-iconv/Makefile ============================================================================== --- head/converters/py-iconv/Makefile Mon Jan 20 18:40:57 2014 (r340447) +++ head/converters/py-iconv/Makefile Mon Jan 20 18:53:03 2014 (r340448) @@ -16,7 +16,7 @@ COMMENT= Iconv wrapper with Unicode code USES= iconv USE_PYTHON= yes USE_PYDISTUTILS= yes -PLIST_SUB= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S|^${LOCALBASE}/||g} +PYDISTUTILS_AUTOPLIST= yes .if empty(ICONV_LIB) SETUPINFO= ,library_dirs=["${LOCALBASE}/lib"],\ @@ -26,9 +26,8 @@ SETUPINFO= ,libraries=["iconv"],library_ include_dirs=["${LOCALBASE}/include"] .endif -NO_STAGE= yes post-patch: - cd ${WRKSRC} && ${SED} 's!^\(.*ext_mod.*\)\()]\)$$!\1${SETUPINFO}\2!g'\ - setup.py > setup.py.tmp && ${CAT} setup.py.tmp > setup.py + ${REINPLACE_CMD} 's!^\(.*ext_mod.*\)\()]\)$$!\1${SETUPINFO}\2!g'\ + ${WRKSRC}/setup.py .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:00:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6F42ED5; Mon, 20 Jan 2014 19:00:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C32E61FA8; Mon, 20 Jan 2014 19:00:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJ0YJ3021449; Mon, 20 Jan 2014 19:00:34 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJ0Ycx021448; Mon, 20 Jan 2014 19:00:34 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201900.s0KJ0Ycx021448@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 19:00:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340449 - head/devel/bzr-git X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:00:34 -0000 Author: antoine Date: Mon Jan 20 19:00:34 2014 New Revision: 340449 URL: http://svnweb.freebsd.org/changeset/ports/340449 QAT: https://qat.redports.org/buildarchive/r340449/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST Deleted: head/devel/bzr-git/pkg-plist Modified: head/devel/bzr-git/Makefile Modified: head/devel/bzr-git/Makefile ============================================================================== --- head/devel/bzr-git/Makefile Mon Jan 20 18:53:03 2014 (r340448) +++ head/devel/bzr-git/Makefile Mon Jan 20 19:00:34 2014 (r340449) @@ -15,13 +15,12 @@ LICENSE= GPLv2 BUILD_DEPENDS= bzr:${PORTSDIR}/devel/bzr RUN_DEPENDS= bzr:${PORTSDIR}/devel/bzr \ - py*-dulwich>=0.8.0:${PORTSDIR}/devel/dulwich \ + ${PYTHON_PKGNAMEPREFIX}dulwich>=0.8.0:${PORTSDIR}/devel/dulwich \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= bzr_git +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:07:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27F95137; Mon, 20 Jan 2014 19:07:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 13C4E1079; Mon, 20 Jan 2014 19:07:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJ7TO5024799; Mon, 20 Jan 2014 19:07:29 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJ7Tcw024797; Mon, 20 Jan 2014 19:07:29 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201401201907.s0KJ7Tcw024797@svn.freebsd.org> From: Gerald Pfeifer Date: Mon, 20 Jan 2014 19:07:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340450 - head/math/mpc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:07:30 -0000 Author: gerald Date: Mon Jan 20 19:07:29 2014 New Revision: 340450 URL: http://svnweb.freebsd.org/changeset/ports/340450 QAT: https://qat.redports.org/buildarchive/r340450/ Log: Update to version 1.0.2 which brings two bug fixes: - Fixed mpc_atan, mpc_atanh for (+-0, +-1), see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57994#c7 - Fixed mpc_log10 for purely imaginary argument, see http://lists.gforge.inria.fr/pipermail/mpc-discuss/2012-September/001208.html Remove now unnecessary LATEST_LINK. Modified: head/math/mpc/Makefile head/math/mpc/distinfo Modified: head/math/mpc/Makefile ============================================================================== --- head/math/mpc/Makefile Mon Jan 20 19:00:34 2014 (r340449) +++ head/math/mpc/Makefile Mon Jan 20 19:07:29 2014 (r340450) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mpc -PORTVERSION= 1.0.1 +PORTVERSION= 1.0.2 CATEGORIES= math devel MASTER_SITES= http://www.multiprecision.org/mpc/download/ @@ -23,8 +23,6 @@ INFO= mpc PLIST_FILES= include/mpc.h \ lib/libmpc.a lib/libmpc.la lib/libmpc.so lib/libmpc.so.3 -LATEST_LINK= math_mpc - regression-test: build @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check Modified: head/math/mpc/distinfo ============================================================================== --- head/math/mpc/distinfo Mon Jan 20 19:00:34 2014 (r340449) +++ head/math/mpc/distinfo Mon Jan 20 19:07:29 2014 (r340450) @@ -1,2 +1,2 @@ -SHA256 (mpc-1.0.1.tar.gz) = ed5a815cfea525dc778df0cb37468b9c1b554aaf30d9328b1431ca705b7400ff -SIZE (mpc-1.0.1.tar.gz) = 624125 +SHA256 (mpc-1.0.2.tar.gz) = b561f54d8a479cee3bc891ee52735f18ff86712ba30f036f8b8537bae380c488 +SIZE (mpc-1.0.2.tar.gz) = 633173 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:08:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A253824C; Mon, 20 Jan 2014 19:08:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E513108D; Mon, 20 Jan 2014 19:08:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJ8wJK025050; Mon, 20 Jan 2014 19:08:58 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJ8wYi025049; Mon, 20 Jan 2014 19:08:58 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201908.s0KJ8wYi025049@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 19:08:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340451 - head/devel/bzr-grep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:08:58 -0000 Author: antoine Date: Mon Jan 20 19:08:58 2014 New Revision: 340451 URL: http://svnweb.freebsd.org/changeset/ports/340451 QAT: https://qat.redports.org/buildarchive/r340451/ Log: Deprecate and set expiration date Modified: head/devel/bzr-grep/Makefile Modified: head/devel/bzr-grep/Makefile ============================================================================== --- head/devel/bzr-grep/Makefile Mon Jan 20 19:07:29 2014 (r340450) +++ head/devel/bzr-grep/Makefile Mon Jan 20 19:08:58 2014 (r340451) @@ -12,6 +12,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Bazaar plugin to grep files BROKEN= conflicts with dependency bzr +DEPRECATED= Broken for more than 4 months +EXPIRATION_DATE=2014-02-20 BUILD_DEPENDS= bzr:${PORTSDIR}/devel/bzr RUN_DEPENDS= bzr:${PORTSDIR}/devel/bzr From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:24:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA6815DE; Mon, 20 Jan 2014 19:24:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A59EB11E3; Mon, 20 Jan 2014 19:24:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJOh0D032293; Mon, 20 Jan 2014 19:24:43 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJOh6u032292; Mon, 20 Jan 2014 19:24:43 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201924.s0KJOh6u032292@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 19:24:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340452 - head/devel/bzr-gtk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:24:43 -0000 Author: antoine Date: Mon Jan 20 19:24:43 2014 New Revision: 340452 URL: http://svnweb.freebsd.org/changeset/ports/340452 QAT: https://qat.redports.org/buildarchive/r340452/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST PR: ports/185707 Deleted: head/devel/bzr-gtk/pkg-plist Modified: head/devel/bzr-gtk/Makefile Modified: head/devel/bzr-gtk/Makefile ============================================================================== --- head/devel/bzr-gtk/Makefile Mon Jan 20 19:08:58 2014 (r340451) +++ head/devel/bzr-gtk/Makefile Mon Jan 20 19:24:43 2014 (r340452) @@ -11,25 +11,23 @@ MASTER_SITES= http://launchpadlibrarian. MAINTAINER= ports@FreeBSD.org COMMENT= GTK interface to Bazaar-NG VCS +LICENSE= GPLv2 + BUILD_DEPENDS= bzr:${PORTSDIR}/devel/bzr RUN_DEPENDS= bzr:${PORTSDIR}/devel/bzr \ - ${PYTHON_SITELIBDIR}/cairo:${PORTSDIR}/graphics/py-cairo + ${PYTHON_PKGNAMEPREFIX}cairo>=0:${PORTSDIR}/graphics/py-cairo -LICENSE= GPLv2 +USES= desktop-file-utils USE_PYTHON= yes USE_GNOME= pygtk2 USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes INSTALLS_ICONS= yes OPTIONS_DEFINE= GTKSOURCE GTKSOURCE_DESC= GTKSourceview support -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MGTKSOURCE} -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/gtk-2.0/gtksourceview.so:${PORTSDIR}/x11-toolkits/py-gnome-desktop -.endif +GTKSOURCE_USE= GNOME=pygnomedesktop .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:29:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 097969D0; Mon, 20 Jan 2014 19:29:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E974C121C; Mon, 20 Jan 2014 19:29:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJTTlU032852; Mon, 20 Jan 2014 19:29:29 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJTTr4032851; Mon, 20 Jan 2014 19:29:29 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201929.s0KJTTr4032851@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 19:29:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340453 - head/devel/bzr-loom X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:29:30 -0000 Author: antoine Date: Mon Jan 20 19:29:29 2014 New Revision: 340453 URL: http://svnweb.freebsd.org/changeset/ports/340453 QAT: https://qat.redports.org/buildarchive/r340453/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST Deleted: head/devel/bzr-loom/pkg-plist Modified: head/devel/bzr-loom/Makefile Modified: head/devel/bzr-loom/Makefile ============================================================================== --- head/devel/bzr-loom/Makefile Mon Jan 20 19:24:43 2014 (r340452) +++ head/devel/bzr-loom/Makefile Mon Jan 20 19:29:29 2014 (r340453) @@ -20,8 +20,6 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= Loom -PYDISTUTILS_PKGVERSION= 2.2.1dev0 +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:31:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C657AE7; Mon, 20 Jan 2014 19:31:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 68B42128F; Mon, 20 Jan 2014 19:31:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJVGNm035539; Mon, 20 Jan 2014 19:31:16 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJVGXa035536; Mon, 20 Jan 2014 19:31:16 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401201931.s0KJVGXa035536@svn.freebsd.org> From: Rusmir Dusko Date: Mon, 20 Jan 2014 19:31:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340454 - head/devel/allegro-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.17 Precedence: list List-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, 20 Jan 2014 19:31:16 -0000 Author: nemysis Date: Mon Jan 20 19:31:15 2014 New Revision: 340454 URL: http://svnweb.freebsd.org/changeset/ports/340454 QAT: https://qat.redports.org/buildarchive/r340454/ Log: - Add missing USE_GNOME=gtk20 - Change PORTSCOUT Reported by: amdmi3 Modified: head/devel/allegro-devel/Makefile Modified: head/devel/allegro-devel/Makefile ============================================================================== --- head/devel/allegro-devel/Makefile Mon Jan 20 19:29:29 2014 (r340453) +++ head/devel/allegro-devel/Makefile Mon Jan 20 19:31:15 2014 (r340454) @@ -26,6 +26,7 @@ LIB_DEPENDS+= libjack.so:${PORTSDIR}/aud USES= gmake cmake openal:soft pkgconfig USE_XORG= x11 xpm xext xcursor xxf86vm xxf86dga USE_GL= gl glu +USE_GNOME= gtk20 USE_FREETYPE= yes USE_LDCONFIG= yes @@ -38,7 +39,7 @@ SHLIB_VER1= ${PORTVERSION:R} CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib # Wrong versioning upstream -PORTSCOUT= skipv:5.0.10 +PORTSCOUT= limitw:1,even skipv:5.0.10 OPTIONS_DEFINE= ALSA DOCS PULSEAUDIO OPTIONS_GROUP= DEMOS_EXAMPLES From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:32:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84FC0CE1; Mon, 20 Jan 2014 19:32:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 713B112B2; Mon, 20 Jan 2014 19:32:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJWWmN036170; Mon, 20 Jan 2014 19:32:32 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJWWGH036169; Mon, 20 Jan 2014 19:32:32 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201932.s0KJWWGH036169@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 19:32:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340455 - head/devel/bzr-pipeline X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:32:32 -0000 Author: antoine Date: Mon Jan 20 19:32:31 2014 New Revision: 340455 URL: http://svnweb.freebsd.org/changeset/ports/340455 QAT: https://qat.redports.org/buildarchive/r340455/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST Deleted: head/devel/bzr-pipeline/pkg-plist Modified: head/devel/bzr-pipeline/Makefile Modified: head/devel/bzr-pipeline/Makefile ============================================================================== --- head/devel/bzr-pipeline/Makefile Mon Jan 20 19:31:15 2014 (r340454) +++ head/devel/bzr-pipeline/Makefile Mon Jan 20 19:32:31 2014 (r340455) @@ -18,8 +18,7 @@ RUN_DEPENDS= bzr:${PORTSDIR}/devel/bzr USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= BzrPipeline +PYDISTUTILS_AUTOPLIST= yes WRKSRC= ${WRKDIR}/${PORTNAME} -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:36:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 599CBE9A; Mon, 20 Jan 2014 19:36:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4552512E3; Mon, 20 Jan 2014 19:36:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJaOB6036720; Mon, 20 Jan 2014 19:36:24 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJaOJC036719; Mon, 20 Jan 2014 19:36:24 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201936.s0KJaOJC036719@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 19:36:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340456 - head/devel/bzr-rewrite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:36:24 -0000 Author: antoine Date: Mon Jan 20 19:36:23 2014 New Revision: 340456 URL: http://svnweb.freebsd.org/changeset/ports/340456 QAT: https://qat.redports.org/buildarchive/r340456/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST Deleted: head/devel/bzr-rewrite/pkg-plist Modified: head/devel/bzr-rewrite/Makefile Modified: head/devel/bzr-rewrite/Makefile ============================================================================== --- head/devel/bzr-rewrite/Makefile Mon Jan 20 19:32:31 2014 (r340455) +++ head/devel/bzr-rewrite/Makefile Mon Jan 20 19:36:23 2014 (r340456) @@ -19,7 +19,6 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= bzr_rewrite +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:39:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21506381; Mon, 20 Jan 2014 19:39:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E7D7E1303; Mon, 20 Jan 2014 19:39:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJdIsK037301; Mon, 20 Jan 2014 19:39:18 GMT (envelope-from beat@svn.freebsd.org) Received: (from beat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJdIOM037299; Mon, 20 Jan 2014 19:39:18 GMT (envelope-from beat@svn.freebsd.org) Message-Id: <201401201939.s0KJdIOM037299@svn.freebsd.org> From: Beat Gaetzi Date: Mon, 20 Jan 2014 19:39:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340457 - head/mail/swaks X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:39:19 -0000 Author: beat Date: Mon Jan 20 19:39:18 2014 New Revision: 340457 URL: http://svnweb.freebsd.org/changeset/ports/340457 QAT: https://qat.redports.org/buildarchive/r340457/ Log: - Update to 20130209.0 - STAGEify - Add LICENSE - Unmute install command PR: ports/185817 Submitted by: Takefu Modified: head/mail/swaks/Makefile head/mail/swaks/distinfo Modified: head/mail/swaks/Makefile ============================================================================== --- head/mail/swaks/Makefile Mon Jan 20 19:36:23 2014 (r340456) +++ head/mail/swaks/Makefile Mon Jan 20 19:39:18 2014 (r340457) @@ -2,13 +2,15 @@ # $FreeBSD$ PORTNAME= swaks -PORTVERSION= 20120320.0 +PORTVERSION= 20130209.0 CATEGORIES= mail MASTER_SITES= http://jetmore.org/john/code/swaks/ MAINTAINER= beat@FreeBSD.org COMMENT= Swiss Army Knife SMTP transaction tester +LICENSE= GPLv2 + PLIST_FILES= bin/${PORTNAME} OPTIONS_DEFINE= PERL_NET_DNS PERL_NET_SSLEAY PERL_AUTHEN_NTLM @@ -19,7 +21,6 @@ PERL_AUTHEN_NTLM_DESC= Add support for A USES= perl5 USE_PERL5= run -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPERL_NET_DNS} @@ -39,7 +40,7 @@ do-build: ${WRKSRC}/${PORTNAME} > ${WRKSRC}/${PORTNAME}.pl do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin/${PORTNAME} + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${STAGEDIR}${PREFIX}/bin/${PORTNAME} @${CAT} ${PKGMESSAGE} .include Modified: head/mail/swaks/distinfo ============================================================================== --- head/mail/swaks/distinfo Mon Jan 20 19:36:23 2014 (r340456) +++ head/mail/swaks/distinfo Mon Jan 20 19:39:18 2014 (r340457) @@ -1,2 +1,2 @@ -SHA256 (swaks-20120320.0.tar.gz) = 2fd271fde7eb3dd23559590a1bab6fe9e5ff37cde0124328d634059b22eaf2db -SIZE (swaks-20120320.0.tar.gz) = 90759 +SHA256 (swaks-20130209.0.tar.gz) = 0b0967256dca82776f610f1db862bc47644b236f325fa48cbdb2651babd41f7c +SIZE (swaks-20130209.0.tar.gz) = 102227 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:45:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A4315CB; Mon, 20 Jan 2014 19:45:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 466DF13B8; Mon, 20 Jan 2014 19:45:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJj4td040668; Mon, 20 Jan 2014 19:45:04 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJj3Zl040666; Mon, 20 Jan 2014 19:45:03 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401201945.s0KJj3Zl040666@svn.freebsd.org> From: Martin Matuska Date: Mon, 20 Jan 2014 19:45:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340458 - in head/www/lighttpd: . 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.17 Precedence: list List-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, 20 Jan 2014 19:45:04 -0000 Author: mm Date: Mon Jan 20 19:45:03 2014 New Revision: 340458 URL: http://svnweb.freebsd.org/changeset/ports/340458 QAT: https://qat.redports.org/buildarchive/r340458/ Log: Update lighttpd to 1.4.34 Deleted: head/www/lighttpd/files/patch-src-mod_extforward.c Modified: head/www/lighttpd/Makefile head/www/lighttpd/distinfo Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Mon Jan 20 19:39:18 2014 (r340457) +++ head/www/lighttpd/Makefile Mon Jan 20 19:45:03 2014 (r340458) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= lighttpd -PORTVERSION= 1.4.33 +PORTVERSION= 1.4.34 CATEGORIES?= www MASTER_SITES?= http://download.lighttpd.net/lighttpd/releases-1.4.x/ Modified: head/www/lighttpd/distinfo ============================================================================== --- head/www/lighttpd/distinfo Mon Jan 20 19:39:18 2014 (r340457) +++ head/www/lighttpd/distinfo Mon Jan 20 19:45:03 2014 (r340458) @@ -1,5 +1,5 @@ -SHA256 (lighttpd-1.4.33.tar.bz2) = 2ff2324658c0f90e7d39afd40f08f11ca230903b9019c31a2bbecd8f087f235e -SIZE (lighttpd-1.4.33.tar.bz2) = 664850 +SHA256 (lighttpd-1.4.34.tar.bz2) = e4b5682ef21b0bdea4a18dc7ccac6b5a0bf526b691ad0fe5c25c8b9fc38d0c12 +SIZE (lighttpd-1.4.34.tar.bz2) = 665651 SHA256 (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch.gz) = d7c3704d5253c4f3c18459f89059063b311e50096cd2c38fc982cec683c32e61 SIZE (lighttpd-1.4.26_mod_h264_streaming-2.2.9.patch.gz) = 44695 SHA256 (lighttpd-1.4.26_mod_geoip.patch.gz) = db43cc0ed7c808b5eed3185d97346e70dea0f1ef4fa9ed436d08e4faff7f97e7 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:51:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 22002780; Mon, 20 Jan 2014 19:51:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D7D814A0; Mon, 20 Jan 2014 19:51:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJpwiH044000; Mon, 20 Jan 2014 19:51:58 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJpwuL043999; Mon, 20 Jan 2014 19:51:58 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201951.s0KJpwuL043999@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 19:51:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340459 - head/devel/bzr-scmproj X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:51:59 -0000 Author: antoine Date: Mon Jan 20 19:51:58 2014 New Revision: 340459 URL: http://svnweb.freebsd.org/changeset/ports/340459 QAT: https://qat.redports.org/buildarchive/r340459/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST Deleted: head/devel/bzr-scmproj/pkg-plist Modified: head/devel/bzr-scmproj/Makefile Modified: head/devel/bzr-scmproj/Makefile ============================================================================== --- head/devel/bzr-scmproj/Makefile Mon Jan 20 19:45:03 2014 (r340458) +++ head/devel/bzr-scmproj/Makefile Mon Jan 20 19:51:58 2014 (r340459) @@ -18,6 +18,6 @@ RUN_DEPENDS= bzr:${PORTSDIR}/devel/bzr USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:54:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1BEC870; Mon, 20 Jan 2014 19:54:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9DC6A14B0; Mon, 20 Jan 2014 19:54:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJsNg5044332; Mon, 20 Jan 2014 19:54:23 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJsNVg044330; Mon, 20 Jan 2014 19:54:23 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201954.s0KJsNVg044330@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 19:54:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340460 - head/devel/bzr-stats X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:54:23 -0000 Author: antoine Date: Mon Jan 20 19:54:23 2014 New Revision: 340460 URL: http://svnweb.freebsd.org/changeset/ports/340460 QAT: https://qat.redports.org/buildarchive/r340460/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST Deleted: head/devel/bzr-stats/pkg-plist Modified: head/devel/bzr-stats/Makefile Modified: head/devel/bzr-stats/Makefile ============================================================================== --- head/devel/bzr-stats/Makefile Mon Jan 20 19:51:58 2014 (r340459) +++ head/devel/bzr-stats/Makefile Mon Jan 20 19:54:23 2014 (r340460) @@ -20,7 +20,6 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= bzr_stats +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 19:59:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0BA3AF2; Mon, 20 Jan 2014 19:59:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8BFE814E5; Mon, 20 Jan 2014 19:59:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KJxCaT044987; Mon, 20 Jan 2014 19:59:12 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KJxClW044986; Mon, 20 Jan 2014 19:59:12 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401201959.s0KJxClW044986@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 19:59:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340461 - head/devel/bzr-svn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 19:59:12 -0000 Author: antoine Date: Mon Jan 20 19:59:11 2014 New Revision: 340461 URL: http://svnweb.freebsd.org/changeset/ports/340461 QAT: https://qat.redports.org/buildarchive/r340461/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST Deleted: head/devel/bzr-svn/pkg-plist Modified: head/devel/bzr-svn/Makefile Modified: head/devel/bzr-svn/Makefile ============================================================================== --- head/devel/bzr-svn/Makefile Mon Jan 20 19:54:23 2014 (r340460) +++ head/devel/bzr-svn/Makefile Mon Jan 20 19:59:11 2014 (r340461) @@ -20,7 +20,6 @@ RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/subve WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= bzr_svn +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:02:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E1C9D84; Mon, 20 Jan 2014 20:02:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 69E8515A9; Mon, 20 Jan 2014 20:02:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KK2p9a048369; Mon, 20 Jan 2014 20:02:51 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KK2p3S048368; Mon, 20 Jan 2014 20:02:51 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202002.s0KK2p3S048368@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 20:02:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340462 - head/devel/bzr-upload X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:02:51 -0000 Author: antoine Date: Mon Jan 20 20:02:50 2014 New Revision: 340462 URL: http://svnweb.freebsd.org/changeset/ports/340462 QAT: https://qat.redports.org/buildarchive/r340462/ Log: - Stage support - Use PYDISTUTILS_AUTOPLIST Deleted: head/devel/bzr-upload/pkg-plist Modified: head/devel/bzr-upload/Makefile Modified: head/devel/bzr-upload/Makefile ============================================================================== --- head/devel/bzr-upload/Makefile Mon Jan 20 19:59:11 2014 (r340461) +++ head/devel/bzr-upload/Makefile Mon Jan 20 20:02:50 2014 (r340462) @@ -20,7 +20,6 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= bzr_upload +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:13:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70B563FE; Mon, 20 Jan 2014 20:13:48 +0000 (UTC) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id B6AC91660; Mon, 20 Jan 2014 20:13:47 +0000 (UTC) Received: from outgoing.leidinger.net (p57A38320.dip0.t-ipconnect.de [87.163.131.32]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id B092B84405D; Mon, 20 Jan 2014 21:13:27 +0100 (CET) Received: from unknown (Titan.Leidinger.net [192.168.1.17]) by outgoing.leidinger.net (Postfix) with ESMTP id 3E6C33224; Mon, 20 Jan 2014 21:13:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=leidinger.net; s=outgoing-alex; t=1390248805; bh=ur/3+8W5vSDN4FAYSQG/xgm5/NtKkjlD7LZuCcQbprw=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=MMIun9ifBcb9BfB0sopVN2M5SbmfTuZa7UvtUZ50MbYrMi4sfYuCBK0b889RbzhVm mAODtMqeVmMp0h25Q7N5mGVp9e3c2Tgv67LuThHaiPQ+7m29mc2HQ87+5Lq7eMR7Q/ WdF2P8q+t9B2ABs+qQqjNcAPS+//R4Qg5Yr3aSTVUQXUXmUMH3jamDZRA1GmQtX9Cj K/0FTq9q5AS5jXYxeBiTlsVr3CbD/plT9OwxjNHTs0tL2YC4zx1KfiOzDN1g/Yb4zU 7j8KHTOUJGxnvYqc17KRePzAJpaN3xzD1Sm+5bI/OfIhYa77Pj0oskM+yErxR53slq fEvAEuWkh3D1w== Date: Mon, 20 Jan 2014 21:13:24 +0100 From: Alexander Leidinger To: Baptiste Daroussin Subject: Re: svn commit: r340118 - head/audio/lame Message-ID: <20140120211324.00003390@unknown> In-Reply-To: <20140118083539.GC78580@ithaqua.etoilebsd.net> References: <201401172141.s0HLfCP0096620@svn.freebsd.org> <5844234.U6fZ9grvn7@mercury.ph.man.ac.uk> <20140117224229.GA78580@ithaqua.etoilebsd.net> <20140118092757.00003818@unknown> <20140118083539.GC78580@ithaqua.etoilebsd.net> X-Mailer: Claws Mail 3.9.2-55-g74b05b (GTK+ 2.16.6; i586-pc-mingw32msvc) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: B092B84405D.A18CD X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=-1.097, required 6, autolearn=disabled, ALL_TRUSTED -1.00, AWL -0.07, DKIM_SIGNED 0.10, DKIM_VALID -0.10, DKIM_VALID_AU -0.10, RP_MATCHES_RCVD -0.00, TW_SV 0.08) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1390853608.45466@4vkw3KxTZ0wor99JHgEndg X-EBL-Spam-Status: No Cc: svn-ports-head@freebsd.org, Max Brazhnikov , svn-ports-all@freebsd.org, Alexander Leidinger , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:13:48 -0000 On Sat, 18 Jan 2014 09:35:39 +0100 Baptiste Daroussin wrote: > On Sat, Jan 18, 2014 at 09:27:57AM +0100, Alexander Leidinger wrote: > > On Fri, 17 Jan 2014 23:42:29 +0100 > > Baptiste Daroussin wrote: > > > > > btw here is a patch to cleanup a bit that port: > > > > > > http://people.freebsd.org/~bapt/lame.diff > > > > [...] > > > > > Strip the binary library (DEVELOPER=yes passes thought stage-qa > > > target which shows that is it not stripped) > > > > We don't do this in all ports, do we? Why doing it here explicitly? > > No we have never done that, and we should we are working on doing it. What about doing it in a generic target between install to the staging area and the packaging/install? Either in an automatic way (strip all ELF binaries, with the possibility to disable completely and to exclude files if needed), or in a similar way to PLIST_FILES / PLIST_DIRS. Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:21:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 870EC79B; Mon, 20 Jan 2014 20:21:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 721A916FD; Mon, 20 Jan 2014 20:21:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKLq3v056391; Mon, 20 Jan 2014 20:21:52 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKLp6X056384; Mon, 20 Jan 2014 20:21:51 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401202021.s0KKLp6X056384@svn.freebsd.org> From: Rusmir Dusko Date: Mon, 20 Jan 2014 20:21:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340463 - in head/x11-fonts: . fira fira/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.17 Precedence: list List-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, 20 Jan 2014 20:21:52 -0000 Author: nemysis Date: Mon Jan 20 20:21:50 2014 New Revision: 340463 URL: http://svnweb.freebsd.org/changeset/ports/340463 QAT: https://qat.redports.org/buildarchive/r340463/ Log: The Fira font family was designed to cover the legibility needs for a large range of handsets varying in screen quality and rendering. It comes in a Sans Serif with 4 weights (light, regular, medium and bold) all accompanied by italic styles. The package also includes a Mono Spaced variant with 2 weights (regular and bold). Available formats: Open Type, True Type WWW: http://mozilla.github.io/Fira/ PR: ports/182414 Submitted by: horia Added: head/x11-fonts/fira/ head/x11-fonts/fira/Makefile (contents, props changed) head/x11-fonts/fira/distinfo (contents, props changed) head/x11-fonts/fira/files/ head/x11-fonts/fira/files/pkg-message.in (contents, props changed) head/x11-fonts/fira/fonts.scale (contents, props changed) head/x11-fonts/fira/pkg-descr (contents, props changed) head/x11-fonts/fira/pkg-plist (contents, props changed) Modified: head/x11-fonts/Makefile Modified: head/x11-fonts/Makefile ============================================================================== --- head/x11-fonts/Makefile Mon Jan 20 20:02:50 2014 (r340462) +++ head/x11-fonts/Makefile Mon Jan 20 20:21:50 2014 (r340463) @@ -35,6 +35,7 @@ SUBDIR += ecofont SUBDIR += encodings SUBDIR += farsifonts + SUBDIR += fira SUBDIR += fntsample SUBDIR += font-adobe-100dpi SUBDIR += font-adobe-75dpi Added: head/x11-fonts/fira/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fira/Makefile Mon Jan 20 20:21:50 2014 (r340463) @@ -0,0 +1,49 @@ +# Created by: Horia Racoviceanu +# $FreeBSD$ + +PORTNAME= fira +PORTVERSION= 1.0 +CATEGORIES= x11-fonts + +MAINTAINER= horia@racoviceanu.com +COMMENT= Sans-serif and monospaced typeface for small screens + +LICENSE= OFL +LICENSE_NAME= SIL OPEN FONT LICENSE Version 1.1 +LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE_PERMS= dist-mirror pkg-mirror auto-accept + +BUILD_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig \ + mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir +RUN_DEPENDS:= ${BUILD_DEPENDS} + +USE_GITHUB= yes +GH_ACCOUNT= mozilla +GH_PROJECT= Fira +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 705ffff + +USE_XORG= x11 +FONTLIBPATH= lib/X11/fonts +FONTROOTDIR= ${PREFIX}/${FONTLIBPATH} +FONTDIR= ${FONTROOTDIR}/${PORTNAME} +NO_BUILD= yes + +SUB_LIST= FONTDIR="${FONTDIR}" +PLIST_SUB= FONTDIR="${FONTDIR:S|${PREFIX}/||}" + +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +SUB_FILES= pkg-message + +do-install: + @${MKDIR} ${STAGEDIR}${FONTDIR} + ${INSTALL_DATA} ${WRKSRC}/ttf/${GH_PROJECT}*.ttf ${STAGEDIR}${FONTDIR} + ${INSTALL_DATA} ${WRKSRC}/otf/${GH_PROJECT}*.otf ${STAGEDIR}${FONTDIR} + + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include Added: head/x11-fonts/fira/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fira/distinfo Mon Jan 20 20:21:50 2014 (r340463) @@ -0,0 +1,2 @@ +SHA256 (fira-1.0.tar.gz) = f87bd7d1380e5a93a3743edd3d038b44c7460ea14c204b152b750f5551fd2531 +SIZE (fira-1.0.tar.gz) = 3973356 Added: head/x11-fonts/fira/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fira/files/pkg-message.in Mon Jan 20 20:21:50 2014 (r340463) @@ -0,0 +1,18 @@ +=============================================================================== + +Fira has been installed. + +Make sure that the freetype module is loaded. If it is not, add the following +line to the "Modules" section of your X Windows configuration file: + + Load "freetype" + +Add the following line to the "Files" section of X Windows configuration file: + + FontPath "%%FONTDIR%%/" + +Note: your X Windows configuration file is typically /etc/X11/xorg.conf + +For Web Font please use www/fira-webfont port. + +=============================================================================== Added: head/x11-fonts/fira/fonts.scale ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fira/fonts.scale Mon Jan 20 20:21:50 2014 (r340463) @@ -0,0 +1 @@ +0 Added: head/x11-fonts/fira/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fira/pkg-descr Mon Jan 20 20:21:50 2014 (r340463) @@ -0,0 +1,9 @@ +The Fira font family was designed to cover the legibility needs for a +large range of handsets varying in screen quality and rendering. It +comes in a Sans Serif with 4 weights (light, regular, medium and bold) +all accompanied by italic styles. The package also includes a Mono +Spaced variant with 2 weights (regular and bold). + +Available formats: Open Type, True Type + +WWW: http://mozilla.github.io/Fira/ Added: head/x11-fonts/fira/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/fira/pkg-plist Mon Jan 20 20:21:50 2014 (r340463) @@ -0,0 +1,29 @@ +%%FONTDIR%%/FiraMono-Bold.ttf +%%FONTDIR%%/FiraMono-Regular.ttf +%%FONTDIR%%/FiraMonoOT-Bold.otf +%%FONTDIR%%/FiraMonoOT-Regular.otf +%%FONTDIR%%/FiraSans-Bold.ttf +%%FONTDIR%%/FiraSans-BoldItalic.ttf +%%FONTDIR%%/FiraSans-Light.ttf +%%FONTDIR%%/FiraSans-LightItalic.ttf +%%FONTDIR%%/FiraSans-Medium.ttf +%%FONTDIR%%/FiraSans-MediumItalic.ttf +%%FONTDIR%%/FiraSans-Regular.ttf +%%FONTDIR%%/FiraSans-RegularItalic.ttf +%%FONTDIR%%/FiraSansOT-Bold.otf +%%FONTDIR%%/FiraSansOT-BoldItalic.otf +%%FONTDIR%%/FiraSansOT-Light.otf +%%FONTDIR%%/FiraSansOT-LightItalic.otf +%%FONTDIR%%/FiraSansOT-Medium.otf +%%FONTDIR%%/FiraSansOT-MediumItalic.otf +%%FONTDIR%%/FiraSansOT-Regular.otf +%%FONTDIR%%/FiraSansOT-RegularItalic.otf +@exec fc-cache -s -v %D/%%FONTDIR%% 2>/dev/null || true +@exec mkfontscale %D/%%FONTDIR%% 2>/dev/null || true +@unexec mkfontscale %D/%%FONTDIR%% 2>/dev/null || true +@unexec if [ -e %D/%%FONTDIR%%/fonts.scale -a "`stat -f '%%z' %D/%%FONTDIR%%/fonts.scale 2>/dev/null`" = '2' ]; then rm %D/%%FONTDIR%%/fonts.scale; fi +@exec mkfontdir %D/%%FONTDIR%% 2>/dev/null || true +@unexec mkfontdir %D/%%FONTDIR%% 2>/dev/null || true +@unexec if [ -e %D/%%FONTDIR%%/fonts.dir -a "`stat -f '%%z' %D/%%FONTDIR%%/fonts.dir 2>/dev/null`" = '2' ]; then rm %D/%%FONTDIR%%/fonts.dir; fi +@dirrm %%FONTDIR%% +@unexec fc-cache -s -v %D/%%FONTDIR%% 2>/dev/null || true From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:23:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA2F79B6; Mon, 20 Jan 2014 20:23:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D53001725; Mon, 20 Jan 2014 20:23:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKNvSu056810; Mon, 20 Jan 2014 20:23:57 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKNu6o056801; Mon, 20 Jan 2014 20:23:56 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401202023.s0KKNu6o056801@svn.freebsd.org> From: Rusmir Dusko Date: Mon, 20 Jan 2014 20:23:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340464 - in head/www: . fira-webfont fira-webfont/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.17 Precedence: list List-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, 20 Jan 2014 20:23:58 -0000 Author: nemysis Date: Mon Jan 20 20:23:56 2014 New Revision: 340464 URL: http://svnweb.freebsd.org/changeset/ports/340464 QAT: https://qat.redports.org/buildarchive/r340464/ Log: The Fira font family was designed to cover the legibility needs for a large range of handsets varying in screen quality and rendering. It comes in a Sans Serif with 4 weights (light, regular, medium and bold) all accompanied by italic styles. The package also includes a Mono Spaced variant with 2 weights (regular and bold). Web Font: EOT, WOFF, TTF, and example HTML+CSS WWW: http://mozilla.github.io/Fira/ PR: ports/183573 Submitted by: horia Added: head/www/fira-webfont/ head/www/fira-webfont/Makefile (contents, props changed) head/www/fira-webfont/distinfo (contents, props changed) head/www/fira-webfont/files/ head/www/fira-webfont/files/pkg-message.in (contents, props changed) head/www/fira-webfont/pkg-descr (contents, props changed) head/www/fira-webfont/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Jan 20 20:21:50 2014 (r340463) +++ head/www/Makefile Mon Jan 20 20:23:56 2014 (r340464) @@ -210,6 +210,7 @@ SUBDIR += feedonfeeds SUBDIR += ffproxy SUBDIR += fhttpd + SUBDIR += fira-webfont SUBDIR += firefox SUBDIR += firefox-esr SUBDIR += firefox-esr-i18n Added: head/www/fira-webfont/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fira-webfont/Makefile Mon Jan 20 20:23:56 2014 (r340464) @@ -0,0 +1,47 @@ +# Created by: Horia Racoviceanu +# $FreeBSD$ + +PORTNAME= fira +PORTVERSION= 1.0 +CATEGORIES= www +PKGNAMESUFFIX= -webfont + +MAINTAINER= horia@racoviceanu.com +COMMENT= Sans-serif and monospaced Web Font for small screens + +LICENSE= OFL +LICENSE_NAME= SIL OPEN FONT LICENSE Version 1.1 +LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE_PERMS= dist-mirror pkg-mirror auto-accept + +USE_GITHUB= yes +GH_ACCOUNT= mozilla +GH_PROJECT= Fira +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 705ffff + +NO_BUILD= yes + +PORTDOCS= README.md +DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} + +OPTIONS_DEFINE= DOCS + +SUB_FILES= pkg-message +PLIST_SUB= WWWDIR_REL=${WWWDIR_REL} + +do-install: + @${MKDIR} ${STAGEDIR}${WWWDIR} + ${INSTALL_DATA} ${WRKSRC}/index.html ${STAGEDIR}${WWWDIR} + ${INSTALL_DATA} ${WRKSRC}/fira.css ${STAGEDIR}${WWWDIR} + @${MKDIR} ${STAGEDIR}${WWWDIR}/eot + ${INSTALL_DATA} ${WRKSRC}/eot/${GH_PROJECT}*.eot ${STAGEDIR}${WWWDIR}/eot/ + @${MKDIR} ${STAGEDIR}${WWWDIR}/ttf + ${INSTALL_DATA} ${WRKSRC}/ttf/${GH_PROJECT}*.ttf ${STAGEDIR}${WWWDIR}/ttf/ + @${MKDIR} ${STAGEDIR}${WWWDIR}/woff + ${INSTALL_DATA} ${WRKSRC}/woff/${GH_PROJECT}*.woff ${STAGEDIR}${WWWDIR}/woff/ + + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include Added: head/www/fira-webfont/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fira-webfont/distinfo Mon Jan 20 20:23:56 2014 (r340464) @@ -0,0 +1,2 @@ +SHA256 (fira-1.0.tar.gz) = f87bd7d1380e5a93a3743edd3d038b44c7460ea14c204b152b750f5551fd2531 +SIZE (fira-1.0.tar.gz) = 3973356 Added: head/www/fira-webfont/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fira-webfont/files/pkg-message.in Mon Jan 20 20:23:56 2014 (r340464) @@ -0,0 +1,9 @@ +=============================================================================== + +Fira has been installed. + +Example HTML and CSS have been installed in %%WWWDIR%% + +For X11 Open Type and True Type font please use x11-fonts/fira port. + +=============================================================================== Added: head/www/fira-webfont/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fira-webfont/pkg-descr Mon Jan 20 20:23:56 2014 (r340464) @@ -0,0 +1,9 @@ +The Fira font family was designed to cover the legibility needs for a +large range of handsets varying in screen quality and rendering. It +comes in a Sans Serif with 4 weights (light, regular, medium and bold) +all accompanied by italic styles. The package also includes a Mono +Spaced variant with 2 weights (regular and bold). + +Web Font: EOT, WOFF, TTF, and example HTML+CSS + +WWW: http://mozilla.github.io/Fira/ Added: head/www/fira-webfont/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/fira-webfont/pkg-plist Mon Jan 20 20:23:56 2014 (r340464) @@ -0,0 +1,53 @@ +%%WWWDIR_REL%%/eot/FiraMono-Bold.eot +%%WWWDIR_REL%%/eot/FiraMono-Regular.eot +%%WWWDIR_REL%%/eot/FiraSans-Bold.eot +%%WWWDIR_REL%%/eot/FiraSans-BoldItalic.eot +%%WWWDIR_REL%%/eot/FiraSans-Light.eot +%%WWWDIR_REL%%/eot/FiraSans-LightItalic.eot +%%WWWDIR_REL%%/eot/FiraSans-Medium.eot +%%WWWDIR_REL%%/eot/FiraSans-MediumItalic.eot +%%WWWDIR_REL%%/eot/FiraSans-Regular.eot +%%WWWDIR_REL%%/eot/FiraSans-RegularItalic.eot +%%WWWDIR_REL%%/eot/FiraSansSC-Bold.eot +%%WWWDIR_REL%%/eot/FiraSansSC-BoldItalic.eot +%%WWWDIR_REL%%/eot/FiraSansSC-Light.eot +%%WWWDIR_REL%%/eot/FiraSansSC-LightItalic.eot +%%WWWDIR_REL%%/eot/FiraSansSC-Medium.eot +%%WWWDIR_REL%%/eot/FiraSansSC-MediumItalic.eot +%%WWWDIR_REL%%/eot/FiraSansSC-Regular.eot +%%WWWDIR_REL%%/eot/FiraSansSC-RegularItalic.eot +%%WWWDIR_REL%%/fira.css +%%WWWDIR_REL%%/index.html +%%WWWDIR_REL%%/ttf/FiraMono-Bold.ttf +%%WWWDIR_REL%%/ttf/FiraMono-Regular.ttf +%%WWWDIR_REL%%/ttf/FiraSans-Bold.ttf +%%WWWDIR_REL%%/ttf/FiraSans-BoldItalic.ttf +%%WWWDIR_REL%%/ttf/FiraSans-Light.ttf +%%WWWDIR_REL%%/ttf/FiraSans-LightItalic.ttf +%%WWWDIR_REL%%/ttf/FiraSans-Medium.ttf +%%WWWDIR_REL%%/ttf/FiraSans-MediumItalic.ttf +%%WWWDIR_REL%%/ttf/FiraSans-Regular.ttf +%%WWWDIR_REL%%/ttf/FiraSans-RegularItalic.ttf +%%WWWDIR_REL%%/woff/FiraMono-Bold.woff +%%WWWDIR_REL%%/woff/FiraMono-Regular.woff +%%WWWDIR_REL%%/woff/FiraSans-Bold.woff +%%WWWDIR_REL%%/woff/FiraSans-BoldItalic.woff +%%WWWDIR_REL%%/woff/FiraSans-Light.woff +%%WWWDIR_REL%%/woff/FiraSans-LightItalic.woff +%%WWWDIR_REL%%/woff/FiraSans-Medium.woff +%%WWWDIR_REL%%/woff/FiraSans-MediumItalic.woff +%%WWWDIR_REL%%/woff/FiraSans-Regular.woff +%%WWWDIR_REL%%/woff/FiraSans-RegularItalic.woff +%%WWWDIR_REL%%/woff/FiraSansOT-Light.woff +%%WWWDIR_REL%%/woff/FiraSansSC-Bold.woff +%%WWWDIR_REL%%/woff/FiraSansSC-BoldItalic.woff +%%WWWDIR_REL%%/woff/FiraSansSC-Light.woff +%%WWWDIR_REL%%/woff/FiraSansSC-LightItalic.woff +%%WWWDIR_REL%%/woff/FiraSansSC-Medium.woff +%%WWWDIR_REL%%/woff/FiraSansSC-MediumItalic.woff +%%WWWDIR_REL%%/woff/FiraSansSC-Regular.woff +%%WWWDIR_REL%%/woff/FiraSansSC-RegularItalic.woff +@dirrm %%WWWDIR_REL%%/woff +@dirrm %%WWWDIR_REL%%/ttf +@dirrm %%WWWDIR_REL%%/eot +@dirrm %%WWWDIR_REL%% From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:30:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E124D0A; Mon, 20 Jan 2014 20:30:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2A8721776; Mon, 20 Jan 2014 20:30:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKUJhp058419; Mon, 20 Jan 2014 20:30:19 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKUJJn058417; Mon, 20 Jan 2014 20:30:19 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202030.s0KKUJJn058417@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 20:30:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340465 - head/cad/chipvault X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:30:19 -0000 Author: antoine Date: Mon Jan 20 20:30:18 2014 New Revision: 340465 URL: http://svnweb.freebsd.org/changeset/ports/340465 QAT: https://qat.redports.org/buildarchive/r340465/ Log: Stage support Modified: head/cad/chipvault/Makefile Modified: head/cad/chipvault/Makefile ============================================================================== --- head/cad/chipvault/Makefile Mon Jan 20 20:23:56 2014 (r340464) +++ head/cad/chipvault/Makefile Mon Jan 20 20:30:18 2014 (r340465) @@ -9,7 +9,7 @@ DISTNAME= cv.pl EXTRACT_SUFX= .gz MAINTAINER= ports@FreeBSD.org -COMMENT= A project organizer for VHDL and Verilog RTL hardware designs +COMMENT= Project organizer for VHDL and Verilog RTL hardware designs NO_WRKSUBDIR= yes EXTRACT_CMD= ${GZCAT} @@ -17,11 +17,11 @@ EXTRACT_BEFORE_ARGS= # empty EXTRACT_AFTER_ARGS= > ${DISTNAME} NO_BUILD= yes PLIST_FILES= bin/cv -USES= perl5 +USES= perl5 shebangfix USE_PERL5= run +SHEBANG_FILES= cv.pl -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/cv.pl ${PREFIX}/bin/cv + ${INSTALL_SCRIPT} ${WRKSRC}/cv.pl ${STAGEDIR}${PREFIX}/bin/cv .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:34:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F43410A; Mon, 20 Jan 2014 20:34:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1BCFC1810; Mon, 20 Jan 2014 20:34:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKXxGm060876; Mon, 20 Jan 2014 20:33:59 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKXxPM060875; Mon, 20 Jan 2014 20:33:59 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202033.s0KKXxPM060875@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 20:33:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340466 - head/cad/dinotrace X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:34:00 -0000 Author: antoine Date: Mon Jan 20 20:33:59 2014 New Revision: 340466 URL: http://svnweb.freebsd.org/changeset/ports/340466 QAT: https://qat.redports.org/buildarchive/r340466/ Log: Stage support Modified: head/cad/dinotrace/Makefile Modified: head/cad/dinotrace/Makefile ============================================================================== --- head/cad/dinotrace/Makefile Mon Jan 20 20:30:18 2014 (r340465) +++ head/cad/dinotrace/Makefile Mon Jan 20 20:33:59 2014 (r340466) @@ -23,7 +23,6 @@ GNU_CONFIGURE= yes INFO= dinotrace PLIST_FILES= bin/dinotrace -NO_STAGE= yes .include .if ${PORT_OPTIONS:MEMACS} @@ -40,11 +39,10 @@ post-patch: post-install: .if ${PORT_OPTIONS:MEMACS} - @${MKDIR} ${PREFIX}/${EMACS_SITE_LISPDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .for F in dinotrace.el sim-log.el - ${INSTALL_DATA} ${WRKSRC}/lisp/${F} ${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/lisp/${F} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .endfor - @${CAT} ${PKGMESSAGE} .endif .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:35:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D83E36E; Mon, 20 Jan 2014 20:35:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 19BFF184A; Mon, 20 Jan 2014 20:35:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKZp8d061224; Mon, 20 Jan 2014 20:35:51 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKZpp0061223; Mon, 20 Jan 2014 20:35:51 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202035.s0KKZpp0061223@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 20:35:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340467 - head/cad/dxf2fig X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:35:52 -0000 Author: antoine Date: Mon Jan 20 20:35:51 2014 New Revision: 340467 URL: http://svnweb.freebsd.org/changeset/ports/340467 QAT: https://qat.redports.org/buildarchive/r340467/ Log: Stage support Modified: head/cad/dxf2fig/Makefile Modified: head/cad/dxf2fig/Makefile ============================================================================== --- head/cad/dxf2fig/Makefile Mon Jan 20 20:33:59 2014 (r340466) +++ head/cad/dxf2fig/Makefile Mon Jan 20 20:35:51 2014 (r340467) @@ -11,7 +11,6 @@ COMMENT= DXF to FIG converter PLIST_FILES= bin/dxf2fig -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|^CFLAGS=|CFLAGS+=|g ; \ s|-O -s||g ; \ @@ -19,6 +18,6 @@ post-patch: s|-L|#-L|' ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:40:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE65B52D; Mon, 20 Jan 2014 20:40:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CB42A1884; Mon, 20 Jan 2014 20:40:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKedeo063872; Mon, 20 Jan 2014 20:40:39 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKedsQ063871; Mon, 20 Jan 2014 20:40:39 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401202040.s0KKedsQ063871@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 20:40:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340468 - head/textproc/fist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:40:39 -0000 Author: mat Date: Mon Jan 20 20:40:39 2014 New Revision: 340468 URL: http://svnweb.freebsd.org/changeset/ports/340468 QAT: https://qat.redports.org/buildarchive/r340468/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/fist/Makefile Modified: head/textproc/fist/Makefile ============================================================================== --- head/textproc/fist/Makefile Mon Jan 20 20:35:51 2014 (r340467) +++ head/textproc/fist/Makefile Mon Jan 20 20:40:39 2014 (r340468) @@ -10,8 +10,6 @@ MAINTAINER= swills@FreeBSD.org COMMENT= An emphatic message generator GNU_CONFIGURE= yes -MAN1= fist.1 -PLIST_FILES= bin/fist +PLIST_FILES= bin/fist man/man1/fist.1.gz -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:42:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 238727AC; Mon, 20 Jan 2014 20:42:15 +0000 (UTC) Received: from mail-wi0-x234.google.com (mail-wi0-x234.google.com [IPv6:2a00:1450:400c:c05::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 11ACD18ED; Mon, 20 Jan 2014 20:42:13 +0000 (UTC) Received: by mail-wi0-f180.google.com with SMTP id d13so3623220wiw.1 for ; Mon, 20 Jan 2014 12:42:12 -0800 (PST) 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=V2+XY+N9yDAxoFGfqhOrSUd5BBNB9JoJWKFN+HDLzdc=; b=goHs9qhaBWHQJB0oknwxKFKnIHM4LnKrAsWBWXzdu6QKuMyxkS6ShJHd/x05xR7YfU ChBgYJekXNKo7ukToHVqVGfMDMuilndLn/bKL8wSjsp76EKfK5Aaan2vkdyWMEYuE/cS UUzxLsyGmTF+77l5w+PQ39YYZoY6tHLmmeEYTbn0M6VnmcsYHKbuFbUmDfgB98A+57Z1 4SUMhaePz3CIMCHK+BWjX3nS3xQPNQb/6f1RZ4RDvXz1EiVkaq0u8XWBwXAEP27XhfXm oauNusND4LDD84+35rwsn9xz30thbDwWgByucB63cTH/bzPt3J3twR56QEZjpYY1xmiv ekYA== X-Received: by 10.180.187.229 with SMTP id fv5mr11614313wic.24.1390250532517; Mon, 20 Jan 2014 12:42:12 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id f7sm3466642wjb.7.2014.01.20.12.42.10 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 20 Jan 2014 12:42:11 -0800 (PST) Sender: Baptiste Daroussin Date: Mon, 20 Jan 2014 21:42:09 +0100 From: Baptiste Daroussin To: Alexander Leidinger Subject: Re: svn commit: r340118 - head/audio/lame Message-ID: <20140120204208.GJ78580@ithaqua.etoilebsd.net> References: <201401172141.s0HLfCP0096620@svn.freebsd.org> <5844234.U6fZ9grvn7@mercury.ph.man.ac.uk> <20140117224229.GA78580@ithaqua.etoilebsd.net> <20140118092757.00003818@unknown> <20140118083539.GC78580@ithaqua.etoilebsd.net> <20140120211324.00003390@unknown> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Tu8ztk+XgTAiG9Id" Content-Disposition: inline In-Reply-To: <20140120211324.00003390@unknown> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-ports-head@freebsd.org, Max Brazhnikov , svn-ports-all@freebsd.org, Alexander Leidinger , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:42:15 -0000 --Tu8ztk+XgTAiG9Id Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jan 20, 2014 at 09:13:24PM +0100, Alexander Leidinger wrote: > On Sat, 18 Jan 2014 09:35:39 +0100 > Baptiste Daroussin wrote: >=20 > > On Sat, Jan 18, 2014 at 09:27:57AM +0100, Alexander Leidinger wrote: > > > On Fri, 17 Jan 2014 23:42:29 +0100 > > > Baptiste Daroussin wrote: > > >=20 > > > > btw here is a patch to cleanup a bit that port: > > > >=20 > > > > http://people.freebsd.org/~bapt/lame.diff > > >=20 > > > [...] > > >=20 > > > > Strip the binary library (DEVELOPER=3Dyes passes thought stage-qa > > > > target which shows that is it not stripped) > > >=20 > > > We don't do this in all ports, do we? Why doing it here explicitly? > >=20 > > No we have never done that, and we should we are working on doing it. >=20 > What about doing it in a generic target between install to the staging > area and the packaging/install? Either in an automatic way (strip all > ELF binaries, with the possibility to disable completely and to exclude > files if needed), or in a similar way to PLIST_FILES / PLIST_DIRS. >=20 > Bye, > Alexander. >=20 > --=20 > http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 > http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 the automatic target is what we are working on ;) regards, Bapt --Tu8ztk+XgTAiG9Id Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (FreeBSD) iEYEARECAAYFAlLdiiAACgkQ8kTtMUmk6EyFRgCdFmloewMCKXNiqnaeqMATYBb+ HbMAnRMqFoGYYdbR5jr8bTuuxMDd+fWM =SsJK -----END PGP SIGNATURE----- --Tu8ztk+XgTAiG9Id-- From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:43:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF287892; Mon, 20 Jan 2014 20:43:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CB04518FB; Mon, 20 Jan 2014 20:43:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKhT99064777; Mon, 20 Jan 2014 20:43:29 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKhTAO064775; Mon, 20 Jan 2014 20:43:29 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401202043.s0KKhTAO064775@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 20:43:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340469 - head/textproc/p5-XML-Mini X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:43:29 -0000 Author: mat Date: Mon Jan 20 20:43:29 2014 New Revision: 340469 URL: http://svnweb.freebsd.org/changeset/ports/340469 QAT: https://qat.redports.org/buildarchive/r340469/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/p5-XML-Mini/Makefile head/textproc/p5-XML-Mini/pkg-plist Modified: head/textproc/p5-XML-Mini/Makefile ============================================================================== --- head/textproc/p5-XML-Mini/Makefile Mon Jan 20 20:40:39 2014 (r340468) +++ head/textproc/p5-XML-Mini/Makefile Mon Jan 20 20:43:29 2014 (r340469) @@ -13,11 +13,4 @@ COMMENT= Perl implementation of the XML: USES= perl5 USE_PERL5= configure -MAN3= XML::Mini.3 XML::Mini::Document.3 XML::Mini::Element.3 \ - XML::Mini::Element::CData.3 XML::Mini::Element::Comment.3 \ - XML::Mini::Element::DocType.3 XML::Mini::Element::Entity.3 \ - XML::Mini::Element::Header.3 XML::Mini::Node.3 \ - XML::Mini::TreeComponent.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-XML-Mini/pkg-plist ============================================================================== --- head/textproc/p5-XML-Mini/pkg-plist Mon Jan 20 20:40:39 2014 (r340468) +++ head/textproc/p5-XML-Mini/pkg-plist Mon Jan 20 20:43:29 2014 (r340469) @@ -1,3 +1,13 @@ +%%PERL5_MAN3%%/XML::Mini.3.gz +%%PERL5_MAN3%%/XML::Mini::Document.3.gz +%%PERL5_MAN3%%/XML::Mini::Element.3.gz +%%PERL5_MAN3%%/XML::Mini::Element::CData.3.gz +%%PERL5_MAN3%%/XML::Mini::Element::Comment.3.gz +%%PERL5_MAN3%%/XML::Mini::Element::DocType.3.gz +%%PERL5_MAN3%%/XML::Mini::Element::Entity.3.gz +%%PERL5_MAN3%%/XML::Mini::Element::Header.3.gz +%%PERL5_MAN3%%/XML::Mini::Node.3.gz +%%PERL5_MAN3%%/XML::Mini::TreeComponent.3.gz %%SITE_PERL%%/XML/Mini.pm %%SITE_PERL%%/XML/Mini/Document.pm %%SITE_PERL%%/XML/Mini/Element.pm From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:47:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E053ACF; Mon, 20 Jan 2014 20:47:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 583A8192D; Mon, 20 Jan 2014 20:47:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKlXx6065346; Mon, 20 Jan 2014 20:47:33 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKlX75065345; Mon, 20 Jan 2014 20:47:33 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401202047.s0KKlX75065345@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 20:47:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340470 - head/textproc/simplexml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:47:33 -0000 Author: mat Date: Mon Jan 20 20:47:32 2014 New Revision: 340470 URL: http://svnweb.freebsd.org/changeset/ports/340470 QAT: https://qat.redports.org/buildarchive/r340470/ Log: * Convert to staging * Convert to new LIB_DEPENDS format Sponsored by: Absolight Modified: head/textproc/simplexml/Makefile Modified: head/textproc/simplexml/Makefile ============================================================================== --- head/textproc/simplexml/Makefile Mon Jan 20 20:43:29 2014 (r340469) +++ head/textproc/simplexml/Makefile Mon Jan 20 20:47:32 2014 (r340470) @@ -11,7 +11,7 @@ DIST_SUBDIR= ${PORTNAME} MAINTAINER= konstantin.lepa@gmail.com COMMENT= C++ XML parser library -LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2 +LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 USES= cmake iconv USE_LDCONFIG= yes @@ -22,7 +22,6 @@ WRKSRC= ${WRKDIR}/${PORTNAME} CMAKE_ARGS+= -DDEBUG_MODE:BOOL=ON .endif -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|; \ /set.*CMAKE_BUILD_TYPE/d' ${WRKSRC}/CMakeLists.txt \ From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:48:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A26BABAF; Mon, 20 Jan 2014 20:48:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E6C81933; Mon, 20 Jan 2014 20:48:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKmC4t065501; Mon, 20 Jan 2014 20:48:12 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKmCU3065499; Mon, 20 Jan 2014 20:48:12 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202048.s0KKmCU3065499@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 20:48:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340471 - head/cad/qfsm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:48:12 -0000 Author: antoine Date: Mon Jan 20 20:48:11 2014 New Revision: 340471 URL: http://svnweb.freebsd.org/changeset/ports/340471 QAT: https://qat.redports.org/buildarchive/r340471/ Log: - Stage support - Use OPTIONS helpers Modified: head/cad/qfsm/Makefile head/cad/qfsm/pkg-plist Modified: head/cad/qfsm/Makefile ============================================================================== --- head/cad/qfsm/Makefile Mon Jan 20 20:47:32 2014 (r340470) +++ head/cad/qfsm/Makefile Mon Jan 20 20:48:11 2014 (r340471) @@ -8,7 +8,7 @@ CATEGORIES= cad MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION:R} MAINTAINER= ports@FreeBSD.org -COMMENT= A graphical tool for designing finite state machines +COMMENT= Graphical tool for designing finite state machines LICENSE= GPLv3 # (or later) @@ -18,49 +18,37 @@ USE_BZIP2= yes USE_XORG= xi USE_QT4= corelib gui qt3support svg xml \ moc_build qmake_build rcc_build uic_build -USE_GNOME= desktopfileutils -USES= cmake +USES= cmake desktop-file-utils INSTALLS_ICONS= yes -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MGRAPHVIZ} -BULID_DEPENDS+= graphviz>=2.22:${PORTSDIR}/graphics/graphviz -RUN_DEPENDS+= graphviz>=2.22:${PORTSDIR}/graphics/graphviz -.else -CMAKE_ARGS+= -DQFSM_AVOID_GRAPHVIZ:BOOL=ON -.endif +GRAPHVIZ_BUILD_DEPENDS= graphviz>=2.22:${PORTSDIR}/graphics/graphviz +GRAPHVIZ_RUN_DEPENDS= graphviz>=2.22:${PORTSDIR}/graphics/graphviz +GRAPHVIZ_CMAKE_OFF= -DQFSM_AVOID_GRAPHVIZ:BOOL=ON post-patch: @${REINPLACE_CMD} -e \ '/\/usr\//d' ${WRKSRC}/FindGraphViz.cmake do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} qfsm ${PREFIX}/bin) - (cd ${WRKSRC}/desktop && ${INSTALL_DATA} qfsm.desktop \ - ${PREFIX}/share/applications) + ${INSTALL_PROGRAM} ${WRKSRC}/qfsm ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/desktop/qfsm.desktop \ + ${STAGEDIR}${PREFIX}/share/applications .for i in 32x32 48x48 64x64 - @${MKDIR} ${PREFIX}/share/icons/hicolor/${i}/apps - (cd ${WRKSRC}/desktop/${i}/apps && ${INSTALL_DATA} qfsm.png \ - ${PREFIX}/share/icons/hicolor/${i}/apps) - @${MKDIR} ${PREFIX}/share/icons/hicolor/${i}/mimetypes - (cd ${WRKSRC}/desktop/${i}/mimetypes && ${INSTALL_DATA} x-qfsm.png \ - ${PREFIX}/share/icons/hicolor/${i}/mimetypes) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}/apps + ${INSTALL_DATA} ${WRKSRC}/desktop/${i}/apps/qfsm.png \ + ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}/apps + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}/mimetypes + ${INSTALL_DATA} ${WRKSRC}/desktop/${i}/mimetypes/x-qfsm.png \ + ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}/mimetypes .endfor - @${MKDIR} ${PREFIX}/share/mimelnk/application - (cd ${WRKSRC}/desktop && ${INSTALL_DATA} x-qfsm.desktop \ - ${PREFIX}/share/mimelnk/application) - @${MKDIR} ${DATADIR} - (cd ${WRKSRC}/po && ${INSTALL_DATA} *.qm ${DATADIR}) -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @(cd ${WRKSRC}/doc/user && ${COPYTREE_SHARE} . ${DOCSDIR}) -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) -.endif - @-update-desktop-database + @${MKDIR} ${STAGEDIR}${PREFIX}/share/mimelnk/application + ${INSTALL_DATA} ${WRKSRC}/desktop/x-qfsm.desktop \ + ${STAGEDIR}${PREFIX}/share/mimelnk/application + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/po/*.qm ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/doc/user && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/cad/qfsm/pkg-plist ============================================================================== --- head/cad/qfsm/pkg-plist Mon Jan 20 20:47:32 2014 (r340470) +++ head/cad/qfsm/pkg-plist Mon Jan 20 20:48:11 2014 (r340471) @@ -74,5 +74,3 @@ share/mimelnk/application/x-qfsm.desktop @dirrmtry share/icons %%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%% -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:51:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 536CAE4F; Mon, 20 Jan 2014 20:51:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3FFA719B1; Mon, 20 Jan 2014 20:51:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKp3EL068166; Mon, 20 Jan 2014 20:51:03 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKp3AN068165; Mon, 20 Jan 2014 20:51:03 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401202051.s0KKp3AN068165@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 20:51:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340472 - head/textproc/tnef2txt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:51:03 -0000 Author: mat Date: Mon Jan 20 20:51:02 2014 New Revision: 340472 URL: http://svnweb.freebsd.org/changeset/ports/340472 QAT: https://qat.redports.org/buildarchive/r340472/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/tnef2txt/Makefile Modified: head/textproc/tnef2txt/Makefile ============================================================================== --- head/textproc/tnef2txt/Makefile Mon Jan 20 20:48:11 2014 (r340471) +++ head/textproc/tnef2txt/Makefile Mon Jan 20 20:51:02 2014 (r340472) @@ -15,16 +15,11 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" PLIST_FILES= bin/tnef2txt PORTDOCS= README -NO_STAGE= yes do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/tnef2txt ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/tnef2txt ${STAGEDIR}${PREFIX}/bin post-install: -.if !defined(NOPORTDOCS) - @${ECHO} "===> Installing README in ${PREFIX}/share/doc/tnef2txt" - @${MKDIR} ${PREFIX}/share/doc/tnef2txt && \ - ${CHMOD} a+rx ${PREFIX}/share/doc/tnef2txt - @${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/tnef2txt -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:51:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E85FBF31; Mon, 20 Jan 2014 20:51:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D50AD19BA; Mon, 20 Jan 2014 20:51:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKpYxK068567; Mon, 20 Jan 2014 20:51:34 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKpYc3068566; Mon, 20 Jan 2014 20:51:34 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202051.s0KKpYc3068566@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 20:51:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340473 - head/cad/slffea X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:51:35 -0000 Author: antoine Date: Mon Jan 20 20:51:34 2014 New Revision: 340473 URL: http://svnweb.freebsd.org/changeset/ports/340473 QAT: https://qat.redports.org/buildarchive/r340473/ Log: Stage support Modified: head/cad/slffea/Makefile Modified: head/cad/slffea/Makefile ============================================================================== --- head/cad/slffea/Makefile Mon Jan 20 20:51:02 2014 (r340472) +++ head/cad/slffea/Makefile Mon Jan 20 20:51:34 2014 (r340473) @@ -32,7 +32,6 @@ EXEC= beam/beam/bm beam/beam_gr/bmpost b truss/truss_gr/tspost PLIST_FILES= ${EXEC:T:S/^/bin\//} -NO_STAGE= yes post-patch: @(${FIND} ${WRKSRC} -name Makefile | ${XARGS} \ ${REINPLACE_CMD} -E -e "s|^CC = .*|CC = ${CC} ${CFLAGS}|g" \ @@ -44,7 +43,7 @@ post-patch: do-install: .for file in ${EXEC} - ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin .endfor .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:52:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 438B47D; Mon, 20 Jan 2014 20:52:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2FA2219C6; Mon, 20 Jan 2014 20:52:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKqscI068783; Mon, 20 Jan 2014 20:52:54 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKqskM068781; Mon, 20 Jan 2014 20:52:54 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401202052.s0KKqskM068781@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 20:52:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340474 - head/textproc/p5-Text-Format+NWrap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:52:55 -0000 Author: mat Date: Mon Jan 20 20:52:54 2014 New Revision: 340474 URL: http://svnweb.freebsd.org/changeset/ports/340474 QAT: https://qat.redports.org/buildarchive/r340474/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/p5-Text-Format+NWrap/Makefile head/textproc/p5-Text-Format+NWrap/pkg-plist Modified: head/textproc/p5-Text-Format+NWrap/Makefile ============================================================================== --- head/textproc/p5-Text-Format+NWrap/Makefile Mon Jan 20 20:51:34 2014 (r340473) +++ head/textproc/p5-Text-Format+NWrap/Makefile Mon Jan 20 20:52:54 2014 (r340474) @@ -16,7 +16,4 @@ CONFLICTS= p5-Text-Format-[0-9]* USES= perl5 USE_PERL5= configure -MAN3= Text::Format.3 Text::NWrap.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Format+NWrap/pkg-plist ============================================================================== --- head/textproc/p5-Text-Format+NWrap/pkg-plist Mon Jan 20 20:51:34 2014 (r340473) +++ head/textproc/p5-Text-Format+NWrap/pkg-plist Mon Jan 20 20:52:54 2014 (r340474) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Text::Format.3.gz +%%PERL5_MAN3%%/Text::NWrap.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text-Format+NWrap/.packlist %%SITE_PERL%%/Text/Format.pm %%SITE_PERL%%/Text/NWrap.pm From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:54:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE97318F; Mon, 20 Jan 2014 20:54:01 +0000 (UTC) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 2AD4319D2; Mon, 20 Jan 2014 20:54:01 +0000 (UTC) Received: from outgoing.leidinger.net (p57A38320.dip0.t-ipconnect.de [87.163.131.32]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id 1835084405B; Mon, 20 Jan 2014 21:53:47 +0100 (CET) Received: from unknown (Titan.Leidinger.net [192.168.1.17]) by outgoing.leidinger.net (Postfix) with ESMTP id A71DF3233; Mon, 20 Jan 2014 21:53:44 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=leidinger.net; s=outgoing-alex; t=1390251224; bh=A2g8KUfxudb/hAgdakk6L3ZaZ0bhrmSTjMgeukAeJ+8=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=VGITQ+2RyyKRKWK0RRtD0yDwQknP0qi7t7Ho0Ow9YFciZi/rEkRZkK5pvZ2Ema4ey r9JNXYzulvJack9AnOdqnbtvWQfwPu36fmCJ9iLtVe5VjLWhlzbU0FGwqSQZDDc3fI Odmzh/gCHkSGcisTFvzEa7a7ffBbC+pqWc0YcUEZNGv2uraXM9pqF1Vl4XeEV7iaLH vz5lC5u8YcltXZ31yK+DMVtq9wK7AXxAV/nsyYzj9YSfNVmTg2fGuoeNsjhyHCE9dD N0FVh41tUO5RQFaASUaztg3WZjppsPlwt2JyH+7fT4fxwPe/lNdSwIyORRhsQKuD+I GGwmSfItKSQ3g== Date: Mon, 20 Jan 2014 21:53:43 +0100 From: Alexander Leidinger To: Baptiste Daroussin Subject: Re: svn commit: r340118 - head/audio/lame Message-ID: <20140120215343.0000325b@unknown> In-Reply-To: <20140120204208.GJ78580@ithaqua.etoilebsd.net> References: <201401172141.s0HLfCP0096620@svn.freebsd.org> <5844234.U6fZ9grvn7@mercury.ph.man.ac.uk> <20140117224229.GA78580@ithaqua.etoilebsd.net> <20140118092757.00003818@unknown> <20140118083539.GC78580@ithaqua.etoilebsd.net> <20140120211324.00003390@unknown> <20140120204208.GJ78580@ithaqua.etoilebsd.net> X-Mailer: Claws Mail 3.9.2-55-g74b05b (GTK+ 2.16.6; i586-pc-mingw32msvc) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: 1835084405B.A2C61 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=-1.096, required 6, autolearn=disabled, ALL_TRUSTED -1.00, AWL -0.07, DKIM_SIGNED 0.10, DKIM_VALID -0.10, DKIM_VALID_AU -0.10, RP_MATCHES_RCVD -0.00, TW_SV 0.08) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1390856028.24808@pz2Qn5PaTHI5JSCVQZ0VOA X-EBL-Spam-Status: No Cc: svn-ports-head@freebsd.org, Max Brazhnikov , svn-ports-all@freebsd.org, Alexander Leidinger , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:54:01 -0000 On Mon, 20 Jan 2014 21:42:09 +0100 Baptiste Daroussin wrote: > On Mon, Jan 20, 2014 at 09:13:24PM +0100, Alexander Leidinger wrote: > > On Sat, 18 Jan 2014 09:35:39 +0100 > > Baptiste Daroussin wrote: > > > No we have never done that, and we should we are working on doing > > > it. > > > > What about doing it in a generic target between install to the > > staging area and the packaging/install? Either in an automatic way > > (strip all ELF binaries, with the possibility to disable completely > > and to exclude files if needed), or in a similar way to > > PLIST_FILES / PLIST_DIRS. > the automatic target is what we are working on ;) So there's no need to strip inside the port. Correct? ;) Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:55:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF222277; Mon, 20 Jan 2014 20:55:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AAF7F19DF; Mon, 20 Jan 2014 20:55:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKtEc9069182; Mon, 20 Jan 2014 20:55:14 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKtE3d069181; Mon, 20 Jan 2014 20:55:14 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202055.s0KKtE3d069181@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 20:55:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340475 - head/cad/verilog-mode.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.17 Precedence: list List-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, 20 Jan 2014 20:55:14 -0000 Author: antoine Date: Mon Jan 20 20:55:14 2014 New Revision: 340475 URL: http://svnweb.freebsd.org/changeset/ports/340475 QAT: https://qat.redports.org/buildarchive/r340475/ Log: Stage support Modified: head/cad/verilog-mode.el/Makefile Modified: head/cad/verilog-mode.el/Makefile ============================================================================== --- head/cad/verilog-mode.el/Makefile Mon Jan 20 20:52:54 2014 (r340474) +++ head/cad/verilog-mode.el/Makefile Mon Jan 20 20:55:14 2014 (r340475) @@ -26,10 +26,8 @@ EMACS_NO_BUILD_DEPENDS= yes PLIST_FILES= ${EMACS_SITE_LISPDIR}/${PORTNAME} -NO_STAGE= yes do-install: - @${MKDIR} ${PREFIX}/${EMACS_SITE_LISPDIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} ${PREFIX}/${EMACS_SITE_LISPDIR} - @${CAT} ${PKGMESSAGE} + @${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/${EMACS_SITE_LISPDIR} .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:55:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EAE6A353; Mon, 20 Jan 2014 20:55:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D6F6E19E6; Mon, 20 Jan 2014 20:55:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKtmXZ069319; Mon, 20 Jan 2014 20:55:48 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKtmuu069317; Mon, 20 Jan 2014 20:55:48 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401202055.s0KKtmuu069317@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 20:55:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340476 - head/textproc/p5-POD2-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.17 Precedence: list List-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, 20 Jan 2014 20:55:49 -0000 Author: mat Date: Mon Jan 20 20:55:48 2014 New Revision: 340476 URL: http://svnweb.freebsd.org/changeset/ports/340476 QAT: https://qat.redports.org/buildarchive/r340476/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/p5-POD2-Base/Makefile head/textproc/p5-POD2-Base/pkg-plist Modified: head/textproc/p5-POD2-Base/Makefile ============================================================================== --- head/textproc/p5-POD2-Base/Makefile Mon Jan 20 20:55:14 2014 (r340475) +++ head/textproc/p5-POD2-Base/Makefile Mon Jan 20 20:55:48 2014 (r340476) @@ -14,8 +14,4 @@ COMMENT= Base module for translations of USES= perl5 USE_PERL5= configure -MAN3= POD2::Base.3 \ - POD2::PT::POD2::Base.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-POD2-Base/pkg-plist ============================================================================== --- head/textproc/p5-POD2-Base/pkg-plist Mon Jan 20 20:55:14 2014 (r340475) +++ head/textproc/p5-POD2-Base/pkg-plist Mon Jan 20 20:55:48 2014 (r340476) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/POD2::Base.3.gz +%%PERL5_MAN3%%/POD2::PT::POD2::Base.3.gz %%SITE_PERL%%/POD2/Base.pm %%SITE_PERL%%/POD2/Base.pod %%SITE_PERL%%/POD2/PT/POD2/Base.pod From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 20:56:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E05F57C; Mon, 20 Jan 2014 20:56:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3A9B419FC; Mon, 20 Jan 2014 20:56:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KKuk6D069553; Mon, 20 Jan 2014 20:56:46 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KKukoU069552; Mon, 20 Jan 2014 20:56:46 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401202056.s0KKukoU069552@svn.freebsd.org> From: Mathieu Arnold Date: Mon, 20 Jan 2014 20:56:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340477 - head/textproc/rubygem-ltsv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 20:56:46 -0000 Author: mat Date: Mon Jan 20 20:56:45 2014 New Revision: 340477 URL: http://svnweb.freebsd.org/changeset/ports/340477 QAT: https://qat.redports.org/buildarchive/r340477/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/rubygem-ltsv/Makefile Modified: head/textproc/rubygem-ltsv/Makefile ============================================================================== --- head/textproc/rubygem-ltsv/Makefile Mon Jan 20 20:55:48 2014 (r340476) +++ head/textproc/rubygem-ltsv/Makefile Mon Jan 20 20:56:45 2014 (r340477) @@ -12,5 +12,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 21:00:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B37E46E7; Mon, 20 Jan 2014 21:00:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 861471A25; Mon, 20 Jan 2014 21:00:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KL067o070172; Mon, 20 Jan 2014 21:00:06 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KL06DE070170; Mon, 20 Jan 2014 21:00:06 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202100.s0KL06DE070170@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 21:00:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340478 - head/cad/z88 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 21:00:06 -0000 Author: antoine Date: Mon Jan 20 21:00:05 2014 New Revision: 340478 URL: http://svnweb.freebsd.org/changeset/ports/340478 QAT: https://qat.redports.org/buildarchive/r340478/ Log: Stage support Modified: head/cad/z88/Makefile head/cad/z88/pkg-plist Modified: head/cad/z88/Makefile ============================================================================== --- head/cad/z88/Makefile Mon Jan 20 20:56:45 2014 (r340477) +++ head/cad/z88/Makefile Mon Jan 20 21:00:05 2014 (r340478) @@ -11,7 +11,7 @@ DIST_SUBDIR= z88 EXTRACT_ONLY= ${PORTNAME}130${EXTRACT_SUFX} MAINTAINER= ports@FreeBSD.org -COMMENT= A compact Finite Element Analysis System +COMMENT= Compact Finite Element Analysis System LIB_DEPENDS= libgtkglext-x11-1.0.so:${PORTSDIR}/x11-toolkits/gtkglext @@ -24,14 +24,12 @@ USE_GNOME= gtk20 BROWSER?= firefox3 XEDITOR?= gedit +OPTIONS_DEFINE= DOCS + Z88_BINS= z88f z88i1 z88i2 z88com z88d z88e z88g z88h z88n z88o \ z88x z88v Z88_DATA= z88.fcd z88.dyn *.dxf *.txt -NO_STAGE= yes - -.include - post-patch: @${CP} ${WRKSRC}/z88.fcd.linux ${WRKSRC}/z88.fcd @${CP} ${WRKSRC}/z88.mk.kernel.gcc32 ${WRKSRC}/z88.kernel.mk @@ -59,17 +57,15 @@ do-build: @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} -f z88.gtk.mk gtk) do-install: - @${MKDIR} ${PREFIX}/bin - @${INSTALL_SCRIPT} ${WRKSRC}/z88.sh ${PREFIX}/bin/z88 - @${INSTALL_PROGRAM} ${Z88_BINS:S|^|${WRKSRC}/|} ${PREFIX}/bin - @${MKDIR} ${DATADIR} - @${INSTALL_DATA} ${Z88_DATA:S|^|${WRKSRC}/|} ${DATADIR} - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/*.htm ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/*.gif ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/*.jpg ${DOCSDIR} -.if ${PORT_OPTIONS:MDOCS} - @${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/z88mane.pdf ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/z88.sh ${STAGEDIR}${PREFIX}/bin/z88 + ${INSTALL_PROGRAM} ${Z88_BINS:S|^|${WRKSRC}/|} ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${Z88_DATA:S|^|${WRKSRC}/|} ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/*.htm ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/*.gif ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/*.jpg ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/z88mane.pdf ${STAGEDIR}${DOCSDIR} .include Modified: head/cad/z88/pkg-plist ============================================================================== --- head/cad/z88/pkg-plist Mon Jan 20 20:56:45 2014 (r340477) +++ head/cad/z88/pkg-plist Mon Jan 20 21:00:05 2014 (r340478) @@ -10,7 +10,6 @@ bin/z88i2 bin/z88n bin/z88o bin/z88v -bin/z88v bin/z88x %%DATADIR%%/b10_2.txt %%DATADIR%%/b10_3.txt From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 21:06:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A2A884D; Mon, 20 Jan 2014 21:06:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EFB651AB5; Mon, 20 Jan 2014 21:06:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KL6tfw073725; Mon, 20 Jan 2014 21:06:55 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KL6tfh073724; Mon, 20 Jan 2014 21:06:55 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202106.s0KL6tfh073724@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 21:06:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340479 - head/chinese/bg5ps X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 21:06:56 -0000 Author: antoine Date: Mon Jan 20 21:06:55 2014 New Revision: 340479 URL: http://svnweb.freebsd.org/changeset/ports/340479 QAT: https://qat.redports.org/buildarchive/r340479/ Log: Stage support Modified: head/chinese/bg5ps/Makefile Modified: head/chinese/bg5ps/Makefile ============================================================================== --- head/chinese/bg5ps/Makefile Mon Jan 20 21:00:05 2014 (r340478) +++ head/chinese/bg5ps/Makefile Mon Jan 20 21:06:55 2014 (r340479) @@ -14,28 +14,21 @@ COMMENT= Convert Chinese-Big5/GB encoded LIB_DEPENDS= libttf.so:${PORTSDIR}/print/freetype USE_PYTHON= yes -PKGMESSAGE= ${WRKDIR}/pkg-message SUB_FILES= pkg-message -NO_STAGE= yes -.include +OPTIONS_DEFINE= DOCS do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/bg5ps ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/ttf2psm ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/bg5ps.conf ${PREFIX}/etc/bg5ps.conf.sample - ${INSTALL_DATA} ${WRKSRC}/gb2312-bg5ps.conf ${PREFIX}/etc/gb2312-bg5ps.conf.sample -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${CP} -R ${WRKSRC}/doc/* ${DOCSDIR} -.endif - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/netscape.ps ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/test.big5 ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/test.gb2312 ${EXAMPLESDIR} - ${INSTALL_SCRIPT} ${WRKSRC}/examples/test.sh ${EXAMPLESDIR} - -post-install: - @${CAT} ${PKGMESSAGE} + ${INSTALL_SCRIPT} ${WRKSRC}/bg5ps ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/ttf2psm ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/bg5ps.conf ${STAGEDIR}${PREFIX}/etc/bg5ps.conf.sample + ${INSTALL_DATA} ${WRKSRC}/gb2312-bg5ps.conf ${STAGEDIR}${PREFIX}/etc/gb2312-bg5ps.conf.sample + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/netscape.ps ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/test.big5 ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/test.gb2312 ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/test.sh ${STAGEDIR}${EXAMPLESDIR} .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 21:17:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BECDBA95; Mon, 20 Jan 2014 21:17:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AAA581C82; Mon, 20 Jan 2014 21:17:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KLHvkQ077901; Mon, 20 Jan 2014 21:17:57 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KLHvnm077899; Mon, 20 Jan 2014 21:17:57 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202117.s0KLHvnm077899@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 21:17:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340480 - head/chinese/reciteword X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 21:17:57 -0000 Author: antoine Date: Mon Jan 20 21:17:57 2014 New Revision: 340480 URL: http://svnweb.freebsd.org/changeset/ports/340480 QAT: https://qat.redports.org/buildarchive/r340480/ Log: Stage support Modified: head/chinese/reciteword/Makefile Modified: head/chinese/reciteword/Makefile ============================================================================== --- head/chinese/reciteword/Makefile Mon Jan 20 21:06:55 2014 (r340479) +++ head/chinese/reciteword/Makefile Mon Jan 20 21:17:57 2014 (r340480) @@ -14,6 +14,8 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}.ta MAINTAINER= ports@FreeBSD.org COMMENT= Education software to help people to study English +LIB_DEPENDS= libespeak.so:${PORTSDIR}/audio/espeak + GNU_CONFIGURE= yes CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib" USE_BZIP2= yes @@ -23,24 +25,13 @@ CPPFLAGS+= "-I${LOCALBASE}/include" PORTDOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README TODO readme.txt -XTRACT_AFTER_ARGS+= --exclude CVS - -NO_STAGE= yes -.include - -LIB_DEPENDS+= libespeak.so:${PORTSDIR}/audio/espeak - post-patch: @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|' ${WRKSRC}/src/readword.cpp post-install: - @${MKDIR} ${DATADIR} - (cd ${WRKDIR}/ && ${COPYTREE_SHARE} "books dicts" ${DATADIR}) -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} -.for doc in ${PORTDOCS} - @${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} -.endfor -.endif + @${MKDIR} ${STAGEDIR}${DATADIR} + cd ${WRKDIR} && ${COPYTREE_SHARE} "books dicts" ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 21:22:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6C0EDC3; Mon, 20 Jan 2014 21:22:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C25F71D1C; Mon, 20 Jan 2014 21:22:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KLMPnM081075; Mon, 20 Jan 2014 21:22:25 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KLMPQE081074; Mon, 20 Jan 2014 21:22:25 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401202122.s0KLMPQE081074@svn.freebsd.org> From: Antoine Brodin Date: Mon, 20 Jan 2014 21:22:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340481 - head/chinese/scim-fcitx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 21:22:25 -0000 Author: antoine Date: Mon Jan 20 21:22:25 2014 New Revision: 340481 URL: http://svnweb.freebsd.org/changeset/ports/340481 QAT: https://qat.redports.org/buildarchive/r340481/ Log: Stage support Modified: head/chinese/scim-fcitx/Makefile Modified: head/chinese/scim-fcitx/Makefile ============================================================================== --- head/chinese/scim-fcitx/Makefile Mon Jan 20 21:17:57 2014 (r340480) +++ head/chinese/scim-fcitx/Makefile Mon Jan 20 21:22:25 2014 (r340481) @@ -29,12 +29,8 @@ LDFLAGS+= -L${LOCALBASE}/lib -lintl SUB_FILES= pkg-message -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ ${WRKSRC}/configure -post-install: - @${CAT} ${PKGMESSAGE} - .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 21:35:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EBACA212; Mon, 20 Jan 2014 21:35:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D79CB1E0E; Mon, 20 Jan 2014 21:35:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KLZ5C7087998; Mon, 20 Jan 2014 21:35:05 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KLZ5hE087995; Mon, 20 Jan 2014 21:35:05 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201401202135.s0KLZ5hE087995@svn.freebsd.org> From: TAKATSU Tomonari Date: Mon, 20 Jan 2014 21:35:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340482 - head/math/R-cran-forecast X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 21:35:06 -0000 Author: tota Date: Mon Jan 20 21:35:05 2014 New Revision: 340482 URL: http://svnweb.freebsd.org/changeset/ports/340482 QAT: https://qat.redports.org/buildarchive/r340482/ Log: - Update to 5.0 Modified: head/math/R-cran-forecast/Makefile head/math/R-cran-forecast/distinfo Modified: head/math/R-cran-forecast/Makefile ============================================================================== --- head/math/R-cran-forecast/Makefile Mon Jan 20 21:22:25 2014 (r340481) +++ head/math/R-cran-forecast/Makefile Mon Jan 20 21:35:05 2014 (r340482) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= forecast -PORTVERSION= 4.8 -PORTREVISION= 2 +PORTVERSION= 5.0 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -18,7 +17,8 @@ RUN_DEPENDS= R-cran-tseries>0:${PORTSDIR R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \ R-cran-Rcpp>=0.9.10:${PORTSDIR}/devel/R-cran-Rcpp \ R-cran-RcppArmadillo>=0.2.35:${PORTSDIR}/math/R-cran-RcppArmadillo \ - R-cran-colorspace>0:${PORTSDIR}/graphics/R-cran-colorspace + R-cran-colorspace>0:${PORTSDIR}/graphics/R-cran-colorspace \ + R-cran-timeDate>0:${PORTSDIR}/finance/R-cran-timeDate USES= cran:auto-plist Modified: head/math/R-cran-forecast/distinfo ============================================================================== --- head/math/R-cran-forecast/distinfo Mon Jan 20 21:22:25 2014 (r340481) +++ head/math/R-cran-forecast/distinfo Mon Jan 20 21:35:05 2014 (r340482) @@ -1,2 +1,2 @@ -SHA256 (forecast_4.8.tar.gz) = 6656f0d7bd7f2ab73e413776e7ac2704777d7c567fa8c8211b5fc59e516ec13b -SIZE (forecast_4.8.tar.gz) = 142778 +SHA256 (forecast_5.0.tar.gz) = 126176c017121c390b3e23b308e0a5a78c5f4a327bc43e7d1ead63959d653c69 +SIZE (forecast_5.0.tar.gz) = 147935 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 22:39:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0388D86; Mon, 20 Jan 2014 22:39:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B20D712CC; Mon, 20 Jan 2014 22:39:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KMdfk6020892; Mon, 20 Jan 2014 22:39:41 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KMdf0p020890; Mon, 20 Jan 2014 22:39:41 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401202239.s0KMdf0p020890@svn.freebsd.org> From: Dmitry Marakasov Date: Mon, 20 Jan 2014 22:39:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340483 - in head/audio: dumb dumb-allegro dumb/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.17 Precedence: list List-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, 20 Jan 2014 22:39:42 -0000 Author: amdmi3 Date: Mon Jan 20 22:39:40 2014 New Revision: 340483 URL: http://svnweb.freebsd.org/changeset/ports/340483 QAT: https://qat.redports.org/buildarchive/r340483/ Log: - Support staging - Minor port improvements Deleted: head/audio/dumb/files/config.txt Modified: head/audio/dumb-allegro/Makefile head/audio/dumb/Makefile Modified: head/audio/dumb-allegro/Makefile ============================================================================== --- head/audio/dumb-allegro/Makefile Mon Jan 20 21:35:05 2014 (r340482) +++ head/audio/dumb-allegro/Makefile Mon Jan 20 22:39:40 2014 (r340483) @@ -3,7 +3,5 @@ OPTIONS_SLAVE= ALLEGRO MASTERDIR= ${.CURDIR}/../dumb -PKGNAMESUFFIX= -allegro -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/audio/dumb/Makefile ============================================================================== --- head/audio/dumb/Makefile Mon Jan 20 21:35:05 2014 (r340482) +++ head/audio/dumb/Makefile Mon Jan 20 22:39:40 2014 (r340483) @@ -11,7 +11,6 @@ MAINTAINER= amdmi3@FreeBSD.org COMMENT= IT, XM, S3M, and MOD player library USES= gmake -NO_STAGE= yes OPTIONS_DEFINE= ALLEGRO ALLEGRO_DESC= Enable allegro support @@ -22,7 +21,8 @@ ALLEGRO_DESC= Enable allegro support LIB_DEPENDS+= liballeg.so:${PORTSDIR}/devel/allegro PLIST_SUB+= ALLEGRO="" MAKE_ARGS= _PORT_ALLEGRO_CFLAGS="`allegro-config --cflags`" -MAKE_ARGS+= LINK_ALLEGRO="-lm -L${LOCALBASE}/lib -lalleg" +MAKE_ARGS+= LINK_ALLEGRO="`allegro-config --libs`" +PKGNAMESUFFIX= -allegro CONFLICTS= dumb-[0-9]* .else PLIST_SUB+= ALLEGRO="@comment " @@ -34,13 +34,14 @@ CONFLICTS= dumb-allegro-[0-9]* CFLAGS+= -fPIC .endif -pre-configure: - @${CP} ${FILESDIR}/config.txt ${WRKSRC}/make - @${REINPLACE_CMD} -e "s,@LOCALBASE@,${LOCALBASE}," ${WRKSRC}/make/config.txt +post-patch: + @${REINPLACE_CMD} -e 's|_INSTALL_PATH := |&$${DESTDIR}|' ${WRKSRC}/Makefile + +do-configure: + @${ECHO_CMD} 'include make/unix.inc' > ${WRKSRC}/make/config.txt + @${ECHO_CMD} 'ALL_TARGETS := core core-examples core-headers' >> ${WRKSRC}/make/config.txt .if ${PORT_OPTIONS:MALLEGRO} - @${REINPLACE_CMD} -e "s,@ALLEGRO@,," ${WRKSRC}/make/config.txt -.else - @${REINPLACE_CMD} -e "s,@ALLEGRO@,#," ${WRKSRC}/make/config.txt + @${ECHO_CMD} 'ALL_TARGETS += allegro allegro-examples allegro-headers' >> ${WRKSRC}/make/config.txt .endif .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 22:53:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E4661EF; Mon, 20 Jan 2014 22:53:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A5DB1439; Mon, 20 Jan 2014 22:53:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KMr3OO027702; Mon, 20 Jan 2014 22:53:03 GMT (envelope-from bar@svn.freebsd.org) Received: (from bar@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KMr3RY027700; Mon, 20 Jan 2014 22:53:03 GMT (envelope-from bar@svn.freebsd.org) Message-Id: <201401202253.s0KMr3RY027700@svn.freebsd.org> From: Barbara Guida Date: Mon, 20 Jan 2014 22:53:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340484 - 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.17 Precedence: list List-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, 20 Jan 2014 22:53:03 -0000 Author: bar Date: Mon Jan 20 22:53:02 2014 New Revision: 340484 URL: http://svnweb.freebsd.org/changeset/ports/340484 QAT: https://qat.redports.org/buildarchive/r340484/ Log: - Update firebug to 1.12.6 - Properly set LICENSE Approved by: flo (mentor, implicit) Modified: head/www/xpi-firebug/Makefile head/www/xpi-firebug/distinfo Modified: head/www/xpi-firebug/Makefile ============================================================================== --- head/www/xpi-firebug/Makefile Mon Jan 20 22:39:40 2014 (r340483) +++ head/www/xpi-firebug/Makefile Mon Jan 20 22:53:02 2014 (r340484) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firebug -PORTVERSION= 1.12.5 +PORTVERSION= 1.12.6 DISTVERSIONSUFFIX= -fx PORTEPOCH= 3 CATEGORIES= www @@ -10,7 +10,7 @@ CATEGORIES= www MAINTAINER= bar@FreeBSD.org COMMENT= Lets you edit, debug, and monitor CSS, HTML, and JS -LICENSE= BSD +LICENSE= BSD3CLAUSE XPI_NUM= 1843 XPI_ID= firebug@software.joehewitt.com Modified: head/www/xpi-firebug/distinfo ============================================================================== --- head/www/xpi-firebug/distinfo Mon Jan 20 22:39:40 2014 (r340483) +++ head/www/xpi-firebug/distinfo Mon Jan 20 22:53:02 2014 (r340484) @@ -1,2 +1,2 @@ -SHA256 (xpi/firebug-1.12.5-fx.xpi) = 5b691f93f167e2d025ee803201ea20ca6a876e90f29fc431b474175d00b46747 -SIZE (xpi/firebug-1.12.5-fx.xpi) = 2212154 +SHA256 (xpi/firebug-1.12.6-fx.xpi) = 5a54d321a2dcd8331a238f1676a5b309bfcc483b8137f35c49a5dda3cf64f2f1 +SIZE (xpi/firebug-1.12.6-fx.xpi) = 2197828 From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:00:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5CFB9651; Mon, 20 Jan 2014 23:00:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3D41E150B; Mon, 20 Jan 2014 23:00:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KN0vDm031483; Mon, 20 Jan 2014 23:00:57 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KN0uXW031480; Mon, 20 Jan 2014 23:00:56 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202300.s0KN0uXW031480@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:00:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340485 - head/biology/p5-Bio-Das-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.17 Precedence: list List-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, 20 Jan 2014 23:00:57 -0000 Author: bapt Date: Mon Jan 20 23:00:56 2014 New Revision: 340485 URL: http://svnweb.freebsd.org/changeset/ports/340485 QAT: https://qat.redports.org/buildarchive/r340485/ Log: Support stage Modified: head/biology/p5-Bio-Das-Lite/Makefile head/biology/p5-Bio-Das-Lite/pkg-plist Modified: head/biology/p5-Bio-Das-Lite/Makefile ============================================================================== --- head/biology/p5-Bio-Das-Lite/Makefile Mon Jan 20 22:53:02 2014 (r340484) +++ head/biology/p5-Bio-Das-Lite/Makefile Mon Jan 20 23:00:56 2014 (r340485) @@ -19,7 +19,4 @@ TEST_DEPENDS= p5-Test-Simple>0.8:${PORTS USES= perl5 USE_PERL5= modbuild -MAN3= Bio::Das::Lite.3 - -NO_STAGE= yes .include Modified: head/biology/p5-Bio-Das-Lite/pkg-plist ============================================================================== --- head/biology/p5-Bio-Das-Lite/pkg-plist Mon Jan 20 22:53:02 2014 (r340484) +++ head/biology/p5-Bio-Das-Lite/pkg-plist Mon Jan 20 23:00:56 2014 (r340485) @@ -1,4 +1,5 @@ %%SITE_PERL%%/Bio/Das/Lite.pm +%%PERL5_MAN3%%/Bio::Das::Lite.3.gz @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Bio/Das/Lite @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Bio/Das @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Bio From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:06:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A859D774; Mon, 20 Jan 2014 23:06:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94AE4153A; Mon, 20 Jan 2014 23:06:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KN6mI4032403; Mon, 20 Jan 2014 23:06:48 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KN6mFi032402; Mon, 20 Jan 2014 23:06:48 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202306.s0KN6mFi032402@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:06:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340486 - head/biology/artemis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:06:48 -0000 Author: bapt Date: Mon Jan 20 23:06:48 2014 New Revision: 340486 URL: http://svnweb.freebsd.org/changeset/ports/340486 QAT: https://qat.redports.org/buildarchive/r340486/ Log: Support stage Modified: head/biology/artemis/Makefile Modified: head/biology/artemis/Makefile ============================================================================== --- head/biology/artemis/Makefile Mon Jan 20 23:00:56 2014 (r340485) +++ head/biology/artemis/Makefile Mon Jan 20 23:06:48 2014 (r340486) @@ -10,7 +10,7 @@ MASTER_SITES= http://www.sanger.ac.uk/So DISTNAME= artemis_compiled_v${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= A DNA sequence viewer and annotation tool +COMMENT= DNA sequence viewer and annotation tool WRKSRC= ${WRKDIR}/${PORTNAME} @@ -20,14 +20,13 @@ JAVA_VERSION= 1.6+ NO_BUILD= yes PLIST_SUB= PORTVERSION="${PORTVERSION}" -NO_STAGE= yes post-extract: @${FIND} ${WRKSRC} -type d -name CVS -exec ${RM} -rf {} + do-install: - @${MKDIR} ${PREFIX}/${PORTNAME}-${PORTVERSION} - @${TAR} -C ${WRKSRC} -cf- . | ${TAR} -C ${PREFIX}/${PORTNAME}-${PORTVERSION} -xpf- - @${LN} -s ${PREFIX}/${PORTNAME}-${PORTVERSION}/art ${PREFIX}/bin/art - @${LN} -s ${PREFIX}/${PORTNAME}-${PORTVERSION}/act ${PREFIX}/bin/act + @${MKDIR} ${STAGEDIR}${PREFIX}/${PORTNAME}-${PORTVERSION} + @${TAR} -C ${WRKSRC} -cf- . | ${TAR} -C ${STAGEDIR}${PREFIX}/${PORTNAME}-${PORTVERSION} -xpf- + @${LN} -s ${PREFIX}/${PORTNAME}-${PORTVERSION}/art ${STAGEDIR}${PREFIX}/bin/art + @${LN} -s ${PREFIX}/${PORTNAME}-${PORTVERSION}/act ${STAGEDIR}${PREFIX}/bin/act .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:10:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5DF69AE5; Mon, 20 Jan 2014 23:10:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4A853156A; Mon, 20 Jan 2014 23:10:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNABoM033189; Mon, 20 Jan 2014 23:10:11 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNABFH033188; Mon, 20 Jan 2014 23:10:11 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202310.s0KNABFH033188@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:10:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340487 - head/biology/jalview X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:10:11 -0000 Author: bapt Date: Mon Jan 20 23:10:10 2014 New Revision: 340487 URL: http://svnweb.freebsd.org/changeset/ports/340487 QAT: https://qat.redports.org/buildarchive/r340487/ Log: Support stage Modified: head/biology/jalview/Makefile Modified: head/biology/jalview/Makefile ============================================================================== --- head/biology/jalview/Makefile Mon Jan 20 23:06:48 2014 (r340486) +++ head/biology/jalview/Makefile Mon Jan 20 23:10:10 2014 (r340487) @@ -9,7 +9,7 @@ MASTER_SITES= http://www.jalview.org/sou DISTNAME= ${PORTNAME}_${PORTVERSION:S/./_/} MAINTAINER= ports@FreeBSD.org -COMMENT= A viewer and editor for multiple sequence alignments +COMMENT= Viewer and editor for multiple sequence alignments USE_JAVA= yes JAVA_VERSION= 1.6+ @@ -20,10 +20,9 @@ WRKSRC= ${WRKDIR}/${PORTNAME} DATADIR= ${JAVASHAREDIR}/${PORTNAME} SUB_FILES= jalview.sh -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/jalview.sh ${PREFIX}/bin/jalview - @${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/dist/* ${DATADIR} + ${INSTALL_SCRIPT} ${WRKDIR}/jalview.sh ${STAGEDIR}${PREFIX}/bin/jalview + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/dist/* ${STAGEDIR}${DATADIR} .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:17:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87B1A216; Mon, 20 Jan 2014 23:17:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 682551621; Mon, 20 Jan 2014 23:17:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNHC4k036858; Mon, 20 Jan 2014 23:17:12 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNHClw036852; Mon, 20 Jan 2014 23:17:12 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202317.s0KNHClw036852@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:17:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340488 - head/devel/9base X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:17:12 -0000 Author: bapt Date: Mon Jan 20 23:17:11 2014 New Revision: 340488 URL: http://svnweb.freebsd.org/changeset/ports/340488 QAT: https://qat.redports.org/buildarchive/r340488/ Log: Support stage Fix shebangs Modified: head/devel/9base/Makefile head/devel/9base/pkg-plist (contents, props changed) Modified: head/devel/9base/Makefile ============================================================================== --- head/devel/9base/Makefile Mon Jan 20 23:10:10 2014 (r340487) +++ head/devel/9base/Makefile Mon Jan 20 23:17:11 2014 (r340488) @@ -12,6 +12,12 @@ COMMENT= Port of various original plan9 LICENSE= MIT +USES= shebangfix +SHEBANG_FILES= troff/tmac/sendcover \ + troff/font/devutf/mkMAP +SHEBANG_LANG= rc +rc_OLD_CMD= /bin/rc +rc_CMD= ${PREFIX}/bin/rc CFLAGS+= -I. -c LDFLAGS+= -L. MANPREFIX= ${PREFIX}/9 @@ -22,19 +28,12 @@ APPS= ascii awk basename bc cal cat cle factor fortune fmt freq getflags grep hoc join look ls mk mkdir mtime pbd \ primes rc read sam sha1sum sed seq sleep sort split strings tail tee test \ touch tr troff unicode uniq unutf yacc -MAN1= ${APPS:S|$|.1|} ONLY_FOR_ARCHS= i386 amd64 sparc64 ONLY_FOR_ARCHS_REASON= has low-level code unavailable for ${ARCH} -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|PREFIX|"${PREFIX}/9"|' ${WRKSRC}/lib9/get9root.c @${REINPLACE_CMD} -e '/OBJTYPE!=/s|!=.*|=${ARCH:S,i386,386,:S,amd64,x86_64,:S,sparc64,sun4u,}|' ${WRKSRC}/lib9/Makefile -post-install: -.if !defined(BATCH) - @${CAT} ${PKGMESSAGE} -.endif - .include Modified: head/devel/9base/pkg-plist ============================================================================== --- head/devel/9base/pkg-plist Mon Jan 20 23:10:10 2014 (r340487) +++ head/devel/9base/pkg-plist Mon Jan 20 23:17:11 2014 (r340488) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ 9/bin/ascii 9/bin/awk 9/bin/basename @@ -239,6 +238,56 @@ 9/lib/troff/term/tab.utf 9/lib/troff/term/tab.37 9/lib/troff/hyphen.tex +9/man/man1/ascii.1.gz +9/man/man1/awk.1.gz +9/man/man1/basename.1.gz +9/man/man1/bc.1.gz +9/man/man1/cal.1.gz +9/man/man1/cat.1.gz +9/man/man1/cleanname.1.gz +9/man/man1/cmp.1.gz +9/man/man1/date.1.gz +9/man/man1/dc.1.gz +9/man/man1/dd.1.gz +9/man/man1/diff.1.gz +9/man/man1/du.1.gz +9/man/man1/echo.1.gz +9/man/man1/ed.1.gz +9/man/man1/factor.1.gz +9/man/man1/fmt.1.gz +9/man/man1/fortune.1.gz +9/man/man1/freq.1.gz +9/man/man1/getflags.1.gz +9/man/man1/grep.1.gz +9/man/man1/hoc.1.gz +9/man/man1/join.1.gz +9/man/man1/look.1.gz +9/man/man1/ls.1.gz +9/man/man1/mk.1.gz +9/man/man1/mkdir.1.gz +9/man/man1/mtime.1.gz +9/man/man1/pbd.1.gz +9/man/man1/primes.1.gz +9/man/man1/rc.1.gz +9/man/man1/read.1.gz +9/man/man1/sam.1.gz +9/man/man1/sed.1.gz +9/man/man1/seq.1.gz +9/man/man1/sha1sum.1.gz +9/man/man1/sleep.1.gz +9/man/man1/sort.1.gz +9/man/man1/split.1.gz +9/man/man1/strings.1.gz +9/man/man1/tail.1.gz +9/man/man1/tee.1.gz +9/man/man1/test.1.gz +9/man/man1/touch.1.gz +9/man/man1/tr.1.gz +9/man/man1/troff.1.gz +9/man/man1/unicode.1.gz +9/man/man1/uniq.1.gz +9/man/man1/unutf.1.gz +9/man/man1/yacc.1.gz @dirrm 9/lib/troff/tmac/me @dirrm 9/lib/troff/tmac @dirrm 9/lib/troff/term From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:20:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18F5432D; Mon, 20 Jan 2014 23:20:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 053101695; Mon, 20 Jan 2014 23:20:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNKkEX037639; Mon, 20 Jan 2014 23:20:46 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNKkc9037638; Mon, 20 Jan 2014 23:20:46 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202320.s0KNKkc9037638@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:20:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340489 - head/devel/cgilib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:20:47 -0000 Author: bapt Date: Mon Jan 20 23:20:46 2014 New Revision: 340489 URL: http://svnweb.freebsd.org/changeset/ports/340489 QAT: https://qat.redports.org/buildarchive/r340489/ Log: Support stage Modified: head/devel/cgilib/Makefile Modified: head/devel/cgilib/Makefile ============================================================================== --- head/devel/cgilib/Makefile Mon Jan 20 23:17:11 2014 (r340488) +++ head/devel/cgilib/Makefile Mon Jan 20 23:20:46 2014 (r340489) @@ -8,21 +8,34 @@ MASTER_SITES= http://www.infodrom.org/pr http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/pub/libs/ MAINTAINER= demon@FreeBSD.org -COMMENT= A library of procedures for developing CGI programs in C +COMMENT= Library of procedures for developing CGI programs in C + +USES= uidfix USE_LDCONFIG= yes MAKEFILE= ${FILESDIR}/Makefile.bsd -PLIST_FILES= include/cgi.h lib/libcgi.a lib/libcgi.so lib/libcgi.so.1 -MAN3= cgiDebug.3 cgiFree.3 cgiFreeList.3 cgiGetCookie.3 cgiEscape.3 \ - cgiGetFile.3 cgiGetFiles.3 cgiGetCookies.3 cgiGetValue.3 \ - cgiGetVariables.3 cgiHeader.3 cgiInit.3 cgiRedirect.3 \ - cgiSetHeader.3 cgiSetType.3 +PLIST_FILES= include/cgi.h lib/libcgi.a lib/libcgi.so lib/libcgi.so.1 \ + man/man3/cgiDebug.3.gz \ + man/man3/cgiEscape.3.gz \ + man/man3/cgiFree.3.gz \ + man/man3/cgiFreeList.3.gz \ + man/man3/cgiGetCookie.3.gz \ + man/man3/cgiGetCookies.3.gz \ + man/man3/cgiGetFile.3.gz \ + man/man3/cgiGetFiles.3.gz \ + man/man3/cgiGetValue.3.gz \ + man/man3/cgiGetVariables.3.gz \ + man/man3/cgiHeader.3.gz \ + man/man3/cgiInit.3.gz \ + man/man3/cgiRedirect.3.gz \ + man/man3/cgiSetHeader.3.gz \ + man/man3/cgiSetType.3.gz + -NO_STAGE= yes post-install: - ${INSTALL_DATA} ${WRKSRC}/cgi.h ${PREFIX}/include - ${INSTALL_MAN} ${WRKSRC}/*.3 ${PREFIX}/man/man3 + ${INSTALL_DATA} ${WRKSRC}/cgi.h ${STAGEDIR}${PREFIX}/include + ${INSTALL_MAN} ${WRKSRC}/*.3 ${STAGEDIR}${PREFIX}/man/man3 .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:23:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A235A435; Mon, 20 Jan 2014 23:23:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8EBC316B2; Mon, 20 Jan 2014 23:23:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNNBgM040278; Mon, 20 Jan 2014 23:23:11 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNNB2P040277; Mon, 20 Jan 2014 23:23:11 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202323.s0KNNB2P040277@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:23:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340490 - head/devel/checkheaders X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:23:11 -0000 Author: bapt Date: Mon Jan 20 23:23:11 2014 New Revision: 340490 URL: http://svnweb.freebsd.org/changeset/ports/340490 QAT: https://qat.redports.org/buildarchive/r340490/ Log: Support stage Use bsdtar to extract .zip Replace REINPLACE_CMD by MAKE_ARGS to specify compiler Modified: head/devel/checkheaders/Makefile Modified: head/devel/checkheaders/Makefile ============================================================================== --- head/devel/checkheaders/Makefile Mon Jan 20 23:20:46 2014 (r340489) +++ head/devel/checkheaders/Makefile Mon Jan 20 23:23:11 2014 (r340490) @@ -5,22 +5,19 @@ PORTNAME= checkheaders PORTVERSION= 1.0.1 CATEGORIES= devel MASTER_SITES= GOOGLE_CODE +EXTRACT_SUFX= .zip MAINTAINER= bf@FreeBSD.org COMMENT= Checks headers in C/C++ programs -USE_ZIP= yes -USE_GMAKE= yes +USES= gmake +MAKE_ARGS= CXX="${CXX}" PLIST_FILES= bin/${PORTNAME} LICENSE= GPLv3 -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e '/^CXX.*=/d' ${WRKSRC}/Makefile - do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:25:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 704B57F6; Mon, 20 Jan 2014 23:25:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D40E16D2; Mon, 20 Jan 2014 23:25:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNP2x7040640; Mon, 20 Jan 2014 23:25:02 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNP2rV040636; Mon, 20 Jan 2014 23:25:02 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202325.s0KNP2rV040636@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:25:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340491 - head/devel/cmph X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:25:02 -0000 Author: bapt Date: Mon Jan 20 23:25:01 2014 New Revision: 340491 URL: http://svnweb.freebsd.org/changeset/ports/340491 QAT: https://qat.redports.org/buildarchive/r340491/ Log: Support stage Modified: head/devel/cmph/Makefile head/devel/cmph/pkg-plist Modified: head/devel/cmph/Makefile ============================================================================== --- head/devel/cmph/Makefile Mon Jan 20 23:23:11 2014 (r340490) +++ head/devel/cmph/Makefile Mon Jan 20 23:25:01 2014 (r340491) @@ -13,7 +13,4 @@ GNU_CONFIGURE= yes USES= pathfix USE_LDCONFIG= yes -MAN1= cmph.1 - -NO_STAGE= yes .include Modified: head/devel/cmph/pkg-plist ============================================================================== --- head/devel/cmph/pkg-plist Mon Jan 20 23:23:11 2014 (r340490) +++ head/devel/cmph/pkg-plist Mon Jan 20 23:25:01 2014 (r340491) @@ -8,3 +8,4 @@ lib/libcmph.la lib/libcmph.so lib/libcmph.so.0 libdata/pkgconfig/cmph.pc +man/man1/cmph.1.gz From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:28:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13E86BC8; Mon, 20 Jan 2014 23:28:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0051A172A; Mon, 20 Jan 2014 23:28:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNSZCb041188; Mon, 20 Jan 2014 23:28:35 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNSZH3041187; Mon, 20 Jan 2014 23:28:35 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202328.s0KNSZH3041187@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:28:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340492 - head/devel/colorgcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:28:36 -0000 Author: bapt Date: Mon Jan 20 23:28:35 2014 New Revision: 340492 URL: http://svnweb.freebsd.org/changeset/ports/340492 QAT: https://qat.redports.org/buildarchive/r340492/ Log: Support stage Fix shebangs Modified: head/devel/colorgcc/Makefile Modified: head/devel/colorgcc/Makefile ============================================================================== --- head/devel/colorgcc/Makefile Mon Jan 20 23:25:01 2014 (r340491) +++ head/devel/colorgcc/Makefile Mon Jan 20 23:28:35 2014 (r340492) @@ -15,6 +15,9 @@ COMMENT= Perl script to colorize the ter RUN_DEPENDS= p5-Term-ANSIColor>=0:${PORTSDIR}/devel/p5-Term-ANSIColor BUILD_DEPENDS:= ${RUN_DEPENDS} +USES= shebangfix +SHEBANG_FILES= colorgcc + PLIST_FILES= bin/${PORTNAME} \ share/examples/${PORTNAME}/${PORTNAME}rc PLIST_DIRS= share/examples/${PORTNAME} @@ -22,19 +25,13 @@ SUB_FILES= pkg-message NO_BUILD=yes -NO_STAGE= yes do-extract: @${MKDIR} ${WRKSRC} @${CP} ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${WRKSRC}/${PORTNAME} do-install: - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ - @${INSTALL_DATA} ${FILESDIR}/${PORTNAME}rc ${EXAMPLESDIR}/ - -post-install: -.if !defined(BATCH) - @${CAT} ${PKGMESSAGE} -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + @${INSTALL_DATA} ${FILESDIR}/${PORTNAME}rc ${STAGEDIR}${EXAMPLESDIR}/ .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:30:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 43498CC5; Mon, 20 Jan 2014 23:30:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 301B51744; Mon, 20 Jan 2014 23:30:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNUDPL041908; Mon, 20 Jan 2014 23:30:13 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNUDvo041907; Mon, 20 Jan 2014 23:30:13 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202330.s0KNUDvo041907@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:30:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340493 - head/devel/commoncpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:30:13 -0000 Author: bapt Date: Mon Jan 20 23:30:12 2014 New Revision: 340493 URL: http://svnweb.freebsd.org/changeset/ports/340493 QAT: https://qat.redports.org/buildarchive/r340493/ Log: Support stage Modified: head/devel/commoncpp/Makefile Modified: head/devel/commoncpp/Makefile ============================================================================== --- head/devel/commoncpp/Makefile Mon Jan 20 23:28:35 2014 (r340492) +++ head/devel/commoncpp/Makefile Mon Jan 20 23:30:12 2014 (r340493) @@ -13,8 +13,7 @@ MAINTAINER= acm@FreeBSD.org COMMENT= GNU project portable class framework for C++ USE_LDCONFIG= yes -USES= pathfix -USE_GMAKE= yes +USES= gmake pathfix GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_path_DOXYGEN=no @@ -23,5 +22,4 @@ INFO= commoncpp2 CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:33:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20AEE268; Mon, 20 Jan 2014 23:33:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D3EF17EB; Mon, 20 Jan 2014 23:33:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNXUsg044647; Mon, 20 Jan 2014 23:33:30 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNXUDW044646; Mon, 20 Jan 2014 23:33:30 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202333.s0KNXUDW044646@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:33:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340494 - head/devel/csoap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:33:31 -0000 Author: bapt Date: Mon Jan 20 23:33:30 2014 New Revision: 340494 URL: http://svnweb.freebsd.org/changeset/ports/340494 QAT: https://qat.redports.org/buildarchive/r340494/ Log: Support stage Modified: head/devel/csoap/Makefile Modified: head/devel/csoap/Makefile ============================================================================== --- head/devel/csoap/Makefile Mon Jan 20 23:30:12 2014 (r340493) +++ head/devel/csoap/Makefile Mon Jan 20 23:33:30 2014 (r340494) @@ -8,13 +8,13 @@ MASTER_SITES= SF/${PORTNAME}/libsoap/${P DISTNAME= libsoap-${PORTVERSION} MAINTAINER= gahr@FreeBSD.org -COMMENT= A client/server SOAP library written in pure C +COMMENT= Client/server SOAP library written in pure C GNU_CONFIGURE= yes -USE_GNOME= libxml2 gnomehack +USES= pathfix +USE_GNOME= libxml2 USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/libsoap-${PORTVERSION} -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:37:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8248571; Mon, 20 Jan 2014 23:37:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B4B9D1827; Mon, 20 Jan 2014 23:37:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNbC5k045135; Mon, 20 Jan 2014 23:37:12 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNbC3A045134; Mon, 20 Jan 2014 23:37:12 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202337.s0KNbC3A045134@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:37:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340495 - head/devel/dasm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:37:12 -0000 Author: bapt Date: Mon Jan 20 23:37:12 2014 New Revision: 340495 URL: http://svnweb.freebsd.org/changeset/ports/340495 QAT: https://qat.redports.org/buildarchive/r340495/ Log: Support stage Modified: head/devel/dasm/Makefile Modified: head/devel/dasm/Makefile ============================================================================== --- head/devel/dasm/Makefile Mon Jan 20 23:33:30 2014 (r340494) +++ head/devel/dasm/Makefile Mon Jan 20 23:37:12 2014 (r340495) @@ -22,18 +22,11 @@ PORTDOCS= * PLIST_FILES= bin/dasm \ bin/ftohex -NO_STAGE= yes do-install: .for filename in dasm ftohex - ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${filename} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/${filename} ${STAGEDIR}${PREFIX}/bin .endfor - -.include - -post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/* ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:42:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 309A467C; Mon, 20 Jan 2014 23:42:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1CF161892; Mon, 20 Jan 2014 23:42:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNglo1048335; Mon, 20 Jan 2014 23:42:47 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNglNm048334; Mon, 20 Jan 2014 23:42:47 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202342.s0KNglNm048334@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:42:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340496 - head/devel/dragon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:42:48 -0000 Author: bapt Date: Mon Jan 20 23:42:47 2014 New Revision: 340496 URL: http://svnweb.freebsd.org/changeset/ports/340496 QAT: https://qat.redports.org/buildarchive/r340496/ Log: Support stage Modified: head/devel/dragon/Makefile Modified: head/devel/dragon/Makefile ============================================================================== --- head/devel/dragon/Makefile Mon Jan 20 23:37:12 2014 (r340495) +++ head/devel/dragon/Makefile Mon Jan 20 23:42:47 2014 (r340496) @@ -9,7 +9,7 @@ MASTER_SITES= http://www.lemke-it.com/ MAINTAINER= fbsd-ports@opsec.eu COMMENT= Combined C++ scanner/parser generator for LR compliant grammars -LIB_DEPENDS= lfcbase:${PORTSDIR}/devel/lfcbase +LIB_DEPENDS= liblfcbase.so:${PORTSDIR}/devel/lfcbase LICENSE= GPLv3 GNU_CONFIGURE= yes @@ -17,5 +17,4 @@ PLIST_FILES= bin/dragon MAKE_JOBS_UNSAFE=yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:45:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F4C3945; Mon, 20 Jan 2014 23:45:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B5FB18C4; Mon, 20 Jan 2014 23:45:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNjDwn048809; Mon, 20 Jan 2014 23:45:13 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNjDUL048808; Mon, 20 Jan 2014 23:45:13 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202345.s0KNjDUL048808@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:45:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340497 - head/devel/duplo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:45:14 -0000 Author: bapt Date: Mon Jan 20 23:45:13 2014 New Revision: 340497 URL: http://svnweb.freebsd.org/changeset/ports/340497 QAT: https://qat.redports.org/buildarchive/r340497/ Log: Support stage Modified: head/devel/duplo/Makefile Modified: head/devel/duplo/Makefile ============================================================================== --- head/devel/duplo/Makefile Mon Jan 20 23:42:47 2014 (r340496) +++ head/devel/duplo/Makefile Mon Jan 20 23:45:13 2014 (r340497) @@ -10,12 +10,11 @@ DISTNAME= ${PORTNAME}_${PORTVERSION}_src MAINTAINER= ports@FreeBSD.org COMMENT= Find duplicated code blocks in large C/C++/Java/C#/VB.Net systems -USE_GMAKE= yes +USES= gmake PLIST_FILES= bin/duplo %%DATADIR%%/duplo.xsl PLIST_DIRS= %%DATADIR%% -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s,^CC,#CC," \ -e "s,^CXXFLAGS,#CXXFLAGS," \ @@ -23,8 +22,8 @@ post-patch: ${WRKSRC}/${MAKEFILE} do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/duplo ${PREFIX}/bin - @${MKDIR} ${DATADIR} - @${INSTALL_DATA} ${WRKSRC}/duplo.xsl ${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/duplo ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/duplo.xsl ${STAGEDIR}${DATADIR} .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:47:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E2FAA30; Mon, 20 Jan 2014 23:47:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 701C618D3; Mon, 20 Jan 2014 23:47:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNlFqK049098; Mon, 20 Jan 2014 23:47:15 GMT (envelope-from marcus@svn.freebsd.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNlFIL049096; Mon, 20 Jan 2014 23:47:15 GMT (envelope-from marcus@svn.freebsd.org) Message-Id: <201401202347.s0KNlFIL049096@svn.freebsd.org> From: Joe Marcus Clarke Date: Mon, 20 Jan 2014 23:47:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340498 - in head/net/netatalk3: . 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.17 Precedence: list List-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, 20 Jan 2014 23:47:15 -0000 Author: marcus Date: Mon Jan 20 23:47:14 2014 New Revision: 340498 URL: http://svnweb.freebsd.org/changeset/ports/340498 QAT: https://qat.redports.org/buildarchive/r340498/ Log: Revert a bad upstream patch pertaining to varargs that continued to plague Time Machine users. Submitted by: dim Modified: head/net/netatalk3/Makefile head/net/netatalk3/files/patch-etc_afpd_afp_mdns.c Modified: head/net/netatalk3/Makefile ============================================================================== --- head/net/netatalk3/Makefile Mon Jan 20 23:45:13 2014 (r340497) +++ head/net/netatalk3/Makefile Mon Jan 20 23:47:14 2014 (r340498) @@ -3,7 +3,7 @@ PORTNAME= netatalk PORTVERSION= 3.1.0 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= SF Modified: head/net/netatalk3/files/patch-etc_afpd_afp_mdns.c ============================================================================== --- head/net/netatalk3/files/patch-etc_afpd_afp_mdns.c Mon Jan 20 23:45:13 2014 (r340497) +++ head/net/netatalk3/files/patch-etc_afpd_afp_mdns.c Mon Jan 20 23:47:14 2014 (r340498) @@ -1,20 +1,23 @@ --- etc/afpd/afp_mdns.c.orig 2013-10-28 06:43:13.000000000 -0700 +++ etc/afpd/afp_mdns.c 2014-01-17 22:10:59.000000000 -0800 @@ -37,17 +37,15 @@ + /* * Its easier to use asprintf to set the TXT record values */ - #define TXTRecordPrintf(rec, key, args, ...) { \ +-#define TXTRecordPrintf(rec, key, args, ...) { \ - char *str; \ - asprintf(&str, args); \ ++#define TXTRecordPrintf(rec, key, args...) { \ + char str[1024]; \ + sprintf(str, args); \ TXTRecordSetValue(rec, key, strlen(str), str); \ - free(str); \ } - #define TXTRecordKeyPrintf(rec, k, var, args, ...) { \ +-#define TXTRecordKeyPrintf(rec, k, var, args, ...) { \ - char *key, *str; \ - asprintf(&key, k, var); \ - asprintf(&str, args); \ ++#define TXTRecordKeyPrintf(rec, k, var, args...) { \ + char key[1024], str[1024]; \ + sprintf(key, k, var); \ + sprintf(str, args); \ From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:47:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03CD4B11; Mon, 20 Jan 2014 23:47:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E464818DB; Mon, 20 Jan 2014 23:47:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNlma7049218; Mon, 20 Jan 2014 23:47:48 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNlmPR049217; Mon, 20 Jan 2014 23:47:48 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202347.s0KNlmPR049217@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:47:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340499 - head/devel/e00compr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:47:49 -0000 Author: bapt Date: Mon Jan 20 23:47:48 2014 New Revision: 340499 URL: http://svnweb.freebsd.org/changeset/ports/340499 QAT: https://qat.redports.org/buildarchive/r340499/ Log: Support stage Use MAKE_ARGS instead of patching to respect CC and CFLAGS Modified: head/devel/e00compr/Makefile Modified: head/devel/e00compr/Makefile ============================================================================== --- head/devel/e00compr/Makefile Mon Jan 20 23:47:14 2014 (r340498) +++ head/devel/e00compr/Makefile Mon Jan 20 23:47:48 2014 (r340499) @@ -9,27 +9,20 @@ MASTER_SITES= http://avce00.maptools.org MAINTAINER= wen@FreeBSD.org COMMENT= Library to Read/Write Compressed E00 Files -USE_GMAKE= yes +OPTIONS_DEFINE= DOCS + +USES= gmake WRKSRC= ${WRKDIR}/${DISTNAME} PLIST_FILES= bin/e00conv include/e00compr.h \ lib/e00compr.a PORTDOCS= e00compr.html - -NO_STAGE= yes -.include - -post-extract: - ${REINPLACE_CMD} -e 's#gcc#${CC}#g' ${WRKSRC}/Makefile +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/e00conv ${PREFIX}/bin/e00conv - ${INSTALL_DATA} ${WRKSRC}/e00compr.h ${PREFIX}/include/e00compr.h - ${INSTALL_DATA} ${WRKSRC}/e00compr.a ${PREFIX}/lib/e00compr.a - -post-install: -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/e00compr.html ${DOCSDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/e00conv ${STAGEDIR}${PREFIX}/bin/e00conv + ${INSTALL_DATA} ${WRKSRC}/e00compr.h ${STAGEDIR}${PREFIX}/include/e00compr.h + ${INSTALL_DATA} ${WRKSRC}/e00compr.a ${STAGEDIR}${PREFIX}/lib/e00compr.a + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/e00compr.html ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:54:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 501A61D6; Mon, 20 Jan 2014 23:54:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3BE901975; Mon, 20 Jan 2014 23:54:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNsThb052826; Mon, 20 Jan 2014 23:54:29 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNsTn3052825; Mon, 20 Jan 2014 23:54:29 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202354.s0KNsTn3052825@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:54:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340500 - head/devel/etl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:54:29 -0000 Author: bapt Date: Mon Jan 20 23:54:28 2014 New Revision: 340500 URL: http://svnweb.freebsd.org/changeset/ports/340500 QAT: https://qat.redports.org/buildarchive/r340500/ Log: Support stage Modified: head/devel/etl/Makefile Modified: head/devel/etl/Makefile ============================================================================== --- head/devel/etl/Makefile Mon Jan 20 23:47:48 2014 (r340499) +++ head/devel/etl/Makefile Mon Jan 20 23:54:28 2014 (r340500) @@ -10,22 +10,17 @@ DISTNAME= ETL-${PORTVERSION} MAINTAINER= dhn@FreeBSD.org COMMENT= Voria Extended Class and Template Library +OPTIONS_DEFINE= DOCS + SYNFIG_VERSION= 0.64.1 -USES= pathfix pkgconfig -USE_GMAKE= yes +USES= gmake pathfix pkgconfig GNU_CONFIGURE= yes -NO_STAGE= yes - -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}/${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for doc in AUTHORS ChangeLog INSTALL NEWS README - ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}/${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} .endfor -.endif -.include +.include From owner-svn-ports-head@FreeBSD.ORG Mon Jan 20 23:57:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2568A472; Mon, 20 Jan 2014 23:57:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1237E1992; Mon, 20 Jan 2014 23:57:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0KNvEgf053331; Mon, 20 Jan 2014 23:57:14 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0KNvEwk053330; Mon, 20 Jan 2014 23:57:14 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401202357.s0KNvEwk053330@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 20 Jan 2014 23:57:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340501 - head/devel/flexjson X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 20 Jan 2014 23:57:15 -0000 Author: bapt Date: Mon Jan 20 23:57:14 2014 New Revision: 340501 URL: http://svnweb.freebsd.org/changeset/ports/340501 QAT: https://qat.redports.org/buildarchive/r340501/ Log: Support stage Modified: head/devel/flexjson/Makefile Modified: head/devel/flexjson/Makefile ============================================================================== --- head/devel/flexjson/Makefile Mon Jan 20 23:54:28 2014 (r340500) +++ head/devel/flexjson/Makefile Mon Jan 20 23:57:14 2014 (r340501) @@ -7,36 +7,28 @@ PORTREVISION= 1 CATEGORIES= devel java MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Flexjson%201.0 DISTNAME= ${PORTNAME} +EXTRACT_SUFX= .zip MAINTAINER= ports@FreeBSD.org -COMMENT= A lightweight Java library to write JSON +COMMENT= Lightweight Java library to write JSON +OPTIONS_DEFINE= DOCS USE_JAVA= yes JAVA_VERSION= 1.6+ NO_BUILD= yes -USE_ZIP= yes PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar -.if !defined(NOPORTDOCS) PORTDOCS= LICENSE-2.0.txt docs -.endif -NO_STAGE= yes do-install: - @${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..." - @${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.jar \ - ${JAVAJARDIR}/${PORTNAME}.jar - - @${ECHO_MSG} " [DONE]" -.if !defined(NOPORTDOCS) - @${ECHO_MSG} -n ">> Installing documentation..." - @${MKDIR} ${DOCSDIR}/docs/ + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}.jar \ + ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar + + @${MKDIR} ${STAGEDIR}${DOCSDIR}/docs/ @cd ${WRKDIR}/docs \ - && ${INSTALL_DATA} example_object_model.jpg ${DOCSDIR}/docs/. \ - && ${INSTALL_DATA} index.html ${DOCSDIR}/docs/. - @${INSTALL_DATA} ${WRKDIR}/LICENSE-2.0.txt ${DOCSDIR}/ - @${ECHO_MSG} " [DONE]" -.endif + && ${INSTALL_DATA} example_object_model.jpg ${STAGEDIR}${DOCSDIR}/docs/. \ + && ${INSTALL_DATA} index.html ${STAGEDIR}${DOCSDIR}/docs/. + @${INSTALL_DATA} ${WRKDIR}/LICENSE-2.0.txt ${STAGEDIR}${DOCSDIR}/ .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:03:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28482701; Tue, 21 Jan 2014 00:03:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 14D121A2D; Tue, 21 Jan 2014 00:03:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L037qn057556; Tue, 21 Jan 2014 00:03:07 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0377V057555; Tue, 21 Jan 2014 00:03:07 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210003.s0L0377V057555@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:03:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340502 - head/devel/jcmdline X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:03:08 -0000 Author: bapt Date: Tue Jan 21 00:03:07 2014 New Revision: 340502 URL: http://svnweb.freebsd.org/changeset/ports/340502 QAT: https://qat.redports.org/buildarchive/r340502/ Log: Support stage Modified: head/devel/jcmdline/Makefile Modified: head/devel/jcmdline/Makefile ============================================================================== --- head/devel/jcmdline/Makefile Mon Jan 20 23:57:14 2014 (r340501) +++ head/devel/jcmdline/Makefile Tue Jan 21 00:03:07 2014 (r340502) @@ -7,7 +7,7 @@ CATEGORIES= devel java MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org -COMMENT= A Java command line processor +COMMENT= Java command line processor USE_JAVA= yes JAVA_VERSION= 1.6+ @@ -21,15 +21,11 @@ PLIST_FILES= %%JAVAJARDIR%%/${JARFILE} DOCFILES= CHANGES CREDITS README PORTDOCS= * -NO_STAGE= yes do-install: ${INSTALL_DATA} ${JARFILE:S|.jar|-${PORTVERSION}.jar|:S|^|${WRKSRC}/|} \ - ${JAVAJARDIR}/${JARFILE} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${DOCFILES:S|^|${WRKSRC}/|} ${DOCSDIR} - @${CP} -R ${WRKSRC}/doc/* ${DOCSDIR} - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif + ${STAGEDIR}${JAVAJARDIR}/${JARFILE} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DOCFILES:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + ${CP} -R ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:04:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0F627E7; Tue, 21 Jan 2014 00:04:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CD1D11A38; Tue, 21 Jan 2014 00:04:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L04NV8058061; Tue, 21 Jan 2014 00:04:23 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L04NY3058059; Tue, 21 Jan 2014 00:04:23 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210004.s0L04NY3058059@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:04:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340503 - head/devel/jep X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:04:24 -0000 Author: bapt Date: Tue Jan 21 00:04:23 2014 New Revision: 340503 URL: http://svnweb.freebsd.org/changeset/ports/340503 QAT: https://qat.redports.org/buildarchive/r340503/ Log: support stage Modified: head/devel/jep/Makefile head/devel/jep/pkg-plist (contents, props changed) Modified: head/devel/jep/Makefile ============================================================================== --- head/devel/jep/Makefile Tue Jan 21 00:03:07 2014 (r340502) +++ head/devel/jep/Makefile Tue Jan 21 00:04:23 2014 (r340503) @@ -22,10 +22,7 @@ USE_LDCONFIG= yes # LDFLAGS detection wrong LDFLAGS= -L${LOCALBASE}/lib -MAN1= jep.1 - -NO_STAGE= yes post-install: - ${INSTALL_DATA} ${WRKSRC}/jep.jar ${JAVAJARDIR}/ + ${INSTALL_DATA} ${WRKSRC}/jep.jar ${STAGEDIR}${JAVAJARDIR}/ .include Modified: head/devel/jep/pkg-plist ============================================================================== --- head/devel/jep/pkg-plist Tue Jan 21 00:03:07 2014 (r340502) +++ head/devel/jep/pkg-plist Tue Jan 21 00:04:23 2014 (r340503) @@ -1,6 +1,6 @@ -@comment $FreeBSD$ lib/libjep.a lib/libjep.la lib/libjep.so.2 lib/libjep.so +man/man1/jep.1.gz %%JAVAJARDIR%%/jep.jar From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:05:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD01D8C5; Tue, 21 Jan 2014 00:05:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B8B3B1A41; Tue, 21 Jan 2014 00:05:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L05KZY058320; Tue, 21 Jan 2014 00:05:20 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L05KlV058319; Tue, 21 Jan 2014 00:05:20 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210005.s0L05KlV058319@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:05:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340504 - head/devel/gzstream X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:05:20 -0000 Author: bapt Date: Tue Jan 21 00:05:20 2014 New Revision: 340504 URL: http://svnweb.freebsd.org/changeset/ports/340504 QAT: https://qat.redports.org/buildarchive/r340504/ Log: Support stage Modified: head/devel/gzstream/Makefile Modified: head/devel/gzstream/Makefile ============================================================================== --- head/devel/gzstream/Makefile Tue Jan 21 00:04:23 2014 (r340503) +++ head/devel/gzstream/Makefile Tue Jan 21 00:05:20 2014 (r340504) @@ -18,14 +18,13 @@ PLIST_FILES= lib/lib${PORTNAME}.so lib/l ALL_TARGET= default CFLAGS+= -fPIC -I. -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's/=/?=/;s/\.a/.so/g;s/CPPFL/CXXFL/g;\ s/{AR}/{CC} $${CFLAGS} -lz -shared -o/' ${WRKSRC}/${MAKEFILE} do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/lib${PORTNAME}.so ${PREFIX}/lib/ - @${LN} -sf lib${PORTNAME}.so ${PREFIX}/lib/lib${PORTNAME}.so.0 - @${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.h ${PREFIX}/include/ + ${INSTALL_PROGRAM} ${WRKSRC}/lib${PORTNAME}.so ${STAGEDIR}${PREFIX}/lib/ + ${LN} -sf lib${PORTNAME}.so ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so.0 + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.h ${STAGEDIR}${PREFIX}/include/ .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:06:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D20C39AD; Tue, 21 Jan 2014 00:06:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BE3771A4D; Tue, 21 Jan 2014 00:06:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L06RvZ058569; Tue, 21 Jan 2014 00:06:27 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L06ROd058567; Tue, 21 Jan 2014 00:06:27 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210006.s0L06ROd058567@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:06:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340505 - head/devel/jclassinfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:06:27 -0000 Author: bapt Date: Tue Jan 21 00:06:26 2014 New Revision: 340505 URL: http://svnweb.freebsd.org/changeset/ports/340505 QAT: https://qat.redports.org/buildarchive/r340505/ Log: Support stage Modified: head/devel/jclassinfo/Makefile head/devel/jclassinfo/pkg-plist Modified: head/devel/jclassinfo/Makefile ============================================================================== --- head/devel/jclassinfo/Makefile Tue Jan 21 00:05:20 2014 (r340504) +++ head/devel/jclassinfo/Makefile Tue Jan 21 00:06:26 2014 (r340505) @@ -10,14 +10,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Shows information about Java class, dependencies, and more USE_AUTOTOOLS= libtool -USES= pathfix pkgconfig +USES= gmake pathfix pkgconfig GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes -MAN1= jclassinfo.1 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s, docs,," ${WRKSRC}/Makefile.in Modified: head/devel/jclassinfo/pkg-plist ============================================================================== --- head/devel/jclassinfo/pkg-plist Tue Jan 21 00:05:20 2014 (r340504) +++ head/devel/jclassinfo/pkg-plist Tue Jan 21 00:06:26 2014 (r340505) @@ -16,6 +16,7 @@ lib/libjclass.la lib/libjclass.so lib/libjclass.so.3 libdata/pkgconfig/jclass.pc +man/man1/jclassinfo.1.gz share/xml/jclassinfo/jclassinfo.dtd share/xml/jclassinfo/jclassinfo2xhtml.xsl @dirrm include/jclass From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:08:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F224B7F; Tue, 21 Jan 2014 00:08:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8BD851A63; Tue, 21 Jan 2014 00:08:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L08O3n059009; Tue, 21 Jan 2014 00:08:24 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L08OT9059008; Tue, 21 Jan 2014 00:08:24 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210008.s0L08OT9059008@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:08:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340507 - head/devel/jam X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:08:24 -0000 Author: bapt Date: Tue Jan 21 00:08:24 2014 New Revision: 340507 URL: http://svnweb.freebsd.org/changeset/ports/340507 QAT: https://qat.redports.org/buildarchive/r340507/ Log: Support stage Modified: head/devel/jam/Makefile Modified: head/devel/jam/Makefile ============================================================================== --- head/devel/jam/Makefile Tue Jan 21 00:06:56 2014 (r340506) +++ head/devel/jam/Makefile Tue Jan 21 00:08:24 2014 (r340507) @@ -6,19 +6,17 @@ PORTVERSION= 2.5 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= ftp://ftp.perforce.com/jam/ +EXTRACT_SUFX= .zip MAINTAINER= ports@FreeBSD.org -COMMENT= A build utility like make(1) +COMMENT= Build utility like make(1) -USE_ZIP= yes +OPTIONS_DEFINE= DOCS NO_WRKSUBDIR= yes -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/*.html ${DOCSDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/*.html ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:11:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2BFF2C76; Tue, 21 Jan 2014 00:11:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 189011ACC; Tue, 21 Jan 2014 00:11:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0BBCC060652; Tue, 21 Jan 2014 00:11:11 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0BBmL060651; Tue, 21 Jan 2014 00:11:11 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210011.s0L0BBmL060651@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:11:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340508 - head/devel/lemon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:11:12 -0000 Author: bapt Date: Tue Jan 21 00:11:11 2014 New Revision: 340508 URL: http://svnweb.freebsd.org/changeset/ports/340508 QAT: https://qat.redports.org/buildarchive/r340508/ Log: Support stage Modified: head/devel/lemon/Makefile Modified: head/devel/lemon/Makefile ============================================================================== --- head/devel/lemon/Makefile Tue Jan 21 00:08:24 2014 (r340507) +++ head/devel/lemon/Makefile Tue Jan 21 00:11:11 2014 (r340508) @@ -8,20 +8,19 @@ MASTER_SITES= http://tx97.net/pub/distfi http://mirror.amdmi3.ru/distfiles/ MAINTAINER= vmagerya@gmail.com -COMMENT= An LALR(1) parser generator. Similar in function to yacc and bison +COMMENT= LALR(1) parser generator. Similar in function to yacc and bison USE_BZIP2= yes MAKEFILE= /dev/null ALL_TARGET= ${PORTNAME} -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e 's| = pathsearch(.*| = "${DATADIR}/lempar.c";|' \ ${WRKSRC}/lemon.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/lemon ${PREFIX}/bin/ - ${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/lempar.c ${DATADIR}/ + ${INSTALL_PROGRAM} ${WRKSRC}/lemon ${STAGEDIR}${PREFIX}/bin/ + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/lempar.c ${STAGEDIR}${DATADIR}/ .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:14:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDAE4D7B; Tue, 21 Jan 2014 00:14:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA4A01AE5; Tue, 21 Jan 2014 00:14:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0E5Ue062790; Tue, 21 Jan 2014 00:14:05 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0E5gs062789; Tue, 21 Jan 2014 00:14:05 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210014.s0L0E5gs062789@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:14:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340509 - head/devel/leaktracer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:14:06 -0000 Author: bapt Date: Tue Jan 21 00:14:05 2014 New Revision: 340509 URL: http://svnweb.freebsd.org/changeset/ports/340509 QAT: https://qat.redports.org/buildarchive/r340509/ Log: Support stage Fix shebang Modified: head/devel/leaktracer/Makefile Modified: head/devel/leaktracer/Makefile ============================================================================== --- head/devel/leaktracer/Makefile Tue Jan 21 00:11:11 2014 (r340508) +++ head/devel/leaktracer/Makefile Tue Jan 21 00:14:05 2014 (r340509) @@ -11,21 +11,20 @@ DISTNAME= LeakTracer MAINTAINER= ports@FreeBSD.org COMMENT= Trace and analyze memory leaks in C++ programs -USES= perl5 +OPTIONS_DEFINE= DOCS + +USES= gmake perl5 shebangfix +SHEBANG_FILES= leak-analyze USE_LDCONFIG= yes -USE_GMAKE= yes USE_PERL5= run PLIST_FILES= bin/LeakCheck bin/leak-analyze lib/LeakTracer.so PORTDOCS= README README.html -NO_STAGE= yes do-install: ${INSTALL_SCRIPT} ${WRKSRC}/LeakCheck ${WRKSRC}/leak-analyze \ - ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/LeakTracer.so ${PREFIX}/lib -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/README.html ${DOCSDIR} -.endif + ${STAGEDIR}${PREFIX}/bin + ${INSTALL_LIB} ${WRKSRC}/LeakTracer.so ${STAGEDIR}${PREFIX}/lib + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/README.html ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:15:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35EC0FA1; Tue, 21 Jan 2014 00:15:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 216B61AFC; Tue, 21 Jan 2014 00:15:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0FVec063151; Tue, 21 Jan 2014 00:15:31 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0FVMZ063150; Tue, 21 Jan 2014 00:15:31 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210015.s0L0FVMZ063150@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:15:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340510 - head/devel/lfcxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:15:32 -0000 Author: bapt Date: Tue Jan 21 00:15:31 2014 New Revision: 340510 URL: http://svnweb.freebsd.org/changeset/ports/340510 QAT: https://qat.redports.org/buildarchive/r340510/ Log: Support stage Modified: head/devel/lfcxml/Makefile Modified: head/devel/lfcxml/Makefile ============================================================================== --- head/devel/lfcxml/Makefile Tue Jan 21 00:14:05 2014 (r340509) +++ head/devel/lfcxml/Makefile Tue Jan 21 00:15:31 2014 (r340510) @@ -11,7 +11,7 @@ COMMENT= C++ XML library, used for datab LICENSE= GPLv3 -LIB_DEPENDS= lfcbase:${PORTSDIR}/devel/lfcbase +LIB_DEPENDS= liblfcbase.so:${PORTSDIR}/devel/lfcbase GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -19,5 +19,4 @@ LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes USE_AUTOTOOLS= autoconf:env -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:20:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F7B8280; Tue, 21 Jan 2014 00:20:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0BC061C90; Tue, 21 Jan 2014 00:20:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0Ku5R066233; Tue, 21 Jan 2014 00:20:56 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0KuG6066232; Tue, 21 Jan 2014 00:20:56 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210020.s0L0KuG6066232@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:20:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340511 - head/devel/libbnr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:20:57 -0000 Author: bapt Date: Tue Jan 21 00:20:56 2014 New Revision: 340511 URL: http://svnweb.freebsd.org/changeset/ports/340511 QAT: https://qat.redports.org/buildarchive/r340511/ Log: Support stage Use new options format Modified: head/devel/libbnr/Makefile Modified: head/devel/libbnr/Makefile ============================================================================== --- head/devel/libbnr/Makefile Tue Jan 21 00:15:31 2014 (r340510) +++ head/devel/libbnr/Makefile Tue Jan 21 00:20:56 2014 (r340511) @@ -11,24 +11,21 @@ MASTER_SITES= http://dspam.nuclearelepha MAINTAINER= itetcu@FreeBSD.org COMMENT= GPL implementation of the Bayesian Noise Reduction algorithm +OPTIONS_DEFINE= DOCS DEBUG + USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_ARGS+= --includedir=${PREFIX}/include/${PORTNAME} -.ifdef(WITH_DEBUG) -CFLAGS+= -g -DDEBUG -.endif +DEBUG_CFLAGS= -g -DDEBUG PORTDOCS= README -NO_STAGE= yes post-install: - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/example.c ${EXAMPLESDIR} -.ifndef(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/example.c ${STAGEDIR}${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:21:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD00F366; Tue, 21 Jan 2014 00:21:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B8E941C9C; Tue, 21 Jan 2014 00:21:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0LnKq066681; Tue, 21 Jan 2014 00:21:49 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0LndD066680; Tue, 21 Jan 2014 00:21:49 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210021.s0L0LndD066680@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:21:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340512 - head/devel/libcli X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:21:49 -0000 Author: bapt Date: Tue Jan 21 00:21:49 2014 New Revision: 340512 URL: http://svnweb.freebsd.org/changeset/ports/340512 QAT: https://qat.redports.org/buildarchive/r340512/ Log: support stage Modified: head/devel/libcli/Makefile Modified: head/devel/libcli/Makefile ============================================================================== --- head/devel/libcli/Makefile Tue Jan 21 00:20:56 2014 (r340511) +++ head/devel/libcli/Makefile Tue Jan 21 00:21:49 2014 (r340512) @@ -11,7 +11,7 @@ COMMENT= Emulates a Cisco style command- LICENSE= LGPL21 -USE_GMAKE= yes +USES= gmake USE_LDCONFIG= yes PLIST_FILES= lib/libcli.so \ @@ -20,5 +20,4 @@ PLIST_FILES= lib/libcli.so \ lib/libcli.so.19 \ include/libcli.h -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:22:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2B75579; Tue, 21 Jan 2014 00:22:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F1D91CAA; Tue, 21 Jan 2014 00:22:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0MZ9b066927; Tue, 21 Jan 2014 00:22:35 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0MZhq066926; Tue, 21 Jan 2014 00:22:35 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210022.s0L0MZhq066926@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:22:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340513 - head/devel/libconfig X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:22:35 -0000 Author: bapt Date: Tue Jan 21 00:22:35 2014 New Revision: 340513 URL: http://svnweb.freebsd.org/changeset/ports/340513 QAT: https://qat.redports.org/buildarchive/r340513/ Log: Support stage Modified: head/devel/libconfig/Makefile Modified: head/devel/libconfig/Makefile ============================================================================== --- head/devel/libconfig/Makefile Tue Jan 21 00:21:49 2014 (r340512) +++ head/devel/libconfig/Makefile Tue Jan 21 00:22:35 2014 (r340513) @@ -11,12 +11,10 @@ COMMENT= Simple library for manipulating CONFLICTS= wand-libconfig-[0-9]* -USES= pathfix +USES= gmake pathfix GNU_CONFIGURE= yes USE_LDCONFIG= yes -USE_GMAKE= yes CONFIGURE_ARGS+= --prefix=${PREFIX} --infodir=${PREFIX}/${INFO_PATH} INFO= libconfig -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:24:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F59B66D; Tue, 21 Jan 2014 00:24:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2BDE81CBD; Tue, 21 Jan 2014 00:24:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0O5FZ067182; Tue, 21 Jan 2014 00:24:05 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0O4HS067180; Tue, 21 Jan 2014 00:24:04 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210024.s0L0O4HS067180@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:24:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340514 - head/devel/libdisasm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:24:05 -0000 Author: bapt Date: Tue Jan 21 00:24:04 2014 New Revision: 340514 URL: http://svnweb.freebsd.org/changeset/ports/340514 QAT: https://qat.redports.org/buildarchive/r340514/ Log: Support stage Modified: head/devel/libdisasm/Makefile head/devel/libdisasm/pkg-plist Modified: head/devel/libdisasm/Makefile ============================================================================== --- head/devel/libdisasm/Makefile Tue Jan 21 00:22:35 2014 (r340513) +++ head/devel/libdisasm/Makefile Tue Jan 21 00:24:04 2014 (r340514) @@ -9,26 +9,19 @@ MASTER_SITES= SF/bastard/${PORTNAME}/${P MAINTAINER= bf@FreeBSD.org COMMENT= The Bastard Disassembly Environment x86 disassembler library and CLI +OPTIONS_DEFINE= DOCS + +USES= gmake GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes ONLY_FOR_ARCHS= i386 amd64 -.ifndef(NOPORTDOCS) PORTDOCS= libdisasm.txt -.endif - -MAN1= x86dis.1 -MAN3= x86_disasm.3 x86_format_insn.3 x86_init.3 -MAN7= libdisasm.7 -NO_STAGE= yes post-install: -.ifndef(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include Modified: head/devel/libdisasm/pkg-plist ============================================================================== --- head/devel/libdisasm/pkg-plist Tue Jan 21 00:22:35 2014 (r340513) +++ head/devel/libdisasm/pkg-plist Tue Jan 21 00:24:04 2014 (r340514) @@ -4,3 +4,8 @@ lib/libdisasm.a lib/libdisasm.la lib/libdisasm.so lib/libdisasm.so.0 +man/man1/x86dis.1.gz +man/man3/x86_disasm.3.gz +man/man3/x86_format_insn.3.gz +man/man3/x86_init.3.gz +man/man7/libdisasm.7.gz From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:27:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 17BD78AB; Tue, 21 Jan 2014 00:27:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0438B1CDD; Tue, 21 Jan 2014 00:27:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0RrpS068092; Tue, 21 Jan 2014 00:27:53 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0RraT068091; Tue, 21 Jan 2014 00:27:53 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210027.s0L0RraT068091@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:27:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340515 - head/devel/libeio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:27:54 -0000 Author: bapt Date: Tue Jan 21 00:27:53 2014 New Revision: 340515 URL: http://svnweb.freebsd.org/changeset/ports/340515 QAT: https://qat.redports.org/buildarchive/r340515/ Log: Support stage Modified: head/devel/libeio/Makefile Modified: head/devel/libeio/Makefile ============================================================================== --- head/devel/libeio/Makefile Tue Jan 21 00:24:04 2014 (r340514) +++ head/devel/libeio/Makefile Tue Jan 21 00:27:53 2014 (r340515) @@ -23,5 +23,4 @@ AUTOMAKE_ARGS= --add-missing PLIST_FILES= include/eio.h lib/libeio.a lib/libeio.la \ lib/libeio.so lib/libeio.so.1 -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:29:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0BD16AF9; Tue, 21 Jan 2014 00:29:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EC2001CEF; Tue, 21 Jan 2014 00:29:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0TOsI068554; Tue, 21 Jan 2014 00:29:24 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0TO00068551; Tue, 21 Jan 2014 00:29:24 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210029.s0L0TO00068551@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:29:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340516 - head/devel/libev X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:29:25 -0000 Author: bapt Date: Tue Jan 21 00:29:24 2014 New Revision: 340516 URL: http://svnweb.freebsd.org/changeset/ports/340516 QAT: https://qat.redports.org/buildarchive/r340516/ Log: Support stage Modified: head/devel/libev/Makefile head/devel/libev/pkg-plist Modified: head/devel/libev/Makefile ============================================================================== --- head/devel/libev/Makefile Tue Jan 21 00:27:53 2014 (r340515) +++ head/devel/libev/Makefile Tue Jan 21 00:29:24 2014 (r340516) @@ -9,22 +9,19 @@ MASTER_SITES= http://dist.schmorp.de/lib http://dist.schmorp.de/libev/Attic/ MAINTAINER= vsevolod@FreeBSD.org -COMMENT= A full-featured and high-performance event loop library +COMMENT= Full-featured and high-performance event loop library GNU_CONFIGURE= yes USE_LDCONFIG= yes USES= pkgconfig -MAN3= ev.3 - PKGCONFIGDIR?= ${PREFIX}/libdata/pkgconfig -NO_STAGE= yes post-patch: @${SED} -e 's|%PREFIX%|${PREFIX}|g ; s|%VERSION%|${PORTVERSION}|g' \ ${FILESDIR}/libev.pc.in > ${WRKDIR}/libev.pc post-install: - @${INSTALL_DATA} ${WRKDIR}/libev.pc ${PKGCONFIGDIR}/ + @${INSTALL_DATA} ${WRKDIR}/libev.pc ${STAGEDIR}${PKGCONFIGDIR}/ .include Modified: head/devel/libev/pkg-plist ============================================================================== --- head/devel/libev/pkg-plist Tue Jan 21 00:27:53 2014 (r340515) +++ head/devel/libev/pkg-plist Tue Jan 21 00:29:24 2014 (r340516) @@ -5,3 +5,4 @@ lib/libev.so.4 libdata/pkgconfig/libev.pc include/ev.h include/ev++.h +man/man3/ev.3.gz From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:31:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B28A5BF2; Tue, 21 Jan 2014 00:31:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F15A1D63; Tue, 21 Jan 2014 00:31:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0VVra071712; Tue, 21 Jan 2014 00:31:31 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0VVBf071710; Tue, 21 Jan 2014 00:31:31 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210031.s0L0VVBf071710@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:31:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340517 - head/devel/libexecinfo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:31:31 -0000 Author: bapt Date: Tue Jan 21 00:31:31 2014 New Revision: 340517 URL: http://svnweb.freebsd.org/changeset/ports/340517 QAT: https://qat.redports.org/buildarchive/r340517/ Log: Support stage Fix packaging as a user Modified: head/devel/libexecinfo/Makefile Modified: head/devel/libexecinfo/Makefile ============================================================================== --- head/devel/libexecinfo/Makefile Tue Jan 21 00:29:24 2014 (r340516) +++ head/devel/libexecinfo/Makefile Tue Jan 21 00:31:31 2014 (r340517) @@ -9,8 +9,11 @@ MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= itetcu MAINTAINER= itetcu@FreeBSD.org -COMMENT= A library for inspecting program's backtrace +COMMENT= Library for inspecting program's backtrace +OPTIONS_DEFINE= DOCS + +USES= uidfix USE_BZIP2= yes USE_LDCONFIG= yes MAKE_FLAGS= LIBDIR=${PREFIX}/lib \ @@ -18,17 +21,10 @@ MAKE_FLAGS= LIBDIR=${PREFIX}/lib \ PORTDOCS= README -NO_STAGE= yes -.include - -.if ${ARCH} == "amd64" -CFLAGS+= -fno-omit-frame-pointer -.endif +CFLAGS_amd64= -fno-omit-frame-pointer post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:34:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13C14E16; Tue, 21 Jan 2014 00:34:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0051E1D79; Tue, 21 Jan 2014 00:34:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0YDev072439; Tue, 21 Jan 2014 00:34:13 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0YDJ0072438; Tue, 21 Jan 2014 00:34:13 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210034.s0L0YDJ0072438@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:34:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340518 - head/devel/libfirm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:34:14 -0000 Author: bapt Date: Tue Jan 21 00:34:13 2014 New Revision: 340518 URL: http://svnweb.freebsd.org/changeset/ports/340518 QAT: https://qat.redports.org/buildarchive/r340518/ Log: Support stage Modified: head/devel/libfirm/Makefile Modified: head/devel/libfirm/Makefile ============================================================================== --- head/devel/libfirm/Makefile Tue Jan 21 00:31:31 2014 (r340517) +++ head/devel/libfirm/Makefile Tue Jan 21 00:34:13 2014 (r340518) @@ -7,27 +7,20 @@ CATEGORIES= devel lang MASTER_SITES= SF MAINTAINER= sperber@FreeBSD.org -COMMENT= A graph-based SSA intermediate representation library for compilers +COMMENT= Graph-based SSA intermediate representation library for compilers + +OPTIONS_DEFINE= DEBUG LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi USE_AUTOTOOLS= autoconf USE_BZIP2= yes -USE_GMAKE= yes -USE_GNOME= gnomehack USE_LDCONFIG= yes -USES= pkgconfig +USES= gmake pathfix pkgconfig OPTIONS_DEFINE= DEBUG -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+= --enable-debug -.else -CONFIGURE_ARGS+= --disable-debug -.endif +DEBUG_CONFIGURE_ENABLE= debug .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:36:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5313E179; Tue, 21 Jan 2014 00:36:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F85A1D8C; Tue, 21 Jan 2014 00:36:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0aPxo072905; Tue, 21 Jan 2014 00:36:25 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0aPNF072904; Tue, 21 Jan 2014 00:36:25 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210036.s0L0aPNF072904@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:36:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340519 - head/devel/libg19draw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:36:25 -0000 Author: bapt Date: Tue Jan 21 00:36:24 2014 New Revision: 340519 URL: http://svnweb.freebsd.org/changeset/ports/340519 QAT: https://qat.redports.org/buildarchive/r340519/ Log: Support stage Modified: head/devel/libg19draw/Makefile Modified: head/devel/libg19draw/Makefile ============================================================================== --- head/devel/libg19draw/Makefile Tue Jan 21 00:34:13 2014 (r340518) +++ head/devel/libg19draw/Makefile Tue Jan 21 00:36:24 2014 (r340519) @@ -9,8 +9,8 @@ MASTER_SITES= SF/g19linux/${PORTNAME}/${ MAINTAINER= armin@frozen-zone.org COMMENT= G19 draw library -LIB_DEPENDS= g19.1:${PORTSDIR}/devel/libg19 \ - freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libg19.so:${PORTSDIR}/devel/libg19 \ + libfreetype.so.9:${PORTSDIR}/print/freetype2 CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -pthread" @@ -24,5 +24,4 @@ PLIST_FILES= include/libg19draw.h \ lib/libg19draw.so \ lib/libg19draw.so.1 -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:38:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2742275; Tue, 21 Jan 2014 00:38:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AE6C21DA4; Tue, 21 Jan 2014 00:38:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0c9PJ073230; Tue, 21 Jan 2014 00:38:09 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0c97F073229; Tue, 21 Jan 2014 00:38:09 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210038.s0L0c97F073229@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:38:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340520 - head/devel/libjson++ X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:38:09 -0000 Author: bapt Date: Tue Jan 21 00:38:09 2014 New Revision: 340520 URL: http://svnweb.freebsd.org/changeset/ports/340520 QAT: https://qat.redports.org/buildarchive/r340520/ Log: Support stage Modified: head/devel/libjson++/Makefile Modified: head/devel/libjson++/Makefile ============================================================================== --- head/devel/libjson++/Makefile Tue Jan 21 00:36:24 2014 (r340519) +++ head/devel/libjson++/Makefile Tue Jan 21 00:38:09 2014 (r340520) @@ -12,5 +12,4 @@ COMMENT= Small C++ library to handle JSO USES= cmake USE_LDCONFIG= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:40:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 368BF374; Tue, 21 Jan 2014 00:40:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 232C01DBE; Tue, 21 Jan 2014 00:40:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0eFlC074050; Tue, 21 Jan 2014 00:40:15 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0eEKM074048; Tue, 21 Jan 2014 00:40:14 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210040.s0L0eEKM074048@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:40:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340521 - head/devel/liblas X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:40:15 -0000 Author: bapt Date: Tue Jan 21 00:40:14 2014 New Revision: 340521 URL: http://svnweb.freebsd.org/changeset/ports/340521 QAT: https://qat.redports.org/buildarchive/r340521/ Log: Support stage Modified: head/devel/liblas/Makefile Modified: head/devel/liblas/Makefile ============================================================================== --- head/devel/liblas/Makefile Tue Jan 21 00:38:09 2014 (r340520) +++ head/devel/liblas/Makefile Tue Jan 21 00:40:14 2014 (r340521) @@ -8,14 +8,12 @@ MASTER_SITES= http://trac.liblas.org/raw DISTNAME= ${PORTNAME}-src-${PORTVERSION} MAINTAINER= wenheping@gmail.com -COMMENT= A Library For Reading And Writing LAS-Format Data +COMMENT= Library For Reading And Writing LAS-Format Data -#USE_BZIP2= yes +USES= gmake GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/liblas-src-${PORTVERSION} -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:42:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D004C4A7; Tue, 21 Jan 2014 00:42:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A2AD01E27; Tue, 21 Jan 2014 00:42:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0gRjr076555; Tue, 21 Jan 2014 00:42:27 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0gRvF076554; Tue, 21 Jan 2014 00:42:27 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210042.s0L0gRvF076554@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:42:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340522 - head/devel/liblouis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:42:27 -0000 Author: bapt Date: Tue Jan 21 00:42:27 2014 New Revision: 340522 URL: http://svnweb.freebsd.org/changeset/ports/340522 QAT: https://qat.redports.org/buildarchive/r340522/ Log: Support stage Modified: head/devel/liblouis/Makefile Modified: head/devel/liblouis/Makefile ============================================================================== --- head/devel/liblouis/Makefile Tue Jan 21 00:40:14 2014 (r340521) +++ head/devel/liblouis/Makefile Tue Jan 21 00:42:27 2014 (r340522) @@ -7,13 +7,14 @@ CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} MAINTAINER= wenheping@gmail.com -COMMENT= An Open-source Braille Translator And Back-translator +COMMENT= Open-source Braille Translator And Back-translator +OPTIONS_DEFINE= DOCS + +USES= gmake GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes -NO_STAGE= yes post-extract: @${REINPLACE_CMD} -e \ 's#@libdir@#${PREFIX}/libdata#g' ${WRKSRC}/Makefile.in @@ -21,18 +22,16 @@ post-extract: 's#tables doc tests python#tests python#g' ${WRKSRC}/Makefile.in post-install: - ${MKDIR} ${DATADIR}/tables - ${INSTALL_DATA} ${WRKSRC}/tables/*.dic ${DATADIR}/tables/ - ${INSTALL_DATA} ${WRKSRC}/tables/*.ctb ${DATADIR}/tables/ - ${INSTALL_DATA} ${WRKSRC}/tables/*.utb ${DATADIR}/tables/ - ${INSTALL_DATA} ${WRKSRC}/tables/*.cti ${DATADIR}/tables/ - ${INSTALL_DATA} ${WRKSRC}/tables/*.utb2 ${DATADIR}/tables/ - ${INSTALL_DATA} ${WRKSRC}/tables/*.dis ${DATADIR}/tables/ -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DATADIR}/tables + ${INSTALL_DATA} ${WRKSRC}/tables/*.dic ${STAGEDIR}${DATADIR}/tables/ + ${INSTALL_DATA} ${WRKSRC}/tables/*.ctb ${STAGEDIR}${DATADIR}/tables/ + ${INSTALL_DATA} ${WRKSRC}/tables/*.utb ${STAGEDIR}${DATADIR}/tables/ + ${INSTALL_DATA} ${WRKSRC}/tables/*.cti ${STAGEDIR}${DATADIR}/tables/ + ${INSTALL_DATA} ${WRKSRC}/tables/*.utb2 ${STAGEDIR}${DATADIR}/tables/ + ${INSTALL_DATA} ${WRKSRC}/tables/*.dis ${STAGEDIR}${DATADIR}/tables/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in liblouis-guide.html liblouis-guide.txt - ${INSTALL_MAN} ${WRKSRC}/doc/${i} ${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/doc/${i} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:44:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B3BF681; Tue, 21 Jan 2014 00:44:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4764F1E45; Tue, 21 Jan 2014 00:44:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0i9Rk076858; Tue, 21 Jan 2014 00:44:09 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0i9o2076857; Tue, 21 Jan 2014 00:44:09 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201401210044.s0L0i9o2076857@svn.freebsd.org> From: Matthias Andree Date: Tue, 21 Jan 2014 00:44:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340523 - 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.17 Precedence: list List-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, 21 Jan 2014 00:44:09 -0000 Author: mandree Date: Tue Jan 21 00:44:08 2014 New Revision: 340523 URL: http://svnweb.freebsd.org/changeset/ports/340523 QAT: https://qat.redports.org/buildarchive/r340523/ Log: Give proper reason why we reject replaced files. Modified: head/Tools/scripts/psvn Modified: head/Tools/scripts/psvn ============================================================================== --- head/Tools/scripts/psvn Tue Jan 21 00:42:27 2014 (r340522) +++ head/Tools/scripts/psvn Tue Jan 21 00:44:08 2014 (r340523) @@ -3,6 +3,7 @@ # psvn - Wrapper to set Subversion properties automatically # # Copyright (c) 2012 Beat Gaetzi +# Copyright (c) 2012,2014 Matthias Andree # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -66,7 +67,7 @@ checkstatus () { case "${_status}" in R*) - printf >&2 '===> Do not replace files as this will break the CVS exporter: "%s"\n' "${_file}" + printf >&2 '===> Do not replace files as this may lose history: "%s"\n' "${_file}" _error=1 ;; C*|?C*) From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:45:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 562597C2; Tue, 21 Jan 2014 00:45:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4242A1E52; Tue, 21 Jan 2014 00:45:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0jIDY077125; Tue, 21 Jan 2014 00:45:18 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0jIhl077124; Tue, 21 Jan 2014 00:45:18 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210045.s0L0jIhl077124@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:45:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340524 - head/devel/libmonetra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:45:18 -0000 Author: bapt Date: Tue Jan 21 00:45:17 2014 New Revision: 340524 URL: http://svnweb.freebsd.org/changeset/ports/340524 QAT: https://qat.redports.org/buildarchive/r340524/ Log: Support stage Modified: head/devel/libmonetra/Makefile Modified: head/devel/libmonetra/Makefile ============================================================================== --- head/devel/libmonetra/Makefile Tue Jan 21 00:44:08 2014 (r340523) +++ head/devel/libmonetra/Makefile Tue Jan 21 00:45:17 2014 (r340524) @@ -10,9 +10,8 @@ DISTNAME= libmonetra-${PORTVERSION} MAINTAINER= brad@monetra.com COMMENT= Library for credit card processing through Monetra (formerly MCVE) +USES= gmake GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:46:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 33DAE933; Tue, 21 Jan 2014 00:46:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1FDA71E5E; Tue, 21 Jan 2014 00:46:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0k2kr077310; Tue, 21 Jan 2014 00:46:02 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0k2dk077309; Tue, 21 Jan 2014 00:46:02 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210046.s0L0k2dk077309@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:46:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340525 - head/devel/libnaji X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:46:03 -0000 Author: bapt Date: Tue Jan 21 00:46:02 2014 New Revision: 340525 URL: http://svnweb.freebsd.org/changeset/ports/340525 QAT: https://qat.redports.org/buildarchive/r340525/ Log: Support stage Modified: head/devel/libnaji/Makefile Modified: head/devel/libnaji/Makefile ============================================================================== --- head/devel/libnaji/Makefile Tue Jan 21 00:45:17 2014 (r340524) +++ head/devel/libnaji/Makefile Tue Jan 21 00:46:02 2014 (r340525) @@ -9,13 +9,12 @@ MASTER_SITES= SF/najitool/${PORTNAME}/${ MAINTAINER= rodrigo@bebik.net COMMENT= Library that generates, converts, and filters files -MAKE_ARGS= cc=${CC} +MAKE_ARGS= cc="${CC}" DISTVERSIONSUFFIX= .src -NO_STAGE= yes do-install: - ${INSTALL_DATA} ${WRKSRC}/libnaji.h ${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/libnaji.a ${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/libnaji.h ${STAGEDIR}${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/libnaji.a ${STAGEDIR}${PREFIX}/lib .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:47:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66F9FA87; Tue, 21 Jan 2014 00:47:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3904E1E6B; Tue, 21 Jan 2014 00:47:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0l4ns077529; Tue, 21 Jan 2014 00:47:04 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0l48w077528; Tue, 21 Jan 2014 00:47:04 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201401210047.s0L0l48w077528@svn.freebsd.org> From: Matthias Andree Date: Tue, 21 Jan 2014 00:47:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340526 - head/sysutils/busybox/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.17 Precedence: list List-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, 21 Jan 2014 00:47:04 -0000 Author: mandree Date: Tue Jan 21 00:47:03 2014 New Revision: 340526 URL: http://svnweb.freebsd.org/changeset/ports/340526 QAT: https://qat.redports.org/buildarchive/r340526/ Log: Remove files to make room for import from busybox-unstable. Deleted: head/sysutils/busybox/files/data-.config head/sysutils/busybox/files/patch-include__platform.h From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:47:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A8CFB62; Tue, 21 Jan 2014 00:47:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 258B71E72; Tue, 21 Jan 2014 00:47:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0lgIQ077684; Tue, 21 Jan 2014 00:47:42 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0lfmn077683; Tue, 21 Jan 2014 00:47:41 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210047.s0L0lfmn077683@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:47:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340527 - head/devel/libpeak X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:47:42 -0000 Author: bapt Date: Tue Jan 21 00:47:41 2014 New Revision: 340527 URL: http://svnweb.freebsd.org/changeset/ports/340527 QAT: https://qat.redports.org/buildarchive/r340527/ Log: Support stage Modified: head/devel/libpeak/Makefile Modified: head/devel/libpeak/Makefile ============================================================================== --- head/devel/libpeak/Makefile Tue Jan 21 00:47:03 2014 (r340526) +++ head/devel/libpeak/Makefile Tue Jan 21 00:47:41 2014 (r340527) @@ -11,7 +11,7 @@ COMMENT= Parallel Events and Asynchronou ONLY_FOR_ARCHS= i386 amd64 sparc64 -USE_GMAKE= yes +USES= gmake GNU_CONFIGURE= yes USE_LDCONFIG= yes @@ -22,5 +22,4 @@ regression-test: build ${MAKE} $$alltests && ./test-suite.pl $$alltests \ ) -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:48:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D5BAC3B; Tue, 21 Jan 2014 00:48:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E1E751E78; Tue, 21 Jan 2014 00:48:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0m6cn077927; Tue, 21 Jan 2014 00:48:06 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0m6Ci077920; Tue, 21 Jan 2014 00:48:06 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201401210048.s0L0m6Ci077920@svn.freebsd.org> From: Matthias Andree Date: Tue, 21 Jan 2014 00:48:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340528 - in head/sysutils: busybox busybox-unstable busybox/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.17 Precedence: list List-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, 21 Jan 2014 00:48:07 -0000 Author: mandree Date: Tue Jan 21 00:48:05 2014 New Revision: 340528 URL: http://svnweb.freebsd.org/changeset/ports/340528 QAT: https://qat.redports.org/buildarchive/r340528/ Log: Upgrade sysutils/busybox to new stable release 1.22.1. To see the changes, please visit . At the same time, disable sysutils/busybox-unstable and tell users to use sysutils/busybox instead. Added: head/sysutils/busybox/files/data-.config - copied unchanged from r340526, head/sysutils/busybox-unstable/files/data-.config head/sysutils/busybox/files/patch-include__platform.h - copied unchanged from r340526, head/sysutils/busybox-unstable/files/patch-include__platform.h Deleted: head/sysutils/busybox/files/patch-archival__unzip.c head/sysutils/busybox/files/patch-coreutils__cp.c head/sysutils/busybox/files/patch-coreutils__dirname.c head/sysutils/busybox/files/patch-coreutils__install.c head/sysutils/busybox/files/patch-coreutils__rmdir.c head/sysutils/busybox/files/patch-procps__ps.c head/sysutils/busybox/files/patch-sysklogd__logread.c Modified: head/sysutils/busybox-unstable/Makefile head/sysutils/busybox/Makefile head/sysutils/busybox/distinfo Modified: head/sysutils/busybox-unstable/Makefile ============================================================================== --- head/sysutils/busybox-unstable/Makefile Tue Jan 21 00:47:41 2014 (r340527) +++ head/sysutils/busybox-unstable/Makefile Tue Jan 21 00:48:05 2014 (r340528) @@ -21,9 +21,9 @@ BUILD_DEPENDS= gsed:${PORTSDIR}/textproc CONFLICTS_INSTALL= busybox-[1-9]* -#IGNORE= is older than stable version. Use sysutils/busybox +IGNORE= is older than stable version. Use sysutils/busybox -#PORTSCOUT= skipv:1.21.1 +PORTSCOUT= skipv:1.22.1 MAKE_ARGS+= SKIP_STRIP=y CC="${CC}" HOSTCC="${CC}" CXX="${CXX}" HOSTCXX="${CXX}" USE_BZIP2= yes Modified: head/sysutils/busybox/Makefile ============================================================================== --- head/sysutils/busybox/Makefile Tue Jan 21 00:47:41 2014 (r340527) +++ head/sysutils/busybox/Makefile Tue Jan 21 00:48:05 2014 (r340528) @@ -2,31 +2,29 @@ # $FreeBSD$ PORTNAME= busybox -PORTVERSION= 1.21.1 +PORTVERSION= 1.22.1 CATEGORIES= sysutils misc shells MASTER_SITES= http://www.busybox.net/downloads/ PATCH_SITES= http://www.busybox.net/downloads/fixes-${PORTVERSION}/ PATCH_DIST_STRIP= -p1 -PATCHFILES= +PATCHFILES= busybox-1.22.1-ash.patch MAINTAINER= mandree@FreeBSD.org COMMENT= Busybox for FreeBSD LICENSE= GPLv2 -PORTSCOUT= skipv:1.22.0 +PORTSCOUT= skipv:1.23.0 BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed CONFLICTS_INSTALL= busybox-unstable-* MAKE_ARGS+= SKIP_STRIP=y CC="${CC}" HOSTCC="${CC}" CXX="${CXX}" HOSTCXX="${CXX}" -USES= gmake USE_BZIP2= yes -# avoid clang, breaks in findutils/find.c l. 752+, -# uses a GCC extension/invalid C code: -USE_GCC?= 4.2+ +# findutils/find.c l. 752+, uses a GCC extension/invalid C code: +USES= compiler:nestedfct gmake PLIST_FILES= bin/busybox @@ -35,7 +33,7 @@ PLIST_FILES= bin/busybox .if ${PORT_OPTIONS:MDOCS} USES+= perl5 USE_PERL5= build -PORTDOCS= * +PORTDOCS= * .endif post-patch: Modified: head/sysutils/busybox/distinfo ============================================================================== --- head/sysutils/busybox/distinfo Tue Jan 21 00:47:41 2014 (r340527) +++ head/sysutils/busybox/distinfo Tue Jan 21 00:48:05 2014 (r340528) @@ -1,2 +1,4 @@ -SHA256 (busybox-1.21.1.tar.bz2) = cd5be0912ec856110ae12c76c3ec9cd5cba1df45b5a9da2b095b8284d1481303 -SIZE (busybox-1.21.1.tar.bz2) = 2201917 +SHA256 (busybox-1.22.1.tar.bz2) = ae0b029d0a9e4dd71a077a790840e496dd838998e4571b87b60fed7462b6678b +SIZE (busybox-1.22.1.tar.bz2) = 2218650 +SHA256 (busybox-1.22.1-ash.patch) = 9917257771ab715480427a6b744785b035d381e7ec0de381faf945bc7abadb97 +SIZE (busybox-1.22.1-ash.patch) = 423 Copied: head/sysutils/busybox/files/data-.config (from r340526, head/sysutils/busybox-unstable/files/data-.config) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/busybox/files/data-.config Tue Jan 21 00:48:05 2014 (r340528, copy of r340526, head/sysutils/busybox-unstable/files/data-.config) @@ -0,0 +1,1022 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.22.0 +# Wed Jan 1 23:35:42 2014 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +# CONFIG_DESKTOP is not set +# CONFIG_EXTRA_COMPAT is not set +CONFIG_INCLUDE_SUSv2=y +CONFIG_USE_PORTABLE_CODE=y +CONFIG_PLATFORM_LINUX=y +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_SHOW_USAGE=y +CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_FEATURE_COMPRESS_USAGE=y +CONFIG_FEATURE_INSTALLER=y +# CONFIG_INSTALL_NO_USR is not set +CONFIG_LOCALE_SUPPORT=y +CONFIG_UNICODE_SUPPORT=y +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=63 +CONFIG_LAST_SUPPORTED_WCHAR=767 +# CONFIG_UNICODE_COMBINING_WCHARS is not set +# CONFIG_UNICODE_WIDE_WCHARS is not set +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +# CONFIG_UNICODE_PRESERVE_BROKEN is not set +CONFIG_LONG_OPTS=y +CONFIG_FEATURE_DEVPTS=y +# CONFIG_FEATURE_CLEAN_UP is not set +# CONFIG_FEATURE_UTMP is not set +# CONFIG_FEATURE_WTMP is not set +CONFIG_FEATURE_PIDFILE=y +CONFIG_PID_FILE_PATH="/var/run" +CONFIG_FEATURE_SUID=y +CONFIG_FEATURE_SUID_CONFIG=y +CONFIG_FEATURE_SUID_CONFIG_QUIET=y +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y +# CONFIG_FEATURE_HAVE_RPC is not set + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +CONFIG_LFS=y +CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_SYSROOT="" +CONFIG_EXTRA_CFLAGS="" +CONFIG_EXTRA_LDFLAGS="" +CONFIG_EXTRA_LDLIBS="" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_WERROR is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options ("make install" behavior) +# +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +# CONFIG_FEATURE_SYSTEMD is not set +CONFIG_FEATURE_RTMINMAX=y +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +CONFIG_SHA3_SMALL=1 +CONFIG_FEATURE_FAST_TOP=y +# CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_FEATURE_USE_TERMIOS=y +CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 +# CONFIG_FEATURE_EDITING_VI is not set +CONFIG_FEATURE_EDITING_HISTORY=30 +# CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +# CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set +# CONFIG_FEATURE_REVERSE_SEARCH is not set +CONFIG_FEATURE_TAB_COMPLETION=y +# CONFIG_FEATURE_USERNAME_COMPLETION is not set +# CONFIG_FEATURE_EDITING_FANCY_PROMPT is not set +# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_FEATURE_SKIP_ROOTFS is not set +# CONFIG_MONOTONIC_SYSCALL is not set +CONFIG_IOCTL_HEX2STR_ERROR=y +CONFIG_FEATURE_HWIB=y + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_XZ=y +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +CONFIG_AR=y +CONFIG_FEATURE_AR_LONG_FILENAMES=y +CONFIG_FEATURE_AR_CREATE=y +CONFIG_UNCOMPRESS=y +CONFIG_GUNZIP=y +CONFIG_BUNZIP2=y +CONFIG_UNLZMA=y +CONFIG_FEATURE_LZMA_FAST=y +CONFIG_LZMA=y +CONFIG_UNXZ=y +CONFIG_XZ=y +CONFIG_BZIP2=y +CONFIG_CPIO=y +# CONFIG_FEATURE_CPIO_O is not set +# CONFIG_FEATURE_CPIO_P is not set +# CONFIG_DPKG is not set +# CONFIG_DPKG_DEB is not set +# CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY is not set +CONFIG_GZIP=y +CONFIG_FEATURE_GZIP_LONG_OPTIONS=y +CONFIG_GZIP_FAST=0 +CONFIG_LZOP=y +# CONFIG_LZOP_COMPR_HIGH is not set +CONFIG_RPM=y +CONFIG_RPM2CPIO=y +CONFIG_TAR=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +CONFIG_FEATURE_TAR_LONG_OPTIONS=y +CONFIG_FEATURE_TAR_TO_COMMAND=y +# CONFIG_FEATURE_TAR_UNAME_GNAME is not set +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +# CONFIG_FEATURE_TAR_SELINUX is not set +CONFIG_UNZIP=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAT=y +# CONFIG_DATE is not set +# CONFIG_FEATURE_DATE_ISOFMT is not set +# CONFIG_FEATURE_DATE_NANO is not set +# CONFIG_FEATURE_DATE_COMPAT is not set +CONFIG_HOSTID=y +CONFIG_ID=y +CONFIG_GROUPS=y +CONFIG_TEST=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TOUCH=y +CONFIG_FEATURE_TOUCH_NODEREF=y +CONFIG_FEATURE_TOUCH_SUSV3=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +# CONFIG_BASE64 is not set +# CONFIG_WHO is not set +# CONFIG_USERS is not set +CONFIG_CAL=y +CONFIG_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +CONFIG_FEATURE_CHOWN_LONG_OPTIONS=y +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_COMM=y +CONFIG_CP=y +CONFIG_FEATURE_CP_LONG_OPTIONS=y +CONFIG_CUT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +# CONFIG_DF is not set +# CONFIG_FEATURE_DF_FANCY is not set +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +CONFIG_FEATURE_ENV_LONG_OPTIONS=y +CONFIG_EXPAND=y +CONFIG_FEATURE_EXPAND_LONG_OPTIONS=y +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FALSE=y +CONFIG_FOLD=y +CONFIG_FSYNC=y +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_INSTALL=y +CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y +CONFIG_LN=y +CONFIG_LOGNAME=y +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +CONFIG_FEATURE_LS_COLOR=y +CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_MD5SUM=y +CONFIG_MKDIR=y +CONFIG_FEATURE_MKDIR_LONG_OPTIONS=y +CONFIG_MKFIFO=y +# CONFIG_MKNOD is not set +CONFIG_MV=y +CONFIG_FEATURE_MV_LONG_OPTIONS=y +CONFIG_NICE=y +CONFIG_NOHUP=y +CONFIG_OD=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +# CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_SEQ=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SHA3SUM=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_FEATURE_FLOAT_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +# CONFIG_STAT is not set +# CONFIG_FEATURE_STAT_FORMAT is not set +# CONFIG_STTY is not set +CONFIG_SUM=y +CONFIG_SYNC=y +# CONFIG_TAC is not set +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TRUE=y +CONFIG_TTY=y +CONFIG_UNAME=y +CONFIG_UNEXPAND=y +CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS=y +CONFIG_UNIQ=y +CONFIG_USLEEP=y +CONFIG_UUDECODE=y +CONFIG_UUENCODE=y +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for ls, more and telnet +# +CONFIG_FEATURE_AUTOWIDTH=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +# CONFIG_CHVT is not set +# CONFIG_FGCONSOLE is not set +CONFIG_CLEAR=y +# CONFIG_DEALLOCVT is not set +# CONFIG_DUMPKMAP is not set +# CONFIG_KBD_MODE is not set +# CONFIG_LOADFONT is not set +# CONFIG_LOADKMAP is not set +# CONFIG_OPENVT is not set +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +# CONFIG_SETCONSOLE is not set +# CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set +# CONFIG_SETFONT is not set +# CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set +CONFIG_DEFAULT_SETFONT_DIR="" +# CONFIG_SETKEYCODES is not set +# CONFIG_SETLOGCONS is not set +# CONFIG_SHOWKEY is not set +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set + +# +# Debian Utilities +# +CONFIG_MKTEMP=y +CONFIG_PIPE_PROGRESS=y +CONFIG_RUN_PARTS=y +CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y +CONFIG_FEATURE_RUN_PARTS_FANCY=y +# CONFIG_START_STOP_DAEMON is not set +# CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set +# CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +CONFIG_WHICH=y + +# +# Editors +# +CONFIG_AWK=y +CONFIG_FEATURE_AWK_LIBM=y +CONFIG_FEATURE_AWK_GNU_EXTENSIONS=y +CONFIG_CMP=y +CONFIG_DIFF=y +CONFIG_FEATURE_DIFF_LONG_OPTIONS=y +CONFIG_FEATURE_DIFF_DIR=y +CONFIG_ED=y +CONFIG_PATCH=y +CONFIG_SED=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=1024 +CONFIG_FEATURE_VI_8BIT=y +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +# CONFIG_FEATURE_VI_REGEX_SEARCH is not set +CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_FEATURE_VI_READONLY=y +CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_FEATURE_VI_SET=y +CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_FEATURE_VI_ASK_TERMINAL=y +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +CONFIG_FEATURE_FIND_INUM=y +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +CONFIG_FEATURE_FIND_DELETE=y +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set +CONFIG_FEATURE_FIND_LINKS=y +CONFIG_GREP=y +CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +# CONFIG_BOOTCHARTD is not set +# CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set +# CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE is not set +# CONFIG_HALT is not set +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +# CONFIG_INIT is not set +# CONFIG_FEATURE_USE_INITTAB is not set +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +# CONFIG_FEATURE_INIT_SCTTY is not set +# CONFIG_FEATURE_INIT_SYSLOG is not set +# CONFIG_FEATURE_EXTRA_QUIET is not set +# CONFIG_FEATURE_INIT_COREDUMPS is not set +# CONFIG_FEATURE_INITRD is not set +CONFIG_INIT_TERMINAL_TYPE="" +# CONFIG_MESG is not set +# CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP is not set + +# +# Login/Password Management Utilities +# +# CONFIG_ADD_SHELL is not set +# CONFIG_REMOVE_SHELL is not set +# CONFIG_FEATURE_SHADOWPASSWDS is not set +CONFIG_USE_BB_PWD_GRP=y +# CONFIG_USE_BB_SHADOW is not set +# CONFIG_USE_BB_CRYPT is not set +# CONFIG_USE_BB_CRYPT_SHA is not set +# CONFIG_ADDUSER is not set +# CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set +# CONFIG_FEATURE_CHECK_NAMES is not set +CONFIG_FIRST_SYSTEM_ID=100 +CONFIG_LAST_SYSTEM_ID=999 +CONFIG_ADDGROUP=y +CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS=y +CONFIG_FEATURE_ADDUSER_TO_GROUP=y +# CONFIG_DELUSER is not set +CONFIG_DELGROUP=y +CONFIG_FEATURE_DEL_USER_FROM_GROUP=y +# CONFIG_GETTY is not set +# CONFIG_LOGIN is not set +# CONFIG_LOGIN_SESSION_AS_CHILD is not set +# CONFIG_PAM is not set +# CONFIG_LOGIN_SCRIPTS is not set +# CONFIG_FEATURE_NOLOGIN is not set +# CONFIG_FEATURE_SECURETTY is not set +# CONFIG_PASSWD is not set +# CONFIG_FEATURE_PASSWD_WEAK_CHECK is not set +# CONFIG_CRYPTPW is not set +# CONFIG_CHPASSWD is not set +CONFIG_FEATURE_DEFAULT_PASSWD_ALGO="" +# CONFIG_SU is not set +# CONFIG_FEATURE_SU_SYSLOG is not set +# CONFIG_FEATURE_SU_CHECKS_SHELLS is not set +# CONFIG_SULOGIN is not set +# CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +# CONFIG_FSCK is not set +# CONFIG_LSATTR is not set +# CONFIG_TUNE2FS is not set + +# +# Linux Module Utilities +# +# CONFIG_MODINFO is not set +# CONFIG_MODPROBE_SMALL is not set +# CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE is not set +# CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set +# CONFIG_INSMOD is not set +# CONFIG_RMMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_TRY_MMAP is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +# CONFIG_FEATURE_MODUTILS_ALIAS is not set +# CONFIG_FEATURE_MODUTILS_SYMBOLS is not set +CONFIG_DEFAULT_MODULES_DIR="" +CONFIG_DEFAULT_DEPMOD_FILE="" + +# +# Linux System Utilities +# +# CONFIG_BLOCKDEV is not set +# CONFIG_FSTRIM is not set +# CONFIG_MDEV is not set +# CONFIG_FEATURE_MDEV_CONF is not set +# CONFIG_FEATURE_MDEV_RENAME is not set +# CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set +# CONFIG_FEATURE_MDEV_EXEC is not set +# CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set +CONFIG_REV=y +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +# CONFIG_BLKID is not set +# CONFIG_FEATURE_BLKID_TYPE is not set +# CONFIG_DMESG is not set +# CONFIG_FEATURE_DMESG_PRETTY is not set +# CONFIG_FBSET is not set +# CONFIG_FEATURE_FBSET_FANCY is not set +# CONFIG_FEATURE_FBSET_READMODE is not set +# CONFIG_FDFLUSH is not set +# CONFIG_FDFORMAT is not set +# CONFIG_FDISK is not set +# CONFIG_FDISK_SUPPORT_LARGE_DISKS is not set +# CONFIG_FEATURE_FDISK_WRITABLE is not set +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +# CONFIG_FEATURE_GPT_LABEL is not set +# CONFIG_FEATURE_FDISK_ADVANCED is not set +# CONFIG_FINDFS is not set +CONFIG_FLOCK=y +# CONFIG_FREERAMDISK is not set +# CONFIG_FSCK_MINIX is not set +# CONFIG_MKFS_EXT2 is not set +# CONFIG_MKFS_MINIX is not set +# CONFIG_FEATURE_MINIX2 is not set +# CONFIG_MKFS_REISER is not set +# CONFIG_MKFS_VFAT is not set +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +# CONFIG_FEATURE_HEXDUMP_REVERSE is not set +CONFIG_HD=y +# CONFIG_HWCLOCK is not set +# CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_IPCRM is not set +# CONFIG_IPCS is not set +# CONFIG_LOSETUP is not set +CONFIG_LSPCI=y +CONFIG_LSUSB=y +# CONFIG_MKSWAP is not set +# CONFIG_FEATURE_MKSWAP_UUID is not set +CONFIG_MORE=y +# CONFIG_MOUNT is not set +# CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_FEATURE_MOUNT_LABEL is not set +# CONFIG_FEATURE_MOUNT_NFS is not set +# CONFIG_FEATURE_MOUNT_CIFS is not set +# CONFIG_FEATURE_MOUNT_FLAGS is not set +# CONFIG_FEATURE_MOUNT_FSTAB is not set +# CONFIG_PIVOT_ROOT is not set +# CONFIG_RDATE is not set +# CONFIG_RDEV is not set +CONFIG_READPROFILE=y +# CONFIG_RTCWAKE is not set +# CONFIG_SCRIPT is not set +CONFIG_SCRIPTREPLAY=y +# CONFIG_SETARCH is not set +# CONFIG_SWAPONOFF is not set +# CONFIG_FEATURE_SWAPON_PRI is not set +# CONFIG_SWITCH_ROOT is not set +# CONFIG_UMOUNT is not set +# CONFIG_FEATURE_UMOUNT_ALL is not set +# CONFIG_FEATURE_MOUNT_LOOP is not set +# CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set +# CONFIG_FEATURE_MTAB_SUPPORT is not set +# CONFIG_VOLUMEID is not set +# CONFIG_FEATURE_VOLUMEID_BTRFS is not set +# CONFIG_FEATURE_VOLUMEID_CRAMFS is not set +# CONFIG_FEATURE_VOLUMEID_EXFAT is not set +# CONFIG_FEATURE_VOLUMEID_EXT is not set +# CONFIG_FEATURE_VOLUMEID_F2FS is not set +# CONFIG_FEATURE_VOLUMEID_FAT is not set +# CONFIG_FEATURE_VOLUMEID_HFS is not set +# CONFIG_FEATURE_VOLUMEID_ISO9660 is not set +# CONFIG_FEATURE_VOLUMEID_JFS is not set +# CONFIG_FEATURE_VOLUMEID_LINUXRAID is not set +# CONFIG_FEATURE_VOLUMEID_LINUXSWAP is not set +# CONFIG_FEATURE_VOLUMEID_LUKS is not set +# CONFIG_FEATURE_VOLUMEID_NILFS is not set +# CONFIG_FEATURE_VOLUMEID_NTFS is not set +# CONFIG_FEATURE_VOLUMEID_OCFS2 is not set +# CONFIG_FEATURE_VOLUMEID_REISERFS is not set +# CONFIG_FEATURE_VOLUMEID_ROMFS is not set +# CONFIG_FEATURE_VOLUMEID_SQUASHFS is not set +# CONFIG_FEATURE_VOLUMEID_SYSV is not set +# CONFIG_FEATURE_VOLUMEID_UDF is not set +# CONFIG_FEATURE_VOLUMEID_XFS is not set + +# +# Miscellaneous Utilities +# +# CONFIG_CONSPY is not set +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +CONFIG_FEATURE_LESS_MARKS=y +CONFIG_FEATURE_LESS_REGEXP=y +# CONFIG_FEATURE_LESS_WINCH is not set +# CONFIG_FEATURE_LESS_ASK_TERMINAL is not set +# CONFIG_FEATURE_LESS_DASHCMD is not set +# CONFIG_FEATURE_LESS_LINENUMS is not set +# CONFIG_NANDWRITE is not set +# CONFIG_NANDDUMP is not set +# CONFIG_RFKILL is not set +# CONFIG_SETSERIAL is not set +# CONFIG_UBIATTACH is not set +# CONFIG_UBIDETACH is not set +# CONFIG_UBIMKVOL is not set +# CONFIG_UBIRMVOL is not set +# CONFIG_UBIRSVOL is not set +# CONFIG_UBIUPDATEVOL is not set +# CONFIG_WALL is not set +# CONFIG_ADJTIMEX is not set +# CONFIG_BBCONFIG is not set +# CONFIG_FEATURE_COMPRESS_BBCONFIG is not set +# CONFIG_BEEP is not set +CONFIG_FEATURE_BEEP_FREQ=0 +CONFIG_FEATURE_BEEP_LENGTH_MS=0 +# CONFIG_CHAT is not set +# CONFIG_FEATURE_CHAT_NOFAIL is not set +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +# CONFIG_FEATURE_CHAT_IMPLICIT_CR is not set +# CONFIG_FEATURE_CHAT_SWALLOW_OPTS is not set +# CONFIG_FEATURE_CHAT_SEND_ESCAPES is not set +# CONFIG_FEATURE_CHAT_VAR_ABORT_LEN is not set +# CONFIG_FEATURE_CHAT_CLR_ABORT is not set +CONFIG_CHRT=y +# CONFIG_CROND is not set +# CONFIG_FEATURE_CROND_D is not set +# CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set +CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_CRONTAB=y +CONFIG_DC=y +CONFIG_FEATURE_DC_LIBM=y +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +# CONFIG_DEVMEM is not set +# CONFIG_EJECT is not set +# CONFIG_FEATURE_EJECT_SCSI is not set +# CONFIG_FBSPLASH is not set +# CONFIG_FLASHCP is not set +# CONFIG_FLASH_LOCK is not set +# CONFIG_FLASH_UNLOCK is not set +# CONFIG_FLASH_ERASEALL is not set +# CONFIG_IONICE is not set +# CONFIG_INOTIFYD is not set +# CONFIG_LAST is not set +# CONFIG_FEATURE_LAST_SMALL is not set +# CONFIG_FEATURE_LAST_FANCY is not set +# CONFIG_HDPARM is not set +# CONFIG_FEATURE_HDPARM_GET_IDENTITY is not set +# CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set +# CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA is not set +# CONFIG_MAKEDEVS is not set +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +# CONFIG_FEATURE_MAKEDEVS_TABLE is not set +# CONFIG_MAN is not set +CONFIG_MICROCOM=y +# CONFIG_MOUNTPOINT is not set +# CONFIG_MT is not set +# CONFIG_RAIDAUTORUN is not set +# CONFIG_READAHEAD is not set +# CONFIG_RUNLEVEL is not set +# CONFIG_RX is not set +CONFIG_SETSID=y +CONFIG_STRINGS=y +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +# CONFIG_TIME is not set +CONFIG_TIMEOUT=y +CONFIG_TTYSIZE=y +CONFIG_VOLNAME=y +# CONFIG_WATCHDOG is not set + +# +# Networking Utilities +# +# CONFIG_NAMEIF is not set +# CONFIG_FEATURE_NAMEIF_EXTENDED is not set +# CONFIG_NBDCLIENT is not set +CONFIG_NC=y +# CONFIG_NC_SERVER is not set +# CONFIG_NC_EXTRA is not set +# CONFIG_NC_110_COMPAT is not set +# CONFIG_PING is not set +# CONFIG_PING6 is not set +# CONFIG_FEATURE_FANCY_PING is not set +# CONFIG_WHOIS is not set +# CONFIG_FEATURE_IPV6 is not set +# CONFIG_FEATURE_UNIX_LOCAL is not set +# CONFIG_FEATURE_PREFER_IPV4_ADDRESS is not set +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +# CONFIG_ARP is not set +# CONFIG_ARPING is not set +# CONFIG_BRCTL is not set +# CONFIG_FEATURE_BRCTL_FANCY is not set +# CONFIG_FEATURE_BRCTL_SHOW is not set +CONFIG_DNSD=y +# CONFIG_ETHER_WAKE is not set +CONFIG_FAKEIDENTD=y +CONFIG_FTPD=y +CONFIG_FEATURE_FTP_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FTPGET=y +CONFIG_FTPPUT=y +CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS=y +CONFIG_HOSTNAME=y +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_RANGES=y +# CONFIG_FEATURE_HTTPD_USE_SENDFILE is not set +# CONFIG_FEATURE_HTTPD_SETUID is not set +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +CONFIG_FEATURE_HTTPD_AUTH_MD5=y +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_FEATURE_HTTPD_GZIP=y +# CONFIG_IFCONFIG is not set +# CONFIG_FEATURE_IFCONFIG_STATUS is not set +# CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +# CONFIG_FEATURE_IFCONFIG_HW is not set +# CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS is not set +# CONFIG_IFENSLAVE is not set +# CONFIG_IFPLUGD is not set +# CONFIG_IFUPDOWN is not set +CONFIG_IFUPDOWN_IFSTATE_PATH="" +# CONFIG_FEATURE_IFUPDOWN_IP is not set +# CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN is not set +# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set +# CONFIG_FEATURE_IFUPDOWN_IPV4 is not set +# CONFIG_FEATURE_IFUPDOWN_IPV6 is not set +# CONFIG_FEATURE_IFUPDOWN_MAPPING is not set +# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set +# CONFIG_INETD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set +# CONFIG_FEATURE_INETD_RPC is not set +# CONFIG_IP is not set +# CONFIG_FEATURE_IP_ADDRESS is not set +# CONFIG_FEATURE_IP_LINK is not set +# CONFIG_FEATURE_IP_ROUTE is not set +# CONFIG_FEATURE_IP_TUNNEL is not set +# CONFIG_FEATURE_IP_RULE is not set +# CONFIG_FEATURE_IP_SHORT_FORMS is not set +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +# CONFIG_IPADDR is not set +# CONFIG_IPLINK is not set +# CONFIG_IPROUTE is not set +# CONFIG_IPTUNNEL is not set +# CONFIG_IPRULE is not set +CONFIG_IPCALC=y +CONFIG_FEATURE_IPCALC_FANCY=y +CONFIG_FEATURE_IPCALC_LONG_OPTIONS=y +# CONFIG_NETSTAT is not set +# CONFIG_FEATURE_NETSTAT_WIDE is not set +# CONFIG_FEATURE_NETSTAT_PRG is not set +# CONFIG_NSLOOKUP is not set +# CONFIG_NTPD is not set +# CONFIG_FEATURE_NTPD_SERVER is not set +CONFIG_PSCAN=y +# CONFIG_ROUTE is not set +# CONFIG_SLATTACH is not set +# CONFIG_TCPSVD is not set +CONFIG_TELNET=y +CONFIG_FEATURE_TELNET_TTYPE=y +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +CONFIG_TELNETD=y +CONFIG_FEATURE_TELNETD_STANDALONE=y +CONFIG_FEATURE_TELNETD_INETD_WAIT=y +CONFIG_TFTP=y +CONFIG_TFTPD=y + +# +# Common options for tftp/tftpd +# +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +CONFIG_FEATURE_TFTP_BLOCKSIZE=y +CONFIG_FEATURE_TFTP_PROGRESS_BAR=y +# CONFIG_TFTP_DEBUG is not set +# CONFIG_TRACEROUTE is not set +# CONFIG_TRACEROUTE6 is not set +# CONFIG_FEATURE_TRACEROUTE_VERBOSE is not set +# CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +# CONFIG_TUNCTL is not set +# CONFIG_FEATURE_TUNCTL_UG is not set +# CONFIG_UDHCPC6 is not set +# CONFIG_UDHCPD is not set +# CONFIG_DHCPRELAY is not set +# CONFIG_DUMPLEASES is not set +# CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set +# CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set +CONFIG_DHCPD_LEASES_FILE="" +# CONFIG_UDHCPC is not set +# CONFIG_FEATURE_UDHCPC_ARPING is not set +# CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_UDHCP_DEBUG=0 +# CONFIG_FEATURE_UDHCP_RFC3397 is not set +# CONFIG_FEATURE_UDHCP_8021Q is not set +CONFIG_UDHCPC_DEFAULT_SCRIPT="" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=0 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="" +# CONFIG_UDPSVD is not set +# CONFIG_VCONFIG is not set +CONFIG_WGET=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_FEATURE_WGET_LONG_OPTIONS=y +CONFIG_FEATURE_WGET_TIMEOUT=y +# CONFIG_ZCIP is not set + +# +# Print Utilities +# +# CONFIG_LPD is not set +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +# CONFIG_MAKEMIME is not set +CONFIG_FEATURE_MIME_CHARSET="" +# CONFIG_POPMAILDIR is not set +# CONFIG_FEATURE_POPMAILDIR_DELIVERY is not set +# CONFIG_REFORMIME is not set +# CONFIG_FEATURE_REFORMIME_COMPAT is not set +# CONFIG_SENDMAIL is not set + +# +# Process Utilities +# +CONFIG_IOSTAT=y +CONFIG_LSOF=y +CONFIG_MPSTAT=y +# CONFIG_NMETER is not set +CONFIG_PMAP=y +CONFIG_POWERTOP=y +CONFIG_PSTREE=y +CONFIG_PWDX=y +CONFIG_SMEMCAP=y +# CONFIG_TOP is not set +# CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE is not set +# CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS is not set +# CONFIG_FEATURE_TOP_SMP_CPU is not set +# CONFIG_FEATURE_TOP_DECIMALS is not set +# CONFIG_FEATURE_TOP_SMP_PROCESS is not set +# CONFIG_FEATURE_TOPMEM is not set +# CONFIG_UPTIME is not set +# CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set +# CONFIG_FREE is not set +# CONFIG_FUSER is not set +CONFIG_KILL=y +CONFIG_KILLALL=y +CONFIG_KILLALL5=y +CONFIG_PGREP=y +# CONFIG_PIDOF is not set +# CONFIG_FEATURE_PIDOF_SINGLE is not set +# CONFIG_FEATURE_PIDOF_OMIT is not set +CONFIG_PKILL=y +CONFIG_PS=y +CONFIG_FEATURE_PS_WIDE=y +CONFIG_FEATURE_PS_LONG=y +# CONFIG_FEATURE_PS_TIME is not set +# CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS is not set +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +CONFIG_RENICE=y +CONFIG_BB_SYSCTL=y +CONFIG_FEATURE_SHOW_THREADS=y +CONFIG_WATCH=y *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:50:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13F5FDC4; Tue, 21 Jan 2014 00:50:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 004741E8B; Tue, 21 Jan 2014 00:50:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0o926078297; Tue, 21 Jan 2014 00:50:09 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0o9RV078295; Tue, 21 Jan 2014 00:50:09 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210050.s0L0o9RV078295@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:50:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340529 - head/devel/libphish X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:50:10 -0000 Author: bapt Date: Tue Jan 21 00:50:09 2014 New Revision: 340529 URL: http://svnweb.freebsd.org/changeset/ports/340529 QAT: https://qat.redports.org/buildarchive/r340529/ Log: Support stage Fix plist Modified: head/devel/libphish/Makefile head/devel/libphish/pkg-plist Modified: head/devel/libphish/Makefile ============================================================================== --- head/devel/libphish/Makefile Tue Jan 21 00:48:05 2014 (r340528) +++ head/devel/libphish/Makefile Tue Jan 21 00:50:09 2014 (r340529) @@ -3,15 +3,18 @@ PORTNAME= libphish PORTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://download.berlios.de/opdb/ \ http://download2.berlios.de/opdb/ \ MAINTAINER= citycat4@ngs.ru -COMMENT= A cross-platform library to interact with the Open Phishing Database +COMMENT= Cross-platform library to interact with the Open Phishing Database BUILD_DEPENDS= xmlwf:${PORTSDIR}/textproc/expat2 +OPTIONS_DEFINE= DOCS + USE_AUTOTOOLS= libtool USE_BZIP2= yes USE_LDCONFIG= yes @@ -20,11 +23,8 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -DFreeBSD LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC}/doc && ${INSTALL_DATA} `${LS}` ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR} .include Modified: head/devel/libphish/pkg-plist ============================================================================== --- head/devel/libphish/pkg-plist Tue Jan 21 00:48:05 2014 (r340528) +++ head/devel/libphish/pkg-plist Tue Jan 21 00:50:09 2014 (r340529) @@ -1,3 +1,4 @@ +lib/libphish.so lib/libphish.so.1 lib/libphish.a lib/libphish.la From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:51:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9B03EAA; Tue, 21 Jan 2014 00:51:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B57991EEB; Tue, 21 Jan 2014 00:51:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0pZYw081042; Tue, 21 Jan 2014 00:51:35 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0pZ38081040; Tue, 21 Jan 2014 00:51:35 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210051.s0L0pZ38081040@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:51:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340530 - head/devel/libphk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:51:35 -0000 Author: bapt Date: Tue Jan 21 00:51:34 2014 New Revision: 340530 URL: http://svnweb.freebsd.org/changeset/ports/340530 QAT: https://qat.redports.org/buildarchive/r340530/ Log: Support stage Modified: head/devel/libphk/Makefile head/devel/libphk/pkg-plist (contents, props changed) Modified: head/devel/libphk/Makefile ============================================================================== --- head/devel/libphk/Makefile Tue Jan 21 00:50:09 2014 (r340529) +++ head/devel/libphk/Makefile Tue Jan 21 00:51:34 2014 (r340530) @@ -14,12 +14,10 @@ EXTRACT_SUFX= .tgz MAINTAINER= perl@FreeBSD.org COMMENT= PHK's utilities functions -WRKSRC= ${WRKDIR}/Libphk +USES= uidfix -MAN3= libphk.3 phk_argv.3 phk_binheap.3 -MANCOMPRESSED= yes +WRKSRC= ${WRKDIR}/Libphk -NO_STAGE= yes post-patch: @${SED} -i -e 's!/usr/local!$${PREFIX}!g' ${WRKSRC}/Makefile Modified: head/devel/libphk/pkg-plist ============================================================================== --- head/devel/libphk/pkg-plist Tue Jan 21 00:50:09 2014 (r340529) +++ head/devel/libphk/pkg-plist Tue Jan 21 00:51:34 2014 (r340530) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/phk_argv.h include/phk_binheap.h include/phk_expr.h @@ -10,3 +9,6 @@ include/phk_modbus.h include/phk_lineup.h lib/libphk.a lib/libphk_p.a +man/man3/libphk.3.gz +man/man3/phk_argv.3.gz +man/man3/phk_binheap.3.gz From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:52:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 661B9F89; Tue, 21 Jan 2014 00:52:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5263B1EF3; Tue, 21 Jan 2014 00:52:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0qI4m081188; Tue, 21 Jan 2014 00:52:18 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0qISE081187; Tue, 21 Jan 2014 00:52:18 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210052.s0L0qISE081187@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:52:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340531 - head/devel/libpthread-stubs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:52:18 -0000 Author: bapt Date: Tue Jan 21 00:52:17 2014 New Revision: 340531 URL: http://svnweb.freebsd.org/changeset/ports/340531 QAT: https://qat.redports.org/buildarchive/r340531/ Log: Support stage Modified: head/devel/libpthread-stubs/Makefile Modified: head/devel/libpthread-stubs/Makefile ============================================================================== --- head/devel/libpthread-stubs/Makefile Tue Jan 21 00:51:34 2014 (r340530) +++ head/devel/libpthread-stubs/Makefile Tue Jan 21 00:52:17 2014 (r340531) @@ -16,5 +16,4 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:53:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0CB2F9; Tue, 21 Jan 2014 00:53:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8D3651EFC; Tue, 21 Jan 2014 00:53:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0rOgj081360; Tue, 21 Jan 2014 00:53:24 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0rOwO081359; Tue, 21 Jan 2014 00:53:24 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210053.s0L0rOwO081359@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:53:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340532 - head/devel/librelp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:53:24 -0000 Author: bapt Date: Tue Jan 21 00:53:23 2014 New Revision: 340532 URL: http://svnweb.freebsd.org/changeset/ports/340532 QAT: https://qat.redports.org/buildarchive/r340532/ Log: support stage Modified: head/devel/librelp/Makefile Modified: head/devel/librelp/Makefile ============================================================================== --- head/devel/librelp/Makefile Tue Jan 21 00:52:17 2014 (r340531) +++ head/devel/librelp/Makefile Tue Jan 21 00:53:23 2014 (r340532) @@ -22,7 +22,6 @@ PLIST_FILES= include/${PORTNAME}.h \ PORT_VERBS= relp -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e '/CFLAGS/s| -g||g' \ ${WRKSRC}/configure From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:56:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 797FF1E0; Tue, 21 Jan 2014 00:56:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6599F1F09; Tue, 21 Jan 2014 00:56:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0u1IG081780; Tue, 21 Jan 2014 00:56:01 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0u1GG081778; Tue, 21 Jan 2014 00:56:01 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210056.s0L0u1GG081778@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:56:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340533 - head/devel/libs11n X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:56:01 -0000 Author: bapt Date: Tue Jan 21 00:56:00 2014 New Revision: 340533 URL: http://svnweb.freebsd.org/changeset/ports/340533 QAT: https://qat.redports.org/buildarchive/r340533/ Log: Support stage Fix packaging as a user Modified: head/devel/libs11n/Makefile Modified: head/devel/libs11n/Makefile ============================================================================== --- head/devel/libs11n/Makefile Tue Jan 21 00:53:23 2014 (r340532) +++ head/devel/libs11n/Makefile Tue Jan 21 00:56:00 2014 (r340533) @@ -6,26 +6,26 @@ PORTVERSION= 1.2.10 CATEGORIES= devel MASTER_SITES= SF/s11n/s11n/${PORTVERSION}/ DISTNAME= ${PORTNAME}-${PORTVERSION}-nobuildfiles +EXTRACT_SUFX= .zip MAINTAINER= ports@FreeBSD.org -COMMENT= A C++ library for easily serializing a wide variety of objects +COMMENT= C++ library for easily serializing a wide variety of objects +USES= uidfix WRKSRC= ${WRKDIR}/${DISTNAME}/src -USE_ZIP= yes USE_LDCONFIG= yes -NO_STAGE= yes post-extract: @${CP} ${PATCHDIR}/Makefile.bsd ${WRKSRC}/Makefile pre-install: - ${MKDIR} ${PREFIX}/include/s11n.net - ${MKDIR} ${PREFIX}/include/s11n.net/s11n - ${MKDIR} ${PREFIX}/include/s11n.net/s11n/io - ${MKDIR} ${PREFIX}/include/s11n.net/s11n/nodeutil - ${MKDIR} ${PREFIX}/include/s11n.net/s11n/plugin - ${MKDIR} ${PREFIX}/include/s11n.net/s11n/proxy - ${MKDIR} ${PREFIX}/include/s11n.net/s11n/proxy/pod - ${MKDIR} ${PREFIX}/include/s11n.net/s11n/proxy/std + ${MKDIR} ${STAGEDIR}${PREFIX}/include/s11n.net + ${MKDIR} ${STAGEDIR}${PREFIX}/include/s11n.net/s11n + ${MKDIR} ${STAGEDIR}${PREFIX}/include/s11n.net/s11n/io + ${MKDIR} ${STAGEDIR}${PREFIX}/include/s11n.net/s11n/nodeutil + ${MKDIR} ${STAGEDIR}${PREFIX}/include/s11n.net/s11n/plugin + ${MKDIR} ${STAGEDIR}${PREFIX}/include/s11n.net/s11n/proxy + ${MKDIR} ${STAGEDIR}${PREFIX}/include/s11n.net/s11n/proxy/pod + ${MKDIR} ${STAGEDIR}${PREFIX}/include/s11n.net/s11n/proxy/std .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 00:57:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 921E82C0; Tue, 21 Jan 2014 00:57:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7DE621F11; Tue, 21 Jan 2014 00:57:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L0vEAF081977; Tue, 21 Jan 2014 00:57:14 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L0vERL081976; Tue, 21 Jan 2014 00:57:14 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210057.s0L0vERL081976@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 00:57:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340534 - head/devel/libshhmsg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 00:57:14 -0000 Author: bapt Date: Tue Jan 21 00:57:13 2014 New Revision: 340534 URL: http://svnweb.freebsd.org/changeset/ports/340534 QAT: https://qat.redports.org/buildarchive/r340534/ Log: Support stage Modified: head/devel/libshhmsg/Makefile Modified: head/devel/libshhmsg/Makefile ============================================================================== --- head/devel/libshhmsg/Makefile Tue Jan 21 00:56:00 2014 (r340533) +++ head/devel/libshhmsg/Makefile Tue Jan 21 00:57:13 2014 (r340534) @@ -10,19 +10,17 @@ DISTNAME= shhmsg-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Library for displaying messages +OPTIONS_DEFINE= DOCS + +USES= uidfix MAKEFILE= ${FILESDIR}/Makefile.lib USE_LDCONFIG= yes MAKE_ENV= WITHOUT_PROFILE=yes __MAKE_CONF=/dev/null SRCCONF=/dev/null -NO_STAGE= yes -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in CREDITS README shhmsg.txt - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 01:01:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A548417; Tue, 21 Jan 2014 01:01:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D0B891F84; Tue, 21 Jan 2014 01:01:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L11FnT084873; Tue, 21 Jan 2014 01:01:15 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L11FhA084871; Tue, 21 Jan 2014 01:01:15 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210101.s0L11FhA084871@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 01:01:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340535 - head/devel/libshhopt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 01:01:16 -0000 Author: bapt Date: Tue Jan 21 01:01:15 2014 New Revision: 340535 URL: http://svnweb.freebsd.org/changeset/ports/340535 QAT: https://qat.redports.org/buildarchive/r340535/ Log: Support stage Respect examplesdir Modified: head/devel/libshhopt/Makefile head/devel/libshhopt/pkg-plist (contents, props changed) Modified: head/devel/libshhopt/Makefile ============================================================================== --- head/devel/libshhopt/Makefile Tue Jan 21 00:57:13 2014 (r340534) +++ head/devel/libshhopt/Makefile Tue Jan 21 01:01:15 2014 (r340535) @@ -3,25 +3,26 @@ PORTNAME= libshhopt PORTVERSION= 1.1.7 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://shh.thathost.com/pub-unix/files/ DISTNAME= shhopt-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= A library for parsing command line options +COMMENT= Library for parsing command line options +OPTIONS_DEFINE= DOCS EXAMPLES + +USES= uidfix MAKEFILE= ${FILESDIR}/Makefile.lib USE_LDCONFIG= yes -NO_STAGE= yes post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/CREDITS ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${FILESDIR}/Makefile ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/example.c ${EXAMPLESDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/CREDITS ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/Makefile ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/example.c ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/devel/libshhopt/pkg-plist ============================================================================== --- head/devel/libshhopt/pkg-plist Tue Jan 21 00:57:13 2014 (r340534) +++ head/devel/libshhopt/pkg-plist Tue Jan 21 01:01:15 2014 (r340535) @@ -1,11 +1,10 @@ -@comment $FreeBSD$ include/shhopt.h lib/libshhopt.a lib/libshhopt.so lib/libshhopt.so.1 -%%PORTDOCS%%share/doc/libshhopt/CREDITS -%%PORTDOCS%%share/doc/libshhopt/README -%%PORTDOCS%%share/examples/libshhopt/Makefile -%%PORTDOCS%%share/examples/libshhopt/example.c -%%PORTDOCS%%@dirrm share/examples/libshhopt -%%PORTDOCS%%@dirrm share/doc/libshhopt +%%PORTDOCS%%%%DOCSDIR%%/CREDITS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.c +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 01:17:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9991FC98; Tue, 21 Jan 2014 01:17:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 79E0810BF; Tue, 21 Jan 2014 01:17:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L1HRL8090521; Tue, 21 Jan 2014 01:17:27 GMT (envelope-from sahil@svn.freebsd.org) Received: (from sahil@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L1HQsD090516; Tue, 21 Jan 2014 01:17:26 GMT (envelope-from sahil@svn.freebsd.org) Message-Id: <201401210117.s0L1HQsD090516@svn.freebsd.org> From: Sahil Tandon Date: Tue, 21 Jan 2014 01:17:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340536 - in head/mail/postfix-current: . 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.17 Precedence: list List-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, 21 Jan 2014 01:17:27 -0000 Author: sahil Date: Tue Jan 21 01:17:26 2014 New Revision: 340536 URL: http://svnweb.freebsd.org/changeset/ports/340536 QAT: https://qat.redports.org/buildarchive/r340536/ Log: - Update to Postfix 2.12 Snapshot 20140109 - Set INVALID_BDB_VER [1] - Adopt new LIB_DEPENDS syntax [2] - Add option to support LMDB databases [2] - Modify shell command to quiet warnings on 10+ [3] - Respect upstream Makefile's warning suppression [4] PR: [1]: ports/185446 [2]: ports/185860 [3]: ports/185857 Submitted by: [1]: Eero Hanninen [2]: Yasuhiro KIMURA [3]: adamw [4]: koobs (via email) Modified: head/mail/postfix-current/Makefile head/mail/postfix-current/distinfo head/mail/postfix-current/files/patch-makedefs head/mail/postfix-current/pkg-plist (contents, props changed) Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Tue Jan 21 01:01:15 2014 (r340535) +++ head/mail/postfix-current/Makefile Tue Jan 21 01:17:26 2014 (r340536) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -DISTVERSION= 2.11-20131001 +DISTVERSION= 2.12-20140109 PORTEPOCH= 4 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \ @@ -23,7 +23,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept CONFLICTS= courier-0.* postfix-1.* postfix-2.* postfix-base-2.* postfix2[789]-* \ - sendmail-8.* sendmail+*-8.* smail-3.* zmailer-2.* opensmtpd-[0-9]* + postfix21?-* sendmail-8.* sendmail+*-8.* smail-3.* zmailer-2.* \ + opensmtpd-[0-9]* USERS= postfix GROUPS= mail maildrop postfix @@ -33,7 +34,7 @@ USE_SUBMAKE= yes SCRIPTS_ENV+= POSTFIX_DEFAULT_MTA="${POSTFIX_DEFAULT_MTA}" OPTIONS_DEFINE= PCRE SASL2 TLS BDB MYSQL PGSQL SQLITE OPENLDAP LDAP_SASL \ - CDB NIS VDA TEST SPF INST_BASE + CDB NIS VDA TEST SPF INST_BASE LMDB PCRE_DESC= Perl Compatible Regular Expressions SASL2_DESC= Cyrus SASLv2 (Simple Auth. and Sec. Layer) DOVECOT_DESC= Dovecot 1.x SASL authentication method @@ -53,6 +54,7 @@ VDA_DESC= VDA (Virtual Delivery Agent 32 TEST_DESC= SMTP/LMTP test server and generator SPF_DESC= SPF support (via libspf2 1.2.x) INST_BASE_DESC= Install into /usr and /etc/postfix +LMDB_DESC= LMDB maps OPTIONS_RADIO= RG1 RG2 OPTIONS_RADIO_RG1= DOVECOT DOVECOT2 @@ -70,9 +72,10 @@ MAN1= postalias.1 postcat.1 postconf.1 p sendmail.1 qshape.1 MAN5= access.5 aliases.5 bounce.5 canonical.5 cidr_table.5 generic.5 \ - header_checks.5 ldap_table.5 master.5 memcache_table.5 mysql_table.5 \ - nisplus_table.5 pcre_table.5 pgsql_table.5 postconf.5 postfix-wrapper.5 \ - regexp_table.5 relocated.5 sqlite_table.5 tcp_table.5 transport.5 virtual.5 + header_checks.5 ldap_table.5 lmdb_table.5 master.5 memcache_table.5 \ + mysql_table.5 nisplus_table.5 pcre_table.5 pgsql_table.5 postconf.5 \ + postfix-wrapper.5 regexp_table.5 relocated.5 socketmap_table.5 \ + sqlite_table.5 tcp_table.5 transport.5 virtual.5 MAN8= anvil.8 bounce.8 cleanup.8 discard.8 dnsblog.8 error.8 flush.8 local.8 master.8 \ oqmgr.8 pickup.8 pipe.8 postscreen.8 proxymap.8 qmgr.8 qmqpd.8 scache.8 showq.8 \ @@ -89,7 +92,7 @@ HTML1= body_checks.5.html bounce.5.html scache.8.html tlsmgr.8.html .if !defined(BATCH) && !defined(PACKAGE_BUILDING) && exists(/etc/mail/mailer.conf) -OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || true +OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || ${ECHO_CMD} .if !empty(OLD_MAILER) IS_INTERACTIVE= yes .endif @@ -101,7 +104,8 @@ MAKEFILEFLAGS+= DEBUG= MAKEFILEFLAGS+= CC="${CC}" OPT="${CFLAGS}" -POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ +POSTFIX_CCARGS+= \$$(WARN) \ + -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ -DDEF_DAEMON_DIR=\\\"${DAEMONDIR}\\\" \ -DDEF_COMMAND_DIR=\\\"${PREFIX}/sbin\\\" \ -DDEF_SENDMAIL_PATH=\\\"${PREFIX}/sbin/sendmail\\\" \ @@ -119,7 +123,7 @@ POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ _REQUIRE= LOGIN cleanvar .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre POSTFIX_CCARGS+= -DHAS_PCRE -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lpcre .else @@ -127,7 +131,7 @@ POSTFIX_CCARGS+= -DNO_PCRE .endif .if ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 POSTFIX_CCARGS+= -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${LOCALBASE}/include -I${LOCALBASE}/include/sasl POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lsasl2 -lpam -lcrypt .endif @@ -150,7 +154,7 @@ POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -l .endif .if ${PORT_OPTIONS:MSASLKMIT} -LIB_DEPENDS+= krb5:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= libkrb5.so:${PORTSDIR}/security/krb5 POSTFIX_AUXLIBS+= -Wl,--rpath,$${KRB5_HOME:-${LOCALBASE}}/lib -lkrb5 -lcrypto -lcrypt -lcom_err .endif @@ -161,7 +165,7 @@ POSTFIX_AUXLIBS+= -L${OPENSSLLIB} ${LDFL .endif .if ${PORT_OPTIONS:MSPF} -LIB_DEPENDS+= spf2:${PORTSDIR}/mail/libspf2 +LIB_DEPENDS+= libspf2.so:${PORTSDIR}/mail/libspf2 PATCH_SITES+= ${MASTER_SITE_LOCAL} PATCH_SITE_SUBDIR= mm PATCHFILES+= postfix-2.8.0-libspf2-1.2.x-0.patch.gz @@ -175,6 +179,7 @@ PLIST_SUB+= SPF="@comment " .if ${PORT_OPTIONS:MBDB} USE_BDB= yes +INVALID_BDB_VER= 6 POSTFIX_CCARGS+= -I${BDB_INCLUDE_DIR} POSTFIX_AUXLIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME} .endif @@ -209,7 +214,7 @@ POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -ll _REQUIRE+= slapd .if ${PORT_OPTIONS:MLDAP_SASL} .if ! ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .endif POSTFIX_CCARGS+= -I${LOCALBASE}/include/sasl -DUSE_LDAP_SASL .endif @@ -250,6 +255,12 @@ USE_RC_SUBR= postfix PLIST_SUB+= BASE="@comment " .endif +.if ${PORT_OPTIONS:MLMDB} +LIB_DEPENDS+= liblmdb.so:${PORTSDIR}/databases/lmdb +POSTFIX_CCARGS+= -DHAS_LMDB -I${LOCALBASE}/include +POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -llmdb +.endif + PLIST_SUB+= PFETC=${ETCDIR} .if ${PORT_OPTIONS:MDOCS} Modified: head/mail/postfix-current/distinfo ============================================================================== --- head/mail/postfix-current/distinfo Tue Jan 21 01:01:15 2014 (r340535) +++ head/mail/postfix-current/distinfo Tue Jan 21 01:17:26 2014 (r340536) @@ -1,4 +1,4 @@ -SHA256 (postfix/postfix-2.11-20131001.tar.gz) = c678ddd6282ab0357132626cc4f583a9c539b2281ff3c8ed6fb075ad89ae1528 -SIZE (postfix/postfix-2.11-20131001.tar.gz) = 3965335 +SHA256 (postfix/postfix-2.12-20140109.tar.gz) = 38869ec99f65b28f895b8523e0907cd31794b4de622df46a506b66d3c754bb39 +SIZE (postfix/postfix-2.12-20140109.tar.gz) = 4015756 SHA256 (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = e5c38e5bc226cab109c02a4e530ab1aefd3bb06f2169f3e052bdf83d2727aacc SIZE (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = 8191 Modified: head/mail/postfix-current/files/patch-makedefs ============================================================================== --- head/mail/postfix-current/files/patch-makedefs Tue Jan 21 01:01:15 2014 (r340535) +++ head/mail/postfix-current/files/patch-makedefs Tue Jan 21 01:17:26 2014 (r340536) @@ -1,15 +1,13 @@ ---- makedefs.orig 2013-10-27 03:07:25.000000000 +0000 -+++ makedefs 2013-10-27 03:08:36.000000000 +0000 -@@ -158,7 +158,11 @@ +--- makedefs.orig 2014-01-20 23:24:30.000000000 +0000 ++++ makedefs 2014-01-20 23:25:24.000000000 +0000 +@@ -158,6 +158,10 @@ ;; FreeBSD.9*) SYSTYPE=FREEBSD9 ;; -- DragonFly.*) SYSTYPE=DRAGONFLY + FreeBSD.10*) SYSTYPE=FREEBSD10 + ;; + FreeBSD.11*) SYSTYPE=FREEBSD11 + ;; -+DragonFly.*) SYSTYPE=DRAGONFLY + DragonFly.*) SYSTYPE=DRAGONFLY ;; OpenBSD.2*) SYSTYPE=OPENBSD2 - ;; Modified: head/mail/postfix-current/pkg-plist ============================================================================== --- head/mail/postfix-current/pkg-plist Tue Jan 21 01:01:15 2014 (r340535) +++ head/mail/postfix-current/pkg-plist Tue Jan 21 01:17:26 2014 (r340536) @@ -87,6 +87,8 @@ sbin/sendmail %%PORTDOCS%%%%DOCSDIR%%/ETRN_README.html %%PORTDOCS%%%%DOCSDIR%%/FILTER_README %%PORTDOCS%%%%DOCSDIR%%/FILTER_README.html +%%PORTDOCS%%%%DOCSDIR%%/FORWARD_SECRECY_README +%%PORTDOCS%%%%DOCSDIR%%/FORWARD_SECRECY_README.html %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/INSTALL.html %%PORTDOCS%%%%DOCSDIR%%/IPV6_README @@ -95,6 +97,8 @@ sbin/sendmail %%PORTDOCS%%%%DOCSDIR%%/LDAP_README.html %%PORTDOCS%%%%DOCSDIR%%/LINUX_README %%PORTDOCS%%%%DOCSDIR%%/LINUX_README.html +%%PORTDOCS%%%%DOCSDIR%%/LMDB_README +%%PORTDOCS%%%%DOCSDIR%%/LMDB_README.html %%PORTDOCS%%%%DOCSDIR%%/LOCAL_RECIPIENT_README %%PORTDOCS%%%%DOCSDIR%%/LOCAL_RECIPIENT_README.html %%PORTDOCS%%%%DOCSDIR%%/MAILDROP_README From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 01:17:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8EF9D73; Tue, 21 Jan 2014 01:17:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AB10B10C1; Tue, 21 Jan 2014 01:17:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L1HagO090677; Tue, 21 Jan 2014 01:17:36 GMT (envelope-from sahil@svn.freebsd.org) Received: (from sahil@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L1HZbC090671; Tue, 21 Jan 2014 01:17:35 GMT (envelope-from sahil@svn.freebsd.org) Message-Id: <201401210117.s0L1HZbC090671@svn.freebsd.org> From: Sahil Tandon Date: Tue, 21 Jan 2014 01:17:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340537 - in head/mail: . postfix postfix210 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 01:17:37 -0000 Author: sahil Date: Tue Jan 21 01:17:35 2014 New Revision: 340537 URL: http://svnweb.freebsd.org/changeset/ports/340537 QAT: https://qat.redports.org/buildarchive/r340537/ Log: Repo-copy mail/postfix -> mail/postfix210, and update both ports to the latest version. Also: - Set INVALID_BDB_VER [1] - Adopt new LIB_DEPENDS syntax [2] - Add option to support LMDB databases [2] - Modify shell command to quiet warnings on 10+ [3] - Respect upstream Makefile's warning suppression [4] PR: [1]: ports/185446 [2]: ports/185860 [3]: ports/185857 Submitted by: [1]: Eero Hanninen [2]: Yasuhiro KIMURA [3]: adamw [4]: koobs (via email) Added: head/mail/postfix210/ - copied from r340405, head/mail/postfix/ Modified: head/mail/Makefile head/mail/postfix/Makefile head/mail/postfix/distinfo head/mail/postfix/pkg-plist (contents, props changed) head/mail/postfix210/Makefile head/mail/postfix210/distinfo Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Tue Jan 21 01:17:26 2014 (r340536) +++ head/mail/Makefile Tue Jan 21 01:17:35 2014 (r340537) @@ -519,6 +519,7 @@ SUBDIR += postfix-policyd-spf-python SUBDIR += postfix-policyd-weight SUBDIR += postfix-postfwd + SUBDIR += postfix210 SUBDIR += postfix27 SUBDIR += postfix28 SUBDIR += postfix29 Modified: head/mail/postfix/Makefile ============================================================================== --- head/mail/postfix/Makefile Tue Jan 21 01:17:26 2014 (r340536) +++ head/mail/postfix/Makefile Tue Jan 21 01:17:35 2014 (r340537) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -PORTVERSION= 2.10.2 +PORTVERSION= 2.11.0 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \ @@ -22,7 +22,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept VDAVERSION= 2.10.0 -CONFLICTS= courier-0.* postfix-1.* postfix2?-* \ +CONFLICTS= courier-0.* postfix-1.* postfix2?-* postfix21?-* \ postfix-current-2.* postfix-current-base-2.* sendmail-8.* \ sendmail+*-8.* smail-3.* zmailer-2.* opensmtpd-[0-9]* @@ -34,7 +34,7 @@ USE_PERL5= build SCRIPTS_ENV+= POSTFIX_DEFAULT_MTA="${POSTFIX_DEFAULT_MTA}" OPTIONS_DEFINE= PCRE SASL2 TLS BDB MYSQL PGSQL SQLITE OPENLDAP LDAP_SASL \ - CDB NIS VDA TEST SPF INST_BASE + CDB NIS VDA TEST SPF INST_BASE LMDB PCRE_DESC= Perl Compatible Regular Expressions SASL2_DESC= Cyrus SASLv2 (Simple Auth. and Sec. Layer) DOVECOT_DESC= Dovecot 1.x SASL authentication method @@ -54,6 +54,7 @@ VDA_DESC= VDA (Virtual Delivery Agent 32 TEST_DESC= SMTP/LMTP test server and generator SPF_DESC= SPF support (via libspf2 1.2.x) INST_BASE_DESC= Install into /usr and /etc/postfix +LMDB_DESC= LMDB maps OPTIONS_RADIO= RG1 RG2 OPTIONS_RADIO_RG1= DOVECOT DOVECOT2 @@ -71,9 +72,10 @@ MAN1= postalias.1 postcat.1 postconf.1 p sendmail.1 qshape.1 MAN5= access.5 aliases.5 bounce.5 canonical.5 cidr_table.5 generic.5 \ - header_checks.5 ldap_table.5 master.5 memcache_table.5 mysql_table.5 \ - nisplus_table.5 pcre_table.5 pgsql_table.5 postconf.5 postfix-wrapper.5 \ - regexp_table.5 relocated.5 sqlite_table.5 tcp_table.5 transport.5 virtual.5 + header_checks.5 ldap_table.5 lmdb_table.5 master.5 memcache_table.5 \ + mysql_table.5 nisplus_table.5 pcre_table.5 pgsql_table.5 postconf.5 \ + postfix-wrapper.5 regexp_table.5 relocated.5 socketmap_table.5 \ + sqlite_table.5 tcp_table.5 transport.5 virtual.5 MAN8= anvil.8 bounce.8 cleanup.8 discard.8 dnsblog.8 error.8 flush.8 local.8 master.8 \ oqmgr.8 pickup.8 pipe.8 postscreen.8 proxymap.8 qmgr.8 qmqpd.8 scache.8 showq.8 \ @@ -90,7 +92,7 @@ HTML1= body_checks.5.html bounce.5.html scache.8.html tlsmgr.8.html .if !defined(BATCH) && !defined(PACKAGE_BUILDING) && exists(/etc/mail/mailer.conf) -OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || true +OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || ${ECHO_CMD} .if !empty(OLD_MAILER) IS_INTERACTIVE= yes .endif @@ -106,7 +108,8 @@ MAKEFILEFLAGS+= DEBUG= MAKEFILEFLAGS+= CC="${CC}" OPT="${CFLAGS}" -POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ +POSTFIX_CCARGS+= \$$(WARN) \ + -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ -DDEF_DAEMON_DIR=\\\"${DAEMONDIR}\\\" \ -DDEF_COMMAND_DIR=\\\"${PREFIX}/sbin\\\" \ -DDEF_SENDMAIL_PATH=\\\"${PREFIX}/sbin/sendmail\\\" \ @@ -124,7 +127,7 @@ POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ _REQUIRE= LOGIN cleanvar .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre POSTFIX_CCARGS+= -DHAS_PCRE -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lpcre .else @@ -132,7 +135,7 @@ POSTFIX_CCARGS+= -DNO_PCRE .endif .if ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 POSTFIX_CCARGS+= -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${LOCALBASE}/include -I${LOCALBASE}/include/sasl POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lsasl2 -lpam -lcrypt .endif @@ -152,7 +155,7 @@ POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -l .endif .if ${PORT_OPTIONS:MSASLKMIT} -LIB_DEPENDS+= krb5:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= libkrb5.so:${PORTSDIR}/security/krb5 POSTFIX_AUXLIBS+= -Wl,--rpath,$${KRB5_HOME:-${LOCALBASE}}/lib -lkrb5 -lcrypto -lcrypt -lcom_err .endif @@ -163,7 +166,7 @@ POSTFIX_AUXLIBS+= -L${OPENSSLLIB} ${LDFL .endif .if ${PORT_OPTIONS:MSPF} -LIB_DEPENDS+= spf2:${PORTSDIR}/mail/libspf2 +LIB_DEPENDS+= libspf2.so:${PORTSDIR}/mail/libspf2 PATCH_SITES+= ${MASTER_SITE_LOCAL} PATCH_SITE_SUBDIR= mm PATCHFILES+= postfix-2.8.0-libspf2-1.2.x-0.patch.gz @@ -177,6 +180,7 @@ PLIST_SUB+= SPF="@comment " .if ${PORT_OPTIONS:MBDB} USE_BDB= yes +INVALID_BDB_VER= 6 POSTFIX_CCARGS+= -I${BDB_INCLUDE_DIR} POSTFIX_AUXLIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME} .endif @@ -211,7 +215,7 @@ POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -ll _REQUIRE+= slapd .if ${PORT_OPTIONS:MLDAP_SASL} .if ! ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .endif POSTFIX_CCARGS+= -I${LOCALBASE}/include/sasl -DUSE_LDAP_SASL .endif @@ -257,6 +261,12 @@ USE_RC_SUBR= postfix PLIST_SUB+= BASE="@comment " .endif +.if ${PORT_OPTIONS:MLMDB} +LIB_DEPENDS+= liblmdb.so:${PORTSDIR}/databases/lmdb +POSTFIX_CCARGS+= -DHAS_LMDB -I${LOCALBASE}/include +POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -llmdb +.endif + PLIST_SUB+= PFETC=${ETCDIR} .if ${PORT_OPTIONS:MDOCS} Modified: head/mail/postfix/distinfo ============================================================================== --- head/mail/postfix/distinfo Tue Jan 21 01:17:26 2014 (r340536) +++ head/mail/postfix/distinfo Tue Jan 21 01:17:35 2014 (r340537) @@ -1,5 +1,5 @@ -SHA256 (postfix/postfix-2.10.2.tar.gz) = f1a735a5a9ffeac8fca59046c437c3b76e7f923fb4249db2a55b2bff0306ddd4 -SIZE (postfix/postfix-2.10.2.tar.gz) = 3828326 +SHA256 (postfix/postfix-2.11.0.tar.gz) = ca1d9d32d5662678dc4e3f700cce82f5d7bed6a614852b17b1a5166936330c38 +SIZE (postfix/postfix-2.11.0.tar.gz) = 4034741 SHA256 (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = e5c38e5bc226cab109c02a4e530ab1aefd3bb06f2169f3e052bdf83d2727aacc SIZE (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = 8191 SHA256 (postfix/postfix-vda-v13-2.10.0.patch) = 6208021eb0b37ac6482e334e538ed5700cc22c4d4dd66ed9e975ae5f20bf935f Modified: head/mail/postfix/pkg-plist ============================================================================== --- head/mail/postfix/pkg-plist Tue Jan 21 01:17:26 2014 (r340536) +++ head/mail/postfix/pkg-plist Tue Jan 21 01:17:35 2014 (r340537) @@ -88,6 +88,8 @@ sbin/sendmail %%PORTDOCS%%%%DOCSDIR%%/ETRN_README.html %%PORTDOCS%%%%DOCSDIR%%/FILTER_README %%PORTDOCS%%%%DOCSDIR%%/FILTER_README.html +%%PORTDOCS%%%%DOCSDIR%%/FORWARD_SECRECY_README +%%PORTDOCS%%%%DOCSDIR%%/FORWARD_SECRECY_README.html %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/INSTALL.html %%PORTDOCS%%%%DOCSDIR%%/IPV6_README @@ -98,6 +100,8 @@ sbin/sendmail %%PORTDOCS%%%%DOCSDIR%%/LDAP_README.html %%PORTDOCS%%%%DOCSDIR%%/LINUX_README %%PORTDOCS%%%%DOCSDIR%%/LINUX_README.html +%%PORTDOCS%%%%DOCSDIR%%/LMDB_README +%%PORTDOCS%%%%DOCSDIR%%/LMDB_README.html %%PORTDOCS%%%%DOCSDIR%%/LOCAL_RECIPIENT_README %%PORTDOCS%%%%DOCSDIR%%/LOCAL_RECIPIENT_README.html %%PORTDOCS%%%%DOCSDIR%%/MAILDROP_README Modified: head/mail/postfix210/Makefile ============================================================================== --- head/mail/postfix/Makefile Mon Jan 20 15:19:20 2014 (r340405) +++ head/mail/postfix210/Makefile Tue Jan 21 01:17:35 2014 (r340537) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -PORTVERSION= 2.10.2 +PORTVERSION= 2.10.3 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \ @@ -11,6 +11,7 @@ MASTER_SITES= ftp://ftp.porcupine.org/mi ftp://ftp.samurai.com/pub/postfix/official/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/mail/postfix/official/&,} MASTER_SITE_SUBDIR= . old related/postfix +PKGNAMESUFFIX= 210 DIST_SUBDIR= ${PORTNAME} MAINTAINER= sahil@FreeBSD.org @@ -22,9 +23,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept VDAVERSION= 2.10.0 -CONFLICTS= courier-0.* postfix-1.* postfix2?-* \ - postfix-current-2.* postfix-current-base-2.* sendmail-8.* \ - sendmail+*-8.* smail-3.* zmailer-2.* opensmtpd-[0-9]* +CONFLICTS= courier-0.* postfix-1.* postfix2[789]-* \ + postfix-2.11.* postfix-base-2.11.* postfix-current-2.* \ + postfix-current-base-2.* sendmail-8.* sendmail+*-8.* \ + smail-3.* zmailer-2.* opensmtpd-[0-9]* USERS= postfix GROUPS= mail maildrop postfix @@ -90,7 +92,7 @@ HTML1= body_checks.5.html bounce.5.html scache.8.html tlsmgr.8.html .if !defined(BATCH) && !defined(PACKAGE_BUILDING) && exists(/etc/mail/mailer.conf) -OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || true +OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || ${ECHO_CMD} .if !empty(OLD_MAILER) IS_INTERACTIVE= yes .endif @@ -106,7 +108,8 @@ MAKEFILEFLAGS+= DEBUG= MAKEFILEFLAGS+= CC="${CC}" OPT="${CFLAGS}" -POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ +POSTFIX_CCARGS+= \$$(WARN) \ + -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ -DDEF_DAEMON_DIR=\\\"${DAEMONDIR}\\\" \ -DDEF_COMMAND_DIR=\\\"${PREFIX}/sbin\\\" \ -DDEF_SENDMAIL_PATH=\\\"${PREFIX}/sbin/sendmail\\\" \ @@ -124,7 +127,7 @@ POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ _REQUIRE= LOGIN cleanvar .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre POSTFIX_CCARGS+= -DHAS_PCRE -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lpcre .else @@ -132,7 +135,7 @@ POSTFIX_CCARGS+= -DNO_PCRE .endif .if ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 POSTFIX_CCARGS+= -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${LOCALBASE}/include -I${LOCALBASE}/include/sasl POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lsasl2 -lpam -lcrypt .endif @@ -152,7 +155,7 @@ POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -l .endif .if ${PORT_OPTIONS:MSASLKMIT} -LIB_DEPENDS+= krb5:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= libkrb5.so:${PORTSDIR}/security/krb5 POSTFIX_AUXLIBS+= -Wl,--rpath,$${KRB5_HOME:-${LOCALBASE}}/lib -lkrb5 -lcrypto -lcrypt -lcom_err .endif @@ -163,7 +166,7 @@ POSTFIX_AUXLIBS+= -L${OPENSSLLIB} ${LDFL .endif .if ${PORT_OPTIONS:MSPF} -LIB_DEPENDS+= spf2:${PORTSDIR}/mail/libspf2 +LIB_DEPENDS+= libspf2.so:${PORTSDIR}/mail/libspf2 PATCH_SITES+= ${MASTER_SITE_LOCAL} PATCH_SITE_SUBDIR= mm PATCHFILES+= postfix-2.8.0-libspf2-1.2.x-0.patch.gz @@ -177,6 +180,7 @@ PLIST_SUB+= SPF="@comment " .if ${PORT_OPTIONS:MBDB} USE_BDB= yes +INVALID_BDB_VER= 6 POSTFIX_CCARGS+= -I${BDB_INCLUDE_DIR} POSTFIX_AUXLIBS+= -L${BDB_LIB_DIR} -l${BDB_LIB_NAME} .endif @@ -211,7 +215,7 @@ POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -ll _REQUIRE+= slapd .if ${PORT_OPTIONS:MLDAP_SASL} .if ! ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .endif POSTFIX_CCARGS+= -I${LOCALBASE}/include/sasl -DUSE_LDAP_SASL .endif @@ -247,7 +251,7 @@ PLIST_SUB+= TEST="@comment " .endif .if ${PORT_OPTIONS:MINST_BASE} -PKGNAMESUFFIX= -base +PKGNAMESUFFIX= 210base PREFIX= /usr ETCDIR= /etc/postfix USE_RCORDER= postfix Modified: head/mail/postfix210/distinfo ============================================================================== --- head/mail/postfix/distinfo Mon Jan 20 15:19:20 2014 (r340405) +++ head/mail/postfix210/distinfo Tue Jan 21 01:17:35 2014 (r340537) @@ -1,5 +1,5 @@ -SHA256 (postfix/postfix-2.10.2.tar.gz) = f1a735a5a9ffeac8fca59046c437c3b76e7f923fb4249db2a55b2bff0306ddd4 -SIZE (postfix/postfix-2.10.2.tar.gz) = 3828326 +SHA256 (postfix/postfix-2.10.3.tar.gz) = 7815d8ad88af76e0962f18bf1e80b1aa5a0d096a00dac1d313fbab3e824b3f5b +SIZE (postfix/postfix-2.10.3.tar.gz) = 3828808 SHA256 (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = e5c38e5bc226cab109c02a4e530ab1aefd3bb06f2169f3e052bdf83d2727aacc SIZE (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = 8191 SHA256 (postfix/postfix-vda-v13-2.10.0.patch) = 6208021eb0b37ac6482e334e538ed5700cc22c4d4dd66ed9e975ae5f20bf935f From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 01:17:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75670E44; Tue, 21 Jan 2014 01:17:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 62D9910C4; Tue, 21 Jan 2014 01:17:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L1HicD090766; Tue, 21 Jan 2014 01:17:44 GMT (envelope-from sahil@svn.freebsd.org) Received: (from sahil@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L1HiYO090764; Tue, 21 Jan 2014 01:17:44 GMT (envelope-from sahil@svn.freebsd.org) Message-Id: <201401210117.s0L1HiYO090764@svn.freebsd.org> From: Sahil Tandon Date: Tue, 21 Jan 2014 01:17:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340538 - head/mail/postfix27 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 01:17:44 -0000 Author: sahil Date: Tue Jan 21 01:17:43 2014 New Revision: 340538 URL: http://svnweb.freebsd.org/changeset/ports/340538 QAT: https://qat.redports.org/buildarchive/r340538/ Log: - Update to 2.7.16 - Mark DEPRECATED [1] - Adopt new LIB_DEPENDS syntax [1] - Pet portlint(1) on PKGNAMESUFFIX placement [1] - Respect upstream Makefile's warning suppression [2] PR: [1]: ports/185860 Submitted by: [1]: Yasuhiro KIMURA [2]: koobs (via email) Modified: head/mail/postfix27/Makefile head/mail/postfix27/distinfo Modified: head/mail/postfix27/Makefile ============================================================================== --- head/mail/postfix27/Makefile Tue Jan 21 01:17:35 2014 (r340537) +++ head/mail/postfix27/Makefile Tue Jan 21 01:17:43 2014 (r340538) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -PORTVERSION= 2.7.15 +PORTVERSION= 2.7.16 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \ @@ -11,8 +11,8 @@ MASTER_SITES= ftp://ftp.porcupine.org/mi ftp://ftp.samurai.com/pub/postfix/official/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/mail/postfix/official/&,} MASTER_SITE_SUBDIR= . old related/postfix -DIST_SUBDIR= ${PORTNAME} PKGNAMESUFFIX= 27 +DIST_SUBDIR= ${PORTNAME} MAINTAINER= sahil@FreeBSD.org COMMENT= Secure alternative to widely-used Sendmail @@ -22,9 +22,12 @@ LICENSE_NAME= IBM PUBLIC LICENSE VERSION LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +DEPRECATED= No longer supported by upstream +EXPIRATION_DATE= 2014-07-30 + VDAVERSION= 2.7.13 -CONFLICTS= courier-0.* postfix-1.* postfix2[89]-* \ - postfix-2.10.* postfix-base-2.10.* postfix-current-2.* \ +CONFLICTS= courier-0.* postfix-1.* postfix2[89]-* postfix21?-* \ + postfix-2.* postfix-base-2.* postfix-current-2.* \ postfix-current-base-2.* sendmail-8.* sendmail+*-8.* \ smail-3.* zmailer-2.* opensmtpd-[0-9]* @@ -98,7 +101,8 @@ MAKEFILEFLAGS+= DEBUG= MAKEFILEFLAGS+= CC="${CC}" OPT="${CFLAGS}" -POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ +POSTFIX_CCARGS+= \$$(WARN) \ + -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ -DDEF_DAEMON_DIR=\\\"${DAEMONDIR}\\\" \ -DDEF_COMMAND_DIR=\\\"${PREFIX}/sbin\\\" \ -DDEF_SENDMAIL_PATH=\\\"${PREFIX}/sbin/sendmail\\\" \ @@ -116,7 +120,7 @@ POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ _REQUIRE= LOGIN cleanvar .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre POSTFIX_CCARGS+= -DHAS_PCRE -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lpcre .else @@ -124,7 +128,7 @@ POSTFIX_CCARGS+= -DNO_PCRE .endif .if ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 POSTFIX_CCARGS+= -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${LOCALBASE}/include -I${LOCALBASE}/include/sasl POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lsasl2 -lpam -lcrypt .endif @@ -144,7 +148,7 @@ POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -l .endif .if ${PORT_OPTIONS:MSASLKMIT} -LIB_DEPENDS+= krb5:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= libkrb5.so:${PORTSDIR}/security/krb5 POSTFIX_AUXLIBS+= -Wl,--rpath,$${KRB5_HOME:-${LOCALBASE}}/lib -lkrb5 -lcrypto -lcrypt -lcom_err .endif @@ -155,7 +159,7 @@ POSTFIX_AUXLIBS+= -L${OPENSSLLIB} ${LDFL .endif .if ${PORT_OPTIONS:MSPF} -LIB_DEPENDS+= spf2:${PORTSDIR}/mail/libspf2 +LIB_DEPENDS+= libspf2.so:${PORTSDIR}/mail/libspf2 PATCH_SITES+= ${MASTER_SITE_LOCAL} PATCH_SITE_SUBDIR= mm PATCHFILES+= postfix-2.7.1-libspf2-1.2.x-4.patch.gz Modified: head/mail/postfix27/distinfo ============================================================================== --- head/mail/postfix27/distinfo Tue Jan 21 01:17:35 2014 (r340537) +++ head/mail/postfix27/distinfo Tue Jan 21 01:17:43 2014 (r340538) @@ -1,5 +1,5 @@ -SHA256 (postfix/postfix-2.7.15.tar.gz) = d58acafd1b14270f0f071be7b89971e7b6a9a57243db9c008cf491c6e687a1d1 -SIZE (postfix/postfix-2.7.15.tar.gz) = 3421435 +SHA256 (postfix/postfix-2.7.16.tar.gz) = ce96e415cbf699bde5cf699ac8d4242c880a68233a7b809dad6a5896c3bf94bb +SIZE (postfix/postfix-2.7.16.tar.gz) = 3421793 SHA256 (postfix/postfix-2.7.1-libspf2-1.2.x-4.patch.gz) = b67efb1ffbcae91f13bf3ed90a5181d4b5bc86ebe15753eaf9db8b2278f5bb16 SIZE (postfix/postfix-2.7.1-libspf2-1.2.x-4.patch.gz) = 8186 SHA256 (postfix/postfix-vda-v10-2.7.13.patch) = aaefb45cec8744c9cd211c87ef5fa779519f459a986d354e11fe1c9a05f1c624 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 01:17:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A47F6F1F; Tue, 21 Jan 2014 01:17:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 86D8210C8; Tue, 21 Jan 2014 01:17:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L1Hq0a090862; Tue, 21 Jan 2014 01:17:52 GMT (envelope-from sahil@svn.freebsd.org) Received: (from sahil@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L1Hquv090860; Tue, 21 Jan 2014 01:17:52 GMT (envelope-from sahil@svn.freebsd.org) Message-Id: <201401210117.s0L1Hquv090860@svn.freebsd.org> From: Sahil Tandon Date: Tue, 21 Jan 2014 01:17:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340539 - head/mail/postfix28 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 01:17:52 -0000 Author: sahil Date: Tue Jan 21 01:17:51 2014 New Revision: 340539 URL: http://svnweb.freebsd.org/changeset/ports/340539 QAT: https://qat.redports.org/buildarchive/r340539/ Log: - Update to 2.8.17 - Adopt new LIB_DEPENDS syntax [1] - Pet portlint(1) on PKGNAMESUFFIX placement [1] - Modify shell command to quiet warnings on 10+ [2] - Respect upstream Makefile's warning suppression [3] PR: [1]: ports/185860 [2]: ports/185857 Submitted by: [1]: Yasuhiro KIMURA [2]: adamw [3]: koobs (via email) Modified: head/mail/postfix28/Makefile head/mail/postfix28/distinfo Modified: head/mail/postfix28/Makefile ============================================================================== --- head/mail/postfix28/Makefile Tue Jan 21 01:17:43 2014 (r340538) +++ head/mail/postfix28/Makefile Tue Jan 21 01:17:51 2014 (r340539) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -PORTVERSION= 2.8.16 +PORTVERSION= 2.8.17 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \ @@ -11,8 +11,8 @@ MASTER_SITES= ftp://ftp.porcupine.org/mi ftp://ftp.samurai.com/pub/postfix/official/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/mail/postfix/official/&,} MASTER_SITE_SUBDIR= . old related/postfix -DIST_SUBDIR= ${PORTNAME} PKGNAMESUFFIX= 28 +DIST_SUBDIR= ${PORTNAME} MAINTAINER= sahil@FreeBSD.org COMMENT= Secure alternative to widely-used Sendmail @@ -23,8 +23,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept VDAVERSION= 2.8.14 -CONFLICTS= courier-0.* postfix-1.* postfix2[79]-* \ - postfix-2.10.* postfix-base-2.10.* postfix-current-2.* \ +CONFLICTS= courier-0.* postfix-1.* postfix2[79]-* postfix21?-* \ + postfix-2.* postfix-base-2.* postfix-current-2.* \ postfix-current-base-2.* sendmail-8.* sendmail+*-8.* \ smail-3.* zmailer-2.* opensmtpd-[0-9]* @@ -92,7 +92,7 @@ HTML1= body_checks.5.html bounce.5.html scache.8.html tlsmgr.8.html .if !defined(BATCH) && !defined(PACKAGE_BUILDING) && exists(/etc/mail/mailer.conf) -OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || true +OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || ${ECHO_CMD} .if !empty(OLD_MAILER) IS_INTERACTIVE= yes .endif @@ -108,7 +108,8 @@ MAKEFILEFLAGS+= DEBUG= MAKEFILEFLAGS+= CC="${CC}" OPT="${CFLAGS}" -POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ +POSTFIX_CCARGS+= \$$(WARN) \ + -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ -DDEF_DAEMON_DIR=\\\"${DAEMONDIR}\\\" \ -DDEF_COMMAND_DIR=\\\"${PREFIX}/sbin\\\" \ -DDEF_SENDMAIL_PATH=\\\"${PREFIX}/sbin/sendmail\\\" \ @@ -126,7 +127,7 @@ POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ _REQUIRE= LOGIN cleanvar .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre POSTFIX_CCARGS+= -DHAS_PCRE -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lpcre .else @@ -134,7 +135,7 @@ POSTFIX_CCARGS+= -DNO_PCRE .endif .if ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 POSTFIX_CCARGS+= -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${LOCALBASE}/include -I${LOCALBASE}/include/sasl POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lsasl2 -lpam -lcrypt .endif @@ -154,7 +155,7 @@ POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -l .endif .if ${PORT_OPTIONS:MSASLKMIT} -LIB_DEPENDS+= krb5:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= libkrb5.so:${PORTSDIR}/security/krb5 POSTFIX_AUXLIBS+= -Wl,--rpath,$${KRB5_HOME:-${LOCALBASE}}/lib -lkrb5 -lcrypto -lcrypt -lcom_err .endif @@ -165,7 +166,7 @@ POSTFIX_AUXLIBS+= -L${OPENSSLLIB} ${LDFL .endif .if ${PORT_OPTIONS:MSPF} -LIB_DEPENDS+= spf2:${PORTSDIR}/mail/libspf2 +LIB_DEPENDS+= libspf2.so:${PORTSDIR}/mail/libspf2 PATCH_SITES+= ${MASTER_SITE_LOCAL} PATCH_SITE_SUBDIR= mm PATCHFILES+= postfix-2.8.0-libspf2-1.2.x-0.patch.gz @@ -213,7 +214,7 @@ POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -ll _REQUIRE+= slapd .if ${PORT_OPTIONS:MLDAP_SASL} .if ! ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .endif POSTFIX_CCARGS+= -I${LOCALBASE}/include/sasl -DUSE_LDAP_SASL .endif Modified: head/mail/postfix28/distinfo ============================================================================== --- head/mail/postfix28/distinfo Tue Jan 21 01:17:43 2014 (r340538) +++ head/mail/postfix28/distinfo Tue Jan 21 01:17:51 2014 (r340539) @@ -1,5 +1,5 @@ -SHA256 (postfix/postfix-2.8.16.tar.gz) = 1a8d98ada1aec92a6b4901b2e9e448fe02d55dab3ca50543cd1fb118fd339b49 -SIZE (postfix/postfix-2.8.16.tar.gz) = 3643279 +SHA256 (postfix/postfix-2.8.17.tar.gz) = 54342cabf6a731c931c8950ab8fefa189b4607e3bce517f294d5bdd3e6fd646a +SIZE (postfix/postfix-2.8.17.tar.gz) = 3643766 SHA256 (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = e5c38e5bc226cab109c02a4e530ab1aefd3bb06f2169f3e052bdf83d2727aacc SIZE (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = 8191 SHA256 (postfix/postfix-vda-v10-2.8.14.patch) = 04ee708e9532ae7d04460992927e47de7f1a7ea29b8d91ae5f87725653bfae43 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 01:18:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81CCEFE0; Tue, 21 Jan 2014 01:18:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 63A0B10CC; Tue, 21 Jan 2014 01:18:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L1I0tp090965; Tue, 21 Jan 2014 01:18:00 GMT (envelope-from sahil@svn.freebsd.org) Received: (from sahil@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L1I0oQ090963; Tue, 21 Jan 2014 01:18:00 GMT (envelope-from sahil@svn.freebsd.org) Message-Id: <201401210118.s0L1I0oQ090963@svn.freebsd.org> From: Sahil Tandon Date: Tue, 21 Jan 2014 01:18:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340540 - head/mail/postfix29 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 01:18:00 -0000 Author: sahil Date: Tue Jan 21 01:17:59 2014 New Revision: 340540 URL: http://svnweb.freebsd.org/changeset/ports/340540 QAT: https://qat.redports.org/buildarchive/r340540/ Log: - Update to 2.9.9 - Adopt new LIB_DEPENDS syntax [1] - Pet portlint(1) on PKGNAMESUFFIX placement [1] - Modify shell command to quiet warnings on 10+ [2] - Respect upstream Makefile's warning suppression [3] PR: [1]: ports/185860 [2]: ports/185857 Submitted by: [1]: Yasuhiro KIMURA [2]: adamw [3]: koobs (via email) Modified: head/mail/postfix29/Makefile head/mail/postfix29/distinfo Modified: head/mail/postfix29/Makefile ============================================================================== --- head/mail/postfix29/Makefile Tue Jan 21 01:17:51 2014 (r340539) +++ head/mail/postfix29/Makefile Tue Jan 21 01:17:59 2014 (r340540) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -PORTVERSION= 2.9.8 +PORTVERSION= 2.9.9 PORTEPOCH= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ \ @@ -11,8 +11,8 @@ MASTER_SITES= ftp://ftp.porcupine.org/mi ftp://ftp.samurai.com/pub/postfix/official/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/mail/postfix/official/&,} MASTER_SITE_SUBDIR= . old related/postfix -DIST_SUBDIR= ${PORTNAME} PKGNAMESUFFIX= 29 +DIST_SUBDIR= ${PORTNAME} MAINTAINER= sahil@FreeBSD.org COMMENT= Secure alternative to widely-used Sendmail @@ -23,8 +23,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept VDAVERSION= 2.9.6 -CONFLICTS= courier-0.* postfix-1.* postfix2[78]-* \ - postfix-2.10.* postfix-base-2.10.* postfix-current-2.* \ +CONFLICTS= courier-0.* postfix-1.* postfix2[78]-* postfix21?-* \ + postfix-2.* postfix-base-2.* postfix-current-2.* \ postfix-current-base-2.* sendmail-8.* sendmail+*-8.* \ smail-3.* zmailer-2.* opensmtpd-[0-9]* @@ -92,7 +92,7 @@ HTML1= body_checks.5.html bounce.5.html scache.8.html tlsmgr.8.html .if !defined(BATCH) && !defined(PACKAGE_BUILDING) && exists(/etc/mail/mailer.conf) -OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || true +OLD_MAILER!= ${GREP} -m 1 '^purgestat' /etc/mail/mailer.conf || ${ECHO_CMD} .if !empty(OLD_MAILER) IS_INTERACTIVE= yes .endif @@ -108,7 +108,8 @@ MAKEFILEFLAGS+= DEBUG= MAKEFILEFLAGS+= CC="${CC}" OPT="${CFLAGS}" -POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ +POSTFIX_CCARGS+= \$$(WARN) \ + -DDEF_CONFIG_DIR=\\\"${ETCDIR}\\\" \ -DDEF_DAEMON_DIR=\\\"${DAEMONDIR}\\\" \ -DDEF_COMMAND_DIR=\\\"${PREFIX}/sbin\\\" \ -DDEF_SENDMAIL_PATH=\\\"${PREFIX}/sbin/sendmail\\\" \ @@ -126,7 +127,7 @@ POSTFIX_CCARGS+= -DDEF_CONFIG_DIR=\\\"${ _REQUIRE= LOGIN cleanvar .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre POSTFIX_CCARGS+= -DHAS_PCRE -I${LOCALBASE}/include POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lpcre .else @@ -134,7 +135,7 @@ POSTFIX_CCARGS+= -DNO_PCRE .endif .if ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 POSTFIX_CCARGS+= -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${LOCALBASE}/include -I${LOCALBASE}/include/sasl POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -lsasl2 -lpam -lcrypt .endif @@ -154,7 +155,7 @@ POSTFIX_AUXLIBS+= -lkrb5 ${KRB5_EXTR} -l .endif .if ${PORT_OPTIONS:MSASLKMIT} -LIB_DEPENDS+= krb5:${PORTSDIR}/security/krb5 +LIB_DEPENDS+= libkrb5.so:${PORTSDIR}/security/krb5 POSTFIX_AUXLIBS+= -Wl,--rpath,$${KRB5_HOME:-${LOCALBASE}}/lib -lkrb5 -lcrypto -lcrypt -lcom_err .endif @@ -165,7 +166,7 @@ POSTFIX_AUXLIBS+= -L${OPENSSLLIB} ${LDFL .endif .if ${PORT_OPTIONS:MSPF} -LIB_DEPENDS+= spf2:${PORTSDIR}/mail/libspf2 +LIB_DEPENDS+= libspf2.so:${PORTSDIR}/mail/libspf2 PATCH_SITES+= ${MASTER_SITE_LOCAL} PATCH_SITE_SUBDIR= mm PATCHFILES+= postfix-2.8.0-libspf2-1.2.x-0.patch.gz @@ -213,7 +214,7 @@ POSTFIX_AUXLIBS+= -L${LOCALBASE}/lib -ll _REQUIRE+= slapd .if ${PORT_OPTIONS:MLDAP_SASL} .if ! ${PORT_OPTIONS:MSASL2} -LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +LIB_DEPENDS+= libsasl2.so:${PORTSDIR}/security/cyrus-sasl2 .endif POSTFIX_CCARGS+= -I${LOCALBASE}/include/sasl -DUSE_LDAP_SASL .endif Modified: head/mail/postfix29/distinfo ============================================================================== --- head/mail/postfix29/distinfo Tue Jan 21 01:17:51 2014 (r340539) +++ head/mail/postfix29/distinfo Tue Jan 21 01:17:59 2014 (r340540) @@ -1,5 +1,5 @@ -SHA256 (postfix/postfix-2.9.8.tar.gz) = 8b67005a9095d68feaf04b50da37545ac1036a2f1cd2c5226f759359fcf46488 -SIZE (postfix/postfix-2.9.8.tar.gz) = 3769844 +SHA256 (postfix/postfix-2.9.9.tar.gz) = 9fbd8d19573e9aa6fd79268b74e5a48764752d878d84d22a0415f6677065ec90 +SIZE (postfix/postfix-2.9.9.tar.gz) = 3770303 SHA256 (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = e5c38e5bc226cab109c02a4e530ab1aefd3bb06f2169f3e052bdf83d2727aacc SIZE (postfix/postfix-2.8.0-libspf2-1.2.x-0.patch.gz) = 8191 SHA256 (postfix/postfix-vda-v11-2.9.6.patch) = 5dc94fca86501351e8c01360aa16c1cf49a363253e4076662d0103d3d431d309 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 01:18:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0526A170; Tue, 21 Jan 2014 01:18:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E607810D7; Tue, 21 Jan 2014 01:18:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L1IM53091081; Tue, 21 Jan 2014 01:18:22 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L1IMA9091080; Tue, 21 Jan 2014 01:18:22 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201401210118.s0L1IMA9091080@svn.freebsd.org> From: Xin LI Date: Tue, 21 Jan 2014 01:18:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340541 - head/net/tightvnc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 01:18:23 -0000 Author: delphij Date: Tue Jan 21 01:18:22 2014 New Revision: 340541 URL: http://svnweb.freebsd.org/changeset/ports/340541 QAT: https://qat.redports.org/buildarchive/r340541/ Log: Set maintainer to Koichiro IWAO. Modified: head/net/tightvnc/Makefile Modified: head/net/tightvnc/Makefile ============================================================================== --- head/net/tightvnc/Makefile Tue Jan 21 01:17:59 2014 (r340540) +++ head/net/tightvnc/Makefile Tue Jan 21 01:18:22 2014 (r340541) @@ -8,7 +8,7 @@ CATEGORIES= net java MASTER_SITES= SF/vnc-tight/TightVNC-unix/${PORTVERSION} DISTNAME= ${PORTNAME}-${PORTVERSION}_unixsrc -MAINTAINER= ports@FreeBSD.org +MAINTAINER= meta+ports@vmeta.jp COMMENT= Enhanced version of VNC LICENSE= GPLv2 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 02:32:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9758B06; Tue, 21 Jan 2014 02:31:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D49F215E0; Tue, 21 Jan 2014 02:31:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L2VxfX020929; Tue, 21 Jan 2014 02:31:59 GMT (envelope-from feld@svn.freebsd.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L2Vxu7020925; Tue, 21 Jan 2014 02:31:59 GMT (envelope-from feld@svn.freebsd.org) Message-Id: <201401210231.s0L2Vxu7020925@svn.freebsd.org> From: Mark Felder Date: Tue, 21 Jan 2014 02:31:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340542 - in head/devel: . pear-channel-htmlpurifier pear-channel-htmlpurifier/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.17 Precedence: list List-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, 21 Jan 2014 02:32:00 -0000 Author: feld Date: Tue Jan 21 02:31:58 2014 New Revision: 340542 URL: http://svnweb.freebsd.org/changeset/ports/340542 QAT: https://qat.redports.org/buildarchive/r340542/ Log: Add Pear channel "htmlpurifier" -- htmlpurifier.org Approved by: swills (mentor) Added: head/devel/pear-channel-htmlpurifier/ head/devel/pear-channel-htmlpurifier/Makefile (contents, props changed) head/devel/pear-channel-htmlpurifier/files/ head/devel/pear-channel-htmlpurifier/files/htmlpurifier.org.reg (contents, props changed) head/devel/pear-channel-htmlpurifier/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jan 21 01:18:22 2014 (r340541) +++ head/devel/Makefile Tue Jan 21 02:31:58 2014 (r340542) @@ -3255,6 +3255,7 @@ SUBDIR += pear-channel-doctrine SUBDIR += pear-channel-ezc SUBDIR += pear-channel-horde + SUBDIR += pear-channel-htmlpurifier SUBDIR += pear-channel-openpear SUBDIR += pear-channel-pdepend SUBDIR += pear-channel-phing Added: head/devel/pear-channel-htmlpurifier/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-channel-htmlpurifier/Makefile Tue Jan 21 02:31:58 2014 (r340542) @@ -0,0 +1,16 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= htmlpurifier +PORTVERSION= 20140120 +CATEGORIES= devel www pear +MASTER_SITES= # + +MAINTAINER= feld@FreeBSD.org +COMMENT= PEAR channel ${PEAR_CHANNEL_HOST} + +PEAR_CHANNEL_HOST= htmlpurifier.org + +.include +.include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" +.include Added: head/devel/pear-channel-htmlpurifier/files/htmlpurifier.org.reg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-channel-htmlpurifier/files/htmlpurifier.org.reg Tue Jan 21 02:31:58 2014 (r340542) @@ -0,0 +1 @@ +a:6:{s:7:"attribs";a:4:{s:7:"version";s:3:"1.0";s:5:"xmlns";s:31:"http://pear.php.net/channel-1.0";s:9:"xmlns:xsi";s:41:"http://www.w3.org/2001/XMLSchema-instance";s:18:"xsi:schemaLocation";s:71:"http://pear.php.net/channel-1.0 http://pear.php.net/dtd/channel-1.0.xsd";}s:4:"name";s:16:"htmlpurifier.org";s:7:"summary";s:26:"HTML Purifier PEAR channel";s:14:"suggestedalias";s:2:"hp";s:7:"servers";a:1:{s:7:"primary";a:1:{s:4:"rest";a:1:{s:7:"baseurl";a:4:{i:0;a:2:{s:7:"attribs";a:1:{s:4:"type";s:7:"REST1.0";}s:8:"_content";s:29:"http://htmlpurifier.org/rest/";}i:1;a:2:{s:7:"attribs";a:1:{s:4:"type";s:7:"REST1.1";}s:8:"_content";s:29:"http://htmlpurifier.org/rest/";}i:2;a:2:{s:7:"attribs";a:1:{s:4:"type";s:7:"REST1.2";}s:8:"_content";s:29:"http://htmlpurifier.org/rest/";}i:3;a:2:{s:7:"attribs";a:1:{s:4:"type";s:7:"REST1.3";}s:8:"_content";s:29:"http://htmlpurifier.org/rest/";}}}}}s:13:"_lastmodified";s:29:"Sun, 08 Apr 2012 02:04:21 GMT";} Added: head/devel/pear-channel-htmlpurifier/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-channel-htmlpurifier/pkg-descr Tue Jan 21 02:31:58 2014 (r340542) @@ -0,0 +1,3 @@ +PEAR channel for HTMLPurifier + +WWW: http://htmlpurifier.org/ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 02:33:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8713BE1; Tue, 21 Jan 2014 02:33:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 99F8715E7; Tue, 21 Jan 2014 02:33:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L2XOUM021267; Tue, 21 Jan 2014 02:33:24 GMT (envelope-from feld@svn.freebsd.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L2XNn0021263; Tue, 21 Jan 2014 02:33:23 GMT (envelope-from feld@svn.freebsd.org) Message-Id: <201401210233.s0L2XNn0021263@svn.freebsd.org> From: Mark Felder Date: Tue, 21 Jan 2014 02:33:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340543 - in head/devel: . pear-htmlpurifier X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 02:33:24 -0000 Author: feld Date: Tue Jan 21 02:33:23 2014 New Revision: 340543 URL: http://svnweb.freebsd.org/changeset/ports/340543 QAT: https://qat.redports.org/buildarchive/r340543/ Log: HTML Purifier is a standards compliant HTML filter library written in PHP Approved by: swills (mentor) Added: head/devel/pear-htmlpurifier/ head/devel/pear-htmlpurifier/Makefile (contents, props changed) head/devel/pear-htmlpurifier/distinfo (contents, props changed) head/devel/pear-htmlpurifier/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jan 21 02:31:58 2014 (r340542) +++ head/devel/Makefile Tue Jan 21 02:33:23 2014 (r340543) @@ -3269,6 +3269,7 @@ SUBDIR += pear-codegen SUBDIR += pear-ezc_Base SUBDIR += pear-ezc_ConsoleTools + SUBDIR += pear-htmlpurifier SUBDIR += pear-pdepend-staticReflection SUBDIR += pear-phing SUBDIR += pecl-APCu Added: head/devel/pear-htmlpurifier/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-htmlpurifier/Makefile Tue Jan 21 02:33:23 2014 (r340543) @@ -0,0 +1,26 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= htmlpurifier +PORTVERSION= 4.6.0 +CATEGORIES= devel pear www +MASTER_SITES= http://htmlpurifier.org/get/ \ + LOCAL +DISTNAME= HTMLPurifier-${PORTVERSION} +PKGNAMEPREFIX= pear- + +MAINTAINER= feld@FreeBSD.org +COMMENT= PHP HTML filter library + +LICENSE= LGPL21 + +BUILD_DEPENDS= ${PEARDIR}/.channels/htmlpurifier.org.reg:${PORTSDIR}/devel/pear-channel-htmlpurifier +RUN_DEPENDS:= ${BUILD_DEPENDS} + +PEAR_CHANNEL= htmlpurifier +PEAR_AUTOINSTALL= yes +NO_STAGE= yes + +.include +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include Added: head/devel/pear-htmlpurifier/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-htmlpurifier/distinfo Tue Jan 21 02:33:23 2014 (r340543) @@ -0,0 +1,2 @@ +SHA256 (PEAR/HTMLPurifier-4.6.0.tgz) = ef7322f6a9d417b24de528c7b1d84b2021c79cc40d05ce805abce5dd5dba1c95 +SIZE (PEAR/HTMLPurifier-4.6.0.tgz) = 239621 Added: head/devel/pear-htmlpurifier/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-htmlpurifier/pkg-descr Tue Jan 21 02:33:23 2014 (r340543) @@ -0,0 +1,4 @@ +HTML Purifier is a standards-compliant HTML filter library written in +PHP. + +WWW: http://htmlpurifier.org/ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 03:02:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56FE4160; Tue, 21 Jan 2014 03:02:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 42F5F1839; Tue, 21 Jan 2014 03:02:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L32Ji0033440; Tue, 21 Jan 2014 03:02:19 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L32Ifh033437; Tue, 21 Jan 2014 03:02:18 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401210302.s0L32Ifh033437@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 03:02:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340544 - head/textproc/rubygem-sass X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 03:02:19 -0000 Author: swills Date: Tue Jan 21 03:02:18 2014 New Revision: 340544 URL: http://svnweb.freebsd.org/changeset/ports/340544 QAT: https://qat.redports.org/buildarchive/r340544/ Log: - Update to 3.2.13 Modified: head/textproc/rubygem-sass/Makefile head/textproc/rubygem-sass/distinfo Modified: head/textproc/rubygem-sass/Makefile ============================================================================== --- head/textproc/rubygem-sass/Makefile Tue Jan 21 02:33:23 2014 (r340543) +++ head/textproc/rubygem-sass/Makefile Tue Jan 21 03:02:18 2014 (r340544) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sass -PORTVERSION= 3.2.12 +PORTVERSION= 3.2.13 CATEGORIES= textproc ruby MASTER_SITES= RG Modified: head/textproc/rubygem-sass/distinfo ============================================================================== --- head/textproc/rubygem-sass/distinfo Tue Jan 21 02:33:23 2014 (r340543) +++ head/textproc/rubygem-sass/distinfo Tue Jan 21 03:02:18 2014 (r340544) @@ -1,2 +1,2 @@ -SHA256 (rubygem/sass-3.2.12.gem) = c88d548a265a003d5883ce8b258a3cc523e084a773d5932232dd9ea0220a811c -SIZE (rubygem/sass-3.2.12.gem) = 263168 +SHA256 (rubygem/sass-3.2.13.gem) = 21bd6adf694014c43ffd668ec3067d52c01623d6b432510b1f3dda1ba342243c +SIZE (rubygem/sass-3.2.13.gem) = 263680 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 03:13:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4970C44F; Tue, 21 Jan 2014 03:13:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3505B1915; Tue, 21 Jan 2014 03:13:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L3D0LH037850; Tue, 21 Jan 2014 03:13:00 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L3Cxhe037840; Tue, 21 Jan 2014 03:12:59 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201401210312.s0L3Cxhe037840@svn.freebsd.org> From: Alexey Dokuchaev Date: Tue, 21 Jan 2014 03:12:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340545 - head/sysutils/memtest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 03:13:00 -0000 Author: danfe Date: Tue Jan 21 03:12:59 2014 New Revision: 340545 URL: http://svnweb.freebsd.org/changeset/ports/340545 QAT: https://qat.redports.org/buildarchive/r340545/ Log: - Update to version 4.3.0 and use official (upstream) program name - Stagify, unmute installation commands, install manpage under MANPREFIX - Augment port description text while I'm here (per program's webpage) Modified: head/sysutils/memtest/Makefile head/sysutils/memtest/distinfo head/sysutils/memtest/pkg-descr Modified: head/sysutils/memtest/Makefile ============================================================================== --- head/sysutils/memtest/Makefile Tue Jan 21 03:02:18 2014 (r340544) +++ head/sysutils/memtest/Makefile Tue Jan 21 03:12:59 2014 (r340545) @@ -1,32 +1,26 @@ # Created by: Mario S F Ferreira et al. # $FreeBSD$ -PORTNAME= memtest -PORTVERSION= 4.2.2 +PORTNAME= memtester +PORTVERSION= 4.3.0 CATEGORIES= sysutils -MASTER_SITES= http://pyropus.ca/software/${PORTNAME}er/old-versions/ -DISTNAME= ${PORTNAME}er-${PORTVERSION} +MASTER_SITES= http://pyropus.ca/software/${PORTNAME}/old-versions/ MAINTAINER= question+fbsdports@closedsrc.org COMMENT= Utility to test for faulty memory subsystem LICENSE= GPLv2 -MAN8= ${PORTNAME}.8 -PLIST_FILES= bin/memtest +PLIST_FILES= bin/${PORTNAME} man/man8/${PORTNAME}.8.gz -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|cc|${CC}|' \ ${WRKSRC}/conf-* - @${MV} ${WRKSRC}/${PORTNAME}er.8 ${WRKSRC}/${MAN8} - @${REINPLACE_CMD} -e 's|${PORTNAME}er |${PORTNAME} |g' \ - -e 's| ${PORTNAME}er| ${PORTNAME}|' \ - -e "s|${PORTNAME}er's|${PORTNAME}'s|" \ - ${WRKSRC}/${MAN8} + @${REINPLACE_CMD} -e 's|_SC_PAGE_SIZE|_SC_PAGESIZE|' \ + ${WRKSRC}/${PORTNAME}.c do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}er ${PREFIX}/bin/${PORTNAME} - @${INSTALL_MAN} ${WRKSRC}/${MAN8} ${PREFIX}/man/man8/${MAN8} + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8 .include Modified: head/sysutils/memtest/distinfo ============================================================================== --- head/sysutils/memtest/distinfo Tue Jan 21 03:02:18 2014 (r340544) +++ head/sysutils/memtest/distinfo Tue Jan 21 03:12:59 2014 (r340545) @@ -1,2 +1,2 @@ -SHA256 (memtester-4.2.2.tar.gz) = a494569d58d642c796332a1b7f3b4b86845b52da66c15c96fbeecd74e48dae8e -SIZE (memtester-4.2.2.tar.gz) = 20952 +SHA256 (memtester-4.3.0.tar.gz) = f9dfe2fd737c38fad6535bbab327da9a21f7ce4ea6f18c7b3339adef6bf5fd88 +SIZE (memtester-4.3.0.tar.gz) = 22113 Modified: head/sysutils/memtest/pkg-descr ============================================================================== --- head/sysutils/memtest/pkg-descr Tue Jan 21 03:02:18 2014 (r340544) +++ head/sysutils/memtest/pkg-descr Tue Jan 21 03:12:59 2014 (r340545) @@ -1,9 +1,13 @@ -memtest is a utility for testing the memory subsystem in a computer -to determine if it is faulty. The original source was by Simon -Kirby . The program has been rewritten by Charles -Cazabon and many additional tests were added to help catch borderline -memory. He also rewrote the original tests (which catch mainly -memory bits which are stuck permanently high or low) so that they -run approximately an order of magnitude faster. +A user-space utility for testing the memory subsystem for faults. It is +portable and should compile and work on any 32- or 64-bit Unix-like system. +(Yes, even weird, proprietary Unices, and even Mac OS X.) For hardware +developers, memtester can be told to test memory starting at a particular +physical address as of memtester version 4.1.0. + +The original source was by Simon Kirby . The program has +been rewritten by Charles Cazabon and many additional tests were added to +help catch borderline memory. He also rewrote the original tests (which +catch mainly memory bits which are stuck permanently high or low) so that +they run approximately an order of magnitude faster. WWW: http://pyropus.ca/software/memtester/ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 03:43:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C221BA9; Tue, 21 Jan 2014 03:43:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 485031AFF; Tue, 21 Jan 2014 03:43:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L3hDlj049325; Tue, 21 Jan 2014 03:43:13 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L3hCsR049323; Tue, 21 Jan 2014 03:43:12 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401210343.s0L3hCsR049323@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 03:43:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340546 - head/devel/rubygem-treetop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 03:43:13 -0000 Author: swills Date: Tue Jan 21 03:43:12 2014 New Revision: 340546 URL: http://svnweb.freebsd.org/changeset/ports/340546 QAT: https://qat.redports.org/buildarchive/r340546/ Log: - Update to 1.4.15 Modified: head/devel/rubygem-treetop/Makefile head/devel/rubygem-treetop/distinfo Modified: head/devel/rubygem-treetop/Makefile ============================================================================== --- head/devel/rubygem-treetop/Makefile Tue Jan 21 03:12:59 2014 (r340545) +++ head/devel/rubygem-treetop/Makefile Tue Jan 21 03:43:12 2014 (r340546) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= treetop -PORTVERSION= 1.4.14 +PORTVERSION= 1.4.15 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-treetop/distinfo ============================================================================== --- head/devel/rubygem-treetop/distinfo Tue Jan 21 03:12:59 2014 (r340545) +++ head/devel/rubygem-treetop/distinfo Tue Jan 21 03:43:12 2014 (r340546) @@ -1,2 +1,2 @@ -SHA256 (rubygem/treetop-1.4.14.gem) = 9aa983f04630c853c7acae8504df492f22b6ab9be80e48be0e43eef5f8497361 -SIZE (rubygem/treetop-1.4.14.gem) = 183808 +SHA256 (rubygem/treetop-1.4.15.gem) = ffa68f201c0f62c26b0a1d13233d73194400596964696843f87ebb5d812f12ff +SIZE (rubygem/treetop-1.4.15.gem) = 78336 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 03:48:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA550CBE; Tue, 21 Jan 2014 03:48:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C63531B22; Tue, 21 Jan 2014 03:48:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L3meQD050015; Tue, 21 Jan 2014 03:48:40 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L3me3k050013; Tue, 21 Jan 2014 03:48:40 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401210348.s0L3me3k050013@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 03:48:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340547 - head/www/rubygem-jquery-rails X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 03:48:40 -0000 Author: swills Date: Tue Jan 21 03:48:40 2014 New Revision: 340547 URL: http://svnweb.freebsd.org/changeset/ports/340547 QAT: https://qat.redports.org/buildarchive/r340547/ Log: - Update to 3.0.4 Modified: head/www/rubygem-jquery-rails/Makefile head/www/rubygem-jquery-rails/distinfo Modified: head/www/rubygem-jquery-rails/Makefile ============================================================================== --- head/www/rubygem-jquery-rails/Makefile Tue Jan 21 03:43:12 2014 (r340546) +++ head/www/rubygem-jquery-rails/Makefile Tue Jan 21 03:48:40 2014 (r340547) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jquery-rails -PORTVERSION= 3.0.1 +PORTVERSION= 3.0.4 CATEGORIES= www rubygems MASTER_SITES= RG Modified: head/www/rubygem-jquery-rails/distinfo ============================================================================== --- head/www/rubygem-jquery-rails/distinfo Tue Jan 21 03:43:12 2014 (r340546) +++ head/www/rubygem-jquery-rails/distinfo Tue Jan 21 03:48:40 2014 (r340547) @@ -1,2 +1,2 @@ -SHA256 (rubygem/jquery-rails-3.0.1.gem) = 1fa3c8998ebc22f1040ced1e30b79a8567226c3be69033489758e0152f90c590 -SIZE (rubygem/jquery-rails-3.0.1.gem) = 185856 +SHA256 (rubygem/jquery-rails-3.0.4.gem) = 55aade13e34c6c2c6862faef2ea82ff33d12bc010dd0fa9550fd839628ab234c +SIZE (rubygem/jquery-rails-3.0.4.gem) = 185856 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 04:56:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9015164C; Tue, 21 Jan 2014 04:56:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7BA9C106F; Tue, 21 Jan 2014 04:56:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L4u4CT076345; Tue, 21 Jan 2014 04:56:04 GMT (envelope-from bmah@svn.freebsd.org) Received: (from bmah@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L4u34w076337; Tue, 21 Jan 2014 04:56:03 GMT (envelope-from bmah@svn.freebsd.org) Message-Id: <201401210456.s0L4u34w076337@svn.freebsd.org> From: "Bruce A. Mah" Date: Tue, 21 Jan 2014 04:56:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340548 - in head/benchmarks: . iperf3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 04:56:04 -0000 Author: bmah Date: Tue Jan 21 04:56:03 2014 New Revision: 340548 URL: http://svnweb.freebsd.org/changeset/ports/340548 QAT: https://qat.redports.org/buildarchive/r340548/ Log: New port: benchmarks/iperf3 iperf is a tool for measuring the maximum TCP and UDP bandwidth along a path between two hosts. It allows the tuning of various parameters and UDP characteristics, and reports bandwidth, delay jitter, datagram loss. iperf was originally developed by NLANR/DAST. iperf3 is a new implementation from scratch, with the goal of a smaller, simpler code base, and a library version of the functionality that can be used in other programs. iperf3 also a number of features found in other tools such as nuttcp and netperf, but were missing from iperf 2.x. iperf3 is not backwards compatible with iperf 2.x. WWW: https://code.google.com/p/iperf/ Approved by: mat (mentor) Added: head/benchmarks/iperf3/ head/benchmarks/iperf3/Makefile (contents, props changed) head/benchmarks/iperf3/distinfo (contents, props changed) head/benchmarks/iperf3/pkg-descr (contents, props changed) Modified: head/benchmarks/Makefile Modified: head/benchmarks/Makefile ============================================================================== --- head/benchmarks/Makefile Tue Jan 21 03:48:40 2014 (r340547) +++ head/benchmarks/Makefile Tue Jan 21 04:56:03 2014 (r340548) @@ -30,6 +30,7 @@ SUBDIR += iozone SUBDIR += iozone21 SUBDIR += iperf + SUBDIR += iperf3 SUBDIR += libmicro SUBDIR += lmbench SUBDIR += mdtest Added: head/benchmarks/iperf3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/iperf3/Makefile Tue Jan 21 04:56:03 2014 (r340548) @@ -0,0 +1,44 @@ +# Created by: Bruce A. Mah +# $FreeBSD$ + +PORTNAME= iperf +PORTVERSION= 3.0.1 +CATEGORIES= benchmarks ipv6 +MASTER_SITES= http://stats.es.net/software/ +PKGNAMESUFFIX= 3 + +MAINTAINER= bmah@FreeBSD.org +COMMENT= Improved tool to measure TCP and UDP bandwidth + +LICENSE= BSD3CLAUSE + +GNU_CONFIGURE= yes + +# Set ${DOCSDIR} to avoid conflict with benchmarks/iperf ${DOCSDIR} +DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} + +PLIST_FILES= bin/iperf3 \ + include/iperf_api.h \ + lib/libiperf.a \ + man/man1/iperf3.1.gz \ + man/man3/libiperf.3.gz +PORTDOCS= * + +post-patch: +# automake generates a buggy Makefile.in that tries to do ${RANLIB} on +# libiperf3.a after installing with mode 444; this breaks staging. +# Since ${RANLIB} was already run on the library, this broken +# invocation was redundant, and can be eliminated. The fix below is +# based on the solution for a similar situation for an unrelated port +# in r339298. + @${REINPLACE_CMD} -e '/echo.*RANLIB/,+1d' ${WRKSRC}/src/Makefile.in +# Don't build stuff that we're not going to install. Among other +# things this means we're not going to try to build profiled objects +# and/or executables. + @${REINPLACE_CMD} -e '/^PROGRAMS /s/\$$(noinst_PROGRAMS)//' ${WRKSRC}/src/Makefile.in + +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} AUTHORS README RELEASE_NOTES TODO ${STAGEDIR}${DOCSDIR}) + +.include Added: head/benchmarks/iperf3/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/iperf3/distinfo Tue Jan 21 04:56:03 2014 (r340548) @@ -0,0 +1,2 @@ +SHA256 (iperf-3.0.1.tar.gz) = 32b419ef634dd7670328c3cecc158babf7d706bd4b3d248cf95965528a20e614 +SIZE (iperf-3.0.1.tar.gz) = 338151 Added: head/benchmarks/iperf3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/iperf3/pkg-descr Tue Jan 21 04:56:03 2014 (r340548) @@ -0,0 +1,12 @@ +iperf is a tool for measuring the maximum TCP and UDP bandwidth along +a path between two hosts. It allows the tuning of various +parameters and UDP characteristics, and reports bandwidth, delay +jitter, datagram loss. iperf was originally developed by NLANR/DAST. + +iperf3 is a new implementation from scratch, with the goal of a +smaller, simpler code base, and a library version of the functionality +that can be used in other programs. iperf3 also a number of features +found in other tools such as nuttcp and netperf, but were missing from +iperf 2.x. iperf3 is not backwards compatible with iperf 2.x. + +WWW: https://code.google.com/p/iperf/ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 05:12:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06BA79FC; Tue, 21 Jan 2014 05:12:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E48B711A3; Tue, 21 Jan 2014 05:12:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L5CkQY084250; Tue, 21 Jan 2014 05:12:46 GMT (envelope-from milki@svn.freebsd.org) Received: (from milki@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L5CfZo084215; Tue, 21 Jan 2014 05:12:41 GMT (envelope-from milki@svn.freebsd.org) Message-Id: <201401210512.s0L5CfZo084215@svn.freebsd.org> From: Jonathan Chu Date: Tue, 21 Jan 2014 05:12:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340549 - in head: databases/p5-Class-DBI-Plugin-DeepAbstractSearch devel/gitolite devel/gitolite2 devel/p5-Dist-CheckConflicts devel/p5-MooseX-Types-JSON devel/p5-POE-Component-Hailo d... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 05:12:47 -0000 Author: milki Date: Tue Jan 21 05:12:40 2014 New Revision: 340549 URL: http://svnweb.freebsd.org/changeset/ports/340549 QAT: https://qat.redports.org/buildarchive/r340549/ Log: Update maintainer email address Approved by: swills (mentor) Modified: head/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/Makefile head/devel/gitolite/Makefile head/devel/gitolite2/Makefile head/devel/p5-Dist-CheckConflicts/Makefile head/devel/p5-MooseX-Types-JSON/Makefile head/devel/p5-POE-Component-Hailo/Makefile head/devel/p5-Package-Stash-XS/Makefile head/devel/p5-Pod-Coverage-TrustPod/Makefile head/devel/p5-Term-Sk/Makefile head/devel/p5-Test-EOL/Makefile head/devel/p5-Test-NoTabs/Makefile head/devel/py-ipdb/Makefile head/devel/rubygem-app_config/Makefile head/devel/rubygem-edavis10-object_daddy/Makefile (contents, props changed) head/irc/p5-POE-Component-IRC-Plugin-Hailo/Makefile head/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile head/lang/p5-Test-XPath/Makefile head/lang/p5-TryCatch/Makefile head/misc/p5-Bot-Training-MegaHAL/Makefile head/misc/p5-Bot-Training-StarCraft/Makefile head/misc/p5-Bot-Training/Makefile head/sysutils/password-store/Makefile head/textproc/p5-Hailo/Makefile head/textproc/p5-SQL-Tokenizer/Makefile head/www/p5-LWP-Online/Makefile head/www/p5-Pod-Site/Makefile Modified: head/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/Makefile ============================================================================== --- head/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SRIHA PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Provides deep_search_where() for Class::DBI LICENSE= ART10 GPLv1 Modified: head/devel/gitolite/Makefile ============================================================================== --- head/devel/gitolite/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/gitolite/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= GH \ LOCAL/tdb DISTNAME= g-${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-${GH_COMMIT} -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= An access control layer on top of git LICENSE= GPLv2 Modified: head/devel/gitolite2/Makefile ============================================================================== --- head/devel/gitolite2/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/gitolite2/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -9,7 +9,7 @@ MASTER_SITES= GH \ PKGNAMESUFFIX= 2 DISTNAME= g-${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-${GH_COMMIT} -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= An access control layer on top of git LICENSE= GPLv2 Modified: head/devel/p5-Dist-CheckConflicts/Makefile ============================================================================== --- head/devel/p5-Dist-CheckConflicts/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/p5-Dist-CheckConflicts/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -7,7 +7,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DOY PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Declare version conflicts for your dist LICENSE= ART10 GPLv1 Modified: head/devel/p5-MooseX-Types-JSON/Makefile ============================================================================== --- head/devel/p5-MooseX-Types-JSON/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/p5-MooseX-Types-JSON/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MILA PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= JSON and relaxedJSON datatype for Moose LICENSE= ART10 GPLv1 Modified: head/devel/p5-POE-Component-Hailo/Makefile ============================================================================== --- head/devel/p5-POE-Component-Hailo/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/p5-POE-Component-Hailo/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:HINRIK PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Non-blocking wrapper around Hailo LICENSE= ART10 GPLv1 Modified: head/devel/p5-Package-Stash-XS/Makefile ============================================================================== --- head/devel/p5-Package-Stash-XS/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/p5-Package-Stash-XS/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -7,7 +7,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DOY PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Faster and more correct implementation of the Package::Stash API LICENSE= ART10 GPLv1 Modified: head/devel/p5-Pod-Coverage-TrustPod/Makefile ============================================================================== --- head/devel/p5-Pod-Coverage-TrustPod/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/p5-Pod-Coverage-TrustPod/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RJBS PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Declare trusted symbol names in POD LICENSE= ART10 GPLv1 Modified: head/devel/p5-Term-Sk/Makefile ============================================================================== --- head/devel/p5-Term-Sk/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/p5-Term-Sk/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -7,7 +7,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:KEICHNER PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Perl extension to display a progress indicator on a terminal LICENSE= ART10 GPLv1 Modified: head/devel/p5-Test-EOL/Makefile ============================================================================== --- head/devel/p5-Test-EOL/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/p5-Test-EOL/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:BOBTFISH PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Check the correct line endings in your project LICENSE= ART10 GPLv1 Modified: head/devel/p5-Test-NoTabs/Makefile ============================================================================== --- head/devel/p5-Test-NoTabs/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/p5-Test-NoTabs/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:BOBTFISH PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Check the presence of tabs in your project LICENSE= ART10 GPLv1 Modified: head/devel/py-ipdb/Makefile ============================================================================== --- head/devel/py-ipdb/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/py-ipdb/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -6,7 +6,7 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= IPython-enabled pdb LICENSE= GPLv2 Modified: head/devel/rubygem-app_config/Makefile ============================================================================== --- head/devel/rubygem-app_config/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/rubygem-app_config/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -5,7 +5,7 @@ PORTVERSION= 2.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= A ruby gem for storing application configuration LICENSE= MIT Modified: head/devel/rubygem-edavis10-object_daddy/Makefile ============================================================================== --- head/devel/rubygem-edavis10-object_daddy/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/devel/rubygem-edavis10-object_daddy/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -6,7 +6,7 @@ PORTVERSION= 0.4.3 CATEGORIES= devel rubygems MASTER_SITES= RG -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Object Daddy assists in automating testing LICENSE= MIT Modified: head/irc/p5-POE-Component-IRC-Plugin-Hailo/Makefile ============================================================================== --- head/irc/p5-POE-Component-IRC-Plugin-Hailo/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/irc/p5-POE-Component-IRC-Plugin-Hailo/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:HINRIK PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= A PoCo-IRC plugin for a Hailo conversation simulator LICENSE= ART10 GPLv1 Modified: head/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile ============================================================================== --- head/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/irc/p5-POE-Component-IRC-Plugin-Karma/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -7,7 +7,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:APOCAL PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= A PoCo-IRC plugin that keeps track of karma LICENSE= ART10 GPLv1 Modified: head/lang/p5-Test-XPath/Makefile ============================================================================== --- head/lang/p5-Test-XPath/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/lang/p5-Test-XPath/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -7,7 +7,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DWHEELER PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Test XML and HTML content and structure with XPath expressions LICENSE= ART10 GPLv1 Modified: head/lang/p5-TryCatch/Makefile ============================================================================== --- head/lang/p5-TryCatch/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/lang/p5-TryCatch/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -7,7 +7,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ASH PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= First class try catch semantics for Perl, without source filters LICENSE= ART10 GPLv1 Modified: head/misc/p5-Bot-Training-MegaHAL/Makefile ============================================================================== --- head/misc/p5-Bot-Training-MegaHAL/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/misc/p5-Bot-Training-MegaHAL/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:AVAR PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Provide megahal.trn via Bot::Training LICENSE= ART10 GPLv1 Modified: head/misc/p5-Bot-Training-StarCraft/Makefile ============================================================================== --- head/misc/p5-Bot-Training-StarCraft/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/misc/p5-Bot-Training-StarCraft/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:AVAR PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Provide starcraft.trn via Bot::Training LICENSE= ART10 GPLv1 Modified: head/misc/p5-Bot-Training/Makefile ============================================================================== --- head/misc/p5-Bot-Training/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/misc/p5-Bot-Training/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -9,7 +9,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:AVAR PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Plain text training material for bots like Hailo and MegaHAL LICENSE= ART10 GPLv1 Modified: head/sysutils/password-store/Makefile ============================================================================== --- head/sysutils/password-store/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/sysutils/password-store/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -5,7 +5,7 @@ PORTVERSION= 1.4.2 CATEGORIES= sysutils MASTER_SITES= http://git.zx2c4.com/password-store/snapshot/ -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Stores, retrieves, generates, and synchronizes passwords securely LICENSE= GPLv2 Modified: head/textproc/p5-Hailo/Makefile ============================================================================== --- head/textproc/p5-Hailo/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/textproc/p5-Hailo/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -9,7 +9,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:HINRIK PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= A pluggable Markov engine analogous to MegaHAL LICENSE= ART10 GPLv1 Modified: head/textproc/p5-SQL-Tokenizer/Makefile ============================================================================== --- head/textproc/p5-SQL-Tokenizer/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/textproc/p5-SQL-Tokenizer/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:IZUT PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Simple regular expressions based SQL tokenizer LICENSE= ART10 GPLv1 Modified: head/www/p5-LWP-Online/Makefile ============================================================================== --- head/www/p5-LWP-Online/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/www/p5-LWP-Online/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -8,7 +8,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ADAMK PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Checks if process has access to the web LICENSE= ART10 GPLv1 Modified: head/www/p5-Pod-Site/Makefile ============================================================================== --- head/www/p5-Pod-Site/Makefile Tue Jan 21 04:56:03 2014 (r340548) +++ head/www/p5-Pod-Site/Makefile Tue Jan 21 05:12:40 2014 (r340549) @@ -7,7 +7,7 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DWHEELER PKGNAMEPREFIX= p5- -MAINTAINER= milki@rescomp.berkeley.edu +MAINTAINER= milki@FreeBSD.org COMMENT= Build browsable HTML documentation for your app LICENSE= ART10 GPLv1 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 05:20:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 363CFC30; Tue, 21 Jan 2014 05:20:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 22EB11242; Tue, 21 Jan 2014 05:20:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L5KOEC085247; Tue, 21 Jan 2014 05:20:24 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L5KNdq085246; Tue, 21 Jan 2014 05:20:23 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401210520.s0L5KNdq085246@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 21 Jan 2014 05:20:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340550 - head/devel/gitg0 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 05:20:24 -0000 Author: amdmi3 Date: Tue Jan 21 05:20:23 2014 New Revision: 340550 URL: http://svnweb.freebsd.org/changeset/ports/340550 QAT: https://qat.redports.org/buildarchive/r340550/ Log: - Fix PORTSCOUT Modified: head/devel/gitg0/Makefile Modified: head/devel/gitg0/Makefile ============================================================================== --- head/devel/gitg0/Makefile Tue Jan 21 05:12:40 2014 (r340549) +++ head/devel/gitg0/Makefile Tue Jan 21 05:20:23 2014 (r340550) @@ -24,7 +24,7 @@ USES= gmake pkgconfig INSTALLS_ICONS= yes GCONF_SCHEMAS= gitg.schemas -PORTSCOUT= limit:^0\. +PORTSCOUT= limit:^0\.0\. OPTIONS_DEFINE= NLS OPTIONS_SUB= yes From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 05:34:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC8EEDC1; Tue, 21 Jan 2014 05:34:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B903112DA; Tue, 21 Jan 2014 05:34:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L5YklR091950; Tue, 21 Jan 2014 05:34:46 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L5YkCX091948; Tue, 21 Jan 2014 05:34:46 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201401210534.s0L5YkCX091948@svn.freebsd.org> From: Gerald Pfeifer Date: Tue, 21 Jan 2014 05:34:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340551 - head/math/petsc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 05:34:46 -0000 Author: gerald Date: Tue Jan 21 05:34:46 2014 New Revision: 340551 URL: http://svnweb.freebsd.org/changeset/ports/340551 QAT: https://qat.redports.org/buildarchive/r340551/ Log: Pass full LDFLAGS to configure script. This fixes the build with newer versions of GCC, allowing for an update of lang/gcc (and it's the right thing anyway). PR: 182136 Submitted by: Christoph Moench-Tegeder Approved by: maintainer timeout Modified: head/math/petsc/Makefile Modified: head/math/petsc/Makefile ============================================================================== --- head/math/petsc/Makefile Tue Jan 21 05:20:23 2014 (r340550) +++ head/math/petsc/Makefile Tue Jan 21 05:34:46 2014 (r340551) @@ -25,7 +25,8 @@ CONFIGURE_ENV= PETSC_ARCH=${TARGET} \ CONFIGURE_ARGS= --prefix=${PREFIX}/${PFX} --COPTFLAGS="${CFLAGS}" \ --CXXOPTFLAGS="${CXXFLAGS}" --FOPTFLAGS="${FFLAGS}" \ --with-shared=1 --with-cc=${CC} --with-fc=${FC} \ - --CPPFLAGS="-I${LOCALBASE}/include" --LDFLAGS=${PTHREAD_LIBS} + --CPPFLAGS="-I${LOCALBASE}/include" \ + --LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}" ALL_TARGET= all MAKEFILE= makefile MAKE_ENV= PETSC_DIR=${WRKSRC} From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 05:38:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FEC4D3; Tue, 21 Jan 2014 05:38:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C59912EF; Tue, 21 Jan 2014 05:38:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L5c2VM092378; Tue, 21 Jan 2014 05:38:02 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L5c2do092376; Tue, 21 Jan 2014 05:38:02 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401210538.s0L5c2do092376@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 05:38:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340552 - head/misc/rubygem-mime-types X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 05:38:02 -0000 Author: swills Date: Tue Jan 21 05:38:01 2014 New Revision: 340552 URL: http://svnweb.freebsd.org/changeset/ports/340552 QAT: https://qat.redports.org/buildarchive/r340552/ Log: - Update to 1.25.1 Modified: head/misc/rubygem-mime-types/Makefile head/misc/rubygem-mime-types/distinfo Modified: head/misc/rubygem-mime-types/Makefile ============================================================================== --- head/misc/rubygem-mime-types/Makefile Tue Jan 21 05:34:46 2014 (r340551) +++ head/misc/rubygem-mime-types/Makefile Tue Jan 21 05:38:01 2014 (r340552) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mime-types -PORTVERSION= 1.23 +PORTVERSION= 1.25.1 CATEGORIES= misc rubygems MASTER_SITES= RG Modified: head/misc/rubygem-mime-types/distinfo ============================================================================== --- head/misc/rubygem-mime-types/distinfo Tue Jan 21 05:34:46 2014 (r340551) +++ head/misc/rubygem-mime-types/distinfo Tue Jan 21 05:38:01 2014 (r340552) @@ -1,2 +1,2 @@ -SHA256 (rubygem/mime-types-1.23.gem) = fa29671c5f80a5dbafe3111814f1bf289af91f422c1d1fa4c10bda63fab305b2 -SIZE (rubygem/mime-types-1.23.gem) = 55296 +SHA256 (rubygem/mime-types-1.25.1.gem) = 88ef3c596481678710ffd4018fa40f1999b02d97babea39682ba7d5badd21f56 +SIZE (rubygem/mime-types-1.25.1.gem) = 61440 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 05:44:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0231250; Tue, 21 Jan 2014 05:44:23 +0000 (UTC) Received: from thyme.infocus-llc.com (server.infocus-llc.com [206.156.254.44]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C36A61368; Tue, 21 Jan 2014 05:44:23 +0000 (UTC) Received: from draco.over-yonder.net (c-75-65-60-66.hsd1.ms.comcast.net [75.65.60.66]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by thyme.infocus-llc.com (Postfix) with ESMTPSA id 639F937B499; Mon, 20 Jan 2014 23:37:59 -0600 (CST) Received: by draco.over-yonder.net (Postfix, from userid 100) id 3f7dnK6wc7zsM; Mon, 20 Jan 2014 23:37:57 -0600 (CST) Date: Mon, 20 Jan 2014 23:37:57 -0600 From: "Matthew D. Fuller" To: Antoine Brodin Subject: Re: svn commit: r340451 - head/devel/bzr-grep Message-ID: <20140121053757.GT94892@over-yonder.net> References: <201401201908.s0KJ8wYi025049@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401201908.s0KJ8wYi025049@svn.freebsd.org> X-Editor: vi X-OS: FreeBSD User-Agent: Mutt/1.5.22 (2013-10-16) X-Virus-Scanned: clamav-milter 0.98.1 at thyme.infocus-llc.com X-Virus-Status: Clean 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.17 Precedence: list List-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, 21 Jan 2014 05:44:24 -0000 On Mon, Jan 20, 2014 at 07:08:58PM +0000 I heard the voice of Antoine Brodin, and lo! it spake thus: > > BROKEN= conflicts with dependency bzr > +DEPRECATED= Broken for more than 4 months > +EXPIRATION_DATE=2014-02-20 This can really just bypass the whole deprecation and be removed. It conflicts with bzr because it's been integrated into bzr. (with-hat: devel/bzr maintainer) -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Systems/Network Administrator | http://www.over-yonder.net/~fullermd/ On the Internet, nobody can hear you scream. From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 06:14:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB464AB5; Tue, 21 Jan 2014 06:14:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8BB8A15CE; Tue, 21 Jan 2014 06:14:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L6ExRU007683; Tue, 21 Jan 2014 06:14:59 GMT (envelope-from dbn@svn.freebsd.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L6Ew5S007680; Tue, 21 Jan 2014 06:14:58 GMT (envelope-from dbn@svn.freebsd.org) Message-Id: <201401210614.s0L6Ew5S007680@svn.freebsd.org> From: David Naylor Date: Tue, 21 Jan 2014 06:14:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340553 - head/emulators/i386-wine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 06:14:59 -0000 Author: dbn Date: Tue Jan 21 06:14:58 2014 New Revision: 340553 URL: http://svnweb.freebsd.org/changeset/ports/340553 QAT: https://qat.redports.org/buildarchive/r340553/ Log: Update emulators/i386-wine to 1.6.2 Modified: head/emulators/i386-wine/Makefile.inc head/emulators/i386-wine/distinfo head/emulators/i386-wine/pkg-plist Modified: head/emulators/i386-wine/Makefile.inc ============================================================================== --- head/emulators/i386-wine/Makefile.inc Tue Jan 21 05:38:01 2014 (r340552) +++ head/emulators/i386-wine/Makefile.inc Tue Jan 21 06:14:58 2014 (r340553) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -PORTVERSION= 1.6.1 +PORTVERSION= 1.6.2 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= LOCAL/dbn/repos/wine/${DIST_SUBDIR}/${PORTVERSION} Modified: head/emulators/i386-wine/distinfo ============================================================================== --- head/emulators/i386-wine/distinfo Tue Jan 21 05:38:01 2014 (r340552) +++ head/emulators/i386-wine/distinfo Tue Jan 21 06:14:58 2014 (r340553) @@ -1,4 +1,4 @@ -SHA256 (freebsd:8:x86:64/i386-wine-1.6.1,1.txz) = 2e074eb622398f6a945dfe1c8142eeefddb5dd252b96e58758305d0bfbb77c31 -SIZE (freebsd:8:x86:64/i386-wine-1.6.1,1.txz) = 22806912 -SHA256 (freebsd:9:x86:64/i386-wine-1.6.1,1.txz) = dc2acfc443c155e1f3a87ae06a03f859c749c82944d3a42658f5c54c54d92a83 -SIZE (freebsd:9:x86:64/i386-wine-1.6.1,1.txz) = 22967420 +SHA256 (freebsd:8:x86:64/i386-wine-1.6.2,1.txz) = 6a9c661366c313cdf80db10ef23716b8db103cc7997ef6c791c702ac88551c66 +SIZE (freebsd:8:x86:64/i386-wine-1.6.2,1.txz) = 22846200 +SHA256 (freebsd:9:x86:64/i386-wine-1.6.2,1.txz) = b641d634c4fbec71950f08c13974c3eaf50a07ef1d560e8d00d94dea1341f3c1 +SIZE (freebsd:9:x86:64/i386-wine-1.6.2,1.txz) = 22996328 Modified: head/emulators/i386-wine/pkg-plist ============================================================================== --- head/emulators/i386-wine/pkg-plist Tue Jan 21 05:38:01 2014 (r340552) +++ head/emulators/i386-wine/pkg-plist Tue Jan 21 06:14:58 2014 (r340553) @@ -803,7 +803,7 @@ lib32/libgnutls.so.26 lib32/libiconv.so.3 lib32/libintl.so.9 lib32/libjpeg.so.11 -lib32/liblcms.so.1 +lib32/liblcms2.so.2 lib32/libopenal.so.1 lib32/libpng15.so.15 lib32/libpthread-stubs.so.0 @@ -2032,6 +2032,12 @@ lib32/wine/xmllite.dll.so lib32/wine/xolehlp.dll.so lib32/wine/xpsprint.dll.so lib32/wine/xpssvcs.dll.so +man/de.UTF-8/man1/wine.1.gz +man/de.UTF-8/man1/winemaker.1.gz +man/de.UTF-8/man1/wineserver.1.gz +man/fr.UTF-8/man1/wine.1.gz +man/fr.UTF-8/man1/winemaker.1.gz +man/fr.UTF-8/man1/wineserver.1.gz man/man1/msiexec.1.gz man/man1/notepad.1.gz man/man1/regedit.1.gz @@ -2054,6 +2060,8 @@ man/man1/winepath.1.gz man/man1/wineserver.1.gz man/man1/wmc.1.gz man/man1/wrc.1.gz +man/pl.UTF-8/man1/wine.1.gz +share/applications/wine.desktop share/doc/wine/ANNOUNCE share/doc/wine/AUTHORS share/doc/wine/README @@ -2118,9 +2126,16 @@ share/wine/generic.ppd share/wine/l_intl.nls share/wine/patch-nvidia.sh share/wine/wine.inf +@dirrm share/wine/fonts/ @dirrm share/wine/fonts @dirrm share/wine @dirrm share/doc/wine +@dirrm man/pl.UTF-8/man1 +@dirrm man/pl.UTF-8 +@dirrm man/fr.UTF-8/man1 +@dirrm man/fr.UTF-8 +@dirrm man/de.UTF-8/man1 +@dirrm man/de.UTF-8 @dirrm lib32/wine/fakedlls @dirrm lib32/wine @dirrm lib32/.libGL/dri From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 06:21:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99159BCC; Tue, 21 Jan 2014 06:21:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 79E2C1648; Tue, 21 Jan 2014 06:21:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L6LFWI011065; Tue, 21 Jan 2014 06:21:15 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L6LEjm011061; Tue, 21 Jan 2014 06:21:14 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201401210621.s0L6LEjm011061@svn.freebsd.org> From: Alexey Dokuchaev Date: Tue, 21 Jan 2014 06:21:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340554 - in head/sysutils/memdump: . 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.17 Precedence: list List-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, 21 Jan 2014 06:21:15 -0000 Author: danfe Date: Tue Jan 21 06:21:14 2014 New Revision: 340554 URL: http://svnweb.freebsd.org/changeset/ports/340554 QAT: https://qat.redports.org/buildarchive/r340554/ Log: - Add custom LICENSE (IBM Public License 1.0) - Respect CFLAGS (CC was already respected) - Stagify and simplify FreeBSD handling in source code - Improve COMMENT and port description while here Modified: head/sysutils/memdump/Makefile head/sysutils/memdump/files/patch-makedefs head/sysutils/memdump/files/patch-memdump.c head/sysutils/memdump/pkg-descr Modified: head/sysutils/memdump/Makefile ============================================================================== --- head/sysutils/memdump/Makefile Tue Jan 21 06:14:58 2014 (r340553) +++ head/sysutils/memdump/Makefile Tue Jan 21 06:21:14 2014 (r340554) @@ -7,28 +7,23 @@ CATEGORIES= sysutils MASTER_SITES= http://www.porcupine.org/forensics/ MAINTAINER= onatan@gmail.com -COMMENT= Forensic utility for memory-dumping +COMMENT= Forensic utility for memory dumping + +LICENSE= IBM +LICENSE_NAME= IBM Public License 1.0 +LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept ALL_TARGET= what +MAKE_ARGS= OPT="${CFLAGS}" DEBUG='' -PLIST_FILES= bin/memdump -PORTDOCS= README LICENSE -MAN1= memdump.1 +PORTDOCS= README +PLIST_FILES= bin/memdump man/man1/memdump.1.gz -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/memdump ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/memdump.1 ${MANPREFIX}/man/man1 -. if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR} -. endif - -.include - -.if ${OSVERSION} >= 900000 -BROKEN= unsupported FreeBSD version -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/memdump ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/memdump.1 ${STAGEDIR}${MANPREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} -.include +.include Modified: head/sysutils/memdump/files/patch-makedefs ============================================================================== --- head/sysutils/memdump/files/patch-makedefs Tue Jan 21 06:14:58 2014 (r340553) +++ head/sysutils/memdump/files/patch-makedefs Tue Jan 21 06:21:14 2014 (r340554) @@ -1,11 +1,21 @@ --- ./makedefs.orig 2005-08-30 23:03:40.000000000 +0000 +++ ./makedefs 2007-11-30 18:54:11.000000000 +0000 -@@ -14,6 +14,8 @@ +@@ -2,17 +2,7 @@ SYSTEM=`(uname -s) 2>/dev/null` + RELEASE=`(uname -r) 2>/dev/null` + + case "$SYSTEM.$RELEASE" in +- FreeBSD.2*) DEFS="-DFREEBSD2" +- ;; +- FreeBSD.3*) DEFS="-DFREEBSD3" +- ;; +- FreeBSD.4*) DEFS="-DFREEBSD4" +- ;; +- FreeBSD.5*) DEFS="-DFREEBSD5" +- ;; +- FreeBSD.6*) DEFS="-DFREEBSD6" +- ;; +- FreeBSD.7*) DEFS="-DFREEBSD7" ++ FreeBSD.*) DEFS="-DFREEBSD" ;; - FreeBSD.7*) DEFS="-DFREEBSD7" - ;; -+ FreeBSD.8*) DEFS="-DFREEBSD8" -+ ;; OpenBSD.2*) DEFS="-DOPENBSD2" ;; - OpenBSD.3*) DEFS="-DOPENBSD3" Modified: head/sysutils/memdump/files/patch-memdump.c ============================================================================== --- head/sysutils/memdump/files/patch-memdump.c Tue Jan 21 06:14:58 2014 (r340553) +++ head/sysutils/memdump/files/patch-memdump.c Tue Jan 21 06:21:14 2014 (r340554) @@ -1,10 +1,12 @@ --- ./memdump.c.orig 2005-08-30 23:04:18.000000000 +0000 +++ ./memdump.c 2007-11-30 18:54:11.000000000 +0000 -@@ -109,6 +109,7 @@ +@@ -107,8 +107,7 @@ + #define SUPPORTED + #endif - #if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ - || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \ -+ || defined(FREEBSD8) \ +-#if defined(FREEBSD2) || defined(FREEBSD3) || defined(FREEBSD4) \ +- || defined(FREEBSD5) || defined(FREEBSD6) || defined(FREEBSD7) \ ++#if defined(FREEBSD) \ || defined(OPENBSD2) || defined(OPENBSD3) \ || defined(BSDI2) || defined(BSDI3) || defined(BSDI4) #include Modified: head/sysutils/memdump/pkg-descr ============================================================================== --- head/sysutils/memdump/pkg-descr Tue Jan 21 06:14:58 2014 (r340553) +++ head/sysutils/memdump/pkg-descr Tue Jan 21 06:21:14 2014 (r340554) @@ -1,5 +1,10 @@ -This program dumps system memory to the standard output stream, -skipping over holes in memory maps. -By default, the program dumps the contents of physical memory. +This program dumps system memory to the standard output stream, skipping +over holes in memory maps. By default, the program dumps the contents of +physical memory. + +Note: consider using Brian Carrier's Sleuthkit, available as `sysutils/ +sleuthkit' port. It is the official successor, based on parts from TCT. +Development of the Coroner's Toolkit was stopped years ago. It is only +updated for bugfixes, which are very rare. WWW: http://www.porcupine.org/forensics/tct.html From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 06:21:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1401CAC; Tue, 21 Jan 2014 06:21:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E2051650; Tue, 21 Jan 2014 06:21:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L6Lae1011197; Tue, 21 Jan 2014 06:21:36 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L6LZbc011194; Tue, 21 Jan 2014 06:21:36 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201401210621.s0L6LZbc011194@svn.freebsd.org> From: Alexey Dokuchaev Date: Tue, 21 Jan 2014 06:21:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340555 - in head/sysutils/memfetch: . 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.17 Precedence: list List-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, 21 Jan 2014 06:21:36 -0000 Author: danfe Date: Tue Jan 21 06:21:35 2014 New Revision: 340555 URL: http://svnweb.freebsd.org/changeset/ports/340555 QAT: https://qat.redports.org/buildarchive/r340555/ Log: - Improve COMMENT text, add LICENSE - Convert one patch file to MAKE_ARGS - Stagify, dismiss NOPORTDOCS check - Cleanup pkg-descr and pkg-message Deleted: head/sysutils/memfetch/files/patch-Makefile Modified: head/sysutils/memfetch/Makefile head/sysutils/memfetch/pkg-descr head/sysutils/memfetch/pkg-message Modified: head/sysutils/memfetch/Makefile ============================================================================== --- head/sysutils/memfetch/Makefile Tue Jan 21 06:21:14 2014 (r340554) +++ head/sysutils/memfetch/Makefile Tue Jan 21 06:21:35 2014 (r340555) @@ -9,24 +9,20 @@ DISTNAME= ${PORTNAME} EXTRACT_SUFX= .tgz MAINTAINER= onatan@gmail.com -COMMENT= Utility to dump process memory +COMMENT= Utility to dump memory of a running process + +LICENSE= GPLv2 -WRKSRC= ${WRKDIR}/${PORTNAME} USES= perl5 USE_PERL5= run +MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" -CFLAGS+= ${CPPFLAGS} +WRKSRC= ${WRKDIR}/${PORTNAME} -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/mffind.pl ${PREFIX}/bin -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif - -post-install: - @${CAT} ${PKGMESSAGE} + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/mffind.pl ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include Modified: head/sysutils/memfetch/pkg-descr ============================================================================== --- head/sysutils/memfetch/pkg-descr Tue Jan 21 06:21:14 2014 (r340554) +++ head/sysutils/memfetch/pkg-descr Tue Jan 21 06:21:35 2014 (r340555) @@ -1,16 +1,7 @@ -Memfetch is a very simple utility that can be used to dump process memory of -any userspace process running on the system without affecting its execution. -Why bother? Well, quite often it is desirable to see what code and what data -actually resides in memory under some pid (/proc entries are not always -accurate). Debuggers like gdb are pretty good for examining small sections -of code or memory, but are pretty much useless for massive comparison, -sophisticated searches and such. It's good to be able to retrieve full -memory image to run it thru grep, strings, your favorite viewer or any other -tool. Quite obviously, I developed this code not because it's extremely -difficult to do it on your own, but because it is a valuable shell utility -for all kinds of deep hacking activities that simply saves you time. - -Memfetch is a convenient screenshot grabber for ssh or screen sessions, by -the way ;-) +Memfetch is a simple utility to dump all memory of a running process, either +immediately, or when a fault condition is discovered. It is an attractive +alternative to the vastly inferior search capabilities of many debuggers and +tracers -- and a convenient way to grab "screen shots" from many types of +text-based interactive utilities, like ssh or screen sessions. WWW: http://lcamtuf.coredump.cx/ Modified: head/sysutils/memfetch/pkg-message ============================================================================== --- head/sysutils/memfetch/pkg-message Tue Jan 21 06:21:14 2014 (r340554) +++ head/sysutils/memfetch/pkg-message Tue Jan 21 06:21:35 2014 (r340555) @@ -1,5 +1,2 @@ - -Security Warning: -This port requires that you mount procfs(5) filesystem in /proc. -Please note that this can pose a security risk. - + This port requires procfs(5) filesystem mounted under /proc. + Please note that this can pose a security risk. From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:00:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 426543FE; Tue, 21 Jan 2014 07:00:11 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0680F18C2; Tue, 21 Jan 2014 07:00:11 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 9CC68BDC6B; Tue, 21 Jan 2014 08:00:09 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 7587ABDC5A; Tue, 21 Jan 2014 08:00:09 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id A8EE9CCAD82C; Tue, 21 Jan 2014 08:00:07 +0100 (CET) Date: Tue, 21 Jan 2014 08:00:04 +0100 From: Mathieu Arnold To: Mark Felder , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340543 - in head/devel: . pear-htmlpurifier Message-ID: In-Reply-To: <201401210233.s0L2XNn0021263@svn.freebsd.org> References: <201401210233.s0L2XNn0021263@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:00:11 -0000 +--On 21 janvier 2014 02:33:23 +0000 Mark Felder wrote: | +NO_STAGE= yes Hum, I thought there was a hook that prevented anyone from adding a new port that contained NO_STAGE. -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:14:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27C6B6BC; Tue, 21 Jan 2014 07:14:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 14D191A24; Tue, 21 Jan 2014 07:14:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7ErNF030615; Tue, 21 Jan 2014 07:14:53 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7Erre030614; Tue, 21 Jan 2014 07:14:53 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210714.s0L7Erre030614@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 07:14:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340556 - head/textproc/yali X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:14:54 -0000 Author: mat Date: Tue Jan 21 07:14:53 2014 New Revision: 340556 URL: http://svnweb.freebsd.org/changeset/ports/340556 QAT: https://qat.redports.org/buildarchive/r340556/ Log: Support staging. Sponsored by: Absolight Modified: head/textproc/yali/Makefile Modified: head/textproc/yali/Makefile ============================================================================== --- head/textproc/yali/Makefile Tue Jan 21 06:21:35 2014 (r340555) +++ head/textproc/yali/Makefile Tue Jan 21 07:14:53 2014 (r340556) @@ -17,20 +17,18 @@ COMMENT= YALI: Yet Another LOLCODE Inter RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-Parse-RecDescent>=0:${PORTSDIR}/devel/p5-Parse-RecDescent -USES= perl5 +USES= perl5 dos2unix shebangfix USE_PERL5= run - -USE_DOS2UNIX= yes +SHEBANG_FILES= ${WRKSRC} NO_BUILD= yes PLIST_FILES= bin/yali -NO_STAGE= yes post-extract: @${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} ${WRKSRC} do-install: - @${INSTALL_SCRIPT} ${WRKSRC} ${PREFIX}/bin/yali + @${INSTALL_SCRIPT} ${WRKSRC} ${STAGEDIR}${PREFIX}/bin/yali .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:17:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D0427C8; Tue, 21 Jan 2014 07:17:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3982E1A3E; Tue, 21 Jan 2014 07:17:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7HANu030979; Tue, 21 Jan 2014 07:17:10 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7H9WB030975; Tue, 21 Jan 2014 07:17:09 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210717.s0L7H9WB030975@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 07:17:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340557 - head/databases/p5-DBD-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.17 Precedence: list List-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, 21 Jan 2014 07:17:10 -0000 Author: mat Date: Tue Jan 21 07:17:09 2014 New Revision: 340557 URL: http://svnweb.freebsd.org/changeset/ports/340557 QAT: https://qat.redports.org/buildarchive/r340557/ Log: Update to 4.026 PR: ports/185887 Submitted by: Kurt Jaeger Sponsored by: Absolight Modified: head/databases/p5-DBD-mysql/Makefile head/databases/p5-DBD-mysql/distinfo Modified: head/databases/p5-DBD-mysql/Makefile ============================================================================== --- head/databases/p5-DBD-mysql/Makefile Tue Jan 21 07:14:53 2014 (r340556) +++ head/databases/p5-DBD-mysql/Makefile Tue Jan 21 07:17:09 2014 (r340557) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DBD-mysql -PORTVERSION= 4.025 +PORTVERSION= 4.026 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/databases/p5-DBD-mysql/distinfo ============================================================================== --- head/databases/p5-DBD-mysql/distinfo Tue Jan 21 07:14:53 2014 (r340556) +++ head/databases/p5-DBD-mysql/distinfo Tue Jan 21 07:17:09 2014 (r340557) @@ -1,2 +1,2 @@ -SHA256 (DBD-mysql-4.025.tar.gz) = 3fed5a6c767948ff0cfa11229e40b2f984c3a9f3f866ffb15c857396784e9d43 -SIZE (DBD-mysql-4.025.tar.gz) = 135538 +SHA256 (DBD-mysql-4.026.tar.gz) = 645814beefddc9e43f3422643e80a2960055f075ca296aa30903438d2e686a42 +SIZE (DBD-mysql-4.026.tar.gz) = 137364 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:20:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 57F30960; Tue, 21 Jan 2014 07:20:06 +0000 (UTC) Date: Tue, 21 Jan 2014 07:20:06 +0000 From: Alexey Dokuchaev To: Mathieu Arnold Subject: Re: svn commit: r340556 - head/textproc/yali Message-ID: <20140121072006.GA15961@FreeBSD.org> References: <201401210714.s0L7Erre030614@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401210714.s0L7Erre030614@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 21 Jan 2014 07:20:06 -0000 On Tue, Jan 21, 2014 at 07:14:53AM +0000, Mathieu Arnold wrote: > New Revision: 340556 > URL: http://svnweb.freebsd.org/changeset/ports/340556 > QAT: https://qat.redports.org/buildarchive/r340556/ > > do-install: > - @${INSTALL_SCRIPT} ${WRKSRC} ${PREFIX}/bin/yali > + @${INSTALL_SCRIPT} ${WRKSRC} ${STAGEDIR}${PREFIX}/bin/yali Mathieu, it would be nice to unmute installation commands once you touch these lines. Muting them makes logs less useful for debugging of issues and generally leaves the impression that particular port did not install anything (i.e., WTF?!). ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:22:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71979A66; Tue, 21 Jan 2014 07:22:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5DC4C1AC3; Tue, 21 Jan 2014 07:22:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7MCeF034186; Tue, 21 Jan 2014 07:22:12 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7MCQ2034185; Tue, 21 Jan 2014 07:22:12 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210722.s0L7MCQ2034185@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 07:22:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340558 - head/textproc/libmrss X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:22:12 -0000 Author: mat Date: Tue Jan 21 07:22:11 2014 New Revision: 340558 URL: http://svnweb.freebsd.org/changeset/ports/340558 QAT: https://qat.redports.org/buildarchive/r340558/ Log: * Support staging * New LIB_DEPENDS format Sponsored by: Absolight Modified: head/textproc/libmrss/Makefile Modified: head/textproc/libmrss/Makefile ============================================================================== --- head/textproc/libmrss/Makefile Tue Jan 21 07:17:09 2014 (r340557) +++ head/textproc/libmrss/Makefile Tue Jan 21 07:22:11 2014 (r340558) @@ -10,8 +10,8 @@ MASTER_SITES= http://www.autistici.org/b MAINTAINER= clsung@FreeBSD.org COMMENT= C library for parsing, writing, and creating RSS -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl \ - nxml:${PORTSDIR}/textproc/libnxml +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ + libnxml.so:${PORTSDIR}/textproc/libnxml GNU_CONFIGURE= yes CFLAGS+= -I${LOCALBASE}/include @@ -20,5 +20,4 @@ LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes USES= pathfix pkgconfig -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:24:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9723B5B; Tue, 21 Jan 2014 07:24:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D55AF1AD5; Tue, 21 Jan 2014 07:24:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7O45d034444; Tue, 21 Jan 2014 07:24:04 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7O4kf034443; Tue, 21 Jan 2014 07:24:04 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210724.s0L7O4kf034443@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 07:24:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340559 - head/textproc/libnxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:24:05 -0000 Author: mat Date: Tue Jan 21 07:24:04 2014 New Revision: 340559 URL: http://svnweb.freebsd.org/changeset/ports/340559 QAT: https://qat.redports.org/buildarchive/r340559/ Log: Support staging. Sponsored by: Absolight Modified: head/textproc/libnxml/Makefile Modified: head/textproc/libnxml/Makefile ============================================================================== --- head/textproc/libnxml/Makefile Tue Jan 21 07:22:11 2014 (r340558) +++ head/textproc/libnxml/Makefile Tue Jan 21 07:24:04 2014 (r340559) @@ -21,7 +21,6 @@ USE_LDCONFIG= yes WANT_GNOME= yes -NO_STAGE= yes pre-patch: ${gnomehack_PRE_PATCH} From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:25:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F5C0C3F; Tue, 21 Jan 2014 07:25:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C2B41ADC; Tue, 21 Jan 2014 07:25:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7PO29034677; Tue, 21 Jan 2014 07:25:24 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7POxM034675; Tue, 21 Jan 2014 07:25:24 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210725.s0L7POxM034675@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 07:25:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340560 - head/textproc/p5-XML-Hash-LX X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:25:24 -0000 Author: mat Date: Tue Jan 21 07:25:23 2014 New Revision: 340560 URL: http://svnweb.freebsd.org/changeset/ports/340560 QAT: https://qat.redports.org/buildarchive/r340560/ Log: Support staging. Sponsored by: Absolight Modified: head/textproc/p5-XML-Hash-LX/Makefile head/textproc/p5-XML-Hash-LX/pkg-plist Modified: head/textproc/p5-XML-Hash-LX/Makefile ============================================================================== --- head/textproc/p5-XML-Hash-LX/Makefile Tue Jan 21 07:24:04 2014 (r340559) +++ head/textproc/p5-XML-Hash-LX/Makefile Tue Jan 21 07:25:23 2014 (r340560) @@ -17,7 +17,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= XML::Hash::LX.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-XML-Hash-LX/pkg-plist ============================================================================== --- head/textproc/p5-XML-Hash-LX/pkg-plist Tue Jan 21 07:24:04 2014 (r340559) +++ head/textproc/p5-XML-Hash-LX/pkg-plist Tue Jan 21 07:25:23 2014 (r340560) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/XML::Hash::LX.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Hash/LX/.packlist %%SITE_PERL%%/XML/Hash/LX.pm @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Hash/LX From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:26:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C2BED2D; Tue, 21 Jan 2014 07:26:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 87AD81AE5; Tue, 21 Jan 2014 07:26:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7QPeq034855; Tue, 21 Jan 2014 07:26:25 GMT (envelope-from martymac@svn.freebsd.org) Received: (from martymac@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7QPRm034853; Tue, 21 Jan 2014 07:26:25 GMT (envelope-from martymac@svn.freebsd.org) Message-Id: <201401210726.s0L7QPRm034853@svn.freebsd.org> From: Ganael LAPLANCHE Date: Tue, 21 Jan 2014 07:26:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340561 - in head/emulators/dolphin-emu: . 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.17 Precedence: list List-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, 21 Jan 2014 07:26:25 -0000 Author: martymac Date: Tue Jan 21 07:26:24 2014 New Revision: 340561 URL: http://svnweb.freebsd.org/changeset/ports/340561 QAT: https://qat.redports.org/buildarchive/r340561/ Log: - Remove useless USE_GCC (should fix build where Clang is the default compiler) - Use new options framework - Rename CMakeLists' USE_ICONV option to ICONV_LINK Modified: head/emulators/dolphin-emu/Makefile head/emulators/dolphin-emu/files/patch-Source-Core-DolphinWX-CMakeLists.txt Modified: head/emulators/dolphin-emu/Makefile ============================================================================== --- head/emulators/dolphin-emu/Makefile Tue Jan 21 07:25:23 2014 (r340560) +++ head/emulators/dolphin-emu/Makefile Tue Jan 21 07:26:24 2014 (r340561) @@ -27,8 +27,6 @@ USE_WX= 2.9+ WX_UNICODE= yes USE_GL= gl glew glu -USE_GCC= yes - USES= dos2unix cmake iconv openal pkgconfig DOS2UNIX_REGEX= .*\.(h|c|cpp) @@ -40,61 +38,44 @@ CMAKE_ARGS+= -DOPENMP:BOOL=OFF \ -DUSE_X11:BOOL=ON \ -DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON -OPTIONS_DEFINE= PULSEAUDIO PORTAUDIO DEBUG FRAMEDUMPS UPNP +OPTIONS_DEFINE= PULSEAUDIO PORTAUDIO DEBUG FRAMEDUMPS UPNP NLS +OPTIONS_DEFAULT= PORTAUDIO FRAMEDUMPS UPNP NLS +OPTIONS_SUB= yes +PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio +PULSEAUDIO_CMAKE_ON= -DDISABLE_PULSEAUDIO:BOOL=OFF +PULSEAUDIO_CMAKE_OFF= -DDISABLE_PULSEAUDIO:BOOL=ON PORTAUDIO_DESC= Enable PortAudio (mic) support +PORTAUDIO_LIB_DEPENDS= libportaudio.so.2:${PORTSDIR}/audio/portaudio2 +PORTAUDIO_CMAKE_ON= -DDISABLE_PORTAUDIO:BOOL=OFF +PORTAUDIO_CMAKE_OFF= -DDISABLE_PORTAUDIO:BOOL=ON +DEBUG_MAKE_ENV= VERBOSE=yes +DEBUG_CMAKE_ON= -DFASTLOG:BOOL=ON +DEBUG_CMAKE_OFF= -DFASTLOG:BOOL=OFF FRAMEDUMPS_DESC= Encode framedumps in AVI format -OPTIONS_DEFAULT= PORTAUDIO FRAMEDUMPS UPNP - -.include +FRAMEDUMPS_LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \ + libavformat.so:${PORTSDIR}/multimedia/ffmpeg \ + libswscale.so:${PORTSDIR}/multimedia/ffmpeg \ + libavutil.so:${PORTSDIR}/multimedia/ffmpeg +FRAMEDUMPS_CMAKE_ON= -DENCODE_FRAMEDUMPS:BOOL=ON +FRAMEDUMPS_CMAKE_OFF= -DENCODE_FRAMEDUMPS:BOOL=OFF +UPNP_LIB_DEPENDS= libminiupnpc.so:${PORTSDIR}/net/miniupnpc +UPNP_CMAKE_ON= -DUSE_UPNP:BOOL=ON +UPNP_CMAKE_OFF= -DUSE_UPNP:BOOL=OFF +NLS_USES= gettext +NLS_CMAKE_ON= -DDISABLE_NLS:BOOL=OFF +NLS_CMAKE_OFF= -DDISABLE_NLS:BOOL=ON -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -CMAKE_ARGS+= -DDISABLE_NLS:BOOL=ON -PLIST_SUB+= NLS="@comment " -.endif +.include +# XXX Temporary workaround for ports/184540 .if ${PORT_OPTIONS:MDEBUG} -CMAKE_ARGS+= -DFASTLOG:BOOL=ON -MAKE_ENV+= VERBOSE=yes +INSTALL_TARGET= install .endif -.if ${PORT_OPTIONS:MPULSEAUDIO} -LIB_DEPENDS+= libpulse.so:${PORTSDIR}/audio/pulseaudio -.else -CMAKE_ARGS+= -DDISABLE_PULSEAUDIO:BOOL=ON -.endif - -.if ${PORT_OPTIONS:MPORTAUDIO} -LIB_DEPENDS+= libportaudio.so.2:${PORTSDIR}/audio/portaudio2 -.else -CMAKE_ARGS+= -DDISABLE_PORTAUDIO:BOOL=ON -.endif - -.if ${PORT_OPTIONS:MFRAMEDUMPS} -CMAKE_ARGS+= -DENCODE_FRAMEDUMPS:BOOL=ON -LIB_DEPENDS+= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \ - libavformat.so:${PORTSDIR}/multimedia/ffmpeg \ - libswscale.so:${PORTSDIR}/multimedia/ffmpeg \ - libavutil.so:${PORTSDIR}/multimedia/ffmpeg -.else -CMAKE_ARGS+= -DENCODE_FRAMEDUMPS:BOOL=OFF -.endif - -.if ${PORT_OPTIONS:MUPNP} -CMAKE_ARGS+= -DUSE_UPNP:BOOL=ON -LIB_DEPENDS+= libminiupnpc.so:${PORTSDIR}/net/miniupnpc -.else -CMAKE_ARGS+= -DUSE_UPNP:BOOL=OFF -.endif - -.include - .if !empty(ICONV_LIB) -CMAKE_ARGS+= -DUSE_ICONV:BOOL=ON +CMAKE_ARGS+= -DICONV_LINK:BOOL=ON .else -CMAKE_ARGS+= -DUSE_ICONV:BOOL=OFF +CMAKE_ARGS+= -DICONV_LINK:BOOL=OFF .endif .include Modified: head/emulators/dolphin-emu/files/patch-Source-Core-DolphinWX-CMakeLists.txt ============================================================================== --- head/emulators/dolphin-emu/files/patch-Source-Core-DolphinWX-CMakeLists.txt Tue Jan 21 07:25:23 2014 (r340560) +++ head/emulators/dolphin-emu/files/patch-Source-Core-DolphinWX-CMakeLists.txt Tue Jan 21 07:26:24 2014 (r340561) @@ -14,12 +14,12 @@ else() - set(LIBS ${LIBS} png iconv) + set(LIBS ${LIBS} png) -+ set(USE_ICONV True) ++ set(ICONV_LINK True) +endif() + -+if(USE_ICONV) -+ message( "-- Adding iconv") -+ set(LIBS ${LIBS} iconv) ++if(ICONV_LINK) ++ message( "-- Linking to libiconv") ++ set(LIBS ${LIBS} iconv) endif() if(LIBAV_FOUND) From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:28:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E049AE3D; Tue, 21 Jan 2014 07:28:27 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A2C531B04; Tue, 21 Jan 2014 07:28:27 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 50C44BDC30; Tue, 21 Jan 2014 08:28:26 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 2EB7FBDC24; Tue, 21 Jan 2014 08:28:26 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 70C5CCCADEE2; Tue, 21 Jan 2014 08:28:25 +0100 (CET) Date: Tue, 21 Jan 2014 08:28:24 +0100 From: Mathieu Arnold To: Alexey Dokuchaev Subject: Re: svn commit: r340556 - head/textproc/yali Message-ID: In-Reply-To: <20140121072006.GA15961@FreeBSD.org> References: <201401210714.s0L7Erre030614@svn.freebsd.org> <20140121072006.GA15961@FreeBSD.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline 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.17 Precedence: list List-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, 21 Jan 2014 07:28:28 -0000 +--On 21 janvier 2014 07:20:06 +0000 Alexey Dokuchaev wrote: | On Tue, Jan 21, 2014 at 07:14:53AM +0000, Mathieu Arnold wrote: |> New Revision: 340556 |> URL: http://svnweb.freebsd.org/changeset/ports/340556 |> QAT: https://qat.redports.org/buildarchive/r340556/ |> |> do-install: |> - @${INSTALL_SCRIPT} ${WRKSRC} ${PREFIX}/bin/yali |> + @${INSTALL_SCRIPT} ${WRKSRC} ${STAGEDIR}${PREFIX}/bin/yali | | Mathieu, it would be nice to unmute installation commands once you touch | these lines. Muting them makes logs less useful for debugging of issues | and generally leaves the impression that particular port did not install | anything (i.e., WTF?!). Yes, it would be nice, first of the day, eyes clearly not open yet. With your copious free time don't take a directory yourself, like bapt, antoine and I are doing, and convert ports in it to do staging ? :-) -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:28:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F460F1B; Tue, 21 Jan 2014 07:28:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2BEFE1B0C; Tue, 21 Jan 2014 07:28:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7SrlN035160; Tue, 21 Jan 2014 07:28:53 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7SqQK035158; Tue, 21 Jan 2014 07:28:52 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210728.s0L7SqQK035158@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 07:28:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340562 - head/textproc/libtext-charwidth-perl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:28:53 -0000 Author: mat Date: Tue Jan 21 07:28:52 2014 New Revision: 340562 URL: http://svnweb.freebsd.org/changeset/ports/340562 QAT: https://qat.redports.org/buildarchive/r340562/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/libtext-charwidth-perl/Makefile head/textproc/libtext-charwidth-perl/pkg-plist Modified: head/textproc/libtext-charwidth-perl/Makefile ============================================================================== --- head/textproc/libtext-charwidth-perl/Makefile Tue Jan 21 07:26:24 2014 (r340561) +++ head/textproc/libtext-charwidth-perl/Makefile Tue Jan 21 07:28:52 2014 (r340562) @@ -16,9 +16,6 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USES= perl5 USE_PERL5= configure -MAN3= Text::CharWidth.3 - -NO_STAGE= yes post-extract: @${MV} ${WRKSRC}.orig ${WRKSRC} Modified: head/textproc/libtext-charwidth-perl/pkg-plist ============================================================================== --- head/textproc/libtext-charwidth-perl/pkg-plist Tue Jan 21 07:26:24 2014 (r340561) +++ head/textproc/libtext-charwidth-perl/pkg-plist Tue Jan 21 07:28:52 2014 (r340562) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::CharWidth.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/CharWidth/CharWidth.so %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/CharWidth/CharWidth.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/CharWidth/.packlist From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:35:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84849DB; Tue, 21 Jan 2014 07:35:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 576F21CA5; Tue, 21 Jan 2014 07:35:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7ZG7C038579; Tue, 21 Jan 2014 07:35:16 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7ZFIF038577; Tue, 21 Jan 2014 07:35:15 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210735.s0L7ZFIF038577@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 07:35:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340563 - head/textproc/grap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:35:16 -0000 Author: mat Date: Tue Jan 21 07:35:15 2014 New Revision: 340563 URL: http://svnweb.freebsd.org/changeset/ports/340563 QAT: https://qat.redports.org/buildarchive/r340563/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/grap/Makefile head/textproc/grap/pkg-plist Modified: head/textproc/grap/Makefile ============================================================================== --- head/textproc/grap/Makefile Tue Jan 21 07:28:52 2014 (r340562) +++ head/textproc/grap/Makefile Tue Jan 21 07:35:15 2014 (r340563) @@ -12,32 +12,27 @@ COMMENT= An implementation of Kernigan & GNU_CONFIGURE= yes CONFIGURE_ARGS=--with-freebsd-ports +OPTIONS_DEFINE= DOCS EXAMPLES + .if defined(.PARSEDIR) USE_GMAKE= yes .endif CONFLICTS_INSTALL=heirloom-doctools-[0-9]* -MAN1= grap.1 PORTDOCS= README CHANGES COPYRIGHT grap.man - -NO_STAGE= yes -.include +PORTEXAMPLES= * do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.doc \ - ${MAN1PREFIX}/man/man1/${PORTNAME}.1 - ${MKDIR} ${DATADIR} + ${STAGEDIR}${MAN1PREFIX}/man/man1/${PORTNAME}.1 + @${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/grap.defines ${WRKSRC}/grap.tex.defines \ - ${DATADIR} -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} -. for d in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/$d ${DOCSDIR} -. endfor -.endif - ${MKDIR} ${EXAMPLESDIR} - (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}) + ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include Modified: head/textproc/grap/pkg-plist ============================================================================== --- head/textproc/grap/pkg-plist Tue Jan 21 07:28:52 2014 (r340562) +++ head/textproc/grap/pkg-plist Tue Jan 21 07:35:15 2014 (r340563) @@ -1,22 +1,5 @@ bin/grap +man/man1/grap.1.gz %%DATADIR%%/grap.defines %%DATADIR%%/grap.tex.defines -%%EXAMPLESDIR%%/400mpairs.d -%%EXAMPLESDIR%%/400mtimes.d -%%EXAMPLESDIR%%/400wpairs.d -%%EXAMPLESDIR%%/Makefile -%%EXAMPLESDIR%%/army.d -%%EXAMPLESDIR%%/boyhts.d -%%EXAMPLESDIR%%/example.ms -%%EXAMPLESDIR%%/internet.d -%%EXAMPLESDIR%%/prof2.d -%%EXAMPLESDIR%%/states.d -%%EXAMPLESDIR%%/states2.d -%%EXAMPLESDIR%%/states3.d -%%EXAMPLESDIR%%/usapop.d -%%EXAMPLESDIR%%/cy_fatal.d -%%EXAMPLESDIR%%/result.SQ_MESH.Fail1.S3.R0.Global.Random1500.succ.result -%%EXAMPLESDIR%%/result.SQ_MESH.Fail1.S3.R0.Local.Random1500.succ.result -%%EXAMPLESDIR%%/result.SQ_MESH.Fail1.S3.R0.Hybrid.Random1500.succ.result -@dirrm %%EXAMPLESDIR%% @dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:38:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 371C1258; Tue, 21 Jan 2014 07:38:43 +0000 (UTC) Date: Tue, 21 Jan 2014 07:38:43 +0000 From: Alexey Dokuchaev To: Mathieu Arnold Subject: Re: svn commit: r340556 - head/textproc/yali Message-ID: <20140121073843.GA21158@FreeBSD.org> References: <201401210714.s0L7Erre030614@svn.freebsd.org> <20140121072006.GA15961@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 21 Jan 2014 07:38:43 -0000 On Tue, Jan 21, 2014 at 08:28:24AM +0100, Mathieu Arnold wrote: > +--On 21 janvier 2014 07:20:06 +0000 Alexey Dokuchaev > wrote: > | Mathieu, it would be nice to unmute installation commands once you touch > | these lines. Muting them makes logs less useful for debugging of issues > | and generally leaves the impression that particular port did not install > | anything (i.e., WTF?!). > > Yes, it would be nice, first of the day, eyes clearly not open yet. > With your copious free time don't take a directory yourself, like bapt, > antoine and I are doing, and convert ports in it to do staging ? :-) Yes, I'm planning it do this, but have some PR's to take care of first. My testing gear is a bit slow, so tinderbuilds take more time than it takes to review newly arrived portion of commit mail. :-) ./danfe From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:41:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBD69355; Tue, 21 Jan 2014 07:41:32 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8EB761D29; Tue, 21 Jan 2014 07:41:32 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 25AF0BDC30; Tue, 21 Jan 2014 08:41:31 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id F084CBDC24; Tue, 21 Jan 2014 08:41:30 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 571DDCCAE493; Tue, 21 Jan 2014 08:41:27 +0100 (CET) Date: Tue, 21 Jan 2014 08:41:25 +0100 From: Mathieu Arnold To: Joe Marcus Clarke , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340498 - in head/net/netatalk3: . files Message-ID: In-Reply-To: <201401202347.s0KNlFIL049096@svn.freebsd.org> References: <201401202347.s0KNlFIL049096@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:41:32 -0000 +--On 20 janvier 2014 23:47:15 +0000 Joe Marcus Clarke wrote: | Author: marcus | Date: Mon Jan 20 23:47:14 2014 | New Revision: 340498 | URL: http://svnweb.freebsd.org/changeset/ports/340498 | QAT: https://qat.redports.org/buildarchive/r340498/ | | Log: | Revert a bad upstream patch pertaining to varargs that continued to | plague Time Machine users. | | Submitted by: dim After this, I get : -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:47:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85FCA561; Tue, 21 Jan 2014 07:47:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 72BED1D63; Tue, 21 Jan 2014 07:47:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7lxj3042590; Tue, 21 Jan 2014 07:47:59 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7lx3h042589; Tue, 21 Jan 2014 07:47:59 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210747.s0L7lx3h042589@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 07:47:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340564 - head/textproc/dom4j X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:47:59 -0000 Author: mat Date: Tue Jan 21 07:47:58 2014 New Revision: 340564 URL: http://svnweb.freebsd.org/changeset/ports/340564 QAT: https://qat.redports.org/buildarchive/r340564/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/dom4j/Makefile Modified: head/textproc/dom4j/Makefile ============================================================================== --- head/textproc/dom4j/Makefile Tue Jan 21 07:35:15 2014 (r340563) +++ head/textproc/dom4j/Makefile Tue Jan 21 07:47:58 2014 (r340564) @@ -14,26 +14,17 @@ USE_JAVA= yes JAVA_VERSION= 1.6+ NO_BUILD= yes +OPTIONS_DEFINE= DOCS + PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar -.if !defined(NOPORTDOCS) + PORTDOCS= * -.endif -NO_STAGE= yes do-install: - @${ECHO_MSG} -n ">> Installing JAR in ${JAVAJARDIR}..." - @cd ${WRKSRC} && \ - ${INSTALL_DATA} ${PORTNAME}-${PORTVERSION}.jar \ - ${JAVAJARDIR}/${PORTNAME}.jar - @${ECHO_MSG} " [ DONE ]" -.if !defined(NOPORTDOCS) - @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..." - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/LICENSE.txt ${DOCSDIR} - @cd ${WRKSRC}/docs && ${FIND} . | \ - ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} > \ - /dev/null 2>&1 - @${ECHO_MSG} " [ DONE ]" -.endif + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-${PORTVERSION}.jar \ + ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/LICENSE.txt ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 07:50:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70A3C772; Tue, 21 Jan 2014 07:50:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5023D1DE5; Tue, 21 Jan 2014 07:50:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L7oxEm043932; Tue, 21 Jan 2014 07:50:59 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L7owng043930; Tue, 21 Jan 2014 07:50:58 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210750.s0L7owng043930@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 07:50:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340565 - head/devel/libstrfunc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 07:50:59 -0000 Author: bapt Date: Tue Jan 21 07:50:58 2014 New Revision: 340565 URL: http://svnweb.freebsd.org/changeset/ports/340565 QAT: https://qat.redports.org/buildarchive/r340565/ Log: Support stage Modified: head/devel/libstrfunc/Makefile head/devel/libstrfunc/pkg-plist Modified: head/devel/libstrfunc/Makefile ============================================================================== --- head/devel/libstrfunc/Makefile Tue Jan 21 07:47:58 2014 (r340564) +++ head/devel/libstrfunc/Makefile Tue Jan 21 07:50:58 2014 (r340565) @@ -15,27 +15,4 @@ USE_LDCONFIG= yes USE_AUTOTOOLS= libtool CONFIGURE_ARGS= --program-prefix="" -MAN3= \ - sf_cfg.3 sf_cgi.3 sf_file.3 sf_fmt.3 sf_mem.3 sf_mime.3 \ - sf_misc.3 sf_sbuf.3 sf_sed.3 sf_split.3 sf_svect.3 sf_time.3 \ - strfunc.3 libstrfunc.3 slist.3 sinit.3 svect.3 sadd.3 sadd2.3 \ - sadd_attach.3 sdel.3 sins.3 simport.3 sfree.3 sclear.3 sarray.3 \ - mkarray.3 charize.3 sfind.3 scfind.3 find.3 cfind.3 count_values.3 \ - copy_values.3 free_values.3 sget.3 scget.3 scgetp.3 scopy.3 split.3 \ - splitf.3 splitquotable.3 split_network.3 sjoin.3 join.3 param.3 \ - param2.3 params.3 set_cookie.3 cookie.3 cookies.3 html_quote.3 \ - url_encode.3 url_decode.3 getlanguageprefs.3 base64_encode.3 \ - base64_decode.3 quoted_printable_decode.3 mime_word_decode.3 \ - strtotime.3 timetostr.3 cfgread.3 cfgget.3 cfgget2.3 format_init.3 \ - format_free.3 format_metarule.3 formatf.3 format_lastsize.3 \ - format_lastresult.3 format_detach.3 sbuf.3 sbuf_init.3 sbuf_free.3 \ - sbuf_detach.3 sbuf_clear.3 sbuf_zero.3 sbuf_extend.3 sbuf_add.3 \ - sbuf_add2.3 sbuf_sprintf.3 sbuf_fetch.3 sbuf_fgets.3 sed.3 \ - sbuf_trim.3 sbuf2ptr.3 sbuf_len.3 \ - sed_compile.3 sed_exec.3 sed_free.3 initfdpos.3 initFILEpos.3 \ - adjfdpos.3 adjFILEpos.3 eq.3 ecq.3 countchar.3 countchar2.3 \ - countstr.3 replace.3 replace_detach.3 limittextwidth.3 strndup.3 \ - sf_strdup.3 sf_malloc.3 sf_calloc.3 sf_realloc.3 strfunc_ctl.3 - -NO_STAGE= yes .include Modified: head/devel/libstrfunc/pkg-plist ============================================================================== --- head/devel/libstrfunc/pkg-plist Tue Jan 21 07:47:58 2014 (r340564) +++ head/devel/libstrfunc/pkg-plist Tue Jan 21 07:50:58 2014 (r340565) @@ -18,3 +18,111 @@ lib/libstrfunc.a lib/libstrfunc.la lib/libstrfunc.so lib/libstrfunc.so.9 +man/man3/adjFILEpos.3.gz +man/man3/adjfdpos.3.gz +man/man3/base64_decode.3.gz +man/man3/base64_encode.3.gz +man/man3/cfgget.3.gz +man/man3/cfgget2.3.gz +man/man3/cfgread.3.gz +man/man3/cfind.3.gz +man/man3/charize.3.gz +man/man3/cookie.3.gz +man/man3/cookies.3.gz +man/man3/copy_values.3.gz +man/man3/count_values.3.gz +man/man3/countchar.3.gz +man/man3/countchar2.3.gz +man/man3/countstr.3.gz +man/man3/ecq.3.gz +man/man3/eq.3.gz +man/man3/find.3.gz +man/man3/format_detach.3.gz +man/man3/format_free.3.gz +man/man3/format_init.3.gz +man/man3/format_lastresult.3.gz +man/man3/format_lastsize.3.gz +man/man3/format_metarule.3.gz +man/man3/formatf.3.gz +man/man3/free_values.3.gz +man/man3/getlanguageprefs.3.gz +man/man3/html_quote.3.gz +man/man3/initFILEpos.3.gz +man/man3/initfdpos.3.gz +man/man3/join.3.gz +man/man3/libstrfunc.3.gz +man/man3/limittextwidth.3.gz +man/man3/mime_word_decode.3.gz +man/man3/mkarray.3.gz +man/man3/param.3.gz +man/man3/param2.3.gz +man/man3/params.3.gz +man/man3/quoted_printable_decode.3.gz +man/man3/replace.3.gz +man/man3/replace_detach.3.gz +man/man3/sadd.3.gz +man/man3/sadd2.3.gz +man/man3/sadd_attach.3.gz +man/man3/sarray.3.gz +man/man3/sbuf.3.gz +man/man3/sbuf2ptr.3.gz +man/man3/sbuf_add.3.gz +man/man3/sbuf_add2.3.gz +man/man3/sbuf_clear.3.gz +man/man3/sbuf_detach.3.gz +man/man3/sbuf_extend.3.gz +man/man3/sbuf_fetch.3.gz +man/man3/sbuf_fgets.3.gz +man/man3/sbuf_free.3.gz +man/man3/sbuf_init.3.gz +man/man3/sbuf_len.3.gz +man/man3/sbuf_sprintf.3.gz +man/man3/sbuf_trim.3.gz +man/man3/sbuf_zero.3.gz +man/man3/scfind.3.gz +man/man3/scget.3.gz +man/man3/scgetp.3.gz +man/man3/sclear.3.gz +man/man3/scopy.3.gz +man/man3/sdel.3.gz +man/man3/sed.3.gz +man/man3/sed_compile.3.gz +man/man3/sed_exec.3.gz +man/man3/sed_free.3.gz +man/man3/set_cookie.3.gz +man/man3/sf_calloc.3.gz +man/man3/sf_cfg.3.gz +man/man3/sf_cgi.3.gz +man/man3/sf_file.3.gz +man/man3/sf_fmt.3.gz +man/man3/sf_malloc.3.gz +man/man3/sf_mem.3.gz +man/man3/sf_mime.3.gz +man/man3/sf_misc.3.gz +man/man3/sf_realloc.3.gz +man/man3/sf_sbuf.3.gz +man/man3/sf_sed.3.gz +man/man3/sf_split.3.gz +man/man3/sf_strdup.3.gz +man/man3/sf_svect.3.gz +man/man3/sf_time.3.gz +man/man3/sfind.3.gz +man/man3/sfree.3.gz +man/man3/sget.3.gz +man/man3/simport.3.gz +man/man3/sinit.3.gz +man/man3/sins.3.gz +man/man3/sjoin.3.gz +man/man3/slist.3.gz +man/man3/split.3.gz +man/man3/split_network.3.gz +man/man3/splitf.3.gz +man/man3/splitquotable.3.gz +man/man3/strfunc.3.gz +man/man3/strfunc_ctl.3.gz +man/man3/strndup.3.gz +man/man3/strtotime.3.gz +man/man3/svect.3.gz +man/man3/timetostr.3.gz +man/man3/url_decode.3.gz +man/man3/url_encode.3.gz From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:02:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB24A985; Tue, 21 Jan 2014 08:02:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9DF8F1E83; Tue, 21 Jan 2014 08:02:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L82BNR049619; Tue, 21 Jan 2014 08:02:11 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L82BDs049617; Tue, 21 Jan 2014 08:02:11 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210802.s0L82BDs049617@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 08:02:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340566 - in head/textproc/java2html: . 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.17 Precedence: list List-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, 21 Jan 2014 08:02:11 -0000 Author: mat Date: Tue Jan 21 08:02:10 2014 New Revision: 340566 URL: http://svnweb.freebsd.org/changeset/ports/340566 QAT: https://qat.redports.org/buildarchive/r340566/ Log: * Convert to staging * Add license * Rename patch to follow makepatch naming Sponsored by: Absolight Added: head/textproc/java2html/files/patch-Makefile.in - copied, changed from r340556, head/textproc/java2html/files/patch-aa Deleted: head/textproc/java2html/files/patch-aa head/textproc/java2html/pkg-plist Modified: head/textproc/java2html/Makefile Modified: head/textproc/java2html/Makefile ============================================================================== --- head/textproc/java2html/Makefile Tue Jan 21 07:50:58 2014 (r340565) +++ head/textproc/java2html/Makefile Tue Jan 21 08:02:10 2014 (r340566) @@ -11,17 +11,15 @@ MASTER_SITE_SUBDIR= apps/www/converters MAINTAINER= mkamm@gmx.net COMMENT= Java sources to HTML converter +LICENSE= GPLv2 + USE_AUTOTOOLS= autoconf213 -NO_STAGE= yes -MAN1= java2html.1 +PORTDOCS= AUTHORS NEWS README +PLIST_FILES= bin/java2html man/man1/java2html.1.gz -.if !defined(NOPORTDOCS) post-install: - ${MKDIR} ${DOCSDIR} -.for file in AUTHORS NEWS README - ${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR} -.endfor -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include Copied and modified: head/textproc/java2html/files/patch-Makefile.in (from r340556, head/textproc/java2html/files/patch-aa) ============================================================================== --- head/textproc/java2html/files/patch-aa Tue Jan 21 07:14:53 2014 (r340556, copy source) +++ head/textproc/java2html/files/patch-Makefile.in Tue Jan 21 08:02:10 2014 (r340566) @@ -1,5 +1,5 @@ ---- Makefile.in.orig Sat Apr 15 17:16:30 2000 -+++ Makefile.in Sun Apr 23 15:46:41 2000 +--- ./Makefile.in.orig 2000-05-02 19:13:52.000000000 +0200 ++++ ./Makefile.in 2014-01-21 08:57:35.000000000 +0100 @@ -27,7 +27,7 @@ # for gzip because otherwise the load on the web server # grows without having big benefits. @@ -9,7 +9,16 @@ # Dont change things beyond this line. TARGET = @PROJECT_NAME@ -@@ -59,7 +59,7 @@ +@@ -52,14 +52,14 @@ + INSTALL_DATA = @INSTALL_DATA@ + prefix = @prefix@ + exec_prefix = ${prefix} +-bindir = @bindir@ ++bindir = ${DESTDIR}@bindir@ + mandir = @mandir@ +-man1dir = @mandir@/man1 ++man1dir = ${DESTDIR}@mandir@/man1 + srcdir = @srcdir@ docdir = @DOCDIR@ CPPFLAGS = @CPPFLAGS@ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:05:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15E46B67; Tue, 21 Jan 2014 08:05:43 +0000 (UTC) Received: from mail-we0-x236.google.com (mail-we0-x236.google.com [IPv6:2a00:1450:400c:c03::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2F1211EA5; Tue, 21 Jan 2014 08:05:42 +0000 (UTC) Received: by mail-we0-f182.google.com with SMTP id w62so7643748wes.41 for ; Tue, 21 Jan 2014 00:05:40 -0800 (PST) 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=gpGdslpIgSvTowdmzcjkRPtkiEktCZFARR7x/CQIspE=; b=EwTJMGQSdaLzjMk3COQs3OHLqOVwcRV3ocgUMecAR6Me3KvC1bITK8GNsLDi0y/Gzd J0g7G6/a8jxe2x+EsT1xUs2E666tpAjR1x4UVsJeX9oMPK6RJmnA9tXl84eyC1gcx8/j 33zLJ7nqjEGqum+Lp8QEbo+p1xqbdm9smOETlka69uFjbalv4iMhsWQqca2odqfp09Wn mUIu7GBaaizRP7Zkb8uvRvUJZ4d0O+ONTUKCbeTNfw34czUWrQUvunxfrxRaSRGK1w/N OA0Wmj+p92eg/7h0mGKKamvbHQ7WNuZ/VC2mLCAslO5hcdL0+PftBWYoDmO0z0jitJYx sZ7w== X-Received: by 10.180.86.9 with SMTP id l9mr13374338wiz.20.1390291540643; Tue, 21 Jan 2014 00:05:40 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id p1sm8574175wie.1.2014.01.21.00.05.39 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 21 Jan 2014 00:05:39 -0800 (PST) Sender: Baptiste Daroussin Date: Tue, 21 Jan 2014 09:05:37 +0100 From: Baptiste Daroussin To: Mark Felder Subject: Re: svn commit: r340543 - in head/devel: . pear-htmlpurifier Message-ID: <20140121080537.GN78580@ithaqua.etoilebsd.net> References: <201401210233.s0L2XNn0021263@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="20XocjIeMTCm4X0r" Content-Disposition: inline In-Reply-To: <201401210233.s0L2XNn0021263@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.17 Precedence: list List-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, 21 Jan 2014 08:05:43 -0000 --20XocjIeMTCm4X0r Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 21, 2014 at 02:33:23AM +0000, Mark Felder wrote: > Author: feld > Date: Tue Jan 21 02:33:23 2014 > New Revision: 340543 > URL: http://svnweb.freebsd.org/changeset/ports/340543 > QAT: https://qat.redports.org/buildarchive/r340543/ >=20 > Log: > HTML Purifier is a standards compliant HTML filter library written in > PHP > =20 > Approved by: swills (mentor) [snip] >=20 > +PEAR_AUTOINSTALL=3D yes > +NO_STAGE=3D yes > + It has been repeated a couple of time already: Do not add a port with NO_STAGE!!!!! We are spending lot of time trying to stage the whole ports tree, adding not staged port is just ruining that effort. regards, Bapt --20XocjIeMTCm4X0r Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (FreeBSD) iEYEARECAAYFAlLeKlEACgkQ8kTtMUmk6Ez8LQCfdritEypST1RRyf2yHeHl7P8o PvAAoIYtuaH7SxBTH81hfBkOA1EWmXcr =GBni -----END PGP SIGNATURE----- --20XocjIeMTCm4X0r-- From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:06:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B6B7C40; Tue, 21 Jan 2014 08:06:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 07BC61EA9; Tue, 21 Jan 2014 08:06:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L86SS7050388; Tue, 21 Jan 2014 08:06:28 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L86SD2050385; Tue, 21 Jan 2014 08:06:28 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210806.s0L86SD2050385@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 08:06:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340568 - head/textproc/utf8proc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:06:29 -0000 Author: mat Date: Tue Jan 21 08:06:28 2014 New Revision: 340568 URL: http://svnweb.freebsd.org/changeset/ports/340568 QAT: https://qat.redports.org/buildarchive/r340568/ Log: * Convert to staging * Pet portlint Sponsored by: Absolight Modified: head/textproc/utf8proc/Makefile head/textproc/utf8proc/pkg-descr Modified: head/textproc/utf8proc/Makefile ============================================================================== --- head/textproc/utf8proc/Makefile Tue Jan 21 08:02:46 2014 (r340567) +++ head/textproc/utf8proc/Makefile Tue Jan 21 08:06:28 2014 (r340568) @@ -15,11 +15,10 @@ ALL_TARGET= c-library USE_LDCONFIG= yes -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/libutf8proc.so ${PREFIX}/lib/libutf8proc.so.1 - ${INSTALL_DATA} ${WRKSRC}/libutf8proc.a ${PREFIX}/lib - ${INSTALL_DATA} ${WRKSRC}/utf8proc.h ${PREFIX}/include - ${LN} -sf ${PREFIX}/lib/libutf8proc.so.0 ${PREFIX}/lib/libutf8proc.so + ${INSTALL_PROGRAM} ${WRKSRC}/libutf8proc.so ${STAGEDIR}${PREFIX}/lib/libutf8proc.so.1 + ${INSTALL_DATA} ${WRKSRC}/libutf8proc.a ${STAGEDIR}${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/utf8proc.h ${STAGEDIR}${PREFIX}/include + ${LN} -sf libutf8proc.so.0 ${STAGEDIR}${PREFIX}/lib/libutf8proc.so .include Modified: head/textproc/utf8proc/pkg-descr ============================================================================== --- head/textproc/utf8proc/pkg-descr Tue Jan 21 08:02:46 2014 (r340567) +++ head/textproc/utf8proc/pkg-descr Tue Jan 21 08:06:28 2014 (r340568) @@ -6,4 +6,4 @@ characters "Hyphen" (U+2010), "Minus" (U "Hyphen-Minus" (U+002D, ASCII Minus) all into the ASCII minus sign, to make them equal for comparisons. -WWW: http://www.flexiguided.de/publications.utf8proc.en.html +WWW: http://www.flexiguided.de/publications.utf8proc.en.html From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:07:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABBFCD1E; Tue, 21 Jan 2014 08:07:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9826A1EB0; Tue, 21 Jan 2014 08:07:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L87F7R050575; Tue, 21 Jan 2014 08:07:15 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L87FrV050574; Tue, 21 Jan 2014 08:07:15 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210807.s0L87FrV050574@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 08:07:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340569 - head/devel/avro-c X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:07:15 -0000 Author: bapt Date: Tue Jan 21 08:07:15 2014 New Revision: 340569 URL: http://svnweb.freebsd.org/changeset/ports/340569 QAT: https://qat.redports.org/buildarchive/r340569/ Log: Support stage Modified: head/devel/avro-c/Makefile Modified: head/devel/avro-c/Makefile ============================================================================== --- head/devel/avro-c/Makefile Tue Jan 21 08:06:28 2014 (r340568) +++ head/devel/avro-c/Makefile Tue Jan 21 08:07:15 2014 (r340569) @@ -17,10 +17,8 @@ USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${DISTNAME}/lang/c -NO_STAGE= yes -.include pre-configure: @${REINPLACE_CMD} 's|/bin/bash|/bin/sh|g' \ ${WRKSRC}/version.sh -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:11:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59421E78; Tue, 21 Jan 2014 08:11:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 454E31F33; Tue, 21 Jan 2014 08:11:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8BdBq053968; Tue, 21 Jan 2014 08:11:39 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8BdBE053967; Tue, 21 Jan 2014 08:11:39 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210811.s0L8BdBE053967@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 08:11:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340570 - head/devel/avro-cpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:11:39 -0000 Author: bapt Date: Tue Jan 21 08:11:38 2014 New Revision: 340570 URL: http://svnweb.freebsd.org/changeset/ports/340570 QAT: https://qat.redports.org/buildarchive/r340570/ Log: Support stage Python is a buildonly dependency Modified: head/devel/avro-cpp/Makefile Modified: head/devel/avro-cpp/Makefile ============================================================================== --- head/devel/avro-cpp/Makefile Tue Jan 21 08:07:15 2014 (r340569) +++ head/devel/avro-cpp/Makefile Tue Jan 21 08:11:38 2014 (r340570) @@ -3,6 +3,7 @@ PORTNAME= avro PORTVERSION= 1.7.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.sai.msu.su/apache/${PORTNAME}/${PORTNAME}-${PORTVERSION}/ \ APACHE @@ -17,12 +18,10 @@ LIB_DEPENDS= libboost_regex.so:${PORTSDI USES= cmake USE_LDCONFIG= yes -USE_PYTHON= yes +USE_PYTHON_BUILD= yes WRKSRC= ${WRKDIR}/${DISTNAME}/lang/c++ -NO_STAGE= yes - post-patch: @${REINPLACE_CMD} -e 's|COMMAND python|COMMAND "${PYTHON_CMD}"|' \ ${WRKSRC}/CMakeLists.txt From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:11:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2658BE7B; Tue, 21 Jan 2014 08:11:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 12D3E1F36; Tue, 21 Jan 2014 08:11:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8Biep054046; Tue, 21 Jan 2014 08:11:44 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8BimK054045; Tue, 21 Jan 2014 08:11:44 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210811.s0L8BimK054045@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 08:11:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340571 - head/textproc/markdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:11:45 -0000 Author: mat Date: Tue Jan 21 08:11:44 2014 New Revision: 340571 URL: http://svnweb.freebsd.org/changeset/ports/340571 QAT: https://qat.redports.org/buildarchive/r340571/ Log: * Convert to staging * Add license Sponsored by: Absolight Modified: head/textproc/markdown/Makefile Modified: head/textproc/markdown/Makefile ============================================================================== --- head/textproc/markdown/Makefile Tue Jan 21 08:11:38 2014 (r340570) +++ head/textproc/markdown/Makefile Tue Jan 21 08:11:44 2014 (r340571) @@ -11,24 +11,23 @@ DISTNAME= Markdown_${PORTVERSION} MAINTAINER= tobez@FreeBSD.org COMMENT= A text-to-HTML conversion tool for web writers +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/License.text + USE_ZIP= yes NO_BUILD= yes USES= shebangfix perl5 SHEBANG_FILES= Markdown.pl -.if !defined(NOPORTDOCS) -PORTDOCS= License.text Markdown-Readme.text -.endif +OPTIONS_DEFINE= DOCS + +PORTDOCS= Markdown-Readme.text PLIST_FILES= bin/markdown -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/Markdown.pl ${PREFIX}/bin/markdown -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} "${WRKSRC}/License.text" ${DOCSDIR}/License.text - ${INSTALL_DATA} "${WRKSRC}/Markdown Readme.text" ${DOCSDIR}/Markdown-Readme.text -.endif + ${INSTALL_SCRIPT} ${WRKSRC}/Markdown.pl ${STAGEDIR}${PREFIX}/bin/markdown + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} "${WRKSRC}/Markdown Readme.text" ${STAGEDIR}${DOCSDIR}/Markdown-Readme.text .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:14:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 166EB1AC; Tue, 21 Jan 2014 08:14:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 028D41F5F; Tue, 21 Jan 2014 08:14:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8EHhl054495; Tue, 21 Jan 2014 08:14:17 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8EHLU054493; Tue, 21 Jan 2014 08:14:17 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210814.s0L8EHLU054493@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 08:14:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340572 - head/devel/py-avro X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:14:18 -0000 Author: bapt Date: Tue Jan 21 08:14:17 2014 New Revision: 340572 URL: http://svnweb.freebsd.org/changeset/ports/340572 QAT: https://qat.redports.org/buildarchive/r340572/ Log: Support stage use PDISTUTILS_AUTOPLIST Modified: head/devel/py-avro/Makefile Modified: head/devel/py-avro/Makefile ============================================================================== --- head/devel/py-avro/Makefile Tue Jan 21 08:11:44 2014 (r340571) +++ head/devel/py-avro/Makefile Tue Jan 21 08:14:17 2014 (r340572) @@ -13,15 +13,12 @@ DISTNAME= ${PORTNAME}-src-${PORTVERSION} MAINTAINER= vg@FreeBSD.org COMMENT= Data serialization system for python -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes USE_PYTHON= yes - -PLIST_FILES= bin/avro \ - %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% +PYDISTUTILS_AUTOPLIST= yes WRKSRC= ${WRKDIR}/${DISTNAME}/lang/py -NO_STAGE= yes pre-configure: ${REINPLACE_CMD} 's|@AVRO_VERSION@|${PORTVERSION}|g' \ ${WRKSRC}/setup.py From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:14:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7BE5F28B; Tue, 21 Jan 2014 08:14:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 683891F68; Tue, 21 Jan 2014 08:14:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8Ex5s054645; Tue, 21 Jan 2014 08:14:59 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8ExTj054644; Tue, 21 Jan 2014 08:14:59 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210814.s0L8ExTj054644@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 08:14:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340573 - head/devel/avro X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:14:59 -0000 Author: bapt Date: Tue Jan 21 08:14:58 2014 New Revision: 340573 URL: http://svnweb.freebsd.org/changeset/ports/340573 QAT: https://qat.redports.org/buildarchive/r340573/ Log: Support stage Use options helpers Modified: head/devel/avro/Makefile Modified: head/devel/avro/Makefile ============================================================================== --- head/devel/avro/Makefile Tue Jan 21 08:14:17 2014 (r340572) +++ head/devel/avro/Makefile Tue Jan 21 08:14:58 2014 (r340573) @@ -12,6 +12,8 @@ MAINTAINER= vg@FreeBSD.org COMMENT= Data serialization system NO_BUILD= yes +NO_MTREE= yes +NO_INSTALL= yes OPTIONS_DEFINE= C CPP PYTHON C_DESC= Install ANSI C library @@ -20,21 +22,8 @@ PYTHON_DESC= Install Python library OPTIONS_DEFAULT=C CPP PYTHON -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MC} -LIB_DEPENDS+= avro:${PORTSDIR}/devel/avro-c -.endif - -.if ${PORT_OPTIONS:MCPP} -LIB_DEPENDS+= avrocpp:${PORTSDIR}/devel/avro-cpp -.endif - -.if ${PORT_OPTIONS:MPYTHON} -BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}avro:${PORTSDIR}/devel/py-avro -.endif - -do-install: # empty +MC_LIB_DEPENDS= libavro.so:${PORTSDIR}/devel/avro-c +CPP_LIB_DEPENDS= libavrocpp.so:${PORTSDIR}/devel/avro-cpp +PYTHON_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}avro:${PORTSDIR}/devel/py-avro .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:17:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECB5F37E; Tue, 21 Jan 2014 08:17:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D93DB1F7A; Tue, 21 Jan 2014 08:17:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8H0Sa054987; Tue, 21 Jan 2014 08:17:00 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8H0x1054981; Tue, 21 Jan 2014 08:17:00 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401210817.s0L8H0x1054981@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 08:17:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340574 - head/textproc/p5-Text-Table X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:17:01 -0000 Author: mat Date: Tue Jan 21 08:17:00 2014 New Revision: 340574 URL: http://svnweb.freebsd.org/changeset/ports/340574 QAT: https://qat.redports.org/buildarchive/r340574/ Log: * Support staging * Add license Sponsored by: Absolight Modified: head/textproc/p5-Text-Table/Makefile head/textproc/p5-Text-Table/pkg-plist Modified: head/textproc/p5-Text-Table/Makefile ============================================================================== --- head/textproc/p5-Text-Table/Makefile Tue Jan 21 08:14:58 2014 (r340573) +++ head/textproc/p5-Text-Table/Makefile Tue Jan 21 08:17:00 2014 (r340574) @@ -10,13 +10,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= miwi@FreeBSD.org COMMENT= Organize Data in Tables +LICENSE= ISCL +LICENSE_FILE= ${WRKSRC}/LICENSE + BUILD_DEPENDS= p5-Text-Aligner>=0.05:${PORTSDIR}/textproc/p5-Text-Aligner RUN_DEPENDS= p5-Text-Aligner>=0.05:${PORTSDIR}/textproc/p5-Text-Aligner USES= perl5 USE_PERL5= configure -MAN3= Text::Table.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Table/pkg-plist ============================================================================== --- head/textproc/p5-Text-Table/pkg-plist Tue Jan 21 08:14:58 2014 (r340573) +++ head/textproc/p5-Text-Table/pkg-plist Tue Jan 21 08:17:00 2014 (r340574) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Table.3.gz %%SITE_PERL%%/Text/Table.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Table/.packlist @dirrmtry %%SITE_PERL%%/Text From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:20:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5EC71492; Tue, 21 Jan 2014 08:20:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4ABBF1F90; Tue, 21 Jan 2014 08:20:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8K9A0055499; Tue, 21 Jan 2014 08:20:09 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8K8o8055497; Tue, 21 Jan 2014 08:20:08 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210820.s0L8K8o8055497@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 08:20:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340575 - in head/devel/libtar: . 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.17 Precedence: list List-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, 21 Jan 2014 08:20:09 -0000 Author: bapt Date: Tue Jan 21 08:20:08 2014 New Revision: 340575 URL: http://svnweb.freebsd.org/changeset/ports/340575 QAT: https://qat.redports.org/buildarchive/r340575/ Log: Support stage Deleted: head/devel/libtar/files/manpages Modified: head/devel/libtar/Makefile head/devel/libtar/pkg-plist Modified: head/devel/libtar/Makefile ============================================================================== --- head/devel/libtar/Makefile Tue Jan 21 08:17:00 2014 (r340574) +++ head/devel/libtar/Makefile Tue Jan 21 08:20:08 2014 (r340575) @@ -8,20 +8,16 @@ CATEGORIES= devel MASTER_SITES= ftp://ftp.feep.net/pub/software/libtar/ MAINTAINER= manuelj.munoz@gmail.com -COMMENT= A library for manipulating POSIX and GNU tar files +COMMENT= library for manipulating POSIX and GNU tar files -USE_GMAKE= yes -GNU_CONFIGURE= yes +USES= gmake +GNU_CONFIGURE= yes USE_LDCONFIG= yes -NO_STAGE= yes -post-install: - ${INSTALL_DATA} ${WRKSRC}/lib/libtar.so.0 ${PREFIX}/lib - ${LN} -sf libtar.so.0 ${PREFIX}/lib/libtar.so - -.include -.include "files/manpages" - CPPFLAGS+= -fPIC -.include +post-install: + ${INSTALL_LIB} ${WRKSRC}/lib/libtar.so.0 ${STAGEDIR}${PREFIX}/lib + ${LN} -sf libtar.so.0 ${STAGEDIR}${PREFIX}/lib/libtar.so + +.include Modified: head/devel/libtar/pkg-plist ============================================================================== --- head/devel/libtar/pkg-plist Tue Jan 21 08:17:00 2014 (r340574) +++ head/devel/libtar/pkg-plist Tue Jan 21 08:20:08 2014 (r340575) @@ -4,3 +4,75 @@ include/libtar_listhash.h lib/libtar.a lib/libtar.so lib/libtar.so.0 +man/man3/TH_ISBLK.3.gz +man/man3/TH_ISCHR.3.gz +man/man3/TH_ISDIR.3.gz +man/man3/TH_ISFIFO.3.gz +man/man3/TH_ISLNK.3.gz +man/man3/TH_ISLONGLINK.3.gz +man/man3/TH_ISLONGNAME.3.gz +man/man3/TH_ISREG.3.gz +man/man3/TH_ISSYM.3.gz +man/man3/libtar_hash_add.3.gz +man/man3/libtar_hash_del.3.gz +man/man3/libtar_hash_free.3.gz +man/man3/libtar_hash_getkey.3.gz +man/man3/libtar_hash_new.3.gz +man/man3/libtar_hash_next.3.gz +man/man3/libtar_hash_prev.3.gz +man/man3/libtar_hash_search.3.gz +man/man3/libtar_list_add.3.gz +man/man3/libtar_list_add_str.3.gz +man/man3/libtar_list_del.3.gz +man/man3/libtar_list_dup.3.gz +man/man3/libtar_list_free.3.gz +man/man3/libtar_list_merge.3.gz +man/man3/libtar_list_new.3.gz +man/man3/libtar_list_next.3.gz +man/man3/libtar_list_prev.3.gz +man/man3/libtar_list_search.3.gz +man/man3/tar_append_eof.3.gz +man/man3/tar_append_file.3.gz +man/man3/tar_append_regfile.3.gz +man/man3/tar_append_tree.3.gz +man/man3/tar_block_read.3.gz +man/man3/tar_block_write.3.gz +man/man3/tar_close.3.gz +man/man3/tar_extract_all.3.gz +man/man3/tar_extract_blockdev.3.gz +man/man3/tar_extract_chardev.3.gz +man/man3/tar_extract_dir.3.gz +man/man3/tar_extract_fifo.3.gz +man/man3/tar_extract_file.3.gz +man/man3/tar_extract_glob.3.gz +man/man3/tar_extract_hardlink.3.gz +man/man3/tar_extract_regfile.3.gz +man/man3/tar_extract_symlink.3.gz +man/man3/tar_fd.3.gz +man/man3/tar_fdopen.3.gz +man/man3/tar_open.3.gz +man/man3/tar_set_file_perms.3.gz +man/man3/tar_skip_regfile.3.gz +man/man3/th_finish.3.gz +man/man3/th_get_crc.3.gz +man/man3/th_get_devmajor.3.gz +man/man3/th_get_devminor.3.gz +man/man3/th_get_gid.3.gz +man/man3/th_get_linkname.3.gz +man/man3/th_get_mode.3.gz +man/man3/th_get_mtime.3.gz +man/man3/th_get_pathname.3.gz +man/man3/th_get_size.3.gz +man/man3/th_get_uid.3.gz +man/man3/th_print.3.gz +man/man3/th_print_long_ls.3.gz +man/man3/th_read.3.gz +man/man3/th_set_device.3.gz +man/man3/th_set_from_stat.3.gz +man/man3/th_set_group.3.gz +man/man3/th_set_link.3.gz +man/man3/th_set_mode.3.gz +man/man3/th_set_path.3.gz +man/man3/th_set_type.3.gz +man/man3/th_set_user.3.gz +man/man3/th_write.3.gz From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:24:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E0D0731; Tue, 21 Jan 2014 08:24:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 09ECD1026; Tue, 21 Jan 2014 08:24:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8Okf3058669; Tue, 21 Jan 2014 08:24:46 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8OktB058668; Tue, 21 Jan 2014 08:24:46 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201401210824.s0L8OktB058668@svn.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 21 Jan 2014 08:24:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340576 - head/devel/py-protobuf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:24:47 -0000 Author: vanilla Date: Tue Jan 21 08:24:46 2014 New Revision: 340576 URL: http://svnweb.freebsd.org/changeset/ports/340576 QAT: https://qat.redports.org/buildarchive/r340576/ Log: Support STAGEDIR. Deleted: head/devel/py-protobuf/pkg-plist Modified: head/devel/py-protobuf/Makefile Modified: head/devel/py-protobuf/Makefile ============================================================================== --- head/devel/py-protobuf/Makefile Tue Jan 21 08:20:08 2014 (r340575) +++ head/devel/py-protobuf/Makefile Tue Jan 21 08:24:46 2014 (r340576) @@ -16,9 +16,9 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER PROJECTHOST= protobuf USE_BZIP2= yes USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes pre-build: @${MKDIR} ${WRKSRC}/google/protobuf/compiler From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:25:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABC4F813; Tue, 21 Jan 2014 08:25:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 97DE51030; Tue, 21 Jan 2014 08:25:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8PGOC058828; Tue, 21 Jan 2014 08:25:16 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8PGtN058827; Tue, 21 Jan 2014 08:25:16 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210825.s0L8PGtN058827@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 08:25:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340577 - head/devel/libtpl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:25:16 -0000 Author: bapt Date: Tue Jan 21 08:25:16 2014 New Revision: 340577 URL: http://svnweb.freebsd.org/changeset/ports/340577 QAT: https://qat.redports.org/buildarchive/r340577/ Log: Support stage Modified: head/devel/libtpl/Makefile Modified: head/devel/libtpl/Makefile ============================================================================== --- head/devel/libtpl/Makefile Tue Jan 21 08:24:46 2014 (r340576) +++ head/devel/libtpl/Makefile Tue Jan 21 08:25:16 2014 (r340577) @@ -9,6 +9,8 @@ MASTER_SITES= GH MAINTAINER= culot@FreeBSD.org COMMENT= Tpl is a library for serializing C data +OPTIONS_DEFINE= DOCS + LICENSE= BSD USE_BZIP2= yes @@ -27,15 +29,10 @@ PLIST_FILES= lib/libtpl.la lib/libtpl.a PORTDOCS= ChangeLog.txt examples.txt userguide.txt compiling.txt -NO_STAGE= yes -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:27:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5C0691E; Tue, 21 Jan 2014 08:27:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D17AE106B; Tue, 21 Jan 2014 08:27:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8RHph059120; Tue, 21 Jan 2014 08:27:17 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8RHba059117; Tue, 21 Jan 2014 08:27:17 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210827.s0L8RHba059117@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 08:27:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340578 - head/devel/libuninum X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:27:18 -0000 Author: bapt Date: Tue Jan 21 08:27:17 2014 New Revision: 340578 URL: http://svnweb.freebsd.org/changeset/ports/340578 QAT: https://qat.redports.org/buildarchive/r340578/ Log: Support stage Modified: head/devel/libuninum/Makefile head/devel/libuninum/pkg-plist (contents, props changed) Modified: head/devel/libuninum/Makefile ============================================================================== --- head/devel/libuninum/Makefile Tue Jan 21 08:25:16 2014 (r340577) +++ head/devel/libuninum/Makefile Tue Jan 21 08:27:17 2014 (r340578) @@ -10,16 +10,13 @@ MASTER_SITES= http://billposer.org/Softw MAINTAINER= clsung@FreeBSD.org COMMENT= Library for converting Unicode strings to numbers -LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp GNU_CONFIGURE= yes MAKE_ENV+= INCLUDES="-I${LOCALBASE}/include" LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes -MAN1= numconv.1 - -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e 's|uninum/||' ${WRKSRC}/uninum.c ${WRKSRC}/numconv.c Modified: head/devel/libuninum/pkg-plist ============================================================================== --- head/devel/libuninum/pkg-plist Tue Jan 21 08:25:16 2014 (r340577) +++ head/devel/libuninum/pkg-plist Tue Jan 21 08:27:17 2014 (r340578) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/NumberConverter.tcl bin/numconv include/uninum/uninum.h @@ -7,4 +6,5 @@ include/uninum/unicode.h lib/libuninum.so.7 lib/libuninum.so lib/libuninum.a +man/man1/numconv.1.gz @dirrmtry include/uninum From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:28:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CAD89A1C; Tue, 21 Jan 2014 08:28:35 +0000 (UTC) Received: from forward5l.mail.yandex.net (forward5l.mail.yandex.net [IPv6:2a02:6b8:0:1819::5]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F57F1096; Tue, 21 Jan 2014 08:28:35 +0000 (UTC) Received: from smtp3h.mail.yandex.net (smtp3h.mail.yandex.net [84.201.186.20]) by forward5l.mail.yandex.net (Yandex) with ESMTP id 10903C40DA9; Tue, 21 Jan 2014 12:28:32 +0400 (MSK) Received: from smtp3h.mail.yandex.net (localhost [127.0.0.1]) by smtp3h.mail.yandex.net (Yandex) with ESMTP id 8B16A1B41F6C; Tue, 21 Jan 2014 12:28:32 +0400 (MSK) Received: from unknown (unknown [77.66.224.37]) by smtp3h.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id J6c6B8Z7SB-SVlC5S3T; Tue, 21 Jan 2014 12:28:32 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: 90d60c94-e553-4281-9c87-c7d8e7c5dcc1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390292912; bh=mNwZBhlWKBbQNkHRU0WyNzjMYqpU4O4/qkJwMFlXMDQ=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=MKHLGf3vorN2G58M1235JK3pG6ihv20Uk7VpklQO0FmXno7MFR///wZ92fXBRdo0p K8wL63Qgwoo6RXkqD9bhB4ARFuR4ZTXDbiJNf2egpASLswwPXfMDbliASc6V9N3aGC 4VG5hg1nXvUfuoUmsJlVbIBUXnH7aNTWAXSy8X7E= Authentication-Results: smtp3h.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52DE2FAD.8020307@yandex.ru> Date: Tue, 21 Jan 2014 12:28:29 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: "Vanilla I. Shu" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340576 - head/devel/py-protobuf References: <201401210824.s0L8OktB058668@svn.freebsd.org> In-Reply-To: <201401210824.s0L8OktB058668@svn.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:28:35 -0000 Vanilla I. Shu wrote on 21.01.2014 12:24: > Author: vanilla > Date: Tue Jan 21 08:24:46 2014 > New Revision: 340576 > URL: http://svnweb.freebsd.org/changeset/ports/340576 > QAT: https://qat.redports.org/buildarchive/r340576/ > > Log: > Support STAGEDIR. > > Deleted: > head/devel/py-protobuf/pkg-plist > Modified: > head/devel/py-protobuf/Makefile > > Modified: head/devel/py-protobuf/Makefile > ============================================================================== > --- head/devel/py-protobuf/Makefile Tue Jan 21 08:20:08 2014 (r340575) > +++ head/devel/py-protobuf/Makefile Tue Jan 21 08:24:46 2014 (r340576) > @@ -16,9 +16,9 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER > PROJECTHOST= protobuf > USE_BZIP2= yes > USE_PYTHON= yes > -USE_PYDISTUTILS= easy_install > +USE_PYDISTUTILS= yes > +PYDISTUTILS_AUTOPLIST= yes > > -NO_STAGE= yes > pre-build: > @${MKDIR} ${WRKSRC}/google/protobuf/compiler > Please note, that this change requires portrevision bump, because before this change the package installed [zipped] egg, and now it installs extracted plain tree. -- Regards, Ruslan T.O.S. Of Reality From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:30:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96591F43; Tue, 21 Jan 2014 08:30:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 82DA71117; Tue, 21 Jan 2014 08:30:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8UJCP059602; Tue, 21 Jan 2014 08:30:19 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8UJEf059601; Tue, 21 Jan 2014 08:30:19 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210830.s0L8UJEf059601@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 08:30:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340579 - head/devel/libytnef X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:30:19 -0000 Author: bapt Date: Tue Jan 21 08:30:18 2014 New Revision: 340579 URL: http://svnweb.freebsd.org/changeset/ports/340579 QAT: https://qat.redports.org/buildarchive/r340579/ Log: Support stage Modified: head/devel/libytnef/Makefile Modified: head/devel/libytnef/Makefile ============================================================================== --- head/devel/libytnef/Makefile Tue Jan 21 08:27:17 2014 (r340578) +++ head/devel/libytnef/Makefile Tue Jan 21 08:30:18 2014 (r340579) @@ -10,17 +10,16 @@ MASTER_SITES= SF/ytnef/${PORTNAME}/${POR MAINTAINER= delphus@gmail.com COMMENT= Unpack data in MS Outlook TNEF format +OPTIONS_DEFINE= DOCS + GNU_CONFIGURE= yes USE_AUTOTOOLS= libtool USE_LDCONFIG= yes PORTDOCS= AUTHORS NEWS README -NO_STAGE= yes post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:31:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8885CB6; Tue, 21 Jan 2014 08:31:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 74D6E1180; Tue, 21 Jan 2014 08:31:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8V971061908; Tue, 21 Jan 2014 08:31:09 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8V94R061907; Tue, 21 Jan 2014 08:31:09 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210831.s0L8V94R061907@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 08:31:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340580 - head/devel/lndir X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:31:09 -0000 Author: bapt Date: Tue Jan 21 08:31:08 2014 New Revision: 340580 URL: http://svnweb.freebsd.org/changeset/ports/340580 QAT: https://qat.redports.org/buildarchive/r340580/ Log: Support stage Modified: head/devel/lndir/Makefile Modified: head/devel/lndir/Makefile ============================================================================== --- head/devel/lndir/Makefile Tue Jan 21 08:30:18 2014 (r340579) +++ head/devel/lndir/Makefile Tue Jan 21 08:31:08 2014 (r340580) @@ -11,9 +11,7 @@ COMMENT= Create a shadow directory of sy XORG_CAT= util USE_XORG= xproto -PLIST_FILES= bin/lndir +PLIST_FILES= bin/lndir \ + man/man1/lndir.1.gz -MAN1= lndir.1 - -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:31:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4AB1F197; Tue, 21 Jan 2014 08:31:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 361CE1189; Tue, 21 Jan 2014 08:31:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8VkTA062411; Tue, 21 Jan 2014 08:31:46 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8VktN062410; Tue, 21 Jan 2014 08:31:46 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201401210831.s0L8VktN062410@svn.freebsd.org> From: Koop Mast Date: Tue, 21 Jan 2014 08:31:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340581 - head/graphics/entangle X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:31:46 -0000 Author: kwm Date: Tue Jan 21 08:31:45 2014 New Revision: 340581 URL: http://svnweb.freebsd.org/changeset/ports/340581 QAT: https://qat.redports.org/buildarchive/r340581/ Log: Add introspection to USE_GNOME. It was already pulled in indirectly, but this will prevent introspection from making a /root/.cache dir. Approved by: maintainer Modified: head/graphics/entangle/Makefile Modified: head/graphics/entangle/Makefile ============================================================================== --- head/graphics/entangle/Makefile Tue Jan 21 08:31:08 2014 (r340580) +++ head/graphics/entangle/Makefile Tue Jan 21 08:31:45 2014 (r340581) @@ -19,7 +19,7 @@ LIB_DEPENDS= libgphoto2.so:${PORTSDIR}/g USES= gmake pkgconfig GNU_CONFIGURE= yes -USE_GNOME= gtk30 +USE_GNOME= gtk30 introspection:build # XXX: it would be nice if one day this option would be passed automatically # to configure scripts that support it :) From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:44:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14B863E4; Tue, 21 Jan 2014 08:44:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 008081251; Tue, 21 Jan 2014 08:44:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8iVdK066588; Tue, 21 Jan 2014 08:44:31 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8iVBC066587; Tue, 21 Jan 2014 08:44:31 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201401210844.s0L8iVBC066587@svn.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 21 Jan 2014 08:44:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340582 - head/devel/py-protobuf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:44:32 -0000 Author: vanilla Date: Tue Jan 21 08:44:31 2014 New Revision: 340582 URL: http://svnweb.freebsd.org/changeset/ports/340582 QAT: https://qat.redports.org/buildarchive/r340582/ Log: Bump PORTREVISION. Modified: head/devel/py-protobuf/Makefile Modified: head/devel/py-protobuf/Makefile ============================================================================== --- head/devel/py-protobuf/Makefile Tue Jan 21 08:31:45 2014 (r340581) +++ head/devel/py-protobuf/Makefile Tue Jan 21 08:44:31 2014 (r340582) @@ -3,6 +3,7 @@ PORTNAME= protobuf PORTVERSION= 2.5.0 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:54:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D920E4C; Tue, 21 Jan 2014 08:54:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1A36C1447; Tue, 21 Jan 2014 08:54:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L8s69B070416; Tue, 21 Jan 2014 08:54:06 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L8s6hs070414; Tue, 21 Jan 2014 08:54:06 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401210854.s0L8s6hs070414@svn.freebsd.org> From: Emanuel Haupt Date: Tue, 21 Jan 2014 08:54:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340583 - head/shells/mksh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:54:07 -0000 Author: ehaupt Date: Tue Jan 21 08:54:06 2014 New Revision: 340583 URL: http://svnweb.freebsd.org/changeset/ports/340583 QAT: https://qat.redports.org/buildarchive/r340583/ Log: This fixes /etc/shells. Due to the incorrect order of pkg-plist prior to exec/unexec the path to the manpage was written to /etc/shells. Modified: head/shells/mksh/Makefile head/shells/mksh/pkg-plist Modified: head/shells/mksh/Makefile ============================================================================== --- head/shells/mksh/Makefile Tue Jan 21 08:44:31 2014 (r340582) +++ head/shells/mksh/Makefile Tue Jan 21 08:54:06 2014 (r340583) @@ -3,6 +3,7 @@ PORTNAME= mksh DISTVERSION= R49 +PORTREVISION= 1 CATEGORIES= shells MASTER_SITES= http://www.mirbsd.org/MirOS/dist/mir/mksh/ \ http://pub.allbsd.org/MirOS/dist/mir/mksh/ Modified: head/shells/mksh/pkg-plist ============================================================================== --- head/shells/mksh/pkg-plist Tue Jan 21 08:44:31 2014 (r340582) +++ head/shells/mksh/pkg-plist Tue Jan 21 08:54:06 2014 (r340583) @@ -1,5 +1,6 @@ -bin/mksh man/man1/mksh.1.gz +@comment Please mind the order. bin/mksh needs to come right before the exec/unexec magic. +bin/mksh @exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells; rm -f /etc/shells.bak @unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells; rm -f /etc/shells.bak %%PORTEXAMPLES%%%%EXAMPLESDIR%%/dot.mkshrc From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 08:59:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D351B75; Tue, 21 Jan 2014 08:59:23 +0000 (UTC) Received: from mail-we0-x231.google.com (mail-we0-x231.google.com [IPv6:2a00:1450:400c:c03::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C3A1C149D; Tue, 21 Jan 2014 08:59:22 +0000 (UTC) Received: by mail-we0-f177.google.com with SMTP id x55so7655918wes.22 for ; Tue, 21 Jan 2014 00:59:21 -0800 (PST) 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=ch9lF1+JS0uchXFoG0NtA53Zm97VMQLuT8hwseuEt6g=; b=klTcRZjHgFw8bNY7zIsuXriMpLbzcJRys8QNHSY0LS3g55NtD3VQsjtl+U6wWWGEnZ yuu+xrT2+/Am/MMfq77e6MNXPWuviWr2yWUhc4VX/h70UUjZqbaaaXTtM34NCODXLTJ3 uEMQ4WWXLAGUdWT8BFEB1T3y3Ul7c+A3JYMK4IxH/Xat0PviDouEiGsNz6fummr2bXTD B/4Bkl9nFiCJm0m9vBIT1qqwRSpWlKM3DCBGUIccX+dN/5TuO3FBjbqvQ+eAfwrOrvVt X1ZAwgAUcn2/SJJPD9qMsuO21qnauype7zSIueKtXunjBMx1hMxCAhhwBeQzxdisLm0s PZUw== X-Received: by 10.180.9.232 with SMTP id d8mr13463512wib.25.1390294761114; Tue, 21 Jan 2014 00:59:21 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id w1sm8870941wib.6.2014.01.21.00.59.17 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 21 Jan 2014 00:59:17 -0800 (PST) Sender: Baptiste Daroussin Date: Tue, 21 Jan 2014 09:59:15 +0100 From: Baptiste Daroussin To: Mathieu Arnold Subject: Re: svn commit: r340543 - in head/devel: . pear-htmlpurifier Message-ID: <20140121085915.GO78580@ithaqua.etoilebsd.net> References: <201401210233.s0L2XNn0021263@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+nG9yj4eE4W6Oba0" 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, Mark Felder , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 08:59:23 -0000 --+nG9yj4eE4W6Oba0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 21, 2014 at 08:00:04AM +0100, Mathieu Arnold wrote: > +--On 21 janvier 2014 02:33:23 +0000 Mark Felder wrote: > | +NO_STAGE=3D yes >=20 > Hum, I thought there was a hook that prevented anyone from adding a new > port that contained NO_STAGE. >=20 There is but not activated, now it is. regards, Bapt --+nG9yj4eE4W6Oba0 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (FreeBSD) iEYEARECAAYFAlLeNuMACgkQ8kTtMUmk6EwFAACeNnZBVnDWdygyCGMMB7pptYTP 9MgAoJ6zacbbDlq5ltZH6zQkFMw8eRG0 =njTy -----END PGP SIGNATURE----- --+nG9yj4eE4W6Oba0-- From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 09:00:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92D6526B; Tue, 21 Jan 2014 09:00:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7FB57151D; Tue, 21 Jan 2014 09:00:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L90kx2071690; Tue, 21 Jan 2014 09:00:46 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L90k4r071689; Tue, 21 Jan 2014 09:00:46 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210900.s0L90k4r071689@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 09:00:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340584 - head/devel/py-avro X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 09:00:46 -0000 Author: bapt Date: Tue Jan 21 09:00:45 2014 New Revision: 340584 URL: http://svnweb.freebsd.org/changeset/ports/340584 QAT: https://qat.redports.org/buildarchive/r340584/ Log: Bump portrevision due to change PYDISTUTILS usage Modified: head/devel/py-avro/Makefile Modified: head/devel/py-avro/Makefile ============================================================================== --- head/devel/py-avro/Makefile Tue Jan 21 08:54:06 2014 (r340583) +++ head/devel/py-avro/Makefile Tue Jan 21 09:00:45 2014 (r340584) @@ -3,6 +3,7 @@ PORTNAME= avro PORTVERSION= 1.7.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.sai.msu.su/apache/${PORTNAME}/${PORTNAME}-${PORTVERSION}/ \ APACHE From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 09:02:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42216531; Tue, 21 Jan 2014 09:02:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2D8871560; Tue, 21 Jan 2014 09:02:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L92dX7074352; Tue, 21 Jan 2014 09:02:39 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L92dST074351; Tue, 21 Jan 2014 09:02:39 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210902.s0L92dST074351@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 09:02:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340585 - head/devel/yaml-cpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 09:02:39 -0000 Author: bapt Date: Tue Jan 21 09:02:38 2014 New Revision: 340585 URL: http://svnweb.freebsd.org/changeset/ports/340585 QAT: https://qat.redports.org/buildarchive/r340585/ Log: Support stage Modified: head/devel/yaml-cpp/Makefile Modified: head/devel/yaml-cpp/Makefile ============================================================================== --- head/devel/yaml-cpp/Makefile Tue Jan 21 09:00:45 2014 (r340584) +++ head/devel/yaml-cpp/Makefile Tue Jan 21 09:02:38 2014 (r340585) @@ -21,5 +21,4 @@ post-patch: .SILENT ${REINPLACE_CMD} 's|$${LIB_INSTALL_DIR}/pkgconfig|${LOCALBASE}/libdata/pkgconfig|' \ ${WRKSRC}/CMakeLists.txt -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 09:05:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AA18771; Tue, 21 Jan 2014 09:05:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2692515AE; Tue, 21 Jan 2014 09:05:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0L95fPA074860; Tue, 21 Jan 2014 09:05:41 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0L95erZ074859; Tue, 21 Jan 2014 09:05:40 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401210905.s0L95erZ074859@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 09:05:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340586 - head/devel/tinylaf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 09:05:41 -0000 Author: bapt Date: Tue Jan 21 09:05:40 2014 New Revision: 340586 URL: http://svnweb.freebsd.org/changeset/ports/340586 QAT: https://qat.redports.org/buildarchive/r340586/ Log: Support stage Modified: head/devel/tinylaf/Makefile Modified: head/devel/tinylaf/Makefile ============================================================================== --- head/devel/tinylaf/Makefile Tue Jan 21 09:02:38 2014 (r340585) +++ head/devel/tinylaf/Makefile Tue Jan 21 09:05:40 2014 (r340586) @@ -6,11 +6,13 @@ PORTVERSION= 1.4.0 CATEGORIES= devel java MASTER_SITES= http://www.muntjak.de/hans/java/tinylaf/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/./_/g} +EXTRACT_SUFX= .zip MAINTAINER= ayu@commun.jp -COMMENT= A pluggable Look and Feel for Java +COMMENT= Pluggable Look and Feel for Java + +OPTIONS_DEFINE= DOCS -USE_ZIP= yes USE_JAVA= yes JAVA_VERSION= 1.6+ NO_BUILD= yes @@ -19,15 +21,11 @@ JARFILE= ${PORTNAME}.jar tinycp.jar PORTDOCS= readme.html gpl.txt lgpl.txt PLIST_FILES= ${JARFILE:S|^|%%JAVAJARDIR%%/|} -NO_STAGE= yes do-install: - ${INSTALL_DATA} ${JARFILE:S|^|${WRKSRC}/|} ${JAVAJARDIR} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${JARFILE:S|^|${WRKSRC}/|} ${STAGEDIR}${JAVAJARDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in readme.html license/gpl.txt license/lgpl.txt - @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:08:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5DE2D9F9; Tue, 21 Jan 2014 10:08:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 480701AA4; Tue, 21 Jan 2014 10:08:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LA8rRL098363; Tue, 21 Jan 2014 10:08:53 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LA8qMs098361; Tue, 21 Jan 2014 10:08:52 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401211008.s0LA8qMs098361@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 10:08:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340587 - head/textproc/xmlwrapp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:08:53 -0000 Author: mat Date: Tue Jan 21 10:08:52 2014 New Revision: 340587 URL: http://svnweb.freebsd.org/changeset/ports/340587 QAT: https://qat.redports.org/buildarchive/r340587/ Log: * Convert to staging * Use new options framework * Update license Sponsored by: Absolight Modified: head/textproc/xmlwrapp/Makefile head/textproc/xmlwrapp/pkg-plist Modified: head/textproc/xmlwrapp/Makefile ============================================================================== --- head/textproc/xmlwrapp/Makefile Tue Jan 21 09:05:40 2014 (r340586) +++ head/textproc/xmlwrapp/Makefile Tue Jan 21 10:08:52 2014 (r340587) @@ -9,13 +9,17 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= A modern style C++ library for working with XML data -LICENSE= BSD +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libboost_iostreams.so:${PORTSDIR}/devel/boost-libs -OPTIONS_DEFINE= XSLT +OPTIONS_DEFINE= XSLT DOCS XSLT_DESC= Build libxsltwrap library (requires libxslt) +OPTIONS_SUB= yes + +XSLT_USE= gnome=libxslt +XSLT_CONFIGURE_ENABLE= xslt USES= pathfix pkgconfig USE_GNOME= libxml2 @@ -26,24 +30,14 @@ USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lboost_system -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MXSLT} -USE_GNOME+= libxslt -PLIST_SUB+= XSLT="" -.else -CONFIGURE_ARGS+=--disable-xslt -PLIST_SUB+= XSLT="@comment " -.endif +PORTDOCS= * post-patch: @${REINPLACE_CMD} '/if test/s|==|=|' ${WRKSRC}/configure @${REINPLACE_CMD} '/^SUBDIRS/s|docs||' ${WRKSRC}/Makefile.in post-install: -.if ${PORT_OPTIONS:MDOCS} @(cd ${WRKSRC}/docs && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \ ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) -.endif + .include Modified: head/textproc/xmlwrapp/pkg-plist ============================================================================== --- head/textproc/xmlwrapp/pkg-plist Tue Jan 21 09:05:40 2014 (r340586) +++ head/textproc/xmlwrapp/pkg-plist Tue Jan 21 10:08:52 2014 (r340587) @@ -25,363 +25,5 @@ lib/libxmlwrapp.so.6 %%XSLT%%lib/libxsltwrapp.so.4 libdata/pkgconfig/xmlwrapp.pc %%XSLT%%libdata/pkgconfig/xsltwrapp.pc -%%PORTDOCS%%%%DOCSDIR%%/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/attr.html -%%PORTDOCS%%%%DOCSDIR%%/attributes_8h.html -%%PORTDOCS%%%%DOCSDIR%%/attributes_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/attributes_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/attributes_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/attributes_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/attributes_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/attributes_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/attributes_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/bc_s.png -%%PORTDOCS%%%%DOCSDIR%%/bdwn.png -%%PORTDOCS%%%%DOCSDIR%%/classes.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1attributes-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1attributes.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1attributes_1_1attr-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1attributes_1_1attr.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1attributes_1_1const__iterator-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1attributes_1_1const__iterator.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1attributes_1_1iterator-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1attributes_1_1iterator.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1const__nodes__view-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1const__nodes__view.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1document-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1document.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__inherit__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__inherit__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__coll__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__coll__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__coll__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__inherit__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__inherit__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__or__warning-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__or__warning.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__or__warning__coll__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__or__warning__coll__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__or__warning__coll__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__or__warning__inherit__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__or__warning__inherit__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__handler__throw__on__error__or__warning__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__message-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__message.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__messages-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__messages.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__messages__coll__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__messages__coll__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__messages__coll__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__messages__inherit__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__messages__inherit__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1error__messages__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1event__parser-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1event__parser.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1exception-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1exception.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1init-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1init.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1init__inherit__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1init__inherit__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1init__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1node-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1node.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1node_1_1const__iterator-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1node_1_1const__iterator.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1node_1_1iterator-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1node_1_1iterator.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1nodes__view-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1nodes__view.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1nodes__view_1_1const__iterator-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1nodes__view_1_1const__iterator.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1nodes__view_1_1iterator-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1nodes__view_1_1iterator.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1schema-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1schema.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1tree__parser-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxml_1_1tree__parser.html -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1init-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1init.html -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1init__coll__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1init__coll__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1init__coll__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1init__inherit__graph.map -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1init__inherit__graph.md5 -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1init__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1stylesheet-members.html -%%PORTDOCS%%%%DOCSDIR%%/classxslt_1_1stylesheet.html -%%PORTDOCS%%%%DOCSDIR%%/closed.png -%%PORTDOCS%%%%DOCSDIR%%/dir_000003_000002.html -%%PORTDOCS%%%%DOCSDIR%%/dir_49e56c817e5e54854c35e136979f97ca.html -%%PORTDOCS%%%%DOCSDIR%%/dir_49e56c817e5e54854c35e136979f97ca_dep.map -%%PORTDOCS%%%%DOCSDIR%%/dir_49e56c817e5e54854c35e136979f97ca_dep.md5 -%%PORTDOCS%%%%DOCSDIR%%/dir_49e56c817e5e54854c35e136979f97ca_dep.png -%%PORTDOCS%%%%DOCSDIR%%/dir_c407809a277ccb7043354438396c7220.html -%%PORTDOCS%%%%DOCSDIR%%/dir_c407809a277ccb7043354438396c7220_dep.map -%%PORTDOCS%%%%DOCSDIR%%/dir_c407809a277ccb7043354438396c7220_dep.md5 -%%PORTDOCS%%%%DOCSDIR%%/dir_c407809a277ccb7043354438396c7220_dep.png -%%PORTDOCS%%%%DOCSDIR%%/dir_d5cde21f955094d259382cc73d7c9786.html -%%PORTDOCS%%%%DOCSDIR%%/dir_d5cde21f955094d259382cc73d7c9786_dep.map -%%PORTDOCS%%%%DOCSDIR%%/dir_d5cde21f955094d259382cc73d7c9786_dep.md5 -%%PORTDOCS%%%%DOCSDIR%%/dir_d5cde21f955094d259382cc73d7c9786_dep.png -%%PORTDOCS%%%%DOCSDIR%%/dir_eab09ba6d2d62e3cc1599f7281473bab.html -%%PORTDOCS%%%%DOCSDIR%%/dir_eab09ba6d2d62e3cc1599f7281473bab_dep.map -%%PORTDOCS%%%%DOCSDIR%%/dir_eab09ba6d2d62e3cc1599f7281473bab_dep.md5 -%%PORTDOCS%%%%DOCSDIR%%/dir_eab09ba6d2d62e3cc1599f7281473bab_dep.png -%%PORTDOCS%%%%DOCSDIR%%/document_8h.html -%%PORTDOCS%%%%DOCSDIR%%/document_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/document_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/document_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/document_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/document_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/document_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/document_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/documents.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/dynsections.js -%%PORTDOCS%%%%DOCSDIR%%/errors_8h.html -%%PORTDOCS%%%%DOCSDIR%%/errors_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/errors_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/errors_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/errors_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/errors_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/errors_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/errors_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/event__parser_8h.html -%%PORTDOCS%%%%DOCSDIR%%/event__parser_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/event__parser_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/event__parser_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/event__parser_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/event__parser_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/event__parser_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/event__parser_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/export_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/files.html -%%PORTDOCS%%%%DOCSDIR%%/ftv2blank.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2cl.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2doc.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2folderclosed.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2folderopen.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2lastnode.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2link.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2mlastnode.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2mnode.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2mo.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2node.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2ns.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2plastnode.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2pnode.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2splitbar.png -%%PORTDOCS%%%%DOCSDIR%%/ftv2vertline.png -%%PORTDOCS%%%%DOCSDIR%%/functions.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x62.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x63.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x64.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x65.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x66.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x67.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x68.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x69.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x6c.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x6d.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x6e.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x6f.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x70.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x72.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x73.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x74.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x76.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x77.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x78.html -%%PORTDOCS%%%%DOCSDIR%%/functions_0x7e.html -%%PORTDOCS%%%%DOCSDIR%%/functions_enum.html -%%PORTDOCS%%%%DOCSDIR%%/functions_eval.html -%%PORTDOCS%%%%DOCSDIR%%/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/functions_rela.html -%%PORTDOCS%%%%DOCSDIR%%/functions_type.html -%%PORTDOCS%%%%DOCSDIR%%/globals.html -%%PORTDOCS%%%%DOCSDIR%%/globals_defs.html -%%PORTDOCS%%%%DOCSDIR%%/graph_legend.html -%%PORTDOCS%%%%DOCSDIR%%/graph_legend.md5 -%%PORTDOCS%%%%DOCSDIR%%/graph_legend.png -%%PORTDOCS%%%%DOCSDIR%%/hierarchy.html -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_0.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_0.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_0.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_1.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_1.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_1.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_10.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_10.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_10.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_11.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_11.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_11.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_12.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_12.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_12.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_13.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_13.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_13.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_14.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_14.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_14.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_15.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_15.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_15.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_16.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_16.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_16.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_17.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_17.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_17.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_18.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_18.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_18.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_19.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_19.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_19.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_2.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_2.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_2.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_20.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_20.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_20.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_21.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_21.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_21.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_22.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_22.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_22.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_23.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_23.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_23.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_3.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_3.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_3.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_4.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_4.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_4.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_5.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_5.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_5.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_6.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_6.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_6.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_7.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_7.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_7.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_8.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_8.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_8.png -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_9.map -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_9.md5 -%%PORTDOCS%%%%DOCSDIR%%/inherit_graph_9.png -%%PORTDOCS%%%%DOCSDIR%%/inherits.html -%%PORTDOCS%%%%DOCSDIR%%/intro.html -%%PORTDOCS%%%%DOCSDIR%%/jquery.js -%%PORTDOCS%%%%DOCSDIR%%/namespacemembers.html -%%PORTDOCS%%%%DOCSDIR%%/namespacemembers_vars.html -%%PORTDOCS%%%%DOCSDIR%%/namespaces.html -%%PORTDOCS%%%%DOCSDIR%%/namespacexml.html -%%PORTDOCS%%%%DOCSDIR%%/namespacexslt.html -%%PORTDOCS%%%%DOCSDIR%%/nav_f.png -%%PORTDOCS%%%%DOCSDIR%%/nav_g.png -%%PORTDOCS%%%%DOCSDIR%%/nav_h.png -%%PORTDOCS%%%%DOCSDIR%%/node.html -%%PORTDOCS%%%%DOCSDIR%%/node_8h.html -%%PORTDOCS%%%%DOCSDIR%%/node_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/node_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/node_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/node_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/node_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/node_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/node_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/nodes__view_8h.html -%%PORTDOCS%%%%DOCSDIR%%/nodes__view_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/nodes__view_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/nodes__view_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/nodes__view_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/nodes__view_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/nodes__view_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/nodes__view_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/open.png -%%PORTDOCS%%%%DOCSDIR%%/pages.html -%%PORTDOCS%%%%DOCSDIR%%/parsing.html -%%PORTDOCS%%%%DOCSDIR%%/prepare.html -%%PORTDOCS%%%%DOCSDIR%%/schema_8h.html -%%PORTDOCS%%%%DOCSDIR%%/schema_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/schema_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/schema_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/schema_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/schema_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/schema_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/schema_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/structxml_1_1node_1_1cdata-members.html -%%PORTDOCS%%%%DOCSDIR%%/structxml_1_1node_1_1cdata.html -%%PORTDOCS%%%%DOCSDIR%%/structxml_1_1node_1_1comment-members.html -%%PORTDOCS%%%%DOCSDIR%%/structxml_1_1node_1_1comment.html -%%PORTDOCS%%%%DOCSDIR%%/structxml_1_1node_1_1pi-members.html -%%PORTDOCS%%%%DOCSDIR%%/structxml_1_1node_1_1pi.html -%%PORTDOCS%%%%DOCSDIR%%/structxml_1_1node_1_1text-members.html -%%PORTDOCS%%%%DOCSDIR%%/structxml_1_1node_1_1text.html -%%PORTDOCS%%%%DOCSDIR%%/stylesheet_8h.html -%%PORTDOCS%%%%DOCSDIR%%/stylesheet_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/stylesheet_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/stylesheet_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/stylesheet_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/stylesheet_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/stylesheet_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/stylesheet_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/sync_off.png -%%PORTDOCS%%%%DOCSDIR%%/sync_on.png -%%PORTDOCS%%%%DOCSDIR%%/tab_a.png -%%PORTDOCS%%%%DOCSDIR%%/tab_b.png -%%PORTDOCS%%%%DOCSDIR%%/tab_h.png -%%PORTDOCS%%%%DOCSDIR%%/tab_s.png -%%PORTDOCS%%%%DOCSDIR%%/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/tips.html -%%PORTDOCS%%%%DOCSDIR%%/tree__parser_8h.html -%%PORTDOCS%%%%DOCSDIR%%/tree__parser_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/tree__parser_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/tree__parser_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/tree__parser_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/tree__parser_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/tree__parser_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/tree__parser_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/version_8h.html -%%PORTDOCS%%%%DOCSDIR%%/version_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/version_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/version_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/version_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/whatnext.html -%%PORTDOCS%%%%DOCSDIR%%/xmlwrapp_2init_8h.html -%%PORTDOCS%%%%DOCSDIR%%/xmlwrapp_2init_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/xmlwrapp_2init_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/xmlwrapp_2init_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/xmlwrapp_2init_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/xmlwrapp_2init_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/xmlwrapp_2init_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/xmlwrapp_2init_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/xmlwrapp_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/xslt.html -%%PORTDOCS%%%%DOCSDIR%%/xsltwrapp_2init_8h.html -%%PORTDOCS%%%%DOCSDIR%%/xsltwrapp_2init_8h__dep__incl.map -%%PORTDOCS%%%%DOCSDIR%%/xsltwrapp_2init_8h__dep__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/xsltwrapp_2init_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/xsltwrapp_2init_8h__incl.map -%%PORTDOCS%%%%DOCSDIR%%/xsltwrapp_2init_8h__incl.md5 -%%PORTDOCS%%%%DOCSDIR%%/xsltwrapp_2init_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/xsltwrapp_2init_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/xsltwrapp_8h_source.html -%%PORTDOCS%%@dirrm %%DOCSDIR%% %%XSLT%%@dirrm include/xsltwrapp @dirrm include/xmlwrapp From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:12:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1D3CB36; Tue, 21 Jan 2014 10:12:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9DFC81B24; Tue, 21 Jan 2014 10:12:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LAC0SL001651; Tue, 21 Jan 2014 10:12:00 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LAC03r001650; Tue, 21 Jan 2014 10:12:00 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401211012.s0LAC03r001650@svn.freebsd.org> From: Marcus von Appen Date: Tue, 21 Jan 2014 10:12:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340588 - head/audio/linux-f10-openal-soft X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:12:00 -0000 Author: mva Date: Tue Jan 21 10:12:00 2014 New Revision: 340588 URL: http://svnweb.freebsd.org/changeset/ports/340588 QAT: https://qat.redports.org/buildarchive/r340588/ Log: - Enable stagedir support Modified: head/audio/linux-f10-openal-soft/Makefile (contents, props changed) Modified: head/audio/linux-f10-openal-soft/Makefile ============================================================================== --- head/audio/linux-f10-openal-soft/Makefile Tue Jan 21 10:08:52 2014 (r340587) +++ head/audio/linux-f10-openal-soft/Makefile Tue Jan 21 10:12:00 2014 (r340588) @@ -12,7 +12,6 @@ COMMENT= A 3D positional spatialized sou ONLY_FOR_ARCHS= i386 amd64 USE_LINUX_RPM= yes -NO_STAGE= yes USE_LINUX_APPS= alsalib arts esound LINUX_DIST_VER= 10 RPMVERSION= 7 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:13:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1DE89C26; Tue, 21 Jan 2014 10:13:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0A1FB1B35; Tue, 21 Jan 2014 10:13:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LADZp5001984; Tue, 21 Jan 2014 10:13:35 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LADZVe001983; Tue, 21 Jan 2014 10:13:35 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401211013.s0LADZVe001983@svn.freebsd.org> From: Marcus von Appen Date: Tue, 21 Jan 2014 10:13:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340589 - head/devel/py-ocempgui X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:13:36 -0000 Author: mva Date: Tue Jan 21 10:13:35 2014 New Revision: 340589 URL: http://svnweb.freebsd.org/changeset/ports/340589 QAT: https://qat.redports.org/buildarchive/r340589/ Log: - Enable stagedir support - Restrict python compatibility - Use PYDISTUTILS_AUTOPLIST - Add LICENSE Deleted: head/devel/py-ocempgui/pkg-plist Modified: head/devel/py-ocempgui/Makefile (contents, props changed) Modified: head/devel/py-ocempgui/Makefile ============================================================================== --- head/devel/py-ocempgui/Makefile Tue Jan 21 10:12:00 2014 (r340588) +++ head/devel/py-ocempgui/Makefile Tue Jan 21 10:13:35 2014 (r340589) @@ -12,18 +12,14 @@ DISTNAME= OcempGUI-${PORTVERSION} MAINTAINER= mva@FreeBSD.org COMMENT= GUI toolkit in python +LICENSE= BSD2CLAUSE + BUILD_DEPENDS= ${LOCALBASE}/include/${PYTHON_VERSION}/pygame/pygame.h:${PORTSDIR}/devel/py-game RUN_DEPENDS= ${LOCALBASE}/include/${PYTHON_VERSION}/pygame/pygame.h:${PORTSDIR}/devel/py-game USE_GNOME= atk -USE_PYTHON= yes +USE_PYTHON= 2 USE_PYDISTUTILS=yes -PYDISTUTILS_PKGNAME= OcempGUI - -NO_STAGE= yes -post-patch: -.if defined(NOPORTDOCS) - ${REINPLACE_CMD} -i "" -e 's|datafiles + docfiles|datafiles|g' ${WRKSRC}/setup.py -.endif +PYDISTUTILS_AUTOPLIST= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:14:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 19204D0C; Tue, 21 Jan 2014 10:14:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EDE931B41; Tue, 21 Jan 2014 10:14:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LAElS2002248; Tue, 21 Jan 2014 10:14:47 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LAEldv002246; Tue, 21 Jan 2014 10:14:47 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201401211014.s0LAEldv002246@svn.freebsd.org> From: Alexey Dokuchaev Date: Tue, 21 Jan 2014 10:14:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340590 - head/audio/gtkpod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:14:48 -0000 Author: danfe Date: Tue Jan 21 10:14:47 2014 New Revision: 340590 URL: http://svnweb.freebsd.org/changeset/ports/340590 QAT: https://qat.redports.org/buildarchive/r340590/ Log: Stagify, utilize OPTIONS helpers, reword comments slightly. Modified: head/audio/gtkpod/Makefile head/audio/gtkpod/pkg-plist Modified: head/audio/gtkpod/Makefile ============================================================================== --- head/audio/gtkpod/Makefile Tue Jan 21 10:13:35 2014 (r340589) +++ head/audio/gtkpod/Makefile Tue Jan 21 10:14:47 2014 (r340590) @@ -16,14 +16,13 @@ LIB_DEPENDS= libid3tag.so:${PORTSDIR}/au libgpod.so:${PORTSDIR}/audio/libgpod USES= gettext gmake pkgconfig -NO_STAGE= yes USE_GNOME= gtk20 libglade2 GNU_CONFIGURE= yes +INSTALLS_ICONS= yes + CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -INSTALLS_ICONS= yes -MAN1= ${PORTNAME}.1 PORTDOCS= ChangeLog NEWS README TODOandBUGS.txt TROUBLESHOOTING OPTIONS_DEFINE= VORBIS FLAC CURL @@ -31,40 +30,27 @@ OPTIONS_DEFAULT= VORBIS FLAC CURL CURL_DESC= Cover art download support via libcurl -.include +VORBIS_LIB_DEPENDS= libvorbisfile.so:${PORTSDIR}/audio/libvorbis +VORBIS_CONFIGURE_OFF= --without-ogg + +FLAC_LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac +FLAC_CONFIGURE_ARGS= --without-flac -.if ${PORT_OPTIONS:MVORBIS} -LIB_DEPENDS+= libvorbisfile.so:${PORTSDIR}/audio/libvorbis -.else -CONFIGURE_ARGS+= --without-ogg -.endif - -.if ${PORT_OPTIONS:MFLAC} -LIB_DEPENDS+= libFLAC.so:${PORTSDIR}/audio/flac -.else -CONFIGURE_ARGS+= --without-flac -.endif - -.if ${PORT_OPTIONS:MCURL} -LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl -.else -CONFIGURE_ARGS+= --without-curl -.endif +CURL_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl +CURL_CONFIGURE_ARGS= --without-curl post-patch: # Install locale files correctly (to share dir instead of lib dir) @${REINPLACE_CMD} -e 's|DATADIRNAME=lib|DATADIRNAME=share|' \ ${WRKSRC}/configure -# FreeBSD does not have libdl +# FreeBSD does not have separate libdl.so @${REINPLACE_CMD} -e 's| -ldl||' ${WRKSRC}/src/Makefile.in -# Adjust location of header +# Fix location of the header @${REINPLACE_CMD} -e 's|endian\.h|sys/&|' ${WRKSRC}/configure \ ${WRKSRC}/src/mp4file.c post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} -.include +.include Modified: head/audio/gtkpod/pkg-plist ============================================================================== --- head/audio/gtkpod/pkg-plist Tue Jan 21 10:13:35 2014 (r340589) +++ head/audio/gtkpod/pkg-plist Tue Jan 21 10:14:47 2014 (r340590) @@ -1,4 +1,5 @@ bin/gtkpod +man/man1/gtkpod.1.gz %%DATADIR%%/data/default-cover.png %%DATADIR%%/data/gtkpod-add-dirs.png %%DATADIR%%/data/gtkpod-add-files.png From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:33:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3FE6F125; Tue, 21 Jan 2014 10:33:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2B1F11DC1; Tue, 21 Jan 2014 10:33:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LAXPpm009885; Tue, 21 Jan 2014 10:33:25 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LAXOpw009883; Tue, 21 Jan 2014 10:33:24 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401211033.s0LAXOpw009883@svn.freebsd.org> From: Marcus von Appen Date: Tue, 21 Jan 2014 10:33:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340591 - head/devel/pyrex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:33:25 -0000 Author: mva Date: Tue Jan 21 10:33:24 2014 New Revision: 340591 URL: http://svnweb.freebsd.org/changeset/ports/340591 QAT: https://qat.redports.org/buildarchive/r340591/ Log: - Enable stagedir support - Use PYDISTUTILS_AUTOPLIST - Restrict python compatibility - Add LICENSE Modified: head/devel/pyrex/Makefile (contents, props changed) head/devel/pyrex/pkg-plist (contents, props changed) Modified: head/devel/pyrex/Makefile ============================================================================== --- head/devel/pyrex/Makefile Tue Jan 21 10:14:47 2014 (r340590) +++ head/devel/pyrex/Makefile Tue Jan 21 10:33:24 2014 (r340591) @@ -11,25 +11,19 @@ DISTNAME= Pyrex-${PORTVERSION} MAINTAINER= mva@FreeBSD.org COMMENT= Programming Language for writing Python extension modules -USE_PYTHON= yes -USE_PYDISTUTILS=yes -PYDISTUTILS_PKGNAME= Pyrex +LICENSE= APACHE20 -NO_STAGE= yes -post-install: - @# precompile lexicon pickle - @cd ${WRKSRC}/Demos && ${PYTHON_CMD} ${PREFIX}/bin/pyrexc primes.pyx +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR}/Manual - @cd ${WRKSRC}/Doc && ${INSTALL_DATA} ./[^M]* ${DOCSDIR} - @cd ${WRKSRC}/Doc/Manual && ${INSTALL_DATA} ./* ${DOCSDIR}/Manual -.endif -.if !defined(NOPORTEXAMPLES) +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR}/Manual + @cd ${WRKSRC}/Doc && ${INSTALL_DATA} ./[^M]* ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC}/Doc/Manual && ${INSTALL_DATA} ./* ${STAGEDIR}${DOCSDIR}/Manual @cd ${WRKSRC}/Demos && ${MAKE} clean - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @${TAR} -C ${WRKSRC}/Demos -cf - . | \ - ${TAR} -C ${EXAMPLESDIR} -xf - -.endif + ${TAR} -C ${STAGEDIR}${EXAMPLESDIR} -xf - .include Modified: head/devel/pyrex/pkg-plist ============================================================================== --- head/devel/pyrex/pkg-plist Tue Jan 21 10:14:47 2014 (r340590) +++ head/devel/pyrex/pkg-plist Tue Jan 21 10:33:24 2014 (r340591) @@ -1,156 +1,3 @@ -bin/pyrexc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Builtin.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Builtin.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Builtin.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/CmdLine.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/CmdLine.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/CmdLine.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Code.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Code.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Code.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/DebugFlags.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/DebugFlags.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/DebugFlags.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Errors.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Errors.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Errors.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/ExprNodes.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/ExprNodes.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/ExprNodes.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Filenames.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Filenames.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Filenames.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Lexicon.pickle -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Lexicon.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Lexicon.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Lexicon.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Main.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Main.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Main.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/ModuleNode.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/ModuleNode.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/ModuleNode.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Naming.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Naming.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Naming.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Nodes.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Nodes.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Nodes.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Options.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Options.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Options.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Parsing.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Parsing.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Parsing.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/PyrexTypes.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/PyrexTypes.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/PyrexTypes.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Scanning.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Scanning.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Scanning.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Symtab.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Symtab.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Symtab.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/TypeSlots.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/TypeSlots.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/TypeSlots.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Version.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Version.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/Version.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/__init__.py -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Compiler/__init__.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Debugging.py -%%PYTHON_SITELIBDIR%%/Pyrex/Debugging.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Debugging.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Distutils/__init__.py -%%PYTHON_SITELIBDIR%%/Pyrex/Distutils/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Distutils/__init__.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Distutils/build_ext.py -%%PYTHON_SITELIBDIR%%/Pyrex/Distutils/build_ext.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Distutils/build_ext.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Distutils/extension.py -%%PYTHON_SITELIBDIR%%/Pyrex/Distutils/extension.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Distutils/extension.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/DistutilsOld/__init__.py -%%PYTHON_SITELIBDIR%%/Pyrex/DistutilsOld/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/DistutilsOld/__init__.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/DistutilsOld/build_ext.py -%%PYTHON_SITELIBDIR%%/Pyrex/DistutilsOld/build_ext.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/DistutilsOld/build_ext.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/DarwinSystem.py -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/DarwinSystem.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/DarwinSystem.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/setup.py -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/setup.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/setup.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/MacSystem.py -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/MacSystem.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/MacSystem.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/MacUtils.py -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/MacUtils.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/MacUtils.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/TS_Misc_Suite.py -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/TS_Misc_Suite.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/TS_Misc_Suite.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/__init__.py -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Mac/__init__.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Actions.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Actions.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Actions.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/DFA.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/DFA.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/DFA.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Errors.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Errors.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Errors.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Lexicons.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Lexicons.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Lexicons.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Machines.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Machines.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Machines.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Regexps.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Regexps.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Regexps.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Scanners.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Scanners.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Scanners.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Timing.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Timing.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Timing.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Traditional.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Traditional.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Traditional.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Transitions.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Transitions.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/Transitions.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/__init__.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/__init__.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/test_tm.py -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/test_tm.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Plex/test_tm.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Unix/LinuxSystem.py -%%PYTHON_SITELIBDIR%%/Pyrex/Unix/LinuxSystem.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Unix/LinuxSystem.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Unix/__init__.py -%%PYTHON_SITELIBDIR%%/Pyrex/Unix/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Unix/__init__.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/Utils.py -%%PYTHON_SITELIBDIR%%/Pyrex/Utils.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/Utils.pyo -%%PYTHON_SITELIBDIR%%/Pyrex/__init__.py -%%PYTHON_SITELIBDIR%%/Pyrex/__init__.pyc -%%PYTHON_SITELIBDIR%%/Pyrex/__init__.pyo -@dirrm %%PYTHON_SITELIBDIR%%/Pyrex/Unix -@dirrm %%PYTHON_SITELIBDIR%%/Pyrex/Plex -@dirrm %%PYTHON_SITELIBDIR%%/Pyrex/Mac -@dirrm %%PYTHON_SITELIBDIR%%/Pyrex/DistutilsOld -@dirrm %%PYTHON_SITELIBDIR%%/Pyrex/Distutils -@dirrm %%PYTHON_SITELIBDIR%%/Pyrex/Compiler -@dirrm %%PYTHON_SITELIBDIR%%/Pyrex %%PORTDOCS%%%%DOCSDIR%%/About.html %%PORTDOCS%%%%DOCSDIR%%/FAQ.html %%PORTDOCS%%%%DOCSDIR%%/LanguageOverview.html From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:34:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0139921A; Tue, 21 Jan 2014 10:34:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E13BC1DD3; Tue, 21 Jan 2014 10:34:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LAYWRW010092; Tue, 21 Jan 2014 10:34:32 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LAYWdP010091; Tue, 21 Jan 2014 10:34:32 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401211034.s0LAYWdP010091@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 10:34:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340592 - head/textproc/jing X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:34:33 -0000 Author: mat Date: Tue Jan 21 10:34:32 2014 New Revision: 340592 URL: http://svnweb.freebsd.org/changeset/ports/340592 QAT: https://qat.redports.org/buildarchive/r340592/ Log: Convert to staging. Sponsored by: Absolight Deleted: head/textproc/jing/pkg-plist Modified: head/textproc/jing/Makefile Modified: head/textproc/jing/Makefile ============================================================================== --- head/textproc/jing/Makefile Tue Jan 21 10:33:24 2014 (r340591) +++ head/textproc/jing/Makefile Tue Jan 21 10:34:32 2014 (r340592) @@ -10,30 +10,29 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/./ MAINTAINER= gabor@FreeBSD.org COMMENT= A RELAX NG validator in Java +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${FILESDIR}/doc/copying.html + USE_ZIP= yes USE_JAVA= yes JAVA_VERSION= 1.6+ NO_BUILD= yes -.if !defined(NOPORTDOCS) +OPTIONS_DEFINE= DOCS EXAMPLES + PORTDOCS= * -.endif +PORTEXAMPLES= * SUB_FILES= jing.sh -NO_STAGE= yes +PLIST_FILES= bin/jing %%JAVAJARDIR%%/jing.jar + do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/jing.sh ${PREFIX}/bin/jing - ${INSTALL_DATA} ${WRKSRC}/bin/jing.jar ${JAVAJARDIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/*.html ${DOCSDIR} - cd ${WRKSRC}/doc \ - && ${FIND} . -type d -exec ${MKDIR} ${DOCSDIR}/{} \; \ - && ${FIND} . -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \; - cd ${WRKSRC}/sample \ - && ${FIND} . -type d -exec ${MKDIR} ${EXAMPLESDIR}/{} \; \ - && ${FIND} . -type f -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/{} \; -.endif + ${INSTALL_SCRIPT} ${WRKDIR}/jing.sh ${STAGEDIR}${PREFIX}/bin/jing + ${INSTALL_DATA} ${WRKSRC}/bin/jing.jar ${STAGEDIR}${JAVAJARDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/*.html ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) + (cd ${WRKSRC}/sample && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:39:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBEE448B; Tue, 21 Jan 2014 10:39:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B82681DFF; Tue, 21 Jan 2014 10:39:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LAd4u9010684; Tue, 21 Jan 2014 10:39:04 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LAd4t4010682; Tue, 21 Jan 2014 10:39:04 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401211039.s0LAd4t4010682@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 10:39:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340593 - head/textproc/p5-String-Fraction X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:39:04 -0000 Author: mat Date: Tue Jan 21 10:39:04 2014 New Revision: 340593 URL: http://svnweb.freebsd.org/changeset/ports/340593 QAT: https://qat.redports.org/buildarchive/r340593/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/p5-String-Fraction/Makefile head/textproc/p5-String-Fraction/pkg-plist Modified: head/textproc/p5-String-Fraction/Makefile ============================================================================== --- head/textproc/p5-String-Fraction/Makefile Tue Jan 21 10:34:32 2014 (r340592) +++ head/textproc/p5-String-Fraction/Makefile Tue Jan 21 10:39:04 2014 (r340593) @@ -16,10 +16,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= p5-HTML-Fraction>=0.40:${PORTSDIR}/textproc/p5-HTML-Fraction RUN_DEPENDS:= ${BUILD_DEPENDS} -MAN3= String::Fraction.3 - USES= perl5 USE_PERL5= configure -NO_STAGE= yes .include Modified: head/textproc/p5-String-Fraction/pkg-plist ============================================================================== --- head/textproc/p5-String-Fraction/pkg-plist Tue Jan 21 10:34:32 2014 (r340592) +++ head/textproc/p5-String-Fraction/pkg-plist Tue Jan 21 10:39:04 2014 (r340593) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::Fraction.3.gz %%SITE_PERL%%/String/Fraction.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Fraction/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Fraction From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:43:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E72C65A5; Tue, 21 Jan 2014 10:43:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D33D51E7A; Tue, 21 Jan 2014 10:43:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LAhEj8013828; Tue, 21 Jan 2014 10:43:14 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LAhEUd013823; Tue, 21 Jan 2014 10:43:14 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401211043.s0LAhEUd013823@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 10:43:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340594 - head/textproc/p5-Text-ASCIIMathML X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:43:15 -0000 Author: mat Date: Tue Jan 21 10:43:14 2014 New Revision: 340594 URL: http://svnweb.freebsd.org/changeset/ports/340594 QAT: https://qat.redports.org/buildarchive/r340594/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/p5-Text-ASCIIMathML/Makefile head/textproc/p5-Text-ASCIIMathML/pkg-plist Modified: head/textproc/p5-Text-ASCIIMathML/Makefile ============================================================================== --- head/textproc/p5-Text-ASCIIMathML/Makefile Tue Jan 21 10:39:04 2014 (r340593) +++ head/textproc/p5-Text-ASCIIMathML/Makefile Tue Jan 21 10:43:14 2014 (r340594) @@ -13,7 +13,4 @@ COMMENT= Perl extension for parsing ASCI USES= perl5 USE_PERL5= configure -MAN3= Text::ASCIIMathML.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-ASCIIMathML/pkg-plist ============================================================================== --- head/textproc/p5-Text-ASCIIMathML/pkg-plist Tue Jan 21 10:39:04 2014 (r340593) +++ head/textproc/p5-Text-ASCIIMathML/pkg-plist Tue Jan 21 10:43:14 2014 (r340594) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::ASCIIMathML.3.gz %%SITE_PERL%%/Text/ASCIIMathML.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/ASCIIMathML/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/ASCIIMathML From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:46:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14E8C6DB; Tue, 21 Jan 2014 10:46:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F3D851EAC; Tue, 21 Jan 2014 10:46:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LAkmPG014352; Tue, 21 Jan 2014 10:46:48 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LAkmw3014350; Tue, 21 Jan 2014 10:46:48 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401211046.s0LAkmw3014350@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 10:46:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340595 - head/textproc/p5-Regexp-Common-net-CIDR X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:46:49 -0000 Author: mat Date: Tue Jan 21 10:46:48 2014 New Revision: 340595 URL: http://svnweb.freebsd.org/changeset/ports/340595 QAT: https://qat.redports.org/buildarchive/r340595/ Log: Convert to staging. Sponsored by: Absolight Modified: head/textproc/p5-Regexp-Common-net-CIDR/Makefile head/textproc/p5-Regexp-Common-net-CIDR/pkg-plist Modified: head/textproc/p5-Regexp-Common-net-CIDR/Makefile ============================================================================== --- head/textproc/p5-Regexp-Common-net-CIDR/Makefile Tue Jan 21 10:43:14 2014 (r340594) +++ head/textproc/p5-Regexp-Common-net-CIDR/Makefile Tue Jan 21 10:46:48 2014 (r340595) @@ -16,7 +16,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Regexp::Common::net::CIDR.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Regexp-Common-net-CIDR/pkg-plist ============================================================================== --- head/textproc/p5-Regexp-Common-net-CIDR/pkg-plist Tue Jan 21 10:43:14 2014 (r340594) +++ head/textproc/p5-Regexp-Common-net-CIDR/pkg-plist Tue Jan 21 10:46:48 2014 (r340595) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Regexp::Common::net::CIDR.3.gz %%SITE_PERL%%/Regexp/Common/net/CIDR.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Regexp/Common/net/CIDR/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Regexp/Common/net/CIDR From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:50:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51235967; Tue, 21 Jan 2014 10:50:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3DC271EF5; Tue, 21 Jan 2014 10:50:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LAosMq017466; Tue, 21 Jan 2014 10:50:54 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LAos2X017465; Tue, 21 Jan 2014 10:50:54 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401211050.s0LAos2X017465@svn.freebsd.org> From: Emanuel Haupt Date: Tue, 21 Jan 2014 10:50:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340596 - head/audio/gbsplay X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:50:54 -0000 Author: ehaupt Date: Tue Jan 21 10:50:53 2014 New Revision: 340596 URL: http://svnweb.freebsd.org/changeset/ports/340596 QAT: https://qat.redports.org/buildarchive/r340596/ Log: Rename MANn to MANPAGEn in order to avoid a 'make check-sanity' warning. Modified: head/audio/gbsplay/Makefile Modified: head/audio/gbsplay/Makefile ============================================================================== --- head/audio/gbsplay/Makefile Tue Jan 21 10:46:48 2014 (r340595) +++ head/audio/gbsplay/Makefile Tue Jan 21 10:50:53 2014 (r340596) @@ -21,8 +21,8 @@ CONFIGURE_ARGS+= --prefix=${PREFIX} CONFIGURE_ARGS+= --without-xmmsplugin -MAN1= gbsplay.1 gbsinfo.1 -MAN5= gbsplayrc.5 +MANPAGE1= gbsplay.1 gbsinfo.1 +MANPAGE5= gbsplayrc.5 PORTDOCS= COPYRIGHT HISTORY README OPTIONS_DEFINE= NAS DOCS @@ -69,7 +69,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor -.for f in ${MAN1} ${MAN5} +.for f in ${MANPAGE1} ${MANPAGE5} ${INSTALL_MAN} ${WRKSRC}/${f} ${STAGEDIR}${MAN${f:E}PREFIX}/man/man${f:E} .endfor From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:53:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E16EA8C; Tue, 21 Jan 2014 10:53:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6B2381F71; Tue, 21 Jan 2014 10:53:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LArfSt017829; Tue, 21 Jan 2014 10:53:41 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LArfbO017827; Tue, 21 Jan 2014 10:53:41 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401211053.s0LArfbO017827@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 10:53:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340597 - head/devel/p5-Config-Auto X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 10:53:41 -0000 Author: bapt Date: Tue Jan 21 10:53:40 2014 New Revision: 340597 URL: http://svnweb.freebsd.org/changeset/ports/340597 QAT: https://qat.redports.org/buildarchive/r340597/ Log: Support stage Modified: head/devel/p5-Config-Auto/Makefile head/devel/p5-Config-Auto/pkg-plist Modified: head/devel/p5-Config-Auto/Makefile ============================================================================== --- head/devel/p5-Config-Auto/Makefile Tue Jan 21 10:50:53 2014 (r340596) +++ head/devel/p5-Config-Auto/Makefile Tue Jan 21 10:53:40 2014 (r340597) @@ -22,14 +22,7 @@ USE_PERL5= configure OPTIONS_DEFINE= XMLSIMPLE XMLSIMPLE_DESC= Support for XML config files -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MXMLSIMPLE} -BUILD_DEPENDS+= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple -RUN_DEPENDS+= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple -.endif - -MAN3= Config::Auto.3 +XMLSIMPLE_BUILD_DEPENDS= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple +XMLSIMPLE_RUN_DEPENDS= p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple .include Modified: head/devel/p5-Config-Auto/pkg-plist ============================================================================== --- head/devel/p5-Config-Auto/pkg-plist Tue Jan 21 10:50:53 2014 (r340596) +++ head/devel/p5-Config-Auto/pkg-plist Tue Jan 21 10:53:40 2014 (r340597) @@ -1,5 +1,6 @@ %%SITE_PERL%%/Config/Auto.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Config/Auto/.packlist +%%PERL5_MAN3%%/Config::Auto.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Config/Auto @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Config @dirrmtry %%SITE_PERL%%/Config From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 10:58:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1DFD2BB4; Tue, 21 Jan 2014 10:58:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 09AC41F99; Tue, 21 Jan 2014 10:58:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LAwqVB018524; Tue, 21 Jan 2014 10:58:52 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LAwqLa018522; Tue, 21 Jan 2014 10:58:52 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401211058.s0LAwqLa018522@svn.freebsd.org> From: Pietro Cerutti Date: Tue, 21 Jan 2014 10:58:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340598 - in head/misc/tkcron: . 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.17 Precedence: list List-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, 21 Jan 2014 10:58:53 -0000 Author: gahr Date: Tue Jan 21 10:58:52 2014 New Revision: 340598 URL: http://svnweb.freebsd.org/changeset/ports/340598 QAT: https://qat.redports.org/buildarchive/r340598/ Log: - Convert to USES=tk - STAGE-clean - Simplify install procedure Deleted: head/misc/tkcron/files/Makefile Modified: head/misc/tkcron/Makefile (contents, props changed) head/misc/tkcron/files/patch-aa (contents, props changed) Modified: head/misc/tkcron/Makefile ============================================================================== --- head/misc/tkcron/Makefile Tue Jan 21 10:53:40 2014 (r340597) +++ head/misc/tkcron/Makefile Tue Jan 21 10:58:52 2014 (r340598) @@ -15,16 +15,19 @@ EXTRACT_SUFX= .tcl.gz MAINTAINER= cy@FreeBSD.org COMMENT= A frontend to crontab -USE_TK_RUN= 85 +USES= tk:85,run EXTRACT_CMD= ${GZIP_CMD} EXTRACT_BEFORE_ARGS= -cd EXTRACT_AFTER_ARGS= > tkcron.tcl +NO_BUILD= yes NO_WRKSUBDIR= yes PLIST_FILES= bin/tkcron -NO_STAGE= yes -post-extract: - @${CP} ${FILESDIR}/Makefile ${WRKSRC} +post-patch: + ${REINPLACE_CMD} -e 's|%%WISH%%|${WISH}|' ${WRKSRC}/tkcron.tcl + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/tkcron.tcl ${STAGEDIR}${PREFIX}/bin/tkcron .include Modified: head/misc/tkcron/files/patch-aa ============================================================================== --- head/misc/tkcron/files/patch-aa Tue Jan 21 10:53:40 2014 (r340597) +++ head/misc/tkcron/files/patch-aa Tue Jan 21 10:58:52 2014 (r340598) @@ -4,7 +4,7 @@ -#!/usr/local/bin/wish +#! /bin/sh +# the next line restarts using wish \ -+exec /usr/local/bin/wish8.5 $0 ${1+"$@"} ++exec %%WISH%% $0 ${1+"$@"} # A simple interface to ease the creation of crontab jobs # Cedric BEUST (beust@sophia.inria.fr) From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 11:00:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CABEDCB2; Tue, 21 Jan 2014 11:00:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AAC55100E; Tue, 21 Jan 2014 11:00:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LB0OpT019017; Tue, 21 Jan 2014 11:00:24 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LB0Np5019009; Tue, 21 Jan 2014 11:00:23 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401211100.s0LB0Np5019009@svn.freebsd.org> From: Emanuel Haupt Date: Tue, 21 Jan 2014 11:00:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340599 - in head: audio/stymulator editors/dhex graphics/recoverjpeg security/vpnc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 11:00:24 -0000 Author: ehaupt Date: Tue Jan 21 11:00:23 2014 New Revision: 340599 URL: http://svnweb.freebsd.org/changeset/ports/340599 QAT: https://qat.redports.org/buildarchive/r340599/ Log: Rename MANn to MANPAGEn in order to avoid a 'make check-sanity' warning. Modified: head/audio/stymulator/Makefile head/editors/dhex/Makefile head/graphics/recoverjpeg/Makefile head/security/vpnc/Makefile Modified: head/audio/stymulator/Makefile ============================================================================== --- head/audio/stymulator/Makefile Tue Jan 21 10:58:52 2014 (r340598) +++ head/audio/stymulator/Makefile Tue Jan 21 11:00:23 2014 (r340599) @@ -19,7 +19,7 @@ MAKE_JOBS_UNSAFE= yes WRKSRC= ${WRKDIR}/${DISTNAME}/src -MAN1= ymplayer.1 ym2wav.1 +MANPAGE1= ymplayer.1 ym2wav.1 PLIST_FILES= bin/ym2wav bin/ymplayer bin/stymulator man/man1/ymplayer.1.gz \ man/man1/ym2wav.1.gz @@ -27,7 +27,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/ym2wav ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/ymplayer ${STAGEDIR}${PREFIX}/bin ${LN} ${STAGEDIR}${PREFIX}/bin/ymplayer ${STAGEDIR}${PREFIX}/bin/${PORTNAME} -.for f in ${MAN1} +.for f in ${MANPAGE1} ${INSTALL_MAN} ${FILESDIR}/${f} ${STAGEDIR}${MANPREFIX}/man/man1 .endfor Modified: head/editors/dhex/Makefile ============================================================================== --- head/editors/dhex/Makefile Tue Jan 21 10:58:52 2014 (r340598) +++ head/editors/dhex/Makefile Tue Jan 21 11:00:23 2014 (r340599) @@ -13,13 +13,13 @@ COMMENT= Ncurses-based hex-editor with d LICENSE= GPLv2 -MAN1= dhex.1 -MAN5= dhexrc.5 dhex_markers.5 dhex_searchlog.5 +MANPAGE1= dhex.1 +MANPAGE5= dhexrc.5 dhex_markers.5 dhex_searchlog.5 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${STAGEDIR}${MANPREFIX}/man/man1 -.for f in ${MAN5} + ${INSTALL_MAN} ${WRKSRC}/${MANPAGE1} ${STAGEDIR}${MANPREFIX}/man/man1 +.for f in ${MANPAGE5} ${INSTALL_MAN} ${WRKSRC}/${f} ${STAGEDIR}${MANPREFIX}/man/man5 .endfor Modified: head/graphics/recoverjpeg/Makefile ============================================================================== --- head/graphics/recoverjpeg/Makefile Tue Jan 21 10:58:52 2014 (r340598) +++ head/graphics/recoverjpeg/Makefile Tue Jan 21 11:00:23 2014 (r340599) @@ -13,7 +13,7 @@ LICENSE= GPLv2 GNU_CONFIGURE= yes -MAN1= recoverjpeg.1 +MANPAGE1= recoverjpeg.1 PLIST_FILES= bin/recoverjpeg man/man1/recoverjpeg.1.gz # recoverjpeg scripts require many dependencies @@ -26,7 +26,7 @@ SSCRIPTS_DESC= Install sort-pictures scr RUN_DEPENDS= exif:${PORTSDIR}/graphics/exif \ identify:${PORTSDIR}/graphics/ImageMagick PLIST_FILES+= bin/sort-pictures man/man1/sort-pictures.1.gz -MAN1+= sort-pictures.1 +MANPAGE1+= sort-pictures.1 .endif do-install: @@ -36,7 +36,7 @@ do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor .endif -.for f in ${MAN1} +.for f in ${MANPAGE1} ${INSTALL_MAN} ${WRKSRC}/${f} ${STAGEDIR}${MANPREFIX}/man/man1 .endfor Modified: head/security/vpnc/Makefile ============================================================================== --- head/security/vpnc/Makefile Tue Jan 21 10:58:52 2014 (r340598) +++ head/security/vpnc/Makefile Tue Jan 21 11:00:23 2014 (r340599) @@ -24,7 +24,7 @@ ALL_TARGET= all SHEBANG_FILES= makeman.pl PORTDOCS= README TODO -MAN8= vpnc.8 +MANPAGE8= vpnc.8 MAKE_ENV+= BINS="${EXTRABUILDS}" @@ -38,7 +38,7 @@ OPTIONS_DEFAULT=DECRYPT .include .if ${PORT_OPTIONS:MDECRYPT} -MAN1= cisco-decrypt.1 +MANPAGE1= cisco-decrypt.1 EXTRABUILDS+= cisco-decrypt PLIST_SUB+= DECRYPT="" .else @@ -58,13 +58,13 @@ CFLAGS+= -DCISCO_PATCH_VERSION post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/config.c @${REINPLACE_CMD} -e 's|\(/etc/vpnc\)|${PREFIX}\1|' \ - ${WRKSRC}/${MAN8}.template + ${WRKSRC}/${MANPAGE8}.template do-install: ${INSTALL_PROGRAM} -m 751 ${WRKSRC}/vpnc ${STAGEDIR}${PREFIX}/sbin/vpnc .if ${PORT_OPTIONS:MDECRYPT} ${INSTALL_PROGRAM} ${WRKSRC}/cisco-decrypt ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/${MANPAGE1} ${STAGEDIR}${MANPREFIX}/man/man1 .endif ${INSTALL_SCRIPT} -m 751 ${WRKSRC}/vpnc-disconnect \ ${STAGEDIR}${PREFIX}/sbin/vpnc-disconnect @@ -73,7 +73,7 @@ do-install: .if !exists(${STAGEDIR}${PREFIX}/etc/vpnc.conf) ${INSTALL_DATA} -m 600 ${WRKSRC}/vpnc.conf ${STAGEDIR}${PREFIX}/etc .endif - ${INSTALL_MAN} ${WRKSRC}/${MAN8} ${STAGEDIR}${MANPREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/${MANPAGE8} ${STAGEDIR}${MANPREFIX}/man/man8 .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 11:16:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E4D0AFF7; Tue, 21 Jan 2014 11:16:12 +0000 (UTC) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7D0A21157; Tue, 21 Jan 2014 11:16:12 +0000 (UTC) Received: from compute6.internal (compute6.nyi.mail.srv.osa [10.202.2.46]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 5076E20EA3; Tue, 21 Jan 2014 06:16:11 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute6.internal (MEProxy); Tue, 21 Jan 2014 06:16:11 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=references:mime-version:in-reply-to :content-type:content-transfer-encoding:message-id:cc:from :subject:date:to; s=smtpout; bh=jk5XbWKsBzdlotqkTQMCWT6NWng=; b= u4SMkQj6O9BoD6MVnO2Yrw6ektDHS24HnLPOGb7JB2E/PpqRZlFUzlVN8Lql18i9 /lnhIMP8ZWeNUUo5JQ3stzQr7JzlmA6aKdZrDH8PYcTp3JQyU3KdfGriKjUkIfS6 UKiZLi/W3yq4gsK3kRw1qQWeJTY32ZBRj38OVrMixfQ= X-Sasl-enc: quyMCnEhnQMe8sGZSVLXbAyx4wGTgFJ9VtxWr6dy35mS 1390302971 Received: from [172.16.1.144] (unknown [68.117.126.78]) by mail.messagingengine.com (Postfix) with ESMTPA id F2F73680209; Tue, 21 Jan 2014 06:16:10 -0500 (EST) References: <201401210233.s0L2XNn0021263@svn.freebsd.org> <20140121085915.GO78580@ithaqua.etoilebsd.net> Mime-Version: 1.0 (1.0) In-Reply-To: <20140121085915.GO78580@ithaqua.etoilebsd.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: <8C6DE4F4-D110-4E84-BDF2-6967081DF0CE@freebsd.org> X-Mailer: iPhone Mail (11B554a) From: Mark Felder Subject: Re: svn commit: r340543 - in head/devel: . pear-htmlpurifier Date: Tue, 21 Jan 2014 05:16:11 -0600 To: Baptiste Daroussin Cc: Mathieu Arnold , "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , Mark Felder , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 11:16:13 -0000 > On Jan 21, 2014, at 2:59 AM, Baptiste Daroussin wrote: >=20 >> On Tue, Jan 21, 2014 at 08:00:04AM +0100, Mathieu Arnold wrote: >> +--On 21 janvier 2014 02:33:23 +0000 Mark Felder wrote= : >> | +NO_STAGE=3D yes >>=20 >> Hum, I thought there was a hook that prevented anyone from adding a new >> port that contained NO_STAGE. > There is but not activated, now it is. >=20 > regards, > Bapt Apologies, that was leftover from debugging -- needed poudriere testport -n t= o pass STAGE with no leftovers I'll get that fixed ASAP.= From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 11:52:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B89B17FF; Tue, 21 Jan 2014 11:52:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A07BC1486; Tue, 21 Jan 2014 11:52:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LBqCWW040992; Tue, 21 Jan 2014 11:52:12 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LBq8Vb040967; Tue, 21 Jan 2014 11:52:08 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401211152.s0LBq8Vb040967@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 11:52:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340601 - in head/textproc: p5-AI-Categorizer p5-Algorithm-CheckDigits p5-CSS-Compressor p5-CSS-Simple p5-Data-Report p5-Data-SpreadPagination p5-DelimMatch p5-Devel-TraceSAX p5-EBook-T... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 11:52:12 -0000 Author: mat Date: Tue Jan 21 11:52:07 2014 New Revision: 340601 URL: http://svnweb.freebsd.org/changeset/ports/340601 QAT: https://qat.redports.org/buildarchive/r340601/ Log: * Convert to staging * Add license * pet portlint Sponsored by: Absolight Modified: head/textproc/p5-AI-Categorizer/Makefile head/textproc/p5-AI-Categorizer/pkg-plist (contents, props changed) head/textproc/p5-Algorithm-CheckDigits/Makefile head/textproc/p5-Algorithm-CheckDigits/pkg-plist (contents, props changed) head/textproc/p5-CSS-Compressor/Makefile head/textproc/p5-CSS-Compressor/pkg-plist head/textproc/p5-CSS-Simple/Makefile head/textproc/p5-Data-Report/Makefile head/textproc/p5-Data-Report/pkg-plist (contents, props changed) head/textproc/p5-Data-SpreadPagination/Makefile head/textproc/p5-Data-SpreadPagination/pkg-plist (contents, props changed) head/textproc/p5-DelimMatch/Makefile head/textproc/p5-DelimMatch/pkg-plist (contents, props changed) head/textproc/p5-Devel-TraceSAX/Makefile head/textproc/p5-Devel-TraceSAX/pkg-plist (contents, props changed) head/textproc/p5-EBook-Tools/Makefile head/textproc/p5-EBook-Tools/pkg-plist head/textproc/p5-ElasticSearch/Makefile head/textproc/p5-ElasticSearch/pkg-plist head/textproc/p5-String-Koremutake/Makefile head/textproc/p5-String-Koremutake/pkg-plist (contents, props changed) Modified: head/textproc/p5-AI-Categorizer/Makefile ============================================================================== --- head/textproc/p5-AI-Categorizer/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-AI-Categorizer/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= ports@FreeBSD.org COMMENT= Automatic Text Categorization +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Class-Container>=0:${PORTSDIR}/devel/p5-Class-Container \ p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate \ p5-Statistics-Contingency>=0:${PORTSDIR}/math/p5-Statistics-Contingency \ @@ -21,31 +24,7 @@ BUILD_DEPENDS= p5-Class-Container>=0:${P p5-Algorithm-NaiveBayes>=0:${PORTSDIR}/devel/p5-Algorithm-NaiveBayes RUN_DEPENDS:= ${BUILD_DEPENDS} -MAN3= AI::Categorizer.3 \ - AI::Categorizer::Category.3 \ - AI::Categorizer::Collection.3 \ - AI::Categorizer::Collection::Files.3 \ - AI::Categorizer::Document.3 \ - AI::Categorizer::Experiment.3 \ - AI::Categorizer::FeatureSelector.3 \ - AI::Categorizer::FeatureSelector::CategorySelector.3 \ - AI::Categorizer::FeatureSelector::ChiSquare.3 \ - AI::Categorizer::FeatureSelector::DocFrequency.3 \ - AI::Categorizer::FeatureVector.3 \ - AI::Categorizer::Hypothesis.3 \ - AI::Categorizer::KnowledgeSet.3 \ - AI::Categorizer::Learner.3 \ - AI::Categorizer::Learner::Boolean.3 \ - AI::Categorizer::Learner::DecisionTree.3 \ - AI::Categorizer::Learner::Guesser.3 \ - AI::Categorizer::Learner::KNN.3 \ - AI::Categorizer::Learner::NaiveBayes.3 \ - AI::Categorizer::Learner::SVM.3 \ - AI::Categorizer::Learner::Weka.3 \ - AI::Categorizer::Storable.3 - USES= perl5 USE_PERL5= modbuild -NO_STAGE= yes .include Modified: head/textproc/p5-AI-Categorizer/pkg-plist ============================================================================== --- head/textproc/p5-AI-Categorizer/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-AI-Categorizer/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,3 +1,25 @@ +%%PERL5_MAN3%%/AI::Categorizer.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Category.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Collection.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Collection::Files.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Document.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Experiment.3.gz +%%PERL5_MAN3%%/AI::Categorizer::FeatureSelector.3.gz +%%PERL5_MAN3%%/AI::Categorizer::FeatureSelector::CategorySelector.3.gz +%%PERL5_MAN3%%/AI::Categorizer::FeatureSelector::ChiSquare.3.gz +%%PERL5_MAN3%%/AI::Categorizer::FeatureSelector::DocFrequency.3.gz +%%PERL5_MAN3%%/AI::Categorizer::FeatureVector.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Hypothesis.3.gz +%%PERL5_MAN3%%/AI::Categorizer::KnowledgeSet.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Learner.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Learner::Boolean.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Learner::DecisionTree.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Learner::Guesser.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Learner::KNN.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Learner::NaiveBayes.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Learner::SVM.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Learner::Weka.3.gz +%%PERL5_MAN3%%/AI::Categorizer::Storable.3.gz %%SITE_PERL%%/AI/Categorizer.pm %%SITE_PERL%%/AI/Categorizer/Category.pm %%SITE_PERL%%/AI/Categorizer/Collection.pm Modified: head/textproc/p5-Algorithm-CheckDigits/Makefile ============================================================================== --- head/textproc/p5-Algorithm-CheckDigits/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-Algorithm-CheckDigits/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -3,46 +3,21 @@ PORTNAME= Algorithm-CheckDigits PORTVERSION= 1.2.0 +DISTVERSIONPREFIX= v PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN -DISTNAME= ${PORTNAME}-v${PORTVERSION} +PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Perl extension to generate and test check digits -TEST_DEPENDS= p5-Probe-Perl>=0:${PORTSDIR}/sysutils/p5-Probe-Perl +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual -PKGNAMEPREFIX= p5- +TEST_DEPENDS= p5-Probe-Perl>=0:${PORTSDIR}/sysutils/p5-Probe-Perl USES= perl5 USE_PERL5= configure -MAN1= checkdigits.pl.1 - -MAN3= Algorithm::CheckDigits.3 \ - Algorithm::CheckDigits::M07_001.3 Algorithm::CheckDigits::M09_001.3 \ - Algorithm::CheckDigits::M10_001.3 Algorithm::CheckDigits::M10_002.3 \ - Algorithm::CheckDigits::M10_003.3 Algorithm::CheckDigits::M10_004.3 \ - Algorithm::CheckDigits::M10_005.3 Algorithm::CheckDigits::M10_006.3 \ - Algorithm::CheckDigits::M10_008.3 Algorithm::CheckDigits::M10_009.3 \ - Algorithm::CheckDigits::M10_010.3 Algorithm::CheckDigits::M10_011.3 \ - Algorithm::CheckDigits::M11_001.3 Algorithm::CheckDigits::M11_002.3 \ - Algorithm::CheckDigits::M11_003.3 Algorithm::CheckDigits::M11_004.3 \ - Algorithm::CheckDigits::M11_006.3 Algorithm::CheckDigits::M11_007.3 \ - Algorithm::CheckDigits::M11_008.3 Algorithm::CheckDigits::M11_009.3 \ - Algorithm::CheckDigits::M11_010.3 Algorithm::CheckDigits::M11_011.3 \ - Algorithm::CheckDigits::M11_012.3 Algorithm::CheckDigits::M11_013.3 \ - Algorithm::CheckDigits::M11_015.3 Algorithm::CheckDigits::M11_016.3 \ - Algorithm::CheckDigits::M11_017.3 Algorithm::CheckDigits::M16_001.3 \ - Algorithm::CheckDigits::M23_001.3 Algorithm::CheckDigits::M23_002.3 \ - Algorithm::CheckDigits::M43_001.3 Algorithm::CheckDigits::M89_001.3 \ - Algorithm::CheckDigits::M97_001.3 Algorithm::CheckDigits::M97_002.3 \ - Algorithm::CheckDigits::MBase_001.3 Algorithm::CheckDigits::MBase_002.3 \ - Algorithm::CheckDigits::MBase_003.3 Algorithm::CheckDigits::MXX_001.3 \ - Algorithm::CheckDigits::MXX_002.3 Algorithm::CheckDigits::MXX_003.3 \ - Algorithm::CheckDigits::MXX_004.3 Algorithm::CheckDigits::MXX_005.3 \ - Algorithm::CheckDigits::MXX_006.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Algorithm-CheckDigits/pkg-plist ============================================================================== --- head/textproc/p5-Algorithm-CheckDigits/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-Algorithm-CheckDigits/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,4 +1,49 @@ bin/checkdigits.pl +man/man1/checkdigits.pl.1.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M07_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M09_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_002.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_003.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_004.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_005.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_006.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_008.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_009.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_010.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M10_011.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_002.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_003.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_004.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_006.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_007.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_008.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_009.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_010.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_011.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_012.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_013.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_015.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_016.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M11_017.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M16_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M23_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M23_002.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M43_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M89_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M97_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::M97_002.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::MBase_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::MBase_002.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::MBase_003.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::MXX_001.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::MXX_002.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::MXX_003.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::MXX_004.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::MXX_005.3.gz +%%PERL5_MAN3%%/Algorithm::CheckDigits::MXX_006.3.gz %%SITE_PERL%%/Algorithm/CheckDigits/M07_001.pm %%SITE_PERL%%/Algorithm/CheckDigits/M09_001.pm %%SITE_PERL%%/Algorithm/CheckDigits/M10_001.pm Modified: head/textproc/p5-CSS-Compressor/Makefile ============================================================================== --- head/textproc/p5-CSS-Compressor/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-CSS-Compressor/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -14,10 +14,7 @@ COMMENT= Perl extension for CSS minifica USES= perl5 USE_PERL5= configure -NO_STAGE= yes post-install: - ${INSTALL_SCRIPT} ${FILESDIR}/csscompressor ${PREFIX}/bin - -MAN3= CSS::Compressor.3 + ${INSTALL_SCRIPT} ${FILESDIR}/csscompressor ${STAGEDIR}${PREFIX}/bin .include Modified: head/textproc/p5-CSS-Compressor/pkg-plist ============================================================================== --- head/textproc/p5-CSS-Compressor/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-CSS-Compressor/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,7 +1,8 @@ @comment $FreeBSD$ +bin/csscompressor +%%PERL5_MAN3%%/CSS::Compressor.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/CSS/Compressor/.packlist %%SITE_PERL%%/CSS/Compressor.pm -bin/csscompressor @dirrmtry %%SITE_PERL%%/CSS @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/CSS/Compressor @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/CSS Modified: head/textproc/p5-CSS-Simple/Makefile ============================================================================== --- head/textproc/p5-CSS-Simple/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-CSS-Simple/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -10,18 +10,20 @@ PKGNAMEPREFIX= p5- MAINTAINER= vivek@khera.org COMMENT= Interface through which to read/write/manipulate CSS files +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Tie-IxHash>=0:${PORTSDIR}/devel/p5-Tie-IxHash RUN_DEPENDS= p5-Tie-IxHash>=0:${PORTSDIR}/devel/p5-Tie-IxHash USES= perl5 USE_PERL5= configure -MAN3= CSS::Simple.3 PLIST_FILES= %%SITE_PERL%%/CSS/Simple.pm \ + %%PERL5_MAN3%%/CSS::Simple.3.gz \ %%SITE_PERL%%/%%PERL_ARCH%%/auto/CSS/Simple/.packlist PLIST_DIRS= %%SITE_PERL%%/%%PERL_ARCH%%/auto/CSS/Simple \ %%SITE_PERL%%/%%PERL_ARCH%%/auto/CSS \ %%SITE_PERL%%/CSS -NO_STAGE= yes .include Modified: head/textproc/p5-Data-Report/Makefile ============================================================================== --- head/textproc/p5-Data-Report/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-Data-Report/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Data::Report - Framework for flexible reporting +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + COMMON_DEPENDS= p5-HTML-Parser>0:${PORTSDIR}/www/p5-HTML-Parser \ p5-Text-CSV_XS>0:${PORTSDIR}/textproc/p5-Text-CSV_XS BUILD_DEPENDS= p5-Module-Build>=0.28:${PORTSDIR}/devel/p5-Module-Build \ @@ -20,7 +23,4 @@ RUN_DEPENDS= ${COMMON_DEPENDS} USES= perl5 USE_PERL5= modbuild -MAN3= Data::Report.3 Data::Report::Base.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Data-Report/pkg-plist ============================================================================== --- head/textproc/p5-Data-Report/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-Data-Report/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Data::Report.3.gz +%%PERL5_MAN3%%/Data::Report::Base.3.gz %%SITE_PERL%%/Data/Report.pm %%SITE_PERL%%/Data/Report/Base.pm %%SITE_PERL%%/Data/Report/Plugin/Csv.pm Modified: head/textproc/p5-Data-SpreadPagination/Makefile ============================================================================== --- head/textproc/p5-Data-SpreadPagination/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-Data-SpreadPagination/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -18,9 +18,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Data::SpreadPagination.3 - -NO_STAGE= yes test: cd ${WRKSRC} && ${MAKE} test Modified: head/textproc/p5-Data-SpreadPagination/pkg-plist ============================================================================== --- head/textproc/p5-Data-SpreadPagination/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-Data-SpreadPagination/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Data::SpreadPagination.3.gz %%SITE_PERL%%/Data/SpreadPagination.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/SpreadPagination/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/SpreadPagination Modified: head/textproc/p5-DelimMatch/Makefile ============================================================================== --- head/textproc/p5-DelimMatch/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-DelimMatch/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -13,7 +13,4 @@ COMMENT= Perl extension to find regexp d USES= perl5 USE_PERL5= configure -MAN3= Text::DelimMatch.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-DelimMatch/pkg-plist ============================================================================== --- head/textproc/p5-DelimMatch/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-DelimMatch/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::DelimMatch.3.gz %%SITE_PERL%%/auto/Text/DelimMatch/autosplit.ix %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/DelimMatch/.packlist %%SITE_PERL%%/Text/DelimMatch.pm Modified: head/textproc/p5-Devel-TraceSAX/Makefile ============================================================================== --- head/textproc/p5-Devel-TraceSAX/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-Devel-TraceSAX/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -17,7 +17,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Devel::TraceSAX.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Devel-TraceSAX/pkg-plist ============================================================================== --- head/textproc/p5-Devel-TraceSAX/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-Devel-TraceSAX/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Devel::TraceSAX.3.gz %%SITE_PERL%%/Devel/TraceSAX.pm %%SITE_PERL%%/Devel/TraceSAX/DB.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel/TraceSAX/.packlist Modified: head/textproc/p5-EBook-Tools/Makefile ============================================================================== --- head/textproc/p5-EBook-Tools/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-EBook-Tools/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -3,14 +3,16 @@ PORTNAME= EBook-Tools PORTVERSION= 0.4.9 +DISTVERSIONPREFIX= v CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= simond@irrelevant.org COMMENT= Object class for manipulating and generating E-books +LICENSE= GPLv2 + BUILD_DEPENDS= p5-Archive-Zip>=0:${PORTSDIR}/archivers/p5-Archive-Zip \ p5-Data-UUID>=0:${PORTSDIR}/devel/p5-Data-UUID \ p5-Config-IniFiles>=0:${PORTSDIR}/devel/p5-Config-IniFiles \ @@ -33,15 +35,4 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/tidy4:${P USES= perl5 USE_PERL5= modbuild -MAN1= ebook.1 -MAN3= EBook::Tools.3 \ - EBook::Tools::EReader.3 \ - EBook::Tools::IMP.3 \ - EBook::Tools::LZSS.3 \ - EBook::Tools::MSReader.3 \ - EBook::Tools::Mobipocket.3 \ - EBook::Tools::PalmDoc.3 \ - EBook::Tools::Unpack.3 \ - -NO_STAGE= yes .include Modified: head/textproc/p5-EBook-Tools/pkg-plist ============================================================================== --- head/textproc/p5-EBook-Tools/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-EBook-Tools/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,3 +1,12 @@ +man/man1/ebook.1.gz +%%PERL5_MAN3%%/EBook::Tools.3.gz +%%PERL5_MAN3%%/EBook::Tools::EReader.3.gz +%%PERL5_MAN3%%/EBook::Tools::IMP.3.gz +%%PERL5_MAN3%%/EBook::Tools::LZSS.3.gz +%%PERL5_MAN3%%/EBook::Tools::MSReader.3.gz +%%PERL5_MAN3%%/EBook::Tools::Mobipocket.3.gz +%%PERL5_MAN3%%/EBook::Tools::PalmDoc.3.gz +%%PERL5_MAN3%%/EBook::Tools::Unpack.3.gz %%SITE_PERL%%/EBook/Tools.pm %%SITE_PERL%%/EBook/Tools/EReader.pm %%SITE_PERL%%/EBook/Tools/IMP.pm Modified: head/textproc/p5-ElasticSearch/Makefile ============================================================================== --- head/textproc/p5-ElasticSearch/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-ElasticSearch/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tj@FreeBSD.org COMMENT= ElasticSearch API +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS:= p5-File-Temp>=0:${PORTSDIR}/devel/p5-File-Temp RUN_DEPENDS:= p5-ElasticSearch-SearchBuilder>=0:${PORTSDIR}/textproc/p5-ElasticSearch-SearchBuilder \ p5-Carp>=0:${PORTSDIR}/devel/p5-Carp \ @@ -38,16 +41,4 @@ TEST_DEPENDS= p5-Test-Differences>=0:${P USES= perl5 USE_PERL5= configure -MAN3= ElasticSearch.3 \ - ElasticSearch::Error.3 \ - ElasticSearch::QueryParser.3 \ - ElasticSearch::ScrolledSearch.3 \ - ElasticSearch::TestServer.3 \ - ElasticSearch::Transport.3 \ - ElasticSearch::Transport::HTTP.3 \ - ElasticSearch::Transport::HTTPLite.3 \ - ElasticSearch::Transport::HTTPTiny.3 \ - ElasticSearch::Util.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-ElasticSearch/pkg-plist ============================================================================== --- head/textproc/p5-ElasticSearch/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-ElasticSearch/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,3 +1,13 @@ +%%PERL5_MAN3%%/ElasticSearch.3.gz +%%PERL5_MAN3%%/ElasticSearch::Error.3.gz +%%PERL5_MAN3%%/ElasticSearch::QueryParser.3.gz +%%PERL5_MAN3%%/ElasticSearch::ScrolledSearch.3.gz +%%PERL5_MAN3%%/ElasticSearch::TestServer.3.gz +%%PERL5_MAN3%%/ElasticSearch::Transport.3.gz +%%PERL5_MAN3%%/ElasticSearch::Transport::HTTP.3.gz +%%PERL5_MAN3%%/ElasticSearch::Transport::HTTPLite.3.gz +%%PERL5_MAN3%%/ElasticSearch::Transport::HTTPTiny.3.gz +%%PERL5_MAN3%%/ElasticSearch::Util.3.gz %%SITE_PERL%%/ElasticSearch.pm %%SITE_PERL%%/ElasticSearch/Error.pm %%SITE_PERL%%/ElasticSearch/QueryParser.pm Modified: head/textproc/p5-String-Koremutake/Makefile ============================================================================== --- head/textproc/p5-String-Koremutake/Makefile Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-String-Koremutake/Makefile Tue Jan 21 11:52:07 2014 (r340601) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Convert to/from Koremutake Memorable Random Strings +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Error>=0:${PORTSDIR}/lang/p5-Error \ p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -17,7 +20,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= String::Koremutake.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-Koremutake/pkg-plist ============================================================================== --- head/textproc/p5-String-Koremutake/pkg-plist Tue Jan 21 11:43:21 2014 (r340600) +++ head/textproc/p5-String-Koremutake/pkg-plist Tue Jan 21 11:52:07 2014 (r340601) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::Koremutake.3.gz %%SITE_PERL%%/String/Koremutake.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Koremutake/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Koremutake From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 12:06:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93805AE0; Tue, 21 Jan 2014 12:06:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F91D158C; Tue, 21 Jan 2014 12:06:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LC64wr045507; Tue, 21 Jan 2014 12:06:04 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LC643E045506; Tue, 21 Jan 2014 12:06:04 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401211206.s0LC643E045506@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Tue, 21 Jan 2014 12:06:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340602 - head/deskutils/xchm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 12:06:04 -0000 Author: rm Date: Tue Jan 21 12:06:04 2014 New Revision: 340602 URL: http://svnweb.freebsd.org/changeset/ports/340602 QAT: https://qat.redports.org/buildarchive/r340602/ Log: - use options helpers, add NLS to available options list - add stage support Modified: head/deskutils/xchm/Makefile Modified: head/deskutils/xchm/Makefile ============================================================================== --- head/deskutils/xchm/Makefile Tue Jan 21 11:52:07 2014 (r340601) +++ head/deskutils/xchm/Makefile Tue Jan 21 12:06:04 2014 (r340602) @@ -13,6 +13,10 @@ LICENSE= GPLv2 LIB_DEPENDS= libchm.so:${PORTSDIR}/misc/chmlib +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes +NLS_USES= gettext + GNU_CONFIGURE= yes USE_WX= 2.6+ WX_UNICODE= yes @@ -20,15 +24,4 @@ WX_CONF_ARGS= absolute LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} CPPFLAGS+= -I${LOCALBASE}/include -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif - .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 12:23:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2BF05D6E; Tue, 21 Jan 2014 12:23:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 181DD16E2; Tue, 21 Jan 2014 12:23:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LCNeu1053075; Tue, 21 Jan 2014 12:23:40 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LCNefC053074; Tue, 21 Jan 2014 12:23:40 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401211223.s0LCNefC053074@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Tue, 21 Jan 2014 12:23:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340603 - head/devel/dreampie X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 12:23:41 -0000 Author: rm Date: Tue Jan 21 12:23:40 2014 New Revision: 340603 URL: http://svnweb.freebsd.org/changeset/ports/340603 QAT: https://qat.redports.org/buildarchive/r340603/ Log: - convert to autogenerated packing list Deleted: head/devel/dreampie/pkg-plist Modified: head/devel/dreampie/Makefile Modified: head/devel/dreampie/Makefile ============================================================================== --- head/devel/dreampie/Makefile Tue Jan 21 12:06:04 2014 (r340602) +++ head/devel/dreampie/Makefile Tue Jan 21 12:23:40 2014 (r340603) @@ -12,12 +12,10 @@ COMMENT= Python shell which is designed LICENSE= GPLv3 USE_GNOME= pygtk2 pygtksourceview -USE_PYTHON= 2 -USE_PYDISTUTILS=yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -MAN1= dreampie.1 - -NO_STAGE= yes pre-patch: @${REINPLACE_CMD} -e "s|share/man/man1|man/man1|" ${WRKSRC}/setup.py From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 12:33:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D887FD4; Tue, 21 Jan 2014 12:33:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C59F717B1; Tue, 21 Jan 2014 12:33:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LCX0bF056911; Tue, 21 Jan 2014 12:33:00 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LCX01u056910; Tue, 21 Jan 2014 12:33:00 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201401211233.s0LCX01u056910@svn.freebsd.org> From: Alexey Dokuchaev Date: Tue, 21 Jan 2014 12:33:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340604 - head/audio/gtkpod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 12:33:00 -0000 Author: danfe Date: Tue Jan 21 12:33:00 2014 New Revision: 340604 URL: http://svnweb.freebsd.org/changeset/ports/340604 QAT: https://qat.redports.org/buildarchive/r340604/ Log: Oops, missed couple of CONFIGURE_ARGS helpers during conversion. Modified: head/audio/gtkpod/Makefile Modified: head/audio/gtkpod/Makefile ============================================================================== --- head/audio/gtkpod/Makefile Tue Jan 21 12:23:40 2014 (r340603) +++ head/audio/gtkpod/Makefile Tue Jan 21 12:33:00 2014 (r340604) @@ -34,10 +34,10 @@ VORBIS_LIB_DEPENDS= libvorbisfile.so:${P VORBIS_CONFIGURE_OFF= --without-ogg FLAC_LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac -FLAC_CONFIGURE_ARGS= --without-flac +FLAC_CONFIGURE_OFF= --without-flac CURL_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl -CURL_CONFIGURE_ARGS= --without-curl +CURL_CONFIGURE_OFF= --without-curl post-patch: # Install locale files correctly (to share dir instead of lib dir) From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 12:44:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE3543F1; Tue, 21 Jan 2014 12:44:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9A9D918B9; Tue, 21 Jan 2014 12:44:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LCic9e060903; Tue, 21 Jan 2014 12:44:38 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LCicuc060902; Tue, 21 Jan 2014 12:44:38 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401211244.s0LCicuc060902@svn.freebsd.org> From: Pietro Cerutti Date: Tue, 21 Jan 2014 12:44:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340605 - head/misc/dotfile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 12:44:38 -0000 Author: gahr Date: Tue Jan 21 12:44:38 2014 New Revision: 340605 URL: http://svnweb.freebsd.org/changeset/ports/340605 QAT: https://qat.redports.org/buildarchive/r340605/ Log: - Convert to USES=tk Modified: head/misc/dotfile/Makefile (contents, props changed) Modified: head/misc/dotfile/Makefile ============================================================================== --- head/misc/dotfile/Makefile Tue Jan 21 12:33:00 2014 (r340604) +++ head/misc/dotfile/Makefile Tue Jan 21 12:44:38 2014 (r340605) @@ -15,14 +15,13 @@ BUILD_DEPENDS= formail:${PORTSDIR}/mail/ GNU_CONFIGURE= yes PLIST_SUB= DISTNAME="${DISTNAME}" NO_BUILD= yes +USES= tk MAN1= dotfile.1 OPTIONS_DEFINE= JAPANESE JAPANESE_DESC= Use Japanese as default language -USE_TK= yes - NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 12:51:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5ACA611; Tue, 21 Jan 2014 12:51:41 +0000 (UTC) Received: from mail-yh0-x234.google.com (mail-yh0-x234.google.com [IPv6:2607:f8b0:4002:c01::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2FC021973; Tue, 21 Jan 2014 12:51:41 +0000 (UTC) Received: by mail-yh0-f52.google.com with SMTP id v1so2741532yhn.39 for ; Tue, 21 Jan 2014 04:51:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:organization:user-agent:mime-version:to :subject:references:in-reply-to:content-type; bh=5cUkSDtLRgKMkwal4I4B+xSDoUyj5WIcB6DIDNaXICY=; b=hKgpPUZVgeCMyjj7rqWDDEqRhkqYadHNHYnXTaWc0UfsgDV1r6jcjvrlKIWebpLCNb xTz4vGuXSxfK1wcjehr1n2m1hFBuQw38SInNSZqqhshiLUFEpDGz/BM1pZF56yypJrwn m1Y+6kqpFAI+uSjpUON0MvBZWkV/o01qHoF64UAmjQC+PXiPBwZ+I6OKNVNyJ2j7URbi V1WneTcF705obSdZ4LV7iqh2N64eqEWAj7mzUDXlG7FH5kU3LppptVEcJCsghGnLQXqv oTg/f3oKxX1Wd+WROkvfnasXToP2FS6SwEnLcNr4WcWHZpT4x6G2aOqrgQbdOzrejWuo hPOA== X-Received: by 10.236.151.198 with SMTP id b46mr23080377yhk.3.1390308700355; Tue, 21 Jan 2014 04:51:40 -0800 (PST) Received: from [192.168.11.100] (201-93-229-16.dsl.telesp.net.br. [201.93.229.16]) by mx.google.com with ESMTPSA id f78sm12597080yhp.12.2014.01.21.04.51.37 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 21 Jan 2014 04:51:39 -0800 (PST) Sender: Renato Botelho Message-ID: <52DE6D56.90403@FreeBSD.org> Date: Tue, 21 Jan 2014 10:51:34 -0200 From: Renato Botelho Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Martin Matuska , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340261 - in head/www: lighttpd lighttpd-mod_geoip lighttpd-mod_h264_streaming References: <201401191100.s0JB0TUZ062181@svn.freebsd.org> In-Reply-To: <201401191100.s0JB0TUZ062181@svn.freebsd.org> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="JimVsNWoHmqbSC4RI3XaVV0X7TJI61S7M" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 12:51:41 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --JimVsNWoHmqbSC4RI3XaVV0X7TJI61S7M Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 19-01-2014 09:00, Martin Matuska wrote: > Author: mm > Date: Sun Jan 19 11:00:28 2014 > New Revision: 340261 > URL: http://svnweb.freebsd.org/changeset/ports/340261 > QAT: https://qat.redports.org/buildarchive/r340261/ >=20 > Log: > Add STAGE support I got the following error on make stage as non-root: mchown: /usr/home/garga/lighttpd/work/stage/var/log/lighttpd: Operation not permitted It needs to be fixed, or NEED_ROOT to be added to Makefile. Regards --=20 Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc --JimVsNWoHmqbSC4RI3XaVV0X7TJI61S7M Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 Comment: GPGTools - http://gpgtools.org Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBCgAGBQJS3m1XAAoJEPHw56GfYleQGc4P/AwdVm19BbaC0SsAmkKXP+IM daAMcPJULkVDnVWg9IkuKjqMgSLUiatKroBbYemsVUbdajnsXV06uRJ+V4TThvxL YVjmwz9qDCXMl001mO4tOgl30WgIgWJLXK0ZyQXgCiAC52gkWse1d2pIoqs6n5Ev XhdgwN3aaRilgahqACgU81XfoQ59ZyqhEPfgALJw0elshkh4lrrvgy2TSYeYRS4u ZVTLX0CvZylUWIH4xDVsG1auy/PBP69kU0wK6twax/TjPq78yxseRGdDRH20unDP nzyTuFIUGoCWf0y+PlWDEnd4Wopo/23PsuxNXmskQzVrBDoGUVbnzkMtLlVtSK0I M6uCnT+TzKl/6tm/5QCNSueSRXL705NCBJ6vtreWmB6M7Ivo+8XuDV//Bf6jd7NK uB41pBsN+ya7vJK/izT5K+ibFHcFzHCLHj9pIFT4NJ4cS2FW/DADMcQVMm/tKXWO oIrMkfYU0MZc+CS09VOqrGEsTP6MauA/SoY9safzjidyuN3adpaw6v+tk8IdAL+l s3o6YtmTsv2JGCOMEJ3Ru8bBPeP6QMfLArn4C9wMr5+1gMGIUB3UEP/c2NHO7Dq0 RpUKcWFcL4uOrmkKrQ6+4WZfjgs/Y5tL68tuOfiMIrvb+4pgTG7l6KNknSWvNre6 n6Pb5tIRLps5U+vxWzNd =VMhu -----END PGP SIGNATURE----- --JimVsNWoHmqbSC4RI3XaVV0X7TJI61S7M-- From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 13:26:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 396FDC91; Tue, 21 Jan 2014 13:26:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 24A071CF4; Tue, 21 Jan 2014 13:26:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LDQtnd076895; Tue, 21 Jan 2014 13:26:55 GMT (envelope-from feld@svn.freebsd.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LDQseI076894; Tue, 21 Jan 2014 13:26:54 GMT (envelope-from feld@svn.freebsd.org) Message-Id: <201401211326.s0LDQseI076894@svn.freebsd.org> From: Mark Felder Date: Tue, 21 Jan 2014 13:26:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340606 - head/devel/pear-htmlpurifier X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 13:26:55 -0000 Author: feld Date: Tue Jan 21 13:26:54 2014 New Revision: 340606 URL: http://svnweb.freebsd.org/changeset/ports/340606 QAT: https://qat.redports.org/buildarchive/r340606/ Log: Remove NO_STAGE Pointyhat -> Me Approved by: swills (mentor, implicit) Modified: head/devel/pear-htmlpurifier/Makefile Modified: head/devel/pear-htmlpurifier/Makefile ============================================================================== --- head/devel/pear-htmlpurifier/Makefile Tue Jan 21 12:44:38 2014 (r340605) +++ head/devel/pear-htmlpurifier/Makefile Tue Jan 21 13:26:54 2014 (r340606) @@ -19,7 +19,8 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} PEAR_CHANNEL= htmlpurifier PEAR_AUTOINSTALL= yes -NO_STAGE= yes + +PLIST_FILES+= %%PEARDIR%%/.channels/.alias/hp.txt .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 13:45:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0ABC5250; Tue, 21 Jan 2014 13:45:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D0AC61EAE; Tue, 21 Jan 2014 13:45:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LDjGHO084128; Tue, 21 Jan 2014 13:45:16 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LDjG3d084127; Tue, 21 Jan 2014 13:45:16 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201401211345.s0LDjG3d084127@svn.freebsd.org> From: Renato Botelho Date: Tue, 21 Jan 2014 13:45:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340607 - head/www/lighttpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 13:45:17 -0000 Author: garga Date: Tue Jan 21 13:45:16 2014 New Revision: 340607 URL: http://svnweb.freebsd.org/changeset/ports/340607 QAT: https://qat.redports.org/buildarchive/r340607/ Log: - Fix build for non-root - Update LICENSE - Convert to new LIB_DEPENDS syntax Approved by: portmgr (mat) Modified: head/www/lighttpd/Makefile Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Tue Jan 21 13:26:54 2014 (r340606) +++ head/www/lighttpd/Makefile Tue Jan 21 13:45:16 2014 (r340607) @@ -10,11 +10,11 @@ MAINTAINER?= mm@FreeBSD.org COMMENT?= Secure, fast, compliant, and flexible Web Server .if !defined(_BUILDING_LIGHTTPD_MODULE) -LICENSE= BSD +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING .endif -LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre USE_BZIP2= yes GNU_CONFIGURE= yes @@ -39,7 +39,7 @@ USE_RC_SUBR= lighttpd OPTIONS_DEFINE= BZIP2 FAM GDBM IPV6 LIBEV LUA MEMCACHE MYSQL MYSQLAUTH \ NODELAY LDAP OPENSSL SPAWNFCGI VALGRIND WEBDAV -OPTIONS_DEFAULT= IPV6 OPENSSL +OPTIONS_DEFAULT= IPV6 OPENSSL BZIP2_DESC= bzip2 support (mod_compress) GDBM_DESC= gdbm storage (mod_trigger_b4_dl) @@ -104,7 +104,7 @@ CONFIGURE_ARGS+= --with-bzip2 .endif .if ${PORT_OPTIONS:MGDBM} -LIB_DEPENDS+= gdbm:${PORTSDIR}/databases/gdbm +LIB_DEPENDS+= libgdbm.so:${PORTSDIR}/databases/gdbm CONFIGURE_ARGS+= --with-gdbm .endif @@ -114,7 +114,7 @@ CONFIGURE_ARGS+= --disable-ipv6 .if ${PORT_OPTIONS:MLIBEV} CONFIGURE_ARGS+= --with-libev=${LOCALBASE} -LIB_DEPENDS+= ev.4:${PORTSDIR}/devel/libev +LIB_DEPENDS+= libev.so:${PORTSDIR}/devel/libev .endif .if ${PORT_OPTIONS:MLUA} @@ -124,7 +124,7 @@ CONFIGURE_ENV+= LUA_CFLAGS="-I${LUA_INC .endif .if ${PORT_OPTIONS:MMEMCACHE} -LIB_DEPENDS+= memcache.4:${PORTSDIR}/databases/libmemcache +LIB_DEPENDS+= libmemcache.so:${PORTSDIR}/databases/libmemcache CONFIGURE_ARGS+= --with-memcache .endif @@ -165,8 +165,8 @@ CONFIGURE_ARGS+= --with-valgrind .if ${PORT_OPTIONS:MWEBDAV} USE_GNOME+= libxml2 -LIB_DEPENDS+= uuid.1:${PORTSDIR}/misc/e2fsprogs-libuuid \ - sqlite3.8:${PORTSDIR}/databases/sqlite3 +LIB_DEPENDS+= libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid \ + libsqlite3.so:${PORTSDIR}/databases/sqlite3 CONFIGURE_ARGS+= --with-webdav-props --with-webdav-locks .endif @@ -217,8 +217,6 @@ post-install: .endfor @${INSTALL_DATA} ${WRKSRC}/doc/config/vhosts.d/vhosts.template \ ${STAGEDIR}${PREFIX}/etc/lighttpd/vhosts.d/vhosts.template - @${MKDIR} -m 0700 ${STAGEDIR}${LIGHTTPD_LOGROOT} - @${CHOWN} ${LIGHTTPD_USER}:${LIGHTTPD_GROUP} ${STAGEDIR}${LIGHTTPD_LOGROOT} .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 13:49:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF1D7546; Tue, 21 Jan 2014 13:49:58 +0000 (UTC) Received: from mail-gg0-x235.google.com (mail-gg0-x235.google.com [IPv6:2607:f8b0:4002:c02::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7698E1F17; Tue, 21 Jan 2014 13:49:58 +0000 (UTC) Received: by mail-gg0-f181.google.com with SMTP id 21so2577082ggh.40 for ; Tue, 21 Jan 2014 05:49:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:organization:user-agent:mime-version:to :subject:references:in-reply-to:content-type; bh=+mo7CcPZZ817l+xsaooh8rQSWZwcCy8ynkENaQZrbYA=; b=gkLpKqIn+fWJlUzYhgFLMpBlaGZCKDzujdiXv4bzA9ICnwgYMqmM6nRUndX0I4cxei ulB9TCBt1asIQt7Aoj4qEyReZl8zQ2jxWpzWizvWtL30iOPzn+AOS/uVJU3Z4c+ExyE3 qVgpgbfbWzsQoQ0WJ1OW3ENJs7wqjbIpjI5EqyaZgLbpAlaHsh6+rxyDDtcbes1mRfJF HrwA6S6UTZXCDYV9rPRdU2DnIzKNtLaKZS1FEkLVeUbkEAqVCPSPYmwIdwUpVku/ICYt UocEVcIFTGFE+XyWQrvZB204hkruShg9ojN6ifCmRzjNLd7F2tgJCcis0ZNVWNKT+aSy TzMA== X-Received: by 10.236.85.237 with SMTP id u73mr23289722yhe.67.1390312197566; Tue, 21 Jan 2014 05:49:57 -0800 (PST) Received: from [192.168.11.100] (201-93-229-16.dsl.telesp.net.br. [201.93.229.16]) by mx.google.com with ESMTPSA id d32sm13060041yhq.27.2014.01.21.05.49.54 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 21 Jan 2014 05:49:56 -0800 (PST) Sender: Renato Botelho Message-ID: <52DE7B00.5020902@FreeBSD.org> Date: Tue, 21 Jan 2014 11:49:52 -0200 From: Renato Botelho Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Martin Matuska , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340261 - in head/www: lighttpd lighttpd-mod_geoip lighttpd-mod_h264_streaming References: <201401191100.s0JB0TUZ062181@svn.freebsd.org> <52DE6D56.90403@FreeBSD.org> In-Reply-To: <52DE6D56.90403@FreeBSD.org> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="bNTQTemIue72991k8VSRiTOoNXdaBpL17" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 13:49:59 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --bNTQTemIue72991k8VSRiTOoNXdaBpL17 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 21-01-2014 10:51, Renato Botelho wrote: > On 19-01-2014 09:00, Martin Matuska wrote: >> Author: mm >> Date: Sun Jan 19 11:00:28 2014 >> New Revision: 340261 >> URL: http://svnweb.freebsd.org/changeset/ports/340261 >> QAT: https://qat.redports.org/buildarchive/r340261/ >> >> Log: >> Add STAGE support >=20 > I got the following error on make stage as non-root: >=20 > mchown: /usr/home/garga/lighttpd/work/stage/var/log/lighttpd: Operation= > not permitted >=20 > It needs to be fixed, or NEED_ROOT to be added to Makefile. I committed a fix, with portmgr approval. --=20 Renato Botelho GnuPG Key: http://www.FreeBSD.org/~garga/pubkey.asc --bNTQTemIue72991k8VSRiTOoNXdaBpL17 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 Comment: GPGTools - http://gpgtools.org Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBCgAGBQJS3nsAAAoJEPHw56GfYleQVqAP/0aCHvmlyQOl54IN21TcnSEK GbGlS0Sihs9SX1XQYI0mPJ6uX21dRzsH7SRSdfH2Z17FnhAkTJseNGzpbMP6Cp6s r+duRuQhJk8B0V3xwZhKst0FPcsOSFCsvGhuhei4wecgPvbDGl32W5ElOD/RuhAY Nj8fGGnMjr0gN3w732qV5+Nh5uvPGLQHTpzx9c/Dt2+eVYMOUYMOFcdRMH8vHkr1 ieoevvTRSdfTsk98FgDWMMYeAgs6DJkZPNMMoFtoxwoX3zXY2wNcmwhRFZVpHHpm PsEe5EzFd0b4acGCOe5gZmpcElkozhqhrY5xCCNK8g6knGArDVCpoeEVAom6cl2X ogq7mHhuFNEj7gD/mGsGUoCyFcFUpwa4/IOUYeOk3Dir/zECwfHo4LlKfCKxDvfM jphoUO3FZZamkprZ381KfrOcGO38aQWsxoIG7MmRKLUeDnEKXdVbQ/sitrx6U63i +xWitXomeekKmBLIzlAyOiAR/4MxY2omfTPypZ7RuMjkoaRTVUBUnj8ehxmLot54 9qTZAxHmA8d7G3J8qc0hhfW5jIJxxEG0bBl/lvCm3/5GvyrVKoS+eTDfZtfqR4/r 4P5su1aaFR0ga3gcsYgqgviPA1U5YTQ9RZhcVVobxMDZjF+bUPmBNMrTtgbxJgSM Pmpnly92ojGFrXTamAcW =M7QG -----END PGP SIGNATURE----- --bNTQTemIue72991k8VSRiTOoNXdaBpL17-- From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 13:53:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 94450688; Tue, 21 Jan 2014 13:53:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7DFAE1FA5; Tue, 21 Jan 2014 13:53:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LDriCh087622; Tue, 21 Jan 2014 13:53:44 GMT (envelope-from tabthorpe@svn.freebsd.org) Received: (from tabthorpe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LDrisY087617; Tue, 21 Jan 2014 13:53:44 GMT (envelope-from tabthorpe@svn.freebsd.org) Message-Id: <201401211353.s0LDrisY087617@svn.freebsd.org> From: Thomas Abthorpe Date: Tue, 21 Jan 2014 13:53:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340608 - head/multimedia/py-openlp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 13:53:44 -0000 Author: tabthorpe Date: Tue Jan 21 13:53:43 2014 New Revision: 340608 URL: http://svnweb.freebsd.org/changeset/ports/340608 QAT: https://qat.redports.org/buildarchive/r340608/ Log: - Support STAGEDIR - Thanks to antoine@ who did all the real work to clean this up Submitted by: antoine Modified: head/multimedia/py-openlp/Makefile head/multimedia/py-openlp/pkg-descr (contents, props changed) head/multimedia/py-openlp/pkg-plist Modified: head/multimedia/py-openlp/Makefile ============================================================================== --- head/multimedia/py-openlp/Makefile Tue Jan 21 13:45:16 2014 (r340607) +++ head/multimedia/py-openlp/Makefile Tue Jan 21 13:53:43 2014 (r340608) @@ -12,57 +12,57 @@ COMMENT= Open Source Lyrics Projection LICENSE= GPLv2 -BUILD_DEPENDS= py*-sip>=0:${PORTSDIR}/devel/py-sip \ - py*-qt4-core>=0:${PORTSDIR}/devel/py-qt4-core \ - py*-qt4-gui>=0:${PORTSDIR}/x11-toolkits/py-qt4-gui \ - py*-mako>0:${PORTSDIR}/textproc/py-mako \ - py*-sqlalchemy>=0.5:${PORTSDIR}/databases/py-sqlalchemy -RUN_DEPENDS= py*-beautifulsoup32>0:${PORTSDIR}/www/py-beautifulsoup32 \ - py*-lxml>=0:${PORTSDIR}/devel/py-lxml \ - py*-qt4-core>=0:${PORTSDIR}/devel/py-qt4-core \ - py*-phonon>=${PYQT4_VERSION}:${PORTSDIR}/multimedia/py-qt4-phonon \ - py*-sqlalchemy>=0.5:${PORTSDIR}/databases/py-sqlalchemy \ - py*-qt4-gui>=0:${PORTSDIR}/x11-toolkits/py-qt4-gui \ - py*-qt4-webkit>=0:${PORTSDIR}/www/py-qt4-webkit \ - py*-qt4-network>=0:${PORTSDIR}/net/py-qt4-network \ - py*-qt4-opengl>=0:${PORTSDIR}/x11/py-qt4-opengl \ - py*-qt4-svg>=0:${PORTSDIR}/graphics/py-qt4-svg \ - py*-qt4-test>=0:${PORTSDIR}/devel/py-qt4-test \ - py*-chardet>=0:${PORTSDIR}/textproc/py-chardet \ - py*-mako>0:${PORTSDIR}/textproc/py-mako \ - py*-enchant>0:${PORTSDIR}/textproc/py-enchant \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sip>=0:${PORTSDIR}/devel/py-sip \ + ${PYTHON_PKGNAMEPREFIX}qt4-core>=0:${PORTSDIR}/devel/py-qt4-core \ + ${PYTHON_PKGNAMEPREFIX}qt4-gui>=0:${PORTSDIR}/x11-toolkits/py-qt4-gui \ + ${PYTHON_PKGNAMEPREFIX}mako>0:${PORTSDIR}/textproc/py-mako \ + ${PYTHON_PKGNAMEPREFIX}sqlalchemy>=0.5:${PORTSDIR}/databases/py-sqlalchemy +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}beautifulsoup32>0:${PORTSDIR}/www/py-beautifulsoup32 \ + ${PYTHON_PKGNAMEPREFIX}lxml>=0:${PORTSDIR}/devel/py-lxml \ + ${PYTHON_PKGNAMEPREFIX}qt4-core>=0:${PORTSDIR}/devel/py-qt4-core \ + ${PYTHON_PKGNAMEPREFIX}qt4-phonon>=0:${PORTSDIR}/multimedia/py-qt4-phonon \ + ${PYTHON_PKGNAMEPREFIX}sqlalchemy>=0.5:${PORTSDIR}/databases/py-sqlalchemy \ + ${PYTHON_PKGNAMEPREFIX}qt4-gui>=0:${PORTSDIR}/x11-toolkits/py-qt4-gui \ + ${PYTHON_PKGNAMEPREFIX}qt4-webkit>=0:${PORTSDIR}/www/py-qt4-webkit \ + ${PYTHON_PKGNAMEPREFIX}qt4-network>=0:${PORTSDIR}/net/py-qt4-network \ + ${PYTHON_PKGNAMEPREFIX}qt4-opengl>=0:${PORTSDIR}/x11/py-qt4-opengl \ + ${PYTHON_PKGNAMEPREFIX}qt4-svg>=0:${PORTSDIR}/graphics/py-qt4-svg \ + ${PYTHON_PKGNAMEPREFIX}qt4-test>=0:${PORTSDIR}/devel/py-qt4-test \ + ${PYTHON_PKGNAMEPREFIX}chardet>=0:${PORTSDIR}/textproc/py-chardet \ + ${PYTHON_PKGNAMEPREFIX}mako>0:${PORTSDIR}/textproc/py-mako \ + ${PYTHON_PKGNAMEPREFIX}enchant>0:${PORTSDIR}/textproc/py-enchant \ ${PYTHON_PKGNAMEPREFIX}sqlalchemy-migrate>=0.6.1:${PORTSDIR}/databases/py-sqlalchemy-migrate \ - py*-sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \ + ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \ unoconv:${PORTSDIR}/textproc/unoconv -PYDISTUTILS_NOEGGINFO= yes +USES= desktop-file-utils USE_PYTHON= yes -USE_PYDISTUTILS=easy_install +USE_PYDISTUTILS=yes +PYDISTUTILS_AUTOPLIST= yes USE_GSTREAMER= good bad ugly USE_QT4= linguist phonon-gst WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} QT_LRELEASE= ${LOCALBASE}/bin/lrelease-qt4 -NO_STAGE= yes pre-build: - @${MKDIR} -p ${WRKSRC}/resources/i18n/qm + @${RM} -f ${WRKSRC}/resources/__init__.py + @${MKDIR} ${WRKSRC}/resources/i18n/qm @set -e; \ for TSFILE in ${WRKSRC}/resources/i18n/*.ts; do \ ${QT_LRELEASE} $$TSFILE -qm ${WRKSRC}/resources/i18n/qm/`basename $$TSFILE .ts`.qm; \ done post-install: - @${MKDIR} -p ${PREFIX}/share/openlp/i18n/ - @${CP} ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG}/resources/i18n/qm/*.qm ${PREFIX}/share/openlp/i18n/ - #@${MV} ${PREFIX}/bin/openlp.pyw ${PREFIX}/bin/openlp - @${LN} -s ${PREFIX}/bin/openlp.pyw ${PREFIX}/bin/openlp - @${CP} ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG}/resources/openlp.desktop ${PREFIX}/share/applications/ - @set -e; \ + @${MKDIR} ${STAGEDIR}${PREFIX}/share/openlp/i18n + ${INSTALL_DATA} ${WRKSRC}/resources/i18n/qm/*.qm ${STAGEDIR}${PREFIX}/share/openlp/i18n + ${LN} -sf openlp.pyw ${STAGEDIR}${PREFIX}/bin/openlp + ${INSTALL_DATA} ${WRKSRC}/resources/openlp.desktop ${STAGEDIR}${PREFIX}/share/applications + set -e; \ for SIZE in 16x16 32x32 48x48 64x64 128x128 256x256; do \ - mkdir -p ${PREFIX}/share/icons/hicolor/$$SIZE/apps && \ - cp ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG}/resources/images/openlp-logo-$$SIZE.png ${PREFIX}/share/icons/hicolor/$$SIZE/apps/openlp.png; \ + ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/$$SIZE/apps && \ + ${INSTALL_DATA} ${WRKSRC}/resources/images/openlp-logo-$$SIZE.png ${STAGEDIR}${PREFIX}/share/icons/hicolor/$$SIZE/apps/openlp.png; \ done - @${MKDIR} -p ${PREFIX}/share/icons/hicolor/scalable/apps - @${CP} ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG}/resources/images/openlp-logo.svg ${PREFIX}/share/icons/hicolor/scalable/apps/openlp.svg + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps + ${INSTALL_DATA} ${WRKSRC}/resources/images/openlp-logo.svg ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/openlp.svg .include Modified: head/multimedia/py-openlp/pkg-descr ============================================================================== --- head/multimedia/py-openlp/pkg-descr Tue Jan 21 13:45:16 2014 (r340607) +++ head/multimedia/py-openlp/pkg-descr Tue Jan 21 13:53:43 2014 (r340608) @@ -3,4 +3,4 @@ software, used to display slides of song images, and even presentations for church worship using a computer and a data projector. -WWW: http://openlp.org +WWW: http://openlp.org Modified: head/multimedia/py-openlp/pkg-plist ============================================================================== --- head/multimedia/py-openlp/pkg-plist Tue Jan 21 13:45:16 2014 (r340607) +++ head/multimedia/py-openlp/pkg-plist Tue Jan 21 13:53:43 2014 (r340608) @@ -1,5 +1,4 @@ bin/openlp -bin/openlp.pyw share/applications/openlp.desktop share/icons/hicolor/128x128/apps/openlp.png share/icons/hicolor/16x16/apps/openlp.png @@ -32,917 +31,6 @@ share/openlp/i18n/sk.qm share/openlp/i18n/sv.qm share/openlp/i18n/ta_LK.qm share/openlp/i18n/zh_CN.qm -%%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/scripts/openlp.pyw -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//EGG-INFO/top_level.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/.version -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/db.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/db.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/db.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/dockwidget.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/dockwidget.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/dockwidget.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/eventreceiver.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/eventreceiver.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/eventreceiver.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/filedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/filedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/filedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/formattingtags.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/formattingtags.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/formattingtags.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/htmlbuilder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/htmlbuilder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/htmlbuilder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/imagemanager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/imagemanager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/imagemanager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/listwidgetwithdnd.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/listwidgetwithdnd.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/listwidgetwithdnd.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/mediamanageritem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/mediamanageritem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/mediamanageritem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/mediaplayer.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/mediaplayer.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/mediaplayer.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/plugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/plugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/plugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/pluginmanager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/pluginmanager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/pluginmanager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/renderer.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/renderer.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/renderer.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/searchedit.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/searchedit.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/searchedit.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/serviceitem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/serviceitem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/serviceitem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/settings.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/settings.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/settings.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/settingsmanager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/settingsmanager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/settingsmanager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/settingstab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/settingstab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/settingstab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/spelltextedit.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/spelltextedit.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/spelltextedit.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/theme.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/theme.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/theme.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/toolbar.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/toolbar.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/toolbar.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/ui.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/ui.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/lib/ui.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/resources.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/resources.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/resources.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/theme/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/theme/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/theme/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/theme/theme.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/theme/theme.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/theme/theme.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/aboutdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/aboutdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/aboutdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/aboutform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/aboutform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/aboutform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/advancedtab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/advancedtab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/advancedtab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/exceptiondialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/exceptiondialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/exceptiondialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/exceptionform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/exceptionform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/exceptionform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/filerenamedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/filerenamedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/filerenamedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/filerenameform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/filerenameform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/filerenameform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimeform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimeform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimeform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimelanguagedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimelanguagedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimelanguagedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimelanguageform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimelanguageform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimelanguageform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimewizard.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimewizard.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/firsttimewizard.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/formattingtagdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/formattingtagdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/formattingtagdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/formattingtagform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/formattingtagform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/formattingtagform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/generaltab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/generaltab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/generaltab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/maindisplay.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/maindisplay.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/maindisplay.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/mainwindow.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/mainwindow.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/mainwindow.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/mediacontroller.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/mediacontroller.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/mediacontroller.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/phononplayer.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/phononplayer.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/phononplayer.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/vlc.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/vlc.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/vlc.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/vlcplayer.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/vlcplayer.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/vlcplayer.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/webkitplayer.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/webkitplayer.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/media/webkitplayer.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/mediadockmanager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/mediadockmanager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/mediadockmanager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/plugindialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/plugindialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/plugindialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/pluginform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/pluginform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/pluginform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/printservicedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/printservicedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/printservicedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/printserviceform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/printserviceform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/printserviceform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/screen.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/screen.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/screen.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/serviceitemeditdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/serviceitemeditdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/serviceitemeditdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/serviceitemeditform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/serviceitemeditform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/serviceitemeditform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/servicemanager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/servicemanager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/servicemanager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/servicenoteform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/servicenoteform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/servicenoteform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/settingsdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/settingsdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/settingsdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/settingsform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/settingsform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/settingsform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/shortcutlistdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/shortcutlistdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/shortcutlistdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/shortcutlistform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/shortcutlistform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/shortcutlistform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/slidecontroller.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/slidecontroller.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/slidecontroller.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/splashscreen.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/splashscreen.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/splashscreen.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/starttimedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/starttimedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/starttimedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/starttimeform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/starttimeform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/starttimeform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themeform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themeform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themeform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themelayoutdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themelayoutdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themelayoutdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themelayoutform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themelayoutform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themelayoutform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/thememanager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/thememanager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/thememanager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themestab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themestab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themestab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themewizard.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themewizard.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/themewizard.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/wizard.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/wizard.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/ui/wizard.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/utils/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/utils/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/utils/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/utils/actions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/utils/actions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/utils/actions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/utils/languagemanager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/utils/languagemanager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/core/utils/languagemanager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/alertsplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/alertsplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/alertsplugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/forms/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/forms/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/forms/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/forms/alertdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/forms/alertdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/forms/alertdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/forms/alertform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/forms/alertform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/forms/alertform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/alertsmanager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/alertsmanager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/alertsmanager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/alertstab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/alertstab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/alertstab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/db.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/db.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/alerts/lib/db.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/bibleplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/bibleplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/bibleplugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/bibleimportform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/bibleimportform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/bibleimportform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/bibleupgradeform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/bibleupgradeform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/bibleupgradeform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/booknamedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/booknamedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/booknamedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/booknameform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/booknameform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/booknameform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/editbibledialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/editbibledialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/editbibledialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/editbibleform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/editbibleform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/editbibleform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/languagedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/languagedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/languagedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/languageform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/languageform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/forms/languageform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/biblestab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/biblestab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/biblestab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/csvbible.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/csvbible.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/csvbible.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/db.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/db.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/db.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/http.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/http.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/http.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/manager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/manager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/manager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/mediaitem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/mediaitem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/mediaitem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/openlp1.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/openlp1.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/openlp1.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/opensong.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/opensong.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/opensong.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/osis.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/osis.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/osis.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/upgrade.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/upgrade.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/upgrade.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/versereferencelist.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/versereferencelist.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/lib/versereferencelist.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/bibles/resources/bibles_resources.sqlite -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/customplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/customplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/customplugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomslidedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomslidedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomslidedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomslideform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomslideform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/forms/editcustomslideform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/customtab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/customtab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/customtab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/customxmlhandler.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/customxmlhandler.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/customxmlhandler.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/db.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/db.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/db.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/mediaitem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/mediaitem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/custom/lib/mediaitem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/imageplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/imageplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/imageplugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/lib/imagetab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/lib/imagetab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/lib/imagetab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/lib/mediaitem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/lib/mediaitem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/images/lib/mediaitem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/lib/mediaitem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/lib/mediaitem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/lib/mediaitem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/lib/mediatab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/lib/mediatab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/lib/mediatab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/mediaplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/mediaplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/media/mediaplugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/impresscontroller.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/impresscontroller.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/impresscontroller.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/mediaitem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/mediaitem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/mediaitem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/messagelistener.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/messagelistener.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/messagelistener.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/powerpointcontroller.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/powerpointcontroller.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/powerpointcontroller.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/pptviewcontroller.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/pptviewcontroller.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/pptviewcontroller.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/pptviewlib/ppttest.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/pptviewlib/ppttest.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/pptviewlib/ppttest.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/presentationcontroller.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/presentationcontroller.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/presentationcontroller.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/presentationtab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/presentationtab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/lib/presentationtab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/presentationplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/presentationplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/presentations/presentationplugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/ajax-loader.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/form-check-off.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/form-check-on.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/form-radio-off.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/form-radio-on.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/icon-search-black.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/icons-18-black.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/icons-18-white.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/icons-36-black.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/icons-36-white.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/ui-icon-blank.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/images/ui-icon-unblank.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/index.html -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/jquery.js -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/jquery.mobile.css -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/jquery.mobile.js -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/openlp.css -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/openlp.js -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/stage.css -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/stage.html -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/html/stage.js -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/lib/httpserver.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/lib/httpserver.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/lib/httpserver.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/lib/remotetab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/lib/remotetab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/lib/remotetab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/remoteplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/remoteplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/remotes/remoteplugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/authorsdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/authorsdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/authorsdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/authorsform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/authorsform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/authorsform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editsongdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editsongdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editsongdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editsongform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editsongform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editsongform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editversedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editversedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editversedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editverseform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editverseform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/editverseform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/mediafilesdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/mediafilesdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/mediafilesdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/mediafilesform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/mediafilesform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/mediafilesform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songbookdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songbookdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songbookdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songbookform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songbookform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songbookform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songexportform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songexportform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songexportform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songimportform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songimportform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songimportform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songmaintenancedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songmaintenancedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songmaintenancedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songmaintenanceform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songmaintenanceform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/songmaintenanceform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/topicsdialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/topicsdialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/topicsdialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/topicsform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/topicsform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/forms/topicsform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/cclifileimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/cclifileimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/cclifileimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/db.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/db.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/db.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/dreambeamimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/dreambeamimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/dreambeamimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/easyslidesimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/easyslidesimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/easyslidesimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/ewimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/ewimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/ewimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/foilpresenterimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/foilpresenterimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/foilpresenterimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/importer.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/importer.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/importer.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/mediaitem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/mediaitem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/mediaitem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/mediashoutimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/mediashoutimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/mediashoutimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/olp1import.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/olp1import.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/olp1import.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/olpimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/olpimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/olpimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/oooimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/oooimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/oooimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/openlyricsexport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/openlyricsexport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/openlyricsexport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/openlyricsimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/openlyricsimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/openlyricsimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/opensongimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/opensongimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/opensongimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/powersongimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/powersongimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/powersongimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/sofimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/sofimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/sofimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songbeamerimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songbeamerimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songbeamerimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songproimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songproimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songproimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songshowplusimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songshowplusimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songshowplusimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songstab.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songstab.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/songstab.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/sundayplusimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/sundayplusimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/sundayplusimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/test/test_import_file.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/test/test_import_file.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/test/test_import_file.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/test/test_importing_lots.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/test/test_importing_lots.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/test/test_importing_lots.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/test/test_opensongimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/test/test_opensongimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/test/test_opensongimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/ui.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/ui.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/ui.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/upgrade.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/upgrade.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/upgrade.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/wowimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/wowimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/wowimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/xml.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/xml.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/xml.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/zionworximport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/zionworximport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/lib/zionworximport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/songsplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/songsplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songs/songsplugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedeletedialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedeletedialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedeletedialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedeleteform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedeleteform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedeleteform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedetaildialog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedetaildialog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedetaildialog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedetailform.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedetailform.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/forms/songusagedetailform.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/lib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/lib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/lib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/lib/db.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/lib/db.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/lib/db.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/lib/upgrade.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/lib/upgrade.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/lib/upgrade.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/songusageplugin.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/songusageplugin.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//openlp/plugins/songusage/songusageplugin.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/about.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/alertdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/authorsdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/bibleimportdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/bibleimportwizard.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/displaytabdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/editcustomdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/editcustomslidedialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/editsongdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/editversedialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/exceptiondialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/filerenamedialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/firsttimewizard.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/mainwindow.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/plugindialoglistform.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/printserviceorderdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/serviceitemeditdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/servicenotedialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/settings.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/shortcutlistdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/songbookdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/songimportwizard.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/songmaintenance.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/songusagedeletedialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/songusagedetaildialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/splashscreen.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/themelayout.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/themewizard.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/forms/topicsdialog.ui -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/af.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/cs.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/da.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/de.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/el.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/en.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/en_GB.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/en_ZA.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/es.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/et.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/fi.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/fr.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/hu.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/id.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/ja.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/nb.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/nl.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/pl.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/pt_BR.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/af.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/cs.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/da.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/de.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/el.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/en.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/en_GB.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/en_ZA.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/es.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/et.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/fi.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/fr.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/hu.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/id.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/ja.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/nb.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/nl.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/pl.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/pt_BR.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/ru.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/sk.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/sv.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/ta_LK.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/qm/zh_CN.qm -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/ru.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/sk.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/sv.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/ta_LK.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/i18n/zh_CN.ts -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/OpenLP.ico -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/README.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/about-new.bmp -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/android_app_qr.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/author_add.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/author_delete.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/author_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/author_maintenance.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/bibles_search_lock.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/bibles_search_reference.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/bibles_search_text.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/bibles_search_unlock.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/bibles_upgrade_alert.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/book_add.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/book_delete.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/book_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/book_maintenance.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/clear_shortcut.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/custom_delete.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/custom_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/custom_new.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/exception.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/export_load.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_add.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_clone.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_delete.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_email.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_export.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_import.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_live.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_new.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_open.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_preview.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_print.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_revert.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_save.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_search_clear.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_zoom_in.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_zoom_original.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/general_zoom_out.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/image_clapperboard.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/image_delete.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/image_load.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/import_load.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/import_move_to_list.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/import_remove.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/import_selectall.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/media_audio.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/media_playback_next.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/media_playback_pause.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/media_playback_start.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/media_playback_stop.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/media_stop.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/media_time.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/media_video.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/messagebox_critical.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/messagebox_info.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/messagebox_warning.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-2.qrc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-about-logo.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-about-logo.svg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-default-dualdisplay.svg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-logo-128x128.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-logo-16x16.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-logo-256x256.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-logo-32x32.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-logo-420x420.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-logo-48x48.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-logo-64x64.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-logo.svg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-splash-screen.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp-splash-screen.svg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp.org.ico -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/openlp.svg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/plugin_alerts.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/plugin_bibles.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/plugin_custom.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/plugin_images.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/plugin_media.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/plugin_presentations.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/plugin_remote.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/plugin_songs.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/plugin_songusage.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/presentation_delete.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/presentation_load.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_bottom.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_collapse_all.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_delete.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_down.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_expand_all.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_item_notes.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_new.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_notes.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_open.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_save.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_top.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/service_up.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/settings_plugin_list.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/slide_blank.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/slide_close.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/slide_desktop.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/slide_next.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/slide_previous.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/slide_theme.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/slidecontroller_multimedia.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_author_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_book_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_delete.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_export.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_maintenance.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_new.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_search_all.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_search_author.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_search_lyrics.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_search_title.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_topic_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_usage_active.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/song_usage_inactive.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/splash-screen-new.bmp -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_about.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_add.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_close.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_configure.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_configure_shortcuts.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_edit_copy.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_exit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_help_contents.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_live.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_mediamanager.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_online_help.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_preview.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_servicemanager.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_settings.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_thememanager.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/system_volunteer.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/tag_editor.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/theme_delete.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/theme_edit.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/theme_export.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%//resources/images/theme_import.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 14:02:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 751AA975; Tue, 21 Jan 2014 14:02:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 60C1E10AC; Tue, 21 Jan 2014 14:02:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LE2Ljj091446; Tue, 21 Jan 2014 14:02:21 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LE2Lrj091445; Tue, 21 Jan 2014 14:02:21 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201401211402.s0LE2Lrj091445@svn.freebsd.org> From: Renato Botelho Date: Tue, 21 Jan 2014 14:02:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340609 - head/www/lighttpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 14:02:21 -0000 Author: garga Date: Tue Jan 21 14:02:20 2014 New Revision: 340609 URL: http://svnweb.freebsd.org/changeset/ports/340609 QAT: https://qat.redports.org/buildarchive/r340609/ Log: Fix pkg-plist broken on last commit Modified: head/www/lighttpd/pkg-plist (contents, props changed) Modified: head/www/lighttpd/pkg-plist ============================================================================== --- head/www/lighttpd/pkg-plist Tue Jan 21 13:53:43 2014 (r340608) +++ head/www/lighttpd/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) @@ -181,4 +181,3 @@ sbin/lighttpd-angel @cwd / @exec %%MKDIR%% -m 0700 %%LOGROOT%% @exec %%CHOWN%% %%USER%%:%%GROUP%% %%LOGROOT%% -@dirrmtry %%LOGROOT%% From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 14:04:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AEF9CA75; Tue, 21 Jan 2014 14:04:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 97EBE10BE; Tue, 21 Jan 2014 14:04:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LE47nf092182; Tue, 21 Jan 2014 14:04:07 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LE405r092115; Tue, 21 Jan 2014 14:04:00 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401211404.s0LE405r092115@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 14:04:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340610 - in head/textproc: p5-ElasticSearch-SearchBuilder p5-Excel-Template p5-File-Inplace p5-FormValidator-Lite p5-Getopt-Lucid p5-HTML-Entities-ImodePictogram p5-HTML-Entities-Numbe... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 14:04:07 -0000 Author: mat Date: Tue Jan 21 14:03:59 2014 New Revision: 340610 URL: http://svnweb.freebsd.org/changeset/ports/340610 QAT: https://qat.redports.org/buildarchive/r340610/ Log: * Convert to staging * Add license * pet portlint Sponsored by: Absolight Modified: head/textproc/p5-ElasticSearch-SearchBuilder/Makefile head/textproc/p5-ElasticSearch-SearchBuilder/pkg-plist head/textproc/p5-Excel-Template/Makefile head/textproc/p5-Excel-Template/pkg-plist (contents, props changed) head/textproc/p5-File-Inplace/Makefile head/textproc/p5-File-Inplace/pkg-plist (contents, props changed) head/textproc/p5-FormValidator-Lite/Makefile head/textproc/p5-FormValidator-Lite/pkg-plist head/textproc/p5-Getopt-Lucid/Makefile head/textproc/p5-Getopt-Lucid/pkg-plist (contents, props changed) head/textproc/p5-HTML-Entities-ImodePictogram/Makefile head/textproc/p5-HTML-Entities-ImodePictogram/pkg-plist (contents, props changed) head/textproc/p5-HTML-Entities-Numbered/Makefile head/textproc/p5-HTML-Entities-Numbered/pkg-plist (contents, props changed) head/textproc/p5-HTML-FormatText-WithLinks/Makefile head/textproc/p5-HTML-FormatText-WithLinks/pkg-plist (contents, props changed) head/textproc/p5-HTML-Fraction/Makefile head/textproc/p5-HTML-Fraction/pkg-plist (contents, props changed) head/textproc/p5-HTML-HTML5-Entities/Makefile head/textproc/p5-HTML-HTML5-Entities/pkg-plist (contents, props changed) head/textproc/p5-HTML-HTML5-Parser/Makefile (contents, props changed) head/textproc/p5-HTML-HTML5-Parser/pkg-plist (contents, props changed) head/textproc/p5-HTML-HTMLDoc/Makefile head/textproc/p5-HTML-HTMLDoc/pkg-plist (contents, props changed) head/textproc/p5-HTML-Quoted/Makefile head/textproc/p5-HTML-Quoted/pkg-plist (contents, props changed) head/textproc/p5-HTML-SBC/Makefile head/textproc/p5-HTML-SBC/pkg-plist (contents, props changed) head/textproc/p5-Hailo/Makefile head/textproc/p5-Hailo/pkg-plist (contents, props changed) head/textproc/p5-Hatena-Keyword/Makefile head/textproc/p5-Hatena-Keyword/pkg-plist head/textproc/p5-IO-CSVHeaderFile/Makefile head/textproc/p5-IO-CSVHeaderFile/pkg-plist (contents, props changed) head/textproc/p5-Kwalify/Makefile head/textproc/p5-Kwalify/pkg-plist (contents, props changed) Modified: head/textproc/p5-ElasticSearch-SearchBuilder/Makefile ============================================================================== --- head/textproc/p5-ElasticSearch-SearchBuilder/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-ElasticSearch-SearchBuilder/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tj@FreeBSD.org COMMENT= ElasticSearch Query Builder +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-Carp>=0:${PORTSDIR}/devel/p5-Carp \ p5-Scalar-List-Utils>=0:${PORTSDIR}/lang/p5-Scalar-List-Utils TEST_DEPENDS= p5-Test-Deep>=:${PORTSDIR}/devel/p5-Test-Deep \ @@ -19,7 +22,4 @@ TEST_DEPENDS= p5-Test-Deep>=:${PORTSDIR} USES= perl5 USE_PERL5= configure -MAN3= ElasticSearch::SearchBuilder.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-ElasticSearch-SearchBuilder/pkg-plist ============================================================================== --- head/textproc/p5-ElasticSearch-SearchBuilder/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-ElasticSearch-SearchBuilder/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/ElasticSearch::SearchBuilder.3.gz %%SITE_PERL%%/ElasticSearch/SearchBuilder.pm %%SITE_PERL%%/mach/auto/ElasticSearch/SearchBuilder/.packlist @dirrm %%SITE_PERL%%/mach/auto/ElasticSearch/SearchBuilder Modified: head/textproc/p5-Excel-Template/Makefile ============================================================================== --- head/textproc/p5-Excel-Template/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Excel-Template/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= lippe@FreeBSD.org COMMENT= Perl module for templating Excel files +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-IO-stringy>=0:${PORTSDIR}/devel/p5-IO-stringy \ p5-Test-Exception>=0.21:${PORTSDIR}/devel/p5-Test-Exception \ p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \ @@ -20,38 +23,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Excel::Template.3 \ - Excel::Template::Base.3 \ - Excel::Template::Container.3 \ - Excel::Template::Container::Bold.3 \ - Excel::Template::Container::Conditional.3 \ - Excel::Template::Container::Format.3 \ - Excel::Template::Container::Hidden.3 \ - Excel::Template::Container::Italic.3 \ - Excel::Template::Container::KeepLeadingZeros.3 \ - Excel::Template::Container::Locked.3 \ - Excel::Template::Container::Loop.3 \ - Excel::Template::Container::Outline.3 \ - Excel::Template::Container::Row.3 \ - Excel::Template::Container::Scope.3 \ - Excel::Template::Container::Shadow.3 \ - Excel::Template::Container::Strikeout.3 \ - Excel::Template::Container::Workbook.3 \ - Excel::Template::Container::Worksheet.3 \ - Excel::Template::Context.3 \ - Excel::Template::Element.3 \ - Excel::Template::Element::Backref.3 \ - Excel::Template::Element::Cell.3 \ - Excel::Template::Element::Formula.3 \ - Excel::Template::Element::FreezePanes.3 \ - Excel::Template::Element::Image.3 \ - Excel::Template::Element::MergeRange.3 \ - Excel::Template::Element::Range.3 \ - Excel::Template::Element::Var.3 \ - Excel::Template::Factory.3 \ - Excel::Template::Format.3 \ - Excel::Template::Iterator.3 \ - Excel::Template::TextObject.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Excel-Template/pkg-plist ============================================================================== --- head/textproc/p5-Excel-Template/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Excel-Template/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,35 @@ +%%PERL5_MAN3%%/Excel::Template.3.gz +%%PERL5_MAN3%%/Excel::Template::Base.3.gz +%%PERL5_MAN3%%/Excel::Template::Container.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Bold.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Conditional.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Format.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Hidden.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Italic.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::KeepLeadingZeros.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Locked.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Loop.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Outline.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Row.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Scope.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Shadow.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Strikeout.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Workbook.3.gz +%%PERL5_MAN3%%/Excel::Template::Container::Worksheet.3.gz +%%PERL5_MAN3%%/Excel::Template::Context.3.gz +%%PERL5_MAN3%%/Excel::Template::Element.3.gz +%%PERL5_MAN3%%/Excel::Template::Element::Backref.3.gz +%%PERL5_MAN3%%/Excel::Template::Element::Cell.3.gz +%%PERL5_MAN3%%/Excel::Template::Element::Formula.3.gz +%%PERL5_MAN3%%/Excel::Template::Element::FreezePanes.3.gz +%%PERL5_MAN3%%/Excel::Template::Element::Image.3.gz +%%PERL5_MAN3%%/Excel::Template::Element::MergeRange.3.gz +%%PERL5_MAN3%%/Excel::Template::Element::Range.3.gz +%%PERL5_MAN3%%/Excel::Template::Element::Var.3.gz +%%PERL5_MAN3%%/Excel::Template::Factory.3.gz +%%PERL5_MAN3%%/Excel::Template::Format.3.gz +%%PERL5_MAN3%%/Excel::Template::Iterator.3.gz +%%PERL5_MAN3%%/Excel::Template::TextObject.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Excel/Template/.packlist %%SITE_PERL%%/Excel/Template.pm %%SITE_PERL%%/Excel/Template/Base.pm Modified: head/textproc/p5-File-Inplace/Makefile ============================================================================== --- head/textproc/p5-File-Inplace/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-File-Inplace/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -13,7 +13,4 @@ COMMENT= Perl module for in-place editin USES= perl5 USE_PERL5= configure -MAN3= File::Inplace.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-File-Inplace/pkg-plist ============================================================================== --- head/textproc/p5-File-Inplace/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-File-Inplace/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,5 +1,6 @@ +%%PERL5_MAN3%%/File::Inplace.3.gz %%SITE_PERL%%/File/Inplace.pm -@dirrmtry %%SITE_PERL%%/File %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Inplace/.packlist +@dirrmtry %%SITE_PERL%%/File @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Inplace @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/File Modified: head/textproc/p5-FormValidator-Lite/Makefile ============================================================================== --- head/textproc/p5-FormValidator-Lite/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-FormValidator-Lite/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -26,20 +26,6 @@ TEST_DEPENDS= p5-Text-TestBase>0:${PORTS USES= perl5 USE_PERL5= modbuild -MAN3= FormValidator::Lite.3 \ - FormValidator::Lite::Constraint.3 \ - FormValidator::Lite::Constraint::Date.3 \ - FormValidator::Lite::Constraint::Default.3 \ - FormValidator::Lite::Constraint::Email.3 \ - FormValidator::Lite::Constraint::File.3 \ - FormValidator::Lite::Constraint::Japanese.3 \ - FormValidator::Lite::Constraint::Number.3 \ - FormValidator::Lite::Constraint::Time.3 \ - FormValidator::Lite::Constraint::URL.3 \ - FormValidator::Lite::Messages::en.3 \ - FormValidator::Lite::Messages::ja.3 - -NO_STAGE= yes .include .if ${PERL_LEVEL} < 501400 Modified: head/textproc/p5-FormValidator-Lite/pkg-plist ============================================================================== --- head/textproc/p5-FormValidator-Lite/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-FormValidator-Lite/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,15 @@ +%%PERL5_MAN3%%/FormValidator::Lite.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Constraint.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Constraint::Date.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Constraint::Default.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Constraint::Email.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Constraint::File.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Constraint::Japanese.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Constraint::Number.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Constraint::Time.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Constraint::URL.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Messages::en.3.gz +%%PERL5_MAN3%%/FormValidator::Lite::Messages::ja.3.gz %%SITE_PERL%%/FormValidator/Lite.pm %%SITE_PERL%%/FormValidator/Lite/Constraint.pm %%SITE_PERL%%/FormValidator/Lite/Constraint/Date.pm Modified: head/textproc/p5-Getopt-Lucid/Makefile ============================================================================== --- head/textproc/p5-Getopt-Lucid/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Getopt-Lucid/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -10,6 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= lippe@FreeBSD.org COMMENT= Getopt::Lucid - Clear, readable syntax for command line processing +LICENSE= APACHE20 + BUILD_DEPENDS= p5-Exception-Class>=1.23:${PORTSDIR}/devel/p5-Exception-Class \ p5-Exception-Class-TryCatch>=1.10:${PORTSDIR}/devel/p5-Exception-Class-TryCatch \ p5-Data-Dumper>=0:${PORTSDIR}/devel/p5-Data-Dumper \ @@ -20,7 +22,4 @@ RUN_DEPENDS= p5-Exception-Class>=1.23:${ USES= perl5 USE_PERL5= configure -MAN3= Getopt::Lucid.3 Getopt::Lucid::Exception.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Getopt-Lucid/pkg-plist ============================================================================== --- head/textproc/p5-Getopt-Lucid/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Getopt-Lucid/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Getopt::Lucid.3.gz +%%PERL5_MAN3%%/Getopt::Lucid::Exception.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Getopt/Lucid/.packlist %%SITE_PERL%%/Getopt/Lucid.pm %%SITE_PERL%%/Getopt/Lucid/Exception.pm Modified: head/textproc/p5-HTML-Entities-ImodePictogram/Makefile ============================================================================== --- head/textproc/p5-HTML-Entities-ImodePictogram/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-Entities-ImodePictogram/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -13,8 +13,4 @@ COMMENT= HTML::Entities::ImodePictogram USES= perl5 USE_PERL5= configure -MAN3= HTML::Entities::ImodePictogram.3 \ - HTML::Entities::ImodePictogram.ja.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-HTML-Entities-ImodePictogram/pkg-plist ============================================================================== --- head/textproc/p5-HTML-Entities-ImodePictogram/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-Entities-ImodePictogram/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/HTML::Entities::ImodePictogram.3.gz +%%PERL5_MAN3%%/HTML::Entities::ImodePictogram.ja.3.gz %%SITE_PERL%%/HTML/Entities/ImodePictogram.ja.pod %%SITE_PERL%%/HTML/Entities/ImodePictogram.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Entities/ImodePictogram/.packlist Modified: head/textproc/p5-HTML-Entities-Numbered/Makefile ============================================================================== --- head/textproc/p5-HTML-Entities-Numbered/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-Entities-Numbered/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -13,8 +13,4 @@ COMMENT= HTML::Entities::Numbered - Conv USES= perl5 USE_PERL5= configure -MAN3= HTML::Entities::Numbered.3 \ - HTML::Entities::Numbered::Table.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-HTML-Entities-Numbered/pkg-plist ============================================================================== --- head/textproc/p5-HTML-Entities-Numbered/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-Entities-Numbered/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/HTML::Entities::Numbered.3.gz +%%PERL5_MAN3%%/HTML::Entities::Numbered::Table.3.gz %%SITE_PERL%%/HTML/Entities/Numbered.pm %%SITE_PERL%%/HTML/Entities/Numbered/Table.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Entities/Numbered/.packlist Modified: head/textproc/p5-HTML-FormatText-WithLinks/Makefile ============================================================================== --- head/textproc/p5-HTML-FormatText-WithLinks/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-FormatText-WithLinks/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -10,13 +10,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= loader@freebsdmall.com COMMENT= Perl5 module to convert HTML to text with links as footnotes +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-HTML-Format>=0:${PORTSDIR}/textproc/p5-HTML-Format \ p5-URI>=0:${PORTSDIR}/net/p5-URI RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= HTML::FormatText::WithLinks.3 -NO_STAGE= yes .include Modified: head/textproc/p5-HTML-FormatText-WithLinks/pkg-plist ============================================================================== --- head/textproc/p5-HTML-FormatText-WithLinks/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-FormatText-WithLinks/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/HTML::FormatText::WithLinks.3.gz %%SITE_PERL%%/HTML/FormatText/WithLinks.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/FormatText/WithLinks/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/FormatText/WithLinks Modified: head/textproc/p5-HTML-Fraction/Makefile ============================================================================== --- head/textproc/p5-HTML-Fraction/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-Fraction/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= HTML::Fraction - Encode fractions as HTML entities +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= HTML::Fraction.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-HTML-Fraction/pkg-plist ============================================================================== --- head/textproc/p5-HTML-Fraction/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-Fraction/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/HTML::Fraction.3.gz %%SITE_PERL%%/HTML/Fraction.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Fraction/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Fraction Modified: head/textproc/p5-HTML-HTML5-Entities/Makefile ============================================================================== --- head/textproc/p5-HTML-HTML5-Entities/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-HTML5-Entities/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -17,7 +17,4 @@ LICENSE_COMB= dual USES= perl5 USE_PERL5= configure -MAN3= HTML::HTML5::Entities.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-HTML-HTML5-Entities/pkg-plist ============================================================================== --- head/textproc/p5-HTML-HTML5-Entities/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-HTML5-Entities/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/HTML::HTML5::Entities.3.gz %%SITE_PERL%%/HTML/HTML5/Entities.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/HTML5/Entities/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/HTML5/Entities Modified: head/textproc/p5-HTML-HTML5-Parser/Makefile ============================================================================== --- head/textproc/p5-HTML-HTML5-Parser/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-HTML5-Parser/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -24,11 +24,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= HTML::HTML5::Parser.3 \ - HTML::HTML5::Parser::Error.3 \ - HTML::HTML5::Parser::UA.3 - -NO_STAGE= yes .include .if ${PERL_LEVEL} < 501400 Modified: head/textproc/p5-HTML-HTML5-Parser/pkg-plist ============================================================================== --- head/textproc/p5-HTML-HTML5-Parser/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-HTML5-Parser/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,5 +1,8 @@ bin/html2xhtml bin/html5debug +%%PERL5_MAN3%%/HTML::HTML5::Parser.3.gz +%%PERL5_MAN3%%/HTML::HTML5::Parser::Error.3.gz +%%PERL5_MAN3%%/HTML::HTML5::Parser::UA.3.gz %%SITE_PERL%%/HTML/HTML5/Parser/Charset/DecodeHandle.pm %%SITE_PERL%%/HTML/HTML5/Parser/Charset/Info.pm %%SITE_PERL%%/HTML/HTML5/Parser/Charset/UnicodeChecker.pm Modified: head/textproc/p5-HTML-HTMLDoc/Makefile ============================================================================== --- head/textproc/p5-HTML-HTMLDoc/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-HTMLDoc/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -18,7 +18,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= HTML::HTMLDoc.3 HTML::HTMLDoc::PDF.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-HTML-HTMLDoc/pkg-plist ============================================================================== --- head/textproc/p5-HTML-HTMLDoc/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-HTMLDoc/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/HTML::HTMLDoc.3.gz +%%PERL5_MAN3%%/HTML::HTMLDoc::PDF.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/HTMLDoc/.packlist %%SITE_PERL%%/HTML/HTMLDoc.pm %%SITE_PERL%%/HTML/HTMLDoc/PDF.pm Modified: head/textproc/p5-HTML-Quoted/Makefile ============================================================================== --- head/textproc/p5-HTML-Quoted/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-Quoted/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -9,13 +9,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Extract structure of quoted HTML mail message +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-HTML-Parser>=3.0:${PORTSDIR}/www/p5-HTML-Parser RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= HTML::Quoted.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-HTML-Quoted/pkg-plist ============================================================================== --- head/textproc/p5-HTML-Quoted/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-Quoted/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/HTML::Quoted.3.gz %%SITE_PERL%%/HTML/Quoted.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Quoted/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/Quoted Modified: head/textproc/p5-HTML-SBC/Makefile ============================================================================== --- head/textproc/p5-HTML-SBC/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-SBC/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Simple blog code to valid XHTML +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= HTML::SBC.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-HTML-SBC/pkg-plist ============================================================================== --- head/textproc/p5-HTML-SBC/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-HTML-SBC/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/HTML::SBC.3.gz %%SITE_PERL%%/HTML/SBC.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/SBC/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/SBC Modified: head/textproc/p5-Hailo/Makefile ============================================================================== --- head/textproc/p5-Hailo/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Hailo/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -46,30 +46,9 @@ TEST_DEPENDS= p5-DBD-SQLite>=1.29:${PORT USES= perl5 USE_PERL5= configure -MAN1= hailo.1 - -MAN3= Hailo.3 \ - Hailo::Command.3 \ - Hailo::Engine::Default.3 \ - Hailo::Engine::Scored.3 \ - Hailo::Role::Arguments.3 \ - Hailo::Role::Engine.3 \ - Hailo::Role::Storage.3 \ - Hailo::Role::Tokenizer.3 \ - Hailo::Role::UI.3 \ - Hailo::Storage.3 \ - Hailo::Storage::MySQL.3 \ - Hailo::Storage::PostgreSQL.3 \ - Hailo::Storage::SQLite.3 \ - Hailo::Storage::Schema.3 \ - Hailo::Tokenizer::Chars.3 \ - Hailo::Tokenizer::Words.3 \ - Hailo::UI::ReadLine.3 - OPTIONS_DEFINE= SQLITE PGSQL MYSQL OPTIONS_DEFAULT= SQLITE -NO_STAGE= yes .include .include Modified: head/textproc/p5-Hailo/pkg-plist ============================================================================== --- head/textproc/p5-Hailo/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Hailo/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,4 +1,22 @@ bin/hailo +man/man1/hailo.1.gz +%%PERL5_MAN3%%/Hailo.3.gz +%%PERL5_MAN3%%/Hailo::Command.3.gz +%%PERL5_MAN3%%/Hailo::Engine::Default.3.gz +%%PERL5_MAN3%%/Hailo::Engine::Scored.3.gz +%%PERL5_MAN3%%/Hailo::Role::Arguments.3.gz +%%PERL5_MAN3%%/Hailo::Role::Engine.3.gz +%%PERL5_MAN3%%/Hailo::Role::Storage.3.gz +%%PERL5_MAN3%%/Hailo::Role::Tokenizer.3.gz +%%PERL5_MAN3%%/Hailo::Role::UI.3.gz +%%PERL5_MAN3%%/Hailo::Storage.3.gz +%%PERL5_MAN3%%/Hailo::Storage::MySQL.3.gz +%%PERL5_MAN3%%/Hailo::Storage::PostgreSQL.3.gz +%%PERL5_MAN3%%/Hailo::Storage::SQLite.3.gz +%%PERL5_MAN3%%/Hailo::Storage::Schema.3.gz +%%PERL5_MAN3%%/Hailo::Tokenizer::Chars.3.gz +%%PERL5_MAN3%%/Hailo::Tokenizer::Words.3.gz +%%PERL5_MAN3%%/Hailo::UI::ReadLine.3.gz %%SITE_PERL%%/Hailo.pm %%SITE_PERL%%/Hailo/Command.pm %%SITE_PERL%%/Hailo/Engine/Default.pm Modified: head/textproc/p5-Hatena-Keyword/Makefile ============================================================================== --- head/textproc/p5-Hatena-Keyword/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Hatena-Keyword/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -30,7 +30,4 @@ RUN_DEPENDS= p5-Cache>=0:${PORTSDIR}/dev USES= perl5 USE_PERL5= configure -MAN3= Hatena::Keyword.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Hatena-Keyword/pkg-plist ============================================================================== --- head/textproc/p5-Hatena-Keyword/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Hatena-Keyword/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Hatena::Keyword.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Hatena/Keyword/.packlist %%SITE_PERL%%/Hatena/Keyword.pm @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Hatena/Keyword Modified: head/textproc/p5-IO-CSVHeaderFile/Makefile ============================================================================== --- head/textproc/p5-IO-CSVHeaderFile/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-IO-CSVHeaderFile/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -16,7 +16,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= IO::CSVHeaderFile.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-IO-CSVHeaderFile/pkg-plist ============================================================================== --- head/textproc/p5-IO-CSVHeaderFile/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-IO-CSVHeaderFile/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/IO::CSVHeaderFile.3.gz %%SITE_PERL%%/IO/CSVHeaderFile.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/CSVHeaderFile/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/CSVHeaderFile Modified: head/textproc/p5-Kwalify/Makefile ============================================================================== --- head/textproc/p5-Kwalify/Makefile Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Kwalify/Makefile Tue Jan 21 14:03:59 2014 (r340610) @@ -11,11 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= miwi@FreeBSD.org COMMENT= Implementation of Kwalify parser, validator and data binding tool -MAN1= pkwalify.1 -MAN3= Kwalify.3 Schema::Kwalify.3 +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual USES= perl5 USE_PERL5= configure -NO_STAGE= yes .include Modified: head/textproc/p5-Kwalify/pkg-plist ============================================================================== --- head/textproc/p5-Kwalify/pkg-plist Tue Jan 21 14:02:20 2014 (r340609) +++ head/textproc/p5-Kwalify/pkg-plist Tue Jan 21 14:03:59 2014 (r340610) @@ -1,7 +1,10 @@ bin/pkwalify +%%PERL5_MAN3%%/Kwalify.3.gz +%%PERL5_MAN3%%/Schema::Kwalify.3.gz %%SITE_PERL%%/Kwalify.pm %%SITE_PERL%%/Schema/Kwalify.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwalify/.packlist +man/man1/pkwalify.1.gz @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Kwalify @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%% @dirrmtry %%SITE_PERL%%/Schema From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 15:11:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A73576F; Tue, 21 Jan 2014 15:11:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 869FE173E; Tue, 21 Jan 2014 15:11:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LFBHNQ018737; Tue, 21 Jan 2014 15:11:17 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LFBH7Y018736; Tue, 21 Jan 2014 15:11:17 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201401211511.s0LFBH7Y018736@svn.freebsd.org> From: Mark Linimon Date: Tue, 21 Jan 2014 15:11:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340611 - head/x11/tabbed X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 15:11:17 -0000 Author: linimon Date: Tue Jan 21 15:11:17 2014 New Revision: 340611 URL: http://svnweb.freebsd.org/changeset/ports/340611 QAT: https://qat.redports.org/buildarchive/r340611/ Log: Over to new volunteer. PR: 185903 Submitted by: new maintainer Approved by: old maintainer Modified: head/x11/tabbed/Makefile Modified: head/x11/tabbed/Makefile ============================================================================== --- head/x11/tabbed/Makefile Tue Jan 21 14:03:59 2014 (r340610) +++ head/x11/tabbed/Makefile Tue Jan 21 15:11:17 2014 (r340611) @@ -6,7 +6,7 @@ PORTVERSION= 0.3 CATEGORIES= x11 MASTER_SITES= http://dl.suckless.org/tools/ -MAINTAINER= winstonw@lavabit.com +MAINTAINER= mp39590@gmail.com COMMENT= Simple generic tabbed fronted to xembed aware applications LICENSE= MIT From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 15:18:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1EDEA4A; Tue, 21 Jan 2014 15:18:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AD5D31799; Tue, 21 Jan 2014 15:18:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LFI1HD019660; Tue, 21 Jan 2014 15:18:01 GMT (envelope-from marcus@svn.freebsd.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LFI1CC019659; Tue, 21 Jan 2014 15:18:01 GMT (envelope-from marcus@svn.freebsd.org) Message-Id: <201401211518.s0LFI1CC019659@svn.freebsd.org> From: Joe Marcus Clarke Date: Tue, 21 Jan 2014 15:18:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340612 - head/net/netatalk3/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.17 Precedence: list List-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, 21 Jan 2014 15:18:01 -0000 Author: marcus Date: Tue Jan 21 15:18:01 2014 New Revision: 340612 URL: http://svnweb.freebsd.org/changeset/ports/340612 QAT: https://qat.redports.org/buildarchive/r340612/ Log: Correct a patch mangled in transfer. Reported by: mat Modified: head/net/netatalk3/files/patch-etc_afpd_afp_mdns.c Modified: head/net/netatalk3/files/patch-etc_afpd_afp_mdns.c ============================================================================== --- head/net/netatalk3/files/patch-etc_afpd_afp_mdns.c Tue Jan 21 15:11:17 2014 (r340611) +++ head/net/netatalk3/files/patch-etc_afpd_afp_mdns.c Tue Jan 21 15:18:01 2014 (r340612) @@ -1,6 +1,6 @@ ---- etc/afpd/afp_mdns.c.orig 2013-10-28 06:43:13.000000000 -0700 -+++ etc/afpd/afp_mdns.c 2014-01-17 22:10:59.000000000 -0800 -@@ -37,17 +37,15 @@ +--- etc/afpd/afp_mdns.c.orig 2014-01-21 15:12:49.465373000 +0000 ++++ etc/afpd/afp_mdns.c 2014-01-21 15:15:03.618213000 +0000 +@@ -36,18 +36,16 @@ static pthread_t poller; /* * Its easier to use asprintf to set the TXT record values */ @@ -26,7 +26,7 @@ } static struct pollfd *fds; -@@ -134,7 +132,7 @@ +@@ -134,7 +132,7 @@ static void register_stuff(const AFPObj /* Register our service, prepare the TXT record */ TXTRecordCreate(&txt_adisk, 0, NULL); From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 15:22:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5FD89CBD; Tue, 21 Jan 2014 15:22:04 +0000 (UTC) Received: from rcdn-iport-5.cisco.com (rcdn-iport-5.cisco.com [173.37.86.76]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 782DE1848; Tue, 21 Jan 2014 15:21:58 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AhUFABmQ3lKtJV2a/2dsb2JhbABagws4vEOBERZ0giUBAQEEOEARCw4GBAkWDwkDAgECAUUGAQwGAgEBBYd8DcQvF48GhDgBA4lHkA2LLoU4g0se X-IronPort-AV: E=Sophos;i="4.95,696,1384300800"; d="scan'208";a="298685996" Received: from rcdn-core-3.cisco.com ([173.37.93.154]) by rcdn-iport-5.cisco.com with ESMTP; 21 Jan 2014 15:21:57 +0000 Received: from rtp-jclarke-8912.cisco.com (rtp-jclarke-8912.cisco.com [10.117.46.163]) by rcdn-core-3.cisco.com (8.14.5/8.14.5) with ESMTP id s0LFLuN6010091; Tue, 21 Jan 2014 15:21:56 GMT Message-ID: <52DE9094.2030208@freebsd.org> Date: Tue, 21 Jan 2014 10:21:56 -0500 From: Joe Marcus Clarke Organization: FreeBSD, Inc. User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340498 - in head/net/netatalk3: . files References: <201401202347.s0KNlFIL049096@svn.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 15:22:04 -0000 On 1/21/14, 2:41 AM, Mathieu Arnold wrote: > > > +--On 20 janvier 2014 23:47:15 +0000 Joe Marcus Clarke > wrote: > | Author: marcus > | Date: Mon Jan 20 23:47:14 2014 > | New Revision: 340498 > | URL: http://svnweb.freebsd.org/changeset/ports/340498 > | QAT: https://qat.redports.org/buildarchive/r340498/ > | > | Log: > | Revert a bad upstream patch pertaining to varargs that continued to > | plague Time Machine users. > | > | Submitted by: dim > > After this, I get : > > Thanks. The patch wasn't the one on my local machine. I don't know how it got mangled, but it's fixed now. Joe -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 15:40:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 862D1246; Tue, 21 Jan 2014 15:40:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 72382198B; Tue, 21 Jan 2014 15:40:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LFe8nu029093; Tue, 21 Jan 2014 15:40:08 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LFe8T6029091; Tue, 21 Jan 2014 15:40:08 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201401211540.s0LFe8T6029091@svn.freebsd.org> From: Jimmy Olgeni Date: Tue, 21 Jan 2014 15:40:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340614 - in head/net/rabbitmq: . 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.17 Precedence: list List-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, 21 Jan 2014 15:40:08 -0000 Author: olgeni Date: Tue Jan 21 15:40:07 2014 New Revision: 340614 URL: http://svnweb.freebsd.org/changeset/ports/340614 QAT: https://qat.redports.org/buildarchive/r340614/ Log: - Export HOME before starting RabbitMQ node. - After starting, wait for RabbitMQ to be available. PR: ports/185962 Submitted by: Anes Mukhametov Modified: head/net/rabbitmq/Makefile head/net/rabbitmq/files/rabbitmq.in Modified: head/net/rabbitmq/Makefile ============================================================================== --- head/net/rabbitmq/Makefile Tue Jan 21 15:21:27 2014 (r340613) +++ head/net/rabbitmq/Makefile Tue Jan 21 15:40:07 2014 (r340614) @@ -3,7 +3,7 @@ PORTNAME= rabbitmq PORTVERSION= 3.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-server-${PORTVERSION} Modified: head/net/rabbitmq/files/rabbitmq.in ============================================================================== --- head/net/rabbitmq/files/rabbitmq.in Tue Jan 21 15:21:27 2014 (r340613) +++ head/net/rabbitmq/files/rabbitmq.in Tue Jan 21 15:40:07 2014 (r340614) @@ -35,7 +35,7 @@ extra_commands="rotate_logs status" rabbitmq_start() { - HOME=/var/db/rabbitmq + export HOME=/var/db/rabbitmq unset ERL_LIBS su -m ${rabbitmq_user} \ -c "sh -c \"${rabbitmq_server} -detached\"" @@ -44,6 +44,8 @@ rabbitmq_start() su -m ${rabbitmq_user} \ -c "sh -c \"${rabbitmq_ctl} status\"" \ | sed -n 's/[^p]*pid,\([0-9]*\)[^0-9]*/\1/p' > ${pidfile} +# Wait until rabbitmq is up and fully functional + $rabbitmq_ctl wait ${pidfile} } run_rc_command "$1" From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 15:43:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 503C0353; Tue, 21 Jan 2014 15:43:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3CA8F1A05; Tue, 21 Jan 2014 15:43:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LFh7NL030391; Tue, 21 Jan 2014 15:43:07 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LFh7j8030390; Tue, 21 Jan 2014 15:43:07 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401211543.s0LFh7j8030390@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 21 Jan 2014 15:43:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340615 - head/devel/libgta X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 15:43:07 -0000 Author: amdmi3 Date: Tue Jan 21 15:43:06 2014 New Revision: 340615 URL: http://svnweb.freebsd.org/changeset/ports/340615 QAT: https://qat.redports.org/buildarchive/r340615/ Log: - Support staging - Convert USE_GMAKE to USES PR: 185879 Submitted by: amdmi3 Approved by: coder@tuxfamily.org (maintainer) Modified: head/devel/libgta/Makefile Modified: head/devel/libgta/Makefile ============================================================================== --- head/devel/libgta/Makefile Tue Jan 21 15:40:07 2014 (r340614) +++ head/devel/libgta/Makefile Tue Jan 21 15:43:06 2014 (r340615) @@ -13,18 +13,9 @@ OPTIONS_DEFINE= DOCS USE_XZ= yes GNU_CONFIGURE= yes -USE_GMAKE= yes -USES= pathfix +USES= pathfix gmake USE_LDCONFIG= yes -NO_STAGE= yes -.include - -post-patch: -.if empty(PORT_OPTIONS:MDOCS) - @${REINPLACE_CMD} -e '/^SUBDIRS = / s|doc||' ${WRKSRC}/Makefile.in -.endif - regression-test test: build cd ${WRKSR}/ && ${SETENV} ${MAKE_ENV} ${MAKE} check From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 15:54:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9AEA3AD2; Tue, 21 Jan 2014 15:54:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7AD971B3A; Tue, 21 Jan 2014 15:54:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LFsaRH034435; Tue, 21 Jan 2014 15:54:36 GMT (envelope-from lwhsu@svn.freebsd.org) Received: (from lwhsu@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LFsYSl034421; Tue, 21 Jan 2014 15:54:34 GMT (envelope-from lwhsu@svn.freebsd.org) Message-Id: <201401211554.s0LFsYSl034421@svn.freebsd.org> From: Li-Wen Hsu Date: Tue, 21 Jan 2014 15:54:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340616 - in head: devel devel/pear-channel-twig devel/pear-channel-twig/files www www/pear-twig www/pecl-twig X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 15:54:36 -0000 Author: lwhsu Date: Tue Jan 21 15:54:33 2014 New Revision: 340616 URL: http://svnweb.freebsd.org/changeset/ports/340616 QAT: https://qat.redports.org/buildarchive/r340616/ Log: Add devel/pear-channel-twig, www/pecl-twig, www/pear-twig: TWIG: The flexible, fast, and secure template engine for PHP PR: ports/181848 Submitted by: Joe Horn Added: head/devel/pear-channel-twig/ head/devel/pear-channel-twig/Makefile (contents, props changed) head/devel/pear-channel-twig/files/ head/devel/pear-channel-twig/files/pear.twig-project.org.reg (contents, props changed) head/devel/pear-channel-twig/pkg-descr (contents, props changed) head/www/pear-twig/ head/www/pear-twig/Makefile (contents, props changed) head/www/pear-twig/distinfo (contents, props changed) head/www/pear-twig/pkg-descr (contents, props changed) head/www/pecl-twig/ head/www/pecl-twig/Makefile (contents, props changed) head/www/pecl-twig/distinfo (contents, props changed) head/www/pecl-twig/pkg-descr (contents, props changed) Modified: head/devel/Makefile head/www/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jan 21 15:43:06 2014 (r340615) +++ head/devel/Makefile Tue Jan 21 15:54:33 2014 (r340616) @@ -3266,6 +3266,7 @@ SUBDIR += pear-channel-symfony SUBDIR += pear-channel-symfony2 SUBDIR += pear-channel-theseer + SUBDIR += pear-channel-twig SUBDIR += pear-codegen SUBDIR += pear-ezc_Base SUBDIR += pear-ezc_ConsoleTools Added: head/devel/pear-channel-twig/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-channel-twig/Makefile Tue Jan 21 15:54:33 2014 (r340616) @@ -0,0 +1,16 @@ +# Created by: Joe Horn +# $FreeBSD$ + +PORTNAME= twig +PORTVERSION= 20140108 +CATEGORIES= devel www pear +MASTER_SITES= # + +MAINTAINER= joehorn@gmail.com +COMMENT= PEAR channel ${PEAR_CHANNEL_HOST} + +PEAR_CHANNEL_HOST= pear.twig-project.org + +.include +.include "${PORTSDIR}/devel/pear/bsd.pear.channel.mk" +.include Added: head/devel/pear-channel-twig/files/pear.twig-project.org.reg ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-channel-twig/files/pear.twig-project.org.reg Tue Jan 21 15:54:33 2014 (r340616) @@ -0,0 +1 @@ +a:6:{s:7:"attribs";a:4:{s:7:"version";s:3:"1.0";s:5:"xmlns";s:31:"http://pear.php.net/channel-1.0";s:9:"xmlns:xsi";s:41:"http://www.w3.org/2001/XMLSchema-instance";s:18:"xsi:schemaLocation";s:71:"http://pear.php.net/channel-1.0 http://pear.php.net/dtd/channel-1.0.xsd";}s:4:"name";s:21:"pear.twig-project.org";s:7:"summary";s:17:"Twig PEAR channel";s:14:"suggestedalias";s:4:"twig";s:7:"servers";a:1:{s:7:"primary";a:1:{s:4:"rest";a:1:{s:7:"baseurl";a:4:{i:0;a:2:{s:7:"attribs";a:1:{s:4:"type";s:7:"REST1.0";}s:8:"_content";s:34:"http://pear.twig-project.org/rest/";}i:1;a:2:{s:7:"attribs";a:1:{s:4:"type";s:7:"REST1.1";}s:8:"_content";s:34:"http://pear.twig-project.org/rest/";}i:2;a:2:{s:7:"attribs";a:1:{s:4:"type";s:7:"REST1.2";}s:8:"_content";s:34:"http://pear.twig-project.org/rest/";}i:3;a:2:{s:7:"attribs";a:1:{s:4:"type";s:7:"REST1.3";}s:8:"_content";s:34:"http://pear.twig-project.org/rest/";}}}}}s:13:"_lastmodified";a:2:{s:4:"ETag";s:34:""b6081822f47306f9e8f03c7681457669"";s:13:"Last- Modified";s:29:"Wed, 23 Jan 2013 14:45:17 GMT";}} Added: head/devel/pear-channel-twig/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-channel-twig/pkg-descr Tue Jan 21 15:54:33 2014 (r340616) @@ -0,0 +1,3 @@ +PEAR channel for the Twig project + +WWW: http://pear.twig-project.org/ Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jan 21 15:43:06 2014 (r340615) +++ head/www/Makefile Tue Jan 21 15:54:33 2014 (r340616) @@ -1401,6 +1401,7 @@ SUBDIR += pear-Text_Wiki SUBDIR += pear-UDDI SUBDIR += pear-XML_GRDDL + SUBDIR += pear-twig SUBDIR += pebble SUBDIR += pecl-APC SUBDIR += pecl-amfext @@ -1408,6 +1409,7 @@ SUBDIR += pecl-solr SUBDIR += pecl-sphinx SUBDIR += pecl-swish + SUBDIR += pecl-twig SUBDIR += pecl-yaf SUBDIR += pecl-yar SUBDIR += pecl-zendopcache Added: head/www/pear-twig/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/pear-twig/Makefile Tue Jan 21 15:54:33 2014 (r340616) @@ -0,0 +1,26 @@ +# Created by: Joe Horn +# $FreeBSD$ + +PORTNAME= twig +PORTVERSION= 1.15.0 +CATEGORIES= www pear +MASTER_SITES= http://pear.twig-project.org/get/ +DISTNAME= Twig-${PORTVERSION} + +MAINTAINER= joehorn@gmail.com +COMMENT= The flexible, fast, and secure template engine for PHP + +LICENSE= BSD + +BUILD_DEPENDS= ${PEARDIR}/.channels/pear.twig-project.org.reg:${PORTSDIR}/devel/pear-channel-twig +RUN_DEPENDS= ${PEARDIR}/.channels/pear.twig-project.org.reg:${PORTSDIR}/devel/pear-channel-twig + +PEAR_CHANNEL= twig +PEAR_AUTOINSTALL= yes + +USE_PHP= ctype hash +WANT_PHP_CLI= yes + +.include +.include "${PORTSDIR}/devel/pear/bsd.pear.mk" +.include Added: head/www/pear-twig/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/pear-twig/distinfo Tue Jan 21 15:54:33 2014 (r340616) @@ -0,0 +1,2 @@ +SHA256 (PEAR/Twig-1.15.0.tgz) = b5a1ae1be5fd3541f9dcf9f3f516e29262f3db18042b67a1af07bfaa26eb61ed +SIZE (PEAR/Twig-1.15.0.tgz) = 85352 Added: head/www/pear-twig/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/pear-twig/pkg-descr Tue Jan 21 15:54:33 2014 (r340616) @@ -0,0 +1,15 @@ +Twig is a modern template engine for PHP. + + * Fast: Twig compiles templates down to plain optimized PHP code. The + overhead compared to regular PHP code was reduced to the very + minimum. + + * Secure: Twig has a sandbox mode to evaluate untrusted template code. + This allows Twig to be used as a template language for + applications where users may modify the template design. + + * Flexible: Twig is powered by a flexible lexer and parser. This allows + the developer to define its own custom tags and filters, and + create its own DSL. + +WWW: http://twig.sensiolabs.org/ Added: head/www/pecl-twig/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/pecl-twig/Makefile Tue Jan 21 15:54:33 2014 (r340616) @@ -0,0 +1,21 @@ +# Created by: Joe Horn +# $FreeBSD$ + +PORTNAME= twig +PORTVERSION= 1.15.0 +CATEGORIES= www +MASTER_SITES= http://pear.twig-project.org/get/ +PKGNAMEPREFIX= pecl- +DISTNAME= CTwig-${PORTVERSION} +EXTRACT_SUFX= .tgz + +MAINTAINER= joehorn@gmail.com +COMMENT= Twig C extension to improve performance of the Twig template language + +LICENSE= BSD + +USE_PHP= yes +USE_PHPIZE= yes +USE_PHPEXT= yes + +.include Added: head/www/pecl-twig/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/pecl-twig/distinfo Tue Jan 21 15:54:33 2014 (r340616) @@ -0,0 +1,2 @@ +SHA256 (CTwig-1.15.0.tgz) = dda8f01c24c2d2ed51916668f7bc66782a7aac211a3752a80b35159bda85dfd4 +SIZE (CTwig-1.15.0.tgz) = 8835 Added: head/www/pecl-twig/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/pecl-twig/pkg-descr Tue Jan 21 15:54:33 2014 (r340616) @@ -0,0 +1,5 @@ +Twig is a flexible, fast, and secure template engine for PHP. + +This C extension to improve performance of the Twig template language. + +WWW: http://twig.sensiolabs.org/ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 16:18:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26872291; Tue, 21 Jan 2014 16:18:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1183B1DE6; Tue, 21 Jan 2014 16:18:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LGIqjf043116; Tue, 21 Jan 2014 16:18:52 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LGIqlE043113; Tue, 21 Jan 2014 16:18:52 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401211618.s0LGIqlE043113@svn.freebsd.org> From: Pietro Cerutti Date: Tue, 21 Jan 2014 16:18:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340617 - in head/editors/codelite: . 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.17 Precedence: list List-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, 21 Jan 2014 16:18:53 -0000 Author: gahr Date: Tue Jan 21 16:18:52 2014 New Revision: 340617 URL: http://svnweb.freebsd.org/changeset/ports/340617 QAT: https://qat.redports.org/buildarchive/r340617/ Log: - Fix llvm-devel include paths (broken after r332935 [1] [MFH] - Fix build on modern compilers [MFH] - STAGE-clean - Convert to new LIB_DEPENDS format - Convert to USES=dos2unix Reported by: John J. Rushford Added: head/editors/codelite/files/patch-CodeLite_cpptoken.h (contents, props changed) Modified: head/editors/codelite/Makefile head/editors/codelite/files/patch-CMakeLists.txt Modified: head/editors/codelite/Makefile ============================================================================== --- head/editors/codelite/Makefile Tue Jan 21 15:54:33 2014 (r340616) +++ head/editors/codelite/Makefile Tue Jan 21 16:18:52 2014 (r340617) @@ -12,7 +12,7 @@ COMMENT= An Open Source IDE for C/C++ LICENSE= GPLv2 -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl RUN_DEPENDS= xterm:${PORTSDIR}/x11/xterm OPTIONS_DEFINE= CSCOPE CLANG @@ -22,9 +22,8 @@ CLANG_DESC= Clang code-completion USE_WX= 2.9 WX_UNICODE= yes -USE_DOS2UNIX= *.cpp -USES= gettext cmake:outsource -USE_LDCONFIG= lib/codelite +USES= gettext cmake:outsource dos2unix +USE_LDCONFIG= ${PREFIX}/lib/codelite CMAKE_ARGS+= -DIS_FREEBSD=1 \ -DPREFIX=${PREFIX} @@ -32,7 +31,6 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER SVN_REVISION= 6213 -NO_STAGE= yes .include .if ${PORT_OPTIONS:MCSCOPE} @@ -40,8 +38,8 @@ RUN_DEPENDS+= cscope:${PORTSDIR}/devel/c .endif .if ${PORT_OPTIONS:MCLANG} -BUILD_DEPENDS+= ${LOCALBASE}/lib/libclang.so:${PORTSDIR}/lang/clang-devel -RUN_DEPENDS+= ${LOCALBASE}/lib/libclang.so:${PORTSDIR}/lang/clang-devel +BUILD_DEPENDS+= ${LOCALBASE}/llvm-devel/lib/libclang.so:${PORTSDIR}/lang/clang-devel +RUN_DEPENDS+= ${LOCALBASE}/llvm-devel/lib/libclang.so:${PORTSDIR}/lang/clang-devel PLIST_SUB+= CLANG="" CMAKE_ARGS+= -DENABLE_CLANG=1 .else Modified: head/editors/codelite/files/patch-CMakeLists.txt ============================================================================== --- head/editors/codelite/files/patch-CMakeLists.txt Tue Jan 21 15:54:33 2014 (r340616) +++ head/editors/codelite/files/patch-CMakeLists.txt Tue Jan 21 16:18:52 2014 (r340617) @@ -7,9 +7,9 @@ - set( CLANG_INCLUDE "${CL_SRC_ROOT}/sdk/clang/Linux/${ARCH_NAME}/include" ) - set( CLANG_LIBRARY "-L${CL_SRC_ROOT}/sdk/clang/Linux/${ARCH_NAME}/lib -lclang" ) - set( CLANG_BINARY "${CL_SRC_ROOT}/sdk/clang/Linux/${ARCH_NAME}/lib/libclang.so") -+ set( CLANG_INCLUDE "%%LOCALBASE%%/include" ) -+ set( CLANG_LIBRARY "-L%%LOCALBASE%%/lib/ -lclang" ) -+ set( CLANG_BINARY "%%LOCALBASE%%/lib/libclang.so") ++ set( CLANG_INCLUDE "%%LOCALBASE%%/llvm-devel/include" ) ++ set( CLANG_LIBRARY "-L%%LOCALBASE%%/llvm-devel/lib/ -lclang" ) ++ set( CLANG_BINARY "%%LOCALBASE%%/llvm-devel/lib/libclang.so") endif() message( "-- clang link line ${CLANG_LIBRARY} ") Added: head/editors/codelite/files/patch-CodeLite_cpptoken.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/codelite/files/patch-CodeLite_cpptoken.h Tue Jan 21 16:18:52 2014 (r340617) @@ -0,0 +1,11 @@ +--- CodeLite/cpptoken.h.orig 2014-01-21 10:05:01.000000000 +0100 ++++ CodeLite/cpptoken.h 2014-01-21 10:05:10.000000000 +0100 +@@ -87,7 +87,7 @@ + void print(); + + // Provide lower-than operator so we can use std::list::sort method +- bool operator < (const CppToken& rhs) { ++ bool operator < (const CppToken& rhs) const { + return filename < rhs.filename; + } + }; From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 16:33:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 797D65E8; Tue, 21 Jan 2014 16:33:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E5D21F5D; Tue, 21 Jan 2014 16:33:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LGXRb8049970; Tue, 21 Jan 2014 16:33:27 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LGXRLP049969; Tue, 21 Jan 2014 16:33:27 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401211633.s0LGXRLP049969@svn.freebsd.org> From: Alex Dupre Date: Tue, 21 Jan 2014 16:33:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340618 - head/security/cryptlib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 16:33:27 -0000 Author: ale Date: Tue Jan 21 16:33:26 2014 New Revision: 340618 URL: http://svnweb.freebsd.org/changeset/ports/340618 QAT: https://qat.redports.org/buildarchive/r340618/ Log: Remove gmake dependency and stagify. PR: ports/185404 Submitted by: Stephen Hurd Modified: head/security/cryptlib/Makefile Modified: head/security/cryptlib/Makefile ============================================================================== --- head/security/cryptlib/Makefile Tue Jan 21 16:18:52 2014 (r340617) +++ head/security/cryptlib/Makefile Tue Jan 21 16:33:26 2014 (r340618) @@ -12,10 +12,11 @@ COMMENT= Powerful security programming ONLY_FOR_ARCHS= i386 amd64 +OPTIONS_DEFINE= DOCS + USE_ZIP= yes EXTRACT_BEFORE_ARGS= -aq NO_WRKSUBDIR= yes -USES= gmake MAKEFILE= makefile ALL_TARGET= default FreeBSD shared USE_LDCONFIG= yes @@ -27,9 +28,6 @@ PLIST_FILES= include/cryptlib.h \ PORTDOCS= README -NO_STAGE= yes -.include - post-patch: @${REINPLACE_CMD} -e 's/%%CFLAGS%%/${CFLAGS}/' ${WRKSRC}/makefile @${REINPLACE_CMD} -e 's/%%PTHREAD_CFLAGS%%/${PTHREAD_CFLAGS}/' ${WRKSRC}/makefile @@ -37,15 +35,13 @@ post-patch: do-install: ${INSTALL_DATA} ${WRKSRC}/libcl.a ${WRKSRC}/libcl.so.${PORTVERSION} \ - ${PREFIX}/lib - ${LN} -sf ${PREFIX}/lib/libcl.so.${PORTVERSION} ${PREFIX}/lib/libcl.so.3 - ${LN} -sf ${PREFIX}/lib/libcl.so.3 ${PREFIX}/lib/libcl.so - ${INSTALL_DATA} ${WRKSRC}/cryptlib.h ${PREFIX}/include + ${STAGEDIR}${PREFIX}/lib + ${LN} -sf ${PREFIX}/lib/libcl.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libcl.so.3 + ${LN} -sf ${PREFIX}/lib/libcl.so.3 ${STAGEDIR}${PREFIX}/lib/libcl.so + ${INSTALL_DATA} ${WRKSRC}/cryptlib.h ${STAGEDIR}${PREFIX}/include -.if !defined(NOPORTDOCS) post-install: - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 16:34:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECB65780; Tue, 21 Jan 2014 16:34:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D80CA1F86; Tue, 21 Jan 2014 16:34:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LGYa5b050166; Tue, 21 Jan 2014 16:34:36 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LGYa4h050164; Tue, 21 Jan 2014 16:34:36 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401211634.s0LGYa4h050164@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 16:34:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340619 - head/devel/rubygem-multi_json X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 16:34:37 -0000 Author: swills Date: Tue Jan 21 16:34:36 2014 New Revision: 340619 URL: http://svnweb.freebsd.org/changeset/ports/340619 QAT: https://qat.redports.org/buildarchive/r340619/ Log: - Update to 1.8.4 Modified: head/devel/rubygem-multi_json/Makefile head/devel/rubygem-multi_json/distinfo Modified: head/devel/rubygem-multi_json/Makefile ============================================================================== --- head/devel/rubygem-multi_json/Makefile Tue Jan 21 16:33:26 2014 (r340618) +++ head/devel/rubygem-multi_json/Makefile Tue Jan 21 16:34:36 2014 (r340619) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= multi_json -PORTVERSION= 1.8.2 +PORTVERSION= 1.8.4 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-multi_json/distinfo ============================================================================== --- head/devel/rubygem-multi_json/distinfo Tue Jan 21 16:33:26 2014 (r340618) +++ head/devel/rubygem-multi_json/distinfo Tue Jan 21 16:34:36 2014 (r340619) @@ -1,2 +1,2 @@ -SHA256 (rubygem/multi_json-1.8.2.gem) = ab4155637bdbea7f80ded93f8b2f7e14ef283043e9856ed0bcfa35ee34b7d5b9 -SIZE (rubygem/multi_json-1.8.2.gem) = 29696 +SHA256 (rubygem/multi_json-1.8.4.gem) = 011a3868b5179a3c8bc87b6f3568124d6e2ee0d4f19321ce8c976b0668164585 +SIZE (rubygem/multi_json-1.8.4.gem) = 29696 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 16:43:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AFC890C; Tue, 21 Jan 2014 16:43:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 773471064; Tue, 21 Jan 2014 16:43:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LGh1GU053723; Tue, 21 Jan 2014 16:43:01 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LGh1iL053719; Tue, 21 Jan 2014 16:43:01 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401211643.s0LGh1iL053719@svn.freebsd.org> From: Alex Dupre Date: Tue, 21 Jan 2014 16:43:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340620 - in head/java/javamail: . 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.17 Precedence: list List-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, 21 Jan 2014 16:43:01 -0000 Author: ale Date: Tue Jan 21 16:43:00 2014 New Revision: 340620 URL: http://svnweb.freebsd.org/changeset/ports/340620 QAT: https://qat.redports.org/buildarchive/r340620/ Log: Update to 1.5.1 release and stagify. Deleted: head/java/javamail/files/ Modified: head/java/javamail/Makefile head/java/javamail/distinfo Modified: head/java/javamail/Makefile ============================================================================== --- head/java/javamail/Makefile Tue Jan 21 16:34:36 2014 (r340619) +++ head/java/javamail/Makefile Tue Jan 21 16:43:00 2014 (r340620) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= javamail -PORTVERSION= 1.4.7 +PORTVERSION= 1.5.1 CATEGORIES= java mail -MASTER_SITES= https://kenai.com/downloads/javamail/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-src +MASTER_SITES= https://java.net/projects/javamail/downloads/download/source/ +DISTNAME= javaxmail-${PORTVERSION}-src MAINTAINER= ale@FreeBSD.org COMMENT= A Reference Implementation of JSR 919 @@ -13,14 +13,12 @@ COMMENT= A Reference Implementation of J LICENSE= GPLv2 CDDL LICENSE_COMB= dual -BUILD_DEPENDS= ${JAVALIBDIR}/activation.jar:${PORTSDIR}/java/jaf -RUN_DEPENDS= ${JAVALIBDIR}/activation.jar:${PORTSDIR}/java/jaf +OPTIONS_DEFINE= DOCS EXAMPLES USE_ZIP= YES USE_JAVA= YES JAVA_VERSION= 1.6+ USE_ANT= YES -MAKE_ENV= ANT_INCLUDE_SHARED_JARS=YES WRKSRC= ${WRKDIR} @@ -29,7 +27,6 @@ PLIST_FILES= %%JAVAJARDIR%%/mail.jar PORTDOCS= * PORTEXAMPLES= * -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDOCS} @@ -38,22 +35,22 @@ ALL_TARGET= all docs do-install: @${ECHO_MSG} -n ">> Install JAR files in ${JAVAJARDIR}..." - @${INSTALL_DATA} ${WRKSRC}/target/release/mail.jar ${JAVAJARDIR}/ + @${INSTALL_DATA} ${WRKSRC}/target/release/mail.jar ${STAGEDIR}${JAVAJARDIR}/ @${ECHO_MSG} " [ DONE ]" .if ${PORT_OPTIONS:MDOCS} @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..." - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} @cd ${WRKSRC}/target/release && ${FIND} *.txt \ - | ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} > /dev/null 2>&1 + | ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR} > /dev/null 2>&1 @cd ${WRKSRC}/target/release/docs && ${FIND} *.txt javadocs \ - | ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} > /dev/null 2>&1 + | ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR} > /dev/null 2>&1 @${ECHO_MSG} " [ DONE ]" .endif .if ${PORT_OPTIONS:MEXAMPLES} @${ECHO_MSG} -n ">> Installing samples in ${EXAMPLESDIR}..." - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @cd ${WRKSRC}/demo && ${FIND} src \ - | ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} > /dev/null 2>&1 + | ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${EXAMPLESDIR} > /dev/null 2>&1 @${ECHO_MSG} " [ DONE ]" .endif Modified: head/java/javamail/distinfo ============================================================================== --- head/java/javamail/distinfo Tue Jan 21 16:34:36 2014 (r340619) +++ head/java/javamail/distinfo Tue Jan 21 16:43:00 2014 (r340620) @@ -1,2 +1,2 @@ -SHA256 (javamail-1.4.7-src.zip) = b96c7fc70985693e2c150dcab385760fc6fb66a751dcd17b89a1db40c9bf2957 -SIZE (javamail-1.4.7-src.zip) = 1448724 +SHA256 (javaxmail-1.5.1-src.zip) = 86d443f6954db70576cd5f8e1e30e70412b6825391b959fd2359236fb12b2ca3 +SIZE (javaxmail-1.5.1-src.zip) = 1510490 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 16:57:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1B75CB2; Tue, 21 Jan 2014 16:57:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CAA8F1157; Tue, 21 Jan 2014 16:57:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LGvBXf057970; Tue, 21 Jan 2014 16:57:11 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LGvBCs057969; Tue, 21 Jan 2014 16:57:11 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401211657.s0LGvBCs057969@svn.freebsd.org> From: Dmitry Marakasov Date: Tue, 21 Jan 2014 16:57:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340621 - head/sysutils/cpuburn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 16:57:12 -0000 Author: amdmi3 Date: Tue Jan 21 16:57:11 2014 New Revision: 340621 URL: http://svnweb.freebsd.org/changeset/ports/340621 QAT: https://qat.redports.org/buildarchive/r340621/ Log: - Fix build on 10.x - Support staging - Convert NOPORTDOCS to OPTIONS PR: 185958 Submitted by: amdmi3 Approved by: avg (maintainer) Modified: head/sysutils/cpuburn/Makefile Modified: head/sysutils/cpuburn/Makefile ============================================================================== --- head/sysutils/cpuburn/Makefile Tue Jan 21 16:43:00 2014 (r340620) +++ head/sysutils/cpuburn/Makefile Tue Jan 21 16:57:11 2014 (r340621) @@ -6,8 +6,7 @@ DISTVERSION= 1_4 CATEGORIES= sysutils MASTER_SITES= http://www.bayofrum.net/dist/${PORTNAME}/ \ http://atarininja.org/distfiles/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= avg + LOCAL/avg DISTNAME= cpuburn_${DISTVERSION} EXTRACT_SUFX= _tar.gz @@ -20,8 +19,10 @@ ONLY_FOR_ARCHS= i386 amd64 PORTDOCS= README Design CPUS= BX K6 K7 MMX P5 P6 PLIST_FILES= ${CPUS:S+^+bin/burn+} +USE_GCC= yes + +OPTIONS_DEFINE= DOCS -NO_STAGE= yes do-build: .for CPU in ${CPUS} ${CC} -m32 -s -nostdlib -o ${WRKSRC}/burn${CPU} ${WRKSRC}/burn${CPU}.S @@ -29,12 +30,10 @@ do-build: do-install: .for CPU in ${CPUS} - ${INSTALL_PROGRAM} ${WRKSRC}/burn${CPU} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/burn${CPU} ${STAGEDIR}${PREFIX}/bin/ .endfor -.if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/Design ${DOCSDIR} -.endif + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ + ${INSTALL_DATA} ${WRKSRC}/Design ${STAGEDIR}${DOCSDIR}/ .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 17:03:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2877E34; Tue, 21 Jan 2014 17:03:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CB1C81201; Tue, 21 Jan 2014 17:03:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LH38D7061975; Tue, 21 Jan 2014 17:03:08 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LH31an061921; Tue, 21 Jan 2014 17:03:01 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401211703.s0LH31an061921@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 17:03:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340622 - in head/textproc: p5-LaTeX-Pod p5-LaTeX-Table p5-LaTeX-ToUnicode p5-Lingua-EN-Fathom p5-Lingua-EN-Inflect-Number p5-Lingua-EN-Inflect-Phrase p5-Lingua-EN-Number-IsOrdinal p5-L... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 17:03:09 -0000 Author: mat Date: Tue Jan 21 17:03:00 2014 New Revision: 340622 URL: http://svnweb.freebsd.org/changeset/ports/340622 QAT: https://qat.redports.org/buildarchive/r340622/ Log: * Convert to staging * Add license Sponsored by: Absolight Modified: head/textproc/p5-LaTeX-Pod/Makefile head/textproc/p5-LaTeX-Pod/pkg-plist (contents, props changed) head/textproc/p5-LaTeX-Table/Makefile (contents, props changed) head/textproc/p5-LaTeX-Table/pkg-plist (contents, props changed) head/textproc/p5-LaTeX-ToUnicode/Makefile head/textproc/p5-LaTeX-ToUnicode/pkg-plist (contents, props changed) head/textproc/p5-Lingua-EN-Fathom/Makefile head/textproc/p5-Lingua-EN-Fathom/pkg-plist (contents, props changed) head/textproc/p5-Lingua-EN-Inflect-Number/Makefile head/textproc/p5-Lingua-EN-Inflect-Number/pkg-plist (contents, props changed) head/textproc/p5-Lingua-EN-Inflect-Phrase/Makefile head/textproc/p5-Lingua-EN-Inflect-Phrase/pkg-plist (contents, props changed) head/textproc/p5-Lingua-EN-Number-IsOrdinal/Makefile head/textproc/p5-Lingua-EN-Number-IsOrdinal/pkg-plist (contents, props changed) head/textproc/p5-Lingua-Identify/Makefile head/textproc/p5-Lingua-Identify/pkg-plist (contents, props changed) head/textproc/p5-Lingua-Stem-Snowball/Makefile head/textproc/p5-Lingua-Stem-Snowball/pkg-plist (contents, props changed) head/textproc/p5-MARC-Lint/Makefile head/textproc/p5-MARC-Lint/pkg-plist (contents, props changed) head/textproc/p5-MARC-XML/Makefile head/textproc/p5-MARC-XML/pkg-plist (contents, props changed) head/textproc/p5-MARC/Makefile head/textproc/p5-MARC/pkg-plist (contents, props changed) head/textproc/p5-Makefile-DOM/Makefile head/textproc/p5-Makefile-DOM/pkg-plist (contents, props changed) head/textproc/p5-Markapl/Makefile head/textproc/p5-Markapl/pkg-plist (contents, props changed) head/textproc/p5-Number-Format/Makefile head/textproc/p5-Number-Format/pkg-plist (contents, props changed) head/textproc/p5-PDF-Writer/Makefile head/textproc/p5-PDF-Writer/pkg-plist (contents, props changed) head/textproc/p5-PPI-HTML/Makefile head/textproc/p5-PPI-HTML/pkg-plist (contents, props changed) head/textproc/p5-PPI/Makefile head/textproc/p5-PPI/pkg-plist (contents, props changed) Modified: head/textproc/p5-LaTeX-Pod/Makefile ============================================================================== --- head/textproc/p5-LaTeX-Pod/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-LaTeX-Pod/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= wen@FreeBSD.org COMMENT= Transform LaTeX source files to POD +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-LaTeX-TOM>=0.9:${PORTSDIR}/textproc/p5-LaTeX-TOM \ p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-Params-Validate>=0.91:${PORTSDIR}/devel/p5-Params-Validate \ @@ -20,8 +23,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN1= latex2pod.1 -MAN3= LaTeX::Pod.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-LaTeX-Pod/pkg-plist ============================================================================== --- head/textproc/p5-LaTeX-Pod/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-LaTeX-Pod/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,6 +1,8 @@ bin/latex2pod +%%PERL5_MAN3%%/LaTeX::Pod.3.gz %%SITE_PERL%%/LaTeX/Pod.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/LaTeX/Pod/.packlist +man/man1/latex2pod.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/LaTeX/Pod @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/LaTeX @dirrmtry %%SITE_PERL%%/LaTeX Modified: head/textproc/p5-LaTeX-Table/Makefile ============================================================================== --- head/textproc/p5-LaTeX-Table/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-LaTeX-Table/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -12,6 +12,9 @@ DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= perl@FreeBSD.org COMMENT= Perl extension for the automatic generation of LaTeX tables +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Test-NoWarnings>=0.084:${PORTSDIR}/devel/p5-Test-NoWarnings \ p5-Moose>=0.76:${PORTSDIR}/devel/p5-Moose \ p5-Moose-Policy>=0:${PORTSDIR}/devel/p5-Moose-Policy \ @@ -39,18 +42,4 @@ RUN_DEPENDS= p5-Test-NoWarnings>=0.084:$ USES= perl5 USE_PERL5= modbuild -MAN1= csv2pdf.1 ltpretty.1 -MAN3= LaTeX::Table::Types::Ctable.3 \ - LaTeX::Table::Types::TypeI.3 \ - LaTeX::Table::Themes::Booktabs.3 \ - LaTeX::Table::Themes::Classic.3 \ - LaTeX::Table::Themes::Beamer.3 \ - LaTeX::Table::Themes::ThemeI.3 \ - LaTeX::Table::Themes::Modern.3 \ - LaTeX::Table.3 \ - LaTeX::Table::Types::Longtable.3 \ - LaTeX::Table::Types::Xtab.3 \ - LaTeX::Table::Types::Std.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-LaTeX-Table/pkg-plist ============================================================================== --- head/textproc/p5-LaTeX-Table/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-LaTeX-Table/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,5 +1,16 @@ bin/csv2pdf bin/ltpretty +%%PERL5_MAN3%%/LaTeX::Table::Types::Ctable.3.gz +%%PERL5_MAN3%%/LaTeX::Table::Types::TypeI.3.gz +%%PERL5_MAN3%%/LaTeX::Table::Themes::Booktabs.3.gz +%%PERL5_MAN3%%/LaTeX::Table::Themes::Classic.3.gz +%%PERL5_MAN3%%/LaTeX::Table::Themes::Beamer.3.gz +%%PERL5_MAN3%%/LaTeX::Table::Themes::ThemeI.3.gz +%%PERL5_MAN3%%/LaTeX::Table::Themes::Modern.3.gz +%%PERL5_MAN3%%/LaTeX::Table.3.gz +%%PERL5_MAN3%%/LaTeX::Table::Types::Longtable.3.gz +%%PERL5_MAN3%%/LaTeX::Table::Types::Xtab.3.gz +%%PERL5_MAN3%%/LaTeX::Table::Types::Std.3.gz %%SITE_PERL%%/LaTeX/Table.pm %%SITE_PERL%%/LaTeX/Table/Themes/Booktabs.pm %%SITE_PERL%%/LaTeX/Table/Themes/ThemeI.pm @@ -11,6 +22,8 @@ bin/ltpretty %%SITE_PERL%%/LaTeX/Table/Types/Longtable.pm %%SITE_PERL%%/LaTeX/Table/Types/Xtab.pm %%SITE_PERL%%/LaTeX/Table/Types/TypeI.pm +man/man1/csv2pdf.1.gz +man/man1/ltpretty.1.gz @dirrm %%SITE_PERL%%/LaTeX/Table/Types @dirrm %%SITE_PERL%%/LaTeX/Table/Themes @dirrm %%SITE_PERL%%/LaTeX/Table Modified: head/textproc/p5-LaTeX-ToUnicode/Makefile ============================================================================== --- head/textproc/p5-LaTeX-ToUnicode/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-LaTeX-ToUnicode/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -11,11 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= wen@FreeBSD.org COMMENT= Convert LaTeX commands to Unicode +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= LaTeX::ToUnicode::Tables.3 \ - LaTeX::ToUnicode.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-LaTeX-ToUnicode/pkg-plist ============================================================================== --- head/textproc/p5-LaTeX-ToUnicode/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-LaTeX-ToUnicode/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/LaTeX::ToUnicode::Tables.3.gz +%%PERL5_MAN3%%/LaTeX::ToUnicode.3.gz %%SITE_PERL%%/LaTeX/ToUnicode.pm %%SITE_PERL%%/LaTeX/ToUnicode/Tables.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/LaTeX/ToUnicode/.packlist Modified: head/textproc/p5-Lingua-EN-Fathom/Makefile ============================================================================== --- head/textproc/p5-Lingua-EN-Fathom/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-EN-Fathom/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Lingua::EN::Fathom - Measure readability of English text +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + COMMON_DEPENDS= p5-Lingua-EN-Syllable>0:${PORTSDIR}/textproc/p5-Lingua-EN-Syllable BUILD_DEPENDS= ${COMMON_DEPENDS} RUN_DEPENDS= ${COMMON_DEPENDS} @@ -17,7 +20,4 @@ RUN_DEPENDS= ${COMMON_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Lingua::EN::Fathom.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Lingua-EN-Fathom/pkg-plist ============================================================================== --- head/textproc/p5-Lingua-EN-Fathom/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-EN-Fathom/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Lingua::EN::Fathom.3.gz %%SITE_PERL%%/Lingua/EN/Fathom.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/EN/Fathom/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/EN/Fathom Modified: head/textproc/p5-Lingua-EN-Inflect-Number/Makefile ============================================================================== --- head/textproc/p5-Lingua-EN-Inflect-Number/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-EN-Inflect-Number/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -16,7 +16,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Lingua::EN::Inflect::Number.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Lingua-EN-Inflect-Number/pkg-plist ============================================================================== --- head/textproc/p5-Lingua-EN-Inflect-Number/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-EN-Inflect-Number/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Lingua::EN::Inflect::Number.3.gz %%SITE_PERL%%/Lingua/EN/Inflect/Number.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/EN/Inflect/Number/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/EN/Inflect/Number Modified: head/textproc/p5-Lingua-EN-Inflect-Phrase/Makefile ============================================================================== --- head/textproc/p5-Lingua-EN-Inflect-Phrase/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-EN-Inflect-Phrase/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -9,6 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to inflect short English Phrases +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= \ p5-Lingua-EN-FindNumber>=0:${PORTSDIR}/textproc/p5-Lingua-EN-FindNumber \ p5-Lingua-EN-Inflect>=1.89.1:${PORTSDIR}/textproc/p5-Lingua-EN-Inflect \ @@ -23,7 +26,4 @@ TEST_DEPENDS= \ USES= perl5 USE_PERL5= configure -MAN3= Lingua::EN::Inflect::Phrase.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Lingua-EN-Inflect-Phrase/pkg-plist ============================================================================== --- head/textproc/p5-Lingua-EN-Inflect-Phrase/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-EN-Inflect-Phrase/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Lingua::EN::Inflect::Phrase.3.gz %%SITE_PERL%%/Lingua/EN/Inflect/Phrase.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/EN/Inflect/Phrase/.packlist @dirrmtry %%SITE_PERL%%/Lingua/EN/Inflect Modified: head/textproc/p5-Lingua-EN-Number-IsOrdinal/Makefile ============================================================================== --- head/textproc/p5-Lingua-EN-Number-IsOrdinal/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-EN-Number-IsOrdinal/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -9,6 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to detect if English number is ordinal or cardinal +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= \ p5-Lingua-EN-FindNumber>0:${PORTSDIR}/textproc/p5-Lingua-EN-FindNumber BUILD_DEPENDS= ${RUN_DEPENDS} @@ -19,7 +22,4 @@ TEST_DEPENDS= \ USES= perl5 USE_PERL5= configure -MAN3= Lingua::EN::Number::IsOrdinal.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Lingua-EN-Number-IsOrdinal/pkg-plist ============================================================================== --- head/textproc/p5-Lingua-EN-Number-IsOrdinal/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-EN-Number-IsOrdinal/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Lingua::EN::Number::IsOrdinal.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/EN/Number/IsOrdinal/.packlist %%SITE_PERL%%/Lingua/EN/Number/IsOrdinal.pm @dirrmtry %%SITE_PERL%%/Lingua/EN/Number Modified: head/textproc/p5-Lingua-Identify/Makefile ============================================================================== --- head/textproc/p5-Lingua-Identify/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-Identify/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -9,7 +9,6 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Lingua::Identify - Language identification -TAGS= lang detect identify BUILD_DEPENDS= p5-Class-Factory-Util>=1.6:${PORTSDIR}/devel/p5-Class-Factory-Util \ p5-Text-Affixes>=0.04:${PORTSDIR}/textproc/p5-Text-Affixes \ @@ -19,35 +18,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN1= langident.1 make-lingua-identify-language.1 -MAN3= Lingua::Identify.3 \ - Lingua::Identify::BG.3 \ - Lingua::Identify::CS.3 \ - Lingua::Identify::CY.3 \ - Lingua::Identify::DA.3 \ - Lingua::Identify::DE.3 \ - Lingua::Identify::EL.3 \ - Lingua::Identify::EN.3 \ - Lingua::Identify::ES.3 \ - Lingua::Identify::FI.3 \ - Lingua::Identify::FR.3 \ - Lingua::Identify::HR.3 \ - Lingua::Identify::HI.3 \ - Lingua::Identify::HU.3 \ - Lingua::Identify::ID.3 \ - Lingua::Identify::IT.3 \ - Lingua::Identify::LA.3 \ - Lingua::Identify::NL.3 \ - Lingua::Identify::Nothing.3 \ - Lingua::Identify::PL.3 \ - Lingua::Identify::PT.3 \ - Lingua::Identify::RO.3 \ - Lingua::Identify::RU.3 \ - Lingua::Identify::SL.3 \ - Lingua::Identify::SQ.3 \ - Lingua::Identify::SV.3 \ - Lingua::Identify::TR.3 \ - Lingua::Identify::UK.3 +TAGS= lang detect identify -NO_STAGE= yes .include Modified: head/textproc/p5-Lingua-Identify/pkg-plist ============================================================================== --- head/textproc/p5-Lingua-Identify/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-Identify/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,5 +1,33 @@ bin/langident bin/make-lingua-identify-language +%%PERL5_MAN3%%/Lingua::Identify.3.gz +%%PERL5_MAN3%%/Lingua::Identify::BG.3.gz +%%PERL5_MAN3%%/Lingua::Identify::CS.3.gz +%%PERL5_MAN3%%/Lingua::Identify::CY.3.gz +%%PERL5_MAN3%%/Lingua::Identify::DA.3.gz +%%PERL5_MAN3%%/Lingua::Identify::DE.3.gz +%%PERL5_MAN3%%/Lingua::Identify::EL.3.gz +%%PERL5_MAN3%%/Lingua::Identify::EN.3.gz +%%PERL5_MAN3%%/Lingua::Identify::ES.3.gz +%%PERL5_MAN3%%/Lingua::Identify::FI.3.gz +%%PERL5_MAN3%%/Lingua::Identify::FR.3.gz +%%PERL5_MAN3%%/Lingua::Identify::HR.3.gz +%%PERL5_MAN3%%/Lingua::Identify::HI.3.gz +%%PERL5_MAN3%%/Lingua::Identify::HU.3.gz +%%PERL5_MAN3%%/Lingua::Identify::ID.3.gz +%%PERL5_MAN3%%/Lingua::Identify::IT.3.gz +%%PERL5_MAN3%%/Lingua::Identify::LA.3.gz +%%PERL5_MAN3%%/Lingua::Identify::NL.3.gz +%%PERL5_MAN3%%/Lingua::Identify::Nothing.3.gz +%%PERL5_MAN3%%/Lingua::Identify::PL.3.gz +%%PERL5_MAN3%%/Lingua::Identify::PT.3.gz +%%PERL5_MAN3%%/Lingua::Identify::RO.3.gz +%%PERL5_MAN3%%/Lingua::Identify::RU.3.gz +%%PERL5_MAN3%%/Lingua::Identify::SL.3.gz +%%PERL5_MAN3%%/Lingua::Identify::SQ.3.gz +%%PERL5_MAN3%%/Lingua::Identify::SV.3.gz +%%PERL5_MAN3%%/Lingua::Identify::TR.3.gz +%%PERL5_MAN3%%/Lingua::Identify::UK.3.gz %%SITE_PERL%%/Lingua/Identify.pm %%SITE_PERL%%/Lingua/Identify/BG.pm %%SITE_PERL%%/Lingua/Identify/CS.pm @@ -29,6 +57,8 @@ bin/make-lingua-identify-language %%SITE_PERL%%/Lingua/Identify/TR.pm %%SITE_PERL%%/Lingua/Identify/UK.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/Identify/.packlist +man/man1/langident.1.gz +man/man1/make-lingua-identify-language.1.gz @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/Identify @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua @dirrmtry %%SITE_PERL%%/Lingua/Identify Modified: head/textproc/p5-Lingua-Stem-Snowball/Makefile ============================================================================== --- head/textproc/p5-Lingua-Stem-Snowball/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-Stem-Snowball/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Lingua::Stem::Snowball - Perl interface to Snowball stemmers +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= modbuild -MAN3= Lingua::Stem::Snowball.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Lingua-Stem-Snowball/pkg-plist ============================================================================== --- head/textproc/p5-Lingua-Stem-Snowball/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Lingua-Stem-Snowball/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Lingua::Stem::Snowball.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/Lingua/Stem/Snowball.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/Stem/Snowball/Snowball.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/Stem/Snowball/Snowball.so Modified: head/textproc/p5-MARC-Lint/Makefile ============================================================================== --- head/textproc/p5-MARC-Lint/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-MARC-Lint/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -14,13 +14,9 @@ BUILD_DEPENDS= p5-MARC-Record>=0:${PORTS p5-Business-ISBN>=2.03:${PORTSDIR}/misc/p5-Business-ISBN RUN_DEPENDS:= ${BUILD_DEPENDS} -MAN1= marclint.1 -MAN3= MARC::Lint.3 MARC::Lint::CodeData.3 - WRKSRC= ${WRKDIR}/marc-lint USES= perl5 USE_PERL5= configure -NO_STAGE= yes .include Modified: head/textproc/p5-MARC-Lint/pkg-plist ============================================================================== --- head/textproc/p5-MARC-Lint/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-MARC-Lint/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,6 +1,9 @@ bin/marclint +%%PERL5_MAN3%%/MARC::Lint.3.gz +%%PERL5_MAN3%%/MARC::Lint::CodeData.3.gz %%SITE_PERL%%/MARC/Lint.pm %%SITE_PERL%%/MARC/Lint/CodeData.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MARC/Lint/.packlist +man/man1/marclint.1.gz @dirrm %%SITE_PERL%%/MARC/Lint @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MARC/Lint Modified: head/textproc/p5-MARC-XML/Makefile ============================================================================== --- head/textproc/p5-MARC-XML/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-MARC-XML/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -10,16 +10,15 @@ PKGNAMEPREFIX= p5- MAINTAINER= demon@FreeBSD.org COMMENT= An extension to the MARC-Record distribution for working with XML data +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-MARC-Record>=2:${PORTSDIR}/textproc/p5-MARC-Record \ p5-MARC-Charset>=0.98:${PORTSDIR}/textproc/p5-MARC-Charset \ p5-XML-SAX>=0.12:${PORTSDIR}/textproc/p5-XML-SAX RUN_DEPENDS:= ${BUILD_DEPENDS} -MAN1= marc2xml.1 xml2marc.1 -MAN3= MARC::File::XML.3 - USES= perl5 USE_PERL5= configure -NO_STAGE= yes .include Modified: head/textproc/p5-MARC-XML/pkg-plist ============================================================================== --- head/textproc/p5-MARC-XML/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-MARC-XML/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,5 +1,8 @@ bin/marc2xml bin/xml2marc +%%PERL5_MAN3%%/MARC::File::XML.3.gz %%SITE_PERL%%/MARC/File/XML.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MARC-XML/.packlist +man/man1/marc2xml.1.gz +man/man1/xml2marc.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MARC-XML Modified: head/textproc/p5-MARC/Makefile ============================================================================== --- head/textproc/p5-MARC/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-MARC/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -13,7 +13,4 @@ COMMENT= A module for manipulating bibli USES= perl5 USE_PERL5= configure -MAN3= MARC.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-MARC/pkg-plist ============================================================================== --- head/textproc/p5-MARC/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-MARC/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/MARC.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/MARC/.packlist %%SITE_PERL%%/MARC.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MARC Modified: head/textproc/p5-Makefile-DOM/Makefile ============================================================================== --- head/textproc/p5-Makefile-DOM/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Makefile-DOM/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= Simple DOM parser for Makefiles +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-Clone>=0.18:${PORTSDIR}/devel/p5-Clone \ p5-List-MoreUtils>=0.21:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-Params-Util>=0.22:${PORTSDIR}/devel/p5-Params-Util @@ -18,14 +21,4 @@ RUN_DEPENDS= p5-Clone>=0.18:${PORTSDIR}/ USES= perl5 USE_PERL5= configure -MAN3= MDOM::Dumper.3 \ - MDOM::Element.3 \ - MDOM::Node.3 \ - MDOM::Token.3 \ - MDOM::Token::Comment.3 \ - MDOM::Token::Separator.3 \ - MDOM::Token::Whitespace.3 \ - Makefile::DOM.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Makefile-DOM/pkg-plist ============================================================================== --- head/textproc/p5-Makefile-DOM/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Makefile-DOM/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,11 @@ +%%PERL5_MAN3%%/MDOM::Dumper.3.gz +%%PERL5_MAN3%%/MDOM::Element.3.gz +%%PERL5_MAN3%%/MDOM::Node.3.gz +%%PERL5_MAN3%%/MDOM::Token.3.gz +%%PERL5_MAN3%%/MDOM::Token::Comment.3.gz +%%PERL5_MAN3%%/MDOM::Token::Separator.3.gz +%%PERL5_MAN3%%/MDOM::Token::Whitespace.3.gz +%%PERL5_MAN3%%/Makefile::DOM.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Makefile/DOM/.packlist %%SITE_PERL%%/MDOM/Assignment.pm %%SITE_PERL%%/MDOM/Command.pm Modified: head/textproc/p5-Markapl/Makefile ============================================================================== --- head/textproc/p5-Markapl/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Markapl/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -23,9 +23,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Markapl.3 \ - Markapl::Helpers.3 \ - Markapl::Tags.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Markapl/pkg-plist ============================================================================== --- head/textproc/p5-Markapl/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Markapl/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/Markapl.3.gz +%%PERL5_MAN3%%/Markapl::Helpers.3.gz +%%PERL5_MAN3%%/Markapl::Tags.3.gz %%SITE_PERL%%/Markapl.pm %%SITE_PERL%%/Markapl/Helpers.pm %%SITE_PERL%%/Markapl/TagHandlers.pm Modified: head/textproc/p5-Number-Format/Makefile ============================================================================== --- head/textproc/p5-Number-Format/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Number-Format/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= clsung@FreeBSD.org COMMENT= Perl extension for formatting numbers +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= Number::Format.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Number-Format/pkg-plist ============================================================================== --- head/textproc/p5-Number-Format/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-Number-Format/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Number::Format.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Number/Format/.packlist %%SITE_PERL%%/Number/Format.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Number/Format Modified: head/textproc/p5-PDF-Writer/Makefile ============================================================================== --- head/textproc/p5-PDF-Writer/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-PDF-Writer/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= PDF writer abstraction layer +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= modbuild -MAN3= PDF::Writer.3 PDF::Writer::pdfapi2.3 PDF::Writer::pdflib.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-PDF-Writer/pkg-plist ============================================================================== --- head/textproc/p5-PDF-Writer/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-PDF-Writer/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/PDF::Writer.3.gz +%%PERL5_MAN3%%/PDF::Writer::pdfapi2.3.gz +%%PERL5_MAN3%%/PDF::Writer::pdflib.3.gz %%SITE_PERL%%/PDF/Writer.pm %%SITE_PERL%%/PDF/Writer/mock.pm %%SITE_PERL%%/PDF/Writer/pdfapi2.pm Modified: head/textproc/p5-PPI-HTML/Makefile ============================================================================== --- head/textproc/p5-PPI-HTML/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-PPI-HTML/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Generate syntax-highlighted HTML for Perl using PPI +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-PPI>=0.990:${PORTSDIR}/textproc/p5-PPI \ p5-CSS-Tiny>=0.10:${PORTSDIR}/textproc/p5-CSS-Tiny \ p5-Params-Util>=0.05:${PORTSDIR}/devel/p5-Params-Util @@ -19,9 +22,6 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= PPI::HTML.3 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -i '' '/Test::More/d' ${WRKSRC}/Makefile.PL Modified: head/textproc/p5-PPI-HTML/pkg-plist ============================================================================== --- head/textproc/p5-PPI-HTML/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-PPI-HTML/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,4 +1,5 @@ bin/ppi2html +%%PERL5_MAN3%%/PPI::HTML.3.gz %%SITE_PERL%%/PPI/HTML.pm %%SITE_PERL%%/PPI/HTML/Fragment.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/PPI/HTML/.packlist Modified: head/textproc/p5-PPI/Makefile ============================================================================== --- head/textproc/p5-PPI/Makefile Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-PPI/Makefile Tue Jan 21 17:03:00 2014 (r340622) @@ -12,6 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Analyze and manipulate Perl code without using perl itself +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= \ p5-Clone>=0.30:${PORTSDIR}/devel/p5-Clone \ p5-IO-String>=1.07:${PORTSDIR}/devel/p5-IO-String \ @@ -28,95 +31,4 @@ TEST_DEPENDS= p5-Test-NoWarnings>=0.084: USES= perl5 USE_PERL5= configure -MAN3= PPI.3 \ - PPI::Cache.3 \ - PPI::Document.3 \ - PPI::Document::File.3 \ - PPI::Document::Fragment.3 \ - PPI::Document::Normalized.3 \ - PPI::Dumper.3 \ - PPI::Element.3 \ - PPI::Find.3 \ - PPI::Lexer.3 \ - PPI::Node.3 \ - PPI::Normal.3 \ - PPI::Normal::Standard.3 \ - PPI::Statement.3 \ - PPI::Statement::Break.3 \ - PPI::Statement::Compound.3 \ - PPI::Statement::Data.3 \ - PPI::Statement::End.3 \ - PPI::Statement::Expression.3 \ - PPI::Statement::Given.3 \ - PPI::Statement::Include.3 \ - PPI::Statement::Include::Perl6.3 \ - PPI::Statement::Null.3 \ - PPI::Statement::Package.3 \ - PPI::Statement::Scheduled.3 \ - PPI::Statement::Sub.3 \ - PPI::Statement::Unknown.3 \ - PPI::Statement::UnmatchedBrace.3 \ - PPI::Statement::Variable.3 \ - PPI::Statement::When.3 \ - PPI::Structure.3 \ - PPI::Structure::Block.3 \ - PPI::Structure::Condition.3 \ - PPI::Structure::Constructor.3 \ - PPI::Structure::For.3 \ - PPI::Structure::Given.3 \ - PPI::Structure::List.3 \ - PPI::Structure::Subscript.3 \ - PPI::Structure::Unknown.3 \ - PPI::Structure::When.3 \ - PPI::Token.3 \ - PPI::Token::ArrayIndex.3 \ - PPI::Token::Attribute.3 \ - PPI::Token::BOM.3 \ - PPI::Token::Cast.3 \ - PPI::Token::Comment.3 \ - PPI::Token::DashedWord.3 \ - PPI::Token::Data.3 \ - PPI::Token::End.3 \ - PPI::Token::HereDoc.3 \ - PPI::Token::Label.3 \ - PPI::Token::Magic.3 \ - PPI::Token::Number.3 \ - PPI::Token::Number::Binary.3 \ - PPI::Token::Number::Exp.3 \ - PPI::Token::Number::Float.3 \ - PPI::Token::Number::Hex.3 \ - PPI::Token::Number::Octal.3 \ - PPI::Token::Number::Version.3 \ - PPI::Token::Operator.3 \ - PPI::Token::Pod.3 \ - PPI::Token::Prototype.3 \ - PPI::Token::Quote.3 \ - PPI::Token::Quote::Double.3 \ - PPI::Token::Quote::Interpolate.3 \ - PPI::Token::Quote::Literal.3 \ - PPI::Token::Quote::Single.3 \ - PPI::Token::QuoteLike.3 \ - PPI::Token::QuoteLike::Backtick.3 \ - PPI::Token::QuoteLike::Command.3 \ - PPI::Token::QuoteLike::Readline.3 \ - PPI::Token::QuoteLike::Regexp.3 \ - PPI::Token::QuoteLike::Words.3 \ - PPI::Token::Regexp.3 \ - PPI::Token::Regexp::Match.3 \ - PPI::Token::Regexp::Substitute.3 \ - PPI::Token::Regexp::Transliterate.3 \ - PPI::Token::Separator.3 \ - PPI::Token::Structure.3 \ - PPI::Token::Symbol.3 \ - PPI::Token::Unknown.3 \ - PPI::Token::Whitespace.3 \ - PPI::Token::Word.3 \ - PPI::Token::_QuoteEngine.3 \ - PPI::Token::_QuoteEngine::Full.3 \ - PPI::Token::_QuoteEngine::Simple.3 \ - PPI::Tokenizer.3 \ - PPI::Transform.3 \ - PPI::Transform::UpdateCopyright.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-PPI/pkg-plist ============================================================================== --- head/textproc/p5-PPI/pkg-plist Tue Jan 21 16:57:11 2014 (r340621) +++ head/textproc/p5-PPI/pkg-plist Tue Jan 21 17:03:00 2014 (r340622) @@ -1,3 +1,92 @@ +%%PERL5_MAN3%%/PPI.3.gz +%%PERL5_MAN3%%/PPI::Cache.3.gz +%%PERL5_MAN3%%/PPI::Document.3.gz +%%PERL5_MAN3%%/PPI::Document::File.3.gz +%%PERL5_MAN3%%/PPI::Document::Fragment.3.gz +%%PERL5_MAN3%%/PPI::Document::Normalized.3.gz +%%PERL5_MAN3%%/PPI::Dumper.3.gz +%%PERL5_MAN3%%/PPI::Element.3.gz +%%PERL5_MAN3%%/PPI::Find.3.gz +%%PERL5_MAN3%%/PPI::Lexer.3.gz +%%PERL5_MAN3%%/PPI::Node.3.gz +%%PERL5_MAN3%%/PPI::Normal.3.gz +%%PERL5_MAN3%%/PPI::Normal::Standard.3.gz +%%PERL5_MAN3%%/PPI::Statement.3.gz +%%PERL5_MAN3%%/PPI::Statement::Break.3.gz +%%PERL5_MAN3%%/PPI::Statement::Compound.3.gz +%%PERL5_MAN3%%/PPI::Statement::Data.3.gz +%%PERL5_MAN3%%/PPI::Statement::End.3.gz +%%PERL5_MAN3%%/PPI::Statement::Expression.3.gz +%%PERL5_MAN3%%/PPI::Statement::Given.3.gz +%%PERL5_MAN3%%/PPI::Statement::Include.3.gz +%%PERL5_MAN3%%/PPI::Statement::Include::Perl6.3.gz +%%PERL5_MAN3%%/PPI::Statement::Null.3.gz +%%PERL5_MAN3%%/PPI::Statement::Package.3.gz +%%PERL5_MAN3%%/PPI::Statement::Scheduled.3.gz +%%PERL5_MAN3%%/PPI::Statement::Sub.3.gz +%%PERL5_MAN3%%/PPI::Statement::Unknown.3.gz +%%PERL5_MAN3%%/PPI::Statement::UnmatchedBrace.3.gz +%%PERL5_MAN3%%/PPI::Statement::Variable.3.gz +%%PERL5_MAN3%%/PPI::Statement::When.3.gz +%%PERL5_MAN3%%/PPI::Structure.3.gz +%%PERL5_MAN3%%/PPI::Structure::Block.3.gz +%%PERL5_MAN3%%/PPI::Structure::Condition.3.gz +%%PERL5_MAN3%%/PPI::Structure::Constructor.3.gz +%%PERL5_MAN3%%/PPI::Structure::For.3.gz +%%PERL5_MAN3%%/PPI::Structure::Given.3.gz +%%PERL5_MAN3%%/PPI::Structure::List.3.gz +%%PERL5_MAN3%%/PPI::Structure::Subscript.3.gz +%%PERL5_MAN3%%/PPI::Structure::Unknown.3.gz +%%PERL5_MAN3%%/PPI::Structure::When.3.gz +%%PERL5_MAN3%%/PPI::Token.3.gz +%%PERL5_MAN3%%/PPI::Token::ArrayIndex.3.gz +%%PERL5_MAN3%%/PPI::Token::Attribute.3.gz +%%PERL5_MAN3%%/PPI::Token::BOM.3.gz +%%PERL5_MAN3%%/PPI::Token::Cast.3.gz +%%PERL5_MAN3%%/PPI::Token::Comment.3.gz +%%PERL5_MAN3%%/PPI::Token::DashedWord.3.gz +%%PERL5_MAN3%%/PPI::Token::Data.3.gz +%%PERL5_MAN3%%/PPI::Token::End.3.gz +%%PERL5_MAN3%%/PPI::Token::HereDoc.3.gz +%%PERL5_MAN3%%/PPI::Token::Label.3.gz +%%PERL5_MAN3%%/PPI::Token::Magic.3.gz +%%PERL5_MAN3%%/PPI::Token::Number.3.gz +%%PERL5_MAN3%%/PPI::Token::Number::Binary.3.gz +%%PERL5_MAN3%%/PPI::Token::Number::Exp.3.gz +%%PERL5_MAN3%%/PPI::Token::Number::Float.3.gz +%%PERL5_MAN3%%/PPI::Token::Number::Hex.3.gz +%%PERL5_MAN3%%/PPI::Token::Number::Octal.3.gz +%%PERL5_MAN3%%/PPI::Token::Number::Version.3.gz +%%PERL5_MAN3%%/PPI::Token::Operator.3.gz +%%PERL5_MAN3%%/PPI::Token::Pod.3.gz +%%PERL5_MAN3%%/PPI::Token::Prototype.3.gz +%%PERL5_MAN3%%/PPI::Token::Quote.3.gz +%%PERL5_MAN3%%/PPI::Token::Quote::Double.3.gz +%%PERL5_MAN3%%/PPI::Token::Quote::Interpolate.3.gz +%%PERL5_MAN3%%/PPI::Token::Quote::Literal.3.gz +%%PERL5_MAN3%%/PPI::Token::Quote::Single.3.gz +%%PERL5_MAN3%%/PPI::Token::QuoteLike.3.gz +%%PERL5_MAN3%%/PPI::Token::QuoteLike::Backtick.3.gz +%%PERL5_MAN3%%/PPI::Token::QuoteLike::Command.3.gz +%%PERL5_MAN3%%/PPI::Token::QuoteLike::Readline.3.gz +%%PERL5_MAN3%%/PPI::Token::QuoteLike::Regexp.3.gz +%%PERL5_MAN3%%/PPI::Token::QuoteLike::Words.3.gz +%%PERL5_MAN3%%/PPI::Token::Regexp.3.gz +%%PERL5_MAN3%%/PPI::Token::Regexp::Match.3.gz +%%PERL5_MAN3%%/PPI::Token::Regexp::Substitute.3.gz +%%PERL5_MAN3%%/PPI::Token::Regexp::Transliterate.3.gz +%%PERL5_MAN3%%/PPI::Token::Separator.3.gz +%%PERL5_MAN3%%/PPI::Token::Structure.3.gz +%%PERL5_MAN3%%/PPI::Token::Symbol.3.gz +%%PERL5_MAN3%%/PPI::Token::Unknown.3.gz +%%PERL5_MAN3%%/PPI::Token::Whitespace.3.gz +%%PERL5_MAN3%%/PPI::Token::Word.3.gz +%%PERL5_MAN3%%/PPI::Token::_QuoteEngine.3.gz +%%PERL5_MAN3%%/PPI::Token::_QuoteEngine::Full.3.gz +%%PERL5_MAN3%%/PPI::Token::_QuoteEngine::Simple.3.gz +%%PERL5_MAN3%%/PPI::Tokenizer.3.gz +%%PERL5_MAN3%%/PPI::Transform.3.gz +%%PERL5_MAN3%%/PPI::Transform::UpdateCopyright.3.gz %%SITE_PERL%%/PPI.pm %%SITE_PERL%%/PPI/Cache.pm %%SITE_PERL%%/PPI/Document.pm From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 17:09:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C43FFCC; Tue, 21 Jan 2014 17:09:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 96803124B; Tue, 21 Jan 2014 17:09:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LH9VsN062955; Tue, 21 Jan 2014 17:09:31 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LH9VWX062947; Tue, 21 Jan 2014 17:09:31 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401211709.s0LH9VWX062947@svn.freebsd.org> From: Alex Dupre Date: Tue, 21 Jan 2014 17:09:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340623 - in head: graphics/php5-gd/files 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.17 Precedence: list List-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, 21 Jan 2014 17:09:31 -0000 Author: ale Date: Tue Jan 21 17:09:30 2014 New Revision: 340623 URL: http://svnweb.freebsd.org/changeset/ports/340623 QAT: https://qat.redports.org/buildarchive/r340623/ Log: Update to 5.4.24 release. Modified: head/graphics/php5-gd/files/patch-config.m4 head/lang/php5/Makefile head/lang/php5/distinfo Modified: head/graphics/php5-gd/files/patch-config.m4 ============================================================================== --- head/graphics/php5-gd/files/patch-config.m4 Tue Jan 21 17:03:00 2014 (r340622) +++ head/graphics/php5-gd/files/patch-config.m4 Tue Jan 21 17:09:30 2014 (r340623) @@ -1,14 +1,5 @@ --- config.m4.orig 2013-12-10 20:32:43.000000000 +0100 +++ config.m4 2013-12-24 21:02:03.000000000 +0100 -@@ -193,7 +193,7 @@ - if test "$PHP_FREETYPE_DIR" != "no"; then - - for i in $PHP_FREETYPE_DIR /usr/local /usr; do -- if test -f "$i/include/freetype2/freetype/freetype.h"; then -+ if test -f "$i/include/freetype2/freetype.h"; then - FREETYPE2_DIR=$i - FREETYPE2_INC_DIR=$i/include/freetype2 - break @@ -241,7 +241,7 @@ ],[ AC_MSG_ERROR([Problem with libt1.(a|so). Please check config.log for more information.]) Modified: head/lang/php5/Makefile ============================================================================== --- head/lang/php5/Makefile Tue Jan 21 17:03:00 2014 (r340622) +++ head/lang/php5/Makefile Tue Jan 21 17:09:30 2014 (r340623) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php5 -PORTVERSION= 5.4.23 +PORTVERSION= 5.4.24 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} Modified: head/lang/php5/distinfo ============================================================================== --- head/lang/php5/distinfo Tue Jan 21 17:03:00 2014 (r340622) +++ head/lang/php5/distinfo Tue Jan 21 17:09:30 2014 (r340623) @@ -1,4 +1,4 @@ -SHA256 (php-5.4.23.tar.bz2) = ae7c070fa9b9e16413ef944d910b68f3ba79192eca4010b0af132b8631bd91cc -SIZE (php-5.4.23.tar.bz2) = 12251671 +SHA256 (php-5.4.24.tar.bz2) = 97fe70eddaf5b93969714a551870fe03f6b0a387f85b83a6d63a40a76199a327 +SIZE (php-5.4.24.tar.bz2) = 12256796 SHA256 (php-5.4.x-mail-header.patch) = 005ae1cd8ed17c72d7b09dee9c4466e8b16d4ecba7fe11276731ed6ff9fbb344 SIZE (php-5.4.x-mail-header.patch) = 3379 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 17:09:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 819A11AB; Tue, 21 Jan 2014 17:09:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 53C9F1252; Tue, 21 Jan 2014 17:09:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LH9rAu063092; Tue, 21 Jan 2014 17:09:53 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LH9qAY063088; Tue, 21 Jan 2014 17:09:52 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401211709.s0LH9qAY063088@svn.freebsd.org> From: Alex Dupre Date: Tue, 21 Jan 2014 17:09:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340624 - in head: graphics/php55-gd/files lang/php55 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 17:09:53 -0000 Author: ale Date: Tue Jan 21 17:09:52 2014 New Revision: 340624 URL: http://svnweb.freebsd.org/changeset/ports/340624 QAT: https://qat.redports.org/buildarchive/r340624/ Log: Update to 5.5.8 release. Modified: head/graphics/php55-gd/files/patch-config.m4 head/lang/php55/Makefile head/lang/php55/distinfo Modified: head/graphics/php55-gd/files/patch-config.m4 ============================================================================== --- head/graphics/php55-gd/files/patch-config.m4 Tue Jan 21 17:09:30 2014 (r340623) +++ head/graphics/php55-gd/files/patch-config.m4 Tue Jan 21 17:09:52 2014 (r340624) @@ -1,14 +1,5 @@ --- config.m4.orig 2013-12-11 00:31:06.000000000 +0100 +++ config.m4 2013-12-24 21:11:19.000000000 +0100 -@@ -185,7 +185,7 @@ - if test "$PHP_FREETYPE_DIR" != "no"; then - - for i in $PHP_FREETYPE_DIR /usr/local /usr; do -- if test -f "$i/include/freetype2/freetype/freetype.h"; then -+ if test -f "$i/include/freetype2/freetype.h"; then - FREETYPE2_DIR=$i - FREETYPE2_INC_DIR=$i/include/freetype2 - break @@ -233,7 +233,7 @@ ],[ AC_MSG_ERROR([Problem with libt1.(a|so). Please check config.log for more information.]) Modified: head/lang/php55/Makefile ============================================================================== --- head/lang/php55/Makefile Tue Jan 21 17:09:30 2014 (r340623) +++ head/lang/php55/Makefile Tue Jan 21 17:09:52 2014 (r340624) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php55 -PORTVERSION= 5.5.7 +PORTVERSION= 5.5.8 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} Modified: head/lang/php55/distinfo ============================================================================== --- head/lang/php55/distinfo Tue Jan 21 17:09:30 2014 (r340623) +++ head/lang/php55/distinfo Tue Jan 21 17:09:52 2014 (r340624) @@ -1,4 +1,4 @@ -SHA256 (php-5.5.7.tar.bz2) = 2cb9425ef514b984dd233097d82a66f4623b9bf48f2ef265bc7ba25d697d6008 -SIZE (php-5.5.7.tar.bz2) = 12991330 +SHA256 (php-5.5.8.tar.bz2) = 6d5f45659d13383fc8429f185cc9da0b30c7bb72dcae9baf568f0511eb7f8b68 +SIZE (php-5.5.8.tar.bz2) = 13005675 SHA256 (php-5.5.x-mail-header.patch) = b0b5a7c961b2052eb14d9528e76155cbeaa881fb9b4a49f452f9dab07b6fb1c4 SIZE (php-5.5.x-mail-header.patch) = 3379 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 17:18:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72B033D9; Tue, 21 Jan 2014 17:18:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5DDB01326; Tue, 21 Jan 2014 17:18:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LHINsd066909; Tue, 21 Jan 2014 17:18:23 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LHINoC066907; Tue, 21 Jan 2014 17:18:23 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201401211718.s0LHINoC066907@svn.freebsd.org> From: Renato Botelho Date: Tue, 21 Jan 2014 17:18:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340625 - head/www/lighttpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 17:18:23 -0000 Author: garga Date: Tue Jan 21 17:18:22 2014 New Revision: 340625 URL: http://svnweb.freebsd.org/changeset/ports/340625 QAT: https://qat.redports.org/buildarchive/r340625/ Log: Really fix /var/log/lighttpd install and deinstall, sorry for the noise Modified: head/www/lighttpd/Makefile head/www/lighttpd/pkg-plist Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Tue Jan 21 17:09:52 2014 (r340624) +++ head/www/lighttpd/Makefile Tue Jan 21 17:18:22 2014 (r340625) @@ -229,6 +229,7 @@ post-install: @${INSTALL_DATA} ${FILESDIR}/${FILE} ${STAGEDIR}${DOCSDIR}/${FILE} . endfor .endif + @${MKDIR} -m 0700 ${STAGEDIR}${LIGHTTPD_LOGROOT} test: build @cd ${WRKSRC}/tests && ${SETENV} ${MAKE_ENV} ${MAKE} \ Modified: head/www/lighttpd/pkg-plist ============================================================================== --- head/www/lighttpd/pkg-plist Tue Jan 21 17:09:52 2014 (r340624) +++ head/www/lighttpd/pkg-plist Tue Jan 21 17:18:22 2014 (r340625) @@ -181,3 +181,4 @@ sbin/lighttpd-angel @cwd / @exec %%MKDIR%% -m 0700 %%LOGROOT%% @exec %%CHOWN%% %%USER%%:%%GROUP%% %%LOGROOT%% +@unexec rmdir %%LOGROOT%% >/dev/null 2>&1 || : From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:13:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F59FDB8; Tue, 21 Jan 2014 18:13:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4B1B718F1; Tue, 21 Jan 2014 18:13:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIDwnu089153; Tue, 21 Jan 2014 18:13:58 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIDvaF089151; Tue, 21 Jan 2014 18:13:57 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401211813.s0LIDvaF089151@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 18:13:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340626 - head/devel/rubygem-rake X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 18:13:58 -0000 Author: swills Date: Tue Jan 21 18:13:57 2014 New Revision: 340626 URL: http://svnweb.freebsd.org/changeset/ports/340626 QAT: https://qat.redports.org/buildarchive/r340626/ Log: - Update to 10.1.1 Modified: head/devel/rubygem-rake/Makefile head/devel/rubygem-rake/distinfo Modified: head/devel/rubygem-rake/Makefile ============================================================================== --- head/devel/rubygem-rake/Makefile Tue Jan 21 17:18:22 2014 (r340625) +++ head/devel/rubygem-rake/Makefile Tue Jan 21 18:13:57 2014 (r340626) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rake -PORTVERSION= 10.0.4 +PORTVERSION= 10.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-rake/distinfo ============================================================================== --- head/devel/rubygem-rake/distinfo Tue Jan 21 17:18:22 2014 (r340625) +++ head/devel/rubygem-rake/distinfo Tue Jan 21 18:13:57 2014 (r340626) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rake-10.0.4.gem) = 4137018e07c9bb79d5ff1085d2dd1aeeba1437de36f281ff737295e835035f0c -SIZE (rubygem/rake-10.0.4.gem) = 120320 +SHA256 (rubygem/rake-10.1.1.gem) = 85e446590871dd3469c80dfe70a0296c20b76a9006af6b728c1f47d0b460412d +SIZE (rubygem/rake-10.1.1.gem) = 123904 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:16:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF7BEEB4; Tue, 21 Jan 2014 18:16:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9B264190B; Tue, 21 Jan 2014 18:16:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIGb7B089601; Tue, 21 Jan 2014 18:16:37 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIGbsY089597; Tue, 21 Jan 2014 18:16:37 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211816.s0LIGbsY089597@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 18:16:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340627 - head/devel/libregf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 18:16:37 -0000 Author: antoine Date: Tue Jan 21 18:16:36 2014 New Revision: 340627 URL: http://svnweb.freebsd.org/changeset/ports/340627 QAT: https://qat.redports.org/buildarchive/r340627/ Log: - Update to alpha-20140118 - Remove DOCS conditionals Modified: head/devel/libregf/Makefile head/devel/libregf/distinfo Modified: head/devel/libregf/Makefile ============================================================================== --- head/devel/libregf/Makefile Tue Jan 21 18:13:57 2014 (r340626) +++ head/devel/libregf/Makefile Tue Jan 21 18:16:36 2014 (r340627) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libregf -DISTVERSION= alpha-20140112 +DISTVERSION= alpha-20140118 CATEGORIES= devel MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSSC1yUDZpb3l0UHM/ \ LOCAL/antoine @@ -23,12 +23,8 @@ PORTDOCS= AUTHORS ChangeLog OPTIONS_DEFINE= DOCS -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} -.endif .include Modified: head/devel/libregf/distinfo ============================================================================== --- head/devel/libregf/distinfo Tue Jan 21 18:13:57 2014 (r340626) +++ head/devel/libregf/distinfo Tue Jan 21 18:16:36 2014 (r340627) @@ -1,2 +1,2 @@ -SHA256 (libregf-alpha-20140112.tar.gz) = a0d58425ac79c5c8d50a0ebe1aa1c93ac9322a413d4a3d46bc171d2e1e5d6555 -SIZE (libregf-alpha-20140112.tar.gz) = 1470885 +SHA256 (libregf-alpha-20140118.tar.gz) = 65d0c750d606d9b6133c35e48bd2fda0dae65d57dd6881acde81873ca193f12b +SIZE (libregf-alpha-20140118.tar.gz) = 1471162 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:17:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5AEA6F9B; Tue, 21 Jan 2014 18:17:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 46B121916; Tue, 21 Jan 2014 18:17:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIHW1K090715; Tue, 21 Jan 2014 18:17:32 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIHV3U090712; Tue, 21 Jan 2014 18:17:31 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211817.s0LIHV3U090712@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 18:17:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340629 - head/graphics/4va X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 18:17:32 -0000 Author: antoine Date: Tue Jan 21 18:17:31 2014 New Revision: 340629 URL: http://svnweb.freebsd.org/changeset/ports/340629 QAT: https://qat.redports.org/buildarchive/r340629/ Log: Stage support Modified: head/graphics/4va/Makefile head/graphics/4va/pkg-plist Modified: head/graphics/4va/Makefile ============================================================================== --- head/graphics/4va/Makefile Tue Jan 21 18:17:23 2014 (r340628) +++ head/graphics/4va/Makefile Tue Jan 21 18:17:31 2014 (r340629) @@ -17,23 +17,20 @@ USE_XORG= x11 MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ CLIBS="-lm -lX11 -L${LOCALBASE}/lib" -MAN1= 4va.1 - 4VA_DATA_FILES= 16cell.4vd 24cell.4vd 5cell.4vd 600cell.4vd ctor.4vd \ ctor2.4vd hcube.4vd hsph.4vd sin.4vd tripris.4vd -NO_STAGE= yes post-extract: @${CHMOD} -R go-x ${WRKSRC}/ do-install: .for file in 4va 4vdmake ctorus cutctorus - ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin .endfor - ${MKDIR} ${PREFIX}/share/4va + @${MKDIR} ${STAGEDIR}${PREFIX}/share/4va .for file in ${4VA_DATA_FILES} - ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/4va + ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/share/4va .endfor - ${INSTALL_MAN} ${WRKSRC}/4va.man ${PREFIX}/man/man1/4va.1 + ${INSTALL_MAN} ${WRKSRC}/4va.man ${STAGEDIR}${PREFIX}/man/man1/4va.1 .include Modified: head/graphics/4va/pkg-plist ============================================================================== --- head/graphics/4va/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) +++ head/graphics/4va/pkg-plist Tue Jan 21 18:17:31 2014 (r340629) @@ -2,6 +2,7 @@ bin/4va bin/4vdmake bin/ctorus bin/cutctorus +man/man1/4va.1.gz share/4va/16cell.4vd share/4va/24cell.4vd share/4va/5cell.4vd From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:17:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E7A9D5; Tue, 21 Jan 2014 18:17:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 06F5E1918; Tue, 21 Jan 2014 18:17:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIHbdZ090763; Tue, 21 Jan 2014 18:17:37 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIHOnm090598; Tue, 21 Jan 2014 18:17:24 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401211817.s0LIHOnm090598@svn.freebsd.org> From: Max Brazhnikov Date: Tue, 21 Jan 2014 18:17:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340628 - in head/graphics: . digikam-kde4 digikam-kde4-doc digikam-kde4-l10n digikam-kde4/files kipi-plugin-acquireimages kipi-plugin-advancedslideshow kipi-plugin-batchprocess kipi-pl... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 18:17:38 -0000 Author: makc Date: Tue Jan 21 18:17:23 2014 New Revision: 340628 URL: http://svnweb.freebsd.org/changeset/ports/340628 QAT: https://qat.redports.org/buildarchive/r340628/ Log: - Update to digiKam and Kipi Plugins ports to 3.5.0 - Add new kipi-plugin port for jalbumexport - Remove useless LATEST_LINK - Bring stage support - Convert to options helpers, new style LIB_DEPENDS - Add patch to fix linking with libpgf [1] PR: ports/184942 [1] Reported by: Mike Clarke Added: head/graphics/digikam-kde4/files/patch-cmake__modules__FindPGF.cmake (contents, props changed) head/graphics/kipi-plugin-jalbumexport/ head/graphics/kipi-plugin-jalbumexport/Makefile (contents, props changed) head/graphics/kipi-plugin-jalbumexport/pkg-plist (contents, props changed) Modified: head/graphics/Makefile head/graphics/digikam-kde4-doc/Makefile head/graphics/digikam-kde4-l10n/Makefile head/graphics/digikam-kde4-l10n/pkg-plist head/graphics/digikam-kde4/Makefile head/graphics/digikam-kde4/Makefile.common head/graphics/digikam-kde4/distinfo head/graphics/digikam-kde4/pkg-plist head/graphics/kipi-plugin-acquireimages/Makefile head/graphics/kipi-plugin-advancedslideshow/Makefile head/graphics/kipi-plugin-advancedslideshow/pkg-plist head/graphics/kipi-plugin-batchprocess/Makefile head/graphics/kipi-plugin-calendar/Makefile head/graphics/kipi-plugin-debianscreenshots/Makefile head/graphics/kipi-plugin-debianscreenshots/pkg-plist head/graphics/kipi-plugin-dngconverter/Makefile head/graphics/kipi-plugin-dngconverter/pkg-plist head/graphics/kipi-plugin-expoblending/Makefile head/graphics/kipi-plugin-expoblending/pkg-plist head/graphics/kipi-plugin-facebook/Makefile head/graphics/kipi-plugin-facebook/pkg-plist head/graphics/kipi-plugin-flashexport/Makefile head/graphics/kipi-plugin-flashexport/pkg-plist head/graphics/kipi-plugin-flickrexport/Makefile head/graphics/kipi-plugin-flickrexport/pkg-plist head/graphics/kipi-plugin-galleryexport/Makefile head/graphics/kipi-plugin-galleryexport/pkg-plist head/graphics/kipi-plugin-gpssync/Makefile head/graphics/kipi-plugin-gpssync/pkg-plist head/graphics/kipi-plugin-htmlexport/Makefile head/graphics/kipi-plugin-imageshackexport/Makefile head/graphics/kipi-plugin-imageshackexport/pkg-plist head/graphics/kipi-plugin-imageviewer/Makefile head/graphics/kipi-plugin-imageviewer/pkg-plist head/graphics/kipi-plugin-imgurexport/Makefile head/graphics/kipi-plugin-imgurexport/pkg-plist head/graphics/kipi-plugin-ipodexport/Makefile head/graphics/kipi-plugin-jpeglossless/Makefile head/graphics/kipi-plugin-kioexport/Makefile head/graphics/kipi-plugin-kmlexport/Makefile head/graphics/kipi-plugin-kopete/Makefile head/graphics/kipi-plugin-mediawiki/Makefile head/graphics/kipi-plugin-mediawiki/pkg-plist head/graphics/kipi-plugin-metadataedit/Makefile head/graphics/kipi-plugin-metadataedit/pkg-plist head/graphics/kipi-plugin-panorama/Makefile head/graphics/kipi-plugin-panorama/pkg-plist head/graphics/kipi-plugin-photolayoutseditor/Makefile head/graphics/kipi-plugin-photolayoutseditor/pkg-plist head/graphics/kipi-plugin-picasawebexport/Makefile head/graphics/kipi-plugin-picasawebexport/pkg-plist head/graphics/kipi-plugin-piwigoexport/Makefile head/graphics/kipi-plugin-piwigoexport/pkg-plist head/graphics/kipi-plugin-printimages/Makefile head/graphics/kipi-plugin-rajceexport/Makefile head/graphics/kipi-plugin-rajceexport/pkg-plist head/graphics/kipi-plugin-rawconverter/Makefile head/graphics/kipi-plugin-removeredeyes/Makefile head/graphics/kipi-plugin-sendimages/Makefile head/graphics/kipi-plugin-shwup/Makefile head/graphics/kipi-plugin-shwup/pkg-plist head/graphics/kipi-plugin-smug/Makefile head/graphics/kipi-plugin-smug/pkg-plist head/graphics/kipi-plugin-timeadjust/Makefile head/graphics/kipi-plugin-timeadjust/pkg-plist head/graphics/kipi-plugin-videoslideshow/Makefile head/graphics/kipi-plugin-vkontakte/Makefile head/graphics/kipi-plugin-yandexfotki/Makefile head/graphics/kipi-plugins-kde4/Makefile head/graphics/libkface/Makefile head/graphics/libkface/pkg-plist (contents, props changed) head/graphics/libkipiplugins/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -440,6 +440,7 @@ SUBDIR += kipi-plugin-imageviewer SUBDIR += kipi-plugin-imgurexport SUBDIR += kipi-plugin-ipodexport + SUBDIR += kipi-plugin-jalbumexport SUBDIR += kipi-plugin-jpeglossless SUBDIR += kipi-plugin-kioexport SUBDIR += kipi-plugin-kmlexport Modified: head/graphics/digikam-kde4-doc/Makefile ============================================================================== --- head/graphics/digikam-kde4-doc/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/digikam-kde4-doc/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,11 +7,9 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= Documentation for digiKam, showFoto, and Kipi-plugins -LATEST_LINK= digikam-kde4-doc CONFLICTS_INSTALL= digikam-2.* kipi-plugins-2.* WRKSRC= ${WRKDIR}/${DISTNAME}/doc -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/digikam-kde4-l10n/Makefile ============================================================================== --- head/graphics/digikam-kde4-l10n/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/digikam-kde4-l10n/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,13 +7,11 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= l10n for digiKam, showFoto, and Kipi-plugins -LATEST_LINK= digikam-kde4-l10n CONFLICTS_INSTALL= digikam-2.* kipi-plugins-2.* libkgeomap-2.* USES= gettext:build WRKSRC= ${WRKDIR}/${DISTNAME}/po -NO_STAGE= yes pre-configure: # avoid conflicts with kde4-l10n ports: ${RM} ${WRKSRC}/*/libkipi.po Modified: head/graphics/digikam-kde4-l10n/pkg-plist ============================================================================== --- head/graphics/digikam-kde4-l10n/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/digikam-kde4-l10n/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -491,12 +491,27 @@ share/locale/hu/LC_MESSAGES/kipiplugin_a share/locale/hu/LC_MESSAGES/kipiplugin_advancedslideshow.mo share/locale/hu/LC_MESSAGES/kipiplugin_batchprocessimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_calendar.mo +share/locale/hu/LC_MESSAGES/kipiplugin_dngconverter.mo +share/locale/hu/LC_MESSAGES/kipiplugin_expoblending.mo share/locale/hu/LC_MESSAGES/kipiplugin_facebook.mo +share/locale/hu/LC_MESSAGES/kipiplugin_flashexport.mo +share/locale/hu/LC_MESSAGES/kipiplugin_flickrexport.mo +share/locale/hu/LC_MESSAGES/kipiplugin_galleryexport.mo +share/locale/hu/LC_MESSAGES/kipiplugin_gpssync.mo share/locale/hu/LC_MESSAGES/kipiplugin_htmlexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_imageviewer.mo share/locale/hu/LC_MESSAGES/kipiplugin_ipodexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_jpeglossless.mo share/locale/hu/LC_MESSAGES/kipiplugin_kioexportimport.mo +share/locale/hu/LC_MESSAGES/kipiplugin_metadataedit.mo +share/locale/hu/LC_MESSAGES/kipiplugin_picasawebexport.mo +share/locale/hu/LC_MESSAGES/kipiplugin_piwigoexport.mo +share/locale/hu/LC_MESSAGES/kipiplugin_printimages.mo +share/locale/hu/LC_MESSAGES/kipiplugin_rawconverter.mo +share/locale/hu/LC_MESSAGES/kipiplugin_removeredeyes.mo +share/locale/hu/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/hu/LC_MESSAGES/kipiplugin_shwup.mo +share/locale/hu/LC_MESSAGES/kipiplugin_smug.mo share/locale/hu/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/hu/LC_MESSAGES/kipiplugins.mo share/locale/hu/LC_MESSAGES/libkgeomap.mo @@ -586,6 +601,7 @@ share/locale/ja/LC_MESSAGES/kipiplugin_s share/locale/ja/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/ja/LC_MESSAGES/kipiplugins.mo share/locale/ja/LC_MESSAGES/libkgeomap.mo +share/locale/kk/LC_MESSAGES/libkgeomap.mo share/locale/km/LC_MESSAGES/digikam.mo share/locale/km/LC_MESSAGES/kipiplugin_acquireimages.mo share/locale/km/LC_MESSAGES/kipiplugin_advancedslideshow.mo @@ -945,6 +961,7 @@ share/locale/ru/LC_MESSAGES/kipiplugin_s share/locale/ru/LC_MESSAGES/kipiplugin_smug.mo share/locale/ru/LC_MESSAGES/kipiplugin_timeadjust.mo share/locale/ru/LC_MESSAGES/kipiplugins.mo +share/locale/ru/LC_MESSAGES/libkgeomap.mo share/locale/se/LC_MESSAGES/digikam.mo share/locale/se/LC_MESSAGES/kipiplugin_jpeglossless.mo share/locale/se/LC_MESSAGES/kipiplugin_timeadjust.mo Modified: head/graphics/digikam-kde4/Makefile ============================================================================== --- head/graphics/digikam-kde4/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/digikam-kde4/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -3,14 +3,12 @@ PORTNAME= digikam PORTVERSION= ${DIGIKAM_VER} -PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= KDE4 digital photo management application -NO_STAGE= yes .include "${.CURDIR}/Makefile.common" BUILD_DEPENDS= ${LOCALBASE}/include/eigen3/Eigen/Eigen:${PORTSDIR}/math/eigen3 @@ -25,57 +23,36 @@ LIB_DEPENDS= libtiff.so:${PORTSDIR}/grap libkgeomap.so:${PORTSDIR}/astro/libkgeomap \ libboost_graph.so:${PORTSDIR}/devel/boost-libs -LATEST_LINK= ${PORTNAME}-kde4 +USES+= pkgconfig shebangfix +USE_KDE4+= libkdcraw libkexiv2 libkipi +USE_QT4+= sql-sqlite3_run +USE_LDCONFIG= yes +CMAKE_ARGS+= -DWITH_Sqlite2=off + +WRKSRC= ${WRKDIR}/${DISTNAME}/core +SHEBANG_FILES= utilities/scripts/digitaglinktree/digitaglinktree OPTIONS_DEFINE= DOCS NLS GPHOTO2 PIMLIBS MYSQL OPTIONS_DEFAULT= GPHOTO2 PIMLIBS NO_OPTIONS_SORT= yes +OPTIONS_SUB= yes # MYSQL -GPHOTO2_DESC= Enable gphoto2 camera support -PIMLIBS_DESC= Enable address book support - -USES+= pkgconfig -USE_KDE4+= libkdcraw libkexiv2 libkipi -USE_QT4+= sql-sqlite3_run -USE_LDCONFIG= yes -CMAKE_ARGS+= -DWITH_Sqlite2=off +DOCS_RUN_DEPENDS= digikam-doc>=${DIGIKAM_VER}:${PORTSDIR}/graphics/digikam-kde4-doc -MAN1= digitaglinktree.1 \ - cleanup_digikamdb.1 +NLS_RUN_DEPENDS= digikam-l10n>=${DIGIKAM_VER}:${PORTSDIR}/graphics/digikam-kde4-l10n -WRKSRC= ${WRKDIR}/${DISTNAME}/core +GPHOTO2_DESC= Enable gphoto2 camera support +GPHOTO2_LIB_DEPENDS= libgphoto2.so:${PORTSDIR}/graphics/libgphoto2 +GPHOTO2_CMAKE_OFF= -DWITH_Gphoto2:BOOL=OFF -.include +PIMLIBS_DESC= Enable address book support +PIMLIBS_USE= KDE4=pimlibs +PIMLIBS_CMAKE_OFF= -DWITH_KdepimLibs:BOOL=OFF -.if ${PORT_OPTIONS:MNLS} -RUN_DEPENDS+= digikam-l10n>=${DIGIKAM_VER}:${PORTSDIR}/graphics/digikam-kde4-l10n -.endif - -.if ${PORT_OPTIONS:MDOCS} -RUN_DEPENDS+= digikam-doc>=${DIGIKAM_VER}:${PORTSDIR}/graphics/digikam-kde4-doc -.endif - -.if ${PORT_OPTIONS:MGPHOTO2} -LIB_DEPENDS+= libgphoto2.so:${PORTSDIR}/graphics/libgphoto2 -.else -CMAKE_ARGS+= -DWITH_Gphoto2:BOOL=OFF -.endif - -.if ${PORT_OPTIONS:MPIMLIBS} -USE_KDE4+= pimlibs -.else -CMAKE_ARGS+= -DWITH_KdepimLibs:BOOL=OFF -.endif - -.if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= server -USE_QT4+= sql-mysql_run -CMAKE_ARGS+= -DMYSQLD_PATH:PATH=${LOCALBASE}/libexec \ - -DMYSQL_TOOLS_PATH:PATH=${LOCALBASE}/bin -PLIST_SUB+= MYSQL="" -.else -CMAKE_ARGS+= -DENABLE_INTERNALMYSQL:BOOL=OFF -PLIST_SUB+= MYSQL="@comment " -.endif +MYSQL_USE= MYSQL=server +MYSQL_USE= QT4=sql-mysql_run +MYSQL_CMAKE_ON= -DMYSQLD_PATH:PATH=${LOCALBASE}/libexec \ + -DMYSQL_TOOLS_PATH:PATH=${LOCALBASE}/bin +MYSQL_CMAKE_OFF= -DENABLE_INTERNALMYSQL:BOOL=OFF .include Modified: head/graphics/digikam-kde4/Makefile.common ============================================================================== --- head/graphics/digikam-kde4/Makefile.common Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/digikam-kde4/Makefile.common Tue Jan 21 18:17:23 2014 (r340628) @@ -12,7 +12,7 @@ # net/libkvkontakte # net/libmediawiki -DIGIKAM_VER= 3.2.0 +DIGIKAM_VER= 3.5.0 MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/digikam @@ -33,6 +33,7 @@ KIPI_PLUGINS_ALL= acquireimages \ imageviewer \ imgurexport \ ipodexport \ + jalbumexport \ jpeglossless \ kioexport \ kmlexport \ @@ -75,13 +76,14 @@ expoblending_DESC= Create pseudo HDR ima facebook_DESC= Import/export images to/from a remote Facebook web service flashexport_DESC= Export images to Flash using SimpleViewer flickrexport_DESC= Export images to a remote Flickr based web service -gpssync_DESC= Geolocalize pictures +gpssync_DESC= Geolocalize images galleryexport_DESC= Export images to a remote Gallery htmlexport_DESC= Export images collections into a static XHTML page imageshackexport_DESC= Export images to ImageShack web service imageviewer_DESC= Preview images using OpenGL imgurexport_DESC= Export images to ImgUr web service -ipodexport_DESC= Export pictures to an Ipod device +ipodexport_DESC= Export images to an Ipod device +jalbumexport_DESC= Export images to jAlbum jpeglossless_DESC= Rotate/flip images without losing quality kioexport_DESC= Export images to remote computer using network protocol kmlexport_DESC= Create KML files to present images with coordinates @@ -130,7 +132,7 @@ USES+= pkgconfig .if ${KIPI_PLUGIN} != "libkipiplugins" EXTRA_PATCHES= ${.CURDIR}/../../graphics/kipi-plugins-kde4/files/extrapatch-CMakeLists.txt -LIB_DEPENDS+= kipiplugins:${PORTSDIR}/graphics/libkipiplugins +LIB_DEPENDS+= libkipiplugins.so:${PORTSDIR}/graphics/libkipiplugins .endif WRKSRC= ${WRKDIR}/${DISTNAME}/extra/kipi-plugins Modified: head/graphics/digikam-kde4/distinfo ============================================================================== --- head/graphics/digikam-kde4/distinfo Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/digikam-kde4/distinfo Tue Jan 21 18:17:23 2014 (r340628) @@ -1,2 +1,2 @@ -SHA256 (digikam-3.2.0.tar.bz2) = bd7204d42c4ef73f22e757ba5daa334073bd02ccc054c31780786d2b1a2a481a -SIZE (digikam-3.2.0.tar.bz2) = 58449068 +SHA256 (digikam-3.5.0.tar.bz2) = 57bd2aa4fdde44333d1362b02b26ebf6c1a70675bf5cb40de5172df02857c42a +SIZE (digikam-3.5.0.tar.bz2) = 65698806 Added: head/graphics/digikam-kde4/files/patch-cmake__modules__FindPGF.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/digikam-kde4/files/patch-cmake__modules__FindPGF.cmake Tue Jan 21 18:17:23 2014 (r340628) @@ -0,0 +1,46 @@ +--- ./cmake/modules/FindPGF.cmake.orig 2013-10-01 06:23:25.000000000 +0000 ++++ ./cmake/modules/FindPGF.cmake 2014-01-20 22:29:10.782525688 +0000 +@@ -4,24 +4,28 @@ + # PGF_FOUND - system has libgf + # PGF_INCLUDE_DIRS - the libpgf include directory + # PGF_LIBRARIES - Link these to use libpgf +-# PGF_CODEC_VERSION_ID - PGF codec version ID. + +-FIND_PACKAGE(PkgConfig) ++find_package(PkgConfig) + +-IF(PKG_CONFIG_FOUND) ++if(PKG_CONFIG_FOUND) ++ pkg_check_modules(PC_PGF QUIET libpgf) ++endif(PKG_CONFIG_FOUND) + +- PKG_CHECK_MODULES(PGF libpgf) ++find_path(PGF_INCLUDE_DIRS NAMES PGFimage.h ++ PATHS ++ ${PC_PGF_INCLUDEDIR} ++ ${PC_PGF_INCLUDE_DIRS} ++) + +- IF(PGF_FOUND) +- MESSAGE(STATUS "PGF_INCLUDE_DIRS = ${PGF_INCLUDE_DIRS}") +- MESSAGE(STATUS "PGF_INCLUDEDIR = ${PGF_INCLUDEDIR}") +- MESSAGE(STATUS "PGF_LIBRARIES = ${PGF_LIBRARIES}") +- MESSAGE(STATUS "PGF_LDFLAGS = ${PGF_LDFLAGS}") +- MESSAGE(STATUS "PGF_CFLAGS = ${PGF_CFLAGS}") +- MESSAGE(STATUS "PGF_VERSION = ${PGF_VERSION}") ++find_library(PGF_LIBRARIES NAMES pgf ++ PATHS ++ ${PC_PGF_LIBDIR} ++ ${PC_PGF_LIBRARY_DIRS} ++) + +- STRING(REPLACE "." "" PGF_CODEC_VERSION_ID "${PGF_VERSION}") +- MESSAGE(STATUS "PGF_CODEC_VERSION_ID = ${PGF_CODEC_VERSION_ID}") +- ENDIF(PGF_FOUND) ++include(FindPackageHandleStandardArgs) ++find_package_handle_standard_args(pgf ++ REQUIRED_VARS PGF_LIBRARIES PGF_INCLUDE_DIRS ++) + +-ENDIF(PKG_CONFIG_FOUND) ++mark_as_advanced(PGF_INCLUDE_DIRS PGF_LIBRARIES) Modified: head/graphics/digikam-kde4/pkg-plist ============================================================================== --- head/graphics/digikam-kde4/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/digikam-kde4/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -19,18 +19,13 @@ lib/libdigikamcore.so.3.0.0 lib/libdigikamdatabase.so lib/libdigikamdatabase.so.3 lib/libdigikamdatabase.so.3.0.0 +man/man1/cleanup_digikamdb.1.gz +man/man1/digitaglinktree.1.gz share/applications/kde4/digikam.desktop share/applications/kde4/showfoto.desktop share/apps/digikam/about/digikam.css share/apps/digikam/about/main.html share/apps/digikam/about/top-left-digikam.png -share/apps/digikam/data/assistant-collection.png -share/apps/digikam/data/assistant-metadata.png -share/apps/digikam/data/assistant-openfile.png -share/apps/digikam/data/assistant-preview.png -share/apps/digikam/data/assistant-rawimport.png -share/apps/digikam/data/assistant-scancollection.png -share/apps/digikam/data/assistant-tooltips.png share/apps/digikam/data/banner-digikam.png share/apps/digikam/data/bluejean-texture.png share/apps/digikam/data/bothhorz.png Modified: head/graphics/kipi-plugin-acquireimages/Makefile ============================================================================== --- head/graphics/kipi-plugin-acquireimages/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-acquireimages/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -10,6 +10,5 @@ COMMENT= ${${KIPI_PLUGIN}_DESC} USE_KDE4= libksane KIPI_PLUGIN= acquireimages -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-advancedslideshow/Makefile ============================================================================== --- head/graphics/kipi-plugin-advancedslideshow/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-advancedslideshow/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -11,6 +11,5 @@ USE_GL= glu USE_XORG= xrandr KIPI_PLUGIN= advancedslideshow -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-advancedslideshow/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-advancedslideshow/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-advancedslideshow/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,4 +1,4 @@ lib/kde4/kipiplugin_advancedslideshow.so share/apps/kipi/kipiplugin_advancedslideshowui.rc -share/icons/hicolor/32x32/actions/slideshow.png +share/icons/hicolor/32x32/apps/kipi-slideshow.png share/kde4/services/kipiplugin_advancedslideshow.desktop Modified: head/graphics/kipi-plugin-batchprocess/Makefile ============================================================================== --- head/graphics/kipi-plugin-batchprocess/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-batchprocess/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= batchprocess -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-calendar/Makefile ============================================================================== --- head/graphics/kipi-plugin-calendar/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-calendar/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -10,6 +10,5 @@ COMMENT= ${${KIPI_PLUGIN}_DESC} USE_KDE4= pimlibs KIPI_PLUGIN= calendar -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-debianscreenshots/Makefile ============================================================================== --- head/graphics/kipi-plugin-debianscreenshots/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-debianscreenshots/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,9 +7,8 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} -LIB_DEPENDS= qjson:${PORTSDIR}/devel/qjson +LIB_DEPENDS= libqjson.so:${PORTSDIR}/devel/qjson KIPI_PLUGIN= debianscreenshots -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-debianscreenshots/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-debianscreenshots/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-debianscreenshots/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,8 +1,8 @@ lib/kde4/kipiplugin_debianscreenshots.so share/apps/kipi/kipiplugin_debianscreenshotsui.rc -share/icons/hicolor/16x16/actions/debianscreenshots.png -share/icons/hicolor/22x22/actions/debianscreenshots.png -share/icons/hicolor/32x32/actions/debianscreenshots.png -share/icons/hicolor/48x48/actions/debianscreenshots.png -share/icons/hicolor/scalable/actions/debianscreenshots.svgz +share/icons/hicolor/16x16/apps/kipi-debianscreenshots.png +share/icons/hicolor/22x22/apps/kipi-debianscreenshots.png +share/icons/hicolor/32x32/apps/kipi-debianscreenshots.png +share/icons/hicolor/48x48/apps/kipi-debianscreenshots.png +share/icons/hicolor/scalable/apps/kipi-debianscreenshots.svgz share/kde4/services/kipiplugin_debianscreenshots.desktop Modified: head/graphics/kipi-plugin-dngconverter/Makefile ============================================================================== --- head/graphics/kipi-plugin-dngconverter/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-dngconverter/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,9 +7,8 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} -LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 +LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 KIPI_PLUGIN= dngconverter -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-dngconverter/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-dngconverter/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-dngconverter/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -3,11 +3,11 @@ bin/dnginfo lib/kde4/kipiplugin_dngconverter.so share/applications/kde4/dngconverter.desktop share/apps/kipi/kipiplugin_dngconverterui.rc -share/icons/hicolor/128x128/apps/dngconverter.png -share/icons/hicolor/16x16/apps/dngconverter.png -share/icons/hicolor/22x22/apps/dngconverter.png -share/icons/hicolor/32x32/apps/dngconverter.png -share/icons/hicolor/48x48/apps/dngconverter.png -share/icons/hicolor/64x64/apps/dngconverter.png -share/icons/hicolor/scalable/apps/dngconverter.svgz +share/icons/hicolor/128x128/apps/kipi-dngconverter.png +share/icons/hicolor/16x16/apps/kipi-dngconverter.png +share/icons/hicolor/22x22/apps/kipi-dngconverter.png +share/icons/hicolor/32x32/apps/kipi-dngconverter.png +share/icons/hicolor/48x48/apps/kipi-dngconverter.png +share/icons/hicolor/64x64/apps/kipi-dngconverter.png +share/icons/hicolor/scalable/apps/kipi-dngconverter.svgz share/kde4/services/kipiplugin_dngconverter.desktop Modified: head/graphics/kipi-plugin-expoblending/Makefile ============================================================================== --- head/graphics/kipi-plugin-expoblending/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-expoblending/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= expoblending -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-expoblending/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-expoblending/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-expoblending/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -6,10 +6,10 @@ share/apps/kipiplugin_expoblending/pics/ share/apps/kipiplugin_expoblending/pics/assistant-preprocessing.png share/apps/kipiplugin_expoblending/pics/assistant-stack.png share/apps/kipiplugin_expoblending/pics/assistant-tripod.png -share/icons/hicolor/16x16/actions/expoblending.png -share/icons/hicolor/22x22/actions/expoblending.png -share/icons/hicolor/32x32/actions/expoblending.png -share/icons/hicolor/48x48/actions/expoblending.png +share/icons/hicolor/16x16/apps/kipi-expoblending.png +share/icons/hicolor/22x22/apps/kipi-expoblending.png +share/icons/hicolor/32x32/apps/kipi-expoblending.png +share/icons/hicolor/48x48/apps/kipi-expoblending.png share/kde4/services/kipiplugin_expoblending.desktop @dirrm share/apps/kipiplugin_expoblending/pics @dirrm share/apps/kipiplugin_expoblending Modified: head/graphics/kipi-plugin-facebook/Makefile ============================================================================== --- head/graphics/kipi-plugin-facebook/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-facebook/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,9 +7,8 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} -LIB_DEPENDS= qjson:${PORTSDIR}/devel/qjson +LIB_DEPENDS= libqjson.so:${PORTSDIR}/devel/qjson KIPI_PLUGIN= facebook -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-facebook/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-facebook/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-facebook/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,8 +1,8 @@ lib/kde4/kipiplugin_facebook.so share/apps/kipi/kipiplugin_facebookui.rc -share/icons/hicolor/16x16/actions/facebook.png -share/icons/hicolor/22x22/actions/facebook.png -share/icons/hicolor/32x32/actions/facebook.png -share/icons/hicolor/48x48/actions/facebook.png -share/icons/hicolor/scalable/actions/facebook.svgz +share/icons/hicolor/16x16/apps/kipi-facebook.png +share/icons/hicolor/22x22/apps/kipi-facebook.png +share/icons/hicolor/32x32/apps/kipi-facebook.png +share/icons/hicolor/48x48/apps/kipi-facebook.png +share/icons/hicolor/scalable/apps/kipi-facebook.svgz share/kde4/services/kipiplugin_facebook.desktop Modified: head/graphics/kipi-plugin-flashexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-flashexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-flashexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= flashexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-flashexport/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-flashexport/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-flashexport/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -5,12 +5,12 @@ share/apps/kipiplugin_flashexport/index2 share/apps/kipiplugin_flashexport/index3.template share/apps/kipiplugin_flashexport/index4.template share/apps/kipiplugin_flashexport/simpleviewer_html/space.png -share/icons/hicolor/128x128/actions/flash.png -share/icons/hicolor/16x16/actions/flash.png -share/icons/hicolor/22x22/actions/flash.png -share/icons/hicolor/32x32/actions/flash.png -share/icons/hicolor/48x48/actions/flash.png -share/icons/hicolor/scalable/actions/flash.svgz +share/icons/hicolor/128x128/apps/kipi-flash.png +share/icons/hicolor/16x16/apps/kipi-flash.png +share/icons/hicolor/22x22/apps/kipi-flash.png +share/icons/hicolor/32x32/apps/kipi-flash.png +share/icons/hicolor/48x48/apps/kipi-flash.png +share/icons/hicolor/scalable/apps/kipi-flash.svgz share/kde4/services/kipiplugin_flashexport.desktop @dirrm share/apps/kipiplugin_flashexport/simpleviewer_html @dirrm share/apps/kipiplugin_flashexport Modified: head/graphics/kipi-plugin-flickrexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-flickrexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-flickrexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= flickrexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-flickrexport/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-flickrexport/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-flickrexport/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,18 +1,18 @@ lib/kde4/kipiplugin_flickrexport.so share/apps/kipi/kipiplugin_flickrexportui.rc -share/icons/hicolor/16x16/actions/flickr.png -share/icons/hicolor/16x16/actions/hq.png -share/icons/hicolor/16x16/actions/zooomr.png -share/icons/hicolor/22x22/actions/flickr.png -share/icons/hicolor/22x22/actions/hq.png -share/icons/hicolor/22x22/actions/zooomr.png -share/icons/hicolor/32x32/actions/flickr.png -share/icons/hicolor/32x32/actions/hq.png -share/icons/hicolor/32x32/actions/zooomr.png -share/icons/hicolor/48x48/actions/flickr.png -share/icons/hicolor/48x48/actions/hq.png -share/icons/hicolor/48x48/actions/zooomr.png -share/icons/hicolor/scalable/actions/flickr.svgz -share/icons/hicolor/scalable/actions/hq.svgz -share/icons/hicolor/scalable/actions/zooomr.svgz +share/icons/hicolor/16x16/apps/kipi-flickr.png +share/icons/hicolor/16x16/apps/kipi-hq.png +share/icons/hicolor/16x16/apps/kipi-zooomr.png +share/icons/hicolor/22x22/apps/kipi-flickr.png +share/icons/hicolor/22x22/apps/kipi-hq.png +share/icons/hicolor/22x22/apps/kipi-zooomr.png +share/icons/hicolor/32x32/apps/kipi-flickr.png +share/icons/hicolor/32x32/apps/kipi-hq.png +share/icons/hicolor/32x32/apps/kipi-zooomr.png +share/icons/hicolor/48x48/apps/kipi-flickr.png +share/icons/hicolor/48x48/apps/kipi-hq.png +share/icons/hicolor/48x48/apps/kipi-zooomr.png +share/icons/hicolor/scalable/apps/kipi-flickr.svgz +share/icons/hicolor/scalable/apps/kipi-hq.svgz +share/icons/hicolor/scalable/apps/kipi-zooomr.svgz share/kde4/services/kipiplugin_flickrexport.desktop Modified: head/graphics/kipi-plugin-galleryexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-galleryexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-galleryexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= galleryexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-galleryexport/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-galleryexport/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-galleryexport/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,11 +1,11 @@ lib/kde4/kipiplugin_galleryexport.so share/apps/kipi/kipiplugin_galleryexportui.rc share/apps/kipiplugin_galleryexport/pics/gallery_logo.png -share/icons/hicolor/16x16/actions/gallery.png -share/icons/hicolor/22x22/actions/gallery.png -share/icons/hicolor/32x32/actions/gallery.png -share/icons/hicolor/48x48/actions/gallery.png -share/icons/hicolor/scalable/actions/gallery.svgz +share/icons/hicolor/16x16/apps/kipi-gallery.png +share/icons/hicolor/22x22/apps/kipi-gallery.png +share/icons/hicolor/32x32/apps/kipi-gallery.png +share/icons/hicolor/48x48/apps/kipi-gallery.png +share/icons/hicolor/scalable/apps/kipi-gallery.svgz share/kde4/services/kipiplugin_galleryexport.desktop @dirrm share/apps/kipiplugin_galleryexport/pics @dirrm share/apps/kipiplugin_galleryexport Modified: head/graphics/kipi-plugin-gpssync/Makefile ============================================================================== --- head/graphics/kipi-plugin-gpssync/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-gpssync/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,9 +7,8 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} -LIB_DEPENDS= kgeomap:${PORTSDIR}/astro/libkgeomap +LIB_DEPENDS= libkgeomap.so:${PORTSDIR}/astro/libkgeomap KIPI_PLUGIN= gpssync -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-gpssync/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-gpssync/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-gpssync/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -3,7 +3,7 @@ share/apps/gpssync/bookmarks-marker.png share/apps/gpssync/searchmarker-normal.png share/apps/gpssync/searchmarker-selected.png share/apps/kipi/kipiplugin_gpssyncui.rc -share/icons/hicolor/16x16/actions/gpsimagetag.png -share/icons/hicolor/32x32/actions/gpsimagetag.png +share/icons/hicolor/16x16/apps/kipi-gpsimagetag.png +share/icons/hicolor/32x32/apps/kipi-gpsimagetag.png share/kde4/services/kipiplugin_gpssync.desktop @dirrm share/apps/gpssync Modified: head/graphics/kipi-plugin-htmlexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-htmlexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-htmlexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= htmlexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-imageshackexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-imageshackexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-imageshackexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= imageshackexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-imageshackexport/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-imageshackexport/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-imageshackexport/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,6 +1,6 @@ lib/kde4/kipiplugin_imageshackexport.so share/apps/kipi/kipiplugin_imageshackexportui.rc -share/icons/hicolor/32x32/actions/imageshack.png -share/icons/hicolor/48x48/actions/imageshack.png -share/icons/hicolor/64x64/actions/imageshack.png +share/icons/hicolor/32x32/apps/kipi-imageshack.png +share/icons/hicolor/48x48/apps/kipi-imageshack.png +share/icons/hicolor/64x64/apps/kipi-imageshack.png share/kde4/services/kipiplugin_imageshackexport.desktop Modified: head/graphics/kipi-plugin-imageviewer/Makefile ============================================================================== --- head/graphics/kipi-plugin-imageviewer/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-imageviewer/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -11,6 +11,5 @@ USE_GL= glu USE_XORG= xrandr KIPI_PLUGIN= imageviewer -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-imageviewer/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-imageviewer/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-imageviewer/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -3,8 +3,8 @@ share/apps/kipi/kipiplugin_imageviewerui share/apps/kipiplugin_imageviewer/pics/hand.png share/apps/kipiplugin_imageviewer/pics/nullImage.png share/apps/kipiplugin_imageviewer/pics/zoom.png -share/icons/hicolor/16x16/actions/ogl.png -share/icons/hicolor/32x32/actions/ogl.png +share/icons/hicolor/16x16/apps/kipi-ogl.png +share/icons/hicolor/32x32/apps/kipi-ogl.png share/kde4/services/kipiplugin_imageviewer.desktop @dirrm share/apps/kipiplugin_imageviewer/pics @dirrm share/apps/kipiplugin_imageviewer Modified: head/graphics/kipi-plugin-imgurexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-imgurexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-imgurexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,9 +7,8 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} -LIB_DEPENDS= qjson:${PORTSDIR}/devel/qjson +LIB_DEPENDS= libqjson.so:${PORTSDIR}/devel/qjson KIPI_PLUGIN= imgurexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-imgurexport/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-imgurexport/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-imgurexport/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,8 +1,8 @@ lib/kde4/kipiplugin_imgurexport.so share/apps/kipi/kipiplugin_imgurexportui.rc -share/icons/hicolor/16x16/actions/imgur.png -share/icons/hicolor/22x22/actions/imgur.png -share/icons/hicolor/32x32/actions/imgur.png -share/icons/hicolor/48x48/actions/imgur.png -share/icons/hicolor/scalable/actions/imgur.svgz +share/icons/hicolor/16x16/apps/kipi-imgur.png +share/icons/hicolor/22x22/apps/kipi-imgur.png +share/icons/hicolor/32x32/apps/kipi-imgur.png +share/icons/hicolor/48x48/apps/kipi-imgur.png +share/icons/hicolor/scalable/apps/kipi-imgur.svgz share/kde4/services/kipiplugin_imgurexport.desktop Modified: head/graphics/kipi-plugin-ipodexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-ipodexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-ipodexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,9 +7,8 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} -LIB_DEPENDS= gpod:${PORTSDIR}/audio/libgpod +LIB_DEPENDS= libgpod.so:${PORTSDIR}/audio/libgpod KIPI_PLUGIN= ipodexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Added: head/graphics/kipi-plugin-jalbumexport/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/kipi-plugin-jalbumexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -0,0 +1,12 @@ +# $FreeBSD$ + +PORTNAME= kipi-plugin-${KIPI_PLUGIN} +PORTVERSION= ${DIGIKAM_VER} +CATEGORIES= graphics kde + +MAINTAINER= kde@FreeBSD.org +COMMENT= ${${KIPI_PLUGIN}_DESC} + +KIPI_PLUGIN= jalbumexport +.include "${.CURDIR}/../digikam-kde4/Makefile.common" +.include Added: head/graphics/kipi-plugin-jalbumexport/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/kipi-plugin-jalbumexport/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -0,0 +1,6 @@ +lib/kde4/kipiplugin_jalbumexport.so +share/apps/kipi/kipiplugin_jalbumexportui.rc +share/icons/hicolor/16x16/apps/kipi-jalbum.png +share/icons/hicolor/24x24/apps/kipi-jalbum.png +share/icons/hicolor/32x32/apps/kipi-jalbum.png +share/kde4/services/kipiplugin_jalbumexport.desktop Modified: head/graphics/kipi-plugin-jpeglossless/Makefile ============================================================================== --- head/graphics/kipi-plugin-jpeglossless/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-jpeglossless/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= jpeglossless -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-kioexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-kioexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-kioexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= kioexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-kmlexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-kmlexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-kmlexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= kmlexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-kopete/Makefile ============================================================================== --- head/graphics/kipi-plugin-kopete/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-kopete/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= kopete -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-mediawiki/Makefile ============================================================================== --- head/graphics/kipi-plugin-mediawiki/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-mediawiki/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,9 +7,8 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} -LIB_DEPENDS= mediawiki:${PORTSDIR}/net/libmediawiki +LIB_DEPENDS= libmediawiki.so:${PORTSDIR}/net/libmediawiki KIPI_PLUGIN= mediawiki -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-mediawiki/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-mediawiki/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-mediawiki/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,8 +1,8 @@ lib/kde4/kipiplugin_wikimedia.so share/apps/kipi/kipiplugin_wikimediaui.rc -share/icons/hicolor/16x16/actions/wikimedia.png -share/icons/hicolor/22x22/actions/wikimedia.png -share/icons/hicolor/32x32/actions/wikimedia.png -share/icons/hicolor/48x48/actions/wikimedia.png -share/icons/hicolor/scalable/actions/wikimedia.svgz +share/icons/hicolor/16x16/apps/kipi-wikimedia.png +share/icons/hicolor/22x22/apps/kipi-wikimedia.png +share/icons/hicolor/32x32/apps/kipi-wikimedia.png +share/icons/hicolor/48x48/apps/kipi-wikimedia.png +share/icons/hicolor/scalable/apps/kipi-wikimedia.svgz share/kde4/services/kipiplugin_wikimedia.desktop Modified: head/graphics/kipi-plugin-metadataedit/Makefile ============================================================================== --- head/graphics/kipi-plugin-metadataedit/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-metadataedit/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= metadataedit -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-metadataedit/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-metadataedit/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-metadataedit/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,4 +1,4 @@ lib/kde4/kipiplugin_metadataedit.so share/apps/kipi/kipiplugin_metadataeditui.rc -share/icons/hicolor/64x64/actions/metadataedit.png +share/icons/hicolor/64x64/apps/kipi-metadataedit.png share/kde4/services/kipiplugin_metadataedit.desktop Modified: head/graphics/kipi-plugin-panorama/Makefile ============================================================================== --- head/graphics/kipi-plugin-panorama/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-panorama/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -10,6 +10,5 @@ COMMENT= ${${KIPI_PLUGIN}_DESC} USES= bison:build KIPI_PLUGIN= panorama -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-panorama/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-panorama/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-panorama/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -6,11 +6,11 @@ share/apps/kipiplugin_panorama/pics/assi share/apps/kipiplugin_panorama/pics/assistant-preprocessing.png share/apps/kipiplugin_panorama/pics/assistant-stack.png share/apps/kipiplugin_panorama/pics/assistant-tripod.png -share/icons/hicolor/16x16/actions/panorama.png -share/icons/hicolor/22x22/actions/panorama.png -share/icons/hicolor/32x32/actions/panorama.png -share/icons/hicolor/48x48/actions/panorama.png -share/icons/hicolor/scalable/actions/panorama.svgz +share/icons/hicolor/16x16/apps/kipi-panorama.png +share/icons/hicolor/22x22/apps/kipi-panorama.png +share/icons/hicolor/32x32/apps/kipi-panorama.png +share/icons/hicolor/48x48/apps/kipi-panorama.png +share/icons/hicolor/scalable/apps/kipi-panorama.svgz share/kde4/services/kipiplugin_panorama.desktop @dirrm share/apps/kipiplugin_panorama/pics @dirrm share/apps/kipiplugin_panorama Modified: head/graphics/kipi-plugin-photolayoutseditor/Makefile ============================================================================== --- head/graphics/kipi-plugin-photolayoutseditor/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-photolayoutseditor/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= photolayoutseditor -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-photolayoutseditor/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-photolayoutseditor/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-photolayoutseditor/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -4,7 +4,7 @@ lib/libPropertyBrowser.a share/applications/kde4/photolayoutseditor.desktop share/apps/kipi/kipiplugin_photolayoutseditorui.rc share/apps/photolayoutseditor/photolayoutseditorui.rc -share/config.kcfg/PLEConfigSkeleton.kcfgc +share/config.kcfg/photolayoutseditor.kcfg share/icons/hicolor/128x128/apps/photolayoutseditor.png share/icons/hicolor/16x16/apps/photolayoutseditor.png share/icons/hicolor/22x22/apps/photolayoutseditor.png Modified: head/graphics/kipi-plugin-picasawebexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-picasawebexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-picasawebexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= picasawebexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-picasawebexport/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-picasawebexport/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-picasawebexport/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,8 +1,8 @@ lib/kde4/kipiplugin_picasawebexport.so share/apps/kipi/kipiplugin_picasawebexportui.rc -share/icons/hicolor/16x16/actions/picasa.png -share/icons/hicolor/22x22/actions/picasa.png -share/icons/hicolor/32x32/actions/picasa.png -share/icons/hicolor/48x48/actions/picasa.png -share/icons/hicolor/scalable/actions/picasa.svgz +share/icons/hicolor/16x16/apps/kipi-picasa.png +share/icons/hicolor/22x22/apps/kipi-picasa.png +share/icons/hicolor/32x32/apps/kipi-picasa.png +share/icons/hicolor/48x48/apps/kipi-picasa.png +share/icons/hicolor/scalable/apps/kipi-picasa.svgz share/kde4/services/kipiplugin_picasawebexport.desktop Modified: head/graphics/kipi-plugin-piwigoexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-piwigoexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-piwigoexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= piwigoexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-piwigoexport/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-piwigoexport/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-piwigoexport/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,11 +1,11 @@ lib/kde4/kipiplugin_piwigoexport.so share/apps/kipi/kipiplugin_piwigoexportui.rc share/apps/kipiplugin_piwigoexport/pics/piwigo_logo.png -share/icons/hicolor/16x16/actions/piwigo.png -share/icons/hicolor/22x22/actions/piwigo.png -share/icons/hicolor/32x32/actions/piwigo.png -share/icons/hicolor/48x48/actions/piwigo.png -share/icons/hicolor/scalable/actions/piwigo.svgz +share/icons/hicolor/16x16/apps/kipi-piwigo.png +share/icons/hicolor/22x22/apps/kipi-piwigo.png +share/icons/hicolor/32x32/apps/kipi-piwigo.png +share/icons/hicolor/48x48/apps/kipi-piwigo.png +share/icons/hicolor/scalable/apps/kipi-piwigo.svgz share/kde4/services/kipiplugin_piwigoexport.desktop @dirrm share/apps/kipiplugin_piwigoexport/pics @dirrm share/apps/kipiplugin_piwigoexport Modified: head/graphics/kipi-plugin-printimages/Makefile ============================================================================== --- head/graphics/kipi-plugin-printimages/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-printimages/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= printimages -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-rajceexport/Makefile ============================================================================== --- head/graphics/kipi-plugin-rajceexport/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-rajceexport/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= rajceexport -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-rajceexport/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-rajceexport/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-rajceexport/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,7 +1,7 @@ lib/kde4/kipiplugin_rajceexport.so share/apps/kipi/kipiplugin_rajceexportui.rc -share/icons/hicolor/16x16/actions/rajce.png -share/icons/hicolor/32x32/actions/rajce.png -share/icons/hicolor/48x48/actions/rajce.png -share/icons/hicolor/64x64/actions/rajce.png +share/icons/hicolor/16x16/apps/kipi-rajce.png +share/icons/hicolor/32x32/apps/kipi-rajce.png +share/icons/hicolor/48x48/apps/kipi-rajce.png +share/icons/hicolor/64x64/apps/kipi-rajce.png share/kde4/services/kipiplugin_rajceexport.desktop Modified: head/graphics/kipi-plugin-rawconverter/Makefile ============================================================================== --- head/graphics/kipi-plugin-rawconverter/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-rawconverter/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= rawconverter -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-removeredeyes/Makefile ============================================================================== --- head/graphics/kipi-plugin-removeredeyes/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-removeredeyes/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -2,7 +2,6 @@ PORTNAME= kipi-plugin-${KIPI_PLUGIN} PORTVERSION= ${DIGIKAM_VER} -PORTREVISION= 1 CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org @@ -11,6 +10,5 @@ COMMENT= ${${KIPI_PLUGIN}_DESC} LIB_DEPENDS= libopencv_legacy.so:${PORTSDIR}/graphics/opencv KIPI_PLUGIN= removeredeyes -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-sendimages/Makefile ============================================================================== --- head/graphics/kipi-plugin-sendimages/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-sendimages/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= sendimages -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-shwup/Makefile ============================================================================== --- head/graphics/kipi-plugin-shwup/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-shwup/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -7,9 +7,8 @@ CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} -LIB_DEPENDS= qca:${PORTSDIR}/devel/qca +LIB_DEPENDS= libqca.so:${PORTSDIR}/devel/qca KIPI_PLUGIN= shwup -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" .include Modified: head/graphics/kipi-plugin-shwup/pkg-plist ============================================================================== --- head/graphics/kipi-plugin-shwup/pkg-plist Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-shwup/pkg-plist Tue Jan 21 18:17:23 2014 (r340628) @@ -1,7 +1,7 @@ lib/kde4/kipiplugin_shwup.so share/apps/kipi/kipiplugin_shwupui.rc -share/icons/hicolor/16x16/actions/shwup.png -share/icons/hicolor/22x22/actions/shwup.png -share/icons/hicolor/32x32/actions/shwup.png -share/icons/hicolor/48x48/actions/shwup.png +share/icons/hicolor/16x16/apps/kipi-shwup.png +share/icons/hicolor/22x22/apps/kipi-shwup.png +share/icons/hicolor/32x32/apps/kipi-shwup.png +share/icons/hicolor/48x48/apps/kipi-shwup.png share/kde4/services/kipiplugin_shwup.desktop Modified: head/graphics/kipi-plugin-smug/Makefile ============================================================================== --- head/graphics/kipi-plugin-smug/Makefile Tue Jan 21 18:16:36 2014 (r340627) +++ head/graphics/kipi-plugin-smug/Makefile Tue Jan 21 18:17:23 2014 (r340628) @@ -8,6 +8,5 @@ MAINTAINER= kde@FreeBSD.org COMMENT= ${${KIPI_PLUGIN}_DESC} KIPI_PLUGIN= smug -NO_STAGE= yes .include "${.CURDIR}/../digikam-kde4/Makefile.common" *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:19:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2064121A; Tue, 21 Jan 2014 18:19:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0C3AB1938; Tue, 21 Jan 2014 18:19:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIJbOZ091034; Tue, 21 Jan 2014 18:19:37 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIJb03091033; Tue, 21 Jan 2014 18:19:37 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211819.s0LIJb03091033@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 18:19:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340630 - head/graphics/a2png X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 18:19:38 -0000 Author: antoine Date: Tue Jan 21 18:19:37 2014 New Revision: 340630 URL: http://svnweb.freebsd.org/changeset/ports/340630 QAT: https://qat.redports.org/buildarchive/r340630/ Log: Stage support Modified: head/graphics/a2png/Makefile Modified: head/graphics/a2png/Makefile ============================================================================== --- head/graphics/a2png/Makefile Tue Jan 21 18:17:31 2014 (r340629) +++ head/graphics/a2png/Makefile Tue Jan 21 18:19:37 2014 (r340630) @@ -10,20 +10,18 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Converts plain ASCII text into PNG bitmap images -LIB_DEPENDS= gd:${PORTSDIR}/graphics/gd +LIB_DEPENDS= libgd.so:${PORTSDIR}/graphics/gd USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-gd CFLAGS+= -DDEFAULT_FONTPATH='\"${FONTROOTDIR}/TTF:${FONTROOTDIR}/Type1:${FONTROOTDIR}\"' -MAN1= ${PORTNAME}.1 -PLIST_FILES= bin/${PORTNAME} +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz FONTROOTDIR?= ${LOCALBASE}/lib/X11/fonts -NO_STAGE= yes do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin/ - @${INSTALL_MAN} ${WRKSRC}/man/${MAN1} ${MAN1PREFIX}/man/man1/ + ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:31:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A815D560; Tue, 21 Jan 2014 18:31:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 79DAB1A78; Tue, 21 Jan 2014 18:31:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIVWgR097678; Tue, 21 Jan 2014 18:31:32 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIVWwD097676; Tue, 21 Jan 2014 18:31:32 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211831.s0LIVWwD097676@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 18:31:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340632 - head/graphics/autotrace X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 18:31:32 -0000 Author: antoine Date: Tue Jan 21 18:31:31 2014 New Revision: 340632 URL: http://svnweb.freebsd.org/changeset/ports/340632 QAT: https://qat.redports.org/buildarchive/r340632/ Log: Stage support Modified: head/graphics/autotrace/Makefile head/graphics/autotrace/pkg-plist Modified: head/graphics/autotrace/Makefile ============================================================================== --- head/graphics/autotrace/Makefile Tue Jan 21 18:22:31 2014 (r340631) +++ head/graphics/autotrace/Makefile Tue Jan 21 18:31:31 2014 (r340632) @@ -13,39 +13,36 @@ COMMENT= Convert bitmap to vector graphi LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png OPTIONS_DEFINE= IMAGEMAGICK MING PSTOEDIT OPTIONS_DEFAULT= IMAGEMAGICK PSTOEDIT MING_DESC= Enable swf interface PSTOEDIT_DESC= Convert postscript to other formats -USES= pathfix pkgconfig +USES= pathfix pkgconfig USE_AUTOTOOLS= libtool USE_LDCONFIG= yes CPPFLAGS+= $$(libpng-config --I_opts) ${PTHREAD_CFLAGS} LDFLAGS+= $$(libpng-config --L_opts) ${PTHREAD_LIBS} -MAN1= autotrace.1 - -NO_STAGE= yes .include .if ${PORT_OPTIONS:MIMAGEMAGICK} -LIB_DEPENDS+= MagickWand:${PORTSDIR}/graphics/ImageMagick +LIB_DEPENDS+= libMagickWand.so:${PORTSDIR}/graphics/ImageMagick .else CONFIGURE_ARGS+= --without-magick .endif .if ${PORT_OPTIONS:MMING} -LIB_DEPENDS+= ming:${PORTSDIR}/graphics/ming +LIB_DEPENDS+= libming.so:${PORTSDIR}/graphics/ming CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/ming .else CONFIGURE_ENV+= ac_cv_header_ming_h=no .endif .if ${PORT_OPTIONS:MPSTOEDIT} -LIB_DEPENDS+= pstoedit:${PORTSDIR}/graphics/pstoedit +LIB_DEPENDS+= libpstoedit.so:${PORTSDIR}/graphics/pstoedit .else CONFIGURE_ARGS+= --without-pstoedit .endif Modified: head/graphics/autotrace/pkg-plist ============================================================================== --- head/graphics/autotrace/pkg-plist Tue Jan 21 18:22:31 2014 (r340631) +++ head/graphics/autotrace/pkg-plist Tue Jan 21 18:31:31 2014 (r340632) @@ -10,5 +10,6 @@ lib/libautotrace.la lib/libautotrace.so lib/libautotrace.so.3 libdata/pkgconfig/autotrace.pc +man/man1/autotrace.1.gz share/aclocal/autotrace.m4 @dirrm include/autotrace From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:35:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 31301744; Tue, 21 Jan 2014 18:35:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D4CE1AAF; Tue, 21 Jan 2014 18:35:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIZpuD098376; Tue, 21 Jan 2014 18:35:51 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIZp3i098374; Tue, 21 Jan 2014 18:35:51 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211835.s0LIZp3i098374@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 18:35:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340633 - head/graphics/aview X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 18:35:52 -0000 Author: antoine Date: Tue Jan 21 18:35:51 2014 New Revision: 340633 URL: http://svnweb.freebsd.org/changeset/ports/340633 QAT: https://qat.redports.org/buildarchive/r340633/ Log: Stage support Modified: head/graphics/aview/Makefile head/graphics/aview/pkg-plist Modified: head/graphics/aview/Makefile ============================================================================== --- head/graphics/aview/Makefile Tue Jan 21 18:31:31 2014 (r340632) +++ head/graphics/aview/Makefile Tue Jan 21 18:35:51 2014 (r340633) @@ -13,16 +13,13 @@ COMMENT= Graphics viewer for viewing net RUN_DEPENDS= anytopnm:${PORTSDIR}/graphics/netpbm \ convert:${PORTSDIR}/graphics/ImageMagick -LIB_DEPENDS= aa.1:${PORTSDIR}/graphics/aalib +LIB_DEPENDS= libaa.so:${PORTSDIR}/graphics/aalib WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R} GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-x=no -MAN1= asciiview.1 aview.1 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|/bash|/sh|g' ${WRKSRC}/asciiview @${FIND} ${WRKSRC} -name '*.[ch]' | ${XARGS} ${REINPLACE_CMD} -e \ Modified: head/graphics/aview/pkg-plist ============================================================================== --- head/graphics/aview/pkg-plist Tue Jan 21 18:31:31 2014 (r340632) +++ head/graphics/aview/pkg-plist Tue Jan 21 18:35:51 2014 (r340633) @@ -1,3 +1,5 @@ bin/aview bin/asciiview bin/aaflip +man/man1/asciiview.1.gz +man/man1/aview.1.gz From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:38:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7DCF48D6; Tue, 21 Jan 2014 18:38:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6A3001AC8; Tue, 21 Jan 2014 18:38:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIc3ZT098745; Tue, 21 Jan 2014 18:38:03 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIc3at098744; Tue, 21 Jan 2014 18:38:03 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211838.s0LIc3at098744@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 18:38:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340634 - head/graphics/backfract X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 18:38:03 -0000 Author: antoine Date: Tue Jan 21 18:38:02 2014 New Revision: 340634 URL: http://svnweb.freebsd.org/changeset/ports/340634 QAT: https://qat.redports.org/buildarchive/r340634/ Log: Stage support Modified: head/graphics/backfract/Makefile Modified: head/graphics/backfract/Makefile ============================================================================== --- head/graphics/backfract/Makefile Tue Jan 21 18:35:51 2014 (r340633) +++ head/graphics/backfract/Makefile Tue Jan 21 18:38:02 2014 (r340634) @@ -19,7 +19,6 @@ MAKE_JOBS_UNSAFE= yes PLIST_FILES= bin/backfract -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ "/'-O3'/s|^|#| ; \ @@ -27,6 +26,6 @@ post-patch: s|linux/soundcard.h|sys/soundcard.h|" ${WRKSRC}/configure do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/backfract ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/backfract ${STAGEDIR}${PREFIX}/bin .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:40:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B62F49D6; Tue, 21 Jan 2014 18:40:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A2C1C1ADA; Tue, 21 Jan 2014 18:40:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIeNDM099192; Tue, 21 Jan 2014 18:40:23 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIeNmg099191; Tue, 21 Jan 2014 18:40:23 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211840.s0LIeNmg099191@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 18:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340635 - head/graphics/bbrb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 18:40:23 -0000 Author: antoine Date: Tue Jan 21 18:40:23 2014 New Revision: 340635 URL: http://svnweb.freebsd.org/changeset/ports/340635 QAT: https://qat.redports.org/buildarchive/r340635/ Log: Stage support Modified: head/graphics/bbrb/Makefile Modified: head/graphics/bbrb/Makefile ============================================================================== --- head/graphics/bbrb/Makefile Tue Jan 21 18:38:02 2014 (r340634) +++ head/graphics/bbrb/Makefile Tue Jan 21 18:40:23 2014 (r340635) @@ -8,7 +8,7 @@ CATEGORIES= graphics MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org -COMMENT= A graphical background manager for the Blackbox window manager +COMMENT= Graphical background manager for the Blackbox window manager RUN_DEPENDS= xv:${PORTSDIR}/graphics/xv \ blackbox:${PORTSDIR}/x11-wm/blackbox @@ -16,5 +16,4 @@ RUN_DEPENDS= xv:${PORTSDIR}/graphics/xv USE_GNOME= imlib GNU_CONFIGURE= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 18:43:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3A20D9C; Tue, 21 Jan 2014 18:43:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B38851B61; Tue, 21 Jan 2014 18:43:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LIhv5V002478; Tue, 21 Jan 2014 18:43:57 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LIhu4N002472; Tue, 21 Jan 2014 18:43:56 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401211843.s0LIhu4N002472@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Tue, 21 Jan 2014 18:43:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340636 - in head/devel: . jsoncpp jsoncpp/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.17 Precedence: list List-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, 21 Jan 2014 18:43:57 -0000 Author: danilo Date: Tue Jan 21 18:43:56 2014 New Revision: 340636 URL: http://svnweb.freebsd.org/changeset/ports/340636 QAT: https://qat.redports.org/buildarchive/r340636/ Log: - Add new port devel/jsoncpp jsoncpp is an implementation of a JSON reader and writer in C++. PR: ports/185592 Submitted by: Johan Str?m Added: head/devel/jsoncpp/ head/devel/jsoncpp/Makefile (contents, props changed) head/devel/jsoncpp/distinfo (contents, props changed) head/devel/jsoncpp/files/ head/devel/jsoncpp/files/patch-SConstruct (contents, props changed) head/devel/jsoncpp/pkg-descr (contents, props changed) head/devel/jsoncpp/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jan 21 18:40:23 2014 (r340635) +++ head/devel/Makefile Tue Jan 21 18:43:56 2014 (r340636) @@ -888,6 +888,7 @@ SUBDIR += jsmin SUBDIR += json-c SUBDIR += json-glib + SUBDIR += jsoncpp SUBDIR += jtag SUBDIR += judy SUBDIR += jwasm Added: head/devel/jsoncpp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/jsoncpp/Makefile Tue Jan 21 18:43:56 2014 (r340636) @@ -0,0 +1,34 @@ +# Created by: Johan Str??m +# $FreeBSD$ + +PORTNAME= jsoncpp +DISTVERSION= 0.6.0-rc2 +CATEGORIES= devel +MASTER_SITES= SF/${PORTNAME}/jsoncpp/${DISTVERSION} +DISTNAME= jsoncpp-src-${DISTVERSION} + +MAINTAINER= johan@stromnet.se +COMMENT= JSON reader and writer library for C++ + +LICENSE= MIT + +USES= dos2unix scons +USE_LDCONFIG= yes + +MAKE_ARGS= platform=linux-gcc + +post-patch: + @${REINPLACE_CMD} -e 's|g++|${CXX}|' ${WRKSRC}/SConstruct + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/include/jsoncpp + (cd ${WRKSRC}/include/ && ${COPYTREE_SHARE} json/ ${STAGEDIR}${PREFIX}/include/jsoncpp/) + (cd ${WRKSRC}/libs/linux-gcc-FreeBSD/ && \ + ${INSTALL_LIB} libjson_linux-gcc-FreeBSD_libmt.a \ + ${STAGEDIR}${PREFIX}/lib/libjsoncpp.a) + (cd ${WRKSRC}/libs/linux-gcc-FreeBSD/ && \ + ${INSTALL_LIB} libjson_linux-gcc-FreeBSD_libmt.so \ + ${STAGEDIR}${PREFIX}/lib/libjsoncpp.so.0) + (cd ${STAGEDIR}${PREFIX}/lib/ && ${LN} -s libjsoncpp.so.0 libjsoncpp.so ) + +.include Added: head/devel/jsoncpp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/jsoncpp/distinfo Tue Jan 21 18:43:56 2014 (r340636) @@ -0,0 +1,2 @@ +SHA256 (jsoncpp-src-0.6.0-rc2.tar.gz) = d4d193d163f520b08b9155cba978615892ca1359d77e3fb261fce2f86d09b283 +SIZE (jsoncpp-src-0.6.0-rc2.tar.gz) = 117661 Added: head/devel/jsoncpp/files/patch-SConstruct ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/jsoncpp/files/patch-SConstruct Tue Jan 21 18:43:56 2014 (r340636) @@ -0,0 +1,11 @@ +--- ./SConstruct.orig 2014-01-21 02:29:19.000000000 -0200 ++++ ./SConstruct 2014-01-21 02:29:28.000000000 -0200 +@@ -26,7 +26,7 @@ + if platform == 'linux-gcc': + CXX = 'g++' # not quite right, but env is not yet available. + import commands +- version = commands.getoutput('%s -dumpversion' %CXX) ++ version = 'FreeBSD' + platform = 'linux-gcc-%s' %version + print "Using platform '%s'" %platform + LD_LIBRARY_PATH = os.environ.get('LD_LIBRARY_PATH', '') Added: head/devel/jsoncpp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/jsoncpp/pkg-descr Tue Jan 21 18:43:56 2014 (r340636) @@ -0,0 +1,6 @@ +jsoncpp is an implementation of a JSON reader and writer in C++. +JSON (JavaScript Object Notation) is a lightweight data-interchange format. +It is easy for humans to read and write. +It is easy for machines to parse and generate. + +WWW: http://jsoncpp.sourceforge.net/ Added: head/devel/jsoncpp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/jsoncpp/pkg-plist Tue Jan 21 18:43:56 2014 (r340636) @@ -0,0 +1,13 @@ +lib/libjsoncpp.so.0 +lib/libjsoncpp.so +lib/libjsoncpp.a +include/jsoncpp/json/writer.h +include/jsoncpp/json/json.h +include/jsoncpp/json/forwards.h +include/jsoncpp/json/config.h +include/jsoncpp/json/value.h +include/jsoncpp/json/reader.h +include/jsoncpp/json/features.h +include/jsoncpp/json/autolink.h +@dirrm include/jsoncpp/json +@dirrm include/jsoncpp From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:12:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 91B18125; Tue, 21 Jan 2014 19:12:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6394A1F43; Tue, 21 Jan 2014 19:12:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJCfxv014651; Tue, 21 Jan 2014 19:12:41 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJCf4l014650; Tue, 21 Jan 2014 19:12:41 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211912.s0LJCf4l014650@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 19:12:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340637 - head/graphics/bmeps X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:12:41 -0000 Author: antoine Date: Tue Jan 21 19:12:40 2014 New Revision: 340637 URL: http://svnweb.freebsd.org/changeset/ports/340637 QAT: https://qat.redports.org/buildarchive/r340637/ Log: - Stage support - Get rid of infozip dependency Modified: head/graphics/bmeps/Makefile Modified: head/graphics/bmeps/Makefile ============================================================================== --- head/graphics/bmeps/Makefile Tue Jan 21 18:43:56 2014 (r340636) +++ head/graphics/bmeps/Makefile Tue Jan 21 19:12:40 2014 (r340637) @@ -6,19 +6,19 @@ PORTVERSION= 2.2.26 CATEGORIES= graphics perl5 MASTER_SITES= SF/dktools/dktools/dktools-${PORTVERSION} DISTNAME= dktools-${PORTVERSION} +EXTRACT_SUFX= .zip MAINTAINER= ports@FreeBSD.org COMMENT= Convert bitmap images (PNG/JPEG/NetPBM) to EPS -LICENSE= BSD +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/bsdlic.txt -LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png \ - tiff:${PORTSDIR}/graphics/tiff +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png \ + libtiff.so:${PORTSDIR}/graphics/tiff USES= perl5 -USE_ZIP= yes GNU_CONFIGURE= yes CONFIGURE_ENV= ac_cv_header_sys_termios_h=no CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/dktools\ @@ -31,8 +31,8 @@ ALL_TARGET= stc ${PORTNAME} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN1= bmeps.1 PLIST_FILES= bin/bmeps \ + man/man1/bmeps.1.gz \ %%DATADIR%%/bmeps.str \ %%DATADIR%%/bmeps.stt.bz2 \ %%DATADIR%%/bmeps.txt \ @@ -41,19 +41,18 @@ PLIST_FILES= bin/bmeps \ PLIST_DIRS= %%DATADIR%%/de \ %%DATADIR%% -NO_STAGE= yes post-build: @(cd ${WRKSRC} && ./stc --/log/stderr/level=error \ --log/stdout/level=none --/log/file/keep=none \ bmeps.str share/dktools) do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} bmeps ${PREFIX}/bin) - (cd ${WRKSRC}/man/man1 && ${INSTALL_MAN} bmeps.1 ${MANPREFIX}/man/man1) - @${MKDIR} ${DATADIR} - (cd ${WRKSRC} && ${INSTALL_DATA} bmeps.str ${DATADIR}) - (cd ${WRKSRC}/share/dktools/en && ${INSTALL_DATA} bmeps.* ${DATADIR}) - @${MKDIR} ${DATADIR}/de - (cd ${WRKSRC}/share/dktools/de && ${INSTALL_DATA} bmeps.* ${DATADIR}/de) + ${INSTALL_PROGRAM} ${WRKSRC}/bmeps ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/man1/bmeps.1 ${STAGEDIR}${MANPREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/bmeps.str ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/share/dktools/en/bmeps.* ${STAGEDIR}${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR}/de + ${INSTALL_DATA} ${WRKSRC}/share/dktools/de/bmeps.* ${STAGEDIR}${DATADIR}/de .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:13:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 17AFE204; Tue, 21 Jan 2014 19:13:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 03DFE1F4A; Tue, 21 Jan 2014 19:13:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJD26u014786; Tue, 21 Jan 2014 19:13:02 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJD2WJ014784; Tue, 21 Jan 2014 19:13:02 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401211913.s0LJD2WJ014784@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 19:13:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340638 - head/misc/rubygem-vpim X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:13:03 -0000 Author: swills Date: Tue Jan 21 19:13:02 2014 New Revision: 340638 URL: http://svnweb.freebsd.org/changeset/ports/340638 QAT: https://qat.redports.org/buildarchive/r340638/ Log: - Update to 13.11.11 Modified: head/misc/rubygem-vpim/Makefile head/misc/rubygem-vpim/distinfo (contents, props changed) Modified: head/misc/rubygem-vpim/Makefile ============================================================================== --- head/misc/rubygem-vpim/Makefile Tue Jan 21 19:12:40 2014 (r340637) +++ head/misc/rubygem-vpim/Makefile Tue Jan 21 19:13:02 2014 (r340638) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= vpim -PORTVERSION= 0.695 +PORTVERSION= 13.11.11 CATEGORIES= misc rubygems MASTER_SITES= RG Modified: head/misc/rubygem-vpim/distinfo ============================================================================== --- head/misc/rubygem-vpim/distinfo Tue Jan 21 19:12:40 2014 (r340637) +++ head/misc/rubygem-vpim/distinfo Tue Jan 21 19:13:02 2014 (r340638) @@ -1,2 +1,2 @@ -SHA256 (rubygem/vpim-0.695.gem) = afe5e929fc9d1e373d59b73868e2b781e34a8b789dd62ececdafe77a2beedc38 -SIZE (rubygem/vpim-0.695.gem) = 103936 +SHA256 (rubygem/vpim-13.11.11.gem) = 482067c9bb20c516933764d295a6026ffacbe6098ae88301a768d364cc135efd +SIZE (rubygem/vpim-13.11.11.gem) = 100864 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:20:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9968936B; Tue, 21 Jan 2014 19:20:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 857D31F8C; Tue, 21 Jan 2014 19:20:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJKE25015749; Tue, 21 Jan 2014 19:20:14 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJKEDl015748; Tue, 21 Jan 2014 19:20:14 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211920.s0LJKEDl015748@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 19:20:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340639 - head/graphics/corona X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:20:14 -0000 Author: antoine Date: Tue Jan 21 19:20:13 2014 New Revision: 340639 URL: http://svnweb.freebsd.org/changeset/ports/340639 QAT: https://qat.redports.org/buildarchive/r340639/ Log: Stage support Modified: head/graphics/corona/Makefile Modified: head/graphics/corona/Makefile ============================================================================== --- head/graphics/corona/Makefile Tue Jan 21 19:13:02 2014 (r340638) +++ head/graphics/corona/Makefile Tue Jan 21 19:20:13 2014 (r340639) @@ -8,10 +8,10 @@ CATEGORIES= graphics MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org -COMMENT= A graphics library that supports most image formats +COMMENT= Graphics library that supports most image formats -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ - jpeg.11:${PORTSDIR}/graphics/jpeg +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ + libjpeg.so.11:${PORTSDIR}/graphics/jpeg USE_AUTOTOOLS= libtool USE_GNOME= lthack @@ -21,7 +21,6 @@ USE_LDCONFIG= yes CONFIGURE_ENV= LIBS="${LIBS} -L${LOCALBASE}/lib" CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ 's|-Wall||' \ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:26:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C358614; Tue, 21 Jan 2014 19:26:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 17890105E; Tue, 21 Jan 2014 19:26:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJQBNI019002; Tue, 21 Jan 2014 19:26:11 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJQB8h019001; Tue, 21 Jan 2014 19:26:11 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211926.s0LJQB8h019001@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 19:26:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340640 - head/graphics/crw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:26:12 -0000 Author: antoine Date: Tue Jan 21 19:26:11 2014 New Revision: 340640 URL: http://svnweb.freebsd.org/changeset/ports/340640 QAT: https://qat.redports.org/buildarchive/r340640/ Log: Stage support Modified: head/graphics/crw/Makefile Modified: head/graphics/crw/Makefile ============================================================================== --- head/graphics/crw/Makefile Tue Jan 21 19:20:13 2014 (r340639) +++ head/graphics/crw/Makefile Tue Jan 21 19:26:11 2014 (r340640) @@ -8,17 +8,16 @@ CATEGORIES= graphics MASTER_SITES= http://apollo.backplane.com/FreeBSDPorts/ MAINTAINER= ports@FreeBSD.org -COMMENT= A utility to process Canon camera RAW (.crw) files +COMMENT= Utility to process Canon camera RAW (.crw) files -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png -MAN1= crw.1 -MANCOMPRESSED= yes -PLIST_FILES= bin/crw +USES= uidfix + +PLIST_FILES= bin/crw man/man1/crw.1.gz #CFLAGS+= -I${LOCALBASE}/include/libpng15 -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's,/usr/local/lib,${LOCALBASE}/lib,' \ -e 's,CFLAGS=,CFLAGS+=,' \ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:30:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 598D3738; Tue, 21 Jan 2014 19:30:05 +0000 (UTC) Received: from mail-qc0-x232.google.com (mail-qc0-x232.google.com [IPv6:2607:f8b0:400d:c01::232]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5241108D; Tue, 21 Jan 2014 19:30:04 +0000 (UTC) Received: by mail-qc0-f178.google.com with SMTP id m20so7589604qcx.9 for ; Tue, 21 Jan 2014 11:30:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=jccC99ipXP/tzGEXUr/R5JC/9SbFqxSJSjCyHWfNh9M=; b=XjadvYR6ySxhTTbV3WQWR9cXV+QpRPxOEnMaYQTySx3ePgCBfDQ6IO6auX4lZVciGl HLoi3yncempnZSaS8g70R9FtgoTBQa+3dGpM3m5yvJPaB4duXrRk6yOOScOU4BqpGxwT OFr07/NSRKHMyz35FJkQFL1MpeonFxEi6GMeugwhTXZPAQwVzg6CTcm3WUfx8fSXjJQr Duabk419tJoJ4Vn19g2aXfGDseCidYpp1TfGLvETAakhhqGGVah+t7bdNJDLgwOSZNj0 H0YEnYy+tBI7LS/ehSQCle+o+qoODXpQXtDNUAbIMfr0+SVDnVMdbWHNe42T88xY4Cmu NFHA== X-Received: by 10.224.75.138 with SMTP id y10mr40218587qaj.72.1390332603898; Tue, 21 Jan 2014 11:30:03 -0800 (PST) Received: from [192.168.137.178] ([201.55.128.238]) by mx.google.com with ESMTPSA id m9sm8615789qaz.8.2014.01.21.11.30.02 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 21 Jan 2014 11:30:03 -0800 (PST) Sender: =?UTF-8?Q?Danilo_Eg=C3=AAa_Gondolfo?= Message-ID: <52DECB65.9040105@freebsd.org> Date: Tue, 21 Jan 2014 17:32:53 -0200 From: "Danilo E. Gondolfo" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Antoine Brodin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340639 - head/graphics/corona References: <201401211920.s0LJKEDl015748@svn.freebsd.org> In-Reply-To: <201401211920.s0LJKEDl015748@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:30:05 -0000 On 01/21/14 17:20, Antoine Brodin wrote: > Author: antoine > Date: Tue Jan 21 19:20:13 2014 > New Revision: 340639 > URL: http://svnweb.freebsd.org/changeset/ports/340639 > QAT: https://qat.redports.org/buildarchive/r340639/ > > Log: > Stage support > > Modified: > head/graphics/corona/Makefile > > Modified: head/graphics/corona/Makefile > ============================================================================== > --- head/graphics/corona/Makefile Tue Jan 21 19:13:02 2014 (r340638) > +++ head/graphics/corona/Makefile Tue Jan 21 19:20:13 2014 (r340639) > @@ -8,10 +8,10 @@ CATEGORIES= graphics > MASTER_SITES= SF > > MAINTAINER= ports@FreeBSD.org > -COMMENT= A graphics library that supports most image formats > +COMMENT= Graphics library that supports most image formats > > -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ > - jpeg.11:${PORTSDIR}/graphics/jpeg > +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ > + libjpeg.so.11:${PORTSDIR}/graphics/jpeg libjpeg.so.11 <- Is this correct? > > USE_AUTOTOOLS= libtool > USE_GNOME= lthack > @@ -21,7 +21,6 @@ USE_LDCONFIG= yes > CONFIGURE_ENV= LIBS="${LIBS} -L${LOCALBASE}/lib" > CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 > > -NO_STAGE= yes > post-patch: > @${REINPLACE_CMD} -e \ > 's|-Wall||' \ > From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:40:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 68CC39B6; Tue, 21 Jan 2014 19:40:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 54CA21151; Tue, 21 Jan 2014 19:40:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJeEqL023241; Tue, 21 Jan 2014 19:40:14 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJeE8S023227; Tue, 21 Jan 2014 19:40:14 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211940.s0LJeE8S023227@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 19:40:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340641 - head/graphics/curator X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:40:14 -0000 Author: antoine Date: Tue Jan 21 19:40:13 2014 New Revision: 340641 URL: http://svnweb.freebsd.org/changeset/ports/340641 QAT: https://qat.redports.org/buildarchive/r340641/ Log: Stage support Modified: head/graphics/curator/Makefile Modified: head/graphics/curator/Makefile ============================================================================== --- head/graphics/curator/Makefile Tue Jan 21 19:26:11 2014 (r340640) +++ head/graphics/curator/Makefile Tue Jan 21 19:40:13 2014 (r340641) @@ -12,23 +12,22 @@ COMMENT= Static Image Gallery Generator USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_AUTOPLIST= yes OPTIONS_DEFINE= PIL PIL_DESC= Use Python Imaging Library instead of ImageMagick -PLIST_FILES= bin/curator -MAN1= curator.1 +PLIST_FILES= man/man1/curator.1.gz -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPIL} -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging .else RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick .endif post-install: - ${INSTALL_MAN} ${FILESDIR}/curator.1 ${PREFIX}/man/man1/curator.1 + ${INSTALL_MAN} ${FILESDIR}/curator.1 ${STAGEDIR}${PREFIX}/man/man1/curator.1 .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:47:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81543C02; Tue, 21 Jan 2014 19:47:46 +0000 (UTC) Received: from mail-we0-x22e.google.com (mail-we0-x22e.google.com [IPv6:2a00:1450:400c:c03::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9FC6311F4; Tue, 21 Jan 2014 19:47:45 +0000 (UTC) Received: by mail-we0-f174.google.com with SMTP id x55so8596121wes.33 for ; Tue, 21 Jan 2014 11:47:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=qTGVfTrJEXK3KmyjJVOIQJm+EtBGRd0J+Rc9y3jh5TU=; b=PO8wFEjbJUcZnEqtaxdHYu5k35tbX0yghZ5rSjZ6cRBQztHCOrZmYqIeWQxpC4HyDM Zd1rsRDHUJeZHRomsuLODAKRMyq5+DBuRScSrGRqUeA6LnkRD9yQSpP1yv3oxUOBgQ1h z8l0nxkGcUYxZP4i8ogUpnQ0MS1NTHIjM6wjdNDLc2h1VlobgVFCWE3Px0NMF4b6sQhr TqGn7xgT5sCfIT/M/tbp4ae2RyzDl+cZ9O72N0vKJwr4uF3fdrzlANtfqYoOW1x+8l7T kWe/La4WLT7ux+DLzv3EJVC/MOsk6Dg8A4jIX9bqG3Z+1e/MFVhuurN/SoX2wmxRfbNY tqzg== MIME-Version: 1.0 X-Received: by 10.194.110.135 with SMTP id ia7mr8811340wjb.5.1390333664126; Tue, 21 Jan 2014 11:47:44 -0800 (PST) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.194.58.74 with HTTP; Tue, 21 Jan 2014 11:47:44 -0800 (PST) In-Reply-To: <52DECB65.9040105@freebsd.org> References: <201401211920.s0LJKEDl015748@svn.freebsd.org> <52DECB65.9040105@freebsd.org> Date: Tue, 21 Jan 2014 20:47:44 +0100 X-Google-Sender-Auth: jG1MFqXBI2q4cta1G2Z2iGNU1U0 Message-ID: Subject: Re: svn commit: r340639 - head/graphics/corona From: Antoine Brodin To: "Danilo E. Gondolfo" 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.17 Precedence: list List-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, 21 Jan 2014 19:47:46 -0000 On Tue, Jan 21, 2014 at 8:32 PM, Danilo E. Gondolfo wrote: > On 01/21/14 17:20, Antoine Brodin wrote: >> Author: antoine >> Date: Tue Jan 21 19:20:13 2014 >> New Revision: 340639 >> URL: http://svnweb.freebsd.org/changeset/ports/340639 >> QAT: https://qat.redports.org/buildarchive/r340639/ >> >> Log: >> Stage support >> >> Modified: >> head/graphics/corona/Makefile >> >> Modified: head/graphics/corona/Makefile >> ============================================================================== >> --- head/graphics/corona/Makefile Tue Jan 21 19:13:02 2014 (r340638) >> +++ head/graphics/corona/Makefile Tue Jan 21 19:20:13 2014 (r340639) >> @@ -8,10 +8,10 @@ CATEGORIES= graphics >> MASTER_SITES= SF >> >> MAINTAINER= ports@FreeBSD.org >> -COMMENT= A graphics library that supports most image formats >> +COMMENT= Graphics library that supports most image formats >> >> -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \ >> - jpeg.11:${PORTSDIR}/graphics/jpeg >> +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \ >> + libjpeg.so.11:${PORTSDIR}/graphics/jpeg > > libjpeg.so.11 <- Is this correct? Hi, I didn't check the svn log to see if there was a reason for setting a version. Cheers, Antoine From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:48:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6AF6CCEB; Tue, 21 Jan 2014 19:48:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 56F8111FF; Tue, 21 Jan 2014 19:48:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJmmFE026729; Tue, 21 Jan 2014 19:48:48 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJmmvZ026728; Tue, 21 Jan 2014 19:48:48 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211948.s0LJmmvZ026728@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 19:48:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340642 - head/graphics/diacanvas2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:48:48 -0000 Author: antoine Date: Tue Jan 21 19:48:47 2014 New Revision: 340642 URL: http://svnweb.freebsd.org/changeset/ports/340642 QAT: https://qat.redports.org/buildarchive/r340642/ Log: Stage support Modified: head/graphics/diacanvas2/Makefile Modified: head/graphics/diacanvas2/Makefile ============================================================================== --- head/graphics/diacanvas2/Makefile Tue Jan 21 19:40:13 2014 (r340641) +++ head/graphics/diacanvas2/Makefile Tue Jan 21 19:48:47 2014 (r340642) @@ -26,7 +26,6 @@ OPTIONS_DEFINE= PRINT OPTIONS_DEFAULT=PRINT PRINT_DESC= GNOME print support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPRINT} From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:51:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2473F7B; Tue, 21 Jan 2014 19:51:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8EA3A1276; Tue, 21 Jan 2014 19:51:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJp8vI029372; Tue, 21 Jan 2014 19:51:08 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJp8mh029371; Tue, 21 Jan 2014 19:51:08 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211951.s0LJp8mh029371@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 19:51:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340643 - head/graphics/duhdraw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:51:08 -0000 Author: antoine Date: Tue Jan 21 19:51:08 2014 New Revision: 340643 URL: http://svnweb.freebsd.org/changeset/ports/340643 QAT: https://qat.redports.org/buildarchive/r340643/ Log: Stage support Modified: head/graphics/duhdraw/Makefile Modified: head/graphics/duhdraw/Makefile ============================================================================== --- head/graphics/duhdraw/Makefile Tue Jan 21 19:48:47 2014 (r340642) +++ head/graphics/duhdraw/Makefile Tue Jan 21 19:51:08 2014 (r340643) @@ -7,19 +7,18 @@ CATEGORIES= graphics MASTER_SITES= http://www.cs.helsinki.fi/u/penberg/duhdraw/ MAINTAINER= ports@FreeBSD.org -COMMENT= An ANSI graphic drawing program +COMMENT= ANSI graphic drawing program MAKE_ARGS= CC="${CC} ${CFLAGS}" PLIST_FILES= bin/ansi bin/ansitoc bin/duhdraw -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e '//d' ${WRKSRC}/duhdraw.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/ansi ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/ansitoc ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/duhdraw ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/ansi ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/ansitoc ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/duhdraw ${STAGEDIR}${PREFIX}/bin .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:53:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B8A6102; Tue, 21 Jan 2014 19:53:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1815F1289; Tue, 21 Jan 2014 19:53:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJrQx5029924; Tue, 21 Jan 2014 19:53:26 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJrQMw029923; Tue, 21 Jan 2014 19:53:26 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211953.s0LJrQMw029923@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 19:53:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340644 - head/graphics/gcolor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:53:27 -0000 Author: antoine Date: Tue Jan 21 19:53:26 2014 New Revision: 340644 URL: http://svnweb.freebsd.org/changeset/ports/340644 QAT: https://qat.redports.org/buildarchive/r340644/ Log: Stage support Modified: head/graphics/gcolor/Makefile Modified: head/graphics/gcolor/Makefile ============================================================================== --- head/graphics/gcolor/Makefile Tue Jan 21 19:51:08 2014 (r340643) +++ head/graphics/gcolor/Makefile Tue Jan 21 19:53:26 2014 (r340644) @@ -16,7 +16,6 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" CPPFLAGS+= -I${LOCALBASE}/include -NO_STAGE= yes pre-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:56:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46FE249A; Tue, 21 Jan 2014 19:56:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 33EAD12C1; Tue, 21 Jan 2014 19:56:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJub0t030403; Tue, 21 Jan 2014 19:56:37 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJubCZ030402; Tue, 21 Jan 2014 19:56:37 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401211956.s0LJubCZ030402@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 19:56:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340645 - head/graphics/gifmerge X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 19:56:37 -0000 Author: antoine Date: Tue Jan 21 19:56:36 2014 New Revision: 340645 URL: http://svnweb.freebsd.org/changeset/ports/340645 QAT: https://qat.redports.org/buildarchive/r340645/ Log: Stage support Modified: head/graphics/gifmerge/Makefile Modified: head/graphics/gifmerge/Makefile ============================================================================== --- head/graphics/gifmerge/Makefile Tue Jan 21 19:53:26 2014 (r340644) +++ head/graphics/gifmerge/Makefile Tue Jan 21 19:56:36 2014 (r340645) @@ -8,16 +8,15 @@ MASTER_SITES= http://the-labs.com/GIFMer DISTNAME= ${PORTNAME} MAINTAINER= ports@FreeBSD.org -COMMENT= A tool for making a GIF Animation +COMMENT= Tool for making a GIF Animation NO_WRKSUBDIR= yes PLIST_FILES= bin/gifmerge -NO_STAGE= yes do-build: cd ${WRKSRC} && ${CC} ${CFLAGS} -o gifmerge gifmerge.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/gifmerge ${PREFIX}/bin/gifmerge + ${INSTALL_PROGRAM} ${WRKSRC}/gifmerge ${STAGEDIR}${PREFIX}/bin/gifmerge .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 19:56:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76EF255E; Tue, 21 Jan 2014 19:56:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5984612CC; Tue, 21 Jan 2014 19:56:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LJujYR030488; Tue, 21 Jan 2014 19:56:45 GMT (envelope-from mm@svn.freebsd.org) Received: (from mm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LJujnX030487; Tue, 21 Jan 2014 19:56:45 GMT (envelope-from mm@svn.freebsd.org) Message-Id: <201401211956.s0LJujnX030487@svn.freebsd.org> From: Martin Matuska Date: Tue, 21 Jan 2014 19:56:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340646 - head/www/lighttpd/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.17 Precedence: list List-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, 21 Jan 2014 19:56:45 -0000 Author: mm Date: Tue Jan 21 19:56:44 2014 New Revision: 340646 URL: http://svnweb.freebsd.org/changeset/ports/340646 QAT: https://qat.redports.org/buildarchive/r340646/ Log: Fix build with extra-patch-mysqlauth Modified: head/www/lighttpd/files/extra-patch-mysqlauth Modified: head/www/lighttpd/files/extra-patch-mysqlauth ============================================================================== --- head/www/lighttpd/files/extra-patch-mysqlauth Tue Jan 21 19:56:36 2014 (r340645) +++ head/www/lighttpd/files/extra-patch-mysqlauth Tue Jan 21 19:56:44 2014 (r340646) @@ -232,28 +232,28 @@ diff -Naur new/lighttpd-1.4.23/src/http_ typedef struct { diff -Naur new/lighttpd-1.4.23/src/Makefile.am old/lighttpd-1.4.23/src/Makefile.am ---- src/Makefile.am 2009-06-16 17:45:42.000000000 +0400 -+++ src/Makefile.am 2009-10-08 10:26:56.000000000 +0400 -@@ -242,7 +242,7 @@ +--- src/Makefile.am.orig 2013-12-03 17:17:52.000000000 +0100 ++++ src/Makefile.am 2014-01-21 20:48:24.645439249 +0100 +@@ -243,7 +243,7 @@ lib_LTLIBRARIES += mod_auth.la - mod_auth_la_SOURCES = mod_auth.c http_auth_digest.c http_auth.c - mod_auth_la_LDFLAGS = -module -export-dynamic -avoid-version -no-undefined --mod_auth_la_LIBADD = $(CRYPT_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd) -+mod_auth_la_LIBADD = $(MYSQL_LIBS) $(CRYPT_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd) + mod_auth_la_SOURCES = mod_auth.c http_auth.c + mod_auth_la_LDFLAGS = -module -export-dynamic -avoid-version +-mod_auth_la_LIBADD = $(CRYPT_LIB) $(SSL_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd) ++mod_auth_la_LIBADD = $(MYSQL_LIBS) $(CRYPT_LIB) $(SSL_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd) lib_LTLIBRARIES += mod_rewrite.la mod_rewrite_la_SOURCES = mod_rewrite.c diff -Naur lighttpd-1.4.23/src/Makefile.in old/lighttpd-1.4.23/src/Makefile.in ---- src/Makefile.in 2009-06-19 23:19:22.000000000 +0400 -+++ src/Makefile.in 2009-10-08 10:26:25.000000000 +0400 -@@ -706,7 +706,7 @@ +--- src/Makefile.in.orig 2014-01-20 13:09:11.000000000 +0100 ++++ src/Makefile.in 2014-01-21 20:48:37.115438375 +0100 +@@ -852,7 +852,7 @@ mod_compress_la_LIBADD = $(Z_LIB) $(BZ_LIB) $(common_libadd) - mod_auth_la_SOURCES = mod_auth.c http_auth_digest.c http_auth.c - mod_auth_la_LDFLAGS = -module -export-dynamic -avoid-version -no-undefined --mod_auth_la_LIBADD = $(CRYPT_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd) -+mod_auth_la_LIBADD = $(MYSQL_LIBS) $(CRYPT_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd) + mod_auth_la_SOURCES = mod_auth.c http_auth.c + mod_auth_la_LDFLAGS = -module -export-dynamic -avoid-version +-mod_auth_la_LIBADD = $(CRYPT_LIB) $(SSL_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd) ++mod_auth_la_LIBADD = $(MYSQL_LIBS) $(CRYPT_LIB) $(SSL_LIB) $(LDAP_LIB) $(LBER_LIB) $(common_libadd) mod_rewrite_la_SOURCES = mod_rewrite.c - mod_rewrite_la_LDFLAGS = -module -export-dynamic -avoid-version -no-undefined + mod_rewrite_la_LDFLAGS = -module -export-dynamic -avoid-version mod_rewrite_la_LIBADD = $(PCRE_LIB) $(common_libadd) diff -Naur new/lighttpd-1.4.23/src/mod_auth.c old/lighttpd-1.4.23/src/mod_auth.c --- src/mod_auth.c 2009-04-11 16:08:19.000000000 +0400 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:02:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E137714; Tue, 21 Jan 2014 20:02:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1F7BB136B; Tue, 21 Jan 2014 20:02:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LK2J4g034087; Tue, 21 Jan 2014 20:02:19 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LK2JJL034077; Tue, 21 Jan 2014 20:02:19 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401212002.s0LK2JJL034077@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Tue, 21 Jan 2014 20:02:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340647 - in head/www: . py-django-auth-ldap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:02:20 -0000 Author: rm Date: Tue Jan 21 20:02:18 2014 New Revision: 340647 URL: http://svnweb.freebsd.org/changeset/ports/340647 QAT: https://qat.redports.org/buildarchive/r340647/ Log: This is a Django authentication backend that authenticates against an LDAP service. Configuration can be as simple as a single distinguished name template, but there are many rich configuration options for working with users, groups, and permissions. WWW: http://pythonhosted.org/django-auth-ldap/ PR: 185959 Submitted by: Alexander Kriventsov Added: head/www/py-django-auth-ldap/ head/www/py-django-auth-ldap/Makefile (contents, props changed) head/www/py-django-auth-ldap/distinfo (contents, props changed) head/www/py-django-auth-ldap/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jan 21 19:56:44 2014 (r340646) +++ head/www/Makefile Tue Jan 21 20:02:18 2014 (r340647) @@ -1496,6 +1496,7 @@ SUBDIR += py-django-app-plugins SUBDIR += py-django-appconf SUBDIR += py-django-appmedia + SUBDIR += py-django-auth-ldap SUBDIR += py-django-caching-app-plugins SUBDIR += py-django-classy-tags SUBDIR += py-django-cms Added: head/www/py-django-auth-ldap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-auth-ldap/Makefile Tue Jan 21 20:02:18 2014 (r340647) @@ -0,0 +1,22 @@ +# Created by: Alexander Kriventsov +# $FreeBSD$ + +PORTNAME= django-auth-ldap +PORTVERSION= 1.1.7 +CATEGORIES= www security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= avk@vl.ru +COMMENT= LDAP integration for django.contrib.auth + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=1.3.1:${PORTSDIR}/www/py-django \ + ${PYTHON_PKGNAMEPREFIX}ldap2>=2.0:${PORTSDIR}/net/py-ldap2 + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/www/py-django-auth-ldap/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-auth-ldap/distinfo Tue Jan 21 20:02:18 2014 (r340647) @@ -0,0 +1,2 @@ +SHA256 (django-auth-ldap-1.1.7.tar.gz) = d4817ce758be27cbc687d83958d0109cdb2b7dbc696da661bd66c9975cb14b61 +SIZE (django-auth-ldap-1.1.7.tar.gz) = 127186 Added: head/www/py-django-auth-ldap/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-django-auth-ldap/pkg-descr Tue Jan 21 20:02:18 2014 (r340647) @@ -0,0 +1,6 @@ +This is a Django authentication backend that authenticates against an LDAP +service. Configuration can be as simple as a single distinguished name template, +but there are many rich configuration options for working with users, groups, +and permissions. + +WWW: http://pythonhosted.org/django-auth-ldap/ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:06:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8849F85B; Tue, 21 Jan 2014 20:06:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7482913A1; Tue, 21 Jan 2014 20:06:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LK6YHQ034776; Tue, 21 Jan 2014 20:06:34 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LK6Y3C034775; Tue, 21 Jan 2014 20:06:34 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401212006.s0LK6Y3C034775@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 20:06:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340648 - head/graphics/giftool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:06:34 -0000 Author: antoine Date: Tue Jan 21 20:06:33 2014 New Revision: 340648 URL: http://svnweb.freebsd.org/changeset/ports/340648 QAT: https://qat.redports.org/buildarchive/r340648/ Log: - Stage support - Use OPTIONS helpers Modified: head/graphics/giftool/Makefile Modified: head/graphics/giftool/Makefile ============================================================================== --- head/graphics/giftool/Makefile Tue Jan 21 20:02:18 2014 (r340647) +++ head/graphics/giftool/Makefile Tue Jan 21 20:06:33 2014 (r340648) @@ -9,7 +9,7 @@ DISTNAME= ${PORTNAME} EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org -COMMENT= A tool for GIF89a transparent option and interlace mode +COMMENT= Tool for GIF89a transparent option and interlace mode NO_CDROM= Shareware @@ -25,24 +25,12 @@ MALLOCSIZE_DESC= Improve malloc size PLIST_FILES= bin/${PORTNAME} PORTDOCS= COPYRIGHT README -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MRETVALUE} -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-aa -.endif -.if ${PORT_OPTIONS:MMALLOCSIZE} -EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-ab -.endif +RETVALUE_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-aa +MALLOCSIZE_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-ab do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/giftool ${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}) -.endif - -post-install: - @${CAT} ${PKGMESSAGE} + ${INSTALL_PROGRAM} ${WRKSRC}/giftool ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:15:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 717329BA; Tue, 21 Jan 2014 20:15:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D2D0149E; Tue, 21 Jan 2014 20:15:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKFOrT038786; Tue, 21 Jan 2014 20:15:24 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKFOlj038785; Tue, 21 Jan 2014 20:15:24 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401212015.s0LKFOlj038785@svn.freebsd.org> From: Raphael Kubo da Costa Date: Tue, 21 Jan 2014 20:15:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340649 - head/graphics/libraw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:15:24 -0000 Author: rakuco Date: Tue Jan 21 20:15:23 2014 New Revision: 340649 URL: http://svnweb.freebsd.org/changeset/ports/340649 QAT: https://qat.redports.org/buildarchive/r340649/ Log: Properly set license when using the demosaic packs. According to the port's README.demosaic-packs, when the demosaic packs are used the software must be licensed under either the GPLv2 or the GPLv3, depending on the packs being used (if both packs are used, the GPLv3 should take precedence). This patch changes the way LICENSE is set when those options are set: the new licenses are exclusive with the others. PR: ports/185119 Submitted by: rakuco@ Approved by: maintainer timeout (29 days) Modified: head/graphics/libraw/Makefile Modified: head/graphics/libraw/Makefile ============================================================================== --- head/graphics/libraw/Makefile Tue Jan 21 20:06:33 2014 (r340648) +++ head/graphics/libraw/Makefile Tue Jan 21 20:15:23 2014 (r340649) @@ -54,7 +54,8 @@ CONFIGURE_ARGS+=--disable-lcms .endif .if ${PORT_OPTIONS:MDEMOSAIC_PACK_GPL2} -LICENSE+= GPLv2 +LICENSE= GPLv2 +LICENSE_COMB= single DISTFILES+= LibRaw-demosaic-pack-GPL2-${PORTVERSION}.tar.gz CONFIGURE_ARGS+=--enable-demosaic-pack-gpl2=../LibRaw-demosaic-pack-GPL2-${PORTVERSION} .else @@ -62,7 +63,8 @@ CONFIGURE_ARGS+=--disable-demosaic-pack- .endif .if ${PORT_OPTIONS:MDEMOSAIC_PACK_GPL3} -LICENSE+= GPLv3 +LICENSE= GPLv3 +LICENSE_COMB= single DISTFILES+= LibRaw-demosaic-pack-GPL3-${PORTVERSION}.tar.gz CONFIGURE_ARGS+=--enable-demosaic-pack-gpl3=../LibRaw-demosaic-pack-GPL3-${PORTVERSION} .else From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:16:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03068AAC; Tue, 21 Jan 2014 20:16:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E30BD14AD; Tue, 21 Jan 2014 20:16:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKGTcN038976; Tue, 21 Jan 2014 20:16:29 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKGT7o038975; Tue, 21 Jan 2014 20:16:29 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401212016.s0LKGT7o038975@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 20:16:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340650 - head/graphics/gimp-focusblur-plugin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:16:30 -0000 Author: antoine Date: Tue Jan 21 20:16:29 2014 New Revision: 340650 URL: http://svnweb.freebsd.org/changeset/ports/340650 QAT: https://qat.redports.org/buildarchive/r340650/ Log: Stage support Modified: head/graphics/gimp-focusblur-plugin/Makefile Modified: head/graphics/gimp-focusblur-plugin/Makefile ============================================================================== --- head/graphics/gimp-focusblur-plugin/Makefile Tue Jan 21 20:15:23 2014 (r340649) +++ head/graphics/gimp-focusblur-plugin/Makefile Tue Jan 21 20:16:29 2014 (r340650) @@ -12,12 +12,12 @@ PKGNAMESUFFIX= -plugin MAINTAINER= ports@FreeBSD.org COMMENT= Gimp realistic focus blur plugin -LIB_DEPENDS= fftw3:${PORTSDIR}/math/fftw3 \ - gimp-2.0:${PORTSDIR}/graphics/gimp-app - LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +LIB_DEPENDS= libfftw3.so:${PORTSDIR}/math/fftw3 \ + libgimp-2.0.so:${PORTSDIR}/graphics/gimp-app + USES= gmake pkgconfig GNU_CONFIGURE= yes USE_BZIP2= yes @@ -29,16 +29,11 @@ PLIST_SUB= PLUGIN_DIR=${PLUGIN_DIR} CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes -.include +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.endif +NLS_USES= gettext +NLS_CONFIGURE_OFF= --disable-nls post-patch: @${REINPLACE_CMD} -e 's|^bindir = .*|bindir = ${PREFIX}/${PLUGIN_DIR}|g' ${WRKSRC}/src/Makefile.in From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:17:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2208CD51; Tue, 21 Jan 2014 20:17:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0EA2F14C1; Tue, 21 Jan 2014 20:17:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKHelq039214; Tue, 21 Jan 2014 20:17:40 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKHeCO039213; Tue, 21 Jan 2014 20:17:40 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401212017.s0LKHeCO039213@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 20:17:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340651 - head/mail/p5-Mail-SpamAssassin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:17:41 -0000 Author: mat Date: Tue Jan 21 20:17:40 2014 New Revision: 340651 URL: http://svnweb.freebsd.org/changeset/ports/340651 QAT: https://qat.redports.org/buildarchive/r340651/ Log: Put that target back to what it was, unbreak japanese/p5-Mail-SpamAssassin. Sponsored by: Absolight Modified: head/mail/p5-Mail-SpamAssassin/Makefile Modified: head/mail/p5-Mail-SpamAssassin/Makefile ============================================================================== --- head/mail/p5-Mail-SpamAssassin/Makefile Tue Jan 21 20:16:29 2014 (r340650) +++ head/mail/p5-Mail-SpamAssassin/Makefile Tue Jan 21 20:17:40 2014 (r340651) @@ -195,7 +195,7 @@ post-build: @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} spamc/libsslspamc.so) .endif -pre-install: +pre-su-install: @${MKDIR} ${STAGEDIR}${DATADIR} @${INSTALL_PROGRAM} ${WRKSRC}/spamc/libspamc.so ${STAGEDIR}${PREFIX}/lib/libspamc.so.0 @${LN} -sf libspamc.so.0 ${STAGEDIR}${PREFIX}/lib/libspamc.so From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:23:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C4ADECF; Tue, 21 Jan 2014 20:23:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EC3BE1592; Tue, 21 Jan 2014 20:23:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKNcnJ042582; Tue, 21 Jan 2014 20:23:38 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKNc8Z042581; Tue, 21 Jan 2014 20:23:38 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401212023.s0LKNc8Z042581@svn.freebsd.org> From: Raphael Kubo da Costa Date: Tue, 21 Jan 2014 20:23:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340652 - head/devel/subversion X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:23:39 -0000 Author: rakuco Date: Tue Jan 21 20:23:38 2014 New Revision: 340652 URL: http://svnweb.freebsd.org/changeset/ports/340652 QAT: https://qat.redports.org/buildarchive/r340652/ Log: Do not tie the KDE_KWALLET option to NLS. Ever since Subversion's r1466445 https://svn.apache.org/viewvc?view=revision&revision=1466445, which has been present for the whole 1.8 series, KWallet detection does not depend on NLS support anymore. PR: ports/185493 Submitted by: rakuco@ Approved by: maintainer timeout (16 days) Modified: head/devel/subversion/Makefile.common Modified: head/devel/subversion/Makefile.common ============================================================================== --- head/devel/subversion/Makefile.common Tue Jan 21 20:17:40 2014 (r340651) +++ head/devel/subversion/Makefile.common Tue Jan 21 20:23:38 2014 (r340652) @@ -74,10 +74,6 @@ STATIC_CONFIGURE_ON= --enable-all-stati IGNORE= to build mod_dontdothat OPTION mod_dav_svn is required .endif -.if ${PORT_OPTIONS:MKDE_KWALLET} && !${PORT_OPTIONS:MNLS} -IGNORE= KWallet requires OPTION NLS set to ON -.endif - APR_CONFIG= ${LOCALBASE}/bin/apr-1-config APU_CONFIG= ${LOCALBASE}/bin/apu-1-config From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:24:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A15012E; Tue, 21 Jan 2014 20:24:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 26957159E; Tue, 21 Jan 2014 20:24:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKOZbm042787; Tue, 21 Jan 2014 20:24:35 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKOYw3042785; Tue, 21 Jan 2014 20:24:34 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401212024.s0LKOYw3042785@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 20:24:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340653 - head/graphics/gltt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:24:35 -0000 Author: antoine Date: Tue Jan 21 20:24:34 2014 New Revision: 340653 URL: http://svnweb.freebsd.org/changeset/ports/340653 QAT: https://qat.redports.org/buildarchive/r340653/ Log: Stage support Modified: head/graphics/gltt/Makefile Modified: head/graphics/gltt/Makefile ============================================================================== --- head/graphics/gltt/Makefile Tue Jan 21 20:23:38 2014 (r340652) +++ head/graphics/gltt/Makefile Tue Jan 21 20:24:34 2014 (r340653) @@ -10,11 +10,11 @@ MASTER_SITES= http://gltt.sourceforge.ne MAINTAINER= ports@FreeBSD.org COMMENT= TrueType fonts rendering using OpenGL -LIB_DEPENDS= ttf:${PORTSDIR}/print/freetype +LIB_DEPENDS= libttf.so:${PORTSDIR}/print/freetype +USES= gmake USE_AUTOTOOLS= libtool USE_GL= gl glut -USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" CPPFLAGS+= -I${LOCALBASE}/include @@ -26,5 +26,4 @@ CONFIGURE_ARGS= --with-ttf-includes=${LO --with-glut-libraries=${LOCALBASE}/lib USE_LDCONFIG= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:29:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A81C23C; Tue, 21 Jan 2014 20:29:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 477E815B8; Tue, 21 Jan 2014 20:29:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKTQgN043353; Tue, 21 Jan 2014 20:29:26 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKTQDi043352; Tue, 21 Jan 2014 20:29:26 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401212029.s0LKTQDi043352@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 20:29:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340654 - head/graphics/gpaint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:29:26 -0000 Author: antoine Date: Tue Jan 21 20:29:25 2014 New Revision: 340654 URL: http://svnweb.freebsd.org/changeset/ports/340654 QAT: https://qat.redports.org/buildarchive/r340654/ Log: Stage support Modified: head/graphics/gpaint/Makefile Modified: head/graphics/gpaint/Makefile ============================================================================== --- head/graphics/gpaint/Makefile Tue Jan 21 20:24:34 2014 (r340653) +++ head/graphics/gpaint/Makefile Tue Jan 21 20:29:25 2014 (r340654) @@ -10,7 +10,7 @@ MASTER_SITES= ${MASTER_SITE_GNU_ALPHA} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org -COMMENT= A small-scale painting program for GNOME +COMMENT= Small-scale painting program for GNOME USES= pkgconfig USE_GNOME= libgnomeprint libgnomeprintui @@ -19,7 +19,6 @@ GNU_CONFIGURE= yes PLIST_FILES= bin/gpaint-2 %%DATADIR%%/glade/gpaint.glade PLIST_DIRS= %%DATADIR%%/glade %%DATADIR%% -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ 's|_RESPONSE_DISCARD|_RESPONSE_NO|g' ${WRKSRC}/src/drawing.c From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:38:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A3644A6; Tue, 21 Jan 2014 20:38:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 84ECA1678; Tue, 21 Jan 2014 20:38:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKcN3F047087; Tue, 21 Jan 2014 20:38:23 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKcNsg047086; Tue, 21 Jan 2014 20:38:23 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401212038.s0LKcNsg047086@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 20:38:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340655 - head/graphics/gx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:38:23 -0000 Author: antoine Date: Tue Jan 21 20:38:23 2014 New Revision: 340655 URL: http://svnweb.freebsd.org/changeset/ports/340655 QAT: https://qat.redports.org/buildarchive/r340655/ Log: Stage support Modified: head/graphics/gx/Makefile Modified: head/graphics/gx/Makefile ============================================================================== --- head/graphics/gx/Makefile Tue Jan 21 20:29:25 2014 (r340654) +++ head/graphics/gx/Makefile Tue Jan 21 20:38:23 2014 (r340655) @@ -10,12 +10,10 @@ MASTER_SITES= http://perticone.homelinux MAINTAINER= ports@FreeBSD.org COMMENT= Lightweight image viewer -LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 \ - gnomevfsmm-2.6.1:${PORTSDIR}/devel/gnome-vfsmm \ - gconfmm-2.6.1:${PORTSDIR}/devel/gconfmm26 +LIB_DEPENDS= libgnomevfsmm-2.6.so:${PORTSDIR}/devel/gnome-vfsmm USES= gettext pkgconfig +USE_GNOME= gconfmm26 gtkmm24 GNU_CONFIGURE= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:42:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D01E705; Tue, 21 Jan 2014 20:42:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 688371700; Tue, 21 Jan 2014 20:42:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKg36w050124; Tue, 21 Jan 2014 20:42:03 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKg3Lj050123; Tue, 21 Jan 2014 20:42:03 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401212042.s0LKg3Lj050123@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 20:42:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340656 - head/graphics/hppsmtools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:42:03 -0000 Author: antoine Date: Tue Jan 21 20:42:02 2014 New Revision: 340656 URL: http://svnweb.freebsd.org/changeset/ports/340656 QAT: https://qat.redports.org/buildarchive/r340656/ Log: Stage support Modified: head/graphics/hppsmtools/Makefile Modified: head/graphics/hppsmtools/Makefile ============================================================================== --- head/graphics/hppsmtools/Makefile Tue Jan 21 20:38:23 2014 (r340655) +++ head/graphics/hppsmtools/Makefile Tue Jan 21 20:42:02 2014 (r340656) @@ -12,25 +12,22 @@ COMMENT= Tool for HP PhotoSmart C5340A & LICENSE= GPLv2 -PORTDOCS= README changes.txt PLIST_FILES= bin/psmdel bin/psmdir bin/psmget bin/psmsho +PORTDOCS= README changes.txt + +OPTIONS_DEFINE= DOCS -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|^CC=|#CC=|g ; \ s|-Wall -pedantic|$$(CFLAGS)|g' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e '/typedef unsigned char/d' ${WRKSRC}/exif.h @${REINPLACE_CMD} -e '//d' ${WRKSRC}/psm*.c -.include - do-install: .for file in psmdel psmdir psmget psmsho - ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin .endfor -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:44:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C54AA89; Tue, 21 Jan 2014 20:44:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 68CAC1735; Tue, 21 Jan 2014 20:44:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKiMjh050527; Tue, 21 Jan 2014 20:44:22 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKiMuv050526; Tue, 21 Jan 2014 20:44:22 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401212044.s0LKiMuv050526@svn.freebsd.org> From: Antoine Brodin Date: Tue, 21 Jan 2014 20:44:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340657 - head/graphics/hsetroot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:44:22 -0000 Author: antoine Date: Tue Jan 21 20:44:21 2014 New Revision: 340657 URL: http://svnweb.freebsd.org/changeset/ports/340657 QAT: https://qat.redports.org/buildarchive/r340657/ Log: Stage support Modified: head/graphics/hsetroot/Makefile Modified: head/graphics/hsetroot/Makefile ============================================================================== --- head/graphics/hsetroot/Makefile Tue Jan 21 20:42:02 2014 (r340656) +++ head/graphics/hsetroot/Makefile Tue Jan 21 20:44:21 2014 (r340657) @@ -13,10 +13,9 @@ COMMENT= Wallpaper manipulation utility LICENSE= GPLv2 GNU_CONFIGURE= yes -USE_GMAKE= yes +USES= gmake USE_EFL= imlib2 PLIST_FILES= bin/hsetroot -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:47:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06599BA1; Tue, 21 Jan 2014 20:47:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E64651755; Tue, 21 Jan 2014 20:47:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKl6n3050943; Tue, 21 Jan 2014 20:47:06 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKl6YR050941; Tue, 21 Jan 2014 20:47:06 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401212047.s0LKl6YR050941@svn.freebsd.org> From: Raphael Kubo da Costa Date: Tue, 21 Jan 2014 20:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340658 - in head: www/fira-webfont x11-fonts/fira X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 20:47:07 -0000 Author: rakuco Date: Tue Jan 21 20:47:06 2014 New Revision: 340658 URL: http://svnweb.freebsd.org/changeset/ports/340658 QAT: https://qat.redports.org/buildarchive/r340658/ Log: Simplify LICENSE for the Fira fonts. We have OFL11 in the database, so there's no need to set all those LICENSE parameters manually. Modified: head/www/fira-webfont/Makefile head/x11-fonts/fira/Makefile Modified: head/www/fira-webfont/Makefile ============================================================================== --- head/www/fira-webfont/Makefile Tue Jan 21 20:44:21 2014 (r340657) +++ head/www/fira-webfont/Makefile Tue Jan 21 20:47:06 2014 (r340658) @@ -9,10 +9,7 @@ PKGNAMESUFFIX= -webfont MAINTAINER= horia@racoviceanu.com COMMENT= Sans-serif and monospaced Web Font for small screens -LICENSE= OFL -LICENSE_NAME= SIL OPEN FONT LICENSE Version 1.1 -LICENSE_FILE= ${WRKSRC}/LICENSE -LICENSE_PERMS= dist-mirror pkg-mirror auto-accept +LICENSE= OFL11 USE_GITHUB= yes GH_ACCOUNT= mozilla Modified: head/x11-fonts/fira/Makefile ============================================================================== --- head/x11-fonts/fira/Makefile Tue Jan 21 20:44:21 2014 (r340657) +++ head/x11-fonts/fira/Makefile Tue Jan 21 20:47:06 2014 (r340658) @@ -8,10 +8,7 @@ CATEGORIES= x11-fonts MAINTAINER= horia@racoviceanu.com COMMENT= Sans-serif and monospaced typeface for small screens -LICENSE= OFL -LICENSE_NAME= SIL OPEN FONT LICENSE Version 1.1 -LICENSE_FILE= ${WRKSRC}/LICENSE -LICENSE_PERMS= dist-mirror pkg-mirror auto-accept +LICENSE= OFL11 BUILD_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig \ mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 20:53:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 350B1F36; Tue, 21 Jan 2014 20:53:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0726B17E2; Tue, 21 Jan 2014 20:53:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LKrtiv054382; Tue, 21 Jan 2014 20:53:55 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LKrtQT054380; Tue, 21 Jan 2014 20:53:55 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401212053.s0LKrtQT054380@svn.freebsd.org> From: Raphael Kubo da Costa Date: Tue, 21 Jan 2014 20:53:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340659 - in head/devel/shiboken: . 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.17 Precedence: list List-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, 21 Jan 2014 20:53:56 -0000 Author: rakuco Date: Tue Jan 21 20:53:55 2014 New Revision: 340659 URL: http://svnweb.freebsd.org/changeset/ports/340659 QAT: https://qat.redports.org/buildarchive/r340659/ Log: Partially fix the build. Sphinx underwent an incompatible change in version 1.2 that removed the sphinx.ext.refcounting module. The module is referenced by shiboken's Sphinx configuration file, and the build fails. Fix it by removing the reference to sphinx.ext.refcounting, as it does not seem to be required and was probably added by default when the configuration file was generated. As mentioned, this is a partial fix: platforms that use libc++ by default are still broken due to other issues, but at least FreeBSD 8 and 9 should have a working package again. While here, also use the new syntax for LIB_DEPENDS. PR: ports/185179 Submitted by: rakuco@ Approved by: maintainer timeout (27 days) MFH: 2014Q1 Added: head/devel/shiboken/files/patch-doc__conf.py.in (contents, props changed) Modified: head/devel/shiboken/Makefile Modified: head/devel/shiboken/Makefile ============================================================================== --- head/devel/shiboken/Makefile Tue Jan 21 20:47:06 2014 (r340658) +++ head/devel/shiboken/Makefile Tue Jan 21 20:53:55 2014 (r340659) @@ -13,8 +13,8 @@ COMMENT= C++ code generator for CPython LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -LIB_DEPENDS= xml2:${PORTSDIR}/textproc/libxml2 \ - xslt:${PORTSDIR}/textproc/libxslt +LIB_DEPENDS= libxml2.so:${PORTSDIR}/textproc/libxml2 \ + libxslt.so:${PORTSDIR}/textproc/libxslt PLIST_SUB= PORTVERSION=${PORTVERSION} \ PYTHON_VERSION=${PYTHON_VERSION} Added: head/devel/shiboken/files/patch-doc__conf.py.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/shiboken/files/patch-doc__conf.py.in Tue Jan 21 20:53:55 2014 (r340659) @@ -0,0 +1,11 @@ +--- doc/conf.py.in.orig 2013-12-25 19:56:52.000000000 +0200 ++++ doc/conf.py.in 2013-12-25 19:57:00.000000000 +0200 +@@ -22,7 +22,7 @@ + + # Add any Sphinx extension module names here, as strings. They can be extensions + # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. +-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.ifconfig', 'sphinx.ext.refcounting', 'sphinx.ext.coverage'] ++extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.ifconfig', 'sphinx.ext.coverage'] + + rst_epilog = """ + .. |project| replace:: Shiboken From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 21:25:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 193CB86F; Tue, 21 Jan 2014 21:25:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 055791A3C; Tue, 21 Jan 2014 21:25:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LLPTeN066430; Tue, 21 Jan 2014 21:25:29 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LLPTvZ066425; Tue, 21 Jan 2014 21:25:29 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401212125.s0LLPTvZ066425@svn.freebsd.org> From: Raphael Kubo da Costa Date: Tue, 21 Jan 2014 21:25:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340660 - head/math/dynare X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 21:25:30 -0000 Author: rakuco Date: Tue Jan 21 21:25:29 2014 New Revision: 340660 URL: http://svnweb.freebsd.org/changeset/ports/340660 QAT: https://qat.redports.org/buildarchive/r340660/ Log: Update to 4.4.1. PR: ports/185890 Submitted by: Fernando (maintainer) Modified: head/math/dynare/Makefile head/math/dynare/distinfo Modified: head/math/dynare/Makefile ============================================================================== --- head/math/dynare/Makefile Tue Jan 21 20:53:55 2014 (r340659) +++ head/math/dynare/Makefile Tue Jan 21 21:25:29 2014 (r340660) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dynare -PORTVERSION= 4.4.0 +PORTVERSION= 4.4.1 CATEGORIES= math MASTER_SITES= http://www.dynare.org/release/source/ Modified: head/math/dynare/distinfo ============================================================================== --- head/math/dynare/distinfo Tue Jan 21 20:53:55 2014 (r340659) +++ head/math/dynare/distinfo Tue Jan 21 21:25:29 2014 (r340660) @@ -1,2 +1,2 @@ -SHA256 (dynare-4.4.0.tar.xz) = b6cd4ad5204d53ccfce4e463c3138a2059803fbae8670f44d79740616caa92fe -SIZE (dynare-4.4.0.tar.xz) = 14897624 +SHA256 (dynare-4.4.1.tar.xz) = 4a18961b60126424aabfaaf32b9825eb715e4a1c719e3f6658a5e939e9433d34 +SIZE (dynare-4.4.1.tar.xz) = 14907988 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 21:26:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18532981; Tue, 21 Jan 2014 21:26:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 047551A45; Tue, 21 Jan 2014 21:26:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LLQO55066597; Tue, 21 Jan 2014 21:26:24 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LLQO0A066595; Tue, 21 Jan 2014 21:26:24 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401212126.s0LLQO0A066595@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 21:26:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340661 - head/net/rubygem-openid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 21:26:25 -0000 Author: swills Date: Tue Jan 21 21:26:24 2014 New Revision: 340661 URL: http://svnweb.freebsd.org/changeset/ports/340661 QAT: https://qat.redports.org/buildarchive/r340661/ Log: - Update to 2.3.0 Modified: head/net/rubygem-openid/Makefile head/net/rubygem-openid/distinfo Modified: head/net/rubygem-openid/Makefile ============================================================================== --- head/net/rubygem-openid/Makefile Tue Jan 21 21:25:29 2014 (r340660) +++ head/net/rubygem-openid/Makefile Tue Jan 21 21:26:24 2014 (r340661) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openid -PORTVERSION= 2.2.3 +PORTVERSION= 2.3.0 CATEGORIES= net rubygems MASTER_SITES= RG DISTNAME= ruby-${PORTNAME}-${PORTVERSION} Modified: head/net/rubygem-openid/distinfo ============================================================================== --- head/net/rubygem-openid/distinfo Tue Jan 21 21:25:29 2014 (r340660) +++ head/net/rubygem-openid/distinfo Tue Jan 21 21:26:24 2014 (r340661) @@ -1,2 +1,2 @@ -SHA256 (rubygem/ruby-openid-2.2.3.gem) = 0ddf69532c1f43a7045d8040cb0bd9f806c5b605c7d4f93c50fc5dab256508e8 -SIZE (rubygem/ruby-openid-2.2.3.gem) = 272896 +SHA256 (rubygem/ruby-openid-2.3.0.gem) = f69ed004e95f7094e23bfd8bc9ebfb1dc88a7b46637252ca2907a1189870ea7b +SIZE (rubygem/ruby-openid-2.3.0.gem) = 327680 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 21:28:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 019CBABE; Tue, 21 Jan 2014 21:28:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C8F5F1A69; Tue, 21 Jan 2014 21:28:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LLS7j4066893; Tue, 21 Jan 2014 21:28:07 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LLS7O4066883; Tue, 21 Jan 2014 21:28:07 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401212128.s0LLS7O4066883@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Tue, 21 Jan 2014 21:28:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340662 - in head/devel: . py-robotframework-pabot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 21:28:08 -0000 Author: rm Date: Tue Jan 21 21:28:06 2014 New Revision: 340662 URL: http://svnweb.freebsd.org/changeset/ports/340662 QAT: https://qat.redports.org/buildarchive/r340662/ Log: Test data editor for Robot Framework test data. WWW: https://github.com/robotframework/RIDE/wiki PR: 185971 Submitted by: Vladimir Chukharev Added: head/devel/py-robotframework-pabot/ head/devel/py-robotframework-pabot/Makefile (contents, props changed) head/devel/py-robotframework-pabot/distinfo (contents, props changed) head/devel/py-robotframework-pabot/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jan 21 21:26:24 2014 (r340661) +++ head/devel/Makefile Tue Jan 21 21:28:06 2014 (r340662) @@ -3766,6 +3766,7 @@ SUBDIR += py-resourcepackage SUBDIR += py-rlcompleter2 SUBDIR += py-robotframework + SUBDIR += py-robotframework-pabot SUBDIR += py-robotframework-ride SUBDIR += py-robotframework-selenium2library SUBDIR += py-rope Added: head/devel/py-robotframework-pabot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-robotframework-pabot/Makefile Tue Jan 21 21:28:06 2014 (r340662) @@ -0,0 +1,21 @@ +# Created by: Vladimir Chukharev +# $FreeBSD$ + +PORTNAME= robotframework-pabot +PORTVERSION= 0.1 +CATEGORIES= devel www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= Vladimir.Chukharev@gmail.com +COMMENT= Parallel executor for Robot Framework test cases + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}robotframework>=2.7.5:${PORTSDIR}/devel/py-robotframework + +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/devel/py-robotframework-pabot/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-robotframework-pabot/distinfo Tue Jan 21 21:28:06 2014 (r340662) @@ -0,0 +1,2 @@ +SHA256 (robotframework-pabot-0.1.tar.gz) = b12105ec585ed588d978496498ec2e60360b7bf0c8fbd86ae4043f3322ac340c +SIZE (robotframework-pabot-0.1.tar.gz) = 3718 Added: head/devel/py-robotframework-pabot/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-robotframework-pabot/pkg-descr Tue Jan 21 21:28:06 2014 (r340662) @@ -0,0 +1,3 @@ +Test data editor for Robot Framework test data. + +WWW: https://github.com/robotframework/RIDE/wiki From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 21:31:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6255BCDD; Tue, 21 Jan 2014 21:31:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4E6EC1ADF; Tue, 21 Jan 2014 21:31:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LLVRvQ069726; Tue, 21 Jan 2014 21:31:27 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LLVQBI069724; Tue, 21 Jan 2014 21:31:26 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401212131.s0LLVQBI069724@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 21:31:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340663 - head/www/rubygem-simple-rss X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 21:31:27 -0000 Author: swills Date: Tue Jan 21 21:31:26 2014 New Revision: 340663 URL: http://svnweb.freebsd.org/changeset/ports/340663 QAT: https://qat.redports.org/buildarchive/r340663/ Log: - Update to 2.3.0 PR: ports/184603 Submitted by: Geoffroy Desvernay Approved by: maintainer timeout (markun@onohara.to, >4 weeks) Modified: head/www/rubygem-simple-rss/Makefile head/www/rubygem-simple-rss/distinfo Modified: head/www/rubygem-simple-rss/Makefile ============================================================================== --- head/www/rubygem-simple-rss/Makefile Tue Jan 21 21:28:06 2014 (r340662) +++ head/www/rubygem-simple-rss/Makefile Tue Jan 21 21:31:26 2014 (r340663) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= simple-rss -PORTVERSION= 1.2.3 +PORTVERSION= 1.3.1 CATEGORIES= www textproc rubygems MASTER_SITES= RG Modified: head/www/rubygem-simple-rss/distinfo ============================================================================== --- head/www/rubygem-simple-rss/distinfo Tue Jan 21 21:28:06 2014 (r340662) +++ head/www/rubygem-simple-rss/distinfo Tue Jan 21 21:31:26 2014 (r340663) @@ -1,2 +1,2 @@ -SHA256 (rubygem/simple-rss-1.2.3.gem) = dc0673e66692099f9a106d2a78f8d7aabb4636f0456124dad67e0300179eb3af -SIZE (rubygem/simple-rss-1.2.3.gem) = 32256 +SHA256 (rubygem/simple-rss-1.3.1.gem) = 5718ccaf2989525bf855207197b1ab190a2e04e6fc74ed0edd68abcef5db5b53 +SIZE (rubygem/simple-rss-1.3.1.gem) = 35840 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 21:36:52 2014 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45B28EB2; Tue, 21 Jan 2014 21:36:52 +0000 (UTC) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E05E31B16; Tue, 21 Jan 2014 21:36:51 +0000 (UTC) Received: from mouf.net (swills@mouf [199.48.129.64]) by mouf.net (8.14.5/8.14.5) with ESMTP id s0LLag9j033809 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 21 Jan 2014 21:36:47 GMT (envelope-from swills@mouf.net) Received: (from swills@localhost) by mouf.net (8.14.5/8.14.5/Submit) id s0LLagX4033808; Tue, 21 Jan 2014 21:36:42 GMT (envelope-from swills) Date: Tue, 21 Jan 2014 21:36:42 +0000 From: Steve Wills To: ports-committers@FreeBSD.org, svn-ports-all@FreeBSD.org, svn-ports-head@FreeBSD.org Subject: Re: svn commit: r340661 - head/net/rubygem-openid Message-ID: <20140121213638.GA32802@mouf.net> References: <201401212126.s0LLQO0A066595@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401212126.s0LLQO0A066595@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Tue, 21 Jan 2014 21:36:47 +0000 (UTC) X-Spam-Status: No, score=0.0 required=4.5 tests=none autolearn=unavailable version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mouf.net X-Virus-Scanned: clamav-milter 0.97.8 at mouf.net X-Virus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 21:36:52 -0000 Should have said, this was PR ports/184603. Steve On Tue, Jan 21, 2014 at 09:26:24PM +0000, Steve Wills wrote: > Author: swills > Date: Tue Jan 21 21:26:24 2014 > New Revision: 340661 > URL: http://svnweb.freebsd.org/changeset/ports/340661 > QAT: https://qat.redports.org/buildarchive/r340661/ > > Log: > - Update to 2.3.0 > > Modified: > head/net/rubygem-openid/Makefile > head/net/rubygem-openid/distinfo > > Modified: head/net/rubygem-openid/Makefile > ============================================================================== > --- head/net/rubygem-openid/Makefile Tue Jan 21 21:25:29 2014 (r340660) > +++ head/net/rubygem-openid/Makefile Tue Jan 21 21:26:24 2014 (r340661) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= openid > -PORTVERSION= 2.2.3 > +PORTVERSION= 2.3.0 > CATEGORIES= net rubygems > MASTER_SITES= RG > DISTNAME= ruby-${PORTNAME}-${PORTVERSION} > > Modified: head/net/rubygem-openid/distinfo > ============================================================================== > --- head/net/rubygem-openid/distinfo Tue Jan 21 21:25:29 2014 (r340660) > +++ head/net/rubygem-openid/distinfo Tue Jan 21 21:26:24 2014 (r340661) > @@ -1,2 +1,2 @@ > -SHA256 (rubygem/ruby-openid-2.2.3.gem) = 0ddf69532c1f43a7045d8040cb0bd9f806c5b605c7d4f93c50fc5dab256508e8 > -SIZE (rubygem/ruby-openid-2.2.3.gem) = 272896 > +SHA256 (rubygem/ruby-openid-2.3.0.gem) = f69ed004e95f7094e23bfd8bc9ebfb1dc88a7b46637252ca2907a1189870ea7b > +SIZE (rubygem/ruby-openid-2.3.0.gem) = 327680 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 21:38:07 2014 Return-Path: Delivered-To: svn-ports-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D838FAE; Tue, 21 Jan 2014 21:38:07 +0000 (UTC) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A86331B2A; Tue, 21 Jan 2014 21:38:06 +0000 (UTC) Received: from mouf.net (swills@mouf [199.48.129.64]) by mouf.net (8.14.5/8.14.5) with ESMTP id s0LLbvIB033830 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 21 Jan 2014 21:38:02 GMT (envelope-from swills@mouf.net) Received: (from swills@localhost) by mouf.net (8.14.5/8.14.5/Submit) id s0LLbvow033829; Tue, 21 Jan 2014 21:37:57 GMT (envelope-from swills) Date: Tue, 21 Jan 2014 21:37:57 +0000 From: Steve Wills To: ports-committers@FreeBSD.org, svn-ports-all@FreeBSD.org, svn-ports-head@FreeBSD.org Subject: Re: svn commit: r340663 - head/www/rubygem-simple-rss Message-ID: <20140121213756.GB32802@mouf.net> References: <201401212131.s0LLVQBI069724@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401212131.s0LLVQBI069724@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (mouf.net [199.48.129.64]); Tue, 21 Jan 2014 21:38:02 +0000 (UTC) X-Spam-Status: No, score=0.0 required=4.5 tests=none autolearn=unavailable version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mouf.net X-Virus-Scanned: clamav-milter 0.97.8 at mouf.net X-Virus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 21:38:07 -0000 Totally got my wires crossed here, this was PR ports/184998 and was submitted by maintainer. There was no timeout except in my brain, sorry about that. Steve On Tue, Jan 21, 2014 at 09:31:26PM +0000, Steve Wills wrote: > Author: swills > Date: Tue Jan 21 21:31:26 2014 > New Revision: 340663 > URL: http://svnweb.freebsd.org/changeset/ports/340663 > QAT: https://qat.redports.org/buildarchive/r340663/ > > Log: > - Update to 2.3.0 > > PR: ports/184603 > Submitted by: Geoffroy Desvernay > Approved by: maintainer timeout (markun@onohara.to, >4 weeks) > > Modified: > head/www/rubygem-simple-rss/Makefile > head/www/rubygem-simple-rss/distinfo > > Modified: head/www/rubygem-simple-rss/Makefile > ============================================================================== > --- head/www/rubygem-simple-rss/Makefile Tue Jan 21 21:28:06 2014 (r340662) > +++ head/www/rubygem-simple-rss/Makefile Tue Jan 21 21:31:26 2014 (r340663) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= simple-rss > -PORTVERSION= 1.2.3 > +PORTVERSION= 1.3.1 > CATEGORIES= www textproc rubygems > MASTER_SITES= RG > > > Modified: head/www/rubygem-simple-rss/distinfo > ============================================================================== > --- head/www/rubygem-simple-rss/distinfo Tue Jan 21 21:28:06 2014 (r340662) > +++ head/www/rubygem-simple-rss/distinfo Tue Jan 21 21:31:26 2014 (r340663) > @@ -1,2 +1,2 @@ > -SHA256 (rubygem/simple-rss-1.2.3.gem) = dc0673e66692099f9a106d2a78f8d7aabb4636f0456124dad67e0300179eb3af > -SIZE (rubygem/simple-rss-1.2.3.gem) = 32256 > +SHA256 (rubygem/simple-rss-1.3.1.gem) = 5718ccaf2989525bf855207197b1ab190a2e04e6fc74ed0edd68abcef5db5b53 > +SIZE (rubygem/simple-rss-1.3.1.gem) = 35840 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 21:44:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D9381DE; Tue, 21 Jan 2014 21:44:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 19B721CF2; Tue, 21 Jan 2014 21:44:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LLiI0I074066; Tue, 21 Jan 2014 21:44:18 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LLiIfE074064; Tue, 21 Jan 2014 21:44:18 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401212144.s0LLiIfE074064@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 21:44:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340664 - head/graphics/rubygem-chunky_png X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 21:44:19 -0000 Author: swills Date: Tue Jan 21 21:44:18 2014 New Revision: 340664 URL: http://svnweb.freebsd.org/changeset/ports/340664 QAT: https://qat.redports.org/buildarchive/r340664/ Log: - Update to 1.2.9 - Add LICENSE - Add USE_RAKE - Support STAGEDIR PR: ports/185024 Submitted by: Horia Racoviceanu Approved by: maintainer timeout (pphillips@experts-exchange.com, >4 weeks) Modified: head/graphics/rubygem-chunky_png/Makefile head/graphics/rubygem-chunky_png/distinfo Modified: head/graphics/rubygem-chunky_png/Makefile ============================================================================== --- head/graphics/rubygem-chunky_png/Makefile Tue Jan 21 21:31:26 2014 (r340663) +++ head/graphics/rubygem-chunky_png/Makefile Tue Jan 21 21:44:18 2014 (r340664) @@ -2,16 +2,18 @@ # $FreeBSD$ PORTNAME= chunky_png -PORTVERSION= 1.2.8 +PORTVERSION= 1.2.9 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= pphillips@experts-exchange.com COMMENT= Ruby library to read and write PNG images +LICENSE= MIT + +USE_RAKE= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/graphics/rubygem-chunky_png/distinfo ============================================================================== --- head/graphics/rubygem-chunky_png/distinfo Tue Jan 21 21:31:26 2014 (r340663) +++ head/graphics/rubygem-chunky_png/distinfo Tue Jan 21 21:44:18 2014 (r340664) @@ -1,2 +1,2 @@ -SHA256 (rubygem/chunky_png-1.2.8.gem) = 694c136fe839b89135a7a20ad08db9b6f76bb2bd4cf2400f97041dde87f5e18c -SIZE (rubygem/chunky_png-1.2.8.gem) = 322560 +SHA256 (rubygem/chunky_png-1.2.9.gem) = d0102bc377642ee12370eb06109d95022792c619ce66d64ee15e2dd58e066748 +SIZE (rubygem/chunky_png-1.2.9.gem) = 316416 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 21:45:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 291B02D4; Tue, 21 Jan 2014 21:45:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 12F6A1D01; Tue, 21 Jan 2014 21:45:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LLjjkq074324; Tue, 21 Jan 2014 21:45:45 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LLjiMd074322; Tue, 21 Jan 2014 21:45:44 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401212145.s0LLjiMd074322@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 21:45:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340665 - head/textproc/p5-Plagger X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 21:45:45 -0000 Author: mat Date: Tue Jan 21 21:45:44 2014 New Revision: 340665 URL: http://svnweb.freebsd.org/changeset/ports/340665 QAT: https://qat.redports.org/buildarchive/r340665/ Log: * Convert to staging * Add license * pet portlint * Fixup missing options and includes Sponsored by: Absolight Modified: head/textproc/p5-Plagger/Makefile head/textproc/p5-Plagger/pkg-plist Modified: head/textproc/p5-Plagger/Makefile ============================================================================== --- head/textproc/p5-Plagger/Makefile Tue Jan 21 21:44:18 2014 (r340664) +++ head/textproc/p5-Plagger/Makefile Tue Jan 21 21:45:44 2014 (r340665) @@ -12,6 +12,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= sumikawa@FreeBSD.org COMMENT= Pluggable RSS/Atom feed aggregator written in Perl +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \ p5-DateTime-TimeZone>=0:${PORTSDIR}/devel/p5-DateTime-TimeZone \ @@ -38,19 +41,29 @@ BUILD_DEPENDS= p5-Class-Accessor>=0:${PO p5-URI-Fetch>=0:${PORTSDIR}/www/p5-URI-Fetch \ p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML -USES= perl5 +USES= perl5 shebangfix USE_PERL5= configure +SHEBANG_FILES= assets/plugins/CustomFeed-Script/domain-expire.pl \ + assets/plugins/CustomFeed-Script/jsports-football.pl \ + assets/plugins/CustomFeed-Script/ssl-expire.pl \ + assets/plugins/CustomFeed-Script/slims_calendar.pl \ + assets/plugins/CustomFeed-Script/wowow-hv-51ch.pl \ + assets/plugins/CustomFeed-Script/wowow-liga-espanola.pl + +OPTIONS_DEFINE= AUTHORNAME BABELFISH BETTERENCODING BETTERHTML BLOGLINES \ + COOKIESHARING CUSFEEDMIXI CUSTOMSVNLOG EMOTICON ESTRAIER \ + FILDEGYT FILHATENA FILHATKTAG FILHTMLSCRB FILMRKDWN \ + FILSPAMASSN FILTERPIPE FILTERPPT FLICKRSEARCH GUESSLANG \ + GUESSTZ HATENABKMK HATENADIARY HATENARSS HTMLTIDY IMAGEINFO \ + JAVASCRIPT KINOSEARCH LIBERALXML LIVEDOOR NOTIFYBEEP \ + NOTIFYIRC NTFYNETSEND PALMDOC PINGSERVER PLANETINI PODTESTING \ + PROFANITY PRSJPNDATE PRSJPNDATE PUBDELICIOUS PUBICAL PUBJSON \ + PUBLISHCSV PUBLISHEXCEL PUBLISHGMAIL PUBLISHIMAP PUBLISHMT \ + PUBLISHPDF PUBLISHPLANET PUBLISHSWF PUBSERLZR ROMANIZE \ + RULEFRESH SRCHGREP SUBSCOPML SUBSCRDBI SUBSCRFOAF SUMJPN \ + SUMMARYENG SUMTEXTORG XPATH DOCS EXAMPLES -OPTIONS_DEFINE= BETTERENCODING PODTESTING COOKIESHARING LIBERALXML XPATH BETTERHTML PRSJPNDATE \ - PRSJPNDATE PUBLISHEXCEL FILTERPIPE PUBLISHPLANET PUBLISHCSV FILDEGYT AUTHORNAME \ - GUESSLANG GUESSTZ HTMLTIDY PUBLISHMT PUBSERLZR PUBICAL ROMANIZE JAVASCRIPT \ - EMOTICON FILHATENA FILHATKTAG RULEFRESH SUBSCOPML HATENABKMK PALMDOC PUBLISHSWF \ - SUBSCRDBI NOTIFYBEEP FILTERPPT KINOSEARCH PUBLISHGMAIL PUBDELICIOUS ESTRAIER \ - SRCHGREP PUBJSON FILSPAMASSN PROFANITY HATENARSS SUBSCRFOAF NOTIFYIRC HATENADIARY \ - LIVEDOOR PINGSERVER IMAGEINFO FILMRKDWN PUBLISHIMAP PUBLISHPDF BLOGLINES BABELFISH \ - CUSFEEDMIXI CUSTOMSVNLOG NTFYNETSEND FILHTMLSCRB PLANETINI SUMMARYENG SUMJPN SUMTEXTORG \ - DOCS EXAMPLES BETTERENCODING_DESC= Better Encoding detection Support PODTESTINGPOD_DESC= Testing Support COOKIESHARING_DESC= Cookie sharing with Firefox Support @@ -113,12 +126,11 @@ SUMMARYENG_DESC= Summary-English Support SUMJPN_DESC= Summary::Japanes SUMTEXTORG_DESC= Summary-TextOriginal Support -OPTIONS_DEFAULT= BETTERENCODING LIBERALXML XPATH BETTERHTML PUBLISHPLANET GUESSTZ \ - EMOTICON RULEFRESH SUBSCOPML SUBSCRDBI PUBLISHGMAIL HATENARSS SUBSCRFOAF \ - LIVEDOOR PINGSERVER BLOGLINES FILHTMLSCRB PLANETINI +OPTIONS_DEFAULT= BETTERENCODING LIBERALXML XPATH BETTERHTML \ + PUBLISHPLANET GUESSTZ EMOTICON RULEFRESH SUBSCOPML \ + SUBSCRDBI PUBLISHGMAIL HATENARSS SUBSCRFOAF LIVEDOOR \ + PINGSERVER BLOGLINES FILHTMLSCRB PLANETINI -NO_STAGE= yes -.include .include .if ${PORT_OPTIONS:MBETTERENCODING} @@ -379,193 +391,14 @@ BUILD_DEPENDS+= p5-Text-Original>=0:${PO RUN_DEPENDS:= ${BUILD_DEPENDS} -MAN3= Plagger.3 \ - Plagger::Cookies.3 \ - Plagger::Date.3 \ - Plagger::Plugin.3 \ - Plagger::Plugin::Aggregator::Null.3 \ - Plagger::Plugin::Aggregator::Simple.3 \ - Plagger::Plugin::Bundle::Defaults.3 \ - Plagger::Plugin::Bundle::Planet.3 \ - Plagger::Plugin::CustomFeed::2chSearch.3 \ - Plagger::Plugin::CustomFeed::AmazonAssociateReportJP.3 \ - Plagger::Plugin::CustomFeed::BloglinesCitations.3 \ - Plagger::Plugin::CustomFeed::Debug.3 \ - Plagger::Plugin::CustomFeed::FlickrSearch.3 \ - Plagger::Plugin::CustomFeed::Frepa.3 \ - Plagger::Plugin::CustomFeed::GoogleNews.3 \ - Plagger::Plugin::CustomFeed::Mailman.3 \ - Plagger::Plugin::CustomFeed::Mixi.3 \ - Plagger::Plugin::CustomFeed::MixiDiarySearch.3 \ - Plagger::Plugin::CustomFeed::POP3.3 \ - Plagger::Plugin::CustomFeed::PerlMonks.3 \ - Plagger::Plugin::CustomFeed::SVNLog.3 \ - Plagger::Plugin::CustomFeed::Script.3 \ - Plagger::Plugin::CustomFeed::Simple.3 \ - Plagger::Plugin::CustomFeed::YouTube.3 \ - Plagger::Plugin::CustomFeed::iTunesRecentPlay.3 \ - Plagger::Plugin::Filter::2chNewsokuTitle.3 \ - Plagger::Plugin::Filter::2chRSSContent.3 \ - Plagger::Plugin::Filter::AtomLinkRelated.3 \ - Plagger::Plugin::Filter::Babelfish.3 \ - Plagger::Plugin::Filter::Base.3 \ - Plagger::Plugin::Filter::BlogPet.3 \ - Plagger::Plugin::Filter::BloglinesContentNormalize.3 \ - Plagger::Plugin::Filter::BreakEntriesToFeeds.3 \ - Plagger::Plugin::Filter::BulkfeedsTerms.3 \ - Plagger::Plugin::Filter::CompositeFeed.3 \ - Plagger::Plugin::Filter::DegradeYouTube.3 \ - Plagger::Plugin::Filter::Delicious.3 \ - Plagger::Plugin::Filter::DeliciousFeedTags.3 \ - Plagger::Plugin::Filter::Emoticon.3 \ - Plagger::Plugin::Filter::EntryFullText.3 \ - Plagger::Plugin::Filter::ExtractAuthorName.3 \ - Plagger::Plugin::Filter::FeedBurnerPermalink.3 \ - Plagger::Plugin::Filter::FeedFlareStripper.3 \ - Plagger::Plugin::Filter::FetchEnclosure.3 \ - Plagger::Plugin::Filter::FetchEnclosure::Curl.3 \ - Plagger::Plugin::Filter::FetchEnclosure::ParallelUA.3 \ - Plagger::Plugin::Filter::FetchEnclosure::Wget.3 \ - Plagger::Plugin::Filter::FindEnclosures.3 \ - Plagger::Plugin::Filter::FloatingDateTime.3 \ - Plagger::Plugin::Filter::ForceTimeZone.3 \ - Plagger::Plugin::Filter::GuessLanguage.3 \ - Plagger::Plugin::Filter::GuessTimeZoneByDomain.3 \ - Plagger::Plugin::Filter::HEADEnclosureMetadata.3 \ - Plagger::Plugin::Filter::HTMLScrubber.3 \ - Plagger::Plugin::Filter::HTMLTidy.3 \ - Plagger::Plugin::Filter::HatenaBookmarkTag.3 \ - Plagger::Plugin::Filter::HatenaBookmarkUsersCount.3 \ - Plagger::Plugin::Filter::HatenaDiaryKeywordLink.3 \ - Plagger::Plugin::Filter::HatenaDiaryKeywordUnlink.3 \ - Plagger::Plugin::Filter::HatenaFormat.3 \ - Plagger::Plugin::Filter::HatenaKeywordTag.3 \ - Plagger::Plugin::Filter::ImageInfo.3 \ - Plagger::Plugin::Filter::Kansai.3 \ - Plagger::Plugin::Filter::LivedoorClipUsersCount.3 \ - Plagger::Plugin::Filter::LivedoorKeywordUnlink.3 \ - Plagger::Plugin::Filter::Markdown.3 \ - Plagger::Plugin::Filter::POPFile.3 \ - Plagger::Plugin::Filter::Pipe.3 \ - Plagger::Plugin::Filter::Profanity.3 \ - Plagger::Plugin::Filter::RSSLiberalDateTime.3 \ - Plagger::Plugin::Filter::RSSTimeZoneString.3 \ - Plagger::Plugin::Filter::Regexp.3 \ - Plagger::Plugin::Filter::ResolveRelativeLink.3 \ - Plagger::Plugin::Filter::RewriteEnclosureURL.3 \ - Plagger::Plugin::Filter::Rule.3 \ - Plagger::Plugin::Filter::SpamAssassin.3 \ - Plagger::Plugin::Filter::StripRSSAd.3 \ - Plagger::Plugin::Filter::StripTagsFromTitle.3 \ - Plagger::Plugin::Filter::TTP.3 \ - Plagger::Plugin::Filter::TagsToTitle.3 \ - Plagger::Plugin::Filter::Thumbnail.3 \ - Plagger::Plugin::Filter::TruePermalink.3 \ - Plagger::Plugin::Filter::UnicodeNormalize.3 \ - Plagger::Plugin::Filter::tDiaryComment.3 \ - Plagger::Plugin::Namespace::ApplePhotocast.3 \ - Plagger::Plugin::Namespace::HatenaFotolife.3 \ - Plagger::Plugin::Namespace::MediaRSS.3 \ - Plagger::Plugin::Notify::Audio.3 \ - Plagger::Plugin::Notify::Balloon.3 \ - Plagger::Plugin::Notify::Beep.3 \ - Plagger::Plugin::Notify::Campfire.3 \ - Plagger::Plugin::Notify::Command.3 \ - Plagger::Plugin::Notify::Eject.3 \ - Plagger::Plugin::Notify::Eject::darwin.3 \ - Plagger::Plugin::Notify::Eject::freebsd.3 \ - Plagger::Plugin::Notify::Eject::linux.3 \ - Plagger::Plugin::Notify::Eject::mswin32.3 \ - Plagger::Plugin::Notify::IRC.3 \ - Plagger::Plugin::Notify::MSAgent.3 \ - Plagger::Plugin::Notify::NetSend.3 \ - Plagger::Plugin::Notify::OpenBrowser.3 \ - Plagger::Plugin::Notify::OpenBrowser::FirefoxRemote.3 \ - Plagger::Plugin::Notify::SSTP.3 \ - Plagger::Plugin::Notify::Tiarra.3 \ - Plagger::Plugin::Notify::UpdatePing.3 \ - Plagger::Plugin::Publish::2chdat.3 \ - Plagger::Plugin::Publish::CSV.3 \ - Plagger::Plugin::Publish::Delicious.3 \ - Plagger::Plugin::Publish::Excel.3 \ - Plagger::Plugin::Publish::FOAFRoll.3 \ - Plagger::Plugin::Publish::Feed.3 \ - Plagger::Plugin::Publish::Gmail.3 \ - Plagger::Plugin::Publish::HatenaBookmark.3 \ - Plagger::Plugin::Publish::IMAP.3 \ - Plagger::Plugin::Publish::JSON.3 \ - Plagger::Plugin::Publish::JavaScript.3 \ - Plagger::Plugin::Publish::LivedoorClip.3 \ - Plagger::Plugin::Publish::MT.3 \ - Plagger::Plugin::Publish::MTWidget.3 \ - Plagger::Plugin::Publish::Maildir.3 \ - Plagger::Plugin::Publish::OPML.3 \ - Plagger::Plugin::Publish::OutlineText.3 \ - Plagger::Plugin::Publish::PDF.3 \ - Plagger::Plugin::Publish::PalmDoc.3 \ - Plagger::Plugin::Publish::Pipe.3 \ - Plagger::Plugin::Publish::Planet.3 \ - Plagger::Plugin::Publish::Playlog.3 \ - Plagger::Plugin::Publish::PowerPoint.3 \ - Plagger::Plugin::Publish::SWF.3 \ - Plagger::Plugin::Publish::Serializer.3 \ - Plagger::Plugin::Publish::Speech::MacOSX.3 \ - Plagger::Plugin::Publish::Takahashi.3 \ - Plagger::Plugin::Publish::iCal.3 \ - Plagger::Plugin::Search::Estraier.3 \ - Plagger::Plugin::Search::Grep.3 \ - Plagger::Plugin::Search::KinoSearch.3 \ - Plagger::Plugin::Search::Namazu.3 \ - Plagger::Plugin::Search::Rast.3 \ - Plagger::Plugin::Search::Spotlight.3 \ - Plagger::Plugin::Subscription::Bloglines.3 \ - Plagger::Plugin::Subscription::Bookmarks.3 \ - Plagger::Plugin::Subscription::Config.3 \ - Plagger::Plugin::Subscription::DBI.3 \ - Plagger::Plugin::Subscription::FOAF.3 \ - Plagger::Plugin::Subscription::Feed.3 \ - Plagger::Plugin::Subscription::File.3 \ - Plagger::Plugin::Subscription::HatenaGroup.3 \ - Plagger::Plugin::Subscription::HatenaRSS.3 \ - Plagger::Plugin::Subscription::LivedoorReader.3 \ - Plagger::Plugin::Subscription::OPML.3 \ - Plagger::Plugin::Subscription::Odeo.3 \ - Plagger::Plugin::Subscription::PingServer.3 \ - Plagger::Plugin::Subscription::Planet.3 \ - Plagger::Plugin::Subscription::PlanetINI.3 \ - Plagger::Plugin::Subscription::XOXO.3 \ - Plagger::Plugin::Subscription::XPath.3 \ - Plagger::Plugin::Summary::AppleScript.3 \ - Plagger::Plugin::Summary::Auto.3 \ - Plagger::Plugin::Summary::English.3 \ - Plagger::Plugin::Summary::GetSen.3 \ - Plagger::Plugin::Summary::HatenaBookmark.3 \ - Plagger::Plugin::Summary::Japanese.3 \ - Plagger::Plugin::Summary::Simple.3 \ - Plagger::Plugin::Summary::TextOriginal.3 \ - Plagger::Plugin::Summary::TrackbackRDF.3 \ - Plagger::Plugin::UserAgent::AuthenRequest.3 \ - Plagger::Plugin::UserAgent::RequestHeader.3 \ - Plagger::Plugin::Widget::BloglinesSubscription.3 \ - Plagger::Plugin::Widget::BulkfeedsSpamReport.3 \ - Plagger::Plugin::Widget::Delicious.3 \ - Plagger::Plugin::Widget::HatenaBookmarkUsersCount.3 \ - Plagger::Plugin::Widget::Simple.3 \ - Plagger::Rule::Deduped.3 \ - Plagger::Rule::Fresh.3 \ - Plagger::Rule::URLBL.3 \ - Plagger::Template.3 - post-patch: @${REINPLACE_CMD} -i '' '/auto_install/d' ${WRKSRC}/Makefile.PL @${RM} ${WRKSRC}/lib/Plagger/Plugin/Publish/Feed.pm.orig post-install: -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/*.yaml ${EXAMPLESDIR} -.endif - @${MKDIR} ${DATADIR}/assets - (cd ${WRKSRC}/assets; ${TAR} cfz - . | ${TAR} zxf - -C ${DATADIR}/assets) + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/*.yaml ${STAGEDIR}${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${DATADIR}/assets + (cd ${WRKSRC}/assets; ${TAR} cfz - . | ${TAR} zxf - -C ${STAGEDIR}${DATADIR}/assets) -.include +.include Modified: head/textproc/p5-Plagger/pkg-plist ============================================================================== --- head/textproc/p5-Plagger/pkg-plist Tue Jan 21 21:44:18 2014 (r340664) +++ head/textproc/p5-Plagger/pkg-plist Tue Jan 21 21:45:44 2014 (r340665) @@ -1,5 +1,181 @@ bin/plagger bin/plagger-ircbot +%%PERL5_MAN3%%/Plagger.3.gz +%%PERL5_MAN3%%/Plagger::Cookies.3.gz +%%PERL5_MAN3%%/Plagger::Date.3.gz +%%PERL5_MAN3%%/Plagger::Plugin.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Aggregator::Null.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Aggregator::Simple.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Bundle::Defaults.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Bundle::Planet.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::2chSearch.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::AmazonAssociateReportJP.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::BloglinesCitations.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::Debug.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::FlickrSearch.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::Frepa.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::GoogleNews.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::Mailman.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::Mixi.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::MixiDiarySearch.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::POP3.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::PerlMonks.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::SVNLog.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::Script.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::Simple.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::YouTube.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::CustomFeed::iTunesRecentPlay.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::2chNewsokuTitle.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::2chRSSContent.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::AtomLinkRelated.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Babelfish.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Base.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::BlogPet.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::BloglinesContentNormalize.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::BreakEntriesToFeeds.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::BulkfeedsTerms.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::CompositeFeed.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::DegradeYouTube.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Delicious.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::DeliciousFeedTags.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Emoticon.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::EntryFullText.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::ExtractAuthorName.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::FeedBurnerPermalink.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::FeedFlareStripper.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::FetchEnclosure.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::FetchEnclosure::Curl.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::FetchEnclosure::ParallelUA.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::FetchEnclosure::Wget.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::FindEnclosures.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::FloatingDateTime.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::ForceTimeZone.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::GuessLanguage.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::GuessTimeZoneByDomain.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::HEADEnclosureMetadata.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::HTMLScrubber.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::HTMLTidy.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::HatenaBookmarkTag.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::HatenaBookmarkUsersCount.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::HatenaDiaryKeywordLink.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::HatenaDiaryKeywordUnlink.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::HatenaFormat.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::HatenaKeywordTag.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::ImageInfo.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Kansai.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::LivedoorClipUsersCount.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::LivedoorKeywordUnlink.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Markdown.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::POPFile.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Pipe.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Profanity.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::RSSLiberalDateTime.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::RSSTimeZoneString.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Regexp.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::ResolveRelativeLink.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::RewriteEnclosureURL.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Rule.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::SpamAssassin.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::StripRSSAd.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::StripTagsFromTitle.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::TTP.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::TagsToTitle.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::Thumbnail.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::TruePermalink.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::UnicodeNormalize.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Filter::tDiaryComment.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Namespace::ApplePhotocast.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Namespace::HatenaFotolife.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Namespace::MediaRSS.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Audio.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Balloon.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Beep.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Campfire.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Command.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Eject.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Eject::darwin.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Eject::freebsd.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Eject::linux.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Eject::mswin32.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::IRC.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::MSAgent.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::NetSend.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::OpenBrowser.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::OpenBrowser::FirefoxRemote.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::SSTP.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::Tiarra.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Notify::UpdatePing.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::2chdat.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::CSV.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Delicious.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Excel.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::FOAFRoll.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Feed.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Gmail.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::HatenaBookmark.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::IMAP.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::JSON.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::JavaScript.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::LivedoorClip.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::MT.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::MTWidget.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Maildir.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::OPML.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::OutlineText.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::PDF.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::PalmDoc.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Pipe.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Planet.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Playlog.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::PowerPoint.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::SWF.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Serializer.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Speech::MacOSX.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::Takahashi.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Publish::iCal.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Search::Estraier.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Search::Grep.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Search::KinoSearch.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Search::Namazu.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Search::Rast.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Search::Spotlight.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::Bloglines.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::Bookmarks.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::Config.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::DBI.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::FOAF.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::Feed.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::File.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::HatenaGroup.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::HatenaRSS.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::LivedoorReader.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::OPML.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::Odeo.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::PingServer.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::Planet.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::PlanetINI.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::XOXO.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Subscription::XPath.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Summary::AppleScript.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Summary::Auto.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Summary::English.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Summary::GetSen.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Summary::HatenaBookmark.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Summary::Japanese.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Summary::Simple.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Summary::TextOriginal.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Summary::TrackbackRDF.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::UserAgent::AuthenRequest.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::UserAgent::RequestHeader.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Widget::BloglinesSubscription.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Widget::BulkfeedsSpamReport.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Widget::Delicious.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Widget::HatenaBookmarkUsersCount.3.gz +%%PERL5_MAN3%%/Plagger::Plugin::Widget::Simple.3.gz +%%PERL5_MAN3%%/Plagger::Rule::Deduped.3.gz +%%PERL5_MAN3%%/Plagger::Rule::Fresh.3.gz +%%PERL5_MAN3%%/Plagger::Rule::URLBL.3.gz +%%PERL5_MAN3%%/Plagger::Template.3.gz %%SITE_PERL%%/Plagger.pm %%SITE_PERL%%/Plagger/Cache.pm %%SITE_PERL%%/Plagger/Cache/Null.pm From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 21:54:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A38B4EC; Tue, 21 Jan 2014 21:54:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 160DC1DC0; Tue, 21 Jan 2014 21:54:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LLsWuV077854; Tue, 21 Jan 2014 21:54:32 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LLsWTD077851; Tue, 21 Jan 2014 21:54:32 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401212154.s0LLsWTD077851@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 21:54:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340666 - head/devel/rubygem-ffi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 21:54:33 -0000 Author: swills Date: Tue Jan 21 21:54:32 2014 New Revision: 340666 URL: http://svnweb.freebsd.org/changeset/ports/340666 QAT: https://qat.redports.org/buildarchive/r340666/ Log: - Update to Version 1.9.3 - Change License to BSD - Add USE_RAKE PR: ports/185030 Submitted by: Horia Racoviceanu Modified: head/devel/rubygem-ffi/Makefile head/devel/rubygem-ffi/distinfo Modified: head/devel/rubygem-ffi/Makefile ============================================================================== --- head/devel/rubygem-ffi/Makefile Tue Jan 21 21:45:44 2014 (r340665) +++ head/devel/rubygem-ffi/Makefile Tue Jan 21 21:54:32 2014 (r340666) @@ -2,17 +2,18 @@ # $FreeBSD$ PORTNAME= ffi -PORTVERSION= 1.9.0 +PORTVERSION= 1.9.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extension for dynamic libraries & binding functions -LICENSE= LGPL3 +LICENSE= BSD LIB_DEPENDS= ffi:${PORTSDIR}/devel/libffi +USE_RAKE= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/devel/rubygem-ffi/distinfo ============================================================================== --- head/devel/rubygem-ffi/distinfo Tue Jan 21 21:45:44 2014 (r340665) +++ head/devel/rubygem-ffi/distinfo Tue Jan 21 21:54:32 2014 (r340666) @@ -1,2 +1,2 @@ -SHA256 (rubygem/ffi-1.9.0.gem) = 7e73075fd054440d03e9ebedfe9c0240e24783683ebe5351acedb2efbc4fd066 -SIZE (rubygem/ffi-1.9.0.gem) = 882176 +SHA256 (rubygem/ffi-1.9.3.gem) = 57977d095c1c324ac1cb134863180b34d5743fed2b6d7528adc5ec71a581e320 +SIZE (rubygem/ffi-1.9.3.gem) = 865280 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 22:22:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9C279FC; Tue, 21 Jan 2014 22:22:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D5CB31FCF; Tue, 21 Jan 2014 22:22:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LMMPl6089493; Tue, 21 Jan 2014 22:22:25 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LMMPm9089489; Tue, 21 Jan 2014 22:22:25 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401212222.s0LMMPm9089489@svn.freebsd.org> From: Steve Wills Date: Tue, 21 Jan 2014 22:22:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340667 - in head/www: . rubygem-haml-contrib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 22:22:26 -0000 Author: swills Date: Tue Jan 21 22:22:24 2014 New Revision: 340667 URL: http://svnweb.freebsd.org/changeset/ports/340667 QAT: https://qat.redports.org/buildarchive/r340667/ Log: This project contains various useful extensions to the Haml template language's Ruby implementation. Such extensions are useful enough to be distributed, but not widely used or on-topic enough to belong in Haml proper. This gives the Haml project a reasonable way to both demote current functionality, such as the Textile and Maruku filters, and add new experimental functionality that may later be added to the core. WWW: http://haml.info/ PR: ports/185061 Submitted by: Horia Racoviceanu Added: head/www/rubygem-haml-contrib/ head/www/rubygem-haml-contrib/Makefile (contents, props changed) head/www/rubygem-haml-contrib/distinfo (contents, props changed) head/www/rubygem-haml-contrib/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jan 21 21:54:32 2014 (r340666) +++ head/www/Makefile Tue Jan 21 22:22:24 2014 (r340667) @@ -1787,6 +1787,7 @@ SUBDIR += rubygem-gon SUBDIR += rubygem-haml SUBDIR += rubygem-haml-coderay + SUBDIR += rubygem-haml-contrib SUBDIR += rubygem-haml-rails SUBDIR += rubygem-hpricot SUBDIR += rubygem-http-cookie Added: head/www/rubygem-haml-contrib/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-haml-contrib/Makefile Tue Jan 21 22:22:24 2014 (r340667) @@ -0,0 +1,20 @@ +# Created by: Horia Racoviceanu +# $FreeBSD$ + +PORTNAME= haml-contrib +PORTVERSION= 1.0.0.1 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= horia@racoviceanu.com +COMMENT= Addons for the Ruby implementation of the Haml template language + +LICENSE= MIT + +RUN_DEPENDS= rubygem-haml>=4.0.0:${PORTSDIR}/www/rubygem-haml + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/www/rubygem-haml-contrib/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-haml-contrib/distinfo Tue Jan 21 22:22:24 2014 (r340667) @@ -0,0 +1,2 @@ +SHA256 (rubygem/haml-contrib-1.0.0.1.gem) = bd4d8196bd19de13ec92580f03354c976eec05de759c688fbe4abe5207f35b7d +SIZE (rubygem/haml-contrib-1.0.0.1.gem) = 6656 Added: head/www/rubygem-haml-contrib/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-haml-contrib/pkg-descr Tue Jan 21 22:22:24 2014 (r340667) @@ -0,0 +1,9 @@ +This project contains various useful extensions to the Haml template language's +Ruby implementation. Such extensions are useful enough to be distributed, but +not widely used or on-topic enough to belong in Haml proper. + +This gives the Haml project a reasonable way to both demote current +functionality, such as the Textile and Maruku filters, and add new experimental +functionality that may later be added to the core. + +WWW: http://haml.info/ From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 22:29:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65B91B3E; Tue, 21 Jan 2014 22:29:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F0FC1006; Tue, 21 Jan 2014 22:29:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LMTwLJ090744; Tue, 21 Jan 2014 22:29:58 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LMToLN090702; Tue, 21 Jan 2014 22:29:50 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401212229.s0LMToLN090702@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 22:29:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340668 - in head/textproc: p5-PPI-XS p5-PPIx-EditorTools p5-Parse-BooleanLogic p5-Parse-CSV p5-Parse-FixedLength p5-Parse-PhoneNumber p5-Perl-Critic-Bangs p5-Perl-MinimumVersion p5-Per... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 22:29:58 -0000 Author: mat Date: Tue Jan 21 22:29:50 2014 New Revision: 340668 URL: http://svnweb.freebsd.org/changeset/ports/340668 QAT: https://qat.redports.org/buildarchive/r340668/ Log: * Convert to staging * Add license * pet portlint Sponsored by: Absolight Modified: head/textproc/p5-PPI-XS/Makefile head/textproc/p5-PPI-XS/pkg-plist (contents, props changed) head/textproc/p5-PPIx-EditorTools/Makefile head/textproc/p5-PPIx-EditorTools/pkg-plist head/textproc/p5-Parse-BooleanLogic/Makefile head/textproc/p5-Parse-BooleanLogic/pkg-plist (contents, props changed) head/textproc/p5-Parse-CSV/Makefile head/textproc/p5-Parse-CSV/pkg-plist (contents, props changed) head/textproc/p5-Parse-FixedLength/Makefile head/textproc/p5-Parse-FixedLength/pkg-plist (contents, props changed) head/textproc/p5-Parse-PhoneNumber/Makefile head/textproc/p5-Parse-PhoneNumber/pkg-plist (contents, props changed) head/textproc/p5-Perl-Critic-Bangs/Makefile head/textproc/p5-Perl-Critic-Bangs/pkg-plist (contents, props changed) head/textproc/p5-Perl-MinimumVersion/Makefile head/textproc/p5-Perl-MinimumVersion/pkg-plist (contents, props changed) head/textproc/p5-PerlPoint-Converters/Makefile head/textproc/p5-PerlPoint-Converters/pkg-plist (contents, props changed) head/textproc/p5-Plucene-Analysis-CJKAnalyzer/Makefile head/textproc/p5-Plucene-Analysis-CJKAnalyzer/pkg-plist (contents, props changed) head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/Makefile head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/pkg-plist (contents, props changed) head/textproc/p5-Plucene/Makefile head/textproc/p5-Plucene/pkg-plist (contents, props changed) head/textproc/p5-Pod-HtmlEasy/Makefile head/textproc/p5-Pod-HtmlEasy/pkg-plist (contents, props changed) head/textproc/p5-Pod-Readme/Makefile (contents, props changed) head/textproc/p5-Pod-Readme/pkg-plist (contents, props changed) head/textproc/p5-Pod-WSDL/Makefile head/textproc/p5-Pod-WSDL/pkg-plist (contents, props changed) head/textproc/p5-Regexp-Common-profanity_us/Makefile head/textproc/p5-Regexp-Common-profanity_us/pkg-plist (contents, props changed) head/textproc/p5-Regexp-Common/Makefile head/textproc/p5-Regexp-Common/pkg-plist (contents, props changed) head/textproc/p5-Regexp-DefaultFlags/Makefile head/textproc/p5-Regexp-DefaultFlags/pkg-plist (contents, props changed) Modified: head/textproc/p5-PPI-XS/Makefile ============================================================================== --- head/textproc/p5-PPI-XS/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-PPI-XS/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -10,13 +10,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= XS acceleration for the PPI perl parser +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-PPI>=1.000:${PORTSDIR}/textproc/p5-PPI BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= PPI::XS.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-PPI-XS/pkg-plist ============================================================================== --- head/textproc/p5-PPI-XS/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-PPI-XS/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/PPI::XS.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/PPI/XS.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/PPI/XS/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/PPI/XS/XS.bs Modified: head/textproc/p5-PPIx-EditorTools/Makefile ============================================================================== --- head/textproc/p5-PPIx-EditorTools/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-PPIx-EditorTools/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -24,16 +24,4 @@ TEST_DEPENDS= p5-Test-Differences>=0:${P USES= perl5 USE_PERL5= configure -MAN3= PPIx::EditorTools.3 \ - PPIx::EditorTools::FindUnmatchedBrace.3 \ - PPIx::EditorTools::FindVariableDeclaration.3 \ - PPIx::EditorTools::IntroduceTemporaryVariable.3 \ - PPIx::EditorTools::Lexer.3 \ - PPIx::EditorTools::Outline.3 \ - PPIx::EditorTools::RenamePackage.3 \ - PPIx::EditorTools::RenamePackageFromPath.3 \ - PPIx::EditorTools::RenameVariable.3 \ - PPIx::EditorTools::ReturnObject.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-PPIx-EditorTools/pkg-plist ============================================================================== --- head/textproc/p5-PPIx-EditorTools/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-PPIx-EditorTools/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,13 @@ +%%PERL5_MAN3%%/PPIx::EditorTools.3.gz +%%PERL5_MAN3%%/PPIx::EditorTools::FindUnmatchedBrace.3.gz +%%PERL5_MAN3%%/PPIx::EditorTools::FindVariableDeclaration.3.gz +%%PERL5_MAN3%%/PPIx::EditorTools::IntroduceTemporaryVariable.3.gz +%%PERL5_MAN3%%/PPIx::EditorTools::Lexer.3.gz +%%PERL5_MAN3%%/PPIx::EditorTools::Outline.3.gz +%%PERL5_MAN3%%/PPIx::EditorTools::RenamePackage.3.gz +%%PERL5_MAN3%%/PPIx::EditorTools::RenamePackageFromPath.3.gz +%%PERL5_MAN3%%/PPIx::EditorTools::RenameVariable.3.gz +%%PERL5_MAN3%%/PPIx::EditorTools::ReturnObject.3.gz %%SITE_PERL%%/PPIx/EditorTools.pm %%SITE_PERL%%/PPIx/EditorTools/FindUnmatchedBrace.pm %%SITE_PERL%%/PPIx/EditorTools/FindVariableDeclaration.pm Modified: head/textproc/p5-Parse-BooleanLogic/Makefile ============================================================================== --- head/textproc/p5-Parse-BooleanLogic/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Parse-BooleanLogic/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= skreuzer@FreeBSD.org COMMENT= Parser of boolean expressions +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Regexp-Common>=2.122:${PORTSDIR}/textproc/p5-Regexp-Common \ p5-Module-Install>=0.91_1:${PORTSDIR}/devel/p5-Module-Install RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -18,7 +21,4 @@ TEST_DEPENDS= p5-Test-Deep>=0:${PORTSDIR USES= perl5 USE_PERL5= configure -MAN3= Parse::BooleanLogic.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Parse-BooleanLogic/pkg-plist ============================================================================== --- head/textproc/p5-Parse-BooleanLogic/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Parse-BooleanLogic/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Parse::BooleanLogic.3.gz %%SITE_PERL%%/Parse/BooleanLogic.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Parse/BooleanLogic/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Parse/BooleanLogic Modified: head/textproc/p5-Parse-CSV/Makefile ============================================================================== --- head/textproc/p5-Parse-CSV/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Parse-CSV/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= ports@FreeBSD.org COMMENT= Highly flexible CVS parser for large files +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Params-Util>=0.22:${PORTSDIR}/devel/p5-Params-Util \ p5-Text-CSV_XS>=0.42:${PORTSDIR}/textproc/p5-Text-CSV_XS RUN_DEPENDS= p5-Params-Util>=0.22:${PORTSDIR}/devel/p5-Params-Util \ @@ -18,7 +21,4 @@ RUN_DEPENDS= p5-Params-Util>=0.22:${PORT USES= perl5 USE_PERL5= configure -MAN3= Parse::CSV.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Parse-CSV/pkg-plist ============================================================================== --- head/textproc/p5-Parse-CSV/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Parse-CSV/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Parse::CSV.3.gz %%SITE_PERL%%/Parse/CSV.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Parse/CSV/.packlist @dirrmtry %%SITE_PERL%%/Parse Modified: head/textproc/p5-Parse-FixedLength/Makefile ============================================================================== --- head/textproc/p5-Parse-FixedLength/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Parse-FixedLength/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -13,7 +13,4 @@ COMMENT= Parse a string containing fixed USES= perl5 USE_PERL5= configure -MAN3= Parse::FixedLength.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Parse-FixedLength/pkg-plist ============================================================================== --- head/textproc/p5-Parse-FixedLength/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Parse-FixedLength/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Parse::FixedLength.3.gz %%SITE_PERL%%/Parse/FixedLength.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Parse/FixedLength/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Parse/FixedLength Modified: head/textproc/p5-Parse-PhoneNumber/Makefile ============================================================================== --- head/textproc/p5-Parse-PhoneNumber/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Parse-PhoneNumber/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -16,7 +16,4 @@ LICENSE_COMB= dual USES= perl5 USE_PERL5= modbuild -MAN3= Parse::PhoneNumber.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Parse-PhoneNumber/pkg-plist ============================================================================== --- head/textproc/p5-Parse-PhoneNumber/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Parse-PhoneNumber/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,2 +1,3 @@ +%%PERL5_MAN3%%/Parse::PhoneNumber.3.gz %%SITE_PERL%%/Parse/PhoneNumber.pm @dirrmtry %%SITE_PERL%%/Parse Modified: head/textproc/p5-Perl-Critic-Bangs/Makefile ============================================================================== --- head/textproc/p5-Perl-Critic-Bangs/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Perl-Critic-Bangs/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= ivan@serezhkin.com COMMENT= A collection of handy Perl::Critic policies +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Perl-Critic>=0:${PORTSDIR}/textproc/p5-Perl-Critic RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Perl-Critic>=0:${PORTSDIR}/textproc/p5-Test-Perl-Critic \ @@ -18,15 +21,4 @@ TEST_DEPENDS= p5-Test-Perl-Critic>=0:${P USES= perl5 USE_PERL5= configure -MAN3= Perl::Critic::Bangs.3 \ - Perl::Critic::Policy::Bangs::ProhibitUselessRegexModifiers.3 \ - Perl::Critic::Policy::Bangs::ProhibitNoPlan.3 \ - Perl::Critic::Policy::Bangs::ProhibitFlagComments.3 \ - Perl::Critic::Policy::Bangs::ProhibitNumberedNames.3 \ - Perl::Critic::Policy::Bangs::ProhibitRefProtoOrProto.3 \ - Perl::Critic::Policy::Bangs::ProhibitVagueNames.3 \ - Perl::Critic::Policy::Bangs::ProhibitCommentedOutCode.3 \ - Perl::Critic::Policy::Bangs::ProhibitBitwiseOperators.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Perl-Critic-Bangs/pkg-plist ============================================================================== --- head/textproc/p5-Perl-Critic-Bangs/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Perl-Critic-Bangs/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,12 @@ +%%PERL5_MAN3%%/Perl::Critic::Bangs.3.gz +%%PERL5_MAN3%%/Perl::Critic::Policy::Bangs::ProhibitUselessRegexModifiers.3.gz +%%PERL5_MAN3%%/Perl::Critic::Policy::Bangs::ProhibitNoPlan.3.gz +%%PERL5_MAN3%%/Perl::Critic::Policy::Bangs::ProhibitFlagComments.3.gz +%%PERL5_MAN3%%/Perl::Critic::Policy::Bangs::ProhibitNumberedNames.3.gz +%%PERL5_MAN3%%/Perl::Critic::Policy::Bangs::ProhibitRefProtoOrProto.3.gz +%%PERL5_MAN3%%/Perl::Critic::Policy::Bangs::ProhibitVagueNames.3.gz +%%PERL5_MAN3%%/Perl::Critic::Policy::Bangs::ProhibitCommentedOutCode.3.gz +%%PERL5_MAN3%%/Perl::Critic::Policy::Bangs::ProhibitBitwiseOperators.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Perl/Critic/Bangs/.packlist %%SITE_PERL%%/Perl/Critic/Bangs.pm %%SITE_PERL%%/Perl/Critic/Policy/Bangs/ProhibitBitwiseOperators.pm Modified: head/textproc/p5-Perl-MinimumVersion/Makefile ============================================================================== --- head/textproc/p5-Perl-MinimumVersion/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Perl-MinimumVersion/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -9,6 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Find a minimum required version of perl for Perl code +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-File-Find-Rule>=0.32:${PORTSDIR}/devel/p5-File-Find-Rule \ p5-File-Find-Rule-Perl>=1.04:${PORTSDIR}/devel/p5-File-Find-Rule-Perl \ p5-PPI>=1.215:${PORTSDIR}/textproc/p5-PPI \ @@ -22,10 +25,6 @@ TEST_DEPENDS= p5-Test-Script>=0:${PORTSD USES= perl5 USE_PERL5= configure -MAN1= perlver.1 -MAN3= Perl::MinimumVersion.3 - -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -i '' -e '/Test::/d' ${WRKSRC}/Makefile.PL Modified: head/textproc/p5-Perl-MinimumVersion/pkg-plist ============================================================================== --- head/textproc/p5-Perl-MinimumVersion/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Perl-MinimumVersion/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,7 +1,9 @@ bin/perlver +%%PERL5_MAN3%%/Perl::MinimumVersion.3.gz %%SITE_PERL%%/Perl/MinimumVersion.pm %%SITE_PERL%%/Perl/MinimumVersion/Reason.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Perl/MinimumVersion/.packlist +man/man1/perlver.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Perl/MinimumVersion @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Perl @dirrmtry %%SITE_PERL%%/Perl/MinimumVersion Modified: head/textproc/p5-PerlPoint-Converters/Makefile ============================================================================== --- head/textproc/p5-PerlPoint-Converters/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-PerlPoint-Converters/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -3,10 +3,10 @@ PORTNAME= PerlPoint-Converters PORTVERSION= 1.02.05 -DISTVERSION= ${PORTVERSION:C/\.(..)$/\1/} CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- +DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(..)$/\1/} MAINTAINER= perl@FreeBSD.org COMMENT= Convert PerlPoint docs into various formats @@ -17,15 +17,11 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure patch -NO_STAGE= yes +OPTIONS_DEFINE= DOCS -MAN1= pp2html.1 pp2latex.1 -MAN3= Bundle::PerlPoint.3 \ - PerlPoint::Converters.3 \ - PerlPoint::Tags::HTML.3 \ - PerlPoint::Tags::LaTeX.3 +.include -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} PORTDOCS= # suck all DOCSDIR post-patch: @@ -33,11 +29,11 @@ post-patch: @${PERL} -pi -e 's!../(images|pp2html_styles)!$$1!g' ${WRKSRC}/doc/*.cfg post-build: - @(cd ${WRKSRC}/doc && make) + @(cd ${WRKSRC}/doc && ${MAKE}) post-install: - @${MKDIR} ${DOCSDIR} - (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .endif .include Modified: head/textproc/p5-PerlPoint-Converters/pkg-plist ============================================================================== --- head/textproc/p5-PerlPoint-Converters/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-PerlPoint-Converters/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,10 +1,16 @@ bin/pp2html bin/pp2latex +%%PERL5_MAN3%%/Bundle::PerlPoint.3.gz +%%PERL5_MAN3%%/PerlPoint::Converters.3.gz +%%PERL5_MAN3%%/PerlPoint::Tags::HTML.3.gz +%%PERL5_MAN3%%/PerlPoint::Tags::LaTeX.3.gz %%SITE_PERL%%/Bundle/PerlPoint.pm %%SITE_PERL%%/PerlPoint/Converters.pm %%SITE_PERL%%/PerlPoint/Tags/HTML.pm %%SITE_PERL%%/PerlPoint/Tags/LaTeX.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/PerlPoint-Converters/.packlist +man/man1/pp2html.1.gz +man/man1/pp2latex.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/PerlPoint-Converters @dirrmtry %%SITE_PERL%%/PerlPoint/Tags @dirrmtry %%SITE_PERL%%/PerlPoint Modified: head/textproc/p5-Plucene-Analysis-CJKAnalyzer/Makefile ============================================================================== --- head/textproc/p5-Plucene-Analysis-CJKAnalyzer/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Plucene-Analysis-CJKAnalyzer/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= Analyzer for CJK texts +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-Plucene>=0:${PORTSDIR}/textproc/p5-Plucene BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML @@ -18,8 +21,4 @@ TEST_DEPENDS= p5-YAML>=0:${PORTSDIR}/tex USES= perl5 USE_PERL5= configure -MAN3= Plucene::Analysis::CJKAnalyzer.3 \ - Plucene::Analysis::CJKTokenizer.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Plucene-Analysis-CJKAnalyzer/pkg-plist ============================================================================== --- head/textproc/p5-Plucene-Analysis-CJKAnalyzer/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Plucene-Analysis-CJKAnalyzer/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Plucene::Analysis::CJKAnalyzer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::CJKTokenizer.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Plucene/Analysis/CJKAnalyzer/.packlist %%SITE_PERL%%/Plucene/Analysis/CJKAnalyzer.pm %%SITE_PERL%%/Plucene/Analysis/CJKTokenizer.pm Modified: head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/Makefile ============================================================================== --- head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -20,8 +20,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Plucene::Plugin::Analyzer::SnowballAnalyzer.3 \ - Plucene::Plugin::Analyzer::SnowballFilter.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/pkg-plist ============================================================================== --- head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Plucene::Plugin::Analyzer::SnowballAnalyzer.3.gz +%%PERL5_MAN3%%/Plucene::Plugin::Analyzer::SnowballFilter.3.gz %%SITE_PERL%%/Plucene/Plugin/Analyzer/SnowballAnalyzer.pm %%SITE_PERL%%/Plucene/Plugin/Analyzer/SnowballFilter.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Plucene/Plugin/Analyzer/SnowballAnalyzer/.packlist Modified: head/textproc/p5-Plucene/Makefile ============================================================================== --- head/textproc/p5-Plucene/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Plucene/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -25,73 +25,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Plucene.3 \ - Plucene::Analysis::Analyzer.3 \ - Plucene::Analysis::CharTokenizer.3 \ - Plucene::Analysis::LetterTokenizer.3 \ - Plucene::Analysis::LowerCaseFilter.3 \ - Plucene::Analysis::LowerCaseTokenizer.3 \ - Plucene::Analysis::PorterStemFilter.3 \ - Plucene::Analysis::SimpleAnalyzer.3 \ - Plucene::Analysis::Standard::StandardAnalyzer.3 \ - Plucene::Analysis::Standard::StandardTokenizer.3 \ - Plucene::Analysis::StopAnalyzer.3 \ - Plucene::Analysis::StopFilter.3 \ - Plucene::Analysis::Token.3 \ - Plucene::Analysis::TokenFilter.3 \ - Plucene::Analysis::Tokenizer.3 \ - Plucene::Analysis::WhitespaceAnalyzer.3 \ - Plucene::Analysis::WhitespaceTokenizer.3 \ - Plucene::Bitvector.3 \ - Plucene::Document.3 \ - Plucene::Document::DateSerializer.3 \ - Plucene::Document::Field.3 \ - Plucene::Index::DocumentWriter.3 \ - Plucene::Index::FieldInfos.3 \ - Plucene::Index::FieldsReader.3 \ - Plucene::Index::FieldsWriter.3 \ - Plucene::Index::Reader.3 \ - Plucene::Index::SegmentInfo.3 \ - Plucene::Index::SegmentInfos.3 \ - Plucene::Index::SegmentMergeInfo.3 \ - Plucene::Index::SegmentMerger.3 \ - Plucene::Index::SegmentReader.3 \ - Plucene::Index::SegmentTermDocs.3 \ - Plucene::Index::SegmentTermEnum.3 \ - Plucene::Index::SegmentTermPositions.3 \ - Plucene::Index::SegmentsReader.3 \ - Plucene::Index::SegmentsTermEnum.3 \ - Plucene::Index::Term.3 \ - Plucene::Index::TermInfo.3 \ - Plucene::Index::TermInfosReader.3 \ - Plucene::Index::TermInfosWriter.3 \ - Plucene::Index::Writer.3 \ - Plucene::QueryParser.3 \ - Plucene::Search::BooleanClause.3 \ - Plucene::Search::BooleanQuery.3 \ - Plucene::Search::BooleanScorer.3 \ - Plucene::Search::DateFilter.3 \ - Plucene::Search::Filter.3 \ - Plucene::Search::HitCollector.3 \ - Plucene::Search::Hits.3 \ - Plucene::Search::IndexSearcher.3 \ - Plucene::Search::PhrasePositions.3 \ - Plucene::Search::PhraseQuery.3 \ - Plucene::Search::PhraseScorer.3 \ - Plucene::Search::PhraseScorer::Exact.3 \ - Plucene::Search::PhraseScorer::Sloppy.3 \ - Plucene::Search::PrefixQuery.3 \ - Plucene::Search::Query.3 \ - Plucene::Search::Scorer.3 \ - Plucene::Search::Searcher.3 \ - Plucene::Search::Similarity.3 \ - Plucene::Search::TermQuery.3 \ - Plucene::Search::TermScorer.3 \ - Plucene::Search::TopDocs.3 \ - Plucene::Store::InputStream.3 \ - Plucene::Store::OutputStream.3 \ - Plucene::TestCase.3 \ - Plucene::Utils.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Plucene/pkg-plist ============================================================================== --- head/textproc/p5-Plucene/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Plucene/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,70 @@ +%%PERL5_MAN3%%/Plucene.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::Analyzer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::CharTokenizer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::LetterTokenizer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::LowerCaseFilter.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::LowerCaseTokenizer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::PorterStemFilter.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::SimpleAnalyzer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::Standard::StandardAnalyzer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::Standard::StandardTokenizer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::StopAnalyzer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::StopFilter.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::Token.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::TokenFilter.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::Tokenizer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::WhitespaceAnalyzer.3.gz +%%PERL5_MAN3%%/Plucene::Analysis::WhitespaceTokenizer.3.gz +%%PERL5_MAN3%%/Plucene::Bitvector.3.gz +%%PERL5_MAN3%%/Plucene::Document.3.gz +%%PERL5_MAN3%%/Plucene::Document::DateSerializer.3.gz +%%PERL5_MAN3%%/Plucene::Document::Field.3.gz +%%PERL5_MAN3%%/Plucene::Index::DocumentWriter.3.gz +%%PERL5_MAN3%%/Plucene::Index::FieldInfos.3.gz +%%PERL5_MAN3%%/Plucene::Index::FieldsReader.3.gz +%%PERL5_MAN3%%/Plucene::Index::FieldsWriter.3.gz +%%PERL5_MAN3%%/Plucene::Index::Reader.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentInfo.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentInfos.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentMergeInfo.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentMerger.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentReader.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentTermDocs.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentTermEnum.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentTermPositions.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentsReader.3.gz +%%PERL5_MAN3%%/Plucene::Index::SegmentsTermEnum.3.gz +%%PERL5_MAN3%%/Plucene::Index::Term.3.gz +%%PERL5_MAN3%%/Plucene::Index::TermInfo.3.gz +%%PERL5_MAN3%%/Plucene::Index::TermInfosReader.3.gz +%%PERL5_MAN3%%/Plucene::Index::TermInfosWriter.3.gz +%%PERL5_MAN3%%/Plucene::Index::Writer.3.gz +%%PERL5_MAN3%%/Plucene::QueryParser.3.gz +%%PERL5_MAN3%%/Plucene::Search::BooleanClause.3.gz +%%PERL5_MAN3%%/Plucene::Search::BooleanQuery.3.gz +%%PERL5_MAN3%%/Plucene::Search::BooleanScorer.3.gz +%%PERL5_MAN3%%/Plucene::Search::DateFilter.3.gz +%%PERL5_MAN3%%/Plucene::Search::Filter.3.gz +%%PERL5_MAN3%%/Plucene::Search::HitCollector.3.gz +%%PERL5_MAN3%%/Plucene::Search::Hits.3.gz +%%PERL5_MAN3%%/Plucene::Search::IndexSearcher.3.gz +%%PERL5_MAN3%%/Plucene::Search::PhrasePositions.3.gz +%%PERL5_MAN3%%/Plucene::Search::PhraseQuery.3.gz +%%PERL5_MAN3%%/Plucene::Search::PhraseScorer.3.gz +%%PERL5_MAN3%%/Plucene::Search::PhraseScorer::Exact.3.gz +%%PERL5_MAN3%%/Plucene::Search::PhraseScorer::Sloppy.3.gz +%%PERL5_MAN3%%/Plucene::Search::PrefixQuery.3.gz +%%PERL5_MAN3%%/Plucene::Search::Query.3.gz +%%PERL5_MAN3%%/Plucene::Search::Scorer.3.gz +%%PERL5_MAN3%%/Plucene::Search::Searcher.3.gz +%%PERL5_MAN3%%/Plucene::Search::Similarity.3.gz +%%PERL5_MAN3%%/Plucene::Search::TermQuery.3.gz +%%PERL5_MAN3%%/Plucene::Search::TermScorer.3.gz +%%PERL5_MAN3%%/Plucene::Search::TopDocs.3.gz +%%PERL5_MAN3%%/Plucene::Store::InputStream.3.gz +%%PERL5_MAN3%%/Plucene::Store::OutputStream.3.gz +%%PERL5_MAN3%%/Plucene::TestCase.3.gz +%%PERL5_MAN3%%/Plucene::Utils.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Plucene/.packlist %%SITE_PERL%%/Plucene.pm %%SITE_PERL%%/Plucene/Bitvector.pm Modified: head/textproc/p5-Pod-HtmlEasy/Makefile ============================================================================== --- head/textproc/p5-Pod-HtmlEasy/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Pod-HtmlEasy/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -23,8 +23,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN1= pod2indexed_html.pl.1 -MAN3= Pod::HtmlEasy.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Pod-HtmlEasy/pkg-plist ============================================================================== --- head/textproc/p5-Pod-HtmlEasy/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Pod-HtmlEasy/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -2,10 +2,12 @@ bin/debug.pl bin/pod2indexed_html.pl bin/podhtmleasy.pl bin/podhtmleasy.sh +%%PERL5_MAN3%%/Pod::HtmlEasy.3.gz %%SITE_PERL%%/Pod/HtmlEasy/Data.pm %%SITE_PERL%%/Pod/HtmlEasy/Parser.pm %%SITE_PERL%%/Pod/HtmlEasy.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod/HtmlEasy/.packlist +man/man1/pod2indexed_html.pl.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod/HtmlEasy @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod @dirrm %%SITE_PERL%%/Pod/HtmlEasy Modified: head/textproc/p5-Pod-Readme/Makefile ============================================================================== --- head/textproc/p5-Pod-Readme/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Pod-Readme/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -10,16 +10,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Convert POD to README file +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= perl5 shebangfix +USES= perl5 shebangfix dos2unix USE_PERL5= configure SHEBANG_FILES= bin/pod2readme t/* -USE_DOS2UNIX= yes - -MAN1= pod2readme.1 -MAN3= Pod::Readme.3 -NO_STAGE= yes .include Modified: head/textproc/p5-Pod-Readme/pkg-plist ============================================================================== --- head/textproc/p5-Pod-Readme/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Pod-Readme/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,6 +1,8 @@ bin/pod2readme +%%PERL5_MAN3%%/Pod::Readme.3.gz %%SITE_PERL%%/Pod/Readme.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod/Readme/.packlist +man/man1/pod2readme.1.gz @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod/Readme @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Pod @dirrmtry %%SITE_PERL%%/Pod Modified: head/textproc/p5-Pod-WSDL/Makefile ============================================================================== --- head/textproc/p5-Pod-WSDL/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Pod-WSDL/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Create WSDL documents from (extended) pod +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-IO-stringy>=2.110:${PORTSDIR}/devel/p5-IO-stringy \ p5-XML-Writer>=0.531:${PORTSDIR}/textproc/p5-XML-Writer \ p5-XML-XPath>=1.13:${PORTSDIR}/textproc/p5-XML-XPath @@ -18,17 +21,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Pod::WSDL.3 \ - Pod::WSDL::AUTOLOAD.3 \ - Pod::WSDL::Attr.3 \ - Pod::WSDL::Doc.3 \ - Pod::WSDL::Fault.3 \ - Pod::WSDL::Method.3 \ - Pod::WSDL::Param.3 \ - Pod::WSDL::Return.3 \ - Pod::WSDL::Type.3 \ - Pod::WSDL::Utils.3 \ - Pod::WSDL::Writer.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Pod-WSDL/pkg-plist ============================================================================== --- head/textproc/p5-Pod-WSDL/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Pod-WSDL/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,14 @@ +%%PERL5_MAN3%%/Pod::WSDL.3.gz +%%PERL5_MAN3%%/Pod::WSDL::AUTOLOAD.3.gz +%%PERL5_MAN3%%/Pod::WSDL::Attr.3.gz +%%PERL5_MAN3%%/Pod::WSDL::Doc.3.gz +%%PERL5_MAN3%%/Pod::WSDL::Fault.3.gz +%%PERL5_MAN3%%/Pod::WSDL::Method.3.gz +%%PERL5_MAN3%%/Pod::WSDL::Param.3.gz +%%PERL5_MAN3%%/Pod::WSDL::Return.3.gz +%%PERL5_MAN3%%/Pod::WSDL::Type.3.gz +%%PERL5_MAN3%%/Pod::WSDL::Utils.3.gz +%%PERL5_MAN3%%/Pod::WSDL::Writer.3.gz %%SITE_PERL%%/Pod/WSDL.pm %%SITE_PERL%%/Pod/WSDL/AUTOLOAD.pm %%SITE_PERL%%/Pod/WSDL/Attr.pm Modified: head/textproc/p5-Regexp-Common-profanity_us/Makefile ============================================================================== --- head/textproc/p5-Regexp-Common-profanity_us/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Regexp-Common-profanity_us/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -10,14 +10,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= Provide regexes for U.S. profanity +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Regexp::Common::profanity_us.3 \ - Regexp::Profanity::US.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Regexp-Common-profanity_us/pkg-plist ============================================================================== --- head/textproc/p5-Regexp-Common-profanity_us/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Regexp-Common-profanity_us/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Regexp::Common::profanity_us.3.gz +%%PERL5_MAN3%%/Regexp::Profanity::US.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Regexp/Common/profanity_us/.packlist %%SITE_PERL%%/Regexp/Common/profanity_us.pm %%SITE_PERL%%/Regexp/Profanity/US.pm Modified: head/textproc/p5-Regexp-Common/Makefile ============================================================================== --- head/textproc/p5-Regexp-Common/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Regexp-Common/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -10,43 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Regexp::Common - Provide commonly requested regular expressions +LICENSE= ART10 ART20 BSD3CLAUSE MIT +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= \ - Regexp::Common.3 \ - Regexp::Common::CC.3 \ - Regexp::Common::SEN.3 \ - Regexp::Common::URI.3 \ - Regexp::Common::URI::RFC1035.3 \ - Regexp::Common::URI::RFC1738.3 \ - Regexp::Common::URI::RFC1808.3 \ - Regexp::Common::URI::RFC2384.3 \ - Regexp::Common::URI::RFC2396.3 \ - Regexp::Common::URI::RFC2806.3 \ - Regexp::Common::URI::fax.3 \ - Regexp::Common::URI::file.3 \ - Regexp::Common::URI::ftp.3 \ - Regexp::Common::URI::gopher.3 \ - Regexp::Common::URI::http.3 \ - Regexp::Common::URI::news.3 \ - Regexp::Common::URI::pop.3 \ - Regexp::Common::URI::prospero.3 \ - Regexp::Common::URI::tel.3 \ - Regexp::Common::URI::telnet.3 \ - Regexp::Common::URI::tv.3 \ - Regexp::Common::URI::wais.3 \ - Regexp::Common::_support.3 \ - Regexp::Common::balanced.3 \ - Regexp::Common::comment.3 \ - Regexp::Common::delimited.3 \ - Regexp::Common::lingua.3 \ - Regexp::Common::list.3 \ - Regexp::Common::net.3 \ - Regexp::Common::number.3 \ - Regexp::Common::profanity.3 \ - Regexp::Common::whitespace.3 \ - Regexp::Common::zip.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Regexp-Common/pkg-plist ============================================================================== --- head/textproc/p5-Regexp-Common/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Regexp-Common/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,36 @@ +%%PERL5_MAN3%%/Regexp::Common.3.gz +%%PERL5_MAN3%%/Regexp::Common::CC.3.gz +%%PERL5_MAN3%%/Regexp::Common::SEN.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::RFC1035.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::RFC1738.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::RFC1808.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::RFC2384.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::RFC2396.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::RFC2806.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::fax.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::file.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::ftp.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::gopher.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::http.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::news.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::pop.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::prospero.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::tel.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::telnet.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::tv.3.gz +%%PERL5_MAN3%%/Regexp::Common::URI::wais.3.gz +%%PERL5_MAN3%%/Regexp::Common::_support.3.gz +%%PERL5_MAN3%%/Regexp::Common::balanced.3.gz +%%PERL5_MAN3%%/Regexp::Common::comment.3.gz +%%PERL5_MAN3%%/Regexp::Common::delimited.3.gz +%%PERL5_MAN3%%/Regexp::Common::lingua.3.gz +%%PERL5_MAN3%%/Regexp::Common::list.3.gz +%%PERL5_MAN3%%/Regexp::Common::net.3.gz +%%PERL5_MAN3%%/Regexp::Common::number.3.gz +%%PERL5_MAN3%%/Regexp::Common::profanity.3.gz +%%PERL5_MAN3%%/Regexp::Common::whitespace.3.gz +%%PERL5_MAN3%%/Regexp::Common::zip.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Regexp/Common/.packlist %%SITE_PERL%%/Regexp/Common/CC.pm %%SITE_PERL%%/Regexp/Common/SEN.pm Modified: head/textproc/p5-Regexp-DefaultFlags/Makefile ============================================================================== --- head/textproc/p5-Regexp-DefaultFlags/Makefile Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Regexp-DefaultFlags/Makefile Tue Jan 21 22:29:50 2014 (r340668) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= Set default flags on regular expressions +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= Regexp::DefaultFlags.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Regexp-DefaultFlags/pkg-plist ============================================================================== --- head/textproc/p5-Regexp-DefaultFlags/pkg-plist Tue Jan 21 22:22:24 2014 (r340667) +++ head/textproc/p5-Regexp-DefaultFlags/pkg-plist Tue Jan 21 22:29:50 2014 (r340668) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Regexp::DefaultFlags.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Regexp/DefaultFlags/.packlist %%SITE_PERL%%/Regexp/DefaultFlags.pm @dirrmtry %%SITE_PERL%%/Regexp From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 22:44:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73365D4E; Tue, 21 Jan 2014 22:44:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4501C1164; Tue, 21 Jan 2014 22:44:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LMil1D097719; Tue, 21 Jan 2014 22:44:47 GMT (envelope-from adamw@svn.freebsd.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LMiksP097717; Tue, 21 Jan 2014 22:44:46 GMT (envelope-from adamw@svn.freebsd.org) Message-Id: <201401212244.s0LMiksP097717@svn.freebsd.org> From: Adam Weinberger Date: Tue, 21 Jan 2014 22:44:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340669 - head/textproc/multimarkdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 22:44:47 -0000 Author: adamw Date: Tue Jan 21 22:44:46 2014 New Revision: 340669 URL: http://svnweb.freebsd.org/changeset/ports/340669 QAT: https://qat.redports.org/buildarchive/r340669/ Log: Update to 4.5.1. Modified: head/textproc/multimarkdown/Makefile head/textproc/multimarkdown/distinfo Modified: head/textproc/multimarkdown/Makefile ============================================================================== --- head/textproc/multimarkdown/Makefile Tue Jan 21 22:29:50 2014 (r340668) +++ head/textproc/multimarkdown/Makefile Tue Jan 21 22:44:46 2014 (r340669) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= multimarkdown -PORTVERSION= 4.5 +PORTVERSION= 4.5.1 CATEGORIES= textproc MASTER_SITES= https://codeload.github.com/fletcher/MultiMarkdown-4/legacy.tar.gz/${MM4_COMMIT}?dummy=/:MM4 \ https://codeload.github.com/fletcher/MMD-Support/legacy.tar.gz/${SUPPORT_COMMIT}?dummy=/:support \ @@ -17,9 +17,9 @@ COMMENT= Extended Markdown processor wit LICENSE= MIT -MM4_COMMIT= e0e74d0 +MM4_COMMIT= 5bd52a8 SUPPORT_COMMIT= 685c95c -CHEAT_COMMIT= c23d807 +CHEAT_COMMIT= 199dae8 GREG_COMMIT= 3f11f56 WRKSRC= ${WRKDIR}/fletcher-MultiMarkdown-4-${MM4_COMMIT} Modified: head/textproc/multimarkdown/distinfo ============================================================================== --- head/textproc/multimarkdown/distinfo Tue Jan 21 22:29:50 2014 (r340668) +++ head/textproc/multimarkdown/distinfo Tue Jan 21 22:44:46 2014 (r340669) @@ -1,8 +1,8 @@ -SHA256 (multimarkdown/multimarkdown-4.5.tar.gz) = 82411a68355b598746ddbb187d097fb6e2f889262c16b8867e69172ff3955786 -SIZE (multimarkdown/multimarkdown-4.5.tar.gz) = 113926 +SHA256 (multimarkdown/multimarkdown-4.5.1.tar.gz) = a70319052aa7e041e2dc8592e39a0636bc690bad1c518a2f637708eb9fa4f55b +SIZE (multimarkdown/multimarkdown-4.5.1.tar.gz) = 114120 SHA256 (multimarkdown/greg-3f11f56.tar.gz) = eaf3351ca60b533e15fbc175c13dd45802398240f172978b441592017bdabb4f SIZE (multimarkdown/greg-3f11f56.tar.gz) = 24133 -SHA256 (multimarkdown/human-markdown-reference-c23d807.tar.gz) = 6ebf2512d6c1e27ce21d205a3285a10d9fa07d883bb4dc549817f510fc928cee -SIZE (multimarkdown/human-markdown-reference-c23d807.tar.gz) = 53764 +SHA256 (multimarkdown/human-markdown-reference-199dae8.tar.gz) = 6b7c0e1acfa5f3c40ce09dfdb456161e2fc6cd60159e4b06d9dc7f8772a50c59 +SIZE (multimarkdown/human-markdown-reference-199dae8.tar.gz) = 53813 SHA256 (multimarkdown/MMD-Support-685c95c.tar.gz) = fd6e17f527be51dfa10c5cf9c234b72def462b5a0256e588f77cbe7eca26884d SIZE (multimarkdown/MMD-Support-685c95c.tar.gz) = 16863 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 22:56:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD8B4F54; Tue, 21 Jan 2014 22:56:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 96D421206; Tue, 21 Jan 2014 22:56:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LMu74W002219; Tue, 21 Jan 2014 22:56:07 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LMu0Up002156; Tue, 21 Jan 2014 22:56:00 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401212256.s0LMu0Up002156@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 22:56:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340670 - in head: archivers/bzip2 archivers/gcpio archivers/gtar archivers/gzip archivers/lrzip archivers/py-lzma archivers/quazip archivers/thunar-archive-plugin astro/gpstk audio/aft... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 22:56:07 -0000 Author: bapt Date: Tue Jan 21 22:55:59 2014 New Revision: 340670 URL: http://svnweb.freebsd.org/changeset/ports/340670 QAT: https://qat.redports.org/buildarchive/r340670/ Log: Fix properties on pkg-plist Modified: head/archivers/bzip2/pkg-plist (contents, props changed) head/archivers/gcpio/pkg-plist (contents, props changed) head/archivers/gtar/pkg-plist (contents, props changed) head/archivers/gzip/pkg-plist (contents, props changed) head/archivers/lrzip/pkg-plist (contents, props changed) head/archivers/py-lzma/pkg-plist (contents, props changed) head/archivers/quazip/pkg-plist (contents, props changed) head/archivers/thunar-archive-plugin/pkg-plist (contents, props changed) head/astro/gpstk/pkg-plist (contents, props changed) head/audio/aften/pkg-plist (contents, props changed) head/audio/decibel-audio-player/pkg-plist (contents, props changed) head/audio/espeak/pkg-plist (contents, props changed) head/audio/flac/pkg-plist (contents, props changed) head/audio/gimmix/pkg-plist (contents, props changed) head/audio/ipod-sharp/pkg-plist (contents, props changed) head/audio/libao/pkg-plist (contents, props changed) head/audio/libechonest/Makefile head/audio/libechonest/pkg-plist (contents, props changed) head/audio/liblastfm/pkg-plist (contents, props changed) head/audio/libogg/pkg-plist (contents, props changed) head/audio/libvorbis/pkg-plist (contents, props changed) head/audio/mma/pkg-plist (contents, props changed) head/audio/mp3blaster/pkg-plist (contents, props changed) head/audio/muine/pkg-plist (contents, props changed) head/audio/opencore-amr/pkg-plist (contents, props changed) head/audio/py-mpd/pkg-plist (contents, props changed) head/audio/sonata/pkg-plist (contents, props changed) head/audio/tomahawk/pkg-plist (contents, props changed) head/audio/tse3/pkg-plist head/audio/ufmcontrol-i18n/pkg-plist (contents, props changed) head/audio/umurmur/pkg-plist (contents, props changed) head/audio/vagalume/pkg-plist (contents, props changed) head/audio/vorbis-tools/pkg-plist (contents, props changed) head/audio/xmms-shn/pkg-plist (contents, props changed) head/audio/xmms-xf86audio/pkg-plist (contents, props changed) Modified: head/archivers/bzip2/pkg-plist ============================================================================== --- head/archivers/bzip2/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/archivers/bzip2/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/bzip2 bin/bunzip2 bin/bzcat Modified: head/archivers/gcpio/pkg-plist ============================================================================== --- head/archivers/gcpio/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/archivers/gcpio/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gcpio man/man1/gcpio.1.gz %%NLS%%share/locale/da/LC_MESSAGES/cpio.mo Modified: head/archivers/gtar/pkg-plist ============================================================================== --- head/archivers/gtar/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/archivers/gtar/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gtar libexec/grmt %%NLS%%share/locale/bg/LC_MESSAGES/tar.mo Modified: head/archivers/gzip/pkg-plist ============================================================================== --- head/archivers/gzip/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/archivers/gzip/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gunzip bin/gzexe bin/gzip Modified: head/archivers/lrzip/pkg-plist ============================================================================== --- head/archivers/lrzip/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/archivers/lrzip/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%DOCSDIR%%/AUTHORS %%DOCSDIR%%/BUGS %%DOCSDIR%%/COPYING Modified: head/archivers/py-lzma/pkg-plist ============================================================================== --- head/archivers/py-lzma/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/archivers/py-lzma/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/archivers/quazip/pkg-plist ============================================================================== --- head/archivers/quazip/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/archivers/quazip/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/quazip/JlCompress.h include/quazip/crypt.h include/quazip/ioapi.h Modified: head/archivers/thunar-archive-plugin/pkg-plist ============================================================================== --- head/archivers/thunar-archive-plugin/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/archivers/thunar-archive-plugin/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/thunarx-2/thunar-archive-plugin.so lib/thunarx-2/thunar-archive-plugin.la libexec/thunar-archive-plugin/ark.tap Modified: head/astro/gpstk/pkg-plist ============================================================================== --- head/astro/gpstk/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/astro/gpstk/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/CalcDOPs bin/ConstellationList bin/DDBase Modified: head/audio/aften/pkg-plist ============================================================================== --- head/audio/aften/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/aften/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/aften bin/wavfilter bin/wavinfo Modified: head/audio/decibel-audio-player/pkg-plist ============================================================================== --- head/audio/decibel-audio-player/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/decibel-audio-player/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/decibel-audio-player bin/decibel-audio-player-remote share/applications/decibel-audio-player.desktop Modified: head/audio/espeak/pkg-plist ============================================================================== --- head/audio/espeak/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/espeak/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/espeak include/espeak/speak_lib.h lib/libespeak.a Modified: head/audio/flac/pkg-plist ============================================================================== --- head/audio/flac/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/flac/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/flac bin/metaflac include/FLAC++/all.h Modified: head/audio/gimmix/pkg-plist ============================================================================== --- head/audio/gimmix/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/gimmix/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gimmix man/man1/gimmix.1.gz %%NLS%%share/locale/de/LC_MESSAGES/gimmix.mo Modified: head/audio/ipod-sharp/pkg-plist ============================================================================== --- head/audio/ipod-sharp/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/ipod-sharp/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/ipod-sharp/ipod-sharp-firmware.dll lib/ipod-sharp/ipod-sharp-firmware.dll.mdb lib/ipod-sharp/ipod-sharp-ui.dll Modified: head/audio/libao/pkg-plist ============================================================================== --- head/audio/libao/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/libao/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/ao/ao.h include/ao/os_types.h include/ao/plugin.h Modified: head/audio/libechonest/Makefile ============================================================================== --- head/audio/libechonest/Makefile Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/libechonest/Makefile Tue Jan 21 22:55:59 2014 (r340670) @@ -20,7 +20,6 @@ GH_COMMIT= c02854c PLIST_SUB= PORTVERSION=${PORTVERSION} USES= cmake pkgconfig -NO_STAGE= yes USE_GITHUB= yes USE_LDCONFIG= yes Modified: head/audio/libechonest/pkg-plist ============================================================================== --- head/audio/libechonest/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/libechonest/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/echonest/Artist.h include/echonest/ArtistTypes.h include/echonest/AudioSummary.h Modified: head/audio/liblastfm/pkg-plist ============================================================================== --- head/audio/liblastfm/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/liblastfm/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/lastfm/AbstractType.h include/lastfm/Album.h include/lastfm/Artist.h Modified: head/audio/libogg/pkg-plist ============================================================================== --- head/audio/libogg/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/libogg/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/ogg/config_types.h include/ogg/ogg.h include/ogg/os_types.h Modified: head/audio/libvorbis/pkg-plist ============================================================================== --- head/audio/libvorbis/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/libvorbis/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/vorbis/codec.h include/vorbis/vorbisenc.h include/vorbis/vorbisfile.h Modified: head/audio/mma/pkg-plist ============================================================================== --- head/audio/mma/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/mma/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/mma %%PORTDOCS%%%%DOCSDIR%%/html/README %%PORTDOCS%%%%DOCSDIR%%/html/lib/black.gif Modified: head/audio/mp3blaster/pkg-plist ============================================================================== --- head/audio/mp3blaster/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/mp3blaster/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/mp3blaster bin/mp3tag bin/nmixer Modified: head/audio/muine/pkg-plist ============================================================================== --- head/audio/muine/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/muine/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/muine share/doc/muine/muine-docs.zip share/doc/muine/muine-docs.tree Modified: head/audio/opencore-amr/pkg-plist ============================================================================== --- head/audio/opencore-amr/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/opencore-amr/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/opencore-amrnb/interf_dec.h include/opencore-amrnb/interf_enc.h include/opencore-amrwb/dec_if.h Modified: head/audio/py-mpd/pkg-plist ============================================================================== --- head/audio/py-mpd/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/py-mpd/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/mpd.py %%PYTHON_SITELIBDIR%%/mpd.pyc %%PYTHON_SITELIBDIR%%/mpd.pyo Modified: head/audio/sonata/pkg-plist ============================================================================== --- head/audio/sonata/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/sonata/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/sonata %%PYTHON_SITELIBDIR%%/mmkeys.so %%PYTHON_SITELIBDIR%%/sonata/__init__.py Modified: head/audio/tomahawk/pkg-plist ============================================================================== --- head/audio/tomahawk/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/tomahawk/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/tomahawk include/libtomahawk/AclRegistry.h include/libtomahawk/ActionCollection.h Modified: head/audio/tse3/pkg-plist ============================================================================== --- head/audio/tse3/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/tse3/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD: /tmp/pcvs/ports/audio/tse3/pkg-plist,v 1.6 2006-02-23 10:34:43 ade Exp $ bin/tse3play include/tse3/DisplayParams.h include/tse3/Error.h Modified: head/audio/ufmcontrol-i18n/pkg-plist ============================================================================== --- head/audio/ufmcontrol-i18n/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/ufmcontrol-i18n/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/tkradio bin/ufmcontrol include/libufm.h Modified: head/audio/umurmur/pkg-plist ============================================================================== --- head/audio/umurmur/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/umurmur/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ @stopdaemon umurmur @unexec if cmp -s %D/etc/umurmur/umurmur.conf.sample %D/etc/umurmur/umurmur.conf; then rm -f %D/etc/umurmur/umurmur.conf; fi etc/umurmur/umurmur.conf.sample Modified: head/audio/vagalume/pkg-plist ============================================================================== --- head/audio/vagalume/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/vagalume/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/vagalume %%DBUS%%bin/vagalumectl man/man1/vagalume.1.gz Modified: head/audio/vorbis-tools/pkg-plist ============================================================================== --- head/audio/vorbis-tools/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/vorbis-tools/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/ogg123 bin/oggdec bin/oggenc Modified: head/audio/xmms-shn/pkg-plist ============================================================================== --- head/audio/xmms-shn/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/xmms-shn/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/xmms/Input/libshn.so %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%@dirrm %%DOCSDIR%% Modified: head/audio/xmms-xf86audio/pkg-plist ============================================================================== --- head/audio/xmms-xf86audio/pkg-plist Tue Jan 21 22:44:46 2014 (r340669) +++ head/audio/xmms-xf86audio/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/xmms/General/libxf86audio.so %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 23:18:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66C7846A; Tue, 21 Jan 2014 23:18:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F4BD138A; Tue, 21 Jan 2014 23:18:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LNILda011620; Tue, 21 Jan 2014 23:18:21 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LNI5JZ011529; Tue, 21 Jan 2014 23:18:05 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401212318.s0LNI5JZ011529@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 23:18:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340671 - in head: benchmarks/flowgrind biology/crux biology/jalview biology/libgenome biology/paml cad/alliance cad/fidocadj cad/pcb chinese/FreeWnn-lib chinese/FreeWnn-server chinese/... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 23:18:21 -0000 Author: bapt Date: Tue Jan 21 23:18:05 2014 New Revision: 340671 URL: http://svnweb.freebsd.org/changeset/ports/340671 QAT: https://qat.redports.org/buildarchive/r340671/ Log: Fix properties on pkg-plist Modified: head/benchmarks/flowgrind/pkg-plist (contents, props changed) head/biology/crux/pkg-plist (contents, props changed) head/biology/jalview/pkg-plist (contents, props changed) head/biology/libgenome/pkg-plist (contents, props changed) head/biology/paml/pkg-plist (contents, props changed) head/cad/alliance/pkg-plist (contents, props changed) head/cad/fidocadj/pkg-plist (contents, props changed) head/cad/pcb/pkg-plist (contents, props changed) head/chinese/FreeWnn-lib/pkg-plist (contents, props changed) head/chinese/FreeWnn-server/pkg-plist (contents, props changed) head/chinese/bg5pdf/pkg-plist (contents, props changed) head/chinese/bg5ps/pkg-plist (contents, props changed) head/chinese/c2t/pkg-plist (contents, props changed) head/chinese/celvis/pkg-plist (contents, props changed) head/chinese/cless/pkg-plist (contents, props changed) head/chinese/gb2ps/pkg-plist (contents, props changed) head/chinese/hc/pkg-plist (contents, props changed) head/chinese/lunar/pkg-plist (contents, props changed) head/chinese/xpdf/pkg-plist (contents, props changed) head/comms/birda/pkg-plist (contents, props changed) head/comms/conserver/pkg-plist (contents, props changed) head/comms/py-serial/pkg-plist (contents, props changed) head/comms/scmxx/pkg-plist (contents, props changed) head/comms/wy60/pkg-plist (contents, props changed) head/converters/p5-Encode/pkg-plist (contents, props changed) head/converters/shftool/pkg-plist (contents, props changed) head/databases/credis/pkg-plist (contents, props changed) head/databases/datamodeler/pkg-plist (contents, props changed) head/databases/db46/pkg-plist (contents, props changed) head/databases/db47/pkg-plist (contents, props changed) head/databases/db48/pkg-plist (contents, props changed) head/databases/dbh/pkg-plist (contents, props changed) head/databases/firebird20-server/pkg-plist (contents, props changed) head/databases/firebird20-server/pkg-plist.client (contents, props changed) head/databases/firebird21-server/pkg-plist (contents, props changed) head/databases/firebird21-server/pkg-plist.client (contents, props changed) head/databases/firebird25-server/pkg-plist (contents, props changed) head/databases/firebird25-server/pkg-plist.client (contents, props changed) head/databases/gdbm/pkg-plist (contents, props changed) head/databases/gnats4/pkg-plist (contents, props changed) head/databases/ip4r/pkg-plist (contents, props changed) head/databases/libdbi/pkg-plist (contents, props changed) head/databases/libhsclient/pkg-plist (contents, props changed) head/databases/liquibase/pkg-plist (contents, props changed) head/databases/memcachedb/pkg-plist (contents, props changed) head/databases/mysql-proxy/Makefile head/databases/mysql-proxy/distinfo head/databases/mysql-proxy/pkg-plist (contents, props changed) head/databases/openark-kit/pkg-plist (contents, props changed) head/databases/p5-DBIx-Class-VirtualColumns/pkg-plist (contents, props changed) head/databases/pgpool-II-22/pkg-plist (contents, props changed) head/databases/pgpool-II-23/pkg-plist (contents, props changed) head/databases/pgpool-II-30/pkg-plist (contents, props changed) head/databases/pgpool-II/pkg-plist (contents, props changed) head/databases/pgpool/pkg-plist (contents, props changed) head/databases/powerarchitect/pkg-plist (contents, props changed) head/databases/py-Elixir/pkg-plist (contents, props changed) head/databases/py-MySQLdb/pkg-plist (contents, props changed) head/databases/py-htsql-mysql/pkg-plist (contents, props changed) head/databases/py-htsql-pgsql/pkg-plist (contents, props changed) head/databases/py-postgresql/pkg-plist (contents, props changed) head/databases/py-pylibmc/pkg-plist (contents, props changed) head/databases/py-sqlalchemy-devel/pkg-plist (contents, props changed) head/databases/py-sqlalchemy/pkg-plist (contents, props changed) head/databases/py-sqlalchemy06/pkg-plist (contents, props changed) head/databases/py-swift/pkg-plist (contents, props changed) head/databases/py-swiftclient/pkg-plist (contents, props changed) head/databases/sharedance/pkg-plist (contents, props changed) head/databases/sqldeveloper/pkg-plist (contents, props changed) head/databases/sqlitemanager/pkg-plist (contents, props changed) head/databases/tokyocabinet/pkg-plist (contents, props changed) head/databases/tokyotyrant/pkg-plist (contents, props changed) head/databases/xapian-core10/pkg-plist (contents, props changed) Modified: head/benchmarks/flowgrind/pkg-plist ============================================================================== --- head/benchmarks/flowgrind/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/benchmarks/flowgrind/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/flowgrind bin/flowgrind-stop sbin/flowgrindd Modified: head/biology/crux/pkg-plist ============================================================================== --- head/biology/crux/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/biology/crux/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/crux bin/redpoint bin/MrRogers Modified: head/biology/jalview/pkg-plist ============================================================================== --- head/biology/jalview/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/biology/jalview/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/jalview %%DATADIR%%/activation.jar %%DATADIR%%/xercesImpl.jar Modified: head/biology/libgenome/pkg-plist ============================================================================== --- head/biology/libgenome/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/biology/libgenome/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/gn/gnABISource.h include/gn/gnBaseFeature.h include/gn/gnBaseFilter.h Modified: head/biology/paml/pkg-plist ============================================================================== --- head/biology/paml/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/biology/paml/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/baseml bin/basemlg bin/chi2 Modified: head/cad/alliance/pkg-plist ============================================================================== --- head/cad/alliance/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/cad/alliance/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ alliance/lib/libMph.la alliance/lib/libMph.a alliance/lib/libMpu.la Modified: head/cad/fidocadj/pkg-plist ============================================================================== --- head/cad/fidocadj/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/cad/fidocadj/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/fidocadj %%DATADIR%%/fidocadj.jar %%PORTDOCS%%%%DOCSDIR%%/fidocadj_manual_en.pdf Modified: head/cad/pcb/pkg-plist ============================================================================== --- head/cad/pcb/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/cad/pcb/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/MergePCBPS bin/Merge_dimPCBPS bin/pcb Modified: head/chinese/FreeWnn-lib/pkg-plist ============================================================================== --- head/chinese/FreeWnn-lib/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/FreeWnn-lib/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/cwnn/commonhd.h include/cwnn/cplib.h include/cwnn/jllib.h Modified: head/chinese/FreeWnn-server/pkg-plist ============================================================================== --- head/chinese/FreeWnn-server/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/FreeWnn-server/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/cWnn4/catod bin/cWnn4/catof bin/cWnn4/cdtoa Modified: head/chinese/bg5pdf/pkg-plist ============================================================================== --- head/chinese/bg5pdf/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/bg5pdf/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/bg5pdf bin/gbpdf %%PYTHON_SITELIBDIR%%/bg5pdflib.so Modified: head/chinese/bg5ps/pkg-plist ============================================================================== --- head/chinese/bg5ps/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/bg5ps/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PORTDOCS%%%%DOCSDIR%%/COPYING.txt %%PORTDOCS%%%%DOCSDIR%%/bg5ps.sgml %%PORTDOCS%%%%DOCSDIR%%/bg5ps.txt Modified: head/chinese/c2t/pkg-plist ============================================================================== --- head/chinese/c2t/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/c2t/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/c2t man/man1/c2t.1.gz share/chinese/gb/TONEPY.tit Modified: head/chinese/celvis/pkg-plist ============================================================================== --- head/chinese/celvis/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/celvis/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/celvis bin/cvi bin/virec Modified: head/chinese/cless/pkg-plist ============================================================================== --- head/chinese/cless/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/cless/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/cless bin/clesskey man/man1/cless.1.gz Modified: head/chinese/gb2ps/pkg-plist ============================================================================== --- head/chinese/gb2ps/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/gb2ps/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gb2ps share/chinese/cover.ps share/chinese/gb/cfan24.ccf Modified: head/chinese/hc/pkg-plist ============================================================================== --- head/chinese/hc/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/hc/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/b2g bin/g2b bin/hc Modified: head/chinese/lunar/pkg-plist ============================================================================== --- head/chinese/lunar/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/lunar/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/lunar man/man1/lunar.1.gz share/chinese/lunar.bitmap Modified: head/chinese/xpdf/pkg-plist ============================================================================== --- head/chinese/xpdf/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/chinese/xpdf/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%DATADIR%%/chinese-simplified/Adobe-GB1.cidToUnicode %%DATADIR%%/chinese-simplified/EUC-CN.unicodeMap %%DATADIR%%/chinese-simplified/GBK.unicodeMap Modified: head/comms/birda/pkg-plist ============================================================================== --- head/comms/birda/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/comms/birda/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/ircomm bin/irobex bin/irs Modified: head/comms/conserver/pkg-plist ============================================================================== --- head/comms/conserver/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/comms/conserver/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/console etc/conserver.cf.eg sbin/autologin Modified: head/comms/py-serial/pkg-plist ============================================================================== --- head/comms/py-serial/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/comms/py-serial/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/miniterm.py %%PYTHON_SITELIBDIR%%/serial/__init__.py %%PYTHON_SITELIBDIR%%/serial/__init__.pyc Modified: head/comms/scmxx/pkg-plist ============================================================================== --- head/comms/scmxx/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/comms/scmxx/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/adr2vcf bin/apoconv bin/scmxx Modified: head/comms/wy60/pkg-plist ============================================================================== --- head/comms/wy60/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/comms/wy60/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/wy60 @unexec if cmp %D/etc/wy60.rc.sample %D/etc/wy60.rc 2>/dev/null; then rm -f %D/etc/wy60.rc; fi etc/wy60.rc.sample Modified: head/converters/p5-Encode/pkg-plist ============================================================================== --- head/converters/p5-Encode/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/converters/p5-Encode/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%SITE_PERL%%/%%PERL_ARCH%%/Encode.pm %%SITE_PERL%%/%%PERL_ARCH%%/Encode/Alias.pm %%SITE_PERL%%/%%PERL_ARCH%%/Encode/Byte.pm Modified: head/converters/shftool/pkg-plist ============================================================================== --- head/converters/shftool/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/converters/shftool/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,2 +1 @@ -@comment $FreeBSD$ bin/shftool Modified: head/databases/credis/pkg-plist ============================================================================== --- head/databases/credis/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/credis/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/credis.h lib/libcredis.a lib/libcredis.so Modified: head/databases/datamodeler/pkg-plist ============================================================================== --- head/databases/datamodeler/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/datamodeler/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/datamodeler %%DATADIR%%/datamodeler/bin/datamodeler %%DATADIR%%/datamodeler/bin/datamodeler-Darwin.conf Modified: head/databases/db46/pkg-plist ============================================================================== --- head/databases/db46/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/db46/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/berkeley_db_svc-4.6 bin/db46/berkeley_db_svc bin/db46/db_archive Modified: head/databases/db47/pkg-plist ============================================================================== --- head/databases/db47/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/db47/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/berkeley_db_svc-4.7 bin/db47/berkeley_db_svc bin/db47/db_archive Modified: head/databases/db48/pkg-plist ============================================================================== --- head/databases/db48/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/db48/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/db48/db_archive bin/db48/db_checkpoint bin/db48/db_deadlock Modified: head/databases/dbh/pkg-plist ============================================================================== --- head/databases/dbh/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/dbh/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/dbh/dbh.h lib/libdbh2.so lib/libdbh2.so.0 Modified: head/databases/firebird20-server/pkg-plist ============================================================================== --- head/databases/firebird20-server/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/firebird20-server/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/fb_inet_server bin/fb_lock_mgr bin/fb_lock_print Modified: head/databases/firebird20-server/pkg-plist.client ============================================================================== --- head/databases/firebird20-server/pkg-plist.client Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/firebird20-server/pkg-plist.client Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gpre bin/isql-fb bin/qli Modified: head/databases/firebird21-server/pkg-plist ============================================================================== --- head/databases/firebird21-server/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/firebird21-server/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/fb_inet_server bin/fb_lock_mgr bin/fb_lock_print Modified: head/databases/firebird21-server/pkg-plist.client ============================================================================== --- head/databases/firebird21-server/pkg-plist.client Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/firebird21-server/pkg-plist.client Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gpre bin/isql-fb bin/qli Modified: head/databases/firebird25-server/pkg-plist ============================================================================== --- head/databases/firebird25-server/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/firebird25-server/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/fbguard bin/fbsplit bin/fbstat Modified: head/databases/firebird25-server/pkg-plist.client ============================================================================== --- head/databases/firebird25-server/pkg-plist.client Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/firebird25-server/pkg-plist.client Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gpre bin/isql-fb bin/qli Modified: head/databases/gdbm/pkg-plist ============================================================================== --- head/databases/gdbm/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/gdbm/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gdbm_dump bin/gdbm_load bin/gdbmtool Modified: head/databases/gnats4/pkg-plist ============================================================================== --- head/databases/gnats4/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/gnats4/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/edit-pr bin/getclose bin/install-sid Modified: head/databases/ip4r/pkg-plist ============================================================================== --- head/databases/ip4r/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/ip4r/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/postgresql/ip4r.so share/doc/postgresql/contrib/README.ip4r share/postgresql/contrib/ip4r.sql Modified: head/databases/libdbi/pkg-plist ============================================================================== --- head/databases/libdbi/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/libdbi/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/dbi/dbd.h include/dbi/dbi-dev.h include/dbi/dbi.h Modified: head/databases/libhsclient/pkg-plist ============================================================================== --- head/databases/libhsclient/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/libhsclient/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/handlersocket/allocator.hpp include/handlersocket/config.hpp include/handlersocket/mutex.hpp Modified: head/databases/liquibase/pkg-plist ============================================================================== --- head/databases/liquibase/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/liquibase/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%DATADIR%%/liquibase.jar bin/liquibase @dirrmtry %%DATADIR%% Modified: head/databases/memcachedb/pkg-plist ============================================================================== --- head/databases/memcachedb/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/memcachedb/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ @stopdaemon memcachedb bin/memcachedb @dirrmtry /var/db/memcachedb Modified: head/databases/mysql-proxy/Makefile ============================================================================== --- head/databases/mysql-proxy/Makefile Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/mysql-proxy/Makefile Tue Jan 21 23:18:05 2014 (r340671) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mysql-proxy -PORTVERSION= 0.8.3 +PORTVERSION= 0.8.4 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_MYSQL} MASTER_SITE_SUBDIR= MySQL-Proxy @@ -13,16 +13,14 @@ COMMENT= Monitor, analyze, or transform LIB_DEPENDS= libevent-1.4.so:${PORTSDIR}/devel/libevent \ libglib-2.0.so:${PORTSDIR}/devel/glib20 -CONFIGURE_ARGS+= --with-lua=lua-5.1 --with-mysql=${LOCALBASE}/bin/mysql_config --docdir=${DATADIR} --enable-self-contained +CONFIGURE_ARGS+= --with-lua=lua-${LUA_VER} --with-mysql=${LOCALBASE}/bin/mysql_config --docdir=${DATADIR} --enable-self-contained CFLAGS+= -I${LOCALBASE}/include CONFIGURE_ENV+= PKG_CONFIG_PATH="${LUA_PREFIX}/share/doc/${LUA_SUBDIR}/etc" LDFLAGS+= -L${LOCALBASE}/lib -L${LUA_LIBDIR} GNU_CONFIGURE= yes -USES= pkgconfig iconv +USES= pkgconfig iconv lua USE_LDCONFIG= yes -USE_LUA= 5.1+ USE_MYSQL= yes USE_RC_SUBR= mysql-proxy -NO_STAGE= yes .include Modified: head/databases/mysql-proxy/distinfo ============================================================================== --- head/databases/mysql-proxy/distinfo Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/mysql-proxy/distinfo Tue Jan 21 23:18:05 2014 (r340671) @@ -1,2 +1,2 @@ -SHA256 (mysql-proxy-0.8.3.tar.gz) = 80c48100759346f016751532f1fe9eef17a1015955544d18d9c14ab518d03cfe -SIZE (mysql-proxy-0.8.3.tar.gz) = 890540 +SHA256 (mysql-proxy-0.8.4.tar.gz) = 44b9b6fa8142cb5cde0eb22c7be9589c320ce74b570d7f42c0ad79a52dd22563 +SIZE (mysql-proxy-0.8.4.tar.gz) = 952125 Modified: head/databases/mysql-proxy/pkg-plist ============================================================================== --- head/databases/mysql-proxy/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/mysql-proxy/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/mysql-binlog-dump bin/mysql-myisam-dump bin/mysql-proxy Modified: head/databases/openark-kit/pkg-plist ============================================================================== --- head/databases/openark-kit/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/openark-kit/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/oak-apply-ri bin/oak-block-account bin/oak-chunk-update Modified: head/databases/p5-DBIx-Class-VirtualColumns/pkg-plist ============================================================================== --- head/databases/p5-DBIx-Class-VirtualColumns/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/p5-DBIx-Class-VirtualColumns/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%SITE_PERL%%/DBIx/Class/VirtualColumns.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Class/VirtualColumns/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Class/VirtualColumns Modified: head/databases/pgpool-II-22/pkg-plist ============================================================================== --- head/databases/pgpool-II-22/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/pgpool-II-22/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/pcp_attach_node bin/pcp_detach_node bin/pcp_node_count Modified: head/databases/pgpool-II-23/pkg-plist ============================================================================== --- head/databases/pgpool-II-23/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/pgpool-II-23/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/pcp_attach_node bin/pcp_detach_node bin/pcp_node_count Modified: head/databases/pgpool-II-30/pkg-plist ============================================================================== --- head/databases/pgpool-II-30/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/pgpool-II-30/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/pcp_attach_node bin/pcp_detach_node bin/pcp_node_count Modified: head/databases/pgpool-II/pkg-plist ============================================================================== --- head/databases/pgpool-II/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/pgpool-II/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/pcp_attach_node bin/pcp_detach_node bin/pcp_node_count Modified: head/databases/pgpool/pkg-plist ============================================================================== --- head/databases/pgpool/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/pgpool/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/pgpool etc/pgpool.conf.sample etc/pool_hba.conf.sample Modified: head/databases/powerarchitect/pkg-plist ============================================================================== --- head/databases/powerarchitect/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/powerarchitect/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/powerarchitect %%DATADIR%%/architect.jar %%DATADIR%%/jdbc/sqlserver_2005.jar Modified: head/databases/py-Elixir/pkg-plist ============================================================================== --- head/databases/py-Elixir/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-Elixir/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,2 +1 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% Modified: head/databases/py-MySQLdb/pkg-plist ============================================================================== --- head/databases/py-MySQLdb/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-MySQLdb/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/databases/py-htsql-mysql/pkg-plist ============================================================================== --- head/databases/py-htsql-mysql/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-htsql-mysql/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/databases/py-htsql-pgsql/pkg-plist ============================================================================== --- head/databases/py-htsql-pgsql/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-htsql-pgsql/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/databases/py-postgresql/pkg-plist ============================================================================== --- head/databases/py-postgresql/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-postgresql/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/postgresql/alock.py %%PYTHON_SITELIBDIR%%/postgresql/alock.pyc %%PYTHON_SITELIBDIR%%/postgresql/alock.pyo Modified: head/databases/py-pylibmc/pkg-plist ============================================================================== --- head/databases/py-pylibmc/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-pylibmc/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/_pylibmc.so %%PYTHON_SITELIBDIR%%/pylibmc/__init__.py %%PYTHON_SITELIBDIR%%/pylibmc/__init__.pyc Modified: head/databases/py-sqlalchemy-devel/pkg-plist ============================================================================== --- head/databases/py-sqlalchemy-devel/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-sqlalchemy-devel/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/databases/py-sqlalchemy/pkg-plist ============================================================================== --- head/databases/py-sqlalchemy/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-sqlalchemy/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/databases/py-sqlalchemy06/pkg-plist ============================================================================== --- head/databases/py-sqlalchemy06/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-sqlalchemy06/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/databases/py-swift/pkg-plist ============================================================================== --- head/databases/py-swift/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-swift/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ etc/swift/account-server.conf-sample etc/swift/container-server.conf-sample etc/swift/dispersion.conf-sample Modified: head/databases/py-swiftclient/pkg-plist ============================================================================== --- head/databases/py-swiftclient/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/py-swiftclient/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,3 +1,2 @@ -@comment $FreeBSD$ bin/swift man/man1/swift.1.gz Modified: head/databases/sharedance/pkg-plist ============================================================================== --- head/databases/sharedance/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/sharedance/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%DATADIR%%/session_handler.php %%DATADIR%%/sharedance.php %%DATADIR%%/test_session.php Modified: head/databases/sqldeveloper/pkg-plist ============================================================================== --- head/databases/sqldeveloper/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/sqldeveloper/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/sqldeveloper %%DATADIR%%/dataminer/demos/cuecards/GettingStarted/identify.xml %%DATADIR%%/dataminer/demos/cuecards/StarSchemaMining/StarSchemaMining.xml Modified: head/databases/sqlitemanager/pkg-plist ============================================================================== --- head/databases/sqlitemanager/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/sqlitemanager/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%WWWDIR_REL%%/CHANGES %%WWWDIR_REL%%/INSTALL %%WWWDIR_REL%%/LICENCE Modified: head/databases/tokyocabinet/pkg-plist ============================================================================== --- head/databases/tokyocabinet/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/tokyocabinet/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/tcamgr bin/tcamttest bin/tcatest Modified: head/databases/tokyotyrant/pkg-plist ============================================================================== --- head/databases/tokyotyrant/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/tokyotyrant/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%DATADIR%%/COPYING %%DATADIR%%/ChangeLog %%DATADIR%%/THANKS Modified: head/databases/xapian-core10/pkg-plist ============================================================================== --- head/databases/xapian-core10/pkg-plist Tue Jan 21 22:55:59 2014 (r340670) +++ head/databases/xapian-core10/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/quartzcheck bin/quartzcompact bin/quartzdump From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 23:21:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 88B5F5A0; Tue, 21 Jan 2014 23:21:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 68E5A143F; Tue, 21 Jan 2014 23:21:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LNLEKv014774; Tue, 21 Jan 2014 23:21:14 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LNLADx014494; Tue, 21 Jan 2014 23:21:10 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401212321.s0LNLADx014494@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 21 Jan 2014 23:21:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340672 - in head/textproc: p5-Regexp-IPv6 p5-SGML-Parser-OpenSP p5-SQL-Tokenizer p5-Search-Odeum p5-Senna p5-Solr p5-Sort-Fields p5-Sort-Naturally X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 23:21:14 -0000 Author: mat Date: Tue Jan 21 23:21:10 2014 New Revision: 340672 URL: http://svnweb.freebsd.org/changeset/ports/340672 QAT: https://qat.redports.org/buildarchive/r340672/ Log: * Convert to staging * Add license * pet portlint Sponsored by: Absolight Modified: head/textproc/p5-Regexp-IPv6/Makefile head/textproc/p5-Regexp-IPv6/pkg-plist (contents, props changed) head/textproc/p5-SGML-Parser-OpenSP/Makefile head/textproc/p5-SGML-Parser-OpenSP/pkg-plist (contents, props changed) head/textproc/p5-SQL-Tokenizer/Makefile head/textproc/p5-SQL-Tokenizer/pkg-plist (contents, props changed) head/textproc/p5-Search-Odeum/Makefile head/textproc/p5-Search-Odeum/pkg-descr (contents, props changed) head/textproc/p5-Search-Odeum/pkg-plist (contents, props changed) head/textproc/p5-Senna/Makefile head/textproc/p5-Senna/pkg-plist (contents, props changed) head/textproc/p5-Solr/Makefile head/textproc/p5-Solr/pkg-plist (contents, props changed) head/textproc/p5-Sort-Fields/Makefile head/textproc/p5-Sort-Fields/pkg-plist (contents, props changed) head/textproc/p5-Sort-Naturally/Makefile head/textproc/p5-Sort-Naturally/pkg-plist (contents, props changed) Modified: head/textproc/p5-Regexp-IPv6/Makefile ============================================================================== --- head/textproc/p5-Regexp-IPv6/Makefile Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Regexp-IPv6/Makefile Tue Jan 21 23:21:10 2014 (r340672) @@ -13,7 +13,4 @@ COMMENT= Regular expression for IPv6 add USES= perl5 USE_PERL5= configure -MAN3= Regexp::IPv6.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Regexp-IPv6/pkg-plist ============================================================================== --- head/textproc/p5-Regexp-IPv6/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Regexp-IPv6/pkg-plist Tue Jan 21 23:21:10 2014 (r340672) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Regexp::IPv6.3.gz %%SITE_PERL%%/Regexp/IPv6.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Regexp/IPv6/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Regexp/IPv6 Modified: head/textproc/p5-SGML-Parser-OpenSP/Makefile ============================================================================== --- head/textproc/p5-SGML-Parser-OpenSP/Makefile Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-SGML-Parser-OpenSP/Makefile Tue Jan 21 23:21:10 2014 (r340672) @@ -26,9 +26,6 @@ USE_PERL5= configure CC= ${CXX} CONFIGURE_ARGS+="INC=-I${LOCALBASE}/include" -MAN3= SGML::Parser::OpenSP.3 SGML::Parser::OpenSP::Tools.3 - -NO_STAGE= yes post-patch: (cd ${WRKSRC} ; \ ${REINPLACE_CMD} "s|%%LOCALBASE%%|${LOCALBASE}|g" Makefile.PL ) Modified: head/textproc/p5-SGML-Parser-OpenSP/pkg-plist ============================================================================== --- head/textproc/p5-SGML-Parser-OpenSP/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-SGML-Parser-OpenSP/pkg-plist Tue Jan 21 23:21:10 2014 (r340672) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/SGML::Parser::OpenSP.3.gz +%%PERL5_MAN3%%/SGML::Parser::OpenSP::Tools.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/SGML/Parser/OpenSP/OpenSP.so %%SITE_PERL%%/%%PERL_ARCH%%/auto/SGML/Parser/OpenSP/OpenSP.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/SGML/Parser/OpenSP/.packlist Modified: head/textproc/p5-SQL-Tokenizer/Makefile ============================================================================== --- head/textproc/p5-SQL-Tokenizer/Makefile Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-SQL-Tokenizer/Makefile Tue Jan 21 23:21:10 2014 (r340672) @@ -17,7 +17,4 @@ LICENSE_COMB= dual USES= perl5 USE_PERL5= configure -MAN3= SQL::Tokenizer.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-SQL-Tokenizer/pkg-plist ============================================================================== --- head/textproc/p5-SQL-Tokenizer/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-SQL-Tokenizer/pkg-plist Tue Jan 21 23:21:10 2014 (r340672) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/SQL::Tokenizer.3.gz %%SITE_PERL%%/SQL/Tokenizer.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/SQL/Tokenizer/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/SQL/Tokenizer Modified: head/textproc/p5-Search-Odeum/Makefile ============================================================================== --- head/textproc/p5-Search-Odeum/Makefile Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Search-Odeum/Makefile Tue Jan 21 23:21:10 2014 (r340672) @@ -12,16 +12,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= Perl interface to the Odeum inverted index API -LIB_DEPENDS= qdbm:${PORTSDIR}/databases/qdbm +LIB_DEPENDS= libqdbm.so:${PORTSDIR}/databases/qdbm CFLAGS+= -I${LOCALBASE}/include -CONFIGURE_ENV= CFLAGS="${CFLAGS}" USES= perl5 USE_PERL5= configure -MAN3= Search::Odeum.3 \ - Search::Odeum::Document.3 \ - Search::Odeum::Result.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Search-Odeum/pkg-descr ============================================================================== --- head/textproc/p5-Search-Odeum/pkg-descr Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Search-Odeum/pkg-descr Tue Jan 21 23:21:10 2014 (r340672) @@ -1,4 +1,4 @@ Search::Odeum is an interface to the Odeum API. Odeum is the inverted index API which is a part of qdbm database library. -WWW: http://search.cpan.org/dist/Search-Odeum/ +WWW: http://search.cpan.org/dist/Search-Odeum/ Modified: head/textproc/p5-Search-Odeum/pkg-plist ============================================================================== --- head/textproc/p5-Search-Odeum/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Search-Odeum/pkg-plist Tue Jan 21 23:21:10 2014 (r340672) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/Search::Odeum.3.gz +%%PERL5_MAN3%%/Search::Odeum::Document.3.gz +%%PERL5_MAN3%%/Search::Odeum::Result.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/Search/Odeum.pm %%SITE_PERL%%/%%PERL_ARCH%%/Search/Odeum/Document.pm %%SITE_PERL%%/%%PERL_ARCH%%/Search/Odeum/Result.pm Modified: head/textproc/p5-Senna/Makefile ============================================================================== --- head/textproc/p5-Senna/Makefile Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Senna/Makefile Tue Jan 21 23:21:10 2014 (r340672) @@ -10,6 +10,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl module for Embeddable Fulltext Search Engine +LICENSE= LGPL21 + BUILD_DEPENDS= senna-cfg:${PORTSDIR}/textproc/senna RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -17,11 +19,5 @@ USES= perl5 USE_PERL5= modbuild CONFIGURE_ARGS+= Modified: head/textproc/p5-Senna/pkg-plist ============================================================================== --- head/textproc/p5-Senna/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Senna/pkg-plist Tue Jan 21 23:21:10 2014 (r340672) @@ -1,3 +1,16 @@ +%%PERL5_MAN3%%/Senna.3.gz +%%PERL5_MAN3%%/Senna::Constants.3.gz +%%PERL5_MAN3%%/Senna::Index.3.gz +%%PERL5_MAN3%%/Senna::OptArg::Select.3.gz +%%PERL5_MAN3%%/Senna::OptArg::Sort.3.gz +%%PERL5_MAN3%%/Senna::Query.3.gz +%%PERL5_MAN3%%/Senna::RC.3.gz +%%PERL5_MAN3%%/Senna::Record.3.gz +%%PERL5_MAN3%%/Senna::Records.3.gz +%%PERL5_MAN3%%/Senna::Set.3.gz +%%PERL5_MAN3%%/Senna::Snippet.3.gz +%%PERL5_MAN3%%/Senna::Symbol.3.gz +%%PERL5_MAN3%%/Senna::Values.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/Senna.pm %%SITE_PERL%%/%%PERL_ARCH%%/Senna/Constants.pm %%SITE_PERL%%/%%PERL_ARCH%%/Senna/Index.pm Modified: head/textproc/p5-Solr/Makefile ============================================================================== --- head/textproc/p5-Solr/Makefile Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Solr/Makefile Tue Jan 21 23:21:10 2014 (r340672) @@ -20,7 +20,4 @@ USES= perl5 USE_PERL5= configure WRKSRC= ${WRKDIR}/${PORTNAME} -MAN3= Solr.3 Solr::HTTPUpdateHandler.3 Solr::Schema.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Solr/pkg-plist ============================================================================== --- head/textproc/p5-Solr/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Solr/pkg-plist Tue Jan 21 23:21:10 2014 (r340672) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/Solr.3.gz +%%PERL5_MAN3%%/Solr::HTTPUpdateHandler.3.gz +%%PERL5_MAN3%%/Solr::Schema.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Solr/.packlist %%SITE_PERL%%/Solr.pm %%SITE_PERL%%/Solr/HTTPUpdateHandler.pm Modified: head/textproc/p5-Sort-Fields/Makefile ============================================================================== --- head/textproc/p5-Sort-Fields/Makefile Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Sort-Fields/Makefile Tue Jan 21 23:21:10 2014 (r340672) @@ -13,7 +13,4 @@ COMMENT= Perl module to sort lines conta USES= perl5 USE_PERL5= configure -MAN3= Sort::Fields.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Sort-Fields/pkg-plist ============================================================================== --- head/textproc/p5-Sort-Fields/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Sort-Fields/pkg-plist Tue Jan 21 23:21:10 2014 (r340672) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Sort::Fields.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sort/Fields/.packlist %%SITE_PERL%%/Sort/Fields.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sort/Fields Modified: head/textproc/p5-Sort-Naturally/Makefile ============================================================================== --- head/textproc/p5-Sort-Naturally/Makefile Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Sort-Naturally/Makefile Tue Jan 21 23:21:10 2014 (r340672) @@ -16,7 +16,4 @@ LICENSE_COMB= dual USES= perl5 USE_PERL5= configure -MAN3= Sort::Naturally.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Sort-Naturally/pkg-plist ============================================================================== --- head/textproc/p5-Sort-Naturally/pkg-plist Tue Jan 21 23:18:05 2014 (r340671) +++ head/textproc/p5-Sort-Naturally/pkg-plist Tue Jan 21 23:21:10 2014 (r340672) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Sort::Naturally.3.gz %%SITE_PERL%%/Sort/Naturally.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sort/Naturally/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sort/Naturally From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 23:22:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18EA9689; Tue, 21 Jan 2014 23:22:57 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CE0E01449; Tue, 21 Jan 2014 23:22:56 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 74B08BDC64; Wed, 22 Jan 2014 00:22:55 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 519C8BDC2E; Wed, 22 Jan 2014 00:22:55 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 67592CCB8FF3; Wed, 22 Jan 2014 00:22:53 +0100 (CET) Date: Wed, 22 Jan 2014 00:22:50 +0100 From: Mathieu Arnold To: Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340671 - in head: benchmarks/flowgrind biology/crux biology/jalview biology/libgenome biology/paml cad/alliance cad/fidocadj cad/pcb chinese/FreeWnn-lib chinese/FreeWnn-server chinese/... Message-ID: <469124D30C1AA0E1250C432D@atuin.in.mat.cc> In-Reply-To: <201401212318.s0LNI5JZ011529@svn.freebsd.org> References: <201401212318.s0LNI5JZ011529@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 23:22:57 -0000 +--On 21 janvier 2014 23:18:05 +0000 Baptiste Daroussin wrote: | head/databases/mysql-proxy/Makefile | head/databases/mysql-proxy/distinfo I'd say this one was not intented :-) -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 23:38:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2DBEC79; Tue, 21 Jan 2014 23:38:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8550415B2; Tue, 21 Jan 2014 23:38:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LNcRmW019319; Tue, 21 Jan 2014 23:38:27 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LNcRRP019317; Tue, 21 Jan 2014 23:38:27 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401212338.s0LNcRRP019317@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 23:38:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340673 - head/databases/mysql-proxy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 23:38:27 -0000 Author: bapt Date: Tue Jan 21 23:38:26 2014 New Revision: 340673 URL: http://svnweb.freebsd.org/changeset/ports/340673 QAT: https://qat.redports.org/buildarchive/r340673/ Log: Back out unintentional changes and fix pkg-plist properties Reported by: mat Modified: head/databases/mysql-proxy/Makefile head/databases/mysql-proxy/distinfo Modified: head/databases/mysql-proxy/Makefile ============================================================================== --- head/databases/mysql-proxy/Makefile Tue Jan 21 23:21:10 2014 (r340672) +++ head/databases/mysql-proxy/Makefile Tue Jan 21 23:38:26 2014 (r340673) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mysql-proxy -PORTVERSION= 0.8.4 +PORTVERSION= 0.8.3 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_MYSQL} MASTER_SITE_SUBDIR= MySQL-Proxy @@ -13,14 +13,16 @@ COMMENT= Monitor, analyze, or transform LIB_DEPENDS= libevent-1.4.so:${PORTSDIR}/devel/libevent \ libglib-2.0.so:${PORTSDIR}/devel/glib20 -CONFIGURE_ARGS+= --with-lua=lua-${LUA_VER} --with-mysql=${LOCALBASE}/bin/mysql_config --docdir=${DATADIR} --enable-self-contained +CONFIGURE_ARGS+= --with-lua=lua-5.1 --with-mysql=${LOCALBASE}/bin/mysql_config --docdir=${DATADIR} --enable-self-contained CFLAGS+= -I${LOCALBASE}/include CONFIGURE_ENV+= PKG_CONFIG_PATH="${LUA_PREFIX}/share/doc/${LUA_SUBDIR}/etc" LDFLAGS+= -L${LOCALBASE}/lib -L${LUA_LIBDIR} GNU_CONFIGURE= yes -USES= pkgconfig iconv lua +USES= pkgconfig iconv USE_LDCONFIG= yes +USE_LUA= 5.1+ USE_MYSQL= yes USE_RC_SUBR= mysql-proxy +NO_STAGE= yes .include Modified: head/databases/mysql-proxy/distinfo ============================================================================== --- head/databases/mysql-proxy/distinfo Tue Jan 21 23:21:10 2014 (r340672) +++ head/databases/mysql-proxy/distinfo Tue Jan 21 23:38:26 2014 (r340673) @@ -1,2 +1,2 @@ -SHA256 (mysql-proxy-0.8.4.tar.gz) = 44b9b6fa8142cb5cde0eb22c7be9589c320ce74b570d7f42c0ad79a52dd22563 -SIZE (mysql-proxy-0.8.4.tar.gz) = 952125 +SHA256 (mysql-proxy-0.8.3.tar.gz) = 80c48100759346f016751532f1fe9eef17a1015955544d18d9c14ab518d03cfe +SIZE (mysql-proxy-0.8.3.tar.gz) = 890540 From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 23:40:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A9474D87; Tue, 21 Jan 2014 23:40:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 907AD15C4; Tue, 21 Jan 2014 23:40:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LNesEm032854; Tue, 21 Jan 2014 23:40:54 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LNeNrC032413; Tue, 21 Jan 2014 23:40:23 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401212340.s0LNeNrC032413@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 21 Jan 2014 23:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340674 - in head: deskutils/adesklets deskutils/freemind deskutils/labyrinth deskutils/org-mode.el deskutils/teapot deskutils/tomboy deskutils/tomboy-plugin-latex deskutils/tomboy-plug... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 21 Jan 2014 23:40:54 -0000 Author: bapt Date: Tue Jan 21 23:40:21 2014 New Revision: 340674 URL: http://svnweb.freebsd.org/changeset/ports/340674 QAT: https://qat.redports.org/buildarchive/r340674/ Log: Fix properties on pkg-plist Modified: head/deskutils/adesklets/pkg-plist (contents, props changed) head/deskutils/freemind/pkg-plist (contents, props changed) head/deskutils/labyrinth/pkg-plist (contents, props changed) head/deskutils/org-mode.el/pkg-plist (contents, props changed) head/deskutils/teapot/pkg-plist (contents, props changed) head/deskutils/tomboy-plugin-latex/pkg-plist (contents, props changed) head/deskutils/tomboy-plugin-reminder/pkg-plist (contents, props changed) head/deskutils/tomboy-plugin-todo/pkg-plist (contents, props changed) head/deskutils/tomboy/pkg-plist (contents, props changed) head/devel/apache-ant/pkg-plist (contents, props changed) head/devel/apiextractor/pkg-plist (contents, props changed) head/devel/avr-gdb/pkg-plist (contents, props changed) head/devel/bglibs/pkg-plist (contents, props changed) head/devel/bisoncpp/pkg-plist (contents, props changed) head/devel/buildtool-doc/pkg-plist (contents, props changed) head/devel/buildtool/pkg-plist (contents, props changed) head/devel/cgdb/pkg-plist (contents, props changed) head/devel/compiz-bcop/pkg-plist (contents, props changed) head/devel/configkit/pkg-plist (contents, props changed) head/devel/cook/pkg-plist (contents, props changed) head/devel/cutter/pkg-plist (contents, props changed) head/devel/cvs-devel/pkg-plist (contents, props changed) head/devel/d-feet/pkg-plist (contents, props changed) head/devel/dbus-sharp-glib/pkg-plist (contents, props changed) head/devel/dbus-sharp/pkg-plist (contents, props changed) head/devel/dissy/pkg-plist (contents, props changed) head/devel/distcc/pkg-plist (contents, props changed) head/devel/ditrack/pkg-plist (contents, props changed) head/devel/dmalloc/pkg-plist (contents, props changed) head/devel/flickrnet/pkg-plist (contents, props changed) head/devel/generatorrunner/pkg-plist (contents, props changed) head/devel/gettext/pkg-plist (contents, props changed) head/devel/gio-sharp/pkg-plist (contents, props changed) head/devel/google-gdata/pkg-plist (contents, props changed) head/devel/hs-cabal-install/pkg-plist (contents, props changed) head/devel/hs-git-annex/pkg-plist (contents, props changed) head/devel/hs-haddock/pkg-plist (contents, props changed) head/devel/hyena/pkg-plist (contents, props changed) head/devel/icmake/pkg-plist (contents, props changed) head/devel/libast/pkg-plist (contents, props changed) head/devel/libbobcat/pkg-plist (contents, props changed) head/devel/libee/pkg-plist (contents, props changed) head/devel/libestr/pkg-plist (contents, props changed) head/devel/libfreefare/pkg-plist (contents, props changed) head/devel/liblcfg/pkg-plist (contents, props changed) head/devel/libnfc/pkg-plist (contents, props changed) head/devel/libshhmsg/pkg-plist (contents, props changed) head/devel/libslang2/pkg-plist (contents, props changed) head/devel/libxalloc/pkg-plist (contents, props changed) head/devel/mingw32-binutils/pkg-plist (contents, props changed) head/devel/monodevelop-database/pkg-plist (contents, props changed) head/devel/mpatrol/pkg-plist (contents, props changed) head/devel/msp430-binutils/pkg-plist head/devel/ndesk-options/pkg-plist (contents, props changed) head/devel/nemiver/pkg-plist (contents, props changed) head/devel/newfile/pkg-plist (contents, props changed) head/devel/nini/pkg-plist (contents, props changed) head/devel/ninja-ide/pkg-plist (contents, props changed) head/devel/notify-sharp/pkg-plist (contents, props changed) head/devel/obfuscatejs/pkg-plist (contents, props changed) head/devel/ocamlweb/pkg-plist (contents, props changed) head/devel/p5-App-Rad/pkg-plist (contents, props changed) head/devel/p5-Hash-Diff/pkg-plist (contents, props changed) head/devel/p5-Log-Report/pkg-plist (contents, props changed) head/devel/p5-MooseX-Types-Perl/pkg-plist (contents, props changed) head/devel/p5-Net-ZooKeeper/pkg-plist (contents, props changed) head/devel/p5-Object-Container/pkg-plist (contents, props changed) head/devel/p5-Sepia/pkg-plist (contents, props changed) head/devel/pecl-zookeeper/pkg-plist (contents, props changed) head/devel/pep8/pkg-plist (contents, props changed) head/devel/popt/pkg-plist (contents, props changed) head/devel/poslib/pkg-plist (contents, props changed) head/devel/preps-gui/pkg-plist (contents, props changed) head/devel/py-Breve/pkg-plist (contents, props changed) head/devel/py-InlineEgg/pkg-plist (contents, props changed) head/devel/py-Jinja/pkg-plist (contents, props changed) head/devel/py-Jinja2-doc/pkg-plist (contents, props changed) head/devel/py-Jinja2/pkg-plist (contents, props changed) head/devel/py-ScriptTest/pkg-plist (contents, props changed) head/devel/py-TurboJinja/pkg-plist (contents, props changed) head/devel/py-application/pkg-plist (contents, props changed) head/devel/py-aspyct/pkg-plist (contents, props changed) head/devel/py-bitarray/pkg-plist (contents, props changed) head/devel/py-cheetah/pkg-plist (contents, props changed) head/devel/py-clonedigger/pkg-plist head/devel/py-construct/pkg-plist (contents, props changed) head/devel/py-dirspec/pkg-plist (contents, props changed) head/devel/py-iterpipes/pkg-plist (contents, props changed) head/devel/py-json-py/pkg-plist (contents, props changed) head/devel/py-kid/pkg-plist (contents, props changed) head/devel/py-nose/pkg-plist (contents, props changed) head/devel/py-pathtools/pkg-plist (contents, props changed) head/devel/py-pip/pkg-plist (contents, props changed) head/devel/py-protocols/pkg-plist (contents, props changed) head/devel/py-pythonbrew/pkg-plist (contents, props changed) head/devel/py-turbojson11/pkg-plist (contents, props changed) head/devel/py-turbokid/pkg-plist (contents, props changed) head/devel/py-usb/pkg-plist (contents, props changed) head/devel/py-virtualenv-clone/pkg-plist (contents, props changed) head/devel/py-watchdog/pkg-plist (contents, props changed) head/devel/pybaz/pkg-plist (contents, props changed) head/devel/pyside-tools/pkg-plist (contents, props changed) head/devel/pyside/pkg-plist (contents, props changed) head/devel/pythk/pkg-plist (contents, props changed) head/devel/shiboken/pkg-plist (contents, props changed) head/devel/skalibs/pkg-plist (contents, props changed) head/devel/smc/pkg-plist (contents, props changed) head/devel/subversion/pkg-plist (contents, props changed) head/devel/subversion16/pkg-plist (contents, props changed) head/devel/subversion17/pkg-plist (contents, props changed) head/devel/sysfsutils/pkg-plist (contents, props changed) head/devel/tex-kpathsea/pkg-plist (contents, props changed) head/devel/tex-web2c/pkg-plist (contents, props changed) head/devel/vtg/pkg-plist (contents, props changed) head/dns/crossip/pkg-plist (contents, props changed) head/dns/djbdns-tools/pkg-plist (contents, props changed) head/dns/firedns/pkg-plist (contents, props changed) head/dns/ldapdns/pkg-plist (contents, props changed) head/dns/posadis/pkg-plist (contents, props changed) head/dns/skadns/pkg-plist (contents, props changed) head/dns/zonecheck/pkg-plist (contents, props changed) head/editors/bitedit/pkg-plist (contents, props changed) head/editors/drjava/pkg-plist (contents, props changed) head/editors/gobby/pkg-plist (contents, props changed) head/editors/jed/pkg-plist (contents, props changed) head/editors/jext/pkg-plist (contents, props changed) head/editors/morla/pkg-plist (contents, props changed) head/editors/nano-devel/pkg-plist head/editors/nano/pkg-plist (contents, props changed) head/editors/nxml/pkg-plist head/editors/psgml/pkg-plist (contents, props changed) head/editors/spe/pkg-plist (contents, props changed) head/editors/tamago/pkg-plist (contents, props changed) head/editors/vim/pkg-plist (contents, props changed) head/editors/winefish/pkg-plist (contents, props changed) head/editors/xmlcopyeditor/pkg-plist (contents, props changed) head/emulators/fuse/pkg-plist (contents, props changed) head/emulators/lib765/pkg-plist (contents, props changed) head/emulators/libdsk/pkg-plist (contents, props changed) head/emulators/libspectrum/pkg-plist (contents, props changed) head/emulators/p5-Acme-6502/pkg-plist (contents, props changed) head/emulators/psim-freebsd/pkg-plist (contents, props changed) head/emulators/ski/pkg-plist (contents, props changed) head/emulators/svr4_base/pkg-plist (contents, props changed) head/emulators/tpm-emulator/pkg-plist (contents, props changed) head/emulators/virtualbox-ose-additions/pkg-plist (contents, props changed) head/emulators/virtualbox-ose-kmod-legacy/pkg-plist (contents, props changed) head/emulators/virtualbox-ose-kmod/pkg-plist (contents, props changed) head/emulators/wxmupen64plus/pkg-plist (contents, props changed) head/finance/opentaxsolver/files/pkg-plist.in (contents, props changed) head/finance/p5-Finance-Bitcoin/pkg-plist (contents, props changed) head/french/dico/pkg-plist (contents, props changed) head/ftp/ncftp3/pkg-plist (contents, props changed) head/ftp/wzdftpd/pkg-plist (contents, props changed) head/games/bsdgames/pkg-plist (contents, props changed) head/games/bsdtris/pkg-plist head/games/gtypist/pkg-plist (contents, props changed) head/games/hohlin/pkg-plist (contents, props changed) head/games/jin/pkg-plist (contents, props changed) head/games/mkgichessclub/pkg-plist (contents, props changed) head/games/nethack34/pkg-plist (contents, props changed) head/games/paintown/pkg-plist (contents, props changed) head/games/py-pychess/pkg-plist (contents, props changed) head/games/robotfindskitten/pkg-plist (contents, props changed) head/games/xsoldier/pkg-plist (contents, props changed) head/graphics/fotoxx/pkg-plist (contents, props changed) head/graphics/giblib/pkg-plist (contents, props changed) head/graphics/gle-graphics/pkg-plist (contents, props changed) head/graphics/gozer/pkg-plist (contents, props changed) head/graphics/imgv/pkg-plist (contents, props changed) head/graphics/jalbum/pkg-plist (contents, props changed) head/graphics/jdraw/pkg-plist (contents, props changed) head/graphics/libwpg/pkg-plist (contents, props changed) head/graphics/mapyrus/pkg-plist (contents, props changed) head/graphics/mscgen/pkg-plist (contents, props changed) head/graphics/processing/pkg-plist (contents, props changed) head/graphics/py-gchartwrapper/pkg-plist (contents, props changed) head/graphics/py-mcomix/pkg-plist head/graphics/py-pillow/pkg-plist (contents, props changed) head/graphics/py-poppler/pkg-plist (contents, props changed) head/graphics/tgif/pkg-plist (contents, props changed) head/graphics/uDrawGraph/pkg-plist (contents, props changed) head/graphics/xmorph/pkg-plist (contents, props changed) head/irc/irssi-scripts/pkg-plist (contents, props changed) head/irc/irssi-xmpp/pkg-plist (contents, props changed) head/irc/pircbot/pkg-plist (contents, props changed) head/irc/pisg/pkg-plist (contents, props changed) head/irc/riece/pkg-plist (contents, props changed) head/irc/smartirc4net/pkg-plist (contents, props changed) head/japanese/FreeWnn-lib/pkg-plist (contents, props changed) head/japanese/FreeWnn-server/pkg-plist (contents, props changed) head/japanese/Wnn6-lib/pkg-plist (contents, props changed) head/japanese/Wnn7-lib/pkg-plist (contents, props changed) head/japanese/asterisk-sounds/pkg-plist (contents, props changed) head/japanese/canna-lib/pkg-plist (contents, props changed) head/japanese/canna-server/pkg-plist (contents, props changed) head/japanese/cannadic/pkg-plist (contents, props changed) head/japanese/dvipsk/pkg-plist (contents, props changed) head/japanese/font-ipa-uigothic/pkg-plist (contents, props changed) head/japanese/font-ipa/pkg-plist (contents, props changed) head/japanese/font-ipaex/pkg-plist (contents, props changed) head/japanese/font-jisx0213/pkg-plist head/japanese/font-kochi/pkg-plist (contents, props changed) head/japanese/font-migmix/pkg-plist (contents, props changed) head/japanese/font-migu/pkg-plist (contents, props changed) head/japanese/font-mona-ipa/pkg-plist head/japanese/font-motoya-al/pkg-plist (contents, props changed) head/japanese/font-mplus-ipa/pkg-plist (contents, props changed) head/japanese/font-mplus/pkg-plist (contents, props changed) head/japanese/font-sazanami/pkg-plist (contents, props changed) head/japanese/font-shinonome/pkg-plist (contents, props changed) head/japanese/font-takao/pkg-plist (contents, props changed) head/japanese/font-ume/pkg-plist (contents, props changed) head/japanese/font-vlgothic/pkg-plist (contents, props changed) head/japanese/jadetex-ptex/pkg-plist (contents, props changed) head/japanese/jed/pkg-plist (contents, props changed) head/japanese/jvim3/pkg-plist (contents, props changed) head/japanese/kana-no-quiz/pkg-plist (contents, props changed) head/japanese/kinput2/pkg-plist (contents, props changed) head/japanese/kterm/pkg-plist (contents, props changed) head/japanese/latex2html/pkg-plist (contents, props changed) head/japanese/mailman/pkg-plist (contents, props changed) head/japanese/makejvf/pkg-plist (contents, props changed) head/japanese/man-doc/pkg-plist (contents, props changed) head/japanese/mendexk-euc/pkg-plist (contents, props changed) head/japanese/navi2ch/pkg-plist (contents, props changed) head/japanese/platex-japanese/pkg-plist (contents, props changed) head/japanese/platex-jsclasses/pkg-plist (contents, props changed) head/japanese/platex209/pkg-plist (contents, props changed) head/japanese/ptex/pkg-plist (contents, props changed) head/japanese/sj3-lib/pkg-plist (contents, props changed) head/japanese/sj3-server/pkg-plist (contents, props changed) head/japanese/slimeforest/pkg-plist (contents, props changed) head/japanese/teTeX/pkg-plist (contents, props changed) head/japanese/tex-ptex/pkg-plist (contents, props changed) head/japanese/tgif/pkg-plist (contents, props changed) head/japanese/xdvik/pkg-plist (contents, props changed) head/japanese/xpdf/pkg-plist (contents, props changed) head/java/eclipse-aptana/pkg-plist (contents, props changed) head/java/eclipse-aptana2/pkg-plist (contents, props changed) head/java/eclipse-drjava/pkg-plist (contents, props changed) head/java/java-zoneinfo/pkg-plist (contents, props changed) head/java/jflex/pkg-plist (contents, props changed) head/java/jmf/pkg-plist (contents, props changed) head/java/netrexx/pkg-plist (contents, props changed) head/java/xdoclet/pkg-plist (contents, props changed) head/korean/FreeWnn-lib/pkg-plist (contents, props changed) head/korean/FreeWnn-server/pkg-plist (contents, props changed) head/korean/munhwafonts-cid/pkg-plist (contents, props changed) head/korean/xpdf/pkg-plist (contents, props changed) head/lang/arena/pkg-plist (contents, props changed) head/lang/execline/pkg-plist (contents, props changed) head/lang/fpc/pkg-plist head/lang/fsharp/pkg-plist (contents, props changed) head/lang/gcc/pkg-plist (contents, props changed) head/lang/gcc34/pkg-plist (contents, props changed) head/lang/gcc44/pkg-plist (contents, props changed) head/lang/gcc46/pkg-plist (contents, props changed) head/lang/gcc47/pkg-plist (contents, props changed) head/lang/gcc48/pkg-plist (contents, props changed) head/lang/gcc49/pkg-plist (contents, props changed) head/lang/ghc/pkg-plist (contents, props changed) head/lang/hs-epic/pkg-plist (contents, props changed) head/lang/intel2gas/pkg-plist (contents, props changed) head/lang/kroc/pkg-plist (contents, props changed) head/lang/linux-j/pkg-plist (contents, props changed) head/lang/mono-basic/pkg-plist (contents, props changed) head/lang/mono/pkg-plist (contents, props changed) head/lang/mtasc/pkg-plist (contents, props changed) head/lang/nwcc/pkg-plist (contents, props changed) head/lang/onyx/pkg-plist (contents, props changed) head/lang/phantomjs/pkg-plist (contents, props changed) head/lang/ratfor/pkg-plist (contents, props changed) head/lang/rhino/pkg-plist (contents, props changed) head/lang/starlogo/pkg-plist (contents, props changed) head/mail/annoyance-filter/pkg-plist (contents, props changed) head/mail/anomy-sanitizer/pkg-plist (contents, props changed) head/mail/bsmtp/pkg-plist (contents, props changed) head/mail/crm114/pkg-plist (contents, props changed) head/mail/dovecot-managesieve/pkg-plist head/mail/dovecot-sieve/pkg-plist (contents, props changed) head/mail/dovecot/pkg-plist (contents, props changed) head/mail/dsbl-testers/pkg-plist (contents, props changed) head/mail/dspam/pkg-plist (contents, props changed) head/mail/elm+ME/pkg-plist (contents, props changed) head/mail/epstools/pkg-plist (contents, props changed) head/mail/exim/pkg-plist (contents, props changed) head/mail/fetchmail/pkg-plist (contents, props changed) head/mail/gmime2-sharp/pkg-plist (contents, props changed) head/mail/gmime24-sharp/pkg-plist (contents, props changed) head/mail/gmime26-sharp/pkg-plist (contents, props changed) head/mail/hbiff/pkg-plist (contents, props changed) head/mail/libspamtest/pkg-plist (contents, props changed) head/mail/maildirsync/pkg-plist (contents, props changed) head/mail/mailman/pkg-plist (contents, props changed) head/mail/mailscanner/pkg-plist (contents, props changed) head/mail/mew/pkg-plist (contents, props changed) head/mail/milter-manager/pkg-plist (contents, props changed) head/mail/mutt14/pkg-plist (contents, props changed) head/mail/muttzilla/pkg-plist (contents, props changed) head/mail/offlineimap/pkg-plist (contents, props changed) head/mail/opendkim/pkg-plist (contents, props changed) head/mail/pop-before-smtp/pkg-plist (contents, props changed) head/mail/proxsmtp/pkg-plist (contents, props changed) head/mail/pymsgauth/pkg-plist (contents, props changed) head/mail/qconfirm/pkg-plist (contents, props changed) head/mail/qmail-notify/pkg-plist (contents, props changed) head/mail/qmail-qfilter/pkg-plist (contents, props changed) head/mail/qmail-scanner1/pkg-plist (contents, props changed) head/mail/qmail/pkg-plist (contents, props changed) head/mail/qmailanalog/pkg-plist (contents, props changed) head/mail/qmhandle/pkg-plist (contents, props changed) head/mail/rabl_server/pkg-plist (contents, props changed) head/mail/relay-ctrl/pkg-plist (contents, props changed) head/mail/sastatd/pkg-plist (contents, props changed) head/mail/scam-backscatter/pkg-plist (contents, props changed) head/mail/spamguard/pkg-plist (contents, props changed) head/mail/t-prot/pkg-plist (contents, props changed) head/mail/tpop3d/pkg-plist (contents, props changed) head/mail/vm/pkg-plist (contents, props changed) head/mail/xlbiff/pkg-plist (contents, props changed) head/math/asymptote/pkg-plist (contents, props changed) head/math/galculator/pkg-plist (contents, props changed) head/math/geogebra-i18n/pkg-plist (contents, props changed) head/math/javaview/pkg-plist (contents, props changed) head/math/jsmath-fonts-sprite/pkg-plist (contents, props changed) head/math/jsmath/pkg-plist (contents, props changed) head/math/kash3/pkg-plist (contents, props changed) head/math/minisat/pkg-plist (contents, props changed) head/math/muparser/pkg-plist (contents, props changed) head/math/plman/pkg-plist (contents, props changed) head/math/slgrace/pkg-plist (contents, props changed) head/math/truthtable/pkg-plist (contents, props changed) head/math/unixstat/pkg-plist (contents, props changed) head/math/wxMaxima/pkg-plist (contents, props changed) head/misc/dvorak7min/pkg-plist (contents, props changed) head/misc/figlet/pkg-plist (contents, props changed) head/misc/firestring/pkg-plist (contents, props changed) head/misc/freebsd-doc-bn/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-bn/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-bn/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-bn/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-bn/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-bn/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-bn/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-bn/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-da/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-da/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-da/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-da/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-da/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-da/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-da/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-da/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-de/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-de/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-de/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-de/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-de/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-de/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-de/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-de/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-el/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-el/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-el/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-el/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-el/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-el/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-el/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-el/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-en/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-en/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-en/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-en/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-en/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-en/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-en/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-en/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-es/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-es/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-es/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-es/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-es/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-es/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-es/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-es/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-fr/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-fr/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-fr/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-fr/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-fr/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-fr/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-fr/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-fr/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-hu/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-hu/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-hu/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-hu/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-hu/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-hu/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-hu/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-hu/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-it/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-it/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-it/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-it/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-it/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-it/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-it/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-it/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-ja/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-ja/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-ja/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-ja/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-ja/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-ja/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-ja/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-ja/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-mn/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-mn/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-mn/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-mn/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-mn/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-mn/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-mn/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-mn/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-nl/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-nl/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-nl/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-nl/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-nl/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-nl/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-nl/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-nl/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-pl/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-pl/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-pl/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-pl/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-pl/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-pl/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-pl/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-pl/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-pt/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-pt/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-pt/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-pt/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-pt/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-pt/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-pt/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-pt/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-ru/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-ru/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-ru/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-ru/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-ru/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-ru/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-ru/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-ru/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-sr/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-sr/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-sr/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-sr/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-sr/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-sr/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-sr/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-sr/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-tr/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-tr/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-tr/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-tr/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-tr/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-tr/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-tr/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-tr/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.txt (contents, props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.common (contents, props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.extras (contents, props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.html (contents, props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.html-common (contents, props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.html-split (contents, props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.pdf (contents, props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.ps (contents, props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.txt (contents, props changed) head/misc/jive/pkg-plist (contents, props changed) head/misc/linm/pkg-plist (contents, props changed) head/misc/patchutils/pkg-plist (contents, props changed) head/misc/pdfmap/pkg-plist (contents, props changed) head/misc/phraze/pkg-plist (contents, props changed) head/misc/podsleuth/pkg-plist (contents, props changed) head/misc/py-yolk/pkg-plist (contents, props changed) head/misc/salias/pkg-plist (contents, props changed) head/misc/upclient/pkg-plist (contents, props changed) head/multimedia/bino/pkg-plist (contents, props changed) head/multimedia/castpodder/pkg-plist (contents, props changed) head/multimedia/dvdrip/pkg-plist (contents, props changed) head/multimedia/librtmp/pkg-plist (contents, props changed) head/multimedia/projectx/pkg-plist (contents, props changed) head/multimedia/py-pybmp/pkg-plist (contents, props changed) head/multimedia/rtmpdump/pkg-plist (contents, props changed) head/multimedia/ruby-flvtool2/pkg-plist (contents, props changed) head/multimedia/tunapie/pkg-plist (contents, props changed) head/net-im/convey/pkg-plist (contents, props changed) head/net-im/jabber-pyaim/pkg-plist (contents, props changed) head/net-im/jabber-pyicq/pkg-plist (contents, props changed) head/net-im/libyahoo2/pkg-plist (contents, props changed) head/net-im/pidgin-skype/pkg-plist (contents, props changed) head/net-mgmt/2ping/pkg-plist (contents, props changed) head/net-mgmt/airport/pkg-plist (contents, props changed) head/net-mgmt/bandwidthd/pkg-plist (contents, props changed) head/net-mgmt/circe/pkg-plist (contents, props changed) head/net-mgmt/clog/pkg-plist (contents, props changed) head/net-mgmt/ipv6mon/pkg-plist (contents, props changed) head/net-mgmt/nsca/pkg-plist (contents, props changed) head/net-mgmt/nsca27/pkg-plist (contents, props changed) head/net-mgmt/p5-AnyEvent-SNMP/pkg-plist (contents, props changed) head/net-mgmt/p5-Xymon-Client/pkg-plist (contents, props changed) head/net-mgmt/p5-Xymon-Server/pkg-plist (contents, props changed) head/net-mgmt/p5-Xymon/pkg-plist (contents, props changed) head/net-mgmt/pancho/pkg-plist (contents, props changed) head/net-mgmt/pandorafms_agent/pkg-plist (contents, props changed) head/net-mgmt/pandorafms_console/pkg-plist (contents, props changed) head/net-mgmt/pandorafms_server/pkg-plist (contents, props changed) head/net-mgmt/pandorafms_server/pkg-plist.spool (contents, props changed) head/net-mgmt/send/pkg-plist (contents, props changed) head/net-mgmt/virtinst/pkg-plist (contents, props changed) head/net-mgmt/whatmask/pkg-plist (contents, props changed) head/net-mgmt/wide-dhcp/pkg-plist (contents, props changed) head/net-mgmt/wmi-client/pkg-plist (contents, props changed) head/net-mgmt/zenoss/pkg-plist (contents, props changed) head/net-p2p/linux-jigdo/pkg-plist (contents, props changed) head/net/bindtest/pkg-plist (contents, props changed) head/net/blam/pkg-plist (contents, props changed) head/net/c3270/pkg-plist (contents, props changed) head/net/clamz/pkg-plist (contents, props changed) head/net/ct/pkg-plist (contents, props changed) head/net/cvsync/pkg-plist (contents, props changed) head/net/dhcp6/pkg-plist (contents, props changed) head/net/dhcpcd/pkg-plist (contents, props changed) head/net/etrace/pkg-plist (contents, props changed) head/net/exabgp/pkg-plist (contents, props changed) head/net/gspoof/pkg-plist (contents, props changed) head/net/hornetq/pkg-plist (contents, props changed) head/net/hsflowd/pkg-plist (contents, props changed) head/net/ipsvd/pkg-plist (contents, props changed) head/net/isc-dhcp41-client/pkg-plist (contents, props changed) head/net/isc-dhcp41-relay/pkg-plist (contents, props changed) head/net/isc-dhcp41-server/pkg-plist (contents, props changed) head/net/isc-dhcp42-client/pkg-plist (contents, props changed) head/net/isc-dhcp42-relay/pkg-plist head/net/isc-dhcp42-server/pkg-plist (contents, props changed) head/net/ldapbrowser/pkg-plist (contents, props changed) head/net/libfixbuf/pkg-plist (contents, props changed) head/net/libnetdude/pkg-plist (contents, props changed) head/net/libopennet/pkg-plist (contents, props changed) head/net/libpcapnav/pkg-plist (contents, props changed) head/net/mcast-tools/pkg-plist (contents, props changed) head/net/mediatomb/pkg-plist (contents, props changed) head/net/mopd/pkg-plist (contents, props changed) head/net/nusoap/pkg-plist (contents, props changed) head/net/openldap24-server/pkg-plist (contents, props changed) head/net/openldap24-server/pkg-plist.client (contents, props changed) head/net/openntpd/pkg-plist (contents, props changed) head/net/p5-Net-OpenStack-Attack/pkg-plist (contents, props changed) head/net/packetdrill/pkg-plist (contents, props changed) head/net/portfwd/pkg-plist (contents, props changed) head/net/py-cloudfiles/pkg-plist (contents, props changed) head/net/py-dpkt/pkg-plist (contents, props changed) head/net/py-gntp/pkg-plist (contents, props changed) head/net/py-iplib/pkg-plist (contents, props changed) head/net/py-libnet/pkg-plist (contents, props changed) head/net/py-pysendfile/pkg-plist (contents, props changed) head/net/py-s3cmd/pkg-plist (contents, props changed) head/net/qtweetlib/pkg-plist (contents, props changed) head/net/quagga/pkg-plist (contents, props changed) head/net/queso/pkg-plist (contents, props changed) head/net/raggle/pkg-plist (contents, props changed) head/net/rdesktop/pkg-plist (contents, props changed) head/net/rsync/pkg-plist (contents, props changed) head/net/sprinkle/pkg-plist (contents, props changed) head/net/tcping/pkg-plist (contents, props changed) head/net/tcpshow/pkg-plist (contents, props changed) head/net/tcpstat/pkg-plist (contents, props changed) head/net/tn5250j/pkg-plist (contents, props changed) head/net/v6eval/pkg-plist (contents, props changed) head/net/vmware-vsphere-cli/pkg-plist (contents, props changed) head/net/wackamole/pkg-plist (contents, props changed) head/net/wol/pkg-plist (contents, props changed) head/net/xipdump/pkg-plist (contents, props changed) head/net/xmlrpc-epi/pkg-plist (contents, props changed) head/news/leafnode/pkg-plist (contents, props changed) head/news/papercut/pkg-plist (contents, props changed) head/news/xpn/pkg-plist (contents, props changed) head/ports-mgmt/portshaker-config/pkg-plist (contents, props changed) head/ports-mgmt/portshaker/pkg-plist (contents, props changed) head/ports-mgmt/porttools/pkg-plist (contents, props changed) head/print/acroread8/pkg-plist (contents, props changed) head/print/acroread9/pkg-plist (contents, props changed) head/print/adobe-cmaps/pkg-plist (contents, props changed) head/print/apsfilter/pkg-plist head/print/auctex/pkg-plist (contents, props changed) head/print/cm-super/pkg-plist (contents, props changed) head/print/dot2tex/pkg-plist (contents, props changed) head/print/dvipdfmx/pkg-plist (contents, props changed) head/print/dvipsk-tetex/pkg-plist (contents, props changed) head/print/easylatex/pkg-plist (contents, props changed) head/print/font-amsfonts/pkg-plist (contents, props changed) head/print/foxitreader/pkg-plist (contents, props changed) head/print/ghostscript7-commfont/pkg-plist (contents, props changed) head/print/ghostscript7/pkg-plist (contents, props changed) head/print/ghostscript8/pkg-plist (contents, props changed) head/print/ghostscript9-agpl/pkg-plist head/print/ghostscript9/pkg-plist head/print/gsfonts/pkg-plist (contents, props changed) head/print/jadetex/pkg-plist (contents, props changed) head/print/latex-bytefield/pkg-plist (contents, props changed) head/print/latex-caption/pkg-plist (contents, props changed) head/print/latex-chapterfolder/pkg-plist (contents, props changed) head/print/latex-circ/pkg-plist (contents, props changed) head/print/latex-feynmf/pkg-plist (contents, props changed) head/print/latex-ifluatex/pkg-plist (contents, props changed) head/print/latex-keystroke/pkg-plist (contents, props changed) head/print/latex-logpap/pkg-plist (contents, props changed) head/print/latex-mathabx/pkg-plist (contents, props changed) head/print/latex-nomencl/pkg-plist (contents, props changed) head/print/latex-pgf/pkg-plist (contents, props changed) head/print/latex-subfloat/pkg-plist (contents, props changed) head/print/latex-timing/pkg-plist (contents, props changed) head/print/latex-ucs/pkg-plist (contents, props changed) head/print/libpaper/pkg-plist (contents, props changed) head/print/lprps/pkg-plist (contents, props changed) head/print/mp-letter/pkg-plist (contents, props changed) head/print/passivetex/pkg-plist (contents, props changed) head/print/pdfmod/pkg-plist (contents, props changed) head/print/psutils/pkg-plist (contents, props changed) head/print/py-pyscript/pkg-plist (contents, props changed) head/print/sgf2tex/pkg-plist (contents, props changed) head/print/splix/pkg-plist (contents, props changed) head/print/teTeX-base/pkg-plist (contents, props changed) head/print/teTeX-texmf/pkg-plist (contents, props changed) head/print/teTeX/pkg-plist (contents, props changed) head/print/tex-aleph/pkg-plist (contents, props changed) head/print/tex-dvipdfmx/pkg-plist (contents, props changed) head/print/tex-dvipsk/pkg-plist (contents, props changed) head/print/tex-jadetex/pkg-plist (contents, props changed) head/print/tex-luatex/pkg-plist (contents, props changed) head/print/tex-mfpic/pkg-plist (contents, props changed) head/print/tex-omegaware-old/pkg-plist (contents, props changed) head/print/tex-ptexenc/pkg-plist (contents, props changed) head/print/tex-xdvik/pkg-plist (contents, props changed) head/print/tex-xetex/pkg-plist (contents, props changed) head/print/tex-xmltex/pkg-plist (contents, props changed) head/print/texlive-base/pkg-plist (contents, props changed) head/print/texlive-docs/pkg-plist (contents, props changed) head/print/texlive-infra/pkg-plist (contents, props changed) head/print/texlive-texmf/pkg-plist (contents, props changed) head/print/texpower/pkg-plist (contents, props changed) head/print/xdvik/pkg-plist (contents, props changed) head/print/xmltex/pkg-plist head/print/yatex/pkg-plist (contents, props changed) head/russian/fortuneru/pkg-plist (contents, props changed) head/russian/p5-Text-Hyphen-RU/pkg-plist (contents, props changed) head/russian/pscyr/pkg-plist (contents, props changed) head/science/crf++/pkg-plist (contents, props changed) head/science/ghmm/pkg-plist (contents, props changed) head/science/svmlight/pkg-plist (contents, props changed) head/security/ADMsnmp/pkg-plist (contents, props changed) head/security/amap/pkg-plist (contents, props changed) head/security/amavisd-new/pkg-plist (contents, props changed) head/security/axTLS/pkg-plist (contents, props changed) head/security/base/pkg-plist (contents, props changed) head/security/clamav-devel/pkg-plist (contents, props changed) head/security/clamav/pkg-plist (contents, props changed) head/security/clamsmtp/pkg-plist (contents, props changed) head/security/crack/pkg-plist (contents, props changed) head/security/cryptstring/pkg-plist (contents, props changed) head/security/ddos_scan/pkg-plist (contents, props changed) head/security/fbopenssl/pkg-plist (contents, props changed) head/security/flawfinder/pkg-plist (contents, props changed) head/security/gnome-keyring-sharp/pkg-plist (contents, props changed) head/security/gnutls/pkg-plist (contents, props changed) head/security/gorilla/pkg-plist (contents, props changed) head/security/honggfuzz/pkg-plist (contents, props changed) head/security/ike-scan/pkg-plist (contents, props changed) head/security/ipfilter2dshield/pkg-plist (contents, props changed) head/security/ipv6toolkit/pkg-plist (contents, props changed) head/security/lasso/pkg-plist (contents, props changed) head/security/libgpg-error/pkg-plist (contents, props changed) head/security/libprelude/pkg-plist (contents, props changed) head/security/libpreludedb/pkg-plist (contents, props changed) head/security/libtasn1/pkg-plist (contents, props changed) head/security/lockdown/pkg-plist (contents, props changed) head/security/medusa/pkg-plist (contents, props changed) head/security/nacl/pkg-plist (contents, props changed) head/security/nbaudit/pkg-plist (contents, props changed) head/security/ncrack/pkg-plist (contents, props changed) head/security/opencdk/pkg-plist (contents, props changed) head/security/opencryptoki/pkg-plist (contents, props changed) head/security/openssl_tpm_engine/pkg-plist (contents, props changed) head/security/openvas-client/pkg-plist (contents, props changed) head/security/osiris/pkg-plist (contents, props changed) head/security/p5-Net-SinFP/pkg-plist (contents, props changed) head/security/pam_abl/files/pkg-plist.in (contents, props changed) head/security/php-Auth_OpenID/pkg-plist (contents, props changed) head/security/php-Auth_OpenID2/pkg-plist (contents, props changed) head/security/ppars/pkg-plist (contents, props changed) head/security/prelude-lml/pkg-plist (contents, props changed) head/security/prelude-manager/pkg-plist (contents, props changed) head/security/py-ed25519ll/pkg-plist (contents, props changed) head/security/py-openssl/pkg-plist (contents, props changed) head/security/py-passlib/pkg-plist (contents, props changed) head/security/py-rsa/pkg-plist (contents, props changed) head/security/razorback-api/pkg-plist (contents, props changed) head/security/razorback-archiveInflate/pkg-plist (contents, props changed) head/security/razorback-clamavNugget/pkg-plist (contents, props changed) head/security/razorback-dispatcher/pkg-plist (contents, props changed) head/security/razorback-fileInject/pkg-plist (contents, props changed) head/security/razorback-fsMonitor/pkg-plist (contents, props changed) head/security/razorback-fsWalk/pkg-plist (contents, props changed) head/security/razorback-masterNugget/pkg-plist (contents, props changed) head/security/razorback-officeCat/pkg-plist (contents, props changed) head/security/razorback-pdfFox/pkg-plist (contents, props changed) head/security/razorback-scriptNugget/pkg-plist (contents, props changed) head/security/razorback-swfScanner/pkg-plist (contents, props changed) head/security/razorback-syslogNugget/pkg-plist (contents, props changed) head/security/razorback-virusTotal/pkg-plist (contents, props changed) head/security/razorback-yaraNugget/pkg-plist (contents, props changed) head/security/rkhunter/pkg-plist (contents, props changed) head/security/samhain/pkg-plist (contents, props changed) head/security/scanhill/pkg-plist (contents, props changed) head/security/silktools/pkg-plist (contents, props changed) head/security/snort/pkg-plist (contents, props changed) head/security/sqlmap/pkg-plist (contents, props changed) head/security/stunnel/pkg-plist (contents, props changed) head/security/super/pkg-plist (contents, props changed) head/security/tpm-tools/pkg-plist (contents, props changed) head/security/trousers/pkg-plist (contents, props changed) head/security/w3af/pkg-plist (contents, props changed) head/security/xca/pkg-plist (contents, props changed) head/security/xspy/pkg-plist (contents, props changed) head/security/zzuf/pkg-plist (contents, props changed) head/shells/bash-devel/pkg-plist (contents, props changed) head/shells/bash/pkg-plist (contents, props changed) head/shells/psh/pkg-plist (contents, props changed) head/shells/zsh/pkg-plist (contents, props changed) head/sysutils/asr-utils/pkg-plist (contents, props changed) head/sysutils/byobu/pkg-plist (contents, props changed) head/sysutils/cfengine-devel/pkg-plist (contents, props changed) head/sysutils/cfengine22/pkg-plist (contents, props changed) head/sysutils/cfengine32/pkg-plist (contents, props changed) head/sysutils/cfengine33/pkg-plist (contents, props changed) head/sysutils/cfengine34/pkg-plist (contents, props changed) head/sysutils/cfengine35/pkg-plist (contents, props changed) head/sysutils/clockspeed-conf/pkg-plist (contents, props changed) head/sysutils/cpupowerd/pkg-plist (contents, props changed) head/sysutils/debhelper/pkg-plist (contents, props changed) head/sysutils/ganglia-monitor-core/pkg-plist (contents, props changed) head/sysutils/jtopen/pkg-plist (contents, props changed) head/sysutils/libfvde/pkg-plist (contents, props changed) head/sysutils/logtool/pkg-plist (contents, props changed) head/sysutils/ltrace/pkg-plist (contents, props changed) head/sysutils/minirsyslogd/pkg-plist (contents, props changed) head/sysutils/nagios-statd/pkg-plist (contents, props changed) head/sysutils/openipmi/pkg-plist (contents, props changed) head/sysutils/pdsh/pkg-plist (contents, props changed) head/sysutils/py-drmaa/pkg-plist (contents, props changed) head/sysutils/py-ezjailremote/pkg-plist (contents, props changed) head/sysutils/racktables/pkg-plist (contents, props changed) head/sysutils/radmind/pkg-plist (contents, props changed) head/sysutils/rsnapshot/pkg-plist (contents, props changed) head/sysutils/rubygem-capistrano-ext/pkg-plist (contents, props changed) head/sysutils/runit/pkg-plist (contents, props changed) head/sysutils/runwhen/pkg-plist (contents, props changed) head/sysutils/schedutils/pkg-plist (contents, props changed) head/sysutils/shmcat/pkg-plist (contents, props changed) head/sysutils/utcount/pkg-plist (contents, props changed) head/sysutils/xosview/pkg-plist (contents, props changed) head/textproc/apache-solr/pkg-plist (contents, props changed) head/textproc/apache-solr3/pkg-plist (contents, props changed) head/textproc/btparse/pkg-plist (contents, props changed) head/textproc/dbacl/pkg-plist (contents, props changed) head/textproc/dict/pkg-plist (contents, props changed) head/textproc/docbook-to-man/pkg-plist (contents, props changed) head/textproc/dsssl-docbook-modular/pkg-plist (contents, props changed) head/textproc/ecromedos/pkg-plist (contents, props changed) head/textproc/filepp/pkg-plist (contents, props changed) head/textproc/fop/pkg-plist (contents, props changed) head/textproc/gladtex/pkg-plist (contents, props changed) head/textproc/heirloom-doctools/pkg-plist (contents, props changed) head/textproc/hs-lhs2tex/pkg-plist (contents, props changed) head/textproc/jalingo/pkg-plist (contents, props changed) head/textproc/jdictionary/pkg-plist (contents, props changed) head/textproc/jdictionary/pkg-plist.plugin (contents, props changed) head/textproc/latex2html/pkg-plist (contents, props changed) head/textproc/libnxml/pkg-plist (contents, props changed) head/textproc/metaf2xml/pkg-plist (contents, props changed) head/textproc/openjade/pkg-plist (contents, props changed) head/textproc/opensp/pkg-plist (contents, props changed) head/textproc/p5-CSS-Compressor/pkg-plist (contents, props changed) head/textproc/p5-XML-LibXML-SAX-ChunkParser/pkg-plist (contents, props changed) head/textproc/ppower4/pkg-plist (contents, props changed) head/textproc/py-enchant/pkg-plist head/textproc/py-feedparser/pkg-plist (contents, props changed) head/textproc/py-genshi/pkg-plist (contents, props changed) head/textproc/py-markdown/pkg-plist (contents, props changed) head/textproc/py-pygments/pkg-plist (contents, props changed) head/textproc/py-reverend/pkg-plist (contents, props changed) head/textproc/py-sphinxcontrib-bitbucket/pkg-plist (contents, props changed) head/textproc/saxon/pkg-plist (contents, props changed) head/textproc/texi2html/pkg-plist (contents, props changed) head/textproc/textogif/pkg-plist (contents, props changed) head/textproc/unroff/pkg-plist (contents, props changed) head/textproc/utf8proc/pkg-plist (contents, props changed) head/textproc/xlhtml/pkg-plist (contents, props changed) head/textproc/xmlcharent/pkg-plist (contents, props changed) head/textproc/xmlroff/pkg-plist (contents, props changed) head/textproc/yamcha/pkg-plist (contents, props changed) head/textproc/yodl/pkg-plist (contents, props changed) head/vietnamese/libviet/pkg-plist (contents, props changed) head/vietnamese/unicode-uhoai/pkg-plist (contents, props changed) head/vietnamese/vis2u/pkg-plist (contents, props changed) head/vietnamese/vn7to8/pkg-plist (contents, props changed) head/vietnamese/vnconvert/pkg-plist (contents, props changed) head/vietnamese/vnless/pkg-plist (contents, props changed) head/vietnamese/vnlpr/pkg-plist (contents, props changed) head/vietnamese/vnpstext/pkg-plist (contents, props changed) head/vietnamese/vntex/pkg-plist (contents, props changed) head/vietnamese/vnxfonts/pkg-plist (contents, props changed) head/www/apache-forrest/pkg-plist (contents, props changed) head/www/apache22/pkg-plist (contents, props changed) head/www/apache24/pkg-plist (contents, props changed) head/www/axis/pkg-plist (contents, props changed) head/www/c-icap/pkg-plist (contents, props changed) head/www/cocoon/pkg-plist (contents, props changed) head/www/drraw/pkg-plist (contents, props changed) head/www/flat-frog/pkg-plist (contents, props changed) head/www/gaeutilities/pkg-plist (contents, props changed) head/www/gregarius/pkg-plist (contents, props changed) head/www/havp/pkg-plist (contents, props changed) head/www/helma/pkg-plist (contents, props changed) head/www/jmeter/pkg-plist (contents, props changed) head/www/jspacker/pkg-plist (contents, props changed) head/www/libecap/pkg-plist (contents, props changed) head/www/lighttpd/pkg-plist (contents, props changed) head/www/linux-libgtkembedmoz/pkg-plist (contents, props changed) head/www/man2web/pkg-plist (contents, props changed) head/www/mimetex/pkg-plist (contents, props changed) head/www/mod_gnutls/pkg-plist (contents, props changed) head/www/mod_mono/pkg-plist (contents, props changed) head/www/mod_wsgi2/pkg-plist (contents, props changed) head/www/mod_wsgi3/pkg-plist (contents, props changed) head/www/nginx-devel/pkg-plist (contents, props changed) head/www/nginx/pkg-plist (contents, props changed) head/www/p5-Emplacken/pkg-plist (contents, props changed) head/www/p5-Mojolicious-Plugin-YamlConfig/pkg-plist (contents, props changed) head/www/p5-Plack-Middleware-XForwardedFor/pkg-plist (contents, props changed) head/www/p5-WWW-Instapaper-Client/pkg-plist (contents, props changed) head/www/p5-WWW-Mechanize-SpamCop/pkg-plist (contents, props changed) head/www/p5-Web-oEmbed/pkg-plist (contents, props changed) head/www/p5-WebService-Pushover/pkg-plist (contents, props changed) head/www/pebble/pkg-plist (contents, props changed) head/www/pnews/pkg-plist (contents, props changed) head/www/py-Lightbox/pkg-plist (contents, props changed) head/www/py-bottle/pkg-plist (contents, props changed) head/www/py-cherrypy-old/pkg-plist (contents, props changed) head/www/py-cherrypy/pkg-plist (contents, props changed) head/www/py-cssselect/pkg-plist (contents, props changed) head/www/py-django_compressor/pkg-plist (contents, props changed) head/www/py-google-api-python-client/pkg-plist (contents, props changed) head/www/py-grequests/pkg-plist (contents, props changed) head/www/py-nevow/pkg-plist (contents, props changed) head/www/py-paste/pkg-plist (contents, props changed) head/www/py-pastedeploy/pkg-plist (contents, props changed) head/www/py-poster/pkg-plist (contents, props changed) head/www/py-requests-oauthlib/pkg-plist (contents, props changed) head/www/py-scriptaculous/pkg-plist (contents, props changed) head/www/py-slumber/pkg-plist (contents, props changed) head/www/py-tgwebservices/pkg-plist (contents, props changed) head/www/py-urlgrabber/pkg-plist (contents, props changed) head/www/py-webob/pkg-plist (contents, props changed) head/www/py-wikitools/pkg-plist (contents, props changed) head/www/pyjamas/pkg-plist (contents, props changed) head/www/pylot/pkg-plist (contents, props changed) head/www/qooxdoo/pkg-plist (contents, props changed) head/www/rejik/pkg-plist (contents, props changed) head/www/roundup/pkg-plist (contents, props changed) head/www/rt38/pkg-plist (contents, props changed) head/www/samidare/pkg-plist (contents, props changed) head/www/tickr/pkg-plist (contents, props changed) head/www/tidy-devel/pkg-plist (contents, props changed) head/www/trafficserver/pkg-plist (contents, props changed) head/www/udmsearch/pkg-plist (contents, props changed) head/www/usermanager/pkg-plist (contents, props changed) head/www/vertx/pkg-plist (contents, props changed) head/www/videocache/pkg-plist (contents, props changed) head/www/webkit-sharp/pkg-plist (contents, props changed) head/www/wgetpaste/pkg-plist (contents, props changed) head/www/wikicalc/pkg-plist (contents, props changed) head/www/xsp/pkg-plist (contents, props changed) head/x11-clocks/alarm-clock/pkg-plist (contents, props changed) head/x11-clocks/wmbday/pkg-plist (contents, props changed) head/x11-fonts/code2000/pkg-plist (contents, props changed) head/x11-fonts/cyr-rfx/pkg-plist head/x11-fonts/dejavu/pkg-plist (contents, props changed) head/x11-fonts/liberation-fonts-ttf/pkg-plist (contents, props changed) head/x11-fonts/stix-fonts/pkg-plist (contents, props changed) head/x11-fonts/texcm-ttf/pkg-plist (contents, props changed) head/x11-fonts/webfonts/pkg-plist (contents, props changed) head/x11-servers/Xfstt/pkg-plist (contents, props changed) head/x11-themes/gtk-nodoka-engine/pkg-plist (contents, props changed) head/x11-themes/openbox-themes/pkg-plist (contents, props changed) head/x11-toolkits/fl_editor/pkg-plist (contents, props changed) head/x11-toolkits/flvw/pkg-plist (contents, props changed) head/x11-toolkits/gnome-desktop-sharp20/pkg-plist (contents, props changed) head/x11-toolkits/gnome-sharp20/pkg-plist (contents, props changed) head/x11-toolkits/gtk-sharp-beans/pkg-plist (contents, props changed) head/x11-toolkits/gtk-sharp20/pkg-plist (contents, props changed) head/x11-toolkits/py-kiwi/pkg-plist (contents, props changed) head/x11-toolkits/py-traitsbackendwx/pkg-plist (contents, props changed) head/x11-toolkits/py-wax/pkg-plist (contents, props changed) head/x11-toolkits/py-xlib/pkg-plist (contents, props changed) head/x11-wm/awesome/pkg-plist (contents, props changed) head/x11-wm/awesome2/pkg-plist (contents, props changed) head/x11-wm/ccsm/pkg-plist (contents, props changed) head/x11-wm/compiz-fusion/pkg-plist (contents, props changed) head/x11-wm/compiz-plugins-extra/pkg-plist (contents, props changed) head/x11-wm/compiz-plugins-main/pkg-plist (contents, props changed) head/x11-wm/compiz-plugins-unsupported/pkg-plist (contents, props changed) head/x11-wm/compiz/pkg-plist (contents, props changed) head/x11-wm/compizconfig-backend-gconf/pkg-plist (contents, props changed) head/x11-wm/compizconfig-python/pkg-plist (contents, props changed) head/x11-wm/libcompizconfig/pkg-plist (contents, props changed) head/x11-wm/ratpoison/pkg-plist (contents, props changed) head/x11-wm/simple-ccsm/pkg-plist (contents, props changed) head/x11-wm/windowmaker/pkg-plist head/x11/guake/pkg-plist (contents, props changed) head/x11/multi-aterm/pkg-plist (contents, props changed) head/x11/wbar/pkg-plist (contents, props changed) head/x11/xcb-util-image/pkg-plist (contents, props changed) head/x11/xcb-util-keysyms/pkg-plist (contents, props changed) head/x11/xcb-util-renderutil/pkg-plist (contents, props changed) head/x11/xcb-util-wm/pkg-plist (contents, props changed) head/x11/xkbset/pkg-plist (contents, props changed) Modified: head/deskutils/adesklets/pkg-plist ============================================================================== --- head/deskutils/adesklets/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/deskutils/adesklets/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/adesklets bin/adesklets_checkin bin/adesklets_installer Modified: head/deskutils/freemind/pkg-plist ============================================================================== --- head/deskutils/freemind/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/deskutils/freemind/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/freemind %%DATADIR%%/accessories/LICENSE.MIT %%DATADIR%%/accessories/freemind2applet.xsl Modified: head/deskutils/labyrinth/pkg-plist ============================================================================== --- head/deskutils/labyrinth/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/deskutils/labyrinth/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/labyrinth %%PYTHON_SITELIBDIR%%/labyrinth/BaseThought.py %%PYTHON_SITELIBDIR%%/labyrinth/BaseThought.pyc Modified: head/deskutils/org-mode.el/pkg-plist ============================================================================== --- head/deskutils/org-mode.el/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/deskutils/org-mode.el/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%EMACS_LIBDIR%%/etc/org-mode/styles/OrgOdtContentTemplate.xml %%EMACS_LIBDIR%%/etc/org-mode/styles/OrgOdtStyles.xml %%EMACS_LIBDIR%%/etc/org-mode/styles/README Modified: head/deskutils/teapot/pkg-plist ============================================================================== --- head/deskutils/teapot/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/deskutils/teapot/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/teapot %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/README Modified: head/deskutils/tomboy-plugin-latex/pkg-plist ============================================================================== --- head/deskutils/tomboy-plugin-latex/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/deskutils/tomboy-plugin-latex/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,2 +1 @@ -@comment $FreeBSD$ lib/tomboy/addins/Latex.dll Modified: head/deskutils/tomboy-plugin-reminder/pkg-plist ============================================================================== --- head/deskutils/tomboy-plugin-reminder/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/deskutils/tomboy-plugin-reminder/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,2 +1 @@ -@comment $FreeBSD$ lib/tomboy/addins/tomboy-reminder.dll Modified: head/deskutils/tomboy-plugin-todo/pkg-plist ============================================================================== --- head/deskutils/tomboy-plugin-todo/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/deskutils/tomboy-plugin-todo/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,2 +1 @@ -@comment $FreeBSD$ lib/tomboy/addins/tomboy-todo.dll Modified: head/deskutils/tomboy/pkg-plist ============================================================================== --- head/deskutils/tomboy/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/deskutils/tomboy/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/tomboy %%APPLET%%bin/tomboy-panel lib/tomboy/Tomboy.exe Modified: head/devel/apache-ant/pkg-plist ============================================================================== --- head/devel/apache-ant/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/apache-ant/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/ant man/man1/ant.1.gz man/man5/build.xml.5.gz Modified: head/devel/apiextractor/pkg-plist ============================================================================== --- head/devel/apiextractor/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/apiextractor/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/apiextractor/abstractmetalang.h include/apiextractor/apiextractor.h include/apiextractor/apiextractormacros.h Modified: head/devel/avr-gdb/pkg-plist ============================================================================== --- head/devel/avr-gdb/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/avr-gdb/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,2 +1 @@ -@comment $FreeBSD$ bin/avr-gdb Modified: head/devel/bglibs/pkg-plist ============================================================================== --- head/devel/bglibs/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/bglibs/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/bg-installer bin/cli-generate bin/crc-gentab Modified: head/devel/bisoncpp/pkg-plist ============================================================================== --- head/devel/bisoncpp/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/bisoncpp/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/bisonc++ man/man1/bisonc++.1.gz share/bisonc++-%%PORTVERSION%%/bisonc++.cc Modified: head/devel/buildtool-doc/pkg-plist ============================================================================== --- head/devel/buildtool-doc/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/buildtool-doc/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PORTDOCS%%%%DOCSDIR%%/CHANGES %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/PEOPLE Modified: head/devel/buildtool/pkg-plist ============================================================================== --- head/devel/buildtool/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/buildtool/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/buildtool libexec/buildtool/bt_config libexec/buildtool/bt_dist Modified: head/devel/cgdb/pkg-plist ============================================================================== --- head/devel/cgdb/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/cgdb/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/cgdb %%DATADIR%%/cgdb.txt @dirrm %%DATADIR%% Modified: head/devel/compiz-bcop/pkg-plist ============================================================================== --- head/devel/compiz-bcop/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/compiz-bcop/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/bcop libdata/pkgconfig/bcop.pc share/bcop/bcop.xslt Modified: head/devel/configkit/pkg-plist ============================================================================== --- head/devel/configkit/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/configkit/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/configkit include/configkit.h include/configkit_int.h Modified: head/devel/cook/pkg-plist ============================================================================== --- head/devel/cook/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/cook/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/c_incl bin/cook bin/cook_bom Modified: head/devel/cutter/pkg-plist ============================================================================== --- head/devel/cutter/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/cutter/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/cut-diff bin/cutter include/cutter/cppcutter.h Modified: head/devel/cvs-devel/pkg-plist ============================================================================== --- head/devel/cvs-devel/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/cvs-devel/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/cvs bin/cvsbug bin/rcs2log Modified: head/devel/d-feet/pkg-plist ============================================================================== --- head/devel/d-feet/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/d-feet/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/d-feet %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt Modified: head/devel/dbus-sharp-glib/pkg-plist ============================================================================== --- head/devel/dbus-sharp-glib/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/dbus-sharp-glib/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/mono/dbus-sharp-glib-1.0/dbus-sharp-glib.dll lib/mono/gac/dbus-sharp-glib/1.0.0.0__5675b0c3093115b5/dbus-sharp-glib.dll lib/mono/gac/dbus-sharp-glib/1.0.0.0__5675b0c3093115b5/dbus-sharp-glib.dll.config Modified: head/devel/dbus-sharp/pkg-plist ============================================================================== --- head/devel/dbus-sharp/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/dbus-sharp/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/mono/dbus-sharp-1.0/dbus-sharp.dll lib/mono/gac/dbus-sharp/1.0.0.0__5675b0c3093115b5/dbus-sharp.dll lib/mono/gac/dbus-sharp/1.0.0.0__5675b0c3093115b5/dbus-sharp.dll.config Modified: head/devel/dissy/pkg-plist ============================================================================== --- head/devel/dissy/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/dissy/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/dissy %%PYTHON_SITELIBDIR%%/dissy/Bookmark.py %%PYTHON_SITELIBDIR%%/dissy/Bookmark.pyc Modified: head/devel/distcc/pkg-plist ============================================================================== --- head/devel/distcc/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/distcc/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/distcc bin/distccmon-text bin/lsdistcc Modified: head/devel/ditrack/pkg-plist ============================================================================== --- head/devel/ditrack/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/ditrack/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/dt bin/dt-createdb %%PYTHON_SITELIBDIR%%/DITrack/Backend/__init__.py Modified: head/devel/dmalloc/pkg-plist ============================================================================== --- head/devel/dmalloc/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/dmalloc/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/dmalloc include/dmalloc.h lib/libdmalloc.a Modified: head/devel/flickrnet/pkg-plist ============================================================================== --- head/devel/flickrnet/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/flickrnet/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/mono/flickrnet/FlickrNet.dll libdata/pkgconfig/flickrnet.pc @dirrm lib/mono/flickrnet Modified: head/devel/generatorrunner/pkg-plist ============================================================================== --- head/devel/generatorrunner/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/generatorrunner/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/docgenerator bin/generatorrunner include/generatorrunner/generator.h Modified: head/devel/gettext/pkg-plist ============================================================================== --- head/devel/gettext/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/gettext/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/autopoint bin/envsubst bin/gettext Modified: head/devel/gio-sharp/pkg-plist ============================================================================== --- head/devel/gio-sharp/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/gio-sharp/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/gio-sharp/gio-sharp.dll lib/gio-sharp/gio-sharp.dll.config lib/gio-sharp/gio-sharp.dll.mdb Modified: head/devel/google-gdata/pkg-plist ============================================================================== --- head/devel/google-gdata/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/google-gdata/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/mono/GData-Sharp/Google.GData.AccessControl.dll lib/mono/GData-Sharp/Google.GData.Apps.dll lib/mono/GData-Sharp/Google.GData.Blogger.dll Modified: head/devel/hs-cabal-install/pkg-plist ============================================================================== --- head/devel/hs-cabal-install/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/hs-cabal-install/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,2 +1 @@ -@comment $FreeBSD$ bin/cabal Modified: head/devel/hs-git-annex/pkg-plist ============================================================================== --- head/devel/hs-git-annex/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/hs-git-annex/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ etc/xdg/autostart/git-annex.desktop share/applications/git-annex.desktop @dirrmtry etc/xdg/autostart Modified: head/devel/hs-haddock/pkg-plist ============================================================================== --- head/devel/hs-haddock/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/hs-haddock/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,3 +1,2 @@ -@comment $FreeBSD$ @exec /bin/ln -sf %%EXECUTABLE%% %%HADDOCK%% @unexec /bin/ln -sf %%GHC_HADDOCK_CMD%% %%HADDOCK%% Modified: head/devel/hyena/pkg-plist ============================================================================== --- head/devel/hyena/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/hyena/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/hyena/Hyena.dll lib/hyena/Hyena.dll.config lib/hyena/Hyena.dll.mdb Modified: head/devel/icmake/pkg-plist ============================================================================== --- head/devel/icmake/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/icmake/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/icmake bin/icmbuild bin/icmstart Modified: head/devel/libast/pkg-plist ============================================================================== --- head/devel/libast/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/libast/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/libast-config include/libast.h include/libast/array.h Modified: head/devel/libbobcat/pkg-plist ============================================================================== --- head/devel/libbobcat/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/libbobcat/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/bobcat/a2x include/bobcat/align include/bobcat/arg Modified: head/devel/libee/pkg-plist ============================================================================== --- head/devel/libee/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/libee/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/libee/apache.h include/libee/ctx.h include/libee/event.h Modified: head/devel/libestr/pkg-plist ============================================================================== --- head/devel/libestr/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/libestr/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/libestr.h lib/libestr.a lib/libestr.la Modified: head/devel/libfreefare/pkg-plist ============================================================================== --- head/devel/libfreefare/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/libfreefare/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/mifare-classic-format bin/mifare-classic-write-ndef bin/mifare-desfire-access Modified: head/devel/liblcfg/pkg-plist ============================================================================== --- head/devel/liblcfg/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/liblcfg/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/lcfg include/lcfg/lcfg.h include/lcfgx/lcfgx_tree.h Modified: head/devel/libnfc/pkg-plist ============================================================================== --- head/devel/libnfc/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/libnfc/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/nfc-anticol bin/nfc-dep-initiator bin/nfc-dep-target Modified: head/devel/libshhmsg/pkg-plist ============================================================================== --- head/devel/libshhmsg/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/libshhmsg/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/shhmsg.h lib/libshhmsg.a lib/libshhmsg.so Modified: head/devel/libslang2/pkg-plist ============================================================================== --- head/devel/libslang2/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/libslang2/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/slsh etc/slsh.rc include/slang.h Modified: head/devel/libxalloc/pkg-plist ============================================================================== --- head/devel/libxalloc/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/libxalloc/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/xalloc.h lib/libxalloc.a lib/libxalloc.so Modified: head/devel/mingw32-binutils/pkg-plist ============================================================================== --- head/devel/mingw32-binutils/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/mingw32-binutils/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%BINUTILS_TARG%%/bin/addr2line %%BINUTILS_TARG%%/bin/ar %%BINUTILS_TARG%%/bin/as Modified: head/devel/monodevelop-database/pkg-plist ============================================================================== --- head/devel/monodevelop-database/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/monodevelop-database/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/monodevelop/AddIns/MonoDevelop.Database/MonoDevelop.Database.CodeGenerator.dll lib/monodevelop/AddIns/MonoDevelop.Database/MonoDevelop.Database.CodeGenerator.dll.mdb lib/monodevelop/AddIns/MonoDevelop.Database/MonoDevelop.Database.Components.dll Modified: head/devel/mpatrol/pkg-plist ============================================================================== --- head/devel/mpatrol/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/mpatrol/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/hexwords bin/mleak bin/mpatrol Modified: head/devel/msp430-binutils/pkg-plist ============================================================================== --- head/devel/msp430-binutils/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/msp430-binutils/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD: /tmp/pcvs/ports/devel/msp430-binutils/pkg-plist,v 1.12 2011-08-05 13:21:30 lev Exp $ bin/%%BINUTILS_TARG%%-addr2line bin/%%BINUTILS_TARG%%-ar bin/%%BINUTILS_TARG%%-as Modified: head/devel/ndesk-options/pkg-plist ============================================================================== --- head/devel/ndesk-options/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/ndesk-options/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/monodoc/sources/ndesk-options-docs.source lib/monodoc/sources/ndesk-options-docs.tree lib/monodoc/sources/ndesk-options-docs.zip Modified: head/devel/nemiver/pkg-plist ============================================================================== --- head/devel/nemiver/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/nemiver/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/nemiver include/nemiver/common/config.h include/nemiver/common/nmv-address.h Modified: head/devel/newfile/pkg-plist ============================================================================== --- head/devel/newfile/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/newfile/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/newfile man/man1/newfile.1.gz %%DATADIR%%/fileproc.rb Modified: head/devel/nini/pkg-plist ============================================================================== --- head/devel/nini/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/nini/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/mono/gac/Nini/%%NINI_VERSION%%.0.0__691faec150a7fa7b/Nini.dll lib/mono/nini-%%NINI_VERSION%%/Nini.dll libdata/pkgconfig/nini-%%NINI_VERSION%%.pc Modified: head/devel/ninja-ide/pkg-plist ============================================================================== --- head/devel/ninja-ide/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/ninja-ide/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/ninja-ide %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt Modified: head/devel/notify-sharp/pkg-plist ============================================================================== --- head/devel/notify-sharp/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/notify-sharp/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ lib/mono/gac/notify-sharp/0.4.0.0__2df29c54e245917a/notify-sharp.dll lib/mono/gac/notify-sharp/0.4.0.0__2df29c54e245917a/notify-sharp.dll.config lib/mono/notify-sharp/notify-sharp.dll Modified: head/devel/obfuscatejs/pkg-plist ============================================================================== --- head/devel/obfuscatejs/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/obfuscatejs/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/obfuscatejs %%DATADIR%%/consyntools.jar @dirrm %%DATADIR%% Modified: head/devel/ocamlweb/pkg-plist ============================================================================== --- head/devel/ocamlweb/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/ocamlweb/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/ocamlweb %%TEXMFDIR%%/tex/latex/ocamlweb/ocamlweb.sty @dirrm %%TEXMFDIR%%/tex/latex/ocamlweb Modified: head/devel/p5-App-Rad/pkg-plist ============================================================================== --- head/devel/p5-App-Rad/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/p5-App-Rad/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%SITE_PERL%%/%%PERL_ARCH%%/auto/App/Rad/.packlist %%SITE_PERL%%/App/Rad.pm %%SITE_PERL%%/App/Rad/Config.pm Modified: head/devel/p5-Hash-Diff/pkg-plist ============================================================================== --- head/devel/p5-Hash-Diff/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/p5-Hash-Diff/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Hash/Diff/.packlist %%SITE_PERL%%/Hash/Diff.pm @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Hash/Diff Modified: head/devel/p5-Log-Report/pkg-plist ============================================================================== --- head/devel/p5-Log-Report/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/p5-Log-Report/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/xgettext-perl %%SITE_PERL%%/%%PERL_ARCH%%/auto/Log/Report/.packlist %%SITE_PERL%%/Log/Report.pm Modified: head/devel/p5-MooseX-Types-Perl/pkg-plist ============================================================================== --- head/devel/p5-MooseX-Types-Perl/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/p5-MooseX-Types-Perl/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%SITE_PERL%%/%%PERL_ARCH%%/auto/MooseX/Types/Perl/.packlist %%SITE_PERL%%/MooseX/Types/Perl.pm @dirrmtry %%SITE_PERL%%/MooseX/Types Modified: head/devel/p5-Net-ZooKeeper/pkg-plist ============================================================================== --- head/devel/p5-Net-ZooKeeper/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/p5-Net-ZooKeeper/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/ZooKeeper/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/ZooKeeper/ZooKeeper.so %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/ZooKeeper/ZooKeeper.bs Modified: head/devel/p5-Object-Container/pkg-plist ============================================================================== --- head/devel/p5-Object-Container/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/p5-Object-Container/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Object/Container/.packlist %%SITE_PERL%%/Object/Container.pm %%SITE_PERL%%/Object/Container/ja.pod Modified: head/devel/p5-Sepia/pkg-plist ============================================================================== --- head/devel/p5-Sepia/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/p5-Sepia/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/sepl %%SITE_PERL%%/Sepia/Debug.pm %%SITE_PERL%%/Sepia/CPAN.pm Modified: head/devel/pecl-zookeeper/pkg-plist ============================================================================== --- head/devel/pecl-zookeeper/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/pecl-zookeeper/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,3 +1,2 @@ -@comment $FreeBSD$ %%DATADIR%%/zookeeper-api.php @dirrmtry %%DATADIR%% Modified: head/devel/pep8/pkg-plist ============================================================================== --- head/devel/pep8/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/pep8/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/pep8 %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt Modified: head/devel/popt/pkg-plist ============================================================================== --- head/devel/popt/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/popt/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/popt.h lib/libpopt.a lib/libpopt.la Modified: head/devel/poslib/pkg-plist ============================================================================== --- head/devel/poslib/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/poslib/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/poslib-config include/poslib-%%VERSION%%/poslib/bits.h include/poslib-%%VERSION%%/poslib/dnsdefs.h Modified: head/devel/preps-gui/pkg-plist ============================================================================== --- head/devel/preps-gui/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/preps-gui/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/preps share/gnome/apps/Development/PRepS.desktop share/gnome/help/preps/C/figures/arch_dlg.png Modified: head/devel/py-Breve/pkg-plist ============================================================================== --- head/devel/py-Breve/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-Breve/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/breve_server bin/html2breve bin/soup2breve Modified: head/devel/py-InlineEgg/pkg-plist ============================================================================== --- head/devel/py-InlineEgg/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-InlineEgg/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/inlineegg/WindowsSyscall.py %%PYTHON_SITELIBDIR%%/inlineegg/WindowsSyscall.pyc %%PYTHON_SITELIBDIR%%/inlineegg/WindowsSyscall.pyo Modified: head/devel/py-Jinja/pkg-plist ============================================================================== --- head/devel/py-Jinja/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-Jinja/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/devel/py-Jinja2-doc/pkg-plist ============================================================================== --- head/devel/py-Jinja2-doc/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-Jinja2-doc/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%DOCSDIR%%/.buildinfo %%DOCSDIR%%/_sources/api.txt %%DOCSDIR%%/_sources/changelog.txt Modified: head/devel/py-Jinja2/pkg-plist ============================================================================== --- head/devel/py-Jinja2/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-Jinja2/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/devel/py-ScriptTest/pkg-plist ============================================================================== --- head/devel/py-ScriptTest/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-ScriptTest/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,2 +1 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% Modified: head/devel/py-TurboJinja/pkg-plist ============================================================================== --- head/devel/py-TurboJinja/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-TurboJinja/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/devel/py-application/pkg-plist ============================================================================== --- head/devel/py-application/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-application/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/application/__init__.py %%PYTHON_SITELIBDIR%%/application/__init__.pyc %%PYTHON_SITELIBDIR%%/application/__init__.pyo Modified: head/devel/py-aspyct/pkg-plist ============================================================================== --- head/devel/py-aspyct/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-aspyct/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/Aspyct/__init__.py %%PYTHON_SITELIBDIR%%/Aspyct/__init__.pyc %%PYTHON_SITELIBDIR%%/Aspyct/__init__.pyo Modified: head/devel/py-bitarray/pkg-plist ============================================================================== --- head/devel/py-bitarray/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-bitarray/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/devel/py-cheetah/pkg-plist ============================================================================== --- head/devel/py-cheetah/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-cheetah/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/cheetah bin/cheetah-analyze bin/cheetah-compile Modified: head/devel/py-clonedigger/pkg-plist ============================================================================== --- head/devel/py-clonedigger/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-clonedigger/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/clonedigger %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/clonedigger/java_antlr.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/clonedigger/lua_antlr.py Modified: head/devel/py-construct/pkg-plist ============================================================================== --- head/devel/py-construct/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-construct/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/construct/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/construct/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/construct/__init__.pyo Modified: head/devel/py-dirspec/pkg-plist ============================================================================== --- head/devel/py-dirspec/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-dirspec/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/devel/py-iterpipes/pkg-plist ============================================================================== --- head/devel/py-iterpipes/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-iterpipes/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/iterpipes/__init__.py %%PYTHON_SITELIBDIR%%/iterpipes/__init__.pyc %%PYTHON_SITELIBDIR%%/iterpipes/__init__.pyo Modified: head/devel/py-json-py/pkg-plist ============================================================================== --- head/devel/py-json-py/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-json-py/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/json.py %%PYTHON_SITELIBDIR%%/json.pyc %%PYTHON_SITELIBDIR%%/jsontest.py Modified: head/devel/py-kid/pkg-plist ============================================================================== --- head/devel/py-kid/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-kid/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/kid bin/kidc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO Modified: head/devel/py-nose/pkg-plist ============================================================================== --- head/devel/py-nose/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-nose/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/nosetests bin/nosetests-%%PYTHON_VER%% %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO Modified: head/devel/py-pathtools/pkg-plist ============================================================================== --- head/devel/py-pathtools/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-pathtools/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% %%PORTDOCS%%%%DOCSDIR%%/.buildinfo %%PORTDOCS%%%%DOCSDIR%%/_modules/index.html Modified: head/devel/py-pip/pkg-plist ============================================================================== --- head/devel/py-pip/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-pip/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/pip bin/pip-%%PYTHON_VER%% %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO Modified: head/devel/py-protocols/pkg-plist ============================================================================== --- head/devel/py-protocols/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-protocols/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/protocols/__init__.py %%PYTHON_SITELIBDIR%%/protocols/__init__.pyc %%PYTHON_SITELIBDIR%%/protocols/__init__.pyo Modified: head/devel/py-pythonbrew/pkg-plist ============================================================================== --- head/devel/py-pythonbrew/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-pythonbrew/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/devel/py-turbojson11/pkg-plist ============================================================================== --- head/devel/py-turbojson11/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-turbojson11/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/devel/py-turbokid/pkg-plist ============================================================================== --- head/devel/py-turbokid/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-turbokid/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%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 Modified: head/devel/py-usb/pkg-plist ============================================================================== --- head/devel/py-usb/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-usb/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/usb.so %%PORTEXAMPLES%%%%EXAMPLESDIR%%/usbenum.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/usbprint.py Modified: head/devel/py-virtualenv-clone/pkg-plist ============================================================================== --- head/devel/py-virtualenv-clone/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-virtualenv-clone/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,3 +1,2 @@ -@comment $FreeBSD$ bin/virtualenv-clone %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% Modified: head/devel/py-watchdog/pkg-plist ============================================================================== --- head/devel/py-watchdog/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/py-watchdog/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/watchmedo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt Modified: head/devel/pybaz/pkg-plist ============================================================================== --- head/devel/pybaz/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/pybaz/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/pybaz/__init__.py %%PYTHON_SITELIBDIR%%/pybaz/__init__.pyc %%PYTHON_SITELIBDIR%%/pybaz/__init__.pyo Modified: head/devel/pyside-tools/pkg-plist ============================================================================== --- head/devel/pyside-tools/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/pyside-tools/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/pyside-lupdate bin/pyside-rcc bin/pyside-uic Modified: head/devel/pyside/pkg-plist ============================================================================== --- head/devel/pyside/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/pyside/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/PySide/QtCore/pyside_qtcore_python.h include/PySide/QtDeclarative/pyside_qtdeclarative_python.h include/PySide/QtGui/pyside_qtgui_python.h Modified: head/devel/pythk/pkg-plist ============================================================================== --- head/devel/pythk/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/pythk/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%PYTHON_SITELIBDIR%%/pythk/__init__.py %%PYTHON_SITELIBDIR%%/pythk/__init__.pyc %%PYTHON_SITELIBDIR%%/pythk/__init__.pyo Modified: head/devel/shiboken/pkg-plist ============================================================================== --- head/devel/shiboken/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/shiboken/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/shiboken include/shiboken/autodecref.h include/shiboken/basewrapper.h Modified: head/devel/skalibs/pkg-plist ============================================================================== --- head/devel/skalibs/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/skalibs/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/skalibs/alloc.h include/skalibs/allreadwrite.h include/skalibs/avlnode.h Modified: head/devel/smc/pkg-plist ============================================================================== --- head/devel/smc/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/smc/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/statemap.h include/statemap1.0/pkgIndex.tcl include/statemap1.0/statemap.tcl Modified: head/devel/subversion/pkg-plist ============================================================================== --- head/devel/subversion/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/subversion/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%TOOLS%%bin/fsfs-access-map %%TOOLS%%bin/fsfs-reorg %%TOOLS%%bin/fsfs-stats Modified: head/devel/subversion16/pkg-plist ============================================================================== --- head/devel/subversion16/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/subversion16/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%ASVN%%bin/asvn bin/svn %%TOOLS%%bin/svn-populate-node-origins-index Modified: head/devel/subversion17/pkg-plist ============================================================================== --- head/devel/subversion17/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/subversion17/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/svn %%TOOLS%%bin/svn-tools/diff %%TOOLS%%bin/svn-tools/diff3 Modified: head/devel/sysfsutils/pkg-plist ============================================================================== --- head/devel/sysfsutils/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/sysfsutils/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/dlist_test bin/get_device bin/get_driver Modified: head/devel/tex-kpathsea/pkg-plist ============================================================================== --- head/devel/tex-kpathsea/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/tex-kpathsea/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/kpseaccess bin/kpsereadlink bin/kpsestat Modified: head/devel/tex-web2c/pkg-plist ============================================================================== --- head/devel/tex-web2c/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/tex-web2c/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/tangle bin/ctangle bin/bibtex Modified: head/devel/vtg/pkg-plist ============================================================================== --- head/devel/vtg/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/devel/vtg/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/afrodite-0.12/afrodite.h lib/libafrodite-0.12.la lib/libafrodite-0.12.so Modified: head/dns/crossip/pkg-plist ============================================================================== --- head/dns/crossip/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/dns/crossip/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/crossip %%DATADIR%%/CrossIP.jar %%DATADIR%%/LICENSE.txt Modified: head/dns/djbdns-tools/pkg-plist ============================================================================== --- head/dns/djbdns-tools/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/dns/djbdns-tools/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/dnsfilter bin/dnsip bin/dnsipq Modified: head/dns/firedns/pkg-plist ============================================================================== --- head/dns/firedns/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/dns/firedns/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/fdnscname bin/fdnsip bin/fdnsip6 Modified: head/dns/ldapdns/pkg-plist ============================================================================== --- head/dns/ldapdns/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/dns/ldapdns/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/ldapdns bin/ldapaxfr bin/ldapdns-conf Modified: head/dns/posadis/pkg-plist ============================================================================== --- head/dns/posadis/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/dns/posadis/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/getzone bin/posadis bin/posadis-config Modified: head/dns/skadns/pkg-plist ============================================================================== --- head/dns/skadns/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/dns/skadns/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/skadnsd bin/skadnsfilter bin/skadnsip Modified: head/dns/zonecheck/pkg-plist ============================================================================== --- head/dns/zonecheck/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/dns/zonecheck/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/zonecheck etc/zonecheck-dist/de.profile etc/zonecheck-dist/default.profile Modified: head/editors/bitedit/pkg-plist ============================================================================== --- head/editors/bitedit/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/bitedit/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/bitedit %%PORTDOCS%%%%DOCSDIR%%/bitedit.txt %%PORTDOCS%%@dirrm %%DOCSDIR%% Modified: head/editors/drjava/pkg-plist ============================================================================== --- head/editors/drjava/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/drjava/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/drjava %%DATADIR%%/%%DRJAVAJAR%% @dirrm %%DATADIR%% Modified: head/editors/gobby/pkg-plist ============================================================================== --- head/editors/gobby/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/gobby/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/gobby %%DATADIR%%/icons/HighContrastLargePrint/48x48/actions/chat.png %%DATADIR%%/icons/HighContrastLargePrint/48x48/actions/document-list.png Modified: head/editors/jed/pkg-plist ============================================================================== --- head/editors/jed/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/jed/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/jed bin/jed-script %%X11%%bin/xjed Modified: head/editors/jext/pkg-plist ============================================================================== --- head/editors/jext/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/jext/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/jext %%DATADIR%%/History.txt %%DATADIR%%/Jython-LICENSE Modified: head/editors/morla/pkg-plist ============================================================================== --- head/editors/morla/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/morla/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/morla include/morla-module.h lib/morla/index.xml Modified: head/editors/nano-devel/pkg-plist ============================================================================== --- head/editors/nano-devel/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/nano-devel/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD: head/editors/nano/pkg-plist 315129 2013-03-24 15:50:36Z eadler $ bin/nano bin/rnano man/man1/nano.1.gz Modified: head/editors/nano/pkg-plist ============================================================================== --- head/editors/nano/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/nano/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/nano bin/rnano man/man1/nano.1.gz Modified: head/editors/nxml/pkg-plist ============================================================================== --- head/editors/nxml/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/nxml/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%EMACS_VERSION_SITE_LISPDIR%%/nxml/nxml-enc.el %%EMACS_VERSION_SITE_LISPDIR%%/nxml/nxml-enc.elc %%EMACS_VERSION_SITE_LISPDIR%%/nxml/nxml-glyph.el Modified: head/editors/psgml/pkg-plist ============================================================================== --- head/editors/psgml/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/psgml/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%EMACS_VERSION_SITE_LISPDIR%%/psgml/iso88591.map %%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-api.el %%EMACS_VERSION_SITE_LISPDIR%%/psgml/psgml-api.elc Modified: head/editors/spe/pkg-plist ============================================================================== --- head/editors/spe/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/spe/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/spe %%DATADIR%%/_spe/Blender_signature.py %%DATADIR%%/_spe/Child.py Modified: head/editors/tamago/pkg-plist ============================================================================== --- head/editors/tamago/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/tamago/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/egg-helper %%ELISPDIR%%/egg/egg-cnv.el %%ELISPDIR%%/egg/egg-cnv.elc Modified: head/editors/vim/pkg-plist ============================================================================== --- head/editors/vim/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/vim/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/vim bin/vimtutor bin/xxd Modified: head/editors/winefish/pkg-plist ============================================================================== --- head/editors/winefish/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/winefish/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/winefish share/application-registry/winefish.applications share/applications/winefish.desktop Modified: head/editors/xmlcopyeditor/pkg-plist ============================================================================== --- head/editors/xmlcopyeditor/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/editors/xmlcopyeditor/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/xmlcopyeditor share/applications/xmlcopyeditor.desktop share/pixmaps/xmlcopyeditor.png Modified: head/emulators/fuse/pkg-plist ============================================================================== --- head/emulators/fuse/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/emulators/fuse/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/fuse man/man1/fuse.1.gz %%ICONS%%share/applications/fuse.desktop Modified: head/emulators/lib765/pkg-plist ============================================================================== --- head/emulators/lib765/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/emulators/lib765/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/765.h lib/lib765.a lib/lib765.la Modified: head/emulators/libdsk/pkg-plist ============================================================================== --- head/emulators/libdsk/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/emulators/libdsk/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/apriboot bin/dskdump bin/dskform Modified: head/emulators/libspectrum/pkg-plist ============================================================================== --- head/emulators/libspectrum/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/emulators/libspectrum/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/libspectrum.h lib/libspectrum.a lib/libspectrum.la Modified: head/emulators/p5-Acme-6502/pkg-plist ============================================================================== --- head/emulators/p5-Acme-6502/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/emulators/p5-Acme-6502/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ %%SITE_PERL%%/Acme/6502.pm %%SITE_PERL%%/Acme/6502/Tube.pm @dirrm %%SITE_PERL%%/Acme/6502/ Modified: head/emulators/psim-freebsd/pkg-plist ============================================================================== --- head/emulators/psim-freebsd/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/emulators/psim-freebsd/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/psim-freebsd %%EXAMPLESDIR%%/dot.gdbinit %%PORTDOCS%%%%DOCSDIR%%/HOW-TO Modified: head/emulators/ski/pkg-plist ============================================================================== --- head/emulators/ski/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/emulators/ski/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/ski bin/bski bin/bskinc Modified: head/emulators/svr4_base/pkg-plist ============================================================================== --- head/emulators/svr4_base/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/emulators/svr4_base/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ compat/svr4/README compat/svr4/dev/SVR4_MAKEDEV compat/svr4/etc/default/init Modified: head/emulators/tpm-emulator/pkg-plist ============================================================================== --- head/emulators/tpm-emulator/pkg-plist Tue Jan 21 23:38:26 2014 (r340673) +++ head/emulators/tpm-emulator/pkg-plist Tue Jan 21 23:40:21 2014 (r340674) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/tpmd include/tddl.h lib/libtddl.a *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Tue Jan 21 23:47:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AEBA2F6; Tue, 21 Jan 2014 23:47:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9AC36165A; Tue, 21 Jan 2014 23:47:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0LNl7h3034524; Tue, 21 Jan 2014 23:47:07 GMT (envelope-from bmah@svn.freebsd.org) Received: (from bmah@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0LNl72c034523; Tue, 21 Jan 2014 23:47:07 GMT (envelope-from bmah@svn.freebsd.org) Message-Id: <201401212347.s0LNl72c034523@svn.freebsd.org> From: "Bruce A. Mah" Date: Tue, 21 Jan 2014 23:47:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340675 - 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.17 Precedence: list List-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, 21 Jan 2014 23:47:07 -0000 Author: bmah Date: Tue Jan 21 23:47:07 2014 New Revision: 340675 URL: http://svnweb.freebsd.org/changeset/ports/340675 QAT: https://qat.redports.org/buildarchive/r340675/ Log: Schedule net/pchar for deletion. I am the upstream author of this software. pchar was originally developed in a time before store-and-forward switches were common on LANs. Its algorithms assumed that there is only one packet queue per IP hop. Almost every modern network violates this assumption; thus pchar will return incorrect results in the vast majority of environments where it could be used today. In addition, I have not supported this software for over ten years. For these reasons I am scheduling this port for removal. Approved by: mat (mentor) Modified: head/net/pchar/Makefile Modified: head/net/pchar/Makefile ============================================================================== --- head/net/pchar/Makefile Tue Jan 21 23:40:21 2014 (r340674) +++ head/net/pchar/Makefile Tue Jan 21 23:47:07 2014 (r340675) @@ -11,6 +11,9 @@ MASTER_SITE_SUBDIR= bmah MAINTAINER= ports@FreeBSD.org COMMENT= Sandia Internet path characterization tool +DEPRECATED= Obsolete, abandoned +EXPIRATION_DATE=2014-05-01 + GNU_CONFIGURE= yes MAN8= pchar.8 From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 00:16:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F38C649F; Wed, 22 Jan 2014 00:16:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DEF271861; Wed, 22 Jan 2014 00:16:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M0GjGB047242; Wed, 22 Jan 2014 00:16:45 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M0GjDl047239; Wed, 22 Jan 2014 00:16:45 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201401220016.s0M0GjDl047239@svn.freebsd.org> From: Jason Helfman Date: Wed, 22 Jan 2014 00:16:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340676 - in head/devel/libvirt: . 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.17 Precedence: list List-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, 22 Jan 2014 00:16:46 -0000 Author: jgh Date: Wed Jan 22 00:16:44 2014 New Revision: 340676 URL: http://svnweb.freebsd.org/changeset/ports/340676 QAT: https://qat.redports.org/buildarchive/r340676/ Log: - add rc.d script for libvirtd daemon control [1] - rename option description for qemu - fix qemu dependencies for libvirtd operations - strip libraries - add pkg-message Many thanks to roman@ for testing! PR: 168656 [1] Submitted by: dpejesh@yahoo.com Added: head/devel/libvirt/files/ head/devel/libvirt/files/libvirtd.in (contents, props changed) head/devel/libvirt/pkg-message (contents, props changed) Modified: head/devel/libvirt/Makefile Modified: head/devel/libvirt/Makefile ============================================================================== --- head/devel/libvirt/Makefile Tue Jan 21 23:47:07 2014 (r340675) +++ head/devel/libvirt/Makefile Wed Jan 22 00:16:44 2014 (r340676) @@ -3,6 +3,7 @@ PORTNAME= libvirt PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/ \ ftp://libvirt.org/libvirt/ @@ -19,19 +20,24 @@ LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/ libssh2.so:${PORTSDIR}/security/libssh2 OPTIONS_DEFINE= QEMU DOCS NLS -QEMU_DESC= QEMU bindings +QEMU_DESC= QEMU driver OPTIONS_SUB= yes -QEMU_CONFIGURE_WITH= qemu +QEMU_CONFIGURE_WITH= qemu yajl +QEMU_CFLAGS= -I${LOCALBASE}/include +QEMU_LIB_DEPENDS= libyajl.so:${PORTSDIR}/devel/yajl +QEMU_RUN_DEPENDS= dmidecode:${PORTSDIR}/sysutils/dmidecode \ + qemu-io:${PORTSDIR}/emulators/qemu-devel NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE} +USE_RC_SUBR= libvirtd + GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-sasl \ - --without-yajl \ --without-avahi \ --without-polkit \ --without-hal \ @@ -59,6 +65,13 @@ SHLIB_VER= 1002 PLIST_SUB= PORTVERSION="-${PORTVERSION}" \ SHLIB_VER=${SHLIB_VER} PORTDOCS= * +STRIP_FILES= libvirt.so.${SHLIB_VER} \ + libvirt-qemu.so.${SHLIB_VER} \ + libvirt-lxc.so.${SHLIB_VER} \ + libvirt/lock-driver/lockd.so \ + libvirt/connection-driver/libvirt_driver_vbox.so \ + libvirt/connection-driver/libvirt_driver_secret.so \ + libvirt/connection-driver/libvirt_driver_storage.so .include @@ -90,12 +103,14 @@ post-install: ${ECHO_MSG} " Preserving local configuration file: ${STAGEDIR}${ETCDIR}/$${configuration}.conf"; \ fi; \ done -.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} .for doc in AUTHORS ChangeLog INSTALL NEWS README TODO ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} .endfor -.endif + +.for lib in ${STRIP_FILES} + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${lib} +.endfor regression-test: build @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} check Added: head/devel/libvirt/files/libvirtd.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libvirt/files/libvirtd.in Wed Jan 22 00:16:44 2014 (r340676) @@ -0,0 +1,31 @@ +#!/bin/sh + +# $FreeBSD$ +# +# PROVIDE: libvirtd +# REQUIRE: LOGIN +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf[.local] to enable libvirtd. +# +# libvirtd_enable (bool): Set to 'YES' to enable +# Default: NO +# + +. /etc/rc.subr + +name=libvirtd +rcvar=libvirtd_enable + +load_rc_config $name + +command=%%PREFIX%%/sbin/libvirtd +pidfile=%%LOCALBASE%%/var/run/${name}.pid + +command_args="--daemon --pid-file=${pidfile}" + +: ${libvirtd_enable:="NO"} + +PATH="${PATH}:/usr/local/sbin:/usr/local/bin" + +run_rc_command "$1" Added: head/devel/libvirt/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libvirt/pkg-message Wed Jan 22 00:16:44 2014 (r340676) @@ -0,0 +1,3 @@ + +To enable libvirtd please add libvirtd_enable="YES" to +/etc/rc.conf. From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 00:45:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59D81803 for ; Wed, 22 Jan 2014 00:45:06 +0000 (UTC) Received: from mail-pb0-f43.google.com (mail-pb0-f43.google.com [209.85.160.43]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2A66B1A51 for ; Wed, 22 Jan 2014 00:45:05 +0000 (UTC) Received: by mail-pb0-f43.google.com with SMTP id md12so9117387pbc.2 for ; Tue, 21 Jan 2014 16:45:04 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=OMCYqZKCiizVv4jHdkqBK0+MCEwK54aEzm3+Uw8OwxM=; b=GPweuOdmWGjc2aPAHSNM+QwGuVjMftuh0nSr6SJ4f3TG15H3J/Q9a5E7+Y/taCcK9+ 2wdMbhxngTugqWZXE82GJNgSsoQFTqSi6nRbIWNKcXJ5t0kjOv2STpmtIc4P2kmPQyUF 9d87z+jcpZ6CiAGkh4RhYty/w1YM/i+31M4as9corH9GrSlDkku94CZaPtbRL0/NGL8Z pFsrcFvha+oTQvS869vStmr4hMVVxfljL0OzaFFSyarasEUC56mxaXztVDI1wUDb49Iq nlTCyOn+HGFcjfUdjT4RFXu1i6dneH6kSht7PqNpKEIP8bGo8gAEDcveIJJi3hnzGnJS 6EGA== X-Gm-Message-State: ALoCoQmbidek0z/mN7dcN7pwxpbn1e6KiGNxuZNk06UK8qF4+8jUa4aTqN7sPMiUL/pAqY7ko3Bt MIME-Version: 1.0 X-Received: by 10.68.223.9 with SMTP id qq9mr28097658pbc.58.1390351504370; Tue, 21 Jan 2014 16:45:04 -0800 (PST) Sender: bsd-src@helfman.org Received: by 10.70.78.130 with HTTP; Tue, 21 Jan 2014 16:45:04 -0800 (PST) In-Reply-To: <201401220016.s0M0GjDl047239@svn.freebsd.org> References: <201401220016.s0M0GjDl047239@svn.freebsd.org> Date: Tue, 21 Jan 2014 16:45:04 -0800 X-Google-Sender-Auth: cKrGVSKCrSYQOS1h_Rsx5rLV3ms Message-ID: Subject: Re: svn commit: r340676 - in head/devel/libvirt: . files From: Jason Helfman To: bug-followup Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 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.17 Precedence: list List-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, 22 Jan 2014 00:45:06 -0000 Wrong PR was noted (forwarding contents to GNATS): Correct pr is 185745 On Tue, Jan 21, 2014 at 4:16 PM, Jason Helfman wrote: > Author: jgh > Date: Wed Jan 22 00:16:44 2014 > New Revision: 340676 > URL: http://svnweb.freebsd.org/changeset/ports/340676 > QAT: https://qat.redports.org/buildarchive/r340676/ > > Log: > - add rc.d script for libvirtd daemon control [1] > - rename option description for qemu > - fix qemu dependencies for libvirtd operations > - strip libraries > - add pkg-message > > Many thanks to roman@ for testing! > > PR: 168656 [1] > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=168656 > Submitted by: dpejesh@yahoo.com > > Added: > head/devel/libvirt/files/ > head/devel/libvirt/files/libvirtd.in (contents, props changed) > head/devel/libvirt/pkg-message (contents, props changed) > Modified: > head/devel/libvirt/Makefile > > Modified: head/devel/libvirt/Makefile > > ============================================================================== > --- head/devel/libvirt/Makefile Tue Jan 21 23:47:07 2014 (r340675) > +++ head/devel/libvirt/Makefile Wed Jan 22 00:16:44 2014 (r340676) > @@ -3,6 +3,7 @@ > > PORTNAME= libvirt > PORTVERSION= 1.2.1 > +PORTREVISION= 1 > CATEGORIES= devel > MASTER_SITES= http://libvirt.org/sources/ \ > ftp://libvirt.org/libvirt/ > @@ -19,19 +20,24 @@ LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/ > libssh2.so:${PORTSDIR}/security/libssh2 > > OPTIONS_DEFINE= QEMU DOCS NLS > -QEMU_DESC= QEMU bindings > +QEMU_DESC= QEMU driver > > OPTIONS_SUB= yes > > -QEMU_CONFIGURE_WITH= qemu > +QEMU_CONFIGURE_WITH= qemu yajl > +QEMU_CFLAGS= -I${LOCALBASE}/include > +QEMU_LIB_DEPENDS= libyajl.so:${PORTSDIR}/devel/yajl > +QEMU_RUN_DEPENDS= dmidecode:${PORTSDIR}/sysutils/dmidecode \ > + qemu-io:${PORTSDIR}/emulators/qemu-devel > > NLS_USES= gettext > NLS_CONFIGURE_ENABLE= nls > NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE} > > +USE_RC_SUBR= libvirtd > + > GNU_CONFIGURE= yes > CONFIGURE_ARGS= --without-sasl \ > - --without-yajl \ > --without-avahi \ > --without-polkit \ > --without-hal \ > @@ -59,6 +65,13 @@ SHLIB_VER= 1002 > PLIST_SUB= PORTVERSION="-${PORTVERSION}" \ > SHLIB_VER=${SHLIB_VER} > PORTDOCS= * > +STRIP_FILES= libvirt.so.${SHLIB_VER} \ > + libvirt-qemu.so.${SHLIB_VER} \ > + libvirt-lxc.so.${SHLIB_VER} \ > + libvirt/lock-driver/lockd.so \ > + libvirt/connection-driver/libvirt_driver_vbox.so \ > + libvirt/connection-driver/libvirt_driver_secret.so \ > + libvirt/connection-driver/libvirt_driver_storage.so > > .include > > @@ -90,12 +103,14 @@ post-install: > ${ECHO_MSG} " Preserving local configuration > file: ${STAGEDIR}${ETCDIR}/$${configuration}.conf"; \ > fi; \ > done > -.if ${PORT_OPTIONS:MDOCS} > @${MKDIR} ${STAGEDIR}${DOCSDIR} > .for doc in AUTHORS ChangeLog INSTALL NEWS README TODO > ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} > .endfor > -.endif > + > +.for lib in ${STRIP_FILES} > + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${lib} > +.endfor > > regression-test: build > @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} check > > Added: head/devel/libvirt/files/libvirtd.in > > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/libvirt/files/libvirtd.in Wed Jan 22 00:16:44 2014 > (r340676) > @@ -0,0 +1,31 @@ > +#!/bin/sh > + > +# $FreeBSD$ > +# > +# PROVIDE: libvirtd > +# REQUIRE: LOGIN > +# KEYWORD: shutdown > +# > +# Add the following line to /etc/rc.conf[.local] to enable libvirtd. > +# > +# libvirtd_enable (bool): Set to 'YES' to enable > +# Default: NO > +# > + > +. /etc/rc.subr > + > +name=libvirtd > +rcvar=libvirtd_enable > + > +load_rc_config $name > + > +command=%%PREFIX%%/sbin/libvirtd > +pidfile=%%LOCALBASE%%/var/run/${name}.pid > + > +command_args="--daemon --pid-file=${pidfile}" > + > +: ${libvirtd_enable:="NO"} > + > +PATH="${PATH}:/usr/local/sbin:/usr/local/bin" > + > +run_rc_command "$1" > > Added: head/devel/libvirt/pkg-message > > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/libvirt/pkg-message Wed Jan 22 00:16:44 2014 > (r340676) > @@ -0,0 +1,3 @@ > + > +To enable libvirtd please add libvirtd_enable="YES" to > +/etc/rc.conf. > > -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh | The Power to Serve From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 01:24:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80AD5B5D; Wed, 22 Jan 2014 01:24:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 60D1A1DBA; Wed, 22 Jan 2014 01:24:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M1OAFS073720; Wed, 22 Jan 2014 01:24:10 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M1O9HT073716; Wed, 22 Jan 2014 01:24:09 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401220124.s0M1O9HT073716@svn.freebsd.org> From: Steve Wills Date: Wed, 22 Jan 2014 01:24:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340677 - head/www/rubygem-haml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 01:24:10 -0000 Author: swills Date: Wed Jan 22 01:24:09 2014 New Revision: 340677 URL: http://svnweb.freebsd.org/changeset/ports/340677 QAT: https://qat.redports.org/buildarchive/r340677/ Log: - Update to Version 4.0.4 - Change XHTML to HTML in Comment and pkg-descr - Add MIT to License - Add devel/rubygem-tilt to RUN_DEPENDS - Add USE_RAKE - Support STAGEDIR - Change http://haml-lang.com/ to http://haml.info/ in pkg-descr - Remove bin/html2haml from PLIST_FILES since it's no longer in this gem PR: ports/185063 Submitted by: Horia Racoviceanu Approved by: Robert Gogolok (maintainer) Modified: head/www/rubygem-haml/Makefile head/www/rubygem-haml/distinfo head/www/rubygem-haml/pkg-descr (contents, props changed) Modified: head/www/rubygem-haml/Makefile ============================================================================== --- head/www/rubygem-haml/Makefile Wed Jan 22 00:16:44 2014 (r340676) +++ head/www/rubygem-haml/Makefile Wed Jan 22 01:24:09 2014 (r340677) @@ -2,18 +2,22 @@ # $FreeBSD$ PORTNAME= haml -PORTVERSION= 3.1.7 +PORTVERSION= 4.0.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= gogolok+freebsd@gmail.com -COMMENT= Markup language to describe XHTML +COMMENT= Markup language to describe HTML +LICENSE= MIT + +RUN_DEPENDS= rubygem-tilt>=0:${PORTSDIR}/devel/rubygem-tilt + +USE_RAKE= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -PLIST_FILES= bin/haml bin/html2haml +PLIST_FILES= bin/haml -NO_STAGE= yes .include Modified: head/www/rubygem-haml/distinfo ============================================================================== --- head/www/rubygem-haml/distinfo Wed Jan 22 00:16:44 2014 (r340676) +++ head/www/rubygem-haml/distinfo Wed Jan 22 01:24:09 2014 (r340677) @@ -1,2 +1,2 @@ -SHA256 (rubygem/haml-3.1.7.gem) = d6a7cab4234cc98980ac3b25f1b99efed2ec50acbd0b6b213b68856d14e89bc7 -SIZE (rubygem/haml-3.1.7.gem) = 373248 +SHA256 (rubygem/haml-4.0.4.gem) = f232cc6623d772973729c1a9a3403f0282d965790271332d62d0cf95e0b93463 +SIZE (rubygem/haml-4.0.4.gem) = 114688 Modified: head/www/rubygem-haml/pkg-descr ============================================================================== --- head/www/rubygem-haml/pkg-descr Wed Jan 22 00:16:44 2014 (r340676) +++ head/www/rubygem-haml/pkg-descr Wed Jan 22 01:24:09 2014 (r340677) @@ -1,9 +1,9 @@ -Haml is a markup language that's used to cleanly and simply describe the XHTML +Haml is a markup language that's used to cleanly and simply describe the HTML of any web document without the use of inline code. Haml functions as a replacement for inline page templating systems such as PHP, ASP, and ERB, the templating language used in most Ruby on Rails applications. -However, Haml avoids the need for explicitly coding XHTML into the template, -because it itself is a description of the XHTML, with some code to generate +However, Haml avoids the need for explicitly coding HTML into the template, +because it itself is a description of the HTML, with some code to generate dynamic content. -WWW: http://haml-lang.com/ +WWW: http://haml.info/ From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 01:33:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id DFFE5D29; Wed, 22 Jan 2014 01:33:52 +0000 (UTC) Date: Wed, 22 Jan 2014 01:33:52 +0000 From: Alexey Dokuchaev To: Alex Dupre Subject: Re: svn commit: r340618 - head/security/cryptlib Message-ID: <20140122013352.GA12715@FreeBSD.org> References: <201401211633.s0LGXRLP049969@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401211633.s0LGXRLP049969@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 22 Jan 2014 01:33:52 -0000 On Tue, Jan 21, 2014 at 04:33:27PM +0000, Alex Dupre wrote: > New Revision: 340618 > URL: http://svnweb.freebsd.org/changeset/ports/340618 > QAT: https://qat.redports.org/buildarchive/r340618/ > > +OPTIONS_DEFINE= DOCS Couple of observations. :) OPTIONS are normally placed below all other knobs (traditionally). > + ${LN} -sf ${PREFIX}/lib/libcl.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libcl.so.3 > + ${LN} -sf ${PREFIX}/lib/libcl.so.3 ${STAGEDIR}${PREFIX}/lib/libcl.so Per our own wiki.freebsd.org/ports/StageDir: "When creating a symlink, prepend ${STAGEDIR} to the target path only (and generally try to avoid using absolute paths in source). [...] Note that source of ${PREFIX}/lib/libfoo.so.42, while seemingly okay, could be in fact incorrect, since absolute path can potentially point to a wrong location, e.g. when remote filesystem (with installed package) is mounted via NFS under non-root mount point. Relative paths are less fragile (and often much shorter)." ./danfe From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 01:45:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3EC96196; Wed, 22 Jan 2014 01:45:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 29F211F06; Wed, 22 Jan 2014 01:45:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M1jj0G081623; Wed, 22 Jan 2014 01:45:45 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M1jiA4081620; Wed, 22 Jan 2014 01:45:44 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401220145.s0M1jiA4081620@svn.freebsd.org> From: Rusmir Dusko Date: Wed, 22 Jan 2014 01:45:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340678 - in head/audio/alure: . 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.17 Precedence: list List-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, 22 Jan 2014 01:45:45 -0000 Author: nemysis Date: Wed Jan 22 01:45:44 2014 New Revision: 340678 URL: http://svnweb.freebsd.org/changeset/ports/340678 QAT: https://qat.redports.org/buildarchive/r340678/ Log: - Bump PORTREVISION [1] - Make sndfile dependency optional like all others [1] - Remove STATIC lib and Option [1] - Disable all warnings with -w - Remove OPTIONS_SUB=yes [1] - Fix options. They were affecting non-existing cmake variables; USE_VORBIS was always set to true [1] - Use the new format for LIB_DEPENDS [1] - Add REINPLACE to fix CMakeLists.txt type which prevented linking with libFLAC [1] - Add patch to fix build of FLUIDSYNTH Option [1] - Remove useless REINPLACE_CMD [1] - Change pkg-plist, remove STATIC libs [1] PR: ports/185949 [1] Submitted by: amdmi3 Added: head/audio/alure/files/ head/audio/alure/files/patch-src__codec_fluidsynth.cpp (contents, props changed) Modified: head/audio/alure/Makefile head/audio/alure/pkg-plist (contents, props changed) Modified: head/audio/alure/Makefile ============================================================================== --- head/audio/alure/Makefile Wed Jan 22 01:24:09 2014 (r340677) +++ head/audio/alure/Makefile Wed Jan 22 01:45:44 2014 (r340678) @@ -3,7 +3,7 @@ PORTNAME= alure PORTVERSION= 1.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://kcat.strangesoft.net/alure-releases/ @@ -12,68 +12,61 @@ COMMENT= Utility library to help manage LICENSE= MIT -LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile - USES= cmake openal:soft pkgconfig USE_LDCONFIG= yes +CMAKE_ARGS= -DBUILD_STATIC:BOOL=FALSE -CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib +CFLAGS+= -w PORTDOCS= * PORTEXAMPLES= * -OPTIONS_DEFINE= DOCS DUMB EXAMPLES FLAC FLUIDSYNTH MPG123 MODPLUG STATIC VORBIS -OPTIONS_DEFAULT= DUMB FLAC VORBIS +OPTIONS_DEFINE= DOCS DUMB EXAMPLES FLAC FLUIDSYNTH MPG123 MODPLUG VORBIS SNDFILE +OPTIONS_DEFAULT= DUMB FLAC VORBIS SNDFILE DUMB_DESC= DUMB audio library decoding support FLUIDSYNTH_DESC= MIDI support via FluidSynth MODPLUG_DESC= MOD decoding via ModPlug -OPTIONS_SUB= yes - DOCS_BUILD_DEPENDS= NaturalDocs:${PORTSDIR}/devel/naturaldocs -DUMB_BUILD_DEPENDS= ${LOCALBASE}/include/dumb.h:${PORTSDIR}/audio/dumb-allegro -DUMB_CMAKE_ON= -DUSE_DUMB:BOOL=TRUE -DUMB_CMAKE_OFF= -DUSE_DUMB:BOOL=FALSE -FLAC_LIB_DEPENDS= FLAC:${PORTSDIR}/audio/flac -FLAC_CMAKE_ON= -DUSE_FLAC:BOOL=TRUE -FLAC_CMAKE_OFF= -DUSE_FLAC:BOOL=FALSE -FLUIDSYNTH_LIB_DEPENDS= fluidsynth:${PORTSDIR}/audio/fluidsynth -FLUIDSYNTH_CMAKE_ON= -DUSE_FLUIDSYNTH:BOOL=TRUE -FLUIDSYNTH_CMAKE_OFF= -DUSE_FLUIDSYNTH:BOOL=FALSE -MPG123_LIB_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 -MPG123_CMAKE_ON= -DUSE_MPG123:BOOL=TRUE -MPG123_CMAKE_OFF= -DUSE_MPG123:BOOL=FALSE -MODPLUG_BUILD_DEPENDS= ${LOCALBASE}/include/libmodplug/modplug.h:${PORTSDIR}/audio/libmodplug -MODPLUG_CMAKE_ON= -DUSE_MODPLUG:BOOL=TRUE -MODPLUG_CMAKE_OFF= -DUSE_MODPLUG:BOOL=FALSE -VORBIS_LIB_DEPENDS= vorbis:${PORTSDIR}/audio/libvorbis -VORBIS_CMAKE_ON= -DUSE_VORBIS:BOOL=TRUE -VORBIS_CMAKE_OFF= -DUSE_VORBIS:BOOL=TRUE +DUMB_BUILD_DEPENDS= ${LOCALBASE}/include/dumb.h:${PORTSDIR}/audio/dumb +DUMB_CMAKE_ON= -DDUMB:BOOL=TRUE +DUMB_CMAKE_OFF= -DDUMB:BOOL=FALSE +FLAC_LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audio/flac +FLAC_CMAKE_ON= -DFLAC:BOOL=TRUE +FLAC_CMAKE_OFF= -DFLAC:BOOL=FALSE +FLUIDSYNTH_LIB_DEPENDS= libfluidsynth.so:${PORTSDIR}/audio/fluidsynth +FLUIDSYNTH_CMAKE_ON= -DFLUIDSYNTH:BOOL=TRUE +FLUIDSYNTH_CMAKE_OFF= -DFLUIDSYNTH:BOOL=FALSE +MPG123_LIB_DEPENDS= libmpg123.so:${PORTSDIR}/audio/mpg123 +MPG123_CMAKE_ON= -DMPG123:BOOL=TRUE +MPG123_CMAKE_OFF= -DMPG123:BOOL=FALSE +MODPLUG_LIB_DEPENDS= libmodplug.so:${PORTSDIR}/audio/libmodplug +MODPLUG_CMAKE_ON= -DMODPLUG:BOOL=TRUE +MODPLUG_CMAKE_OFF= -DMODPLUG:BOOL=FALSE +VORBIS_LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis +VORBIS_CMAKE_ON= -DVORBIS:BOOL=TRUE +VORBIS_CMAKE_OFF= -DVORBIS:BOOL=FALSE +SNDFILE_LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile +SNDFILE_CMAKE_ON= -DSNDFILE:BOOL=TRUE +SNDFILE_CMAKE_OFF= -DSNDFILE:BOOL=FALSE .include post-patch: - @${REINPLACE_CMD} -e 's|lib$${LIB_SUFFIX}/pkgconfig|$${CMAKE_INSTALL_PREFIX}/libdata/pkgconfig|' \ - -e 's|"ModPlug support (for IT/XM/S3M/MOD)" OFF)|"ModPlug support (for IT/XM/S3M/MOD)" ON)|' \ + @${REINPLACE_CMD} -e 's|lib$${LIB_SUFFIX}/pkgconfig|libdata/pkgconfig|' \ + -e 's|LIBFLAC_LIBRARIES|FLAC_LIBRARIES|' \ ${WRKSRC}/CMakeLists.txt .if ${PORT_OPTIONS:MDOCS} @${REINPLACE_CMD} \ -e 's|INSTALL(DIRECTORY "$${ALURE_SOURCE_DIR}/docs/html"|INSTALL(DIRECTORY "$${ALURE_SOURCE_DIR}/docs/html" "$${ALURE_SOURCE_DIR}/docs/naturaldocs"|' \ ${WRKSRC}/CMakeLists.txt -.endif - -.if ! ${PORT_OPTIONS:MDOCS} +.else @${REINPLACE_CMD} -i '' '/FIND_PROGRAM(NATDOCS_BIN NaturalDocs)/,/ENDIF(NATDOCS_BIN)/s/^/#/' ${WRKSRC}/CMakeLists.txt @${REINPLACE_CMD} -i '' -e '/INSTALL(DIRECTORY "$${ALURE_SOURCE_DIR}/,+2d' ${WRKSRC}/CMakeLists.txt .endif -.if ! ${PORT_OPTIONS:MSTATIC} - @${REINPLACE_CMD} -e 's|"Build the static version of the library" ON)|"Build the static version of the library" OFF)|' \ - ${WRKSRC}/CMakeLists.txt -.endif - post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) Added: head/audio/alure/files/patch-src__codec_fluidsynth.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/alure/files/patch-src__codec_fluidsynth.cpp Wed Jan 22 01:45:44 2014 (r340678) @@ -0,0 +1,10 @@ +--- ./src/codec_fluidsynth.cpp.orig 2011-07-29 10:37:48.000000000 +0200 ++++ ./src/codec_fluidsynth.cpp 2014-01-22 01:32:03.000000000 +0100 +@@ -27,6 +27,7 @@ + + #include + #include ++#include + #ifdef _WIN32 + #include + #endif Modified: head/audio/alure/pkg-plist ============================================================================== --- head/audio/alure/pkg-plist Wed Jan 22 01:24:09 2014 (r340677) +++ head/audio/alure/pkg-plist Wed Jan 22 01:45:44 2014 (r340678) @@ -2,10 +2,8 @@ bin/alurecdplay bin/alureplay bin/alurestream include/AL/alure.h -%%STATIC%%lib/libalure-static.a lib/libalure.so lib/libalure.so.1 lib/libalure.so.1.2.0 -%%STATIC%%libdata/pkgconfig/alure-static.pc libdata/pkgconfig/alure.pc @dirrmtry include/AL From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 02:05:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 07AE168C; Wed, 22 Jan 2014 02:05:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CD9531087; Wed, 22 Jan 2014 02:05:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M25sJo089465; Wed, 22 Jan 2014 02:05:54 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M25s2l089460; Wed, 22 Jan 2014 02:05:54 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401220205.s0M25s2l089460@svn.freebsd.org> From: Steve Wills Date: Wed, 22 Jan 2014 02:05:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340679 - in head/www: . rubygem-html2haml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 02:05:55 -0000 Author: swills Date: Wed Jan 22 02:05:53 2014 New Revision: 340679 URL: http://svnweb.freebsd.org/changeset/ports/340679 QAT: https://qat.redports.org/buildarchive/r340679/ Log: Transforms an HTML file into corresponding Haml code. WWW: http://haml.info/ PR: ports/185062 Submitted by: Horia Racoviceanu Added: head/www/rubygem-html2haml/ head/www/rubygem-html2haml/Makefile (contents, props changed) head/www/rubygem-html2haml/distinfo (contents, props changed) head/www/rubygem-html2haml/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Jan 22 01:45:44 2014 (r340678) +++ head/www/Makefile Wed Jan 22 02:05:53 2014 (r340679) @@ -1790,6 +1790,7 @@ SUBDIR += rubygem-haml-contrib SUBDIR += rubygem-haml-rails SUBDIR += rubygem-hpricot + SUBDIR += rubygem-html2haml SUBDIR += rubygem-http-cookie SUBDIR += rubygem-httparty SUBDIR += rubygem-httpclient Added: head/www/rubygem-html2haml/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-html2haml/Makefile Wed Jan 22 02:05:53 2014 (r340679) @@ -0,0 +1,26 @@ +# Created by: Horia Racoviceanu +# $FreeBSD$ + +PORTNAME= html2haml +PORTVERSION= 1.0.1 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= horia@racoviceanu.com +COMMENT= Converts HTML into Haml + +LICENSE= MIT + +RUN_DEPENDS= rubygem-erubis>=2.7.0:${PORTSDIR}/www/rubygem-erubis \ + rubygem-haml>=4.0.0:${PORTSDIR}/www/rubygem-haml \ + rubygem-hpricot>=0.8.6:${PORTSDIR}/www/rubygem-hpricot \ + rubygem-ruby_parser>=3.1.1:${PORTSDIR}/devel/rubygem-ruby_parser + +USE_RAKE= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/html2haml + +.include Added: head/www/rubygem-html2haml/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-html2haml/distinfo Wed Jan 22 02:05:53 2014 (r340679) @@ -0,0 +1,2 @@ +SHA256 (rubygem/html2haml-1.0.1.gem) = 7b094730b346a6e36a5d73527da87ad2f231e062dfbee42c059474ca44edb061 +SIZE (rubygem/html2haml-1.0.1.gem) = 17920 Added: head/www/rubygem-html2haml/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-html2haml/pkg-descr Wed Jan 22 02:05:53 2014 (r340679) @@ -0,0 +1,3 @@ +Transforms an HTML file into corresponding Haml code. + +WWW: http://haml.info/ From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 05:44:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E1519CD; Wed, 22 Jan 2014 05:44:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3F62E1093; Wed, 22 Jan 2014 05:44:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M5iYEx073151; Wed, 22 Jan 2014 05:44:34 GMT (envelope-from maho@svn.freebsd.org) Received: (from maho@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M5iXwR073148; Wed, 22 Jan 2014 05:44:33 GMT (envelope-from maho@svn.freebsd.org) Message-Id: <201401220544.s0M5iXwR073148@svn.freebsd.org> From: Maho Nakata Date: Wed, 22 Jan 2014 05:44:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340680 - head/editors/openoffice-4/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.17 Precedence: list List-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, 22 Jan 2014 05:44:34 -0000 Author: maho Date: Wed Jan 22 05:44:33 2014 New Revision: 340680 URL: http://svnweb.freebsd.org/changeset/ports/340680 QAT: https://qat.redports.org/buildarchive/r340680/ Log: Fix build PR: 185401 Submitted by: Jan Henrik Sylvester Added: head/editors/openoffice-4/files/patch-moz-freetype_header_relocation (contents, props changed) head/editors/openoffice-4/files/patch-nss-gcc46 (contents, props changed) head/editors/openoffice-4/files/patch-vcl_source_glyphs_graphite_adaptors.cxx (contents, props changed) Added: head/editors/openoffice-4/files/patch-moz-freetype_header_relocation ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/openoffice-4/files/patch-moz-freetype_header_relocation Wed Jan 22 05:44:33 2014 (r340680) @@ -0,0 +1,73 @@ +--- moz/makefile.mk.orig 2013-08-13 11:49:32.000000000 +0000 ++++ moz/makefile.mk 2014-01-01 20:09:17.000000000 +0000 +@@ -99,7 +99,8 @@ + patches/respect_disable_pango.patch \ + patches/arm_build_fix.patch \ + patches/link_fontconfig.patch \ +- patches/brokenmakefile.patch ++ patches/brokenmakefile.patch \ ++ patches/freetype_header_relocation.patch + + .IF "$(OS)"=="LINUX" + PATCH_FILES+=patches/nss_linux.patch +--- moz/patches/freetype_header_relocation.patch.orig 1970-01-01 00:00:00.000000000 +0000 ++++ moz/patches/freetype_header_relocation.patch 2014-01-01 20:50:11.000000000 +0000 +@@ -0,0 +1,58 @@ ++--- misc/build/mozilla/config/system-headers.orig 2007-11-19 21:36:18.000000000 +0100 +++++ misc/build/mozilla/config/system-headers 2014-01-01 20:47:56.000000000 +0100 ++@@ -193,12 +193,12 @@ ++ fpieee.h ++ frame/log.h ++ frame/req.h ++-freetype/freetype.h ++-freetype/ftcache.h ++-freetype/ftglyph.h ++-freetype/ftoutln.h ++-freetype/ttnameid.h ++-freetype/tttables.h +++freetype.h +++ftcache.h +++ftglyph.h +++ftoutln.h +++ttnameid.h +++tttables.h ++ fribidi/fribidi.h ++ FSp_fopen.h ++ fstream.h ++--- misc/build/mozilla/gfx/src/gtk/nsFontMetricsXft.cpp.orig 2008-01-29 19:31:08.000000000 +0000 +++++ misc/build/mozilla/gfx/src/gtk/nsFontMetricsXft.cpp 2014-01-01 20:43:42.000000000 +0000 ++@@ -67,8 +67,8 @@ ++ #include "nsFontConfigUtils.h" ++ ++ #include ++-#include ++-#include +++#include +++#include ++ ++ #define FORCE_PR_LOG ++ #include "prlog.h" ++--- misc/build/mozilla/gfx/src/gtk/nsFontMetricsPango.cpp.orig 2008-01-29 19:31:08.000000000 +0000 +++++ misc/build/mozilla/gfx/src/gtk/nsFontMetricsPango.cpp 2014-01-01 20:44:06.000000000 +0000 ++@@ -58,7 +58,7 @@ ++ #include ++ #include ++ #include ++-#include +++#include ++ ++ #include "mozilla-decoder.h" ++ ++--- misc/build/mozilla/gfx/src/cairo/nsFontMetricsXft.cpp.orig 2008-01-29 19:31:08.000000000 +0000 +++++ misc/build/mozilla/gfx/src/cairo/nsFontMetricsXft.cpp 2014-01-01 20:44:34.000000000 +0000 ++@@ -67,8 +67,8 @@ ++ #include "nsFontConfigUtils.h" ++ ++ #include ++-#include ++-#include +++#include +++#include ++ ++ #define FORCE_PR_LOG ++ #include "prlog.h" Added: head/editors/openoffice-4/files/patch-nss-gcc46 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/openoffice-4/files/patch-nss-gcc46 Wed Jan 22 05:44:33 2014 (r340680) @@ -0,0 +1,27 @@ +--- nss/makefile.mk.orig 2013-08-13 11:46:06.000000000 +0000 ++++ nss/makefile.mk 2014-01-01 18:13:26.000000000 +0000 +@@ -44,6 +44,10 @@ + TARFILE_ROOTDIR=nss-3.12.6 + PATCH_FILES=nss.patch + ++.IF "$(OS)"=="FREEBSD" ++PATCH_FILES+=nss_freebsd.patch ++.ENDIF # "$(OS)"=="FREEBSD" ++ + .IF "$(OS)"=="MACOSX" + MACOS_SDK_DIR=/Developer/SDKs/MacOSX10.4u.sdk + .EXPORT : MACOS_SDK_DIR +--- nss/nss_freebsd.patch.orig 1970-01-01 00:00:00.000000000 +0000 ++++ nss/nss_freebsd.patch 2014-01-01 18:08:20.000000000 +0000 +@@ -0,0 +1,11 @@ ++--- misc/build/nss-3.12.6/mozilla/security/coreconf/FreeBSD.mk.orig 2009-08-22 05:33:09.000000000 +0000 +++++ misc/build/nss-3.12.6/mozilla/security/coreconf/FreeBSD.mk 2014-01-01 13:47:48.000000000 +0000 ++@@ -38,7 +38,7 @@ ++ include $(CORE_DEPTH)/coreconf/UNIX.mk ++ ++ DEFAULT_COMPILER = gcc ++-CC = gcc +++#CC = gcc ++ CCC = g++ ++ RANLIB = ranlib ++ Added: head/editors/openoffice-4/files/patch-vcl_source_glyphs_graphite_adaptors.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/openoffice-4/files/patch-vcl_source_glyphs_graphite_adaptors.cxx Wed Jan 22 05:44:33 2014 (r340680) @@ -0,0 +1,11 @@ +--- vcl/source/glyphs/graphite_adaptors.cxx.orig 2013-08-13 11:45:43.000000000 +0000 ++++ vcl/source/glyphs/graphite_adaptors.cxx 2013-12-31 16:39:41.000000000 +0000 +@@ -45,7 +45,7 @@ + + #include + +-#include ++#include + + // Module + #include "gcach_ftyp.hxx" From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 07:06:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7A1D7B4; Wed, 22 Jan 2014 07:06:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B38DF1643; Wed, 22 Jan 2014 07:06:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M76IN3004110; Wed, 22 Jan 2014 07:06:18 GMT (envelope-from novel@svn.freebsd.org) Received: (from novel@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M76IHc004109; Wed, 22 Jan 2014 07:06:18 GMT (envelope-from novel@svn.freebsd.org) Message-Id: <201401220706.s0M76IHc004109@svn.freebsd.org> From: Roman Bogorodskiy Date: Wed, 22 Jan 2014 07:06:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340681 - head/security/gnutls X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 07:06:18 -0000 Author: novel Date: Wed Jan 22 07:06:18 2014 New Revision: 340681 URL: http://svnweb.freebsd.org/changeset/ports/340681 QAT: https://qat.redports.org/buildarchive/r340681/ Log: Add an additional mirror to MASTER_SITES. PR: 185901 Submitted by: Bruno Machado Modified: head/security/gnutls/Makefile Modified: head/security/gnutls/Makefile ============================================================================== --- head/security/gnutls/Makefile Wed Jan 22 05:44:33 2014 (r340680) +++ head/security/gnutls/Makefile Wed Jan 22 07:06:18 2014 (r340681) @@ -6,7 +6,8 @@ PORTVERSION= 2.12.23 PORTREVISION= 3 CATEGORIES= security net MASTER_SITES= \ - ftp://ftp.gnutls.org/gcrypt/gnutls/v${PORTVERSION:C/.[0-9]+$//}/ + ftp://ftp.gnutls.org/gcrypt/gnutls/v${PORTVERSION:C/.[0-9]+$//}/ \ + http://www.ring.gr.jp/pub/net/gnupg/gnutls/v${PORTVERSION:C/.[0-9]+$//}/ MAINTAINER= novel@FreeBSD.org COMMENT= GNU Transport Layer Security library From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 07:20:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA73AADC; Wed, 22 Jan 2014 07:20:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7CDA5171C; Wed, 22 Jan 2014 07:20:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M7KUjt008594; Wed, 22 Jan 2014 07:20:30 GMT (envelope-from martymac@svn.freebsd.org) Received: (from martymac@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M7KT4W008590; Wed, 22 Jan 2014 07:20:29 GMT (envelope-from martymac@svn.freebsd.org) Message-Id: <201401220720.s0M7KT4W008590@svn.freebsd.org> From: Ganael LAPLANCHE Date: Wed, 22 Jan 2014 07:20:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340682 - head/sysutils/brebis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 07:20:30 -0000 Author: martymac Date: Wed Jan 22 07:20:29 2014 New Revision: 340682 URL: http://svnweb.freebsd.org/changeset/ports/340682 QAT: https://qat.redports.org/buildarchive/r340682/ Log: - Update to 0.9 - Handle egginfo plist manually to avoid a PREFIX-related problem described here : http://lists.freebsd.org/pipermail/freebsd-python/2014-January/006457.html Modified: head/sysutils/brebis/Makefile head/sysutils/brebis/distinfo head/sysutils/brebis/pkg-plist Modified: head/sysutils/brebis/Makefile ============================================================================== --- head/sysutils/brebis/Makefile Wed Jan 22 07:06:18 2014 (r340681) +++ head/sysutils/brebis/Makefile Wed Jan 22 07:20:29 2014 (r340682) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= brebis -PORTVERSION= 0.8 +PORTVERSION= 0.9 CATEGORIES= sysutils archivers -MASTER_SITES= http://brebisproject.org/attachments/download/9/ \ +MASTER_SITES= http://brebisproject.org/attachments/download/18/ \ LOCAL/martymac MAINTAINER= martymac@FreeBSD.org @@ -15,7 +15,9 @@ LICENSE= GPLv3 USE_PYTHON= 3.3+ USE_PYDISTUTILS= yes -PLIST_SUB+= PYTHON_SUFFIX=${PYTHON_SUFFIX} +PLIST_SUB+= PYTHON_SUFFIX=${PYTHON_SUFFIX} \ + PYDISTUTILS_EGGINFO=${PYDISTUTILS_EGGINFO} +PYDISTUTILS_NOEGGINFO= yes PORTDOCS= README Modified: head/sysutils/brebis/distinfo ============================================================================== --- head/sysutils/brebis/distinfo Wed Jan 22 07:06:18 2014 (r340681) +++ head/sysutils/brebis/distinfo Wed Jan 22 07:20:29 2014 (r340682) @@ -1,2 +1,2 @@ -SHA256 (brebis-0.8.tar.gz) = 3ff00bceb1b37377af0eae4c37e832882bdccd4e735f013879445288cdabfdf2 -SIZE (brebis-0.8.tar.gz) = 191200 +SHA256 (brebis-0.9.tar.gz) = 65c48073dfbe0547064dcf43288adce82637dacd0c8f5e00b39e7a7c1fd0bedf +SIZE (brebis-0.9.tar.gz) = 269864 Modified: head/sysutils/brebis/pkg-plist ============================================================================== --- head/sysutils/brebis/pkg-plist Wed Jan 22 07:06:18 2014 (r340681) +++ head/sysutils/brebis/pkg-plist Wed Jan 22 07:20:29 2014 (r340682) @@ -84,6 +84,11 @@ bin/brebis %%PYTHON_SITELIBDIR%%/brebis/listtype.py %%PYTHON_SITELIBDIR%%/brebis/main.py man/man1/brebis.1.gz +%%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%%/PKG-INFO +%%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%%/SOURCES.txt +%%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%%/dependency_links.txt +%%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%%/top_level.txt +@dirrmtry %%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%% @dirrmtry %%PYTHON_SITELIBDIR%%/brebis/generatelist/__pycache__ @dirrmtry %%PYTHON_SITELIBDIR%%/brebis/generatelist @dirrmtry %%PYTHON_SITELIBDIR%%/brebis/checkbackups/__pycache__ From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 07:55:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8EE1E84E; Wed, 22 Jan 2014 07:55:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7BAA11A17; Wed, 22 Jan 2014 07:55:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M7tlMC022805; Wed, 22 Jan 2014 07:55:47 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M7tlM4022804; Wed, 22 Jan 2014 07:55:47 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401220755.s0M7tlM4022804@svn.freebsd.org> From: John Marino Date: Wed, 22 Jan 2014 07:55:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340683 - head/databases/tablelog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 07:55:47 -0000 Author: marino Date: Wed Jan 22 07:55:46 2014 New Revision: 340683 URL: http://svnweb.freebsd.org/changeset/ports/340683 QAT: https://qat.redports.org/buildarchive/r340683/ Log: databases/tablelog: Reset maintainer due to email bounce Modified: head/databases/tablelog/Makefile Modified: head/databases/tablelog/Makefile ============================================================================== --- head/databases/tablelog/Makefile Wed Jan 22 07:20:29 2014 (r340682) +++ head/databases/tablelog/Makefile Wed Jan 22 07:55:46 2014 (r340683) @@ -7,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://pgfoundry.org/frs/download.php/1387/ -MAINTAINER= gogo@cs.uni-sb.de +MAINTAINER= ports@FreeBSD.org COMMENT= Logs changes on a table in PostgreSQL WRKSRC= ${WRKDIR}/table_log-${DISTVERSION} From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:15:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EAB343EB; Wed, 22 Jan 2014 08:15:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BCF931D07; Wed, 22 Jan 2014 08:15:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8FETZ031525; Wed, 22 Jan 2014 08:15:14 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8FEsT031520; Wed, 22 Jan 2014 08:15:14 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401220815.s0M8FEsT031520@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Wed, 22 Jan 2014 08:15:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340689 - head/devel/py-robotframework-pabot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:15:15 -0000 Author: rm Date: Wed Jan 22 08:15:13 2014 New Revision: 340689 URL: http://svnweb.freebsd.org/changeset/ports/340689 QAT: https://qat.redports.org/buildarchive/r340689/ Log: - update to 0.3 - fix pkg-descr This update was submitted as follow-up to original PR, right after the original patch (version 0.1) from this PR was committed. PR: 185971 Submitted by: Vladimir Chukharev (maintainer) Modified: head/devel/py-robotframework-pabot/Makefile head/devel/py-robotframework-pabot/distinfo head/devel/py-robotframework-pabot/pkg-descr Modified: head/devel/py-robotframework-pabot/Makefile ============================================================================== --- head/devel/py-robotframework-pabot/Makefile Wed Jan 22 08:00:42 2014 (r340688) +++ head/devel/py-robotframework-pabot/Makefile Wed Jan 22 08:15:13 2014 (r340689) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= robotframework-pabot -PORTVERSION= 0.1 +PORTVERSION= 0.3 CATEGORIES= devel www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-robotframework-pabot/distinfo ============================================================================== --- head/devel/py-robotframework-pabot/distinfo Wed Jan 22 08:00:42 2014 (r340688) +++ head/devel/py-robotframework-pabot/distinfo Wed Jan 22 08:15:13 2014 (r340689) @@ -1,2 +1,2 @@ -SHA256 (robotframework-pabot-0.1.tar.gz) = b12105ec585ed588d978496498ec2e60360b7bf0c8fbd86ae4043f3322ac340c -SIZE (robotframework-pabot-0.1.tar.gz) = 3718 +SHA256 (robotframework-pabot-0.3.tar.gz) = acfdf5de5dab6846b440e2856801027dcf9a9e1f3e7b72c4005570957415418c +SIZE (robotframework-pabot-0.3.tar.gz) = 3820 Modified: head/devel/py-robotframework-pabot/pkg-descr ============================================================================== --- head/devel/py-robotframework-pabot/pkg-descr Wed Jan 22 08:00:42 2014 (r340688) +++ head/devel/py-robotframework-pabot/pkg-descr Wed Jan 22 08:15:13 2014 (r340689) @@ -1,3 +1,3 @@ -Test data editor for Robot Framework test data. +Parallel executor for Robot Framework test cases -WWW: https://github.com/robotframework/RIDE/wiki +WWW: https://github.com/mkorpela/pabot From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:18:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E96F4F8 for ; Wed, 22 Jan 2014 08:18:10 +0000 (UTC) Received: from relay.andxor.it (firewall.andxor.it [78.134.40.49]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 54E001D23 for ; Wed, 22 Jan 2014 08:18:08 +0000 (UTC) Received: (qmail 91641 invoked from network); 22 Jan 2014 08:18:06 -0000 Received: from alex.andxor.it (a.premoli@andxor.it@192.168.2.30) by relay.andxor.it with ESMTPSA; 22 Jan 2014 08:18:06 -0000 Message-ID: <52DF7EBE.3080103@FreeBSD.org> Date: Wed, 22 Jan 2014 09:18:06 +0100 From: Alex Dupre User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Firefox/24.0 SeaMonkey/2.21 MIME-Version: 1.0 To: Alexey Dokuchaev Subject: Re: svn commit: r340618 - head/security/cryptlib References: <201401211633.s0LGXRLP049969@svn.freebsd.org> <20140122013352.GA12715@FreeBSD.org> In-Reply-To: <20140122013352.GA12715@FreeBSD.org> X-Enigmail-Version: 1.5.2 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.17 Precedence: list List-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, 22 Jan 2014 08:18:10 -0000 Alexey Dokuchaev ha scritto: >> +OPTIONS_DEFINE= DOCS > > Couple of observations. :) > > OPTIONS are normally placed below all other knobs (traditionally). Hmm, no :-) >> + ${LN} -sf ${PREFIX}/lib/libcl.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libcl.so.3 >> + ${LN} -sf ${PREFIX}/lib/libcl.so.3 ${STAGEDIR}${PREFIX}/lib/libcl.so > > Per our own wiki.freebsd.org/ports/StageDir: > > "When creating a symlink, prepend ${STAGEDIR} to the target path only (and > generally try to avoid using absolute paths in source). [...] You are right here, but I didn't change the source. Improved. -- Alex Dupre From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:18:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F3465CE; Wed, 22 Jan 2014 08:18:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 625311D25; Wed, 22 Jan 2014 08:18:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8IHIa031981; Wed, 22 Jan 2014 08:18:17 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8IHHX031980; Wed, 22 Jan 2014 08:18:17 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401220818.s0M8IHHX031980@svn.freebsd.org> From: Max Brazhnikov Date: Wed, 22 Jan 2014 08:18:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340691 - head/multimedia/phonon-xine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:18:17 -0000 Author: makc Date: Wed Jan 22 08:18:16 2014 New Revision: 340691 URL: http://svnweb.freebsd.org/changeset/ports/340691 QAT: https://qat.redports.org/buildarchive/r340691/ Log: - Bring stage support - Amend USE_QT4 components, add explicit dependency on libxcb - Convert LIB_DEPENDS to new style - Drop ipv6 from CATEGORIES - Remove ancient CONFLICTS Modified: head/multimedia/phonon-xine/Makefile Modified: head/multimedia/phonon-xine/Makefile ============================================================================== --- head/multimedia/phonon-xine/Makefile Wed Jan 22 08:18:07 2014 (r340690) +++ head/multimedia/phonon-xine/Makefile Wed Jan 22 08:18:16 2014 (r340691) @@ -4,9 +4,8 @@ PORTNAME= phonon PORTVERSION= 4.4.4 PORTREVISION= 5 -CATEGORIES= multimedia kde ipv6 -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= ${PHONON_BRANCH}/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION}/src +CATEGORIES= multimedia kde +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION}/src PKGNAMESUFFIX= -xine DISTNAME= ${PORTNAME}-backend${PKGNAMESUFFIX}-${PORTVERSION} DIST_SUBDIR= KDE @@ -14,24 +13,18 @@ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= The xine backend for Phonon -LIB_DEPENDS= xine.2:${PORTSDIR}/multimedia/libxine +LIB_DEPENDS= libxine.so:${PORTSDIR}/multimedia/libxine -CONFLICTS= phonon-4.3.0* - -PHONON_BRANCH= stable USE_BZIP2= yes USES= cmake pkgconfig USE_KDE4= kdehier automoc4 kdeprefix -USE_QT4= gui dbus xml phonon \ +USE_QT4= corelib dbus gui phonon \ qmake_build moc_build rcc_build uic_build - -PLIST_SUB+= QT_PREFIX=${QT_PREFIX} - -NO_STAGE= yes -pre-su-install: - ${MKDIR} ${QT_PLUGINDIR}/phonon_backend +USE_XORG= xcb post-install: - ${LN} -sf ${PREFIX}/lib/kde4/plugins/phonon_backend/phonon_xine.so ${QT_PLUGINDIR}/phonon_backend/libphonon_xine.so + ${MKDIR} ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend + ${LN} -sf ${PREFIX}/lib/kde4/plugins/phonon_backend/phonon_xine.so \ + ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend/libphonon_xine.so .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:18:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCF1A4F4; Wed, 22 Jan 2014 08:18:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B99731D1F; Wed, 22 Jan 2014 08:18:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8I7UX031891; Wed, 22 Jan 2014 08:18:07 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8I7o4031890; Wed, 22 Jan 2014 08:18:07 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401220818.s0M8I7o4031890@svn.freebsd.org> From: Alex Dupre Date: Wed, 22 Jan 2014 08:18:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340690 - head/security/cryptlib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:18:07 -0000 Author: ale Date: Wed Jan 22 08:18:07 2014 New Revision: 340690 URL: http://svnweb.freebsd.org/changeset/ports/340690 QAT: https://qat.redports.org/buildarchive/r340690/ Log: Use relative paths in symlinks. Submitted by: danfe Modified: head/security/cryptlib/Makefile Modified: head/security/cryptlib/Makefile ============================================================================== --- head/security/cryptlib/Makefile Wed Jan 22 08:15:13 2014 (r340689) +++ head/security/cryptlib/Makefile Wed Jan 22 08:18:07 2014 (r340690) @@ -36,8 +36,8 @@ post-patch: do-install: ${INSTALL_DATA} ${WRKSRC}/libcl.a ${WRKSRC}/libcl.so.${PORTVERSION} \ ${STAGEDIR}${PREFIX}/lib - ${LN} -sf ${PREFIX}/lib/libcl.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libcl.so.3 - ${LN} -sf ${PREFIX}/lib/libcl.so.3 ${STAGEDIR}${PREFIX}/lib/libcl.so + ${LN} -sf libcl.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libcl.so.3 + ${LN} -sf libcl.so.3 ${STAGEDIR}${PREFIX}/lib/libcl.so ${INSTALL_DATA} ${WRKSRC}/cryptlib.h ${STAGEDIR}${PREFIX}/include post-install: From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:19:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F72C79F; Wed, 22 Jan 2014 08:19:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 61A431D38; Wed, 22 Jan 2014 08:19:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8JCUF032234; Wed, 22 Jan 2014 08:19:12 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8JAIc032222; Wed, 22 Jan 2014 08:19:10 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401220819.s0M8JAIc032222@svn.freebsd.org> From: Max Brazhnikov Date: Wed, 22 Jan 2014 08:19:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340692 - in head/multimedia: phonon phonon-designerplugin phonon-gstreamer phonon-vlc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:19:12 -0000 Author: makc Date: Wed Jan 22 08:19:10 2014 New Revision: 340692 URL: http://svnweb.freebsd.org/changeset/ports/340692 QAT: https://qat.redports.org/buildarchive/r340692/ Log: - Update Phonon ports to 4.7.1, vlc backend to 0.7.1 - Convert LIB_DEPENDS to new style - Drop ipv6 from CATEGORIES - Remove ancient CONFLICTS and now useless LATEST_LINK Modified: head/multimedia/phonon-designerplugin/Makefile head/multimedia/phonon-gstreamer/Makefile head/multimedia/phonon-gstreamer/distinfo (contents, props changed) head/multimedia/phonon-vlc/Makefile head/multimedia/phonon-vlc/distinfo head/multimedia/phonon/Makefile head/multimedia/phonon/distinfo (contents, props changed) head/multimedia/phonon/pkg-plist Modified: head/multimedia/phonon-designerplugin/Makefile ============================================================================== --- head/multimedia/phonon-designerplugin/Makefile Wed Jan 22 08:18:16 2014 (r340691) +++ head/multimedia/phonon-designerplugin/Makefile Wed Jan 22 08:19:10 2014 (r340692) @@ -1,10 +1,9 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 4.7.0 +PORTVERSION= 4.7.1 CATEGORIES= multimedia kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= ${PHONON_BRANCH}/${PORTNAME}/${PORTVERSION} +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} PKGNAMESUFFIX= -designerplugin DIST_SUBDIR= KDE Modified: head/multimedia/phonon-gstreamer/Makefile ============================================================================== --- head/multimedia/phonon-gstreamer/Makefile Wed Jan 22 08:18:16 2014 (r340691) +++ head/multimedia/phonon-gstreamer/Makefile Wed Jan 22 08:19:10 2014 (r340692) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 4.7.0 +PORTVERSION= 4.7.1 CATEGORIES= multimedia kde -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= ${PHONON_BRANCH}/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION}/src +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION} PKGNAMESUFFIX= -gstreamer DISTNAME= ${PORTNAME}-backend${PKGNAMESUFFIX}-${PORTVERSION} DIST_SUBDIR= KDE @@ -13,13 +12,6 @@ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= GStreamer backend for Phonon -# Required in order to avoid conflicts with multimedia/phonon's OPTIONS. -LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} - -CONFLICTS= qt4-phonon-gst-4* - -PHONON_BRANCH= stable - USE_GL= gl USE_GNOME= glib20 libxml2 USE_GSTREAMER= yes @@ -30,21 +22,11 @@ USE_XORG= x11 USE_XZ= yes USES= cmake pkgconfig -PLIST_SUB+= QT_PREFIX=${QT_PREFIX} +SUB_FILES= pkg-message OPTIONS_DEFINE= GST_PLUGINS - GST_PLUGINS_DESC= Install GStreamer plugins - -OPTIONS_DEFAULT= - -.include - -.if ${PORT_OPTIONS:MGST_PLUGINS} -RUN_DEPENDS+= gstreamer-plugins-all>=0:${PORTSDIR}/multimedia/gstreamer-plugins-all -.else -SUB_FILES= pkg-message -.endif +GST_PLUGINS_RUN_DEPENDS= gstreamer-plugins-all>=0:${PORTSDIR}/multimedia/gstreamer-plugins-all post-install: ${MKDIR} ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend Modified: head/multimedia/phonon-gstreamer/distinfo ============================================================================== --- head/multimedia/phonon-gstreamer/distinfo Wed Jan 22 08:18:16 2014 (r340691) +++ head/multimedia/phonon-gstreamer/distinfo Wed Jan 22 08:19:10 2014 (r340692) @@ -1,2 +1,2 @@ -SHA256 (KDE/phonon-backend-gstreamer-4.7.0.tar.xz) = 3a776b3166330260b356fb9e136302df3d46c6107deaf737bb3c4dee9585e77d -SIZE (KDE/phonon-backend-gstreamer-4.7.0.tar.xz) = 75416 +SHA256 (KDE/phonon-backend-gstreamer-4.7.1.tar.xz) = 7859782fb3d304e1d0363e665feecb7d3b64a712705dc326151c6402fef6f2ca +SIZE (KDE/phonon-backend-gstreamer-4.7.1.tar.xz) = 75528 Modified: head/multimedia/phonon-vlc/Makefile ============================================================================== --- head/multimedia/phonon-vlc/Makefile Wed Jan 22 08:18:16 2014 (r340691) +++ head/multimedia/phonon-vlc/Makefile Wed Jan 22 08:19:10 2014 (r340692) @@ -1,10 +1,9 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 0.7.0 -CATEGORIES= multimedia kde ipv6 -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= ${PHONON_BRANCH}/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION}/src +PORTVERSION= 0.7.1 +CATEGORIES= multimedia kde +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION} PKGNAMESUFFIX= -vlc DISTNAME= ${PORTNAME}-backend${PKGNAMESUFFIX}-${PORTVERSION} DIST_SUBDIR= KDE @@ -12,10 +11,7 @@ DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org COMMENT= VLC backend for Phonon -LIB_DEPENDS= vlc:${PORTSDIR}/multimedia/vlc - -# Required in order to avoid conflicts with multimedia/phonon. -LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX} +LIB_DEPENDS= libvlc.so:${PORTSDIR}/multimedia/vlc USE_KDE4= kdehier kdeprefix automoc4 USE_QT4= corelib gui phonon \ @@ -23,10 +19,6 @@ USE_QT4= corelib gui phonon \ USE_XZ= yes USES= cmake pkgconfig -PHONON_BRANCH= stable - -PLIST_SUB+= QT_PREFIX=${QT_PREFIX} - post-install: ${MKDIR} ${STAGEDIR}${QT_PLUGINDIR}/phonon_backend ${LN} -sf ${PREFIX}/lib/kde4/plugins/phonon_backend/phonon_vlc.so \ Modified: head/multimedia/phonon-vlc/distinfo ============================================================================== --- head/multimedia/phonon-vlc/distinfo Wed Jan 22 08:18:16 2014 (r340691) +++ head/multimedia/phonon-vlc/distinfo Wed Jan 22 08:19:10 2014 (r340692) @@ -1,2 +1,2 @@ -SHA256 (KDE/phonon-backend-vlc-0.7.0.tar.xz) = edb5ada44ab91882e7dc337ec82cf0fe8623999e9177f7faf3862214da601fe6 -SIZE (KDE/phonon-backend-vlc-0.7.0.tar.xz) = 58648 +SHA256 (KDE/phonon-backend-vlc-0.7.1.tar.xz) = 230bb7f3377fd6e82b19d9438026308d7584ae34945cb5aa9fdb23f39980158e +SIZE (KDE/phonon-backend-vlc-0.7.1.tar.xz) = 58876 Modified: head/multimedia/phonon/Makefile ============================================================================== --- head/multimedia/phonon/Makefile Wed Jan 22 08:18:16 2014 (r340691) +++ head/multimedia/phonon/Makefile Wed Jan 22 08:19:10 2014 (r340692) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= phonon -PORTVERSION= 4.7.0 -CATEGORIES= multimedia kde ipv6 -MASTER_SITES= ${MASTER_SITE_KDE} -MASTER_SITE_SUBDIR= ${PHONON_BRANCH}/${PORTNAME}/${PORTVERSION} +PORTVERSION= 4.7.1 +CATEGORIES= multimedia kde +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} DIST_SUBDIR= KDE MAINTAINER= kde@FreeBSD.org @@ -15,10 +14,6 @@ LICENSE= LGPL21 LIB_DEPENDS= libqzeitgeist.so:${PORTSDIR}/sysutils/qzeitgeist -CONFLICTS= qt4-phonon-4* - -PHONON_BRANCH= stable - USE_KDE4= kdehier kdeprefix automoc4 USE_QT4= corelib dbus gui \ qmake_build moc_build rcc_build uic_build @@ -29,7 +24,7 @@ CMAKE_ARGS= -DPHONON_INSTALL_QT_EXTENSIO -DPHONON_BUILD_DESIGNER_PLUGIN:BOOL=OFF USE_LDCONFIG= yes -PLIST_SUB= QT_PREFIX=${QT_PREFIX} +PLIST_SUB= SHLIB_VER=${PORTVERSION} OPTIONS_DEFINE= PULSEAUDIO Modified: head/multimedia/phonon/distinfo ============================================================================== --- head/multimedia/phonon/distinfo Wed Jan 22 08:18:16 2014 (r340691) +++ head/multimedia/phonon/distinfo Wed Jan 22 08:19:10 2014 (r340692) @@ -1,2 +1,2 @@ -SHA256 (KDE/phonon-4.7.0.tar.xz) = 4ca5e17b6afbbfbfe92611f51f9e8d78552ecc31c2e15cbb18be37132ab7b9eb -SIZE (KDE/phonon-4.7.0.tar.xz) = 329792 +SHA256 (KDE/phonon-4.7.1.tar.xz) = 4ff7802deeac1557166591deb9fc2bfdfcaacdeb5389d07f08255365fb91b75d +SIZE (KDE/phonon-4.7.1.tar.xz) = 329900 Modified: head/multimedia/phonon/pkg-plist ============================================================================== --- head/multimedia/phonon/pkg-plist Wed Jan 22 08:18:16 2014 (r340691) +++ head/multimedia/phonon/pkg-plist Wed Jan 22 08:19:10 2014 (r340692) @@ -163,10 +163,10 @@ lib/cmake/phonon/PhononTargets-%%CMAKE_B lib/cmake/phonon/PhononTargets.cmake lib/libphonon.so lib/libphonon.so.4 -lib/libphonon.so.4.7.0 +lib/libphonon.so.%%SHLIB_VER%% lib/libphononexperimental.so lib/libphononexperimental.so.4 -lib/libphononexperimental.so.4.7.0 +lib/libphononexperimental.so.%%SHLIB_VER%% libdata/pkgconfig/phonon.pc share/dbus-1/interfaces/org.kde.Phonon.AudioOutput.xml %%DATADIR%%/buildsystem/COPYING-CMAKE-SCRIPTS From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:20:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7765B9F8; Wed, 22 Jan 2014 08:20:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 583F71D50; Wed, 22 Jan 2014 08:20:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8KvUn035143; Wed, 22 Jan 2014 08:20:57 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8Kul7035139; Wed, 22 Jan 2014 08:20:56 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401220820.s0M8Kul7035139@svn.freebsd.org> From: Max Brazhnikov Date: Wed, 22 Jan 2014 08:20:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340693 - head/graphics/skanlite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:20:57 -0000 Author: makc Date: Wed Jan 22 08:20:56 2014 New Revision: 340693 URL: http://svnweb.freebsd.org/changeset/ports/340693 QAT: https://qat.redports.org/buildarchive/r340693/ Log: - Update to 1.1 - Switch MASTER_SITES to KDE - Convert LIB_DEPENDS to new style - Remove cmake arguments that now are passed globally - Remove NO_STAGE - Reformat description Modified: head/graphics/skanlite/Makefile head/graphics/skanlite/distinfo head/graphics/skanlite/pkg-descr (contents, props changed) head/graphics/skanlite/pkg-plist Modified: head/graphics/skanlite/Makefile ============================================================================== --- head/graphics/skanlite/Makefile Wed Jan 22 08:19:10 2014 (r340692) +++ head/graphics/skanlite/Makefile Wed Jan 22 08:20:56 2014 (r340693) @@ -1,23 +1,19 @@ # $FreeBSD$ PORTNAME= skanlite -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= graphics kde -MASTER_SITES= SF/sanewidget/Skanlite/ +MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src DIST_SUBDIR= KDE/extragear MAINTAINER= kde@FreeBSD.org COMMENT= Simple image scanning application for KDE -LIB_DEPENDS= ksane.0:${PORTSDIR}/graphics/libksane +LIB_DEPENDS= libksane.so:${PORTSDIR}/graphics/libksane -USE_BZIP2= yes +USE_XZ= yes USE_KDE4= kdelibs kdeprefix kdehier automoc4 USE_QT4= qmake_build moc_build rcc_build uic_build -USES= cmake +USES= cmake:outsource -# Fix build with no-default PREFIX -CMAKE_ARGS+= -DCMAKE_PREFIX_PATH=${KDE4_PREFIX} - -NO_STAGE= yes .include Modified: head/graphics/skanlite/distinfo ============================================================================== --- head/graphics/skanlite/distinfo Wed Jan 22 08:19:10 2014 (r340692) +++ head/graphics/skanlite/distinfo Wed Jan 22 08:20:56 2014 (r340693) @@ -1,2 +1,2 @@ -SHA256 (KDE/extragear/skanlite-1.0.tar.bz2) = e1794d09d713e7279bde574215d1aeca6c3443194247db4b21f3fd48f4cccf29 -SIZE (KDE/extragear/skanlite-1.0.tar.bz2) = 2596852 +SHA256 (KDE/extragear/skanlite-1.1.tar.xz) = 657cece15bbb6966fefd2de91504d421d12e662560c1b30514e060847b9eea26 +SIZE (KDE/extragear/skanlite-1.1.tar.xz) = 2513692 Modified: head/graphics/skanlite/pkg-descr ============================================================================== --- head/graphics/skanlite/pkg-descr Wed Jan 22 08:19:10 2014 (r340692) +++ head/graphics/skanlite/pkg-descr Wed Jan 22 08:20:56 2014 (r340693) @@ -1,7 +1,7 @@ Skanlite is a simple image scanning application that does nothing -more than scan and save images. Skanlite can open a save dialog for -every image scanned or save the images immediately in a specified -directory with auto-generated names and format. The user can also +more than scan and save images. Skanlite can open a save dialog +for every image scanned or save the images immediately in a specified +directory with auto-generated names and format. The user can also choose to show the scanned image before saving. -WWW: http://www.kde.org/applications/graphics/skanlite +WWW: http://www.kde.org/applications/graphics/skanlite Modified: head/graphics/skanlite/pkg-plist ============================================================================== --- head/graphics/skanlite/pkg-plist Wed Jan 22 08:19:10 2014 (r340692) +++ head/graphics/skanlite/pkg-plist Wed Jan 22 08:20:56 2014 (r340693) @@ -27,30 +27,12 @@ share/doc/HTML/en/skanlite/scanning.png share/doc/HTML/en/skanlite/settings.png share/doc/HTML/en/skanlite/zoom-in.png share/doc/HTML/en/skanlite/zoom-to-fit.png -share/doc/HTML/es/skanlite/common -share/doc/HTML/es/skanlite/index.cache.bz2 -share/doc/HTML/es/skanlite/index.docbook -share/doc/HTML/et/skanlite/common -share/doc/HTML/et/skanlite/index.cache.bz2 -share/doc/HTML/et/skanlite/index.docbook share/doc/HTML/fr/skanlite/common share/doc/HTML/fr/skanlite/index.cache.bz2 share/doc/HTML/fr/skanlite/index.docbook -share/doc/HTML/it/skanlite/common -share/doc/HTML/it/skanlite/index.cache.bz2 -share/doc/HTML/it/skanlite/index.docbook share/doc/HTML/nl/skanlite/common share/doc/HTML/nl/skanlite/index.cache.bz2 share/doc/HTML/nl/skanlite/index.docbook -share/doc/HTML/pt/skanlite/common -share/doc/HTML/pt/skanlite/index.cache.bz2 -share/doc/HTML/pt/skanlite/index.docbook -share/doc/HTML/pt_BR/skanlite/common -share/doc/HTML/pt_BR/skanlite/index.cache.bz2 -share/doc/HTML/pt_BR/skanlite/index.docbook -share/doc/HTML/sv/skanlite/common -share/doc/HTML/sv/skanlite/index.cache.bz2 -share/doc/HTML/sv/skanlite/index.docbook share/doc/HTML/uk/skanlite/buttons-main.png share/doc/HTML/uk/skanlite/choose-scanner.png share/doc/HTML/uk/skanlite/common @@ -120,13 +102,7 @@ share/locale/zh_TW/LC_MESSAGES/skanlite. @dirrmtry share/locale/ia/LC_MESSAGES @dirrmtry share/locale/ia @dirrm share/doc/HTML/uk/skanlite -@dirrm share/doc/HTML/sv/skanlite -@dirrm share/doc/HTML/pt_BR/skanlite -@dirrm share/doc/HTML/pt/skanlite @dirrm share/doc/HTML/nl/skanlite -@dirrm share/doc/HTML/it/skanlite @dirrm share/doc/HTML/fr/skanlite -@dirrm share/doc/HTML/et/skanlite -@dirrm share/doc/HTML/es/skanlite @dirrm share/doc/HTML/en/skanlite @dirrm share/doc/HTML/de/skanlite From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:25:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECEB7B24; Wed, 22 Jan 2014 08:25:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D944F1DC9; Wed, 22 Jan 2014 08:25:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8PqDI035784; Wed, 22 Jan 2014 08:25:52 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8PqHj035783; Wed, 22 Jan 2014 08:25:52 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401220825.s0M8PqHj035783@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 08:25:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340694 - head/devel/acme X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:25:53 -0000 Author: bapt Date: Wed Jan 22 08:25:52 2014 New Revision: 340694 URL: http://svnweb.freebsd.org/changeset/ports/340694 QAT: https://qat.redports.org/buildarchive/r340694/ Log: Support stage Modified: head/devel/acme/Makefile Modified: head/devel/acme/Makefile ============================================================================== --- head/devel/acme/Makefile Wed Jan 22 08:20:56 2014 (r340693) +++ head/devel/acme/Makefile Wed Jan 22 08:25:52 2014 (r340694) @@ -34,29 +34,19 @@ PLIST_DIRSTRY= %%DATADIR%%/6502 \ %%DATADIR%%/Own \ %%DATADIR%% -NO_STAGE= yes -.include - do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/acme ${PREFIX}/bin - + ${INSTALL_PROGRAM} ${WRKSRC}/src/acme ${STAGEDIR}${PREFIX}/bin .for dir in 6502 65816 Own - @${MKDIR} ${DATADIR}/${dir} + @${MKDIR} ${STAGEDIR}${DATADIR}/${dir} .endfor - ${INSTALL_DATA} ${WRKSRC}/ACME_Lib/6502/* ${DATADIR}/6502 - ${INSTALL_DATA} ${WRKSRC}/ACME_Lib/65816/* ${DATADIR}/65816 - ${INSTALL_DATA} ${WRKSRC}/ACME_Lib/Own/* ${DATADIR}/Own - -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/ReadMe.txt ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR} -.endif - -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR}/me - ${INSTALL_DATA} ${WRKSRC}/examples/*.a ${EXAMPLESDIR}/ - ${INSTALL_DATA} ${WRKSRC}/examples/me/*.a ${EXAMPLESDIR}/me/ -.endif + ${INSTALL_DATA} ${WRKSRC}/ACME_Lib/6502/* ${STAGEDIR}${DATADIR}/6502 + ${INSTALL_DATA} ${WRKSRC}/ACME_Lib/65816/* ${STAGEDIR}${DATADIR}/65816 + ${INSTALL_DATA} ${WRKSRC}/ACME_Lib/Own/* ${STAGEDIR}${DATADIR}/Own + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/ReadMe.txt ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/me + ${INSTALL_DATA} ${WRKSRC}/examples/*.a ${STAGEDIR}${EXAMPLESDIR}/ + ${INSTALL_DATA} ${WRKSRC}/examples/me/*.a ${STAGEDIR}${EXAMPLESDIR}/me/ .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:26:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DFC2AC05; Wed, 22 Jan 2014 08:26:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CC0101DD0; Wed, 22 Jan 2014 08:26:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8QsaM035968; Wed, 22 Jan 2014 08:26:54 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8QsOm035967; Wed, 22 Jan 2014 08:26:54 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401220826.s0M8QsOm035967@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 08:26:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340695 - head/devel/activitymail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:26:54 -0000 Author: bapt Date: Wed Jan 22 08:26:54 2014 New Revision: 340695 URL: http://svnweb.freebsd.org/changeset/ports/340695 QAT: https://qat.redports.org/buildarchive/r340695/ Log: Support stage Modified: head/devel/activitymail/Makefile Modified: head/devel/activitymail/Makefile ============================================================================== --- head/devel/activitymail/Makefile Wed Jan 22 08:25:52 2014 (r340694) +++ head/devel/activitymail/Makefile Wed Jan 22 08:26:54 2014 (r340695) @@ -8,13 +8,12 @@ MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DWHEELER/activitymail MAINTAINER= joseph@randomnetworks.com -COMMENT= A program for sending email messages for CVS repository commits +COMMENT= Program for sending email messages for CVS repository commits USES= perl5 USE_PERL5= modbuild -PLIST_FILES= bin/activitymail -MAN1= activitymail.1 +PLIST_FILES= bin/activitymail \ += man/man1/activitymail.1.gz -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:27:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63E9ACE5; Wed, 22 Jan 2014 08:27:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4FDC31DD7; Wed, 22 Jan 2014 08:27:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8RVkH036110; Wed, 22 Jan 2014 08:27:31 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8RVQJ036109; Wed, 22 Jan 2014 08:27:31 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401220827.s0M8RVQJ036109@svn.freebsd.org> From: Raphael Kubo da Costa Date: Wed, 22 Jan 2014 08:27:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340696 - head/devel/rubygem-ffi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:27:31 -0000 Author: rakuco Date: Wed Jan 22 08:27:30 2014 New Revision: 340696 URL: http://svnweb.freebsd.org/changeset/ports/340696 QAT: https://qat.redports.org/buildarchive/r340696/ Log: Use a valid LICENSE name Modified: head/devel/rubygem-ffi/Makefile Modified: head/devel/rubygem-ffi/Makefile ============================================================================== --- head/devel/rubygem-ffi/Makefile Wed Jan 22 08:26:54 2014 (r340695) +++ head/devel/rubygem-ffi/Makefile Wed Jan 22 08:27:30 2014 (r340696) @@ -9,7 +9,7 @@ MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extension for dynamic libraries & binding functions -LICENSE= BSD +LICENSE= BSD3CLAUSE LIB_DEPENDS= ffi:${PORTSDIR}/devel/libffi From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:34:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58AF91A0; Wed, 22 Jan 2014 08:34:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4473D1EA1; Wed, 22 Jan 2014 08:34:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8Ydac039617; Wed, 22 Jan 2014 08:34:39 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8YdBE039616; Wed, 22 Jan 2014 08:34:39 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401220834.s0M8YdBE039616@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 08:34:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340697 - head/devel/adabooch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:34:39 -0000 Author: bapt Date: Wed Jan 22 08:34:38 2014 New Revision: 340697 URL: http://svnweb.freebsd.org/changeset/ports/340697 QAT: https://qat.redports.org/buildarchive/r340697/ Log: Support stage Fix UUOC Modified: head/devel/adabooch/Makefile Modified: head/devel/adabooch/Makefile ============================================================================== --- head/devel/adabooch/Makefile Wed Jan 22 08:27:30 2014 (r340696) +++ head/devel/adabooch/Makefile Wed Jan 22 08:34:38 2014 (r340697) @@ -15,24 +15,18 @@ LICENSE= GPLv2 NO_BUILD= yes -NO_STAGE= yes do-install: - @${ECHO} Installing library files - @${MKDIR} ${PREFIX}/lib/adabooch - @for i in `cat pkg-plist|grep "lib/adabooch/"|sed "s/lib\/adabooch\///"`; do \ - ${INSTALL_DATA} ${WRKSRC}/$${i} ${PREFIX}/lib/adabooch; \ + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/adabooch + for i in `${SED} -n "/lib\/adabooch\// s/lib\/adabooch\///p" pkg-plist`; do \ + ${INSTALL_DATA} ${WRKSRC}/$${i} ${STAGEDIR}${PREFIX}/lib/adabooch; \ done - - @${MKDIR} ${PREFIX}/share/adabooch - @${ECHO} Installing demos and tests - @${MKDIR} ${PREFIX}/share/adabooch/demo - @for i in `cat pkg-plist|grep "share/adabooch/demo/"|sed "s/share\/adabooch\/demo\///"`; do \ - ${INSTALL_DATA} ${WRKSRC}/demo/$${i} ${PREFIX}/share/adabooch/demo; \ + @${MKDIR} ${STAGEDIR}${PREFIX}/share/adabooch/demo + for i in `${SED} -n "/share\/adabooch\/demo\// s/share\/adabooch\/demo\///p" pkg-plist`; do \ + ${INSTALL_DATA} ${WRKSRC}/demo/$${i} ${STAGEDIR}${PREFIX}/share/adabooch/demo; \ done - - @${MKDIR} ${PREFIX}/share/adabooch/test - @for i in `cat pkg-plist|grep "share/adabooch/test/"|sed "s/share\/adabooch\/test\///"`; do \ - ${INSTALL_DATA} ${WRKSRC}/test/$${i} ${PREFIX}/share/adabooch/test; \ + @${MKDIR} ${STAGEDIR}${PREFIX}/share/adabooch/test + for i in `${SED} -n "/share\/adabooch\/test\// s/share\/adabooch\/test\///p" pkg-plist`; do \ + ${INSTALL_DATA} ${WRKSRC}/test/$${i} ${STAGEDIR}${PREFIX}/share/adabooch/test; \ done post-install: From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:36:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44C5D29B; Wed, 22 Jan 2014 08:36:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 314511EB1; Wed, 22 Jan 2014 08:36:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8anJD039926; Wed, 22 Jan 2014 08:36:49 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8an2b039925; Wed, 22 Jan 2014 08:36:49 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401220836.s0M8an2b039925@svn.freebsd.org> From: Alex Dupre Date: Wed, 22 Jan 2014 08:36:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340698 - head/java/eclipse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:36:49 -0000 Author: ale Date: Wed Jan 22 08:36:48 2014 New Revision: 340698 URL: http://svnweb.freebsd.org/changeset/ports/340698 QAT: https://qat.redports.org/buildarchive/r340698/ Log: Support staging. Modified: head/java/eclipse/Makefile.plugins Modified: head/java/eclipse/Makefile.plugins ============================================================================== --- head/java/eclipse/Makefile.plugins Wed Jan 22 08:34:38 2014 (r340697) +++ head/java/eclipse/Makefile.plugins Wed Jan 22 08:36:48 2014 (r340698) @@ -6,8 +6,8 @@ JAVA_OS= native REPO_DIRS?= features plugins do-install: - @${MKDIR} ${PREFIX}/share/eclipse/dropins/${PORTNAME}/eclipse - @(cd ${WRKSRC}; ${COPYTREE_SHARE} "${REPO_DIRS}" ${PREFIX}/share/eclipse/dropins/${PORTNAME}/eclipse/) - @(cd ${PREFIX}; ${FIND} -s share/eclipse/dropins/${PORTNAME} -not -type d) >> ${TMPPLIST} - @(cd ${PREFIX}; ${FIND} -s -d share/eclipse/dropins/${PORTNAME} -type d) \ + @${MKDIR} ${STAGEDIR}${PREFIX}/share/eclipse/dropins/${PORTNAME}/eclipse + @(cd ${WRKSRC}; ${COPYTREE_SHARE} "${REPO_DIRS}" ${STAGEDIR}${PREFIX}/share/eclipse/dropins/${PORTNAME}/eclipse/) + @(cd ${STAGEDIR}${PREFIX}; ${FIND} -s share/eclipse/dropins/${PORTNAME} -not -type d) >> ${TMPPLIST} + @(cd ${STAGEDIR}${PREFIX}; ${FIND} -s -d share/eclipse/dropins/${PORTNAME} -type d) \ | ${SED} -ne 's,^,@dirrm ,p' >> ${TMPPLIST} From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:37:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CED2381; Wed, 22 Jan 2014 08:37:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 69C2E1EBC; Wed, 22 Jan 2014 08:37:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8bNE9040060; Wed, 22 Jan 2014 08:37:23 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8bNnQ040059; Wed, 22 Jan 2014 08:37:23 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401220837.s0M8bNnQ040059@svn.freebsd.org> From: Alex Dupre Date: Wed, 22 Jan 2014 08:37:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340699 - head/java/eclipse-gef X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 08:37:23 -0000 Author: ale Date: Wed Jan 22 08:37:22 2014 New Revision: 340699 URL: http://svnweb.freebsd.org/changeset/ports/340699 QAT: https://qat.redports.org/buildarchive/r340699/ Log: Unbreak and stagify. Modified: head/java/eclipse-gef/Makefile Modified: head/java/eclipse-gef/Makefile ============================================================================== --- head/java/eclipse-gef/Makefile Wed Jan 22 08:36:48 2014 (r340698) +++ head/java/eclipse-gef/Makefile Wed Jan 22 08:37:22 2014 (r340699) @@ -4,7 +4,7 @@ PORTNAME= gef PORTVERSION= 3.7.2 CATEGORIES= java devel -MASTER_SITES= ${MASTER_SITE_ECLIPSE:S,/eclipse/downloads/drops/,/tools/gef/downloads/drops/,} +MASTER_SITES= http://archive.eclipse.org/tools/gef/downloads/drops/%SUBDIR%/ MASTER_SITE_SUBDIR= ${PORTVERSION}/R201201171043 PKGNAMEPREFIX= eclipse- DISTNAME= GEF-ALL-${PORTVERSION} @@ -15,12 +15,9 @@ COMMENT= Graphical Editing Framework for RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse -BROKEN= No longer fetches from MASTER_SITES, mismatched checksum from FreeBSD - WRKSRC= ${WRKDIR}/eclipse USE_ZIP= yes -NO_STAGE= yes .include "${.CURDIR}/../eclipse/Makefile.plugins" .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 08:37:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A067465; Wed, 22 Jan 2014 08:37:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 24D811EC5; Wed, 22 Jan 2014 08:37:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M8bsuS040171; Wed, 22 Jan 2014 08:37:54 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M8brt1040170; Wed, 22 Jan 2014 08:37:53 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401220837.s0M8brt1040170@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 08:37:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340700 - head/devel/adabooch-doc-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.17 Precedence: list List-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, 22 Jan 2014 08:37:54 -0000 Author: bapt Date: Wed Jan 22 08:37:53 2014 New Revision: 340700 URL: http://svnweb.freebsd.org/changeset/ports/340700 QAT: https://qat.redports.org/buildarchive/r340700/ Log: Support stage USe bsdtar to extract Modified: head/devel/adabooch-doc-html/Makefile Modified: head/devel/adabooch-doc-html/Makefile ============================================================================== --- head/devel/adabooch-doc-html/Makefile Wed Jan 22 08:37:22 2014 (r340699) +++ head/devel/adabooch-doc-html/Makefile Wed Jan 22 08:37:53 2014 (r340700) @@ -13,18 +13,14 @@ COMMENT= Manual for adabooch LICENSE= GPLv2 -USE_ZIP= yes NO_BUILD= yes NO_MTREE= yes WRKSRC= ${WRKDIR}/adabooch-doc-html -EXTRACT_AFTER_ARGS= -d ${WRKSRC} - -NO_STAGE= yes -pre-extract: - @${MKDIR} ${WRKSRC} +EXTRACT_AFTER_ARGS= -C ${WRKSRC} +EXTRACT_CMD= ${MKDIR} ${WRKSRC}; ${TAR} do-install: - @${MKDIR} ${PREFIX}/share/doc/adabooch/html - @(cd ${WRKSRC} && ${PAX} -r -w * ${PREFIX}/share/doc/adabooch/html) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/adabooch/html + (cd ${WRKSRC} && ${PAX} -r -w . ${STAGEDIR}${PREFIX}/share/doc/adabooch/html) .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 09:01:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF8E1962; Wed, 22 Jan 2014 09:01:46 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 895FA10EF; Wed, 22 Jan 2014 09:01:46 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 23F28BDC3E; Wed, 22 Jan 2014 10:01:45 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 02D54BDC24; Wed, 22 Jan 2014 10:01:45 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 6E81D613F; Wed, 22 Jan 2014 10:01:44 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 05669682E6C0; Wed, 22 Jan 2014 10:01:43 +0100 (CET) Date: Wed, 22 Jan 2014 10:01:43 +0100 From: Mathieu Arnold To: Alex Dupre , Alexey Dokuchaev Subject: Re: svn commit: r340618 - head/security/cryptlib Message-ID: <5CC219416A3809A85702532B@ogg.in.absolight.net> In-Reply-To: <52DF7EBE.3080103@FreeBSD.org> References: <201401211633.s0LGXRLP049969@svn.freebsd.org> <20140122013352.GA12715@FreeBSD.org> <52DF7EBE.3080103@FreeBSD.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline 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.17 Precedence: list List-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, 22 Jan 2014 09:01:46 -0000 +--On 22 janvier 2014 09:18:06 +0100 Alex Dupre wrote: | Alexey Dokuchaev ha scritto: |>> +OPTIONS_DEFINE= DOCS |> |> Couple of observations. :) |> |> OPTIONS are normally placed below all other knobs (traditionally). | | Hmm, no :-) | |>> + ${LN} -sf ${PREFIX}/lib/libcl.so.${PORTVERSION} |>> ${STAGEDIR}${PREFIX}/lib/libcl.so.3 + ${LN} -sf |>> ${PREFIX}/lib/libcl.so.3 ${STAGEDIR}${PREFIX}/lib/libcl.so |> |> Per our own wiki.freebsd.org/ports/StageDir: |> |> "When creating a symlink, prepend ${STAGEDIR} to the target path only |> (and generally try to avoid using absolute paths in source). [...] | | You are right here, but I didn't change the source. Improved. Actually, it could have been only ${LN} -sf libcl.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libcl.so.3 ${LN} -sf libcl.so.3 ${STAGEDIR}${PREFIX}/lib/libcl.so They're in the same directory, the symlinks would resolve just fine. -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 09:16:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72D7ECEE; Wed, 22 Jan 2014 09:16:15 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2DE8311B5; Wed, 22 Jan 2014 09:16:15 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id A4915BDC5D; Wed, 22 Jan 2014 10:16:12 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 6E4AEBDC56; Wed, 22 Jan 2014 10:16:12 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id E89F0613F; Wed, 22 Jan 2014 10:16:11 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 76C04682EA4E; Wed, 22 Jan 2014 10:16:11 +0100 (CET) Date: Wed, 22 Jan 2014 10:16:11 +0100 From: Mathieu Arnold To: Alex Dupre , Alexey Dokuchaev Subject: Re: svn commit: r340618 - head/security/cryptlib Message-ID: <1EEC25E6DEEADBD0368A62DD@ogg.in.absolight.net> In-Reply-To: <5CC219416A3809A85702532B@ogg.in.absolight.net> References: <201401211633.s0LGXRLP049969@svn.freebsd.org> <20140122013352.GA12715@FreeBSD.org> <52DF7EBE.3080103@FreeBSD.org> <5CC219416A3809A85702532B@ogg.in.absolight.net> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline 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.17 Precedence: list List-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, 22 Jan 2014 09:16:15 -0000 +--On 22 janvier 2014 10:01:43 +0100 Mathieu Arnold wrote: | +--On 22 janvier 2014 09:18:06 +0100 Alex Dupre wrote: || Alexey Dokuchaev ha scritto: ||>> +OPTIONS_DEFINE= DOCS ||> ||> Couple of observations. :) ||> ||> OPTIONS are normally placed below all other knobs (traditionally). || || Hmm, no :-) || ||>> + ${LN} -sf ${PREFIX}/lib/libcl.so.${PORTVERSION} ||>> ${STAGEDIR}${PREFIX}/lib/libcl.so.3 + ${LN} -sf ||>> ${PREFIX}/lib/libcl.so.3 ${STAGEDIR}${PREFIX}/lib/libcl.so ||> ||> Per our own wiki.freebsd.org/ports/StageDir: ||> ||> "When creating a symlink, prepend ${STAGEDIR} to the target path only ||> (and generally try to avoid using absolute paths in source). [...] || || You are right here, but I didn't change the source. Improved. | | Actually, it could have been only | | ${LN} -sf libcl.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libcl.so.3 | ${LN} -sf libcl.so.3 ${STAGEDIR}${PREFIX}/lib/libcl.so | | They're in the same directory, the symlinks would resolve just fine. Which is what Alexey said, yes. -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 09:19:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1014AEC9; Wed, 22 Jan 2014 09:19:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F0FBD11E7; Wed, 22 Jan 2014 09:19:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M9JIb5055877; Wed, 22 Jan 2014 09:19:18 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M9JIjT055875; Wed, 22 Jan 2014 09:19:18 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401220919.s0M9JIjT055875@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 09:19:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340701 - head/devel/bcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 09:19:19 -0000 Author: bapt Date: Wed Jan 22 09:19:18 2014 New Revision: 340701 URL: http://svnweb.freebsd.org/changeset/ports/340701 QAT: https://qat.redports.org/buildarchive/r340701/ Log: Support stage Modified: head/devel/bcc/Makefile head/devel/bcc/pkg-plist Modified: head/devel/bcc/Makefile ============================================================================== --- head/devel/bcc/Makefile Wed Jan 22 08:37:53 2014 (r340700) +++ head/devel/bcc/Makefile Wed Jan 22 09:19:18 2014 (r340701) @@ -9,11 +9,11 @@ DISTNAME= ${PORTNAME} MAINTAINER= joerg@FreeBSD.org COMMENT= Bruce's C compiler (with as and ld); can do 16-bit code +USES= uidfix + CONFLICTS= bin86-[0-9]* dev86-[0-9]* -MAN1= as86.1 bcc.1 bcc-cc1.1 ld86.1 -.if !defined(NO_MANCOMPRESS) -MANCOMPRESSED= yes -.endif -NO_STAGE= yes +pre-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/bcc + .include Modified: head/devel/bcc/pkg-plist ============================================================================== --- head/devel/bcc/pkg-plist Wed Jan 22 08:37:53 2014 (r340700) +++ head/devel/bcc/pkg-plist Wed Jan 22 09:19:18 2014 (r340701) @@ -2,4 +2,8 @@ bin/as86 bin/ld86 bin/bcc lib/bcc/bcc-cc1 +man/man1/as86.1.gz +man/man1/bcc-cc1.1.gz +man/man1/bcc.1.gz +man/man1/ld86.1.gz @dirrm lib/bcc From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 09:22:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3CFDE23A; Wed, 22 Jan 2014 09:22:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 295891276; Wed, 22 Jan 2014 09:22:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0M9Ms0I059034; Wed, 22 Jan 2014 09:22:54 GMT (envelope-from lwhsu@svn.freebsd.org) Received: (from lwhsu@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0M9MrD6059030; Wed, 22 Jan 2014 09:22:53 GMT (envelope-from lwhsu@svn.freebsd.org) Message-Id: <201401220922.s0M9MrD6059030@svn.freebsd.org> From: Li-Wen Hsu Date: Wed, 22 Jan 2014 09:22:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340702 - head/devel/jenkins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 09:22:54 -0000 Author: lwhsu Date: Wed Jan 22 09:22:53 2014 New Revision: 340702 URL: http://svnweb.freebsd.org/changeset/ports/340702 QAT: https://qat.redports.org/buildarchive/r340702/ Log: - Update to 1.548 Modified: head/devel/jenkins/Makefile head/devel/jenkins/distinfo Modified: head/devel/jenkins/Makefile ============================================================================== --- head/devel/jenkins/Makefile Wed Jan 22 09:19:18 2014 (r340701) +++ head/devel/jenkins/Makefile Wed Jan 22 09:22:53 2014 (r340702) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 1.547 +PORTVERSION= 1.548 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: head/devel/jenkins/distinfo ============================================================================== --- head/devel/jenkins/distinfo Wed Jan 22 09:19:18 2014 (r340701) +++ head/devel/jenkins/distinfo Wed Jan 22 09:22:53 2014 (r340702) @@ -1,2 +1,2 @@ -SHA256 (jenkins/1.547/jenkins.war) = e8e11089df2331de368de38030134dfd3b9a2c38beffb52e3af9b30a9bddcca9 -SIZE (jenkins/1.547/jenkins.war) = 67054081 +SHA256 (jenkins/1.548/jenkins.war) = d2b86d29588abe589fb6684338ff41a63fa498f971b6dec79bfc4778b88b0035 +SIZE (jenkins/1.548/jenkins.war) = 67070340 From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 11:03:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B58A136; Wed, 22 Jan 2014 11:03:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 063E01C9C; Wed, 22 Jan 2014 11:03:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MB3j1K098236; Wed, 22 Jan 2014 11:03:45 GMT (envelope-from knu@svn.freebsd.org) Received: (from knu@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MB3j3r098232; Wed, 22 Jan 2014 11:03:45 GMT (envelope-from knu@svn.freebsd.org) Message-Id: <201401221103.s0MB3j3r098232@svn.freebsd.org> From: Akinori MUSHA Date: Wed, 22 Jan 2014 11:03:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340703 - in head/databases/mysql-q4m: . 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.17 Precedence: list List-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, 22 Jan 2014 11:03:46 -0000 Author: knu Date: Wed Jan 22 11:03:44 2014 New Revision: 340703 URL: http://svnweb.freebsd.org/changeset/ports/340703 QAT: https://qat.redports.org/buildarchive/r340703/ Log: Update to 0.9.10, adding support for MySQL 5.5+. Added: head/databases/mysql-q4m/files/ head/databases/mysql-q4m/files/patch-src::ha_queue.cc (contents, props changed) head/databases/mysql-q4m/files/patch-src::queue_cond.cc (contents, props changed) Modified: head/databases/mysql-q4m/Makefile head/databases/mysql-q4m/distinfo Modified: head/databases/mysql-q4m/Makefile ============================================================================== --- head/databases/mysql-q4m/Makefile Wed Jan 22 09:22:53 2014 (r340702) +++ head/databases/mysql-q4m/Makefile Wed Jan 22 11:03:44 2014 (r340703) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= q4m -PORTVERSION= 0.9.5 +PORTVERSION= 0.9.10 CATEGORIES= databases MASTER_SITES= http://q4m.kazuhooku.com/dist/ PKGNAMEPREFIX= mysql${MYSQL_VER}- @@ -13,13 +13,13 @@ COMMENT= A message queue that works as a FETCH_DEPENDS+= ${NONEXISTENT}:${PORTSDIR}/databases/mysql${MYSQL_VER}-server:build RUN_DEPENDS= ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql${MYSQL_VER}-server +USE_PERL5= yes USE_GMAKE= yes USE_AUTOTOOLS= libtool USE_MYSQL= yes -WANT_MYSQL_VER?= 51 GNU_CONFIGURE= yes -CPPFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include +CPPFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include -DDBUG_OFF LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql CONFIGURE_ARGS= --prefix="${PREFIX}" \ --libdir="${PREFIX}/lib/mysql/plugin" \ @@ -42,7 +42,7 @@ PORTDOCS= AUTHORS ChangeLog README doc PORTEXAMPLES= crawler install.sql post-patch: - @${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|/include/mysql|/include/mysql/mysql|g' ${WRKSRC}/configure post-install: ${MKDIR} ${DOCSDIR} @@ -59,6 +59,6 @@ install-functions: mysql -u root -f mysql < ${EXAMPLESDIR}/install.sql test: - cd ${WRKSRC}; ${PERL} run_tests.pl + cd ${WRKSRC}; ./run_tests.pl .include Modified: head/databases/mysql-q4m/distinfo ============================================================================== --- head/databases/mysql-q4m/distinfo Wed Jan 22 09:22:53 2014 (r340702) +++ head/databases/mysql-q4m/distinfo Wed Jan 22 11:03:44 2014 (r340703) @@ -1,2 +1,2 @@ -SHA256 (q4m-0.9.5.tar.gz) = 97bdf74a69dd663a9d908df9fdfab35001cbdfa396e478d7aa982bcbab9f1260 -SIZE (q4m-0.9.5.tar.gz) = 1631858 +SHA256 (q4m-0.9.10.tar.gz) = ddca34f5cf58be70039adaa3197c6a10303218b631c3c0bd3313c892e08199bb +SIZE (q4m-0.9.10.tar.gz) = 1663838 Added: head/databases/mysql-q4m/files/patch-src::ha_queue.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/mysql-q4m/files/patch-src::ha_queue.cc Wed Jan 22 11:03:44 2014 (r340703) @@ -0,0 +1,12 @@ +--- src/ha_queue.cc.orig 2013-05-21 18:33:11.000000000 +0900 ++++ src/ha_queue.cc 2014-01-22 18:50:08.633290803 +0900 +@@ -64,9 +64,7 @@ + #define Q4M_DELETE_MT_PWRITE 2 + #define Q4M_DELETE_SERIAL_PWRITE 3 + +-#if MYSQL_VERSION_ID < 50500 + #include "queue_config.h" +-#endif + + #if SIZEOF_OFF_T != 8 + # error "support for 64-bit file offsets is mandatory" Added: head/databases/mysql-q4m/files/patch-src::queue_cond.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/mysql-q4m/files/patch-src::queue_cond.cc Wed Jan 22 11:03:44 2014 (r340703) @@ -0,0 +1,10 @@ +--- src/queue_cond.cc.orig 2013-03-22 15:35:15.000000000 +0900 ++++ src/queue_cond.cc 2014-01-22 18:55:04.861289350 +0900 +@@ -10,6 +10,7 @@ + #include + #include + #endif ++#include "queue_config.h" + #include "queue_cond.h" + + using namespace std; From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 11:20:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9E55669; Wed, 22 Jan 2014 11:20:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BC2B21DCA; Wed, 22 Jan 2014 11:20:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MBKINY003393; Wed, 22 Jan 2014 11:20:18 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MBKIfm003390; Wed, 22 Jan 2014 11:20:18 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401221120.s0MBKIfm003390@svn.freebsd.org> From: John Marino Date: Wed, 22 Jan 2014 11:20:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340704 - in head/databases/tablelog: . 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.17 Precedence: list List-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, 22 Jan 2014 11:20:19 -0000 Author: marino Date: Wed Jan 22 11:20:17 2014 New Revision: 340704 URL: http://svnweb.freebsd.org/changeset/ports/340704 QAT: https://qat.redports.org/buildarchive/r340704/ Log: databases/tablelog: Fix pgsql 9.2+ and stage support PR: ports/179955 Added: head/databases/tablelog/files/ head/databases/tablelog/files/patch-table__log.c (contents, props changed) Modified: head/databases/tablelog/Makefile head/databases/tablelog/pkg-plist Modified: head/databases/tablelog/Makefile ============================================================================== --- head/databases/tablelog/Makefile Wed Jan 22 11:03:44 2014 (r340703) +++ head/databases/tablelog/Makefile Wed Jan 22 11:20:17 2014 (r340704) @@ -14,21 +14,21 @@ WRKSRC= ${WRKDIR}/table_log-${DISTVERSI USES= gmake USE_PGSQL= yes -WANT_PGSQL_VER= 91- MAKE_ARGS= USE_PGXS=1 -PORTDOCS= README.table_log table_log.sql +.include -NO_STAGE= yes do-install: - @${MKDIR} ${PREFIX}/lib/postgresql/ - @${INSTALL_PROGRAM} ${WRKSRC}/table_log.so ${PREFIX}/lib/postgresql/ - @${MKDIR} ${PREFIX}/share/postgresql/contrib/ + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/postgresql/ + @${INSTALL_PROGRAM} ${WRKSRC}/table_log.so \ + ${STAGEDIR}${PREFIX}/lib/postgresql/ + @${MKDIR} ${STAGEDIR}${PREFIX}/share/postgresql/contrib/ @${INSTALL_DATA} ${WRKSRC}/table_log_init.sql \ - ${PREFIX}/share/postgresql/contrib/ -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR}/ - cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ + ${STAGEDIR}${PREFIX}/share/postgresql/contrib/ +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${STAGEDIR}${DOCSDIR}/ + cd ${WRKSRC} && ${INSTALL_DATA} README.table_log table_log.sql \ + ${STAGEDIR}${DOCSDIR}/ .endif .include Added: head/databases/tablelog/files/patch-table__log.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/tablelog/files/patch-table__log.c Wed Jan 22 11:20:17 2014 (r340704) @@ -0,0 +1,11 @@ +--- table_log.c.orig 2007-05-16 23:14:04.000000000 +0000 ++++ table_log.c +@@ -22,6 +22,8 @@ + #include "utils/formatting.h" + #include "utils/builtins.h" + #include ++#include ++#include + #include + + /* for PostgreSQL >= 8.2.x */ Modified: head/databases/tablelog/pkg-plist ============================================================================== --- head/databases/tablelog/pkg-plist Wed Jan 22 11:03:44 2014 (r340703) +++ head/databases/tablelog/pkg-plist Wed Jan 22 11:20:17 2014 (r340704) @@ -1,5 +1,8 @@ lib/postgresql/table_log.so share/postgresql/contrib/table_log_init.sql +%%PORTDOCS%%%%DOCSDIR%%/README.table_log +%%PORTDOCS%%%%DOCSDIR%%/table_log.sql +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrmtry lib/postgresql @dirrmtry share/postgresql/contrib @dirrmtry share/postgresql From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 11:21:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13316774; Wed, 22 Jan 2014 11:21:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F3B2E1E32; Wed, 22 Jan 2014 11:21:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MBLstc006131; Wed, 22 Jan 2014 11:21:54 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MBLs1Q006130; Wed, 22 Jan 2014 11:21:54 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221121.s0MBLs1Q006130@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 11:21:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340705 - head/security/p5-Crypt-RC6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 11:21:55 -0000 Author: mat Date: Wed Jan 22 11:21:54 2014 New Revision: 340705 URL: http://svnweb.freebsd.org/changeset/ports/340705 QAT: https://qat.redports.org/buildarchive/r340705/ Log: Convert to USES=dos2unix. Based on the PR. PR: ports/185987 Submitted by: Takefu Sponsored by: Absolight Modified: head/security/p5-Crypt-RC6/Makefile Modified: head/security/p5-Crypt-RC6/Makefile ============================================================================== --- head/security/p5-Crypt-RC6/Makefile Wed Jan 22 11:20:17 2014 (r340704) +++ head/security/p5-Crypt-RC6/Makefile Wed Jan 22 11:21:54 2014 (r340705) @@ -10,10 +10,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl implementation of the RC6 encryption algorithm -USES= perl5 +USES= perl5 dos2unix USE_PERL5= configure -do-patch: - ${REINPLACE_CMD} -e 's/ //' ${WRKSRC}/RC6.pm - .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 11:26:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 74C2D8D4; Wed, 22 Jan 2014 11:26:42 +0000 (UTC) Date: Wed, 22 Jan 2014 11:26:42 +0000 From: Alexey Dokuchaev To: Akinori MUSHA Subject: Re: svn commit: r340703 - in head/databases/mysql-q4m: . files Message-ID: <20140122112642.GA53001@FreeBSD.org> References: <201401221103.s0MB3j3r098232@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401221103.s0MB3j3r098232@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 22 Jan 2014 11:26:42 -0000 On Wed, Jan 22, 2014 at 11:03:45AM +0000, Akinori MUSHA wrote: > New Revision: 340703 > URL: http://svnweb.freebsd.org/changeset/ports/340703 > > +USE_PERL5= yes > USE_GMAKE= yes Hmm, why not employ USES for gmake and perl5? > -CPPFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include > +CPPFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include -DDBUG_OFF PTHREAD_CFLAGS is empty for a long time; you could've simply omitted it completely here. > - cd ${WRKSRC}; ${PERL} run_tests.pl > + cd ${WRKSRC}; ./run_tests.pl I'm not sure if this change actually makes things better: it now depends on correct shebang, and +x permission on the script. What was wrong with invoking the script through ${PERL}? ./danfe From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 11:33:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 2FAA2CCE; Wed, 22 Jan 2014 11:33:47 +0000 (UTC) Date: Wed, 22 Jan 2014 11:33:47 +0000 From: Alexey Dokuchaev To: Antoine Brodin Subject: Re: svn commit: r340629 - head/graphics/4va Message-ID: <20140122113347.GA53512@FreeBSD.org> References: <201401211817.s0LIHV3U090712@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401211817.s0LIHV3U090712@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 22 Jan 2014 11:33:47 -0000 On Tue, Jan 21, 2014 at 06:17:31PM +0000, Antoine Brodin wrote: > - ${INSTALL_MAN} ${WRKSRC}/4va.man ${PREFIX}/man/man1/4va.1 > + ${INSTALL_MAN} ${WRKSRC}/4va.man ${STAGEDIR}${PREFIX}/man/man1/4va.1 I risk to become annoying, but manpages should go under MAN[x]PREFIX, not PREFIX, where x is optional section number. E.g., in this case, it should have been ${MANPREFIX} or ${MAN1PREFIX}. FWIW, I've personally always preferred unsectioned MANPREFIX, as it seems silly to put different sections in different places (at least in FreeBSD; perhaps it makes sense in other unices). Do we really need these numbered manprefixes, anyone? :) ./danfe From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 11:43:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9692E9A; Wed, 22 Jan 2014 11:43:33 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 876231FB7; Wed, 22 Jan 2014 11:43:33 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 317ADBDC5C; Wed, 22 Jan 2014 12:43:32 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id E2DF6BDC44; Wed, 22 Jan 2014 12:43:31 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 0D325613F; Wed, 22 Jan 2014 12:43:30 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 922696830E8D; Wed, 22 Jan 2014 12:43:30 +0100 (CET) Date: Wed, 22 Jan 2014 12:43:29 +0100 From: Mathieu Arnold To: Akinori MUSHA , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340703 - in head/databases/mysql-q4m: . files Message-ID: In-Reply-To: <201401221103.s0MB3j3r098232@svn.freebsd.org> References: <201401221103.s0MB3j3r098232@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 11:43:33 -0000 +--On 22 janvier 2014 11:03:45 +0000 Akinori MUSHA wrote: | +USE_PERL5= yes USE_PERL5=yes won't do anything, you want to use USES=perl5. It also raises a fatal error in the sanity checks. You should really put DEVELOPER=yes in your make.conf, it *is* useful. -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 11:47:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB13614B; Wed, 22 Jan 2014 11:47:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B527D1FEF; Wed, 22 Jan 2014 11:47:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MBlUOw014574; Wed, 22 Jan 2014 11:47:30 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MBlMfP014528; Wed, 22 Jan 2014 11:47:22 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221147.s0MBlMfP014528@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 11:47:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340706 - in head/textproc: p5-Spreadsheet-Read p5-Spreadsheet-ReadSXC p5-Spreadsheet-XLSX p5-String-BufferStack p5-String-CamelCase p5-String-Compare-ConstantTime p5-String-Divert p5-S... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 11:47:30 -0000 Author: mat Date: Wed Jan 22 11:47:22 2014 New Revision: 340706 URL: http://svnweb.freebsd.org/changeset/ports/340706 QAT: https://qat.redports.org/buildarchive/r340706/ Log: * Convert to staging * Add license * pet portlint Sponsored by: Absolight Modified: head/textproc/p5-Spreadsheet-Read/Makefile head/textproc/p5-Spreadsheet-Read/pkg-plist head/textproc/p5-Spreadsheet-ReadSXC/Makefile head/textproc/p5-Spreadsheet-ReadSXC/pkg-plist head/textproc/p5-Spreadsheet-XLSX/Makefile head/textproc/p5-Spreadsheet-XLSX/pkg-descr head/textproc/p5-Spreadsheet-XLSX/pkg-plist head/textproc/p5-String-BufferStack/Makefile head/textproc/p5-String-BufferStack/pkg-plist head/textproc/p5-String-CamelCase/Makefile head/textproc/p5-String-CamelCase/pkg-plist head/textproc/p5-String-Compare-ConstantTime/Makefile head/textproc/p5-String-Compare-ConstantTime/pkg-plist head/textproc/p5-String-Divert/Makefile head/textproc/p5-String-Divert/pkg-plist head/textproc/p5-String-Escape/Makefile head/textproc/p5-String-Escape/pkg-plist head/textproc/p5-String-Flogger/Makefile head/textproc/p5-String-Flogger/pkg-plist head/textproc/p5-String-Format/Makefile head/textproc/p5-String-Format/pkg-plist head/textproc/p5-String-HexConvert/Makefile head/textproc/p5-String-HexConvert/pkg-plist head/textproc/p5-String-RewritePrefix/Makefile head/textproc/p5-String-RewritePrefix/pkg-plist head/textproc/p5-String-ShellQuote/Makefile head/textproc/p5-String-ShellQuote/pkg-plist head/textproc/p5-String-Strip/Makefile head/textproc/p5-String-Strip/pkg-plist head/textproc/p5-String-Urandom/Makefile head/textproc/p5-String-Urandom/pkg-plist head/textproc/p5-Syntax-Highlight-Perl-Improved/Makefile head/textproc/p5-Syntax-Highlight-Perl-Improved/pkg-plist head/textproc/p5-TeX-Hyphen/Makefile head/textproc/p5-TeX-Hyphen/pkg-plist head/textproc/p5-Template-Declare/Makefile head/textproc/p5-Template-Declare/pkg-plist Modified: head/textproc/p5-Spreadsheet-Read/Makefile ============================================================================== --- head/textproc/p5-Spreadsheet-Read/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Spreadsheet-Read/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -12,6 +12,9 @@ EXTRACT_SUFX= .tgz MAINTAINER= swills@FreeBSD.org COMMENT= Read the data from a spreadsheet +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-IO-stringy>0:${PORTSDIR}/devel/p5-IO-stringy \ p5-Text-CSV_XS>0:${PORTSDIR}/textproc/p5-Text-CSV_XS \ p5-Text-CSV>0:${PORTSDIR}/textproc/p5-Text-CSV \ @@ -23,7 +26,4 @@ TEST_DEPENDS= p5-Test-NoWarnings>0:${POR USES= perl5 USE_PERL5= configure -MAN3= Spreadsheet::Read.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Spreadsheet-Read/pkg-plist ============================================================================== --- head/textproc/p5-Spreadsheet-Read/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Spreadsheet-Read/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Spreadsheet::Read.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Spreadsheet/Read/.packlist %%SITE_PERL%%/Spreadsheet/Read.pm @dirrmtry %%SITE_PERL%%/Spreadsheet Modified: head/textproc/p5-Spreadsheet-ReadSXC/Makefile ============================================================================== --- head/textproc/p5-Spreadsheet-ReadSXC/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Spreadsheet-ReadSXC/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -19,7 +19,4 @@ RUN_DEPENDS= p5-Archive-Zip>=0:${PORTSDI USES= perl5 USE_PERL5= configure -MAN3= Spreadsheet::ReadSXC.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Spreadsheet-ReadSXC/pkg-plist ============================================================================== --- head/textproc/p5-Spreadsheet-ReadSXC/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Spreadsheet-ReadSXC/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Spreadsheet::ReadSXC.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Spreadsheet/ReadSXC/.packlist %%SITE_PERL%%/Spreadsheet/ReadSXC.pm @dirrmtry %%SITE_PERL%%/Spreadsheet Modified: head/textproc/p5-Spreadsheet-XLSX/Makefile ============================================================================== --- head/textproc/p5-Spreadsheet-XLSX/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Spreadsheet-XLSX/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -21,7 +21,4 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USES= perl5 USE_PERL5= configure -MAN3= Spreadsheet::XLSX.3 Spreadsheet::XLSX::Fmt2007.3 Spreadsheet::XLSX::Utility2007.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Spreadsheet-XLSX/pkg-descr ============================================================================== --- head/textproc/p5-Spreadsheet-XLSX/pkg-descr Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Spreadsheet-XLSX/pkg-descr Wed Jan 22 11:47:22 2014 (r340706) @@ -3,4 +3,4 @@ This Perl module is a emulation of Sprea all. It populates the classes from Spreadsheet::ParseExcel for interoperability; including Workbook, Worksheet, and Cell. -WWW: http://search.cpan.org/dist/Spreadsheet-XLSX +WWW: http://search.cpan.org/dist/Spreadsheet-XLSX/ Modified: head/textproc/p5-Spreadsheet-XLSX/pkg-plist ============================================================================== --- head/textproc/p5-Spreadsheet-XLSX/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Spreadsheet-XLSX/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/Spreadsheet::XLSX.3.gz +%%PERL5_MAN3%%/Spreadsheet::XLSX::Fmt2007.3.gz +%%PERL5_MAN3%%/Spreadsheet::XLSX::Utility2007.3.gz %%SITE_PERL%%/Spreadsheet/XLSX/Utility2007.pm %%SITE_PERL%%/Spreadsheet/XLSX/Fmt2007.pm %%SITE_PERL%%/Spreadsheet/XLSX.pm Modified: head/textproc/p5-String-BufferStack/Makefile ============================================================================== --- head/textproc/p5-String-BufferStack/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-BufferStack/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Nested buffers for templating systems +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= String::BufferStack.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-BufferStack/pkg-plist ============================================================================== --- head/textproc/p5-String-BufferStack/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-BufferStack/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::BufferStack.3.gz %%SITE_PERL%%/String/BufferStack.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/BufferStack/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/BufferStack Modified: head/textproc/p5-String-CamelCase/Makefile ============================================================================== --- head/textproc/p5-String-CamelCase/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-CamelCase/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= kaoru@kaisei.org COMMENT= Perl module for camelcase, de-camelcase +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= String::CamelCase.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-CamelCase/pkg-plist ============================================================================== --- head/textproc/p5-String-CamelCase/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-CamelCase/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::CamelCase.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/CamelCase/.packlist %%SITE_PERL%%/String/CamelCase.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/CamelCase Modified: head/textproc/p5-String-Compare-ConstantTime/Makefile ============================================================================== --- head/textproc/p5-String-Compare-ConstantTime/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Compare-ConstantTime/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -12,8 +12,4 @@ COMMENT= Perl extension for timing side- USES= perl5 USE_PERL5= configure -MAN3= String::Compare::ConstantTime.3 \ - String::Compare::README.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-Compare-ConstantTime/pkg-plist ============================================================================== --- head/textproc/p5-String-Compare-ConstantTime/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Compare-ConstantTime/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/String::Compare::ConstantTime.3.gz +%%PERL5_MAN3%%/String::Compare::README.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Compare/ConstantTime/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Compare/ConstantTime/ConstantTime.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Compare/ConstantTime/ConstantTime.so Modified: head/textproc/p5-String-Divert/Makefile ============================================================================== --- head/textproc/p5-String-Divert/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Divert/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -13,7 +13,4 @@ COMMENT= String::Divert - String Object USES= perl5 USE_PERL5= configure -MAN3= String::Divert.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-Divert/pkg-plist ============================================================================== --- head/textproc/p5-String-Divert/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Divert/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::Divert.3.gz %%SITE_PERL%%/String/Divert.pm %%SITE_PERL%%/String/Divert.pod %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Divert/.packlist Modified: head/textproc/p5-String-Escape/Makefile ============================================================================== --- head/textproc/p5-String-Escape/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Escape/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= catone@cpan.org COMMENT= Registry of string functions, including backslash escapes +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= String::Escape.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-Escape/pkg-plist ============================================================================== --- head/textproc/p5-String-Escape/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Escape/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::Escape.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Escape/.packlist %%SITE_PERL%%/String/Escape.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Escape Modified: head/textproc/p5-String-Flogger/Makefile ============================================================================== --- head/textproc/p5-String-Flogger/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Flogger/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= String munging for loggers +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Params-Util>0:${PORTSDIR}/devel/p5-Params-Util \ p5-Sub-Exporter>0:${PORTSDIR}/devel/p5-Sub-Exporter \ p5-JSON>0:${PORTSDIR}/converters/p5-JSON @@ -20,7 +23,4 @@ TEST_DEPENDS= p5-Test-Simple>=0.82:${POR USES= perl5 USE_PERL5= configure -MAN3= String::Flogger.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-Flogger/pkg-plist ============================================================================== --- head/textproc/p5-String-Flogger/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Flogger/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::Flogger.3.gz %%SITE_PERL%%/String/Flogger.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Flogger/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Flogger Modified: head/textproc/p5-String-Format/Makefile ============================================================================== --- head/textproc/p5-String-Format/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Format/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -15,7 +15,4 @@ LICENSE= GPLv2 USES= perl5 USE_PERL5= configure -MAN3= String::Format.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-Format/pkg-plist ============================================================================== --- head/textproc/p5-String-Format/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Format/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::Format.3.gz %%SITE_PERL%%/String/Format.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Format/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Format Modified: head/textproc/p5-String-HexConvert/Makefile ============================================================================== --- head/textproc/p5-String-HexConvert/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-HexConvert/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -16,7 +16,4 @@ WRKSRC= ${WRKDIR}/${PORTNAME} USES= perl5 USE_PERL5= configure -MAN3= String::HexConvert.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-HexConvert/pkg-plist ============================================================================== --- head/textproc/p5-String-HexConvert/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-HexConvert/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::HexConvert.3.gz %%SITE_PERL%%/String/HexConvert.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/HexConvert/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/HexConvert Modified: head/textproc/p5-String-RewritePrefix/Makefile ============================================================================== --- head/textproc/p5-String-RewritePrefix/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-RewritePrefix/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -11,12 +11,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= bill.brinzer@gmail.com COMMENT= Rewrite strings based on a set of known prefixes +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + TEST_DEPENDS= p5-Sub-Exporter>0:${PORTSDIR}/devel/p5-Sub-Exporter USES= perl5 USE_PERL5= configure -MAN3= String::RewritePrefix.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-RewritePrefix/pkg-plist ============================================================================== --- head/textproc/p5-String-RewritePrefix/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-RewritePrefix/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::RewritePrefix.3.gz %%SITE_PERL%%/String/RewritePrefix.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/RewritePrefix/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/RewritePrefix Modified: head/textproc/p5-String-ShellQuote/Makefile ============================================================================== --- head/textproc/p5-String-ShellQuote/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-ShellQuote/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -13,8 +13,4 @@ COMMENT= Perl module for quote strings f USES= perl5 USE_PERL5= configure -MAN1= shell-quote.1 -MAN3= String::ShellQuote.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-ShellQuote/pkg-plist ============================================================================== --- head/textproc/p5-String-ShellQuote/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-ShellQuote/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,6 +1,8 @@ bin/shell-quote +%%PERL5_MAN3%%/String::ShellQuote.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/ShellQuote/.packlist %%SITE_PERL%%/String/ShellQuote.pm +man/man1/shell-quote.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/ShellQuote @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/String @dirrmtry %%SITE_PERL%%/String Modified: head/textproc/p5-String-Strip/Makefile ============================================================================== --- head/textproc/p5-String-Strip/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Strip/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -13,7 +13,4 @@ COMMENT= Perl extension for fast, common USES= perl5 USE_PERL5= configure -MAN3= String::Strip.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-Strip/pkg-plist ============================================================================== --- head/textproc/p5-String-Strip/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Strip/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::Strip.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Strip/Strip.so %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Strip/Strip.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Strip/autosplit.ix Modified: head/textproc/p5-String-Urandom/Makefile ============================================================================== --- head/textproc/p5-String-Urandom/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Urandom/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -9,6 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to convert /dev/urandom to 8-bit chars +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= \ p5-Params-Validate>0:${PORTSDIR}/devel/p5-Params-Validate BUILD_DEPENDS:= ${RUN_DEPENDS} @@ -16,7 +19,4 @@ BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= String::Urandom.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-String-Urandom/pkg-plist ============================================================================== --- head/textproc/p5-String-Urandom/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-String-Urandom/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/String::Urandom.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/String/Urandom/.packlist %%SITE_PERL%%/String/Urandom.pm %%SITE_PERL%%/String/example.pl Modified: head/textproc/p5-Syntax-Highlight-Perl-Improved/Makefile ============================================================================== --- head/textproc/p5-Syntax-Highlight-Perl-Improved/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Syntax-Highlight-Perl-Improved/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -14,7 +14,4 @@ COMMENT= Syntax highlighting for Perl co USES= perl5 USE_PERL5= configure -MAN3= Syntax::Highlight::Perl::Improved.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Syntax-Highlight-Perl-Improved/pkg-plist ============================================================================== --- head/textproc/p5-Syntax-Highlight-Perl-Improved/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Syntax-Highlight-Perl-Improved/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Syntax::Highlight::Perl::Improved.3.gz %%SITE_PERL%%/Syntax/Highlight/Perl/Improved.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Syntax/Highlight/Perl/Improved/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Syntax/Highlight/Perl/Improved Modified: head/textproc/p5-TeX-Hyphen/Makefile ============================================================================== --- head/textproc/p5-TeX-Hyphen/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-TeX-Hyphen/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -12,7 +12,4 @@ COMMENT= Hyphenate words using TeX's pat USES= perl5 USE_PERL5= configure -MAN3= TeX::Hyphen.3 TeX::Hyphen::czech.3 TeX::Hyphen::german.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-TeX-Hyphen/pkg-plist ============================================================================== --- head/textproc/p5-TeX-Hyphen/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-TeX-Hyphen/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/TeX::Hyphen.3.gz +%%PERL5_MAN3%%/TeX::Hyphen::czech.3.gz +%%PERL5_MAN3%%/TeX::Hyphen::german.3.gz %%SITE_PERL%%/TeX/Hyphen.pm %%SITE_PERL%%/TeX/Hyphen/czech.pm %%SITE_PERL%%/TeX/Hyphen/german.pm Modified: head/textproc/p5-Template-Declare/Makefile ============================================================================== --- head/textproc/p5-Template-Declare/Makefile Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Template-Declare/Makefile Wed Jan 22 11:47:22 2014 (r340706) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Perlish declarative templates +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + COMMON_DEPENDS= p5-Test-Warn>=0.11:${PORTSDIR}/devel/p5-Test-Warn \ p5-Class-Accessor>0:${PORTSDIR}/devel/p5-Class-Accessor \ p5-Class-Data-Inheritable>0:${PORTSDIR}/devel/p5-Class-Data-Inheritable \ @@ -22,14 +25,4 @@ RUN_DEPENDS= ${COMMON_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Template::Declare.3 \ - Template::Declare::Buffer.3 \ - Template::Declare::TagSet.3 \ - Template::Declare::TagSet::HTML.3 \ - Template::Declare::TagSet::RDF.3 \ - Template::Declare::TagSet::RDF::EM.3 \ - Template::Declare::TagSet::XUL.3 \ - Template::Declare::Tags.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Template-Declare/pkg-plist ============================================================================== --- head/textproc/p5-Template-Declare/pkg-plist Wed Jan 22 11:21:54 2014 (r340705) +++ head/textproc/p5-Template-Declare/pkg-plist Wed Jan 22 11:47:22 2014 (r340706) @@ -1,3 +1,11 @@ +%%PERL5_MAN3%%/Template::Declare.3.gz +%%PERL5_MAN3%%/Template::Declare::Buffer.3.gz +%%PERL5_MAN3%%/Template::Declare::TagSet.3.gz +%%PERL5_MAN3%%/Template::Declare::TagSet::HTML.3.gz +%%PERL5_MAN3%%/Template::Declare::TagSet::RDF.3.gz +%%PERL5_MAN3%%/Template::Declare::TagSet::RDF::EM.3.gz +%%PERL5_MAN3%%/Template::Declare::TagSet::XUL.3.gz +%%PERL5_MAN3%%/Template::Declare::Tags.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Template/Declare/.packlist %%SITE_PERL%%/Template/Declare.pm %%SITE_PERL%%/Template/Declare/Buffer.pm From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 12:19:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD958774; Wed, 22 Jan 2014 12:19:51 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 406AA1279; Wed, 22 Jan 2014 12:19:50 +0000 (UTC) Received: from lqc.issp.ac.ru [77.236.34.156:50164] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id s0MCJmJl058173 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Wed, 22 Jan 2014 16:19:48 +0400 (MSK) From: Max Brazhnikov To: Alexey Dokuchaev Subject: Re: svn commit: r340629 - head/graphics/4va Date: Wed, 22 Jan 2014 12:19:48 +0000 Message-ID: <92695689.5r8znDAH1M@mercury.ph.man.ac.uk> User-Agent: KMail/4.10.5 (FreeBSD/9.2-STABLE; KDE/4.10.5; amd64; ; ) In-Reply-To: <20140122113347.GA53512@FreeBSD.org> References: <201401211817.s0LIHV3U090712@svn.freebsd.org> <20140122113347.GA53512@FreeBSD.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: svn-ports-head@freebsd.org, Antoine Brodin , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 12:19:51 -0000 On Wed, 22 Jan 2014 11:33:47 +0000 Alexey Dokuchaev wrote: > On Tue, Jan 21, 2014 at 06:17:31PM +0000, Antoine Brodin wrote: > > - ${INSTALL_MAN} ${WRKSRC}/4va.man ${PREFIX}/man/man1/4va.1 > > + ${INSTALL_MAN} ${WRKSRC}/4va.man ${STAGEDIR}${PREFIX}/man/man1/4va.1 > > I risk to become annoying, but manpages should go under MAN[x]PREFIX, not > PREFIX, where x is optional section number. E.g., in this case, it should > have been ${MANPREFIX} or ${MAN1PREFIX}. Considering manpages are now listed in pkg-plist, they must be installed into PREFIX. > FWIW, I've personally always preferred unsectioned MANPREFIX, as it seems > silly to put different sections in different places (at least in FreeBSD; > perhaps it makes sense in other unices). Do we really need these numbered > manprefixes, anyone? :) ...and, let me add, MANPREFIX :) Cheers, Max From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 12:21:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE335875; Wed, 22 Jan 2014 12:21:42 +0000 (UTC) Received: from mail.musha.org (v055125.ppp.asahi-net.or.jp [124.155.55.125]) by mx1.freebsd.org (Postfix) with ESMTP id B024912E8; Wed, 22 Jan 2014 12:21:41 +0000 (UTC) Received: by mail.musha.org (Postfix, from userid 58) id 3f8QhZ6RVpzXqPM; Wed, 22 Jan 2014 21:21:34 +0900 (JST) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on daemon.musha.org X-Spam-Level: X-Spam-Status: No, score=-4.5 required=13.0 tests=BAYES_00, CONTENT_TYPE_PRESENT,FAKEDWORD_ONE,FAKEDWORD_VERTICALLINE,ONLY1HOPDIRECT, RP_MATCHES_RCVD,SPF_HELO_FAIL,SPF_SOFTFAIL autolearn=no version=3.3.2 Received: from daemon.musha.org (daemon.local.idaemons.org [192.168.11.11]) by mail.musha.org (Postfix) with ESMTP id 3f8QhV6skDzXqPK; Wed, 22 Jan 2014 21:21:30 +0900 (JST) Date: Wed, 22 Jan 2014 21:21:30 +0900 Message-ID: <86sisgcilx.knu@iDaemons.org> From: "Akinori MUSHA" To: Mathieu Arnold Subject: Re: svn commit: r340703 - in head/databases/mysql-q4m: . files In-Reply-To: References: <201401221103.s0MB3j3r098232@svn.freebsd.org> Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Wed_Jan_22_21:21:27_2014-1"; micalg=pgp-sha1; protocol="application/pgp-signature" 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.17 Precedence: list List-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, 22 Jan 2014 12:21:43 -0000 --pgp-sign-Multipart_Wed_Jan_22_21:21:27_2014-1 Content-Type: text/plain; charset=US-ASCII OK, thanks guys. I have done a lot in the past but now I do ports stuff only rarely these days, and it just takes a while to recall things. I just intended to apply minimum changes to fix the port. I hope I can do it better next time. -- Akinori MUSHA / https://akinori.org/ --pgp-sign-Multipart_Wed_Jan_22_21:21:27_2014-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit Content-Description: OpenPGP Digital Signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEABECAAYFAlLft8cACgkQkgvvx5/Z4e6HKwCfTR0s/RAV+7i7e2DtnfTsyG5x jHIAoLcYiFSgWe9WI0K251daypF3l/jA =kDKP -----END PGP SIGNATURE----- --pgp-sign-Multipart_Wed_Jan_22_21:21:27_2014-1-- From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 12:28:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 3D31DA0B; Wed, 22 Jan 2014 12:28:59 +0000 (UTC) Date: Wed, 22 Jan 2014 12:28:59 +0000 From: Alexey Dokuchaev To: Max Brazhnikov Subject: Re: svn commit: r340629 - head/graphics/4va Message-ID: <20140122122859.GA67470@FreeBSD.org> References: <201401211817.s0LIHV3U090712@svn.freebsd.org> <20140122113347.GA53512@FreeBSD.org> <92695689.5r8znDAH1M@mercury.ph.man.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <92695689.5r8znDAH1M@mercury.ph.man.ac.uk> User-Agent: Mutt/1.5.22 (2013-10-16) Cc: svn-ports-head@freebsd.org, Antoine Brodin , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 12:28:59 -0000 On Wed, Jan 22, 2014 at 12:19:48PM +0000, Max Brazhnikov wrote: > On Wed, 22 Jan 2014 11:33:47 +0000 Alexey Dokuchaev wrote: > > On Tue, Jan 21, 2014 at 06:17:31PM +0000, Antoine Brodin wrote: > > > - ${INSTALL_MAN} ${WRKSRC}/4va.man ${PREFIX}/man/man1/4va.1 > > > + ${INSTALL_MAN} ${WRKSRC}/4va.man ${STAGEDIR}${PREFIX}/man/man1/4va.1 > > > > I risk to become annoying, but manpages should go under MAN[x]PREFIX, not > > PREFIX, where x is optional section number. E.g., in this case, it should > > have been ${MANPREFIX} or ${MAN1PREFIX}. > > Considering manpages are now listed in pkg-plist, they must be installed > into PREFIX. > [Do we need MAN[x]PREFIX?] ...and, let me add, MANPREFIX :) Hmm, this makes a fair point indeed. It seems this issue must be clarified, since it was omitted during staging conversion effort/documetation. ./danfe From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 12:40:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40C6EC66; Wed, 22 Jan 2014 12:40:35 +0000 (UTC) Received: from mail-we0-x229.google.com (mail-we0-x229.google.com [IPv6:2a00:1450:400c:c03::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B409147B; Wed, 22 Jan 2014 12:40:34 +0000 (UTC) Received: by mail-we0-f169.google.com with SMTP id u57so275850wes.0 for ; Wed, 22 Jan 2014 04:40:32 -0800 (PST) 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=7K6BkZy0yM3f48/mkyJ8sPoy5ZYcg9589LimuKk0Ne4=; b=WDuP2HeVyp1aN0xRT60w3hZ8JeCCw/9XPvLHFxI1c+3fjNtayn9FrqvhsqGftU6gUx DdyLNpYnwEvseEtDC3uhvEUKoTPdHZ46yo0mXtwS8a27WpzEj+tgd1CrEienFkv7rNq8 i68PwQhwZHGkTeF+XWDLiK8v2dh+PiLM2AR+9rKft1vOU5GmBqwpdv++DPEMYi1I/qzV qFhnf+ZyGQdpyhGZhJMO4aY8CM+MXNR8WCHxeQbGFWsSwTqekJJCafNV4JuP/KY033TX cfSkGvArUojAWhuSKGApoDRQQgb7TYlAyKiS3ID2CdxHWvZ+16h4e4Q8fpFED/gdJ5vC lOdQ== X-Received: by 10.194.92.7 with SMTP id ci7mr1512378wjb.58.1390394432847; Wed, 22 Jan 2014 04:40:32 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id cx3sm41786551wib.0.2014.01.22.04.40.31 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 22 Jan 2014 04:40:31 -0800 (PST) Sender: Baptiste Daroussin Date: Wed, 22 Jan 2014 13:40:29 +0100 From: Baptiste Daroussin To: Akinori MUSHA Subject: Re: svn commit: r340703 - in head/databases/mysql-q4m: . files Message-ID: <20140122124029.GB4177@ithaqua.etoilebsd.net> References: <201401221103.s0MB3j3r098232@svn.freebsd.org> <86sisgcilx.knu@iDaemons.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xgyAXRrhYN0wYx8y" Content-Disposition: inline In-Reply-To: <86sisgcilx.knu@iDaemons.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Mathieu Arnold , 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.17 Precedence: list List-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, 22 Jan 2014 12:40:35 -0000 --xgyAXRrhYN0wYx8y Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jan 22, 2014 at 09:21:30PM +0900, Akinori MUSHA wrote: > OK, thanks guys. >=20 > I have done a lot in the past but now I do ports stuff only rarely > these days, and it just takes a while to recall things. I just > intended to apply minimum changes to fix the port. I hope I can do it > better next time. I do recommand you to add DEVELOPER=3Dyes in your make.conf, that will warn= you about such things ;:) regards, Bapt --xgyAXRrhYN0wYx8y Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (FreeBSD) iEYEARECAAYFAlLfvD0ACgkQ8kTtMUmk6ExwiwCePwd9ffyfnQfCkF+yUS64M362 IecAnj50tXTF3AcuJsQOtjm+dKdJ2qm9 =A4Rw -----END PGP SIGNATURE----- --xgyAXRrhYN0wYx8y-- From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 13:08:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35C443E1; Wed, 22 Jan 2014 13:08:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 212A416C4; Wed, 22 Jan 2014 13:08:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MD8Ld7045507; Wed, 22 Jan 2014 13:08:21 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MD8L37045506; Wed, 22 Jan 2014 13:08:21 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401221308.s0MD8L37045506@svn.freebsd.org> From: Rusmir Dusko Date: Wed, 22 Jan 2014 13:08:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340707 - head/net-p2p/libtorrent-rasterbar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 13:08:22 -0000 Author: nemysis Date: Wed Jan 22 13:08:21 2014 New Revision: 340707 URL: http://svnweb.freebsd.org/changeset/ports/340707 QAT: https://qat.redports.org/buildarchive/r340707/ Log: - Use USES=compiler:c++11-lang instead of compiler:c++11-lib Reported by: many users Reviewed by: bapt Modified: head/net-p2p/libtorrent-rasterbar/Makefile Modified: head/net-p2p/libtorrent-rasterbar/Makefile ============================================================================== --- head/net-p2p/libtorrent-rasterbar/Makefile Wed Jan 22 11:47:22 2014 (r340706) +++ head/net-p2p/libtorrent-rasterbar/Makefile Wed Jan 22 13:08:21 2014 (r340707) @@ -16,7 +16,7 @@ LICENSE= BSD LIB_DEPENDS?= libboost_date_time.so:${PORTSDIR}/devel/boost-libs \ libGeoIP.so:${PORTSDIR}/net/GeoIP -USES= compiler:c++11-lib pathfix pkgconfig iconv +USES= compiler:c++11-lang pathfix pkgconfig iconv USE_OPENSSL= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 13:29:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F5DC813; Wed, 22 Jan 2014 13:29:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6B5B61868; Wed, 22 Jan 2014 13:29:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MDTVgW053098; Wed, 22 Jan 2014 13:29:31 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MDTV00053097; Wed, 22 Jan 2014 13:29:31 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401221329.s0MDTV00053097@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 13:29:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340708 - head/devel/activitymail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 13:29:31 -0000 Author: bapt Date: Wed Jan 22 13:29:30 2014 New Revision: 340708 URL: http://svnweb.freebsd.org/changeset/ports/340708 QAT: https://qat.redports.org/buildarchive/r340708/ Log: Fix bad staging conversion Submitted by: rm Modified: head/devel/activitymail/Makefile Modified: head/devel/activitymail/Makefile ============================================================================== --- head/devel/activitymail/Makefile Wed Jan 22 13:08:21 2014 (r340707) +++ head/devel/activitymail/Makefile Wed Jan 22 13:29:30 2014 (r340708) @@ -14,6 +14,6 @@ USES= perl5 USE_PERL5= modbuild PLIST_FILES= bin/activitymail \ -= man/man1/activitymail.1.gz + man/man1/activitymail.1.gz .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 13:46:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BB0F0C0F; Wed, 22 Jan 2014 13:46:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A4E8D19B8; Wed, 22 Jan 2014 13:46:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MDkhiV060380; Wed, 22 Jan 2014 13:46:43 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MDkfGC060370; Wed, 22 Jan 2014 13:46:41 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401221346.s0MDkfGC060370@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 22 Jan 2014 13:46:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340709 - in head: Mk x11-toolkits x11-toolkits/wxgtk30 x11-toolkits/wxgtk30/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.17 Precedence: list List-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, 22 Jan 2014 13:46:43 -0000 Author: gahr Date: Wed Jan 22 13:46:41 2014 New Revision: 340709 URL: http://svnweb.freebsd.org/changeset/ports/340709 QAT: https://qat.redports.org/buildarchive/r340709/ Log: New port: x11-toolkits/wxgtk30 -- Series 3.0 of the wxWidgets toolkit PR: 181329 (based on) Submitted by: Rainer Hurling Added: head/x11-toolkits/wxgtk30/ head/x11-toolkits/wxgtk30/Makefile (contents, props changed) head/x11-toolkits/wxgtk30/distinfo (contents, props changed) head/x11-toolkits/wxgtk30/files/ head/x11-toolkits/wxgtk30/files/patch-Makefile.in (contents, props changed) head/x11-toolkits/wxgtk30/files/patch-configure (contents, props changed) head/x11-toolkits/wxgtk30/files/patch-src-common-translation.cpp (contents, props changed) head/x11-toolkits/wxgtk30/files/patch-utils-wxrc-Makefile.in (contents, props changed) head/x11-toolkits/wxgtk30/pkg-descr (contents, props changed) head/x11-toolkits/wxgtk30/pkg-plist (contents, props changed) Modified: head/Mk/bsd.wx.mk (contents, props changed) head/x11-toolkits/Makefile Modified: head/Mk/bsd.wx.mk ============================================================================== --- head/Mk/bsd.wx.mk Wed Jan 22 13:29:30 2014 (r340708) +++ head/Mk/bsd.wx.mk Wed Jan 22 13:46:41 2014 (r340709) @@ -131,9 +131,9 @@ _WX_Definitions_Done= yes _WX_COMPS_ALL= wx contrib python svg _WX_DEP_TYPES_ALL= build lib run -_WX_VERS_ALL= 2.6 2.8 2.9 -_WX_VERS_UC_ALL= 2.6 2.8 2.9 -_WX_VERS_SKIP= 2.9 +_WX_VERS_ALL= 2.6 2.8 2.9 3.0 +_WX_VERS_UC_ALL= 2.6 2.8 2.9 3.0 +_WX_VERS_SKIP= 2.9 3.0 _WX_VERS_LISTS= WANT_WX_VER WITH_WX_VER _WX_VER_INSTALLED # @@ -172,6 +172,10 @@ _WX_LIB_svg_2.8= wxsvg _WX_PORT_wx_2.9= x11-toolkits/wxgtk29 _WX_LIB_wx_2.9= wx_baseu-2.9 +# wxgtk 3.0 +_WX_PORT_wx_3.0= x11-toolkits/wxgtk30 +_WX_LIB_wx_3.0= wx_baseu-3.0 + # Set _WX_SHVER_comp_ver to 0 and _WX_FILE_comp_ver for libs appropiately. # Set _WX_DEPTYPE_comp_ver for "python" to "run", and others to "lib". Modified: head/x11-toolkits/Makefile ============================================================================== --- head/x11-toolkits/Makefile Wed Jan 22 13:29:30 2014 (r340708) +++ head/x11-toolkits/Makefile Wed Jan 22 13:46:41 2014 (r340709) @@ -282,6 +282,7 @@ SUBDIR += wxgtk28-unicode SUBDIR += wxgtk28-unicode-contrib SUBDIR += wxgtk29 + SUBDIR += wxgtk30 SUBDIR += xbae SUBDIR += xforms SUBDIR += xmhtml Added: head/x11-toolkits/wxgtk30/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/wxgtk30/Makefile Wed Jan 22 13:46:41 2014 (r340709) @@ -0,0 +1,69 @@ +# $FreeBSD$ + +PORTNAME= wx +PORTVERSION= 3.0.0 +CATEGORIES= x11-toolkits +MASTER_SITES= SF/wxwindows/${PORTVERSION} +PKGNAMESUFFIX= 29-gtk2 +DISTNAME= wxWidgets-${PORTVERSION} + +MAINTAINER= gahr@FreeBSD.org +COMMENT= The wxWidgets GUI toolkit with GTK+ bindings + +LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png\ + libjpeg.so:${PORTSDIR}/graphics/jpeg\ + libtiff.so:${PORTSDIR}/graphics/tiff\ + libexpat.so:${PORTSDIR}/textproc/expat2\ + libinotify.so:${PORTSDIR}/devel/libinotify\ + libwebkitgtk-1.0.so:${PORTSDIR}/www/webkit-gtk2 + +USES+= iconv gmake pkgconfig +USE_BZIP2= yes +USE_XORG= x11 sm xxf86vm xinerama +USE_GL= glu +USE_GNOME= gtk20 +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-libpng=sys\ + --with-libjpeg=sys\ + --with-libtiff=sys\ + --with-zlib=sys\ + --with-expat=sys\ + --with-opengl\ + --with-libmspack\ + --with-gtk\ + --enable-mediactrl\ + --disable-backtrace\ + --enable-webview\ + --enable-graphics_ctx +CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -pthread -linotify"\ + X11BASE="${LOCALBASE}" +CPPFLAGS+= -I${LOCALBASE}/include + +OPTIONS_DEFINE= GSTREAMER MSPACK NLS +OPTIONS_DEFAULT=GSTREAMER MSPACK +MSPACK_DESC= MS archives support +OPTIONS_SUB= yes + +.include + +.if ${PORT_OPTIONS:MNLS} +USES+= gettext +.endif + +.if ${PORT_OPTIONS:MGSTREAMER} +CONFIGURE_ARGS+=--enable-mediactrl +USE_GNOME+= gconf2 +USE_GSTREAMER= yes +.else +CONFIGURE_ARGS+=--disable-mediactrl +.endif + +.if ${PORT_OPTIONS:MMSPACK} +CONFIGURE_ARGS+=--with-libmspack +LIB_DEPENDS+= libmspack.so:${PORTSDIR}/archivers/libmspack +.else +CONFIGURE_ARGS+=--without-libmspack +.endif + +.include Added: head/x11-toolkits/wxgtk30/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/wxgtk30/distinfo Wed Jan 22 13:46:41 2014 (r340709) @@ -0,0 +1,2 @@ +SHA256 (wxWidgets-3.0.0.tar.bz2) = ff340539bcb6e45d8dbce848d3c13ebce34da6ffb9004a0a88e9541bec45bf85 +SIZE (wxWidgets-3.0.0.tar.bz2) = 19815734 Added: head/x11-toolkits/wxgtk30/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/wxgtk30/files/patch-Makefile.in Wed Jan 22 13:46:41 2014 (r340709) @@ -0,0 +1,42 @@ +--- Makefile.in.orig 2013-11-11 14:10:39.000000000 +0100 ++++ Makefile.in 2014-01-22 10:14:26.000000000 +0100 +@@ -25,6 +25,7 @@ + SONAME_FLAG = @SONAME_FLAG@ + STRIP = @STRIP@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ ++INSTALL_SCRIPT = @INSTALL_SCRIPT@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_DIR = @INSTALL_DIR@ + ICC_PCH_USE_SWITCH = @ICC_PCH_USE_SWITCH@ +@@ -15214,9 +15215,9 @@ + + install: $(__install_wxregex___depname) $(__install_wxzlib___depname) $(__install_wxpng___depname) $(__install_wxjpeg___depname) $(__install_wxtiff___depname) $(__install_wxexpat___depname) $(__install_wxscintilla___depname) $(__install_monodll___depname) $(__install_monolib___depname) $(__install_basedll___depname) $(__install_baselib___depname) $(__install_netdll___depname) $(__install_netlib___depname) $(__install_coredll___depname) $(__install_corelib___depname) $(__install_advdll___depname) $(__install_advlib___depname) $(__install_mediadll___depname) $(__install_medialib___depname) $(__install_htmldll___depname) $(__install_htmllib___depname) $(__install_webviewdll___depname) $(__install_webviewlib___depname) $(__install_qadll___depname) $(__install_qalib___depname) $(__install_xmldll___depname) $(__install_xmllib___depname) $(__install_xrcdll___depname) $(__install_xrclib___depname) $(__install_auidll___depname) $(__install_auilib___depname) $(__install_ribbondll___depname) $(__install_ribbonlib___depname) $(__install_propgriddll___depname) $(__install_propgridlib___depname) $(__install_richtextdll___depname) $(__install_richtextlib___depname) $(__install_stcdll___depname) $(__install_stclib___depname) $(__install_gldll___depname) $(__install_gllib___depname) $(__install_sound_sdl___depname) $(__install_wxrc___depname) install-wxconfig locale_install locale_msw_install $(__cocoa_res_install___depname) + $(INSTALL_DIR) $(DESTDIR)$(datadir)/aclocal +- (cd $(srcdir) ; $(INSTALL_DATA) wxwin.m4 $(DESTDIR)$(datadir)/aclocal) ++ (cd $(srcdir) ; $(INSTALL_DATA) wxwin.m4 $(DESTDIR)$(datadir)/aclocal/wxwin$(WX_RELEASE_NODOT).m4) + $(INSTALL_DIR) $(DESTDIR)$(datadir)/bakefile/presets +- (cd $(srcdir)/build/bakefiles/wxpresets/presets ; $(INSTALL_DATA) wx.bkl wx_unix.bkl wx_win32.bkl wx_xrc.bkl wx_presets.py $(DESTDIR)$(datadir)/bakefile/presets) ++ (cd $(srcdir)/build/bakefiles/wxpresets/presets/ ; for i in wx.bkl wx_unix.bkl wx_win32.bkl wx_xrc.bkl wx_presets.py; do $(INSTALL_DATA) $$i $(DESTDIR)$(datadir)/bakefile/presets/wx$(WX_RELEASE_NODOT)$${i##wx}; done) + $(DYLIB_RPATH_INSTALL) + $(INSTALL_DIR) $(DESTDIR)$(libdir)/wx/include/$(TOOLCHAIN_FULLNAME)/wx + for f in setup.h $(RCDEFS_H); do \ +@@ -16099,9 +16100,7 @@ + + install-wxconfig: + $(INSTALL_DIR) $(DESTDIR)$(bindir) +- $(INSTALL_DIR) $(DESTDIR)$(libdir)/wx/config +- $(INSTALL_PROGRAM) lib/wx/config/$(TOOLCHAIN_FULLNAME) $(DESTDIR)$(libdir)/wx/config +- (cd $(DESTDIR)$(bindir) && rm -f wx-config && $(LN_S) $(libdir)/wx/config/$(TOOLCHAIN_FULLNAME) wx-config || cp -p $(DESTDIR)$(libdir)/wx/config/$(TOOLCHAIN_FULLNAME) wx-config) ++ $(INSTALL_SCRIPT) lib/wx/config/$(TOOLCHAIN_FULLNAME) $(DESTDIR)$(bindir)/wx$(TOOLCHAIN_NAME)-config + + locale_install: + $(INSTALL_DIR) $(DESTDIR)$(datadir)/locale +@@ -16109,7 +16108,7 @@ + $(INSTALL_DIR) $(DESTDIR)$(datadir)/locale/$$l ; \ + $(INSTALL_DIR) $(DESTDIR)$(datadir)/locale/$$l/LC_MESSAGES ; \ + if test -f $(srcdir)/locale/$$l.mo ; then \ +- $(INSTALL_DATA) $(srcdir)/locale/$$l.mo $(DESTDIR)$(datadir)/locale/$$l/LC_MESSAGES/wxstd.mo ; \ ++ $(INSTALL_DATA) $(srcdir)/locale/$$l.mo $(DESTDIR)$(datadir)/locale/$$l/LC_MESSAGES/wxstd$(WX_RELEASE_NODOT).mo ; \ + fi ; \ + done + Added: head/x11-toolkits/wxgtk30/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/wxgtk30/files/patch-configure Wed Jan 22 13:46:41 2014 (r340709) @@ -0,0 +1,28 @@ +--- configure.orig 2011-12-15 01:42:11.000000000 +0700 ++++ configure 2012-05-15 22:49:14.000000000 +0700 +@@ -27119,6 +27119,7 @@ + + + SEARCH_INCLUDE="\ ++ $X11BASE/include \ + /usr/local/include \ + /usr/local/X11/include \ + /usr/local/include/X11 \ +@@ -42877,7 +42878,7 @@ + fi + ;; + *-*-freebsd*) +- THREAD_OPTS="-kthread lthread $THREAD_OPTS c_r" ++ THREAD_OPTS="$PTHREAD_LIBS" + ;; + *-*-darwin* | *-*-cygwin* ) + THREAD_OPTS="" +@@ -45535,7 +45536,7 @@ + fi + fi + fi +- ++OPTIMISE_CFLAGS= + + if test "x$WXWIN_COMPATIBILITY_2_6" = "xyes"; then + cat >>confdefs.h <<\_ACEOF Added: head/x11-toolkits/wxgtk30/files/patch-src-common-translation.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/wxgtk30/files/patch-src-common-translation.cpp Wed Jan 22 13:46:41 2014 (r340709) @@ -0,0 +1,11 @@ +--- src/common/translation.cpp.orig 2011-02-18 15:12:53.000000000 +0600 ++++ src/common/translation.cpp 2011-02-18 15:15:10.000000000 +0600 +@@ -1302,7 +1302,7 @@ + + bool wxTranslations::AddStdCatalog() + { +- if ( !AddCatalog(wxS("wxstd")) ) ++ if ( !AddCatalog(wxS("wxstd") wxSTRINGIZE(wxMAJOR_VERSION) wxSTRINGIZE(wxMINOR_VERSION)) ) + return false; + + // there may be a catalog with toolkit specific overrides, it is not Added: head/x11-toolkits/wxgtk30/files/patch-utils-wxrc-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/wxgtk30/files/patch-utils-wxrc-Makefile.in Wed Jan 22 13:46:41 2014 (r340709) @@ -0,0 +1,23 @@ +--- utils/wxrc/Makefile.in.orig Thu Nov 30 23:00:32 2006 ++++ utils/wxrc/Makefile.in Thu Nov 30 23:01:25 2006 +@@ -29,6 +29,7 @@ + TOOLKIT = @TOOLKIT@ + TOOLKIT_LOWERCASE = @TOOLKIT_LOWERCASE@ + TOOLKIT_VERSION = @TOOLKIT_VERSION@ ++TOOLCHAIN_NAME = @TOOLCHAIN_NAME@ + EXTRALIBS = @EXTRALIBS@ + EXTRALIBS_XML = @EXTRALIBS_XML@ + EXTRALIBS_GUI = @EXTRALIBS_GUI@ +@@ -114,11 +115,7 @@ + + @COND_USE_XRC_1@install_wxrc: + @COND_USE_XRC_1@ $(INSTALL_DIR) $(DESTDIR)$(bindir) +-@COND_USE_XRC_1@ $(INSTALL_PROGRAM) wxrc$(EXEEXT) $(DESTDIR)$(bindir) +-@COND_USE_XRC_1@ rm -f $(DESTDIR)$(bindir)/wxrc$(EXEEXT) $(DESTDIR)$(bindir)/wxrc-$(WX_RELEASE) +-@COND_USE_XRC_1@ $(INSTALL_PROGRAM) wxrc$(EXEEXT) $(DESTDIR)$(bindir) +-@COND_USE_XRC_1@ mv -f $(DESTDIR)$(bindir)/wxrc$(EXEEXT) $(DESTDIR)$(bindir)/wxrc-$(WX_RELEASE) +-@COND_USE_XRC_1@ (cd $(DESTDIR)$(bindir) && $(LN_S) wxrc-$(WX_RELEASE) wxrc$(EXEEXT)) ++@COND_USE_XRC_1@ $(INSTALL_PROGRAM) wxrc$(EXEEXT) $(DESTDIR)$(bindir)/wxrc-$(TOOLCHAIN_NAME)$(EXEEXT) + + @COND_USE_XRC_1@uninstall_wxrc: + @COND_USE_XRC_1@ rm -f $(DESTDIR)$(bindir)/wxrc$(EXEEXT) Added: head/x11-toolkits/wxgtk30/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/wxgtk30/pkg-descr Wed Jan 22 13:46:41 2014 (r340709) @@ -0,0 +1,4 @@ +wxWidgets (formerly known as wxWindows) is a C++ GUI framework for platform +independent software development. On FreeBSD the Gtk toolkit is used. + +WWW: http://www.wxwidgets.org/ Added: head/x11-toolkits/wxgtk30/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/wxgtk30/pkg-plist Wed Jan 22 13:46:41 2014 (r340709) @@ -0,0 +1,807 @@ +bin/wxgtk2u-3.0-config +bin/wxrc-gtk2u-3.0 +include/wx-3.0/wx/aboutdlg.h +include/wx-3.0/wx/accel.h +include/wx-3.0/wx/access.h +include/wx-3.0/wx/affinematrix2d.h +include/wx-3.0/wx/affinematrix2dbase.h +include/wx-3.0/wx/afterstd.h +include/wx-3.0/wx/anidecod.h +include/wx-3.0/wx/animate.h +include/wx-3.0/wx/animdecod.h +include/wx-3.0/wx/any.h +include/wx-3.0/wx/anybutton.h +include/wx-3.0/wx/anystr.h +include/wx-3.0/wx/app.h +include/wx-3.0/wx/apptrait.h +include/wx-3.0/wx/archive.h +include/wx-3.0/wx/arrimpl.cpp +include/wx-3.0/wx/arrstr.h +include/wx-3.0/wx/artprov.h +include/wx-3.0/wx/atomic.h +include/wx-3.0/wx/aui/aui.h +include/wx-3.0/wx/aui/auibar.h +include/wx-3.0/wx/aui/auibook.h +include/wx-3.0/wx/aui/dockart.h +include/wx-3.0/wx/aui/floatpane.h +include/wx-3.0/wx/aui/framemanager.h +include/wx-3.0/wx/aui/tabart.h +include/wx-3.0/wx/aui/tabartgtk.h +include/wx-3.0/wx/aui/tabmdi.h +include/wx-3.0/wx/bannerwindow.h +include/wx-3.0/wx/base64.h +include/wx-3.0/wx/beforestd.h +include/wx-3.0/wx/bitmap.h +include/wx-3.0/wx/bmpbuttn.h +include/wx-3.0/wx/bmpcbox.h +include/wx-3.0/wx/bookctrl.h +include/wx-3.0/wx/brush.h +include/wx-3.0/wx/buffer.h +include/wx-3.0/wx/build.h +include/wx-3.0/wx/busyinfo.h +include/wx-3.0/wx/button.h +include/wx-3.0/wx/calctrl.h +include/wx-3.0/wx/caret.h +include/wx-3.0/wx/chartype.h +include/wx-3.0/wx/checkbox.h +include/wx-3.0/wx/checkeddelete.h +include/wx-3.0/wx/checklst.h +include/wx-3.0/wx/chkconf.h +include/wx-3.0/wx/choicdlg.h +include/wx-3.0/wx/choice.h +include/wx-3.0/wx/choicebk.h +include/wx-3.0/wx/clipbrd.h +include/wx-3.0/wx/clntdata.h +include/wx-3.0/wx/clrpicker.h +include/wx-3.0/wx/cmdargs.h +include/wx-3.0/wx/cmdline.h +include/wx-3.0/wx/cmdproc.h +include/wx-3.0/wx/cmndata.h +include/wx-3.0/wx/collpane.h +include/wx-3.0/wx/colordlg.h +include/wx-3.0/wx/colour.h +include/wx-3.0/wx/colourdata.h +include/wx-3.0/wx/combo.h +include/wx-3.0/wx/combobox.h +include/wx-3.0/wx/commandlinkbutton.h +include/wx-3.0/wx/compiler.h +include/wx-3.0/wx/compositewin.h +include/wx-3.0/wx/confbase.h +include/wx-3.0/wx/config.h +include/wx-3.0/wx/containr.h +include/wx-3.0/wx/control.h +include/wx-3.0/wx/convauto.h +include/wx-3.0/wx/cpp.h +include/wx-3.0/wx/crt.h +include/wx-3.0/wx/cshelp.h +include/wx-3.0/wx/ctrlsub.h +include/wx-3.0/wx/cursor.h +include/wx-3.0/wx/custombgwin.h +include/wx-3.0/wx/dataobj.h +include/wx-3.0/wx/dataview.h +include/wx-3.0/wx/datectrl.h +include/wx-3.0/wx/dateevt.h +include/wx-3.0/wx/datetime.h +include/wx-3.0/wx/datetimectrl.h +include/wx-3.0/wx/datstrm.h +include/wx-3.0/wx/dc.h +include/wx-3.0/wx/dcbuffer.h +include/wx-3.0/wx/dcclient.h +include/wx-3.0/wx/dcgraph.h +include/wx-3.0/wx/dcmemory.h +include/wx-3.0/wx/dcmirror.h +include/wx-3.0/wx/dcprint.h +include/wx-3.0/wx/dcps.h +include/wx-3.0/wx/dcscreen.h +include/wx-3.0/wx/dcsvg.h +include/wx-3.0/wx/dde.h +include/wx-3.0/wx/debug.h +include/wx-3.0/wx/debugrpt.h +include/wx-3.0/wx/defs.h +include/wx-3.0/wx/dialog.h +include/wx-3.0/wx/dialup.h +include/wx-3.0/wx/dir.h +include/wx-3.0/wx/dirctrl.h +include/wx-3.0/wx/dirdlg.h +include/wx-3.0/wx/display.h +include/wx-3.0/wx/display_impl.h +include/wx-3.0/wx/dlimpexp.h +include/wx-3.0/wx/dlist.h +include/wx-3.0/wx/dnd.h +include/wx-3.0/wx/docmdi.h +include/wx-3.0/wx/docview.h +include/wx-3.0/wx/dragimag.h +include/wx-3.0/wx/dvrenderers.h +include/wx-3.0/wx/dynarray.h +include/wx-3.0/wx/dynlib.h +include/wx-3.0/wx/dynload.h +include/wx-3.0/wx/editlbox.h +include/wx-3.0/wx/effects.h +include/wx-3.0/wx/encconv.h +include/wx-3.0/wx/encinfo.h +include/wx-3.0/wx/event.h +include/wx-3.0/wx/eventfilter.h +include/wx-3.0/wx/evtloop.h +include/wx-3.0/wx/evtloopsrc.h +include/wx-3.0/wx/except.h +include/wx-3.0/wx/fdrepdlg.h +include/wx-3.0/wx/features.h +include/wx-3.0/wx/ffile.h +include/wx-3.0/wx/file.h +include/wx-3.0/wx/fileconf.h +include/wx-3.0/wx/filectrl.h +include/wx-3.0/wx/filedlg.h +include/wx-3.0/wx/filefn.h +include/wx-3.0/wx/filehistory.h +include/wx-3.0/wx/filename.h +include/wx-3.0/wx/filepicker.h +include/wx-3.0/wx/filesys.h +include/wx-3.0/wx/flags.h +include/wx-3.0/wx/fmappriv.h +include/wx-3.0/wx/font.h +include/wx-3.0/wx/fontdata.h +include/wx-3.0/wx/fontdlg.h +include/wx-3.0/wx/fontenc.h +include/wx-3.0/wx/fontenum.h +include/wx-3.0/wx/fontmap.h +include/wx-3.0/wx/fontpicker.h +include/wx-3.0/wx/fontutil.h +include/wx-3.0/wx/frame.h +include/wx-3.0/wx/fs_arc.h +include/wx-3.0/wx/fs_filter.h +include/wx-3.0/wx/fs_inet.h +include/wx-3.0/wx/fs_mem.h +include/wx-3.0/wx/fs_zip.h +include/wx-3.0/wx/fswatcher.h +include/wx-3.0/wx/gauge.h +include/wx-3.0/wx/gbsizer.h +include/wx-3.0/wx/gdicmn.h +include/wx-3.0/wx/gdiobj.h +include/wx-3.0/wx/generic/aboutdlgg.h +include/wx-3.0/wx/generic/accel.h +include/wx-3.0/wx/generic/bmpcbox.h +include/wx-3.0/wx/generic/busyinfo.h +include/wx-3.0/wx/generic/buttonbar.h +include/wx-3.0/wx/generic/calctrlg.h +include/wx-3.0/wx/generic/caret.h +include/wx-3.0/wx/generic/choicdgg.h +include/wx-3.0/wx/generic/colrdlgg.h +include/wx-3.0/wx/generic/combo.h +include/wx-3.0/wx/generic/custombgwin.h +include/wx-3.0/wx/generic/dataview.h +include/wx-3.0/wx/generic/datectrl.h +include/wx-3.0/wx/generic/dcpsg.h +include/wx-3.0/wx/generic/dirctrlg.h +include/wx-3.0/wx/generic/dragimgg.h +include/wx-3.0/wx/generic/dvrenderer.h +include/wx-3.0/wx/generic/dvrenderers.h +include/wx-3.0/wx/generic/fdrepdlg.h +include/wx-3.0/wx/generic/filectrlg.h +include/wx-3.0/wx/generic/filepickerg.h +include/wx-3.0/wx/generic/fontdlgg.h +include/wx-3.0/wx/generic/fswatcher.h +include/wx-3.0/wx/generic/grid.h +include/wx-3.0/wx/generic/gridctrl.h +include/wx-3.0/wx/generic/grideditors.h +include/wx-3.0/wx/generic/gridsel.h +include/wx-3.0/wx/generic/headerctrlg.h +include/wx-3.0/wx/generic/helpext.h +include/wx-3.0/wx/generic/hyperlink.h +include/wx-3.0/wx/generic/icon.h +include/wx-3.0/wx/generic/imaglist.h +include/wx-3.0/wx/generic/infobar.h +include/wx-3.0/wx/generic/laywin.h +include/wx-3.0/wx/generic/listctrl.h +include/wx-3.0/wx/generic/logg.h +include/wx-3.0/wx/generic/msgdlgg.h +include/wx-3.0/wx/generic/notebook.h +include/wx-3.0/wx/generic/notifmsg.h +include/wx-3.0/wx/generic/numdlgg.h +include/wx-3.0/wx/generic/paletteg.h +include/wx-3.0/wx/generic/panelg.h +include/wx-3.0/wx/generic/printps.h +include/wx-3.0/wx/generic/prntdlgg.h +include/wx-3.0/wx/generic/progdlgg.h +include/wx-3.0/wx/generic/propdlg.h +include/wx-3.0/wx/generic/richmsgdlgg.h +include/wx-3.0/wx/generic/sashwin.h +include/wx-3.0/wx/generic/scrolwin.h +include/wx-3.0/wx/generic/spinctlg.h +include/wx-3.0/wx/generic/splash.h +include/wx-3.0/wx/generic/splitter.h +include/wx-3.0/wx/generic/srchctlg.h +include/wx-3.0/wx/generic/statbmpg.h +include/wx-3.0/wx/generic/stattextg.h +include/wx-3.0/wx/generic/statusbr.h +include/wx-3.0/wx/generic/textdlgg.h +include/wx-3.0/wx/generic/timectrl.h +include/wx-3.0/wx/generic/treectlg.h +include/wx-3.0/wx/generic/wizard.h +include/wx-3.0/wx/geometry.h +include/wx-3.0/wx/gifdecod.h +include/wx-3.0/wx/glcanvas.h +include/wx-3.0/wx/graphics.h +include/wx-3.0/wx/grid.h +include/wx-3.0/wx/gtk/accel.h +include/wx-3.0/wx/gtk/animate.h +include/wx-3.0/wx/gtk/anybutton.h +include/wx-3.0/wx/gtk/app.h +include/wx-3.0/wx/gtk/assertdlg_gtk.h +include/wx-3.0/wx/gtk/bitmap.h +include/wx-3.0/wx/gtk/bmpbuttn.h +include/wx-3.0/wx/gtk/bmpcbox.h +include/wx-3.0/wx/gtk/brush.h +include/wx-3.0/wx/gtk/button.h +include/wx-3.0/wx/gtk/calctrl.h +include/wx-3.0/wx/gtk/checkbox.h +include/wx-3.0/wx/gtk/checklst.h +include/wx-3.0/wx/gtk/chkconf.h +include/wx-3.0/wx/gtk/choice.h +include/wx-3.0/wx/gtk/clipbrd.h +include/wx-3.0/wx/gtk/clrpicker.h +include/wx-3.0/wx/gtk/collpane.h +include/wx-3.0/wx/gtk/colordlg.h +include/wx-3.0/wx/gtk/colour.h +include/wx-3.0/wx/gtk/combobox.h +include/wx-3.0/wx/gtk/control.h +include/wx-3.0/wx/gtk/cursor.h +include/wx-3.0/wx/gtk/dataform.h +include/wx-3.0/wx/gtk/dataobj.h +include/wx-3.0/wx/gtk/dataobj2.h +include/wx-3.0/wx/gtk/dataview.h +include/wx-3.0/wx/gtk/dialog.h +include/wx-3.0/wx/gtk/dirdlg.h +include/wx-3.0/wx/gtk/dnd.h +include/wx-3.0/wx/gtk/dvrenderer.h +include/wx-3.0/wx/gtk/dvrenderers.h +include/wx-3.0/wx/gtk/evtloop.h +include/wx-3.0/wx/gtk/evtloopsrc.h +include/wx-3.0/wx/gtk/filectrl.h +include/wx-3.0/wx/gtk/filedlg.h +include/wx-3.0/wx/gtk/filehistory.h +include/wx-3.0/wx/gtk/filepicker.h +include/wx-3.0/wx/gtk/font.h +include/wx-3.0/wx/gtk/fontdlg.h +include/wx-3.0/wx/gtk/fontpicker.h +include/wx-3.0/wx/gtk/frame.h +include/wx-3.0/wx/gtk/gauge.h +include/wx-3.0/wx/gtk/glcanvas.h +include/wx-3.0/wx/gtk/gnome/gvfs.h +include/wx-3.0/wx/gtk/hildon/notifmsg.h +include/wx-3.0/wx/gtk/hyperlink.h +include/wx-3.0/wx/gtk/infobar.h +include/wx-3.0/wx/gtk/listbox.h +include/wx-3.0/wx/gtk/mdi.h +include/wx-3.0/wx/gtk/menu.h +include/wx-3.0/wx/gtk/menuitem.h +include/wx-3.0/wx/gtk/minifram.h +include/wx-3.0/wx/gtk/msgdlg.h +include/wx-3.0/wx/gtk/nonownedwnd.h +include/wx-3.0/wx/gtk/notebook.h +include/wx-3.0/wx/gtk/notifmsg.h +include/wx-3.0/wx/gtk/pen.h +include/wx-3.0/wx/gtk/popupwin.h +include/wx-3.0/wx/gtk/print.h +include/wx-3.0/wx/gtk/radiobox.h +include/wx-3.0/wx/gtk/radiobut.h +include/wx-3.0/wx/gtk/region.h +include/wx-3.0/wx/gtk/scrolbar.h +include/wx-3.0/wx/gtk/scrolwin.h +include/wx-3.0/wx/gtk/slider.h +include/wx-3.0/wx/gtk/spinbutt.h +include/wx-3.0/wx/gtk/spinctrl.h +include/wx-3.0/wx/gtk/statbmp.h +include/wx-3.0/wx/gtk/statbox.h +include/wx-3.0/wx/gtk/statline.h +include/wx-3.0/wx/gtk/stattext.h +include/wx-3.0/wx/gtk/taskbar.h +include/wx-3.0/wx/gtk/textctrl.h +include/wx-3.0/wx/gtk/textentry.h +include/wx-3.0/wx/gtk/tglbtn.h +include/wx-3.0/wx/gtk/toolbar.h +include/wx-3.0/wx/gtk/tooltip.h +include/wx-3.0/wx/gtk/toplevel.h +include/wx-3.0/wx/gtk/webview_webkit.h +include/wx-3.0/wx/gtk/webviewhistoryitem_webkit.h +include/wx-3.0/wx/gtk/window.h +include/wx-3.0/wx/hash.h +include/wx-3.0/wx/hashmap.h +include/wx-3.0/wx/hashset.h +include/wx-3.0/wx/headercol.h +include/wx-3.0/wx/headerctrl.h +include/wx-3.0/wx/help.h +include/wx-3.0/wx/helpbase.h +include/wx-3.0/wx/helphtml.h +include/wx-3.0/wx/helpwin.h +include/wx-3.0/wx/html/forcelnk.h +include/wx-3.0/wx/html/helpctrl.h +include/wx-3.0/wx/html/helpdata.h +include/wx-3.0/wx/html/helpdlg.h +include/wx-3.0/wx/html/helpfrm.h +include/wx-3.0/wx/html/helpwnd.h +include/wx-3.0/wx/html/htmlcell.h +include/wx-3.0/wx/html/htmldefs.h +include/wx-3.0/wx/html/htmlfilt.h +include/wx-3.0/wx/html/htmlpars.h +include/wx-3.0/wx/html/htmlproc.h +include/wx-3.0/wx/html/htmltag.h +include/wx-3.0/wx/html/htmlwin.h +include/wx-3.0/wx/html/htmprint.h +include/wx-3.0/wx/html/m_templ.h +include/wx-3.0/wx/html/styleparams.h +include/wx-3.0/wx/html/winpars.h +include/wx-3.0/wx/htmllbox.h +include/wx-3.0/wx/hyperlink.h +include/wx-3.0/wx/icon.h +include/wx-3.0/wx/iconbndl.h +include/wx-3.0/wx/iconloc.h +include/wx-3.0/wx/imagbmp.h +include/wx-3.0/wx/image.h +include/wx-3.0/wx/imaggif.h +include/wx-3.0/wx/imagiff.h +include/wx-3.0/wx/imagjpeg.h +include/wx-3.0/wx/imaglist.h +include/wx-3.0/wx/imagpcx.h +include/wx-3.0/wx/imagpng.h +include/wx-3.0/wx/imagpnm.h +include/wx-3.0/wx/imagtga.h +include/wx-3.0/wx/imagtiff.h +include/wx-3.0/wx/imagxpm.h +include/wx-3.0/wx/infobar.h +include/wx-3.0/wx/init.h +include/wx-3.0/wx/intl.h +include/wx-3.0/wx/iosfwrap.h +include/wx-3.0/wx/ioswrap.h +include/wx-3.0/wx/ipc.h +include/wx-3.0/wx/ipcbase.h +include/wx-3.0/wx/itemid.h +include/wx-3.0/wx/joystick.h +include/wx-3.0/wx/kbdstate.h +include/wx-3.0/wx/language.h +include/wx-3.0/wx/layout.h +include/wx-3.0/wx/laywin.h +include/wx-3.0/wx/link.h +include/wx-3.0/wx/list.h +include/wx-3.0/wx/listbase.h +include/wx-3.0/wx/listbook.h +include/wx-3.0/wx/listbox.h +include/wx-3.0/wx/listctrl.h +include/wx-3.0/wx/listimpl.cpp +include/wx-3.0/wx/log.h +include/wx-3.0/wx/longlong.h +include/wx-3.0/wx/math.h +include/wx-3.0/wx/matrix.h +include/wx-3.0/wx/mdi.h +include/wx-3.0/wx/mediactrl.h +include/wx-3.0/wx/memconf.h +include/wx-3.0/wx/memory.h +include/wx-3.0/wx/memtext.h +include/wx-3.0/wx/menu.h +include/wx-3.0/wx/menuitem.h +include/wx-3.0/wx/meta/convertible.h +include/wx-3.0/wx/meta/if.h +include/wx-3.0/wx/meta/implicitconversion.h +include/wx-3.0/wx/meta/int2type.h +include/wx-3.0/wx/meta/movable.h +include/wx-3.0/wx/meta/pod.h +include/wx-3.0/wx/meta/removeref.h +include/wx-3.0/wx/metafile.h +include/wx-3.0/wx/mimetype.h +include/wx-3.0/wx/minifram.h +include/wx-3.0/wx/modalhook.h +include/wx-3.0/wx/module.h +include/wx-3.0/wx/mousemanager.h +include/wx-3.0/wx/mousestate.h +include/wx-3.0/wx/msgdlg.h +include/wx-3.0/wx/msgout.h +include/wx-3.0/wx/msgqueue.h +include/wx-3.0/wx/mstream.h +include/wx-3.0/wx/nativewin.h +include/wx-3.0/wx/nonownedwnd.h +include/wx-3.0/wx/notebook.h +include/wx-3.0/wx/notifmsg.h +include/wx-3.0/wx/numdlg.h +include/wx-3.0/wx/numformatter.h +include/wx-3.0/wx/object.h +include/wx-3.0/wx/odcombo.h +include/wx-3.0/wx/overlay.h +include/wx-3.0/wx/ownerdrw.h +include/wx-3.0/wx/palette.h +include/wx-3.0/wx/panel.h +include/wx-3.0/wx/paper.h +include/wx-3.0/wx/pen.h +include/wx-3.0/wx/persist.h +include/wx-3.0/wx/persist/bookctrl.h +include/wx-3.0/wx/persist/splitter.h +include/wx-3.0/wx/persist/toplevel.h +include/wx-3.0/wx/persist/treebook.h +include/wx-3.0/wx/persist/window.h +include/wx-3.0/wx/pickerbase.h +include/wx-3.0/wx/platform.h +include/wx-3.0/wx/platinfo.h +include/wx-3.0/wx/popupwin.h +include/wx-3.0/wx/position.h +include/wx-3.0/wx/power.h +include/wx-3.0/wx/print.h +include/wx-3.0/wx/printdlg.h +include/wx-3.0/wx/prntbase.h +include/wx-3.0/wx/process.h +include/wx-3.0/wx/progdlg.h +include/wx-3.0/wx/propdlg.h +include/wx-3.0/wx/propgrid/advprops.h +include/wx-3.0/wx/propgrid/editors.h +include/wx-3.0/wx/propgrid/manager.h +include/wx-3.0/wx/propgrid/property.h +include/wx-3.0/wx/propgrid/propgrid.h +include/wx-3.0/wx/propgrid/propgriddefs.h +include/wx-3.0/wx/propgrid/propgridiface.h +include/wx-3.0/wx/propgrid/propgridpagestate.h +include/wx-3.0/wx/propgrid/props.h +include/wx-3.0/wx/protocol/file.h +include/wx-3.0/wx/protocol/ftp.h +include/wx-3.0/wx/protocol/http.h +include/wx-3.0/wx/protocol/log.h +include/wx-3.0/wx/protocol/protocol.h +include/wx-3.0/wx/ptr_scpd.h +include/wx-3.0/wx/ptr_shrd.h +include/wx-3.0/wx/quantize.h +include/wx-3.0/wx/radiobox.h +include/wx-3.0/wx/radiobut.h +include/wx-3.0/wx/range.h +include/wx-3.0/wx/rawbmp.h +include/wx-3.0/wx/rearrangectrl.h +include/wx-3.0/wx/recguard.h +include/wx-3.0/wx/regex.h +include/wx-3.0/wx/region.h +include/wx-3.0/wx/renderer.h +include/wx-3.0/wx/ribbon/art.h +include/wx-3.0/wx/ribbon/art_internal.h +include/wx-3.0/wx/ribbon/bar.h +include/wx-3.0/wx/ribbon/buttonbar.h +include/wx-3.0/wx/ribbon/control.h +include/wx-3.0/wx/ribbon/gallery.h +include/wx-3.0/wx/ribbon/page.h +include/wx-3.0/wx/ribbon/panel.h +include/wx-3.0/wx/ribbon/toolbar.h +include/wx-3.0/wx/richmsgdlg.h +include/wx-3.0/wx/richtext/richtextbackgroundpage.h +include/wx-3.0/wx/richtext/richtextborderspage.h +include/wx-3.0/wx/richtext/richtextbuffer.h +include/wx-3.0/wx/richtext/richtextbulletspage.h +include/wx-3.0/wx/richtext/richtextctrl.h +include/wx-3.0/wx/richtext/richtextdialogpage.h +include/wx-3.0/wx/richtext/richtextfontpage.h +include/wx-3.0/wx/richtext/richtextformatdlg.h +include/wx-3.0/wx/richtext/richtexthtml.h +include/wx-3.0/wx/richtext/richtextimagedlg.h +include/wx-3.0/wx/richtext/richtextindentspage.h +include/wx-3.0/wx/richtext/richtextliststylepage.h +include/wx-3.0/wx/richtext/richtextmarginspage.h +include/wx-3.0/wx/richtext/richtextprint.h +include/wx-3.0/wx/richtext/richtextsizepage.h +include/wx-3.0/wx/richtext/richtextstyledlg.h +include/wx-3.0/wx/richtext/richtextstylepage.h +include/wx-3.0/wx/richtext/richtextstyles.h +include/wx-3.0/wx/richtext/richtextsymboldlg.h +include/wx-3.0/wx/richtext/richtexttabspage.h +include/wx-3.0/wx/richtext/richtextuicustomization.h +include/wx-3.0/wx/richtext/richtextxml.h +include/wx-3.0/wx/richtooltip.h +include/wx-3.0/wx/rtti.h +include/wx-3.0/wx/sashwin.h +include/wx-3.0/wx/sckaddr.h +include/wx-3.0/wx/sckipc.h +include/wx-3.0/wx/sckstrm.h +include/wx-3.0/wx/scopedarray.h +include/wx-3.0/wx/scopedptr.h +include/wx-3.0/wx/scopeguard.h +include/wx-3.0/wx/scrolbar.h +include/wx-3.0/wx/scrolwin.h +include/wx-3.0/wx/selstore.h +include/wx-3.0/wx/settings.h +include/wx-3.0/wx/sharedptr.h +include/wx-3.0/wx/simplebook.h +include/wx-3.0/wx/sizer.h +include/wx-3.0/wx/slider.h +include/wx-3.0/wx/snglinst.h +include/wx-3.0/wx/socket.h +include/wx-3.0/wx/sound.h +include/wx-3.0/wx/spinbutt.h +include/wx-3.0/wx/spinctrl.h +include/wx-3.0/wx/splash.h +include/wx-3.0/wx/splitter.h +include/wx-3.0/wx/srchctrl.h +include/wx-3.0/wx/sstream.h +include/wx-3.0/wx/stack.h +include/wx-3.0/wx/stackwalk.h +include/wx-3.0/wx/statbmp.h +include/wx-3.0/wx/statbox.h +include/wx-3.0/wx/statline.h +include/wx-3.0/wx/stattext.h +include/wx-3.0/wx/statusbr.h +include/wx-3.0/wx/stc/stc.h +include/wx-3.0/wx/stdpaths.h +include/wx-3.0/wx/stdstream.h +include/wx-3.0/wx/stockitem.h +include/wx-3.0/wx/stopwatch.h +include/wx-3.0/wx/strconv.h +include/wx-3.0/wx/stream.h +include/wx-3.0/wx/string.h +include/wx-3.0/wx/stringimpl.h +include/wx-3.0/wx/stringops.h +include/wx-3.0/wx/strvararg.h +include/wx-3.0/wx/sysopt.h +include/wx-3.0/wx/tarstrm.h +include/wx-3.0/wx/taskbar.h +include/wx-3.0/wx/tbarbase.h +include/wx-3.0/wx/textbuf.h +include/wx-3.0/wx/textcompleter.h +include/wx-3.0/wx/textctrl.h +include/wx-3.0/wx/textdlg.h +include/wx-3.0/wx/textentry.h +include/wx-3.0/wx/textfile.h +include/wx-3.0/wx/textwrapper.h +include/wx-3.0/wx/tglbtn.h +include/wx-3.0/wx/thread.h +include/wx-3.0/wx/thrimpl.cpp +include/wx-3.0/wx/time.h +include/wx-3.0/wx/timectrl.h +include/wx-3.0/wx/timer.h +include/wx-3.0/wx/tipdlg.h +include/wx-3.0/wx/tipwin.h +include/wx-3.0/wx/tls.h +include/wx-3.0/wx/tokenzr.h +include/wx-3.0/wx/toolbar.h +include/wx-3.0/wx/toolbook.h +include/wx-3.0/wx/tooltip.h +include/wx-3.0/wx/toplevel.h +include/wx-3.0/wx/tracker.h +include/wx-3.0/wx/translation.h +include/wx-3.0/wx/treebase.h +include/wx-3.0/wx/treebook.h +include/wx-3.0/wx/treectrl.h +include/wx-3.0/wx/treelist.h +include/wx-3.0/wx/txtstrm.h +include/wx-3.0/wx/typeinfo.h +include/wx-3.0/wx/types.h +include/wx-3.0/wx/uiaction.h +include/wx-3.0/wx/unichar.h +include/wx-3.0/wx/unix/app.h +include/wx-3.0/wx/unix/apptbase.h +include/wx-3.0/wx/unix/apptrait.h +include/wx-3.0/wx/unix/chkconf.h +include/wx-3.0/wx/unix/evtloop.h +include/wx-3.0/wx/unix/evtloopsrc.h +include/wx-3.0/wx/unix/execute.h +include/wx-3.0/wx/unix/fontutil.h +include/wx-3.0/wx/unix/fswatcher_inotify.h +include/wx-3.0/wx/unix/fswatcher_kqueue.h +include/wx-3.0/wx/unix/glx11.h +include/wx-3.0/wx/unix/joystick.h +include/wx-3.0/wx/unix/mimetype.h +include/wx-3.0/wx/unix/pipe.h +include/wx-3.0/wx/unix/sound.h +include/wx-3.0/wx/unix/stackwalk.h +include/wx-3.0/wx/unix/stdpaths.h +include/wx-3.0/wx/unix/taskbarx11.h +include/wx-3.0/wx/unix/tls.h +include/wx-3.0/wx/unix/utilsx11.h +include/wx-3.0/wx/uri.h +include/wx-3.0/wx/url.h +include/wx-3.0/wx/ustring.h +include/wx-3.0/wx/utils.h +include/wx-3.0/wx/valgen.h +include/wx-3.0/wx/validate.h +include/wx-3.0/wx/valnum.h +include/wx-3.0/wx/valtext.h +include/wx-3.0/wx/variant.h +include/wx-3.0/wx/vector.h +include/wx-3.0/wx/version.h +include/wx-3.0/wx/versioninfo.h +include/wx-3.0/wx/vidmode.h +include/wx-3.0/wx/vlbox.h +include/wx-3.0/wx/vms_x_fix.h +include/wx-3.0/wx/volume.h +include/wx-3.0/wx/vscroll.h +include/wx-3.0/wx/weakref.h +include/wx-3.0/wx/webview.h +include/wx-3.0/wx/webviewarchivehandler.h +include/wx-3.0/wx/webviewfshandler.h +include/wx-3.0/wx/wfstream.h +include/wx-3.0/wx/window.h +include/wx-3.0/wx/windowid.h +include/wx-3.0/wx/windowptr.h +include/wx-3.0/wx/withimages.h +include/wx-3.0/wx/wizard.h +include/wx-3.0/wx/wrapsizer.h +include/wx-3.0/wx/wupdlock.h +include/wx-3.0/wx/wx.h +include/wx-3.0/wx/wxchar.h +include/wx-3.0/wx/wxcrt.h +include/wx-3.0/wx/wxcrtbase.h +include/wx-3.0/wx/wxcrtvararg.h +include/wx-3.0/wx/wxhtml.h +include/wx-3.0/wx/wxprec.h +include/wx-3.0/wx/xlocale.h +include/wx-3.0/wx/xml/xml.h +include/wx-3.0/wx/xpmdecod.h +include/wx-3.0/wx/xpmhand.h +include/wx-3.0/wx/xrc/xh_all.h +include/wx-3.0/wx/xrc/xh_animatctrl.h +include/wx-3.0/wx/xrc/xh_auinotbk.h +include/wx-3.0/wx/xrc/xh_bannerwindow.h +include/wx-3.0/wx/xrc/xh_bmp.h +include/wx-3.0/wx/xrc/xh_bmpbt.h +include/wx-3.0/wx/xrc/xh_bmpcbox.h +include/wx-3.0/wx/xrc/xh_bttn.h +include/wx-3.0/wx/xrc/xh_cald.h +include/wx-3.0/wx/xrc/xh_chckb.h +include/wx-3.0/wx/xrc/xh_chckl.h +include/wx-3.0/wx/xrc/xh_choic.h +include/wx-3.0/wx/xrc/xh_choicbk.h +include/wx-3.0/wx/xrc/xh_clrpicker.h +include/wx-3.0/wx/xrc/xh_cmdlinkbn.h +include/wx-3.0/wx/xrc/xh_collpane.h +include/wx-3.0/wx/xrc/xh_combo.h +include/wx-3.0/wx/xrc/xh_comboctrl.h +include/wx-3.0/wx/xrc/xh_datectrl.h +include/wx-3.0/wx/xrc/xh_dirpicker.h +include/wx-3.0/wx/xrc/xh_dlg.h +include/wx-3.0/wx/xrc/xh_editlbox.h +include/wx-3.0/wx/xrc/xh_filectrl.h +include/wx-3.0/wx/xrc/xh_filepicker.h +include/wx-3.0/wx/xrc/xh_fontpicker.h +include/wx-3.0/wx/xrc/xh_frame.h +include/wx-3.0/wx/xrc/xh_gauge.h +include/wx-3.0/wx/xrc/xh_gdctl.h +include/wx-3.0/wx/xrc/xh_grid.h +include/wx-3.0/wx/xrc/xh_html.h +include/wx-3.0/wx/xrc/xh_htmllbox.h +include/wx-3.0/wx/xrc/xh_hyperlink.h +include/wx-3.0/wx/xrc/xh_listb.h +include/wx-3.0/wx/xrc/xh_listbk.h +include/wx-3.0/wx/xrc/xh_listc.h +include/wx-3.0/wx/xrc/xh_mdi.h +include/wx-3.0/wx/xrc/xh_menu.h +include/wx-3.0/wx/xrc/xh_notbk.h +include/wx-3.0/wx/xrc/xh_odcombo.h +include/wx-3.0/wx/xrc/xh_panel.h +include/wx-3.0/wx/xrc/xh_propdlg.h +include/wx-3.0/wx/xrc/xh_radbt.h +include/wx-3.0/wx/xrc/xh_radbx.h +include/wx-3.0/wx/xrc/xh_ribbon.h +include/wx-3.0/wx/xrc/xh_richtext.h +include/wx-3.0/wx/xrc/xh_scrol.h +include/wx-3.0/wx/xrc/xh_scwin.h +include/wx-3.0/wx/xrc/xh_sizer.h +include/wx-3.0/wx/xrc/xh_slidr.h +include/wx-3.0/wx/xrc/xh_spin.h +include/wx-3.0/wx/xrc/xh_split.h +include/wx-3.0/wx/xrc/xh_srchctrl.h +include/wx-3.0/wx/xrc/xh_statbar.h +include/wx-3.0/wx/xrc/xh_stbmp.h +include/wx-3.0/wx/xrc/xh_stbox.h +include/wx-3.0/wx/xrc/xh_stlin.h +include/wx-3.0/wx/xrc/xh_sttxt.h +include/wx-3.0/wx/xrc/xh_text.h +include/wx-3.0/wx/xrc/xh_tglbtn.h +include/wx-3.0/wx/xrc/xh_timectrl.h +include/wx-3.0/wx/xrc/xh_toolb.h +include/wx-3.0/wx/xrc/xh_toolbk.h +include/wx-3.0/wx/xrc/xh_tree.h +include/wx-3.0/wx/xrc/xh_treebk.h +include/wx-3.0/wx/xrc/xh_unkwn.h +include/wx-3.0/wx/xrc/xh_wizrd.h +include/wx-3.0/wx/xrc/xmlres.h +include/wx-3.0/wx/xrc/xmlreshandler.h +include/wx-3.0/wx/xti.h +include/wx-3.0/wx/xti2.h +include/wx-3.0/wx/xtictor.h +include/wx-3.0/wx/xtihandler.h +include/wx-3.0/wx/xtiprop.h +include/wx-3.0/wx/xtistrm.h +include/wx-3.0/wx/xtitypes.h +include/wx-3.0/wx/xtixml.h +include/wx-3.0/wx/zipstrm.h +include/wx-3.0/wx/zstream.h +lib/libwx_baseu-3.0.so +lib/libwx_baseu-3.0.so.0 +lib/libwx_baseu-3.0.so.0.0.0 +lib/libwx_baseu_net-3.0.so +lib/libwx_baseu_net-3.0.so.0 +lib/libwx_baseu_net-3.0.so.0.0.0 +lib/libwx_baseu_xml-3.0.so +lib/libwx_baseu_xml-3.0.so.0 +lib/libwx_baseu_xml-3.0.so.0.0.0 +lib/libwx_gtk2u_adv-3.0.so +lib/libwx_gtk2u_adv-3.0.so.0 +lib/libwx_gtk2u_adv-3.0.so.0.0.0 +lib/libwx_gtk2u_aui-3.0.so +lib/libwx_gtk2u_aui-3.0.so.0 +lib/libwx_gtk2u_aui-3.0.so.0.0.0 +lib/libwx_gtk2u_core-3.0.so +lib/libwx_gtk2u_core-3.0.so.0 +lib/libwx_gtk2u_core-3.0.so.0.0.0 +lib/libwx_gtk2u_gl-3.0.so +lib/libwx_gtk2u_gl-3.0.so.0 +lib/libwx_gtk2u_gl-3.0.so.0.0.0 +lib/libwx_gtk2u_html-3.0.so +lib/libwx_gtk2u_html-3.0.so.0 +lib/libwx_gtk2u_html-3.0.so.0.0.0 +%%GSTREAMER%%lib/libwx_gtk2u_media-3.0.so +%%GSTREAMER%%lib/libwx_gtk2u_media-3.0.so.0 +%%GSTREAMER%%lib/libwx_gtk2u_media-3.0.so.0.0.0 +lib/libwx_gtk2u_propgrid-3.0.so +lib/libwx_gtk2u_propgrid-3.0.so.0 +lib/libwx_gtk2u_propgrid-3.0.so.0.0.0 +lib/libwx_gtk2u_qa-3.0.so +lib/libwx_gtk2u_qa-3.0.so.0 +lib/libwx_gtk2u_qa-3.0.so.0.0.0 +lib/libwx_gtk2u_ribbon-3.0.so +lib/libwx_gtk2u_ribbon-3.0.so.0 +lib/libwx_gtk2u_ribbon-3.0.so.0.0.0 +lib/libwx_gtk2u_richtext-3.0.so +lib/libwx_gtk2u_richtext-3.0.so.0 +lib/libwx_gtk2u_richtext-3.0.so.0.0.0 +lib/libwx_gtk2u_stc-3.0.so +lib/libwx_gtk2u_stc-3.0.so.0 +lib/libwx_gtk2u_stc-3.0.so.0.0.0 +lib/libwx_gtk2u_webview-3.0.so +lib/libwx_gtk2u_webview-3.0.so.0 +lib/libwx_gtk2u_webview-3.0.so.0.0.0 +lib/libwx_gtk2u_xrc-3.0.so +lib/libwx_gtk2u_xrc-3.0.so.0 +lib/libwx_gtk2u_xrc-3.0.so.0.0.0 +lib/wx/include/gtk2-unicode-3.0/wx/setup.h +%%NLS%%share/locale/ca/LC_MESSAGES/wxstd30.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wxstd30.mo +%%NLS%%share/locale/da/LC_MESSAGES/wxstd30.mo +%%NLS%%share/locale/de/LC_MESSAGES/wxstd30.mo +%%NLS%%share/locale/el/LC_MESSAGES/wxstd30.mo +%%NLS%%share/locale/es/LC_MESSAGES/wxstd30.mo *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 14:20:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBBDD304; Wed, 22 Jan 2014 14:20:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B7E0B1D31; Wed, 22 Jan 2014 14:20:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MEKfFj072860; Wed, 22 Jan 2014 14:20:41 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MEKfOO072858; Wed, 22 Jan 2014 14:20:41 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401221420.s0MEKfOO072858@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 22 Jan 2014 14:20:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340710 - head/graphics/libosmesa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 14:20:41 -0000 Author: gahr Date: Wed Jan 22 14:20:41 2014 New Revision: 340710 URL: http://svnweb.freebsd.org/changeset/ports/340710 QAT: https://qat.redports.org/buildarchive/r340710/ Log: - Update to 10.0.2 Release notes: http://www.mesa3d.org/relnotes/10.0.2.html Modified: head/graphics/libosmesa/Makefile head/graphics/libosmesa/distinfo Modified: head/graphics/libosmesa/Makefile ============================================================================== --- head/graphics/libosmesa/Makefile Wed Jan 22 13:46:41 2014 (r340709) +++ head/graphics/libosmesa/Makefile Wed Jan 22 14:20:41 2014 (r340710) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libosmesa -PORTVERSION= 10.0.1 -PORTREVISION= 1 +PORTVERSION= 10.0.2 CATEGORIES= graphics MASTER_SITES= ftp://ftp.freedesktop.org/pub/mesa/${PORTVERSION}/ DISTNAME= MesaLib-${PORTVERSION} Modified: head/graphics/libosmesa/distinfo ============================================================================== --- head/graphics/libosmesa/distinfo Wed Jan 22 13:46:41 2014 (r340709) +++ head/graphics/libosmesa/distinfo Wed Jan 22 14:20:41 2014 (r340710) @@ -1,2 +1,2 @@ -SHA256 (MesaLib-10.0.1.tar.bz2) = 3cdf868f9599ca310c17fcf5b4ce9aec9903d8bf8561fde2577f3d422f823270 -SIZE (MesaLib-10.0.1.tar.bz2) = 6783445 +SHA256 (MesaLib-10.0.2.tar.bz2) = 4502a8e2dfa53e15d8fff89c153e6b14824fe82e49bd101e7edc02fa8cf76a7e +SIZE (MesaLib-10.0.2.tar.bz2) = 6784325 From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 14:36:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2ED7FA3E; Wed, 22 Jan 2014 14:36:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0F3791ECF; Wed, 22 Jan 2014 14:36:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MEa4PS080108; Wed, 22 Jan 2014 14:36:04 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MEZuae080043; Wed, 22 Jan 2014 14:35:56 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221435.s0MEZuae080043@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 14:35:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340711 - in head/textproc: p5-Template-Plugin-Autoformat p5-Template-Plugin-Lingua-EN-Inflect p5-Template-Plugin-XML-Escape p5-Template-Semantic p5-Term-QRCode p5-Text-ASCIITable p5-Te... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 14:36:04 -0000 Author: mat Date: Wed Jan 22 14:35:55 2014 New Revision: 340711 URL: http://svnweb.freebsd.org/changeset/ports/340711 QAT: https://qat.redports.org/buildarchive/r340711/ Log: * Convert to staging * Add license * pet portlint Sponsored by: Absolight Modified: head/textproc/p5-Template-Plugin-Autoformat/Makefile head/textproc/p5-Template-Plugin-Autoformat/pkg-plist head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/Makefile head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/pkg-plist head/textproc/p5-Template-Plugin-XML-Escape/Makefile head/textproc/p5-Template-Plugin-XML-Escape/pkg-descr head/textproc/p5-Template-Plugin-XML-Escape/pkg-plist head/textproc/p5-Template-Semantic/Makefile head/textproc/p5-Template-Semantic/pkg-plist head/textproc/p5-Term-QRCode/Makefile head/textproc/p5-Term-QRCode/pkg-plist head/textproc/p5-Text-ASCIITable/Makefile head/textproc/p5-Text-ASCIITable/pkg-plist head/textproc/p5-Text-Autoformat/Makefile head/textproc/p5-Text-Autoformat/pkg-plist head/textproc/p5-Text-Bind/Makefile head/textproc/p5-Text-Bind/pkg-plist head/textproc/p5-Text-Brew/Makefile head/textproc/p5-Text-Brew/pkg-plist head/textproc/p5-Text-CSV-Encoded/Makefile head/textproc/p5-Text-CSV-Encoded/pkg-plist head/textproc/p5-Text-CSV-Hashify/Makefile head/textproc/p5-Text-CSV-Hashify/pkg-plist head/textproc/p5-Text-CSV-Simple/Makefile head/textproc/p5-Text-CSV-Simple/pkg-plist head/textproc/p5-Text-ClearSilver/Makefile head/textproc/p5-Text-ClearSilver/pkg-plist head/textproc/p5-Text-Context-EitherSide/Makefile head/textproc/p5-Text-Context-EitherSide/pkg-plist head/textproc/p5-Text-DHCPLeases/Makefile head/textproc/p5-Text-DHCPLeases/pkg-plist head/textproc/p5-Text-Delimited/Makefile head/textproc/p5-Text-Delimited/pkg-descr head/textproc/p5-Text-Delimited/pkg-plist (contents, props changed) head/textproc/p5-Text-Diff-HTML/Makefile head/textproc/p5-Text-Diff-HTML/pkg-plist head/textproc/p5-Text-Diff/Makefile head/textproc/p5-Text-Diff/pkg-plist Modified: head/textproc/p5-Template-Plugin-Autoformat/Makefile ============================================================================== --- head/textproc/p5-Template-Plugin-Autoformat/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Template-Plugin-Autoformat/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= vivek@khera.org COMMENT= Template Toolkit interface to Text::Autoformat module +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-Template-Toolkit>=2.22:${PORTSDIR}/www/p5-Template-Toolkit \ p5-Text-Autoformat>0:${PORTSDIR}/textproc/p5-Text-Autoformat BUILD_DEPENDS= p5-Template-Toolkit>=2.22:${PORTSDIR}/www/p5-Template-Toolkit \ @@ -18,7 +21,4 @@ BUILD_DEPENDS= p5-Template-Toolkit>=2.22 USES= perl5 USE_PERL5= configure -MAN3= Template::Plugin::Autoformat.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Template-Plugin-Autoformat/pkg-plist ============================================================================== --- head/textproc/p5-Template-Plugin-Autoformat/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Template-Plugin-Autoformat/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Template::Plugin::Autoformat.3.gz %%SITE_PERL%%/Template/Plugin/Autoformat.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Template-Plugin-Autoformat/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Template-Plugin-Autoformat Modified: head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/Makefile ============================================================================== --- head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -17,7 +17,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Template::Plugin::Lingua::EN::Inflect.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/pkg-plist ============================================================================== --- head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Template::Plugin::Lingua::EN::Inflect.3.gz %%SITE_PERL%%/Template/Plugin/Lingua/EN/Inflect.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Template/Plugin/Lingua/EN/Inflect/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Template/Plugin/Lingua/EN/Inflect Modified: head/textproc/p5-Template-Plugin-XML-Escape/Makefile ============================================================================== --- head/textproc/p5-Template-Plugin-XML-Escape/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Template-Plugin-XML-Escape/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -15,7 +15,5 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Template::Plugin::XML::Escape.3 -NO_STAGE= yes .include Modified: head/textproc/p5-Template-Plugin-XML-Escape/pkg-descr ============================================================================== --- head/textproc/p5-Template-Plugin-XML-Escape/pkg-descr Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Template-Plugin-XML-Escape/pkg-descr Wed Jan 22 14:35:55 2014 (r340711) @@ -2,4 +2,4 @@ Escapes XML entities from text, so that quotes, less-than/greater-than, and ampersands, into variables that end up in TT templates. -WWW: http://search.cpan.org/dist/Template-Plugin-XML-Escape +WWW: http://search.cpan.org/dist/Template-Plugin-XML-Escape/ Modified: head/textproc/p5-Template-Plugin-XML-Escape/pkg-plist ============================================================================== --- head/textproc/p5-Template-Plugin-XML-Escape/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Template-Plugin-XML-Escape/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Template::Plugin::XML::Escape.3.gz %%SITE_PERL%%/Template/Plugin/XML/Escape.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Template/Plugin/XML/Escape/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Template/Plugin/XML/Escape Modified: head/textproc/p5-Template-Semantic/Makefile ============================================================================== --- head/textproc/p5-Template-Semantic/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Template-Semantic/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -9,6 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to use pure XHTML/XML as a template +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= \ p5-HTML-Selector-XPath>=0.09:${PORTSDIR}/www/p5-HTML-Selector-XPath \ p5-XML-LibXML>=1.69:${PORTSDIR}/textproc/p5-XML-LibXML @@ -19,10 +22,4 @@ TEST_DEPENDS= \ USES= perl5 USE_PERL5= configure -MAN3= Template::Semantic.3 \ - Template::Semantic::Cookbook.3 \ - Template::Semantic::Document.3 \ - Template::Semantic::Filter.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Template-Semantic/pkg-plist ============================================================================== --- head/textproc/p5-Template-Semantic/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Template-Semantic/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,7 @@ +%%PERL5_MAN3%%/Template::Semantic.3.gz +%%PERL5_MAN3%%/Template::Semantic::Cookbook.3.gz +%%PERL5_MAN3%%/Template::Semantic::Document.3.gz +%%PERL5_MAN3%%/Template::Semantic::Filter.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Template/Semantic/.packlist %%SITE_PERL%%/Template/Semantic.pm %%SITE_PERL%%/Template/Semantic/Cookbook.pod Modified: head/textproc/p5-Term-QRCode/Makefile ============================================================================== --- head/textproc/p5-Term-QRCode/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Term-QRCode/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= stephon@gmail.com COMMENT= Generate QR Code on Terminal +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= libqrencode>=2.0.0:${PORTSDIR}/graphics/libqrencode \ p5-Text-QRCode>0:${PORTSDIR}/textproc/p5-Text-QRCode RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -17,7 +20,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Term::QRCode.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Term-QRCode/pkg-plist ============================================================================== --- head/textproc/p5-Term-QRCode/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Term-QRCode/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,4 +1,5 @@ bin/term-qrcode +%%PERL5_MAN3%%/Term::QRCode.3.gz %%SITE_PERL%%/Term/QRCode.pm %%SITE_PERL%%/mach/auto/Term/QRCode/.packlist @dirrm %%SITE_PERL%%/mach/auto/Term/QRCode Modified: head/textproc/p5-Text-ASCIITable/Makefile ============================================================================== --- head/textproc/p5-Text-ASCIITable/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-ASCIITable/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -10,24 +10,19 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Create a nice formatted table using ASCII characters +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= Text::ASCIITable.3 \ - Text::ASCIITable::Wrap.3 +OPTIONS_DEFINE= EXAMPLES -NO_STAGE= yes -post-extract: - @${MKDIR} ${WRKSRC}/example - @${MV} ${WRKSRC}/ansi-example.pl ${WRKSRC}/example - @${REINPLACE_CMD} -i '' '/ansi-example.pl/d' ${WRKSRC}/MANIFEST +PORTEXAMPLES= ansi-example.pl post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_SCRIPT} ${WRKSRC}/example/ansi-example.pl ${EXAMPLESDIR} - @${ECHO_MSG} "===> Example installed in ${EXAMPLESDIR}." -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/ansi-example.pl ${STAGEDIR}${EXAMPLESDIR} regression-test: build cd ${WRKSRC}/ && ./Build test Modified: head/textproc/p5-Text-ASCIITable/pkg-plist ============================================================================== --- head/textproc/p5-Text-ASCIITable/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-ASCIITable/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,6 +1,9 @@ +%%PERL5_MAN3%%/Text::ASCIITable.3.gz +%%PERL5_MAN3%%/Text::ASCIITable::Wrap.3.gz %%SITE_PERL%%/Text/ASCIITable.pm %%SITE_PERL%%/Text/ASCIITable/Wrap.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/ASCIITable/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/ASCIITable +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text @dirrm %%SITE_PERL%%/Text/ASCIITable @dirrmtry %%SITE_PERL%%/Text -%%PORTDOCS%%%%EXAMPLESDIR%%/ansi-example.pl -%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% Modified: head/textproc/p5-Text-Autoformat/Makefile ============================================================================== --- head/textproc/p5-Text-Autoformat/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Autoformat/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -18,7 +18,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::Autoformat.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Autoformat/pkg-plist ============================================================================== --- head/textproc/p5-Text-Autoformat/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Autoformat/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Autoformat.3.gz %%SITE_PERL%%/Text/Autoformat.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Autoformat/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Autoformat Modified: head/textproc/p5-Text-Bind/Makefile ============================================================================== --- head/textproc/p5-Text-Bind/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Bind/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -13,7 +13,4 @@ COMMENT= Bind Perl structures to text fi USES= perl5 USE_PERL5= configure -MAN3= Text::Bind.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Bind/pkg-plist ============================================================================== --- head/textproc/p5-Text-Bind/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Bind/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Bind.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Bind/.packlist %%SITE_PERL%%/Text/Bind.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Bind Modified: head/textproc/p5-Text-Brew/Makefile ============================================================================== --- head/textproc/p5-Text-Brew/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Brew/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -12,7 +12,4 @@ COMMENT= Perl extension for the Brew edi USES= perl5 USE_PERL5= configure -MAN3= Text::Brew.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Brew/pkg-plist ============================================================================== --- head/textproc/p5-Text-Brew/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Brew/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Brew.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Brew/.packlist %%SITE_PERL%%/Text/Brew.pm @dirrmtry %%SITE_PERL%%/Text Modified: head/textproc/p5-Text-CSV-Encoded/Makefile ============================================================================== --- head/textproc/p5-Text-CSV-Encoded/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-CSV-Encoded/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= dereckson@gmail.com COMMENT= Perl module for Encoding aware CVS files parsing +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Test-Simple>=0:${PORTSDIR}/devel/p5-Test-Simple \ p5-Test-Harness>=0:${PORTSDIR}/devel/p5-Test-Harness \ p5-Text-CSV>=0:${PORTSDIR}/textproc/p5-Text-CSV @@ -19,7 +22,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::CSV::Encoded.3 Text::CSV::Encoded::Coder::Base.3 Text::CSV::Encoded::Coder::Encode.3 Text::CSV::Encoded::Coder::EncodeGuess.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-CSV-Encoded/pkg-plist ============================================================================== --- head/textproc/p5-Text-CSV-Encoded/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-CSV-Encoded/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,7 @@ +%%PERL5_MAN3%%/Text::CSV::Encoded.3.gz +%%PERL5_MAN3%%/Text::CSV::Encoded::Coder::Base.3.gz +%%PERL5_MAN3%%/Text::CSV::Encoded::Coder::Encode.3.gz +%%PERL5_MAN3%%/Text::CSV::Encoded::Coder::EncodeGuess.3.gz %%SITE_PERL%%/Text/CSV/Encoded.pm %%SITE_PERL%%/Text/CSV/Encoded/Coder/Base.pm %%SITE_PERL%%/Text/CSV/Encoded/Coder/Encode.pm Modified: head/textproc/p5-Text-CSV-Hashify/Makefile ============================================================================== --- head/textproc/p5-Text-CSV-Hashify/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-CSV-Hashify/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -17,7 +17,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::CSV::Hashify.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-CSV-Hashify/pkg-plist ============================================================================== --- head/textproc/p5-Text-CSV-Hashify/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-CSV-Hashify/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::CSV::Hashify.3.gz %%SITE_PERL%%/Text/CSV/Hashify.pm %%SITE_PERL%%/mach/auto/Text/CSV/Hashify/.packlist @dirrm %%SITE_PERL%%/mach/auto/Text/CSV/Hashify Modified: head/textproc/p5-Text-CSV-Simple/Makefile ============================================================================== --- head/textproc/p5-Text-CSV-Simple/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-CSV-Simple/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -17,7 +17,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::CSV::Simple.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-CSV-Simple/pkg-plist ============================================================================== --- head/textproc/p5-Text-CSV-Simple/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-CSV-Simple/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::CSV::Simple.3.gz %%SITE_PERL%%/Text/CSV/Simple.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/CSV/Simple/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/CSV/Simple Modified: head/textproc/p5-Text-ClearSilver/Makefile ============================================================================== --- head/textproc/p5-Text-ClearSilver/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-ClearSilver/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -9,20 +9,14 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to the ClearSilver template engine +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + TEST_DEPENDS= \ p5-Test-Requires>0:${PORTSDIR}/devel/p5-Test-Requires \ p5-Mouse>0:${PORTSDIR}/devel/p5-Mouse -USES= perl5 +USES= perl5 gmake USE_PERL5= configure -USE_GMAKE= yes -CONFIGURE_ENV= MAKE=${LOCALBASE}/bin/gmake - -MAN3= Text::ClearSilver.3 \ - Text::ClearSilver::Compat.3 \ - Text::ClearSilver::FunctionSet.3 \ - Text::ClearSilver::FunctionSet::html.3 \ - Text::ClearSilver::FunctionSet::string.3 -NO_STAGE= yes .include Modified: head/textproc/p5-Text-ClearSilver/pkg-plist ============================================================================== --- head/textproc/p5-Text-ClearSilver/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-ClearSilver/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,8 @@ +%%PERL5_MAN3%%/Text::ClearSilver.3.gz +%%PERL5_MAN3%%/Text::ClearSilver::Compat.3.gz +%%PERL5_MAN3%%/Text::ClearSilver::FunctionSet.3.gz +%%PERL5_MAN3%%/Text::ClearSilver::FunctionSet::html.3.gz +%%PERL5_MAN3%%/Text::ClearSilver::FunctionSet::string.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/ClearSilver/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/ClearSilver/ClearSilver.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/ClearSilver/ClearSilver.so Modified: head/textproc/p5-Text-Context-EitherSide/Makefile ============================================================================== --- head/textproc/p5-Text-Context-EitherSide/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Context-EitherSide/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -13,7 +13,4 @@ COMMENT= Text::Context::EitherSide - Get USES= perl5 USE_PERL5= configure -MAN3= Text::Context::EitherSide.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Context-EitherSide/pkg-plist ============================================================================== --- head/textproc/p5-Text-Context-EitherSide/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Context-EitherSide/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Context::EitherSide.3.gz %%SITE_PERL%%/Text/Context/EitherSide.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Context/EitherSide/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Context/EitherSide Modified: head/textproc/p5-Text-DHCPLeases/Makefile ============================================================================== --- head/textproc/p5-Text-DHCPLeases/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-DHCPLeases/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -9,12 +9,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension to parse DHCP leases file from ISC dhcpd +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= modbuild -MAN3= Text::DHCPLeases.3 \ - Text::DHCPLeases::Object.3 \ - Text::DHCPLeases::Object::Iterator.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-DHCPLeases/pkg-plist ============================================================================== --- head/textproc/p5-Text-DHCPLeases/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-DHCPLeases/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/Text::DHCPLeases.3.gz +%%PERL5_MAN3%%/Text::DHCPLeases::Object.3.gz +%%PERL5_MAN3%%/Text::DHCPLeases::Object::Iterator.3.gz %%SITE_PERL%%/Text/DHCPLeases.pm %%SITE_PERL%%/Text/DHCPLeases/Object.pm %%SITE_PERL%%/Text/DHCPLeases/Object/Iterator.pm Modified: head/textproc/p5-Text-Delimited/Makefile ============================================================================== --- head/textproc/p5-Text-Delimited/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Delimited/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -13,7 +13,4 @@ COMMENT= Module for parsing delimited te USES= perl5 USE_PERL5= configure -MAN3= Text::Delimited.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Delimited/pkg-descr ============================================================================== --- head/textproc/p5-Text-Delimited/pkg-descr Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Delimited/pkg-descr Wed Jan 22 14:35:55 2014 (r340711) @@ -7,4 +7,4 @@ After instancing, for each call to Read returned as a hash reference. The individual elements are keyed by their corresonding column headings. -WWW: http://search.cpan.org/dist/Text-Delimited/ +WWW: http://search.cpan.org/dist/Text-Delimited/ Modified: head/textproc/p5-Text-Delimited/pkg-plist ============================================================================== --- head/textproc/p5-Text-Delimited/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Delimited/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Delimited.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Delimited/.packlist %%SITE_PERL%%/Text/Delimited.pm @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Delimited Modified: head/textproc/p5-Text-Diff-HTML/Makefile ============================================================================== --- head/textproc/p5-Text-Diff-HTML/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Diff-HTML/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Text::Diff::HTML - XHTML format for Text::Diff::Unified +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Text-Diff>=0:${PORTSDIR}/textproc/p5-Text-Diff \ p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser RUN_DEPENDS:= ${BUILD_DEPENDS} @@ -17,7 +20,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= modbuild -MAN3= Text::Diff::HTML.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Diff-HTML/pkg-plist ============================================================================== --- head/textproc/p5-Text-Diff-HTML/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Diff-HTML/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Diff::HTML.3.gz %%SITE_PERL%%/Text/Diff/HTML.pm @dirrmtry %%SITE_PERL%%/Text/Diff @dirrmtry %%SITE_PERL%%/Text Modified: head/textproc/p5-Text-Diff/Makefile ============================================================================== --- head/textproc/p5-Text-Diff/Makefile Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Diff/Makefile Wed Jan 22 14:35:55 2014 (r340711) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Text::Diff - Perform diffs on files and record sets +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + COMMON_DEPENDS= p5-Algorithm-Diff>=1.19:${PORTSDIR}/devel/p5-Algorithm-Diff BUILD_DEPENDS= ${COMMON_DEPENDS} RUN_DEPENDS= ${COMMON_DEPENDS} @@ -17,7 +20,4 @@ RUN_DEPENDS= ${COMMON_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::Diff.3 Text::Diff::Config.3 Text::Diff::Table.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Diff/pkg-plist ============================================================================== --- head/textproc/p5-Text-Diff/pkg-plist Wed Jan 22 14:20:41 2014 (r340710) +++ head/textproc/p5-Text-Diff/pkg-plist Wed Jan 22 14:35:55 2014 (r340711) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/Text::Diff.3.gz +%%PERL5_MAN3%%/Text::Diff::Config.3.gz +%%PERL5_MAN3%%/Text::Diff::Table.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Diff/.packlist %%SITE_PERL%%/Text/Diff.pm %%SITE_PERL%%/Text/Diff/Config.pm From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 15:09:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB1E821E; Wed, 22 Jan 2014 15:09:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B621D11BB; Wed, 22 Jan 2014 15:09:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MF9X2F091925; Wed, 22 Jan 2014 15:09:33 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MF9XBS091924; Wed, 22 Jan 2014 15:09:33 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401221509.s0MF9XBS091924@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 22 Jan 2014 15:09:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340712 - head/x11-toolkits/wxgtk30 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 15:09:33 -0000 Author: gahr Date: Wed Jan 22 15:09:33 2014 New Revision: 340712 URL: http://svnweb.freebsd.org/changeset/ports/340712 QAT: https://qat.redports.org/buildarchive/r340712/ Log: - Fix PKGNAMESUFFIX Modified: head/x11-toolkits/wxgtk30/Makefile Modified: head/x11-toolkits/wxgtk30/Makefile ============================================================================== --- head/x11-toolkits/wxgtk30/Makefile Wed Jan 22 14:35:55 2014 (r340711) +++ head/x11-toolkits/wxgtk30/Makefile Wed Jan 22 15:09:33 2014 (r340712) @@ -4,7 +4,7 @@ PORTNAME= wx PORTVERSION= 3.0.0 CATEGORIES= x11-toolkits MASTER_SITES= SF/wxwindows/${PORTVERSION} -PKGNAMESUFFIX= 29-gtk2 +PKGNAMESUFFIX= 30-gtk2 DISTNAME= wxWidgets-${PORTVERSION} MAINTAINER= gahr@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 15:12:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 967AF380; Wed, 22 Jan 2014 15:12:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8287E122C; Wed, 22 Jan 2014 15:12:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MFCSZu095235; Wed, 22 Jan 2014 15:12:28 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MFCSnW095234; Wed, 22 Jan 2014 15:12:28 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221512.s0MFCSnW095234@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 15:12:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340713 - in head/Mk: . Scripts Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 15:12:28 -0000 Author: mat Date: Wed Jan 22 15:12:27 2014 New Revision: 340713 URL: http://svnweb.freebsd.org/changeset/ports/340713 QAT: https://qat.redports.org/buildarchive/r340713/ Log: Fixup svn props in Mk. Sponsored by: Absolight Modified: Directory Properties: head/Mk/Scripts/dialog4ports.sh (props changed) head/Mk/Scripts/pkgencode.awk (props changed) head/Mk/Uses/cran.mk (props changed) head/Mk/bsd.destdir.mk (props changed) head/Mk/bsd.efl.mk (props changed) head/Mk/bsd.gcc.mk (props changed) head/Mk/bsd.gnustep.mk (props changed) head/Mk/bsd.ldap.mk (props changed) head/Mk/bsd.licenses.mk (props changed) head/Mk/bsd.local.mk (props changed) head/Mk/bsd.lua.mk (props changed) head/Mk/bsd.octave.mk (props changed) head/Mk/bsd.openssl.mk (props changed) head/Mk/bsd.port.options.mk (props changed) head/Mk/bsd.port.post.mk (props changed) head/Mk/bsd.port.pre.mk (props changed) head/Mk/bsd.scons.mk (props changed) head/Mk/bsd.tex.mk (props changed) head/Mk/bsd.xorg.mk (props changed) From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 15:17:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E08B9526; Wed, 22 Jan 2014 15:17:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C55101271; Wed, 22 Jan 2014 15:17:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MFHI7H008502; Wed, 22 Jan 2014 15:17:18 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MFHFlX002211; Wed, 22 Jan 2014 15:17:15 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221517.s0MFHFlX002211@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 15:17:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340714 - in head: accessibility/accerciser accessibility/at-spi accessibility/atkmm accessibility/dasher accessibility/eflite accessibility/gnome-mag accessibility/gnome-speech accessi... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 15:17:19 -0000 Author: mat Date: Wed Jan 22 15:16:56 2014 New Revision: 340714 URL: http://svnweb.freebsd.org/changeset/ports/340714 QAT: https://qat.redports.org/buildarchive/r340714/ Log: Fixup svn props on pkg-plist* Fixup one plist with bad line endings. Sponsored by: Absolight Modified: head/math/saga/pkg-plist (contents, props changed) Directory Properties: head/accessibility/accerciser/pkg-plist (props changed) head/accessibility/at-spi/pkg-plist (props changed) head/accessibility/atkmm/pkg-plist (props changed) head/accessibility/dasher/pkg-plist (props changed) head/accessibility/eflite/pkg-plist (props changed) head/accessibility/gnome-mag/pkg-plist (props changed) head/accessibility/gnome-speech/pkg-plist (props changed) head/accessibility/gnopernicus/pkg-plist (props changed) head/accessibility/gok/pkg-plist (props changed) head/accessibility/java-access-bridge/pkg-plist (props changed) head/accessibility/jovie/pkg-plist (props changed) head/accessibility/kaccessible/pkg-plist (props changed) head/accessibility/kmag/pkg-plist (props changed) head/accessibility/kmousetool/pkg-plist (props changed) head/accessibility/kmouth/pkg-plist (props changed) head/accessibility/linux-f10-atk/pkg-plist (props changed) head/accessibility/mousetweaks/pkg-plist (props changed) head/accessibility/orca/pkg-plist (props changed) head/accessibility/ruby-atk/pkg-plist (props changed) head/arabic/ae_fonts_mono/pkg-plist (props changed) head/arabic/ae_fonts_ttf/pkg-plist (props changed) head/arabic/aspell/pkg-plist (props changed) head/arabic/kacst_fonts/pkg-plist (props changed) head/arabic/khotot/pkg-plist (props changed) head/arabic/libitl/pkg-plist (props changed) head/archivers/bzip2/pkg-plist (props changed) head/archivers/dact/pkg-plist (props changed) head/archivers/deco/pkg-plist (props changed) head/archivers/epkg/pkg-plist (props changed) head/archivers/file-roller/pkg-plist (props changed) head/archivers/fpc-bzip2/pkg-plist (props changed) head/archivers/fpc-paszlib/pkg-plist (props changed) head/archivers/fpc-unzip/pkg-plist (props changed) head/archivers/freetar/pkg-plist (props changed) head/archivers/gcpio/pkg-plist (props changed) head/archivers/gtar/pkg-plist (props changed) head/archivers/gzip/pkg-plist (props changed) head/archivers/hpack.non-usa.only/pkg-plist (props changed) head/archivers/laszip/pkg-plist (props changed) head/archivers/libarc/pkg-plist (props changed) head/archivers/libcabinet/pkg-plist (props changed) head/archivers/libcomprex/pkg-plist (props changed) head/archivers/libdynamite/pkg-plist (props changed) head/archivers/liblzxcomp/pkg-plist (props changed) head/archivers/libmspack/pkg-plist (props changed) head/archivers/liborange/pkg-plist (props changed) head/archivers/libpar2/pkg-plist (props changed) head/archivers/libunrar/pkg-plist (props changed) head/archivers/libunrar4/pkg-plist (props changed) head/archivers/lrzip/pkg-plist (props changed) head/archivers/lzmalib/pkg-plist (props changed) head/archivers/lzo2/pkg-plist (props changed) head/archivers/macutils/pkg-plist (props changed) head/archivers/mar/pkg-plist (props changed) head/archivers/mate-file-archiver/pkg-plist (props changed) head/archivers/p5-Archive-Any-Plugin-Rar/pkg-plist (props changed) head/archivers/p5-Archive-Peek/pkg-plist (props changed) head/archivers/p5-Compress-Bzip2/pkg-plist (props changed) head/archivers/p5-Compress-LZO/pkg-plist (props changed) head/archivers/p5-IO-Zlib/pkg-plist (props changed) head/archivers/p5-Mac-Macbinary/pkg-plist (props changed) head/archivers/p5-PerlIO-gzip/pkg-plist (props changed) head/archivers/p5-PerlIO-via-Bzip2/pkg-plist (props changed) head/archivers/p7zip/pkg-plist (props changed) head/archivers/py-librtfcomp/pkg-plist (props changed) head/archivers/py-lzma/pkg-plist (props changed) head/archivers/rox-archive/pkg-plist (props changed) head/archivers/rpm/pkg-plist (props changed) head/archivers/rpm4/pkg-plist (props changed) head/archivers/rpm5/pkg-plist (props changed) head/archivers/ruby-lha/pkg-plist (props changed) head/archivers/ruby-libarchive/pkg-plist (props changed) head/archivers/ruby-zip/pkg-plist (props changed) head/archivers/sharutils/pkg-plist (props changed) head/archivers/snappy/pkg-plist (props changed) head/archivers/star/pkg-plist (props changed) head/archivers/tclmkziplib/pkg-plist (props changed) head/archivers/ucl/pkg-plist (props changed) head/archivers/xar/pkg-plist (props changed) head/archivers/xarchive/pkg-plist (props changed) head/archivers/xarchiver/pkg-plist (props changed) head/archivers/xpk/pkg-plist (props changed) head/archivers/zipper/pkg-plist (props changed) head/archivers/zoo/pkg-plist (props changed) head/astro/astrometry/pkg-plist (props changed) head/astro/boinc-astropulse/pkg-plist (props changed) head/astro/boinc-setiathome-v7/pkg-plist (props changed) head/astro/celestia/pkg-plist (props changed) head/astro/ephem/pkg-plist (props changed) head/astro/foxtrotgps/pkg-plist (props changed) head/astro/gkrellmoon2/pkg-plist (props changed) head/astro/glunarclock/pkg-plist (props changed) head/astro/gmapcatcher/pkg-plist (props changed) head/astro/gpsd/pkg-plist (props changed) head/astro/gpsdrive/pkg-plist (props changed) head/astro/libgal/pkg-plist (props changed) head/astro/libnova/pkg-plist (props changed) head/astro/libroadnav/pkg-plist (props changed) head/astro/merkaartor/pkg-plist (props changed) head/astro/nightfall/pkg-plist (props changed) head/astro/openmap/pkg-plist (props changed) head/astro/openuniverse/pkg-plist (props changed) head/astro/p5-Astro-FITS-Header/pkg-plist (props changed) head/astro/p5-Astro-SunTime/pkg-plist (props changed) head/astro/p5-Astro-Sunrise/pkg-plist (props changed) head/astro/p5-Astro-satpass/pkg-plist (props changed) head/astro/p5-GPS-Babel/pkg-plist (props changed) head/astro/p5-GPS-OID/pkg-plist (props changed) head/astro/p5-GPS/pkg-plist (props changed) head/astro/p5-Geo-METAR/pkg-plist (props changed) head/astro/p5-Weather-Underground/pkg-plist (props changed) head/astro/p5-ZConf-Weather/pkg-plist (props changed) head/astro/pp3/pkg-plist (props changed) head/astro/ptiger/pkg-plist (props changed) head/astro/py-RO/pkg-plist (props changed) head/astro/py-aipy/pkg-plist (props changed) head/astro/pyephem/pkg-plist (props changed) head/astro/rmap/pkg-plist (props changed) head/astro/roadnav/pkg-plist (props changed) head/astro/sextractor/pkg-plist (props changed) head/astro/sky2000/pkg-plist (props changed) head/astro/sscalc/pkg-plist (props changed) head/astro/starplot/pkg-plist (props changed) head/astro/swe/pkg-plist (props changed) head/astro/tclgeomap/pkg-plist (props changed) head/astro/tkgeomap/pkg-plist (props changed) head/astro/wcslib/pkg-plist (props changed) head/astro/xephem/pkg-plist (props changed) head/astro/xglobe/pkg-plist (props changed) head/astro/xplanet/pkg-plist (props changed) head/astro/xtide/pkg-plist (props changed) head/audio/Maaate/pkg-plist (props changed) head/audio/abcmidi/pkg-plist (props changed) head/audio/afsp/pkg-plist (props changed) head/audio/aften/pkg-plist (props changed) head/audio/alsa-plugins/pkg-plist (props changed) head/audio/amrcoder/pkg-plist (props changed) head/audio/aqualung/pkg-plist (props changed) head/audio/ardour/pkg-plist (props changed) head/audio/ario/pkg-plist (props changed) head/audio/ascd/pkg-plist (props changed) head/audio/aubio/pkg-plist (props changed) head/audio/audacious-dumb/pkg-plist (props changed) head/audio/audacity/pkg-plist (props changed) head/audio/audex/pkg-plist (props changed) head/audio/audiere/pkg-plist (props changed) head/audio/aureal-kmod/pkg-plist (props changed) head/audio/autozen/pkg-plist (props changed) head/audio/bebocd/pkg-plist (props changed) head/audio/blop/pkg-plist (props changed) head/audio/boodler/pkg-plist (props changed) head/audio/bristol/pkg-plist (props changed) head/audio/cantus_3/pkg-plist (props changed) head/audio/ccaudio2/pkg-plist (props changed) head/audio/cddb-bundle/pkg-plist (props changed) head/audio/cdparanoia/pkg-plist (props changed) head/audio/celt/pkg-plist (props changed) head/audio/chordpack/pkg-plist (props changed) head/audio/clunk/pkg-plist (props changed) head/audio/cmus/pkg-plist (props changed) head/audio/cowbell/pkg-plist (props changed) head/audio/cplay/pkg-plist (props changed) head/audio/cpp-xmms2/pkg-plist (props changed) head/audio/crip/pkg-plist (props changed) head/audio/cuberok/pkg-plist (props changed) head/audio/cueplayer/pkg-plist (props changed) head/audio/darkice/pkg-plist (props changed) head/audio/deadbeef-mpris-plugin/pkg-plist (props changed) head/audio/deadbeef/pkg-plist (props changed) head/audio/decibel-audio-player/pkg-plist (props changed) head/audio/dumb/pkg-plist (props changed) head/audio/dvda-author/pkg-plist (props changed) head/audio/easytag/pkg-plist (props changed) head/audio/eawpats/pkg-plist (props changed) head/audio/eawplus/pkg-plist (props changed) head/audio/emms/pkg-plist (props changed) head/audio/epos-devel/pkg-plist (props changed) head/audio/esound/pkg-plist (props changed) head/audio/espeak/pkg-plist (props changed) head/audio/faac/pkg-plist (props changed) head/audio/faad/pkg-plist (props changed) head/audio/fapg/pkg-plist (props changed) head/audio/fdk-aac/pkg-plist (props changed) head/audio/festdoc/pkg-plist (props changed) head/audio/festival-freebsoft-utils/pkg-plist (props changed) head/audio/festlex-cmu/pkg-plist (props changed) head/audio/festlex-czech/pkg-plist (props changed) head/audio/festlex-oald/pkg-plist (props changed) head/audio/festlex-ogi/pkg-plist (props changed) head/audio/festlex-poslex/pkg-plist (props changed) head/audio/festvox-czech/pkg-plist (props changed) head/audio/festvox-don/pkg-plist (props changed) head/audio/festvox-el11/pkg-plist (props changed) head/audio/festvox-kal16/pkg-plist (props changed) head/audio/festvox-kal8/pkg-plist (props changed) head/audio/festvox-ked16/pkg-plist (props changed) head/audio/festvox-ked8/pkg-plist (props changed) head/audio/festvox-rab16/pkg-plist (props changed) head/audio/festvox-rab8/pkg-plist (props changed) head/audio/festvox-russian/pkg-plist (props changed) head/audio/festvox-us1-mbrola/pkg-plist (props changed) head/audio/firefly/pkg-plist (props changed) head/audio/flite/pkg-plist (props changed) head/audio/fluidsynth-dssi/pkg-plist (props changed) head/audio/fmio/pkg-plist (props changed) head/audio/fmit/pkg-plist (props changed) head/audio/fpc-a52/pkg-plist (props changed) head/audio/fpc-mad/pkg-plist (props changed) head/audio/fpc-modplug/pkg-plist (props changed) head/audio/fpc-oggvorbis/pkg-plist (props changed) head/audio/fpc-openal/pkg-plist (props changed) head/audio/fpc-sndfile/pkg-plist (props changed) head/audio/freealut/pkg-plist (props changed) head/audio/freedesktop-sound-theme/pkg-plist (props changed) head/audio/freepats/pkg-plist (props changed) head/audio/freeswitch-music/pkg-plist (props changed) head/audio/gbemol/pkg-plist (props changed) head/audio/gbsplay/pkg-plist (props changed) head/audio/gigedit/pkg-plist (props changed) head/audio/gimmix/pkg-plist (props changed) head/audio/glame/pkg-plist (props changed) head/audio/glurp/pkg-plist (props changed) head/audio/gmpc-alarm/pkg-plist (props changed) head/audio/gmpc-albumview/pkg-plist (props changed) head/audio/gmpc-discogs/pkg-plist (props changed) head/audio/gmpc-lastfm/pkg-plist (props changed) head/audio/gmpc-lyricwiki/pkg-plist (props changed) head/audio/gmpc-magnatune/pkg-plist (props changed) head/audio/gmpc-mdcover/pkg-plist (props changed) head/audio/gmpc-mserver/pkg-plist (props changed) head/audio/gmpc-shout/pkg-plist (props changed) head/audio/gmpc-wikipedia/pkg-plist (props changed) head/audio/gmpc/pkg-plist (props changed) head/audio/gmtp/pkg-plist (props changed) head/audio/gmusicbrowser/pkg-plist (props changed) head/audio/gnome-audio/pkg-plist (props changed) head/audio/gnome-media/pkg-plist (props changed) head/audio/gnomoradio/pkg-plist (props changed) head/audio/gnormalize/pkg-plist (props changed) head/audio/gnuitar/pkg-plist (props changed) head/audio/gnupod/pkg-plist (props changed) head/audio/gnustep-cdplayer/pkg-plist (props changed) head/audio/gogglesmm/pkg-plist (props changed) head/audio/goobox/pkg-plist (props changed) head/audio/gqmpeg/pkg-plist (props changed) head/audio/gqradio/pkg-plist (props changed) head/audio/gramofile/pkg-plist (props changed) head/audio/grip/pkg-plist (props changed) head/audio/gsi/pkg-plist (props changed) head/audio/gsm/pkg-plist (props changed) head/audio/gspeakers/pkg-plist (props changed) head/audio/gstreamer-plugins-moodbar/pkg-plist (props changed) head/audio/gtkpod/pkg-plist (props changed) head/audio/guspat/pkg-plist (props changed) head/audio/harp/pkg-plist (props changed) head/audio/hawkvoice/pkg-plist (props changed) head/audio/herrie/pkg-plist (props changed) head/audio/hydrogen/pkg-plist (props changed) head/audio/icegenerator/pkg-plist (props changed) head/audio/ices/pkg-plist (props changed) head/audio/id3el/pkg-plist (props changed) head/audio/id3lib/pkg-plist (props changed) head/audio/ipod-sharp/pkg-plist (props changed) head/audio/istream/pkg-plist (props changed) head/audio/jack-keyboard/pkg-plist (props changed) head/audio/jack-rack/pkg-plist (props changed) head/audio/jack/pkg-plist (props changed) head/audio/jack_mixer/pkg-plist (props changed) head/audio/jamin/pkg-plist (props changed) head/audio/jmusic/pkg-plist (props changed) head/audio/jokosher/pkg-plist (props changed) head/audio/juke/pkg-plist (props changed) head/audio/julius/pkg-plist (props changed) head/audio/kaudiocreator/pkg-plist (props changed) head/audio/ksmp3play/pkg-plist (props changed) head/audio/kstreamripper/pkg-plist (props changed) head/audio/ladspa/pkg-plist (props changed) head/audio/lame/pkg-plist (props changed) head/audio/lastfm-desktop/pkg-plist (props changed) head/audio/liba52/pkg-plist (props changed) head/audio/libaacplus/pkg-plist (props changed) head/audio/libadplug/pkg-plist (props changed) head/audio/libao/pkg-plist (props changed) head/audio/libaudiofile/pkg-plist (props changed) head/audio/libbpm/pkg-plist (props changed) head/audio/libbs2b/pkg-plist (props changed) head/audio/libcanberra-gtk3/pkg-plist (props changed) head/audio/libcanberra/pkg-plist (props changed) head/audio/libcdaudio/pkg-plist (props changed) head/audio/libcddb-doc/pkg-plist (props changed) head/audio/libcddb/pkg-plist (props changed) head/audio/libconvolve/pkg-plist (props changed) head/audio/libdssialsacompat/pkg-plist (props changed) head/audio/libfishsound/pkg-plist (props changed) head/audio/libgig/pkg-plist (props changed) head/audio/libgme/pkg-plist (props changed) head/audio/libid3tag/pkg-plist (props changed) head/audio/liblscp/pkg-plist (props changed) head/audio/libmad/pkg-plist (props changed) head/audio/libmikmod/pkg-plist (props changed) head/audio/libmodplug/pkg-plist (props changed) head/audio/libmpd/pkg-plist (props changed) head/audio/libmpdclient/pkg-plist (props changed) head/audio/libmusicbrainz3/pkg-plist (props changed) head/audio/libmusicbrainz4/pkg-plist (props changed) head/audio/libmusicbrainz5/pkg-plist (props changed) head/audio/libnjb/pkg-plist (props changed) head/audio/libnoise/pkg-plist (props changed) head/audio/libofa/pkg-plist (props changed) head/audio/libogg/pkg-plist (props changed) head/audio/liboggz/pkg-plist (props changed) head/audio/libsamplerate/pkg-plist (props changed) head/audio/libshairport/pkg-plist (props changed) head/audio/libshout/pkg-plist (props changed) head/audio/libsidplay/pkg-plist (props changed) head/audio/libsidplay2/pkg-plist (props changed) head/audio/libsmf/pkg-plist (props changed) head/audio/libsndfile/pkg-plist (props changed) head/audio/libtremor/pkg-plist (props changed) head/audio/libumidi/pkg-plist (props changed) head/audio/libvorbis/pkg-plist (props changed) head/audio/libworkman/pkg-plist (props changed) head/audio/lingot/pkg-plist (props changed) head/audio/linux-f10-alsa-lib/pkg-plist (props changed) head/audio/linux-f10-alsa-plugins-oss/pkg-plist (props changed) head/audio/linux-f10-arts/pkg-plist (props changed) head/audio/linux-f10-libaudiofile/pkg-plist.i386 (props changed) head/audio/linux-f10-pulseaudio-libs/pkg-plist (props changed) head/audio/linux-fmodapi/pkg-plist (props changed) head/audio/linux-musicipserver/pkg-plist (props changed) head/audio/linuxsampler/pkg-plist (props changed) head/audio/liquidsoap/pkg-plist (props changed) head/audio/lmms/pkg-plist (props changed) head/audio/lv2core/pkg-plist (props changed) head/audio/mac/pkg-plist (props changed) head/audio/mad/pkg-plist (props changed) head/audio/madplay/pkg-plist (props changed) head/audio/mangler/pkg-plist (props changed) head/audio/mate-media/pkg-plist (props changed) head/audio/mctoolame-decoder/pkg-plist (props changed) head/audio/mctoolame-encoder/pkg-plist (props changed) head/audio/midipp/pkg-plist (props changed) head/audio/minitunes/pkg-plist (props changed) head/audio/mixmos/pkg-plist (props changed) head/audio/mma/pkg-plist (props changed) head/audio/moc/pkg-plist (props changed) head/audio/mous/pkg-plist (props changed) head/audio/mp3blaster/pkg-plist (props changed) head/audio/mp3c/pkg-plist (props changed) head/audio/mp3splt-gtk/pkg-plist (props changed) head/audio/mpdbrowser/pkg-plist (props changed) head/audio/mpdcon/pkg-plist (props changed) head/audio/mpdscribble/pkg-plist (props changed) head/audio/mpg123.el/pkg-plist (props changed) head/audio/mpg123/pkg-plist (props changed) head/audio/mpiosh/pkg-plist (props changed) head/audio/muine/pkg-plist (props changed) head/audio/murmur/pkg-plist (props changed) head/audio/musepack/pkg-plist (props changed) head/audio/musicbox-tag-editor/pkg-plist (props changed) head/audio/musicpd/pkg-plist (props changed) head/audio/napster/pkg-plist (props changed) head/audio/nas/pkg-plist (props changed) head/audio/normalize/pkg-plist (props changed) head/audio/ocp/pkg-plist (props changed) head/audio/openal-soft/pkg-plist (props changed) head/audio/openal/pkg-plist (props changed) head/audio/opencore-amr/pkg-plist (props changed) head/audio/osalp/pkg-plist (props changed) head/audio/osd-lyrics/pkg-plist (props changed) head/audio/oss/pkg-plist (props changed) head/audio/p5-Audio-Beep/pkg-plist (props changed) head/audio/p5-Audio-CD/pkg-plist (props changed) head/audio/p5-Audio-Ecasound/pkg-plist (props changed) head/audio/p5-Audio-FLAC-Header/pkg-plist (props changed) head/audio/p5-Audio-MPD/pkg-plist (props changed) head/audio/p5-Audio-Mixer/pkg-plist (props changed) head/audio/p5-Audio-Musepack/pkg-plist (props changed) head/audio/p5-Audio-Scan/pkg-plist (props changed) head/audio/p5-Audio-Scrobbler/pkg-plist (props changed) head/audio/p5-Audio-WMA/pkg-plist (props changed) head/audio/p5-Audio-Wav/pkg-plist (props changed) head/audio/p5-Audio/pkg-plist (props changed) head/audio/p5-CDDB-File/pkg-plist (props changed) head/audio/p5-CDDB/pkg-plist (props changed) head/audio/p5-CDDB_get/pkg-plist (props changed) head/audio/p5-Filesys-Virtual-DAAP/pkg-plist (props changed) head/audio/p5-MIDI/pkg-plist (props changed) head/audio/p5-MP3-Find/pkg-plist (props changed) head/audio/p5-MP3-ID3v1Tag/pkg-plist (props changed) head/audio/p5-MP3-Info/pkg-plist (props changed) head/audio/p5-MP3-Tag/pkg-plist (props changed) head/audio/p5-MPEG-ID3v2Tag/pkg-plist (props changed) head/audio/p5-Music-Audioscrobbler-MPD/pkg-plist (props changed) head/audio/p5-Music-Audioscrobbler-Submit/pkg-plist (props changed) head/audio/p5-MusicBrainz-DiscID/pkg-plist (props changed) head/audio/p5-Net-DAAP-Client/pkg-plist (props changed) head/audio/p5-Net-DAAP-DMAP/pkg-plist (props changed) head/audio/p5-Net-FreeDB/pkg-plist (props changed) head/audio/p5-Net-LibLO/pkg-plist (props changed) head/audio/p5-Ogg-Vorbis-Header-PurePerl/pkg-plist (props changed) head/audio/p5-Ogg-Vorbis-Header/pkg-plist (props changed) head/audio/p5-Shout/pkg-plist (props changed) head/audio/p5-Test-Corpus-Audio-MPD/pkg-plist (props changed) head/audio/p5-Xmms/pkg-plist (props changed) head/audio/p5-libvorbis/pkg-plist (props changed) head/audio/p5-tagged/pkg-plist (props changed) head/audio/p5-xmms2/pkg-plist (props changed) head/audio/pacpl/pkg-plist (props changed) head/audio/padevchooser/pkg-plist (props changed) head/audio/paman/pkg-plist (props changed) head/audio/paprefs/pkg-plist (props changed) head/audio/patchage/pkg-plist (props changed) head/audio/pavucontrol/pkg-plist (props changed) head/audio/pavumeter/pkg-plist (props changed) head/audio/pithos/pkg-plist (props changed) head/audio/playmidi/pkg-plist (props changed) head/audio/pocketsphinx/pkg-plist (props changed) head/audio/portaudio/pkg-plist (props changed) head/audio/pulseaudio/pkg-plist (props changed) head/audio/pure-audio/pkg-plist (props changed) head/audio/py-apetag/pkg-plist (props changed) head/audio/py-discogs-client/pkg-plist (props changed) head/audio/py-eyed3/pkg-plist (props changed) head/audio/py-karaoke/pkg-plist (props changed) head/audio/py-mpd/pkg-plist (props changed) head/audio/py-musicbrainz2/pkg-plist (props changed) head/audio/py-openal/pkg-plist (props changed) head/audio/py-pyaudio/pkg-plist (props changed) head/audio/py-pyliblo/pkg-plist (props changed) head/audio/py-shout/pkg-plist (props changed) head/audio/py-xmms2/pkg-plist (props changed) head/audio/pytone/pkg-plist (props changed) head/audio/qmpdclient/pkg-plist (props changed) head/audio/qsampler/pkg-plist (props changed) head/audio/raop_play/pkg-plist (props changed) head/audio/raul/pkg-plist (props changed) head/audio/re/pkg-plist (props changed) head/audio/rem/pkg-plist (props changed) head/audio/resid/pkg-plist (props changed) head/audio/rezound/pkg-plist (props changed) head/audio/rhythmbox/pkg-plist (props changed) head/audio/rio500/pkg-plist (props changed) head/audio/rioutil/pkg-plist (props changed) head/audio/ripperx/pkg-plist (props changed) head/audio/rosegarden/pkg-plist (props changed) head/audio/rplay/pkg-plist (props changed) head/audio/rsynth/pkg-plist (props changed) head/audio/rubberband/pkg-plist (props changed) head/audio/ruby-audiofile/pkg-plist (props changed) head/audio/ruby-esound/pkg-plist (props changed) head/audio/ruby-freedb/pkg-plist (props changed) head/audio/ruby-mp3info/pkg-plist (props changed) head/audio/ruby-mp3tag/pkg-plist (props changed) head/audio/ruby-smf/pkg-plist (props changed) head/audio/ruby-taglib/pkg-plist (props changed) head/audio/ruby-xmms2/pkg-plist (props changed) head/audio/rubyripper/pkg-plist (props changed) head/audio/sbagen/pkg-plist (props changed) head/audio/sdl_mixer/pkg-plist (props changed) head/audio/sdl_sound/pkg-plist (props changed) head/audio/shout/pkg-plist (props changed) head/audio/shoutcast/pkg-plist (props changed) head/audio/sidplayer/pkg-plist (props changed) head/audio/slv2/pkg-plist (props changed) head/audio/snack/pkg-plist (props changed) head/audio/snd/pkg-plist (props changed) head/audio/solfege/pkg-plist (props changed) head/audio/sonata/pkg-plist (props changed) head/audio/sooperlooper/pkg-plist (props changed) head/audio/sound-juicer/pkg-plist (props changed) head/audio/soundkonverter/pkg-plist (props changed) head/audio/soundtouch/pkg-plist (props changed) head/audio/soundtracker/pkg-plist (props changed) head/audio/sox/pkg-plist (props changed) head/audio/specimen/pkg-plist (props changed) head/audio/speex/pkg-plist (props changed) head/audio/spek/pkg-plist (props changed) head/audio/sphinx/pkg-plist (props changed) head/audio/sphinx3/pkg-plist (props changed) head/audio/sphinxbase/pkg-plist (props changed) head/audio/spiralsynthmodular/pkg-plist (props changed) head/audio/splaytk/pkg-plist (props changed) head/audio/squash/pkg-plist (props changed) head/audio/squeezeboxserver-dynamicplaylist/pkg-plist (props changed) head/audio/squeezeboxserver-lazysearch/pkg-plist (props changed) head/audio/squeezeboxserver-sqlplaylist/pkg-plist (props changed) head/audio/squeezeboxserver-superdatetime/pkg-plist (props changed) head/audio/squeezeboxserver-trackstat/pkg-plist (props changed) head/audio/squeezeboxserver/pkg-plist (props changed) head/audio/streamtuner/pkg-plist (props changed) head/audio/swhplugins/pkg-plist (props changed) head/audio/taglib-extras/pkg-plist (props changed) head/audio/taglib-sharp/pkg-plist (props changed) head/audio/tagtool/pkg-plist (props changed) head/audio/tap-plugins/pkg-plist (props changed) head/audio/tclmidi/pkg-plist (props changed) head/audio/teamspeak_client/pkg-plist (props changed) head/audio/teamspeak_server/pkg-plist (props changed) head/audio/tempest_for_eliza/pkg-plist (props changed) head/audio/terminatorx/pkg-plist (props changed) head/audio/timemachine/pkg-plist (props changed) head/audio/timidity++-tcltk/pkg-plist (props changed) head/audio/timidity++-xaw/pkg-plist (props changed) head/audio/timidity++-xskin/pkg-plist (props changed) head/audio/timidity++/pkg-plist (props changed) head/audio/timidity/pkg-plist (props changed) head/audio/tkeca/pkg-plist (props changed) head/audio/trommler/pkg-plist (props changed) head/audio/tse3/pkg-plist (props changed) head/audio/tuxguitar/pkg-plist (props changed) head/audio/twolame/pkg-plist (props changed) head/audio/uade/pkg-plist (props changed) head/audio/ufmcontrol-i18n/pkg-plist (props changed) head/audio/umurmur/pkg-plist (props changed) head/audio/vamp-plugin-sdk/pkg-plist (props changed) head/audio/ventrilo-server/pkg-plist (props changed) head/audio/vo-aacenc/pkg-plist (props changed) head/audio/vo-amrwbenc/pkg-plist (props changed) head/audio/voipong/pkg-plist (props changed) head/audio/vorbis-tools/pkg-plist (props changed) head/audio/vsound/pkg-plist (props changed) head/audio/waheela/pkg-plist (props changed) head/audio/wavbreaker/pkg-plist (props changed) head/audio/wavpack/pkg-plist (props changed) head/audio/whysynth/pkg-plist (props changed) head/audio/wxguitar/pkg-plist (props changed) head/audio/x11amp/pkg-plist (props changed) head/audio/xanalyser/pkg-plist (props changed) head/audio/xcd/pkg-plist (props changed) head/audio/xmcd/pkg-plist (props changed) head/audio/xmms-crystality/pkg-plist (props changed) head/audio/xmms-curses/pkg-plist (props changed) head/audio/xmms-mp3cue/pkg-plist (props changed) head/audio/xmms-xf86audio/pkg-plist (props changed) head/audio/xmp/pkg-plist (props changed) head/audio/xoscope/pkg-plist (props changed) head/audio/xsynth-dssi/pkg-plist (props changed) head/audio/xwave/pkg-plist (props changed) head/audio/zinf/pkg-plist (props changed) head/benchmarks/autobench/pkg-plist (props changed) head/benchmarks/dbench/pkg-plist (props changed) head/benchmarks/expedite/pkg-plist (props changed) head/benchmarks/filebench/pkg-plist (props changed) head/benchmarks/fio/pkg-plist (props changed) head/benchmarks/flowgrind/pkg-plist (props changed) head/benchmarks/gtkperf/pkg-plist (props changed) head/benchmarks/himenobench/pkg-plist (props changed) head/benchmarks/hpl/pkg-plist (props changed) head/benchmarks/imb/pkg-plist (props changed) head/benchmarks/iorate/pkg-plist (props changed) head/benchmarks/lmbench/pkg-plist (props changed) head/benchmarks/nbench/pkg-plist (props changed) head/benchmarks/netperf/pkg-plist (props changed) head/benchmarks/nosqlbench/pkg-plist (props changed) head/benchmarks/nuttcp/pkg-plist (props changed) head/benchmarks/octave-forge-benchmark/pkg-plist (props changed) head/benchmarks/p5-Benchmark-Stopwatch/pkg-plist (props changed) head/benchmarks/phoronix-test-suite/pkg-plist (props changed) head/benchmarks/polygraph/pkg-plist (props changed) head/benchmarks/pybench/pkg-plist (props changed) head/benchmarks/scimark2/pkg-plist (props changed) head/benchmarks/super-smack/pkg-plist (props changed) head/benchmarks/sysbench/pkg-plist (props changed) head/benchmarks/thrulay/pkg-plist (props changed) head/benchmarks/ttcp/pkg-plist (props changed) head/benchmarks/unixbench/pkg-plist (props changed) head/biology/artemis/pkg-plist (props changed) head/biology/biococoa/pkg-plist (props changed) head/biology/biojava/pkg-plist (props changed) head/biology/blast/pkg-plist (props changed) head/biology/boinc-simap/pkg-plist (props changed) head/biology/consed/pkg-plist.examples (props changed) head/biology/crux/pkg-plist (props changed) head/biology/embassy/pkg-plist (props changed) head/biology/emboss/pkg-plist (props changed) head/biology/fasta/pkg-plist (props changed) head/biology/fastdnaml/pkg-plist (props changed) head/biology/finchtv/pkg-plist (props changed) head/biology/garlic/pkg-plist (props changed) head/biology/genpak/pkg-plist (props changed) head/biology/gmap/pkg-plist (props changed) head/biology/gperiodic/pkg-plist (props changed) head/biology/hmmer/pkg-plist (props changed) head/biology/jalview/pkg-plist (props changed) head/biology/libgenome/pkg-plist (props changed) head/biology/libsbml/pkg-plist (props changed) head/biology/mafft/pkg-plist (props changed) head/biology/mapm3/pkg-plist (props changed) head/biology/mopac/pkg-plist (props changed) head/biology/mummer/pkg-plist (props changed) head/biology/p5-AcePerl/pkg-plist (props changed) head/biology/p5-Bio-Das-Lite/pkg-plist (props changed) head/biology/p5-Bio-Graphics/pkg-plist (props changed) head/biology/p5-Bio-NEXUS/pkg-plist (props changed) head/biology/p5-bioperl-run/pkg-plist (props changed) head/biology/p5-bioperl/pkg-plist (props changed) head/biology/paml/pkg-plist (props changed) head/biology/platon/pkg-plist (props changed) head/biology/protomol/pkg-plist (props changed) head/biology/py-biopython/pkg-plist (props changed) head/biology/pycogent/pkg-plist (props changed) head/biology/pyfasta/pkg-plist (props changed) head/biology/pymol/pkg-plist (props changed) head/biology/python-nexus/pkg-plist (props changed) head/biology/ruby-bio/pkg-plist (props changed) head/biology/seqan/pkg-plist (props changed) head/biology/ssaha/pkg-plist (props changed) head/biology/ugene/pkg-plist (props changed) head/cad/adms/pkg-plist (props changed) head/cad/alliance/pkg-plist (props changed) head/cad/basicdsp/pkg-plist (props changed) head/cad/calculix/pkg-plist (props changed) head/cad/chipmunk/pkg-plist (props changed) head/cad/cider/pkg-plist (props changed) head/cad/electric/pkg-plist (props changed) head/cad/fidocadj/pkg-plist (props changed) head/cad/freehdl/pkg-plist (props changed) head/cad/geda-docs/pkg-plist (props changed) head/cad/geda-examples/pkg-plist (props changed) head/cad/geda-gattrib/pkg-plist (props changed) head/cad/geda-gschem/pkg-plist (props changed) head/cad/geda-netlist/pkg-plist (props changed) head/cad/geda-symbols/pkg-plist (props changed) head/cad/geda-symcheck/pkg-plist (props changed) head/cad/geda-utils/pkg-plist (props changed) head/cad/gmsh/pkg-plist (props changed) head/cad/gtkwave/pkg-plist (props changed) head/cad/iverilog/pkg-plist (props changed) head/cad/jspice3/pkg-plist (props changed) head/cad/kicad-devel/pkg-plist (props changed) head/cad/kicad-library/pkg-plist (props changed) head/cad/kicad/pkg-plist (props changed) head/cad/libgeda/pkg-plist (props changed) head/cad/linux-eagle5/pkg-plist (props changed) head/cad/mars/pkg-plist (props changed) head/cad/netgen/pkg-plist (props changed) head/cad/ngspice_rework/pkg-plist (props changed) head/cad/openscad/pkg-plist (props changed) head/cad/p5-Verilog-Perl/pkg-plist (props changed) head/cad/pcb/pkg-plist (props changed) head/cad/pythoncad/pkg-plist (props changed) head/cad/qcad-partslib/pkg-plist (props changed) head/cad/qfsm/pkg-plist (props changed) head/cad/repsnapper/pkg-plist (props changed) head/cad/salome-geom/pkg-plist (props changed) head/cad/salome-gui/pkg-plist (props changed) head/cad/salome-jobmanager/pkg-plist (props changed) head/cad/salome-kernel/pkg-plist (props changed) head/cad/salome-light/pkg-plist (props changed) head/cad/salome-med/pkg-plist (props changed) head/cad/salome-multipr/pkg-plist (props changed) head/cad/salome-netgenplugin/pkg-plist (props changed) head/cad/salome-randomizer/pkg-plist (props changed) head/cad/salome-sierpinsky/pkg-plist (props changed) head/cad/salome-smesh/pkg-plist (props changed) head/cad/salome-visu/pkg-plist (props changed) head/cad/salome-yacs/pkg-plist (props changed) head/cad/sceptre/pkg-plist (props changed) head/cad/scotch/pkg-plist (props changed) head/cad/scv/pkg-plist (props changed) head/cad/spice/pkg-plist (props changed) head/cad/systemc/pkg-plist (props changed) head/cad/transcalc/pkg-plist (props changed) head/cad/xcircuit/pkg-plist (props changed) head/cad/z88/pkg-plist (props changed) head/chinese/FreeWnn-lib/pkg-plist (props changed) head/chinese/arphicttf/pkg-plist (props changed) head/chinese/auto-cn-l10n/pkg-plist (props changed) head/chinese/auto-tw-l10n/pkg-plist (props changed) head/chinese/autoconvert/pkg-plist (props changed) head/chinese/bg5pdf/pkg-plist (props changed) head/chinese/bg5ps/pkg-plist (props changed) head/chinese/big5con/pkg-plist (props changed) head/chinese/big5width/pkg-plist (props changed) head/chinese/c2t/pkg-plist (props changed) head/chinese/cce/pkg-plist (props changed) head/chinese/cconv/pkg-plist (props changed) head/chinese/celvis/pkg-plist (props changed) head/chinese/cless/pkg-plist (props changed) head/chinese/cmexfonts/pkg-plist (props changed) head/chinese/cnprint/pkg-plist (props changed) head/chinese/cwtex/pkg-plist (props changed) head/chinese/dictd-database/pkg-plist (props changed) head/chinese/docproj/pkg-plist (props changed) head/chinese/fcitx-chewing/pkg-plist (props changed) head/chinese/fcitx-cloudpinyin/pkg-plist (props changed) head/chinese/fcitx-configtool/pkg-plist (props changed) head/chinese/fcitx-googlepinyin/pkg-plist (props changed) head/chinese/fcitx-libpinyin/pkg-plist (props changed) head/chinese/fcitx-sunpinyin/pkg-plist (props changed) head/chinese/fcitx-ui-light/pkg-plist (props changed) head/chinese/fcitx/pkg-plist (props changed) head/chinese/fortune/pkg-plist (props changed) head/chinese/fortunetw/pkg-plist (props changed) head/chinese/gb2jis/pkg-plist (props changed) head/chinese/gb2ps/pkg-plist (props changed) head/chinese/gcin/pkg-plist (props changed) head/chinese/gugod-clean/pkg-plist (props changed) head/chinese/hanzim/pkg-plist (props changed) head/chinese/hc/pkg-plist (props changed) head/chinese/ibus-chewing/pkg-plist (props changed) head/chinese/ibus-pinyin/pkg-plist (props changed) head/chinese/jis2gb/pkg-plist (props changed) head/chinese/kcfonts/pkg-plist (props changed) head/chinese/libchewing/pkg-plist (props changed) head/chinese/libgooglepinyin/pkg-plist (props changed) head/chinese/libpinyin/pkg-plist (props changed) head/chinese/libtabe/pkg-plist (props changed) head/chinese/lunar/pkg-plist (props changed) head/chinese/miniChinput/pkg-plist (props changed) head/chinese/moefonts-cid/pkg-plist (props changed) head/chinese/moettf/pkg-plist (props changed) head/chinese/msttf/pkg-plist (props changed) head/chinese/muni/pkg-plist (props changed) head/chinese/oicq/pkg-plist (props changed) head/chinese/opencc/pkg-plist (props changed) head/chinese/oto/pkg-plist (props changed) head/chinese/oxim/pkg-plist (props changed) head/chinese/p5-Date-Chinese/pkg-plist (props changed) head/chinese/p5-Encode-CNMap/pkg-plist (props changed) head/chinese/p5-Encode-HanConvert/pkg-plist (props changed) head/chinese/p5-Encode-HanExtra/pkg-plist (props changed) head/chinese/p5-Lingua-Han-PinYin/pkg-plist (props changed) head/chinese/p5-Lingua-Han-Utils/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-BPMFConvert/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-HanDetect/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-Keywords/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-Numbers/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-Segment/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-Summarize/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-TaBE/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-Toke/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-WordSegmenter/pkg-plist (props changed) head/chinese/p5-Lingua-ZH-Wrap/pkg-plist (props changed) head/chinese/p5-Text-Greeking-zh_TW/pkg-plist (props changed) head/chinese/phpbb-tw/pkg-plist (props changed) head/chinese/phpbb3-tw/pkg-plist (props changed) head/chinese/pine4/pkg-plist (props changed) head/chinese/qe/pkg-plist (props changed) head/chinese/reciteword/pkg-plist (props changed) head/chinese/scim-array/pkg-plist (props changed) head/chinese/scim-fcitx/pkg-plist (props changed) head/chinese/scim-tables/pkg-plist (props changed) head/chinese/srecite/pkg-plist (props changed) head/chinese/sunpinyin/pkg-plist (props changed) head/chinese/ttf2pt1/pkg-plist (props changed) head/chinese/ttfm/pkg-plist (props changed) head/chinese/ve/pkg-plist (props changed) head/chinese/xpdf/pkg-plist (props changed) head/chinese/xsim/pkg-plist (props changed) head/chinese/zhcon/pkg-plist (props changed) head/comms/aprsd/pkg-plist (props changed) head/comms/atslog/pkg-plist (props changed) head/comms/bforce-kst/pkg-plist (props changed) head/comms/bforce/pkg-plist (props changed) head/comms/birda/pkg-plist (props changed) head/comms/bluez-firmware/pkg-plist (props changed) head/comms/chirp/pkg-plist (props changed) head/comms/chu/pkg-plist (props changed) head/comms/conserver-com/pkg-plist (props changed) head/comms/conserver/pkg-plist (props changed) head/comms/cutecom/pkg-plist (props changed) head/comms/cwdaemon/pkg-plist (props changed) head/comms/ebook2cw/pkg-plist (props changed) head/comms/ebook2cwgui/pkg-plist (props changed) head/comms/echolinux/pkg-plist (props changed) head/comms/esmska/pkg-plist (props changed) head/comms/fl_moxgen/pkg-plist (props changed) head/comms/fldigi/pkg-plist (props changed) head/comms/flwrap/pkg-plist (props changed) head/comms/gammu-devel/pkg-plist (props changed) head/comms/gammu/pkg-plist (props changed) head/comms/geoid/pkg-plist (props changed) head/comms/gmfsk/pkg-plist (props changed) head/comms/gnocky/pkg-plist (props changed) head/comms/gnuradio/pkg-plist.dirs (props changed) head/comms/gnuradio/pkg-plist.main (props changed) head/comms/gpsk31/pkg-plist (props changed) head/comms/gscmxx/pkg-plist (props changed) head/comms/gsmlib/pkg-plist (props changed) head/comms/hamfax/pkg-plist (props changed) head/comms/hamlib/pkg-plist (props changed) head/comms/hf/pkg-plist (props changed) head/comms/hylafax/pkg-plist (props changed) head/comms/ibp/pkg-plist (props changed) head/comms/kb/pkg-plist (props changed) head/comms/libirman/pkg-plist (props changed) head/comms/linrad/pkg-plist (props changed) head/comms/lirc/pkg-plist (props changed) head/comms/locator/pkg-plist (props changed) head/comms/lrzsz/pkg-plist (props changed) head/comms/mgetty+sendfax/pkg-plist (props changed) head/comms/mlan3/pkg-plist (props changed) head/comms/nasawash/pkg-plist (props changed) head/comms/ncid/pkg-plist (props changed) head/comms/nec2c/pkg-plist (props changed) head/comms/o2sms/pkg-plist (props changed) head/comms/p5-Cisco-UCS/pkg-plist (props changed) head/comms/p5-Device-Gsm/pkg-plist (props changed) head/comms/p5-Device-Modem/pkg-plist (props changed) head/comms/p5-Device-SerialPort/pkg-plist (props changed) head/comms/p5-Fax-Hylafax-Client/pkg-plist (props changed) head/comms/p5-Nexmo-SMS/pkg-plist (props changed) head/comms/p5-SMS-SMS77/pkg-plist (props changed) head/comms/p5-SMS-Send-DeviceGsm/pkg-plist (props changed) head/comms/p5-SMS-Send-NexmoUnicode/pkg-plist (props changed) head/comms/p5-SMS-Send-TW-HiAir/pkg-plist (props changed) head/comms/p5-SMS-Send-TW-PChome/pkg-plist (props changed) head/comms/p5-SMS-Send-TW-Qma/pkg-plist (props changed) head/comms/p5-SMS-Send-TW-ShareSMS/pkg-plist (props changed) head/comms/p5-SMS-Send-TW-Socket2Air/pkg-plist (props changed) head/comms/p5-SMS-Send-TW-chtsns/pkg-plist (props changed) head/comms/p5-SMS-Send-TW-emome/pkg-plist (props changed) head/comms/p5-SMS-Send/pkg-plist (props changed) head/comms/pr/pkg-plist (props changed) head/comms/predict/pkg-plist (props changed) head/comms/py-bulksms/pkg-plist (props changed) head/comms/py-serial/pkg-plist (props changed) head/comms/qico/pkg-plist (props changed) head/comms/qpage/pkg-plist (props changed) head/comms/qrq/pkg-plist (props changed) head/comms/qsstv/pkg-plist (props changed) head/comms/rxtx/pkg-plist (props changed) head/comms/soundmodem/pkg-plist (props changed) head/comms/spandsp-devel/pkg-plist (props changed) head/comms/spandsp/pkg-plist (props changed) head/comms/splat/pkg-plist (props changed) head/comms/syncterm/pkg-plist (props changed) head/comms/thebridge/pkg-plist (props changed) head/comms/tits/pkg-plist (props changed) head/comms/tkscanfax/pkg-plist (props changed) head/comms/tlf/pkg-plist (props changed) head/comms/trustedqsl/pkg-plist (props changed) head/comms/twpsk/pkg-plist (props changed) head/comms/unixcw/pkg-plist (props changed) head/comms/usrp/pkg-plist (props changed) head/comms/vrflash/pkg-plist (props changed) head/comms/wsjt/pkg-plist (props changed) head/comms/wspr/pkg-plist (props changed) head/comms/wwl/pkg-plist (props changed) head/comms/wy60/pkg-plist (props changed) head/comms/xastir/pkg-plist (props changed) head/comms/xdx/pkg-plist (props changed) head/comms/xlog/pkg-plist (props changed) head/comms/xwota/pkg-plist (props changed) head/comms/yagiuda/pkg-plist (props changed) head/comms/yfklog/pkg-plist (props changed) head/converters/aish/pkg-plist (props changed) head/converters/asr10/pkg-plist (props changed) head/converters/btoa/pkg-plist (props changed) head/converters/cl-babel/pkg-plist (props changed) head/converters/cocot/pkg-plist (props changed) head/converters/dosunix/pkg-plist (props changed) head/converters/dumpasn1/pkg-plist (props changed) head/converters/enca/pkg-plist (props changed) head/converters/fconv/pkg-plist (props changed) head/converters/fpc-iconvenc/pkg-plist (props changed) head/converters/fribidi/pkg-plist (props changed) head/converters/ical2html/pkg-plist (props changed) head/converters/iconv-extra/pkg-plist (props changed) head/converters/iconv-rfc1345/pkg-plist (props changed) head/converters/iconv/pkg-plist (props changed) head/converters/konwert/pkg-plist (props changed) head/converters/libb64/pkg-plist (props changed) head/converters/libutf-8/pkg-plist (props changed) head/converters/mimelib/pkg-plist (props changed) head/converters/mule-ucs/pkg-plist (props changed) head/converters/p5-Boulder/pkg-plist (props changed) head/converters/p5-Convert-ASCII-Armour/pkg-plist (props changed) head/converters/p5-Convert-ASN1/pkg-plist (props changed) head/converters/p5-Convert-BER/pkg-plist (props changed) head/converters/p5-Convert-Bencode/pkg-plist (props changed) head/converters/p5-Convert-Bencode_XS/pkg-plist (props changed) head/converters/p5-Convert-Binary-C/pkg-plist (props changed) head/converters/p5-Convert-IBM390/pkg-plist (props changed) head/converters/p5-Convert-Morse/pkg-plist (props changed) head/converters/p5-Convert-PEM/pkg-plist (props changed) head/converters/p5-Convert-Recode/pkg-plist (props changed) head/converters/p5-Convert-TNEF/pkg-plist (props changed) head/converters/p5-Convert-UU/pkg-plist (props changed) head/converters/p5-Convert-UUlib/pkg-plist (props changed) head/converters/p5-Cstools/pkg-plist (props changed) head/converters/p5-Data-AMF/pkg-plist (props changed) head/converters/p5-Encode-Detect/pkg-plist (props changed) head/converters/p5-Encode-DoubleEncodedUTF8/pkg-plist (props changed) head/converters/p5-Encode-IMAPUTF7/pkg-plist (props changed) head/converters/p5-Encode-JIS2K/pkg-plist (props changed) head/converters/p5-Encode-Locale/pkg-plist (props changed) head/converters/p5-Encode-Punycode/pkg-plist (props changed) head/converters/p5-Encode-compat/pkg-plist (props changed) head/converters/p5-Encode/pkg-plist (props changed) head/converters/p5-Encoding-FixLatin/pkg-plist (props changed) head/converters/p5-Format-Human-Bytes/pkg-plist (props changed) head/converters/p5-JSON-Any/pkg-plist (props changed) head/converters/p5-JSON-DWIW/pkg-plist (props changed) head/converters/p5-JSON-XS-VersionOneAndTwo/pkg-plist (props changed) head/converters/p5-JSON/pkg-plist (props changed) head/converters/p5-JSON1/pkg-plist (props changed) head/converters/p5-MIME-Base32/pkg-plist (props changed) head/converters/p5-MIME-Base64-URLSafe/pkg-plist (props changed) head/converters/p5-MIME-Base64/pkg-plist (props changed) head/converters/p5-Net-IDN-Nameprep/pkg-plist (props changed) head/converters/p5-Number-Nary/pkg-plist (props changed) head/converters/p5-Number-RecordLocator/pkg-plist (props changed) head/converters/p5-PerlIO-via-Unidecode/pkg-plist (props changed) head/converters/p5-Sereal-Decoder/pkg-plist (props changed) head/converters/p5-Sereal-Encoder/pkg-plist (props changed) head/converters/p5-Sereal/pkg-plist (props changed) head/converters/p5-Storable-AMF/pkg-plist (props changed) head/converters/p5-String-Multibyte/pkg-plist (props changed) head/converters/p5-String-SetUTF8/pkg-plist (props changed) head/converters/p5-Text-Iconv/pkg-plist (props changed) head/converters/p5-Text-Unidecode/pkg-plist (props changed) head/converters/p5-Unicode-Map/pkg-plist (props changed) head/converters/p5-Unicode-Map8/pkg-plist (props changed) head/converters/p5-Unicode-MapUTF8/pkg-plist (props changed) head/converters/p5-Unicode-RecursiveDowngrade/pkg-plist (props changed) head/converters/p5-Unicode-String/pkg-plist (props changed) head/converters/p5-Unicode-Stringprep/pkg-plist (props changed) head/converters/p5-Unicode-UTF8simple/pkg-plist (props changed) head/converters/p5-XML-WBXML/pkg-plist (props changed) head/converters/p5-bsdconv/pkg-plist (props changed) head/converters/psiconv/pkg-plist (props changed) head/converters/py-bsdconv/pkg-plist (props changed) head/converters/py-pisa/pkg-plist (props changed) head/converters/py-zfec/pkg-plist (props changed) head/converters/recode/pkg-plist (props changed) head/converters/shftool/pkg-plist (props changed) head/converters/trans/pkg-plist (props changed) head/converters/wkhtmltopdf/pkg-plist (props changed) head/converters/zbase32/pkg-plist (props changed) head/databases/WWWdb/pkg-plist (props changed) head/databases/adminer/pkg-plist (props changed) head/databases/adodb/pkg-plist (props changed) head/databases/adodb5/pkg-plist (props changed) head/databases/akonadi-googledata/pkg-plist (props changed) head/databases/bbdb/pkg-plist (props changed) head/databases/buzhug/pkg-plist (props changed) head/databases/c3p0/pkg-plist (props changed) head/databases/cdb/pkg-plist (props changed) head/databases/cego/pkg-plist (props changed) head/databases/credis/pkg-plist (props changed) head/databases/cyrus-imspd/pkg-plist (props changed) head/databases/dalmp/pkg-plist (props changed) head/databases/datamodeler/pkg-plist (props changed) head/databases/db4/pkg-plist (props changed) head/databases/db41/pkg-plist (props changed) head/databases/db42/pkg-plist (props changed) head/databases/db43/pkg-plist (props changed) head/databases/db44/pkg-plist (props changed) head/databases/db46/pkg-plist (props changed) head/databases/db47/pkg-plist (props changed) head/databases/db48/pkg-plist (props changed) head/databases/db4o-mono/pkg-plist (props changed) head/databases/dbXML/pkg-plist (props changed) head/databases/dbconnect/pkg-plist (props changed) head/databases/dbf/pkg-plist (props changed) head/databases/dbh/pkg-plist (props changed) head/databases/dbow/pkg-plist (props changed) head/databases/dbtool/pkg-plist (props changed) head/databases/emma/pkg-plist (props changed) head/databases/epgsql/pkg-plist (props changed) head/databases/erlang-mysql/pkg-plist (props changed) head/databases/evolution-data-server/pkg-plist (props changed) head/databases/exist/pkg-plist (props changed) head/databases/fastdb/pkg-plist (props changed) head/databases/firebird20-server/pkg-plist (props changed) head/databases/firebird20-server/pkg-plist.client (props changed) head/databases/firebird21-server/pkg-plist (props changed) head/databases/firebird21-server/pkg-plist.client (props changed) head/databases/firebird25-server/pkg-plist (props changed) head/databases/firebird25-server/pkg-plist.client (props changed) head/databases/flamerobin/pkg-plist (props changed) head/databases/flare/pkg-plist (props changed) head/databases/fortytwo-bdb/pkg-plist (props changed) head/databases/fpc-gdbm/pkg-plist (props changed) head/databases/fpc-ibase/pkg-plist (props changed) head/databases/fpc-mysql/pkg-plist (props changed) head/databases/fpc-odbc/pkg-plist (props changed) head/databases/fpc-oracle/pkg-plist (props changed) head/databases/fpc-postgres/pkg-plist (props changed) head/databases/fpc-pxlib/pkg-plist (props changed) head/databases/fpc-sqlite/pkg-plist (props changed) head/databases/freetds-devel/pkg-plist (props changed) head/databases/freetds/pkg-plist (props changed) head/databases/frontbase/pkg-plist (props changed) head/databases/gdbm/pkg-plist (props changed) head/databases/gigabase/pkg-plist (props changed) head/databases/gnats4/pkg-plist (props changed) head/databases/gnatsweb4/pkg-plist (props changed) head/databases/grass/pkg-plist (props changed) head/databases/gtksql/pkg-plist (props changed) head/databases/hamsterdb/pkg-plist (props changed) head/databases/hiredis/pkg-plist (props changed) head/databases/hk_classes/pkg-plist (props changed) head/databases/innotop/pkg-plist (props changed) head/databases/ip4r/pkg-plist (props changed) head/databases/jasperserver/pkg-plist (props changed) head/databases/jdb/pkg-plist (props changed) head/databases/kinterbasdb/pkg-plist (props changed) head/databases/kumofs/pkg-plist (props changed) head/databases/libdbi-drivers/pkg-plist (props changed) head/databases/libdbi/pkg-plist (props changed) head/databases/libdrizzle/pkg-plist (props changed) head/databases/libgda2/pkg-plist (props changed) head/databases/libgda3-firebird/pkg-plist (props changed) head/databases/libgda3-freetds/pkg-plist (props changed) head/databases/libgda3-ldap/pkg-plist (props changed) head/databases/libgda3-mdb/pkg-plist (props changed) head/databases/libgda3-mysql/pkg-plist (props changed) head/databases/libgda3-odbc/pkg-plist (props changed) head/databases/libgda3-postgresql/pkg-plist (props changed) head/databases/libgda3/pkg-plist (props changed) head/databases/libgda4-bdb/pkg-plist (props changed) head/databases/libgda4-jdbc/pkg-plist (props changed) head/databases/libgda4-mdb/pkg-plist (props changed) head/databases/libgda4-mysql/pkg-plist (props changed) head/databases/libgda4-postgresql/pkg-plist (props changed) head/databases/libgda5-bdb/pkg-plist (props changed) head/databases/libgda5-jdbc/pkg-plist (props changed) head/databases/libgda5-mdb/pkg-plist (props changed) head/databases/libgda5-mysql/pkg-plist (props changed) head/databases/libgda5-postgresql/pkg-plist (props changed) head/databases/libgdamm/pkg-plist (props changed) head/databases/libgnomedb/pkg-plist (props changed) head/databases/libhsclient/pkg-plist (props changed) head/databases/libiodbc/pkg-plist (props changed) head/databases/libmemcache/pkg-plist (props changed) head/databases/libmemcached/pkg-plist (props changed) head/databases/libmongo-client/pkg-plist (props changed) head/databases/libodbc++/pkg-plist (props changed) head/databases/libsdb/pkg-plist (props changed) head/databases/libzdb/pkg-plist (props changed) head/databases/linux-oracle-instantclient-basic/pkg-plist (props changed) head/databases/linux-oracle-instantclient-sdk/pkg-plist (props changed) head/databases/linux-oracle-instantclient-sqlplus/pkg-plist (props changed) head/databases/liquibase/pkg-plist (props changed) head/databases/lsdb/pkg-plist (props changed) head/databases/luasql-mysql/pkg-plist (props changed) head/databases/ludia/pkg-plist (props changed) head/databases/mantis/pkg-plist (props changed) head/databases/mariadb-client/pkg-plist (props changed) head/databases/mariadb-scripts/pkg-plist (props changed) head/databases/mariadb-server/pkg-plist (props changed) head/databases/mdbtools/pkg-plist (props changed) head/databases/mdcached/pkg-plist (props changed) head/databases/memcachedb/pkg-plist (props changed) head/databases/memcacheq/pkg-plist (props changed) head/databases/mergeant/pkg-plist (props changed) head/databases/metakit/pkg-plist (props changed) head/databases/msql/pkg-plist (props changed) head/databases/msql3/pkg-plist (props changed) head/databases/mtop/pkg-plist (props changed) head/databases/mysql++1/pkg-plist (props changed) head/databases/mysql++3/pkg-plist (props changed) head/databases/mysql-connector-odbc/pkg-plist (props changed) head/databases/mysql-q4m/pkg-plist (props changed) head/databases/mysql-workbench51/pkg-plist (props changed) head/databases/mysql2odbc/pkg-plist (props changed) head/databases/mysql51-server/pkg-plist (props changed) head/databases/mysql51-server/pkg-plist.client (props changed) head/databases/mysql51-server/pkg-plist.scripts (props changed) head/databases/mysql55-client/pkg-plist (props changed) head/databases/mysql55-server/pkg-plist (props changed) head/databases/mysql56-client/pkg-plist (props changed) head/databases/mysql56-server/pkg-plist (props changed) head/databases/mysqlard/pkg-plist (props changed) head/databases/mysqlcppapi/pkg-plist (props changed) head/databases/mysqldumper/pkg-plist (props changed) head/databases/mysqltcl/pkg-plist (props changed) head/databases/mywwwatcher/pkg-plist (props changed) head/databases/nagios-check_postgres_replication/pkg-plist (props changed) head/databases/namazu2/pkg-plist (props changed) head/databases/opendbx/pkg-plist (props changed) head/databases/oracle7-client/pkg-plist (props changed) head/databases/oracle8-client/pkg-plist (props changed) head/databases/oracle_odbc_driver/pkg-plist (props changed) head/databases/p5-Amazon-SimpleDB/pkg-plist (props changed) head/databases/p5-Amon2-DBI/pkg-plist (props changed) head/databases/p5-AnyEvent-DBD-Pg/pkg-plist (props changed) head/databases/p5-AnyEvent-Memcached/pkg-plist (props changed) head/databases/p5-AnyEvent-Redis/pkg-plist (props changed) head/databases/p5-AsciiDB-TagFile/pkg-plist (props changed) head/databases/p5-Bucardo/pkg-plist (props changed) head/databases/p5-CDB_File-Generator/pkg-plist (props changed) head/databases/p5-CDB_File/pkg-plist (props changed) head/databases/p5-Cache-BDB/pkg-plist (props changed) head/databases/p5-Cache-Memcached-Fast/pkg-plist (props changed) head/databases/p5-Cache-Memcached-Managed/pkg-plist (props changed) head/databases/p5-Cache-Memcached-XS/pkg-plist (props changed) head/databases/p5-Cache-Memcached-libmemcached/pkg-plist (props changed) head/databases/p5-Cache-Memcached/pkg-plist (props changed) head/databases/p5-Class-DBI-AbstractSearch/pkg-plist (props changed) head/databases/p5-Class-DBI-AsForm/pkg-plist (props changed) head/databases/p5-Class-DBI-AutoLoader/pkg-plist (props changed) head/databases/p5-Class-DBI-BaseDSN/pkg-plist (props changed) head/databases/p5-Class-DBI-DATA-Schema/pkg-plist (props changed) head/databases/p5-Class-DBI-DDL/pkg-plist (props changed) head/databases/p5-Class-DBI-FromCGI/pkg-plist (props changed) head/databases/p5-Class-DBI-LazyInflate/pkg-plist (props changed) head/databases/p5-Class-DBI-Lite/pkg-plist (props changed) head/databases/p5-Class-DBI-Loader-Relationship/pkg-plist (props changed) head/databases/p5-Class-DBI-Oracle/pkg-plist (props changed) head/databases/p5-Class-DBI-Pager/pkg-plist (props changed) head/databases/p5-Class-DBI-Pg/pkg-plist (props changed) head/databases/p5-Class-DBI-Plugin-AbstractCount/pkg-plist (props changed) head/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/pkg-plist (props changed) head/databases/p5-Class-DBI-Plugin-Iterator/pkg-plist (props changed) head/databases/p5-Class-DBI-Plugin-Pager/pkg-plist (props changed) head/databases/p5-Class-DBI-Plugin-RetrieveAll/pkg-plist (props changed) head/databases/p5-Class-DBI-Plugin-Senna/pkg-plist (props changed) head/databases/p5-Class-DBI-Plugin-Type/pkg-plist (props changed) head/databases/p5-Class-DBI-Plugin/pkg-plist (props changed) head/databases/p5-Class-DBI-Replication/pkg-plist (props changed) head/databases/p5-Class-DBI-SAK/pkg-plist (props changed) head/databases/p5-Class-DBI-SQLite/pkg-plist (props changed) head/databases/p5-Class-DBI-Sweet/pkg-plist (props changed) head/databases/p5-Class-DBI-ToSax/pkg-plist (props changed) head/databases/p5-Class-DBI-Untaint/pkg-plist (props changed) head/databases/p5-Class-DBI-mysql/pkg-plist (props changed) head/databases/p5-Class-DBI/pkg-plist (props changed) head/databases/p5-Class-Inflate/pkg-plist (props changed) head/databases/p5-DBD-AnyData/pkg-plist (props changed) head/databases/p5-DBD-CSV/pkg-plist (props changed) head/databases/p5-DBD-Excel/pkg-plist (props changed) head/databases/p5-DBD-FrontBase/pkg-plist (props changed) head/databases/p5-DBD-Google/pkg-plist (props changed) head/databases/p5-DBD-LDAP/pkg-plist (props changed) head/databases/p5-DBD-Mock/pkg-plist (props changed) head/databases/p5-DBD-Multi/pkg-plist (props changed) head/databases/p5-DBD-Pg/pkg-plist (props changed) head/databases/p5-DBD-PgLite/pkg-plist (props changed) head/databases/p5-DBD-PgPP/pkg-plist (props changed) head/databases/p5-DBD-SQLite/pkg-plist (props changed) head/databases/p5-DBD-SQLite2/pkg-plist (props changed) head/databases/p5-DBD-Sybase/pkg-plist (props changed) head/databases/p5-DBD-XBase/pkg-plist (props changed) head/databases/p5-DBI-Shell/pkg-plist (props changed) head/databases/p5-DBICx-Deploy/pkg-plist (props changed) head/databases/p5-DBICx-MapMaker/pkg-plist (props changed) head/databases/p5-DBICx-TxnInsert/pkg-plist (props changed) head/databases/p5-DBIWrapper/pkg-plist (props changed) head/databases/p5-DBIx-Abstract/pkg-plist (props changed) head/databases/p5-DBIx-AnyDBD/pkg-plist (props changed) head/databases/p5-DBIx-Browse/pkg-plist (props changed) head/databases/p5-DBIx-Class-AsFdat/pkg-plist (props changed) head/databases/p5-DBIx-Class-Candy/pkg-plist (props changed) head/databases/p5-DBIx-Class-CustomPrefetch/pkg-plist (props changed) head/databases/p5-DBIx-Class-DateTime-Epoch/pkg-plist (props changed) head/databases/p5-DBIx-Class-DeploymentHandler/pkg-plist (props changed) head/databases/p5-DBIx-Class-DigestColumns/pkg-plist (props changed) head/databases/p5-DBIx-Class-DynamicDefault/pkg-plist (props changed) head/databases/p5-DBIx-Class-DynamicSubclass/pkg-plist (props changed) head/databases/p5-DBIx-Class-EncodeColumns/pkg-plist (props changed) head/databases/p5-DBIx-Class-EncodedColumn/pkg-plist (props changed) head/databases/p5-DBIx-Class-Fixtures/pkg-plist (props changed) head/databases/p5-DBIx-Class-FrozenColumns/pkg-plist (props changed) head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/pkg-plist (props changed) head/databases/p5-DBIx-Class-InflateColumn-FS/pkg-plist (props changed) head/databases/p5-DBIx-Class-InflateColumn-IP/pkg-plist (props changed) head/databases/p5-DBIx-Class-IntrospectableM2M/pkg-plist (props changed) head/databases/p5-DBIx-Class-Loader/pkg-plist (props changed) head/databases/p5-DBIx-Class-Migration/pkg-plist (props changed) head/databases/p5-DBIx-Class-QueryLog/pkg-plist (props changed) head/databases/p5-DBIx-Class-QueryProfiler/pkg-plist (props changed) head/databases/p5-DBIx-Class-ResultSet-HashRef/pkg-plist (props changed) head/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/pkg-plist (props changed) head/databases/p5-DBIx-Class-Schema-PopulateMore/pkg-plist (props changed) head/databases/p5-DBIx-Class-TimeStamp/pkg-plist (props changed) head/databases/p5-DBIx-Class-Tree-NestedSet/pkg-plist (props changed) head/databases/p5-DBIx-Class-Tree/pkg-plist (props changed) head/databases/p5-DBIx-Class-UUIDColumns/pkg-plist (props changed) head/databases/p5-DBIx-Class-VirtualColumns/pkg-plist (props changed) head/databases/p5-DBIx-Class-WebForm/pkg-plist (props changed) head/databases/p5-DBIx-Class/pkg-plist (props changed) head/databases/p5-DBIx-Connector/pkg-plist (props changed) head/databases/p5-DBIx-ContextualFetch/pkg-plist (props changed) head/databases/p5-DBIx-DBHResolver/pkg-plist (props changed) head/databases/p5-DBIx-DataSource/pkg-plist (props changed) head/databases/p5-DBIx-Ease/pkg-plist (props changed) head/databases/p5-DBIx-HA/pkg-plist (props changed) head/databases/p5-DBIx-Inspector/pkg-plist (props changed) head/databases/p5-DBIx-Log4perl/pkg-plist (props changed) head/databases/p5-DBIx-MySQLSequence/pkg-plist (props changed) head/databases/p5-DBIx-NoSQL/pkg-plist (props changed) head/databases/p5-DBIx-Password/pkg-plist (props changed) head/databases/p5-DBIx-Perlish/pkg-plist (props changed) head/databases/p5-DBIx-QueryLog/pkg-plist (props changed) head/databases/p5-DBIx-Recordset/pkg-plist (props changed) head/databases/p5-DBIx-RetryOverDisconnects/pkg-plist (props changed) head/databases/p5-DBIx-SQLEngine/pkg-plist (props changed) head/databases/p5-DBIx-SQLite-Simple/pkg-plist (props changed) head/databases/p5-DBIx-SearchBuilder/pkg-plist (props changed) head/databases/p5-DBIx-Simple/pkg-plist (props changed) head/databases/p5-DBIx-Skinny-InflateColumn-DateTime/pkg-plist (props changed) head/databases/p5-DBIx-Skinny-Mixin-DBHResolver/pkg-plist (props changed) head/databases/p5-DBIx-Skinny-Pager/pkg-plist (props changed) head/databases/p5-DBIx-Skinny-Schema-Loader/pkg-plist (props changed) head/databases/p5-DBIx-Skinny/pkg-plist (props changed) head/databases/p5-DBIx-TableHash/pkg-plist (props changed) head/databases/p5-DBIx-TransactionManager/pkg-plist (props changed) head/databases/p5-DBIx-VersionedDDL/pkg-plist (props changed) head/databases/p5-DBIx-Wrapper/pkg-plist (props changed) head/databases/p5-DBIx-XHTML_Table/pkg-plist (props changed) head/databases/p5-DBIx-XML_RDB/pkg-plist (props changed) head/databases/p5-DBM-Deep/pkg-plist (props changed) head/databases/p5-DMOZ-ParseRDF/pkg-plist (props changed) head/databases/p5-DWH_File/pkg-plist (props changed) head/databases/p5-Dancer-Plugin-Redis/pkg-plist (props changed) head/databases/p5-Dancer-Session-Memcached/pkg-plist (props changed) head/databases/p5-Data-Page/pkg-plist (props changed) head/databases/p5-Data-Pageset/pkg-plist (props changed) head/databases/p5-Exception-Class-DBI/pkg-plist (props changed) head/databases/p5-GDBM/pkg-plist (props changed) head/databases/p5-Genezzo/pkg-plist (props changed) head/databases/p5-GraphViz-DBI/pkg-plist (props changed) head/databases/p5-HTML-FormHandler-Model-DBIC/pkg-plist (props changed) head/databases/p5-Ima-DBI-Contextual/pkg-plist (props changed) head/databases/p5-Ima-DBI/pkg-plist (props changed) head/databases/p5-Iterator-DBI/pkg-plist (props changed) head/databases/p5-KyotoCabinet/pkg-plist (props changed) head/databases/p5-MLDBM-Sync/pkg-plist (props changed) head/databases/p5-MLDBM/pkg-plist (props changed) head/databases/p5-Memcached-libmemcached/pkg-plist (props changed) head/databases/p5-Metadata/pkg-plist (props changed) head/databases/p5-MongoDB/pkg-plist (props changed) head/databases/p5-MySQL-Diff/pkg-plist (props changed) head/databases/p5-ORLite-Migrate/pkg-plist (props changed) head/databases/p5-ORLite/pkg-plist (props changed) head/databases/p5-Oryx/pkg-plist (props changed) head/databases/p5-POE-Component-DBIAgent/pkg-plist (props changed) head/databases/p5-POE-Component-EasyDBI/pkg-plist (props changed) head/databases/p5-POE-Component-LaDBI/pkg-plist (props changed) head/databases/p5-POE-Component-RRDTool/pkg-plist (props changed) head/databases/p5-Pg/pkg-plist (props changed) head/databases/p5-RRD-Simple/pkg-plist (props changed) head/databases/p5-Redis-hiredis/pkg-plist (props changed) head/databases/p5-Redis/pkg-plist (props changed) head/databases/p5-Relations-Query/pkg-plist (props changed) head/databases/p5-Relations/pkg-plist (props changed) head/databases/p5-ResourcePool-Resource-DBI/pkg-plist (props changed) head/databases/p5-Rose-DB-Object/pkg-plist (props changed) head/databases/p5-Rose-DBx-Object-MoreHelpers/pkg-plist (props changed) head/databases/p5-Rose-DBx-Object-Renderer/pkg-plist (props changed) head/databases/p5-SQL-Abstract-Limit/pkg-plist (props changed) head/databases/p5-SQL-Abstract-Plugin-InsertMulti/pkg-plist (props changed) head/databases/p5-SQL-Abstract/pkg-plist (props changed) head/databases/p5-SQL-Interp/pkg-plist (props changed) head/databases/p5-SQL-Maker/pkg-plist (props changed) head/databases/p5-SQL-ReservedWords/pkg-plist (props changed) head/databases/p5-SQL-Statement/pkg-plist (props changed) head/databases/p5-SQLite-Work/pkg-plist (props changed) head/databases/p5-Search-InvertedIndex/pkg-plist (props changed) head/databases/p5-Search-Namazu/pkg-plist (props changed) head/databases/p5-Search-Xapian10/pkg-plist (props changed) head/databases/p5-T2/pkg-plist (props changed) head/databases/p5-Tangram/pkg-plist (props changed) head/databases/p5-Template-DBI/pkg-plist (props changed) head/databases/p5-Teng/pkg-plist (props changed) head/databases/p5-Test-Cukes/pkg-plist (props changed) head/databases/p5-Test-Database/pkg-plist (props changed) head/databases/p5-Test-DatabaseRow/pkg-plist (props changed) head/databases/p5-Test-Fixture-DBI/pkg-plist (props changed) head/databases/p5-Test-mysqld/pkg-plist (props changed) head/databases/p5-Test-postgresql/pkg-plist (props changed) head/databases/p5-Text-Query-SQL/pkg-plist (props changed) head/databases/p5-Text-xSV/pkg-plist (props changed) head/databases/p5-Tie-DBI/pkg-plist (props changed) head/databases/p5-Time-Piece-MySQL/pkg-plist (props changed) head/databases/p5-TokyoCabinet/pkg-plist (props changed) head/databases/p5-hp200lx-db/pkg-plist (props changed) head/databases/p5-qdbm/pkg-plist (props changed) head/databases/p5-tokyotyrant/pkg-plist (props changed) head/databases/pecl-memcache/pkg-plist (props changed) head/databases/pg_filedump/pkg-plist (props changed) head/databases/pg_statsinfo/pkg-plist (props changed) head/databases/pgaccess/pkg-plist (props changed) head/databases/pgbouncer/pkg-plist (props changed) head/databases/pgfouine/pkg-plist (props changed) head/databases/pglesslog/pkg-plist (props changed) head/databases/pgloader/pkg-plist (props changed) head/databases/pgpool-II-22/pkg-plist (props changed) head/databases/pgpool-II-23/pkg-plist (props changed) head/databases/pgpool-II-30/pkg-plist (props changed) head/databases/pgpool-II/pkg-plist (props changed) head/databases/pgpool/pkg-plist (props changed) head/databases/pgpoolAdmin/pkg-plist (props changed) head/databases/pgtcl/pkg-plist (props changed) head/databases/pgtop/pkg-plist (props changed) head/databases/pgtune/pkg-plist (props changed) head/databases/php-adodb-ext/pkg-plist (props changed) head/databases/php5-creole/pkg-plist (props changed) head/databases/php5-propel/pkg-plist (props changed) head/databases/phpmyadmin/pkg-plist-chunk (props changed) head/databases/postgresql-libpgeasy/pkg-plist (props changed) head/databases/postgresql-libpqxx/pkg-plist (props changed) head/databases/postgresql-pllua/pkg-plist (props changed) head/databases/postgresql-plproxy/pkg-plist (props changed) head/databases/postgresql-plruby/pkg-plist (props changed) head/databases/postgresql-plv8js/pkg-plist (props changed) head/databases/postgresql-repmgr/pkg-plist (props changed) head/databases/postgresql84-server/pkg-plist (props changed) head/databases/postgresql84-server/pkg-plist-client (props changed) head/databases/postgresql84-server/pkg-plist-contrib (props changed) head/databases/postgresql84-server/pkg-plist-plperl (props changed) head/databases/postgresql84-server/pkg-plist-plpython (props changed) head/databases/postgresql84-server/pkg-plist-pltcl (props changed) head/databases/postgresql84-server/pkg-plist-server (props changed) head/databases/postgresql90-server/pkg-plist (props changed) head/databases/postgresql90-server/pkg-plist-client (props changed) head/databases/postgresql90-server/pkg-plist-contrib (props changed) head/databases/postgresql90-server/pkg-plist-plperl (props changed) head/databases/postgresql90-server/pkg-plist-plpython (props changed) head/databases/postgresql90-server/pkg-plist-pltcl (props changed) head/databases/postgresql90-server/pkg-plist-server (props changed) head/databases/postgresql91-server/pkg-plist-client (props changed) head/databases/postgresql91-server/pkg-plist-contrib (props changed) head/databases/postgresql91-server/pkg-plist-plperl (props changed) head/databases/postgresql91-server/pkg-plist-pltcl (props changed) head/databases/postgresql91-server/pkg-plist-server (props changed) head/databases/postgresql92-server/pkg-plist-client (props changed) head/databases/postgresql92-server/pkg-plist-contrib (props changed) head/databases/postgresql92-server/pkg-plist-plperl (props changed) head/databases/postgresql92-server/pkg-plist-pltcl (props changed) head/databases/postgresql92-server/pkg-plist-server (props changed) head/databases/postgresql93-server/pkg-plist-client (props changed) head/databases/postgresql93-server/pkg-plist-contrib (props changed) head/databases/postgresql93-server/pkg-plist-plperl (props changed) head/databases/postgresql93-server/pkg-plist-pltcl (props changed) head/databases/postgresql93-server/pkg-plist-server (props changed) head/databases/postgresql_autodoc/pkg-plist (props changed) head/databases/powerarchitect/pkg-plist (props changed) head/databases/puredb/pkg-plist (props changed) head/databases/pxlib/pkg-plist (props changed) head/databases/pxtools/pkg-plist (props changed) head/databases/py-Elixir/pkg-plist (props changed) head/databases/py-apsw/pkg-plist (props changed) head/databases/py-bsddb3/pkg-plist (props changed) head/databases/py-cmemcache/pkg-plist (props changed) head/databases/py-couchdb/pkg-plist (props changed) head/databases/py-cql/pkg-plist (props changed) head/databases/py-dbf/pkg-plist (props changed) head/databases/py-dbutils/pkg-plist (props changed) head/databases/py-pg8000/pkg-plist (props changed) head/databases/py-pg_pqueue/pkg-plist (props changed) head/databases/py-postgresql/pkg-plist (props changed) head/databases/py-psycopg/pkg-plist (props changed) head/databases/py-pyPgSQL/pkg-plist (props changed) head/databases/py-pylibmc/pkg-plist (props changed) head/databases/py-qt4-sql/pkg-plist (props changed) head/databases/py-simplecouchdb/pkg-plist (props changed) head/databases/py-sqlalchemy06/pkg-plist (props changed) head/databases/py-sqlkit/pkg-plist (props changed) head/databases/py-sqlparse/pkg-plist (props changed) head/databases/py-sqlrelay/pkg-plist (props changed) head/databases/py-swift/pkg-plist (props changed) head/databases/py-sybase/pkg-plist (props changed) head/databases/py-whisper/pkg-plist (props changed) head/databases/pydbdesigner/pkg-plist (props changed) head/databases/pydbx/pkg-plist (props changed) head/databases/pyspatialite/pkg-plist (props changed) head/databases/qdbm-plus/pkg-plist (props changed) head/databases/qdbm/pkg-plist (props changed) head/databases/rdb/pkg-plist (props changed) head/databases/recutils/pkg-plist (props changed) head/databases/redis-devel/pkg-plist (props changed) head/databases/redis/pkg-plist (props changed) head/databases/rrdmerge/pkg-plist (props changed) head/databases/rrdtool/pkg-plist (props changed) head/databases/rrdtool10/pkg-plist (props changed) head/databases/rrdtool12/pkg-plist (props changed) head/databases/ruby-cdb/pkg-plist (props changed) head/databases/ruby-dbd_mysql/pkg-plist (props changed) head/databases/ruby-dbd_odbc/pkg-plist (props changed) head/databases/ruby-dbd_pg/pkg-plist (props changed) head/databases/ruby-dbd_sqlite/pkg-plist (props changed) head/databases/ruby-dbd_sqlite3/pkg-plist (props changed) head/databases/ruby-dbi/pkg-plist (props changed) head/databases/ruby-frontbase/pkg-plist (props changed) head/databases/ruby-msql/pkg-plist (props changed) head/databases/ruby-o_dbm/pkg-plist (props changed) head/databases/ruby-oci8/pkg-plist (props changed) head/databases/ruby-qdbm/pkg-plist (props changed) head/databases/ruby-rdbc1/pkg-plist (props changed) head/databases/ruby-sybct/pkg-plist (props changed) head/databases/ruby-tokyocabinet/pkg-plist (props changed) head/databases/sharedance/pkg-plist (props changed) head/databases/skytools/pkg-plist (props changed) head/databases/slony1/pkg-plist (props changed) head/databases/slony1v2/pkg-plist (props changed) head/databases/spatialite/pkg-plist (props changed) head/databases/sqlbuddy/pkg-plist (props changed) head/databases/sqlclient/pkg-plist (props changed) head/databases/sqldeveloper/pkg-plist (props changed) head/databases/sqlite2/pkg-plist (props changed) head/databases/sqliteman/pkg-plist (props changed) head/databases/sqlitemanager/pkg-plist (props changed) head/databases/sybtcl/pkg-plist (props changed) head/databases/tablelog/pkg-plist (props changed) head/databases/tcl-Mysql/pkg-plist (props changed) head/databases/tokyocabinet/pkg-plist (props changed) head/databases/tokyotyrant/pkg-plist (props changed) head/databases/tora/pkg-plist (props changed) head/databases/typhoon/pkg-plist (props changed) head/databases/unixODBC/pkg-plist (props changed) head/databases/usogres/pkg-plist (props changed) head/databases/virtuoso/pkg-plist (props changed) head/databases/wfb2sql/pkg-plist (props changed) head/databases/wmjsql/pkg-plist (props changed) head/databases/xapian-bindings/pkg-plist (props changed) head/databases/xapian-core10/pkg-plist (props changed) head/databases/xmbase-grok/pkg-plist (props changed) head/databases/zodb3/pkg-plist (props changed) head/deskutils/adesklets/pkg-plist (props changed) head/deskutils/affiche/pkg-plist (props changed) head/deskutils/akamaru/pkg-plist (props changed) head/deskutils/alacarte/pkg-plist (props changed) head/deskutils/appwrapper/pkg-plist (props changed) head/deskutils/babytrans/pkg-plist (props changed) head/deskutils/bitcollider/pkg-plist (props changed) head/deskutils/bmp-docklet/pkg-plist (props changed) head/deskutils/cairo-dock/pkg-plist (props changed) head/deskutils/cal/pkg-plist (props changed) head/deskutils/calcurse/pkg-plist (props changed) head/deskutils/cartotheque/pkg-plist (props changed) head/deskutils/charmap/pkg-plist (props changed) head/deskutils/charmtimetracker/pkg-plist (props changed) head/deskutils/conduit/pkg-plist (props changed) head/deskutils/conkyemail/pkg-plist (props changed) head/deskutils/conkyforecast/pkg-plist (props changed) head/deskutils/cycle/pkg-plist (props changed) head/deskutils/deskbar-applet/pkg-plist (props changed) head/deskutils/displaycalibrator/pkg-plist (props changed) head/deskutils/easystroke/pkg-plist (props changed) head/deskutils/etask/pkg-plist (props changed) head/deskutils/evolution-jescs/pkg-plist (props changed) head/deskutils/fbreader/pkg-plist (props changed) head/deskutils/freemind/pkg-plist (props changed) head/deskutils/fusenshi/pkg-plist (props changed) head/deskutils/ganttproject/pkg-plist (props changed) head/deskutils/gbirthday/pkg-plist (props changed) head/deskutils/gcal/pkg-plist (props changed) head/deskutils/gdesklets-recentlyused/pkg-plist (props changed) head/deskutils/gdesklets-starterbar/pkg-plist (props changed) head/deskutils/gdesklets/pkg-plist (props changed) head/deskutils/genius/pkg-plist (props changed) head/deskutils/gimmie/pkg-plist (props changed) head/deskutils/glabels/pkg-plist (props changed) head/deskutils/glipper/pkg-plist (props changed) head/deskutils/global-menu/pkg-plist (props changed) head/deskutils/gnome-blog/pkg-plist (props changed) head/deskutils/gnome-main-menu/pkg-plist (props changed) head/deskutils/gnome-utils/pkg-plist (props changed) head/deskutils/gnote/pkg-plist (props changed) head/deskutils/gnotime/pkg-plist (props changed) head/deskutils/gnustep-notebook/pkg-plist (props changed) head/deskutils/gnustep-wrapper/pkg-plist (props changed) head/deskutils/griffith/pkg-plist (props changed) head/deskutils/gruler/pkg-plist (props changed) head/deskutils/gtimer/pkg-plist (props changed) head/deskutils/gtodo/pkg-plist (props changed) head/deskutils/gtweakui/pkg-plist (props changed) head/deskutils/gucharmap/pkg-plist (props changed) head/deskutils/gworkspace-gwmetadata/pkg-plist (props changed) head/deskutils/gworkspace/pkg-plist (props changed) head/deskutils/gxmessage/pkg-plist (props changed) head/deskutils/gxneur/pkg-plist (props changed) head/deskutils/hamster-applet/pkg-plist (props changed) head/deskutils/helpviewer/pkg-plist (props changed) head/deskutils/horde3-hermes/pkg-plist (props changed) head/deskutils/horde3-klutz/pkg-plist (props changed) head/deskutils/horde3-kronolith/pkg-plist (props changed) head/deskutils/horde3-mnemo/pkg-plist (props changed) head/deskutils/horde3-nag/pkg-plist (props changed) head/deskutils/hot-babe/pkg-plist (props changed) head/deskutils/howm/pkg-plist (props changed) head/deskutils/ical/pkg-plist (props changed) head/deskutils/ithought/pkg-plist (props changed) head/deskutils/kchmviewer-kde4/pkg-plist (props changed) head/deskutils/kdepim44/pkg-plist (props changed) head/deskutils/kruler/pkg-plist (props changed) head/deskutils/ksshaskpass/pkg-plist (props changed) head/deskutils/kupfer/pkg-plist (props changed) head/deskutils/labyrinth/pkg-plist (props changed) head/deskutils/launchy/pkg-plist (props changed) head/deskutils/libgcal/pkg-plist (props changed) head/deskutils/libopensync-plugin-evolution2-devel/pkg-plist (props changed) head/deskutils/libopensync-plugin-evolution2/pkg-plist (props changed) head/deskutils/libopensync-plugin-file/pkg-plist (props changed) head/deskutils/libopensync-plugin-python/pkg-plist (props changed) head/deskutils/libopensync-plugin-sunbird/pkg-plist (props changed) head/deskutils/libopensync-plugin-synce-legacy/pkg-plist (props changed) head/deskutils/libopensync-plugin-vformat-devel/pkg-plist (props changed) head/deskutils/ljclive/pkg-plist (props changed) head/deskutils/logjam/pkg-plist (props changed) head/deskutils/lxshortcut/pkg-plist (props changed) head/deskutils/mate-character-map/pkg-plist (props changed) head/deskutils/mate-file-manager-open-terminal/pkg-plist (props changed) head/deskutils/mate-menu-editor/pkg-plist (props changed) head/deskutils/mate-notification-daemon/pkg-plist (props changed) head/deskutils/mate-utils/pkg-plist (props changed) head/deskutils/mcal/pkg-plist (props changed) head/deskutils/mdh/pkg-plist (props changed) head/deskutils/menumaker/pkg-plist (props changed) head/deskutils/mirall/pkg-plist (props changed) head/deskutils/mrundlg/pkg-plist (props changed) head/deskutils/multisync-backup/pkg-plist (props changed) head/deskutils/multisync-syncml/pkg-plist (props changed) head/deskutils/multisync/pkg-plist (props changed) head/deskutils/narval/pkg-plist (props changed) head/deskutils/nautilus-actions/pkg-plist (props changed) head/deskutils/nautilus-open-terminal/pkg-plist (props changed) head/deskutils/nautilus-sendto/pkg-plist (props changed) head/deskutils/notification-daemon/pkg-plist (props changed) head/deskutils/notify-osd/pkg-plist (props changed) head/deskutils/ontv/pkg-plist (props changed) head/deskutils/openproj/pkg-plist (props changed) head/deskutils/org-mode.el/pkg-plist (props changed) head/deskutils/osmo/pkg-plist (props changed) head/deskutils/p5-Data-ICal/pkg-plist (props changed) head/deskutils/p5-Goo/pkg-plist (props changed) head/deskutils/p5-ZConf-BGSet/pkg-plist (props changed) head/deskutils/p5-ZConf-Runner-GUI-GTK/pkg-plist (props changed) head/deskutils/p5-ZConf-Runner/pkg-plist (props changed) head/deskutils/pal/pkg-plist (props changed) head/deskutils/phpcollab/pkg-plist (props changed) head/deskutils/phpicalendar/pkg-plist (props changed) head/deskutils/plan/pkg-plist (props changed) head/deskutils/planner.el/pkg-plist (props changed) head/deskutils/planner/pkg-plist (props changed) head/deskutils/plans/pkg-plist (props changed) head/deskutils/plasma-applet-cwp/pkg-plist (props changed) head/deskutils/plasma-applet-daisy/pkg-plist (props changed) head/deskutils/plasma-applet-fancytasks/pkg-plist (props changed) head/deskutils/plasma-applet-serverstatuswidget/pkg-plist (props changed) head/deskutils/plasma-applet-teacooker/pkg-plist (props changed) head/deskutils/plasma-applet-yawp/pkg-plist (props changed) head/deskutils/plopfolio/pkg-plist (props changed) head/deskutils/preferencepanes/pkg-plist (props changed) head/deskutils/py-vobject/pkg-plist (props changed) head/deskutils/pybookreader/pkg-plist (props changed) head/deskutils/qlabels/pkg-plist (props changed) head/deskutils/qtm/pkg-plist (props changed) head/deskutils/remember.el/pkg-plist (props changed) head/deskutils/rolo/pkg-plist (props changed) head/deskutils/rox-memo/pkg-plist (props changed) head/deskutils/silence/pkg-plist (props changed) head/deskutils/simpleagenda/pkg-plist (props changed) head/deskutils/simplegroupware/pkg-plist (props changed) head/deskutils/splashsetter/pkg-plist (props changed) head/deskutils/sugarcrm/pkg-plist (props changed) head/deskutils/superkaramba/pkg-plist (props changed) head/deskutils/surrealtodo/pkg-plist (props changed) head/deskutils/systempreferences/pkg-plist (props changed) head/deskutils/tagutils/pkg-plist (props changed) head/deskutils/taskcoach/pkg-plist (props changed) head/deskutils/teapot/pkg-plist (props changed) head/deskutils/tel/pkg-plist (props changed) head/deskutils/timer-applet/pkg-plist (props changed) head/deskutils/tomboy-plugin-latex/pkg-plist (props changed) head/deskutils/tomboy-plugin-reminder/pkg-plist (props changed) head/deskutils/tomboy-plugin-todo/pkg-plist (props changed) head/deskutils/tomboy/pkg-plist (props changed) head/deskutils/toolboxkit/pkg-plist (props changed) head/deskutils/vboxgtk/pkg-plist (props changed) head/deskutils/virt-manager/pkg-plist (props changed) head/deskutils/vym/pkg-plist (props changed) head/deskutils/x-tile/pkg-plist (props changed) head/deskutils/xcalendar/pkg-plist (props changed) head/deskutils/xchm/pkg-plist (props changed) head/deskutils/xfce4-generic-slider/pkg-plist (props changed) head/deskutils/xfce4-notification-daemon/pkg-plist (props changed) head/deskutils/xmaddressbook/pkg-plist (props changed) head/deskutils/xmdiary/pkg-plist (props changed) head/deskutils/xneur/pkg-plist (props changed) head/deskutils/xpostit/pkg-plist (props changed) head/deskutils/xpostitPlus/pkg-plist (props changed) head/devel/ORBit2/pkg-plist (props changed) head/devel/SpecTcl/pkg-plist (props changed) head/devel/aap/pkg-plist (props changed) head/devel/adabooch-doc-html/pkg-plist (props changed) head/devel/adabooch/pkg-plist (props changed) head/devel/adacurses/pkg-plist (props changed) head/devel/adasdl/pkg-plist (props changed) head/devel/adime/pkg-plist (props changed) head/devel/aegis/pkg-plist (props changed) head/devel/afay/pkg-plist (props changed) head/devel/alf/pkg-plist (props changed) head/devel/anjuta-extras/pkg-plist (props changed) head/devel/antlr/pkg-plist (props changed) head/devel/apache-ant/pkg-plist (props changed) head/devel/apiextractor/pkg-plist (props changed) head/devel/apr2/pkg-plist (props changed) head/devel/arduino-glcd/pkg-plist (props changed) head/devel/argtable/pkg-plist (props changed) head/devel/arm-eabi-binutils/pkg-plist (props changed) head/devel/arm-eabi-gcc/pkg-plist (props changed) head/devel/aros-sdk/pkg-plist (props changed) head/devel/art/pkg-plist (props changed) head/devel/asdlgen/pkg-plist (props changed) head/devel/asl/pkg-plist (props changed) head/devel/atlas/pkg-plist (props changed) head/devel/autobook/pkg-plist (props changed) head/devel/autoconf-archive/pkg-plist (props changed) head/devel/autoconf/pkg-plist (props changed) head/devel/autoconf213/pkg-plist (props changed) head/devel/autodist/pkg-plist (props changed) head/devel/autogen/pkg-plist (props changed) head/devel/automake14/pkg-plist (props changed) head/devel/automoc4/pkg-plist (props changed) head/devel/avarice/pkg-plist (props changed) head/devel/avltree/pkg-plist (props changed) head/devel/avr-binutils/pkg-plist (props changed) head/devel/avr-gcc/pkg-plist (props changed) head/devel/avr-gdb/pkg-plist (props changed) head/devel/avr-libc/pkg-plist (props changed) head/devel/avr-libc/pkg-plist.doc (props changed) head/devel/avrdude/pkg-plist (props changed) head/devel/avro-c/pkg-plist (props changed) head/devel/avro-cpp/pkg-plist (props changed) head/devel/baz/pkg-plist (props changed) head/devel/bcc/pkg-plist (props changed) head/devel/bcpp/pkg-plist (props changed) head/devel/bennugd-modules/pkg-plist (props changed) head/devel/bglibs/pkg-plist (props changed) head/devel/bicyclerepair/pkg-plist (props changed) head/devel/binutils/pkg-plist (props changed) head/devel/bison/pkg-plist (props changed) head/devel/bisoncpp/pkg-plist (props changed) head/devel/bmake/pkg-plist (props changed) head/devel/bncsutil-ghost++/pkg-plist (props changed) head/devel/boaconstructor/pkg-plist (props changed) head/devel/boehm-gc/pkg-plist (props changed) head/devel/boost-docs/pkg-plist (props changed) head/devel/boost-libs/pkg-plist (props changed) head/devel/boost-python-libs/pkg-plist (props changed) head/devel/bouml-doc/pkg-plist (props changed) head/devel/bsdbuild/pkg-plist (props changed) head/devel/bufferpool/pkg-plist (props changed) head/devel/bug-buddy/pkg-plist (props changed) head/devel/bugzilla40/pkg-plist (props changed) head/devel/build/pkg-plist (props changed) head/devel/buildtool-doc/pkg-plist (props changed) head/devel/buildtool/pkg-plist (props changed) head/devel/bullet/pkg-plist (props changed) head/devel/bzapi/pkg-plist (props changed) head/devel/bzr-grep/pkg-plist (props changed) head/devel/bzr/pkg-plist (props changed) head/devel/bzrtools/pkg-plist (props changed) head/devel/c-unit/pkg-plist (props changed) head/devel/c4/pkg-plist (props changed) head/devel/cbind/pkg-plist (props changed) head/devel/cc65/pkg-plist (props changed) head/devel/ccache/pkg-plist (props changed) head/devel/ccrtp/pkg-plist (props changed) head/devel/cdash/pkg-plist (props changed) head/devel/cdialog/pkg-plist (props changed) head/devel/cdk/pkg-plist (props changed) head/devel/cedet/pkg-plist (props changed) head/devel/cflow/pkg-plist (props changed) head/devel/cflow2vcg/pkg-plist (props changed) head/devel/cgdb/pkg-plist (props changed) head/devel/cgit/pkg-plist (props changed) head/devel/cityhash/pkg-plist (props changed) head/devel/cl-alexandria/pkg-plist (props changed) head/devel/cl-asdf/pkg-plist (props changed) head/devel/cl-cffi/pkg-plist (props changed) head/devel/cl-infix/pkg-plist (props changed) head/devel/cl-port/pkg-plist (props changed) head/devel/cl-split-sequence/pkg-plist (props changed) head/devel/cl-trivial-features/pkg-plist (props changed) head/devel/cl-trivial-gray-streams/pkg-plist (props changed) head/devel/cl-uffi/pkg-plist (props changed) head/devel/cld/pkg-plist (props changed) head/devel/clewn/pkg-plist (props changed) head/devel/clint/pkg-plist (props changed) head/devel/clisp-hyperspec/pkg-plist (props changed) head/devel/cmake-fedora/pkg-plist (props changed) head/devel/cmake-gui/pkg-plist (props changed) head/devel/cmph/pkg-plist (props changed) head/devel/coccinelle/pkg-plist (props changed) head/devel/combat/pkg-plist (props changed) head/devel/common_lib/pkg-plist (props changed) head/devel/commoncpp/pkg-plist (props changed) head/devel/compiz-bcop/pkg-plist (props changed) head/devel/configkit/pkg-plist (props changed) head/devel/cons-test/pkg-plist (props changed) head/devel/cons/pkg-plist (props changed) head/devel/cook/pkg-plist (props changed) head/devel/covtool/pkg-plist (props changed) head/devel/cowlib/pkg-plist (props changed) head/devel/cpan-upload-http/pkg-plist (props changed) head/devel/cpan-upload/pkg-plist (props changed) head/devel/cppi/pkg-plist (props changed) head/devel/cppunit/pkg-plist (props changed) head/devel/cpuflags/pkg-plist (props changed) head/devel/cscope/pkg-plist (props changed) head/devel/cscout/pkg-plist (props changed) head/devel/csmith/pkg-plist (props changed) head/devel/csoap/pkg-plist (props changed) head/devel/ctags/pkg-plist (props changed) head/devel/cunit/pkg-plist (props changed) head/devel/cut/pkg-plist (props changed) head/devel/cutter/pkg-plist (props changed) head/devel/cvs+ipv6/pkg-plist (props changed) head/devel/cvs-devel/pkg-plist (props changed) head/devel/cvs/pkg-plist (props changed) head/devel/cvs2p4/pkg-plist (props changed) head/devel/cvschk/pkg-plist (props changed) head/devel/cvsd/pkg-plist (props changed) head/devel/cvsmonitor/pkg-plist (props changed) head/devel/cvsspam/pkg-plist (props changed) head/devel/cvsweb/pkg-plist (props changed) head/devel/cvsweb3/pkg-plist (props changed) head/devel/cvswrap/pkg-plist (props changed) head/devel/cweb/pkg-plist (props changed) head/devel/cxref/pkg-plist (props changed) head/devel/cxxtest/pkg-plist (props changed) head/devel/cxxtools/pkg-plist (props changed) head/devel/d-feet/pkg-plist (props changed) head/devel/darts/pkg-plist (props changed) head/devel/datadraw/pkg-plist (props changed) head/devel/dbus/pkg-plist (props changed) head/devel/ddd/pkg-plist (props changed) head/devel/dev86/pkg-plist (props changed) head/devel/devhelp/pkg-plist (props changed) head/devel/devtodo/pkg-plist (props changed) head/devel/ding-libs/pkg-plist (props changed) head/devel/directfb/pkg-plist (props changed) head/devel/dissy/pkg-plist (props changed) head/devel/distcc/pkg-plist (props changed) head/devel/distel/pkg-plist (props changed) head/devel/ditrack/pkg-plist (props changed) head/devel/djgpp-binutils/pkg-plist (props changed) head/devel/djgpp-crx/pkg-plist (props changed) head/devel/dmake/pkg-plist (props changed) head/devel/dmalloc/pkg-plist (props changed) head/devel/dotconf++/pkg-plist (props changed) head/devel/dotconf/pkg-plist (props changed) head/devel/dprog/pkg-plist (props changed) head/devel/dwarfdump/pkg-plist (props changed) head/devel/dyncall/pkg-plist (props changed) head/devel/e4graph/pkg-plist (props changed) head/devel/e_dbus/pkg-plist (props changed) head/devel/eblob/pkg-plist (props changed) head/devel/ecb/pkg-plist (props changed) head/devel/eclipse-eclemma/pkg-plist (props changed) head/devel/ecore-file/pkg-plist (props changed) head/devel/ecore-ipc/pkg-plist (props changed) head/devel/ecore-main/pkg-plist (props changed) head/devel/eet/pkg-plist (props changed) head/devel/eggdbus/pkg-plist (props changed) head/devel/eieio/pkg-plist (props changed) head/devel/eiffelstudio/pkg-plist (props changed) head/devel/eina/pkg-plist (props changed) head/devel/eio/pkg-plist (props changed) head/devel/elfio/pkg-plist (props changed) head/devel/elfsh/pkg-plist (props changed) head/devel/elib/pkg-plist (props changed) head/devel/entity/pkg-plist (props changed) head/devel/epm/pkg-plist (props changed) head/devel/epydoc/pkg-plist (props changed) head/devel/eric4/pkg-plist (props changed) head/devel/esdl/pkg-plist (props changed) head/devel/etl/pkg-plist (props changed) head/devel/eventxx/pkg-plist (props changed) head/devel/evolution-gconf-tools/pkg-plist (props changed) head/devel/exercisix/pkg-plist (props changed) head/devel/fam/pkg-plist (props changed) head/devel/fampp/pkg-plist (props changed) head/devel/fastcrc/pkg-plist (props changed) head/devel/fc++/pkg-plist (props changed) head/devel/ffcall/pkg-plist (props changed) head/devel/fga/pkg-plist (props changed) head/devel/fib/pkg-plist (props changed) head/devel/firmware-utils/pkg-plist (props changed) head/devel/flatzebra/pkg-plist (props changed) head/devel/flex-sdk/pkg-plist (props changed) head/devel/flex-sdk2/pkg-plist (props changed) head/devel/flex-sdk35/pkg-plist (props changed) head/devel/flex_compiler_shell/pkg-plist (props changed) head/devel/flick/pkg-plist (props changed) head/devel/flickrnet/pkg-plist (props changed) head/devel/flowdesigner/pkg-plist (props changed) head/devel/flyspray/pkg-plist (props changed) head/devel/fnccheck/pkg-plist (props changed) head/devel/fnorb/pkg-plist (props changed) head/devel/fortran-utils/pkg-plist (props changed) head/devel/fortytwo-encore/pkg-plist (props changed) head/devel/fpc-bfd/pkg-plist (props changed) head/devel/fpc-dbus/pkg-plist (props changed) head/devel/fpc-fcl-async/pkg-plist (props changed) head/devel/fpc-fcl-base/pkg-plist (props changed) head/devel/fpc-fcl-db/pkg-plist (props changed) head/devel/fpc-fcl-fpcunit/pkg-plist (props changed) head/devel/fpc-fcl-image/pkg-plist (props changed) head/devel/fpc-fcl-json/pkg-plist (props changed) head/devel/fpc-fcl-net/pkg-plist (props changed) head/devel/fpc-fcl-passrc/pkg-plist (props changed) head/devel/fpc-fcl-process/pkg-plist (props changed) head/devel/fpc-fcl-registry/pkg-plist (props changed) head/devel/fpc-fcl-res/pkg-plist (props changed) head/devel/fpc-fcl-web/pkg-plist (props changed) head/devel/fpc-fcl-xml/pkg-plist (props changed) head/devel/fpc-fpmkunit/pkg-plist (props changed) head/devel/fpc-fppkg/pkg-plist (props changed) head/devel/fpc-fv/pkg-plist (props changed) head/devel/fpc-gdbint/pkg-plist (props changed) head/devel/fpc-newt/pkg-plist (props changed) head/devel/fpc-pthreads/pkg-plist (props changed) head/devel/fpc-regexpr/pkg-plist (props changed) head/devel/fpc-sdl/pkg-plist (props changed) head/devel/fpc-symbolic/pkg-plist (props changed) head/devel/fpc-zlib/pkg-plist (props changed) head/devel/freeocl/pkg-plist (props changed) head/devel/frink/pkg-plist (props changed) head/devel/ftnchek/pkg-plist (props changed) head/devel/g-wrap/pkg-plist (props changed) head/devel/gaa/pkg-plist (props changed) head/devel/gamin/pkg-plist (props changed) head/devel/gauche-readline/pkg-plist (props changed) head/devel/gaul/pkg-plist (props changed) head/devel/gazpacho/pkg-plist (props changed) head/devel/gconf2/pkg-plist (props changed) head/devel/gconfmm26/pkg-plist (props changed) head/devel/gdb66/pkg-plist (props changed) head/devel/gearmand-devel/pkg-plist (props changed) head/devel/gearmand/pkg-plist (props changed) head/devel/gecode/pkg-plist (props changed) head/devel/generatorrunner/pkg-plist (props changed) head/devel/gettext-lint/pkg-plist (props changed) head/devel/gflags/pkg-plist (props changed) head/devel/giggle/pkg-plist (props changed) head/devel/gindent/pkg-plist (props changed) head/devel/gio-sharp/pkg-plist (props changed) head/devel/gitg/pkg-plist (props changed) head/devel/gitg0/pkg-plist (props changed) head/devel/glade2/pkg-plist (props changed) head/devel/glib-java/pkg-plist (props changed) head/devel/glib12/pkg-plist (props changed) head/devel/global/pkg-plist (props changed) head/devel/glog/pkg-plist (props changed) head/devel/glrparser/pkg-plist (props changed) head/devel/gmake/pkg-plist (props changed) head/devel/gnome-js-common/pkg-plist (props changed) head/devel/gnome-vfs-monikers/pkg-plist (props changed) head/devel/gnome-vfs/pkg-plist (props changed) head/devel/gnome-vfsmm/pkg-plist (props changed) head/devel/gnulibiberty/pkg-plist (props changed) head/devel/gnustep-make/pkg-plist (props changed) head/devel/goffice/pkg-plist (props changed) head/devel/google-gdata/pkg-plist (props changed) head/devel/google-sparsehash/pkg-plist (props changed) head/devel/googlemock/pkg-plist (props changed) head/devel/googletest/pkg-plist (props changed) head/devel/gorm/pkg-plist (props changed) head/devel/gperf/pkg-plist (props changed) head/devel/gprbuild/pkg-plist (props changed) head/devel/gpsim/pkg-plist (props changed) head/devel/gsoap/pkg-plist (props changed) head/devel/gtranslator/pkg-plist (props changed) head/devel/guichan/pkg-plist (props changed) head/devel/guikachu/pkg-plist (props changed) head/devel/guile-lib/pkg-plist (props changed) head/devel/guiloader-c++/pkg-plist (props changed) head/devel/guiloader/pkg-plist (props changed) head/devel/hachoir-core/pkg-plist (props changed) head/devel/hachoir-parser/pkg-plist (props changed) head/devel/hachoir-regex/pkg-plist (props changed) head/devel/hapy/pkg-plist (props changed) head/devel/hcs12mem/pkg-plist (props changed) head/devel/hgsvn/pkg-plist (props changed) head/devel/hgview/pkg-plist (props changed) head/devel/highlighterkit/pkg-plist (props changed) head/devel/horde3-chora/pkg-plist (props changed) head/devel/horde3-whups/pkg-plist (props changed) head/devel/hp48xgcc/pkg-plist (props changed) head/devel/hs-haddock/pkg-plist (props changed) head/devel/hyena/pkg-plist (props changed) head/devel/icmake/pkg-plist (props changed) head/devel/icu/pkg-plist (props changed) head/devel/idutils/pkg-plist (props changed) head/devel/imake/pkg-plist (props changed) head/devel/inilib/pkg-plist (props changed) head/devel/ioncube/pkg-plist (props changed) head/devel/ipython/pkg-plist (props changed) head/devel/ireport/pkg-plist (props changed) head/devel/ixlib/pkg-plist (props changed) head/devel/jam/pkg-plist (props changed) head/devel/jansson/pkg-plist (props changed) head/devel/jclassinfo/pkg-plist (props changed) head/devel/jech-dht/pkg-plist (props changed) head/devel/jep/pkg-plist (props changed) head/devel/jline/pkg-plist (props changed) head/devel/jrtplib/pkg-plist (props changed) head/devel/json-c/pkg-plist (props changed) head/devel/jtag/pkg-plist (props changed) head/devel/judy/pkg-plist (props changed) head/devel/kcachegrind/pkg-plist (props changed) head/devel/kdbg/pkg-plist (props changed) head/devel/kdesvn-kde4/pkg-plist (props changed) head/devel/kdevelop-pg-qt/pkg-plist (props changed) head/devel/kickassembler/pkg-plist (props changed) head/devel/lemon/pkg-plist (props changed) head/devel/lfcbase/pkg-plist (props changed) head/devel/lfcxml/pkg-plist (props changed) head/devel/libIDL/pkg-plist (props changed) head/devel/libPropList/pkg-plist (props changed) head/devel/libafterbase/pkg-plist (props changed) head/devel/libassa/pkg-plist (props changed) head/devel/libassetml/pkg-plist (props changed) head/devel/libast/pkg-plist (props changed) head/devel/libatomic_ops/pkg-plist (props changed) head/devel/libavl/pkg-plist (props changed) head/devel/libbegemot/pkg-plist (props changed) head/devel/libbfd/pkg-plist (props changed) head/devel/libbinio/pkg-plist (props changed) head/devel/libbnr/pkg-plist (props changed) head/devel/libbobcat/pkg-plist (props changed) head/devel/libbonobo/pkg-plist (props changed) head/devel/libburn/pkg-plist (props changed) head/devel/libccid/pkg-plist (props changed) head/devel/libcfg/pkg-plist (props changed) head/devel/libcfu/pkg-plist (props changed) head/devel/libchipcard/pkg-plist (props changed) head/devel/libcidr/pkg-plist (props changed) head/devel/libcii/pkg-plist (props changed) head/devel/libclaw/pkg-plist (props changed) head/devel/libconfig/pkg-plist (props changed) head/devel/libconfuse/pkg-plist (props changed) head/devel/libcwd/pkg-plist (props changed) head/devel/libdaemon/pkg-plist (props changed) head/devel/libdasm/pkg-plist (props changed) head/devel/libdatrie/pkg-plist (props changed) head/devel/libdict/pkg-plist (props changed) head/devel/libdisasm/pkg-plist (props changed) head/devel/libdisorder/pkg-plist (props changed) head/devel/libdispatch/pkg-plist (props changed) head/devel/libdlmalloc/pkg-plist (props changed) head/devel/libdlna/pkg-plist (props changed) head/devel/libdnsres/pkg-plist (props changed) head/devel/libdombey/pkg-plist (props changed) head/devel/libdouble-conversion/pkg-plist (props changed) head/devel/libds/pkg-plist (props changed) head/devel/libdsp/pkg-plist (props changed) head/devel/libdwarf/pkg-plist (props changed) head/devel/libee/pkg-plist (props changed) head/devel/libelf/pkg-plist (props changed) head/devel/libepp-nicbr/pkg-plist (props changed) head/devel/libestr/pkg-plist (props changed) head/devel/libev/pkg-plist (props changed) head/devel/libevent-hiphop/pkg-plist (props changed) head/devel/libevent/pkg-plist (props changed) head/devel/libevent2/pkg-plist (props changed) head/devel/libevt/pkg-plist (props changed) head/devel/libevtx/pkg-plist (props changed) head/devel/libewf/pkg-plist (props changed) head/devel/libexecinfo/pkg-plist (props changed) head/devel/libfortuna/pkg-plist (props changed) head/devel/libfreefare/pkg-plist (props changed) head/devel/libgalago/pkg-plist (props changed) head/devel/libgamepad/pkg-plist (props changed) head/devel/libgconf-java/pkg-plist (props changed) head/devel/libgdata/pkg-plist (props changed) head/devel/libgii/pkg-plist (props changed) head/devel/libgit2/pkg-plist (props changed) head/devel/libglade-java/pkg-plist (props changed) head/devel/libglade2/pkg-plist (props changed) head/devel/libglademm24/pkg-plist (props changed) head/devel/libgta/pkg-plist (props changed) head/devel/libhid/pkg-plist (props changed) head/devel/libinotify/pkg-plist (props changed) head/devel/libiqxmlrpc/pkg-plist (props changed) head/devel/libisofs/pkg-plist (props changed) head/devel/libixp/pkg-plist (props changed) head/devel/libklel/pkg-plist (props changed) head/devel/liblas/pkg-plist (props changed) head/devel/liblcfg/pkg-plist (props changed) head/devel/libleaftag/pkg-plist (props changed) head/devel/liblnk/pkg-plist (props changed) head/devel/liblogging/pkg-plist (props changed) head/devel/liblouis/pkg-plist (props changed) head/devel/liblouisxml/pkg-plist (props changed) head/devel/libltdl/pkg-plist (props changed) head/devel/libmatheval/pkg-plist (props changed) head/devel/libmba/pkg-plist (props changed) head/devel/libmcs/pkg-plist (props changed) head/devel/libmimedir/pkg-plist (props changed) head/devel/libmonetra/pkg-plist (props changed) head/devel/libmowgli/pkg-plist (props changed) head/devel/libmsiecf/pkg-plist (props changed) head/devel/libnaji/pkg-plist (props changed) head/devel/libnfc/pkg-plist (props changed) head/devel/libnxt/pkg-plist (props changed) head/devel/liboil/pkg-plist (props changed) head/devel/libol/pkg-plist (props changed) head/devel/libole2/pkg-plist (props changed) head/devel/liboobs/pkg-plist (props changed) head/devel/libopendaap/pkg-plist (props changed) head/devel/libopensync022/pkg-plist (props changed) head/devel/libopkele/pkg-plist (props changed) head/devel/libparserutils/pkg-plist (props changed) head/devel/libpasori/pkg-plist (props changed) head/devel/libpciaccess/pkg-plist (props changed) head/devel/libpdel/pkg-plist (props changed) head/devel/libpeak/pkg-plist (props changed) head/devel/libpff/pkg-plist (props changed) head/devel/libphish/pkg-plist (props changed) head/devel/libphk/pkg-plist (props changed) head/devel/libpthread-stubs/pkg-plist (props changed) head/devel/librest/pkg-plist (props changed) head/devel/libruin/pkg-plist (props changed) head/devel/libs11n/pkg-plist (props changed) head/devel/libserver/pkg-plist (props changed) head/devel/libshhmsg/pkg-plist (props changed) head/devel/libshhopt/pkg-plist (props changed) head/devel/libsigc++12/pkg-plist (props changed) head/devel/libsigcx/pkg-plist (props changed) head/devel/libsigrok/pkg-plist (props changed) head/devel/libsigrokdecode/pkg-plist (props changed) head/devel/libslang2/pkg-plist (props changed) head/devel/libsoup-gnome/pkg-plist (props changed) head/devel/libstatgrab/pkg-plist (props changed) head/devel/libstrfunc/pkg-plist (props changed) head/devel/libtai/pkg-plist (props changed) head/devel/libtar/pkg-plist (props changed) head/devel/libtecla/pkg-plist (props changed) head/devel/libthai/pkg-plist (props changed) head/devel/libtool/pkg-plist (props changed) head/devel/libublio/pkg-plist (props changed) head/devel/libukcprog/pkg-plist (props changed) head/devel/libunicode/pkg-plist (props changed) head/devel/libuninum/pkg-plist (props changed) head/devel/libunistring/pkg-plist (props changed) head/devel/libunwind/pkg-plist (props changed) head/devel/libvirt-glib/pkg-plist (props changed) head/devel/libvshadow/pkg-plist (props changed) head/devel/libwfut/pkg-plist (props changed) head/devel/libxalloc/pkg-plist (props changed) head/devel/libxs/pkg-plist (props changed) head/devel/libytnef/pkg-plist (props changed) head/devel/libzrtpcpp/pkg-plist (props changed) head/devel/libzvbi/pkg-plist (props changed) head/devel/linux-f10-allegro/pkg-plist (props changed) head/devel/linux-f10-ncurses-base/pkg-plist (props changed) head/devel/lion/pkg-plist (props changed) head/devel/llvm-devel/pkg-plist (props changed) head/devel/llvm31/pkg-plist (props changed) head/devel/llvm32/pkg-plist (props changed) head/devel/lmdbg/pkg-plist (props changed) head/devel/log4cplus/pkg-plist (props changed) head/devel/log4cpp/pkg-plist (props changed) head/devel/log4cxx/pkg-plist (props changed) head/devel/log4net/pkg-plist (props changed) head/devel/log4shib/pkg-plist (props changed) head/devel/loki/pkg-plist (props changed) head/devel/lrmi/pkg-plist (props changed) head/devel/lua-alien/pkg-plist (props changed) head/devel/luabind/pkg-plist (props changed) head/devel/luajava/pkg-plist (props changed) head/devel/lwp/pkg-plist (props changed) head/devel/lxr/pkg-plist (props changed) head/devel/m17n-db/pkg-plist (props changed) head/devel/m17n-docs/pkg-plist (props changed) head/devel/m17n-lib/pkg-plist (props changed) head/devel/m4/pkg-plist (props changed) head/devel/m6811-binutils/pkg-plist (props changed) head/devel/magit/pkg-plist (props changed) head/devel/make++/pkg-plist (props changed) head/devel/maven-wrapper/pkg-plist (props changed) head/devel/meck/pkg-plist (props changed) head/devel/memcheck/pkg-plist (props changed) head/devel/menhir/pkg-plist (props changed) head/devel/mercurialeclipse/pkg-plist (props changed) head/devel/mico/pkg-plist (props changed) head/devel/mime/pkg-plist (props changed) head/devel/mimir/pkg-plist (props changed) head/devel/mingw32-bin-msvcrt/pkg-plist (props changed) head/devel/mingw32-binutils/pkg-plist (props changed) head/devel/mingw32-directx/pkg-plist (props changed) head/devel/mingw32-libffi/pkg-plist (props changed) head/devel/mingw32-libyaml/pkg-plist (props changed) head/devel/mingw32-openssl/pkg-plist (props changed) head/devel/mingw32-pdcurses/pkg-plist (props changed) head/devel/mingw32-pthreads/pkg-plist (props changed) head/devel/mingw32-zlib/pkg-plist (props changed) head/devel/mk-configure/pkg-plist (props changed) head/devel/mkcmd/pkg-plist (props changed) head/devel/ml-doc/pkg-plist (props changed) head/devel/mm-common/pkg-plist (props changed) head/devel/mono-addins/pkg-plist (props changed) head/devel/monodevelop-database/pkg-plist (props changed) head/devel/monodevelop/pkg-plist (props changed) head/devel/motor/pkg-plist (props changed) head/devel/mpatrol/pkg-plist (props changed) head/devel/mq4cpp/pkg-plist (props changed) head/devel/msgpack/pkg-plist (props changed) head/devel/msp430-binutils/pkg-plist (props changed) head/devel/msp430-gcc/pkg-plist (props changed) head/devel/msp430-gcc3/pkg-plist (props changed) head/devel/msp430-gdb/pkg-plist (props changed) head/devel/msp430-libc/pkg-plist (props changed) head/devel/nana/pkg-plist (props changed) head/devel/naturaldocs/pkg-plist (props changed) head/devel/ncnf/pkg-plist (props changed) head/devel/ncurses/pkg-plist (props changed) head/devel/ndesk-dbus-glib/pkg-plist (props changed) head/devel/ndesk-dbus/pkg-plist (props changed) head/devel/nemiver/pkg-plist (props changed) head/devel/newfile/pkg-plist (props changed) head/devel/nglogc/pkg-plist (props changed) head/devel/nini/pkg-plist (props changed) head/devel/notify-sharp/pkg-plist (props changed) head/devel/noweb/pkg-plist (props changed) head/devel/npth/pkg-plist (props changed) head/devel/nxt-python/pkg-plist (props changed) head/devel/obby/pkg-plist (props changed) head/devel/obfuscatejs/pkg-plist (props changed) head/devel/ocaml-camljava/pkg-plist (props changed) head/devel/ocaml-camlp5/pkg-plist (props changed) head/devel/ocaml-camomile-examples/pkg-plist (props changed) head/devel/ocaml-classes/pkg-plist (props changed) head/devel/ocaml-cppo/pkg-plist (props changed) head/devel/ocaml-equeue/pkg-plist (props changed) head/devel/ocaml-event/pkg-plist (props changed) head/devel/ocaml-findlib/pkg-plist (props changed) head/devel/ocaml-ounit/pkg-plist (props changed) head/devel/ocaml-pcre/pkg-plist (props changed) head/devel/ocaml-react/pkg-plist (props changed) head/devel/ocamlweb/pkg-plist (props changed) head/devel/ocfpcsc/pkg-plist (props changed) head/devel/ode-devel/pkg-plist (props changed) head/devel/ode/pkg-plist (props changed) head/devel/ois/pkg-plist (props changed) head/devel/omniNotify/pkg-plist (props changed) head/devel/omniORB/pkg-plist (props changed) head/devel/oniguruma/pkg-plist (props changed) head/devel/oniguruma4/pkg-plist (props changed) head/devel/open-beagle/pkg-plist (props changed) head/devel/open-usp-tukubai/pkg-plist (props changed) head/devel/openzz/pkg-plist (props changed) head/devel/orbitcpp/pkg-plist (props changed) head/devel/orc/pkg-plist (props changed) head/devel/oserl/pkg-plist (props changed) head/devel/ossp-al/pkg-plist (props changed) head/devel/ossp-cfg/pkg-plist (props changed) head/devel/ossp-ex/pkg-plist (props changed) head/devel/ossp-l2/pkg-plist (props changed) head/devel/ossp-val/pkg-plist (props changed) head/devel/ossp-var/pkg-plist (props changed) head/devel/ossp-xds/pkg-plist (props changed) head/devel/p4.el/pkg-plist (props changed) head/devel/p4api/pkg-plist (props changed) head/devel/p4d/pkg-plist (props changed) head/devel/p4db/pkg-plist (props changed) head/devel/p4ftpd/pkg-plist (props changed) head/devel/p4p/pkg-plist (props changed) head/devel/p4web/pkg-plist (props changed) head/devel/p5-AI-Pathfinding-AStar/pkg-plist (props changed) head/devel/p5-AI-Prolog/pkg-plist (props changed) head/devel/p5-Acme-Damn/pkg-plist (props changed) head/devel/p5-Agent/pkg-plist (props changed) head/devel/p5-Algorithm-Accounting/pkg-plist (props changed) head/devel/p5-Algorithm-Annotate/pkg-plist (props changed) head/devel/p5-Algorithm-Bucketizer/pkg-plist (props changed) head/devel/p5-Algorithm-C3/pkg-plist (props changed) head/devel/p5-Algorithm-Cluster/pkg-plist (props changed) head/devel/p5-Algorithm-Dependency-Objects/pkg-plist (props changed) head/devel/p5-Algorithm-Dependency/pkg-plist (props changed) head/devel/p5-Algorithm-Evolutionary/pkg-plist (props changed) head/devel/p5-Algorithm-FloodControl/pkg-plist (props changed) head/devel/p5-Algorithm-IncludeExclude/pkg-plist (props changed) head/devel/p5-Algorithm-Interval2Prefix/pkg-plist (props changed) head/devel/p5-Algorithm-LCS/pkg-plist (props changed) head/devel/p5-Algorithm-LUHN/pkg-plist (props changed) head/devel/p5-Algorithm-MarkovChain/pkg-plist (props changed) head/devel/p5-Algorithm-Merge/pkg-plist (props changed) head/devel/p5-Algorithm-MinMax/pkg-plist (props changed) head/devel/p5-Algorithm-NaiveBayes/pkg-plist (props changed) head/devel/p5-Algorithm-Networksort/pkg-plist (props changed) head/devel/p5-Algorithm-Numerical-Shuffle/pkg-plist (props changed) head/devel/p5-Alias/pkg-plist (props changed) head/devel/p5-Alzabo-GUI-Mason/pkg-plist (props changed) head/devel/p5-Alzabo/pkg-plist (props changed) head/devel/p5-Any-Moose/pkg-plist (props changed) head/devel/p5-AnyData/pkg-plist (props changed) head/devel/p5-AnyEvent-AIO/pkg-plist (props changed) head/devel/p5-AnyEvent-Connection/pkg-plist (props changed) head/devel/p5-AnyEvent-DBI-Abstract/pkg-plist (props changed) head/devel/p5-AnyEvent-DBus/pkg-plist (props changed) head/devel/p5-AnyEvent-Filesys-Notify/pkg-plist (props changed) head/devel/p5-AnyEvent-I3/pkg-plist (props changed) head/devel/p5-AnyEvent-MessagePack/pkg-plist (props changed) head/devel/p5-AnyEvent-RPC/pkg-plist (props changed) head/devel/p5-AnyEvent-Run/pkg-plist (props changed) head/devel/p5-AnyEvent/pkg-plist (props changed) head/devel/p5-App-Build/pkg-plist (props changed) head/devel/p5-App-CLI-Extension/pkg-plist (props changed) head/devel/p5-App-CLI/pkg-plist (props changed) head/devel/p5-App-Cache/pkg-plist (props changed) head/devel/p5-App-Control/pkg-plist (props changed) head/devel/p5-App-FatPacker/pkg-plist (props changed) head/devel/p5-App-GitHub/pkg-plist (props changed) head/devel/p5-App-Info/pkg-plist (props changed) head/devel/p5-App-Options/pkg-plist (props changed) head/devel/p5-App-SD/pkg-plist (props changed) head/devel/p5-App-SVN-Bisect/pkg-plist (props changed) head/devel/p5-App-cpanminus/pkg-plist (props changed) head/devel/p5-App-scan_prereqs_cpanfile/pkg-plist (props changed) head/devel/p5-Array-Group/pkg-plist (props changed) head/devel/p5-Array-Unique/pkg-plist (props changed) head/devel/p5-Array-Window/pkg-plist (props changed) head/devel/p5-Async-Interrupt/pkg-plist (props changed) head/devel/p5-AtExit/pkg-plist (props changed) head/devel/p5-Attribute-Handlers-Prospective/pkg-plist (props changed) head/devel/p5-Attribute-Handlers/pkg-plist (props changed) head/devel/p5-Attribute-Persistent/pkg-plist (props changed) head/devel/p5-AutoLoader/pkg-plist (props changed) head/devel/p5-AutoXS-Header/pkg-plist (props changed) head/devel/p5-B-Compiling/pkg-plist (props changed) head/devel/p5-B-Deobfuscate/pkg-plist (props changed) head/devel/p5-B-Graph/pkg-plist (props changed) head/devel/p5-B-Hooks-OP-Check-EntersubForCV/pkg-plist (props changed) head/devel/p5-B-Hooks-Parser/pkg-plist (props changed) head/devel/p5-B-Keywords/pkg-plist (props changed) head/devel/p5-B-OPCheck/pkg-plist (props changed) head/devel/p5-B-Utils/pkg-plist (props changed) head/devel/p5-BFD/pkg-plist (props changed) head/devel/p5-BS-Event/pkg-plist (props changed) head/devel/p5-BSD-devstat/pkg-plist (props changed) head/devel/p5-BSD-stat/pkg-plist (props changed) head/devel/p5-BZ-Client/pkg-plist (props changed) head/devel/p5-C-Scan/pkg-plist (props changed) head/devel/p5-CLASS/pkg-plist (props changed) head/devel/p5-CPAN-Checksums/pkg-plist (props changed) head/devel/p5-CPAN-DistnameInfo/pkg-plist (props changed) head/devel/p5-CPAN-Inject/pkg-plist (props changed) head/devel/p5-CPAN-Meta-Check/pkg-plist (props changed) head/devel/p5-CPAN-Mini/pkg-plist (props changed) head/devel/p5-CPAN-Reporter/pkg-plist (props changed) head/devel/p5-CPAN-SQLite/pkg-plist (props changed) head/devel/p5-CPAN-Site/pkg-plist (props changed) head/devel/p5-CPAN-Uploader/pkg-plist (props changed) head/devel/p5-CPAN-YACSmoke/pkg-plist (props changed) head/devel/p5-CPANPLUS-Dist-Build/pkg-plist (props changed) head/devel/p5-CPS/pkg-plist (props changed) head/devel/p5-Cache-AgainstFile/pkg-plist (props changed) head/devel/p5-Cache-Cache/pkg-plist (props changed) head/devel/p5-Cache-FastMmap/pkg-plist (props changed) head/devel/p5-Cache-LRU/pkg-plist (props changed) head/devel/p5-Cache-Memcached-Tie/pkg-plist (props changed) head/devel/p5-Cache-Mmap/pkg-plist (props changed) head/devel/p5-Cache-Simple-TimedExpiry/pkg-plist (props changed) head/devel/p5-Cache/pkg-plist (props changed) head/devel/p5-Calendar-Simple/pkg-plist (props changed) head/devel/p5-Carp-Assert-More/pkg-plist (props changed) head/devel/p5-Carp-Assert/pkg-plist (props changed) head/devel/p5-Carp-Clan-Share/pkg-plist (props changed) head/devel/p5-Carp-Clan/pkg-plist (props changed) head/devel/p5-Carp-Datum/pkg-plist (props changed) head/devel/p5-Carp-REPL/pkg-plist (props changed) head/devel/p5-Check-ISA/pkg-plist (props changed) head/devel/p5-Child/pkg-plist (props changed) head/devel/p5-Class-Accessor-Chained/pkg-plist (props changed) head/devel/p5-Class-Accessor-Children/pkg-plist (props changed) head/devel/p5-Class-Accessor-Constructor/pkg-plist (props changed) head/devel/p5-Class-Accessor-Fast-Contained/pkg-plist (props changed) head/devel/p5-Class-Accessor-Fast-XS/pkg-plist (props changed) head/devel/p5-Class-Accessor-Grouped/pkg-plist (props changed) head/devel/p5-Class-Accessor-Installer/pkg-plist (props changed) head/devel/p5-Class-Accessor-Lite/pkg-plist (props changed) head/devel/p5-Class-Accessor-Lvalue/pkg-plist (props changed) head/devel/p5-Class-Accessor-Named/pkg-plist (props changed) head/devel/p5-Class-Accessor/pkg-plist (props changed) head/devel/p5-Class-AlzaboWrapper/pkg-plist (props changed) head/devel/p5-Class-ArrayObjects/pkg-plist (props changed) head/devel/p5-Class-Autouse/pkg-plist (props changed) head/devel/p5-Class-BlackHole/pkg-plist (props changed) head/devel/p5-Class-C3-XS/pkg-plist (props changed) head/devel/p5-Class-C3/pkg-plist (props changed) head/devel/p5-Class-CodeStyler/pkg-plist (props changed) head/devel/p5-Class-Component/pkg-plist (props changed) head/devel/p5-Class-Constant/pkg-plist (props changed) head/devel/p5-Class-Container/pkg-plist (props changed) head/devel/p5-Class-Contract/pkg-plist (props changed) head/devel/p5-Class-Data-Inheritable/pkg-plist (props changed) head/devel/p5-Class-Default/pkg-plist (props changed) head/devel/p5-Class-Delegation/pkg-plist (props changed) head/devel/p5-Class-ErrorHandler/pkg-plist (props changed) head/devel/p5-Class-Factory-Util/pkg-plist (props changed) head/devel/p5-Class-Factory/pkg-plist (props changed) head/devel/p5-Class-Field/pkg-plist (props changed) head/devel/p5-Class-Forward/pkg-plist (props changed) head/devel/p5-Class-Generate/pkg-plist (props changed) head/devel/p5-Class-Handle/pkg-plist (props changed) head/devel/p5-Class-Hook/pkg-plist (props changed) head/devel/p5-Class-ISA/pkg-plist (props changed) head/devel/p5-Class-Inner/pkg-plist (props changed) head/devel/p5-Class-InsideOut/pkg-plist (props changed) head/devel/p5-Class-Inspector/pkg-plist (props changed) head/devel/p5-Class-Interfaces/pkg-plist (props changed) head/devel/p5-Class-Loader/pkg-plist (props changed) head/devel/p5-Class-MakeMethods/pkg-plist (props changed) head/devel/p5-Class-Measure/pkg-plist (props changed) head/devel/p5-Class-Method-Modifiers-Fast/pkg-plist (props changed) head/devel/p5-Class-MethodMaker/pkg-plist (props changed) head/devel/p5-Class-Mix/pkg-plist (props changed) head/devel/p5-Class-Mixin/pkg-plist (props changed) head/devel/p5-Class-MixinFactory/pkg-plist (props changed) head/devel/p5-Class-Multimethods-Pure/pkg-plist (props changed) head/devel/p5-Class-Multimethods/pkg-plist (props changed) head/devel/p5-Class-NamedParms/pkg-plist (props changed) head/devel/p5-Class-Null/pkg-plist (props changed) head/devel/p5-Class-OOorNO/pkg-plist (props changed) head/devel/p5-Class-ObjectTemplate-DB/pkg-plist (props changed) head/devel/p5-Class-ObjectTemplate/pkg-plist (props changed) head/devel/p5-Class-Observable/pkg-plist (props changed) head/devel/p5-Class-ParmList/pkg-plist (props changed) head/devel/p5-Class-ReturnValue/pkg-plist (props changed) head/devel/p5-Class-Roles/pkg-plist (props changed) head/devel/p5-Class-STL-Containers/pkg-plist (props changed) head/devel/p5-Class-Singleton/pkg-plist (props changed) head/devel/p5-Class-StateMachine/pkg-plist (props changed) head/devel/p5-Class-Std-Fast/pkg-plist (props changed) head/devel/p5-Class-Std/pkg-plist (props changed) head/devel/p5-Class-StrongSingleton/pkg-plist (props changed) head/devel/p5-Class-Tangram/pkg-plist (props changed) head/devel/p5-Class-Throwable/pkg-plist (props changed) head/devel/p5-Class-Tiny/pkg-plist (props changed) head/devel/p5-Class-Tom/pkg-plist (props changed) head/devel/p5-Class-Trigger/pkg-plist (props changed) head/devel/p5-Class-Unload/pkg-plist (props changed) head/devel/p5-Class-Virtual/pkg-plist (props changed) head/devel/p5-Class-WhiteHole/pkg-plist (props changed) head/devel/p5-Class-Workflow/pkg-plist (props changed) head/devel/p5-Class-XPath/pkg-plist (props changed) head/devel/p5-Class-XSAccessor-Array/pkg-plist (props changed) head/devel/p5-Class-XSAccessor/pkg-plist (props changed) head/devel/p5-Clone-Fast/pkg-plist (props changed) head/devel/p5-Clone-PP/pkg-plist (props changed) head/devel/p5-Clone/pkg-plist (props changed) head/devel/p5-Code-Perl/pkg-plist (props changed) head/devel/p5-Commands-Guarded/pkg-plist (props changed) head/devel/p5-CommitBit/pkg-plist (props changed) head/devel/p5-Config-Any/pkg-plist (props changed) head/devel/p5-Config-ApacheFormat/pkg-plist (props changed) head/devel/p5-Config-Auto/pkg-plist (props changed) head/devel/p5-Config-AutoConf/pkg-plist (props changed) head/devel/p5-Config-GitLike/pkg-plist (props changed) head/devel/p5-Config-Grammar/pkg-plist (props changed) head/devel/p5-Config-IniHash/pkg-plist (props changed) head/devel/p5-Config-JFDI/pkg-plist (props changed) head/devel/p5-Config-JSON/pkg-plist (props changed) head/devel/p5-Config-MVP/pkg-plist (props changed) head/devel/p5-Config-MySQL/pkg-plist (props changed) head/devel/p5-Config-Perl-V/pkg-plist (props changed) head/devel/p5-Config-Record/pkg-plist (props changed) head/devel/p5-Config-Setting/pkg-plist (props changed) head/devel/p5-Config-Simple/pkg-plist (props changed) head/devel/p5-Config-Std/pkg-plist (props changed) head/devel/p5-Config-Tiny/pkg-plist (props changed) head/devel/p5-Config-Wrest/pkg-plist (props changed) head/devel/p5-ConfigReader-Simple/pkg-plist (props changed) head/devel/p5-ConfigReader/pkg-plist (props changed) head/devel/p5-Const-Fast/pkg-plist (props changed) head/devel/p5-Context-Preserve/pkg-plist (props changed) head/devel/p5-Contextual-Return/pkg-plist (props changed) head/devel/p5-Coro/pkg-plist (props changed) head/devel/p5-Curses-Application/pkg-plist (props changed) head/devel/p5-Curses-Forms/pkg-plist (props changed) head/devel/p5-Curses-UI/pkg-plist (props changed) head/devel/p5-Curses-Widgets/pkg-plist (props changed) head/devel/p5-Curses/pkg-plist (props changed) head/devel/p5-Cvs/pkg-plist (props changed) head/devel/p5-DB_File-Lock/pkg-plist (props changed) head/devel/p5-Dancer-Debug/pkg-plist (props changed) head/devel/p5-Danga-Socket/pkg-plist (props changed) head/devel/p5-Data-ACL/pkg-plist (props changed) head/devel/p5-Data-Alias/pkg-plist (props changed) head/devel/p5-Data-Average/pkg-plist (props changed) head/devel/p5-Data-Bind/pkg-plist (props changed) head/devel/p5-Data-Capture/pkg-plist (props changed) head/devel/p5-Data-ClearSilver-HDF/pkg-plist (props changed) head/devel/p5-Data-Dump-Streamer/pkg-plist (props changed) head/devel/p5-Data-Dump/pkg-plist (props changed) head/devel/p5-Data-DumpXML/pkg-plist (props changed) head/devel/p5-Data-Dumper-Concise/pkg-plist (props changed) head/devel/p5-Data-Dumper-Simple/pkg-plist (props changed) head/devel/p5-Data-Dumper/pkg-plist (props changed) head/devel/p5-Data-Grouper/pkg-plist (props changed) head/devel/p5-Data-HashArray/pkg-plist (props changed) head/devel/p5-Data-HexDump/pkg-plist (props changed) head/devel/p5-Data-Hexdumper/pkg-plist (props changed) head/devel/p5-Data-Hierarchy/pkg-plist (props changed) head/devel/p5-Data-Integer/pkg-plist (props changed) head/devel/p5-Data-JavaScript-Anon/pkg-plist (props changed) head/devel/p5-Data-Lazy/pkg-plist (props changed) head/devel/p5-Data-Localize/pkg-plist (props changed) head/devel/p5-Data-MessagePack/pkg-plist (props changed) head/devel/p5-Data-Miscellany/pkg-plist (props changed) head/devel/p5-Data-Model/pkg-plist (props changed) head/devel/p5-Data-ObjectDriver/pkg-plist (props changed) head/devel/p5-Data-OptList/pkg-plist (props changed) head/devel/p5-Data-Path/pkg-plist (props changed) head/devel/p5-Data-Peek/pkg-plist (props changed) head/devel/p5-Data-Properties/pkg-plist (props changed) head/devel/p5-Data-Rand/pkg-plist (props changed) head/devel/p5-Data-Remember/pkg-plist (props changed) head/devel/p5-Data-Rmap/pkg-plist (props changed) head/devel/p5-Data-RoundRobin/pkg-plist (props changed) head/devel/p5-Data-Rx/pkg-plist (props changed) head/devel/p5-Data-SExpression/pkg-plist (props changed) head/devel/p5-Data-Section/pkg-plist (props changed) head/devel/p5-Data-Stag/pkg-plist (props changed) head/devel/p5-Data-Stream-Bulk/pkg-plist (props changed) head/devel/p5-Data-Swap/pkg-plist (props changed) head/devel/p5-Data-Table/pkg-plist (props changed) head/devel/p5-Data-Taxonomy-Tags/pkg-plist (props changed) head/devel/p5-Data-TemporaryBag/pkg-plist (props changed) head/devel/p5-Data-Throttler/pkg-plist (props changed) head/devel/p5-Data-TreeDumper-Renderer-GTK/pkg-plist (props changed) head/devel/p5-Data-TreeDumper/pkg-plist (props changed) head/devel/p5-Data-Types/pkg-plist (props changed) head/devel/p5-Data-UUID/pkg-plist (props changed) head/devel/p5-Data-Uniqid/pkg-plist (props changed) head/devel/p5-Data-Visitor/pkg-plist (props changed) head/devel/p5-Date-Business/pkg-plist (props changed) head/devel/p5-Date-Calc-Iterator/pkg-plist (props changed) head/devel/p5-Date-Calc-XS/pkg-plist (props changed) head/devel/p5-Date-Calc/pkg-plist (props changed) head/devel/p5-Date-EzDate/pkg-plist (props changed) head/devel/p5-Date-ICal/pkg-plist (props changed) head/devel/p5-Date-ISO/pkg-plist (props changed) head/devel/p5-Date-Manip/pkg-plist (props changed) head/devel/p5-Date-Piece/pkg-plist (props changed) head/devel/p5-Date-Range/pkg-plist (props changed) head/devel/p5-Date-Roman/pkg-plist (props changed) head/devel/p5-Date-Simple/pkg-plist (props changed) head/devel/p5-DateConvert/pkg-plist (props changed) head/devel/p5-DateTime-Calendar-Christian/pkg-plist (props changed) head/devel/p5-DateTime-Calendar-FrenchRevolutionary/pkg-plist (props changed) head/devel/p5-DateTime-Calendar-Hebrew/pkg-plist (props changed) head/devel/p5-DateTime-Calendar-Julian/pkg-plist (props changed) head/devel/p5-DateTime-Calendar-Mayan/pkg-plist (props changed) head/devel/p5-DateTime-Calendar-Pataphysical/pkg-plist (props changed) head/devel/p5-DateTime-Event-Cron/pkg-plist (props changed) head/devel/p5-DateTime-Event-Easter/pkg-plist (props changed) head/devel/p5-DateTime-Event-ICal/pkg-plist (props changed) head/devel/p5-DateTime-Event-Lunar/pkg-plist (props changed) head/devel/p5-DateTime-Event-NameDay/pkg-plist (props changed) head/devel/p5-DateTime-Event-Random/pkg-plist (props changed) head/devel/p5-DateTime-Event-Recurrence/pkg-plist (props changed) head/devel/p5-DateTime-Event-Zodiac/pkg-plist (props changed) head/devel/p5-DateTime-Fiscal-Year/pkg-plist (props changed) head/devel/p5-DateTime-Format-Baby/pkg-plist (props changed) head/devel/p5-DateTime-Format-Bork/pkg-plist (props changed) head/devel/p5-DateTime-Format-Builder/pkg-plist (props changed) head/devel/p5-DateTime-Format-DateManip/pkg-plist (props changed) head/devel/p5-DateTime-Format-DateParse/pkg-plist (props changed) head/devel/p5-DateTime-Format-Duration/pkg-plist (props changed) head/devel/p5-DateTime-Format-Epoch/pkg-plist (props changed) head/devel/p5-DateTime-Format-Excel/pkg-plist (props changed) head/devel/p5-DateTime-Format-Flexible/pkg-plist (props changed) head/devel/p5-DateTime-Format-HTTP/pkg-plist (props changed) head/devel/p5-DateTime-Format-IBeat/pkg-plist (props changed) head/devel/p5-DateTime-Format-ICal/pkg-plist (props changed) head/devel/p5-DateTime-Format-ISO8601/pkg-plist (props changed) head/devel/p5-DateTime-Format-Mail/pkg-plist (props changed) head/devel/p5-DateTime-Format-MySQL/pkg-plist (props changed) head/devel/p5-DateTime-Format-Pg/pkg-plist (props changed) head/devel/p5-DateTime-Format-RSS/pkg-plist (props changed) head/devel/p5-DateTime-Format-Roman/pkg-plist (props changed) head/devel/p5-DateTime-Format-SQLite/pkg-plist (props changed) head/devel/p5-DateTime-Format-Strptime/pkg-plist (props changed) head/devel/p5-DateTime-Functions/pkg-plist (props changed) head/devel/p5-DateTime-HiRes/pkg-plist (props changed) head/devel/p5-DateTime-Incomplete/pkg-plist (props changed) head/devel/p5-DateTime-Locale/pkg-plist (props changed) head/devel/p5-DateTime-Precise/pkg-plist (props changed) head/devel/p5-DateTime-TimeZone-Alias/pkg-plist (props changed) head/devel/p5-DateTime-TimeZone-LMT/pkg-plist (props changed) head/devel/p5-DateTime-Util-Calc/pkg-plist (props changed) head/devel/p5-DateTime/pkg-plist (props changed) head/devel/p5-DateTimeX-Easy/pkg-plist (props changed) head/devel/p5-Debug-Client/pkg-plist (props changed) head/devel/p5-Decision-ACL/pkg-plist (props changed) head/devel/p5-Declare-Constraints-Simple/pkg-plist (props changed) head/devel/p5-Devel-ArgNames/pkg-plist (props changed) head/devel/p5-Devel-Backtrace/pkg-plist (props changed) head/devel/p5-Devel-Caller-IgnoreNamespaces/pkg-plist (props changed) head/devel/p5-Devel-Caller-Perl/pkg-plist (props changed) head/devel/p5-Devel-Caller/pkg-plist (props changed) head/devel/p5-Devel-Callsite/pkg-plist (props changed) head/devel/p5-Devel-CheckLib/pkg-plist (props changed) head/devel/p5-Devel-CheckOS/pkg-plist (props changed) head/devel/p5-Devel-Constants/pkg-plist (props changed) head/devel/p5-Devel-Cover/pkg-plist (props changed) head/devel/p5-Devel-Cycle/pkg-plist (props changed) head/devel/p5-Devel-DProfPP/pkg-plist (props changed) head/devel/p5-Devel-Declare-Parser/pkg-plist (props changed) head/devel/p5-Devel-Diagram/pkg-plist (props changed) head/devel/p5-Devel-Ditto/pkg-plist (props changed) head/devel/p5-Devel-Dumpvar/pkg-plist (props changed) head/devel/p5-Devel-EvalContext/pkg-plist (props changed) head/devel/p5-Devel-Events-Objects/pkg-plist (props changed) head/devel/p5-Devel-FindPerl/pkg-plist (props changed) head/devel/p5-Devel-GlobalDestruction/pkg-plist (props changed) head/devel/p5-Devel-KYTProf/pkg-plist (props changed) head/devel/p5-Devel-Leak-Object/pkg-plist (props changed) head/devel/p5-Devel-Leak/pkg-plist (props changed) head/devel/p5-Devel-LeakGuard-Object/pkg-plist (props changed) head/devel/p5-Devel-LeakTrace/pkg-plist (props changed) head/devel/p5-Devel-Messenger/pkg-plist (props changed) head/devel/p5-Devel-Modlist/pkg-plist (props changed) head/devel/p5-Devel-NYTProf/pkg-plist (props changed) head/devel/p5-Devel-PPPort/pkg-plist (props changed) head/devel/p5-Devel-PartialDump/pkg-plist (props changed) head/devel/p5-Devel-Pointer/pkg-plist (props changed) head/devel/p5-Devel-Profile/pkg-plist (props changed) head/devel/p5-Devel-Refactor/pkg-plist (props changed) head/devel/p5-Devel-Refcount/pkg-plist (props changed) head/devel/p5-Devel-Required/pkg-plist (props changed) head/devel/p5-Devel-RingBuffer/pkg-plist (props changed) head/devel/p5-Devel-STrace/pkg-plist (props changed) head/devel/p5-Devel-Size-Report/pkg-plist (props changed) head/devel/p5-Devel-Size/pkg-plist (props changed) head/devel/p5-Devel-SmallProf/pkg-plist (props changed) head/devel/p5-Devel-StackTrace-WithLexicals/pkg-plist (props changed) head/devel/p5-Devel-StackTrace/pkg-plist (props changed) head/devel/p5-Devel-StealthDebug/pkg-plist (props changed) head/devel/p5-Devel-Symdump/pkg-plist (props changed) head/devel/p5-Devel-Trace/pkg-plist (props changed) head/devel/p5-Devel-TraceCalls/pkg-plist (props changed) head/devel/p5-Devel-TraceUse/pkg-plist (props changed) head/devel/p5-Devel-ebug/pkg-plist (props changed) head/devel/p5-Devel-ptkdb/pkg-plist (props changed) head/devel/p5-Device-USB/pkg-plist (props changed) head/devel/p5-Dir-Project/pkg-plist (props changed) head/devel/p5-Directory-Scratch-Structured/pkg-plist (props changed) head/devel/p5-Dist-Zilla/pkg-plist (props changed) head/devel/p5-Env-PS1/pkg-plist (props changed) head/devel/p5-Env-Path/pkg-plist (props changed) head/devel/p5-Errno/pkg-plist (props changed) head/devel/p5-Eval-Closure/pkg-plist (props changed) head/devel/p5-Eval-Context/pkg-plist (props changed) head/devel/p5-Event-ExecFlow/pkg-plist (props changed) head/devel/p5-Event/pkg-plist (props changed) head/devel/p5-Every/pkg-plist (props changed) head/devel/p5-Exception-Class/pkg-plist (props changed) head/devel/p5-Exception-Handler/pkg-plist (props changed) head/devel/p5-Expect-Simple/pkg-plist (props changed) head/devel/p5-Exporter-Declare/pkg-plist (props changed) head/devel/p5-Exporter-Lite/pkg-plist (props changed) head/devel/p5-Exporter-Tidy/pkg-plist (props changed) head/devel/p5-Exporter/pkg-plist (props changed) head/devel/p5-ExtUtils-AutoInstall/pkg-plist (props changed) head/devel/p5-ExtUtils-CBuilder/pkg-plist (props changed) head/devel/p5-ExtUtils-CChecker/pkg-plist (props changed) head/devel/p5-ExtUtils-Command/pkg-plist (props changed) head/devel/p5-ExtUtils-Constant/pkg-plist (props changed) head/devel/p5-ExtUtils-Depends/pkg-plist (props changed) head/devel/p5-ExtUtils-LibBuilder/pkg-plist (props changed) head/devel/p5-ExtUtils-MakeMaker-Coverage/pkg-plist (props changed) head/devel/p5-ExtUtils-ParseXS/pkg-plist (props changed) head/devel/p5-ExtUtils-XSBuilder/pkg-plist (props changed) head/devel/p5-ExtUtils-XSpp/pkg-plist (props changed) head/devel/p5-Fennec-Lite/pkg-plist (props changed) head/devel/p5-File-Append-TempFile/pkg-plist (props changed) head/devel/p5-File-Attributes/pkg-plist (props changed) head/devel/p5-File-BOM/pkg-plist (props changed) head/devel/p5-File-BaseDir/pkg-plist (props changed) head/devel/p5-File-BasicFlock/pkg-plist (props changed) head/devel/p5-File-Binary/pkg-plist (props changed) head/devel/p5-File-Cache/pkg-plist (props changed) head/devel/p5-File-Cat/pkg-plist (props changed) head/devel/p5-File-Copy-Recursive/pkg-plist (props changed) head/devel/p5-File-CountLines/pkg-plist (props changed) head/devel/p5-File-DesktopEntry/pkg-plist (props changed) head/devel/p5-File-Dir-Dumper/pkg-plist (props changed) head/devel/p5-File-DirSync/pkg-plist (props changed) head/devel/p5-File-Find-Object/pkg-plist (props changed) head/devel/p5-File-Find-Rule-Perl/pkg-plist (props changed) head/devel/p5-File-Find-Rule-VCS/pkg-plist (props changed) head/devel/p5-File-Find-Rule/pkg-plist (props changed) head/devel/p5-File-Finder/pkg-plist (props changed) head/devel/p5-File-Flat/pkg-plist (props changed) head/devel/p5-File-FnMatch/pkg-plist (props changed) head/devel/p5-File-HStore/pkg-plist (props changed) head/devel/p5-File-HomeDir/pkg-plist (props changed) head/devel/p5-File-Iterator/pkg-plist (props changed) head/devel/p5-File-MMagic/pkg-plist (props changed) head/devel/p5-File-Map/pkg-plist (props changed) head/devel/p5-File-MimeInfo/pkg-plist (props changed) head/devel/p5-File-Modified/pkg-plist (props changed) head/devel/p5-File-Monitor/pkg-plist (props changed) head/devel/p5-File-NCopy/pkg-plist (props changed) head/devel/p5-File-Path/pkg-plist (props changed) head/devel/p5-File-PathConvert/pkg-plist (props changed) head/devel/p5-File-Pid-Quick/pkg-plist (props changed) head/devel/p5-File-Pid/pkg-plist (props changed) head/devel/p5-File-Policy/pkg-plist (props changed) head/devel/p5-File-Random/pkg-plist (props changed) head/devel/p5-File-Remove/pkg-plist (props changed) head/devel/p5-File-SafeDO/pkg-plist (props changed) head/devel/p5-File-SearchPath/pkg-plist (props changed) head/devel/p5-File-ShareDir-Install/pkg-plist (props changed) head/devel/p5-File-ShareDir-PAR/pkg-plist (props changed) head/devel/p5-File-ShareDir-PathClass/pkg-plist (props changed) head/devel/p5-File-ShareDir-ProjectDistDir/pkg-plist (props changed) head/devel/p5-File-ShareDir/pkg-plist (props changed) head/devel/p5-File-Slurp/pkg-plist (props changed) head/devel/p5-File-Spec-Native/pkg-plist (props changed) head/devel/p5-File-Stream/pkg-plist (props changed) head/devel/p5-File-Touch/pkg-plist (props changed) head/devel/p5-File-Type/pkg-plist (props changed) head/devel/p5-File-chdir/pkg-plist (props changed) head/devel/p5-FileHandle-Fmode/pkg-plist (props changed) head/devel/p5-FileHandle-Unget/pkg-plist (props changed) head/devel/p5-Filesys-Notify-KQueue/pkg-plist (props changed) head/devel/p5-Filter-Template/pkg-plist (props changed) head/devel/p5-FindBin-libs/pkg-plist (props changed) head/devel/p5-Forest/pkg-plist (props changed) head/devel/p5-FreeBSD-i386-Ptrace/pkg-plist (props changed) head/devel/p5-FreezeThaw/pkg-plist (props changed) head/devel/p5-Gearman-Client-Async/pkg-plist (props changed) head/devel/p5-Gearman-Server/pkg-plist (props changed) head/devel/p5-Geo-ShapeFile/pkg-plist (props changed) head/devel/p5-Getargs-Long/pkg-plist (props changed) head/devel/p5-Getopt-ArgvFile/pkg-plist (props changed) head/devel/p5-Getopt-Compact-WithCmd/pkg-plist (props changed) head/devel/p5-Getopt-Compact/pkg-plist (props changed) head/devel/p5-Getopt-Euclid/pkg-plist (props changed) head/devel/p5-Getopt-GUI-Long/pkg-plist (props changed) head/devel/p5-Getopt-Long/pkg-plist (props changed) head/devel/p5-Git-PurePerl/pkg-plist (props changed) head/devel/p5-Git-Sub/pkg-plist (props changed) head/devel/p5-Git-Wrapper/pkg-plist (props changed) head/devel/p5-Gnome2-GConf/pkg-plist (props changed) head/devel/p5-Goo-Canvas/pkg-plist (props changed) head/devel/p5-Google-Checkout/pkg-plist (props changed) head/devel/p5-Gravatar-URL/pkg-plist (props changed) head/devel/p5-Guard/pkg-plist (props changed) head/devel/p5-HOP-Lexer/pkg-plist (props changed) head/devel/p5-HOP-Stream/pkg-plist (props changed) head/devel/p5-Hash-AsObject/pkg-plist (props changed) head/devel/p5-Hash-AutoHash/pkg-plist (props changed) head/devel/p5-Hash-Case/pkg-plist (props changed) head/devel/p5-Hash-Diff/pkg-plist (props changed) head/devel/p5-Hash-Merge-Simple/pkg-plist (props changed) head/devel/p5-Hash-MoreUtils/pkg-plist (props changed) head/devel/p5-Hash-MultiValue/pkg-plist (props changed) head/devel/p5-Heap-Simple-Perl/pkg-plist (props changed) head/devel/p5-Heap-Simple-XS/pkg-plist (props changed) head/devel/p5-Heap-Simple/pkg-plist (props changed) head/devel/p5-Heap/pkg-plist (props changed) head/devel/p5-Hook-LexWrap/pkg-plist (props changed) head/devel/p5-IO-AIO/pkg-plist (props changed) head/devel/p5-IO-BufferedSelect/pkg-plist (props changed) head/devel/p5-IO-Callback/pkg-plist (props changed) head/devel/p5-IO-Capture/pkg-plist (props changed) head/devel/p5-IO-HTML/pkg-plist (props changed) head/devel/p5-IO-Handle-Util/pkg-plist (props changed) head/devel/p5-IO-Interactive/pkg-plist (props changed) head/devel/p5-IO-KQueue/pkg-plist (props changed) head/devel/p5-IO-LockedFile/pkg-plist (props changed) head/devel/p5-IO-NestedCapture/pkg-plist (props changed) head/devel/p5-IO-Pager/pkg-plist (props changed) head/devel/p5-IO-Pipely/pkg-plist (props changed) head/devel/p5-IO-Prompt/pkg-plist (props changed) head/devel/p5-IO-String/pkg-plist (props changed) head/devel/p5-IO-Stty/pkg-plist (props changed) head/devel/p5-IO-Tee/pkg-plist (props changed) head/devel/p5-IO-TieCombine/pkg-plist (props changed) head/devel/p5-IO-Tty/pkg-plist (props changed) head/devel/p5-IO-Util/pkg-plist (props changed) head/devel/p5-IO-stringy/pkg-plist (props changed) head/devel/p5-IOC/pkg-plist (props changed) head/devel/p5-IPC-Cache/pkg-plist (props changed) head/devel/p5-IPC-Cmd/pkg-plist (props changed) head/devel/p5-IPC-DirQueue/pkg-plist (props changed) head/devel/p5-IPC-Locker/pkg-plist (props changed) head/devel/p5-IPC-MM/pkg-plist (props changed) head/devel/p5-IPC-Mmap/pkg-plist (props changed) head/devel/p5-IPC-Run/pkg-plist (props changed) head/devel/p5-IPC-Run3/pkg-plist (props changed) head/devel/p5-IPC-ShareLite/pkg-plist (props changed) head/devel/p5-IPC-SharedCache/pkg-plist (props changed) head/devel/p5-IPC-System-Simple/pkg-plist (props changed) head/devel/p5-Inline-ASM/pkg-plist (props changed) head/devel/p5-Inline-CPP/pkg-plist (props changed) head/devel/p5-Inline-Files/pkg-plist (props changed) head/devel/p5-Inline-Filters/pkg-plist (props changed) head/devel/p5-Inline-Java/pkg-plist (props changed) head/devel/p5-Inline-Tcl/pkg-plist (props changed) head/devel/p5-Inline/pkg-plist (props changed) head/devel/p5-InlineX-C2XS/pkg-plist (props changed) head/devel/p5-InlineX-CPP2XS/pkg-plist (props changed) head/devel/p5-Ioctl/pkg-plist (props changed) head/devel/p5-Iterator-IO/pkg-plist (props changed) head/devel/p5-Iterator-Misc/pkg-plist (props changed) head/devel/p5-Iterator-Util/pkg-plist (props changed) head/devel/p5-Iterator/pkg-plist (props changed) head/devel/p5-JQuery/pkg-plist (props changed) head/devel/p5-JSON-Path/pkg-plist (props changed) head/devel/p5-JSON-RPC-Common/pkg-plist (props changed) head/devel/p5-JSON-RPC-Dispatcher/pkg-plist (props changed) head/devel/p5-JSON-RPC/pkg-plist (props changed) head/devel/p5-Java/pkg-plist (props changed) head/devel/p5-Lexical-Alias/pkg-plist (props changed) head/devel/p5-Lexical-SealRequireHints/pkg-plist (props changed) head/devel/p5-Lexical-Var/pkg-plist (props changed) head/devel/p5-Lingua-JA-Fold/pkg-plist (props changed) head/devel/p5-Lingua-Translit/pkg-plist (props changed) head/devel/p5-List-Cycle/pkg-plist (props changed) head/devel/p5-List-Group/pkg-plist (props changed) head/devel/p5-List-Permutor/pkg-plist (props changed) head/devel/p5-List-PowerSet/pkg-plist (props changed) head/devel/p5-List-Rotation-Cycle/pkg-plist (props changed) head/devel/p5-List-Uniq/pkg-plist (props changed) head/devel/p5-Locale-Maketext-Fuzzy/pkg-plist (props changed) head/devel/p5-Locale-Maketext-Gettext/pkg-plist (props changed) head/devel/p5-Locale-Maketext-Simple/pkg-plist (props changed) head/devel/p5-Locale-Maketext/pkg-plist (props changed) head/devel/p5-Locale-Msgfmt/pkg-plist (props changed) head/devel/p5-Locale-PGetText/pkg-plist (props changed) head/devel/p5-LockFile-Simple/pkg-plist (props changed) head/devel/p5-Log-Accounting-SVK/pkg-plist (props changed) head/devel/p5-Log-Accounting-SVN/pkg-plist (props changed) head/devel/p5-Log-Agent-Logger/pkg-plist (props changed) head/devel/p5-Log-Agent/pkg-plist (props changed) head/devel/p5-Log-Any-Adapter-Log4perl/pkg-plist (props changed) head/devel/p5-Log-Any-Adapter-Syslog/pkg-plist (props changed) head/devel/p5-Log-Any-Adapter/pkg-plist (props changed) head/devel/p5-Log-Any-App/pkg-plist (props changed) head/devel/p5-Log-Contextual/pkg-plist (props changed) head/devel/p5-Log-Dispatch-Config/pkg-plist (props changed) head/devel/p5-Log-Dispatch-DBI/pkg-plist (props changed) head/devel/p5-Log-Dispatch-Email-EmailSend/pkg-plist (props changed) head/devel/p5-Log-Dispatch-FileRotate/pkg-plist (props changed) head/devel/p5-Log-Dispatch-FileShared/pkg-plist (props changed) head/devel/p5-Log-Dispatch-Perl/pkg-plist (props changed) head/devel/p5-Log-Dispatch-Scribe/pkg-plist (props changed) head/devel/p5-Log-Dispatchouli/pkg-plist (props changed) head/devel/p5-Log-Log4perl/pkg-plist (props changed) head/devel/p5-Log-Message-Simple/pkg-plist (props changed) head/devel/p5-Log-Message/pkg-plist (props changed) head/devel/p5-Log-Trace/pkg-plist (props changed) head/devel/p5-Log-TraceMessages/pkg-plist (props changed) head/devel/p5-Logfile-Rotate/pkg-plist (props changed) head/devel/p5-Lvalue/pkg-plist (props changed) head/devel/p5-MRO-Compat/pkg-plist (props changed) head/devel/p5-MRO-Define/pkg-plist (props changed) head/devel/p5-Mac-FileSpec-Unixish/pkg-plist (props changed) head/devel/p5-Mac-PropertyList/pkg-plist (props changed) head/devel/p5-Make/pkg-plist (props changed) head/devel/p5-Memoize-ExpireLRU/pkg-plist (props changed) head/devel/p5-Meta-Builder/pkg-plist (props changed) head/devel/p5-MetaCPAN-API/pkg-plist (props changed) head/devel/p5-Metabase-Client-Simple/pkg-plist (props changed) head/devel/p5-Metabase-Fact/pkg-plist (props changed) head/devel/p5-Method-Alias/pkg-plist (props changed) head/devel/p5-Method-Signatures-Simple/pkg-plist (props changed) head/devel/p5-Mock-Quick/pkg-plist (props changed) head/devel/p5-Module-Build-Convert/pkg-plist (props changed) head/devel/p5-Module-Build-Kwalitee/pkg-plist (props changed) head/devel/p5-Module-CPANTS-Analyse/pkg-plist (props changed) head/devel/p5-Module-CPANfile/pkg-plist (props changed) head/devel/p5-Module-Dependency/pkg-plist (props changed) head/devel/p5-Module-Depends/pkg-plist (props changed) head/devel/p5-Module-Extract/pkg-plist (props changed) head/devel/p5-Module-ExtractUse/pkg-plist (props changed) head/devel/p5-Module-Find/pkg-plist (props changed) head/devel/p5-Module-Functions/pkg-plist (props changed) head/devel/p5-Module-Info-File/pkg-plist (props changed) head/devel/p5-Module-Info/pkg-plist (props changed) head/devel/p5-Module-Inspector/pkg-plist (props changed) head/devel/p5-Module-Install-Template/pkg-plist (props changed) head/devel/p5-Module-List/pkg-plist (props changed) head/devel/p5-Module-Load-Conditional/pkg-plist (props changed) head/devel/p5-Module-Load/pkg-plist (props changed) head/devel/p5-Module-Loaded/pkg-plist (props changed) head/devel/p5-Module-Manifest/pkg-plist (props changed) head/devel/p5-Module-Math-Depends/pkg-plist (props changed) head/devel/p5-Module-Metadata/pkg-plist (props changed) head/devel/p5-Module-Path/pkg-plist (props changed) head/devel/p5-Module-Pluggable-Fast/pkg-plist (props changed) head/devel/p5-Module-Pluggable-Ordered/pkg-plist (props changed) head/devel/p5-Module-Reader/pkg-plist (props changed) head/devel/p5-Module-Recursive-Require/pkg-plist (props changed) head/devel/p5-Module-Reload-Sel/pkg-plist (props changed) head/devel/p5-Module-Reload/pkg-plist (props changed) head/devel/p5-Module-Runtime/pkg-plist (props changed) head/devel/p5-Module-ScanDeps/pkg-plist (props changed) head/devel/p5-Module-Setup/pkg-plist (props changed) head/devel/p5-Module-Starter-Plugin-SimpleStore/pkg-plist (props changed) head/devel/p5-Module-Starter-Plugin-TT2/pkg-plist (props changed) head/devel/p5-Module-Starter/pkg-plist (props changed) head/devel/p5-Module-Used/pkg-plist (props changed) head/devel/p5-Module-Util/pkg-plist (props changed) head/devel/p5-Module-Versions-Report/pkg-plist (props changed) head/devel/p5-Module-Versions/pkg-plist (props changed) head/devel/p5-MooX-late/pkg-plist (props changed) head/devel/p5-Moose-Policy/pkg-plist (props changed) head/devel/p5-Moose-Test/pkg-plist (props changed) head/devel/p5-MooseX-App-Cmd/pkg-plist (props changed) head/devel/p5-MooseX-Async/pkg-plist (props changed) head/devel/p5-MooseX-AttributeHelpers/pkg-plist (props changed) head/devel/p5-MooseX-AttributeShortcuts/pkg-plist (props changed) head/devel/p5-MooseX-ConfigFromFile/pkg-plist (props changed) head/devel/p5-MooseX-Daemonize/pkg-plist (props changed) head/devel/p5-MooseX-Emulate-Class-Accessor-Fast/pkg-plist (props changed) head/devel/p5-MooseX-Has-Options/pkg-plist (props changed) head/devel/p5-MooseX-Has-Sugar/pkg-plist (props changed) head/devel/p5-MooseX-IOC/pkg-plist (props changed) head/devel/p5-MooseX-LazyRequire/pkg-plist (props changed) head/devel/p5-MooseX-Lists/pkg-plist (props changed) head/devel/p5-MooseX-Log-Log4perl/pkg-plist (props changed) head/devel/p5-MooseX-Meta-TypeConstraint-ForceCoercion/pkg-plist (props changed) head/devel/p5-MooseX-MethodAttributes/pkg-plist (props changed) head/devel/p5-MooseX-MultiInitArg/pkg-plist (props changed) head/devel/p5-MooseX-NonMoose/pkg-plist (props changed) head/devel/p5-MooseX-OneArgNew/pkg-plist (props changed) head/devel/p5-MooseX-Params-Validate/pkg-plist (props changed) head/devel/p5-MooseX-RelatedClassRoles/pkg-plist (props changed) head/devel/p5-MooseX-Role-Loggable/pkg-plist (props changed) head/devel/p5-MooseX-Role-Parameterized/pkg-plist (props changed) head/devel/p5-MooseX-Role-WithOverloading/pkg-plist (props changed) head/devel/p5-MooseX-SemiAffordanceAccessor/pkg-plist (props changed) head/devel/p5-MooseX-Singleton/pkg-plist (props changed) head/devel/p5-MooseX-StrictConstructor/pkg-plist (props changed) head/devel/p5-MooseX-Types-DateTime-ButMaintained/pkg-plist (props changed) head/devel/p5-MooseX-Types-ISO8601/pkg-plist (props changed) head/devel/p5-MooseX-Types-JSON/pkg-plist (props changed) head/devel/p5-MooseX-Types-Path-Class/pkg-plist (props changed) head/devel/p5-MooseX-Types-Path-Tiny/pkg-plist (props changed) head/devel/p5-MooseX-Types-Perl/pkg-plist (props changed) head/devel/p5-MooseX-Types-Signal/pkg-plist (props changed) head/devel/p5-MooseX-Types-Stringlike/pkg-plist (props changed) head/devel/p5-MooseX-Types-Structured/pkg-plist (props changed) head/devel/p5-MooseX-Types-VariantTable/pkg-plist (props changed) head/devel/p5-MouseX-AttributeHelpers/pkg-plist (props changed) head/devel/p5-MouseX-Getopt/pkg-plist (props changed) head/devel/p5-MouseX-Types-Path-Class/pkg-plist (props changed) head/devel/p5-MouseX-Types/pkg-plist (props changed) head/devel/p5-NEXT/pkg-plist (props changed) head/devel/p5-Net-DBus/pkg-plist (props changed) head/devel/p5-OLE-Storage_Lite/pkg-plist (props changed) head/devel/p5-Object-Accessor/pkg-plist (props changed) head/devel/p5-Object-Array/pkg-plist (props changed) head/devel/p5-Object-Authority/pkg-plist (props changed) head/devel/p5-Object-Declare/pkg-plist (props changed) head/devel/p5-Object-Destroyer/pkg-plist (props changed) head/devel/p5-Object-Enum/pkg-plist (props changed) head/devel/p5-Object-MultiType/pkg-plist (props changed) head/devel/p5-Object-Pluggable/pkg-plist (props changed) head/devel/p5-Object-Realize-Later/pkg-plist (props changed) head/devel/p5-Object-Role/pkg-plist (props changed) head/devel/p5-Object-Signature/pkg-plist (props changed) head/devel/p5-Object-Tiny/pkg-plist (props changed) head/devel/p5-Olson-Abbreviations/pkg-plist (props changed) head/devel/p5-Ouch/pkg-plist (props changed) head/devel/p5-PAR-Dist/pkg-plist (props changed) head/devel/p5-PAR-Packer/pkg-plist (props changed) head/devel/p5-PCSC-Card/pkg-plist (props changed) head/devel/p5-PHP-Serialization/pkg-plist (props changed) head/devel/p5-POE-API-Hooks/pkg-plist (props changed) head/devel/p5-POE-Component-Child/pkg-plist (props changed) head/devel/p5-POE-Component-Cron/pkg-plist (props changed) head/devel/p5-POE-Component-Daemon/pkg-plist (props changed) head/devel/p5-POE-Component-DebugShell/pkg-plist (props changed) head/devel/p5-POE-Component-DirWatch/pkg-plist (props changed) head/devel/p5-POE-Component-JobQueue/pkg-plist (props changed) head/devel/p5-POE-Component-Logger/pkg-plist (props changed) head/devel/p5-POE-Component-Pluggable/pkg-plist (props changed) head/devel/p5-POE-Component-RSS/pkg-plist (props changed) head/devel/p5-POE-Component-RSSAggregator/pkg-plist (props changed) head/devel/p5-POE-Component-Schedule/pkg-plist (props changed) head/devel/p5-POE-Component-Server-XMLRPC/pkg-plist (props changed) head/devel/p5-POE-Component-TSTP/pkg-plist (props changed) head/devel/p5-POE-Devel-Profiler/pkg-plist (props changed) head/devel/p5-POE-Loop-Glib/pkg-plist (props changed) head/devel/p5-POE-Session-MultiDispatch/pkg-plist (props changed) head/devel/p5-POE-Stage/pkg-plist (props changed) head/devel/p5-POE-XS-Loop-Poll/pkg-plist (props changed) head/devel/p5-POE-XS-Queue-Array/pkg-plist (props changed) head/devel/p5-POEx-Role-Streaming/pkg-plist (props changed) head/devel/p5-POSIX-strptime/pkg-plist (props changed) head/devel/p5-PPerl/pkg-plist (props changed) head/devel/p5-Package-DeprecationManager/pkg-plist (props changed) head/devel/p5-Package-Generator/pkg-plist (props changed) head/devel/p5-Package-Stash/pkg-plist (props changed) head/devel/p5-Parallel-ForkManager/pkg-plist (props changed) head/devel/p5-Parallel-Iterator/pkg-plist (props changed) head/devel/p5-Parallel-Scoreboard/pkg-plist (props changed) head/devel/p5-Params-CallbackRequest/pkg-plist (props changed) head/devel/p5-Params-Check/pkg-plist (props changed) head/devel/p5-Params-Classify/pkg-plist (props changed) head/devel/p5-Params-Util/pkg-plist (props changed) head/devel/p5-Params-Validate/pkg-plist (props changed) head/devel/p5-Parse-CPAN-Meta/pkg-plist (props changed) head/devel/p5-Parse-ErrorString-Perl/pkg-plist (props changed) head/devel/p5-Parse-ExuberantCTags/pkg-plist (props changed) head/devel/p5-Parse-Pidl/pkg-plist (props changed) head/devel/p5-Parse-Win32Registry/pkg-plist (props changed) head/devel/p5-Parse-Yapp/pkg-plist (props changed) head/devel/p5-ParseLex/pkg-plist (props changed) head/devel/p5-ParseTemplate/pkg-plist (props changed) head/devel/p5-Path-Abstract/pkg-plist (props changed) head/devel/p5-Path-Class/pkg-plist (props changed) head/devel/p5-Path-Dispatcher-Declarative/pkg-plist (props changed) head/devel/p5-Path-Dispatcher/pkg-plist (props changed) head/devel/p5-Path-IsDev/pkg-plist (props changed) head/devel/p5-Path-Iterator-Rule/pkg-plist (props changed) head/devel/p5-PathTools/pkg-plist (props changed) head/devel/p5-Penguin-Easy/pkg-plist (props changed) head/devel/p5-Penguin/pkg-plist (props changed) head/devel/p5-Perl-Metrics-Lite/pkg-plist (props changed) head/devel/p5-Perl-Metrics-Simple/pkg-plist (props changed) head/devel/p5-Perl-PrereqScanner/pkg-plist (props changed) head/devel/p5-Perl-Unsafe-Signals/pkg-plist (props changed) head/devel/p5-Perl-Version/pkg-plist (props changed) head/devel/p5-Perl6-Builtins/pkg-plist (props changed) head/devel/p5-Perl6-Export-Attrs/pkg-plist (props changed) head/devel/p5-Perl6-Export/pkg-plist (props changed) head/devel/p5-Perl6-Junction/pkg-plist (props changed) head/devel/p5-Perl6-Rules/pkg-plist (props changed) head/devel/p5-Perl6-Say/pkg-plist (props changed) head/devel/p5-PerlIO-locale/pkg-plist (props changed) head/devel/p5-PerlIO-via-MD5/pkg-plist (props changed) head/devel/p5-PerlIO-via-dynamic/pkg-plist (props changed) head/devel/p5-Pipeline/pkg-plist (props changed) head/devel/p5-Pod-Coverage-Moose/pkg-plist (props changed) head/devel/p5-Pod-Coverage/pkg-plist (props changed) head/devel/p5-Pod-Tests/pkg-plist (props changed) head/devel/p5-Proc-Background/pkg-plist (props changed) head/devel/p5-Proc-Pidfile/pkg-plist (props changed) head/devel/p5-Proc-ProcessTable/pkg-plist (props changed) head/devel/p5-Proc-Queue/pkg-plist (props changed) head/devel/p5-Proc-Reliable/pkg-plist (props changed) head/devel/p5-Proc-SafeExec/pkg-plist (props changed) head/devel/p5-Proc-Wait3/pkg-plist (props changed) head/devel/p5-Proc-WaitStat/pkg-plist (props changed) head/devel/p5-Project-Gantt/pkg-plist (props changed) head/devel/p5-Project-Libs/pkg-plist (props changed) head/devel/p5-Qudo/pkg-plist (props changed) head/devel/p5-RRDTool-OO/pkg-plist (props changed) head/devel/p5-Rcs/pkg-plist (props changed) head/devel/p5-ReadLine-Gnu/pkg-plist (props changed) head/devel/p5-ReadLine-Perl/pkg-plist (props changed) head/devel/p5-ReadLine-TTYtter/pkg-plist (props changed) head/devel/p5-Regexp-Assemble/pkg-plist (props changed) head/devel/p5-Regexp-Bind/pkg-plist (props changed) head/devel/p5-Regexp-Grammars/pkg-plist (props changed) head/devel/p5-Religion/pkg-plist (props changed) head/devel/p5-ResourcePool/pkg-plist (props changed) head/devel/p5-Resources/pkg-plist (props changed) head/devel/p5-SOAP-WSDL/pkg-plist (props changed) head/devel/p5-SSN-Validate/pkg-plist (props changed) head/devel/p5-SUPER/pkg-plist (props changed) head/devel/p5-SVN-ACL/pkg-plist (props changed) head/devel/p5-SVN-Access/pkg-plist (props changed) head/devel/p5-SVN-Agent/pkg-plist (props changed) head/devel/p5-SVN-Dump/pkg-plist (props changed) head/devel/p5-SVN-Hook/pkg-plist (props changed) head/devel/p5-SVN-Mirror/pkg-plist (props changed) head/devel/p5-SVN-Notify-Config/pkg-plist (props changed) head/devel/p5-SVN-Notify-Filter-AuthZMail/pkg-plist (props changed) head/devel/p5-SVN-Notify-Filter-EmailFlatFileDB/pkg-plist (props changed) head/devel/p5-SVN-Notify-Filter-Markdown/pkg-plist (props changed) head/devel/p5-SVN-Notify-Mirror/pkg-plist (props changed) head/devel/p5-SVN-Notify-Snapshot/pkg-plist (props changed) head/devel/p5-SVN-S4/pkg-plist (props changed) head/devel/p5-SVN-Simple/pkg-plist (props changed) head/devel/p5-Scalar-Defer/pkg-plist (props changed) head/devel/p5-Scalar-Listify/pkg-plist (props changed) head/devel/p5-Scalar-String/pkg-plist (props changed) head/devel/p5-Scope-Guard/pkg-plist (props changed) head/devel/p5-Scope-Upper/pkg-plist (props changed) head/devel/p5-Script-isAperlScript/pkg-plist (props changed) head/devel/p5-Sepia/pkg-plist (props changed) head/devel/p5-Set-ConsistentHash/pkg-plist (props changed) head/devel/p5-Set-Crontab/pkg-plist (props changed) head/devel/p5-Set-CrossProduct/pkg-plist (props changed) head/devel/p5-Set-Infinite/pkg-plist (props changed) head/devel/p5-Set-NestedGroups/pkg-plist (props changed) head/devel/p5-Set-Object/pkg-plist (props changed) head/devel/p5-Shell-Base/pkg-plist (props changed) head/devel/p5-Shell-Parser/pkg-plist (props changed) head/devel/p5-Shell-Source/pkg-plist (props changed) head/devel/p5-ShipIt/pkg-plist (props changed) head/devel/p5-Sort-Array/pkg-plist (props changed) head/devel/p5-Sort-ArrayOfArrays/pkg-plist (props changed) head/devel/p5-Sort-Key-DateTime/pkg-plist (props changed) head/devel/p5-Sort-Key-Top/pkg-plist (props changed) head/devel/p5-Sort-Key/pkg-plist (props changed) head/devel/p5-Sort-Maker/pkg-plist (props changed) head/devel/p5-Sort-Tree/pkg-plist (props changed) head/devel/p5-Sort-Versions/pkg-plist (props changed) head/devel/p5-Spiffy/pkg-plist (props changed) head/devel/p5-Spoon/pkg-plist (props changed) head/devel/p5-Storable/pkg-plist (props changed) head/devel/p5-Stream-Reader/pkg-plist (props changed) head/devel/p5-Stream/pkg-plist (props changed) head/devel/p5-String-Approx/pkg-plist (props changed) head/devel/p5-String-CRC32/pkg-plist (props changed) head/devel/p5-String-Checker/pkg-plist (props changed) head/devel/p5-String-Diff/pkg-plist (props changed) head/devel/p5-String-Dump/pkg-plist (props changed) head/devel/p5-String-Ediff/pkg-plist (props changed) head/devel/p5-String-Errf/pkg-plist (props changed) head/devel/p5-String-LRC/pkg-plist (props changed) head/devel/p5-String-Parity/pkg-plist (props changed) head/devel/p5-String-Random/pkg-plist (props changed) head/devel/p5-String-RexxParse/pkg-plist (props changed) head/devel/p5-String-Similarity/pkg-plist (props changed) head/devel/p5-Sub-Alias/pkg-plist (props changed) head/devel/p5-Sub-Current/pkg-plist (props changed) head/devel/p5-Sub-Delete/pkg-plist (props changed) head/devel/p5-Sub-Exporter-ForMethods/pkg-plist (props changed) head/devel/p5-Sub-Exporter-GlobExporter/pkg-plist (props changed) head/devel/p5-Sub-Identify/pkg-plist (props changed) head/devel/p5-Sub-Installer/pkg-plist (props changed) head/devel/p5-Sub-Multi/pkg-plist (props changed) head/devel/p5-Sub-Override/pkg-plist (props changed) head/devel/p5-Sub-Prototype/pkg-plist (props changed) head/devel/p5-Sub-Signatures/pkg-plist (props changed) head/devel/p5-Sub-Uplevel/pkg-plist (props changed) head/devel/p5-Sub-WrapPackages/pkg-plist (props changed) head/devel/p5-Symbol-Util/pkg-plist (props changed) head/devel/p5-Sys-MemInfo/pkg-plist (props changed) head/devel/p5-Sys-Mmap/pkg-plist (props changed) head/devel/p5-Sys-RunAlways/pkg-plist (props changed) head/devel/p5-Sys-Sendfile/pkg-plist (props changed) head/devel/p5-Sys-Sig/pkg-plist (props changed) head/devel/p5-Sys-Syscall/pkg-plist (props changed) head/devel/p5-Sys-Trace/pkg-plist (props changed) head/devel/p5-Sys-Virt/pkg-plist (props changed) head/devel/p5-System-Sub/pkg-plist (props changed) head/devel/p5-System2/pkg-plist (props changed) head/devel/p5-TAP-Formatter-JUnit/pkg-plist (props changed) head/devel/p5-TAP-Harness-JUnit/pkg-plist (props changed) head/devel/p5-TAP-SimpleOutput/pkg-plist (props changed) head/devel/p5-Taint-Runtime/pkg-plist (props changed) head/devel/p5-Tee/pkg-plist (props changed) head/devel/p5-Template-Provider-Encode/pkg-plist (props changed) head/devel/p5-Term-ANSIColor/pkg-plist (props changed) head/devel/p5-Term-Animation/pkg-plist (props changed) head/devel/p5-Term-CallEditor/pkg-plist (props changed) head/devel/p5-Term-ProgressBar/pkg-plist (props changed) head/devel/p5-Term-Query/pkg-plist (props changed) head/devel/p5-Term-ReadKey/pkg-plist (props changed) head/devel/p5-Term-ReadLine-Zoid/pkg-plist (props changed) head/devel/p5-Term-ReadPassword/pkg-plist (props changed) head/devel/p5-Term-Screen/pkg-plist (props changed) head/devel/p5-Term-Shell/pkg-plist (props changed) head/devel/p5-Term-Title/pkg-plist (props changed) head/devel/p5-Term-VT102-Boundless/pkg-plist (props changed) head/devel/p5-Term-VT102/pkg-plist (props changed) head/devel/p5-Term-Visual/pkg-plist (props changed) head/devel/p5-Test-Benchmark/pkg-plist (props changed) head/devel/p5-Test-CheckDeps/pkg-plist (props changed) head/devel/p5-Test-CheckManifest/pkg-plist (props changed) head/devel/p5-Test-Class/pkg-plist (props changed) head/devel/p5-Test-Classy/pkg-plist (props changed) head/devel/p5-Test-Cmd/pkg-plist (props changed) head/devel/p5-Test-Command-Simple/pkg-plist (props changed) head/devel/p5-Test-DBIx-Class/pkg-plist (props changed) head/devel/p5-Test-Debugger/pkg-plist (props changed) head/devel/p5-Test-Dependencies/pkg-plist (props changed) head/devel/p5-Test-Differences/pkg-plist (props changed) head/devel/p5-Test-Distribution/pkg-plist (props changed) head/devel/p5-Test-Exception/pkg-plist (props changed) head/devel/p5-Test-Expect/pkg-plist (props changed) head/devel/p5-Test-Fatal/pkg-plist (props changed) head/devel/p5-Test-File-Contents/pkg-plist (props changed) head/devel/p5-Test-File-ShareDir/pkg-plist (props changed) head/devel/p5-Test-Filename/pkg-plist (props changed) head/devel/p5-Test-Group/pkg-plist (props changed) head/devel/p5-Test-Harness-Straps/pkg-plist (props changed) head/devel/p5-Test-HexString/pkg-plist (props changed) head/devel/p5-Test-If/pkg-plist (props changed) head/devel/p5-Test-Inline/pkg-plist (props changed) head/devel/p5-Test-Inter/pkg-plist (props changed) head/devel/p5-Test-JSON/pkg-plist (props changed) head/devel/p5-Test-Kwalitee/pkg-plist (props changed) head/devel/p5-Test-Lazy/pkg-plist (props changed) head/devel/p5-Test-Log4perl/pkg-plist (props changed) head/devel/p5-Test-LongString/pkg-plist (props changed) head/devel/p5-Test-Manifest/pkg-plist (props changed) head/devel/p5-Test-ManyParams/pkg-plist (props changed) head/devel/p5-Test-Memory-Cycle/pkg-plist (props changed) head/devel/p5-Test-Mini/pkg-plist (props changed) head/devel/p5-Test-MockObject/pkg-plist (props changed) head/devel/p5-Test-MockRandom/pkg-plist (props changed) head/devel/p5-Test-MockTime/pkg-plist (props changed) head/devel/p5-Test-Module-Used/pkg-plist (props changed) head/devel/p5-Test-Most/pkg-plist (props changed) head/devel/p5-Test-Name-FromLine/pkg-plist (props changed) head/devel/p5-Test-NoWarnings/pkg-plist (props changed) head/devel/p5-Test-POE-Server-TCP/pkg-plist (props changed) head/devel/p5-Test-Parser/pkg-plist (props changed) head/devel/p5-Test-Pod-Coverage-Permissive/pkg-plist (props changed) head/devel/p5-Test-Pod/pkg-plist (props changed) head/devel/p5-Test-Portability-Files/pkg-plist (props changed) head/devel/p5-Test-RandomResults/pkg-plist (props changed) head/devel/p5-Test-Reporter/pkg-plist (props changed) head/devel/p5-Test-Requires/pkg-plist (props changed) head/devel/p5-Test-Script-Run/pkg-plist (props changed) head/devel/p5-Test-Script/pkg-plist (props changed) head/devel/p5-Test-Signature/pkg-plist (props changed) head/devel/p5-Test-Spelling/pkg-plist (props changed) head/devel/p5-Test-Strict/pkg-plist (props changed) head/devel/p5-Test-TAP-HTMLMatrix/pkg-plist (props changed) head/devel/p5-Test-TAP-Model/pkg-plist (props changed) head/devel/p5-Test-TCP/pkg-plist (props changed) head/devel/p5-Test-Taint/pkg-plist (props changed) head/devel/p5-Test-Tester/pkg-plist (props changed) head/devel/p5-Test-Time/pkg-plist (props changed) head/devel/p5-Test-Timer/pkg-plist (props changed) head/devel/p5-Test-TinyMocker/pkg-plist (props changed) head/devel/p5-Test-Unit/pkg-plist (props changed) head/devel/p5-Test-UseAllModules/pkg-plist (props changed) head/devel/p5-Test-WWW-Declare/pkg-plist (props changed) head/devel/p5-Test-WWW-Mechanize-CGI/pkg-plist (props changed) head/devel/p5-Test-WWW-Mechanize-CGIApp/pkg-plist (props changed) head/devel/p5-Test-WWW-Mechanize-Catalyst/pkg-plist (props changed) head/devel/p5-Test-WWW-Mechanize/pkg-plist (props changed) head/devel/p5-Test-WWW-Selenium/pkg-plist (props changed) head/devel/p5-Test-Without-Module/pkg-plist (props changed) head/devel/p5-Test-XML-Valid/pkg-plist (props changed) head/devel/p5-Test-YAML-Valid/pkg-plist (props changed) head/devel/p5-Test-use-ok/pkg-plist (props changed) head/devel/p5-Text-LevenshteinXS/pkg-plist (props changed) head/devel/p5-TheSchwartz-Simple/pkg-plist (props changed) head/devel/p5-TheSchwartz-Worker-SendEmail/pkg-plist (props changed) head/devel/p5-TheSchwartz/pkg-plist (props changed) head/devel/p5-Thread-Apartment/pkg-plist (props changed) head/devel/p5-Thread-Cancel/pkg-plist (props changed) head/devel/p5-Thread-Pool-Simple/pkg-plist (props changed) head/devel/p5-Thread-Queue-Duplex/pkg-plist (props changed) head/devel/p5-Thrift/pkg-plist (props changed) head/devel/p5-Tie-Array-Sorted/pkg-plist (props changed) head/devel/p5-Tie-CPHash/pkg-plist (props changed) head/devel/p5-Tie-Cache/pkg-plist (props changed) head/devel/p5-Tie-DB_File-SplitHash/pkg-plist (props changed) head/devel/p5-Tie-FileLRUCache/pkg-plist (props changed) head/devel/p5-Tie-Hash-Indexed/pkg-plist (props changed) head/devel/p5-Tie-Hash-Regex/pkg-plist (props changed) head/devel/p5-Tie-Hash-Sorted/pkg-plist (props changed) head/devel/p5-Tie-Hash-TwoWay/pkg-plist (props changed) head/devel/p5-Tie-IxHash/pkg-plist (props changed) head/devel/p5-Tie-RefHash-Weak/pkg-plist (props changed) head/devel/p5-Tie-RefHash/pkg-plist (props changed) head/devel/p5-Tie-RegexpHash/pkg-plist (props changed) head/devel/p5-Tie-ShareLite/pkg-plist (props changed) head/devel/p5-Tie-Util/pkg-plist (props changed) head/devel/p5-Tie-iCal/pkg-plist (props changed) head/devel/p5-Time-Clock/pkg-plist (props changed) head/devel/p5-Time-Crontab/pkg-plist (props changed) head/devel/p5-Time-Duration-Parse/pkg-plist (props changed) head/devel/p5-Time-Duration/pkg-plist (props changed) head/devel/p5-Time-Format/pkg-plist (props changed) head/devel/p5-Time-Interval/pkg-plist (props changed) head/devel/p5-Time-Local/pkg-plist (props changed) head/devel/p5-Time-Object/pkg-plist (props changed) head/devel/p5-Time-Out/pkg-plist (props changed) head/devel/p5-Time-Period/pkg-plist (props changed) head/devel/p5-Time-Piece-Range/pkg-plist (props changed) head/devel/p5-Time-Piece/pkg-plist (props changed) head/devel/p5-Time-Progress/pkg-plist (props changed) head/devel/p5-Time-Stopwatch/pkg-plist (props changed) head/devel/p5-Time-Warp/pkg-plist (props changed) head/devel/p5-Time-modules/pkg-plist (props changed) head/devel/p5-TraceFuncs/pkg-plist (props changed) head/devel/p5-Tree-Binary-Dictionary/pkg-plist (props changed) head/devel/p5-Tree-Binary/pkg-plist (props changed) head/devel/p5-Tree-DAG_Node/pkg-plist (props changed) head/devel/p5-Tree-Node/pkg-plist (props changed) head/devel/p5-Tree-Parser/pkg-plist (props changed) head/devel/p5-Tree-R/pkg-plist (props changed) head/devel/p5-Tree-Simple-View/pkg-plist (props changed) head/devel/p5-Tree-Simple-VisitorFactory/pkg-plist (props changed) head/devel/p5-UNIVERSAL-can/pkg-plist (props changed) head/devel/p5-UNIVERSAL-isa/pkg-plist (props changed) head/devel/p5-UNIVERSAL-moniker/pkg-plist (props changed) head/devel/p5-UNIVERSAL-require/pkg-plist (props changed) head/devel/p5-Uniq/pkg-plist (props changed) head/devel/p5-Unix-Statgrab/pkg-plist (props changed) head/devel/p5-Unix-Uptime/pkg-plist (props changed) head/devel/p5-VCP-autrijus/pkg-plist (props changed) head/devel/p5-VCS-CVS/pkg-plist (props changed) head/devel/p5-VCS-Lite/pkg-plist (props changed) head/devel/p5-VCS/pkg-plist (props changed) head/devel/p5-Validation-Class/pkg-plist (props changed) head/devel/p5-Variable-Eject/pkg-plist (props changed) head/devel/p5-Variable-Magic/pkg-plist (props changed) head/devel/p5-Want/pkg-plist (props changed) head/devel/p5-WeakRef/pkg-plist (props changed) head/devel/p5-Workflow/pkg-plist (props changed) head/devel/p5-XML-Compile-Tester/pkg-plist (props changed) head/devel/p5-XML-Pastor/pkg-plist (props changed) head/devel/p5-XSLoader/pkg-plist (props changed) head/devel/p5-Yada-Yada-Yada/pkg-plist (props changed) head/devel/p5-ZConf-GUI/pkg-plist (props changed) head/devel/p5-accessors/pkg-plist (props changed) head/devel/p5-autobox-Core/pkg-plist (props changed) head/devel/p5-autobox/pkg-plist (props changed) head/devel/p5-autodie/pkg-plist (props changed) head/devel/p5-base/pkg-plist (props changed) head/devel/p5-carton/pkg-plist (props changed) head/devel/p5-constant-boolean/pkg-plist (props changed) head/devel/p5-constant-lexical/pkg-plist (props changed) head/devel/p5-cpan-listchanges/pkg-plist (props changed) head/devel/p5-enum/pkg-plist (props changed) head/devel/p5-forks/pkg-plist (props changed) head/devel/p5-github_creator/pkg-plist (props changed) head/devel/p5-indirect/pkg-plist (props changed) head/devel/p5-latest/pkg-plist (props changed) head/devel/p5-lib-abs/pkg-plist (props changed) head/devel/p5-local-lib/pkg-plist (props changed) head/devel/p5-mixin/pkg-plist (props changed) head/devel/p5-namespace-autoclean/pkg-plist (props changed) head/devel/p5-namespace-sweep/pkg-plist (props changed) head/devel/p5-perlbrew/pkg-plist (props changed) head/devel/p5-perlkde/pkg-plist (props changed) head/devel/p5-perlqt/pkg-plist (props changed) head/devel/p5-pip/pkg-plist (props changed) head/devel/p5-prefork/pkg-plist (props changed) head/devel/p5-reaper/pkg-plist (props changed) head/devel/p5-self-init/pkg-plist (props changed) head/devel/p5-self/pkg-plist (props changed) head/devel/p5-strictures/pkg-plist (props changed) head/devel/p5-subversion/pkg-plist (props changed) head/devel/p5-threads-shared/pkg-plist (props changed) head/devel/p5-uni-perl/pkg-plist (props changed) head/devel/papi/pkg-plist (props changed) head/devel/papp/pkg-plist (props changed) head/devel/pccts/pkg-plist (props changed) head/devel/pcl/pkg-plist (props changed) head/devel/pcre/pkg-plist (props changed) head/devel/pdcurses-the/pkg-plist (props changed) head/devel/pdcurses/pkg-plist (props changed) head/devel/pear-Date_Holidays_Italy/pkg-plist (props changed) head/devel/pear-Date_Holidays_Norway/pkg-plist (props changed) head/devel/pear-Date_Holidays_PHPdotNet/pkg-plist (props changed) head/devel/pear-Date_Holidays_Romania/pkg-plist (props changed) head/devel/pear-Date_Holidays_Slovenia/pkg-plist (props changed) head/devel/pear-Date_Holidays_UNO/pkg-plist (props changed) head/devel/pear-Date_Holidays_USA/pkg-plist (props changed) head/devel/pear-Date_Holidays_Ukraine/pkg-plist (props changed) head/devel/pear/pkg-plist (props changed) head/devel/pecl-zookeeper/pkg-plist (props changed) head/devel/performance/pkg-plist (props changed) head/devel/php-libawl/pkg-plist (props changed) head/devel/phpbt/pkg-plist (props changed) head/devel/phpsh/pkg-plist (props changed) head/devel/physfs-devel/pkg-plist (props changed) head/devel/picasm/pkg-plist (props changed) head/devel/pinba_engine/pkg-plist (props changed) head/devel/pire/pkg-plist (props changed) head/devel/pmd/pkg-plist (props changed) head/devel/pmk/pkg-plist (props changed) head/devel/poco-ssl/pkg-plist (props changed) head/devel/poco/pkg-plist (props changed) head/devel/popt/pkg-plist (props changed) head/devel/ppl/pkg-plist (props changed) head/devel/preps-gui/pkg-plist (props changed) head/devel/prepstools/pkg-plist (props changed) head/devel/privman/pkg-plist (props changed) head/devel/projectcenter/pkg-plist (props changed) head/devel/protobuf-c/pkg-plist (props changed) head/devel/protobuf/pkg-plist (props changed) head/devel/prototype/pkg-plist (props changed) head/devel/psptoolchain-binutils/pkg-plist (props changed) head/devel/psptoolchain-gcc-stage1/pkg-plist (props changed) head/devel/psptoolchain-gcc-stage2/pkg-plist (props changed) head/devel/psptoolchain-gdb/pkg-plist (props changed) head/devel/psptoolchain-newlib/pkg-plist (props changed) head/devel/psptoolchain-pspsdk-stage1/pkg-plist (props changed) head/devel/psptoolchain-pspsdk-stage2/pkg-plist (props changed) head/devel/pth/pkg-plist (props changed) head/devel/pthsem/pkg-plist (props changed) head/devel/ptmalloc/pkg-plist (props changed) head/devel/ptmalloc2/pkg-plist (props changed) head/devel/ptypes/pkg-plist (props changed) head/devel/publib/pkg-plist (props changed) head/devel/pure-stldict/pkg-plist (props changed) head/devel/pushmi/pkg-plist (props changed) head/devel/pwlib/pkg-plist (props changed) head/devel/py-Acquisition/pkg-plist (props changed) head/devel/py-Breve/pkg-plist (props changed) head/devel/py-DateTime/pkg-plist (props changed) head/devel/py-DocumentTemplate/pkg-plist (props changed) head/devel/py-ExtensionClass/pkg-plist (props changed) head/devel/py-InlineEgg/pkg-plist (props changed) head/devel/py-Jinja/pkg-plist (props changed) head/devel/py-Missing/pkg-plist (props changed) head/devel/py-MultiMapping/pkg-plist (props changed) head/devel/py-PEAK-Rules/pkg-plist (props changed) head/devel/py-Persistence/pkg-plist (props changed) head/devel/py-Products.ATContentTypes/pkg-plist (props changed) head/devel/py-Products.ATReferenceBrowserWidget/pkg-plist (props changed) head/devel/py-Products.BTreeFolder2/pkg-plist (props changed) head/devel/py-Products.CMFActionIcons/pkg-plist (props changed) head/devel/py-Products.CMFCalendar/pkg-plist (props changed) head/devel/py-Products.CMFCore/pkg-plist (props changed) head/devel/py-Products.CMFDefault/pkg-plist (props changed) head/devel/py-Products.CMFDynamicViewFTI/pkg-plist (props changed) head/devel/py-Products.CMFEditions/pkg-plist (props changed) head/devel/py-Products.CMFFormController/pkg-plist (props changed) head/devel/py-Products.CMFPlacefulWorkflow/pkg-plist (props changed) head/devel/py-Products.CMFQuickInstallerTool/pkg-plist (props changed) head/devel/py-Products.CMFTestCase/pkg-plist (props changed) head/devel/py-Products.CMFUid/pkg-plist (props changed) head/devel/py-Products.DCWorkflow/pkg-plist (props changed) head/devel/py-Products.ExtendedPathIndex/pkg-plist (props changed) head/devel/py-Products.ExternalEditor/pkg-plist (props changed) head/devel/py-Products.ExternalMethod/pkg-plist (props changed) head/devel/py-Products.GenericSetup/pkg-plist (props changed) head/devel/py-Products.LDAPMultiPlugins/pkg-plist (props changed) head/devel/py-Products.LDAPUserFolder/pkg-plist (props changed) head/devel/py-Products.MIMETools/pkg-plist (props changed) head/devel/py-Products.Marshall/pkg-plist (props changed) head/devel/py-Products.MimetypesRegistry/pkg-plist (props changed) head/devel/py-Products.OFSP/pkg-plist (props changed) head/devel/py-Products.PasswordResetTool/pkg-plist (props changed) head/devel/py-Products.PloneLanguageTool/pkg-plist (props changed) head/devel/py-Products.PloneTestCase/pkg-plist (props changed) head/devel/py-Products.PluginRegistry/pkg-plist (props changed) head/devel/py-Products.PortalTransforms/pkg-plist (props changed) head/devel/py-Products.PythonScripts/pkg-plist (props changed) head/devel/py-Products.ResourceRegistries/pkg-plist (props changed) head/devel/py-Products.StandardCacheManagers/pkg-plist (props changed) head/devel/py-Products.ZCTextIndex/pkg-plist (props changed) head/devel/py-Products.ZCatalog/pkg-plist (props changed) head/devel/py-Products.ZSQLMethods/pkg-plist (props changed) head/devel/py-Products.ZopeVersionControl/pkg-plist (props changed) head/devel/py-Products.contentmigration/pkg-plist (props changed) head/devel/py-Products.statusmessages/pkg-plist (props changed) head/devel/py-Products.validation/pkg-plist (props changed) head/devel/py-Record/pkg-plist (props changed) head/devel/py-SymbolType/pkg-plist (props changed) head/devel/py-TGScheduler/pkg-plist (props changed) head/devel/py-ToscaWidgets/pkg-plist (props changed) head/devel/py-TurboJinja/pkg-plist (props changed) head/devel/py-ZopeUndo/pkg-plist (props changed) head/devel/py-akismet/pkg-plist (props changed) head/devel/py-anyjson/pkg-plist (props changed) head/devel/py-apipkg/pkg-plist (props changed) head/devel/py-application/pkg-plist (props changed) head/devel/py-archetypes.querywidget/pkg-plist (props changed) head/devel/py-archetypes.referencebrowserwidget/pkg-plist (props changed) head/devel/py-archetypes.schemaextender/pkg-plist (props changed) head/devel/py-asn1-modules/pkg-plist (props changed) head/devel/py-asn1/pkg-plist (props changed) head/devel/py-aspects/pkg-plist (props changed) head/devel/py-aspyct/pkg-plist (props changed) head/devel/py-async/pkg-plist (props changed) head/devel/py-babel/pkg-plist (props changed) head/devel/py-bitstring/pkg-plist (props changed) head/devel/py-cclib/pkg-plist (props changed) head/devel/py-cfgparse/pkg-plist (props changed) head/devel/py-cheetah/pkg-plist (props changed) head/devel/py-ciphon/pkg-plist (props changed) head/devel/py-cmdln/pkg-plist (props changed) head/devel/py-cog/pkg-plist (props changed) head/devel/py-coil/pkg-plist (props changed) head/devel/py-collective.monkeypatcher/pkg-plist (props changed) head/devel/py-collective.z3cform.datetimewidget/pkg-plist (props changed) head/devel/py-configobj/pkg-plist (props changed) head/devel/py-construct/pkg-plist (props changed) head/devel/py-coverage/pkg-plist (props changed) head/devel/py-crcmod/pkg-plist (props changed) head/devel/py-ctags/pkg-plist (props changed) head/devel/py-cxx/pkg-plist (props changed) head/devel/py-daemon/pkg-plist (props changed) head/devel/py-dal/pkg-plist (props changed) head/devel/py-darcsver/pkg-plist (props changed) head/devel/py-decorator/pkg-plist (props changed) head/devel/py-demjson/pkg-plist (props changed) head/devel/py-dexml/pkg-plist (props changed) head/devel/py-dialog/pkg-plist (props changed) head/devel/py-diazo/pkg-plist (props changed) head/devel/py-durus/pkg-plist (props changed) head/devel/py-experimental.cssselect/pkg-plist (props changed) head/devel/py-ezpyinline/pkg-plist (props changed) head/devel/py-five.customerize/pkg-plist (props changed) head/devel/py-five.formlib/pkg-plist (props changed) head/devel/py-five.globalrequest/pkg-plist (props changed) head/devel/py-five.localsitemanager/pkg-plist (props changed) head/devel/py-flexmock/pkg-plist (props changed) head/devel/py-foolscap/pkg-plist (props changed) head/devel/py-fortran/pkg-plist (props changed) head/devel/py-gamin/pkg-plist (props changed) head/devel/py-gdata/pkg-plist (props changed) head/devel/py-geojson/pkg-plist (props changed) head/devel/py-geotypes/pkg-plist (props changed) head/devel/py-gitdb/pkg-plist (props changed) head/devel/py-grab/pkg-plist (props changed) head/devel/py-grizzled/pkg-plist (props changed) head/devel/py-gyp-devel/pkg-plist (props changed) head/devel/py-hgsubversion/pkg-plist (props changed) head/devel/py-icu/pkg-plist (props changed) head/devel/py-initgroups/pkg-plist (props changed) head/devel/py-instant/pkg-plist (props changed) head/devel/py-interface/pkg-plist (props changed) head/devel/py-iterpipes/pkg-plist (props changed) head/devel/py-itools/pkg-plist (props changed) head/devel/py-jcc/pkg-plist (props changed) head/devel/py-jira/pkg-plist (props changed) head/devel/py-json-py/pkg-plist (props changed) head/devel/py-jsonrpclib/pkg-plist (props changed) head/devel/py-kid/pkg-plist (props changed) head/devel/py-liblarch/pkg-plist (props changed) head/devel/py-lock_file/pkg-plist (props changed) head/devel/py-log4py/pkg-plist (props changed) head/devel/py-manuel/pkg-plist (props changed) head/devel/py-meliae/pkg-plist (props changed) head/devel/py-mercurialserver/pkg-plist (props changed) head/devel/py-minimongo/pkg-plist (props changed) head/devel/py-mongokit/pkg-plist (props changed) head/devel/py-mox/pkg-plist (props changed) head/devel/py-msgpack/pkg-plist (props changed) head/devel/py-mwlib.ext/pkg-plist (props changed) head/devel/py-mwlib.rl/pkg-plist (props changed) head/devel/py-mwlib/pkg-plist (props changed) head/devel/py-mx-experimental/pkg-plist (props changed) head/devel/py-mygpoclient/pkg-plist (props changed) head/devel/py-notifier/pkg-plist (props changed) head/devel/py-notify/pkg-plist (props changed) head/devel/py-ode/pkg-plist (props changed) head/devel/py-odfpy/pkg-plist (props changed) head/devel/py-omniorb/pkg-plist (props changed) head/devel/py-orbit/pkg-plist (props changed) head/devel/py-parsedatetime/pkg-plist (props changed) head/devel/py-parsing/pkg-plist (props changed) head/devel/py-period/pkg-plist (props changed) head/devel/py-phpserialize/pkg-plist (props changed) head/devel/py-polib/pkg-plist (props changed) head/devel/py-pp/pkg-plist (props changed) head/devel/py-protocols-devel/pkg-plist (props changed) head/devel/py-protocols/pkg-plist (props changed) head/devel/py-pycallgraph/pkg-plist (props changed) head/devel/py-pygpx/pkg-plist (props changed) head/devel/py-pyke/pkg-plist (props changed) head/devel/py-pyro/pkg-plist (props changed) head/devel/py-pyshapelib/pkg-plist (props changed) head/devel/py-pytemplate/pkg-plist (props changed) head/devel/py-pythonbrew/pkg-plist (props changed) head/devel/py-pyutil/pkg-plist (props changed) head/devel/py-qserve/pkg-plist (props changed) head/devel/py-qt4-assistant/pkg-plist (props changed) head/devel/py-qt4-declarative/pkg-plist (props changed) head/devel/py-qt4-designer/pkg-plist (props changed) head/devel/py-qt4-help/pkg-plist (props changed) head/devel/py-qt4-qscintilla2/pkg-plist (props changed) head/devel/py-qt4-script/pkg-plist (props changed) head/devel/py-qt4-scripttools/pkg-plist (props changed) head/devel/py-qt4-test/pkg-plist (props changed) head/devel/py-repoze.tm2/pkg-plist (props changed) head/devel/py-repoze.what-pylons/pkg-plist (props changed) head/devel/py-repoze.what/pkg-plist (props changed) head/devel/py-repoze.who-friendlyform/pkg-plist (props changed) head/devel/py-repoze.xmliter/pkg-plist (props changed) head/devel/py-rope/pkg-plist (props changed) head/devel/py-roxlib/pkg-plist (props changed) head/devel/py-rtree/pkg-plist (props changed) head/devel/py-sanetime/pkg-plist (props changed) head/devel/py-shapely/pkg-plist (props changed) head/devel/py-simpletal/pkg-plist (props changed) head/devel/py-simpy/pkg-plist (props changed) head/devel/py-sip/pkg-plist (props changed) head/devel/py-spark/pkg-plist (props changed) head/devel/py-speaklater/pkg-plist (props changed) head/devel/py-sqlcc/pkg-plist (props changed) head/devel/py-statgrab/pkg-plist (props changed) head/devel/py-subversion/pkg-plist (props changed) head/devel/py-subvertpy/pkg-plist (props changed) head/devel/py-tconfpy/pkg-plist (props changed) head/devel/py-tempstorage/pkg-plist (props changed) head/devel/py-termcolor/pkg-plist (props changed) head/devel/py-testgears/pkg-plist (props changed) head/devel/py-testtools/pkg-plist (props changed) head/devel/py-tgMochiKit/pkg-plist (props changed) head/devel/py-timelib/pkg-plist (props changed) head/devel/py-traits/pkg-plist (props changed) head/devel/py-transaction/pkg-plist (props changed) head/devel/py-turbocheetah/pkg-plist (props changed) head/devel/py-turbojson11/pkg-plist (props changed) head/devel/py-turbokid/pkg-plist (props changed) head/devel/py-tvrage/pkg-plist (props changed) head/devel/py-tw.forms/pkg-plist (props changed) head/devel/py-twistedFlow/pkg-plist (props changed) head/devel/py-twistedRunner/pkg-plist (props changed) head/devel/py-unittestplus/pkg-plist (props changed) head/devel/py-urwid/pkg-plist (props changed) head/devel/py-usb/pkg-plist (props changed) head/devel/py-utils/pkg-plist (props changed) head/devel/py-venusian/pkg-plist (props changed) head/devel/py-virtualenv-clone/pkg-plist (props changed) head/devel/py-virtualenvwrapper/pkg-plist (props changed) head/devel/py-wheel/pkg-plist (props changed) head/devel/py-wsgitools/pkg-plist (props changed) head/devel/py-xattr/pkg-plist (props changed) head/devel/py-xcaplib/pkg-plist (props changed) head/devel/py-xdg/pkg-plist (props changed) head/devel/py-xoltar-toolkit/pkg-plist (props changed) head/devel/py-yaml/pkg-plist (props changed) head/devel/py-yapps2/pkg-plist (props changed) head/devel/py-yum-metadata-parser/pkg-plist (props changed) head/devel/py-zope.app.applicationcontrol/pkg-plist (props changed) head/devel/py-zope.app.appsetup/pkg-plist (props changed) head/devel/py-zope.app.basicskin/pkg-plist (props changed) head/devel/py-zope.app.broken/pkg-plist (props changed) head/devel/py-zope.app.cache/pkg-plist (props changed) head/devel/py-zope.app.component/pkg-plist (props changed) head/devel/py-zope.app.container/pkg-plist (props changed) head/devel/py-zope.app.content/pkg-plist (props changed) head/devel/py-zope.app.debug/pkg-plist (props changed) head/devel/py-zope.app.dependable/pkg-plist (props changed) head/devel/py-zope.app.error/pkg-plist (props changed) head/devel/py-zope.app.exception/pkg-plist (props changed) head/devel/py-zope.app.folder/pkg-plist (props changed) head/devel/py-zope.app.form/pkg-plist (props changed) head/devel/py-zope.app.generations/pkg-plist (props changed) head/devel/py-zope.app.http/pkg-plist (props changed) head/devel/py-zope.app.pagetemplate/pkg-plist (props changed) head/devel/py-zope.app.publication/pkg-plist (props changed) head/devel/py-zope.app.publisher/pkg-plist (props changed) head/devel/py-zope.app.renderer/pkg-plist (props changed) head/devel/py-zope.app.rotterdam/pkg-plist (props changed) head/devel/py-zope.app.schema/pkg-plist (props changed) head/devel/py-zope.app.testing/pkg-plist (props changed) head/devel/py-zope.app.zcmlfiles/pkg-plist (props changed) head/devel/py-zope.app.zopeappgenerations/pkg-plist (props changed) head/devel/py-zope.applicationcontrol/pkg-plist (props changed) head/devel/py_static_check/pkg-plist (props changed) head/devel/pybaz/pkg-plist (props changed) head/devel/pymacs/pkg-plist (props changed) head/devel/pyside-tools/pkg-plist (props changed) head/devel/pyside/pkg-plist (props changed) head/devel/pyst/pkg-plist (props changed) head/devel/pythk/pkg-plist (props changed) head/devel/qbzr/pkg-plist (props changed) head/devel/qca/pkg-plist (props changed) head/devel/qconf/pkg-plist (props changed) head/devel/qct/pkg-plist (props changed) head/devel/qdevelop/pkg-plist (props changed) head/devel/qmake/pkg-plist (props changed) head/devel/qross/pkg-plist (props changed) head/devel/qsvn/pkg-plist (props changed) head/devel/quickcheck++/pkg-plist (props changed) head/devel/raknet/pkg-plist (props changed) head/devel/rapidsvn/pkg-plist (props changed) head/devel/rbenv/pkg-plist (props changed) head/devel/readline/pkg-plist (props changed) head/devel/regexx/pkg-plist (props changed) head/devel/regexxer/pkg-plist (props changed) head/devel/remake/pkg-plist (props changed) head/devel/ri-emacs/pkg-plist (props changed) head/devel/rlog/pkg-plist (props changed) head/devel/rlwrap/pkg-plist (props changed) head/devel/roboctl/pkg-plist (props changed) head/devel/ros-common_msgs/pkg-plist (props changed) head/devel/ros-documentation/pkg-plist (props changed) head/devel/ros-nxt/pkg-plist (props changed) head/devel/ros-rx/pkg-plist (props changed) head/devel/ros/pkg-plist (props changed) head/devel/ros_comm/pkg-plist (props changed) head/devel/ros_tutorials/pkg-plist (props changed) head/devel/rpc2/pkg-plist (props changed) head/devel/rth/pkg-plist (props changed) head/devel/ruby-amstd/pkg-plist (props changed) head/devel/ruby-aspectr/pkg-plist (props changed) head/devel/ruby-avl/pkg-plist (props changed) head/devel/ruby-bsearch/pkg-plist (props changed) head/devel/ruby-byaccr/pkg-plist (props changed) head/devel/ruby-cache/pkg-plist (props changed) head/devel/ruby-calendar/pkg-plist (props changed) head/devel/ruby-date2/pkg-plist (props changed) head/devel/ruby-dialogs/pkg-plist (props changed) head/devel/ruby-event-loop/pkg-plist (props changed) head/devel/ruby-fastri/pkg-plist (props changed) head/devel/ruby-gio2/pkg-plist (props changed) head/devel/ruby-glib2/pkg-plist (props changed) head/devel/ruby-intl/pkg-plist (props changed) head/devel/ruby-korundum/pkg-plist (props changed) head/devel/ruby-langscan/pkg-plist (props changed) head/devel/ruby-locale/pkg-plist (props changed) head/devel/ruby-locale2/pkg-plist (props changed) head/devel/ruby-multi/pkg-plist (props changed) head/devel/ruby-ncurses/pkg-plist (props changed) head/devel/ruby-property/pkg-plist (props changed) head/devel/ruby-qtruby/pkg-plist (props changed) head/devel/ruby-rbison/pkg-plist (props changed) head/devel/ruby-rbprof/pkg-plist (props changed) head/devel/ruby-rreadline/pkg-plist (props changed) head/devel/ruby-setup.rb/pkg-plist (props changed) head/devel/ruby-statgrab/pkg-plist (props changed) head/devel/ruby-subversion/pkg-plist (props changed) head/devel/ruby-tzfile/pkg-plist (props changed) head/devel/ruby-wirble/pkg-plist (props changed) head/devel/rudeconfig/pkg-plist (props changed) head/devel/rvm/pkg-plist (props changed) head/devel/scandoc/pkg-plist (props changed) head/devel/scsh-install-lib/pkg-plist (props changed) head/devel/sdl12/pkg-plist (props changed) head/devel/sdl_console/pkg-plist (props changed) head/devel/sdl_sge/pkg-plist (props changed) head/devel/sdlmm/pkg-plist (props changed) head/devel/sdts++/pkg-plist (props changed) head/devel/seed/pkg-plist (props changed) head/devel/seed3/pkg-plist (props changed) head/devel/semantic/pkg-plist (props changed) head/devel/serdisplib/pkg-plist (props changed) head/devel/sfml/pkg-plist (props changed) head/devel/sfslite/pkg-plist (props changed) head/devel/sgb/pkg-plist (props changed) head/devel/sgl/pkg-plist (props changed) head/devel/shapelib/pkg-plist (props changed) head/devel/shiboken/pkg-plist (props changed) head/devel/shmap/pkg-plist (props changed) head/devel/shtool/pkg-plist (props changed) head/devel/silc-toolkit/pkg-plist (props changed) head/devel/simian/pkg-plist (props changed) head/devel/skalibs/pkg-plist (props changed) head/devel/smack/pkg-plist (props changed) head/devel/smake/pkg-plist (props changed) head/devel/smc/pkg-plist (props changed) head/devel/sml_tk/pkg-plist (props changed) head/devel/smokegen/pkg-plist (props changed) head/devel/smokekde/pkg-plist (props changed) head/devel/smv/pkg-plist (props changed) head/devel/soapui/pkg-plist (props changed) head/devel/sourcenav/pkg-plist (props changed) head/devel/spatialindex/pkg-plist (props changed) head/devel/spdict/pkg-plist (props changed) head/devel/spin/pkg-plist (props changed) head/devel/splint/pkg-plist (props changed) head/devel/st/pkg-plist (props changed) head/devel/statcvs/pkg-plist (props changed) head/devel/statsvn/pkg-plist (props changed) head/devel/stlport/pkg-plist (props changed) head/devel/stormlib-ghost++/pkg-plist (props changed) head/devel/str/pkg-plist (props changed) head/devel/streamhtmlparser/pkg-plist (props changed) head/devel/stringencoders/pkg-plist (props changed) head/devel/styx/pkg-plist (props changed) head/devel/subcommander2/pkg-plist (props changed) head/devel/subversion/pkg-plist (props changed) head/devel/subversion16/pkg-plist (props changed) head/devel/subversion17/pkg-plist (props changed) head/devel/sunterlib/pkg-plist (props changed) head/devel/svk/pkg-plist (props changed) head/devel/svndelta/pkg-plist (props changed) head/devel/synfig/pkg-plist (props changed) head/devel/sysconftool/pkg-plist (props changed) head/devel/sysfsutils/pkg-plist (props changed) head/devel/t1lib/pkg-plist (props changed) head/devel/ta-lib/pkg-plist (props changed) head/devel/tailor/pkg-plist (props changed) head/devel/tcl-memchan/pkg-plist (props changed) head/devel/tcl-trf/pkg-plist (props changed) head/devel/tclcl/pkg-plist (props changed) head/devel/tclgetopts/pkg-plist (props changed) head/devel/tclmore/pkg-plist (props changed) head/devel/tcltls/pkg-plist (props changed) head/devel/tclxml/pkg-plist (props changed) head/devel/tdl/pkg-plist (props changed) head/devel/terminality/pkg-plist (props changed) head/devel/tex-kpathsea/pkg-plist (props changed) head/devel/tex-web2c/pkg-plist (props changed) head/devel/tide/pkg-plist (props changed) head/devel/tigcc/pkg-plist (props changed) head/devel/tinyq/pkg-plist (props changed) head/devel/tkcvs/pkg-plist (props changed) head/devel/tkinspect/pkg-plist (props changed) head/devel/tkp4/pkg-plist (props changed) head/devel/tmake/pkg-plist (props changed) head/devel/tnt/pkg-plist (props changed) head/devel/tokamak/pkg-plist (props changed) head/devel/tpasm/pkg-plist (props changed) head/devel/trac-bitten/pkg-plist (props changed) head/devel/trio/pkg-plist (props changed) head/devel/truc/pkg-plist (props changed) head/devel/uatraits/pkg-plist (props changed) head/devel/uclmmbase/pkg-plist (props changed) head/devel/umem/pkg-plist (props changed) head/devel/upnp/pkg-plist (props changed) head/devel/uppaal/pkg-plist (props changed) head/devel/valgrind-devel/pkg-plist (props changed) head/devel/valgrind/pkg-plist (props changed) head/devel/viewvc/pkg-plist (props changed) head/devel/vstr/pkg-plist (props changed) head/devel/vtg/pkg-plist (props changed) head/devel/vxlog/pkg-plist (props changed) head/devel/websvn/pkg-plist (props changed) head/devel/wininfo/pkg-plist (props changed) head/devel/wizardkit/pkg-plist (props changed) head/devel/xdg-user-dirs/pkg-plist (props changed) head/devel/xfce4-dev-tools/pkg-plist (props changed) head/devel/xmltooling/pkg-plist (props changed) head/devel/xparam/pkg-plist (props changed) head/devel/xtl/pkg-plist (props changed) head/devel/xtla/pkg-plist (props changed) head/devel/xwpe/pkg-plist (props changed) head/devel/xxgdb/pkg-plist (props changed) head/devel/xxl/pkg-plist (props changed) head/devel/yajl/pkg-plist (props changed) head/devel/yaml-cpp/pkg-plist (props changed) head/devel/yasm/pkg-plist (props changed) head/devel/z80asm/pkg-plist (props changed) head/devel/zookeeper/pkg-plist (props changed) head/devel/zpu-binutils/pkg-plist (props changed) head/devel/zpu-gcc/pkg-plist (props changed) head/devel/ztcl/pkg-plist (props changed) head/devel/zthread/pkg-plist (props changed) head/devel/zziplib/pkg-plist (props changed) head/dns/adns/pkg-plist (props changed) head/dns/adsuck/pkg-plist (props changed) head/dns/bind-tools/pkg-plist (props changed) head/dns/bind10/pkg-plist (props changed) head/dns/bind96/pkg-plist (props changed) head/dns/bind98/pkg-plist (props changed) head/dns/bind99/pkg-plist (props changed) head/dns/bindgraph/pkg-plist (props changed) head/dns/c-ares/pkg-plist (props changed) head/dns/checkdns/pkg-plist (props changed) head/dns/credns/pkg-plist (props changed) head/dns/crossip/pkg-plist (props changed) head/dns/curvedns/pkg-plist (props changed) head/dns/dhisd/pkg-plist (props changed) head/dns/djbdns-tools/pkg-plist (props changed) head/dns/djbdns/pkg-plist (props changed) head/dns/dlint/pkg-plist (props changed) head/dns/dnrd/pkg-plist (props changed) head/dns/dns_balance/pkg-plist (props changed) head/dns/dnscheckengine/pkg-plist (props changed) head/dns/dnscrypt-proxy/pkg-plist (props changed) head/dns/dnsmasq/pkg-plist (props changed) head/dns/dnsutl/pkg-plist (props changed) head/dns/dnswalk/pkg-plist (props changed) head/dns/doc/pkg-plist (props changed) head/dns/ez-ipupdate/pkg-plist (props changed) head/dns/fastresolve/pkg-plist (props changed) head/dns/firedns/pkg-plist (props changed) head/dns/fpdns/pkg-plist (props changed) head/dns/idnkit/pkg-plist (props changed) head/dns/idnkit2/pkg-plist (props changed) head/dns/ldapdns/pkg-plist (props changed) head/dns/libbind/pkg-plist (props changed) head/dns/libdjbdns/pkg-plist (props changed) head/dns/mydns-ng/pkg-plist (props changed) head/dns/mydns/pkg-plist (props changed) head/dns/noip/pkg-plist (props changed) head/dns/odsclient/pkg-plist (props changed) head/dns/opendnssec/pkg-plist (props changed) head/dns/opendnssec13/pkg-plist (props changed) head/dns/openresolv/pkg-plist (props changed) head/dns/p5-BIND-Conf_Parser/pkg-plist (props changed) head/dns/p5-BIND-Config-Parser/pkg-plist (props changed) head/dns/p5-DNS-Config/pkg-plist (props changed) head/dns/p5-DNS-EasyDNS/pkg-plist (props changed) head/dns/p5-DNS-Zone/pkg-plist (props changed) head/dns/p5-DNS-ZoneParse/pkg-plist (props changed) head/dns/p5-Data-Validate-Domain/pkg-plist (props changed) head/dns/p5-Net-Amazon-Route53/pkg-plist (props changed) head/dns/p5-Net-Bonjour/pkg-plist (props changed) head/dns/p5-Net-DNS-Async/pkg-plist (props changed) head/dns/p5-Net-DNS-Check/pkg-plist (props changed) head/dns/p5-Net-DNS-Codes/pkg-plist (props changed) head/dns/p5-Net-DNS-Lite/pkg-plist (props changed) head/dns/p5-Net-DNS-RR-SRV-Helper/pkg-plist (props changed) head/dns/p5-Net-DNS-Resolver-Programmable/pkg-plist (props changed) head/dns/p5-Net-DNS-Zone-Parser/pkg-plist (props changed) head/dns/p5-Net-DNS-ZoneCheck/pkg-plist (props changed) head/dns/p5-Net-DNS-ZoneFile-Fast/pkg-plist (props changed) head/dns/p5-Net-DNSBL-MultiDaemon/pkg-plist (props changed) head/dns/p5-Net-DNSBL-Statistics/pkg-plist (props changed) head/dns/p5-Net-DRI/pkg-plist (props changed) head/dns/p5-Net-Domain-ExpireDate/pkg-plist (props changed) head/dns/p5-Net-Domain-TLD/pkg-plist (props changed) head/dns/p5-Net-LibIDN/pkg-plist (props changed) head/dns/p5-Net-Nslookup/pkg-plist (props changed) head/dns/p5-Net-RBLClient/pkg-plist (props changed) head/dns/p5-POE-Component-Client-DNS-Recursive/pkg-plist (props changed) head/dns/p5-POE-Component-Client-DNS/pkg-plist (props changed) head/dns/p5-POE-Component-Client-DNSBL/pkg-plist (props changed) head/dns/p5-POE-Component-Resolver/pkg-plist (props changed) head/dns/p5-POE-Component-Server-DNS/pkg-plist (props changed) head/dns/p5-POE-Filter-DNS-TCP/pkg-plist (props changed) head/dns/p5-Stanford-DNSserver/pkg-plist (props changed) head/dns/p5-Tie-DNS/pkg-plist (props changed) head/dns/p5-pgeodns/pkg-plist (props changed) head/dns/pdnsd/pkg-plist (props changed) head/dns/posadis/pkg-plist (props changed) head/dns/poweradmin/pkg-plist-chunk (props changed) head/dns/powerdns-devel/pkg-plist (props changed) head/dns/powerdns-recursor/pkg-plist (props changed) head/dns/py-adns/pkg-plist (props changed) head/dns/py-dns/pkg-plist (props changed) head/dns/py-easyzone/pkg-plist (props changed) head/dns/py-ldns/pkg-plist (props changed) head/dns/radns/pkg-plist (props changed) head/dns/rbldnsd/pkg-plist (props changed) head/dns/skadns/pkg-plist (props changed) head/dns/udns/pkg-plist (props changed) head/dns/unbound/pkg-plist (props changed) head/dns/updatedd/pkg-plist (props changed) head/dns/yadifa/pkg-plist (props changed) head/dns/zonecheck/pkg-plist (props changed) head/editors/2bsd-vi/pkg-plist (props changed) head/editors/abiword-docs/pkg-plist (props changed) head/editors/apel/pkg-plist (props changed) head/editors/axe/pkg-plist (props changed) head/editors/beav/pkg-plist (props changed) head/editors/biew/pkg-plist (props changed) head/editors/bitedit/pkg-plist (props changed) head/editors/bless/pkg-plist (props changed) head/editors/boiling-egg/pkg-plist (props changed) head/editors/bvi/pkg-plist (props changed) head/editors/color-mate/pkg-plist (props changed) head/editors/conglomerate/pkg-plist (props changed) head/editors/cooledit/pkg-plist (props changed) head/editors/cream/pkg-plist (props changed) head/editors/diakonos/pkg-plist (props changed) head/editors/drjava/pkg-plist (props changed) head/editors/e93/pkg-plist (props changed) head/editors/edith/pkg-plist (props changed) head/editors/editorconfig-core-c/pkg-plist (props changed) head/editors/elvis/pkg-plist (props changed) head/editors/emacs/pkg-plist (props changed) head/editors/emacs21/pkg-plist (props changed) head/editors/emacs22/pkg-plist (props changed) head/editors/emacs23/pkg-plist (props changed) head/editors/flim/pkg-plist.emacs21 (props changed) head/editors/flim/pkg-plist.xemacs21-mule (props changed) head/editors/fpc-ide/pkg-plist (props changed) head/editors/fte/pkg-plist (props changed) head/editors/gate/pkg-plist (props changed) head/editors/gedit-plugins/pkg-plist (props changed) head/editors/gedit/pkg-plist (props changed) head/editors/ghex/pkg-plist (props changed) head/editors/gmanedit/pkg-plist (props changed) head/editors/gnotepad+/pkg-plist (props changed) head/editors/gnuserv/pkg-plist (props changed) head/editors/gwrite/pkg-plist (props changed) head/editors/jext/pkg-plist (props changed) head/editors/joe/pkg-plist (props changed) head/editors/joe2/pkg-plist (props changed) head/editors/jove/pkg-plist (props changed) head/editors/jupp/pkg-plist (props changed) head/editors/klat4/pkg-plist (props changed) head/editors/komodo-edit/pkg-plist (props changed) head/editors/komodo-ide/pkg-plist (props changed) head/editors/leafpad/pkg-plist (props changed) head/editors/led/pkg-plist (props changed) head/editors/leo/pkg-plist (props changed) head/editors/madedit/pkg-plist (props changed) head/editors/manedit/pkg-plist (props changed) head/editors/mate-text-editor/pkg-plist (props changed) head/editors/mlview/pkg-plist (props changed) head/editors/morla/pkg-plist (props changed) head/editors/nano-devel/pkg-plist (props changed) head/editors/nano/pkg-plist (props changed) head/editors/nedit/pkg-plist (props changed) head/editors/nvi-devel/pkg-plist (props changed) head/editors/nvi-m17n/pkg-plist (props changed) head/editors/nxml/pkg-plist (props changed) head/editors/omegaT/pkg-plist (props changed) head/editors/openoffice-3/pkg-plist (props changed) head/editors/openoffice-4/pkg-plist (props changed) head/editors/openoffice-devel/pkg-plist (props changed) head/editors/p5-Proc-InvokeEditor/pkg-plist (props changed) head/editors/p5-Vimana/pkg-plist (props changed) head/editors/pico-alpine/pkg-plist (props changed) head/editors/poedit/pkg-plist (props changed) head/editors/psgml/pkg-plist (props changed) head/editors/py-room/pkg-plist (props changed) head/editors/rox-edit/pkg-plist (props changed) head/editors/scite/pkg-plist (props changed) head/editors/se/pkg-plist (props changed) head/editors/semi/pkg-plist.emacs20 (props changed) head/editors/semi/pkg-plist.xemacs21-mule (props changed) head/editors/setedit/pkg-plist (props changed) head/editors/slime/pkg-plist (props changed) head/editors/softmaker-office/pkg-plist (props changed) head/editors/spe/pkg-plist (props changed) head/editors/speedbar/pkg-plist (props changed) head/editors/ssed/pkg-plist (props changed) head/editors/tamago/pkg-plist (props changed) head/editors/teco/pkg-plist (props changed) head/editors/texmacs/pkg-plist (props changed) head/editors/texmakerx/pkg-plist (props changed) head/editors/textedit/pkg-plist (props changed) head/editors/the/pkg-plist (props changed) head/editors/thoteditor/pkg-plist (props changed) head/editors/tpad/pkg-plist (props changed) head/editors/tree-widget/pkg-plist (props changed) head/editors/treeform/pkg-plist (props changed) head/editors/uemacs/pkg-plist (props changed) head/editors/vigor/pkg-plist (props changed) head/editors/vim/pkg-plist (props changed) head/editors/winefish/pkg-plist (props changed) head/editors/xcoral/pkg-plist (props changed) head/editors/xed/pkg-plist (props changed) head/editors/xemacs-devel-mule/pkg-plist (props changed) head/editors/xemacs-devel-mule/pkg-plist.arch-dep (props changed) head/editors/xemacs-devel/pkg-plist (props changed) head/editors/xemacs-mule-packages/pkg-plist (props changed) head/editors/xemacs-packages/pkg-plist (props changed) head/editors/xemacs21-mule/pkg-plist (props changed) head/editors/xemacs21-mule/pkg-plist.arch-dep (props changed) head/editors/yasnippet/pkg-plist (props changed) head/editors/yudit/pkg-plist (props changed) head/editors/zim/pkg-plist (props changed) head/editors/zoinks/pkg-plist (props changed) head/emulators/adamem/pkg-plist (props changed) head/emulators/advancemess/pkg-plist (props changed) head/emulators/atari800/pkg-plist (props changed) head/emulators/bfe/pkg-plist (props changed) head/emulators/bochs/pkg-plist (props changed) head/emulators/bsvc/pkg-plist (props changed) head/emulators/cpmemu/pkg-plist (props changed) head/emulators/cpmtools/pkg-plist (props changed) head/emulators/cpmtools2/pkg-plist (props changed) head/emulators/cygne-sdl/pkg-plist (props changed) head/emulators/darcnes/pkg-plist (props changed) head/emulators/desmume/pkg-plist (props changed) head/emulators/doscmd/pkg-plist (props changed) head/emulators/dynagui/pkg-plist (props changed) head/emulators/fmsx/pkg-plist (props changed) head/emulators/frodo/pkg-plist (props changed) head/emulators/gngeo/pkg-plist (props changed) head/emulators/gns3/pkg-plist (props changed) head/emulators/gxmame/pkg-plist (props changed) head/emulators/ines/pkg-plist (props changed) head/emulators/its/pkg-plist (props changed) head/emulators/kcemu/pkg-plist (props changed) head/emulators/klh10/pkg-plist (props changed) head/emulators/lib765/pkg-plist (props changed) head/emulators/libdsk/pkg-plist (props changed) head/emulators/linux-geepee32/pkg-plist (props changed) head/emulators/linux-systemsimcell/pkg-plist (props changed) head/emulators/linux_base-c6/pkg-plist (props changed) head/emulators/linux_dist-gentoo-stage3/pkg-plist.i486 (props changed) head/emulators/linux_dist-gentoo-stage3/pkg-plist.i686 (props changed) head/emulators/lisaem/pkg-plist (props changed) head/emulators/loemu/pkg-plist (props changed) head/emulators/m2000/pkg-plist (props changed) head/emulators/mastergear/pkg-plist (props changed) head/emulators/mednafen/pkg-plist (props changed) head/emulators/mtools/pkg-plist (props changed) head/emulators/mupen64-base/pkg-plist (props changed) head/emulators/mupen64plus-core/pkg-plist (props changed) head/emulators/o2em/pkg-plist (props changed) head/emulators/p5-Acme-6502/pkg-plist (props changed) head/emulators/parallels-tools/pkg-plist (props changed) head/emulators/pcemu/pkg-plist (props changed) head/emulators/psim-freebsd/pkg-plist (props changed) head/emulators/pyxmame/pkg-plist (props changed) head/emulators/qemu-launcher/pkg-plist (props changed) head/emulators/qemu/pkg-plist (props changed) head/emulators/qtemu/pkg-plist (props changed) head/emulators/raine/pkg-plist (props changed) head/emulators/rtc/pkg-plist (props changed) head/emulators/ski/pkg-plist (props changed) head/emulators/skyeye/pkg-plist (props changed) head/emulators/snes9x-gtk/pkg-plist (props changed) head/emulators/stella/pkg-plist (props changed) head/emulators/stonx/pkg-plist (props changed) head/emulators/svr4_base/pkg-plist (props changed) head/emulators/tiemu3/pkg-plist (props changed) head/emulators/tilem/pkg-plist (props changed) head/emulators/tme/pkg-plist (props changed) head/emulators/uae/pkg-plist (props changed) head/emulators/vMac/pkg-plist (props changed) head/emulators/vba/pkg-plist (props changed) head/emulators/vboxtool/pkg-plist (props changed) head/emulators/vgb-bin/pkg-plist (props changed) head/emulators/vgba-bin/pkg-plist (props changed) head/emulators/virtio-kmod/pkg-plist (props changed) head/emulators/virtualbox-ose-kmod/pkg-plist (props changed) head/emulators/visualboyadvance-m/pkg-plist (props changed) head/emulators/vmips/pkg-plist (props changed) head/emulators/vxtools/pkg-plist (props changed) head/emulators/wine-devel/pkg-plist (props changed) head/emulators/wine-doors/pkg-plist (props changed) head/emulators/wine/pkg-plist (props changed) head/emulators/wxmupen64plus/pkg-plist (props changed) head/emulators/x48/pkg-plist (props changed) head/emulators/x49gp/pkg-plist (props changed) head/emulators/xcpc/pkg-plist (props changed) head/emulators/xmame/pkg-plist (props changed) head/emulators/xzx/pkg-plist (props changed) head/finance/beanie/pkg-plist (props changed) head/finance/electrum/pkg-plist (props changed) head/finance/expense/pkg-plist (props changed) head/finance/gnucash-docs/pkg-plist (props changed) head/finance/ledger/pkg-plist (props changed) head/finance/ledgersmb12/pkg-plist (props changed) head/finance/libalkimia/pkg-plist (props changed) head/finance/libstocks/pkg-plist (props changed) head/finance/moneymanagerex/pkg-plist (props changed) head/finance/mybudget/pkg-plist (props changed) head/finance/myphpmoney/pkg-plist (props changed) head/finance/openerp-web/pkg-plist (props changed) head/finance/openhbci/pkg-plist (props changed) head/finance/opentaxsolver/files/pkg-plist.in (props changed) head/finance/p5-Business-OCV/pkg-plist (props changed) head/finance/p5-Business-OnlinePayment-2CheckOut/pkg-plist (props changed) head/finance/p5-Business-OnlinePayment-OCV/pkg-plist (props changed) head/finance/p5-Business-OnlinePayment-PaymenTech/pkg-plist (props changed) head/finance/p5-Business-OnlinePayment-SurePay/pkg-plist (props changed) head/finance/p5-Business-OnlinePayment-iAuthorizer/pkg-plist (props changed) head/finance/p5-Business-WorldPay-Junior/pkg-plist (props changed) head/finance/p5-Finance-Amortization/pkg-plist (props changed) head/finance/p5-Finance-Bitcoin/pkg-plist (props changed) head/finance/p5-Finance-Currency-Convert-XE/pkg-plist (props changed) head/finance/p5-Finance-QuoteHist/pkg-plist (props changed) head/finance/p5-Finance-TW-TSEQuote/pkg-plist (props changed) head/finance/p5-Finance-YahooQuote/pkg-plist (props changed) head/finance/sabernetdcs-client/pkg-plist (props changed) head/finance/sql-ledger/pkg-plist (props changed) head/finance/tryton/pkg-plist (props changed) head/finance/tryton28/pkg-plist (props changed) head/finance/trytond/pkg-plist (props changed) head/finance/trytond28/pkg-plist (props changed) head/finance/trytond28_account_be/pkg-plist (props changed) head/finance/trytond28_account_invoice_history/pkg-plist (props changed) head/finance/trytond28_account_invoice_line_standalone/pkg-plist (props changed) head/finance/trytond28_account_statement/pkg-plist (props changed) head/finance/trytond28_account_stock_anglo_saxon/pkg-plist (props changed) head/finance/trytond28_account_stock_continental/pkg-plist (props changed) head/finance/trytond28_analytic_account/pkg-plist (props changed) head/finance/trytond28_analytic_invoice/pkg-plist (props changed) head/finance/trytond28_analytic_purchase/pkg-plist (props changed) head/finance/trytond28_analytic_sale/pkg-plist (props changed) head/finance/trytond28_calendar_classification/pkg-plist (props changed) head/finance/trytond28_calendar_scheduling/pkg-plist (props changed) head/finance/trytond28_calendar_todo/pkg-plist (props changed) head/finance/trytond28_party_siret/pkg-plist (props changed) head/finance/trytond28_party_vcarddav/pkg-plist (props changed) head/finance/trytond28_product_cost_fifo/pkg-plist (props changed) head/finance/trytond28_product_cost_history/pkg-plist (props changed) head/finance/trytond28_purchase_invoice_line_standalone/pkg-plist (props changed) head/finance/trytond28_purchase_shipment_cost/pkg-plist (props changed) head/finance/trytond28_stock_forecast/pkg-plist (props changed) head/finance/trytond28_stock_inventory_location/pkg-plist (props changed) head/finance/trytond28_stock_location_sequence/pkg-plist (props changed) head/finance/trytond28_stock_lot/pkg-plist (props changed) head/finance/trytond28_stock_product_location/pkg-plist (props changed) head/finance/trytond28_stock_split/pkg-plist (props changed) head/finance/trytond28_stock_supply/pkg-plist (props changed) head/finance/trytond28_stock_supply_day/pkg-plist (props changed) head/finance/trytond28_stock_supply_forecast/pkg-plist (props changed) head/finance/trytond_account_be/pkg-plist (props changed) head/finance/trytond_account_invoice_history/pkg-plist (props changed) head/finance/trytond_account_invoice_line_standalone/pkg-plist (props changed) head/finance/trytond_account_statement/pkg-plist (props changed) head/finance/trytond_account_stock_anglo_saxon/pkg-plist (props changed) head/finance/trytond_account_stock_continental/pkg-plist (props changed) head/finance/trytond_analytic_account/pkg-plist (props changed) head/finance/trytond_analytic_invoice/pkg-plist (props changed) head/finance/trytond_analytic_purchase/pkg-plist (props changed) head/finance/trytond_analytic_sale/pkg-plist (props changed) head/finance/trytond_calendar_classification/pkg-plist (props changed) head/finance/trytond_calendar_scheduling/pkg-plist (props changed) head/finance/trytond_calendar_todo/pkg-plist (props changed) head/finance/trytond_party_siret/pkg-plist (props changed) head/finance/trytond_party_vcarddav/pkg-plist (props changed) head/finance/trytond_product_cost_fifo/pkg-plist (props changed) head/finance/trytond_product_cost_history/pkg-plist (props changed) head/finance/trytond_purchase_invoice_line_standalone/pkg-plist (props changed) head/finance/trytond_purchase_shipment_cost/pkg-plist (props changed) head/finance/trytond_stock_forecast/pkg-plist (props changed) head/finance/trytond_stock_inventory_location/pkg-plist (props changed) head/finance/trytond_stock_location_sequence/pkg-plist (props changed) head/finance/trytond_stock_lot/pkg-plist (props changed) head/finance/trytond_stock_product_location/pkg-plist (props changed) head/finance/trytond_stock_split/pkg-plist (props changed) head/finance/trytond_stock_supply/pkg-plist (props changed) head/finance/trytond_stock_supply_day/pkg-plist (props changed) head/finance/trytond_stock_supply_forecast/pkg-plist (props changed) head/finance/weberp/pkg-plist (props changed) head/finance/wmstock/pkg-plist (props changed) head/french/alphabet_sounds_fr/pkg-plist (props changed) head/french/aspell/pkg-plist (props changed) head/french/belote/pkg-plist (props changed) head/french/dico/pkg-plist (props changed) head/french/facturier/pkg-plist (props changed) head/french/fortune-mod-zarathoustra/pkg-plist (props changed) head/french/homard/pkg-plist (props changed) head/french/trytond28_account_fr/pkg-plist (props changed) head/french/trytond_account_fr/pkg-plist (props changed) head/french/tvdownloader/pkg-plist (props changed) head/ftp/axel/pkg-plist (props changed) head/ftp/bareftp/pkg-plist (props changed) head/ftp/bbftp/pkg-plist (props changed) head/ftp/bsdftpd-ssl/files/pkg-plist.client (props changed) head/ftp/bsdftpd-ssl/pkg-plist (props changed) head/ftp/curlpp/pkg-plist (props changed) head/ftp/dmachine/pkg-plist (props changed) head/ftp/fget/pkg-plist (props changed) head/ftp/filezilla/pkg-plist (props changed) head/ftp/fmirror/pkg-plist (props changed) head/ftp/fpc-libcurl/pkg-plist (props changed) head/ftp/ftpcube/pkg-plist (props changed) head/ftp/ftplocate/pkg-plist (props changed) head/ftp/ftpmirror/pkg-plist (props changed) head/ftp/gnustep-ftp/pkg-plist (props changed) head/ftp/gwget/pkg-plist (props changed) head/ftp/horde3-gollem/pkg-plist (props changed) head/ftp/jftpgw/pkg-plist (props changed) head/ftp/ncftp3/pkg-plist (props changed) head/ftp/ncftpd/pkg-plist (props changed) head/ftp/net2ftp/pkg-plist-chunk (props changed) head/ftp/ocaml-ocurl/pkg-plist (props changed) head/ftp/omi/pkg-plist (props changed) head/ftp/p5-Net-FTPServer/pkg-plist (props changed) head/ftp/p5-POE-Component-Client-FTP/pkg-plist (props changed) head/ftp/paraget/pkg-plist (props changed) head/ftp/pavuk/pkg-plist (props changed) head/ftp/phpwebftp/pkg-plist (props changed) head/ftp/proftpd/pkg-plist (props changed) head/ftp/profxp/pkg-plist (props changed) head/ftp/pureadmin/pkg-plist (props changed) head/ftp/py-curl/pkg-plist (props changed) head/ftp/py-ftputil/pkg-plist (props changed) head/ftp/py-pyftpdlib/pkg-plist (props changed) head/ftp/rexx-curl/pkg-plist (props changed) head/ftp/scythia/pkg-plist (props changed) head/ftp/smbftpd/pkg-plist (props changed) head/ftp/urlgfe/pkg-plist (props changed) head/ftp/vsftpd-ext/pkg-plist (props changed) head/ftp/vsftpd/pkg-plist (props changed) head/ftp/waiho/pkg-plist (props changed) head/ftp/weex/pkg-plist (props changed) head/ftp/wget/pkg-plist (props changed) head/ftp/wput/pkg-plist (props changed) head/ftp/wxdfast/pkg-plist (props changed) head/games/0ad/pkg-plist (props changed) head/games/0verkill/pkg-plist (props changed) head/games/3dc/pkg-plist (props changed) head/games/4stattack/pkg-plist (props changed) head/games/54321/pkg-plist (props changed) head/games/CaribbeanStud/pkg-plist (props changed) head/games/acm/pkg-plist (props changed) head/games/actx/pkg-plist (props changed) head/games/adgali/pkg-plist (props changed) head/games/adom/pkg-plist (props changed) head/games/adonthell/pkg-plist (props changed) head/games/aestats/pkg-plist (props changed) head/games/airstrike/pkg-plist (props changed) head/games/alephone-data/pkg-plist (props changed) head/games/alephone-scenarios/pkg-plist (props changed) head/games/alephone/pkg-plist (props changed) head/games/alienarena/pkg-plist (props changed) head/games/alienblaster/pkg-plist (props changed) head/games/allacrost/pkg-plist (props changed) head/games/amoebax/pkg-plist (props changed) head/games/annelid/pkg-plist (props changed) head/games/antipolix/pkg-plist (props changed) head/games/apoolGL/pkg-plist (props changed) head/games/arkanoidsb/pkg-plist (props changed) head/games/armagetron/pkg-plist (props changed) head/games/arx-libertatis/pkg-plist (props changed) head/games/atanks/pkg-plist (props changed) head/games/atomix/pkg-plist (props changed) head/games/atr3d/pkg-plist (props changed) head/games/atris-sounds/pkg-plist (props changed) head/games/atris/pkg-plist (props changed) head/games/avanor/pkg-plist (props changed) head/games/avp-demo/pkg-plist (props changed) head/games/balazar/pkg-plist (props changed) head/games/balazarbrothers/pkg-plist (props changed) head/games/barrage/pkg-plist (props changed) head/games/battalion/pkg-plist (props changed) head/games/battletanks/pkg-plist (props changed) head/games/belooted/pkg-plist (props changed) head/games/blinken/pkg-plist (props changed) head/games/blinkensisters/pkg-plist (props changed) head/games/blobby/pkg-plist (props changed) head/games/bloboats/pkg-plist (props changed) head/games/blobwars/pkg-plist (props changed) head/games/block/pkg-plist (props changed) head/games/blockout/pkg-plist (props changed) head/games/bomberinstinct/pkg-plist (props changed) head/games/bombz/pkg-plist (props changed) head/games/bomns/pkg-plist (props changed) head/games/bouncy/pkg-plist (props changed) head/games/braincurses/pkg-plist (props changed) head/games/brainworkshop/pkg-plist (props changed) head/games/brutalchess/pkg-plist (props changed) head/games/bsdgames/pkg-plist (props changed) head/games/bsdtris/pkg-plist (props changed) head/games/bsp/pkg-plist (props changed) head/games/bubbros/pkg-plist (props changed) head/games/bygfoot/pkg-plist (props changed) head/games/bzflag/pkg-plist (props changed) head/games/capicity/pkg-plist (props changed) head/games/capitalism/pkg-plist (props changed) head/games/cardpics/pkg-plist (props changed) head/games/cavezofphear/pkg-plist (props changed) head/games/ceferino/pkg-plist (props changed) head/games/chanta/pkg-plist (props changed) head/games/childsplay_plugins/pkg-plist (props changed) head/games/chromium-bsu/pkg-plist (props changed) head/games/circuslinux/pkg-plist (props changed) head/games/cleanq3/pkg-plist (props changed) head/games/columns/pkg-plist (props changed) head/games/conquest/pkg-plist (props changed) head/games/corewars/pkg-plist (props changed) head/games/cosmo/pkg-plist (props changed) head/games/cowsay/pkg-plist (props changed) head/games/crafty-open-enormous/pkg-plist (props changed) head/games/crafty-open-large/pkg-plist (props changed) head/games/crafty-open-medium/pkg-plist (props changed) head/games/crafty-tablebase-no-pawn/pkg-plist (props changed) head/games/crafty-tablebase-pawn/pkg-plist (props changed) head/games/crafty/pkg-plist (props changed) head/games/critterding/pkg-plist (props changed) head/games/crossfire-client/pkg-plist (props changed) head/games/crossfire-server/pkg-plist (props changed) head/games/csmash/pkg-plist (props changed) head/games/cube/pkg-plist (props changed) head/games/cultivation/pkg-plist (props changed) head/games/cuyo/pkg-plist (props changed) head/games/d2x-xl/pkg-plist (props changed) head/games/daimonin-music/pkg-plist (props changed) head/games/daimonin/pkg-plist (props changed) head/games/dcross/pkg-plist (props changed) head/games/digger-vgl/pkg-plist (props changed) head/games/djgame2/pkg-plist (props changed) head/games/dmjava/pkg-plist (props changed) head/games/dodgindiamond2/pkg-plist (props changed) head/games/dontspace/pkg-plist (props changed) head/games/doom-data/pkg-plist (props changed) head/games/doom-hr/pkg-plist (props changed) head/games/doom-wolfendoom/pkg-plist (props changed) head/games/doom/pkg-plist (props changed) head/games/dopewars/pkg-plist (props changed) head/games/drcreep/pkg-plist (props changed) head/games/drm/pkg-plist (props changed) head/games/dsnake/pkg-plist (props changed) head/games/duckmaze/pkg-plist (props changed) head/games/duel/pkg-plist (props changed) head/games/duke3d-data/pkg-plist (props changed) head/games/eboard/pkg-plist (props changed) head/games/editss/pkg-plist (props changed) head/games/eduke32/pkg-plist (props changed) head/games/egl/pkg-plist (props changed) head/games/eif/pkg-plist (props changed) head/games/einstein/pkg-plist (props changed) head/games/endgame-singularity-music/pkg-plist (props changed) head/games/endgame-singularity/pkg-plist (props changed) head/games/enigma/pkg-plist (props changed) head/games/entombed/pkg-plist (props changed) head/games/enygma/pkg-plist (props changed) head/games/etracer/pkg-plist (props changed) head/games/evq3/pkg-plist (props changed) head/games/excido/pkg-plist (props changed) head/games/exhaust-doc/pkg-plist (props changed) head/games/exmars/pkg-plist (props changed) head/games/exult/pkg-plist (props changed) head/games/ezquake/pkg-plist (props changed) head/games/falconseye/pkg-plist (props changed) head/games/farblazer/pkg-plist (props changed) head/games/fargoal/pkg-plist (props changed) head/games/fgkicker/pkg-plist (props changed) head/games/fightorperish/pkg-plist (props changed) head/games/filters/pkg-plist (props changed) head/games/flare-game/pkg-plist (props changed) head/games/fmars/pkg-plist (props changed) head/games/foobillard/pkg-plist (props changed) head/games/fortunate/pkg-plist (props changed) head/games/freeciv-sounds/pkg-plist (props changed) head/games/freeciv/pkg-plist (props changed) head/games/freedink-data/pkg-plist (props changed) head/games/freedink-dfarc/pkg-plist (props changed) head/games/freedink-engine/pkg-plist (props changed) head/games/freedoko/pkg-plist (props changed) head/games/freedroid/pkg-plist (props changed) head/games/freedroidrpg/pkg-plist (props changed) head/games/freeminer/pkg-plist (props changed) head/games/fretsonfire-data/pkg-plist (props changed) head/games/fretsonfire/pkg-plist (props changed) head/games/frobtads/pkg-plist (props changed) head/games/ftjava/pkg-plist (props changed) head/games/fuhquake/pkg-plist (props changed) head/games/funnyboat/pkg-plist (props changed) head/games/galaxymage/pkg-plist (props changed) head/games/gbottler/pkg-plist (props changed) head/games/gbrainy/pkg-plist (props changed) head/games/gcompris/pkg-plist (props changed) head/games/gdado/pkg-plist (props changed) head/games/ggz-client-libs/pkg-plist (props changed) head/games/ggz-gtk-client/pkg-plist (props changed) head/games/ggz-gtk-games/pkg-plist (props changed) head/games/ggz-sdl-games/pkg-plist (props changed) head/games/ggz-txt-client/pkg-plist (props changed) head/games/gigalomania/pkg-plist (props changed) head/games/gillo/pkg-plist (props changed) head/games/gish-demo/pkg-plist (props changed) head/games/gl-117/pkg-plist (props changed) head/games/glbsp/pkg-plist (props changed) head/games/glchess/pkg-plist (props changed) head/games/glest/pkg-plist (props changed) head/games/glightoff/pkg-plist (props changed) head/games/glob2/pkg-plist (props changed) head/games/gltron/pkg-plist (props changed) head/games/gmastermind/pkg-plist (props changed) head/games/gmines/pkg-plist (props changed) head/games/gnarr/pkg-plist (props changed) head/games/gno3dtet/pkg-plist (props changed) head/games/gnome-games-extra-data/pkg-plist (props changed) head/games/gnome-games/pkg-plist (props changed) head/games/gnomeattacks/pkg-plist (props changed) head/games/gnomebreakout/pkg-plist (props changed) head/games/gnomechess/pkg-plist (props changed) head/games/gnomekiss/pkg-plist (props changed) head/games/gnomesudoku/pkg-plist (props changed) head/games/gnono/pkg-plist (props changed) head/games/gnubg/pkg-plist (props changed) head/games/gnudoku/pkg-plist (props changed) head/games/gnurobots/pkg-plist (props changed) head/games/gnushogi/pkg-plist (props changed) head/games/gnustep-ladder/pkg-plist (props changed) head/games/gnustep-sudoku/pkg-plist (props changed) head/games/gomoku/pkg-plist (props changed) head/games/gondola/pkg-plist (props changed) head/games/gracer/pkg-plist (props changed) head/games/gretools/pkg-plist (props changed) head/games/grhino/pkg-plist (props changed) head/games/gru/pkg-plist (props changed) head/games/grubik/pkg-plist (props changed) head/games/gshisen/pkg-plist (props changed) head/games/gtetrinet/pkg-plist (props changed) head/games/gtkatlantic/pkg-plist (props changed) head/games/gtkballs/pkg-plist (props changed) head/games/gtkevemon/pkg-plist (props changed) head/games/gtkpool/pkg-plist (props changed) head/games/gtkradiant/pkg-plist (props changed) head/games/gturing/pkg-plist (props changed) head/games/gweled/pkg-plist (props changed) head/games/help_hannahs_horse/pkg-plist (props changed) head/games/heretic/pkg-plist (props changed) head/games/heroes/pkg-plist (props changed) head/games/hex-a-hop/pkg-plist (props changed) head/games/hex/pkg-plist (props changed) head/games/hexalate/pkg-plist (props changed) head/games/hexxagon/pkg-plist (props changed) head/games/highmoon/pkg-plist (props changed) head/games/hinversi/pkg-plist (props changed) head/games/hlstats/pkg-plist (props changed) head/games/hlstatsx/pkg-plist (props changed) head/games/hohlin/pkg-plist (props changed) head/games/ifm/pkg-plist (props changed) head/games/imaze/pkg-plist (props changed) head/games/inform/pkg-plist (props changed) head/games/inform7/pkg-plist (props changed) head/games/instead/pkg-plist (props changed) head/games/ishido/pkg-plist (props changed) head/games/ivan/pkg-plist (props changed) head/games/jfk/pkg-plist (props changed) head/games/jfsw/pkg-plist (props changed) head/games/jigsaw/pkg-plist (props changed) head/games/jin/pkg-plist (props changed) head/games/joequake/pkg-plist (props changed) head/games/jools/pkg-plist (props changed) head/games/jtans/pkg-plist (props changed) head/games/kanatest/pkg-plist (props changed) head/games/kcheckers/pkg-plist (props changed) head/games/kevedit/pkg-plist (props changed) head/games/klavaro/pkg-plist (props changed) head/games/klondike/pkg-plist (props changed) head/games/kmancala/pkg-plist (props changed) head/games/knights-kde4/pkg-plist (props changed) head/games/kobodeluxe/pkg-plist (props changed) head/games/krank/pkg-plist (props changed) head/games/kuklomenos/pkg-plist (props changed) head/games/ladder/pkg-plist (props changed) head/games/lapispuzzle/pkg-plist (props changed) head/games/latrine/pkg-plist (props changed) head/games/lbreakout/pkg-plist (props changed) head/games/lbreakout2/pkg-plist (props changed) head/games/ldmud/pkg-plist (props changed) head/games/legends/pkg-plist (props changed) head/games/legesmotus/pkg-plist (props changed) head/games/lexter/pkg-plist (props changed) head/games/lgeneral/pkg-plist (props changed) head/games/libdungeonmaker/pkg-plist (props changed) head/games/libfov/pkg-plist (props changed) head/games/libggz/pkg-plist (props changed) head/games/libmaitretarot/pkg-plist (props changed) head/games/libmt_client/pkg-plist (props changed) head/games/libshhcards/pkg-plist (props changed) head/games/lincity-ng/pkg-plist (props changed) head/games/lincity/pkg-plist (props changed) head/games/linux-americasarmy/pkg-plist (props changed) head/games/linux-candycruncher-demo/pkg-plist (props changed) head/games/linux-coldwar-demo/pkg-plist (props changed) head/games/linux-darwinia-demo/pkg-plist (props changed) head/games/linux-defcon/pkg-plist (props changed) head/games/linux-doom3-demo/pkg-plist (props changed) head/games/linux-doom3/pkg-plist (props changed) head/games/linux-enemyterritory-etpro/pkg-plist (props changed) head/games/linux-enemyterritory-jaymod-21/pkg-plist (props changed) head/games/linux-enemyterritory-omni-bot-0660/pkg-plist (props changed) head/games/linux-enemyterritory-omni-bot/pkg-plist (props changed) head/games/linux-enemyterritory-tce/pkg-plist (props changed) head/games/linux-enemyterritory/pkg-plist (props changed) head/games/linux-etqw-demo-server/pkg-plist (props changed) head/games/linux-etqw-server/pkg-plist (props changed) head/games/linux-gorky17-demo/pkg-plist (props changed) head/games/linux-hdb-demo/pkg-plist (props changed) head/games/linux-majesty-demo/pkg-plist (props changed) head/games/linux-nerogame/pkg-plist (props changed) head/games/linux-ningpo-demo/pkg-plist (props changed) head/games/linux-nwnclient/pkg-plist (props changed) head/games/linux-nwserver/pkg-plist (props changed) head/games/linux-quake3-demo/pkg-plist (props changed) head/games/linux-quake3/pkg-plist (props changed) head/games/linux-quake4-demo/pkg-plist (props changed) head/games/linux-quake4/pkg-plist (props changed) head/games/linux-rtcw/pkg-plist (props changed) head/games/linux-savage/pkg-plist (props changed) head/games/linux-skulltag/pkg-plist (props changed) head/games/linux-sof/pkg-plist (props changed) head/games/linux-spheresofchaos-demo/pkg-plist (props changed) head/games/linux-ssamtfe/pkg-plist (props changed) head/games/linux-ssamtse/pkg-plist (props changed) head/games/linux-steam/pkg-plist (props changed) head/games/linux-unrealgold/pkg-plist (props changed) head/games/linux-uplink-demo/pkg-plist (props changed) head/games/linux-ut/pkg-plist (props changed) head/games/linux-virtual-jay-peak/pkg-plist (props changed) head/games/linux-warsow/pkg-plist (props changed) head/games/linux-worldofgoo-demo/pkg-plist (props changed) head/games/liquidwar/pkg-plist (props changed) head/games/lm-solve/pkg-plist (props changed) head/games/lpairs/pkg-plist (props changed) head/games/ltris/pkg-plist (props changed) head/games/lucidlife/pkg-plist (props changed) head/games/lugaru/pkg-plist (props changed) head/games/macopix/pkg-plist (props changed) head/games/magiccube4d/pkg-plist (props changed) head/games/magicor/pkg-plist (props changed) head/games/mangband/pkg-plist (props changed) head/games/mangos/pkg-plist (props changed) head/games/masterserver/pkg-plist (props changed) head/games/megaglest/pkg-plist (props changed) head/games/mindfocus/pkg-plist (props changed) head/games/mindguard/pkg-plist (props changed) head/games/minetest/pkg-plist (props changed) head/games/mirrormagic/pkg-plist (props changed) head/games/miscom/pkg-plist (props changed) head/games/mkgichessclub/pkg-plist (props changed) head/games/monkeybubble/pkg-plist (props changed) head/games/monster-masher/pkg-plist (props changed) head/games/moria/pkg-plist (props changed) head/games/mt_gtk_client/pkg-plist (props changed) head/games/mtaserver/pkg-plist (props changed) head/games/mudmagic/pkg-plist (props changed) head/games/nInvaders/pkg-plist (props changed) head/games/nadar/pkg-plist (props changed) head/games/nazghul/pkg-plist (props changed) head/games/nehquake/pkg-plist (props changed) head/games/nethack32/pkg-plist (props changed) head/games/nethack33/pkg-plist (props changed) head/games/nethack34/pkg-plist (props changed) head/games/netherearth/pkg-plist (props changed) head/games/netradiant/pkg-plist (props changed) head/games/netrek-client-cow/pkg-plist (props changed) head/games/netris/pkg-plist (props changed) head/games/neverball/pkg-plist (props changed) head/games/newvox/pkg-plist (props changed) head/games/nextgo/pkg-plist (props changed) head/games/nibbles/pkg-plist (props changed) head/games/nighthawk/pkg-plist (props changed) head/games/ninix-aya/pkg-plist (props changed) head/games/njam/pkg-plist (props changed) head/games/noegnud-data/pkg-plist (props changed) head/games/noegnud-littlehack/pkg-plist (props changed) head/games/noegnud-nethack-deet/pkg-plist (props changed) head/games/noegnud-nethack/pkg-plist (props changed) head/games/noegnud-slashem/pkg-plist (props changed) head/games/nonsense/pkg-plist (props changed) head/games/npush/pkg-plist (props changed) head/games/numptyphysics-npcomplete/pkg-plist (props changed) head/games/numptyphysics/pkg-plist (props changed) head/games/nwndata/pkg-plist (props changed) head/games/omega/pkg-plist (props changed) head/games/oneisenough/pkg-plist (props changed) head/games/oneko/pkg-plist (props changed) head/games/oolite/pkg-plist (props changed) head/games/openalchemist/pkg-plist (props changed) head/games/openarena-data/pkg-plist (props changed) head/games/openarena-oax/pkg-plist (props changed) head/games/openastromenace/pkg-plist (props changed) head/games/opencity/pkg-plist (props changed) head/games/opengfx/pkg-plist (props changed) head/games/openjazz/pkg-plist (props changed) head/games/openmsx/pkg-plist (props changed) head/games/openpref/pkg-plist (props changed) head/games/opensfx/pkg-plist (props changed) head/games/openssn/pkg-plist (props changed) head/games/openttd/pkg-plist (props changed) head/games/optimax/pkg-plist (props changed) head/games/orbital_eunuchs_sniper/pkg-plist (props changed) head/games/outerspace/pkg-plist (props changed) head/games/p5-Algorithm-Pair-Best/pkg-plist (props changed) head/games/p5-Algorithm-Pair-Swiss/pkg-plist (props changed) head/games/p5-Baseball-Sabermetrics/pkg-plist (props changed) head/games/p5-Games-Alak/pkg-plist (props changed) head/games/p5-Games-AlphaBeta/pkg-plist (props changed) head/games/p5-Games-Bingo-Bot/pkg-plist (props changed) head/games/p5-Games-Bingo-Print/pkg-plist (props changed) head/games/p5-Games-Bingo/pkg-plist (props changed) head/games/p5-Games-Dice/pkg-plist (props changed) head/games/p5-Games-GuessWord/pkg-plist (props changed) head/games/p5-Games-Tournament-RoundRobin/pkg-plist (props changed) head/games/pangzero/pkg-plist (props changed) head/games/pathological/pkg-plist (props changed) head/games/peg-e/pkg-plist (props changed) head/games/pengpong/pkg-plist (props changed) head/games/pinball/pkg-plist (props changed) head/games/pink-pony/pkg-plist (props changed) head/games/pioneers/pkg-plist (props changed) head/games/pipenightdreams/pkg-plist (props changed) head/games/plee-the-bear/pkg-plist (props changed) head/games/plutocracy/pkg-plist (props changed) head/games/pmars/pkg-plist (props changed) head/games/poker-engine/pkg-plist (props changed) head/games/poker-eval/pkg-plist (props changed) head/games/polyglot/pkg-plist (props changed) head/games/polypuzzle/pkg-plist (props changed) head/games/pongix/pkg-plist (props changed) head/games/popstar/pkg-plist (props changed) head/games/pouetchess/pkg-plist (props changed) head/games/powermanga/pkg-plist (props changed) head/games/ppracer/pkg-plist (props changed) head/games/prboom/pkg-plist (props changed) head/games/primateplunge/pkg-plist (props changed) head/games/ptkei/pkg-plist (props changed) head/games/ptools/pkg-plist (props changed) head/games/pushover/pkg-plist (props changed) head/games/pvpgn/pkg-plist (props changed) head/games/py-mnemosyne/pkg-plist (props changed) head/games/py-poker-eval/pkg-plist (props changed) head/games/py-pychess/pkg-plist (props changed) head/games/py-sgflib/pkg-plist (props changed) head/games/pyching/pkg-plist (props changed) head/games/pydance/pkg-plist (props changed) head/games/pykawari/pkg-plist (props changed) head/games/pysol-music/pkg-plist (props changed) head/games/pysol/pkg-plist (props changed) head/games/pysycache-lang/pkg-plist (props changed) head/games/pysycache-themes/pkg-plist (props changed) head/games/pysycache/pkg-plist (props changed) head/games/pythonchess/pkg-plist (props changed) head/games/pythonsudoku/pkg-plist (props changed) head/games/pytowerdefense/pkg-plist (props changed) head/games/q2p/pkg-plist (props changed) head/games/q2pro/pkg-plist (props changed) head/games/q3cellshading/pkg-plist (props changed) head/games/qccx/pkg-plist (props changed) head/games/qix/pkg-plist (props changed) head/games/qix/pkg-plist.x11 (props changed) head/games/qmars/pkg-plist (props changed) head/games/qnetwalk/pkg-plist (props changed) head/games/qonk/pkg-plist (props changed) head/games/qstat/pkg-plist (props changed) head/games/qtv/pkg-plist (props changed) head/games/quackle/pkg-plist (props changed) head/games/quake-data/pkg-plist (props changed) head/games/quake-dpmod/pkg-plist (props changed) head/games/quake-extras/pkg-plist (props changed) head/games/quake-reaper/pkg-plist (props changed) head/games/quake-source/pkg-plist (props changed) head/games/quake2-3zb2/pkg-plist (props changed) head/games/quake2-ctf/pkg-plist (props changed) head/games/quake2-data/pkg-plist (props changed) head/games/quake2-lights/pkg-plist (props changed) head/games/quake2-matrix/pkg-plist (props changed) head/games/quake2-psychomod/pkg-plist (props changed) head/games/quake2-relay/pkg-plist (props changed) head/games/quake2-source/pkg-plist (props changed) head/games/quake2-zaero/pkg-plist (props changed) head/games/quake2lnx/pkg-plist (props changed) head/games/quake2max/pkg-plist (props changed) head/games/quake3-data/pkg-plist (props changed) head/games/quake3-excessive/pkg-plist (props changed) head/games/quake3-freezetag/pkg-plist (props changed) head/games/quake3-osp/pkg-plist (props changed) head/games/quake3-ra3/pkg-plist (props changed) head/games/quake3-ut/pkg-plist (props changed) head/games/quake3-wfa/pkg-plist (props changed) head/games/quake3/pkg-plist (props changed) head/games/quakeforge/pkg-plist (props changed) head/games/qudos/pkg-plist (props changed) head/games/quetoo/pkg-plist (props changed) head/games/r1q2/pkg-plist (props changed) head/games/railroad-rampage/pkg-plist (props changed) head/games/residualvm/pkg-plist (props changed) head/games/rfksay/pkg-plist (props changed) head/games/rftg/pkg-plist (props changed) head/games/robotfindskitten/pkg-plist (props changed) head/games/rottdc/pkg-plist (props changed) head/games/sampsvr/pkg-plist (props changed) head/games/schwarzweiss/pkg-plist (props changed) head/games/scid/pkg-plist (props changed) head/games/scorched3d/pkg-plist (props changed) head/games/sdlCC/pkg-plist (props changed) head/games/sdlquake2/pkg-plist (props changed) head/games/seabattle/pkg-plist (props changed) head/games/searchandrescue-data/pkg-plist (props changed) head/games/secretmaryochronicles-music/pkg-plist (props changed) head/games/secretmaryochronicles/pkg-plist (props changed) head/games/senken/pkg-plist (props changed) head/games/sl/pkg-plist (props changed) head/games/slashem-tty/pkg-plist (props changed) head/games/slune/pkg-plist (props changed) head/games/sokoban/pkg-plist (props changed) head/games/sol/pkg-plist (props changed) head/games/solarwolf/pkg-plist (props changed) head/games/sopwith/pkg-plist (props changed) head/games/speak/pkg-plist (props changed) head/games/species/pkg-plist (props changed) head/games/spellathon/pkg-plist (props changed) head/games/spider/pkg-plist (props changed) head/games/spring/pkg-plist (props changed) head/games/springlobby/pkg-plist (props changed) head/games/sudoku-sensei/pkg-plist (props changed) head/games/super_mario_bros_python/pkg-plist (props changed) head/games/supertux/pkg-plist (props changed) head/games/supertuxkart/pkg-plist (props changed) head/games/sxsame/pkg-plist (props changed) head/games/tads/pkg-plist (props changed) head/games/tank/pkg-plist (props changed) head/games/tecnoballz/pkg-plist (props changed) head/games/teg/pkg-plist (props changed) head/games/tenebrae/pkg-plist (props changed) head/games/tetrinet-x/pkg-plist (props changed) head/games/tetzle/pkg-plist (props changed) head/games/tileworld/pkg-plist (props changed) head/games/tinymux/pkg-plist (props changed) head/games/tkmoo/pkg-plist (props changed) head/games/tksol/pkg-plist (props changed) head/games/tong/pkg-plist (props changed) head/games/tremulous/pkg-plist (props changed) head/games/trojka/pkg-plist (props changed) head/games/tsito/pkg-plist (props changed) head/games/tt/pkg-plist (props changed) head/games/ttraffic/pkg-plist (props changed) head/games/tux-aqfh/pkg-plist (props changed) head/games/tuxkart/pkg-plist (props changed) head/games/tuxmath/pkg-plist (props changed) head/games/tuxpaint-config/pkg-plist (props changed) head/games/tuxpaint-stamps/pkg-plist (props changed) head/games/tuxpaint/pkg-plist (props changed) head/games/tuxracer/pkg-plist (props changed) head/games/tuxtype/pkg-plist (props changed) head/games/twitch/pkg-plist (props changed) head/games/typespeed/pkg-plist (props changed) head/games/tyrquake/pkg-plist (props changed) head/games/ufoai/pkg-plist (props changed) head/games/uhexen2-extras/pkg-plist (props changed) head/games/uhexen2/pkg-plist (props changed) head/games/umark/pkg-plist (props changed) head/games/unnethack/pkg-plist (props changed) head/games/urbanterror-data/pkg-plist (props changed) head/games/utserver/pkg-plist (props changed) head/games/vavoom-extras/pkg-plist (props changed) head/games/vavoom/pkg-plist (props changed) head/games/vdrift/pkg-plist (props changed) head/games/violetland/pkg-plist (props changed) head/games/viruskiller/pkg-plist (props changed) head/games/vodovod/pkg-plist (props changed) head/games/vultures-eye/pkg-plist (props changed) head/games/wanderer/pkg-plist (props changed) head/games/wargus/pkg-plist (props changed) head/games/warsow-data/pkg-plist (props changed) head/games/warzone2100/pkg-plist (props changed) head/games/wesnoth/pkg-plist (props changed) head/games/wizznic/pkg-plist (props changed) head/games/wolfpack/pkg-plist (props changed) head/games/wop/pkg-plist (props changed) head/games/worldofpadman/pkg-plist (props changed) head/games/xabacus/pkg-plist (props changed) head/games/xarchon/pkg-plist (props changed) head/games/xataxx/pkg-plist (props changed) head/games/xbat/pkg-plist (props changed) head/games/xbattle/pkg-plist (props changed) head/games/xbl/pkg-plist (props changed) head/games/xblackjack/pkg-plist (props changed) head/games/xblast/pkg-plist (props changed) head/games/xboard/pkg-plist (props changed) head/games/xboing/pkg-plist (props changed) head/games/xbomber/pkg-plist (props changed) head/games/xbubble/pkg-plist (props changed) head/games/xchadance/pkg-plist (props changed) head/games/xcheckers/pkg-plist (props changed) head/games/xdeblock/pkg-plist (props changed) head/games/xfireworks/pkg-plist (props changed) head/games/xfrisk/pkg-plist (props changed) head/games/xgalaga-sdl/pkg-plist (props changed) head/games/xgalaga/pkg-plist (props changed) head/games/xglk/pkg-plist (props changed) head/games/xgospel/pkg-plist (props changed) head/games/xhime/pkg-plist (props changed) head/games/xjewel/pkg-plist (props changed) head/games/xjumpx/pkg-plist (props changed) head/games/xkoules/pkg-plist (props changed) head/games/xlogical/pkg-plist (props changed) head/games/xmahjongg/pkg-plist (props changed) head/games/xmemory/pkg-plist (props changed) head/games/xmine/pkg-plist (props changed) head/games/xmines/pkg-plist (props changed) head/games/xmoto/pkg-plist (props changed) head/games/xmris/pkg-plist (props changed) head/games/xmulti/pkg-plist (props changed) head/games/xonix/pkg-plist (props changed) head/games/xpenguins/pkg-plist (props changed) head/games/xpilot-ng-server/pkg-plist.client (props changed) head/games/xpilot-ng-server/pkg-plist.server (props changed) head/games/xpipeman/pkg-plist (props changed) head/games/xpired/pkg-plist (props changed) head/games/xpuyopuyo/pkg-plist (props changed) head/games/xqf/pkg-plist (props changed) head/games/xrally/pkg-plist (props changed) head/games/xrick/pkg-plist (props changed) head/games/xrisk/pkg-plist (props changed) head/games/xroads/pkg-plist (props changed) head/games/xrobots/pkg-plist (props changed) head/games/xrubik/pkg-plist (props changed) head/games/xscavenger/pkg-plist (props changed) head/games/xscorch/pkg-plist (props changed) head/games/xscrabble/pkg-plist (props changed) head/games/xshisen/pkg-plist (props changed) head/games/xsokoban/pkg-plist (props changed) head/games/xsoldier/pkg-plist (props changed) head/games/xspringies/pkg-plist (props changed) head/games/xtet42/pkg-plist (props changed) head/games/xtris/pkg-plist (props changed) head/games/xtrojka/pkg-plist (props changed) head/games/xtux/pkg-plist (props changed) head/games/xvier/pkg-plist (props changed) head/games/yadex/pkg-plist (props changed) head/games/yahtzee/pkg-plist (props changed) head/games/yamsweeper/pkg-plist (props changed) head/games/zangband/pkg-plist (props changed) head/games/zaz/pkg-plist (props changed) head/german/alt-aspell/pkg-plist (props changed) head/german/aspell/pkg-plist (props changed) head/german/bsdforen-firefox-searchplugin/pkg-plist (props changed) head/german/bsdgroup-firefox-searchplugin/pkg-plist (props changed) head/german/bugzilla40/pkg-plist (props changed) head/german/bugzilla42/pkg-plist (props changed) head/german/bugzilla44/pkg-plist (props changed) head/german/dict/pkg-plist (props changed) head/german/ding/pkg-plist (props changed) head/german/pecl-konto_check/pkg-plist (props changed) head/german/steak/pkg-plist (props changed) head/german/tipp10/pkg-plist (props changed) head/german/trytond28_account_de_skr03/pkg-plist (props changed) head/german/trytond_account_de_skr03/pkg-plist (props changed) head/german/unix-connect/pkg-plist (props changed) head/german/vtiger/pkg-plist (props changed) head/graphics/4va/pkg-plist (props changed) head/graphics/Cgraph/pkg-plist (props changed) head/graphics/EZWGL/pkg-plist (props changed) head/graphics/GraphicsMagick/pkg-plist (props changed) head/graphics/GraphicsMagick12/pkg-plist (props changed) head/graphics/Hermes/pkg-plist (props changed) head/graphics/IPA/pkg-plist (props changed) head/graphics/O2-tools/pkg-plist (props changed) head/graphics/OpenEXR/pkg-plist (props changed) head/graphics/aalib/pkg-plist (props changed) head/graphics/aeskulap/pkg-plist (props changed) head/graphics/agave/pkg-plist (props changed) head/graphics/agg/pkg-plist (props changed) head/graphics/animorph/pkg-plist (props changed) head/graphics/apvlv/pkg-plist (props changed) head/graphics/asciio/pkg-plist (props changed) head/graphics/autotrace/pkg-plist (props changed) head/graphics/aview/pkg-plist (props changed) head/graphics/barcode/pkg-plist (props changed) head/graphics/batik/pkg-plist (props changed) head/graphics/bbrb/pkg-plist (props changed) head/graphics/blender-doc/pkg-plist (props changed) head/graphics/bugle/pkg-plist (props changed) head/graphics/cairo-java/pkg-plist (props changed) head/graphics/cairo/pkg-plist (props changed) head/graphics/cairomm/pkg-plist (props changed) head/graphics/cal3d-devel/pkg-plist (props changed) head/graphics/cal3d/pkg-plist (props changed) head/graphics/camediaplay/pkg-plist (props changed) head/graphics/camera/pkg-plist (props changed) head/graphics/camerakit/pkg-plist (props changed) head/graphics/cenon/pkg-plist (props changed) head/graphics/claraocr/pkg-plist (props changed) head/graphics/clutter-box2d/pkg-plist (props changed) head/graphics/clutter-gtk/pkg-plist (props changed) head/graphics/clutter/pkg-plist (props changed) head/graphics/comix/pkg-plist (props changed) head/graphics/compupic/pkg-plist (props changed) head/graphics/corona/pkg-plist (props changed) head/graphics/cthumb/pkg-plist (props changed) head/graphics/cuneiform/pkg-plist (props changed) head/graphics/cuttlefish/pkg-plist (props changed) head/graphics/darktable/pkg-plist (props changed) head/graphics/dataplot/pkg-plist (props changed) head/graphics/dc20pack/pkg-plist (props changed) head/graphics/deegree-csw/pkg-plist (props changed) head/graphics/deegree-igeoportal/pkg-plist (props changed) head/graphics/deegree-wcs/pkg-plist (props changed) head/graphics/deegree-wfs/pkg-plist (props changed) head/graphics/deegree-wms/pkg-plist (props changed) head/graphics/deegree-wps/pkg-plist (props changed) head/graphics/deegree-wpvs/pkg-plist (props changed) head/graphics/devil/pkg-plist (props changed) head/graphics/diacanvas2/pkg-plist (props changed) head/graphics/djview4/pkg-plist (props changed) head/graphics/driconf/pkg-plist (props changed) head/graphics/dynamechs/pkg-plist (props changed) head/graphics/ecore-evas/pkg-plist (props changed) head/graphics/ecore-sdl/pkg-plist (props changed) head/graphics/edje/pkg-plist (props changed) head/graphics/edje_viewer/pkg-plist (props changed) head/graphics/electrix/pkg-plist (props changed) head/graphics/enfle/pkg-plist (props changed) head/graphics/entangle/pkg-plist (props changed) head/graphics/eog-plugins/pkg-plist (props changed) head/graphics/eog/pkg-plist (props changed) head/graphics/epdfview/pkg-plist (props changed) head/graphics/epeg/pkg-plist (props changed) head/graphics/epix/pkg-plist (props changed) head/graphics/eps2png/pkg-plist (props changed) head/graphics/eterm-bg/pkg-plist (props changed) head/graphics/ethumb/pkg-plist (props changed) head/graphics/evas-core/pkg-plist (props changed) head/graphics/evas-engine-buffer/pkg-plist (props changed) head/graphics/evas-engine-opengl/pkg-plist (props changed) head/graphics/evas-engine-sdl/pkg-plist (props changed) head/graphics/evas-engine-x11/pkg-plist (props changed) head/graphics/evas-loader-bmp/pkg-plist (props changed) head/graphics/evas-loader-eet/pkg-plist (props changed) head/graphics/evas-loader-generic/pkg-plist (props changed) head/graphics/evas-loader-gif/pkg-plist (props changed) head/graphics/evas-loader-ico/pkg-plist (props changed) head/graphics/evas-loader-jpeg/pkg-plist (props changed) head/graphics/evas-loader-pmaps/pkg-plist (props changed) head/graphics/evas-loader-png/pkg-plist (props changed) head/graphics/evas-loader-psd/pkg-plist (props changed) head/graphics/evas-loader-svg/pkg-plist (props changed) head/graphics/evas-loader-tga/pkg-plist (props changed) head/graphics/evas-loader-tiff/pkg-plist (props changed) head/graphics/evas-loader-wbmp/pkg-plist (props changed) head/graphics/evas-loader-xpm/pkg-plist (props changed) head/graphics/evas_generic_loaders-gst/pkg-plist (props changed) head/graphics/evas_generic_loaders-pdf/pkg-plist (props changed) head/graphics/evas_generic_loaders-ps/pkg-plist (props changed) head/graphics/evas_generic_loaders-raw/pkg-plist (props changed) head/graphics/evas_generic_loaders-xcf/pkg-plist (props changed) head/graphics/exiv2/pkg-plist (props changed) head/graphics/fbm/pkg-plist (props changed) head/graphics/feh/pkg-plist (props changed) head/graphics/figurine/pkg-plist (props changed) head/graphics/flam3/pkg-plist (props changed) head/graphics/flphoto/pkg-plist (props changed) head/graphics/fortytwo/pkg-plist (props changed) head/graphics/fotoxx/pkg-plist (props changed) head/graphics/fpc-cairo/pkg-plist (props changed) head/graphics/fpc-fpgtk/pkg-plist (props changed) head/graphics/fpc-ggi/pkg-plist (props changed) head/graphics/fpc-graph/pkg-plist (props changed) head/graphics/fpc-hermes/pkg-plist (props changed) head/graphics/fpc-imagemagick/pkg-plist (props changed) head/graphics/fpc-imlib/pkg-plist (props changed) head/graphics/fpc-libgd/pkg-plist (props changed) head/graphics/fpc-libpng/pkg-plist (props changed) head/graphics/fpc-ncurses/pkg-plist (props changed) head/graphics/fpc-opengl/pkg-plist (props changed) head/graphics/fpc-pasjpeg/pkg-plist (props changed) head/graphics/fpc-proj4/pkg-plist (props changed) head/graphics/fpc-rsvg/pkg-plist (props changed) head/graphics/fpc-svgalib/pkg-plist (props changed) head/graphics/fraqtive/pkg-plist (props changed) head/graphics/freeglut/pkg-plist (props changed) head/graphics/frei0r/pkg-plist (props changed) head/graphics/ftgl/pkg-plist (props changed) head/graphics/fyre/pkg-plist (props changed) head/graphics/g2/pkg-plist (props changed) head/graphics/gauche-gl/pkg-plist (props changed) head/graphics/gcolor2/pkg-plist (props changed) head/graphics/gd/pkg-plist (props changed) head/graphics/gdal-grass/pkg-plist (props changed) head/graphics/gdchart/pkg-plist (props changed) head/graphics/gdk-pixbuf/pkg-plist (props changed) head/graphics/gdtclft/pkg-plist (props changed) head/graphics/geeqie/pkg-plist (props changed) head/graphics/geoapi/pkg-plist (props changed) head/graphics/geomorph/pkg-plist (props changed) head/graphics/geomview/pkg-plist (props changed) head/graphics/gexiv2/pkg-plist (props changed) head/graphics/giblib/pkg-plist (props changed) head/graphics/giflib/pkg-plist (props changed) head/graphics/gifsicle/pkg-plist (props changed) head/graphics/gimageview/pkg-plist (props changed) head/graphics/gimmage/pkg-plist (props changed) head/graphics/gimp-data-extras/pkg-plist (props changed) head/graphics/gimp-focusblur-plugin/pkg-plist (props changed) head/graphics/gimp-gap/pkg-plist (props changed) head/graphics/gimp-lqr-plugin/pkg-plist (props changed) head/graphics/gimp-manual-html/pkg-plist_HTML (props changed) head/graphics/gimp-manual-html/pkg-plist_PDF (props changed) head/graphics/gimp-save-for-web/pkg-plist (props changed) head/graphics/gimpfx-foundry/pkg-plist (props changed) head/graphics/giram/pkg-plist (props changed) head/graphics/gle-graphics/pkg-plist (props changed) head/graphics/gle/pkg-plist (props changed) head/graphics/glew/pkg-plist (props changed) head/graphics/glexcess/pkg-plist (props changed) head/graphics/glide3/pkg-plist (props changed) head/graphics/glitz/pkg-plist (props changed) head/graphics/glosm/pkg-plist (props changed) head/graphics/glpng/pkg-plist (props changed) head/graphics/gltt/pkg-plist (props changed) head/graphics/gmt/pkg-plist (props changed) head/graphics/gnash/pkg-plist (props changed) head/graphics/gnofract4d/pkg-plist (props changed) head/graphics/gnustep-slideshow/pkg-plist (props changed) head/graphics/gnustep-slideshowkit/pkg-plist (props changed) head/graphics/goocanvasmm/pkg-plist (props changed) head/graphics/goom/pkg-plist (props changed) head/graphics/gource/pkg-plist (props changed) head/graphics/gozer/pkg-plist (props changed) head/graphics/gpsmanshp/pkg-plist (props changed) head/graphics/gqview/pkg-plist (props changed) head/graphics/gracula/pkg-plist (props changed) head/graphics/grads/pkg-plist (props changed) head/graphics/grafx2/pkg-plist (props changed) head/graphics/graphopt/pkg-plist (props changed) head/graphics/graphviz/pkg-plist (props changed) head/graphics/grx/pkg-plist (props changed) head/graphics/gscan2pdf/pkg-plist (props changed) head/graphics/gsnapshot/pkg-plist (props changed) head/graphics/gstreamer-plugins-gl/pkg-plist (props changed) head/graphics/gthumb/pkg-plist (props changed) head/graphics/gtkdps/pkg-plist (props changed) head/graphics/gtkgraph/pkg-plist (props changed) head/graphics/gts/pkg-plist (props changed) head/graphics/guilib/pkg-plist (props changed) head/graphics/gx/pkg-plist (props changed) head/graphics/hobbes-icons-xpm/pkg-plist (props changed) head/graphics/hugin/pkg-plist (props changed) head/graphics/icc-profiles-basiccolor/pkg-plist (props changed) head/graphics/icc-profiles-openicc/pkg-plist (props changed) head/graphics/iccexamin/pkg-plist (props changed) head/graphics/iccxml/pkg-plist (props changed) head/graphics/icontact/pkg-plist (props changed) head/graphics/iec16022/pkg-plist (props changed) head/graphics/imageviewer/pkg-plist (props changed) head/graphics/imgtops/pkg-plist (props changed) head/graphics/imgv/pkg-plist (props changed) head/graphics/imlib/pkg-plist (props changed) head/graphics/imlib2/pkg-plist (props changed) head/graphics/imlib2_loaders/pkg-plist (props changed) head/graphics/inventor/pkg-plist (props changed) head/graphics/iulib/pkg-plist (props changed) head/graphics/ivtools/pkg-plist (props changed) head/graphics/jasper/pkg-plist (props changed) head/graphics/jave6/pkg-plist (props changed) head/graphics/jbig2dec/pkg-plist (props changed) head/graphics/jbigkit/pkg-plist (props changed) head/graphics/jdraw/pkg-plist (props changed) head/graphics/jogamp-jogl/pkg-plist (props changed) head/graphics/jogl/pkg-plist (props changed) head/graphics/jpeg/pkg-plist (props changed) head/graphics/jumpgis-postgis/pkg-plist (props changed) head/graphics/jumpgis/pkg-plist (props changed) head/graphics/k3d/pkg-plist (props changed) head/graphics/kamera-kde4/pkg-plist (props changed) head/graphics/kcolorchooser/pkg-plist (props changed) head/graphics/kcoloredit/pkg-plist (props changed) head/graphics/kdegraphics4-mobipocket/pkg-plist (props changed) head/graphics/kdegraphics4-strigi-analyzer/pkg-plist (props changed) head/graphics/kdegraphics4-svgpart/pkg-plist (props changed) head/graphics/kdegraphics4-thumbnailers/pkg-plist (props changed) head/graphics/kgraphviewer/pkg-plist (props changed) head/graphics/kiconedit/pkg-plist (props changed) head/graphics/kolourpaint/pkg-plist (props changed) head/graphics/kpovmodeler/pkg-plist (props changed) head/graphics/ksaneplugin/pkg-plist (props changed) head/graphics/ksnapshot/pkg-plist (props changed) head/graphics/kuickshow-kde4/pkg-plist (props changed) head/graphics/laternamagica/pkg-plist (props changed) head/graphics/leafpak/pkg-plist (props changed) head/graphics/lensfun/pkg-plist (props changed) head/graphics/lfview/pkg-plist (props changed) head/graphics/lib3ds/pkg-plist (props changed) head/graphics/libGL/pkg-plist (props changed) head/graphics/libGLU/pkg-plist (props changed) head/graphics/libGLw/pkg-plist (props changed) head/graphics/libafterimage/pkg-plist (props changed) head/graphics/libart_lgpl/pkg-plist (props changed) head/graphics/libaux/pkg-plist (props changed) head/graphics/libboard/pkg-plist (props changed) head/graphics/libcaca/pkg-plist (props changed) head/graphics/libchamplain/pkg-plist (props changed) head/graphics/libdmtx/pkg-plist (props changed) head/graphics/libecwj2/pkg-plist (props changed) head/graphics/libemf/pkg-plist (props changed) head/graphics/libgaiagraphics/pkg-plist (props changed) head/graphics/libgfx/pkg-plist (props changed) head/graphics/libggi/pkg-plist (props changed) head/graphics/libgltext/pkg-plist (props changed) head/graphics/libgnomecanvas/pkg-plist (props changed) head/graphics/libgnomecanvasmm26/pkg-plist (props changed) head/graphics/libimg/pkg-plist (props changed) head/graphics/libiptcdata/pkg-plist (props changed) head/graphics/libksane/pkg-plist (props changed) head/graphics/liblqr-1/pkg-plist (props changed) head/graphics/libmng/pkg-plist (props changed) head/graphics/libmorph/pkg-plist (props changed) head/graphics/libopenraw/pkg-plist (props changed) head/graphics/libpano12/pkg-plist (props changed) head/graphics/libpano13/pkg-plist (props changed) head/graphics/libpcd/pkg-plist (props changed) head/graphics/libpgf/pkg-plist (props changed) head/graphics/libprojectm/pkg-plist (props changed) head/graphics/libpuzzle/pkg-plist (props changed) head/graphics/librasterlite/pkg-plist (props changed) head/graphics/libraw/pkg-plist (props changed) head/graphics/librsvg2/pkg-plist (props changed) head/graphics/libspiro/pkg-plist (props changed) head/graphics/libvisual/pkg-plist (props changed) head/graphics/libvisual04-plugins/pkg-plist (props changed) head/graphics/libvisual04/pkg-plist (props changed) head/graphics/libwpg/pkg-plist (props changed) head/graphics/linux-f10-dri/pkg-plist (props changed) head/graphics/linux-f10-gdk-pixbuf/pkg-plist (props changed) head/graphics/linux-f10-imlib/pkg-plist.i386 (props changed) head/graphics/linux-f10-jpeg/pkg-plist (props changed) head/graphics/linux-f10-tiff/pkg-plist.i386 (props changed) head/graphics/linux-sdl_ttf/pkg-plist (props changed) head/graphics/linux_glide/pkg-plist (props changed) head/graphics/lprof-devel/pkg-plist (props changed) head/graphics/luminance/pkg-plist (props changed) head/graphics/luxrays/pkg-plist (props changed) head/graphics/luxrender/pkg-plist (props changed) head/graphics/mapserver/pkg-plist (props changed) head/graphics/mate-image-viewer/pkg-plist (props changed) head/graphics/megapov/pkg-plist (props changed) head/graphics/mesa-demos/pkg-plist (props changed) head/graphics/mhgui/pkg-plist (props changed) head/graphics/mingplot/pkg-plist (props changed) head/graphics/mscgen/pkg-plist (props changed) head/graphics/mtpaint/pkg-plist (props changed) head/graphics/nathive/pkg-plist (props changed) head/graphics/netpbm/pkg-plist (props changed) head/graphics/nip2/pkg-plist (props changed) head/graphics/npretty/pkg-plist (props changed) head/graphics/nurbs++/pkg-plist (props changed) head/graphics/nvidia-texture-tools/pkg-plist (props changed) head/graphics/ocaml-lablgl/pkg-plist (props changed) head/graphics/ocrfeeder/pkg-plist (props changed) head/graphics/ocropus/pkg-plist (props changed) head/graphics/opencolorio/pkg-plist-tools (props changed) head/graphics/opencsg/pkg-plist (props changed) head/graphics/opendis/pkg-plist (props changed) head/graphics/opendx/pkg-plist (props changed) head/graphics/openimageio/pkg-plist-pybind (props changed) head/graphics/opennurbs/pkg-plist (props changed) head/graphics/openshadinglanguage/pkg-plist (props changed) head/graphics/orca/pkg-plist (props changed) head/graphics/osg-devel/pkg-plist (props changed) head/graphics/osg/pkg-plist (props changed) head/graphics/p5-Acme-Steganography-Image-Png/pkg-plist (props changed) head/graphics/p5-CAD-Drawing-Template/pkg-plist (props changed) head/graphics/p5-CAD-Drawing/pkg-plist (props changed) head/graphics/p5-Captcha-reCAPTCHA-Mailhide/pkg-plist (props changed) head/graphics/p5-Captcha-reCAPTCHA/pkg-plist (props changed) head/graphics/p5-Chart-Graph/pkg-plist (props changed) head/graphics/p5-Chart-PNGgraph/pkg-plist (props changed) head/graphics/p5-Chart/pkg-plist (props changed) head/graphics/p5-Color-Calc/pkg-plist (props changed) head/graphics/p5-Color-Library/pkg-plist (props changed) head/graphics/p5-Color-Palette/pkg-plist (props changed) head/graphics/p5-Color-Rgb/pkg-plist (props changed) head/graphics/p5-Color-Scheme/pkg-plist (props changed) head/graphics/p5-Convert-Color/pkg-plist (props changed) head/graphics/p5-GD-Arrow/pkg-plist (props changed) head/graphics/p5-GD-Barcode/pkg-plist (props changed) head/graphics/p5-GD-Graph-histogram/pkg-plist (props changed) head/graphics/p5-GD-Graph-ohlc/pkg-plist (props changed) head/graphics/p5-GD-Graph/pkg-plist (props changed) head/graphics/p5-GD-Graph3d/pkg-plist (props changed) head/graphics/p5-GD-SVG/pkg-plist (props changed) head/graphics/p5-GD-TextUtil/pkg-plist (props changed) head/graphics/p5-GD-Thumbnail/pkg-plist (props changed) head/graphics/p5-GD/pkg-plist (props changed) head/graphics/p5-Geo-EOP/pkg-plist (props changed) head/graphics/p5-Geo-GML/pkg-plist (props changed) head/graphics/p5-Geo-Gpx/pkg-plist (props changed) head/graphics/p5-Geo-Point/pkg-plist (props changed) head/graphics/p5-Geo-Proj4/pkg-plist (props changed) head/graphics/p5-Geometry-Primitive/pkg-plist (props changed) head/graphics/p5-Google-Chart/pkg-plist (props changed) head/graphics/p5-Graph-Easy/pkg-plist (props changed) head/graphics/p5-Graph-ReadWrite/pkg-plist (props changed) head/graphics/p5-Graph-SocialMap/pkg-plist (props changed) head/graphics/p5-GraphViz-Data-Structure/pkg-plist (props changed) head/graphics/p5-GraphViz-Traverse/pkg-plist (props changed) head/graphics/p5-GraphViz/pkg-plist (props changed) head/graphics/p5-Graphics-Color/pkg-plist (props changed) head/graphics/p5-Graphics-ColorNames-WWW/pkg-plist (props changed) head/graphics/p5-Graphics-ColorNames/pkg-plist (props changed) head/graphics/p5-Graphics-GnuplotIF/pkg-plist (props changed) head/graphics/p5-Graphics-Primitive-Driver-Cairo/pkg-plist (props changed) head/graphics/p5-Graphics-Primitive/pkg-plist (props changed) head/graphics/p5-Image-Caa/pkg-plist (props changed) head/graphics/p5-Image-Compare/pkg-plist (props changed) head/graphics/p5-Image-ExifTool/pkg-plist (props changed) head/graphics/p5-Image-Grab/pkg-plist (props changed) head/graphics/p5-Image-Heatmap/pkg-plist (props changed) head/graphics/p5-Image-IPTCInfo/pkg-plist (props changed) head/graphics/p5-Image-Imgur/pkg-plist (props changed) head/graphics/p5-Image-Imlib2/pkg-plist (props changed) head/graphics/p5-Image-Info/pkg-plist (props changed) head/graphics/p5-Image-Magick-Iterator/pkg-plist (props changed) head/graphics/p5-Image-Math-Constrain/pkg-plist (props changed) head/graphics/p5-Image-MetaData-GQview/pkg-plist (props changed) head/graphics/p5-Image-MetaData-JPEG/pkg-plist (props changed) head/graphics/p5-Image-PBMlib/pkg-plist (props changed) head/graphics/p5-Image-Pngslimmer/pkg-plist (props changed) head/graphics/p5-Image-Scale/pkg-plist (props changed) head/graphics/p5-Image-Size-FillFullSelect/pkg-plist (props changed) head/graphics/p5-Image-Size/pkg-plist (props changed) head/graphics/p5-Imager-AverageGray/pkg-plist (props changed) head/graphics/p5-Imager-Graph/pkg-plist (props changed) head/graphics/p5-Imager-Plot/pkg-plist (props changed) head/graphics/p5-Imager/pkg-plist (props changed) head/graphics/p5-Imlib2/pkg-plist (props changed) head/graphics/p5-Layout-Manager/pkg-plist (props changed) head/graphics/p5-PGPLOT/pkg-plist (props changed) head/graphics/p5-SVG-DOM2/pkg-plist (props changed) head/graphics/p5-SVG-Graph/pkg-plist (props changed) head/graphics/p5-SVG-Metadata/pkg-plist (props changed) head/graphics/p5-SWF-Builder/pkg-plist (props changed) head/graphics/p5-SWF-File/pkg-plist (props changed) head/graphics/p5-Sane/pkg-plist (props changed) head/graphics/p5-SpringGraph/pkg-plist (props changed) head/graphics/p5-Tk-JPEG-Lite/pkg-plist (props changed) head/graphics/p5-URI-GoogleChart/pkg-plist (props changed) head/graphics/p5-VCG/pkg-plist (props changed) head/graphics/p5-Visio/pkg-plist (props changed) head/graphics/passepartout/pkg-plist (props changed) head/graphics/pfscalibration/pkg-plist (props changed) head/graphics/pfstmo/pkg-plist (props changed) head/graphics/pfstools/pkg-plist (props changed) head/graphics/pgplot/pkg-plist (props changed) head/graphics/php-gdal/pkg-plist (props changed) head/graphics/php5-chartdirector/pkg-plist (props changed) head/graphics/php5-swfed/pkg-plist (props changed) head/graphics/picpuz/pkg-plist (props changed) head/graphics/picturebook/pkg-plist (props changed) head/graphics/picviz/pkg-plist (props changed) head/graphics/piddle/pkg-plist (props changed) head/graphics/pinpoint/pkg-plist (props changed) head/graphics/pinta/pkg-plist (props changed) head/graphics/pixen/pkg-plist (props changed) head/graphics/pixie/pkg-plist (props changed) head/graphics/pixmap/pkg-plist (props changed) head/graphics/plotmtv/pkg-plist (props changed) head/graphics/plotutils/pkg-plist (props changed) head/graphics/png/pkg-plist (props changed) head/graphics/poppler-data/pkg-plist (props changed) head/graphics/pornview/pkg-plist (props changed) head/graphics/povray31/pkg-plist (props changed) head/graphics/povray36/pkg-plist (props changed) head/graphics/preview/pkg-plist (props changed) head/graphics/price/pkg-plist (props changed) head/graphics/prison/pkg-plist (props changed) head/graphics/processing/pkg-plist (props changed) head/graphics/pstoepsi/pkg-plist (props changed) head/graphics/pure-gl/pkg-plist (props changed) head/graphics/py-aafigure/pkg-plist (props changed) head/graphics/py-actdiag/pkg-plist (props changed) head/graphics/py-blockdiag/pkg-plist (props changed) head/graphics/py-blockdiagcontrib-cisco/pkg-plist (props changed) head/graphics/py-cairo/pkg-plist (props changed) head/graphics/py-chart/pkg-plist (props changed) head/graphics/py-django-easy-thumbnails/pkg-plist (props changed) head/graphics/py-editobj/pkg-plist (props changed) head/graphics/py-exif/pkg-plist (props changed) head/graphics/py-exiv2/pkg-plist (props changed) head/graphics/py-gchartwrapper/pkg-plist (props changed) head/graphics/py-glewpy/pkg-plist (props changed) head/graphics/py-graphviz/pkg-plist (props changed) head/graphics/py-graphy/pkg-plist (props changed) head/graphics/py-gvgen/pkg-plist (props changed) head/graphics/py-imaging/pkg-plist (props changed) head/graphics/py-ming/pkg-plist (props changed) head/graphics/py-nwdiag/pkg-plist (props changed) head/graphics/py-openexr/pkg-plist (props changed) head/graphics/py-png/pkg-plist (props changed) head/graphics/py-poppler/pkg-plist (props changed) head/graphics/py-pycha/pkg-plist (props changed) head/graphics/py-pyglet/pkg-plist (props changed) head/graphics/py-qt4-svg/pkg-plist (props changed) head/graphics/py-sane/pkg-plist (props changed) head/graphics/py-seqdiag/pkg-plist (props changed) head/graphics/py-sorl-thumbnail/pkg-plist (props changed) head/graphics/py-soya3d/pkg-plist (props changed) head/graphics/py3-cairo/pkg-plist (props changed) head/graphics/pygts/pkg-plist (props changed) head/graphics/pymorph/pkg-plist (props changed) head/graphics/qcread/pkg-plist (props changed) head/graphics/qgis/pkg-plist (props changed) head/graphics/qslim/pkg-plist (props changed) head/graphics/qtgtl/pkg-plist (props changed) head/graphics/quesa/pkg-plist (props changed) head/graphics/quesoglc/pkg-plist (props changed) head/graphics/reallyslick/pkg-plist (props changed) head/graphics/renrot/pkg-plist (props changed) head/graphics/ruby-cairo/pkg-plist (props changed) head/graphics/ruby-gd/pkg-plist (props changed) head/graphics/ruby-gdal/pkg-plist (props changed) head/graphics/ruby-gdk_pixbuf2/pkg-plist (props changed) head/graphics/ruby-image_size/pkg-plist (props changed) head/graphics/ruby-ming/pkg-plist (props changed) head/graphics/ruby-rmagick/pkg-plist (props changed) head/graphics/ruby-rsvg2/pkg-plist (props changed) head/graphics/ruby-svg/pkg-plist (props changed) head/graphics/ruby-tgif/pkg-plist (props changed) head/graphics/rubyphoto/pkg-plist (props changed) head/graphics/sage/pkg-plist (props changed) head/graphics/sampleicc/pkg-plist (props changed) head/graphics/sane-epkowa/pkg-plist (props changed) head/graphics/sane-frontends/pkg-plist (props changed) head/graphics/scantailor/pkg-plist (props changed) head/graphics/scwm-icons/pkg-plist (props changed) head/graphics/sdl_gfx/pkg-plist (props changed) head/graphics/sdl_image/pkg-plist (props changed) head/graphics/sdl_ttf/pkg-plist (props changed) head/graphics/sharpconstruct/pkg-plist (props changed) head/graphics/shiva-collections/pkg-plist (props changed) head/graphics/shotwell/pkg-plist (props changed) head/graphics/silgraphite/pkg-plist (props changed) head/graphics/simage/pkg-plist (props changed) head/graphics/sk1libs/pkg-plist (props changed) head/graphics/sodipodi/pkg-plist (props changed) head/graphics/sswf/pkg-plist (props changed) head/graphics/stamp/pkg-plist (props changed) head/graphics/structuresynth/pkg-plist (props changed) head/graphics/svgalib/pkg-plist (props changed) head/graphics/svgfig/pkg-plist (props changed) head/graphics/swfdec/pkg-plist (props changed) head/graphics/swftools/pkg-plist (props changed) head/graphics/synfigstudio/pkg-plist (props changed) head/graphics/tgif/pkg-plist (props changed) head/graphics/tiff/pkg-plist (props changed) head/graphics/tilecache/pkg-plist (props changed) head/graphics/tiled/pkg-plist (props changed) head/graphics/tinyows/pkg-plist (props changed) head/graphics/truevision/pkg-plist (props changed) head/graphics/tulip/pkg-plist (props changed) head/graphics/uDrawGraph/pkg-plist (props changed) head/graphics/ufraw/pkg-plist (props changed) head/graphics/uniconvertor/pkg-plist (props changed) head/graphics/uniconvw/pkg-plist (props changed) head/graphics/unpaper/pkg-plist (props changed) head/graphics/vcg/pkg-plist (props changed) head/graphics/vips/pkg-plist (props changed) head/graphics/visionworkbench/pkg-plist (props changed) head/graphics/white_dune/pkg-plist (props changed) head/graphics/wings/pkg-plist (props changed) head/graphics/wmgrabimage/pkg-plist (props changed) head/graphics/wmicons/pkg-plist (props changed) head/graphics/wxsvg/pkg-plist (props changed) head/graphics/xbmbrowser/pkg-plist (props changed) head/graphics/xd3d/pkg-plist (props changed) head/graphics/xface.el/pkg-plist (props changed) head/graphics/xfig/pkg-plist (props changed) head/graphics/xfpovray/pkg-plist (props changed) head/graphics/xfractint/pkg-plist (props changed) head/graphics/xmedcon/pkg-plist (props changed) head/graphics/xmfract/pkg-plist (props changed) head/graphics/xmms-dflowers/pkg-plist (props changed) head/graphics/xmms-dscope/pkg-plist (props changed) head/graphics/xmms-dspectogram/pkg-plist (props changed) head/graphics/xmms-dspectral/pkg-plist (props changed) head/graphics/xmms-paranormal/pkg-plist (props changed) head/graphics/xmms-scivi/pkg-plist (props changed) head/graphics/xmms-vumeter/pkg-plist (props changed) head/graphics/xmorph/pkg-plist (props changed) head/graphics/xnview/pkg-plist (props changed) head/graphics/xoris/pkg-plist (props changed) head/graphics/xournal/pkg-plist (props changed) head/graphics/xpdf/pkg-plist (props changed) head/graphics/xv/pkg-plist (props changed) head/graphics/xwpick/pkg-plist (props changed) head/graphics/yafray/pkg-plist (props changed) head/graphics/yagf/pkg-plist (props changed) head/graphics/yed/pkg-plist (props changed) head/graphics/zbar/pkg-plist (props changed) head/graphics/zint/pkg-plist (props changed) head/graphics/zphoto/pkg-plist (props changed) head/hebrew/aspell/pkg-plist (props changed) head/hebrew/culmus/pkg-plist (props changed) head/hebrew/elmar-fonts/pkg-plist (props changed) head/hebrew/he2/pkg-plist (props changed) head/hebrew/hspell/pkg-plist (props changed) head/hungarian/aspell/pkg-plist (props changed) head/hungarian/ispell/pkg-plist (props changed) head/irc/anope/pkg-plist (props changed) head/irc/bitlbee/pkg-plist (props changed) head/irc/bnc/pkg-plist (props changed) head/irc/bopm/pkg-plist (props changed) head/irc/cgiirc/pkg-plist (props changed) head/irc/charybdis/pkg-plist (props changed) head/irc/ctrlproxy/pkg-plist (props changed) head/irc/cwirc/pkg-plist (props changed) head/irc/dancer/pkg-plist (props changed) head/irc/dircproxy/pkg-plist (props changed) head/irc/eggdrop-devel/pkg-plist (props changed) head/irc/eggdrop/pkg-plist (props changed) head/irc/epic4/pkg-plist (props changed) head/irc/epic5/pkg-plist (props changed) head/irc/ezbounce/pkg-plist (props changed) head/irc/fisg/pkg-plist (props changed) head/irc/gruftistats/pkg-plist (props changed) head/irc/gseen.mod/pkg-plist (props changed) head/irc/infobot/pkg-plist (props changed) head/irc/insub/pkg-plist (props changed) head/irc/irc/pkg-plist (props changed) head/irc/ircII/pkg-plist (props changed) head/irc/ircd-hybrid/pkg-plist (props changed) head/irc/ircd-ratbox-devel/pkg-plist (props changed) head/irc/ircd-ratbox/pkg-plist (props changed) head/irc/ircd-ru/pkg-plist (props changed) head/irc/irchat-pj-emacs21/pkg-plist (props changed) head/irc/ircproxy/pkg-plist (props changed) head/irc/ircservices/pkg-plist (props changed) head/irc/iroffer-dinoex/pkg-plist (props changed) head/irc/iroffer-lamm/pkg-plist (props changed) head/irc/iroffer/pkg-plist (props changed) head/irc/irssi-devel/pkg-plist (props changed) head/irc/irssi-scripts/pkg-plist (props changed) head/irc/irssi/pkg-plist (props changed) head/irc/irssistats/pkg-plist (props changed) head/irc/keitairc2/pkg-plist (props changed) head/irc/konversation-kde4/pkg-plist (props changed) head/irc/libircclient/pkg-plist (props changed) head/irc/lostirc/pkg-plist (props changed) head/irc/miau/pkg-plist (props changed) head/irc/muh/pkg-plist (props changed) head/irc/nefarious/pkg-plist (props changed) head/irc/nethirc/pkg-plist (props changed) head/irc/netwalker-ircc/pkg-plist (props changed) head/irc/ninja/pkg-plist (props changed) head/irc/onis/pkg-plist (props changed) head/irc/p5-AnyEvent-IRC/pkg-plist (props changed) head/irc/p5-Bot-BasicBot/pkg-plist (props changed) head/irc/p5-IRC-Bot-Hangman/pkg-plist (props changed) head/irc/p5-IRC-Utils/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Object/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Plugin-Blowfish/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Plugin-Bollocks/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Plugin-CoreList/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Plugin-Hailo/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Plugin-Karma/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Plugin-POE-Knee/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Plugin-QueryDNSBL/pkg-plist (props changed) head/irc/p5-POE-Component-IRC-Plugin-RSS-Headlines/pkg-plist (props changed) head/irc/p5-POE-Component-IRC/pkg-plist (props changed) head/irc/p5-POE-Filter-IRCD/pkg-plist (props changed) head/irc/p5-Parse-IRC/pkg-plist (props changed) head/irc/pircbot/pkg-plist (props changed) head/irc/pisg/pkg-plist (props changed) head/irc/psybnc/pkg-plist (props changed) head/irc/pure-emacs21/pkg-plist (props changed) head/irc/py-gozerbot/pkg-plist (props changed) head/irc/py-supybot-plugins/pkg-plist (props changed) head/irc/quassel/pkg-plist (props changed) head/irc/quirc/pkg-plist (props changed) head/irc/qwebirc/pkg-plist (props changed) head/irc/ratbox-services/pkg-plist (props changed) head/irc/rbot/pkg-plist (props changed) head/irc/riece/pkg-plist (props changed) head/irc/roxirc/pkg-plist (props changed) head/irc/ruby-irc/pkg-plist (props changed) head/irc/ruby-rica/pkg-plist (props changed) head/irc/ruby-rice/pkg-plist (props changed) head/irc/sic/pkg-plist (props changed) head/irc/sirc/pkg-plist (props changed) head/irc/slirc/pkg-plist (props changed) head/irc/smartirc4net/pkg-plist (props changed) head/irc/solid-ircd/pkg-plist (props changed) head/irc/thales/pkg-plist (props changed) head/irc/tircd/pkg-plist (props changed) head/irc/tircproxy/pkg-plist (props changed) head/irc/unreal/pkg-plist (props changed) head/irc/xchat/pkg-plist (props changed) head/japanese/ASCIIdates98-fpw/pkg-plist (props changed) head/japanese/CGdic-fpw/pkg-plist (props changed) head/japanese/FreeWnn-lib/pkg-plist (props changed) head/japanese/Wnn6-lib/pkg-plist (props changed) head/japanese/Wnn6/pkg-plist (props changed) head/japanese/Wnn7-lib/pkg-plist (props changed) head/japanese/ajaxzip2-core/pkg-plist (props changed) head/japanese/ajaxzip2-data/pkg-plist (props changed) head/japanese/alias-fonts/pkg-plist (props changed) head/japanese/another-htmllint/pkg-plist (props changed) head/japanese/anthy/pkg-plist (props changed) head/japanese/asterisk-sounds/pkg-plist (props changed) head/japanese/aterm/pkg-plist (props changed) head/japanese/bible_names-fpw/pkg-plist (props changed) head/japanese/bookview/pkg-plist (props changed) head/japanese/bugzilla40/pkg-plist (props changed) head/japanese/bugzilla42/pkg-plist (props changed) head/japanese/bugzilla44/pkg-plist (props changed) head/japanese/calligra-l10n/pkg-plist (props changed) head/japanese/canna-lib/pkg-plist (props changed) head/japanese/cannadic/pkg-plist (props changed) head/japanese/cdrom2/pkg-plist (props changed) head/japanese/chasen-base/pkg-plist (props changed) head/japanese/cmigemo-dict/pkg-plist (props changed) head/japanese/cmigemo/pkg-plist (props changed) head/japanese/ctags/pkg-plist (props changed) head/japanese/devil-fpw/pkg-plist (props changed) head/japanese/dvipsk/pkg-plist (props changed) head/japanese/e2ps/pkg-plist (props changed) head/japanese/eb/pkg-plist (props changed) head/japanese/ebd-fpw/pkg-plist (props changed) head/japanese/ebnetd/pkg-plist (props changed) head/japanese/ebview-gtk2/pkg-plist (props changed) head/japanese/ebview/pkg-plist (props changed) head/japanese/edict-fpw/pkg-plist (props changed) head/japanese/edict/pkg-plist (props changed) head/japanese/eijiro-fpw/pkg-plist (props changed) head/japanese/elvis/pkg-plist (props changed) head/japanese/emacs-emcws/pkg-plist (props changed) head/japanese/epwutil/pkg-plist (props changed) head/japanese/esecanna-module-vje25/pkg-plist (props changed) head/japanese/esecanna-module-vje30/pkg-plist (props changed) head/japanese/esecanna-module-wnn6/pkg-plist (props changed) head/japanese/esecanna/pkg-plist (props changed) head/japanese/fcitx-anthy/pkg-plist (props changed) head/japanese/flex-sdk/pkg-plist (props changed) head/japanese/flower-fpw/pkg-plist (props changed) head/japanese/foldoc-fpw/pkg-plist (props changed) head/japanese/font-ipa-uigothic/pkg-plist (props changed) head/japanese/font-ipa/pkg-plist (props changed) head/japanese/font-ipaex/pkg-plist (props changed) head/japanese/font-jisx0213/pkg-plist (props changed) head/japanese/font-kochi/pkg-plist (props changed) head/japanese/font-migmix/pkg-plist (props changed) head/japanese/font-migu/pkg-plist (props changed) head/japanese/font-mona-ipa/pkg-plist (props changed) head/japanese/font-motoya-al/pkg-plist (props changed) head/japanese/font-mplus-ipa/pkg-plist (props changed) head/japanese/font-mplus/pkg-plist (props changed) head/japanese/font-ricty/pkg-plist (props changed) head/japanese/font-sazanami/pkg-plist (props changed) head/japanese/font-shinonome/pkg-plist (props changed) head/japanese/font-takao/pkg-plist (props changed) head/japanese/font-ume/pkg-plist (props changed) head/japanese/font-vlgothic/pkg-plist (props changed) head/japanese/freepwing/pkg-plist (props changed) head/japanese/fumeikai-fpw/pkg-plist (props changed) head/japanese/gawk/pkg-plist (props changed) head/japanese/grep/pkg-plist (props changed) head/japanese/groff/pkg-plist (props changed) head/japanese/gtkicq/pkg-plist (props changed) head/japanese/guesswork-classic/pkg-plist (props changed) head/japanese/hns/pkg-plist (props changed) head/japanese/ibus-anthy/pkg-plist (props changed) head/japanese/ibus-skk/pkg-plist (props changed) head/japanese/im-ja/pkg-plist (props changed) head/japanese/ipadic/pkg-plist (props changed) head/japanese/ja6/pkg-plist (props changed) head/japanese/jadetex-ptex/pkg-plist (props changed) head/japanese/japaneseAFM/pkg-plist (props changed) head/japanese/jargon-fpw/pkg-plist (props changed) head/japanese/jed/pkg-plist (props changed) head/japanese/jishyo/pkg-plist (props changed) head/japanese/jmode/pkg-plist (props changed) head/japanese/jvim3/pkg-plist (props changed) head/japanese/jyuroku/pkg-plist (props changed) head/japanese/kakasi/pkg-plist (props changed) head/japanese/kana-no-quiz/pkg-plist (props changed) head/japanese/kanji26/pkg-plist (props changed) head/japanese/kasumi/pkg-plist (props changed) head/japanese/kdrill/pkg-plist (props changed) head/japanese/kinput2/pkg-plist (props changed) head/japanese/kon2-16dot/pkg-plist (props changed) head/japanese/lambdamoo/pkg-plist (props changed) head/japanese/latex2html/pkg-plist (props changed) head/japanese/leafrogue/pkg-plist (props changed) head/japanese/libjcode/pkg-plist (props changed) head/japanese/libslang/pkg-plist (props changed) head/japanese/libtomoe-gtk/pkg-plist (props changed) head/japanese/lipsf/pkg-plist (props changed) head/japanese/lookup/pkg-plist (props changed) head/japanese/lsd-fpw/pkg-plist (props changed) head/japanese/lynx-current/pkg-plist (props changed) head/japanese/lynx/pkg-plist (props changed) head/japanese/mailman/pkg-plist (props changed) head/japanese/makejvf/pkg-plist (props changed) head/japanese/man-doc/pkg-plist (props changed) head/japanese/man/pkg-plist (props changed) head/japanese/mecab-ipadic/pkg-plist (props changed) head/japanese/mecab/pkg-plist (props changed) head/japanese/mell/pkg-plist (props changed) head/japanese/mendexk-euc/pkg-plist (props changed) head/japanese/mg/pkg-plist (props changed) head/japanese/mh/pkg-plist (props changed) head/japanese/migemo/pkg-plist (props changed) head/japanese/ming/pkg-plist (props changed) head/japanese/monafonts-ttf/pkg-plist (props changed) head/japanese/mtools/pkg-plist (props changed) head/japanese/multiskkserv/pkg-plist (props changed) head/japanese/mypaedia-fpw-package/pkg-plist (props changed) head/japanese/mypaedia-fpw/pkg-plist (props changed) head/japanese/namazu/pkg-plist (props changed) head/japanese/navi2ch/pkg-plist (props changed) head/japanese/ne/pkg-plist (props changed) head/japanese/nethack34/pkg-plist (props changed) head/japanese/netype/pkg-plist (props changed) head/japanese/ng-devel/pkg-plist (props changed) head/japanese/ngraph-fonts/pkg-plist (props changed) head/japanese/nhocr/pkg-plist (props changed) head/japanese/ochusha/pkg-plist (props changed) head/japanese/p5-Acme-Lou/pkg-plist (props changed) head/japanese/p5-Date-Japanese-Era/pkg-plist (props changed) head/japanese/p5-Date-Japanese-Holiday/pkg-plist (props changed) head/japanese/p5-DateTime-Calendar-Japanese-Era/pkg-plist (props changed) head/japanese/p5-DateTime-Format-Japanese/pkg-plist (props changed) head/japanese/p5-Encode-EUCJPMS/pkg-plist (props changed) head/japanese/p5-Encode-JP-Emoji/pkg-plist (props changed) head/japanese/p5-Encode-JP-Mobile/pkg-plist (props changed) head/japanese/p5-HTML-MobileJp/pkg-plist (props changed) head/japanese/p5-Jcode/pkg-plist (props changed) head/japanese/p5-Lingua-JA-Kana/pkg-plist (props changed) head/japanese/p5-Lingua-JA-Numbers/pkg-plist (props changed) head/japanese/p5-Lingua-JA-Regular-Unicode/pkg-plist (props changed) head/japanese/p5-Lingua-JA-Summarize-Extract/pkg-plist (props changed) head/japanese/p5-MeCab/pkg-plist (props changed) head/japanese/p5-PDFJ/pkg-plist (props changed) head/japanese/p5-Text-ChaSen/pkg-plist (props changed) head/japanese/p5-Text-Kakasi/pkg-plist (props changed) head/japanese/p5-Text-MeCab/pkg-plist (props changed) head/japanese/p5-Unicode-Japanese/pkg-plist (props changed) head/japanese/p5-WWW-2ch/pkg-plist (props changed) head/japanese/p5-WWW-MobileCarrierJP/pkg-plist (props changed) head/japanese/p5-manual/pkg-plist (props changed) head/japanese/p5-nkf/pkg-plist (props changed) head/japanese/pejv-fpw/pkg-plist (props changed) head/japanese/platex-japanese/pkg-plist (props changed) head/japanese/platex-jsclasses/pkg-plist (props changed) head/japanese/platex209/pkg-plist (props changed) head/japanese/prime-dict/pkg-plist (props changed) head/japanese/prime-el/pkg-plist (props changed) head/japanese/prime/pkg-plist (props changed) head/japanese/ptex/pkg-plist (props changed) head/japanese/py-mecab/pkg-plist (props changed) head/japanese/py-tegaki-gtk/pkg-plist (props changed) head/japanese/py-tegaki/pkg-plist (props changed) head/japanese/py-zinnia/pkg-plist (props changed) head/japanese/rbnamazu/pkg-plist (props changed) head/japanese/roget-fpw/pkg-plist (props changed) head/japanese/rskkserv/pkg-plist (props changed) head/japanese/ruby-eb/pkg-plist (props changed) head/japanese/ruby-man/pkg-plist (props changed) head/japanese/ruby-mecab/pkg-plist (props changed) head/japanese/ruby-ming/pkg-plist (props changed) head/japanese/ruby-romkan/pkg-plist (props changed) head/japanese/ruby-uconv/pkg-plist (props changed) head/japanese/ruby-usersguide/pkg-plist (props changed) head/japanese/ryaku-fpw/pkg-plist (props changed) head/japanese/scim-anthy/pkg-plist (props changed) head/japanese/scim-canna/pkg-plist (props changed) head/japanese/scim-honoka-plugin-romkan/pkg-plist (props changed) head/japanese/scim-honoka-plugin-wnn/pkg-plist (props changed) head/japanese/scim-prime/pkg-plist (props changed) head/japanese/scim-skk/pkg-plist (props changed) head/japanese/scim-tables/pkg-plist (props changed) head/japanese/scim-uim/pkg-plist (props changed) head/japanese/seaside/pkg-plist (props changed) head/japanese/sed/pkg-plist (props changed) head/japanese/sj3-lib/pkg-plist (props changed) head/japanese/sj3-server/pkg-plist (props changed) head/japanese/skk-jisyo/pkg-plist (props changed) head/japanese/skk/pkg-plist (props changed) head/japanese/skkinput/pkg-plist (props changed) head/japanese/skkinput3/pkg-plist (props changed) head/japanese/slimeforest/pkg-plist (props changed) head/japanese/slrn/pkg-plist (props changed) head/japanese/srd-fpw-package/pkg-plist (props changed) head/japanese/srd-fpw/pkg-plist (props changed) head/japanese/suikyo/pkg-plist (props changed) head/japanese/tcl80/pkg-plist (props changed) head/japanese/teTeX/pkg-plist (props changed) head/japanese/tegaki-recognize/pkg-plist (props changed) head/japanese/tegaki-zinnia-japanese/pkg-plist (props changed) head/japanese/tex-ptex/pkg-plist (props changed) head/japanese/texinfo/pkg-plist (props changed) head/japanese/tgif/pkg-plist (props changed) head/japanese/tiarra/pkg-plist (props changed) head/japanese/timidity++-tcltk/pkg-plist (props changed) head/japanese/tk80/pkg-plist (props changed) head/japanese/tkhonyaku/pkg-plist (props changed) head/japanese/today/pkg-plist (props changed) head/japanese/tomoe/pkg-plist (props changed) head/japanese/trac/pkg-plist (props changed) head/japanese/uim-anthy/pkg-plist (props changed) head/japanese/vera-fpw/pkg-plist (props changed) head/japanese/vftool/pkg-plist (props changed) head/japanese/waeijiro-fpw/pkg-plist (props changed) head/japanese/wdic-fpw/pkg-plist (props changed) head/japanese/web1913-fpw/pkg-plist (props changed) head/japanese/wnn7egg/pkg-plist (props changed) head/japanese/wordnet-fpw/pkg-plist (props changed) head/japanese/wwasw-fpw/pkg-plist (props changed) head/japanese/xdtp/pkg-plist (props changed) head/japanese/xdvik/pkg-plist (props changed) head/japanese/xgate/pkg-plist (props changed) head/japanese/xpdf/pkg-plist (props changed) head/japanese/xshodou/pkg-plist (props changed) head/japanese/xtr/pkg-plist (props changed) head/japanese/xv/pkg-plist (props changed) head/japanese/xyaku/pkg-plist (props changed) head/japanese/yasou-fpw/pkg-plist (props changed) head/japanese/zangband/pkg-plist (props changed) head/japanese/zinnia-tomoe/pkg-plist (props changed) head/japanese/zinnia/pkg-plist (props changed) head/japanese/zipcodes/pkg-plist (props changed) head/java/avis/pkg-plist (props changed) head/java/bouncycastle/pkg-plist (props changed) head/java/cacao/pkg-plist (props changed) head/java/classpath/pkg-plist (props changed) head/java/commonclipse/pkg-plist (props changed) head/java/cos/pkg-plist (props changed) head/java/cryptix-jce/pkg-plist (props changed) head/java/eclipse-aptana-radrails/pkg-plist (props changed) head/java/eclipse-aptana/pkg-plist (props changed) head/java/eclipse-aptana2/pkg-plist (props changed) head/java/eclipse-cdt/pkg-plist (props changed) head/java/eclipse-checkstyle/pkg-plist (props changed) head/java/eclipse-drjava/pkg-plist (props changed) head/java/eclipse-examples/pkg-plist (props changed) head/java/eclipse-gef-examples/pkg-plist (props changed) head/java/eclipse-hibernatetools/pkg-plist (props changed) head/java/eclipse-langpack/pkg-plist (props changed) head/java/eclipse-pmd/pkg-plist (props changed) head/java/eclipse-quantum/pkg-plist (props changed) head/java/eclipse-vep-examples/pkg-plist (props changed) head/java/eclipse-viplugin/pkg-plist (props changed) head/java/infobus/pkg-plist (props changed) head/java/j2sdkee13/pkg-plist (props changed) head/java/jai-imageio/pkg-plist (props changed) head/java/jai/pkg-plist (props changed) head/java/jakarta-struts/pkg-plist (props changed) head/java/jamvm/pkg-plist (props changed) head/java/jasmin/pkg-plist (props changed) head/java/java-subversion/pkg-plist (props changed) head/java/java3d/pkg-plist (props changed) head/java/javahelp/pkg-plist (props changed) head/java/javavmwrapper/pkg-plist (props changed) head/java/jboss7/pkg-plist (props changed) head/java/jc/pkg-plist (props changed) head/java/jdbcpool/pkg-plist (props changed) head/java/jflex/pkg-plist (props changed) head/java/jikes/pkg-plist (props changed) head/java/jmf/pkg-plist (props changed) head/java/jode/pkg-plist (props changed) head/java/jtiger/pkg-plist (props changed) head/java/linux-sun-jdk16/pkg-plist (props changed) head/java/linux-sun-jre16/pkg-plist (props changed) head/java/netrexx/pkg-plist (props changed) head/java/phpeclipse/pkg-plist (props changed) head/java/proguard/pkg-plist (props changed) head/java/sablevm-classpath/pkg-plist (props changed) head/java/sablevm/pkg-plist (props changed) head/java/servingxml/pkg-plist (props changed) head/java/veditor/pkg-plist (props changed) head/java/visualvm/pkg-plist (props changed) head/java/xdoclet/pkg-plist (props changed) head/korean/FreeWnn-lib/pkg-plist (props changed) head/korean/ami/pkg-plist (props changed) head/korean/baekmukfonts-bdf/pkg-plist (props changed) head/korean/baekmukfonts-ttf/pkg-plist (props changed) head/korean/eterm/pkg-plist (props changed) head/korean/fcitx-hangul/pkg-plist (props changed) head/korean/gtkcomm/pkg-plist (props changed) head/korean/hanyangfonts/pkg-plist (props changed) head/korean/ibus-hangul/pkg-plist (props changed) head/korean/imhangul/pkg-plist (props changed) head/korean/kaistfonts/pkg-plist (props changed) head/korean/ko.TeX-fonts-base/pkg-plist (props changed) head/korean/ko.TeX-fonts-extra/pkg-plist (props changed) head/korean/ko.TeX/pkg-plist (props changed) head/korean/libhangul/pkg-plist (props changed) head/korean/man-doc/pkg-plist (props changed) head/korean/munhwafonts-cid/pkg-plist (props changed) head/korean/nabi/pkg-plist (props changed) head/korean/scim-hangul/pkg-plist (props changed) head/korean/scim-tables/pkg-plist (props changed) head/korean/xpdf/pkg-plist (props changed) head/lang/Gofer/pkg-plist (props changed) head/lang/STk/pkg-plist (props changed) head/lang/afnix/pkg-plist (props changed) head/lang/alisp/pkg-plist (props changed) head/lang/arena/pkg-plist (props changed) head/lang/awka/pkg-plist (props changed) head/lang/caml-light/pkg-plist (props changed) head/lang/ccl/pkg-plist (props changed) head/lang/cdent/pkg-plist (props changed) head/lang/cfortran/pkg-plist (props changed) head/lang/cint/pkg-plist (props changed) head/lang/clang-devel/pkg-plist (props changed) head/lang/clang31/pkg-plist (props changed) head/lang/clang32/pkg-plist (props changed) head/lang/clang33/pkg-plist (props changed) head/lang/clang34/pkg-plist (props changed) head/lang/clay/pkg-plist (props changed) head/lang/clisp/pkg-plist (props changed) head/lang/clojure-mode.el/pkg-plist (props changed) head/lang/cmucl-extra/pkg-plist (props changed) head/lang/cmucl/pkg-plist (props changed) head/lang/cocor/pkg-plist (props changed) head/lang/cython/pkg-plist (props changed) head/lang/dice/pkg-plist (props changed) head/lang/diveintopython/pkg-plist (props changed) head/lang/dmd/pkg-plist (props changed) head/lang/dmd2/pkg-plist (props changed) head/lang/ecl/pkg-plist (props changed) head/lang/elan/pkg-plist (props changed) head/lang/elk/pkg-plist (props changed) head/lang/embryo/pkg-plist (props changed) head/lang/erlang-runtime15/pkg-plist (props changed) head/lang/erlang-runtime16/pkg-plist (props changed) head/lang/erlang/pkg-plist (props changed) head/lang/execline/pkg-plist (props changed) head/lang/expect-devel/pkg-plist (props changed) head/lang/expect/pkg-plist (props changed) head/lang/ezm3/pkg-plist (props changed) head/lang/f2c/pkg-plist (props changed) head/lang/ferite/pkg-plist (props changed) head/lang/fpc-base/pkg-plist (props changed) head/lang/fpc-lua/pkg-plist (props changed) head/lang/fpc-rexx/pkg-plist (props changed) head/lang/fpc-tcl/pkg-plist (props changed) head/lang/fpc-utils/pkg-plist (props changed) head/lang/fpc/pkg-plist (props changed) head/lang/fsharp/pkg-plist (props changed) head/lang/gambit-c/pkg-plist (props changed) head/lang/gauche/pkg-plist (props changed) head/lang/gawk/pkg-plist (props changed) head/lang/gcc/pkg-plist (props changed) head/lang/gcc34/pkg-plist (props changed) head/lang/gcc44/pkg-plist (props changed) head/lang/gcc46/pkg-plist (props changed) head/lang/gcc47/pkg-plist (props changed) head/lang/gcc48/pkg-plist (props changed) head/lang/gcc49/pkg-plist (props changed) head/lang/gcl/pkg-plist (props changed) head/lang/gforth/pkg-plist (props changed) head/lang/gnat/pkg-plist (props changed) head/lang/gnatdroid-armv5/pkg-plist (props changed) head/lang/gnatdroid-armv7/pkg-plist (props changed) head/lang/gnatdroid-binutils/pkg-plist (props changed) head/lang/gnatdroid-sysroot/pkg-plist (props changed) head/lang/gnustep-base/pkg-plist (props changed) head/lang/gnustep-guile/pkg-plist (props changed) head/lang/gprolog/pkg-plist (props changed) head/lang/gscheme/pkg-plist (props changed) head/lang/hla/pkg-plist (props changed) head/lang/hope/pkg-plist (props changed) head/lang/hs-epic/pkg-plist (props changed) head/lang/huc/pkg-plist (props changed) head/lang/hugs/pkg-plist (props changed) head/lang/icc/pkg-plist (props changed) head/lang/ici/pkg-plist (props changed) head/lang/icon/pkg-plist (props changed) head/lang/ifc/pkg-plist (props changed) head/lang/ikarus/pkg-plist (props changed) head/lang/intel2gas/pkg-plist (props changed) head/lang/intercal/pkg-plist (props changed) head/lang/klone/pkg-plist (props changed) head/lang/kroc/pkg-plist (props changed) head/lang/kturtle/pkg-plist (props changed) head/lang/lafontaine/pkg-plist (props changed) head/lang/libjit/pkg-plist (props changed) head/lang/libobjc2/pkg-plist (props changed) head/lang/librep/pkg-plist (props changed) head/lang/linux-f10-tcl85/pkg-plist (props changed) head/lang/linux-j/pkg-plist (props changed) head/lang/logo/pkg-plist (props changed) head/lang/lua/pkg-plist (props changed) head/lang/luajit/pkg-plist (props changed) head/lang/lush/pkg-plist (props changed) head/lang/maude/pkg-plist (props changed) head/lang/mit-scheme/pkg-plist (props changed) head/lang/mixal/pkg-plist (props changed) head/lang/ml-pnet/pkg-plist (props changed) head/lang/mlton/pkg-plist (props changed) head/lang/mmix/pkg-plist (props changed) head/lang/mono-basic/pkg-plist (props changed) head/lang/mono/pkg-plist (props changed) head/lang/moscow_ml/pkg-plist (props changed) head/lang/mosh/pkg-plist (props changed) head/lang/mpd/pkg-plist (props changed) head/lang/mtasc/pkg-plist (props changed) head/lang/neko/pkg-plist (props changed) head/lang/nesasm/pkg-plist (props changed) head/lang/newlisp-devel/pkg-plist (props changed) head/lang/newlisp/pkg-plist (props changed) head/lang/nhc98/pkg-plist (props changed) head/lang/nickle/pkg-plist (props changed) head/lang/nml/pkg-plist (props changed) head/lang/nwcc/pkg-plist (props changed) head/lang/ocaml-camlidl/pkg-plist (props changed) head/lang/ocaml-examples/pkg-plist (props changed) head/lang/ocaml-mode.el/pkg-plist (props changed) head/lang/ofc/pkg-plist (props changed) head/lang/ohugs/pkg-plist (props changed) head/lang/onyx/pkg-plist (props changed) head/lang/oo2c/pkg-plist (props changed) head/lang/oorexx/pkg-plist (props changed) head/lang/opa/pkg-plist (props changed) head/lang/open-cobol/pkg-plist (props changed) head/lang/otcl/pkg-plist (props changed) head/lang/p2c/pkg-plist (props changed) head/lang/p5-Data-JavaScript/pkg-plist (props changed) head/lang/p5-Error/pkg-plist (props changed) head/lang/p5-Expect/pkg-plist (props changed) head/lang/p5-ExtUtils-F77/pkg-plist (props changed) head/lang/p5-Interpolation/pkg-plist (props changed) head/lang/p5-JSAN/pkg-plist (props changed) head/lang/p5-JavaScript-Squish/pkg-plist (props changed) head/lang/p5-JavaScript-Value-Escape/pkg-plist (props changed) head/lang/p5-List-MoreUtils/pkg-plist (props changed) head/lang/p5-Modern-Perl/pkg-plist (props changed) head/lang/p5-Parse-Perl/pkg-plist (props changed) head/lang/p5-Perl6-Subs/pkg-plist (props changed) head/lang/p5-Pugs-Compiler-Rule/pkg-plist (props changed) head/lang/p5-Quantum-Superpositions/pkg-plist (props changed) head/lang/p5-Switch/pkg-plist (props changed) head/lang/p5-Tcl/pkg-plist (props changed) head/lang/p5-Test-XPath/pkg-plist (props changed) head/lang/p5-Try-Tiny/pkg-plist (props changed) head/lang/p5-ePerl/pkg-plist (props changed) head/lang/p5-signatures/pkg-plist (props changed) head/lang/p5-v6/pkg-plist (props changed) head/lang/petite-chez/pkg-plist (props changed) head/lang/pfe/pkg-plist (props changed) head/lang/phantomjs/pkg-plist (props changed) head/lang/phc/pkg-plist (props changed) head/lang/php-mode.el/pkg-plist (props changed) head/lang/php5/pkg-plist (props changed) head/lang/php52/pkg-plist (props changed) head/lang/php55/pkg-plist (props changed) head/lang/pnetlib/pkg-plist (props changed) head/lang/ptoc/pkg-plist (props changed) head/lang/pure/pkg-plist (props changed) head/lang/py-mx-base/pkg-plist (props changed) head/lang/pypy-devel/pkg-plist (props changed) head/lang/pypy/pkg-plist (props changed) head/lang/pypy3-devel/pkg-plist (props changed) head/lang/python-mode.el/pkg-plist (props changed) head/lang/qscheme/pkg-plist (props changed) head/lang/racket-textual/pkg-plist (props changed) head/lang/racket/pkg-plist (props changed) head/lang/ratfor/pkg-plist (props changed) head/lang/rexx-regina/pkg-plist (props changed) head/lang/rexx-regutil/pkg-plist (props changed) head/lang/rexx-wrapper/pkg-plist (props changed) head/lang/rhino/pkg-plist (props changed) head/lang/rscheme/pkg-plist (props changed) head/lang/rubinius/pkg-plist (props changed) head/lang/ruby-man/pkg-plist (props changed) head/lang/rust/pkg-plist (props changed) head/lang/s9fes/pkg-plist (props changed) head/lang/sather-specification/pkg-plist (props changed) head/lang/sather-tutorial/pkg-plist (props changed) head/lang/scheme48/pkg-plist (props changed) head/lang/schemetoc/pkg-plist (props changed) head/lang/scsh/pkg-plist (props changed) head/lang/see-devel/pkg-plist (props changed) head/lang/see/pkg-plist (props changed) head/lang/siod/pkg-plist (props changed) head/lang/sisc/pkg-plist (props changed) head/lang/sketchy/pkg-plist (props changed) head/lang/slib-guile/pkg-plist (props changed) head/lang/slib/pkg-plist (props changed) head/lang/smalltalk/pkg-plist (props changed) head/lang/sml-mode.el/pkg-plist (props changed) head/lang/sml-nj-devel/pkg-plist (props changed) head/lang/sml-nj/pkg-plist (props changed) head/lang/snobol4/pkg-plist (props changed) head/lang/spl/pkg-plist (props changed) head/lang/squeak/pkg-plist (props changed) head/lang/squirrel/pkg-plist (props changed) head/lang/sr/pkg-plist (props changed) head/lang/stalin/pkg-plist (props changed) head/lang/starlogo/pkg-plist (props changed) head/lang/stklos/pkg-plist (props changed) head/lang/stldoc/pkg-plist (props changed) head/lang/swi-pl/pkg-plist (props changed) head/lang/sxm/pkg-plist (props changed) head/lang/t3x/pkg-plist (props changed) head/lang/tcltutor/pkg-plist (props changed) head/lang/tolua++/pkg-plist (props changed) head/lang/tolua/pkg-plist (props changed) head/lang/twelf/pkg-plist (props changed) head/lang/ucc/pkg-plist (props changed) head/lang/urweb/pkg-plist (props changed) head/lang/v8-devel/pkg-plist (props changed) head/lang/v8/pkg-plist (props changed) head/lang/whitespace/pkg-plist (props changed) head/lang/x10/pkg-plist (props changed) head/lang/xds-c/pkg-plist (props changed) head/lang/xds/pkg-plist (props changed) head/lang/xotcl/pkg-plist (props changed) head/lang/yorick/pkg-plist (props changed) head/lang/ypsilon/pkg-plist (props changed) head/mail/abook/pkg-plist (props changed) head/mail/addresses-goodies/pkg-plist (props changed) head/mail/addresses/pkg-plist (props changed) head/mail/alpine/pkg-plist (props changed) head/mail/althea/pkg-plist (props changed) head/mail/amavis-logwatch/pkg-plist (props changed) head/mail/annoyance-filter/pkg-plist (props changed) head/mail/anomy-sanitizer/pkg-plist (props changed) head/mail/antivirus-milter/pkg-plist (props changed) head/mail/anubis/pkg-plist (props changed) head/mail/archivemail/pkg-plist (props changed) head/mail/archiveopteryx/pkg-plist (props changed) head/mail/archivesmtp/pkg-plist (props changed) head/mail/ask/pkg-plist (props changed) head/mail/asmail/pkg-plist (props changed) head/mail/assp/pkg-plist (props changed) head/mail/atmail/pkg-plist (props changed) head/mail/automx/pkg-plist (props changed) head/mail/balsa/pkg-plist (props changed) head/mail/bayespam/pkg-plist (props changed) head/mail/biffer/pkg-plist (props changed) head/mail/bogofilter/pkg-plist (props changed) head/mail/bsfilter/pkg-plist (props changed) head/mail/bsmtp/pkg-plist (props changed) head/mail/c-sig/pkg-plist (props changed) head/mail/cclient/pkg-plist (props changed) head/mail/cone/pkg-plist (props changed) head/mail/contact-lookup-applet/pkg-plist (props changed) head/mail/courier-imap/pkg-plist (props changed) head/mail/courier-pythonfilter/pkg-plist (props changed) head/mail/courier/pkg-plist (props changed) head/mail/couriergraph/pkg-plist (props changed) head/mail/crm114/pkg-plist (props changed) head/mail/cyrus-imapd2/pkg-plist (props changed) head/mail/cyrus-imapd22/pkg-plist (props changed) head/mail/cyrus-imapd23/pkg-plist (props changed) head/mail/cyrus-imapd24/pkg-plist (props changed) head/mail/davmail/pkg-plist (props changed) head/mail/dbmail/pkg-plist (props changed) head/mail/dcc-dccd/pkg-plist (props changed) head/mail/dk-milter/pkg-plist (props changed) head/mail/dkfilter/pkg-plist (props changed) head/mail/dkimproxy/pkg-plist (props changed) head/mail/dma/pkg-plist (props changed) head/mail/dovecot-antispam/pkg-plist (props changed) head/mail/dovecot-managesieve/pkg-plist (props changed) head/mail/dovecot-sieve/pkg-plist (props changed) head/mail/dovecot/pkg-plist (props changed) head/mail/drac/pkg-plist (props changed) head/mail/dracmail/pkg-plist (props changed) head/mail/dsbl-testers/pkg-plist (props changed) head/mail/dspam-devel/pkg-plist (props changed) head/mail/dspam/pkg-plist (props changed) head/mail/ecartis/pkg-plist (props changed) head/mail/elm+ME/pkg-plist (props changed) head/mail/elm/pkg-plist (props changed) head/mail/elmo-devel/pkg-plist (props changed) head/mail/elmo/pkg-plist (props changed) head/mail/emh/pkg-plist (props changed) head/mail/emil/pkg-plist (props changed) head/mail/eps/pkg-plist (props changed) head/mail/epstools/pkg-plist (props changed) head/mail/evolution-exchange/pkg-plist (props changed) head/mail/evolution-mapi/pkg-plist (props changed) head/mail/evolution/pkg-plist (props changed) head/mail/exact/pkg-plist (props changed) head/mail/exilog/pkg-plist (props changed) head/mail/exim-doc-html/pkg-plist_info (props changed) head/mail/exim-monitor/pkg-plist (props changed) head/mail/exim/pkg-plist (props changed) head/mail/exmh2/pkg-plist (props changed) head/mail/extmail/pkg-plist (props changed) head/mail/extman/pkg-plist (props changed) head/mail/ez-pine-gpg/pkg-plist (props changed) head/mail/ezmlm-idx/pkg-plist (props changed) head/mail/ezmlm-web/pkg-plist (props changed) head/mail/ezmlm/pkg-plist (props changed) head/mail/faces/pkg-plist (props changed) head/mail/firemime/pkg-plist (props changed) head/mail/firepay/pkg-plist (props changed) head/mail/ftrack/pkg-plist (props changed) head/mail/gensig/pkg-plist (props changed) head/mail/getmail/pkg-plist (props changed) head/mail/gkrellmmailwatch2/pkg-plist (props changed) head/mail/gld/pkg-plist (props changed) head/mail/gmail-notify/pkg-plist (props changed) head/mail/gmime2-sharp/pkg-plist (props changed) head/mail/gmime2/pkg-plist (props changed) head/mail/gmime24-sharp/pkg-plist (props changed) head/mail/gmime24/pkg-plist (props changed) head/mail/gnarwl/pkg-plist (props changed) head/mail/gnome-gmail-notifier/pkg-plist (props changed) head/mail/gnubiff/pkg-plist (props changed) head/mail/gnumail/pkg-plist (props changed) head/mail/gotmail/pkg-plist (props changed) head/mail/grepmail/pkg-plist (props changed) head/mail/greyfix/pkg-plist (props changed) head/mail/gubby/pkg-plist (props changed) head/mail/hbiff/pkg-plist (props changed) head/mail/horde3-dimp/pkg-plist (props changed) head/mail/horde3-forwards/pkg-plist (props changed) head/mail/horde3-imp/pkg-plist (props changed) head/mail/horde3-ingo/pkg-plist (props changed) head/mail/horde3-mimp/pkg-plist (props changed) head/mail/horde3-turba/pkg-plist (props changed) head/mail/horde3-vacation/pkg-plist (props changed) head/mail/ilohamail-devel/pkg-plist (props changed) head/mail/ilohamail/pkg-plist (props changed) head/mail/im/pkg-plist (props changed) head/mail/imap-uw/pkg-plist (props changed) head/mail/imaptools/pkg-plist (props changed) head/mail/imaputils/pkg-plist (props changed) head/mail/isoqlog/pkg-plist (props changed) head/mail/james/pkg-plist (props changed) head/mail/jamlib/pkg-plist (props changed) head/mail/junkfilter/pkg-plist (props changed) head/mail/kbiff/pkg-plist (props changed) head/mail/kshowmail/pkg-plist (props changed) head/mail/lbdb/pkg-plist (props changed) head/mail/lens/pkg-plist (props changed) head/mail/libcmime/pkg-plist (props changed) head/mail/libdkim/pkg-plist (props changed) head/mail/libdomainkeys/pkg-plist (props changed) head/mail/libesmtp/pkg-plist (props changed) head/mail/libetpan/pkg-plist (props changed) head/mail/libmapi/pkg-plist (props changed) head/mail/libsieve/pkg-plist (props changed) head/mail/libspamtest/pkg-plist (props changed) head/mail/libspf/pkg-plist (props changed) head/mail/libsrs2/pkg-plist (props changed) head/mail/libsrs_alt/pkg-plist (props changed) head/mail/libvmime/pkg-plist (props changed) head/mail/lurker/pkg-plist (props changed) head/mail/mahogany/pkg-plist (props changed) head/mail/mail-notification/pkg-plist (props changed) head/mail/mail2procmailrc/pkg-plist (props changed) head/mail/mailagent/pkg-plist (props changed) head/mail/mailcrypt/pkg-plist (props changed) head/mail/maildirsync/pkg-plist (props changed) head/mail/mailfmt/pkg-plist (props changed) head/mail/mailfront/pkg-plist (props changed) head/mail/mailgraph/pkg-plist (props changed) head/mail/mailmgr/pkg-plist (props changed) head/mail/mailscanner/pkg-plist (props changed) head/mail/mailsync/pkg-plist (props changed) head/mail/mailtray/pkg-plist (props changed) head/mail/mailx/pkg-plist (props changed) head/mail/majordomo/pkg-plist (props changed) head/mail/masqmail/pkg-plist (props changed) head/mail/mboxcheck-applet/pkg-plist (props changed) head/mail/mboxgrep/pkg-plist (props changed) head/mail/mbx2mbox/pkg-plist (props changed) head/mail/mess822/pkg-plist (props changed) head/mail/meta1/pkg-plist (props changed) head/mail/metamail/pkg-plist (props changed) head/mail/mew/pkg-plist (props changed) head/mail/milter-callback/pkg-plist (props changed) head/mail/milter-greylist-devel/pkg-plist (props changed) head/mail/milter-greylist/pkg-plist (props changed) head/mail/milter-regex/pkg-plist (props changed) head/mail/mime-construct/pkg-plist (props changed) head/mail/mimedefang/pkg-plist (props changed) head/mail/minimalist/pkg-plist (props changed) head/mail/mixmaster/pkg-plist (props changed) head/mail/ml/pkg-plist (props changed) head/mail/mlmmj/pkg-plist (props changed) head/mail/mpop/pkg-plist (props changed) head/mail/msgconvert/pkg-plist (props changed) head/mail/msmtp/pkg-plist (props changed) head/mail/mu/pkg-plist (props changed) head/mail/mulberry/pkg-plist (props changed) head/mail/mutt14/pkg-plist (props changed) head/mail/mutt14/pkg-plist.htmlfiles (props changed) head/mail/muttzilla/pkg-plist (props changed) head/mail/nmh/pkg-plist (props changed) head/mail/noattach/pkg-plist (props changed) head/mail/nohtml/pkg-plist (props changed) head/mail/notmuch/pkg-plist (props changed) head/mail/nullmailer/pkg-plist (props changed) head/mail/offlineimap/pkg-plist (props changed) head/mail/opensmtpd/pkg-plist (props changed) head/mail/osbf-lua/pkg-plist (props changed) head/mail/ovs/pkg-plist (props changed) head/mail/p5-Dancer-Plugin-Email/pkg-plist (props changed) head/mail/p5-Email-Address/pkg-plist (props changed) head/mail/p5-Email-Filter/pkg-plist (props changed) head/mail/p5-Email-LocalDelivery/pkg-plist (props changed) head/mail/p5-Email-MIME-CreateHTML/pkg-plist (props changed) head/mail/p5-Email-MIME/pkg-plist (props changed) head/mail/p5-Email-MessageID/pkg-plist (props changed) head/mail/p5-Email-Reply/pkg-plist (props changed) head/mail/p5-Email-Simple/pkg-plist (props changed) head/mail/p5-IMAP-Admin/pkg-plist (props changed) head/mail/p5-IMAP-Client/pkg-plist (props changed) head/mail/p5-IMAP-Sieve/pkg-plist (props changed) head/mail/p5-Log-Procmail/pkg-plist (props changed) head/mail/p5-MIME-Explode/pkg-plist (props changed) head/mail/p5-MIME-Lite-TT-HTML/pkg-plist (props changed) head/mail/p5-MIME-Tools/pkg-plist (props changed) head/mail/p5-MIME-Types/pkg-plist (props changed) head/mail/p5-Mail-Address-MobileJp/pkg-plist (props changed) head/mail/p5-Mail-Audit-Attach/pkg-plist (props changed) head/mail/p5-Mail-Audit/pkg-plist (props changed) head/mail/p5-Mail-Box-Parser-C/pkg-plist (props changed) head/mail/p5-Mail-Box/pkg-plist (props changed) head/mail/p5-Mail-Bulkmail/pkg-plist (props changed) head/mail/p5-Mail-CheckUser/pkg-plist (props changed) head/mail/p5-Mail-ClamAV/pkg-plist (props changed) head/mail/p5-Mail-DKIM/pkg-plist (props changed) head/mail/p5-Mail-DomainKeys/pkg-plist (props changed) head/mail/p5-Mail-FilterXML/pkg-plist (props changed) head/mail/p5-Mail-Freshmeat/pkg-plist (props changed) head/mail/p5-Mail-GnuPG/pkg-plist (props changed) head/mail/p5-Mail-Graph/pkg-plist (props changed) head/mail/p5-Mail-IMAPTalk/pkg-plist (props changed) head/mail/p5-Mail-LMLM/pkg-plist (props changed) head/mail/p5-Mail-ListDetector/pkg-plist (props changed) head/mail/p5-Mail-Mbox-MessageParser/pkg-plist (props changed) head/mail/p5-Mail-Procmail/pkg-plist (props changed) head/mail/p5-Mail-Procmailrc/pkg-plist (props changed) head/mail/p5-Mail-RBL/pkg-plist (props changed) head/mail/p5-Mail-RFC822-Address/pkg-plist (props changed) head/mail/p5-Mail-SRS/pkg-plist (props changed) head/mail/p5-Mail-Sendmail/pkg-plist (props changed) head/mail/p5-Mail-Webmail-Gmail/pkg-plist (props changed) head/mail/p5-Net-IMAP-Client/pkg-plist (props changed) head/mail/p5-Net-ManageSieve/pkg-plist (props changed) head/mail/p5-Net-SMTP-SSL/pkg-plist (props changed) head/mail/p5-Net-SMTP-Server/pkg-plist (props changed) head/mail/p5-Net-SMTP-TLS-ButMaintained/pkg-plist (props changed) head/mail/p5-Net-SMTP_auth/pkg-plist (props changed) head/mail/p5-POE-Component-Client-POP3/pkg-plist (props changed) head/mail/p5-POE-Component-Client-SMTP/pkg-plist (props changed) head/mail/p5-POE-Component-SMTP/pkg-plist (props changed) head/mail/p5-POE-Filter-Transparent-SMTP/pkg-plist (props changed) head/mail/p5-Qmail-Envelope/pkg-plist (props changed) head/mail/p5-Sendmail-AccessDB/pkg-plist (props changed) head/mail/p5-Sendmail-Milter/pkg-plist (props changed) head/mail/p5-qpsmtpd/pkg-plist (props changed) head/mail/pantomime/pkg-plist (props changed) head/mail/pflogstats/pkg-plist (props changed) head/mail/pfqueue/pkg-plist (props changed) head/mail/phplist/pkg-plist (props changed) head/mail/phpmailer2/pkg-plist (props changed) head/mail/policyd2/pkg-plist (props changed) head/mail/pop-before-smtp/pkg-plist (props changed) head/mail/pop3gwd/pkg-plist (props changed) head/mail/pop3lite/pkg-plist (props changed) head/mail/pop3proxy/pkg-plist (props changed) head/mail/popa3d/pkg-plist (props changed) head/mail/popd/pkg-plist (props changed) head/mail/poppy/pkg-plist (props changed) head/mail/popular/pkg-plist (props changed) head/mail/postfix-logwatch/pkg-plist (props changed) head/mail/postfix-policyd-spf-python/pkg-plist (props changed) head/mail/postfix210/pkg-plist (props changed) head/mail/postfix27/pkg-plist (props changed) head/mail/postfix28/pkg-plist (props changed) head/mail/postfix29/pkg-plist (props changed) head/mail/postfixadmin/pkg-plist (props changed) head/mail/postgrey/pkg-plist (props changed) head/mail/postpals/pkg-plist (props changed) head/mail/prayer/pkg-plist (props changed) head/mail/premail/pkg-plist (props changed) head/mail/prom-wl/pkg-plist (props changed) head/mail/pronto/pkg-plist (props changed) head/mail/proxsmtp/pkg-plist (props changed) head/mail/py-Products.MailHost/pkg-plist (props changed) head/mail/py-Products.SecureMailHost/pkg-plist (props changed) head/mail/py-apolicy/pkg-plist (props changed) head/mail/py-authres/pkg-plist (props changed) head/mail/py-milter/pkg-plist (props changed) head/mail/py-ppolicy/pkg-plist (props changed) head/mail/py-spambayes/pkg-plist (props changed) head/mail/py-spf/pkg-plist (props changed) head/mail/py-zope.sendmail/pkg-plist (props changed) head/mail/pymsgauth/pkg-plist (props changed) head/mail/pysieved/pkg-plist (props changed) head/mail/qconfirm/pkg-plist (props changed) head/mail/qmail-autoresponder/pkg-plist (props changed) head/mail/qmail-conf/pkg-plist (props changed) head/mail/qmail-contrib/pkg-plist (props changed) head/mail/qmail-notify/pkg-plist (props changed) head/mail/qmail-qfilter/pkg-plist (props changed) head/mail/qmail-scanner/pkg-plist (props changed) head/mail/qmail-scanner1/pkg-plist (props changed) head/mail/qmail/pkg-plist (props changed) head/mail/qmailadmin/pkg-plist (props changed) head/mail/qmailanalog/pkg-plist (props changed) head/mail/qmailmrtg7/pkg-plist (props changed) head/mail/qmhandle/pkg-plist (props changed) head/mail/qmqtool/pkg-plist (props changed) head/mail/qpopper/pkg-plist (props changed) head/mail/qscan/pkg-plist (props changed) head/mail/qsheff/pkg-plist (props changed) head/mail/qtools/pkg-plist (props changed) head/mail/quickml/pkg-plist (props changed) head/mail/rabl_client/pkg-plist (props changed) head/mail/rabl_server/pkg-plist (props changed) head/mail/raysfilter/pkg-plist (props changed) head/mail/razor-agents/pkg-plist (props changed) head/mail/rblcheck/pkg-plist (props changed) head/mail/relay-ctrl/pkg-plist (props changed) head/mail/reply-o-matic/pkg-plist (props changed) head/mail/rftp/pkg-plist (props changed) head/mail/roundcube-air/pkg-plist (props changed) head/mail/roundcube-contextmenu/pkg-plist (props changed) head/mail/roundcube-groupvice/pkg-plist (props changed) head/mail/roundcube-login_info/pkg-plist (props changed) head/mail/roundcube-mobilecube/pkg-plist (props changed) head/mail/roundcube-mvision2/pkg-plist (props changed) head/mail/roundcube-thunderbird_labels/pkg-plist (props changed) head/mail/roundcube-umich/pkg-plist (props changed) head/mail/roundcube-veximaccountadmin/pkg-plist (props changed) head/mail/rspamd/pkg-plist (props changed) head/mail/ruby-rfilter/pkg-plist (props changed) head/mail/ruby-rmail/pkg-plist (props changed) head/mail/sastatd/pkg-plist (props changed) head/mail/scam-backscatter/pkg-plist (props changed) head/mail/sccmilter/pkg-plist (props changed) head/mail/sendmail/pkg-plist (props changed) head/mail/sentinel/pkg-plist (props changed) head/mail/serialmail/pkg-plist (props changed) head/mail/sgwi/pkg-plist (props changed) head/mail/sigit/pkg-plist (props changed) head/mail/simscan/pkg-plist (props changed) head/mail/slapd-cyrus/pkg-plist (props changed) head/mail/sma/pkg-plist (props changed) head/mail/smail/pkg-plist (props changed) head/mail/smtprc/pkg-plist (props changed) head/mail/softfail/pkg-plist (props changed) head/mail/sortmail/pkg-plist (props changed) head/mail/spamass-milter/pkg-plist (props changed) head/mail/spamdb-curses/pkg-plist (props changed) head/mail/spamdyke/pkg-plist (props changed) head/mail/spamguard/pkg-plist (props changed) head/mail/spmfilter-clamav/pkg-plist (props changed) head/mail/spmfilter-spamassassin/pkg-plist (props changed) head/mail/sqlgrey/pkg-plist (props changed) head/mail/squirrelmail-abook_import_export-plugin/pkg-plist (props changed) head/mail/squirrelmail-askuserinfo-plugin/pkg-plist (props changed) head/mail/squirrelmail-avelsieve-plugin/pkg-plist (props changed) head/mail/squirrelmail-calendar_file_backend-plugin/pkg-plist (props changed) head/mail/squirrelmail-change_ldappass-plugin/pkg-plist (props changed) head/mail/squirrelmail-change_sqlpass-plugin/pkg-plist (props changed) head/mail/squirrelmail-check_quota-plugin/pkg-plist (props changed) head/mail/squirrelmail-compatibility-plugin/pkg-plist (props changed) head/mail/squirrelmail-email_footer-plugin/pkg-plist (props changed) head/mail/squirrelmail-login_auth-plugin/pkg-plist (props changed) head/mail/squirrelmail-login_notes-plugin/pkg-plist (props changed) head/mail/squirrelmail-mark_read-plugin/pkg-plist (props changed) head/mail/squirrelmail-multilogin-plugin/pkg-plist (props changed) head/mail/squirrelmail-notes-plugin/pkg-plist (props changed) head/mail/squirrelmail-notify-plugin/pkg-plist (props changed) head/mail/squirrelmail-password_forget-plugin/pkg-plist (props changed) head/mail/squirrelmail-pupdate-plugin/pkg-plist (props changed) head/mail/squirrelmail-qmailadmin_login-plugin/pkg-plist (props changed) head/mail/squirrelmail-quota_usage-plugin/pkg-plist (props changed) head/mail/squirrelmail-sasql-plugin/pkg-plist (props changed) head/mail/squirrelmail-secure_login-plugin/pkg-plist (props changed) head/mail/squirrelmail-shared_calendars-plugin/pkg-plist (props changed) head/mail/squirrelmail-spam-buttons-plugin/pkg-plist (props changed) head/mail/squirrelmail-squirrel_logger-plugin/pkg-plist (props changed) head/mail/squirrelmail-timeout_user-plugin/pkg-plist (props changed) head/mail/squirrelmail-tmda-plugin/pkg-plist (props changed) head/mail/squirrelmail-translations/pkg-plist (props changed) head/mail/squirrelmail-unsafe_image_rules-plugin/pkg-plist (props changed) head/mail/squirrelmail-user_special_mailboxes-plugin/pkg-plist (props changed) head/mail/squirrelmail-vlogin-plugin/pkg-plist (props changed) head/mail/squirrelmail-websearch-plugin/pkg-plist (props changed) head/mail/squirrelmail-wetteronline-plugin/pkg-plist (props changed) head/mail/squirrelmail/pkg-plist (props changed) head/mail/sqwebmail/pkg-plist (props changed) head/mail/ssmtp/pkg-plist (props changed) head/mail/svnmailer/pkg-plist (props changed) head/mail/sylpheed/pkg-plist (props changed) head/mail/sympa/pkg-plist (props changed) head/mail/synonym/pkg-plist (props changed) head/mail/t-prot/pkg-plist (props changed) head/mail/teapop/pkg-plist (props changed) head/mail/thunderbird-dictionaries/pkg-plist (props changed) head/mail/tkrat2/pkg-plist (props changed) head/mail/tlb/pkg-plist (props changed) head/mail/tmda/pkg-plist (props changed) head/mail/tpop3d/pkg-plist (props changed) head/mail/trojita/pkg-plist (props changed) head/mail/tumgreyspf/pkg-plist (props changed) head/mail/uebimiau/pkg-plist (props changed) head/mail/up-imapproxy/pkg-plist (props changed) head/mail/vm-pop3d/pkg-plist (props changed) head/mail/vm/pkg-plist (props changed) head/mail/vmailmgr/pkg-plist (props changed) head/mail/vpopmail/pkg-plist (props changed) head/mail/vqadmin/pkg-plist (props changed) head/mail/vqregister/pkg-plist (props changed) head/mail/wanderlust-devel/pkg-plist (props changed) head/mail/wanderlust/pkg-plist.emacs20 (props changed) head/mail/wanderlust/pkg-plist.emacs21 (props changed) head/mail/wanderlust/pkg-plist.emacs22 (props changed) head/mail/wanderlust/pkg-plist.emacs23 (props changed) head/mail/wanderlust/pkg-plist.emacs24 (props changed) head/mail/wanderlust/pkg-plist.xemacs21-mule (props changed) head/mail/websieve/pkg-plist (props changed) head/mail/whoson/pkg-plist (props changed) head/mail/xfaces/pkg-plist (props changed) head/mail/xfmail/pkg-plist (props changed) head/mail/xlbiff/pkg-plist (props changed) head/mail/xmail/pkg-plist (props changed) head/mail/xmailbox/pkg-plist (props changed) head/mail/zmailer/pkg-plist (props changed) head/math/GiNaC/pkg-plist (props changed) head/math/abakus/pkg-plist (props changed) head/math/algotutor/pkg-plist (props changed) head/math/alt-ergo/pkg-plist (props changed) head/math/ann/pkg-plist (props changed) head/math/arpack++/pkg-plist (props changed) head/math/arpack/pkg-plist (props changed) head/math/asir2000/pkg-plist (props changed) head/math/asymptote/pkg-plist (props changed) head/math/atlas-devel/pkg-plist (props changed) head/math/atlas/pkg-plist (props changed) head/math/bamg/pkg-plist (props changed) head/math/bargraph/pkg-plist (props changed) head/math/biggles/pkg-plist (props changed) head/math/bihar/pkg-plist (props changed) head/math/blacs/pkg-plist (props changed) head/math/blitz++/pkg-plist (props changed) head/math/blocksolve95/pkg-plist (props changed) head/math/bsdnt/pkg-plist (props changed) head/math/calc/pkg-plist (props changed) head/math/calctool/pkg-plist (props changed) head/math/carve/pkg-plist (props changed) head/math/ccmath/pkg-plist (props changed) head/math/cgal/pkg-plist (props changed) head/math/chaco/pkg-plist (props changed) head/math/cln/pkg-plist (props changed) head/math/clp/pkg-plist (props changed) head/math/coinmp/pkg-plist (props changed) head/math/concorde/pkg-plist (props changed) head/math/convertall/pkg-plist (props changed) head/math/coq/pkg-plist (props changed) head/math/crlibm/pkg-plist (props changed) head/math/cvc3/pkg-plist (props changed) head/math/dcdflib/pkg-plist (props changed) head/math/diehard/pkg-plist (props changed) head/math/dieharder/pkg-plist (props changed) head/math/djbfft/pkg-plist (props changed) head/math/drgeo/pkg-plist (props changed) head/math/dynare/pkg-plist (props changed) head/math/e/pkg-plist (props changed) head/math/edenmath/pkg-plist (props changed) head/math/eigen2/pkg-plist (props changed) head/math/eigen3/pkg-plist (props changed) head/math/elmer-umfpack/pkg-plist (props changed) head/math/emacs-calc/pkg-plist (props changed) head/math/eukleides/pkg-plist (props changed) head/math/facile/pkg-plist (props changed) head/math/fann/pkg-plist (props changed) head/math/fflas-ffpack/pkg-plist (props changed) head/math/fftw/pkg-plist (props changed) head/math/fftw3/pkg-plist (props changed) head/math/fpc-fftw/pkg-plist (props changed) head/math/fpc-gmp/pkg-plist (props changed) head/math/fpc-numlib/pkg-plist (props changed) head/math/freefem/pkg-plist (props changed) head/math/fricas/pkg-plist (props changed) head/math/fxt/pkg-plist (props changed) head/math/gcalctool/pkg-plist (props changed) head/math/gdcalc/pkg-plist (props changed) head/math/geonext/pkg-plist (props changed) head/math/ggobi/pkg-plist (props changed) head/math/giacxcas/pkg-plist (props changed) head/math/givaro/pkg-plist (props changed) head/math/gkmap/pkg-plist (props changed) head/math/glgraph/pkg-plist (props changed) head/math/glm/pkg-plist (props changed) head/math/gmm++/pkg-plist (props changed) head/math/gmp/pkg-plist (props changed) head/math/grace/pkg-plist (props changed) head/math/gracetmpl/pkg-plist (props changed) head/math/igraph/pkg-plist (props changed) head/math/isabelle/pkg-plist (props changed) head/math/itl/pkg-plist (props changed) head/math/jacal/pkg-plist (props changed) head/math/jags/pkg-plist (props changed) head/math/jama/pkg-plist (props changed) head/math/javanns/pkg-plist (props changed) head/math/javaview/pkg-plist (props changed) head/math/jeuclid/pkg-plist (props changed) head/math/jlatexmath/pkg-plist (props changed) head/math/jsmath-fonts-sprite/pkg-plist (props changed) head/math/jsmath-fonts/pkg-plist (props changed) head/math/jsmath/pkg-plist (props changed) head/math/jts/pkg-plist (props changed) head/math/kash3/pkg-plist (props changed) head/math/kbruch/pkg-plist (props changed) head/math/kcalc/pkg-plist (props changed) head/math/kig/pkg-plist (props changed) head/math/kmplot/pkg-plist (props changed) head/math/lapack++/pkg-plist (props changed) head/math/lapack/pkg-plist (props changed) head/math/lapack95/pkg-plist (props changed) head/math/laspack/pkg-plist (props changed) head/math/libRmath/pkg-plist (props changed) head/math/libflame/pkg-plist (props changed) head/math/libneural/pkg-plist (props changed) head/math/libqalculate/pkg-plist (props changed) head/math/libtsnnls/pkg-plist (props changed) head/math/linpack/pkg-plist (props changed) head/math/lp_solve/pkg-plist (props changed) head/math/ltl/pkg-plist (props changed) head/math/lybniz/pkg-plist (props changed) head/math/mate-calc/pkg-plist (props changed) head/math/matrix/pkg-plist (props changed) head/math/metis-edf/pkg-plist (props changed) head/math/metis/pkg-plist (props changed) head/math/metis4/pkg-plist (props changed) head/math/mingw32-libgmp/pkg-plist (props changed) head/math/mpfr/pkg-plist (props changed) head/math/mprime/pkg-plist (props changed) head/math/mtl/pkg-plist (props changed) head/math/mumps/pkg-plist (props changed) head/math/muparser/pkg-plist (props changed) head/math/naturalmath/pkg-plist (props changed) head/math/nauty/pkg-plist (props changed) head/math/ndiff/pkg-plist (props changed) head/math/newmat/pkg-plist (props changed) head/math/ngraph/pkg-plist (props changed) head/math/ntl/pkg-plist (props changed) head/math/numdiff/pkg-plist (props changed) head/math/ocaml-ocamlgraph/pkg-plist (props changed) head/math/ocamlgsl/pkg-plist (props changed) head/math/octave-forge-actuarial/pkg-plist (props changed) head/math/octave-forge-ad/pkg-plist (props changed) head/math/octave-forge-audio/pkg-plist (props changed) head/math/octave-forge-base/pkg-plist (props changed) head/math/octave-forge-bim/pkg-plist (props changed) head/math/octave-forge-bioinfo/pkg-plist (props changed) head/math/octave-forge-cgi/pkg-plist (props changed) head/math/octave-forge-civil-engineering/pkg-plist (props changed) head/math/octave-forge-communications/pkg-plist (props changed) head/math/octave-forge-control/pkg-plist (props changed) head/math/octave-forge-data-smoothing/pkg-plist (props changed) head/math/octave-forge-database/pkg-plist (props changed) head/math/octave-forge-dataframe/pkg-plist (props changed) head/math/octave-forge-dicom/pkg-plist (props changed) head/math/octave-forge-econometrics/pkg-plist (props changed) head/math/octave-forge-engine/pkg-plist (props changed) head/math/octave-forge-fenv/pkg-plist (props changed) head/math/octave-forge-financial/pkg-plist (props changed) head/math/octave-forge-fits/pkg-plist (props changed) head/math/octave-forge-fl-core/pkg-plist (props changed) head/math/octave-forge-fpl/pkg-plist (props changed) head/math/octave-forge-fuzzy-logic-toolkit/pkg-plist (props changed) head/math/octave-forge-ga/pkg-plist (props changed) head/math/octave-forge-general/pkg-plist (props changed) head/math/octave-forge-generate_html/pkg-plist (props changed) head/math/octave-forge-geometry/pkg-plist (props changed) head/math/octave-forge-gnuplot/pkg-plist (props changed) head/math/octave-forge-gsl/pkg-plist (props changed) head/math/octave-forge-ident/pkg-plist (props changed) head/math/octave-forge-image/pkg-plist (props changed) head/math/octave-forge-informationtheory/pkg-plist (props changed) head/math/octave-forge-integration/pkg-plist (props changed) head/math/octave-forge-io/pkg-plist (props changed) head/math/octave-forge-irsa/pkg-plist (props changed) head/math/octave-forge-linear-algebra/pkg-plist (props changed) head/math/octave-forge-lssa/pkg-plist (props changed) head/math/octave-forge-ltfat/pkg-plist (props changed) head/math/octave-forge-mapping/pkg-plist (props changed) head/math/octave-forge-mechanics/pkg-plist (props changed) head/math/octave-forge-miscellaneous/pkg-plist (props changed) head/math/octave-forge-missing-functions/pkg-plist (props changed) head/math/octave-forge-msh/pkg-plist (props changed) head/math/octave-forge-multicore/pkg-plist (props changed) head/math/octave-forge-mvn/pkg-plist (props changed) head/math/octave-forge-nan/pkg-plist (props changed) head/math/octave-forge-ncarray/pkg-plist (props changed) head/math/octave-forge-netcdf/pkg-plist (props changed) head/math/octave-forge-nlwing2/pkg-plist (props changed) head/math/octave-forge-nnet/pkg-plist (props changed) head/math/octave-forge-nurbs/pkg-plist (props changed) head/math/octave-forge-ocs/pkg-plist (props changed) head/math/octave-forge-oct2mat/pkg-plist (props changed) head/math/octave-forge-octcdf/pkg-plist (props changed) head/math/octave-forge-octclip/pkg-plist (props changed) head/math/octave-forge-octgpr/pkg-plist (props changed) head/math/octave-forge-octproj/pkg-plist (props changed) head/math/octave-forge-odebvp/pkg-plist (props changed) head/math/octave-forge-odepkg/pkg-plist (props changed) head/math/octave-forge-optim/pkg-plist (props changed) head/math/octave-forge-optiminterp/pkg-plist (props changed) head/math/octave-forge-outliers/pkg-plist (props changed) head/math/octave-forge-parallel/pkg-plist (props changed) head/math/octave-forge-pdb/pkg-plist (props changed) head/math/octave-forge-plot/pkg-plist (props changed) head/math/octave-forge-pt_br/pkg-plist (props changed) head/math/octave-forge-quaternion/pkg-plist (props changed) head/math/octave-forge-queueing/pkg-plist (props changed) head/math/octave-forge-secs1d/pkg-plist (props changed) head/math/octave-forge-secs2d/pkg-plist (props changed) head/math/octave-forge-secs3d/pkg-plist (props changed) head/math/octave-forge-signal/pkg-plist (props changed) head/math/octave-forge-simp/pkg-plist (props changed) head/math/octave-forge-sockets/pkg-plist (props changed) head/math/octave-forge-specfun/pkg-plist (props changed) head/math/octave-forge-special-matrix/pkg-plist (props changed) head/math/octave-forge-spline-gcvspl/pkg-plist (props changed) head/math/octave-forge-splines/pkg-plist (props changed) head/math/octave-forge-statistics/pkg-plist (props changed) head/math/octave-forge-strings/pkg-plist (props changed) head/math/octave-forge-struct/pkg-plist (props changed) head/math/octave-forge-symband/pkg-plist (props changed) head/math/octave-forge-symbolic/pkg-plist (props changed) head/math/octave-forge-tcl-octave/pkg-plist (props changed) head/math/octave-forge-tsa/pkg-plist (props changed) head/math/octave-forge-video/pkg-plist (props changed) head/math/octave-forge-xraylib/pkg-plist (props changed) head/math/octave-forge-zenity/pkg-plist (props changed) head/math/octave-forge/pkg-plist (props changed) head/math/octave/pkg-plist (props changed) head/math/oleo/pkg-plist (props changed) head/math/open-axiom/pkg-plist (props changed) head/math/openfst/pkg-plist (props changed) head/math/p5-AI-DecisionTree/pkg-plist (props changed) head/math/p5-AI-Genetic/pkg-plist (props changed) head/math/p5-AI-NeuralNet-BackProp/pkg-plist (props changed) head/math/p5-AI-Perceptron/pkg-plist (props changed) head/math/p5-Algorithm-Combinatorics/pkg-plist (props changed) head/math/p5-Algorithm-CurveFit/pkg-plist (props changed) head/math/p5-Algorithm-Munkres/pkg-plist (props changed) head/math/p5-Bit-Vector-Minimal/pkg-plist (props changed) head/math/p5-Bit-Vector/pkg-plist (props changed) head/math/p5-CAD-Calc/pkg-plist (props changed) head/math/p5-Chart-Math-Axis/pkg-plist (props changed) head/math/p5-Data-Float/pkg-plist (props changed) head/math/p5-Date-Handler/pkg-plist (props changed) head/math/p5-GIS-Distance-Fast/pkg-plist (props changed) head/math/p5-GIS-Distance/pkg-plist (props changed) head/math/p5-Geo-Coordinates-UTM/pkg-plist (props changed) head/math/p5-Geo-Distance-XS/pkg-plist (props changed) head/math/p5-Geo-Distance/pkg-plist (props changed) head/math/p5-Graph/pkg-plist (props changed) head/math/p5-Math-Algebra-Symbols/pkg-plist (props changed) head/math/p5-Math-Base36/pkg-plist (props changed) head/math/p5-Math-Base85/pkg-plist (props changed) head/math/p5-Math-BaseCnv/pkg-plist (props changed) head/math/p5-Math-Bezier-Convert/pkg-plist (props changed) head/math/p5-Math-Bezier/pkg-plist (props changed) head/math/p5-Math-BigInt-FastCalc/pkg-plist (props changed) head/math/p5-Math-BigInt-GMP/pkg-plist (props changed) head/math/p5-Math-BigInt-Pari/pkg-plist (props changed) head/math/p5-Math-BigInt/pkg-plist (props changed) head/math/p5-Math-BigRat/pkg-plist (props changed) head/math/p5-Math-CDF/pkg-plist (props changed) head/math/p5-Math-Calc-Units/pkg-plist (props changed) head/math/p5-Math-Combinatorics/pkg-plist (props changed) head/math/p5-Math-Complex/pkg-plist (props changed) head/math/p5-Math-ConvexHull/pkg-plist (props changed) head/math/p5-Math-Currency/pkg-plist (props changed) head/math/p5-Math-Derivative/pkg-plist (props changed) head/math/p5-Math-Evol/pkg-plist (props changed) head/math/p5-Math-Expr/pkg-plist (props changed) head/math/p5-Math-FFT/pkg-plist (props changed) head/math/p5-Math-FixedPrecision/pkg-plist (props changed) head/math/p5-Math-GMP/pkg-plist (props changed) head/math/p5-Math-GSL/pkg-plist (props changed) head/math/p5-Math-Geometry-Planar-GPC-Polygon/pkg-plist (props changed) head/math/p5-Math-Geometry-Planar-GPC/pkg-plist (props changed) head/math/p5-Math-Geometry-Planar-Offset/pkg-plist (props changed) head/math/p5-Math-Geometry-Planar/pkg-plist (props changed) head/math/p5-Math-Geometry-Voronoi/pkg-plist (props changed) head/math/p5-Math-Geometry/pkg-plist (props changed) head/math/p5-Math-Gradient/pkg-plist (props changed) head/math/p5-Math-Interpolate/pkg-plist (props changed) head/math/p5-Math-Intersection-StraightLine/pkg-plist (props changed) head/math/p5-Math-Logic/pkg-plist (props changed) head/math/p5-Math-MPC/pkg-plist (props changed) head/math/p5-Math-MPFR/pkg-plist (props changed) head/math/p5-Math-MatrixReal/pkg-plist (props changed) head/math/p5-Math-NumberCruncher/pkg-plist (props changed) head/math/p5-Math-Pari/pkg-plist (props changed) head/math/p5-Math-Polygon-Tree/pkg-plist (props changed) head/math/p5-Math-Polygon/pkg-plist (props changed) head/math/p5-Math-Polynomial-Solve/pkg-plist (props changed) head/math/p5-Math-RPN/pkg-plist (props changed) head/math/p5-Math-Random-ISAAC-XS/pkg-plist (props changed) head/math/p5-Math-Random-ISAAC/pkg-plist (props changed) head/math/p5-Math-Random-MT-Auto/pkg-plist (props changed) head/math/p5-Math-Random-MT/pkg-plist (props changed) head/math/p5-Math-Random-OO/pkg-plist (props changed) head/math/p5-Math-Random-Secure/pkg-plist (props changed) head/math/p5-Math-Random/pkg-plist (props changed) head/math/p5-Math-RandomOrg/pkg-plist (props changed) head/math/p5-Math-Round-Var/pkg-plist (props changed) head/math/p5-Math-Round/pkg-plist (props changed) head/math/p5-Math-Sequence/pkg-plist (props changed) head/math/p5-Math-Series/pkg-plist (props changed) head/math/p5-Math-SigFigs/pkg-plist (props changed) head/math/p5-Math-SimpleVariable/pkg-plist (props changed) head/math/p5-Math-Spline/pkg-plist (props changed) head/math/p5-Math-String/pkg-plist (props changed) head/math/p5-Math-Symbolic-Custom-CCompiler/pkg-plist (props changed) head/math/p5-Math-Symbolic-Custom-Contains/pkg-plist (props changed) head/math/p5-Math-Symbolic-Custom-ErrorPropagation/pkg-plist (props changed) head/math/p5-Math-Symbolic-Custom-LaTeXDumper/pkg-plist (props changed) head/math/p5-Math-Symbolic-Custom-Pattern/pkg-plist (props changed) head/math/p5-Math-Symbolic-Custom-Simplification/pkg-plist (props changed) head/math/p5-Math-Symbolic-Custom-Transformation/pkg-plist (props changed) head/math/p5-Math-Symbolic/pkg-plist (props changed) head/math/p5-Math-SymbolicX-BigNum/pkg-plist (props changed) head/math/p5-Math-SymbolicX-Complex/pkg-plist (props changed) head/math/p5-Math-SymbolicX-Error/pkg-plist (props changed) head/math/p5-Math-SymbolicX-Inline/pkg-plist (props changed) head/math/p5-Math-SymbolicX-NoSimplification/pkg-plist (props changed) head/math/p5-Math-SymbolicX-ParserExtensionFactory/pkg-plist (props changed) head/math/p5-Math-SymbolicX-Statistics-Distributions/pkg-plist (props changed) head/math/p5-Math-TrulyRandom/pkg-plist (props changed) head/math/p5-Math-Units/pkg-plist (props changed) head/math/p5-Math-Vec/pkg-plist (props changed) head/math/p5-Math-VecStat/pkg-plist (props changed) head/math/p5-Math-VectorReal/pkg-plist (props changed) head/math/p5-NetCDF/pkg-plist (props changed) head/math/p5-Number-Compare/pkg-plist (props changed) head/math/p5-Number-Fraction/pkg-plist (props changed) head/math/p5-Number-WithError-LaTeX/pkg-plist (props changed) head/math/p5-Number-WithError/pkg-plist (props changed) head/math/p5-Parse-Range/pkg-plist (props changed) head/math/p5-Roman/pkg-plist (props changed) head/math/p5-Set-IntSpan-Fast-XS/pkg-plist (props changed) head/math/p5-Set-IntSpan-Fast/pkg-plist (props changed) head/math/p5-Set-IntSpan/pkg-plist (props changed) head/math/p5-Set-Partition/pkg-plist (props changed) head/math/p5-Set-Window/pkg-plist (props changed) head/math/p5-Statistics-Basic/pkg-plist (props changed) head/math/p5-Statistics-Benford/pkg-plist (props changed) head/math/p5-Statistics-ChiSquare/pkg-plist (props changed) head/math/p5-Statistics-Contingency/pkg-plist (props changed) head/math/p5-Statistics-Descriptive-Discrete/pkg-plist (props changed) head/math/p5-Statistics-Descriptive/pkg-plist (props changed) head/math/p5-Statistics-Distributions/pkg-plist (props changed) head/math/p5-Statistics-Forecast/pkg-plist (props changed) head/math/p5-Statistics-Frequency/pkg-plist (props changed) head/math/p5-Statistics-LTU/pkg-plist (props changed) head/math/p5-Statistics-LineFit/pkg-plist (props changed) head/math/p5-Statistics-Lite/pkg-plist (props changed) head/math/p5-Statistics-OLS/pkg-plist (props changed) head/math/p5-Statistics-R/pkg-plist (props changed) head/math/p5-Statistics-Regression/pkg-plist (props changed) head/math/p5-Statistics-TTest/pkg-plist (props changed) head/math/p5-Task-Math-Symbolic/pkg-plist (props changed) head/math/p5-Text-AsciiTeX/pkg-plist (props changed) head/math/p5-bignum/pkg-plist (props changed) head/math/pari/pkg-plist (props changed) head/math/parmgridgen/pkg-plist (props changed) head/math/pecl-big_int/pkg-plist (props changed) head/math/petsc/pkg-plist (props changed) head/math/physcalc/pkg-plist (props changed) head/math/plman/pkg-plist (props changed) head/math/ploticus/pkg-plist (props changed) head/math/polymake/pkg-plist (props changed) head/math/proofgeneral/pkg-plist (props changed) head/math/pspp/pkg-plist (props changed) head/math/py-apgl/pkg-plist (props changed) head/math/py-gato/pkg-plist (props changed) head/math/py-graphtool/pkg-plist (props changed) head/math/py-gsl/pkg-plist (props changed) head/math/py-igraph/pkg-plist (props changed) head/math/py-mathdom/pkg-plist (props changed) head/math/py-matplotlib/pkg-plist (props changed) head/math/py-networkx/pkg-plist (props changed) head/math/py-numpy/pkg-plist (props changed) head/math/py-nzmath/pkg-plist (props changed) head/math/py-pybloom/pkg-plist (props changed) head/math/py-scientific/pkg-plist (props changed) head/math/py-svgmath/pkg-plist (props changed) head/math/py-sympy/pkg-plist (props changed) head/math/py-viper/pkg-plist (props changed) head/math/qalculate/pkg-plist (props changed) head/math/qd/pkg-plist (props changed) head/math/qhull/pkg-plist (props changed) head/math/qhull5/pkg-plist (props changed) head/math/qrupdate/pkg-plist (props changed) head/math/qtiplot-doc/pkg-plist (props changed) head/math/qwtplot3d-qt4/pkg-plist (props changed) head/math/rapid/pkg-plist (props changed) head/math/reed-solomon/pkg-plist (props changed) head/math/ros-geometry/pkg-plist (props changed) head/math/rpcalc/pkg-plist (props changed) head/math/rpy2/pkg-plist (props changed) head/math/ruby-algebra/pkg-plist (props changed) head/math/ruby-fftw3/pkg-plist (props changed) head/math/ruby-gnuplot/pkg-plist (props changed) head/math/ruby-gsl/pkg-plist (props changed) head/math/ruby-narray/pkg-plist (props changed) head/math/ruby-narray_miss/pkg-plist (props changed) head/math/ruby-numru_misc/pkg-plist (props changed) head/math/ruby-numru_units/pkg-plist (props changed) head/math/sc/pkg-plist (props changed) head/math/scalapack/pkg-plist (props changed) head/math/scilab-toolbox-sivp/pkg-plist (props changed) head/math/scilab-toolbox-swt/pkg-plist (props changed) head/math/scilab/pkg-plist (props changed) head/math/sdpa-gmp/pkg-plist (props changed) head/math/sdpa/pkg-plist (props changed) head/math/sdpara/pkg-plist (props changed) head/math/sedumi/pkg-plist (props changed) head/math/slgrace/pkg-plist (props changed) head/math/snns/pkg-plist (props changed) head/math/solitaire/pkg-plist (props changed) head/math/spar/pkg-plist (props changed) head/math/speedcrunch/pkg-plist (props changed) head/math/spooles/pkg-plist (props changed) head/math/suitesparse/pkg-plist (props changed) head/math/superlu/pkg-plist (props changed) head/math/superlu_mt/pkg-plist (props changed) head/math/tablix/pkg-plist (props changed) head/math/taucs/pkg-plist (props changed) head/math/testu01/pkg-plist (props changed) head/math/timbl/pkg-plist (props changed) head/math/topaz/pkg-plist (props changed) head/math/truthtable/pkg-plist (props changed) head/math/tvmet/pkg-plist (props changed) head/math/ump/pkg-plist (props changed) head/math/units/pkg-plist (props changed) head/math/unixstat/pkg-plist (props changed) head/math/unuran/pkg-plist (props changed) head/math/wingz/pkg-plist (props changed) head/math/wingz3/pkg-plist (props changed) head/math/wxMaxima/pkg-plist (props changed) head/math/xgobi/pkg-plist (props changed) head/math/xgraph/pkg-plist (props changed) head/math/xldlas/pkg-plist (props changed) head/math/xlispstat/pkg-plist (props changed) head/math/xppaut/pkg-plist (props changed) head/misc/achievo/pkg-plist (props changed) head/misc/amanda-server/pkg-plist (props changed) head/misc/amanda-server/pkg-plist.client (props changed) head/misc/amanda25-server/pkg-plist (props changed) head/misc/amanda25-server/pkg-plist.client (props changed) head/misc/amanda26-server/pkg-plist (props changed) head/misc/amanda26-server/pkg-plist.client (props changed) head/misc/amanda32-server/pkg-plist (props changed) head/misc/amanda32-server/pkg-plist.client (props changed) head/misc/amfm/pkg-plist (props changed) head/misc/asbutton/pkg-plist (props changed) head/misc/asr-manpages/pkg-plist (props changed) head/misc/astrolog/pkg-plist (props changed) head/misc/bbjd/pkg-plist (props changed) head/misc/biblical-curse/pkg-plist (props changed) head/misc/bigboard/pkg-plist (props changed) head/misc/brs/pkg-plist (props changed) head/misc/callid/pkg-plist (props changed) head/misc/cdcollect/pkg-plist (props changed) head/misc/chmlib/pkg-plist (props changed) head/misc/color-theme.el/pkg-plist (props changed) head/misc/colortail/pkg-plist (props changed) head/misc/compat4x/pkg-plist.freebsd4 (props changed) head/misc/compat4x/pkg-plist.freebsd5 (props changed) head/misc/compat5x/pkg-plist (props changed) head/misc/compat6x/pkg-plist.alpha (props changed) head/misc/compat6x/pkg-plist.amd64 (props changed) head/misc/compat6x/pkg-plist.i386 (props changed) head/misc/compat6x/pkg-plist.sparc64 (props changed) head/misc/compat7x/pkg-plist.amd64 (props changed) head/misc/compat7x/pkg-plist.i386 (props changed) head/misc/crosspad/pkg-plist (props changed) head/misc/cuecat/pkg-plist (props changed) head/misc/dahdi-kmod/pkg-plist (props changed) head/misc/dahdi-kmod26/pkg-plist (props changed) head/misc/dahdi/pkg-plist (props changed) head/misc/deco/pkg-plist (props changed) head/misc/detachtty/pkg-plist (props changed) head/misc/diary-hercules/pkg-plist (props changed) head/misc/dnetc/pkg-plist (props changed) head/misc/dotfile/pkg-plist (props changed) head/misc/dphys-config/pkg-plist (props changed) head/misc/dvorak7min/pkg-plist (props changed) head/misc/elscreen/pkg-plist (props changed) head/misc/estic/pkg-plist (props changed) head/misc/explosions/pkg-plist (props changed) head/misc/figlet-fonts/pkg-plist (props changed) head/misc/figlet/pkg-plist (props changed) head/misc/findutils/pkg-plist (props changed) head/misc/firestring/pkg-plist (props changed) head/misc/fortune-mod-bible/pkg-plist (props changed) head/misc/fortune-mod-bofh/pkg-plist (props changed) head/misc/fortuneit/pkg-plist (props changed) head/misc/fpc-chm/pkg-plist (props changed) head/misc/freebsd-doc-bn/pkg-plist.common (props changed) head/misc/freebsd-doc-bn/pkg-plist.extras (props changed) head/misc/freebsd-doc-bn/pkg-plist.html (props changed) head/misc/freebsd-doc-bn/pkg-plist.html-common (props changed) head/misc/freebsd-doc-bn/pkg-plist.html-split (props changed) head/misc/freebsd-doc-bn/pkg-plist.pdf (props changed) head/misc/freebsd-doc-bn/pkg-plist.ps (props changed) head/misc/freebsd-doc-bn/pkg-plist.txt (props changed) head/misc/freebsd-doc-da/pkg-plist.common (props changed) head/misc/freebsd-doc-da/pkg-plist.extras (props changed) head/misc/freebsd-doc-da/pkg-plist.html (props changed) head/misc/freebsd-doc-da/pkg-plist.html-common (props changed) head/misc/freebsd-doc-da/pkg-plist.html-split (props changed) head/misc/freebsd-doc-da/pkg-plist.pdf (props changed) head/misc/freebsd-doc-da/pkg-plist.ps (props changed) head/misc/freebsd-doc-da/pkg-plist.txt (props changed) head/misc/freebsd-doc-de/pkg-plist.common (props changed) head/misc/freebsd-doc-de/pkg-plist.extras (props changed) head/misc/freebsd-doc-de/pkg-plist.html (props changed) head/misc/freebsd-doc-de/pkg-plist.html-common (props changed) head/misc/freebsd-doc-de/pkg-plist.html-split (props changed) head/misc/freebsd-doc-de/pkg-plist.pdf (props changed) head/misc/freebsd-doc-de/pkg-plist.ps (props changed) head/misc/freebsd-doc-de/pkg-plist.txt (props changed) head/misc/freebsd-doc-el/pkg-plist.common (props changed) head/misc/freebsd-doc-el/pkg-plist.extras (props changed) head/misc/freebsd-doc-el/pkg-plist.html (props changed) head/misc/freebsd-doc-el/pkg-plist.html-common (props changed) head/misc/freebsd-doc-el/pkg-plist.html-split (props changed) head/misc/freebsd-doc-el/pkg-plist.pdf (props changed) head/misc/freebsd-doc-el/pkg-plist.ps (props changed) head/misc/freebsd-doc-el/pkg-plist.txt (props changed) head/misc/freebsd-doc-en/pkg-plist.common (props changed) head/misc/freebsd-doc-en/pkg-plist.extras (props changed) head/misc/freebsd-doc-en/pkg-plist.html (props changed) head/misc/freebsd-doc-en/pkg-plist.html-common (props changed) head/misc/freebsd-doc-en/pkg-plist.html-split (props changed) head/misc/freebsd-doc-en/pkg-plist.pdf (props changed) head/misc/freebsd-doc-en/pkg-plist.ps (props changed) head/misc/freebsd-doc-en/pkg-plist.txt (props changed) head/misc/freebsd-doc-es/pkg-plist.common (props changed) head/misc/freebsd-doc-es/pkg-plist.extras (props changed) head/misc/freebsd-doc-es/pkg-plist.html (props changed) head/misc/freebsd-doc-es/pkg-plist.html-common (props changed) head/misc/freebsd-doc-es/pkg-plist.html-split (props changed) head/misc/freebsd-doc-es/pkg-plist.pdf (props changed) head/misc/freebsd-doc-es/pkg-plist.ps (props changed) head/misc/freebsd-doc-es/pkg-plist.txt (props changed) head/misc/freebsd-doc-fr/pkg-plist.common (props changed) head/misc/freebsd-doc-fr/pkg-plist.extras (props changed) head/misc/freebsd-doc-fr/pkg-plist.html (props changed) head/misc/freebsd-doc-fr/pkg-plist.html-common (props changed) head/misc/freebsd-doc-fr/pkg-plist.html-split (props changed) head/misc/freebsd-doc-fr/pkg-plist.pdf (props changed) head/misc/freebsd-doc-fr/pkg-plist.ps (props changed) head/misc/freebsd-doc-fr/pkg-plist.txt (props changed) head/misc/freebsd-doc-hu/pkg-plist.common (props changed) head/misc/freebsd-doc-hu/pkg-plist.extras (props changed) head/misc/freebsd-doc-hu/pkg-plist.html (props changed) head/misc/freebsd-doc-hu/pkg-plist.html-common (props changed) head/misc/freebsd-doc-hu/pkg-plist.html-split (props changed) head/misc/freebsd-doc-hu/pkg-plist.pdf (props changed) head/misc/freebsd-doc-hu/pkg-plist.ps (props changed) head/misc/freebsd-doc-hu/pkg-plist.txt (props changed) head/misc/freebsd-doc-it/pkg-plist.common (props changed) head/misc/freebsd-doc-it/pkg-plist.extras (props changed) head/misc/freebsd-doc-it/pkg-plist.html (props changed) head/misc/freebsd-doc-it/pkg-plist.html-common (props changed) head/misc/freebsd-doc-it/pkg-plist.html-split (props changed) head/misc/freebsd-doc-it/pkg-plist.pdf (props changed) head/misc/freebsd-doc-it/pkg-plist.ps (props changed) head/misc/freebsd-doc-it/pkg-plist.txt (props changed) head/misc/freebsd-doc-ja/pkg-plist.common (props changed) head/misc/freebsd-doc-ja/pkg-plist.extras (props changed) head/misc/freebsd-doc-ja/pkg-plist.html (props changed) head/misc/freebsd-doc-ja/pkg-plist.html-common (props changed) head/misc/freebsd-doc-ja/pkg-plist.html-split (props changed) head/misc/freebsd-doc-ja/pkg-plist.pdf (props changed) head/misc/freebsd-doc-ja/pkg-plist.ps (props changed) head/misc/freebsd-doc-ja/pkg-plist.txt (props changed) head/misc/freebsd-doc-mn/pkg-plist.common (props changed) head/misc/freebsd-doc-mn/pkg-plist.extras (props changed) head/misc/freebsd-doc-mn/pkg-plist.html (props changed) head/misc/freebsd-doc-mn/pkg-plist.html-common (props changed) head/misc/freebsd-doc-mn/pkg-plist.html-split (props changed) head/misc/freebsd-doc-mn/pkg-plist.pdf (props changed) head/misc/freebsd-doc-mn/pkg-plist.ps (props changed) head/misc/freebsd-doc-mn/pkg-plist.txt (props changed) head/misc/freebsd-doc-nl/pkg-plist.common (props changed) head/misc/freebsd-doc-nl/pkg-plist.extras (props changed) head/misc/freebsd-doc-nl/pkg-plist.html (props changed) head/misc/freebsd-doc-nl/pkg-plist.html-common (props changed) head/misc/freebsd-doc-nl/pkg-plist.html-split (props changed) head/misc/freebsd-doc-nl/pkg-plist.pdf (props changed) head/misc/freebsd-doc-nl/pkg-plist.ps (props changed) head/misc/freebsd-doc-nl/pkg-plist.txt (props changed) head/misc/freebsd-doc-pl/pkg-plist.common (props changed) head/misc/freebsd-doc-pl/pkg-plist.extras (props changed) head/misc/freebsd-doc-pl/pkg-plist.html (props changed) head/misc/freebsd-doc-pl/pkg-plist.html-common (props changed) head/misc/freebsd-doc-pl/pkg-plist.html-split (props changed) head/misc/freebsd-doc-pl/pkg-plist.pdf (props changed) head/misc/freebsd-doc-pl/pkg-plist.ps (props changed) head/misc/freebsd-doc-pl/pkg-plist.txt (props changed) head/misc/freebsd-doc-pt/pkg-plist.common (props changed) head/misc/freebsd-doc-pt/pkg-plist.extras (props changed) head/misc/freebsd-doc-pt/pkg-plist.html (props changed) head/misc/freebsd-doc-pt/pkg-plist.html-common (props changed) head/misc/freebsd-doc-pt/pkg-plist.html-split (props changed) head/misc/freebsd-doc-pt/pkg-plist.pdf (props changed) head/misc/freebsd-doc-pt/pkg-plist.ps (props changed) head/misc/freebsd-doc-pt/pkg-plist.txt (props changed) head/misc/freebsd-doc-ru/pkg-plist.common (props changed) head/misc/freebsd-doc-ru/pkg-plist.extras (props changed) head/misc/freebsd-doc-ru/pkg-plist.html (props changed) head/misc/freebsd-doc-ru/pkg-plist.html-common (props changed) head/misc/freebsd-doc-ru/pkg-plist.html-split (props changed) head/misc/freebsd-doc-ru/pkg-plist.pdf (props changed) head/misc/freebsd-doc-ru/pkg-plist.ps (props changed) head/misc/freebsd-doc-ru/pkg-plist.txt (props changed) head/misc/freebsd-doc-sr/pkg-plist.common (props changed) head/misc/freebsd-doc-sr/pkg-plist.extras (props changed) head/misc/freebsd-doc-sr/pkg-plist.html (props changed) head/misc/freebsd-doc-sr/pkg-plist.html-common (props changed) head/misc/freebsd-doc-sr/pkg-plist.html-split (props changed) head/misc/freebsd-doc-sr/pkg-plist.pdf (props changed) head/misc/freebsd-doc-sr/pkg-plist.ps (props changed) head/misc/freebsd-doc-sr/pkg-plist.txt (props changed) head/misc/freebsd-doc-tr/pkg-plist.common (props changed) head/misc/freebsd-doc-tr/pkg-plist.extras (props changed) head/misc/freebsd-doc-tr/pkg-plist.html (props changed) head/misc/freebsd-doc-tr/pkg-plist.html-common (props changed) head/misc/freebsd-doc-tr/pkg-plist.html-split (props changed) head/misc/freebsd-doc-tr/pkg-plist.pdf (props changed) head/misc/freebsd-doc-tr/pkg-plist.ps (props changed) head/misc/freebsd-doc-tr/pkg-plist.txt (props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.common (props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.extras (props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.html (props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.html-common (props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.html-split (props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.pdf (props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.ps (props changed) head/misc/freebsd-doc-zh_cn/pkg-plist.txt (props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.common (props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.extras (props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.html (props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.html-common (props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.html-split (props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.pdf (props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.ps (props changed) head/misc/freebsd-doc-zh_tw/pkg-plist.txt (props changed) head/misc/freeguide/pkg-plist (props changed) head/misc/freeswitch-pizzademo-devel/pkg-plist (props changed) head/misc/fxload/pkg-plist (props changed) head/misc/gcstar/pkg-plist (props changed) head/misc/getopt/pkg-plist (props changed) head/misc/gimp-help-en/pkg-plist (props changed) head/misc/gkrellweather2/pkg-plist (props changed) head/misc/gkx86info2/pkg-plist (props changed) head/misc/gman/pkg-plist (props changed) head/misc/gnome-devel-docs/pkg-plist (props changed) head/misc/gnome-icon-theme-extras/pkg-plist (props changed) head/misc/gnome-mime-data/pkg-plist (props changed) head/misc/gnome-osd/pkg-plist (props changed) head/misc/gnome-user-docs/pkg-plist (props changed) head/misc/gnuit/pkg-plist (props changed) head/misc/gnustep-examples/pkg-plist (props changed) head/misc/gonvert/pkg-plist (props changed) head/misc/gregexp/pkg-plist (props changed) head/misc/hb/pkg-plist (props changed) head/misc/heyu2/pkg-plist (props changed) head/misc/hotkeys/pkg-plist (props changed) head/misc/iselect/pkg-plist (props changed) head/misc/jargon/pkg-plist (props changed) head/misc/jive/pkg-plist (props changed) head/misc/kcd/pkg-plist (props changed) head/misc/kde4-shared-mime-info/pkg-plist (props changed) head/misc/kgeography/pkg-plist (props changed) head/misc/klettres/pkg-plist (props changed) head/misc/latex-mk/pkg-plist (props changed) head/misc/libhome/pkg-plist (props changed) head/misc/libkdeedu/pkg-plist (props changed) head/misc/libmcal/pkg-plist (props changed) head/misc/libmetalink/pkg-plist (props changed) head/misc/libsupertone/pkg-plist (props changed) head/misc/libutf/pkg-plist (props changed) head/misc/lifelines/pkg-plist (props changed) head/misc/lingoteach/pkg-plist (props changed) head/misc/localedata/pkg-plist (props changed) head/misc/logsurfer+/pkg-plist (props changed) head/misc/lr/pkg-plist (props changed) head/misc/lv/pkg-plist (props changed) head/misc/magicpoint/pkg-plist (props changed) head/misc/man.el/pkg-plist (props changed) head/misc/mc-light/pkg-plist (props changed) head/misc/metalink-editor/pkg-plist (props changed) head/misc/metromap/pkg-plist (props changed) head/misc/mshell/pkg-plist (props changed) head/misc/nagios-base-logos/pkg-plist (props changed) head/misc/najitool/pkg-plist (props changed) head/misc/numchar/pkg-plist (props changed) head/misc/opencyc/pkg-plist (props changed) head/misc/openr2/pkg-plist (props changed) head/misc/ossp-uuid/pkg-plist (props changed) head/misc/otter/pkg-plist (props changed) head/misc/p5-Acme-ButFirst/pkg-plist (props changed) head/misc/p5-Array-Diff/pkg-plist (props changed) head/misc/p5-Bot-Training/pkg-plist (props changed) head/misc/p5-Business-ISSN/pkg-plist (props changed) head/misc/p5-Business-UPS/pkg-plist (props changed) head/misc/p5-Chatbot-Eliza/pkg-plist (props changed) head/misc/p5-File-Sort/pkg-plist (props changed) head/misc/p5-Geo-Cache/pkg-plist (props changed) head/misc/p5-LEGO-RCX/pkg-plist (props changed) head/misc/p5-Locale-Codes/pkg-plist (props changed) head/misc/p5-Locale-Msgcat/pkg-plist (props changed) head/misc/p5-Locale-SubCountry/pkg-plist (props changed) head/misc/p5-Zen-Koans/pkg-plist (props changed) head/misc/pantry/pkg-plist (props changed) head/misc/parley/pkg-plist (props changed) head/misc/patchutils/pkg-plist (props changed) head/misc/pdfmap/pkg-plist (props changed) head/misc/phraze/pkg-plist (props changed) head/misc/podsleuth/pkg-plist (props changed) head/misc/projectionlib/pkg-plist (props changed) head/misc/proxyper/pkg-plist (props changed) head/misc/py-osd/pkg-plist (props changed) head/misc/py-yolk/pkg-plist (props changed) head/misc/pypanda/pkg-plist (props changed) head/misc/qbrew/pkg-plist (props changed) head/misc/qlas/pkg-plist (props changed) head/misc/quick-lounge-applet/pkg-plist (props changed) head/misc/quotes/pkg-plist (props changed) head/misc/quranref/pkg-plist (props changed) head/misc/ringtonetools/pkg-plist (props changed) head/misc/rname/pkg-plist (props changed) head/misc/ruby-progressbar/pkg-plist (props changed) head/misc/ruby-vpim/pkg-plist (props changed) head/misc/salias/pkg-plist (props changed) head/misc/skyutils/pkg-plist (props changed) head/misc/sloccount/pkg-plist (props changed) head/misc/smssend/pkg-plist (props changed) head/misc/spamcalc/pkg-plist (props changed) head/misc/table.el/pkg-plist (props changed) head/misc/talkfilters/pkg-plist (props changed) head/misc/tcb/pkg-plist (props changed) head/misc/tellico-kde4/pkg-plist (props changed) head/misc/terraform/pkg-plist (props changed) head/misc/tkman/pkg-plist (props changed) head/misc/toilet/pkg-plist (props changed) head/misc/tpp/pkg-plist (props changed) head/misc/typetrainer/pkg-plist (props changed) head/misc/uf-view/pkg-plist (props changed) head/misc/upclient/pkg-plist (props changed) head/misc/utftools/pkg-plist (props changed) head/misc/vera/pkg-plist (props changed) head/misc/wminfo/pkg-plist (props changed) head/misc/wmtunlo/pkg-plist (props changed) head/misc/xdelta/pkg-plist (props changed) head/misc/xfce4-artwork/pkg-plist (props changed) head/misc/xfce4-wm-themes/pkg-plist (props changed) head/misc/xless/pkg-plist (props changed) head/misc/xmonad-log-applet/pkg-plist (props changed) head/misc/xosd/pkg-plist (props changed) head/misc/xsw/pkg-plist (props changed) head/misc/xyzcmd/pkg-plist (props changed) head/misc/ytree/pkg-plist (props changed) head/misc/zoneinfo/pkg-plist (props changed) head/multimedia/acidrip/pkg-plist (props changed) head/multimedia/arista/pkg-plist (props changed) head/multimedia/asdcplib/pkg-plist (props changed) head/multimedia/assimp/pkg-plist (props changed) head/multimedia/avidemux2-plugins/pkg-plist (props changed) head/multimedia/avidemux2/pkg-plist (props changed) head/multimedia/bino/pkg-plist (props changed) head/multimedia/camserv/pkg-plist (props changed) head/multimedia/castpodder/pkg-plist (props changed) head/multimedia/cheese/pkg-plist (props changed) head/multimedia/clive1/pkg-plist (props changed) head/multimedia/clutter-gst/pkg-plist (props changed) head/multimedia/cuse4bsd-kmod/pkg-plist (props changed) head/multimedia/dirac/pkg-plist (props changed) head/multimedia/dtv/pkg-plist (props changed) head/multimedia/dv2jpg/pkg-plist (props changed) head/multimedia/dvdrip/pkg-plist (props changed) head/multimedia/dvts/pkg-plist (props changed) head/multimedia/emotion/pkg-plist (props changed) head/multimedia/emovix/pkg-plist (props changed) head/multimedia/ffmpeg/pkg-plist (props changed) head/multimedia/ffmpeg0/pkg-plist (props changed) head/multimedia/ffmpegthumbnailer/pkg-plist (props changed) head/multimedia/fpc-dts/pkg-plist (props changed) head/multimedia/fpc-matroska/pkg-plist (props changed) head/multimedia/freetuxtv/pkg-plist (props changed) head/multimedia/freevo/pkg-plist (props changed) head/multimedia/fxtv/pkg-plist (props changed) head/multimedia/gaupol/pkg-plist (props changed) head/multimedia/gavl/pkg-plist (props changed) head/multimedia/gcfilms/pkg-plist (props changed) head/multimedia/gdialog/pkg-plist (props changed) head/multimedia/gdvrecv/pkg-plist (props changed) head/multimedia/gmencoder/pkg-plist (props changed) head/multimedia/gmerlin-avdecoder/pkg-plist (props changed) head/multimedia/gmerlin/pkg-plist (props changed) head/multimedia/gnome-mplayer/pkg-plist (props changed) head/multimedia/gopchop/pkg-plist (props changed) head/multimedia/gpac-libgpac/pkg-plist (props changed) head/multimedia/gpodder/pkg-plist (props changed) head/multimedia/gstreamer-ffmpeg/pkg-plist (props changed) head/multimedia/gstreamer-plugins-bad/pkg-plist (props changed) head/multimedia/gstreamer-plugins-buzztard/pkg-plist (props changed) head/multimedia/gstreamer-plugins-good/pkg-plist (props changed) head/multimedia/gstreamer-plugins-ugly/pkg-plist (props changed) head/multimedia/gstreamer-plugins/pkg-plist (props changed) head/multimedia/gstreamer/pkg-plist (props changed) head/multimedia/gstreamermm/pkg-plist (props changed) head/multimedia/gtk-recordmydesktop/pkg-plist (props changed) head/multimedia/gxine/pkg-plist (props changed) head/multimedia/imagination/pkg-plist (props changed) head/multimedia/iriverter/pkg-plist (props changed) head/multimedia/k9copy-kde4/pkg-plist (props changed) head/multimedia/kaffeine/pkg-plist (props changed) head/multimedia/kino/pkg-plist (props changed) head/multimedia/kmplayer-kde4/pkg-plist (props changed) head/multimedia/kplayer-kde4/pkg-plist (props changed) head/multimedia/libaacs/pkg-plist (props changed) head/multimedia/libass/pkg-plist (props changed) head/multimedia/libbluray/pkg-plist (props changed) head/multimedia/libcec/pkg-plist (props changed) head/multimedia/libdc1394/pkg-plist (props changed) head/multimedia/libdv/pkg-plist (props changed) head/multimedia/libdvbpsi/pkg-plist (props changed) head/multimedia/libdvdcss/pkg-plist (props changed) head/multimedia/libdvdnav/pkg-plist (props changed) head/multimedia/libdvdread/pkg-plist (props changed) head/multimedia/libfame/pkg-plist (props changed) head/multimedia/libkate/pkg-plist (props changed) head/multimedia/libmatroska/pkg-plist (props changed) head/multimedia/libmovtar/pkg-plist (props changed) head/multimedia/libmpeg2/pkg-plist (props changed) head/multimedia/libquicktime-lame/pkg-plist (props changed) head/multimedia/libquicktime/pkg-plist (props changed) head/multimedia/librtmp/pkg-plist (props changed) head/multimedia/libtheora/pkg-plist (props changed) head/multimedia/libtuner/pkg-plist (props changed) head/multimedia/libv4l/pkg-plist (props changed) head/multimedia/libva-vdpau-driver/pkg-plist (props changed) head/multimedia/libxspf/pkg-plist (props changed) head/multimedia/linux-f10-libv4l/pkg-plist (props changed) head/multimedia/linux-huludesktop/pkg-plist (props changed) head/multimedia/linux-realplayer/pkg-plist (props changed) head/multimedia/lxdvdrip/pkg-plist (props changed) head/multimedia/m2tstoavi/pkg-plist (props changed) head/multimedia/mimms/pkg-plist (props changed) head/multimedia/mjpegtools/pkg-plist (props changed) head/multimedia/mkvtoolnix/pkg-plist (props changed) head/multimedia/mmpython/pkg-plist (props changed) head/multimedia/motion/pkg-plist (props changed) head/multimedia/mp3cd/pkg-plist (props changed) head/multimedia/mp4v2/pkg-plist (props changed) head/multimedia/mpeg2play/pkg-plist (props changed) head/multimedia/mpeg4ip/pkg-plist (props changed) head/multimedia/mpeg_encode/pkg-plist (props changed) head/multimedia/mpeg_stat/pkg-plist (props changed) head/multimedia/mpgtx/pkg-plist (props changed) head/multimedia/mplayer-fonts/pkg-plist (props changed) head/multimedia/mplayer-skins/pkg-plist (props changed) head/multimedia/mplayer2/pkg-plist (props changed) head/multimedia/mplayerxp/pkg-plist (props changed) head/multimedia/mxflib/pkg-plist (props changed) head/multimedia/nxtvepg/pkg-plist (props changed) head/multimedia/ogmrip/pkg-plist (props changed) head/multimedia/ogmtools/pkg-plist (props changed) head/multimedia/openmovieeditor/pkg-plist (props changed) head/multimedia/openquicktime/pkg-plist (props changed) head/multimedia/openshot/pkg-plist (props changed) head/multimedia/p5-Audio-M4P/pkg-plist (props changed) head/multimedia/p5-FLV-Info/pkg-plist (props changed) head/multimedia/p5-File-Format-RIFF/pkg-plist (props changed) head/multimedia/p5-GStreamer/pkg-plist (props changed) head/multimedia/p5-MP4-Info/pkg-plist (props changed) head/multimedia/p5-Net-UPnP/pkg-plist (props changed) head/multimedia/p5-Subtitles/pkg-plist (props changed) head/multimedia/photofilmstrip/pkg-plist (props changed) head/multimedia/pitivi/pkg-plist (props changed) head/multimedia/plexmediaserver/pkg-plist (props changed) head/multimedia/poe/pkg-plist (props changed) head/multimedia/ppm2fli/pkg-plist (props changed) head/multimedia/pvr250/pkg-plist (props changed) head/multimedia/pvrxxx/pkg-plist (props changed) head/multimedia/pwcbsd/pkg-plist (props changed) head/multimedia/pwcview/pkg-plist (props changed) head/multimedia/py-gstreamer/pkg-plist (props changed) head/multimedia/py-kaa-base/pkg-plist (props changed) head/multimedia/py-kaa-imlib2/pkg-plist (props changed) head/multimedia/py-kaa-metadata/pkg-plist (props changed) head/multimedia/py-periscope/pkg-plist (props changed) head/multimedia/py-pybmp/pkg-plist (props changed) head/multimedia/py-qt4-multimedia/pkg-plist (props changed) head/multimedia/py-qt4-phonon/pkg-plist (props changed) head/multimedia/pyjama/pkg-plist (props changed) head/multimedia/pymp/pkg-plist (props changed) head/multimedia/qmmp-plugin-pack/pkg-plist (props changed) head/multimedia/qmmp/pkg-plist (props changed) head/multimedia/quark/pkg-plist (props changed) head/multimedia/quodlibet/pkg-plist (props changed) head/multimedia/rox-videothumbnail/pkg-plist (props changed) head/multimedia/rtmpdump/pkg-plist (props changed) head/multimedia/ruby-flvtool2/pkg-plist (props changed) head/multimedia/sabbu/pkg-plist (props changed) head/multimedia/schroedinger/pkg-plist (props changed) head/multimedia/smile/pkg-plist (props changed) head/multimedia/smpeg/pkg-plist (props changed) head/multimedia/smplayer-skins/pkg-plist (props changed) head/multimedia/smplayer-themes/pkg-plist (props changed) head/multimedia/spigot/pkg-plist (props changed) head/multimedia/subtitleeditor/pkg-plist (props changed) head/multimedia/swfdec-gnome/pkg-plist (props changed) head/multimedia/tivodecode/pkg-plist (props changed) head/multimedia/totem-pl-parser/pkg-plist (props changed) head/multimedia/totem/pkg-plist (props changed) head/multimedia/tstools/pkg-plist (props changed) head/multimedia/tunapie/pkg-plist (props changed) head/multimedia/v4l-utils/pkg-plist (props changed) head/multimedia/v4l_compat/pkg-plist (props changed) head/multimedia/vcdgear/pkg-plist (props changed) head/multimedia/vcdimager/pkg-plist (props changed) head/multimedia/vdr-plugin-control/pkg-plist (props changed) head/multimedia/vdr-plugin-eepg/pkg-plist (props changed) head/multimedia/vdr-plugin-epgsearch/pkg-plist (props changed) head/multimedia/vdr-plugin-extrecmenu/pkg-plist (props changed) head/multimedia/vdr-plugin-femon/pkg-plist (props changed) head/multimedia/vdr-plugin-iptv/pkg-plist (props changed) head/multimedia/vdr-plugin-iptv/pkg-plist.foo (props changed) head/multimedia/vdr-plugin-markad/pkg-plist (props changed) head/multimedia/vdr-plugin-osdpip/pkg-plist (props changed) head/multimedia/vdr-plugin-reelchannelscan/pkg-plist (props changed) head/multimedia/vdr-plugin-remote/pkg-plist (props changed) head/multimedia/vdr-plugin-skinenigmang/pkg-plist (props changed) head/multimedia/vdr-plugin-sleeptimer/pkg-plist (props changed) head/multimedia/vdr-plugin-softdevice/pkg-plist (props changed) head/multimedia/vdr-plugin-softhddevice/pkg-plist (props changed) head/multimedia/vdr-plugin-streamdev/pkg-plist (props changed) head/multimedia/vdr-plugin-ttxtsubs/pkg-plist (props changed) head/multimedia/vdr-plugin-vdrmanager/pkg-plist (props changed) head/multimedia/vdr-plugin-wirbelscan/pkg-plist (props changed) head/multimedia/vdr-plugin-xvdr/pkg-plist (props changed) head/multimedia/vdr/pkg-plist (props changed) head/multimedia/webcamd/pkg-plist (props changed) head/multimedia/win32-codecs/pkg-plist (props changed) head/multimedia/x264/pkg-plist (props changed) head/multimedia/xbmc-addon-xvdr/pkg-plist (props changed) head/multimedia/xbmc-pvr/pkg-plist (props changed) head/multimedia/xfce4-xmms-plugin/pkg-plist (props changed) head/multimedia/xmms-skins-huge/pkg-plist (props changed) head/multimedia/xmms-status-plugin/pkg-plist (props changed) head/multimedia/xtheater/pkg-plist (props changed) head/net-im/centericq/pkg-plist (props changed) head/net-im/centerim-devel/pkg-plist (props changed) head/net-im/centerim/pkg-plist (props changed) head/net-im/chattahoochie/pkg-plist (props changed) head/net-im/cicquin/pkg-plist (props changed) head/net-im/cjc/pkg-plist (props changed) head/net-im/climm/pkg-plist (props changed) head/net-im/coccinella/pkg-plist (props changed) head/net-im/convey/pkg-plist (props changed) head/net-im/echat/pkg-plist (props changed) head/net-im/ejabberd/pkg-plist (props changed) head/net-im/emesene/pkg-plist (props changed) head/net-im/finch/pkg-plist (props changed) head/net-im/freetalk/pkg-plist (props changed) head/net-im/fugu/pkg-plist (props changed) head/net-im/gajim/pkg-plist (props changed) head/net-im/gale/pkg-plist (props changed) head/net-im/gloox/pkg-plist (props changed) head/net-im/gtkyahoo/pkg-plist (props changed) head/net-im/gyach/pkg-plist (props changed) head/net-im/hotot/pkg-plist (props changed) head/net-im/icmpchat/pkg-plist (props changed) head/net-im/icqlib/pkg-plist (props changed) head/net-im/imspector/pkg-plist (props changed) head/net-im/iserverd/pkg-plist (props changed) head/net-im/jabber-pyaim/pkg-plist (props changed) head/net-im/jabber-pyicq/pkg-plist (props changed) head/net-im/jabber.el/pkg-plist (props changed) head/net-im/jabber/pkg-plist (props changed) head/net-im/jarl/pkg-plist (props changed) head/net-im/jggtrans/pkg-plist (props changed) head/net-im/jitsi/pkg-plist (props changed) head/net-im/kmess-kde4/pkg-plist (props changed) head/net-im/komclean/pkg-plist (props changed) head/net-im/libpurple/pkg-plist (props changed) head/net-im/libtelepathy/pkg-plist (props changed) head/net-im/libyahoo2/pkg-plist (props changed) head/net-im/licq-qt-gui/pkg-plist (props changed) head/net-im/licq/pkg-plist (props changed) head/net-im/linpopup/pkg-plist (props changed) head/net-im/loudmouth/pkg-plist (props changed) head/net-im/mbpurple/pkg-plist (props changed) head/net-im/mcabber/pkg-plist (props changed) head/net-im/meanwhile/pkg-plist (props changed) head/net-im/mercury/pkg-plist (props changed) head/net-im/mikutter/pkg-plist (props changed) head/net-im/mu-conference/pkg-plist (props changed) head/net-im/naim/pkg-plist (props changed) head/net-im/openfire-devel/pkg-plist (props changed) head/net-im/p5-DJabberd/pkg-plist (props changed) head/net-im/p5-Jabber-Connection/pkg-plist (props changed) head/net-im/p5-Jabber-Lite/pkg-plist (props changed) head/net-im/p5-Jabber-SimpleSend/pkg-plist (props changed) head/net-im/p5-Net-AIM/pkg-plist (props changed) head/net-im/p5-Net-AOLIM/pkg-plist (props changed) head/net-im/p5-Net-Async-XMPP/pkg-plist (props changed) head/net-im/p5-Net-ICQ2000/pkg-plist (props changed) head/net-im/p5-Net-Jabber/pkg-plist (props changed) head/net-im/p5-Net-NetSend/pkg-plist (props changed) head/net-im/p5-Net-Stomp/pkg-plist (props changed) head/net-im/p5-Net-XMPP/pkg-plist (props changed) head/net-im/p5-Net-XMPP2/pkg-plist (props changed) head/net-im/p5-Protocol-XMPP/pkg-plist (props changed) head/net-im/papyon/pkg-plist (props changed) head/net-im/pebrot/pkg-plist (props changed) head/net-im/pidgin-audacious-remote/pkg-plist (props changed) head/net-im/pidgin-birthday-reminder/pkg-plist (props changed) head/net-im/pidgin-fetion/pkg-plist (props changed) head/net-im/pidgin-guifications/pkg-plist (props changed) head/net-im/pidgin-libnotify/pkg-plist (props changed) head/net-im/pidgin-privacy-please/pkg-plist (props changed) head/net-im/pidgin-sipe/pkg-plist (props changed) head/net-im/pidgin/pkg-plist (props changed) head/net-im/pork/pkg-plist (props changed) head/net-im/prosody/pkg-plist (props changed) head/net-im/psi/pkg-plist (props changed) head/net-im/psimedia/pkg-plist (props changed) head/net-im/pwytter/pkg-plist (props changed) head/net-im/py-jabber/pkg-plist (props changed) head/net-im/py-punjab/pkg-plist (props changed) head/net-im/py-twistedWords/pkg-plist (props changed) head/net-im/py-xmpppy/pkg-plist (props changed) head/net-im/qq/pkg-plist (props changed) head/net-im/qxmpp-leechcraft/pkg-plist (props changed) head/net-im/ramblercontacts/pkg-plist (props changed) head/net-im/skype-devel/pkg-plist (props changed) head/net-im/skype/pkg-plist (props changed) head/net-im/telepathy-butterfly/pkg-plist (props changed) head/net-im/telepathy-farsight/pkg-plist (props changed) head/net-im/telepathy-idle/pkg-plist (props changed) head/net-im/telepathy-logger-qt4/pkg-plist (props changed) head/net-im/telepathy-python/pkg-plist (props changed) head/net-im/tkabber-devel/pkg-plist (props changed) head/net-im/tkabber-plugins/pkg-plist (props changed) head/net-im/tkabber/pkg-plist (props changed) head/net-im/tkabbur/pkg-plist (props changed) head/net-im/twitmail/pkg-plist (props changed) head/net-im/vicq/pkg-plist (props changed) head/net-im/vqcc-gtk/pkg-plist (props changed) head/net-im/yoono/pkg-plist (props changed) head/net-im/zephyr/pkg-plist (props changed) head/net-mgmt/2ping/pkg-plist (props changed) head/net-mgmt/TkTopNetFlows/pkg-plist (props changed) head/net-mgmt/airport/pkg-plist (props changed) head/net-mgmt/ap-utils/pkg-plist (props changed) head/net-mgmt/argus3-clients/pkg-plist (props changed) head/net-mgmt/argus3/pkg-plist (props changed) head/net-mgmt/arpalert/pkg-plist (props changed) head/net-mgmt/arpwatch/pkg-plist (props changed) head/net-mgmt/arts++/pkg-plist (props changed) head/net-mgmt/aspathtree/pkg-plist (props changed) head/net-mgmt/bandwidthd/pkg-plist (props changed) head/net-mgmt/bigsister/pkg-plist (props changed) head/net-mgmt/bsd-airtools/pkg-plist (props changed) head/net-mgmt/bsnmp-ucd/pkg-plist (props changed) head/net-mgmt/cacti-spine/pkg-plist (props changed) head/net-mgmt/cdpr/pkg-plist (props changed) head/net-mgmt/cflowd/pkg-plist (props changed) head/net-mgmt/check_logfiles/pkg-plist (props changed) head/net-mgmt/check_multi/pkg-plist (props changed) head/net-mgmt/check_snmp_pkgvuln/pkg-plist (props changed) head/net-mgmt/chillispot/pkg-plist (props changed) head/net-mgmt/cisco_conf/pkg-plist (props changed) head/net-mgmt/ciscoconf/pkg-plist (props changed) head/net-mgmt/cnagios/pkg-plist (props changed) head/net-mgmt/confregdecode/pkg-plist (props changed) head/net-mgmt/coovachilli/pkg-plist (props changed) head/net-mgmt/cricket/pkg-plist (props changed) head/net-mgmt/devmon-templates/pkg-plist (props changed) head/net-mgmt/docsis/pkg-plist (props changed) head/net-mgmt/etherape/pkg-plist (props changed) head/net-mgmt/ezradius/pkg-plist (props changed) head/net-mgmt/fetchconfig/pkg-plist (props changed) head/net-mgmt/flow-tools/pkg-plist (props changed) head/net-mgmt/flowviewer/pkg-plist (props changed) head/net-mgmt/fruity/pkg-plist (props changed) head/net-mgmt/glpi-plugins-fusioninventory-server/pkg-plist (props changed) head/net-mgmt/glpi-plugins-tracker-agent/pkg-plist (props changed) head/net-mgmt/glpi-plugins-tracker-server/pkg-plist (props changed) head/net-mgmt/gps/pkg-plist (props changed) head/net-mgmt/gsnmp/pkg-plist (props changed) head/net-mgmt/hawk/pkg-plist (props changed) head/net-mgmt/horde3-nic/pkg-plist (props changed) head/net-mgmt/ifgraph/pkg-plist (props changed) head/net-mgmt/iog/pkg-plist (props changed) head/net-mgmt/ipacco/pkg-plist (props changed) head/net-mgmt/ipacctd/pkg-plist (props changed) head/net-mgmt/ipaudit/pkg-plist (props changed) head/net-mgmt/ipcad/pkg-plist (props changed) head/net-mgmt/ipfm/pkg-plist (props changed) head/net-mgmt/ipplan/pkg-plist (props changed) head/net-mgmt/ipv6mon/pkg-plist (props changed) head/net-mgmt/isic/pkg-plist (props changed) head/net-mgmt/jnettop/pkg-plist (props changed) head/net-mgmt/lanmap/pkg-plist (props changed) head/net-mgmt/libsmi/pkg-plist (props changed) head/net-mgmt/macroscope/pkg-plist (props changed) head/net-mgmt/mrtg-ping-probe/pkg-plist (props changed) head/net-mgmt/mrtg/pkg-plist (props changed) head/net-mgmt/nagios-check_email_delivery/pkg-plist (props changed) head/net-mgmt/nagios-check_hdd_health/pkg-plist (props changed) head/net-mgmt/nagios-check_mysql_slave/pkg-plist (props changed) head/net-mgmt/nagios-check_ports/pkg-plist (props changed) head/net-mgmt/nagios-check_smartmon/pkg-plist (props changed) head/net-mgmt/nagios-devel/pkg-plist (props changed) head/net-mgmt/nagios-geom/pkg-plist (props changed) head/net-mgmt/nagios-plugins/pkg-plist (props changed) head/net-mgmt/nagios-portaudit/pkg-plist (props changed) head/net-mgmt/nagios-silfreed-plugins/pkg-plist (props changed) head/net-mgmt/nagios-snmp-plugins-extras/pkg-plist (props changed) head/net-mgmt/nagios-snmp-plugins/pkg-plist (props changed) head/net-mgmt/nagios/pkg-plist (props changed) head/net-mgmt/nagiosgraph/pkg-plist (props changed) head/net-mgmt/nagiostat/pkg-plist (props changed) head/net-mgmt/nagstamon/pkg-plist (props changed) head/net-mgmt/nbtscan/pkg-plist (props changed) head/net-mgmt/ndoutils/pkg-plist (props changed) head/net-mgmt/nedi/pkg-plist (props changed) head/net-mgmt/netams-front/pkg-plist (props changed) head/net-mgmt/netams/pkg-plist (props changed) head/net-mgmt/netdot/pkg-plist (props changed) head/net-mgmt/netmagis-common/pkg-plist (props changed) head/net-mgmt/netmagis-database/pkg-plist (props changed) head/net-mgmt/netmagis-detecteq/pkg-plist (props changed) head/net-mgmt/netmagis-metro/pkg-plist (props changed) head/net-mgmt/netmagis-servers/pkg-plist (props changed) head/net-mgmt/netmagis-topo/pkg-plist (props changed) head/net-mgmt/netmagis-utils/pkg-plist (props changed) head/net-mgmt/netmagis-www/pkg-plist (props changed) head/net-mgmt/netspoc/pkg-plist (props changed) head/net-mgmt/netustad/pkg-plist (props changed) head/net-mgmt/netwag/pkg-plist (props changed) head/net-mgmt/netwox/pkg-plist (props changed) head/net-mgmt/netxms/pkg-plist (props changed) head/net-mgmt/nfsen/pkg-plist (props changed) head/net-mgmt/ng_ipacct/pkg-plist (props changed) head/net-mgmt/nitpicker/pkg-plist (props changed) head/net-mgmt/nocol/pkg-plist (props changed) head/net-mgmt/nrpe/pkg-plist (props changed) head/net-mgmt/nsca/pkg-plist (props changed) head/net-mgmt/nsca27/pkg-plist (props changed) head/net-mgmt/ocsinventory-agent/pkg-plist (props changed) head/net-mgmt/ocsinventory-ng/pkg-plist (props changed) head/net-mgmt/openvmps/pkg-plist (props changed) head/net-mgmt/ourmon/pkg-plist (props changed) head/net-mgmt/p0f2/pkg-plist (props changed) head/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/pkg-plist (props changed) head/net-mgmt/p5-GRNOC-TL1/pkg-plist (props changed) head/net-mgmt/p5-Mon/pkg-plist (props changed) head/net-mgmt/p5-Nagios-Object/pkg-plist (props changed) head/net-mgmt/p5-Nagios-Plugin/pkg-plist (props changed) head/net-mgmt/p5-Nagios-Plugins-Memcached/pkg-plist (props changed) head/net-mgmt/p5-Net-IP/pkg-plist (props changed) head/net-mgmt/p5-Net-IPv4Addr/pkg-plist (props changed) head/net-mgmt/p5-Net-IPv6Addr/pkg-plist (props changed) head/net-mgmt/p5-Net-Netmask/pkg-plist (props changed) head/net-mgmt/p5-Net-SNMP/pkg-plist (props changed) head/net-mgmt/p5-NetAddr-IP/pkg-plist (props changed) head/net-mgmt/p5-NetApp/pkg-plist (props changed) head/net-mgmt/p5-POE-Component-SNMP/pkg-plist (props changed) head/net-mgmt/p5-SNMP_Session/pkg-plist (props changed) head/net-mgmt/pads/pkg-plist (props changed) head/net-mgmt/pancho/pkg-plist (props changed) head/net-mgmt/pandorafms_agent/pkg-plist (props changed) head/net-mgmt/pandorafms_console/pkg-plist (props changed) head/net-mgmt/pandorafms_server/pkg-plist (props changed) head/net-mgmt/pandorafms_server/pkg-plist.spool (props changed) head/net-mgmt/percona-monitoring-plugins/pkg-plist (props changed) head/net-mgmt/phpip/pkg-plist (props changed) head/net-mgmt/phpweathermap/pkg-plist (props changed) head/net-mgmt/pnp/pkg-plist (props changed) head/net-mgmt/py-ipcalc/pkg-plist (props changed) head/net-mgmt/py-ipy/pkg-plist (props changed) head/net-mgmt/py-snmp4-apps/pkg-plist (props changed) head/net-mgmt/py-snmp4/pkg-plist (props changed) head/net-mgmt/py-yapsnmp/pkg-plist (props changed) head/net-mgmt/qkismet/pkg-plist (props changed) head/net-mgmt/rackmonkey/pkg-plist (props changed) head/net-mgmt/ramond/pkg-plist (props changed) head/net-mgmt/rancid-devel/pkg-plist (props changed) head/net-mgmt/rancid/pkg-plist (props changed) head/net-mgmt/remarp/pkg-plist (props changed) head/net-mgmt/rotorouter/pkg-plist (props changed) head/net-mgmt/routers2-extensions/pkg-plist (props changed) head/net-mgmt/routers2-extras/pkg-plist (props changed) head/net-mgmt/routers2/pkg-plist (props changed) head/net-mgmt/rrdbot/pkg-plist (props changed) head/net-mgmt/satellite/pkg-plist (props changed) head/net-mgmt/sblim-wbemcli/pkg-plist (props changed) head/net-mgmt/send/pkg-plist (props changed) head/net-mgmt/sendip/pkg-plist (props changed) head/net-mgmt/sipcalc/pkg-plist (props changed) head/net-mgmt/snmp++/pkg-plist (props changed) head/net-mgmt/snmp4nagios/pkg-plist (props changed) head/net-mgmt/spectools/pkg-plist (props changed) head/net-mgmt/sysmon/pkg-plist (props changed) head/net-mgmt/torrus/pkg-plist (props changed) head/net-mgmt/vidalia/pkg-plist (props changed) head/net-mgmt/wdiag/pkg-plist (props changed) head/net-mgmt/weathermap/pkg-plist (props changed) head/net-mgmt/whatmask/pkg-plist (props changed) head/net-mgmt/wide-dhcp/pkg-plist (props changed) head/net-mgmt/wifimgr/pkg-plist (props changed) head/net-mgmt/wmi-client/pkg-plist (props changed) head/net-mgmt/xymon-client/pkg-plist (props changed) head/net-mgmt/yabm/pkg-plist (props changed) head/net-mgmt/yaf/pkg-plist (props changed) head/net-mgmt/zabbix2-server/pkg-plist.agent (props changed) head/net-mgmt/zabbix22-server/pkg-plist.agent (props changed) head/net-mgmt/zenoss/pkg-plist (props changed) head/net-p2p/amule-devel/pkg-plist (props changed) head/net-p2p/amule/pkg-plist (props changed) head/net-p2p/bitflu/pkg-plist (props changed) head/net-p2p/bitmessage/pkg-plist (props changed) head/net-p2p/bnbt/pkg-plist (props changed) head/net-p2p/btqueue/pkg-plist (props changed) head/net-p2p/dclib/pkg-plist (props changed) head/net-p2p/deluge/pkg-plist (props changed) head/net-p2p/eiskaltdcpp-cli/pkg-plist (props changed) head/net-p2p/eiskaltdcpp-data/pkg-plist (props changed) head/net-p2p/eiskaltdcpp-gtk/pkg-plist (props changed) head/net-p2p/eiskaltdcpp-lib/pkg-plist (props changed) head/net-p2p/eiskaltdcpp-qt/pkg-plist (props changed) head/net-p2p/gkremldk/pkg-plist (props changed) head/net-p2p/gnunet-gtk/pkg-plist (props changed) head/net-p2p/gnunet/pkg-plist (props changed) head/net-p2p/gtkhx/pkg-plist (props changed) head/net-p2p/gtorrentviewer/pkg-plist (props changed) head/net-p2p/libbt/pkg-plist (props changed) head/net-p2p/liberator/pkg-plist (props changed) head/net-p2p/libpdtp/pkg-plist (props changed) head/net-p2p/libtorrent-rasterbar/pkg-plist (props changed) head/net-p2p/libtorrent/pkg-plist (props changed) head/net-p2p/linux-jigdo/pkg-plist (props changed) head/net-p2p/linuxdcpp/pkg-plist (props changed) head/net-p2p/lopster/pkg-plist (props changed) head/net-p2p/microdc2/pkg-plist (props changed) head/net-p2p/mldonkey-perlreactor/pkg-plist (props changed) head/net-p2p/mldonkey-urlslave/pkg-plist (props changed) head/net-p2p/mldonkey/pkg-plist (props changed) head/net-p2p/museekplus/pkg-plist (props changed) head/net-p2p/napshare/pkg-plist (props changed) head/net-p2p/opennap/pkg-plist (props changed) head/net-p2p/p5-Net-BitTorrent-File/pkg-plist (props changed) head/net-p2p/p5-Net-BitTorrent-PeerPacket/pkg-plist (props changed) head/net-p2p/p5-Net-DirectConnect-TigerHash/pkg-plist (props changed) head/net-p2p/p5-Net-DirectConnect/pkg-plist (props changed) head/net-p2p/p5-WWW-BitTorrent/pkg-plist (props changed) head/net-p2p/phex/pkg-plist (props changed) head/net-p2p/py-fngrab/pkg-plist (props changed) head/net-p2p/py-kenosis/pkg-plist (props changed) head/net-p2p/py-py2play/pkg-plist (props changed) head/net-p2p/rtgui/pkg-plist (props changed) head/net-p2p/rtorrent-devel/pkg-plist (props changed) head/net-p2p/rtorrent/pkg-plist (props changed) head/net-p2p/squall/pkg-plist (props changed) head/net-p2p/torrentsniff/pkg-plist (props changed) head/net-p2p/transmission-cli/pkg-plist (props changed) head/net-p2p/transmission-daemon/pkg-plist (props changed) head/net-p2p/transmission-gtk/pkg-plist (props changed) head/net-p2p/transmission-qt4/pkg-plist (props changed) head/net-p2p/tribler/pkg-plist (props changed) head/net-p2p/uhub/pkg-plist (props changed) head/net-p2p/valknut/pkg-plist (props changed) head/net-p2p/verlihub/pkg-plist (props changed) head/net-p2p/zetacoin/pkg-plist (props changed) head/net/3proxy/pkg-plist (props changed) head/net/AquaGatekeeper/pkg-plist (props changed) head/net/DarwinStreamingServer/pkg-plist (props changed) head/net/GeoIP/pkg-plist (props changed) head/net/Sockets/pkg-plist (props changed) head/net/abills/pkg-plist (props changed) head/net/acx100/pkg-plist (props changed) head/net/afpfs-ng/pkg-plist (props changed) head/net/aoe/pkg-plist (props changed) head/net/arp-scan/pkg-plist (props changed) head/net/asfrecorder/pkg-plist (props changed) head/net/asio/pkg-plist (props changed) head/net/aslookup/pkg-plist (props changed) head/net/asterisk-oh323/pkg-plist (props changed) head/net/asterisk14-addons/pkg-plist (props changed) head/net/asterisk14/pkg-plist (props changed) head/net/avahi-app/pkg-plist (props changed) head/net/avahi-autoipd/pkg-plist (props changed) head/net/avahi-gtk/pkg-plist (props changed) head/net/avahi-gtk3/pkg-plist (props changed) head/net/avahi-header/pkg-plist (props changed) head/net/avahi-libdns/pkg-plist (props changed) head/net/avahi-qt4/pkg-plist (props changed) head/net/avahi-sharp/pkg-plist (props changed) head/net/balance/pkg-plist (props changed) head/net/bcusdk-eibd/pkg-plist (props changed) head/net/beacon/pkg-plist (props changed) head/net/bindtest/pkg-plist (props changed) head/net/binkd/pkg-plist (props changed) head/net/bird-devel/pkg-plist (props changed) head/net/bird/pkg-plist (props changed) head/net/bird6/pkg-plist (props changed) head/net/blam/pkg-plist (props changed) head/net/bld/pkg-plist (props changed) head/net/bsdproxy/pkg-plist (props changed) head/net/bwi-firmware-kmod/pkg-plist (props changed) head/net/bwn-firmware-kmod/pkg-plist (props changed) head/net/c3270/pkg-plist (props changed) head/net/cagibi/pkg-plist (props changed) head/net/callweaver/pkg-plist (props changed) head/net/clamz/pkg-plist (props changed) head/net/click/pkg-plist (props changed) head/net/clusterit/pkg-plist (props changed) head/net/cnet/pkg-plist (props changed) head/net/coda6_client/pkg-plist (props changed) head/net/coda6_server/pkg-plist (props changed) head/net/corkscrew/pkg-plist (props changed) head/net/crtmpserver/pkg-plist (props changed) head/net/ct/pkg-plist (props changed) head/net/cvsup-mirror/pkg-plist (props changed) head/net/cvsup/pkg-plist (props changed) head/net/cvsync/pkg-plist (props changed) head/net/dante/pkg-plist (props changed) head/net/daq/pkg-plist (props changed) head/net/desktop-data-model/pkg-plist (props changed) head/net/despoof/pkg-plist (props changed) head/net/dgd-kernel/pkg-plist (props changed) head/net/dgd-lpmud/pkg-plist (props changed) head/net/dgd/pkg-plist (props changed) head/net/dhcp6/pkg-plist (props changed) head/net/dictd-database/pkg-plist (props changed) head/net/dictd/pkg-plist (props changed) head/net/dimes/pkg-plist (props changed) head/net/dtcpclient/pkg-plist (props changed) head/net/easysoap/pkg-plist (props changed) head/net/echoping/pkg-plist (props changed) head/net/ecore-con/pkg-plist (props changed) head/net/empty/pkg-plist (props changed) head/net/entitymib/pkg-plist (props changed) head/net/erlang_xmlrpc/pkg-plist (props changed) head/net/etrace/pkg-plist (props changed) head/net/findmtu/pkg-plist (props changed) head/net/forg/pkg-plist (props changed) head/net/fpc-ldap/pkg-plist (props changed) head/net/fpc-pcap/pkg-plist (props changed) head/net/freebsd-uucp/pkg-plist (props changed) head/net/freenet6/pkg-plist (props changed) head/net/freenx/pkg-plist (props changed) head/net/freeradius-client/pkg-plist (props changed) head/net/freeswitch-vanilla-devel/pkg-plist-vanilla (props changed) head/net/freevrrpd/pkg-plist (props changed) head/net/freewais-sf/pkg-plist (props changed) head/net/gini/pkg-plist (props changed) head/net/gkrellmwireless2/pkg-plist (props changed) head/net/gnet2/pkg-plist (props changed) head/net/gnome-mud/pkg-plist (props changed) head/net/gnome-netstatus/pkg-plist (props changed) head/net/gnome-nettool/pkg-plist (props changed) head/net/gnu-dico/pkg-plist (props changed) head/net/gnu-radius/pkg-plist (props changed) head/net/gofish/pkg-plist (props changed) head/net/gogoc/pkg-plist (props changed) head/net/gopher/pkg-plist (props changed) head/net/gotthard/pkg-plist (props changed) head/net/gq/pkg-plist (props changed) head/net/grdesktop/pkg-plist (props changed) head/net/gsk/pkg-plist (props changed) head/net/gspoof/pkg-plist (props changed) head/net/gtic/pkg-plist (props changed) head/net/gtk-vnc/pkg-plist (props changed) head/net/gtknetcat/pkg-plist (props changed) head/net/gupnp-igd/pkg-plist (props changed) head/net/gupnp-ui/pkg-plist (props changed) head/net/haproxy/pkg-plist (props changed) head/net/hawknl-devel/pkg-plist (props changed) head/net/hawknl/pkg-plist (props changed) head/net/hinfo/pkg-plist (props changed) head/net/hlmaster/pkg-plist (props changed) head/net/honeyd/pkg-plist (props changed) head/net/hornetq/pkg-plist (props changed) head/net/howl/pkg-plist (props changed) head/net/httpry/pkg-plist (props changed) head/net/hupnp/pkg-plist (props changed) head/net/iet/pkg-plist (props changed) head/net/igmpproxy/pkg-plist (props changed) head/net/ilbc/pkg-plist (props changed) head/net/imapproxy/pkg-plist (props changed) head/net/ipfw-graph/pkg-plist (props changed) head/net/iplog/pkg-plist (props changed) head/net/ipsorc/pkg-plist (props changed) head/net/ipsvd/pkg-plist (props changed) head/net/irrd/pkg-plist (props changed) head/net/isc-dhcp41-client/pkg-plist (props changed) head/net/isc-dhcp41-relay/pkg-plist (props changed) head/net/isc-dhcp41-server/pkg-plist (props changed) head/net/isc-dhcp42-client/pkg-plist (props changed) head/net/isc-dhcp42-relay/pkg-plist (props changed) head/net/isc-dhcp42-server/pkg-plist (props changed) head/net/iscsi-target/pkg-plist (props changed) head/net/jags/pkg-plist (props changed) head/net/java-beepcore/pkg-plist (props changed) head/net/jicmp/pkg-plist (props changed) head/net/jrdesktop/pkg-plist (props changed) head/net/jwhois/pkg-plist (props changed) head/net/kojoney/pkg-plist (props changed) head/net/kwooty/pkg-plist (props changed) head/net/l2tpd/pkg-plist (props changed) head/net/l4ip/pkg-plist (props changed) head/net/lam/pkg-plist (props changed) head/net/ldapbrowser/pkg-plist (props changed) head/net/ldapdiff/pkg-plist (props changed) head/net/ldapsdk/pkg-plist (props changed) head/net/ldapsh/pkg-plist (props changed) head/net/libarms/pkg-plist (props changed) head/net/libbgpdump/pkg-plist (props changed) head/net/libcmis/pkg-plist (props changed) head/net/libdnet/pkg-plist (props changed) head/net/libexosip2/pkg-plist (props changed) head/net/libfb/pkg-plist (props changed) head/net/libfixbuf/pkg-plist (props changed) head/net/libgnetwork/pkg-plist (props changed) head/net/libgweather/pkg-plist (props changed) head/net/libmateweather/pkg-plist (props changed) head/net/libmediawiki/pkg-plist (props changed) head/net/libmms/pkg-plist (props changed) head/net/libmxp/pkg-plist (props changed) head/net/libnet/pkg-plist (props changed) head/net/libnet10/pkg-plist (props changed) head/net/libnetdude/pkg-plist (props changed) head/net/libnfs/pkg-plist (props changed) head/net/libnids/pkg-plist (props changed) head/net/libnss-mysql/pkg-plist (props changed) head/net/liboauth/pkg-plist (props changed) head/net/libopennet/pkg-plist (props changed) head/net/liboping/pkg-plist (props changed) head/net/libosip/pkg-plist (props changed) head/net/libpcapnav/pkg-plist (props changed) head/net/libproxy-gnome/pkg-plist (props changed) head/net/libproxy-kde/pkg-plist (props changed) head/net/libproxy-perl/pkg-plist (props changed) head/net/libproxy-python/pkg-plist (props changed) head/net/libproxy-webkit/pkg-plist (props changed) head/net/libproxy/pkg-plist (props changed) head/net/librouteros/pkg-plist (props changed) head/net/librsync/pkg-plist (props changed) head/net/libsocket++/pkg-plist (props changed) head/net/libsocketcpp/pkg-plist (props changed) head/net/libsrtp/pkg-plist (props changed) head/net/libtnl/pkg-plist (props changed) head/net/libunp/pkg-plist (props changed) head/net/libutp/pkg-plist (props changed) head/net/libvncserver/pkg-plist (props changed) head/net/libzmq3/pkg-plist (props changed) head/net/linc/pkg-plist (props changed) head/net/link-monitor-applet/pkg-plist (props changed) head/net/linphone-base/pkg-plist (props changed) head/net/linphone-base/pkg-plist.gui (props changed) head/net/linux-f10-nss_ldap/pkg-plist (props changed) head/net/linux-nx-client/pkg-plist (props changed) head/net/linuxigd/pkg-plist (props changed) head/net/ltm/pkg-plist (props changed) head/net/luasocket/pkg-plist (props changed) head/net/mars_nwe/pkg-plist (props changed) head/net/mars_nwe/pkg-plist.DOC (props changed) head/net/mcast-tools/pkg-plist (props changed) head/net/mediaproxy/pkg-plist (props changed) head/net/mediatomb/pkg-plist (props changed) head/net/minidlna/pkg-plist (props changed) head/net/miniupnpc/pkg-plist (props changed) head/net/miredo/pkg-plist (props changed) head/net/mknbi/pkg-plist (props changed) head/net/mmucl/pkg-plist (props changed) head/net/mono-zeroconf/pkg-plist (props changed) head/net/mopd/pkg-plist (props changed) head/net/morebalance/pkg-plist (props changed) head/net/mpd-l2tp-ipv6pd-client/pkg-plist (props changed) head/net/mpich2/pkg-plist (props changed) head/net/nakenchat/pkg-plist (props changed) head/net/nc6/pkg-plist (props changed) head/net/ncplib/pkg-plist (props changed) head/net/ndisc6/pkg-plist (props changed) head/net/nepenthes/pkg-plist (props changed) head/net/net-http/pkg-plist (props changed) head/net/net6/pkg-plist (props changed) head/net/netatalk/pkg-plist (props changed) head/net/netatalk3/pkg-plist (props changed) head/net/netdude/pkg-plist (props changed) head/net/netembryo/pkg-plist (props changed) head/net/netpipes/pkg-plist (props changed) head/net/netspeed_applet/pkg-plist (props changed) head/net/netstrain/pkg-plist (props changed) head/net/nettest/pkg-plist (props changed) head/net/netwib/pkg-plist (props changed) head/net/ng_mikrotik_eoip/pkg-plist (props changed) head/net/nocatsplash/pkg-plist (props changed) head/net/nos-ttb/pkg-plist (props changed) head/net/nph/pkg-plist (props changed) head/net/nss_ldap/pkg-plist (props changed) head/net/nstxd/pkg-plist (props changed) head/net/ntlmaps/pkg-plist (props changed) head/net/ntop/pkg-plist (props changed) head/net/ntp-devel/pkg-plist (props changed) head/net/ntp-rc/pkg-plist (props changed) head/net/ntp/pkg-plist (props changed) head/net/nusoap/pkg-plist (props changed) head/net/nxserver/pkg-plist (props changed) head/net/ohphone/pkg-plist (props changed) head/net/olsrd/pkg-plist (props changed) head/net/online-desktop/pkg-plist (props changed) head/net/openafs/pkg-plist (props changed) head/net/openam/pkg-plist (props changed) head/net/opendpi/pkg-plist (props changed) head/net/openh323/pkg-plist (props changed) head/net/openldap24-server/pkg-plist (props changed) head/net/openldap24-server/pkg-plist.client (props changed) head/net/openmcu/pkg-plist (props changed) head/net/openmpi/pkg-plist (props changed) head/net/openntpd/pkg-plist (props changed) head/net/opennx/pkg-plist (props changed) head/net/openpgm/pkg-plist (props changed) head/net/openradius/pkg-plist (props changed) head/net/openslp/pkg-plist (props changed) head/net/opentracker/pkg-plist (props changed) head/net/openvswitch/pkg-plist (props changed) head/net/ortp/pkg-plist (props changed) head/net/ossp-sa/pkg-plist (props changed) head/net/owamp/pkg-plist (props changed) head/net/p5-Amazon-SQS-Simple/pkg-plist (props changed) head/net/p5-AnyEvent-RabbitMQ/pkg-plist (props changed) head/net/p5-AnyEvent-Twitter-Stream/pkg-plist (props changed) head/net/p5-AnyEvent-Twitter/pkg-plist (props changed) head/net/p5-AnyMQ-AMQP/pkg-plist (props changed) head/net/p5-BBS-Client/pkg-plist (props changed) head/net/p5-Crypt-DH-GMP/pkg-plist (props changed) head/net/p5-Daemon-Generic/pkg-plist (props changed) head/net/p5-Event-tcp/pkg-plist (props changed) head/net/p5-File-Rsync/pkg-plist (props changed) head/net/p5-Frontier-RPC/pkg-plist (props changed) head/net/p5-Geo-IP-PurePerl/pkg-plist (props changed) head/net/p5-Geo-IP/pkg-plist (props changed) head/net/p5-Google-SAML-Request/pkg-plist (props changed) head/net/p5-Google-SAML-Response/pkg-plist (props changed) head/net/p5-IO-Interface/pkg-plist (props changed) head/net/p5-IO-Socket-Multicast/pkg-plist (props changed) head/net/p5-IO-Socket-Multicast6/pkg-plist (props changed) head/net/p5-IP-Country/pkg-plist (props changed) head/net/p5-JavaScript-RPC/pkg-plist (props changed) head/net/p5-Net-AMQP/pkg-plist (props changed) head/net/p5-Net-APNs-Extended/pkg-plist (props changed) head/net/p5-Net-Address-Ethernet/pkg-plist (props changed) head/net/p5-Net-Address-IPv4-Local/pkg-plist (props changed) head/net/p5-Net-Amazon-AWSSign/pkg-plist (props changed) head/net/p5-Net-Amazon-MechanicalTurk/pkg-plist (props changed) head/net/p5-Net-Amazon-S3/pkg-plist (props changed) head/net/p5-Net-Amazon-Thumbnail/pkg-plist (props changed) head/net/p5-Net-Amazon/pkg-plist (props changed) head/net/p5-Net-Appliance-Phrasebook/pkg-plist (props changed) head/net/p5-Net-Blogger/pkg-plist (props changed) head/net/p5-Net-CIDR-Lite/pkg-plist (props changed) head/net/p5-Net-CIDR-Set/pkg-plist (props changed) head/net/p5-Net-CSTA/pkg-plist (props changed) head/net/p5-Net-CascadeCopy/pkg-plist (props changed) head/net/p5-Net-Cassandra-Easy/pkg-plist (props changed) head/net/p5-Net-DAV-Server/pkg-plist (props changed) head/net/p5-Net-DHCP/pkg-plist (props changed) head/net/p5-Net-DLookup/pkg-plist (props changed) head/net/p5-Net-Daemon/pkg-plist (props changed) head/net/p5-Net-Delicious/pkg-plist (props changed) head/net/p5-Net-Dropbox-API/pkg-plist (props changed) head/net/p5-Net-EPP-Proxy/pkg-plist (props changed) head/net/p5-Net-FS-Flickr/pkg-plist (props changed) head/net/p5-Net-FS-Gmail/pkg-plist (props changed) head/net/p5-Net-FTP-File/pkg-plist (props changed) head/net/p5-Net-Finger/pkg-plist (props changed) head/net/p5-Net-Frame-Dump/pkg-plist (props changed) head/net/p5-Net-Frame/pkg-plist (props changed) head/net/p5-Net-Gnats/pkg-plist (props changed) head/net/p5-Net-Google-Calendar/pkg-plist (props changed) head/net/p5-Net-Google/pkg-plist (props changed) head/net/p5-Net-HL7/pkg-plist (props changed) head/net/p5-Net-HTTP/pkg-plist (props changed) head/net/p5-Net-Hiveminder/pkg-plist (props changed) head/net/p5-Net-INET6Glue/pkg-plist (props changed) head/net/p5-Net-IP-Minimal/pkg-plist (props changed) head/net/p5-Net-IPTrie/pkg-plist (props changed) head/net/p5-Net-IRR/pkg-plist (props changed) head/net/p5-Net-Ifconfig-Wrapper/pkg-plist (props changed) head/net/p5-Net-Interface/pkg-plist (props changed) head/net/p5-Net-Jifty/pkg-plist (props changed) head/net/p5-Net-LDAP-Server-Test/pkg-plist (props changed) head/net/p5-Net-Mosso-CloudFiles/pkg-plist (props changed) head/net/p5-Net-MovableType/pkg-plist (props changed) head/net/p5-Net-NBName/pkg-plist (props changed) head/net/p5-Net-NBsocket/pkg-plist (props changed) head/net/p5-Net-NIS-Listgroup/pkg-plist (props changed) head/net/p5-Net-NIS/pkg-plist (props changed) head/net/p5-Net-OAuth/pkg-plist (props changed) head/net/p5-Net-OpenID-Consumer/pkg-plist (props changed) head/net/p5-Net-OpenStack-Attack/pkg-plist (props changed) head/net/p5-Net-Packet-Target/pkg-plist (props changed) head/net/p5-Net-Packet/pkg-plist (props changed) head/net/p5-Net-ParseWhois/pkg-plist (props changed) head/net/p5-Net-Patricia/pkg-plist (props changed) head/net/p5-Net-Pcap/pkg-plist (props changed) head/net/p5-Net-PcapUtils/pkg-plist (props changed) head/net/p5-Net-RTP/pkg-plist (props changed) head/net/p5-Net-Radius/pkg-plist (props changed) head/net/p5-Net-Random/pkg-plist (props changed) head/net/p5-Net-RawSock/pkg-plist (props changed) head/net/p5-Net-Riak/pkg-plist (props changed) head/net/p5-Net-SAP/pkg-plist (props changed) head/net/p5-Net-SCP/pkg-plist (props changed) head/net/p5-Net-SDP/pkg-plist (props changed) head/net/p5-Net-SFTP/pkg-plist (props changed) head/net/p5-Net-SIP/pkg-plist (props changed) head/net/p5-Net-SNPP/pkg-plist (props changed) head/net/p5-Net-SSH-Mechanize/pkg-plist (props changed) head/net/p5-Net-Server/pkg-plist (props changed) head/net/p5-Net-Subnet/pkg-plist (props changed) head/net/p5-Net-TCLink/pkg-plist (props changed) head/net/p5-Net-Traceroute-PurePerl/pkg-plist (props changed) head/net/p5-Net-Traceroute6/pkg-plist (props changed) head/net/p5-Net-Twitter/pkg-plist (props changed) head/net/p5-Net-VNC/pkg-plist (props changed) head/net/p5-Net-Whois-ARIN/pkg-plist (props changed) head/net/p5-Net-Whois-IP/pkg-plist (props changed) head/net/p5-Net-Whois-Raw/pkg-plist (props changed) head/net/p5-Net-XWhois/pkg-plist (props changed) head/net/p5-Net-Yadis/pkg-plist (props changed) head/net/p5-Net-Z3950-SimpleServer/pkg-plist (props changed) head/net/p5-Net-ext/pkg-plist (props changed) head/net/p5-Net/pkg-plist (props changed) head/net/p5-NetPacket/pkg-plist (props changed) head/net/p5-OurNet-BBS/pkg-plist (props changed) head/net/p5-POE-Component-Client-Keepalive/pkg-plist (props changed) head/net/p5-POE-Component-Client-Ping/pkg-plist (props changed) head/net/p5-POE-Component-Client-Traceroute/pkg-plist (props changed) head/net/p5-POE-Component-ControlPort/pkg-plist (props changed) head/net/p5-POE-Component-Generic/pkg-plist (props changed) head/net/p5-POE-Component-Pcap/pkg-plist (props changed) head/net/p5-POE-Component-PubSub/pkg-plist (props changed) head/net/p5-POE-Component-Server-Twirc/pkg-plist (props changed) head/net/p5-POE-Component-Spread/pkg-plist (props changed) head/net/p5-POSIX-getpeername/pkg-plist (props changed) head/net/p5-PlRPC/pkg-plist (props changed) head/net/p5-REST-Application/pkg-plist (props changed) head/net/p5-REST-Google/pkg-plist (props changed) head/net/p5-RPC-XML/pkg-plist (props changed) head/net/p5-ResourcePool-Resource-Net-LDAP/pkg-plist (props changed) head/net/p5-ResourcePool-Resource-SOAP-Lite/pkg-plist (props changed) head/net/p5-S3/pkg-plist (props changed) head/net/p5-SOAP-Amazon-S3/pkg-plist (props changed) head/net/p5-SOAP-Data-Builder/pkg-plist (props changed) head/net/p5-SOAP/pkg-plist (props changed) head/net/p5-Samba-LDAP/pkg-plist (props changed) head/net/p5-Server-Starter/pkg-plist (props changed) head/net/p5-Socket-Class/pkg-plist (props changed) head/net/p5-Socket-Multicast6/pkg-plist (props changed) head/net/p5-Socks/pkg-plist (props changed) head/net/p5-Sort-Key-IPv4/pkg-plist (props changed) head/net/p5-Spread-Message/pkg-plist (props changed) head/net/p5-Spread-Session/pkg-plist (props changed) head/net/p5-URI-OpenURL/pkg-plist (props changed) head/net/p5-URI-Template/pkg-plist (props changed) head/net/p5-URI/pkg-plist (props changed) head/net/p5-Validate-Net/pkg-plist (props changed) head/net/p5-WebService-Dropbox/pkg-plist (props changed) head/net/p5-X500-DN/pkg-plist (props changed) head/net/p5-XML-Compile-SOAP-AnyEvent/pkg-plist (props changed) head/net/p5-XML-Compile-SOAP-Daemon/pkg-plist (props changed) head/net/p5-XML-Compile-SOAP/pkg-plist (props changed) head/net/p5-XML-RPC-Fast/pkg-plist (props changed) head/net/p5-XPC/pkg-plist (props changed) head/net/p5-ZeroMQ/pkg-plist (props changed) head/net/packetdrill/pkg-plist (props changed) head/net/pdb/pkg-plist (props changed) head/net/pecl-radius/pkg-plist (props changed) head/net/pfinger/pkg-plist (props changed) head/net/phamm/pkg-plist (props changed) head/net/phpldapadmin/pkg-plist-chunk (props changed) head/net/pipsecd/pkg-plist (props changed) head/net/pktanon/pkg-plist (props changed) head/net/pmf/pkg-plist (props changed) head/net/poptop/pkg-plist (props changed) head/net/portfwd/pkg-plist (props changed) head/net/pppd23/pkg-plist (props changed) head/net/pppoa/pkg-plist (props changed) head/net/proxy-suite/pkg-plist (props changed) head/net/pvm++/pkg-plist (props changed) head/net/pxe/pkg-plist (props changed) head/net/py-amqplib/pkg-plist (props changed) head/net/py-avahi/pkg-plist (props changed) head/net/py-beanstalkc/pkg-plist (props changed) head/net/py-cloudfiles/pkg-plist (props changed) head/net/py-eventlet/pkg-plist (props changed) head/net/py-iplib/pkg-plist (props changed) head/net/py-ldap2/pkg-plist (props changed) head/net/py-ldaptor/pkg-plist (props changed) head/net/py-libcloud/pkg-plist (props changed) head/net/py-libdnet/pkg-plist (props changed) head/net/py-libnet/pkg-plist (props changed) head/net/py-miniupnpc/pkg-plist (props changed) head/net/py-msrplib/pkg-plist (props changed) head/net/py-netifaces/pkg-plist (props changed) head/net/py-netlib/pkg-plist (props changed) head/net/py-oauth/pkg-plist (props changed) head/net/py-oauth2/pkg-plist (props changed) head/net/py-pcs/pkg-plist (props changed) head/net/py-port-for/pkg-plist (props changed) head/net/py-pysendfile/pkg-plist (props changed) head/net/py-s3cmd/pkg-plist (props changed) head/net/py-soappy/pkg-plist (props changed) head/net/py-soapy/pkg-plist (props changed) head/net/py-suds/pkg-plist (props changed) head/net/py-tofu/pkg-plist (props changed) head/net/py-twistedPair/pkg-plist (props changed) head/net/py-twitter/pkg-plist (props changed) head/net/py-txamqp/pkg-plist (props changed) head/net/py-xmlrpclib/pkg-plist (props changed) head/net/py-yadis/pkg-plist (props changed) head/net/pygopherd/pkg-plist (props changed) head/net/pyrad/pkg-plist (props changed) head/net/pythondirector/pkg-plist (props changed) head/net/qoauth/pkg-plist (props changed) head/net/quagga-re/pkg-plist (props changed) head/net/quagga/pkg-plist (props changed) head/net/queso/pkg-plist (props changed) head/net/quoted/pkg-plist (props changed) head/net/rabbitmq-c-devel/pkg-plist (props changed) head/net/rabbitmq-c/pkg-plist (props changed) head/net/rabbitmq/pkg-plist (props changed) head/net/radiator/pkg-plist (props changed) head/net/radiusclient/pkg-plist (props changed) head/net/radiusd-cistron/pkg-plist (props changed) head/net/radsecproxy/pkg-plist (props changed) head/net/raggle/pkg-plist (props changed) head/net/ranch/pkg-plist (props changed) head/net/rdist6/pkg-plist (props changed) head/net/relayd/pkg-plist (props changed) head/net/remmina-applet/pkg-plist (props changed) head/net/remotedesk/pkg-plist (props changed) head/net/rexx-sock/pkg-plist (props changed) head/net/ris/pkg-plist (props changed) head/net/rp-pppoe/pkg-plist (props changed) head/net/rshell/pkg-plist (props changed) head/net/rsmb/pkg-plist (props changed) head/net/rsplib/pkg-plist (props changed) head/net/rsync/pkg-plist (props changed) head/net/rtg/pkg-plist (props changed) head/net/rtpproxy/pkg-plist (props changed) head/net/ruby-dict/pkg-plist (props changed) head/net/ruby-icmp/pkg-plist (props changed) head/net/ruby-ldap/pkg-plist (props changed) head/net/ruby-net-geoip/pkg-plist (props changed) head/net/ruby-tserver/pkg-plist (props changed) head/net/rude/pkg-plist (props changed) head/net/rwhoisd/pkg-plist (props changed) head/net/samba-libsmbclient/pkg-plist (props changed) head/net/samba-smbclient/pkg-plist (props changed) head/net/samba36/pkg-plist (props changed) head/net/samba36/pkg-plist.swat (props changed) head/net/samba4/pkg-plist (props changed) head/net/samba4wins/pkg-plist (props changed) head/net/scamper/pkg-plist (props changed) head/net/scapy/pkg-plist (props changed) head/net/scr_ipfm/pkg-plist (props changed) head/net/scribe/pkg-plist (props changed) head/net/sdl_net/pkg-plist (props changed) head/net/sendfile/pkg-plist (props changed) head/net/ser/pkg-plist (props changed) head/net/service-discovery-applet/pkg-plist (props changed) head/net/serviio/pkg-plist (props changed) head/net/shadowsocks-libev/pkg-plist (props changed) head/net/shmux/pkg-plist (props changed) head/net/silc-client/pkg-plist (props changed) head/net/silc-irssi-plugin/pkg-plist (props changed) head/net/silc-server/pkg-plist (props changed) head/net/sippy_b2bua/pkg-plist (props changed) head/net/siproxd/pkg-plist (props changed) head/net/sixxs-aiccu/pkg-plist (props changed) head/net/skyfish/pkg-plist (props changed) head/net/skystar2/pkg-plist (props changed) head/net/slurm/pkg-plist (props changed) head/net/smb4k-kde4/pkg-plist (props changed) head/net/smbldap-tools/pkg-plist (props changed) head/net/smm++/pkg-plist (props changed) head/net/sniffit/pkg-plist (props changed) head/net/sntop/pkg-plist (props changed) head/net/socketbind/pkg-plist (props changed) head/net/splatd/pkg-plist (props changed) head/net/spread-j/pkg-plist (props changed) head/net/spread/pkg-plist (props changed) head/net/sprinkle/pkg-plist (props changed) head/net/spserver/pkg-plist (props changed) head/net/ss5/pkg-plist (props changed) head/net/ssltunnel-client/pkg-plist (props changed) head/net/ssltunnel-server/pkg-plist (props changed) head/net/ssvnc/pkg-plist (props changed) head/net/stf-6rd-kmod/pkg-plist (props changed) head/net/stone/pkg-plist (props changed) head/net/stund/pkg-plist (props changed) head/net/suckblow/pkg-plist (props changed) head/net/tac_plus-libradius/pkg-plist (props changed) head/net/tac_plus4/pkg-plist (props changed) head/net/tapidbus/pkg-plist (props changed) head/net/tcpick/pkg-plist (props changed) head/net/tcping/pkg-plist (props changed) head/net/tcpreen/pkg-plist (props changed) head/net/tcpsg/pkg-plist (props changed) head/net/tcpshow/pkg-plist (props changed) head/net/tcpstat/pkg-plist (props changed) head/net/tcptraceroute-devel/pkg-plist (props changed) head/net/tcpview/pkg-plist (props changed) head/net/tcpxd/pkg-plist (props changed) head/net/thcrut/pkg-plist (props changed) head/net/tightvnc/pkg-plist (props changed) head/net/tinyfugue/pkg-plist (props changed) head/net/tinyldap/pkg-plist (props changed) head/net/tn5250/pkg-plist (props changed) head/net/tn5250j/pkg-plist (props changed) head/net/torsocks/pkg-plist (props changed) head/net/traff/pkg-plist (props changed) head/net/trafshow/pkg-plist (props changed) head/net/trafshow3/pkg-plist (props changed) head/net/tramp/pkg-plist (props changed) head/net/trickle/pkg-plist (props changed) head/net/tridiavnc/pkg-plist (props changed) head/net/tsclient/pkg-plist (props changed) head/net/tsocks/pkg-plist (props changed) head/net/ttbudget/pkg-plist (props changed) head/net/ttlscan/pkg-plist (props changed) head/net/tucan/pkg-plist (props changed) head/net/twitux/pkg-plist (props changed) head/net/udt/pkg-plist (props changed) head/net/ulxmlrpcpp/pkg-plist (props changed) head/net/unison-devel/pkg-plist (props changed) head/net/unison/pkg-plist (props changed) head/net/unison232/pkg-plist (props changed) head/net/unix2tcp/pkg-plist (props changed) head/net/uriparser/pkg-plist (props changed) head/net/urlendec/pkg-plist (props changed) head/net/userfw/pkg-plist (props changed) head/net/ushare/pkg-plist (props changed) head/net/utftpd/pkg-plist (props changed) head/net/v6eval/pkg-plist (props changed) head/net/vde/pkg-plist (props changed) head/net/vde2/pkg-plist (props changed) head/net/vinagre/pkg-plist (props changed) head/net/vino/pkg-plist (props changed) head/net/vmware-vsphere-cli/pkg-plist (props changed) head/net/vnc/pkg-plist (props changed) head/net/vncreflector/pkg-plist (props changed) head/net/vtun/pkg-plist (props changed) head/net/wackamole/pkg-plist (props changed) head/net/wackford-squeers/pkg-plist (props changed) head/net/wakeonlan/pkg-plist (props changed) head/net/wired-tracker/pkg-plist (props changed) head/net/wired/pkg-plist (props changed) head/net/wireshark/pkg-plist (props changed) head/net/wmnetload/pkg-plist (props changed) head/net/wmpiki/pkg-plist (props changed) head/net/wol/pkg-plist (props changed) head/net/wowzamediaserverpro/pkg-plist (props changed) head/net/wping/pkg-plist (props changed) head/net/x11vnc/pkg-plist (props changed) head/net/xbone/pkg-plist (props changed) head/net/xferstats/pkg-plist (props changed) head/net/xipdump/pkg-plist (props changed) head/net/xipmsg/pkg-plist (props changed) head/net/xisp/pkg-plist (props changed) head/net/xmlrpc-c/pkg-plist (props changed) head/net/xmlrpc-epi/pkg-plist (props changed) head/net/xorp-devel/pkg-plist (props changed) head/net/xorp/pkg-plist (props changed) head/net/xprobe/pkg-plist (props changed) head/net/xpvm/pkg-plist (props changed) head/net/yaph/pkg-plist (props changed) head/net/yaz++/pkg-plist (props changed) head/net/yazproxy/pkg-plist (props changed) head/net/yptransitd/pkg-plist (props changed) head/net/zebra/pkg-plist (props changed) head/net/zillion/pkg-plist (props changed) head/news/atp/pkg-plist (props changed) head/news/aub/pkg-plist (props changed) head/news/cleanfeed/pkg-plist (props changed) head/news/cnews/pkg-plist (props changed) head/news/crashmail/pkg-plist (props changed) head/news/diablo/pkg-plist (props changed) head/news/dnews/pkg-plist (props changed) head/news/fidogate-ds/pkg-plist (props changed) head/news/fidogate/pkg-plist (props changed) head/news/golded+/pkg-plist (props changed) head/news/hellanzb/pkg-plist (props changed) head/news/husky-base-devel/pkg-plist (props changed) head/news/husky-base/pkg-plist (props changed) head/news/husky-bsopack/pkg-plist (props changed) head/news/husky-fidoconf-devel/pkg-plist (props changed) head/news/husky-fidoconf/pkg-plist (props changed) head/news/husky-hpt-devel/pkg-plist (props changed) head/news/husky-hpt/pkg-plist (props changed) head/news/husky-hpucode/pkg-plist (props changed) head/news/husky-htick/pkg-plist (props changed) head/news/husky-msged/pkg-plist (props changed) head/news/husky-nltools/pkg-plist (props changed) head/news/husky-smapi-devel/pkg-plist (props changed) head/news/husky-smapi/pkg-plist (props changed) head/news/ifmail/pkg-plist (props changed) head/news/knews/pkg-plist (props changed) head/news/lusernet/pkg-plist (props changed) head/news/multisuck/pkg-plist (props changed) head/news/newscache/pkg-plist (props changed) head/news/newsgrab/pkg-plist (props changed) head/news/nget/pkg-plist (props changed) head/news/nn/pkg-plist (props changed) head/news/nntp/pkg-plist (props changed) head/news/nntpcache/pkg-plist (props changed) head/news/noffle/pkg-plist (props changed) head/news/p5-NNML/pkg-plist (props changed) head/news/p5-News-Article/pkg-plist (props changed) head/news/pan/pkg-plist (props changed) head/news/papercut/pkg-plist (props changed) head/news/pgpmoose/pkg-plist (props changed) head/news/plor/pkg-plist (props changed) head/news/py-pynzb/pkg-plist (props changed) head/news/py-twistedNews/pkg-plist (props changed) head/news/py-yenc/pkg-plist (props changed) head/news/rawdog/pkg-plist (props changed) head/news/s-news/pkg-plist (props changed) head/news/slnr/pkg-plist (props changed) head/news/slrn/pkg-plist (props changed) head/news/slrnconf/pkg-plist (props changed) head/news/sn/pkg-plist (props changed) head/news/suck/pkg-plist (props changed) head/news/trn/pkg-plist (props changed) head/news/trn4/pkg-plist (props changed) head/news/ubh/pkg-plist (props changed) head/news/xpn/pkg-plist (props changed) head/news/xrn/pkg-plist (props changed) head/news/yencode/pkg-plist (props changed) head/palm/gnome-pilot-conduits/pkg-plist (props changed) head/palm/gnome-pilot/pkg-plist (props changed) head/palm/imgvtopgm/pkg-plist (props changed) head/palm/jpilot/pkg-plist (props changed) head/palm/libmal/pkg-plist (props changed) head/palm/p5-Palm-PalmDoc/pkg-plist (props changed) head/palm/p5-Palm/pkg-plist (props changed) head/palm/palmos-sdk/pkg-plist (props changed) head/palm/pilot-link/pkg-plist (props changed) head/palm/pilrc/pkg-plist (props changed) head/palm/ppmtoTbmp/pkg-plist (props changed) head/palm/py-synce-librapi2/pkg-plist (props changed) head/palm/py-synce-librra/pkg-plist (props changed) head/palm/synce-gvfs/pkg-plist (props changed) head/palm/synce-hal/pkg-plist (props changed) head/palm/synce-librapi2/pkg-plist (props changed) head/palm/synce-librra/pkg-plist (props changed) head/palm/synce-libsynce/pkg-plist (props changed) head/palm/synce-serial/pkg-plist (props changed) head/palm/synce-sync-engine/pkg-plist (props changed) head/palm/synce-sync-engine/pkg-plist.plugin (props changed) head/polish/aspell/pkg-plist (props changed) head/polish/fortunepl/pkg-plist (props changed) head/polish/gnugadu2/pkg-plist (props changed) head/polish/kadu/pkg-plist (props changed) head/polish/libtlen/pkg-plist (props changed) head/polish/qfaktury/pkg-plist (props changed) head/polish/sms2/pkg-plist (props changed) head/polish/trf/pkg-plist (props changed) head/ports-mgmt/bpm/pkg-plist (props changed) head/ports-mgmt/distilator/pkg-plist (props changed) head/ports-mgmt/fbsdmon/pkg-plist (props changed) head/ports-mgmt/jailaudit/pkg-plist (props changed) head/ports-mgmt/kpackagekit/pkg-plist (props changed) head/ports-mgmt/kports-qt4/pkg-plist (props changed) head/ports-mgmt/p5-App-Pm2Port/pkg-plist (props changed) head/ports-mgmt/p5-FreeBSD-Ports/pkg-plist (props changed) head/ports-mgmt/packagekit-qt4/pkg-plist (props changed) head/ports-mgmt/packagekit/pkg-plist (props changed) head/ports-mgmt/pib/pkg-plist (props changed) head/ports-mgmt/pkg-devel/pkg-plist (props changed) head/ports-mgmt/pkg-plist/ (props changed) head/ports-mgmt/pkg/pkg-plist (props changed) head/ports-mgmt/pkg_install/pkg-plist (props changed) head/ports-mgmt/pkg_trackinst/pkg-plist (props changed) head/ports-mgmt/pkgfe/pkg-plist (props changed) head/ports-mgmt/portaudit-db/pkg-plist (props changed) head/ports-mgmt/portaudit/pkg-plist (props changed) head/ports-mgmt/portbuilder/pkg-plist (props changed) head/ports-mgmt/porteasy/pkg-plist (props changed) head/ports-mgmt/portscout/pkg-plist (props changed) head/ports-mgmt/portshaker-config/pkg-plist (props changed) head/ports-mgmt/portshaker/pkg-plist (props changed) head/ports-mgmt/porttools/pkg-plist (props changed) head/ports-mgmt/portupgrade-devel/pkg-plist (props changed) head/ports-mgmt/portupgrade/pkg-plist (props changed) head/ports-mgmt/tinderbox-devel/pkg-plist (props changed) head/portuguese/aspell-pt_BR/pkg-plist (props changed) head/portuguese/aspell-pt_PT/pkg-plist (props changed) head/portuguese/ispell-pt_BR/pkg-plist (props changed) head/print/a2pdf/pkg-plist (props changed) head/print/a2ps/pkg-plist (props changed) head/print/abc2mtex/pkg-plist (props changed) head/print/abntex/pkg-plist (props changed) head/print/acrobatviewer/pkg-plist (props changed) head/print/acroread8/pkg-plist (props changed) head/print/acroread9/pkg-plist (props changed) head/print/adobe-cmaps/pkg-plist (props changed) head/print/afm/pkg-plist (props changed) head/print/alignmargins/pkg-plist (props changed) head/print/apsfilter/pkg-plist (props changed) head/print/auctex/pkg-plist (props changed) head/print/biblio-py/pkg-plist (props changed) head/print/bibview/pkg-plist (props changed) head/print/cdlabelgen/pkg-plist (props changed) head/print/cm-super/pkg-plist (props changed) head/print/cups-base/pkg-plist.client (props changed) head/print/cups-base/pkg-plist.image (props changed) head/print/cups-bjnp/pkg-plist (props changed) head/print/cups-pdf/pkg-plist (props changed) head/print/cups-pk-helper/pkg-plist (props changed) head/print/cups-pstoraster/pkg-plist (props changed) head/print/cups-samba/pkg-plist (props changed) head/print/dot2tex/pkg-plist (props changed) head/print/dvipdfmx/pkg-plist (props changed) head/print/dvips/pkg-plist (props changed) head/print/dvipsk-tetex/pkg-plist (props changed) head/print/easylatex/pkg-plist (props changed) head/print/enscript-letter/pkg-plist (props changed) head/print/enscriptfonts/pkg-plist (props changed) head/print/epsonepl/pkg-plist (props changed) head/print/font-amsfonts/pkg-plist (props changed) head/print/fontforge/pkg-plist (props changed) head/print/foo2zjs/pkg-plist (props changed) head/print/foomatic-db-engine/pkg-plist (props changed) head/print/foomatic-db-hpijs/pkg-plist (props changed) head/print/foomatic-db/pkg-plist (props changed) head/print/foomatic-filters/pkg-plist (props changed) head/print/fpdf/pkg-plist (props changed) head/print/freetype-tools/pkg-plist (props changed) head/print/freetype/pkg-plist (props changed) head/print/ggv/pkg-plist (props changed) head/print/ghostscript7-commfont/pkg-plist (props changed) head/print/ghostscript7/pkg-plist (props changed) head/print/ghostscript8/pkg-plist (props changed) head/print/ghostscript9-agpl/pkg-plist (props changed) head/print/ghostscript9/pkg-plist (props changed) head/print/gimp-gutenprint/pkg-plist (props changed) head/print/gl2ps/pkg-plist (props changed) head/print/gnome-cups-manager/pkg-plist (props changed) head/print/gnome-specimen/pkg-plist (props changed) head/print/gnomephotoprinter/pkg-plist (props changed) head/print/gribouy/pkg-plist (props changed) head/print/gsfonts/pkg-plist (props changed) head/print/gspdf/pkg-plist (props changed) head/print/gtklp/pkg-plist (props changed) head/print/guitartex/pkg-plist (props changed) head/print/gutenprint-base/pkg-plist (props changed) head/print/gutenprint-cups/pkg-plist (props changed) head/print/gutenprint-foomatic/pkg-plist (props changed) head/print/gutenprint-ijs/pkg-plist (props changed) head/print/hp2xx/pkg-plist (props changed) head/print/hpijs/pkg-plist (props changed) head/print/hyperlatex/pkg-plist (props changed) head/print/jadetex/pkg-plist (props changed) head/print/kpdftool/pkg-plist (props changed) head/print/latex-aa/pkg-plist (props changed) head/print/latex-aastex/pkg-plist (props changed) head/print/latex-auto-greek/pkg-plist (props changed) head/print/latex-bytefield/pkg-plist (props changed) head/print/latex-caption/pkg-plist (props changed) head/print/latex-chapterfolder/pkg-plist (props changed) head/print/latex-circ/pkg-plist (props changed) head/print/latex-cjk/pkg-plist (props changed) head/print/latex-feynmf/pkg-plist (props changed) head/print/latex-keystroke/pkg-plist (props changed) head/print/latex-logpap/pkg-plist (props changed) head/print/latex-ltablex/pkg-plist (props changed) head/print/latex-mathabx/pkg-plist (props changed) head/print/latex-nomencl/pkg-plist (props changed) head/print/latex-pgf/pkg-plist (props changed) head/print/latex-prettyref/pkg-plist (props changed) head/print/latex-resume/pkg-plist (props changed) head/print/latex-subfloat/pkg-plist (props changed) head/print/latex-supertabular/pkg-plist (props changed) head/print/latex-svninfo/pkg-plist (props changed) head/print/latex-timing/pkg-plist (props changed) head/print/latex-tipa/pkg-plist (props changed) head/print/latex-ucs/pkg-plist (props changed) head/print/latex/pkg-plist (props changed) head/print/latex2rtf/pkg-plist (props changed) head/print/latex2slides/pkg-plist (props changed) head/print/lgrind/pkg-plist (props changed) head/print/libgnomecups/pkg-plist (props changed) head/print/libgnomeprint/pkg-plist (props changed) head/print/libgnomeprintmm/pkg-plist (props changed) head/print/libharu/pkg-plist (props changed) head/print/libijs/pkg-plist (props changed) head/print/libotf/pkg-plist (props changed) head/print/libpaper/pkg-plist (props changed) head/print/libppd/pkg-plist (props changed) head/print/libspectre/pkg-plist (props changed) head/print/lprps/pkg-plist (props changed) head/print/lyx/pkg-plist (props changed) head/print/magicfilter/pkg-plist (props changed) head/print/makeindex/pkg-plist (props changed) head/print/mp-letter/pkg-plist (props changed) head/print/musixtex/pkg-plist (props changed) head/print/muttprint/pkg-plist (props changed) head/print/nenscript/pkg-plist (props changed) head/print/p5-PDFLib/pkg-plist (props changed) head/print/p5-PostScript-Simple/pkg-plist (props changed) head/print/p5-PostScript/pkg-plist (props changed) head/print/p5-Text-PDF/pkg-plist (props changed) head/print/panda/pkg-plist (props changed) head/print/passivetex/pkg-plist (props changed) head/print/pcal/pkg-plist (props changed) head/print/pdflib/pkg-plist (props changed) head/print/pdfmod/pkg-plist (props changed) head/print/pdq/pkg-plist (props changed) head/print/photoprint/pkg-plist (props changed) head/print/phppdflib/pkg-plist (props changed) head/print/pkfonts300/pkg-plist.118 (props changed) head/print/pkfonts300/pkg-plist.240 (props changed) head/print/pkfonts300/pkg-plist.300 (props changed) head/print/pkfonts300/pkg-plist.360 (props changed) head/print/pkfonts300/pkg-plist.400 (props changed) head/print/pkfonts300/pkg-plist.600 (props changed) head/print/pkipplib/pkg-plist (props changed) head/print/pkpgcounter/pkg-plist (props changed) head/print/ps2eps/pkg-plist (props changed) head/print/psdim/pkg-plist (props changed) head/print/psutils/pkg-plist (props changed) head/print/py-pdf/pkg-plist (props changed) head/print/py-pyscript/pkg-plist (props changed) head/print/py-reportlab/pkg-plist (props changed) head/print/py-reportlab2/pkg-plist (props changed) head/print/py-trml2pdf/pkg-plist (props changed) head/print/rtf2latex/pkg-plist (props changed) head/print/rtf2latex2e/pkg-plist (props changed) head/print/ruby-panda/pkg-plist (props changed) head/print/sgf2tex/pkg-plist (props changed) head/print/splix/pkg-plist (props changed) head/print/system-config-printer/pkg-plist (props changed) head/print/t1utils/pkg-plist (props changed) head/print/teTeX-base/pkg-plist (props changed) head/print/teTeX-texmf/pkg-plist (props changed) head/print/teTeX/pkg-plist (props changed) head/print/tex-aleph/pkg-plist (props changed) head/print/tex-dvipdfmx/pkg-plist (props changed) head/print/tex-dvipsk/pkg-plist (props changed) head/print/tex-jadetex/pkg-plist (props changed) head/print/tex-luatex/pkg-plist (props changed) head/print/tex-mfpic/pkg-plist (props changed) head/print/tex-omegaware-old/pkg-plist (props changed) head/print/tex-ptexenc/pkg-plist (props changed) head/print/tex-xdvik/pkg-plist (props changed) head/print/tex-xetex/pkg-plist (props changed) head/print/tex-xmltex/pkg-plist (props changed) head/print/tex/pkg-plist (props changed) head/print/texlive-base/pkg-plist (props changed) head/print/texlive-docs/pkg-plist (props changed) head/print/texlive-infra/pkg-plist (props changed) head/print/texlive-texmf/pkg-plist (props changed) head/print/texpower/pkg-plist (props changed) head/print/transfig/pkg-plist (props changed) head/print/ttf2pt1/pkg-plist (props changed) head/print/typetools/pkg-plist (props changed) head/print/utopia/pkg-plist (props changed) head/print/wprint/pkg-plist (props changed) head/print/xdvi/pkg-plist (props changed) head/print/xdvik/pkg-plist (props changed) head/print/xmltex/pkg-plist (props changed) head/print/xtexsh/pkg-plist (props changed) head/print/yatex/pkg-plist (props changed) head/russian/artwiz-ru/pkg-plist (props changed) head/russian/aspell/pkg-plist (props changed) head/russian/bugzilla40/pkg-plist (props changed) head/russian/bugzilla42/pkg-plist (props changed) head/russian/bugzilla44/pkg-plist (props changed) head/russian/fortune-bashorgru/pkg-plist (props changed) head/russian/fortuneru/pkg-plist (props changed) head/russian/ircd-hybrid/pkg-plist (props changed) head/russian/koi8r-ps/pkg-plist (props changed) head/russian/libcyrillic/pkg-plist (props changed) head/russian/mueller-dic/pkg-plist (props changed) head/russian/p5-Convert-Cyrillic/pkg-plist (props changed) head/russian/p5-Lingua-DetectCyrillic/pkg-plist (props changed) head/russian/p5-Lingua-RU-Charset/pkg-plist (props changed) head/russian/p5-XML-Parser-encodings/pkg-plist (props changed) head/russian/p5-cyrillic/pkg-plist (props changed) head/russian/prawda/pkg-plist (props changed) head/russian/pscyr/pkg-plist (props changed) head/russian/rus-ispell/pkg-plist (props changed) head/russian/stardict-bars/pkg-plist (props changed) head/russian/stardict-computer/pkg-plist (props changed) head/russian/stardict-dal/pkg-plist (props changed) head/russian/stardict-engcom/pkg-plist (props changed) head/russian/stardict-mueller7/pkg-plist (props changed) head/russian/stardict-mueller7accent/pkg-plist (props changed) head/russian/stardict-pc/pkg-plist (props changed) head/russian/tac+ia/pkg-plist (props changed) head/russian/xruskb/pkg-plist (props changed) head/science/2d-rewriter/pkg-plist (props changed) head/science/2dhf/pkg-plist (props changed) head/science/InsightToolkit/pkg-plist (props changed) head/science/abinit/pkg-plist (props changed) head/science/afni/pkg-plist (props changed) head/science/bddsolve/pkg-plist (props changed) head/science/bft/pkg-plist (props changed) head/science/brian/pkg-plist (props changed) head/science/buddy/pkg-plist (props changed) head/science/cdcl/pkg-plist (props changed) head/science/cdf/pkg-plist (props changed) head/science/cdo/pkg-plist (props changed) head/science/chemical-mime-data/pkg-plist (props changed) head/science/chemtool-devel/pkg-plist (props changed) head/science/chemtool/pkg-plist (props changed) head/science/clhep/pkg-plist (props changed) head/science/crf++/pkg-plist (props changed) head/science/dlpoly-classic/pkg-plist (props changed) head/science/ecs/pkg-plist (props changed) head/science/elmer-matc/pkg-plist (props changed) head/science/elmerpost/pkg-plist (props changed) head/science/euler/pkg-plist (props changed) head/science/fastcap/pkg-plist (props changed) head/science/fasthenry/pkg-plist (props changed) head/science/fvm/pkg-plist (props changed) head/science/gamess/pkg-plist (props changed) head/science/getdp/pkg-plist (props changed) head/science/ghemical/pkg-plist (props changed) head/science/ghmm/pkg-plist (props changed) head/science/gsmc/pkg-plist (props changed) head/science/gtamsanalyzer/pkg-plist (props changed) head/science/h5utils/pkg-plist (props changed) head/science/harminv/pkg-plist (props changed) head/science/hdf-java/pkg-plist (props changed) head/science/hdf5-18/pkg-plist (props changed) head/science/hdf5/pkg-plist (props changed) head/science/libctl/pkg-plist (props changed) head/science/libghemical/pkg-plist (props changed) head/science/libint/pkg-plist (props changed) head/science/libkml/pkg-plist (props changed) head/science/liboglappth/pkg-plist (props changed) head/science/libquantum/pkg-plist (props changed) head/science/libsvm-python/pkg-plist (props changed) head/science/libsvm/pkg-plist (props changed) head/science/massxpert/pkg-plist (props changed) head/science/mbdyn/pkg-plist (props changed) head/science/mcstas/pkg-plist (props changed) head/science/minc/pkg-plist (props changed) head/science/mpqc/pkg-plist (props changed) head/science/ncs/pkg-plist (props changed) head/science/netcdf/pkg-plist (props changed) head/science/netcdf4/pkg-plist (props changed) head/science/nifticlib/pkg-plist (props changed) head/science/p5-Algorithm-SVMLight/pkg-plist (props changed) head/science/p5-Chemistry-3DBuilder/pkg-plist (props changed) head/science/p5-Chemistry-Bond-Find/pkg-plist (props changed) head/science/p5-Chemistry-Canonicalize/pkg-plist (props changed) head/science/p5-Chemistry-Elements/pkg-plist (props changed) head/science/p5-Chemistry-File-MDLMol/pkg-plist (props changed) head/science/p5-Chemistry-File-Mopac/pkg-plist (props changed) head/science/p5-Chemistry-File-PDB/pkg-plist (props changed) head/science/p5-Chemistry-File-SLN/pkg-plist (props changed) head/science/p5-Chemistry-File-SMARTS/pkg-plist (props changed) head/science/p5-Chemistry-File-SMILES/pkg-plist (props changed) head/science/p5-Chemistry-File-VRML/pkg-plist (props changed) head/science/p5-Chemistry-File-XYZ/pkg-plist (props changed) head/science/p5-Chemistry-FormulaPattern/pkg-plist (props changed) head/science/p5-Chemistry-InternalCoords/pkg-plist (props changed) head/science/p5-Chemistry-Isotope/pkg-plist (props changed) head/science/p5-Chemistry-MacroMol/pkg-plist (props changed) head/science/p5-Chemistry-MidasPattern/pkg-plist (props changed) head/science/p5-Chemistry-Mok/pkg-plist (props changed) head/science/p5-Chemistry-Mol/pkg-plist (props changed) head/science/p5-Chemistry-Pattern/pkg-plist (props changed) head/science/p5-Chemistry-Reaction/pkg-plist (props changed) head/science/p5-Chemistry-Ring/pkg-plist (props changed) head/science/p5-Geo-Coordinates-Converter/pkg-plist (props changed) head/science/p5-Geo-ReadGRIB/pkg-plist (props changed) head/science/p5-Geo-WebService-Elevation-USGS/pkg-plist (props changed) head/science/p5-PerlMol/pkg-plist (props changed) head/science/p5-Physics-Unit/pkg-plist (props changed) head/science/paje/pkg-plist (props changed) head/science/paraview/pkg-plist (props changed) head/science/peekabot/pkg-plist (props changed) head/science/psi3/pkg-plist (props changed) head/science/psychopy/pkg-plist (props changed) head/science/py-DendroPy/pkg-plist (props changed) head/science/py-hcluster/pkg-plist (props changed) head/science/py-mlpy/pkg-plist (props changed) head/science/py-obspy/pkg-plist (props changed) head/science/py-paida/pkg-plist (props changed) head/science/py-pydicom/pkg-plist (props changed) head/science/py-scimath/pkg-plist (props changed) head/science/py-ws2300/pkg-plist (props changed) head/science/pybrain/pkg-plist (props changed) head/science/pycdf/pkg-plist (props changed) head/science/pynn/pkg-plist (props changed) head/science/ruby-dcl/pkg-plist (props changed) head/science/ruby-netcdf/pkg-plist (props changed) head/science/simlib/pkg-plist (props changed) head/science/step/pkg-plist (props changed) head/science/svmlight/pkg-plist (props changed) head/science/udunits/pkg-plist (props changed) head/science/vmd/pkg-plist (props changed) head/science/x11iraf/pkg-plist (props changed) head/science/xmds/pkg-plist (props changed) head/security/ADMsmb/pkg-plist (props changed) head/security/ADMsnmp/pkg-plist (props changed) head/security/aescrypt/pkg-plist (props changed) head/security/aide/pkg-plist (props changed) head/security/amap/pkg-plist (props changed) head/security/amavis-stats/pkg-plist (props changed) head/security/amavisd-new/pkg-plist (props changed) head/security/aolserver-nsopenssl/pkg-plist (props changed) head/security/aolserver-nssha1/pkg-plist (props changed) head/security/apache-xml-security-c/pkg-plist (props changed) head/security/arirang/pkg-plist (props changed) head/security/arm/pkg-plist (props changed) head/security/arpCounterattack/pkg-plist (props changed) head/security/autossh/pkg-plist (props changed) head/security/base/pkg-plist (props changed) head/security/bdc/pkg-plist (props changed) head/security/beecrypt/pkg-plist (props changed) head/security/bioapi/pkg-plist (props changed) head/security/blindelephant/pkg-plist (props changed) head/security/bruteblock/pkg-plist (props changed) head/security/bruteforceblocker/pkg-plist (props changed) head/security/bsmtrace/pkg-plist (props changed) head/security/bugs/pkg-plist (props changed) head/security/ca_root_nss/pkg-plist (props changed) head/security/calife-devel/pkg-plist (props changed) head/security/calife/pkg-plist (props changed) head/security/ccrypt/pkg-plist (props changed) head/security/cfs/pkg-plist (props changed) head/security/cfv/pkg-plist (props changed) head/security/chrootuid/pkg-plist (props changed) head/security/cl-md5/pkg-plist (props changed) head/security/clamav-devel/pkg-plist (props changed) head/security/clamav-unofficial-sigs/pkg-plist (props changed) head/security/clamav/pkg-plist (props changed) head/security/clamsmtp/pkg-plist (props changed) head/security/clamtk/pkg-plist (props changed) head/security/cops/pkg-plist (props changed) head/security/courier-authlib/pkg-plist-base (props changed) head/security/courier-authlib/pkg-plist-ldap (props changed) head/security/courier-authlib/pkg-plist-mysql (props changed) head/security/courier-authlib/pkg-plist-pgsql (props changed) head/security/courier-authlib/pkg-plist-userdb (props changed) head/security/courier-authlib/pkg-plist-vchkpw (props changed) head/security/courierpassd/pkg-plist (props changed) head/security/courierpasswd/pkg-plist (props changed) head/security/courieruserinfo/pkg-plist (props changed) head/security/crack/pkg-plist (props changed) head/security/crank/pkg-plist (props changed) head/security/cryptopp/pkg-plist (props changed) head/security/cryptstring/pkg-plist (props changed) head/security/cvm/pkg-plist (props changed) head/security/cyrus-sasl2-saslauthd/pkg-plist (props changed) head/security/cyrus-sasl2/pkg-plist (props changed) head/security/ddos_scan/pkg-plist (props changed) head/security/denyhosts/pkg-plist (props changed) head/security/didentd/pkg-plist (props changed) head/security/dirbuster/pkg-plist (props changed) head/security/distcache-devel/pkg-plist (props changed) head/security/distcache/pkg-plist (props changed) head/security/doorman/pkg-plist (props changed) head/security/dradis/pkg-plist (props changed) head/security/dsniff/pkg-plist (props changed) head/security/easypg/pkg-plist (props changed) head/security/engine_pkcs11/pkg-plist (props changed) head/security/expiretable/pkg-plist (props changed) head/security/f-prot/pkg-plist (props changed) head/security/fakeident/pkg-plist (props changed) head/security/fbopenssl/pkg-plist (props changed) head/security/firewalk/pkg-plist (props changed) head/security/flawfinder/pkg-plist (props changed) head/security/fpc-hash/pkg-plist (props changed) head/security/fpc-openssl/pkg-plist (props changed) head/security/fpm2/pkg-plist (props changed) head/security/fprint_demo/pkg-plist (props changed) head/security/fragroute/pkg-plist (props changed) head/security/fsh/pkg-plist (props changed) head/security/ftimes/pkg-plist (props changed) head/security/fwanalog/pkg-plist (props changed) head/security/fwbuilder/pkg-plist (props changed) head/security/fwlogwatch/pkg-plist (props changed) head/security/gcipher/pkg-plist (props changed) head/security/gnome-keyring-sharp/pkg-plist (props changed) head/security/gnome-keyring/pkg-plist (props changed) head/security/gnome-password-generator/pkg-plist (props changed) head/security/gnomint/pkg-plist (props changed) head/security/gnupg/pkg-plist (props changed) head/security/gnupg1/pkg-plist (props changed) head/security/gnutls-devel/pkg-plist (props changed) head/security/gnutls/pkg-plist (props changed) head/security/gorilla/pkg-plist (props changed) head/security/gpass/pkg-plist (props changed) head/security/gringotts/pkg-plist (props changed) head/security/gsasl/pkg-plist (props changed) head/security/gss/pkg-plist (props changed) head/security/gtk-knocker/pkg-plist (props changed) head/security/hackbot/pkg-plist (props changed) head/security/heimdal/pkg-plist (props changed) head/security/heimdal/pkg-plist.com_err (props changed) head/security/heimdal/pkg-plist.x11 (props changed) head/security/hlfl/pkg-plist (props changed) head/security/hmap/pkg-plist (props changed) head/security/honggfuzz/pkg-plist (props changed) head/security/horde3-jeta/pkg-plist (props changed) head/security/hotssh/pkg-plist (props changed) head/security/httprint/pkg-plist (props changed) head/security/hunch/pkg-plist (props changed) head/security/idea/pkg-plist (props changed) head/security/ike-scan/pkg-plist (props changed) head/security/ipfilter2dshield/pkg-plist (props changed) head/security/ipfmeta/pkg-plist (props changed) head/security/ipfw2dshield/pkg-plist (props changed) head/security/ipsec-tools/pkg-plist (props changed) head/security/isakmpd/pkg-plist (props changed) head/security/jbrofuzz/pkg-plist (props changed) head/security/kedpm/pkg-plist (props changed) head/security/keyprint/pkg-plist (props changed) head/security/kgpg-kde4/pkg-plist (props changed) head/security/krb5-appl/pkg-plist (props changed) head/security/krb5-maint/pkg-plist (props changed) head/security/krb5/pkg-plist (props changed) head/security/kwallet/pkg-plist (props changed) head/security/l5/pkg-plist (props changed) head/security/labrea/pkg-plist (props changed) head/security/libbf/pkg-plist (props changed) head/security/libecc/pkg-plist (props changed) head/security/libfprint/pkg-plist (props changed) head/security/libgcrypt/pkg-plist (props changed) head/security/libgnome-keyring/pkg-plist (props changed) head/security/libgnomesu/pkg-plist (props changed) head/security/libgpg-error/pkg-plist (props changed) head/security/libgringotts/pkg-plist (props changed) head/security/libident/pkg-plist (props changed) head/security/libksba/pkg-plist (props changed) head/security/libmatekeyring/pkg-plist (props changed) head/security/libmcrypt/pkg-plist (props changed) head/security/libntlm/pkg-plist (props changed) head/security/libotr/pkg-plist (props changed) head/security/libotr3/pkg-plist (props changed) head/security/libp11/pkg-plist (props changed) head/security/libprelude/pkg-plist (props changed) head/security/libpreludedb/pkg-plist (props changed) head/security/libsparkcrypto/pkg-plist (props changed) head/security/libssh2/pkg-plist (props changed) head/security/libtasn1/pkg-plist (props changed) head/security/libtomcrypt/pkg-plist (props changed) head/security/linux-f10-gnutls/pkg-plist (props changed) head/security/linux-f10-libgpg-error/pkg-plist (props changed) head/security/linux-f10-nss/pkg-plist (props changed) head/security/linux-f10-openssl/pkg-plist (props changed) head/security/lockdown/pkg-plist (props changed) head/security/log2timeline/pkg-plist (props changed) head/security/logcheck/pkg-plist (props changed) head/security/lsh/pkg-plist (props changed) head/security/luasec/pkg-plist (props changed) head/security/maia/pkg-plist (props changed) head/security/mailzu/pkg-plist (props changed) head/security/makepasswd/pkg-plist (props changed) head/security/massh/pkg-plist (props changed) head/security/mate-keyring/pkg-plist (props changed) head/security/matrixssl/pkg-plist (props changed) head/security/medusa/pkg-plist (props changed) head/security/mhash/pkg-plist (props changed) head/security/mindterm-binary/pkg-plist (props changed) head/security/monkeysphere/pkg-plist (props changed) head/security/mosref/pkg-plist (props changed) head/security/nacl/pkg-plist (props changed) head/security/nbaudit/pkg-plist (props changed) head/security/ncrack/pkg-plist (props changed) head/security/nessus-plugins/pkg-plist (props changed) head/security/netpgp/pkg-plist (props changed) head/security/nettle/pkg-plist (props changed) head/security/nikto/pkg-plist (props changed) head/security/oath-toolkit/pkg-plist (props changed) head/security/ocaml-ssl/pkg-plist (props changed) head/security/op/pkg-plist (props changed) head/security/openbsm/pkg-plist (props changed) head/security/opencdk/pkg-plist (props changed) head/security/openconnect/pkg-plist (props changed) head/security/opencryptoki/pkg-plist (props changed) head/security/openct/pkg-plist (props changed) head/security/openfwtk/pkg-plist (props changed) head/security/opensaml2/pkg-plist (props changed) head/security/opensc/pkg-plist (props changed) head/security/openscep/pkg-plist (props changed) head/security/openssh-portable/pkg-plist (props changed) head/security/openssl/pkg-plist (props changed) head/security/openssl_tpm_engine/pkg-plist (props changed) head/security/openvas-client/pkg-plist (props changed) head/security/openvas-libnasl/pkg-plist (props changed) head/security/openvas-libraries/pkg-plist (props changed) head/security/openvas-plugins/pkg-plist (props changed) head/security/openvas-server/pkg-plist (props changed) head/security/openvpn-admin/pkg-plist (props changed) head/security/openvpn-beta/pkg-plist (props changed) head/security/openvpn-devel/pkg-plist (props changed) head/security/orthrus/pkg-plist (props changed) head/security/osiris/pkg-plist (props changed) head/security/ossec-hids-client/pkg-plist.client (props changed) head/security/ossec-hids-server/pkg-plist (props changed) head/security/p11-kit/pkg-plist (props changed) head/security/p5-App-TLSMe/pkg-plist (props changed) head/security/p5-Auth-YubikeyDecrypter/pkg-plist (props changed) head/security/p5-AuthCAS/pkg-plist (props changed) head/security/p5-Authen-Bitcard/pkg-plist (props changed) head/security/p5-Authen-Captcha/pkg-plist (props changed) head/security/p5-Authen-CyrusSASL/pkg-plist (props changed) head/security/p5-Authen-DecHpwd/pkg-plist (props changed) head/security/p5-Authen-Htpasswd/pkg-plist (props changed) head/security/p5-Authen-Krb5/pkg-plist (props changed) head/security/p5-Authen-Libwrap/pkg-plist (props changed) head/security/p5-Authen-NTLM/pkg-plist (props changed) head/security/p5-Authen-OATH/pkg-plist (props changed) head/security/p5-Authen-PAAS/pkg-plist (props changed) head/security/p5-Authen-PAM/pkg-plist (props changed) head/security/p5-Authen-Passphrase/pkg-plist (props changed) head/security/p5-Authen-PluggableCaptcha/pkg-plist (props changed) head/security/p5-Authen-SASL-Cyrus/pkg-plist (props changed) head/security/p5-Authen-SASL/pkg-plist (props changed) head/security/p5-Authen-Simple-DBI/pkg-plist (props changed) head/security/p5-Authen-Simple-DBM/pkg-plist (props changed) head/security/p5-Authen-Simple-HTTP/pkg-plist (props changed) head/security/p5-Authen-Simple-Net/pkg-plist (props changed) head/security/p5-Authen-Simple-PAM/pkg-plist (props changed) head/security/p5-Authen-Simple-Passwd/pkg-plist (props changed) head/security/p5-Authen-Simple-RADIUS/pkg-plist (props changed) head/security/p5-Authen-Simple-SMB/pkg-plist (props changed) head/security/p5-Authen-Simple-SSH/pkg-plist (props changed) head/security/p5-Authen-Smb/pkg-plist (props changed) head/security/p5-Authen-TacacsPlus/pkg-plist (props changed) head/security/p5-Authen-TypeKey/pkg-plist (props changed) head/security/p5-Business-PayPal-EWP/pkg-plist (props changed) head/security/p5-CSP/pkg-plist (props changed) head/security/p5-Cisco-Hash/pkg-plist (props changed) head/security/p5-Crypt-Anubis/pkg-plist (props changed) head/security/p5-Crypt-AppleTwoFish/pkg-plist (props changed) head/security/p5-Crypt-Blowfish/pkg-plist (props changed) head/security/p5-Crypt-Blowfish_PP/pkg-plist (props changed) head/security/p5-Crypt-CAST5/pkg-plist (props changed) head/security/p5-Crypt-CAST5_PP/pkg-plist (props changed) head/security/p5-Crypt-CBC/pkg-plist (props changed) head/security/p5-Crypt-CBCeasy/pkg-plist (props changed) head/security/p5-Crypt-CFB/pkg-plist (props changed) head/security/p5-Crypt-Caesar/pkg-plist (props changed) head/security/p5-Crypt-Camellia_PP/pkg-plist (props changed) head/security/p5-Crypt-Chimera/pkg-plist (props changed) head/security/p5-Crypt-CipherSaber/pkg-plist (props changed) head/security/p5-Crypt-Cracklib/pkg-plist (props changed) head/security/p5-Crypt-Ctr/pkg-plist (props changed) head/security/p5-Crypt-DES/pkg-plist (props changed) head/security/p5-Crypt-DES_EDE3/pkg-plist (props changed) head/security/p5-Crypt-DES_PP/pkg-plist (props changed) head/security/p5-Crypt-DSA/pkg-plist (props changed) head/security/p5-Crypt-Dining/pkg-plist (props changed) head/security/p5-Crypt-ECB/pkg-plist (props changed) head/security/p5-Crypt-Eksblowfish/pkg-plist (props changed) head/security/p5-Crypt-Enigma/pkg-plist (props changed) head/security/p5-Crypt-GCrypt/pkg-plist (props changed) head/security/p5-Crypt-GOST/pkg-plist (props changed) head/security/p5-Crypt-GOST_PP/pkg-plist (props changed) head/security/p5-Crypt-GPG/pkg-plist (props changed) head/security/p5-Crypt-GeneratePassword/pkg-plist (props changed) head/security/p5-Crypt-HCE_MD5/pkg-plist (props changed) head/security/p5-Crypt-IDEA/pkg-plist (props changed) head/security/p5-Crypt-Imail/pkg-plist (props changed) head/security/p5-Crypt-Juniper/pkg-plist (props changed) head/security/p5-Crypt-Khazad/pkg-plist (props changed) head/security/p5-Crypt-License/pkg-plist (props changed) head/security/p5-Crypt-Lite/pkg-plist (props changed) head/security/p5-Crypt-Loki97/pkg-plist (props changed) head/security/p5-Crypt-MySQL/pkg-plist (props changed) head/security/p5-Crypt-NULL/pkg-plist (props changed) head/security/p5-Crypt-OFB/pkg-plist (props changed) head/security/p5-Crypt-OICQ/pkg-plist (props changed) head/security/p5-Crypt-OTP/pkg-plist (props changed) head/security/p5-Crypt-OpenPGP/pkg-plist (props changed) head/security/p5-Crypt-OpenSSL-Bignum/pkg-plist (props changed) head/security/p5-Crypt-OpenSSL-CA/pkg-plist (props changed) head/security/p5-Crypt-OpenSSL-DSA/pkg-plist (props changed) head/security/p5-Crypt-OpenSSL-RSA/pkg-plist (props changed) head/security/p5-Crypt-OpenSSL-Random/pkg-plist (props changed) head/security/p5-Crypt-OpenSSL-X509/pkg-plist (props changed) head/security/p5-Crypt-PBKDF2/pkg-plist (props changed) head/security/p5-Crypt-PGPSimple/pkg-plist (props changed) head/security/p5-Crypt-PassGen/pkg-plist (props changed) head/security/p5-Crypt-PasswdMD5/pkg-plist (props changed) head/security/p5-Crypt-Primes/pkg-plist (props changed) head/security/p5-Crypt-RC4/pkg-plist (props changed) head/security/p5-Crypt-RC5/pkg-plist (props changed) head/security/p5-Crypt-RC6/pkg-plist (props changed) head/security/p5-Crypt-RIPEMD160/pkg-plist (props changed) head/security/p5-Crypt-RSA-Yandex/pkg-plist (props changed) head/security/p5-Crypt-RSA/pkg-plist (props changed) head/security/p5-Crypt-Rabbit/pkg-plist (props changed) head/security/p5-Crypt-RandPasswd/pkg-plist (props changed) head/security/p5-Crypt-Random-Source/pkg-plist (props changed) head/security/p5-Crypt-Random/pkg-plist (props changed) head/security/p5-Crypt-Rijndael/pkg-plist (props changed) head/security/p5-Crypt-Rijndael_PP/pkg-plist (props changed) head/security/p5-Crypt-SKey/pkg-plist (props changed) head/security/p5-Crypt-SSLeay/pkg-plist (props changed) head/security/p5-Crypt-Salt/pkg-plist (props changed) head/security/p5-Crypt-SaltedHash/pkg-plist (props changed) head/security/p5-Crypt-Serpent/pkg-plist (props changed) head/security/p5-Crypt-Shark/pkg-plist (props changed) head/security/p5-Crypt-SmbHash/pkg-plist (props changed) head/security/p5-Crypt-Solitaire/pkg-plist (props changed) head/security/p5-Crypt-TEA/pkg-plist (props changed) head/security/p5-Crypt-T_e_a/pkg-plist (props changed) head/security/p5-Crypt-TripleDES/pkg-plist (props changed) head/security/p5-Crypt-Twofish/pkg-plist (props changed) head/security/p5-Crypt-Twofish2/pkg-plist (props changed) head/security/p5-Crypt-Twofish_PP/pkg-plist (props changed) head/security/p5-Crypt-URandom/pkg-plist (props changed) head/security/p5-Crypt-UnixCrypt/pkg-plist (props changed) head/security/p5-Crypt-UnixCrypt_XS/pkg-plist (props changed) head/security/p5-Crypt-X509/pkg-plist (props changed) head/security/p5-Crypt-xDBM_File/pkg-plist (props changed) head/security/p5-CryptX/pkg-plist (props changed) head/security/p5-Dancer-Plugin-Passphrase/pkg-plist (props changed) head/security/p5-Data-Entropy/pkg-plist (props changed) head/security/p5-Data-Password/pkg-plist (props changed) head/security/p5-Digest-Adler32/pkg-plist (props changed) head/security/p5-Digest-Bcrypt/pkg-plist (props changed) head/security/p5-Digest-BubbleBabble/pkg-plist (props changed) head/security/p5-Digest-CRC/pkg-plist (props changed) head/security/p5-Digest-Crc32/pkg-plist (props changed) head/security/p5-Digest-DJB/pkg-plist (props changed) head/security/p5-Digest-DMAC/pkg-plist (props changed) head/security/p5-Digest-EMAC/pkg-plist (props changed) head/security/p5-Digest-Elf/pkg-plist (props changed) head/security/p5-Digest-FNV/pkg-plist (props changed) head/security/p5-Digest-HMAC/pkg-plist (props changed) head/security/p5-Digest-Hashcash/pkg-plist (props changed) head/security/p5-Digest-Haval256/pkg-plist (props changed) head/security/p5-Digest-JHash/pkg-plist (props changed) head/security/p5-Digest-MD2/pkg-plist (props changed) head/security/p5-Digest-MD4/pkg-plist (props changed) head/security/p5-Digest-MD5-File/pkg-plist (props changed) head/security/p5-Digest-MD5-M4p/pkg-plist (props changed) head/security/p5-Digest-MD5/pkg-plist (props changed) head/security/p5-Digest-ManberHash/pkg-plist (props changed) head/security/p5-Digest-MurmurHash/pkg-plist (props changed) head/security/p5-Digest-Nilsimsa/pkg-plist (props changed) head/security/p5-Digest-Pearson-PurePerl/pkg-plist (props changed) head/security/p5-Digest-Pearson/pkg-plist (props changed) head/security/p5-Digest-Perl-MD4/pkg-plist (props changed) head/security/p5-Digest-Perl-MD5/pkg-plist (props changed) head/security/p5-Digest-SHA-PurePerl/pkg-plist (props changed) head/security/p5-Digest-SHA1/pkg-plist (props changed) head/security/p5-Digest-SV1/pkg-plist (props changed) head/security/p5-Digest-Tiger/pkg-plist (props changed) head/security/p5-Digest-Whirlpool/pkg-plist (props changed) head/security/p5-Digest/pkg-plist (props changed) head/security/p5-File-KeePass/pkg-plist (props changed) head/security/p5-File-Scan-ClamAV/pkg-plist (props changed) head/security/p5-File-Scan/pkg-plist (props changed) head/security/p5-Filter-CBC/pkg-plist (props changed) head/security/p5-Filter-Crypto/pkg-plist (props changed) head/security/p5-GD-SecurityImage/pkg-plist (props changed) head/security/p5-GSSAPI/pkg-plist (props changed) head/security/p5-GnuPG-Interface/pkg-plist (props changed) head/security/p5-GnuPG/pkg-plist (props changed) head/security/p5-HTML-Email-Obfuscate/pkg-plist (props changed) head/security/p5-Jifty-Plugin-OpenID/pkg-plist (props changed) head/security/p5-MD5/pkg-plist (props changed) head/security/p5-Module-Signature/pkg-plist (props changed) head/security/p5-Net-Daemon-SSL/pkg-plist (props changed) head/security/p5-Net-OpenID-Common/pkg-plist (props changed) head/security/p5-Net-OpenID-JanRain/pkg-plist (props changed) head/security/p5-Net-OpenID-Server/pkg-plist (props changed) head/security/p5-Net-Radius-Server/pkg-plist (props changed) head/security/p5-Net-SAML/pkg-plist (props changed) head/security/p5-Net-SSL-ExpireDate/pkg-plist (props changed) head/security/p5-Net-SSLeay/pkg-plist (props changed) head/security/p5-Net-Server-Mail-ESMTP-AUTH/pkg-plist (props changed) head/security/p5-Net-SinFP/pkg-plist (props changed) head/security/p5-Nmap-Scanner/pkg-plist (props changed) head/security/p5-OpenCA-CRR/pkg-plist (props changed) head/security/p5-OpenCA-OpenSSL/pkg-plist (props changed) head/security/p5-OpenCA-PKCS7/pkg-plist (props changed) head/security/p5-OpenCA-REQ/pkg-plist (props changed) head/security/p5-OpenCA-X509/pkg-plist (props changed) head/security/p5-PGP-Sign/pkg-plist (props changed) head/security/p5-PGP/pkg-plist (props changed) head/security/p5-POE-Component-SSLify/pkg-plist (props changed) head/security/p5-PerlCryptLib/pkg-plist (props changed) head/security/p5-SAVI-Perl/pkg-plist (props changed) head/security/p5-SHA/pkg-plist (props changed) head/security/p5-Safe-Hole/pkg-plist (props changed) head/security/p5-String-MkPasswd/pkg-plist (props changed) head/security/p5-Sudo/pkg-plist (props changed) head/security/p5-Text-Password-Pronounceable/pkg-plist (props changed) head/security/p5-Tie-EncryptedHash/pkg-plist (props changed) head/security/p5-Tree-Authz/pkg-plist (props changed) head/security/p5-Yahoo-BBAuth/pkg-plist (props changed) head/security/p5-openxpki-client-html-mason/pkg-plist (props changed) head/security/p5-openxpki-client-scep/pkg-plist (props changed) head/security/p5-openxpki-client/pkg-plist (props changed) head/security/p5-openxpki-deployment/pkg-plist (props changed) head/security/p5-openxpki-i18n/pkg-plist (props changed) head/security/p5-openxpki/pkg-plist (props changed) head/security/pam-pgsql/pkg-plist (props changed) head/security/pam_abl/files/pkg-plist.in (props changed) head/security/pam_bsdbioapi/pkg-plist (props changed) head/security/pam_krb5/pkg-plist (props changed) head/security/pam_ldap/pkg-plist (props changed) head/security/pam_p11/pkg-plist (props changed) head/security/pam_per_user/pkg-plist (props changed) head/security/pam_pgina/pkg-plist (props changed) head/security/pam_pseudo/pkg-plist (props changed) head/security/pam_smb/pkg-plist (props changed) head/security/parano/pkg-plist (props changed) head/security/pbnj/pkg-plist (props changed) head/security/pcsc-tools/pkg-plist (props changed) head/security/pecl-crack/pkg-plist (props changed) head/security/pgp/pkg-plist (props changed) head/security/pgpin/pkg-plist (props changed) head/security/php-Auth_OpenID/pkg-plist (props changed) head/security/php-suhosin/pkg-plist (props changed) head/security/phpdeadlock/pkg-plist (props changed) head/security/phpsecinfo/pkg-plist (props changed) head/security/pidgin-encryption/pkg-plist (props changed) head/security/pidgin-otr/pkg-plist (props changed) head/security/pkcs11-helper/pkg-plist (props changed) head/security/pks/pkg-plist (props changed) head/security/poly1305aes/pkg-plist (props changed) head/security/portsentry/pkg-plist (props changed) head/security/ppars/pkg-plist (props changed) head/security/prelude-lml/pkg-plist (props changed) head/security/prelude-manager/pkg-plist (props changed) head/security/prelude-pflogger/pkg-plist (props changed) head/security/proxycheck/pkg-plist (props changed) head/security/pssh/pkg-plist (props changed) head/security/pvk/pkg-plist (props changed) head/security/pwman3/pkg-plist (props changed) head/security/py-AccessControl/pkg-plist (props changed) head/security/py-PF/pkg-plist (props changed) head/security/py-Products.PluggableAuthService/pkg-plist (props changed) head/security/py-RestrictedPython/pkg-plist (props changed) head/security/py-borg.localrole/pkg-plist (props changed) head/security/py-cerealizer/pkg-plist (props changed) head/security/py-certify/pkg-plist (props changed) head/security/py-ecdsa/pkg-plist (props changed) head/security/py-gnutls/pkg-plist (props changed) head/security/py-kerberos/pkg-plist (props changed) head/security/py-openid/pkg-plist (props changed) head/security/py-openssl/pkg-plist (props changed) head/security/py-otr/pkg-plist (props changed) head/security/py-passlib/pkg-plist (props changed) head/security/py-plone.app.openid/pkg-plist (props changed) head/security/py-plone.keyring/pkg-plist (props changed) head/security/py-plone.openid/pkg-plist (props changed) head/security/py-plone.protect/pkg-plist (props changed) head/security/py-plone.session/pkg-plist (props changed) head/security/py-potr/pkg-plist (props changed) head/security/py-pow/pkg-plist (props changed) head/security/py-pyclamd/pkg-plist (props changed) head/security/py-pycryptopp/pkg-plist (props changed) head/security/py-pyme/pkg-plist (props changed) head/security/py-sslstrip/pkg-plist (props changed) head/security/py-stem/pkg-plist (props changed) head/security/py-twofish/pkg-plist (props changed) head/security/py-yara-editor/pkg-plist (props changed) head/security/py-zope.app.authentication/pkg-plist (props changed) head/security/py-zope.app.localpermission/pkg-plist (props changed) head/security/py-zope.app.principalannotation/pkg-plist (props changed) head/security/py-zope.app.security/pkg-plist (props changed) head/security/py-zope.app.securitypolicy/pkg-plist (props changed) head/security/py-zope.authentication/pkg-plist (props changed) head/security/py-zope.login/pkg-plist (props changed) head/security/py-zope.password/pkg-plist (props changed) head/security/py-zope.pluggableauth/pkg-plist (props changed) head/security/py-zope.principalannotation/pkg-plist (props changed) head/security/py-zope.principalregistry/pkg-plist (props changed) head/security/py-zope.security/pkg-plist (props changed) head/security/py-zope.securitypolicy/pkg-plist (props changed) head/security/py-zope.session/pkg-plist (props changed) head/security/quantis/pkg-plist (props changed) head/security/racoon2/pkg-plist (props changed) head/security/radiusniff/pkg-plist (props changed) head/security/rainbowcrack/pkg-plist (props changed) head/security/rats/pkg-plist (props changed) head/security/razorback-api/pkg-plist (props changed) head/security/razorback-archiveInflate/pkg-plist (props changed) head/security/razorback-clamavNugget/pkg-plist (props changed) head/security/razorback-dispatcher/pkg-plist (props changed) head/security/razorback-fileInject/pkg-plist (props changed) head/security/razorback-fsMonitor/pkg-plist (props changed) head/security/razorback-fsWalk/pkg-plist (props changed) head/security/razorback-masterNugget/pkg-plist (props changed) head/security/razorback-officeCat/pkg-plist (props changed) head/security/razorback-pdfFox/pkg-plist (props changed) head/security/razorback-scriptNugget/pkg-plist (props changed) head/security/razorback-swfScanner/pkg-plist (props changed) head/security/razorback-syslogNugget/pkg-plist (props changed) head/security/razorback-virusTotal/pkg-plist (props changed) head/security/razorback-yaraNugget/pkg-plist (props changed) head/security/retranslator/pkg-plist (props changed) head/security/rkhunter/pkg-plist (props changed) head/security/ruby-camellia/pkg-plist (props changed) head/security/ruby-crypt/pkg-plist (props changed) head/security/ruby-gpgme/pkg-plist (props changed) head/security/ruby-password/pkg-plist (props changed) head/security/ruby-tcpwrap/pkg-plist (props changed) head/security/safesh/pkg-plist (props changed) head/security/saint/pkg-plist (props changed) head/security/samba-virusfilter/pkg-plist (props changed) head/security/samhain/pkg-plist (props changed) head/security/sancp/pkg-plist (props changed) head/security/scamp/pkg-plist (props changed) head/security/scanhill/pkg-plist (props changed) head/security/seahorse-plugins/pkg-plist (props changed) head/security/seahorse/pkg-plist (props changed) head/security/seccure/pkg-plist (props changed) head/security/secpanel/pkg-plist (props changed) head/security/shishi/pkg-plist (props changed) head/security/silktools/pkg-plist (props changed) head/security/slush/pkg-plist (props changed) head/security/snort-rep/pkg-plist (props changed) head/security/snortreport/pkg-plist (props changed) head/security/snortsnarf/pkg-plist (props changed) head/security/softhsm/pkg-plist (props changed) head/security/spike-proxy/pkg-plist (props changed) head/security/spybye/pkg-plist (props changed) head/security/sqlmap/pkg-plist (props changed) head/security/sqlninja/pkg-plist (props changed) head/security/srp/pkg-plist (props changed) head/security/ssdeep/pkg-plist (props changed) head/security/sshit/pkg-plist (props changed) head/security/ssl-admin/pkg-plist (props changed) head/security/sssd/pkg-plist (props changed) head/security/starttls/pkg-plist (props changed) head/security/stegdetect/pkg-plist (props changed) head/security/steghide/pkg-plist (props changed) head/security/strongswan/pkg-plist (props changed) head/security/subweb/pkg-plist (props changed) head/security/sud/pkg-plist (props changed) head/security/sudoscript/pkg-plist (props changed) head/security/sudosh/pkg-plist (props changed) head/security/sudosh2/pkg-plist (props changed) head/security/sudosh3/pkg-plist (props changed) head/security/super/pkg-plist (props changed) head/security/swatch/pkg-plist (props changed) head/security/switzerland/pkg-plist (props changed) head/security/tclsasl/pkg-plist (props changed) head/security/tinyca/pkg-plist (props changed) head/security/tpm-tools/pkg-plist (props changed) head/security/tripwire-131/pkg-plist (props changed) head/security/tripwire/pkg-plist (props changed) head/security/tripwire12/pkg-plist (props changed) head/security/trousers/pkg-plist (props changed) head/security/tuntun/pkg-plist (props changed) head/security/umit/pkg-plist (props changed) head/security/unicornscan/pkg-plist (props changed) head/security/vinetto/pkg-plist (props changed) head/security/vnccrack/pkg-plist (props changed) head/security/vpnc/pkg-plist (props changed) head/security/vuxml/pkg-plist (props changed) head/security/vxquery/pkg-plist (props changed) head/security/w3af/pkg-plist (props changed) head/security/webfwlog/pkg-plist (props changed) head/security/webscarab/pkg-plist (props changed) head/security/whatweb/pkg-plist (props changed) head/security/xinetd/pkg-plist (props changed) head/security/xmlsec1/pkg-plist (props changed) head/security/xspy/pkg-plist (props changed) head/security/xyssl/pkg-plist (props changed) head/security/yafic/pkg-plist (props changed) head/security/yapet/pkg-plist (props changed) head/security/yassl/pkg-plist (props changed) head/security/zebedee/pkg-plist (props changed) head/security/zxid/pkg-plist (props changed) head/security/zzuf/pkg-plist (props changed) head/shells/44bsd-csh/pkg-plist (props changed) head/shells/ambit/pkg-plist (props changed) head/shells/bash-completion/pkg-plist (props changed) head/shells/bash/pkg-plist (props changed) head/shells/ch/pkg-plist (props changed) head/shells/esh/pkg-plist (props changed) head/shells/fd/pkg-plist (props changed) head/shells/flash/pkg-plist (props changed) head/shells/ibsh/pkg-plist (props changed) head/shells/jailkit/pkg-plist (props changed) head/shells/lshell/pkg-plist (props changed) head/shells/nologinmsg/pkg-plist (props changed) head/shells/osh/pkg-plist (props changed) head/shells/p5-Shell-Perl/pkg-plist (props changed) head/shells/p5-Term-ShellUI/pkg-plist (props changed) head/shells/pdksh/pkg-plist (props changed) head/shells/rc/pkg-plist (props changed) head/shells/rssh/pkg-plist (props changed) head/shells/sash/pkg-plist (props changed) head/shells/scponly/pkg-plist (props changed) head/shells/shell-include/pkg-plist (props changed) head/shells/tcshrc/pkg-plist (props changed) head/shells/v7sh/pkg-plist (props changed) head/shells/viewglob/pkg-plist (props changed) head/shells/vshnu/pkg-plist (props changed) head/shells/wapsh/pkg-plist (props changed) head/shells/zoidberg/pkg-plist (props changed) head/shells/zsh/pkg-plist (props changed) head/sysutils/3dm/pkg-plist (props changed) head/sysutils/44bsd-more/pkg-plist (props changed) head/sysutils/DTraceToolkit/pkg-plist (props changed) head/sysutils/LPRng/pkg-plist (props changed) head/sysutils/LPRngTool/pkg-plist (props changed) head/sysutils/abck/pkg-plist (props changed) head/sysutils/acpi_call/pkg-plist (props changed) head/sysutils/afbinit/pkg-plist (props changed) head/sysutils/afflib/pkg-plist (props changed) head/sysutils/afio/pkg-plist (props changed) head/sysutils/am-utils/pkg-plist (props changed) head/sysutils/anacron/pkg-plist (props changed) head/sysutils/and/pkg-plist (props changed) head/sysutils/apcupsd/pkg-plist (props changed) head/sysutils/apt/pkg-plist (props changed) head/sysutils/arcconf/pkg-plist (props changed) head/sysutils/areca-cli/pkg-plist (props changed) head/sysutils/asr-utils/pkg-plist (props changed) head/sysutils/autopsy/pkg-plist (props changed) head/sysutils/bashburn/pkg-plist (props changed) head/sysutils/batmon/pkg-plist (props changed) head/sysutils/battfink/pkg-plist (props changed) head/sysutils/battray/pkg-plist (props changed) head/sysutils/biosfont/pkg-plist (props changed) head/sysutils/bkpupsd/pkg-plist (props changed) head/sysutils/blimitd/pkg-plist (props changed) head/sysutils/boxbackup-devel/pkg-plist (props changed) head/sysutils/boxbackup/pkg-plist (props changed) head/sysutils/bsd-splash-changer/pkg-plist (props changed) head/sysutils/bsdadminscripts/pkg-plist (props changed) head/sysutils/bsdstats/pkg-plist (props changed) head/sysutils/bubblemon-dockapp/pkg-plist (props changed) head/sysutils/bubblemon2/pkg-plist (props changed) head/sysutils/byobu/pkg-plist (props changed) head/sysutils/ccze/pkg-plist (props changed) head/sysutils/cdbkup/pkg-plist (props changed) head/sysutils/cdrdao/pkg-plist (props changed) head/sysutils/cdrkit/pkg-plist (props changed) head/sysutils/cdroot/pkg-plist (props changed) head/sysutils/cdrtools-devel/pkg-plist (props changed) head/sysutils/cdrtools/pkg-plist (props changed) head/sysutils/cfengine22/pkg-plist (props changed) head/sysutils/cfengine32/pkg-plist (props changed) head/sysutils/cfengine33/pkg-plist (props changed) head/sysutils/ckl/pkg-plist (props changed) head/sysutils/clockspeed-conf/pkg-plist (props changed) head/sysutils/clockspeed/pkg-plist (props changed) head/sysutils/cog/pkg-plist (props changed) head/sysutils/colorize/pkg-plist (props changed) head/sysutils/condor/pkg-plist (props changed) head/sysutils/confman/pkg-plist (props changed) head/sysutils/consolekit/pkg-plist (props changed) head/sysutils/contool/pkg-plist (props changed) head/sysutils/coreutils/pkg-plist (props changed) head/sysutils/cpu/pkg-plist (props changed) head/sysutils/cpupowerd/pkg-plist (props changed) head/sysutils/createrepo/pkg-plist (props changed) head/sysutils/cronolog/pkg-plist (props changed) head/sysutils/curly/pkg-plist (props changed) head/sysutils/daedalus/pkg-plist (props changed) head/sysutils/daemontools/pkg-plist (props changed) head/sysutils/dc3dd/pkg-plist (props changed) head/sysutils/dd_rescue/pkg-plist (props changed) head/sysutils/debhelper/pkg-plist (props changed) head/sysutils/debootstrap/pkg-plist (props changed) head/sysutils/detox/pkg-plist (props changed) head/sysutils/dfc/pkg-plist (props changed) head/sysutils/di/pkg-plist (props changed) head/sysutils/dirvish/pkg-plist (props changed) head/sysutils/diskcheckd/pkg-plist (props changed) head/sysutils/diskimage-tools/pkg-plist (props changed) head/sysutils/downtime/pkg-plist (props changed) head/sysutils/downtimed/pkg-plist (props changed) head/sysutils/dt/pkg-plist (props changed) head/sysutils/dtc/pkg-plist (props changed) head/sysutils/dvdbackup/pkg-plist (props changed) head/sysutils/eiciel/pkg-plist (props changed) head/sysutils/enteruser/pkg-plist (props changed) head/sysutils/epylog/pkg-plist (props changed) head/sysutils/eroaster/pkg-plist (props changed) head/sysutils/eventlog/pkg-plist (props changed) head/sysutils/ezjail/pkg-plist (props changed) head/sysutils/farbot/pkg-plist (props changed) head/sysutils/fatback/pkg-plist (props changed) head/sysutils/fcron/pkg-plist (props changed) head/sysutils/feather/pkg-plist (props changed) head/sysutils/file/pkg-plist (props changed) head/sysutils/filelight-kde4/pkg-plist (props changed) head/sysutils/flog/pkg-plist (props changed) head/sysutils/flyback/pkg-plist (props changed) head/sysutils/fpc-syslog/pkg-plist (props changed) head/sysutils/fpc-users/pkg-plist (props changed) head/sysutils/fpc-utmp/pkg-plist (props changed) head/sysutils/fpc-uuid/pkg-plist (props changed) head/sysutils/freedt/pkg-plist (props changed) head/sysutils/freesbie/pkg-plist (props changed) head/sysutils/freqsdwn/pkg-plist (props changed) head/sysutils/froxlor/pkg-plist (props changed) head/sysutils/fsbackup/pkg-plist (props changed) head/sysutils/fusefs-encfs/pkg-plist (props changed) head/sysutils/fusefs-kmod/pkg-plist (props changed) head/sysutils/fusefs-ntfs/pkg-plist (props changed) head/sysutils/fusefs-smbnetfs/pkg-plist (props changed) head/sysutils/fusefs-sshfs/pkg-plist (props changed) head/sysutils/fusefs-wikipediafs/pkg-plist (props changed) head/sysutils/gai-leds/pkg-plist (props changed) head/sysutils/ganglia-webfrontend/pkg-plist (props changed) head/sysutils/gapcmon/pkg-plist (props changed) head/sysutils/gather/pkg-plist (props changed) head/sysutils/gcdmaster/pkg-plist (props changed) head/sysutils/gcombust/pkg-plist (props changed) head/sysutils/gconf-editor/pkg-plist (props changed) head/sysutils/gdmap/pkg-plist (props changed) head/sysutils/geomWatch/pkg-plist (props changed) head/sysutils/gkrellm/pkg-plist (props changed) head/sysutils/gkrellm2/pkg-plist (props changed) head/sysutils/gksu/pkg-plist (props changed) head/sysutils/gnome-control-center/pkg-plist (props changed) head/sysutils/gnome-device-manager/pkg-plist (props changed) head/sysutils/gnome-mount/pkg-plist (props changed) head/sysutils/gnome-pkgview/pkg-plist (props changed) head/sysutils/gnome-power-manager/pkg-plist (props changed) head/sysutils/gnome-schedule/pkg-plist (props changed) head/sysutils/gnome-settings-daemon/pkg-plist (props changed) head/sysutils/gnome-system-monitor/pkg-plist (props changed) head/sysutils/gnome-system-tools/pkg-plist (props changed) head/sysutils/gnomebaker/pkg-plist (props changed) head/sysutils/graid5/pkg-plist (props changed) head/sysutils/graphicboot/pkg-plist (props changed) head/sysutils/graveman/pkg-plist (props changed) head/sysutils/grok/pkg-plist (props changed) head/sysutils/gtk-imonc/pkg-plist (props changed) head/sysutils/hachoir-metadata/pkg-plist (props changed) head/sysutils/hachoir-subfile/pkg-plist (props changed) head/sysutils/hachoir-urwid/pkg-plist (props changed) head/sysutils/hachoir-wx/pkg-plist (props changed) head/sysutils/hal-info/pkg-plist (props changed) head/sysutils/hdup/pkg-plist (props changed) head/sysutils/healthd/pkg-plist (props changed) head/sysutils/heartbeat/pkg-plist (props changed) head/sysutils/heirloom/pkg-plist (props changed) head/sysutils/hfsexplorer/pkg-plist (props changed) head/sysutils/hfsutils/pkg-plist (props changed) head/sysutils/hpacucli/pkg-plist (props changed) head/sysutils/hploscripts/pkg-plist (props changed) head/sysutils/htop/pkg-plist (props changed) head/sysutils/hyperic-sigar/pkg-plist (props changed) head/sysutils/ispman/pkg-plist (props changed) head/sysutils/jailadmin/pkg-plist (props changed) head/sysutils/jailctl/pkg-plist (props changed) head/sysutils/jailuser/pkg-plist (props changed) head/sysutils/javaservicewrapper/pkg-plist (props changed) head/sysutils/jdiskreport/pkg-plist (props changed) head/sysutils/jfbterm/pkg-plist (props changed) head/sysutils/jtopen/pkg-plist (props changed) head/sysutils/kdeadmin4/pkg-plist (props changed) head/sysutils/kdf/pkg-plist (props changed) head/sysutils/kfloppy/pkg-plist (props changed) head/sysutils/knutclient-kde4/pkg-plist (props changed) head/sysutils/krename-kde4/pkg-plist (props changed) head/sysutils/libcdio/pkg-plist (props changed) head/sysutils/libgksu/pkg-plist (props changed) head/sysutils/libieee1284/pkg-plist (props changed) head/sysutils/liburcu/pkg-plist (props changed) head/sysutils/libutempter/pkg-plist (props changed) head/sysutils/lineakd/pkg-plist (props changed) head/sysutils/linux-afaapps/pkg-plist (props changed) head/sysutils/linux-nero/pkg-plist (props changed) head/sysutils/linuxfdisk/pkg-plist (props changed) head/sysutils/lire/pkg-plist (props changed) head/sysutils/livecd/pkg-plist (props changed) head/sysutils/lmon/pkg-plist (props changed) head/sysutils/logstalgia/pkg-plist (props changed) head/sysutils/logtool/pkg-plist (props changed) head/sysutils/logwatch/pkg-plist (props changed) head/sysutils/lookupd/pkg-plist (props changed) head/sysutils/ltrace/pkg-plist (props changed) head/sysutils/lxtask/pkg-plist (props changed) head/sysutils/magicrescue/pkg-plist (props changed) head/sysutils/manck/pkg-plist (props changed) head/sysutils/mapchan/pkg-plist (props changed) head/sysutils/mate-control-center/pkg-plist (props changed) head/sysutils/mate-power-manager/pkg-plist (props changed) head/sysutils/mate-settings-daemon/pkg-plist (props changed) head/sysutils/mate-system-monitor/pkg-plist (props changed) head/sysutils/mcron/pkg-plist (props changed) head/sysutils/memfetch/pkg-plist (props changed) head/sysutils/minirsyslogd/pkg-plist (props changed) head/sysutils/mmore/pkg-plist (props changed) head/sysutils/modules/pkg-plist (props changed) head/sysutils/monitord/pkg-plist (props changed) head/sysutils/monitorix/pkg-plist (props changed) head/sysutils/mount.app/pkg-plist (props changed) head/sysutils/mountsmb2/pkg-plist (props changed) head/sysutils/msyslog/pkg-plist (props changed) head/sysutils/mtxorbd/pkg-plist (props changed) head/sysutils/mybashburn/pkg-plist (props changed) head/sysutils/nagios-statd/pkg-plist (props changed) head/sysutils/namefix/pkg-plist (props changed) head/sysutils/nautilus-cd-burner/pkg-plist (props changed) head/sysutils/news/pkg-plist (props changed) head/sysutils/nitrogen/pkg-plist (props changed) head/sysutils/ntfsprogs/pkg-plist (props changed) head/sysutils/nut22/pkg-plist (props changed) head/sysutils/openipmi/pkg-plist (props changed) head/sysutils/p5-BSD-Process/pkg-plist (props changed) head/sysutils/p5-BackupPC-XS/pkg-plist (props changed) head/sysutils/p5-Brackup/pkg-plist (props changed) head/sysutils/p5-Dir-Purge/pkg-plist (props changed) head/sysutils/p5-File-DirCompare/pkg-plist (props changed) head/sysutils/p5-File-Listing/pkg-plist (props changed) head/sysutils/p5-File-Next/pkg-plist (props changed) head/sysutils/p5-File-Which/pkg-plist (props changed) head/sysutils/p5-Filesys-DiskFree/pkg-plist (props changed) head/sysutils/p5-Iterator-File/pkg-plist (props changed) head/sysutils/p5-Lchown/pkg-plist (props changed) head/sysutils/p5-MogileFS-Client/pkg-plist (props changed) head/sysutils/p5-MogileFS-Utils/pkg-plist (props changed) head/sysutils/p5-Proclet/pkg-plist (props changed) head/sysutils/p5-Schedule-Load/pkg-plist (props changed) head/sysutils/p5-Shell-Command/pkg-plist (props changed) head/sysutils/p5-Sys-Filesystem/pkg-plist (props changed) head/sysutils/p5-Sys-Gamin/pkg-plist (props changed) head/sysutils/p5-Sys-Utmp/pkg-plist (props changed) head/sysutils/p5-Sysadm-Install/pkg-plist (props changed) head/sysutils/p5-Tail-Stat/pkg-plist (props changed) head/sysutils/p5-Tie-Syslog/pkg-plist (props changed) head/sysutils/p5-Ubic/pkg-plist (props changed) head/sysutils/p5-Unix-ConfigFile/pkg-plist (props changed) head/sysutils/p5-Unix-Syslog/pkg-plist (props changed) head/sysutils/p5-User/pkg-plist (props changed) head/sysutils/paicc/pkg-plist (props changed) head/sysutils/pbimaker/pkg-plist (props changed) head/sysutils/pc-sysinstall/pkg-plist (props changed) head/sysutils/pdsh/pkg-plist (props changed) head/sysutils/pefs-kmod/pkg-plist (props changed) head/sysutils/penv/pkg-plist (props changed) head/sysutils/pessulus/pkg-plist (props changed) head/sysutils/pflogx/pkg-plist (props changed) head/sysutils/plconfig/pkg-plist (props changed) head/sysutils/pmap/pkg-plist (props changed) head/sysutils/policykit-gnome/pkg-plist (props changed) head/sysutils/policykit-qt/pkg-plist (props changed) head/sysutils/policykit/pkg-plist (props changed) head/sysutils/polkit-qt/pkg-plist (props changed) head/sysutils/powerman/pkg-plist (props changed) head/sysutils/progsreiserfs/pkg-plist (props changed) head/sysutils/puppet27/pkg-plist (props changed) head/sysutils/py-bcfg2/pkg-plist (props changed) head/sysutils/py-drmaa/pkg-plist (props changed) head/sysutils/py-filelike/pkg-plist (props changed) head/sysutils/py-iowait/pkg-plist (props changed) head/sysutils/py-nagiosplugin/pkg-plist (props changed) head/sysutils/py-stdiff/pkg-plist (props changed) head/sysutils/py-zdaemon/pkg-plist (props changed) head/sysutils/py-zfs/pkg-plist (props changed) head/sysutils/pyrenamer/pkg-plist (props changed) head/sysutils/qjail2/pkg-plist (props changed) head/sysutils/qpxtool/pkg-plist (props changed) head/sysutils/radeontool/pkg-plist (props changed) head/sysutils/radmind/pkg-plist (props changed) head/sysutils/raincoat/pkg-plist (props changed) head/sysutils/rdiff-backup-devel/pkg-plist (props changed) head/sysutils/rdiff-backup/pkg-plist (props changed) head/sysutils/reed/pkg-plist (props changed) head/sysutils/relaxconf/pkg-plist (props changed) head/sysutils/reoback/pkg-plist (props changed) head/sysutils/rmonitor/pkg-plist (props changed) head/sysutils/rsyncbackup/pkg-plist (props changed) head/sysutils/rsyncmanager/pkg-plist (props changed) head/sysutils/rsyslog7-devel/pkg-plist (props changed) head/sysutils/rsyslog7/pkg-plist (props changed) head/sysutils/rsyslog8-devel/pkg-plist (props changed) head/sysutils/rtty/pkg-plist (props changed) head/sysutils/ruby-quota/pkg-plist (props changed) head/sysutils/rubygem-capistrano-ext/pkg-plist (props changed) head/sysutils/runit/pkg-plist (props changed) head/sysutils/runwhen/pkg-plist (props changed) head/sysutils/savelogs/pkg-plist (props changed) head/sysutils/scanbuttond/pkg-plist (props changed) head/sysutils/schedutils/pkg-plist (props changed) head/sysutils/scprotect/pkg-plist (props changed) head/sysutils/screen/pkg-plist (props changed) head/sysutils/sensors-applet/pkg-plist (props changed) head/sysutils/serpentine/pkg-plist (props changed) head/sysutils/setquota/pkg-plist (props changed) head/sysutils/sformat/pkg-plist (props changed) head/sysutils/skill/pkg-plist (props changed) head/sysutils/slurm-hpc/pkg-plist (props changed) head/sysutils/smp_utils/pkg-plist (props changed) head/sysutils/snowlog/pkg-plist (props changed) head/sysutils/socket/pkg-plist (props changed) head/sysutils/socklog/pkg-plist (props changed) head/sysutils/spinner/pkg-plist (props changed) head/sysutils/ssync/pkg-plist (props changed) head/sysutils/swapd/pkg-plist (props changed) head/sysutils/sweeper/pkg-plist (props changed) head/sysutils/symon/pkg-plist (props changed) head/sysutils/sysinfo/pkg-plist (props changed) head/sysutils/syslog-ng-devel/pkg-plist (props changed) head/sysutils/syslog-ng/pkg-plist (props changed) head/sysutils/syslog-ng2/pkg-plist (props changed) head/sysutils/syslog-ng33/pkg-plist (props changed) head/sysutils/system-tools-backends/pkg-plist (props changed) head/sysutils/tarsnap/pkg-plist (props changed) head/sysutils/tbku/pkg-plist (props changed) head/sysutils/tcplist/pkg-plist (props changed) head/sysutils/tdir/pkg-plist (props changed) head/sysutils/tentakel/pkg-plist (props changed) head/sysutils/timemon/pkg-plist (props changed) head/sysutils/tracker-client/pkg-plist (props changed) head/sysutils/tracker-gnome/pkg-plist (props changed) head/sysutils/tracker-libtrackergtk/pkg-plist (props changed) head/sysutils/tss/pkg-plist (props changed) head/sysutils/tw_cli/pkg-plist (props changed) head/sysutils/ucspi-ipc/pkg-plist (props changed) head/sysutils/ucspi-ssl/pkg-plist (props changed) head/sysutils/ucspi-tcp/pkg-plist (props changed) head/sysutils/ufs_copy/pkg-plist (props changed) head/sysutils/unieject/pkg-plist (props changed) head/sysutils/uniutils/pkg-plist (props changed) head/sysutils/upsdaemon/pkg-plist (props changed) head/sysutils/uptimed/pkg-plist (props changed) head/sysutils/usb_modeswitch/pkg-plist (props changed) head/sysutils/usbutils/pkg-plist (props changed) head/sysutils/userinfo/pkg-plist (props changed) head/sysutils/usermatic/pkg-plist (props changed) head/sysutils/usermin/pkg-plist (props changed) head/sysutils/userneu-devel/pkg-plist (props changed) head/sysutils/userneu/pkg-plist (props changed) head/sysutils/utcount/pkg-plist (props changed) head/sysutils/vcp/pkg-plist (props changed) head/sysutils/virtualmin/pkg-plist (props changed) head/sysutils/vlogger/pkg-plist (props changed) head/sysutils/volman/pkg-plist (props changed) head/sysutils/vordog/pkg-plist (props changed) head/sysutils/watchfolder/pkg-plist (props changed) head/sysutils/webjob/pkg-plist (props changed) head/sysutils/webmin/pkg-plist (props changed) head/sysutils/wemux/pkg-plist (props changed) head/sysutils/wiimms/pkg-plist (props changed) head/sysutils/wmcube-gdk/pkg-plist (props changed) head/sysutils/wmcube/pkg-plist (props changed) head/sysutils/wmmemload/pkg-plist (props changed) head/sysutils/worldtools/pkg-plist (props changed) head/sysutils/wtail/pkg-plist (props changed) head/sysutils/xcdroast/pkg-plist (props changed) head/sysutils/xfce4-battery-plugin/pkg-plist (props changed) head/sysutils/xfce4-cpugraph-plugin/pkg-plist (props changed) head/sysutils/xfce4-fsguard-plugin/pkg-plist (props changed) head/sysutils/xfce4-genmon-plugin/pkg-plist (props changed) head/sysutils/xfce4-minicmd-plugin/pkg-plist (props changed) head/sysutils/xfce4-mount-plugin/pkg-plist (props changed) head/sysutils/xfce4-netload-plugin/pkg-plist (props changed) head/sysutils/xfce4-systemload-plugin/pkg-plist (props changed) head/sysutils/xfce4-wavelan-plugin/pkg-plist (props changed) head/sysutils/xfsprogs/pkg-plist (props changed) head/sysutils/xlogmaster/pkg-plist (props changed) head/sysutils/xorriso/pkg-plist (props changed) head/sysutils/xosview/pkg-plist (props changed) head/sysutils/xsi/pkg-plist (props changed) head/sysutils/xvidcap/pkg-plist (props changed) head/sysutils/zeitgeist/pkg-plist (props changed) head/sysutils/zetaback/pkg-plist (props changed) head/sysutils/zfs-snapshot-mgmt/pkg-plist (props changed) head/textproc/2bsd-diff/pkg-plist (props changed) head/textproc/add-css-links/pkg-plist (props changed) head/textproc/af-aspell/pkg-plist (props changed) head/textproc/aft/pkg-plist (props changed) head/textproc/aiksaurus-gtk/pkg-plist (props changed) head/textproc/aiksaurus/pkg-plist (props changed) head/textproc/am-aspell/pkg-plist (props changed) head/textproc/antiword/pkg-plist (props changed) head/textproc/apache-solr3/pkg-plist (props changed) head/textproc/apertium/pkg-plist (props changed) head/textproc/archmage/pkg-plist (props changed) head/textproc/artha/pkg-plist (props changed) head/textproc/aspell/pkg-plist.en (props changed) head/textproc/ast-aspell/pkg-plist (props changed) head/textproc/az-aspell/pkg-plist (props changed) head/textproc/be-aspell/pkg-plist (props changed) head/textproc/bg-aspell/pkg-plist (props changed) head/textproc/bib2html/pkg-plist (props changed) head/textproc/bibtool/pkg-plist (props changed) head/textproc/bn-aspell/pkg-plist (props changed) head/textproc/bomstrip/pkg-plist (props changed) head/textproc/br-aspell/pkg-plist (props changed) head/textproc/bsddiff/pkg-plist (props changed) head/textproc/bsdgrep/pkg-plist (props changed) head/textproc/bsdsort/pkg-plist (props changed) head/textproc/btparse/pkg-plist (props changed) head/textproc/c2html/pkg-plist (props changed) head/textproc/ca-aspell/pkg-plist (props changed) head/textproc/catdoc/pkg-plist (props changed) head/textproc/cbedic/pkg-plist (props changed) head/textproc/cdif/pkg-plist (props changed) head/textproc/chpp/pkg-plist (props changed) head/textproc/cl-meta/pkg-plist (props changed) head/textproc/cl-ppcre/pkg-plist (props changed) head/textproc/clucene/pkg-plist (props changed) head/textproc/coco/pkg-plist (props changed) head/textproc/colordiff/pkg-plist (props changed) head/textproc/confetti/pkg-plist (props changed) head/textproc/crimson/pkg-plist (props changed) head/textproc/cs-aspell/pkg-plist (props changed) head/textproc/csb-aspell/pkg-plist (props changed) head/textproc/ctpp2/pkg-plist (props changed) head/textproc/cwtext/pkg-plist (props changed) head/textproc/cy-aspell/pkg-plist (props changed) head/textproc/da-aspell/pkg-plist (props changed) head/textproc/dbacl/pkg-plist (props changed) head/textproc/dict/pkg-plist (props changed) head/textproc/dictionary/pkg-plist (props changed) head/textproc/diffmark/pkg-plist (props changed) head/textproc/diffutils/pkg-plist (props changed) head/textproc/dixit/pkg-plist (props changed) head/textproc/doc-mode.el/pkg-plist (props changed) head/textproc/docbook-241/pkg-plist (props changed) head/textproc/docbook-300/pkg-plist (props changed) head/textproc/docbook-310/pkg-plist (props changed) head/textproc/docbook-400/pkg-plist (props changed) head/textproc/docbook-410/pkg-plist (props changed) head/textproc/docbook-420/pkg-plist (props changed) head/textproc/docbook-500/pkg-plist (props changed) head/textproc/docbook-sk/pkg-plist (props changed) head/textproc/docbook-tdg/pkg-plist (props changed) head/textproc/docbook-to-man/pkg-plist (props changed) head/textproc/docbook-utils/pkg-plist (props changed) head/textproc/docbook-xml/pkg-plist (props changed) head/textproc/docbook-xsl-ns/pkg-plist (props changed) head/textproc/docbook-xsl/pkg-plist (props changed) head/textproc/docbook2X/pkg-plist (props changed) head/textproc/docbook2odf/pkg-plist (props changed) head/textproc/docbookide.el/pkg-plist (props changed) head/textproc/docdiff/pkg-plist (props changed) head/textproc/domc/pkg-plist (props changed) head/textproc/dsssl-docbook-modular/pkg-plist (props changed) head/textproc/dtd-catalogs/pkg-plist (props changed) head/textproc/dtd2relax/pkg-plist (props changed) head/textproc/dtdparse/pkg-plist (props changed) head/textproc/duncan/pkg-plist (props changed) head/textproc/easydiff/pkg-plist (props changed) head/textproc/ecromedos/pkg-plist (props changed) head/textproc/el-aspell/pkg-plist (props changed) head/textproc/emacs-wiki/pkg-plist (props changed) head/textproc/en-aspell/pkg-plist (props changed) head/textproc/enchant/pkg-plist (props changed) head/textproc/eo-aspell/pkg-plist (props changed) head/textproc/eqe/pkg-plist (props changed) head/textproc/eruby/pkg-plist (props changed) head/textproc/es-aspell/pkg-plist (props changed) head/textproc/estraier/pkg-plist (props changed) head/textproc/et-aspell/pkg-plist (props changed) head/textproc/exempi/pkg-plist (props changed) head/textproc/exmpp/pkg-plist (props changed) head/textproc/extract_url/pkg-plist (props changed) head/textproc/fa-aspell/pkg-plist (props changed) head/textproc/fi-aspell/pkg-plist (props changed) head/textproc/filepp/pkg-plist (props changed) head/textproc/fixrtf/pkg-plist (props changed) head/textproc/fldiff/pkg-plist (props changed) head/textproc/flex/pkg-plist (props changed) head/textproc/fo-aspell/pkg-plist (props changed) head/textproc/fop/pkg-plist (props changed) head/textproc/fpc-aspell/pkg-plist (props changed) head/textproc/fpc-libxml2/pkg-plist (props changed) head/textproc/freexl/pkg-plist (props changed) head/textproc/fy-aspell/pkg-plist (props changed) head/textproc/ga-aspell/pkg-plist (props changed) head/textproc/gastex/pkg-plist (props changed) head/textproc/gd-aspell/pkg-plist (props changed) head/textproc/gdict/pkg-plist (props changed) head/textproc/gdome2/pkg-plist (props changed) head/textproc/gl-aspell/pkg-plist (props changed) head/textproc/gladtex/pkg-plist (props changed) head/textproc/glimpse/pkg-plist (props changed) head/textproc/glpi-plugins-AdditionalReports/pkg-plist (props changed) head/textproc/glpi-plugins-DataInjection/pkg-plist (props changed) head/textproc/gmetadom/pkg-plist (props changed) head/textproc/gnome-spell/pkg-plist (props changed) head/textproc/gnome-translate/pkg-plist (props changed) head/textproc/gnugrep/pkg-plist (props changed) head/textproc/go.text/pkg-plist (props changed) head/textproc/goldendict/pkg-plist (props changed) head/textproc/google-ctemplate/pkg-plist (props changed) head/textproc/gpp/pkg-plist (props changed) head/textproc/grap/pkg-plist (props changed) head/textproc/grc-aspell/pkg-plist (props changed) head/textproc/groff/pkg-plist (props changed) head/textproc/groonga/pkg-plist (props changed) head/textproc/gsed/pkg-plist (props changed) head/textproc/gtkspell/pkg-plist (props changed) head/textproc/gu-aspell/pkg-plist (props changed) head/textproc/gv-aspell/pkg-plist (props changed) head/textproc/heirloom-doctools/pkg-plist (props changed) head/textproc/hgrep/pkg-plist (props changed) head/textproc/hi-aspell/pkg-plist (props changed) head/textproc/hil-aspell/pkg-plist (props changed) head/textproc/hr-aspell/pkg-plist (props changed) head/textproc/hs-lhs2tex/pkg-plist (props changed) head/textproc/hsb-aspell/pkg-plist (props changed) head/textproc/htdig/pkg-plist (props changed) head/textproc/html-pretty/pkg-plist (props changed) head/textproc/html/pkg-plist (props changed) head/textproc/htmldoc/pkg-plist (props changed) head/textproc/htmlsection/pkg-plist (props changed) head/textproc/htmltolatex/pkg-plist (props changed) head/textproc/hunspell/pkg-plist (props changed) head/textproc/hy-aspell/pkg-plist (props changed) head/textproc/hyperestraier/pkg-plist (props changed) head/textproc/ia-aspell/pkg-plist (props changed) head/textproc/ibus-kmfl/pkg-plist (props changed) head/textproc/ibus-m17n/pkg-plist (props changed) head/textproc/ibus-qt/pkg-plist (props changed) head/textproc/ibus-table/pkg-plist (props changed) head/textproc/ibus/pkg-plist (props changed) head/textproc/id-aspell/pkg-plist (props changed) head/textproc/iksemel/pkg-plist (props changed) head/textproc/info2man/pkg-plist (props changed) head/textproc/intltool/pkg-plist (props changed) head/textproc/is-aspell/pkg-plist (props changed) head/textproc/iso-schematron-xslt/pkg-plist (props changed) head/textproc/iso12083/pkg-plist (props changed) head/textproc/iso8879/pkg-plist (props changed) head/textproc/ispell/pkg-plist (props changed) head/textproc/ispell/pkg-plist.af (props changed) head/textproc/ispell/pkg-plist.am (props changed) head/textproc/ispell/pkg-plist.br (props changed) head/textproc/ispell/pkg-plist.british (props changed) head/textproc/ispell/pkg-plist.cs (props changed) head/textproc/ispell/pkg-plist.da (props changed) head/textproc/ispell/pkg-plist.dealt (props changed) head/textproc/ispell/pkg-plist.deneu (props changed) head/textproc/ispell/pkg-plist.es (props changed) head/textproc/ispell/pkg-plist.fi (props changed) head/textproc/ispell/pkg-plist.fr (props changed) head/textproc/ispell/pkg-plist.it (props changed) head/textproc/ispell/pkg-plist.nl (props changed) head/textproc/ispell/pkg-plist.no (props changed) head/textproc/ispell/pkg-plist.pl (props changed) head/textproc/ispell/pkg-plist.se (props changed) head/textproc/ispell/pkg-plist.sk (props changed) head/textproc/it-aspell/pkg-plist (props changed) head/textproc/itstool/pkg-plist (props changed) head/textproc/jade/pkg-plist (props changed) head/textproc/jalingo/pkg-plist (props changed) head/textproc/jarnal/pkg-plist (props changed) head/textproc/jdictionary/pkg-plist (props changed) head/textproc/jdictionary/pkg-plist.plugin (props changed) head/textproc/jrefentry/pkg-plist (props changed) head/textproc/kdiff3/pkg-plist (props changed) head/textproc/kmflcomp/pkg-plist (props changed) head/textproc/kn-aspell/pkg-plist (props changed) head/textproc/ku-aspell/pkg-plist (props changed) head/textproc/ky-aspell/pkg-plist (props changed) head/textproc/la-aspell/pkg-plist (props changed) head/textproc/latex-service/pkg-plist (props changed) head/textproc/latex2html/pkg-plist (props changed) head/textproc/lemmatizer2/pkg-plist (props changed) head/textproc/libcsv/pkg-plist (props changed) head/textproc/libcue/pkg-plist (props changed) head/textproc/libebml/pkg-plist (props changed) head/textproc/libextractor/pkg-plist (props changed) head/textproc/libexttextcat/pkg-plist (props changed) head/textproc/libguess/pkg-plist (props changed) head/textproc/liblrdf/pkg-plist (props changed) head/textproc/libmrss/pkg-plist (props changed) head/textproc/libnxml/pkg-plist (props changed) head/textproc/libparsifal/pkg-plist (props changed) head/textproc/libsoldout/pkg-plist (props changed) head/textproc/libsphinxclient/pkg-plist (props changed) head/textproc/libstree/pkg-plist (props changed) head/textproc/libtext-charwidth-perl/pkg-plist (props changed) head/textproc/libtext-wrapi18n-perl/pkg-plist (props changed) head/textproc/libtextcat/pkg-plist (props changed) head/textproc/libtranslate/pkg-plist (props changed) head/textproc/libtre/pkg-plist (props changed) head/textproc/libuninameslist/pkg-plist (props changed) head/textproc/libvisio/pkg-plist (props changed) head/textproc/libwps/pkg-plist (props changed) head/textproc/libxml++26-reference/pkg-plist (props changed) head/textproc/libxml++26/pkg-plist (props changed) head/textproc/libxml2/pkg-plist (props changed) head/textproc/libxode/pkg-plist (props changed) head/textproc/libyaml/pkg-plist (props changed) head/textproc/link-grammar/pkg-plist (props changed) head/textproc/linux-f10-aspell/pkg-plist (props changed) head/textproc/linux-f10-scim-gtk/pkg-plist (props changed) head/textproc/linux-f10-scim-libs/pkg-plist (props changed) head/textproc/linuxdoc/pkg-plist (props changed) head/textproc/localize/pkg-plist (props changed) head/textproc/lt-aspell/pkg-plist (props changed) head/textproc/lttoolbox/pkg-plist (props changed) head/textproc/ltxml/pkg-plist (props changed) head/textproc/luaexpat/pkg-plist (props changed) head/textproc/lv-aspell/pkg-plist (props changed) head/textproc/m17n-contrib/pkg-plist (props changed) head/textproc/m17n-im-config/pkg-plist (props changed) head/textproc/makepatch/pkg-plist (props changed) head/textproc/manued.el/pkg-plist (props changed) head/textproc/mdocml/pkg-plist (props changed) head/textproc/metaf2xml/pkg-plist (props changed) head/textproc/metauml/pkg-plist (props changed) head/textproc/mgdiff/pkg-plist (props changed) head/textproc/mguesser/pkg-plist (props changed) head/textproc/mi-aspell/pkg-plist (props changed) head/textproc/mk-aspell/pkg-plist (props changed) head/textproc/ml-aspell/pkg-plist (props changed) head/textproc/mn-aspell/pkg-plist (props changed) head/textproc/modlogan/pkg-plist (props changed) head/textproc/mr-aspell/pkg-plist (props changed) head/textproc/ms-aspell/pkg-plist (props changed) head/textproc/mt-aspell/pkg-plist (props changed) head/textproc/muse/pkg-plist (props changed) head/textproc/mythes/pkg-plist (props changed) head/textproc/nb-aspell/pkg-plist (props changed) head/textproc/nds-aspell/pkg-plist (props changed) head/textproc/nl-aspell/pkg-plist (props changed) head/textproc/nn-aspell/pkg-plist (props changed) head/textproc/nunnimcax/pkg-plist (props changed) head/textproc/ny-aspell/pkg-plist (props changed) head/textproc/ocaml-csv/pkg-plist (props changed) head/textproc/ocaml-text/pkg-plist (props changed) head/textproc/openfts/pkg-plist (props changed) head/textproc/openjade/pkg-plist (props changed) head/textproc/opensp/pkg-plist (props changed) head/textproc/openvanilla-framework/pkg-plist (props changed) head/textproc/openvanilla-modules/pkg-plist (props changed) head/textproc/or-aspell/pkg-plist (props changed) head/textproc/ots/pkg-plist (props changed) head/textproc/p5-Algorithm-RabinKarp/pkg-plist (props changed) head/textproc/p5-Apache-ParseLog/pkg-plist (props changed) head/textproc/p5-BibTeX-Parser/pkg-plist (props changed) head/textproc/p5-Bloom-Filter/pkg-plist (props changed) head/textproc/p5-CAM-PDF/pkg-plist (props changed) head/textproc/p5-CSS-Croco/pkg-plist (props changed) head/textproc/p5-CSS-SAC/pkg-plist (props changed) head/textproc/p5-CSS-Squish/pkg-plist (props changed) head/textproc/p5-CSS-Tiny/pkg-plist (props changed) head/textproc/p5-CSS/pkg-plist (props changed) head/textproc/p5-Chess-PGN-Parse/pkg-plist (props changed) head/textproc/p5-Class-CSV/pkg-plist (props changed) head/textproc/p5-Data-FormValidator-Constraints-DateTime/pkg-plist (props changed) head/textproc/p5-Data-FormValidator/pkg-plist (props changed) head/textproc/p5-Data-Phrasebook-Loader-YAML/pkg-plist (props changed) head/textproc/p5-Data-Phrasebook/pkg-plist (props changed) head/textproc/p5-Dev-Bollocks/pkg-plist (props changed) head/textproc/p5-DocSet/pkg-plist (props changed) head/textproc/p5-Filter-Simple/pkg-plist (props changed) head/textproc/p5-Games-Dissociate/pkg-plist (props changed) head/textproc/p5-Geo-Parse-OSM/pkg-plist (props changed) head/textproc/p5-Google-Data-JSON/pkg-plist (props changed) head/textproc/p5-HTML-CTPP2/pkg-plist (props changed) head/textproc/p5-HTML-Copy/pkg-plist (props changed) head/textproc/p5-HTML-EscapeEvil/pkg-plist (props changed) head/textproc/p5-HTML-FormatText-WithLinks-AndTables/pkg-plist (props changed) head/textproc/p5-HTML-QRCode/pkg-plist (props changed) head/textproc/p5-HTML-SuperForm/pkg-plist (props changed) head/textproc/p5-HTML-TagFilter/pkg-plist (props changed) head/textproc/p5-HTML-Tiny/pkg-plist (props changed) head/textproc/p5-HTML-Truncate/pkg-plist (props changed) head/textproc/p5-IDNA-Punycode/pkg-plist (props changed) head/textproc/p5-JavaScript-Minifier/pkg-plist (props changed) head/textproc/p5-KinoSearch1/pkg-plist (props changed) head/textproc/p5-LaTeX-Encode/pkg-plist (props changed) head/textproc/p5-LaTeX-TOM/pkg-plist (props changed) head/textproc/p5-Lingua-Conjunction/pkg-plist (props changed) head/textproc/p5-Lingua-EN-AddressParse/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Gender/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Infinitive/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Inflect/pkg-plist (props changed) head/textproc/p5-Lingua-EN-MatchNames/pkg-plist (props changed) head/textproc/p5-Lingua-EN-NameCase/pkg-plist (props changed) head/textproc/p5-Lingua-EN-NameParse/pkg-plist (props changed) head/textproc/p5-Lingua-EN-NamedEntity/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Nickname/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Numbers-Easy/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Numbers-Ordinate/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Numbers/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Sentence/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Squeeze/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Summarize/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Syllable/pkg-plist (props changed) head/textproc/p5-Lingua-EN-Tagger/pkg-plist (props changed) head/textproc/p5-Lingua-PT-Stemmer/pkg-plist (props changed) head/textproc/p5-Lingua-Preferred/pkg-plist (props changed) head/textproc/p5-Lingua-Stem-Fr/pkg-plist (props changed) head/textproc/p5-Lingua-Stem-It/pkg-plist (props changed) head/textproc/p5-Lingua-Stem-Ru/pkg-plist (props changed) head/textproc/p5-Lingua-Stem-Snowball-Da/pkg-plist (props changed) head/textproc/p5-Lingua-Stem-Snowball-No/pkg-plist (props changed) head/textproc/p5-Lingua-Stem-Snowball-Se/pkg-plist (props changed) head/textproc/p5-Lingua-Stem/pkg-plist (props changed) head/textproc/p5-Lingua-StopWords/pkg-plist (props changed) head/textproc/p5-Lingua-Treebank/pkg-plist (props changed) head/textproc/p5-MARC-Charset/pkg-plist (props changed) head/textproc/p5-MARC-Record/pkg-plist (props changed) head/textproc/p5-MKDoc-XML/pkg-plist (props changed) head/textproc/p5-Makefile-Parser/pkg-plist (props changed) head/textproc/p5-MathML-Entities/pkg-plist (props changed) head/textproc/p5-Net-YASA/pkg-plist (props changed) head/textproc/p5-NetAddr-IP-Find/pkg-plist (props changed) head/textproc/p5-Number-Spell/pkg-plist (props changed) head/textproc/p5-ODF-lpOD/pkg-plist (props changed) head/textproc/p5-PDF-API2/pkg-plist (props changed) head/textproc/p5-PDF-API3/pkg-plist (props changed) head/textproc/p5-PDF-FromHTML/pkg-plist (props changed) head/textproc/p5-PDF-Table/pkg-plist (props changed) head/textproc/p5-POD2-Base/pkg-plist (props changed) head/textproc/p5-POE-Filter-XML/pkg-plist (props changed) head/textproc/p5-POSIX-Regex/pkg-plist (props changed) head/textproc/p5-PPIx-Regexp/pkg-plist (props changed) head/textproc/p5-PPIx-Utilities/pkg-plist (props changed) head/textproc/p5-Parse-Flex/pkg-plist (props changed) head/textproc/p5-Parse-Syslog/pkg-plist (props changed) head/textproc/p5-PerlPoint-Package/pkg-plist (props changed) head/textproc/p5-Petal-CodePerl/pkg-plist (props changed) head/textproc/p5-Petal-Mail/pkg-plist (props changed) head/textproc/p5-Petal-Utils/pkg-plist (props changed) head/textproc/p5-Petal/pkg-plist (props changed) head/textproc/p5-Plagger/pkg-plist (props changed) head/textproc/p5-Plucene-Simple/pkg-plist (props changed) head/textproc/p5-Pod-Abstract/pkg-plist (props changed) head/textproc/p5-Pod-Autopod/pkg-plist (props changed) head/textproc/p5-Pod-Constants/pkg-plist (props changed) head/textproc/p5-Pod-DocBook/pkg-plist (props changed) head/textproc/p5-Pod-Escapes/pkg-plist (props changed) head/textproc/p5-Pod-POM-View-HTML-Filter/pkg-plist (props changed) head/textproc/p5-Pod-POM/pkg-plist (props changed) head/textproc/p5-Pod-Parser/pkg-plist (props changed) head/textproc/p5-Pod-Perldoc/pkg-plist (props changed) head/textproc/p5-Pod-ProjectDocs/pkg-plist (props changed) head/textproc/p5-Pod-Simple/pkg-plist (props changed) head/textproc/p5-Pod-Spell/pkg-plist (props changed) head/textproc/p5-Pod-Strip/pkg-plist (props changed) head/textproc/p5-Pod-Stripper/pkg-plist (props changed) head/textproc/p5-Pod-Tree/pkg-plist (props changed) head/textproc/p5-Pod-WikiDoc/pkg-plist (props changed) head/textproc/p5-Pod-XML/pkg-plist (props changed) head/textproc/p5-Pod-Xhtml/pkg-plist (props changed) head/textproc/p5-RADIUS-UserFile/pkg-plist (props changed) head/textproc/p5-RDF-Core/pkg-plist (props changed) head/textproc/p5-RDF-Notation3/pkg-plist (props changed) head/textproc/p5-RDF-Simple/pkg-plist (props changed) head/textproc/p5-RDFStore/pkg-plist (props changed) head/textproc/p5-RTF-Parser/pkg-plist (props changed) head/textproc/p5-RTF-Tokenizer/pkg-plist (props changed) head/textproc/p5-RTF-Writer/pkg-plist (props changed) head/textproc/p5-Regex-PreSuf/pkg-plist (props changed) head/textproc/p5-Regexp-Common-Email-Address/pkg-plist (props changed) head/textproc/p5-Regexp-Common-net-CIDR/pkg-plist (props changed) head/textproc/p5-Regexp-Copy/pkg-plist (props changed) head/textproc/p5-Regexp-Log-Common/pkg-plist (props changed) head/textproc/p5-Regexp-Log/pkg-plist (props changed) head/textproc/p5-SGML-DTDParse/pkg-plist (props changed) head/textproc/p5-SGMLSpm/pkg-plist (props changed) head/textproc/p5-Search-Estraier/pkg-plist (props changed) head/textproc/p5-Search-Saryer/pkg-plist (props changed) head/textproc/p5-Search-VectorSpace/pkg-plist (props changed) head/textproc/p5-Sort-ArbBiLex/pkg-plist (props changed) head/textproc/p5-Sphinx-Search/pkg-plist (props changed) head/textproc/p5-Spork/pkg-plist (props changed) head/textproc/p5-Spreadsheet-ParseExcel/pkg-plist (props changed) head/textproc/p5-Spreadsheet-Read/pkg-plist (props changed) head/textproc/p5-Spreadsheet-ReadSXC/pkg-plist (props changed) head/textproc/p5-Spreadsheet-WriteExcel-FromXML/pkg-plist (props changed) head/textproc/p5-Spreadsheet-WriteExcel-Styler/pkg-plist (props changed) head/textproc/p5-Spreadsheet-WriteExcelXML/pkg-plist (props changed) head/textproc/p5-Spreadsheet-XLSX/pkg-plist (props changed) head/textproc/p5-String-BufferStack/pkg-plist (props changed) head/textproc/p5-String-CamelCase/pkg-plist (props changed) head/textproc/p5-String-Compare-ConstantTime/pkg-plist (props changed) head/textproc/p5-String-Divert/pkg-plist (props changed) head/textproc/p5-String-Escape/pkg-plist (props changed) head/textproc/p5-String-Flogger/pkg-plist (props changed) head/textproc/p5-String-Format/pkg-plist (props changed) head/textproc/p5-String-Fraction/pkg-plist (props changed) head/textproc/p5-String-RewritePrefix/pkg-plist (props changed) head/textproc/p5-String-Scanf/pkg-plist (props changed) head/textproc/p5-String-ShellQuote/pkg-plist (props changed) head/textproc/p5-String-ShowDiff/pkg-plist (props changed) head/textproc/p5-String-Strip/pkg-plist (props changed) head/textproc/p5-String-Tokenizer/pkg-plist (props changed) head/textproc/p5-String-Truncate/pkg-plist (props changed) head/textproc/p5-String-Urandom/pkg-plist (props changed) head/textproc/p5-Syntax-Highlight-Engine-Kate/pkg-plist (props changed) head/textproc/p5-Syntax-Highlight-Perl-Improved/pkg-plist (props changed) head/textproc/p5-TeX-Encode/pkg-plist (props changed) head/textproc/p5-TeX-Hyphen/pkg-plist (props changed) head/textproc/p5-Template-Declare/pkg-plist (props changed) head/textproc/p5-Template-Extract/pkg-plist (props changed) head/textproc/p5-Template-Magic/pkg-plist (props changed) head/textproc/p5-Template-Plugin-Autoformat/pkg-plist (props changed) head/textproc/p5-Template-Plugin-HTML-SuperForm/pkg-plist (props changed) head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/pkg-plist (props changed) head/textproc/p5-Template-Plugin-XML-Escape/pkg-plist (props changed) head/textproc/p5-Template-Semantic/pkg-plist (props changed) head/textproc/p5-Template-Tiny/pkg-plist (props changed) head/textproc/p5-Term-QRCode/pkg-plist (props changed) head/textproc/p5-Test-Perl-Critic/pkg-plist (props changed) head/textproc/p5-Text-ASCIIMathML/pkg-plist (props changed) head/textproc/p5-Text-ASCIITable/pkg-plist (props changed) head/textproc/p5-Text-Affixes/pkg-plist (props changed) head/textproc/p5-Text-Aspell/pkg-plist (props changed) head/textproc/p5-Text-Autoformat/pkg-plist (props changed) head/textproc/p5-Text-Balanced/pkg-plist (props changed) head/textproc/p5-Text-Bastardize/pkg-plist (props changed) head/textproc/p5-Text-BibTeX/pkg-plist (props changed) head/textproc/p5-Text-Bind/pkg-plist (props changed) head/textproc/p5-Text-Brew/pkg-plist (props changed) head/textproc/p5-Text-CSV-Encoded/pkg-plist (props changed) head/textproc/p5-Text-CSV-Simple/pkg-plist (props changed) head/textproc/p5-Text-CSV/pkg-plist (props changed) head/textproc/p5-Text-CSV_XS/pkg-plist (props changed) head/textproc/p5-Text-Capitalize/pkg-plist (props changed) head/textproc/p5-Text-CharWidth/pkg-plist (props changed) head/textproc/p5-Text-Chomp/pkg-plist (props changed) head/textproc/p5-Text-ClearSilver/pkg-plist (props changed) head/textproc/p5-Text-Context-EitherSide/pkg-plist (props changed) head/textproc/p5-Text-Context/pkg-plist (props changed) head/textproc/p5-Text-DHCPLeases/pkg-plist (props changed) head/textproc/p5-Text-Decorator/pkg-plist (props changed) head/textproc/p5-Text-Delimited/pkg-plist (props changed) head/textproc/p5-Text-Diff-HTML/pkg-plist (props changed) head/textproc/p5-Text-Diff-Parser/pkg-plist (props changed) head/textproc/p5-Text-Diff/pkg-plist (props changed) head/textproc/p5-Text-Diff3/pkg-plist (props changed) head/textproc/p5-Text-DoubleMetaphone/pkg-plist (props changed) head/textproc/p5-Text-Emoticon-GoogleTalk/pkg-plist (props changed) head/textproc/p5-Text-Emoticon/pkg-plist (props changed) head/textproc/p5-Text-EtText/pkg-plist (props changed) head/textproc/p5-Text-Extract-Word/pkg-plist (props changed) head/textproc/p5-Text-ExtractWords/pkg-plist (props changed) head/textproc/p5-Text-FillIn/pkg-plist (props changed) head/textproc/p5-Text-Filter-Chain/pkg-plist (props changed) head/textproc/p5-Text-Filter/pkg-plist (props changed) head/textproc/p5-Text-FindIndent/pkg-plist (props changed) head/textproc/p5-Text-FixEOL/pkg-plist (props changed) head/textproc/p5-Text-FixedLength-Extra/pkg-plist (props changed) head/textproc/p5-Text-FixedLength/pkg-plist (props changed) head/textproc/p5-Text-Flow/pkg-plist (props changed) head/textproc/p5-Text-Flowchart/pkg-plist (props changed) head/textproc/p5-Text-Flowed/pkg-plist (props changed) head/textproc/p5-Text-Format+NWrap/pkg-plist (props changed) head/textproc/p5-Text-Format/pkg-plist (props changed) head/textproc/p5-Text-FormatTable/pkg-plist (props changed) head/textproc/p5-Text-German/pkg-plist (props changed) head/textproc/p5-Text-Glob/pkg-plist (props changed) head/textproc/p5-Text-Graphics/pkg-plist (props changed) head/textproc/p5-Text-Greeking/pkg-plist (props changed) head/textproc/p5-Text-Haml/pkg-plist (props changed) head/textproc/p5-Text-Hatena/pkg-plist (props changed) head/textproc/p5-Text-Highlight/pkg-plist (props changed) head/textproc/p5-Text-HikiDoc/pkg-plist (props changed) head/textproc/p5-Text-LTSV/pkg-plist (props changed) head/textproc/p5-Text-Language-Guess/pkg-plist (props changed) head/textproc/p5-Text-Lorem/pkg-plist (props changed) head/textproc/p5-Text-Markdown/pkg-plist (props changed) head/textproc/p5-Text-Match-FastAlternatives/pkg-plist (props changed) head/textproc/p5-Text-Metaphone/pkg-plist (props changed) head/textproc/p5-Text-MicroMason/pkg-plist (props changed) head/textproc/p5-Text-MicroTemplate-Extended/pkg-plist (props changed) head/textproc/p5-Text-MicroTemplate/pkg-plist (props changed) head/textproc/p5-Text-MultiMarkdown/pkg-plist (props changed) head/textproc/p5-Text-NeatTemplate/pkg-plist (props changed) head/textproc/p5-Text-Netstring/pkg-plist (props changed) head/textproc/p5-Text-Ngram/pkg-plist (props changed) head/textproc/p5-Text-Ngrams/pkg-plist (props changed) head/textproc/p5-Text-Original/pkg-plist (props changed) head/textproc/p5-Text-ParagraphDiff/pkg-plist (props changed) head/textproc/p5-Text-Patch/pkg-plist (props changed) head/textproc/p5-Text-Pipe/pkg-plist (props changed) head/textproc/p5-Text-Query/pkg-plist (props changed) head/textproc/p5-Text-Quote/pkg-plist (props changed) head/textproc/p5-Text-Quoted/pkg-plist (props changed) head/textproc/p5-Text-RecordParser/pkg-plist (props changed) head/textproc/p5-Text-Reflow/pkg-plist (props changed) head/textproc/p5-Text-Reform/pkg-plist (props changed) head/textproc/p5-Text-Report/pkg-plist (props changed) head/textproc/p5-Text-Repository/pkg-plist (props changed) head/textproc/p5-Text-Sass/pkg-plist (props changed) head/textproc/p5-Text-Shellwords/pkg-plist (props changed) head/textproc/p5-Text-Similarity/pkg-plist (props changed) head/textproc/p5-Text-SimpleTable/pkg-plist (props changed) head/textproc/p5-Text-SimpleTemplate/pkg-plist (props changed) head/textproc/p5-Text-SpellChecker-GUI/pkg-plist (props changed) head/textproc/p5-Text-SpellChecker/pkg-plist (props changed) head/textproc/p5-Text-Striphigh/pkg-plist (props changed) head/textproc/p5-Text-Table/pkg-plist (props changed) head/textproc/p5-Text-Tabs+Wrap/pkg-plist (props changed) head/textproc/p5-Text-TabularDisplay/pkg-plist (props changed) head/textproc/p5-Text-Tags/pkg-plist (props changed) head/textproc/p5-Text-Template/pkg-plist (props changed) head/textproc/p5-Text-Textile/pkg-plist (props changed) head/textproc/p5-Text-Tmpl/pkg-plist (props changed) head/textproc/p5-Text-Trac/pkg-plist (props changed) head/textproc/p5-Text-Trim/pkg-plist (props changed) head/textproc/p5-Text-Truncate/pkg-plist (props changed) head/textproc/p5-Text-Typography/pkg-plist (props changed) head/textproc/p5-Text-Unaccent/pkg-plist (props changed) head/textproc/p5-Text-VimColor/pkg-plist (props changed) head/textproc/p5-Text-WikiCreole/pkg-plist (props changed) head/textproc/p5-Text-WikiFormat/pkg-plist (props changed) head/textproc/p5-Text-WordDiff/pkg-plist (props changed) head/textproc/p5-Text-Wrapper/pkg-plist (props changed) head/textproc/p5-Text-Xslate-Bridge-TT2Like/pkg-plist (props changed) head/textproc/p5-Text-Xslate/pkg-plist (props changed) head/textproc/p5-Text-vCard/pkg-plist (props changed) head/textproc/p5-Tiffany/pkg-plist (props changed) head/textproc/p5-Time-Human/pkg-plist (props changed) head/textproc/p5-Tk-XMLViewer/pkg-plist (props changed) head/textproc/p5-Tree-Nary/pkg-plist (props changed) head/textproc/p5-UML-Class-Simple/pkg-plist (props changed) head/textproc/p5-UML-Sequence/pkg-plist (props changed) head/textproc/p5-UML-State/pkg-plist (props changed) head/textproc/p5-URI-Find/pkg-plist (props changed) head/textproc/p5-Unicode-CheckUTF8/pkg-plist (props changed) head/textproc/p5-Unicode-EastAsianWidth/pkg-plist (props changed) head/textproc/p5-Unicode-Escape/pkg-plist (props changed) head/textproc/p5-Unicode-Unihan/pkg-plist (props changed) head/textproc/p5-Version-Next/pkg-plist (props changed) head/textproc/p5-Vroom/pkg-plist (props changed) head/textproc/p5-WDDX/pkg-plist (props changed) head/textproc/p5-WWW-Google-SiteMap/pkg-plist (props changed) head/textproc/p5-WordNet-QueryData/pkg-plist (props changed) head/textproc/p5-WordNet-Similarity/pkg-plist (props changed) head/textproc/p5-XML-Atom-Ext-OpenSearch/pkg-plist (props changed) head/textproc/p5-XML-Atom-Filter/pkg-plist (props changed) head/textproc/p5-XML-Atom-SimpleFeed/pkg-plist (props changed) head/textproc/p5-XML-Atom-Stream/pkg-plist (props changed) head/textproc/p5-XML-Atom-Syndication/pkg-plist (props changed) head/textproc/p5-XML-Atom/pkg-plist (props changed) head/textproc/p5-XML-AutoWriter/pkg-plist (props changed) head/textproc/p5-XML-Bare/pkg-plist (props changed) head/textproc/p5-XML-Canonical/pkg-plist (props changed) head/textproc/p5-XML-CanonicalizeXML/pkg-plist (props changed) head/textproc/p5-XML-Catalog/pkg-plist (props changed) head/textproc/p5-XML-Clean/pkg-plist (props changed) head/textproc/p5-XML-Code/pkg-plist (props changed) head/textproc/p5-XML-Compile-Dumper/pkg-plist (props changed) head/textproc/p5-XML-DBMS/pkg-plist (props changed) head/textproc/p5-XML-DOM-Lite/pkg-plist (props changed) head/textproc/p5-XML-DOM-XPath/pkg-plist (props changed) head/textproc/p5-XML-DOM/pkg-plist (props changed) head/textproc/p5-XML-DOM2/pkg-plist (props changed) head/textproc/p5-XML-DOMHandler/pkg-plist (props changed) head/textproc/p5-XML-DT/pkg-plist (props changed) head/textproc/p5-XML-DTDParser/pkg-plist (props changed) head/textproc/p5-XML-Descent/pkg-plist (props changed) head/textproc/p5-XML-DifferenceMarkup/pkg-plist (props changed) head/textproc/p5-XML-Directory/pkg-plist (props changed) head/textproc/p5-XML-DoubleEncodedEntities/pkg-plist (props changed) head/textproc/p5-XML-Driver-HTML/pkg-plist (props changed) head/textproc/p5-XML-Dumper/pkg-plist (props changed) head/textproc/p5-XML-Elemental/pkg-plist (props changed) head/textproc/p5-XML-Encoding/pkg-plist (props changed) head/textproc/p5-XML-Entities/pkg-plist (props changed) head/textproc/p5-XML-FOAF/pkg-plist (props changed) head/textproc/p5-XML-Feed/pkg-plist (props changed) head/textproc/p5-XML-FeedPP/pkg-plist (props changed) head/textproc/p5-XML-Filter-BufferText/pkg-plist (props changed) head/textproc/p5-XML-Filter-DOMFilter-LibXML/pkg-plist (props changed) head/textproc/p5-XML-Filter-DetectWS/pkg-plist (props changed) head/textproc/p5-XML-Filter-GenericChunk/pkg-plist (props changed) head/textproc/p5-XML-Filter-Reindent/pkg-plist (props changed) head/textproc/p5-XML-Filter-SAX1toSAX2/pkg-plist (props changed) head/textproc/p5-XML-Filter-SAXT/pkg-plist (props changed) head/textproc/p5-XML-Filter-XInclude/pkg-plist (props changed) head/textproc/p5-XML-Filter-XSLT/pkg-plist (props changed) head/textproc/p5-XML-Flow/pkg-plist (props changed) head/textproc/p5-XML-GDOME/pkg-plist (props changed) head/textproc/p5-XML-Generator-DBI/pkg-plist (props changed) head/textproc/p5-XML-Generator-PerlData/pkg-plist (props changed) head/textproc/p5-XML-Generator/pkg-plist (props changed) head/textproc/p5-XML-Grove/pkg-plist (props changed) head/textproc/p5-XML-Handler-Dtd2DocBook/pkg-plist (props changed) head/textproc/p5-XML-Handler-Dtd2Html/pkg-plist (props changed) head/textproc/p5-XML-Handler-HTMLWriter/pkg-plist (props changed) head/textproc/p5-XML-Handler-Trees/pkg-plist (props changed) head/textproc/p5-XML-Handler-YAWriter/pkg-plist (props changed) head/textproc/p5-XML-Hash-LX/pkg-plist (props changed) head/textproc/p5-XML-LibXML-Iterator/pkg-plist (props changed) head/textproc/p5-XML-LibXML-Simple/pkg-plist (props changed) head/textproc/p5-XML-Liberal/pkg-plist (props changed) head/textproc/p5-XML-Literal/pkg-plist (props changed) head/textproc/p5-XML-Mini/pkg-plist (props changed) head/textproc/p5-XML-MyXML/pkg-plist (props changed) head/textproc/p5-XML-NamespaceSupport/pkg-plist (props changed) head/textproc/p5-XML-Node/pkg-plist (props changed) head/textproc/p5-XML-NodeFilter/pkg-plist (props changed) head/textproc/p5-XML-OPML-LibXML/pkg-plist (props changed) head/textproc/p5-XML-OPML/pkg-plist (props changed) head/textproc/p5-XML-Parser-EasyTree/pkg-plist (props changed) head/textproc/p5-XML-Parser-Lite-Tree/pkg-plist (props changed) head/textproc/p5-XML-Parser-Style-EasyTree/pkg-plist (props changed) head/textproc/p5-XML-Parser-Style-Elemental/pkg-plist (props changed) head/textproc/p5-XML-Parser/pkg-plist (props changed) head/textproc/p5-XML-Quote/pkg-plist (props changed) head/textproc/p5-XML-RAI/pkg-plist (props changed) head/textproc/p5-XML-RSS-Feed/pkg-plist (props changed) head/textproc/p5-XML-RSS-LibXML/pkg-plist (props changed) head/textproc/p5-XML-RSS-Liberal/pkg-plist (props changed) head/textproc/p5-XML-RSS-Parser/pkg-plist (props changed) head/textproc/p5-XML-RSS-SimpleGen/pkg-plist (props changed) head/textproc/p5-XML-RSS/pkg-plist (props changed) head/textproc/p5-XML-RSSLite/pkg-plist (props changed) head/textproc/p5-XML-Reader/pkg-plist (props changed) head/textproc/p5-XML-RegExp/pkg-plist (props changed) head/textproc/p5-XML-Rewrite/pkg-plist (props changed) head/textproc/p5-XML-Rules/pkg-plist (props changed) head/textproc/p5-XML-SAX-Expat-Incremental/pkg-plist (props changed) head/textproc/p5-XML-SAX-Expat/pkg-plist (props changed) head/textproc/p5-XML-SAX-ExpatXS/pkg-plist (props changed) head/textproc/p5-XML-SAX-Machines/pkg-plist (props changed) head/textproc/p5-XML-SAX-Simple/pkg-plist (props changed) head/textproc/p5-XML-SAX-Writer/pkg-plist (props changed) head/textproc/p5-XML-SAX/pkg-plist (props changed) head/textproc/p5-XML-SAXDriver-CSV/pkg-plist (props changed) head/textproc/p5-XML-SAXDriver-Excel/pkg-plist (props changed) head/textproc/p5-XML-STX/pkg-plist (props changed) head/textproc/p5-XML-Schematron/pkg-plist (props changed) head/textproc/p5-XML-SemanticDiff/pkg-plist (props changed) head/textproc/p5-XML-Simple/pkg-plist (props changed) head/textproc/p5-XML-SimpleObject-LibXML/pkg-plist (props changed) head/textproc/p5-XML-SimpleObject/pkg-plist (props changed) head/textproc/p5-XML-Stream/pkg-plist (props changed) head/textproc/p5-XML-Tiny/pkg-plist (props changed) head/textproc/p5-XML-TinyXML/pkg-plist (props changed) head/textproc/p5-XML-TokeParser/pkg-plist (props changed) head/textproc/p5-XML-TreeBuilder/pkg-plist (props changed) head/textproc/p5-XML-Twig/pkg-plist (props changed) head/textproc/p5-XML-Validate/pkg-plist (props changed) head/textproc/p5-XML-Validator-Schema/pkg-plist (props changed) head/textproc/p5-XML-Writer/pkg-plist (props changed) head/textproc/p5-XML-XBEL/pkg-plist (props changed) head/textproc/p5-XML-XPath/pkg-plist (props changed) head/textproc/p5-XML-XPathEngine/pkg-plist (props changed) head/textproc/p5-XML-XQL/pkg-plist (props changed) head/textproc/p5-XML-XSH/pkg-plist (props changed) head/textproc/p5-XML-XSLT/pkg-plist (props changed) head/textproc/p5-XML-XUpdate-LibXML/pkg-plist (props changed) head/textproc/p5-XML-Xerces/pkg-plist (props changed) head/textproc/p5-YAML-LibYAML/pkg-plist (props changed) head/textproc/p5-YAML-Shell/pkg-plist (props changed) head/textproc/p5-YAML-Syck/pkg-plist (props changed) head/textproc/p5-YAML-Tiny-Color/pkg-plist (props changed) head/textproc/p5-YAPE-HTML/pkg-plist (props changed) head/textproc/p5-YAPE-Regex-Explain/pkg-plist (props changed) head/textproc/p5-YAPE-Regex/pkg-plist (props changed) head/textproc/p5-dTemplate/pkg-plist (props changed) head/textproc/p5-libxml/pkg-plist (props changed) head/textproc/p5-pod2pdf/pkg-plist (props changed) head/textproc/p5-xmltv/pkg-plist (props changed) head/textproc/pa-aspell/pkg-plist (props changed) head/textproc/perl2html/pkg-plist (props changed) head/textproc/plover/pkg-plist (props changed) head/textproc/po4a/pkg-plist (props changed) head/textproc/pootle/pkg-plist (props changed) head/textproc/popup/pkg-plist (props changed) head/textproc/ppower4/pkg-plist (props changed) head/textproc/print-n-times/pkg-plist (props changed) head/textproc/prosper/pkg-plist (props changed) head/textproc/py-4suite-xml/pkg-plist (props changed) head/textproc/py-4suite/pkg-plist (props changed) head/textproc/py-Chameleon/pkg-plist (props changed) head/textproc/py-MarkupSafe/pkg-plist (props changed) head/textproc/py-Tempita/pkg-plist (props changed) head/textproc/py-dsv/pkg-plist (props changed) head/textproc/py-elib.intl/pkg-plist (props changed) head/textproc/py-enchant/pkg-plist (props changed) head/textproc/py-errorhandler/pkg-plist (props changed) head/textproc/py-feedparser/pkg-plist (props changed) head/textproc/py-genshi-devel/pkg-plist (props changed) head/textproc/py-genshi/pkg-plist (props changed) head/textproc/py-gettext/pkg-plist (props changed) head/textproc/py-html2text/pkg-plist (props changed) head/textproc/py-hyperestraier-python/pkg-plist (props changed) head/textproc/py-libxml2/pkg-plist (props changed) head/textproc/py-libxslt/pkg-plist (props changed) head/textproc/py-markdown/pkg-plist (props changed) head/textproc/py-markdown2/pkg-plist (props changed) head/textproc/py-paragrep/pkg-plist (props changed) head/textproc/py-pss/pkg-plist (props changed) head/textproc/py-pygments/pkg-plist (props changed) head/textproc/py-pystache/pkg-plist (props changed) head/textproc/py-pyx12/pkg-plist (props changed) head/textproc/py-qt4-xml/pkg-plist (props changed) head/textproc/py-qt4-xmlpatterns/pkg-plist (props changed) head/textproc/py-reverend/pkg-plist (props changed) head/textproc/py-rstyoutube/pkg-plist (props changed) head/textproc/py-translationstring/pkg-plist (props changed) head/textproc/py-wicked/pkg-plist (props changed) head/textproc/py-wordnet/pkg-plist (props changed) head/textproc/py-wtforms/pkg-plist (props changed) head/textproc/py-xlrd/pkg-plist (props changed) head/textproc/py-xml/pkg-plist (props changed) head/textproc/py-xmltools/pkg-plist (props changed) head/textproc/py-xmltv/pkg-plist (props changed) head/textproc/py-zope.app.i18n/pkg-plist (props changed) head/textproc/py-zope.app.locales/pkg-plist (props changed) head/textproc/py-zope.i18nmessageid/pkg-plist (props changed) head/textproc/py-zope.structuredtext/pkg-plist (props changed) head/textproc/py-zope.tal/pkg-plist (props changed) head/textproc/py2html/pkg-plist (props changed) head/textproc/pybook/pkg-plist (props changed) head/textproc/pychm/pkg-plist (props changed) head/textproc/pystemmer/pkg-plist (props changed) head/textproc/qu-aspell/pkg-plist (props changed) head/textproc/queequeg/pkg-plist (props changed) head/textproc/raptor/pkg-plist (props changed) head/textproc/rarian/pkg-plist (props changed) head/textproc/rast/pkg-plist (props changed) head/textproc/redland-bindings/pkg-plist (props changed) head/textproc/redland/pkg-plist (props changed) head/textproc/refdb/pkg-plist (props changed) head/textproc/resume-extensions/pkg-plist (props changed) head/textproc/resume/pkg-plist (props changed) head/textproc/ro-aspell/pkg-plist (props changed) head/textproc/roap/pkg-plist (props changed) head/textproc/rubber/pkg-plist (props changed) head/textproc/ruby-deplate/pkg-plist (props changed) head/textproc/ruby-diff/pkg-plist (props changed) head/textproc/ruby-escape/pkg-plist (props changed) head/textproc/ruby-format/pkg-plist (props changed) head/textproc/ruby-html-fillinform/pkg-plist (props changed) head/textproc/ruby-html-template/pkg-plist (props changed) head/textproc/ruby-htree/pkg-plist (props changed) head/textproc/ruby-liquid/pkg-plist (props changed) head/textproc/ruby-rd-mode.el/pkg-plist (props changed) head/textproc/ruby-rdtool/pkg-plist (props changed) head/textproc/ruby-rss.alt/pkg-plist (props changed) head/textproc/ruby-rss/pkg-plist (props changed) head/textproc/ruby-rttool/pkg-plist (props changed) head/textproc/ruby-sary/pkg-plist (props changed) head/textproc/ruby-xmlconfigfile/pkg-plist (props changed) head/textproc/ruby-xmlparser/pkg-plist (props changed) head/textproc/ruby-xmlscan/pkg-plist (props changed) head/textproc/rw-aspell/pkg-plist (props changed) head/textproc/rxp/pkg-plist (props changed) head/textproc/s5/pkg-plist (props changed) head/textproc/sagasu/pkg-plist (props changed) head/textproc/sary/pkg-plist (props changed) head/textproc/saxon/pkg-plist (props changed) head/textproc/sc-aspell/pkg-plist (props changed) head/textproc/scew/pkg-plist (props changed) head/textproc/scim-bridge-qt4/pkg-plist (props changed) head/textproc/scim-input-pad/pkg-plist (props changed) head/textproc/scim-kmfl-imengine/pkg-plist (props changed) head/textproc/scim-m17n/pkg-plist (props changed) head/textproc/scim-table-imengine/pkg-plist (props changed) head/textproc/scrollkeeper/pkg-plist (props changed) head/textproc/scss/pkg-plist (props changed) head/textproc/sdf/pkg-plist (props changed) head/textproc/sdocbook-xml/pkg-plist (props changed) head/textproc/senna/pkg-plist (props changed) head/textproc/sgmlformat/pkg-plist (props changed) head/textproc/sgmls/pkg-plist (props changed) head/textproc/sgmltools-lite/pkg-plist (props changed) head/textproc/sgrep/pkg-plist (props changed) head/textproc/sgrep2/pkg-plist (props changed) head/textproc/sigil/pkg-plist (props changed) head/textproc/silvercity/pkg-plist (props changed) head/textproc/simplehtmldom/pkg-plist (props changed) head/textproc/simplexml/pkg-plist (props changed) head/textproc/sk-aspell/pkg-plist (props changed) head/textproc/sl-aspell/pkg-plist (props changed) head/textproc/slides/pkg-plist (props changed) head/textproc/sml-fxp/pkg-plist (props changed) head/textproc/soothsayer/pkg-plist (props changed) head/textproc/source-highlight/pkg-plist (props changed) head/textproc/sowing/pkg-plist (props changed) head/textproc/spellutils/pkg-plist (props changed) head/textproc/sphinxsearch-devel/pkg-plist (props changed) head/textproc/sr-aspell/pkg-plist (props changed) head/textproc/srilm/pkg-plist (props changed) head/textproc/stardict-BritannicaConcise/pkg-plist (props changed) head/textproc/stardict-MerrianWebster/pkg-plist (props changed) head/textproc/stardict-OxfordCollocation/pkg-plist (props changed) head/textproc/stardict-longman/pkg-plist (props changed) head/textproc/stardict-oald/pkg-plist (props changed) head/textproc/stardict-rptts/pkg-plist (props changed) head/textproc/supercat/pkg-plist (props changed) head/textproc/sv-aspell/pkg-plist (props changed) head/textproc/svn2cl/pkg-plist (props changed) head/textproc/sw-aspell/pkg-plist (props changed) head/textproc/sxml/pkg-plist (props changed) head/textproc/syck/pkg-plist (props changed) head/textproc/ta-aspell/pkg-plist (props changed) head/textproc/te-aspell/pkg-plist (props changed) head/textproc/teckit/pkg-plist (props changed) head/textproc/tei-guidelines-p3/pkg-plist (props changed) head/textproc/tei-p3/pkg-plist (props changed) head/textproc/tet-aspell/pkg-plist (props changed) head/textproc/texi2html/pkg-plist (props changed) head/textproc/textogif/pkg-plist (props changed) head/textproc/tinyxml/pkg-plist (props changed) head/textproc/tk-aspell/pkg-plist (props changed) head/textproc/tl-aspell/pkg-plist (props changed) head/textproc/tn-aspell/pkg-plist (props changed) head/textproc/tokyodystopia/pkg-plist (props changed) head/textproc/tr-aspell/pkg-plist (props changed) head/textproc/translate-toolkit/pkg-plist (props changed) head/textproc/txt2tags/pkg-plist (props changed) head/textproc/uim-el-xemacs21-mule/pkg-plist (props changed) head/textproc/uim-el/pkg-plist (props changed) head/textproc/uim-gnome/pkg-plist (props changed) head/textproc/uim-gtk/pkg-plist (props changed) head/textproc/uim-gtk3/pkg-plist (props changed) head/textproc/uim-kde4/pkg-plist (props changed) head/textproc/uim-m17nlib/pkg-plist (props changed) head/textproc/uim-qt4/pkg-plist (props changed) head/textproc/uml2svg/pkg-plist (props changed) head/textproc/unroff/pkg-plist (props changed) head/textproc/utf8proc/pkg-plist (props changed) head/textproc/uz-aspell/pkg-plist (props changed) head/textproc/wa-aspell/pkg-plist (props changed) head/textproc/wbxml2/pkg-plist (props changed) head/textproc/wdiff/pkg-plist (props changed) head/textproc/webcpp/pkg-plist (props changed) head/textproc/website/pkg-plist (props changed) head/textproc/wordnet/pkg-plist (props changed) head/textproc/words/pkg-plist (props changed) head/textproc/wv/pkg-plist (props changed) head/textproc/wv2/pkg-plist (props changed) head/textproc/xalan-c/pkg-plist (props changed) head/textproc/xerces-c2-devel/pkg-plist (props changed) head/textproc/xerces-c2/pkg-plist (props changed) head/textproc/xerces-c3/pkg-plist (props changed) head/textproc/xhtml-11/pkg-plist (props changed) head/textproc/xhtml/pkg-plist (props changed) head/textproc/xlhtml/pkg-plist (props changed) head/textproc/xml-format/pkg-plist (props changed) head/textproc/xml-i18n-tools/pkg-plist (props changed) head/textproc/xml-parse.el/pkg-plist (props changed) head/textproc/xml2rfc/pkg-plist (props changed) head/textproc/xmlcharent/pkg-plist (props changed) head/textproc/xmlgen/pkg-plist (props changed) head/textproc/xmlroff/pkg-plist (props changed) head/textproc/xqilla/pkg-plist (props changed) head/textproc/xslide.el/pkg-plist (props changed) head/textproc/xt/pkg-plist (props changed) head/textproc/yamcha/pkg-plist (props changed) head/textproc/yaml-mode.el/pkg-plist (props changed) head/textproc/yi-aspell/pkg-plist (props changed) head/textproc/yodl/pkg-plist (props changed) head/textproc/yould/pkg-plist (props changed) head/textproc/zu-aspell/pkg-plist (props changed) head/ukrainian/aspell/pkg-plist (props changed) head/ukrainian/ispell/pkg-plist (props changed) head/ukrainian/monacofonts/pkg-plist (props changed) head/vietnamese/aspell/pkg-plist (props changed) head/vietnamese/libviet/pkg-plist (props changed) head/vietnamese/unicode-uhoai/pkg-plist (props changed) head/vietnamese/vis2u/pkg-plist (props changed) head/vietnamese/vn7to8/pkg-plist (props changed) head/vietnamese/vnconvert/pkg-plist (props changed) head/vietnamese/vnless/pkg-plist (props changed) head/vietnamese/vnlpr/pkg-plist (props changed) head/vietnamese/vnpstext/pkg-plist (props changed) head/vietnamese/vnroff/pkg-plist (props changed) head/vietnamese/vntex/pkg-plist (props changed) head/vietnamese/vnxfonts/pkg-plist (props changed) head/www/WebMagick/pkg-plist (props changed) head/www/abyssws/pkg-plist (props changed) head/www/admuser/pkg-plist (props changed) head/www/adzap/pkg-plist (props changed) head/www/amphetadesk/pkg-plist (props changed) head/www/analog/pkg-plist (props changed) head/www/anyremote2html/pkg-plist (props changed) head/www/aolserver/pkg-plist (props changed) head/www/apache-forrest/pkg-plist (props changed) head/www/apache-mode.el/pkg-plist (props changed) head/www/aria/pkg-plist (props changed) head/www/asterisk-stat/pkg-plist (props changed) head/www/aswedit/pkg-plist (props changed) head/www/awffull/pkg-plist (props changed) head/www/aws-demos/pkg-plist (props changed) head/www/axis/pkg-plist (props changed) head/www/axis2/pkg-plist (props changed) head/www/bacula-web/pkg-plist (props changed) head/www/baikal/pkg-plist (props changed) head/www/bannerfilter/pkg-plist (props changed) head/www/bblog/pkg-plist (props changed) head/www/bigbluebutton/pkg-plist (props changed) head/www/bins/pkg-plist (props changed) head/www/bk2site/pkg-plist (props changed) head/www/bkmrkconv/pkg-plist (props changed) head/www/blogsum/pkg-plist (props changed) head/www/bluefish-devel/pkg-plist (props changed) head/www/bluefish/pkg-plist (props changed) head/www/boa/pkg-plist (props changed) head/www/bookmarkbridge/pkg-plist (props changed) head/www/c-icap-modules/pkg-plist (props changed) head/www/c-icap/pkg-plist (props changed) head/www/cakephp11/pkg-plist (props changed) head/www/cakephp12/pkg-plist (props changed) head/www/cakephp13/pkg-plist (props changed) head/www/cakephp21/pkg-plist (props changed) head/www/calamaris/pkg-plist (props changed) head/www/cas/pkg-plist (props changed) head/www/caudium14/pkg-plist (props changed) head/www/cgi-lib/pkg-plist (props changed) head/www/cgic/pkg-plist (props changed) head/www/cgichk/pkg-plist (props changed) head/www/cgihtml/pkg-plist (props changed) head/www/cgiparse/pkg-plist (props changed) head/www/cgiwrap/pkg-plist (props changed) head/www/chems/pkg-plist (props changed) head/www/cherokee/pkg-plist (props changed) head/www/chimera/pkg-plist (props changed) head/www/chpasswd/pkg-plist (props changed) head/www/chtml/pkg-plist (props changed) head/www/ckeditor/pkg-plist (props changed) head/www/cl-lml/pkg-plist (props changed) head/www/claroline/pkg-plist (props changed) head/www/clearsilver/pkg-plist (props changed) head/www/cmsmadesimple/pkg-plist (props changed) head/www/cocoon/pkg-plist (props changed) head/www/codeigniter/pkg-plist (props changed) head/www/coppermine/pkg-plist (props changed) head/www/cowboy/pkg-plist (props changed) head/www/cplanet/pkg-plist (props changed) head/www/crawl/pkg-plist (props changed) head/www/crp/pkg-plist (props changed) head/www/css-mode.el/pkg-plist (props changed) head/www/csso/pkg-plist (props changed) head/www/dalbum/pkg-plist (props changed) head/www/decss/pkg-plist (props changed) head/www/diamanda/pkg-plist (props changed) head/www/docebo/pkg-plist (props changed) head/www/dojo/pkg-plist (props changed) head/www/dokeos/pkg-plist (props changed) head/www/dokuwiki/pkg-plist (props changed) head/www/dotclear/pkg-plist (props changed) head/www/dotproject/pkg-plist (props changed) head/www/dpsearch/pkg-plist (props changed) head/www/drraw/pkg-plist (props changed) head/www/dtse/pkg-plist (props changed) head/www/dummyflash/pkg-plist (props changed) head/www/dwoo/pkg-plist (props changed) head/www/eaccelerator/pkg-plist (props changed) head/www/efront/pkg-plist (props changed) head/www/eldav.el/pkg-plist (props changed) head/www/elgg/pkg-plist (props changed) head/www/elinks/pkg-plist (props changed) head/www/elog/pkg-plist (props changed) head/www/emacs-w3m-xemacs21-mule/pkg-plist (props changed) head/www/emacs-w3m/pkg-plist (props changed) head/www/encode-explorer/pkg-plist (props changed) head/www/ephemera/pkg-plist (props changed) head/www/erwn/pkg-plist (props changed) head/www/eventum/pkg-plist (props changed) head/www/evolution-webcal/pkg-plist (props changed) head/www/eyeos-themes/pkg-plist (props changed) head/www/eyeos/pkg-plist (props changed) head/www/fancybox/pkg-plist (props changed) head/www/fcgi/pkg-plist (props changed) head/www/feedjack/pkg-plist (props changed) head/www/feedonfeeds/pkg-plist (props changed) head/www/ffproxy/pkg-plist (props changed) head/www/fhttpd/pkg-plist (props changed) head/www/fira-webfont/pkg-plist (props changed) head/www/flat-frog/pkg-plist (props changed) head/www/flood/pkg-plist (props changed) head/www/flot/pkg-plist (props changed) head/www/fluxbb/pkg-plist (props changed) head/www/fluxcms/pkg-plist (props changed) head/www/foswiki-ModPerlEngineContrib/pkg-plist (props changed) head/www/foswiki/pkg-plist (props changed) head/www/fpc-fastcgi/pkg-plist (props changed) head/www/fpc-httpd22/pkg-plist (props changed) head/www/free-sa-devel/pkg-plist (props changed) head/www/free-sa/pkg-plist (props changed) head/www/freeway/pkg-plist (props changed) head/www/fswiki/pkg-plist (props changed) head/www/fusionpbx/pkg-plist (props changed) head/www/g-gcl/pkg-plist (props changed) head/www/gaeo/pkg-plist (props changed) head/www/gaeutilities/pkg-plist (props changed) head/www/gallery/pkg-plist (props changed) head/www/gallery2/pkg-plist (props changed) head/www/gecko-mediaplayer/pkg-plist (props changed) head/www/gecko-sharp20/pkg-plist (props changed) head/www/geeklog/pkg-plist (props changed) head/www/getleft/pkg-plist (props changed) head/www/gnome-user-share/pkg-plist (props changed) head/www/gnome-web-photo/pkg-plist (props changed) head/www/google-sitemapgen/pkg-plist (props changed) head/www/goose/pkg-plist (props changed) head/www/gregarius/pkg-plist (props changed) head/www/groupoffice/pkg-plist (props changed) head/www/grr/pkg-plist (props changed) head/www/gtkhtml3/pkg-plist (props changed) head/www/guile-www/pkg-plist (props changed) head/www/gurlchecker/pkg-plist (props changed) head/www/harvest/pkg-plist (props changed) head/www/havp/pkg-plist (props changed) head/www/helma/pkg-plist (props changed) head/www/hiawatha/pkg-plist (props changed) head/www/hinventory-client/pkg-plist (props changed) head/www/horde3-ansel/pkg-plist (props changed) head/www/horde3-base/pkg-plist (props changed) head/www/horde3-passwd/pkg-plist (props changed) head/www/horde3-trean/pkg-plist (props changed) head/www/horde3-wicked/pkg-plist (props changed) head/www/htmlcxx/pkg-plist (props changed) head/www/htmlobject/pkg-plist (props changed) head/www/htmlpp/pkg-plist (props changed) head/www/hydra/pkg-plist (props changed) head/www/hypermail/pkg-plist (props changed) head/www/igal2/pkg-plist (props changed) head/www/ikiwiki/pkg-plist (props changed) head/www/impresscms/pkg-plist (props changed) head/www/interchange/pkg-plist (props changed) head/www/ismail/pkg-plist (props changed) head/www/iwebcal/pkg-plist (props changed) head/www/jawstats/pkg-plist (props changed) head/www/jdresolve/pkg-plist (props changed) head/www/jesred/pkg-plist (props changed) head/www/jetty/pkg-plist (props changed) head/www/jmeter/pkg-plist (props changed) head/www/joomla15/pkg-plist (props changed) head/www/jspacker/pkg-plist (props changed) head/www/jspwiki/pkg-plist (props changed) head/www/jtoolkit/pkg-plist (props changed) head/www/junkbuster/pkg-plist (props changed) head/www/kannel/pkg-plist (props changed) head/www/kdewebdev4/pkg-plist (props changed) head/www/kwebkitpart/pkg-plist (props changed) head/www/libapreq2/pkg-plist (props changed) head/www/libepc/pkg-plist (props changed) head/www/libgtkhtml/pkg-plist (props changed) head/www/libwww/pkg-plist (props changed) head/www/lighttpd/files/pkg-plist.mod_geoip (props changed) head/www/lighttpd/files/pkg-plist.mod_h264_streaming (props changed) head/www/links1/pkg-plist (props changed) head/www/linux-f10-flashplugin11/pkg-plist (props changed) head/www/linux-libgtkembedmoz/pkg-plist (props changed) head/www/linux-opera-devel/pkg-plist (props changed) head/www/linux-opera/pkg-plist (props changed) head/www/lionwiki/pkg-plist (props changed) head/www/ljdeps/pkg-plist (props changed) head/www/llgal/pkg-plist (props changed) head/www/luakit/pkg-plist (props changed) head/www/lynx-current/pkg-plist (props changed) head/www/lynx/pkg-plist (props changed) head/www/mambo/pkg-plist (props changed) head/www/man2web/pkg-plist (props changed) head/www/mathopd/pkg-plist (props changed) head/www/mergelog/pkg-plist (props changed) head/www/mhonarc/pkg-plist (props changed) head/www/middleman/pkg-plist (props changed) head/www/mini_httpd/pkg-plist (props changed) head/www/mkapachepw/pkg-plist (props changed) head/www/mknmz-wwwoffle/pkg-plist (props changed) head/www/mnogosearch/pkg-plist (props changed) head/www/mochiweb-basho/pkg-plist (props changed) head/www/mochiweb/pkg-plist (props changed) head/www/mod_amazon_proxy/pkg-plist (props changed) head/www/mod_asn/pkg-plist (props changed) head/www/mod_auth_form/pkg-plist (props changed) head/www/mod_auth_kerb2/pkg-plist (props changed) head/www/mod_auth_pubtkt/pkg-plist (props changed) head/www/mod_auth_tkt/pkg-plist (props changed) head/www/mod_authn_otp/pkg-plist (props changed) head/www/mod_cband/pkg-plist (props changed) head/www/mod_clamav/pkg-plist (props changed) head/www/mod_cplusplus/pkg-plist (props changed) head/www/mod_dnssd/pkg-plist (props changed) head/www/mod_fcgid/pkg-plist (props changed) head/www/mod_ftp/pkg-plist (props changed) head/www/mod_gnutls/pkg-plist (props changed) head/www/mod_h264_streaming/pkg-plist (props changed) head/www/mod_jk/pkg-plist (props changed) head/www/mod_layout22/pkg-plist (props changed) head/www/mod_log_dbd/pkg-plist (props changed) head/www/mod_log_sql2-dtc/pkg-plist (props changed) head/www/mod_log_sql2/pkg-plist (props changed) head/www/mod_mono/pkg-plist (props changed) head/www/mod_musicindex/pkg-plist (props changed) head/www/mod_myvhost/pkg-plist (props changed) head/www/mod_ntlm2/pkg-plist (props changed) head/www/mod_pagespeed/pkg-plist (props changed) head/www/mod_python3/pkg-plist (props changed) head/www/mod_rivet/pkg-plist (props changed) head/www/mod_ruby/pkg-plist (props changed) head/www/mod_spdy/pkg-plist (props changed) head/www/mod_wsgi2/pkg-plist (props changed) head/www/mod_wsgi3/pkg-plist (props changed) head/www/moinmoin/pkg-plist (props changed) head/www/monast/pkg-plist (props changed) head/www/mongrel2/pkg-plist (props changed) head/www/mozplugger/pkg-plist (props changed) head/www/mysar/pkg-plist (props changed) head/www/nanoblogger-extra/pkg-plist (props changed) head/www/nanoblogger/pkg-plist (props changed) head/www/neon29/pkg-plist (props changed) head/www/netoffice/pkg-plist (props changed) head/www/nginx-devel/pkg-plist (props changed) head/www/nginx/pkg-plist (props changed) head/www/nibbleblog/pkg-plist (props changed) head/www/npc/pkg-plist (props changed) head/www/nscache/pkg-plist (props changed) head/www/nspluginwrapper/pkg-plist (props changed) head/www/ocsigen/pkg-plist (props changed) head/www/ojs2/pkg-plist (props changed) head/www/opencart/pkg-plist (props changed) head/www/openvrml/pkg-plist (props changed) head/www/openx/pkg-plist (props changed) head/www/openxmldir/pkg-plist (props changed) head/www/opera-devel/pkg-plist (props changed) head/www/opera/pkg-plist (props changed) head/www/oscommerce/pkg-plist (props changed) head/www/p5-AMF-Perl/pkg-plist (props changed) head/www/p5-Amon2-Lite/pkg-plist (props changed) head/www/p5-Amon2-Plugin-Web-MobileAgent/pkg-plist (props changed) head/www/p5-Amon2/pkg-plist (props changed) head/www/p5-Apache-ASP/pkg-plist (props changed) head/www/p5-Apache-Admin-Config/pkg-plist (props changed) head/www/p5-Apache-AuthCookie/pkg-plist (props changed) head/www/p5-Apache-Clean2/pkg-plist (props changed) head/www/p5-Apache-ConfigFile/pkg-plist (props changed) head/www/p5-Apache-ConfigParser/pkg-plist (props changed) head/www/p5-Apache-DB/pkg-plist (props changed) head/www/p5-Apache-Gallery/pkg-plist (props changed) head/www/p5-Apache-LogFormat-Compiler/pkg-plist (props changed) head/www/p5-Apache-MP3/pkg-plist (props changed) head/www/p5-Apache-Profiler/pkg-plist (props changed) head/www/p5-Apache-Session-PHP/pkg-plist (props changed) head/www/p5-Apache-Session-SQLite3/pkg-plist (props changed) head/www/p5-Apache-Session-SharedMem/pkg-plist (props changed) head/www/p5-Apache-Session-Wrapper/pkg-plist (props changed) head/www/p5-Apache-Session/pkg-plist (props changed) head/www/p5-Apache-SessionX/pkg-plist (props changed) head/www/p5-Apache2-SiteControl/pkg-plist (props changed) head/www/p5-App-Nopaste/pkg-plist (props changed) head/www/p5-App-gist/pkg-plist (props changed) head/www/p5-Bigtop/pkg-plist (props changed) head/www/p5-Blog-Spam/pkg-plist (props changed) head/www/p5-CGI-Application-Dispatch/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-AnyTemplate/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-Apache/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-Authentication/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-Authorization/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-AutoRunmode/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-ConfigAuto/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-DBH/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-DebugScreen/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-Forward/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-HTMLPrototype/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-HtmlTidy/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-JSON/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-LinkIntegrity/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-LogDispatch/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-MessageStack/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-Redirect/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-Session/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-Stream/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-TT/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-ValidateRM/pkg-plist (props changed) head/www/p5-CGI-Application-Plugin-ViewCode/pkg-plist (props changed) head/www/p5-CGI-Application/pkg-plist (props changed) head/www/p5-CGI-ArgChecker/pkg-plist (props changed) head/www/p5-CGI-Builder-TT2/pkg-plist (props changed) head/www/p5-CGI-Builder/pkg-plist (props changed) head/www/p5-CGI-Enurl/pkg-plist (props changed) head/www/p5-CGI-FastTemplate/pkg-plist (props changed) head/www/p5-CGI-Framework/pkg-plist (props changed) head/www/p5-CGI-Kwiki/pkg-plist (props changed) head/www/p5-CGI-Minimal/pkg-plist (props changed) head/www/p5-CGI-Response/pkg-plist (props changed) head/www/p5-CGI-SpeedyCGI/pkg-plist (props changed) head/www/p5-CGI-Untaint-date/pkg-plist (props changed) head/www/p5-CGI-Untaint/pkg-plist (props changed) head/www/p5-CGI-Upload/pkg-plist (props changed) head/www/p5-CGI-XMLApplication/pkg-plist (props changed) head/www/p5-CGI-modules/pkg-plist (props changed) head/www/p5-CGI.pm/pkg-plist (props changed) head/www/p5-CGI_Lite/pkg-plist (props changed) head/www/p5-CSS-DOM/pkg-plist (props changed) head/www/p5-Catalyst-Action-RenderView/pkg-plist (props changed) head/www/p5-Catalyst-Controller-BindLex/pkg-plist (props changed) head/www/p5-Catalyst-Controller-RateLimit/pkg-plist (props changed) head/www/p5-Catalyst-Devel/pkg-plist (props changed) head/www/p5-Catalyst-Engine-HTTP-Prefork/pkg-plist (props changed) head/www/p5-Catalyst-Enzyme/pkg-plist (props changed) head/www/p5-Catalyst-Manual/pkg-plist (props changed) head/www/p5-Catalyst-Model-CDBI-Sweet/pkg-plist (props changed) head/www/p5-Catalyst-Model-CDBI/pkg-plist (props changed) head/www/p5-Catalyst-Model-DBIC-Plain/pkg-plist (props changed) head/www/p5-Catalyst-Model-DBIC-Schema/pkg-plist (props changed) head/www/p5-Catalyst-Model-DynamicAdaptor/pkg-plist (props changed) head/www/p5-Catalyst-Model-LDAP/pkg-plist (props changed) head/www/p5-Catalyst-Model-Oryx/pkg-plist (props changed) head/www/p5-Catalyst-Model-XML-Feed/pkg-plist (props changed) head/www/p5-Catalyst-Model-Xapian/pkg-plist (props changed) head/www/p5-Catalyst-Model-Xapian10/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Authentication-CDBI/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Authentication-Store-Htpasswd/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Authorization-Roles/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-AutoCRUD/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Browser/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Cache-FastMmap/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Cache-Memcached/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Cache/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Captcha/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-ConfigLoader/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-DefaultEnd/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Email/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-ErrorCatcher/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-FillInForm/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-FormBuilder/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-I18N/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-LogWarnings/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-PageCache/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Params-Nested/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Prototype/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-RunAfterRequest/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Scheduler/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Session-State-URI/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Cache/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Session-Store-DBI/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Session-Store-DBIC/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Delegate/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Memcached-Fast/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Setenv/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Singleton/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-SubRequest/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Textile/pkg-plist (props changed) head/www/p5-Catalyst-Plugin-Unicode/pkg-plist (props changed) head/www/p5-Catalyst-TraitFor-Request-BrowserDetect/pkg-plist (props changed) head/www/p5-Catalyst-View-Email/pkg-plist (props changed) head/www/p5-Catalyst-View-GraphViz/pkg-plist (props changed) head/www/p5-Catalyst-View-HTML-Template-Compiled/pkg-plist (props changed) head/www/p5-Catalyst-View-HTML-Template/pkg-plist (props changed) head/www/p5-Catalyst-View-RRDGraph/pkg-plist (props changed) head/www/p5-Catalyst-View-TT/pkg-plist (props changed) head/www/p5-Catalyst-View-Template-Declare/pkg-plist (props changed) head/www/p5-Catalyst-View-Templated/pkg-plist (props changed) head/www/p5-Catalyst-View-XML-Feed/pkg-plist (props changed) head/www/p5-Catalyst-View-XSLT/pkg-plist (props changed) head/www/p5-CatalystX-LeakChecker/pkg-plist (props changed) head/www/p5-CatalystX-RoleApplicator/pkg-plist (props changed) head/www/p5-ClearSilver/pkg-plist (props changed) head/www/p5-Compress-LeadingBlankSpaces/pkg-plist (props changed) head/www/p5-Cookie-Baker/pkg-plist (props changed) head/www/p5-Corona/pkg-plist (props changed) head/www/p5-Dancer-Plugin-Feed/pkg-plist (props changed) head/www/p5-Dancer-Plugin-SiteMap/pkg-plist (props changed) head/www/p5-Dancer/pkg-plist (props changed) head/www/p5-FAQ-OMatic/pkg-plist (props changed) head/www/p5-FCGI-Spawn/pkg-plist (props changed) head/www/p5-FCGI/pkg-plist (props changed) head/www/p5-FEAR-API/pkg-plist (props changed) head/www/p5-Feersum/pkg-plist (props changed) head/www/p5-File-Mork/pkg-plist (props changed) head/www/p5-Flickr-Upload/pkg-plist (props changed) head/www/p5-Furl/pkg-plist (props changed) head/www/p5-FurlX-Coro/pkg-plist (props changed) head/www/p5-Gantry/pkg-plist (props changed) head/www/p5-Geo-Caching/pkg-plist (props changed) head/www/p5-Google-Search/pkg-plist (props changed) head/www/p5-Gungho/pkg-plist (props changed) head/www/p5-HTML-Breadcrumbs/pkg-plist (props changed) head/www/p5-HTML-DOM/pkg-plist (props changed) head/www/p5-HTML-Element-Extended/pkg-plist (props changed) head/www/p5-HTML-Element-Library/pkg-plist (props changed) head/www/p5-HTML-Element-Replacer/pkg-plist (props changed) head/www/p5-HTML-Encoding/pkg-plist (props changed) head/www/p5-HTML-FillInForm-ForceUTF8/pkg-plist (props changed) head/www/p5-HTML-FillInForm-Lite/pkg-plist (props changed) head/www/p5-HTML-FillInForm/pkg-plist (props changed) head/www/p5-HTML-Form/pkg-plist (props changed) head/www/p5-HTML-FromANSI/pkg-plist (props changed) head/www/p5-HTML-FromText/pkg-plist (props changed) head/www/p5-HTML-GenToc/pkg-plist (props changed) head/www/p5-HTML-GenerateUtil/pkg-plist (props changed) head/www/p5-HTML-Highlight/pkg-plist (props changed) head/www/p5-HTML-LinkList/pkg-plist (props changed) head/www/p5-HTML-Pager/pkg-plist (props changed) head/www/p5-HTML-Perlinfo/pkg-plist (props changed) head/www/p5-HTML-Prototype/pkg-plist (props changed) head/www/p5-HTML-QuickCheck/pkg-plist (props changed) head/www/p5-HTML-Seamstress/pkg-plist (props changed) head/www/p5-HTML-Shakan/pkg-plist (props changed) head/www/p5-HTML-SimpleLinkExtor/pkg-plist (props changed) head/www/p5-HTML-SimpleParse/pkg-plist (props changed) head/www/p5-HTML-Stream/pkg-plist (props changed) head/www/p5-HTML-Strip/pkg-plist (props changed) head/www/p5-HTML-StripScripts-Parser/pkg-plist (props changed) head/www/p5-HTML-StripScripts/pkg-plist (props changed) head/www/p5-HTML-TableTiler/pkg-plist (props changed) head/www/p5-HTML-TagParser/pkg-plist (props changed) head/www/p5-HTML-Tagset/pkg-plist (props changed) head/www/p5-HTML-Template-HashWrapper/pkg-plist (props changed) head/www/p5-HTML-Template-JIT/pkg-plist (props changed) head/www/p5-HTML-Template/pkg-plist (props changed) head/www/p5-HTML-Toc/pkg-plist (props changed) head/www/p5-HTML-TokeParser-Simple/pkg-plist (props changed) head/www/p5-HTML-Tree/pkg-plist (props changed) head/www/p5-HTML-TreeBuilder-XPath/pkg-plist (props changed) head/www/p5-HTML-WikiConverter-Kwiki/pkg-plist (props changed) head/www/p5-HTML-WikiConverter-MediaWiki/pkg-plist (props changed) head/www/p5-HTML-WikiConverter-Oddmuse/pkg-plist (props changed) head/www/p5-HTML-WikiConverter-PhpWiki/pkg-plist (props changed) head/www/p5-HTML-WikiConverter-Socialtext/pkg-plist (props changed) head/www/p5-HTML-WikiConverter-WakkaWiki/pkg-plist (props changed) head/www/p5-HTML-WikiConverter/pkg-plist (props changed) head/www/p5-HTTP-Body/pkg-plist (props changed) head/www/p5-HTTP-Cookies-Mozilla/pkg-plist (props changed) head/www/p5-HTTP-Cookies-iCab/pkg-plist (props changed) head/www/p5-HTTP-Cookies/pkg-plist (props changed) head/www/p5-HTTP-DAV/pkg-plist (props changed) head/www/p5-HTTP-Date/pkg-plist (props changed) head/www/p5-HTTP-Engine-Middleware/pkg-plist (props changed) head/www/p5-HTTP-Engine/pkg-plist (props changed) head/www/p5-HTTP-HeaderParser-XS/pkg-plist (props changed) head/www/p5-HTTP-Headers-Fast/pkg-plist (props changed) head/www/p5-HTTP-MHTTP/pkg-plist (props changed) head/www/p5-HTTP-Message/pkg-plist (props changed) head/www/p5-HTTP-MobileAgent-Plugin-Charset/pkg-plist (props changed) head/www/p5-HTTP-Negotiate/pkg-plist (props changed) head/www/p5-HTTP-Proxy/pkg-plist (props changed) head/www/p5-HTTP-Recorder/pkg-plist (props changed) head/www/p5-HTTP-Request-Params/pkg-plist (props changed) head/www/p5-HTTP-Response-Encoding/pkg-plist (props changed) head/www/p5-HTTP-Server-Simple-Static/pkg-plist (props changed) head/www/p5-HTTP-Session2/pkg-plist (props changed) head/www/p5-HTTP-SimpleLinkChecker/pkg-plist (props changed) head/www/p5-HTTP-Size/pkg-plist (props changed) head/www/p5-HTTP-WebTest/pkg-plist (props changed) head/www/p5-HTTPD-Log-Filter/pkg-plist (props changed) head/www/p5-IMDB-Film/pkg-plist (props changed) head/www/p5-JE/pkg-plist (props changed) head/www/p5-Jemplate/pkg-plist (props changed) head/www/p5-Jifty/pkg-plist (props changed) head/www/p5-LWP-Authen-Wsse/pkg-plist (props changed) head/www/p5-LWP-MediaTypes/pkg-plist (props changed) head/www/p5-LWP-Protocol-PSGI/pkg-plist (props changed) head/www/p5-LWPx-ParanoidAgent/pkg-plist (props changed) head/www/p5-Mason/pkg-plist (props changed) head/www/p5-MasonX-Interp-WithCallbacks/pkg-plist (props changed) head/www/p5-MasonX-Request-WithApacheSession/pkg-plist (props changed) head/www/p5-MasonX-WebApp/pkg-plist (props changed) head/www/p5-Maypole-Authentication-UserSessionCookie/pkg-plist (props changed) head/www/p5-Maypole-Component/pkg-plist (props changed) head/www/p5-Maypole/pkg-plist (props changed) head/www/p5-MediaWiki/pkg-plist (props changed) head/www/p5-Mojolicious-Plugin-Mongodb/pkg-plist (props changed) head/www/p5-Monoceros/pkg-plist (props changed) head/www/p5-Net-Akismet/pkg-plist (props changed) head/www/p5-Net-FireEagle/pkg-plist (props changed) head/www/p5-Net-Flickr-API/pkg-plist (props changed) head/www/p5-Net-FreshBooks-API/pkg-plist (props changed) head/www/p5-Nginx-ReadBody/pkg-plist (props changed) head/www/p5-PHP-Session/pkg-plist (props changed) head/www/p5-POE-Component-Client-HTTP/pkg-plist (props changed) head/www/p5-POE-Component-Server-HTTP/pkg-plist (props changed) head/www/p5-POE-Component-Server-SimpleHTTP/pkg-plist (props changed) head/www/p5-Perlanet/pkg-plist (props changed) head/www/p5-Plack-Builder-Conditionals/pkg-plist (props changed) head/www/p5-Plack-Handler-CLI/pkg-plist (props changed) head/www/p5-Plack-Middleware-Debug/pkg-plist (props changed) head/www/p5-Plack-Middleware-Deflater/pkg-plist (props changed) head/www/p5-Plack-Middleware-ServerStatus-Lite/pkg-plist (props changed) head/www/p5-Plack-Middleware-Session/pkg-plist (props changed) head/www/p5-Plack-Middleware-Test-StashWarnings/pkg-plist (props changed) head/www/p5-Plack/pkg-plist (props changed) head/www/p5-Pod-Site/pkg-plist (props changed) head/www/p5-PodToHTML/pkg-plist (props changed) head/www/p5-Reddit/pkg-plist (props changed) head/www/p5-Rose-HTML-Objects/pkg-plist (props changed) head/www/p5-Router-Boom/pkg-plist (props changed) head/www/p5-Router-Simple-Sinatraish/pkg-plist (props changed) head/www/p5-STF-Dispatcher-PSGI/pkg-plist (props changed) head/www/p5-Scrappy/pkg-plist (props changed) head/www/p5-Squatting/pkg-plist (props changed) head/www/p5-Starlet/pkg-plist (props changed) head/www/p5-Starman/pkg-plist (props changed) head/www/p5-Syntax-Highlight-Shell/pkg-plist (props changed) head/www/p5-Task-Catalyst/pkg-plist (props changed) head/www/p5-Task-Plack/pkg-plist (props changed) head/www/p5-Tatsumaki/pkg-plist (props changed) head/www/p5-Template-Iterator-AlzaboWrapperCursor/pkg-plist (props changed) head/www/p5-Template-Plugin-Clickable-Email/pkg-plist (props changed) head/www/p5-Template-Plugin-MP3/pkg-plist (props changed) head/www/p5-Template-Plugin-Markdown/pkg-plist (props changed) head/www/p5-Template-Plugin-Subst/pkg-plist (props changed) head/www/p5-Template-Toolkit/pkg-plist (props changed) head/www/p5-Test-Nginx/pkg-plist (props changed) head/www/p5-Text-MultiMarkdown-ApacheHandler/pkg-plist (props changed) head/www/p5-Tie-TinyURL/pkg-plist (props changed) head/www/p5-Toader/pkg-plist (props changed) head/www/p5-Twiggy/pkg-plist (props changed) head/www/p5-URI-Fetch/pkg-plist (props changed) head/www/p5-URI-Sequin/pkg-plist (props changed) head/www/p5-W3C-LogValidator/pkg-plist (props changed) head/www/p5-WWW-AtMovies-TV/pkg-plist (props changed) head/www/p5-WWW-Comic/pkg-plist (props changed) head/www/p5-WWW-DHL/pkg-plist (props changed) head/www/p5-WWW-Dilbert/pkg-plist (props changed) head/www/p5-WWW-GitHub-Gist/pkg-plist (props changed) head/www/p5-WWW-Mechanize-GZip/pkg-plist (props changed) head/www/p5-WWW-Mechanize-Pluggable/pkg-plist (props changed) head/www/p5-WWW-Mechanize-Plugin-phpBB/pkg-plist (props changed) head/www/p5-WWW-Mechanize/pkg-plist (props changed) head/www/p5-WWW-Mediawiki-Client/pkg-plist (props changed) head/www/p5-WWW-Myspace/pkg-plist (props changed) head/www/p5-WWW-NioTV/pkg-plist (props changed) head/www/p5-WWW-OpenSVN/pkg-plist (props changed) head/www/p5-WWW-OpenSearch/pkg-plist (props changed) head/www/p5-WWW-Robot/pkg-plist (props changed) head/www/p5-WWW-RobotRules/pkg-plist (props changed) head/www/p5-WWW-Scraper-ISBN-Record/pkg-plist (props changed) head/www/p5-WWW-Scraper-ISBN/pkg-plist (props changed) head/www/p5-WWW-Scripter-Plugin-Ajax/pkg-plist (props changed) head/www/p5-WWW-Scripter-Plugin-JavaScript/pkg-plist (props changed) head/www/p5-WWW-Scripter/pkg-plist (props changed) head/www/p5-WWW-Search-AltaVista/pkg-plist (props changed) head/www/p5-WWW-Search-Google/pkg-plist (props changed) head/www/p5-WWW-Search-MSN/pkg-plist (props changed) head/www/p5-WWW-Search/pkg-plist (props changed) head/www/p5-WWW-Shorten-Bitly/pkg-plist (props changed) head/www/p5-WWW-Shorten/pkg-plist (props changed) head/www/p5-WWW-SourceForge/pkg-plist (props changed) head/www/p5-WWW-Spinn3r/pkg-plist (props changed) head/www/p5-WWW-TinySong/pkg-plist (props changed) head/www/p5-WWW-VenusEnvy/pkg-plist (props changed) head/www/p5-WWW-Wikipedia/pkg-plist (props changed) head/www/p5-Web-Query/pkg-plist (props changed) head/www/p5-Web-Scraper/pkg-plist (props changed) head/www/p5-WebDAO/pkg-plist (props changed) head/www/p5-WebService-CIA/pkg-plist (props changed) head/www/p5-WebService-IMDB/pkg-plist (props changed) head/www/p5-WebService-ISBNDB/pkg-plist (props changed) head/www/p5-WebService-MoviePosterDB/pkg-plist (props changed) head/www/p5-WebService-MusicBrainz/pkg-plist (props changed) head/www/p5-WebService-NoPaste/pkg-plist (props changed) head/www/p5-WebService-Rakuten/pkg-plist (props changed) head/www/p5-WebService-Technorati/pkg-plist (props changed) head/www/p5-libservlet/pkg-plist (props changed) head/www/paros/pkg-plist (props changed) head/www/pebble/pkg-plist (props changed) head/www/perlbal/pkg-plist (props changed) head/www/pglogd/pkg-plist (props changed) head/www/photo_gallery/pkg-plist (props changed) head/www/php-plurk-api/pkg-plist (props changed) head/www/php-screw/pkg-plist (props changed) head/www/php-templates/pkg-plist (props changed) head/www/phpbb-devel/pkg-plist (props changed) head/www/phpbb3/pkg-plist (props changed) head/www/phpgedview/pkg-plist (props changed) head/www/phpgroupware/pkg-plist (props changed) head/www/phpmp/pkg-plist (props changed) head/www/phpmustache/pkg-plist (props changed) head/www/phproxy/pkg-plist (props changed) head/www/phpscheduleit/pkg-plist (props changed) head/www/phpsysinfo-dev/pkg-plist (props changed) head/www/phpsysinfo/pkg-plist (props changed) head/www/pivotx/pkg-plist (props changed) head/www/piwigo/pkg-plist (props changed) head/www/planet/pkg-plist (props changed) head/www/pligg/pkg-plist (props changed) head/www/plone/pkg-plist (props changed) head/www/plugger/pkg-plist (props changed) head/www/pmwiki/pkg-plist (props changed) head/www/pnews/pkg-plist (props changed) head/www/podcastamatic/pkg-plist (props changed) head/www/polipo/pkg-plist (props changed) head/www/prado/pkg-plist (props changed) head/www/privoxy+ipv6/pkg-plist (props changed) head/www/protovis/pkg-plist (props changed) head/www/pserv/pkg-plist (props changed) head/www/publicfile/pkg-plist (props changed) head/www/pwebstats/pkg-plist (props changed) head/www/py-HTMLgen/pkg-plist (props changed) head/www/py-Lightbox/pkg-plist (props changed) head/www/py-Products.PloneLDAP/pkg-plist (props changed) head/www/py-WebError/pkg-plist (props changed) head/www/py-WebFlash/pkg-plist (props changed) head/www/py-WebTest/pkg-plist (props changed) head/www/py-albatross/pkg-plist (props changed) head/www/py-amf/pkg-plist (props changed) head/www/py-apachelog/pkg-plist (props changed) head/www/py-beautifulsoup32/pkg-plist (props changed) head/www/py-blogofile/pkg-plist (props changed) head/www/py-bottle/pkg-plist (props changed) head/www/py-cherrypy-old/pkg-plist (props changed) head/www/py-cherrypy/pkg-plist (props changed) head/www/py-cssmin/pkg-plist (props changed) head/www/py-cssselect/pkg-plist (props changed) head/www/py-django-app-plugins/pkg-plist (props changed) head/www/py-django-appmedia/pkg-plist (props changed) head/www/py-django-caching-app-plugins/pkg-plist (props changed) head/www/py-django-cms/pkg-plist (props changed) head/www/py-django-devel/pkg-plist (props changed) head/www/py-django-filer/pkg-plist (props changed) head/www/py-django-haystack/pkg-plist (props changed) head/www/py-django-keyedcache/pkg-plist (props changed) head/www/py-django-livesettings/pkg-plist (props changed) head/www/py-django-mptt/pkg-plist (props changed) head/www/py-django-openid-auth/pkg-plist (props changed) head/www/py-django-profiles/pkg-plist (props changed) head/www/py-django-registration/pkg-plist (props changed) head/www/py-django-reversion/pkg-plist (props changed) head/www/py-django-sekizai/pkg-plist (props changed) head/www/py-django-signals-ahoy/pkg-plist (props changed) head/www/py-django-storages/pkg-plist (props changed) head/www/py-django-tagging/pkg-plist (props changed) head/www/py-django-threaded-multihost/pkg-plist (props changed) head/www/py-django14/pkg-plist (props changed) head/www/py-django15/pkg-plist (props changed) head/www/py-django_compressor/pkg-plist (props changed) head/www/py-djblets/pkg-plist (props changed) head/www/py-dotcloud.cli/pkg-plist (props changed) head/www/py-fcgi/pkg-plist (props changed) head/www/py-flask-cache/pkg-plist (props changed) head/www/py-flask-uploads/pkg-plist (props changed) head/www/py-flup/pkg-plist (props changed) head/www/py-formalchemy/pkg-plist (props changed) head/www/py-funkload/pkg-plist (props changed) head/www/py-html5lib/pkg-plist (props changed) head/www/py-httplib2/pkg-plist (props changed) head/www/py-imdbpy/pkg-plist (props changed) head/www/py-jonpy/pkg-plist (props changed) head/www/py-meld3/pkg-plist (props changed) head/www/py-nevow/pkg-plist (props changed) head/www/py-paste/pkg-plist (props changed) head/www/py-pastedeploy/pkg-plist (props changed) head/www/py-pastescript/pkg-plist (props changed) head/www/py-plone.app.blob/pkg-plist (props changed) head/www/py-plone.app.caching/pkg-plist (props changed) head/www/py-plone.app.contentlisting/pkg-plist (props changed) head/www/py-plone.app.contentmenu/pkg-plist (props changed) head/www/py-plone.app.customerize/pkg-plist (props changed) head/www/py-plone.app.folder/pkg-plist (props changed) head/www/py-plone.app.i18n/pkg-plist (props changed) head/www/py-plone.app.imaging/pkg-plist (props changed) head/www/py-plone.app.iterate/pkg-plist (props changed) head/www/py-plone.app.ldap/pkg-plist (props changed) head/www/py-plone.app.querystring/pkg-plist (props changed) head/www/py-plone.app.search/pkg-plist (props changed) head/www/py-plone.app.testing/pkg-plist (props changed) head/www/py-plone.app.users/pkg-plist (props changed) head/www/py-plone.app.uuid/pkg-plist (props changed) head/www/py-plone.app.viewletmanager/pkg-plist (props changed) head/www/py-plone.app.vocabularies/pkg-plist (props changed) head/www/py-plone.browserlayer/pkg-plist (props changed) head/www/py-plone.cachepurging/pkg-plist (props changed) head/www/py-plone.caching/pkg-plist (props changed) head/www/py-plone.contentrules/pkg-plist (props changed) head/www/py-plone.fieldsets/pkg-plist (props changed) head/www/py-plone.folder/pkg-plist (props changed) head/www/py-plone.indexer/pkg-plist (props changed) head/www/py-plone.intelligenttext/pkg-plist (props changed) head/www/py-plone.locking/pkg-plist (props changed) head/www/py-plone.memoize/pkg-plist (props changed) head/www/py-plone.outputfilters/pkg-plist (props changed) head/www/py-plone.portlet.static/pkg-plist (props changed) head/www/py-plone.portlets/pkg-plist (props changed) head/www/py-plone.registry/pkg-plist (props changed) head/www/py-plone.resource/pkg-plist (props changed) head/www/py-plone.stringinterp/pkg-plist (props changed) head/www/py-plone.subrequest/pkg-plist (props changed) head/www/py-plone.supermodel/pkg-plist (props changed) head/www/py-plone.testing/pkg-plist (props changed) head/www/py-plone.theme/pkg-plist (props changed) head/www/py-plone.transformchain/pkg-plist (props changed) head/www/py-plone.uuid/pkg-plist (props changed) head/www/py-poster/pkg-plist (props changed) head/www/py-prewikka/pkg-plist (props changed) head/www/py-py-restclient/pkg-plist (props changed) head/www/py-pylons/pkg-plist (props changed) head/www/py-pyramid/pkg-plist (props changed) head/www/py-pyramid_rpc/pkg-plist (props changed) head/www/py-pysearch/pkg-plist (props changed) head/www/py-pywebdav/pkg-plist (props changed) head/www/py-requests-oauth-hook/pkg-plist (props changed) head/www/py-restclient/pkg-plist (props changed) head/www/py-routes/pkg-plist (props changed) head/www/py-satchmo/pkg-plist (props changed) head/www/py-scgi/pkg-plist (props changed) head/www/py-scrapy/pkg-plist (props changed) head/www/py-scriptaculous/pkg-plist (props changed) head/www/py-surl/pkg-plist (props changed) head/www/py-tgwebservices/pkg-plist (props changed) head/www/py-turbogears/pkg-plist (props changed) head/www/py-turbogears2/pkg-plist (props changed) head/www/py-twistedWeb2/pkg-plist (props changed) head/www/py-urlgrabber/pkg-plist (props changed) head/www/py-urljr/pkg-plist (props changed) head/www/py-webhelpers/pkg-plist (props changed) head/www/py-webkitgtk/pkg-plist (props changed) head/www/py-webunit/pkg-plist (props changed) head/www/py-webware-component/pkg-plist (props changed) head/www/py-wikitools/pkg-plist (props changed) head/www/py-wsgiauth/pkg-plist (props changed) head/www/py-zope.app.wsgi/pkg-plist (props changed) head/www/pyblosxom/pkg-plist (props changed) head/www/pyjamas/pkg-plist (props changed) head/www/pylot/pkg-plist (props changed) head/www/pyweblib/pkg-plist (props changed) head/www/quickie/pkg-plist (props changed) head/www/quixote/pkg-plist (props changed) head/www/radicale/pkg-plist (props changed) head/www/red5/pkg-plist (props changed) head/www/rejik/pkg-plist (props changed) head/www/reportmagic/pkg-plist (props changed) head/www/repos-style/pkg-plist (props changed) head/www/reviewboard/pkg-plist (props changed) head/www/rnews/pkg-plist (props changed) head/www/rsskit/pkg-plist (props changed) head/www/rssroll/pkg-plist (props changed) head/www/rsstool/pkg-plist (props changed) head/www/ruboard/pkg-plist (props changed) head/www/ruby-amazon/pkg-plist (props changed) head/www/ruby-aws/pkg-plist (props changed) head/www/ruby-borges/pkg-plist (props changed) head/www/ruby-div/pkg-plist (props changed) head/www/ruby-fcgi/pkg-plist (props changed) head/www/ruby-fcgiwrap/pkg-plist (props changed) head/www/ruby-google/pkg-plist (props changed) head/www/sahi/pkg-plist (props changed) head/www/sakai/pkg-plist (props changed) head/www/samidare/pkg-plist (props changed) head/www/sams/pkg-plist (props changed) head/www/screem/pkg-plist (props changed) head/www/script4rss/pkg-plist (props changed) head/www/selenium/pkg-plist (props changed) head/www/serf/pkg-plist (props changed) head/www/session2/pkg-plist (props changed) head/www/shellinabox/pkg-plist (props changed) head/www/simplog/pkg-plist (props changed) head/www/sit/pkg-plist (props changed) head/www/sitecopy/pkg-plist (props changed) head/www/siteframe/pkg-plist (props changed) head/www/skytemplate/pkg-plist (props changed) head/www/smarty2/pkg-plist (props changed) head/www/smarty3/pkg-plist (props changed) head/www/smb_auth/pkg-plist (props changed) head/www/snownews/pkg-plist (props changed) head/www/speedtest-mini/pkg-plist (props changed) head/www/squid_radius_auth/pkg-plist (props changed) head/www/squidclamav/pkg-plist (props changed) head/www/squidstats/pkg-plist (props changed) head/www/squidview/pkg-plist (props changed) head/www/squirm/pkg-plist (props changed) head/www/srg/pkg-plist (props changed) head/www/subsonic/pkg-plist (props changed) head/www/sventon/pkg-plist (props changed) head/www/swfdec-plugin/pkg-plist (props changed) head/www/swiggle/pkg-plist (props changed) head/www/swish-e/pkg-plist (props changed) head/www/syndigator/pkg-plist (props changed) head/www/tclhttpd/pkg-plist (props changed) head/www/tclwebtest/pkg-plist (props changed) head/www/tdiary/pkg-plist (props changed) head/www/template_/pkg-plist (props changed) head/www/templatelite/pkg-plist (props changed) head/www/testlink/pkg-plist (props changed) head/www/textpattern/pkg-plist (props changed) head/www/thttpd/pkg-plist (props changed) head/www/thumbnail_index/pkg-plist (props changed) head/www/thundercache/pkg-plist (props changed) head/www/thundersnarf/pkg-plist (props changed) head/www/tidy-devel/pkg-plist (props changed) head/www/tidy/pkg-plist (props changed) head/www/tinyproxy/pkg-plist (props changed) head/www/tntnet/pkg-plist (props changed) head/www/tokyopromenade/pkg-plist (props changed) head/www/tomcat6/pkg-plist (props changed) head/www/tomcat7/pkg-plist (props changed) head/www/trac-OhlohWidgetsMacro/pkg-plist (props changed) head/www/trac-advancedticketworkflow/pkg-plist (props changed) head/www/trac-autocomplete/pkg-plist (props changed) head/www/trac-ccselector/pkg-plist (props changed) head/www/trac-email2trac/pkg-plist (props changed) head/www/trac-fullblog/pkg-plist (props changed) head/www/trac-fullblognotification/pkg-plist (props changed) head/www/trac-iniadmin/pkg-plist (props changed) head/www/trac-revtree/pkg-plist (props changed) head/www/trac-watchlist/pkg-plist (props changed) head/www/trac/pkg-plist (props changed) head/www/trytond28_google_maps/pkg-plist (props changed) head/www/trytond_google_maps/pkg-plist (props changed) head/www/twiki-BehaviourContrib/pkg-plist (props changed) head/www/twiki-BlogAddOn/pkg-plist (props changed) head/www/twiki-BugzillaLinkPlugin/pkg-plist (props changed) head/www/twiki-ClassicSkin/pkg-plist (props changed) head/www/twiki-CommentPlugin/pkg-plist (props changed) head/www/twiki-EditTablePlugin/pkg-plist (props changed) head/www/twiki-EmptyPlugin/pkg-plist (props changed) head/www/twiki-GluePlugin/pkg-plist (props changed) head/www/twiki-InterwikiPlugin/pkg-plist (props changed) head/www/twiki-JSCalendarContrib/pkg-plist (props changed) head/www/twiki-LDAPPasswordChangerPlugin/pkg-plist (props changed) head/www/twiki-LdapContrib/pkg-plist (props changed) head/www/twiki-LdapNgPlugin/pkg-plist (props changed) head/www/twiki-MailerContrib/pkg-plist (props changed) head/www/twiki-MathModePlugin/pkg-plist (props changed) head/www/twiki-NewUserPlugin/pkg-plist (props changed) head/www/twiki-PatternSkin/pkg-plist (props changed) head/www/twiki-PreferencesPlugin/pkg-plist (props changed) head/www/twiki-RenderListPlugin/pkg-plist (props changed) head/www/twiki-SlideShowPlugin/pkg-plist (props changed) head/www/twiki-SmiliesPlugin/pkg-plist (props changed) head/www/twiki-SpreadSheetPlugin/pkg-plist (props changed) head/www/twiki-SubscribePlugin/pkg-plist (props changed) head/www/twiki-TWikiUserMappingContrib/pkg-plist (props changed) head/www/twiki-TablePlugin/pkg-plist (props changed) head/www/twiki-TagMePlugin/pkg-plist (props changed) head/www/twiki-TinyMCEPlugin/pkg-plist (props changed) head/www/twiki-TipsContrib/pkg-plist (props changed) head/www/twiki-TopicVarsPlugin/pkg-plist (props changed) head/www/twiki-TwistyContrib/pkg-plist (props changed) head/www/twiki-TwistyPlugin/pkg-plist (props changed) head/www/twiki-WysiwygPlugin/pkg-plist (props changed) head/www/twiki/pkg-plist (props changed) head/www/twill/pkg-plist (props changed) head/www/twms/pkg-plist (props changed) head/www/typolight/pkg-plist (props changed) head/www/udmsearch/pkg-plist (props changed) head/www/ump/pkg-plist (props changed) head/www/usermanager/pkg-plist (props changed) head/www/uwsgitop/pkg-plist (props changed) head/www/uzbl/pkg-plist (props changed) head/www/validator/pkg-plist (props changed) head/www/varnish-libvmod-header/pkg-plist (props changed) head/www/vdr-plugin-live/pkg-plist (props changed) head/www/vdradmin-am/pkg-plist (props changed) head/www/videocache/pkg-plist (props changed) head/www/vtiger-customerportal/pkg-plist (props changed) head/www/vtiger/pkg-plist (props changed) head/www/w3mir/pkg-plist (props changed) head/www/waccess/pkg-plist (props changed) head/www/wadcomblog/pkg-plist (props changed) head/www/web2ldap/pkg-plist (props changed) head/www/webalizer/pkg-plist (props changed) head/www/webcalendar-devel/pkg-plist (props changed) head/www/webcheck/pkg-plist (props changed) head/www/webcopy/pkg-plist (props changed) head/www/webkit-sharp/pkg-plist (props changed) head/www/weblint++/pkg-plist (props changed) head/www/weblint/pkg-plist (props changed) head/www/webmachine/pkg-plist (props changed) head/www/webpy/pkg-plist (props changed) head/www/webresolve/pkg-plist (props changed) head/www/websh/pkg-plist (props changed) head/www/webstats/pkg-plist (props changed) head/www/webstone-ssl/pkg-plist (props changed) head/www/webstone/pkg-plist (props changed) head/www/webtrees/pkg-plist (props changed) head/www/wgetpaste/pkg-plist (props changed) head/www/wikicalc/pkg-plist (props changed) head/www/wikindx/pkg-plist (props changed) head/www/wml/pkg-plist (props changed) head/www/wsdlpull/pkg-plist (props changed) head/www/www6to4/pkg-plist (props changed) head/www/wwwcount/pkg-plist (props changed) head/www/wwwoffle/pkg-plist (props changed) head/www/wwwstat/pkg-plist (props changed) head/www/xapian-omega10/pkg-plist (props changed) head/www/xoops/pkg-plist (props changed) head/www/xpi-adblock_plus/pkg-plist (props changed) head/www/xpi-clearfields/pkg-plist (props changed) head/www/xpi-conkeror/pkg-plist (props changed) head/www/xpi-deepestsender/pkg-plist (props changed) head/www/xpi-downthemall/pkg-plist (props changed) head/www/xpi-flashgot/pkg-plist (props changed) head/www/xpi-formfox/pkg-plist (props changed) head/www/xpi-foxmarks/pkg-plist (props changed) head/www/xpi-foxyproxy/pkg-plist (props changed) head/www/xpi-gdata_provider/pkg-plist (props changed) head/www/xpi-gmail-manager/pkg-plist (props changed) head/www/xpi-google-notebook/pkg-plist (props changed) head/www/xpi-httpfox/pkg-plist (props changed) head/www/xpi-imglikeopera/pkg-plist (props changed) head/www/xpi-inline-google-definitions/pkg-plist (props changed) head/www/xpi-leechblock/pkg-plist (props changed) head/www/xpi-menueditor/pkg-plist (props changed) head/www/xpi-mrtech-local-install/pkg-plist (props changed) head/www/xpi-noscript/pkg-plist (props changed) head/www/xpi-pencil/pkg-plist (props changed) head/www/xpi-permatabs/pkg-plist (props changed) head/www/xpi-prism/pkg-plist (props changed) head/www/xpi-resurrectpages/pkg-plist (props changed) head/www/xpi-server_switcher/pkg-plist (props changed) head/www/xpi-showip/pkg-plist (props changed) head/www/xpi-speed-dial/pkg-plist (props changed) head/www/xpi-stylish/pkg-plist (props changed) head/www/xpi-tabletools/pkg-plist (props changed) head/www/xpi-togglewordwrap/pkg-plist (props changed) head/www/xpi-vimperator/pkg-plist (props changed) head/www/xpi-xmpp4moz/pkg-plist (props changed) head/www/xpi-yslow/pkg-plist (props changed) head/www/xshttpd-devel/pkg-plist (props changed) head/www/xshttpd/pkg-plist (props changed) head/www/xsp/pkg-plist (props changed) head/www/yahoo-ui/pkg-plist (props changed) head/www/yanopaste/pkg-plist (props changed) head/www/yaws/pkg-plist (props changed) head/www/yourls/pkg-plist (props changed) head/www/zen-cart/pkg-plist (props changed) head/www/zend-framework/pkg-plist (props changed) head/www/zend-framework1/pkg-plist (props changed) head/www/zerowait-httpd/pkg-plist (props changed) head/www/zope213/pkg-plist (props changed) head/x11-clocks/aclock/pkg-plist (props changed) head/x11-clocks/alarm-clock/pkg-plist (props changed) head/x11-clocks/asclock-gtk/pkg-plist (props changed) head/x11-clocks/asclock-xlib/pkg-plist (props changed) head/x11-clocks/cairo-clock/pkg-plist (props changed) head/x11-clocks/emiclock/pkg-plist (props changed) head/x11-clocks/eyeclock/pkg-plist (props changed) head/x11-clocks/gdesklets-clock/pkg-plist (props changed) head/x11-clocks/gdesklets-countdown/pkg-plist (props changed) head/x11-clocks/gdesklets-ebichuclock/pkg-plist (props changed) head/x11-clocks/gtubeclock/pkg-plist (props changed) head/x11-clocks/intclock/pkg-plist (props changed) head/x11-clocks/kdetoys4/pkg-plist (props changed) head/x11-clocks/ktimer/pkg-plist (props changed) head/x11-clocks/mouseclock/pkg-plist (props changed) head/x11-clocks/oclock/pkg-plist (props changed) head/x11-clocks/pclock/pkg-plist (props changed) head/x11-clocks/sanduhr/pkg-plist (props changed) head/x11-clocks/swisswatch/pkg-plist (props changed) head/x11-clocks/tktz/pkg-plist (props changed) head/x11-clocks/wmbday/pkg-plist (props changed) head/x11-clocks/wmclockmon/pkg-plist (props changed) head/x11-clocks/xalarm/pkg-plist (props changed) head/x11-clocks/xclock/pkg-plist (props changed) head/x11-drivers/input-wacom/pkg-plist (props changed) head/x11-drivers/xf86-input-acecad/pkg-plist (props changed) head/x11-drivers/xf86-input-egalax/pkg-plist (props changed) head/x11-drivers/xf86-input-elographics/pkg-plist (props changed) head/x11-drivers/xf86-input-hyperpen/pkg-plist (props changed) head/x11-drivers/xf86-input-joystick/pkg-plist (props changed) head/x11-drivers/xf86-input-keyboard/pkg-plist (props changed) head/x11-drivers/xf86-input-magictouch/pkg-plist (props changed) head/x11-drivers/xf86-input-mouse/pkg-plist (props changed) head/x11-drivers/xf86-input-mutouch/pkg-plist (props changed) head/x11-drivers/xf86-input-penmount/pkg-plist (props changed) head/x11-drivers/xf86-input-synaptics/pkg-plist (props changed) head/x11-drivers/xf86-input-vmmouse/pkg-plist (props changed) head/x11-drivers/xf86-input-void/pkg-plist (props changed) head/x11-drivers/xf86-video-apm/pkg-plist (props changed) head/x11-drivers/xf86-video-ark/pkg-plist (props changed) head/x11-drivers/xf86-video-ati/pkg-plist (props changed) head/x11-drivers/xf86-video-chips/pkg-plist (props changed) head/x11-drivers/xf86-video-cirrus/pkg-plist (props changed) head/x11-drivers/xf86-video-cyrix/pkg-plist (props changed) head/x11-drivers/xf86-video-dummy/pkg-plist (props changed) head/x11-drivers/xf86-video-fbdev/pkg-plist (props changed) head/x11-drivers/xf86-video-glint/pkg-plist (props changed) head/x11-drivers/xf86-video-i128/pkg-plist (props changed) head/x11-drivers/xf86-video-i740/pkg-plist (props changed) head/x11-drivers/xf86-video-imstt/pkg-plist (props changed) head/x11-drivers/xf86-video-intel/pkg-plist (props changed) head/x11-drivers/xf86-video-mach64/pkg-plist (props changed) head/x11-drivers/xf86-video-mga/pkg-plist (props changed) head/x11-drivers/xf86-video-neomagic/pkg-plist (props changed) head/x11-drivers/xf86-video-newport/pkg-plist (props changed) head/x11-drivers/xf86-video-nouveau/pkg-plist (props changed) head/x11-drivers/xf86-video-nv/pkg-plist (props changed) head/x11-drivers/xf86-video-openchrome/pkg-plist (props changed) head/x11-drivers/xf86-video-r128/pkg-plist (props changed) head/x11-drivers/xf86-video-radeonhd/pkg-plist (props changed) head/x11-drivers/xf86-video-rdc/pkg-plist (props changed) head/x11-drivers/xf86-video-rendition/pkg-plist (props changed) head/x11-drivers/xf86-video-s3/pkg-plist (props changed) head/x11-drivers/xf86-video-s3virge/pkg-plist (props changed) head/x11-drivers/xf86-video-savage/pkg-plist (props changed) head/x11-drivers/xf86-video-siliconmotion/pkg-plist (props changed) head/x11-drivers/xf86-video-sis-intel/pkg-plist (props changed) head/x11-drivers/xf86-video-sis/pkg-plist (props changed) head/x11-drivers/xf86-video-sunffb/pkg-plist (props changed) head/x11-drivers/xf86-video-tdfx/pkg-plist (props changed) head/x11-drivers/xf86-video-tga/pkg-plist (props changed) head/x11-drivers/xf86-video-trident/pkg-plist (props changed) head/x11-drivers/xf86-video-tseng/pkg-plist (props changed) head/x11-drivers/xf86-video-vesa/pkg-plist (props changed) head/x11-drivers/xf86-video-via/pkg-plist (props changed) head/x11-drivers/xf86-video-vmware/pkg-plist (props changed) head/x11-drivers/xf86-video-voodoo/pkg-plist (props changed) head/x11-drivers/xorg-drivers/pkg-plist (props changed) head/x11-fm/asfiles/pkg-plist (props changed) head/x11-fm/dfm/pkg-plist (props changed) head/x11-fm/ezfm/pkg-plist (props changed) head/x11-fm/gentoo/pkg-plist (props changed) head/x11-fm/gnome-commander2/pkg-plist (props changed) head/x11-fm/gprename/pkg-plist (props changed) head/x11-fm/mate-file-manager/pkg-plist (props changed) head/x11-fm/mtoolsfm/pkg-plist (props changed) head/x11-fm/nautilus/pkg-plist (props changed) head/x11-fm/p5-PerlFM/pkg-plist (props changed) head/x11-fm/pbi-thumbnailer/pkg-plist (props changed) head/x11-fm/py-nautilus/pkg-plist (props changed) head/x11-fm/qtfm/pkg-plist (props changed) head/x11-fm/rodent/pkg-plist (props changed) head/x11-fm/rox-filer/pkg-plist (props changed) head/x11-fm/rox-mime-editor/pkg-plist (props changed) head/x11-fm/thunar-vfs/pkg-plist (props changed) head/x11-fm/twander/pkg-plist (props changed) head/x11-fm/ultracopier/pkg-plist (props changed) head/x11-fm/worker/pkg-plist (props changed) head/x11-fm/xcruise/pkg-plist (props changed) head/x11-fm/xfm/pkg-plist (props changed) head/x11-fm/xplore/pkg-plist (props changed) head/x11-fonts/anonymous-pro/pkg-plist (props changed) head/x11-fonts/artwiz-aleczapka-de/pkg-plist (props changed) head/x11-fonts/artwiz-aleczapka-se/pkg-plist (props changed) head/x11-fonts/artwiz-aleczapka/pkg-plist (props changed) head/x11-fonts/artwiz-fonts/pkg-plist (props changed) head/x11-fonts/bitstream-vera/pkg-plist (props changed) head/x11-fonts/cantarell-fonts/pkg-plist (props changed) head/x11-fonts/code2000/pkg-plist (props changed) head/x11-fonts/code2001/pkg-plist (props changed) head/x11-fonts/cyr-rfx/pkg-plist (props changed) head/x11-fonts/dejavu/pkg-plist (props changed) head/x11-fonts/droid-fonts-ttf/pkg-plist (props changed) head/x11-fonts/encodings/pkg-plist (props changed) head/x11-fonts/farsifonts/pkg-plist (props changed) head/x11-fonts/fira/pkg-plist (props changed) head/x11-fonts/font-adobe-100dpi/pkg-plist (props changed) head/x11-fonts/font-adobe-75dpi/pkg-plist (props changed) head/x11-fonts/font-adobe-utopia-100dpi/pkg-plist (props changed) head/x11-fonts/font-adobe-utopia-75dpi/pkg-plist (props changed) head/x11-fonts/font-adobe-utopia-type1/pkg-plist (props changed) head/x11-fonts/font-alias/pkg-plist (props changed) head/x11-fonts/font-arabic-misc/pkg-plist (props changed) head/x11-fonts/font-bh-100dpi/pkg-plist (props changed) head/x11-fonts/font-bh-75dpi/pkg-plist (props changed) head/x11-fonts/font-bh-lucidatypewriter-100dpi/pkg-plist (props changed) head/x11-fonts/font-bh-lucidatypewriter-75dpi/pkg-plist (props changed) head/x11-fonts/font-bh-ttf/pkg-plist (props changed) head/x11-fonts/font-bh-type1/pkg-plist (props changed) head/x11-fonts/font-bitstream-100dpi/pkg-plist (props changed) head/x11-fonts/font-bitstream-75dpi/pkg-plist (props changed) head/x11-fonts/font-bitstream-speedo/pkg-plist (props changed) head/x11-fonts/font-bitstream-type1/pkg-plist (props changed) head/x11-fonts/font-cronyx-cyrillic/pkg-plist (props changed) head/x11-fonts/font-cursor-misc/pkg-plist (props changed) head/x11-fonts/font-daewoo-misc/pkg-plist (props changed) head/x11-fonts/font-dec-misc/pkg-plist (props changed) head/x11-fonts/font-gost/pkg-plist (props changed) head/x11-fonts/font-ibm-type1/pkg-plist (props changed) head/x11-fonts/font-isas-misc/pkg-plist (props changed) head/x11-fonts/font-jis-misc/pkg-plist (props changed) head/x11-fonts/font-manager/pkg-plist (props changed) head/x11-fonts/font-micro-misc/pkg-plist (props changed) head/x11-fonts/font-misc-cyrillic/pkg-plist (props changed) head/x11-fonts/font-misc-ethiopic/pkg-plist (props changed) head/x11-fonts/font-misc-meltho/pkg-plist (props changed) head/x11-fonts/font-misc-misc/pkg-plist (props changed) head/x11-fonts/font-mutt-misc/pkg-plist (props changed) head/x11-fonts/font-schumacher-misc/pkg-plist (props changed) head/x11-fonts/font-screen-cyrillic/pkg-plist (props changed) head/x11-fonts/font-sony-misc/pkg-plist (props changed) head/x11-fonts/font-sun-misc/pkg-plist (props changed) head/x11-fonts/font-util/pkg-plist (props changed) head/x11-fonts/font-winitzki-cyrillic/pkg-plist (props changed) head/x11-fonts/font-xfree86-type1/pkg-plist (props changed) head/x11-fonts/fontcacheproto/pkg-plist (props changed) head/x11-fonts/fontmatrix/pkg-plist (props changed) head/x11-fonts/fonts-indic/pkg-plist (props changed) head/x11-fonts/fonts-te/pkg-plist (props changed) head/x11-fonts/fontsproto/pkg-plist (props changed) head/x11-fonts/freefont-ttf/pkg-plist (props changed) head/x11-fonts/freefonts/pkg-plist (props changed) head/x11-fonts/geminifonts/pkg-plist (props changed) head/x11-fonts/hanazono-fonts-ttf/pkg-plist (props changed) head/x11-fonts/indic-ttf/pkg-plist (props changed) head/x11-fonts/intlfonts/pkg-plist (props changed) head/x11-fonts/isabella/pkg-plist (props changed) head/x11-fonts/jmk-x11-fonts/pkg-plist (props changed) head/x11-fonts/junicode/pkg-plist (props changed) head/x11-fonts/kaputa/pkg-plist (props changed) head/x11-fonts/khmeros/pkg-plist (props changed) head/x11-fonts/lfpfonts-fix/pkg-plist (props changed) head/x11-fonts/lfpfonts-var/pkg-plist (props changed) head/x11-fonts/libFS/pkg-plist (props changed) head/x11-fonts/libXfont/pkg-plist (props changed) head/x11-fonts/libXfontcache/pkg-plist (props changed) head/x11-fonts/libfontenc/pkg-plist (props changed) head/x11-fonts/linux-f10-fontconfig/pkg-plist (props changed) head/x11-fonts/linuxlibertine-g/pkg-plist (props changed) head/x11-fonts/linuxlibertine/pkg-plist (props changed) head/x11-fonts/manu-gothica/pkg-plist (props changed) head/x11-fonts/mgopen/pkg-plist (props changed) head/x11-fonts/mondulkiri/pkg-plist (props changed) head/x11-fonts/moveable-type-fonts/pkg-plist (props changed) head/x11-fonts/nexfontsel/pkg-plist (props changed) head/x11-fonts/nucleus/pkg-plist (props changed) head/x11-fonts/p5-Font-AFM/pkg-plist (props changed) head/x11-fonts/p5-Font-TTFMetrics/pkg-plist (props changed) head/x11-fonts/padauk/pkg-plist (props changed) head/x11-fonts/paratype/pkg-plist (props changed) head/x11-fonts/pingwi/pkg-plist (props changed) head/x11-fonts/profont/pkg-plist (props changed) head/x11-fonts/proggy_fonts-ttf/pkg-plist (props changed) head/x11-fonts/proggy_fonts/pkg-plist (props changed) head/x11-fonts/roboto-fonts-ttf/pkg-plist (props changed) head/x11-fonts/sharefonts/pkg-plist (props changed) head/x11-fonts/stix-fonts/pkg-plist (props changed) head/x11-fonts/suxus/pkg-plist (props changed) head/x11-fonts/terminus-font/pkg-plist (props changed) head/x11-fonts/texcm-ttf/pkg-plist (props changed) head/x11-fonts/tkfont/pkg-plist (props changed) head/x11-fonts/tmu/pkg-plist (props changed) head/x11-fonts/tv-fonts/pkg-plist (props changed) head/x11-fonts/ubuntu-font/pkg-plist (props changed) head/x11-fonts/urwfonts-ttf/pkg-plist (props changed) head/x11-fonts/urwfonts/pkg-plist (props changed) head/x11-fonts/webfonts/pkg-plist (props changed) head/x11-fonts/wqy/pkg-plist (props changed) head/x11-fonts/xf86bigfontproto/pkg-plist (props changed) head/x11-fonts/xfontsel/pkg-plist (props changed) head/x11-fonts/xfs/pkg-plist (props changed) head/x11-fonts/xorg-fonts/pkg-plist (props changed) head/x11-servers/Xfstt/pkg-plist (props changed) head/x11-servers/mga_hal/pkg-plist (props changed) head/x11-servers/xorg-dmx/pkg-plist (props changed) head/x11-servers/xorg-server/pkg-plist (props changed) head/x11-themes/audacious-skins/pkg-plist (props changed) head/x11-themes/claws-mail-themes/pkg-plist (props changed) head/x11-themes/clearlooks-themes-extras/pkg-plist (props changed) head/x11-themes/clearlooks/pkg-plist (props changed) head/x11-themes/cursor-bluecurve-theme/pkg-plist (props changed) head/x11-themes/cursor-chameleon-anthracite/pkg-plist (props changed) head/x11-themes/cursor-chameleon-darkskyblue/pkg-plist (props changed) head/x11-themes/cursor-chameleon-pearl/pkg-plist (props changed) head/x11-themes/cursor-chameleon-skyblue/pkg-plist (props changed) head/x11-themes/cursor-chameleon-white/pkg-plist (props changed) head/x11-themes/cursor-crystal-theme/pkg-plist (props changed) head/x11-themes/cursor-dmz-aa-theme/pkg-plist (props changed) head/x11-themes/cursor-dmz-theme/pkg-plist (props changed) head/x11-themes/cursor-ecliz/pkg-plist (props changed) head/x11-themes/cursor-grounation-theme/pkg-plist (props changed) head/x11-themes/cursor-jimmac-theme/pkg-plist (props changed) head/x11-themes/cursor-neutral-theme/pkg-plist (props changed) head/x11-themes/cursor-neutral-white-theme/pkg-plist (props changed) head/x11-themes/cursor-polar-theme/pkg-plist (props changed) head/x11-themes/e16-themes/pkg-plist (props changed) head/x11-themes/emerald-themes/pkg-plist (props changed) head/x11-themes/fluxbox-tenr-styles-pack/pkg-plist (props changed) head/x11-themes/fvwm-themes/pkg-plist (props changed) head/x11-themes/gnome-backgrounds/pkg-plist (props changed) head/x11-themes/gnome-icons-aqua-fusion/pkg-plist (props changed) head/x11-themes/gnome-icons-crystal/pkg-plist (props changed) head/x11-themes/gnome-icons-dropline-neu/pkg-plist (props changed) head/x11-themes/gnome-icons-dropline-nou/pkg-plist (props changed) head/x11-themes/gnome-icons-elementary/pkg-plist (props changed) head/x11-themes/gnome-icons-gentoo-test/pkg-plist (props changed) head/x11-themes/gnome-icons-gion/pkg-plist (props changed) head/x11-themes/gnome-icons-iris/pkg-plist (props changed) head/x11-themes/gnome-icons-jini/pkg-plist (props changed) head/x11-themes/gnome-icons-lila/pkg-plist (props changed) head/x11-themes/gnome-icons-noia-full/pkg-plist (props changed) head/x11-themes/gnome-icons-noia-warm/pkg-plist (props changed) head/x11-themes/gnome-icons-refined/pkg-plist (props changed) head/x11-themes/gnome-icons-slick/pkg-plist (props changed) head/x11-themes/gnome-icons-snow-apple/pkg-plist (props changed) head/x11-themes/gnome-icons-snowish/pkg-plist (props changed) head/x11-themes/gnome-icons-stylish/pkg-plist (props changed) head/x11-themes/gnome-icons-ximian-south/pkg-plist (props changed) head/x11-themes/gnome-icons/pkg-plist (props changed) head/x11-themes/gnome-themes-extras/pkg-plist (props changed) head/x11-themes/gnome-themes/pkg-plist (props changed) head/x11-themes/gtk-aluminumalloy-cryogenic-theme/pkg-plist (props changed) head/x11-themes/gtk-aluminumalloy-smog-theme/pkg-plist (props changed) head/x11-themes/gtk-aluminumalloy-toxic-theme/pkg-plist (props changed) head/x11-themes/gtk-aluminumalloy-volcanic-theme/pkg-plist (props changed) head/x11-themes/gtk-aquaextremesunken-theme/pkg-plist (props changed) head/x11-themes/gtk-aqualightblue-theme/pkg-plist (props changed) head/x11-themes/gtk-aurora-engine/pkg-plist (props changed) head/x11-themes/gtk-cleanice-engine/pkg-plist (props changed) head/x11-themes/gtk-digital-cream-theme/pkg-plist (props changed) head/x11-themes/gtk-digital-harmony-theme/pkg-plist (props changed) head/x11-themes/gtk-engines2/pkg-plist (props changed) head/x11-themes/gtk-envy-theme/pkg-plist (props changed) head/x11-themes/gtk-equinox-engine/pkg-plist (props changed) head/x11-themes/gtk-flat-theme2/pkg-plist (props changed) head/x11-themes/gtk-gray-theme/pkg-plist (props changed) head/x11-themes/gtk-lila-theme-extras/pkg-plist (props changed) head/x11-themes/gtk-lila-theme/pkg-plist (props changed) head/x11-themes/gtk-longhorninspirat-theme/pkg-plist (props changed) head/x11-themes/gtk-milk-theme/pkg-plist (props changed) head/x11-themes/gtk-murrina-aqua/pkg-plist (props changed) head/x11-themes/gtk-murrina-fancy-clearlooks/pkg-plist (props changed) head/x11-themes/gtk-murrina-lightblue/pkg-plist (props changed) head/x11-themes/gtk-murrine-themes/pkg-plist (props changed) head/x11-themes/gtk-nodoka-engine/pkg-plist (props changed) head/x11-themes/gtk-oxygen-engine/pkg-plist (props changed) head/x11-themes/gtk-qnxtheme/pkg-plist (props changed) head/x11-themes/gtk-xfce-engine/pkg-plist (props changed) head/x11-themes/gtk3-oxygen-engine/pkg-plist (props changed) head/x11-themes/icon-naming-utils/pkg-plist (props changed) head/x11-themes/icons-buuf/pkg-plist (props changed) head/x11-themes/icons-human-azul/pkg-plist (props changed) head/x11-themes/icons-tango-extras/pkg-plist (props changed) head/x11-themes/icons-tango/pkg-plist (props changed) head/x11-themes/kde-icons-lime-rade8/pkg-plist (props changed) head/x11-themes/kde4-style-bespin/pkg-plist (props changed) head/x11-themes/kde4-style-nitrogen/pkg-plist (props changed) head/x11-themes/kde4-style-polyester/pkg-plist (props changed) head/x11-themes/kde4-style-skulpture/pkg-plist (props changed) head/x11-themes/kde4-windeco-crystal/pkg-plist (props changed) head/x11-themes/kde4-windeco-dekorator/pkg-plist (props changed) head/x11-themes/kde4-windeco-nitrogen/pkg-plist (props changed) head/x11-themes/linux-f10-qtcurve-gtk2/pkg-plist (props changed) head/x11-themes/lxde-icon-theme/pkg-plist (props changed) head/x11-themes/mate-backgrounds/pkg-plist (props changed) head/x11-themes/mate-themes/pkg-plist (props changed) head/x11-themes/metacity-theme-microgui/pkg-plist (props changed) head/x11-themes/murrine-configurator/pkg-plist (props changed) head/x11-themes/nimbus/pkg-plist (props changed) head/x11-themes/openbox-themes/pkg-plist (props changed) head/x11-themes/qtcurve-gtk2/pkg-plist (props changed) head/x11-themes/qtcurve-kde4/pkg-plist (props changed) head/x11-themes/rezlooks/pkg-plist (props changed) head/x11-themes/sawfish-themes/pkg-plist (props changed) head/x11-themes/slim-themes/pkg-plist (props changed) head/x11-themes/ubuntulooks/pkg-plist (props changed) head/x11-themes/xcursor-themes/pkg-plist (props changed) head/x11-themes/xmms-eq-skins/pkg-plist (props changed) head/x11-themes/xmms-vumeter-skins/pkg-plist (props changed) head/x11-toolkits/SoXt/pkg-plist (props changed) head/x11-toolkits/Xaw3d/pkg-plist (props changed) head/x11-toolkits/bakery/pkg-plist (props changed) head/x11-toolkits/bwidget/pkg-plist (props changed) head/x11-toolkits/c++-gtk-utils/pkg-plist (props changed) head/x11-toolkits/eel/pkg-plist (props changed) head/x11-toolkits/elementary/pkg-plist (props changed) head/x11-toolkits/fl_editor/pkg-plist (props changed) head/x11-toolkits/flowcanvas/pkg-plist (props changed) head/x11-toolkits/flvw/pkg-plist (props changed) head/x11-toolkits/fox16/pkg-plist (props changed) head/x11-toolkits/fpc-gnome1/pkg-plist (props changed) head/x11-toolkits/fpc-gtk1/pkg-plist (props changed) head/x11-toolkits/fpc-gtk2/pkg-plist (props changed) head/x11-toolkits/fpc-xforms/pkg-plist (props changed) head/x11-toolkits/fxscintilla/pkg-plist (props changed) head/x11-toolkits/gal2/pkg-plist (props changed) head/x11-toolkits/gdl/pkg-plist (props changed) head/x11-toolkits/gigi/pkg-plist (props changed) head/x11-toolkits/gnome-desktop-sharp20/pkg-plist (props changed) head/x11-toolkits/gnome-pty-helper/pkg-plist (props changed) head/x11-toolkits/gnome-sharp20/pkg-plist (props changed) head/x11-toolkits/gnomemm/pkg-plist (props changed) head/x11-toolkits/gnustep-back/pkg-plist (props changed) head/x11-toolkits/gnustep-gui/pkg-plist (props changed) head/x11-toolkits/gtk-sharp10/pkg-plist (props changed) head/x11-toolkits/gtk-sharp20/pkg-plist (props changed) head/x11-toolkits/gtk12/pkg-plist (props changed) head/x11-toolkits/gtkdatabox/pkg-plist (props changed) head/x11-toolkits/gtkextra2/pkg-plist (props changed) head/x11-toolkits/gtkglarea2/pkg-plist (props changed) head/x11-toolkits/gtkglext/pkg-plist (props changed) head/x11-toolkits/gtkglextmm/pkg-plist (props changed) head/x11-toolkits/gtkimageview/pkg-plist (props changed) head/x11-toolkits/gtkmathview/pkg-plist (props changed) head/x11-toolkits/gtkmm20-reference/pkg-plist (props changed) head/x11-toolkits/gtkmm20/pkg-plist (props changed) head/x11-toolkits/gtkmm24-reference/pkg-plist (props changed) head/x11-toolkits/gtkmm24/pkg-plist (props changed) head/x11-toolkits/gtkmm30-reference/pkg-plist (props changed) head/x11-toolkits/gtkmm30/pkg-plist (props changed) head/x11-toolkits/gtksourceview/pkg-plist (props changed) head/x11-toolkits/gtksourceview2/pkg-plist (props changed) head/x11-toolkits/gtkunique/pkg-plist (props changed) head/x11-toolkits/hippo-canvas/pkg-plist (props changed) head/x11-toolkits/irrlicht/pkg-plist (props changed) head/x11-toolkits/iwidgets/pkg-plist (props changed) head/x11-toolkits/lesstif/pkg-plist (props changed) head/x11-toolkits/libXaw/pkg-plist (props changed) head/x11-toolkits/libXmu/pkg-plist (props changed) head/x11-toolkits/libXt/pkg-plist (props changed) head/x11-toolkits/libbonoboui/pkg-plist (props changed) head/x11-toolkits/libgnomeprintui/pkg-plist (props changed) head/x11-toolkits/libgnomeprintuimm/pkg-plist (props changed) head/x11-toolkits/libgnomeui/pkg-plist (props changed) head/x11-toolkits/libgnomeuimm26/pkg-plist (props changed) head/x11-toolkits/libgtk-java/pkg-plist (props changed) head/x11-toolkits/libgtksourceviewmm/pkg-plist (props changed) head/x11-toolkits/libmatewnck/pkg-plist (props changed) head/x11-toolkits/libpanelappletmm/pkg-plist (props changed) head/x11-toolkits/libsexy/pkg-plist (props changed) head/x11-toolkits/libsexymm/pkg-plist (props changed) head/x11-toolkits/libunique3/pkg-plist (props changed) head/x11-toolkits/libwnck/pkg-plist (props changed) head/x11-toolkits/libxaw3dxft/pkg-plist (props changed) head/x11-toolkits/libzvt/pkg-plist (props changed) head/x11-toolkits/linux-f10-blt/pkg-plist (props changed) head/x11-toolkits/linux-f10-gtk2/pkg-plist (props changed) head/x11-toolkits/linux-f10-openmotif/pkg-plist (props changed) head/x11-toolkits/linux-f10-pango/pkg-plist (props changed) head/x11-toolkits/linux-f10-qt45/pkg-plist.i386 (props changed) head/x11-toolkits/linux-f10-tk85/pkg-plist (props changed) head/x11-toolkits/movingmotif/pkg-plist (props changed) head/x11-toolkits/mowitz/pkg-plist (props changed) head/x11-toolkits/neXtaw/pkg-plist (props changed) head/x11-toolkits/open-motif/pkg-plist (props changed) head/x11-toolkits/p5-Alien-wxWidgets/pkg-plist (props changed) head/x11-toolkits/p5-Glade2/pkg-plist (props changed) head/x11-toolkits/p5-Gnome2-Canvas/pkg-plist (props changed) head/x11-toolkits/p5-Gtk2-Ex-PodViewer/pkg-plist (props changed) head/x11-toolkits/p5-Gtk2-Ex-Simple-List/pkg-plist (props changed) head/x11-toolkits/p5-Prima/pkg-plist (props changed) head/x11-toolkits/p5-Tk/pkg-plist (props changed) head/x11-toolkits/pangomm/pkg-plist (props changed) head/x11-toolkits/pangoxsl/pkg-plist (props changed) head/x11-toolkits/paragui-devel/pkg-plist (props changed) head/x11-toolkits/phat/pkg-plist (props changed) head/x11-toolkits/plib/pkg-plist (props changed) head/x11-toolkits/pure-gtk/pkg-plist (props changed) head/x11-toolkits/py-Pmw/pkg-plist (props changed) head/x11-toolkits/py-SquareMap/pkg-plist (props changed) head/x11-toolkits/py-gnome-desktop/pkg-plist (props changed) head/x11-toolkits/py-gnome-extras/pkg-plist (props changed) head/x11-toolkits/py-gnome2/pkg-plist (props changed) head/x11-toolkits/py-gtk2/pkg-plist (props changed) head/x11-toolkits/py-gtkglext/pkg-plist (props changed) head/x11-toolkits/py-gtksourceview/pkg-plist (props changed) head/x11-toolkits/py-gui/pkg-plist (props changed) head/x11-toolkits/py-kiwi/pkg-plist (props changed) head/x11-toolkits/py-pyqwt/pkg-plist (props changed) head/x11-toolkits/py-tktreectrl/pkg-plist (props changed) head/x11-toolkits/py-traitsbackendwx/pkg-plist (props changed) head/x11-toolkits/py-traitsgui/pkg-plist (props changed) head/x11-toolkits/py-vte/pkg-plist (props changed) head/x11-toolkits/py-wax/pkg-plist (props changed) head/x11-toolkits/py-wmdockapps/pkg-plist (props changed) head/x11-toolkits/py-wxPython26-common/pkg-plist (props changed) head/x11-toolkits/py-wxPython26/pkg-plist (props changed) head/x11-toolkits/py-wxPython28-common/pkg-plist (props changed) head/x11-toolkits/py-wxPython28/pkg-plist (props changed) head/x11-toolkits/py-xlib/pkg-plist (props changed) head/x11-toolkits/qt4pas/pkg-plist (props changed) head/x11-toolkits/rep-gtk2/pkg-plist (props changed) head/x11-toolkits/ruby-fox16/pkg-plist (props changed) head/x11-toolkits/ruby-goocanvas/pkg-plist (props changed) head/x11-toolkits/ruby-gstreamer/pkg-plist (props changed) head/x11-toolkits/ruby-gtk2/pkg-plist (props changed) head/x11-toolkits/ruby-gtksourceview2/pkg-plist (props changed) head/x11-toolkits/ruby-pango/pkg-plist (props changed) head/x11-toolkits/ruby-poppler/pkg-plist (props changed) head/x11-toolkits/ruby-vte/pkg-plist (props changed) head/x11-toolkits/sakura/pkg-plist (props changed) head/x11-toolkits/scintilla/pkg-plist (props changed) head/x11-toolkits/sdl_pango/pkg-plist (props changed) head/x11-toolkits/shared-desktop-ontologies/pkg-plist (props changed) head/x11-toolkits/slingshot/pkg-plist (props changed) head/x11-toolkits/soqt/pkg-plist (props changed) head/x11-toolkits/tile/pkg-plist (props changed) head/x11-toolkits/tktable/pkg-plist (props changed) head/x11-toolkits/unique/pkg-plist (props changed) head/x11-toolkits/v/pkg-plist (props changed) head/x11-toolkits/vdk/pkg-plist (props changed) head/x11-toolkits/vdkbuilder/pkg-plist (props changed) head/x11-toolkits/viewklass/pkg-plist (props changed) head/x11-toolkits/vte/pkg-plist (props changed) head/x11-toolkits/vte3/pkg-plist (props changed) head/x11-toolkits/wxgtk26-common/pkg-plist (props changed) head/x11-toolkits/wxgtk26-contrib-common/pkg-plist (props changed) head/x11-toolkits/wxgtk26-contrib/pkg-plist (props changed) head/x11-toolkits/wxgtk26-unicode-contrib/pkg-plist (props changed) head/x11-toolkits/wxgtk26-unicode/pkg-plist (props changed) head/x11-toolkits/wxgtk26/pkg-plist (props changed) head/x11-toolkits/wxgtk28-common/pkg-plist (props changed) head/x11-toolkits/wxgtk28-contrib-common/pkg-plist (props changed) head/x11-toolkits/wxgtk28-contrib/pkg-plist (props changed) head/x11-toolkits/wxgtk28-unicode-contrib/pkg-plist (props changed) head/x11-toolkits/wxgtk28-unicode/pkg-plist (props changed) head/x11-toolkits/wxgtk28/pkg-plist (props changed) head/x11-toolkits/wxgtk29/pkg-plist (props changed) head/x11-toolkits/xbae/pkg-plist (props changed) head/x11-toolkits/xmhtml/pkg-plist (props changed) head/x11-toolkits/xview-clients/pkg-plist (props changed) head/x11-toolkits/xview/pkg-plist (props changed) head/x11-wm/aewm/pkg-plist (props changed) head/x11-wm/afterstep-i18n/pkg-plist (props changed) head/x11-wm/afterstep/pkg-plist (props changed) head/x11-wm/amiwm/pkg-plist (props changed) head/x11-wm/awesome-vicious/pkg-plist (props changed) head/x11-wm/awesome/pkg-plist (props changed) head/x11-wm/awesome2/pkg-plist (props changed) head/x11-wm/bbpager/pkg-plist (props changed) head/x11-wm/blackbox/pkg-plist (props changed) head/x11-wm/ccsm/pkg-plist (props changed) head/x11-wm/compiz-fusion/pkg-plist (props changed) head/x11-wm/compiz-plugins-extra/pkg-plist (props changed) head/x11-wm/compiz-plugins-main/pkg-plist (props changed) head/x11-wm/compiz/pkg-plist (props changed) head/x11-wm/compizconfig-backend-gconf/pkg-plist (props changed) head/x11-wm/compizconfig-python/pkg-plist (props changed) head/x11-wm/compton/pkg-plist (props changed) head/x11-wm/ctwm/pkg-plist (props changed) head/x11-wm/e17-module-alarm/pkg-plist (props changed) head/x11-wm/e17-module-comp-scale/pkg-plist (props changed) head/x11-wm/e17-module-cpu/pkg-plist (props changed) head/x11-wm/e17-module-deskshow/pkg-plist (props changed) head/x11-wm/e17-module-diskio/pkg-plist (props changed) head/x11-wm/e17-module-elfe/pkg-plist (props changed) head/x11-wm/e17-module-empris/pkg-plist (props changed) head/x11-wm/e17-module-engage/pkg-plist (props changed) head/x11-wm/e17-module-eooorg/pkg-plist (props changed) head/x11-wm/e17-module-everything-aspell/pkg-plist (props changed) head/x11-wm/e17-module-everything-mpris/pkg-plist (props changed) head/x11-wm/e17-module-everything-pidgin/pkg-plist (props changed) head/x11-wm/e17-module-everything-places/pkg-plist (props changed) head/x11-wm/e17-module-everything-shotgun/pkg-plist (props changed) head/x11-wm/e17-module-everything-wallpaper/pkg-plist (props changed) head/x11-wm/e17-module-everything-websearch/pkg-plist (props changed) head/x11-wm/e17-module-exebuf/pkg-plist (props changed) head/x11-wm/e17-module-execwatch/pkg-plist (props changed) head/x11-wm/e17-module-flame/pkg-plist (props changed) head/x11-wm/e17-module-forecasts/pkg-plist (props changed) head/x11-wm/e17-module-iiirk/pkg-plist (props changed) head/x11-wm/e17-module-itask/pkg-plist (props changed) head/x11-wm/e17-module-mail/pkg-plist (props changed) head/x11-wm/e17-module-mem/pkg-plist (props changed) head/x11-wm/e17-module-moon/pkg-plist (props changed) head/x11-wm/e17-module-mpdule/pkg-plist (props changed) head/x11-wm/e17-module-net/pkg-plist (props changed) head/x11-wm/e17-module-news/pkg-plist (props changed) head/x11-wm/e17-module-penguins/pkg-plist (props changed) head/x11-wm/e17-module-photo/pkg-plist (props changed) head/x11-wm/e17-module-places/pkg-plist (props changed) head/x11-wm/e17-module-rain/pkg-plist (props changed) head/x11-wm/e17-module-screenshot/pkg-plist (props changed) head/x11-wm/e17-module-slideshow/pkg-plist (props changed) head/x11-wm/e17-module-snow/pkg-plist (props changed) head/x11-wm/e17-module-taskbar/pkg-plist (props changed) head/x11-wm/e17-module-tclock/pkg-plist (props changed) head/x11-wm/e17-module-uptime/pkg-plist (props changed) head/x11-wm/e17-module-weather/pkg-plist (props changed) head/x11-wm/e17-module-winlist-ng/pkg-plist (props changed) head/x11-wm/e17-module-winselector/pkg-plist (props changed) head/x11-wm/e17-module-wlan/pkg-plist (props changed) head/x11-wm/enlightenment-docs/pkg-plist (props changed) head/x11-wm/enlightenment/pkg-plist (props changed) head/x11-wm/fluxbox/pkg-plist (props changed) head/x11-wm/fluxter/pkg-plist (props changed) head/x11-wm/fvwm-crystal/pkg-plist (props changed) head/x11-wm/fvwm/pkg-plist (props changed) head/x11-wm/fvwm2/pkg-plist (props changed) head/x11-wm/gcompmgr/pkg-plist (props changed) head/x11-wm/golem/pkg-plist (props changed) head/x11-wm/herbstluftwm/pkg-plist (props changed) head/x11-wm/icewm/pkg-plist (props changed) head/x11-wm/ion/pkg-plist (props changed) head/x11-wm/jewel/pkg-plist (props changed) head/x11-wm/jwm/pkg-plist (props changed) head/x11-wm/libcompizconfig/pkg-plist (props changed) head/x11-wm/libdockapp/pkg-plist (props changed) head/x11-wm/libwraster/pkg-plist (props changed) head/x11-wm/lxmed/pkg-plist (props changed) head/x11-wm/mate-window-manager/pkg-plist (props changed) head/x11-wm/metacity/pkg-plist (props changed) head/x11-wm/mutter/pkg-plist (props changed) head/x11-wm/obapps/pkg-plist (props changed) head/x11-wm/obconf/pkg-plist (props changed) head/x11-wm/obkey/pkg-plist (props changed) head/x11-wm/olvwm/pkg-plist (props changed) head/x11-wm/openbox/pkg-plist (props changed) head/x11-wm/oroborus/pkg-plist (props changed) head/x11-wm/pawm/pkg-plist (props changed) head/x11-wm/pekwm/pkg-plist (props changed) head/x11-wm/phluid/pkg-plist (props changed) head/x11-wm/piewm/pkg-plist (props changed) head/x11-wm/plwm/pkg-plist (props changed) head/x11-wm/pwm/pkg-plist (props changed) head/x11-wm/ratpoison/pkg-plist (props changed) head/x11-wm/sapphire/pkg-plist (props changed) head/x11-wm/simple-ccsm/pkg-plist (props changed) head/x11-wm/spectrwm/pkg-plist (props changed) head/x11-wm/treewm/pkg-plist (props changed) head/x11-wm/twm/pkg-plist (props changed) head/x11-wm/wm2/pkg-plist (props changed) head/x11-wm/wmakerconf/pkg-plist (props changed) head/x11-wm/wmanager-addons/pkg-plist (props changed) head/x11-wm/wmanager/pkg-plist (props changed) head/x11-wm/wmfs/pkg-plist (props changed) head/x11-wm/wmii/pkg-plist (props changed) head/x11/alltray/pkg-plist (props changed) head/x11/arandr/pkg-plist (props changed) head/x11/avant-window-navigator/pkg-plist (props changed) head/x11/bbappconf/pkg-plist (props changed) head/x11/beforelight/pkg-plist (props changed) head/x11/bgrot/pkg-plist (props changed) head/x11/bigreqsproto/pkg-plist (props changed) head/x11/bitmap/pkg-plist (props changed) head/x11/bmpanel2/pkg-plist (props changed) head/x11/bricons/pkg-plist (props changed) head/x11/brightside/pkg-plist (props changed) head/x11/cl-clx/pkg-plist (props changed) head/x11/compositeproto/pkg-plist (props changed) head/x11/damageproto/pkg-plist (props changed) head/x11/decurs/pkg-plist (props changed) head/x11/dgs/pkg-plist (props changed) head/x11/dmxproto/pkg-plist (props changed) head/x11/dri2proto/pkg-plist (props changed) head/x11/eaglemode/pkg-plist (props changed) head/x11/ecore-imf/pkg-plist (props changed) head/x11/ecore-imf_evas/pkg-plist (props changed) head/x11/ecore-input/pkg-plist (props changed) head/x11/ecore-input_evas/pkg-plist (props changed) head/x11/ecore-x11/pkg-plist (props changed) head/x11/editres/pkg-plist (props changed) head/x11/efreet/pkg-plist (props changed) head/x11/emprint/pkg-plist (props changed) head/x11/emu/pkg-plist (props changed) head/x11/eterm/pkg-plist (props changed) head/x11/evieext/pkg-plist (props changed) head/x11/evilvte/pkg-plist (props changed) head/x11/fireflies/pkg-plist (props changed) head/x11/fixesproto/pkg-plist (props changed) head/x11/fpc-x11/pkg-plist (props changed) head/x11/gcb/pkg-plist (props changed) head/x11/gdesklets-tasklist/pkg-plist (props changed) head/x11/gdkxft/pkg-plist (props changed) head/x11/gdm/pkg-plist (props changed) head/x11/glproto/pkg-plist (props changed) head/x11/gnome-applets/pkg-plist (props changed) head/x11/gnome-desktop/pkg-plist (props changed) head/x11/gnome-menus/pkg-plist (props changed) head/x11/gnome-panel/pkg-plist (props changed) head/x11/gnome-pie/pkg-plist (props changed) head/x11/gnome-screensaver/pkg-plist (props changed) head/x11/gnome-session/pkg-plist (props changed) head/x11/gnome-shell/pkg-plist (props changed) head/x11/gnome-swallow/pkg-plist (props changed) head/x11/gnome-terminal/pkg-plist (props changed) head/x11/gnome2/pkg-plist (props changed) head/x11/gromit/pkg-plist (props changed) head/x11/gskrab/pkg-plist (props changed) head/x11/gtk-theme-switch/pkg-plist (props changed) head/x11/gtstarter/pkg-plist (props changed) head/x11/hotwire-shell/pkg-plist (props changed) head/x11/imwheel/pkg-plist (props changed) head/x11/innerspace/pkg-plist (props changed) head/x11/inputproto/pkg-plist (props changed) head/x11/kbproto/pkg-plist (props changed) head/x11/keyboardcast/pkg-plist (props changed) head/x11/keylaunch/pkg-plist (props changed) head/x11/kgamma/pkg-plist (props changed) head/x11/libICE/pkg-plist (props changed) head/x11/libSM/pkg-plist (props changed) head/x11/libX11/pkg-plist (props changed) head/x11/libXScrnSaver/pkg-plist (props changed) head/x11/libXTrap/pkg-plist (props changed) head/x11/libXau/pkg-plist (props changed) head/x11/libXcm/pkg-plist (props changed) head/x11/libXcomposite/pkg-plist (props changed) head/x11/libXcursor/pkg-plist (props changed) head/x11/libXdamage/pkg-plist (props changed) head/x11/libXdmcp/pkg-plist (props changed) head/x11/libXevie/pkg-plist (props changed) head/x11/libXext/pkg-plist (props changed) head/x11/libXfixes/pkg-plist (props changed) head/x11/libXi/pkg-plist (props changed) head/x11/libXinerama/pkg-plist (props changed) head/x11/libXp/pkg-plist (props changed) head/x11/libXpm/pkg-plist (props changed) head/x11/libXprintAppUtil/pkg-plist (props changed) head/x11/libXprintUtil/pkg-plist (props changed) head/x11/libXrandr/pkg-plist (props changed) head/x11/libXrender/pkg-plist (props changed) head/x11/libXres/pkg-plist (props changed) head/x11/libXtst/pkg-plist (props changed) head/x11/libXv/pkg-plist (props changed) head/x11/libXvMC/pkg-plist (props changed) head/x11/libXxf86dga/pkg-plist (props changed) head/x11/libXxf86misc/pkg-plist (props changed) head/x11/libXxf86vm/pkg-plist (props changed) head/x11/libdmx/pkg-plist (props changed) head/x11/libdnd/pkg-plist (props changed) head/x11/libgnome-java/pkg-plist (props changed) head/x11/libgnome/pkg-plist (props changed) head/x11/libgnomekbd/pkg-plist (props changed) head/x11/libgnomemm26/pkg-plist (props changed) head/x11/libmatekbd/pkg-plist (props changed) head/x11/liboldX/pkg-plist (props changed) head/x11/libsx/pkg-plist (props changed) head/x11/libsynaptics/pkg-plist (props changed) head/x11/libxcb/pkg-plist (props changed) head/x11/libxdg-basedir/pkg-plist (props changed) head/x11/libxfce4util/pkg-plist (props changed) head/x11/libxkbfile/pkg-plist (props changed) head/x11/libxkbui/pkg-plist (props changed) head/x11/libxklavier/pkg-plist (props changed) head/x11/linux-f10-xorg-libs/pkg-plist (props changed) head/x11/lxmenu-data/pkg-plist (props changed) head/x11/lxpanel/pkg-plist (props changed) head/x11/mate-applets/pkg-plist (props changed) head/x11/mate-desktop/pkg-plist (props changed) head/x11/mate-dialogs/pkg-plist (props changed) head/x11/mate-menus/pkg-plist (props changed) head/x11/mate-panel/pkg-plist (props changed) head/x11/mate-screensaver/pkg-plist (props changed) head/x11/mate-session-manager/pkg-plist (props changed) head/x11/mate-terminal/pkg-plist (props changed) head/x11/metalock/pkg-plist (props changed) head/x11/metisse/pkg-plist (props changed) head/x11/mgapdesk/pkg-plist (props changed) head/x11/mrxvt/pkg-plist (props changed) head/x11/multi-aterm/pkg-plist (props changed) head/x11/mxico/pkg-plist (props changed) head/x11/nvidia-driver/pkg-plist (props changed) head/x11/p5-X11-GUITest/pkg-plist (props changed) head/x11/p5-X11-IdleTime/pkg-plist (props changed) head/x11/p5-X11-Protocol/pkg-plist (props changed) head/x11/p5-X11-Resolution/pkg-plist (props changed) head/x11/peeper/pkg-plist (props changed) head/x11/pixman/pkg-plist (props changed) head/x11/plasma-scriptengine-ruby/pkg-plist (props changed) head/x11/printproto/pkg-plist (props changed) head/x11/props/pkg-plist (props changed) head/x11/py-qt4-opengl/pkg-plist (props changed) head/x11/qimageblitz/pkg-plist (props changed) head/x11/qxkb/pkg-plist (props changed) head/x11/randrproto/pkg-plist (props changed) head/x11/recordproto/pkg-plist (props changed) head/x11/renderproto/pkg-plist (props changed) head/x11/resourceproto/pkg-plist (props changed) head/x11/rox-wallpaper/pkg-plist (props changed) head/x11/rsibreak-kde4/pkg-plist (props changed) head/x11/rstart/pkg-plist (props changed) head/x11/ruby-X11/pkg-plist (props changed) head/x11/rxvt-devel/pkg-plist (props changed) head/x11/sbxkb/pkg-plist (props changed) head/x11/scripts/pkg-plist (props changed) head/x11/scrnsaverproto/pkg-plist (props changed) head/x11/simdock/pkg-plist (props changed) head/x11/startup-notification/pkg-plist (props changed) head/x11/terminal.app/pkg-plist (props changed) head/x11/terminator/pkg-plist (props changed) head/x11/tilda/pkg-plist (props changed) head/x11/tkXwin/pkg-plist (props changed) head/x11/trapproto/pkg-plist (props changed) head/x11/tycoon/pkg-plist (props changed) head/x11/videoproto/pkg-plist (props changed) head/x11/wbarconf/pkg-plist (props changed) head/x11/wmappl/pkg-plist (props changed) head/x11/wmcliphist/pkg-plist (props changed) head/x11/wmdrawer/pkg-plist (props changed) head/x11/workrave/pkg-plist (props changed) head/x11/x11perf/pkg-plist (props changed) head/x11/xbanner/pkg-plist (props changed) head/x11/xbitmaps/pkg-plist (props changed) head/x11/xcalc/pkg-plist (props changed) head/x11/xcalib/pkg-plist (props changed) head/x11/xcb-proto/pkg-plist (props changed) head/x11/xcb-util-image/pkg-plist (props changed) head/x11/xcb-util-keysyms/pkg-plist (props changed) head/x11/xcb-util-renderutil/pkg-plist (props changed) head/x11/xcb-util-wm/pkg-plist (props changed) head/x11/xcb-util/pkg-plist (props changed) head/x11/xclipboard/pkg-plist (props changed) head/x11/xcmiscproto/pkg-plist (props changed) head/x11/xco/pkg-plist (props changed) head/x11/xcolors/pkg-plist (props changed) head/x11/xcolorsel/pkg-plist (props changed) head/x11/xconsole/pkg-plist (props changed) head/x11/xcurs/pkg-plist (props changed) head/x11/xdialog/pkg-plist (props changed) head/x11/xditview/pkg-plist (props changed) head/x11/xdtm/pkg-plist (props changed) head/x11/xedit/pkg-plist (props changed) head/x11/xextproto/pkg-plist (props changed) head/x11/xf86dgaproto/pkg-plist (props changed) head/x11/xf86driproto/pkg-plist (props changed) head/x11/xf86miscproto/pkg-plist (props changed) head/x11/xf86rushproto/pkg-plist (props changed) head/x11/xf86vidmodeproto/pkg-plist (props changed) head/x11/xfce4-quicklauncher-plugin/pkg-plist (props changed) head/x11/xfce4-verve-plugin/pkg-plist (props changed) head/x11/xfce4-wmdock-plugin/pkg-plist (props changed) head/x11/xfce4-xfapplet-plugin/pkg-plist (props changed) head/x11/xfd/pkg-plist (props changed) head/x11/xfree86_xkb_xml/pkg-plist (props changed) head/x11/xgc/pkg-plist (props changed) head/x11/xgrab/pkg-plist (props changed) head/x11/xineramaproto/pkg-plist (props changed) head/x11/xkbset/pkg-plist (props changed) head/x11/xkbutils/pkg-plist (props changed) head/x11/xkeyboard-config/pkg-plist (props changed) head/x11/xload/pkg-plist (props changed) head/x11/xlogo/pkg-plist (props changed) head/x11/xmag/pkg-plist (props changed) head/x11/xman/pkg-plist (props changed) head/x11/xmascot/pkg-plist (props changed) head/x11/xmessage/pkg-plist (props changed) head/x11/xmh/pkg-plist (props changed) head/x11/xmon/pkg-plist (props changed) head/x11/xmore/pkg-plist (props changed) head/x11/xorg-apps/pkg-plist (props changed) head/x11/xorg-cf-files/pkg-plist (props changed) head/x11/xorg-docs/pkg-plist (props changed) head/x11/xorg-libraries/pkg-plist (props changed) head/x11/xorg/pkg-plist (props changed) head/x11/xproto/pkg-plist (props changed) head/x11/xproxymanagementprotocol/pkg-plist (props changed) head/x11/xpyb/pkg-plist (props changed) head/x11/xrx/pkg-plist (props changed) head/x11/xscreensaver-gnome-hacks/pkg-plist (props changed) head/x11/xscreensaver-gnome/pkg-plist (props changed) head/x11/xscreensaver/pkg-plist (props changed) head/x11/xsm/pkg-plist (props changed) head/x11/xterm/pkg-plist (props changed) head/x11/xtermset/pkg-plist (props changed) head/x11/xtrans/pkg-plist (props changed) head/x11/xtrap/pkg-plist (props changed) head/x11/xvidtune/pkg-plist (props changed) head/x11/xvkbd/pkg-plist (props changed) head/x11/xxkb/pkg-plist (props changed) head/x11/yad/pkg-plist (props changed) head/x11/yalias/pkg-plist (props changed) head/x11/zenity/pkg-plist (props changed) Modified: head/math/saga/pkg-plist ============================================================================== --- head/math/saga/pkg-plist Wed Jan 22 15:12:27 2014 (r340713) +++ head/math/saga/pkg-plist Wed Jan 22 15:16:56 2014 (r340714) @@ -1,29 +1,29 @@ -bin/saga_cmd -bin/saga_gui -lib/libsaga_api.la -lib/libsaga_api-2.1.0.so -lib/libsaga_api.so -lib/libsaga_gdi-2.1.0.so -lib/libsaga_gdi.la -lib/libsaga_gdi.so -lib/libsaga_odbc.a -lib/libsaga_odbc.la -lib/libsaga_odbc-2.1.0.so -lib/libsaga_odbc.so -%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/_saga_api-2.1.0.so -%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/_saga_api.a -%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/_saga_api.la -%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/_saga_api.so -%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.py -%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.pyc -%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.pyo -lib/saga/libclimate_tools.so -lib/saga/libcontrib_a_perego.so -lib/saga/libdocs_html.so -lib/saga/libdocs_pdf.so -lib/saga/libgarden_3d_viewer.so -lib/saga/libgarden_webservices.so -lib/saga/libgeostatistics_grid.so +bin/saga_cmd +bin/saga_gui +lib/libsaga_api.la +lib/libsaga_api-2.1.0.so +lib/libsaga_api.so +lib/libsaga_gdi-2.1.0.so +lib/libsaga_gdi.la +lib/libsaga_gdi.so +lib/libsaga_odbc.a +lib/libsaga_odbc.la +lib/libsaga_odbc-2.1.0.so +lib/libsaga_odbc.so +%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/_saga_api-2.1.0.so +%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/_saga_api.a +%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/_saga_api.la +%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/_saga_api.so +%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.py +%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.pyc +%%SAGA_PYTHON%%%%PYTHON_SITELIBDIR%%/saga_api.pyo +lib/saga/libclimate_tools.so +lib/saga/libcontrib_a_perego.so +lib/saga/libdocs_html.so +lib/saga/libdocs_pdf.so +lib/saga/libgarden_3d_viewer.so +lib/saga/libgarden_webservices.so +lib/saga/libgeostatistics_grid.so lib/saga/libgeostatistics_kriging.so lib/saga/libgeostatistics_points.so lib/saga/libgeostatistics_regression.so @@ -36,13 +36,13 @@ lib/saga/libgrid_spline.so lib/saga/libgrid_tools.so lib/saga/libgrid_visualisation.so lib/saga/libihacres.so -lib/saga/libimagery_classification.so -lib/saga/libimagery_rga.so -lib/saga/libimagery_segmentation.so -lib/saga/libimagery_svm.so -lib/saga/libimagery_tools.so -lib/saga/libio_esri_e00.so -lib/saga/libio_gdal.so +lib/saga/libimagery_classification.so +lib/saga/libimagery_rga.so +lib/saga/libimagery_segmentation.so +lib/saga/libimagery_svm.so +lib/saga/libimagery_tools.so +lib/saga/libio_esri_e00.so +lib/saga/libio_gdal.so lib/saga/libio_gps.so lib/saga/libio_grid.so lib/saga/libio_grid_grib2.so @@ -50,27 +50,27 @@ lib/saga/libio_grid_image.so lib/saga/libio_odbc.so lib/saga/libio_shapes.so lib/saga/libio_shapes_dxf.so -lib/saga/libio_shapes_las.so -lib/saga/libio_table.so -lib/saga/liblectures_introduction.so -lib/saga/libpj_georeference.so -lib/saga/libpj_proj4.so -lib/saga/libpointcloud_tools.so -lib/saga/libpointcloud_viewer.so -lib/saga/libopencv.so -lib/saga/librecreations_fractals.so -lib/saga/librecreations_games.so -lib/saga/libshapes_grid.so +lib/saga/libio_shapes_las.so +lib/saga/libio_table.so +lib/saga/liblectures_introduction.so +lib/saga/libpj_georeference.so +lib/saga/libpj_proj4.so +lib/saga/libpointcloud_tools.so +lib/saga/libpointcloud_viewer.so +lib/saga/libopencv.so +lib/saga/librecreations_fractals.so +lib/saga/librecreations_games.so +lib/saga/libshapes_grid.so lib/saga/libshapes_lines.so lib/saga/libshapes_points.so lib/saga/libshapes_polygons.so -lib/saga/libshapes_tools.so -lib/saga/libsim_cellular_automata.so -lib/saga/libsim_ecosystems_hugget.so -lib/saga/libsim_erosion.so -lib/saga/libsim_fire_spreading.so -lib/saga/libsim_hydrology.so -lib/saga/libta_channels.so +lib/saga/libshapes_tools.so +lib/saga/libsim_cellular_automata.so +lib/saga/libsim_ecosystems_hugget.so +lib/saga/libsim_erosion.so +lib/saga/libsim_fire_spreading.so +lib/saga/libsim_hydrology.so +lib/saga/libta_channels.so lib/saga/libta_compound.so lib/saga/libta_hydrology.so lib/saga/libta_lighting.so @@ -80,10 +80,10 @@ lib/saga/libta_profiles.so lib/saga/libtable_calculus.so lib/saga/libtable_tools.so lib/saga/libtin_tools.so -lib/saga/libtin_viewer.so -lib/saga/libtransect.so -%%VIGRA%%lib/saga/libvigra.so -%%DATADIR%%/saga.png -%%DATADIR%%/saga_tip.txt -@dirrm share/saga -@dirrm lib/saga +lib/saga/libtin_viewer.so +lib/saga/libtransect.so +%%VIGRA%%lib/saga/libvigra.so +%%DATADIR%%/saga.png +%%DATADIR%%/saga_tip.txt +@dirrm share/saga +@dirrm lib/saga From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 15:19:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C993567F; Wed, 22 Jan 2014 15:19:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B587C128C; Wed, 22 Jan 2014 15:19:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MFJLap090113; Wed, 22 Jan 2014 15:19:21 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MFJLOV090110; Wed, 22 Jan 2014 15:19:21 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401221519.s0MFJLOV090110@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 22 Jan 2014 15:19:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340715 - head/x11-toolkits/xforms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 15:19:21 -0000 Author: gahr Date: Wed Jan 22 15:19:21 2014 New Revision: 340715 URL: http://svnweb.freebsd.org/changeset/ports/340715 QAT: https://qat.redports.org/buildarchive/r340715/ Log: - Update to 1.2.3 Modified: head/x11-toolkits/xforms/Makefile head/x11-toolkits/xforms/distinfo Modified: head/x11-toolkits/xforms/Makefile ============================================================================== --- head/x11-toolkits/xforms/Makefile Wed Jan 22 15:16:56 2014 (r340714) +++ head/x11-toolkits/xforms/Makefile Wed Jan 22 15:19:21 2014 (r340715) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xforms -DISTVERSION= 1.2.1 +DISTVERSION= 1.2.3 PORTEPOCH= 1 CATEGORIES= x11-toolkits graphics MASTER_SITES= ${MASTER_SITE_SAVANNAH} Modified: head/x11-toolkits/xforms/distinfo ============================================================================== --- head/x11-toolkits/xforms/distinfo Wed Jan 22 15:16:56 2014 (r340714) +++ head/x11-toolkits/xforms/distinfo Wed Jan 22 15:19:21 2014 (r340715) @@ -1,2 +1,2 @@ -SHA256 (xforms-1.2.1.tar.gz) = 59d7502493a8a6f071b6f9f1029956d3335b0ab91d39fb24b476ca790fd99e8d -SIZE (xforms-1.2.1.tar.gz) = 2108744 +SHA256 (xforms-1.2.3.tar.gz) = 7989b39598c769820ad451ad91e5cb0de29946940c8240aac94ca8238c2def61 +SIZE (xforms-1.2.3.tar.gz) = 2109529 From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 15:19:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 463DB769; Wed, 22 Jan 2014 15:19:48 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 039941298; Wed, 22 Jan 2014 15:19:48 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 9D2BDBDC5C; Wed, 22 Jan 2014 16:19:46 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 75E09BDC44; Wed, 22 Jan 2014 16:19:46 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id EDA4B613F; Wed, 22 Jan 2014 16:19:45 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 82A1768355F9; Wed, 22 Jan 2014 16:19:45 +0100 (CET) Date: Wed, 22 Jan 2014 16:19:45 +0100 From: Mathieu Arnold To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340714 - in head: accessibility/accerciser accessibility/at-spi accessibility/atkmm accessibility/dasher accessibility/eflite accessibility/gnome-mag accessibility/gnome-speech accessi... Message-ID: In-Reply-To: <201401221517.s0MFHFlX002211@svn.freebsd.org> References: <201401221517.s0MFHFlX002211@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 15:19:48 -0000 +--On 22 janvier 2014 15:17:15 +0000 Mathieu Arnold wrote: | Author: mat | Date: Wed Jan 22 15:16:56 2014 | New Revision: 340714 | URL: http://svnweb.freebsd.org/changeset/ports/340714 | QAT: https://qat.redports.org/buildarchive/r340714/ | | Log: | Fixup svn props on pkg-plist* | | Fixup one plist with bad line endings. | This was : With hat: portmgr -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 15:22:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49456892; Wed, 22 Jan 2014 15:22:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 29504130E; Wed, 22 Jan 2014 15:22:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MFM18Y093166; Wed, 22 Jan 2014 15:22:01 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MFM0LA093154; Wed, 22 Jan 2014 15:22:00 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201401221522.s0MFM0LA093154@svn.freebsd.org> From: Guido Falsi Date: Wed, 22 Jan 2014 15:22:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340716 - in head/net/whois: . 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.17 Precedence: list List-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, 22 Jan 2014 15:22:01 -0000 Author: madpilot Date: Wed Jan 22 15:21:59 2014 New Revision: 340716 URL: http://svnweb.freebsd.org/changeset/ports/340716 QAT: https://qat.redports.org/buildarchive/r340716/ Log: - Update to 5.0.23 - Convert to staging - Support NLS option - Remove uneeded file - Rename patch files according to standard PR: ports/185929 Submitted by: Lapo Luchini (maintainer) Added: head/net/whois/files/patch-Makefile (contents, props changed) - copied, changed from r340714, head/net/whois/files/patch-aa head/net/whois/files/patch-po_Makefile (contents, props changed) - copied, changed from r340402, head/net/whois/files/patch-ac head/net/whois/pkg-plist (contents, props changed) Deleted: head/net/whois/files/have_nls-patch head/net/whois/files/patch-aa head/net/whois/files/patch-ac Modified: head/net/whois/Makefile head/net/whois/distinfo (contents, props changed) Modified: head/net/whois/Makefile ============================================================================== --- head/net/whois/Makefile Wed Jan 22 15:19:21 2014 (r340715) +++ head/net/whois/Makefile Wed Jan 22 15:21:59 2014 (r340716) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= whois -PORTVERSION= 5.0.11 +PORTVERSION= 5.0.23 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -14,20 +14,24 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= iconv gmake perl5 +USE_XZ= yes USE_PERL5= build +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +MAKE_ARGS= BASEDIR="${STAGEDIR}" -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +OPTIONS_DEFINE= NLS -MAKE_ARGS= OPTS="" +OPTIONS_SUB= yes +NLS_USES= gettext -MAN1= mwhois.1 mkpasswd.1 +.include -PLIST_FILES= bin/mwhois bin/mkpasswd - -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g ; \ - s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/Makefile - @${REINPLACE_CMD} -e "s|/usr/share|${PREFIX}/share|g" ${WRKSRC}/po/Makefile + @${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" ${WRKSRC}/Makefile +.if ! ${PORT_OPTIONS:MNLS} + @${REINPLACE_CMD} -e "s| pos||" -e "s| install-pos||" \ + -e "s|-lintl||" ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e "s|# define ENABLE_NLS||" ${WRKSRC}/config.h +.endif .include Modified: head/net/whois/distinfo ============================================================================== --- head/net/whois/distinfo Wed Jan 22 15:19:21 2014 (r340715) +++ head/net/whois/distinfo Wed Jan 22 15:21:59 2014 (r340716) @@ -1,2 +1,2 @@ -SHA256 (whois_5.0.11.tar.gz) = 7f257a3104b14b7fe17f31a7b873e50c590df10e46cbab9942f9ad0a4a49c7ce -SIZE (whois_5.0.11.tar.gz) = 81195 +SHA256 (whois_5.0.23.tar.xz) = 6b486a42a4aa83b5f921083d518176726b6d2d903bc8dab5c6126ebe2bea1bf1 +SIZE (whois_5.0.23.tar.xz) = 70116 Copied and modified: head/net/whois/files/patch-Makefile (from r340714, head/net/whois/files/patch-aa) ============================================================================== --- head/net/whois/files/patch-aa Wed Jan 22 15:16:56 2014 (r340714, copy source) +++ head/net/whois/files/patch-Makefile Wed Jan 22 15:21:59 2014 (r340716) @@ -1,52 +1,33 @@ ---- Makefile.orgi 2008-12-24 19:32:32.000000000 +0100 -+++ Makefile 2008-12-24 19:33:58.000000000 +0100 -@@ -1,6 +1,9 @@ +--- Makefile.orig 2013-03-30 02:31:42.000000000 +0100 ++++ Makefile 2014-01-20 18:16:15.000000000 +0100 +@@ -1,6 +1,8 @@ -prefix = /usr -+prefix = %%PREFIX%% ++prefix = ${PREFIX} --CFLAGS = -g -O2 -+LDFLAGS+=-L%%LOCALBASE%%/lib -lintl -+CFLAGS+=-I%%LOCALBASE%%/include -+ -+CFLAGS += -g -O2 + CFLAGS ?= -g -O2 ++LDFLAGS += -L/usr/local/lib -lintl ++CFLAGS += -I/usr/local/include PERL = perl INSTALL = install -@@ -21,7 +24,7 @@ - endif - - ifdef LOCALEDIR --DEFS += -DLOCALEDIR=\"$(BASEDIR)$(prefix)/share/locale\" -+DEFS += -DLOCALEDIR=\"$(prefix)/share/locale\" - endif - - ifdef HAVE_LIBIDN -@@ -68,19 +71,19 @@ - $(PERL) -w make_tld_serv.pl < tld_serv_list > $@ - - ############################################################################## --install: install-whois install-mkpasswd #install-pos -+install: install-whois install-mkpasswd +@@ -92,15 +94,15 @@ install-whois: whois -- $(INSTALL) -d $(BASEDIR)$(prefix)/bin/ + $(INSTALL) -d $(BASEDIR)$(prefix)/bin/ - $(INSTALL) -d $(BASEDIR)$(prefix)/share/man/man1/ - $(INSTALL) -m 0755 whois $(BASEDIR)$(prefix)/bin/ - $(INSTALL) -m 0644 whois.1 $(BASEDIR)$(prefix)/share/man/man1/ -+ $(INSTALL) -d $(prefix)/bin/ -+ $(INSTALL) -d $(prefix)/man/man1/ -+ $(INSTALL) -m 0755 whois $(prefix)/bin/mwhois -+ $(INSTALL) -m 0644 whois.1 $(prefix)/man/man1/mwhois.1 ++ $(INSTALL) -d $(BASEDIR)$(prefix)/man/man1/ ++ $(INSTALL) -m 0755 whois $(BASEDIR)$(prefix)/bin/mwhois ++ $(INSTALL) -m 0644 whois.1 $(BASEDIR)$(prefix)/man/man1/mwhois.1 install-mkpasswd: mkpasswd -- $(INSTALL) -d $(BASEDIR)$(prefix)/bin/ + $(INSTALL) -d $(BASEDIR)$(prefix)/bin/ - $(INSTALL) -d $(BASEDIR)$(prefix)/share/man/man1/ -- $(INSTALL) -m 0755 mkpasswd $(BASEDIR)$(prefix)/bin/ ++ $(INSTALL) -d $(BASEDIR)$(prefix)/man/man1/ + $(INSTALL) -m 0755 mkpasswd $(BASEDIR)$(prefix)/bin/ - $(INSTALL) -m 0644 mkpasswd.1 $(BASEDIR)$(prefix)/share/man/man1/ -+ $(INSTALL) -d $(prefix)/bin/ -+ $(INSTALL) -d $(prefix)/man/man1/ -+ $(INSTALL) -m 0755 mkpasswd $(prefix)/bin/ -+ $(INSTALL) -m 0644 mkpasswd.1 $(prefix)/man/man1/ ++ $(INSTALL) -m 0644 mkpasswd.1 $(BASEDIR)$(prefix)/man/man1/ install-pos: cd po && $(MAKE) install Copied and modified: head/net/whois/files/patch-po_Makefile (from r340402, head/net/whois/files/patch-ac) ============================================================================== --- head/net/whois/files/patch-ac Mon Jan 20 14:35:09 2014 (r340402, copy source) +++ head/net/whois/files/patch-po_Makefile Wed Jan 22 15:21:59 2014 (r340716) @@ -1,30 +1,26 @@ -*** work/whois-4.6.13/po/Makefile Thu Apr 15 15:58:17 2004 ---- po/Makefile Thu Apr 15 15:58:47 2004 -*************** -*** 7,12 **** ---- 7,14 ---- - - POTFILES=../whois.c ../mkpasswd.c - -+ .SUFFIXES: .po .mo -+ - all: $(PACKAGE).pot $(CATALOGS) - - $(PACKAGE).pot: $(POTFILES) -*************** -*** 31,37 **** - fi; \ - done - -! %.mo: %.po - msgfmt --statistics --check --verbose --output-file=$@ $< - - clean: ---- 33,39 ---- - fi; \ - done - -! .po.mo: - msgfmt --statistics --check --verbose --output-file=$@ $< - - clean: +--- po/Makefile.orig 2013-03-30 02:31:41.000000000 +0100 ++++ po/Makefile 2014-01-20 17:52:17.051238058 +0100 +@@ -1,4 +1,4 @@ +-prefix = /usr ++prefix = ${PREFIX} + + INSTALL= install + +@@ -10,6 +10,8 @@ + + POTFILES=../whois.c ../mkpasswd.c + ++.SUFFIXES: .po .mo ++ + all: $(PACKAGE).pot $(CATALOGS) + + $(PACKAGE).pot: $(POTFILES) +@@ -34,7 +36,7 @@ + fi; \ + done + +-%.mo: %.po ++.po.mo: + msgfmt --statistics --check --verbose --output-file=$@ $< + + clean: Added: head/net/whois/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/whois/pkg-plist Wed Jan 22 15:21:59 2014 (r340716) @@ -0,0 +1,19 @@ +bin/mkpasswd +bin/mwhois +man/man1/mkpasswd.1.gz +man/man1/mwhois.1.gz +%%NLS%%share/locale/cs/LC_MESSAGES/whois.mo +%%NLS%%share/locale/da/LC_MESSAGES/whois.mo +%%NLS%%share/locale/de/LC_MESSAGES/whois.mo +%%NLS%%share/locale/el/LC_MESSAGES/whois.mo +%%NLS%%share/locale/es/LC_MESSAGES/whois.mo +%%NLS%%share/locale/eu/LC_MESSAGES/whois.mo +%%NLS%%share/locale/fi/LC_MESSAGES/whois.mo +%%NLS%%share/locale/fr/LC_MESSAGES/whois.mo +%%NLS%%share/locale/it/LC_MESSAGES/whois.mo +%%NLS%%share/locale/ja/LC_MESSAGES/whois.mo +%%NLS%%share/locale/no/LC_MESSAGES/whois.mo +%%NLS%%share/locale/pl/LC_MESSAGES/whois.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/whois.mo +%%NLS%%share/locale/ru/LC_MESSAGES/whois.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/whois.mo From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 15:30:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B47C8B7D; Wed, 22 Jan 2014 15:30:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E2F91389; Wed, 22 Jan 2014 15:30:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MFUl8I021820; Wed, 22 Jan 2014 15:30:47 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MFUgS2021819; Wed, 22 Jan 2014 15:30:42 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221530.s0MFUgS2021819@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 15:30:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340717 - in head: accessibility/accerciser accessibility/at-poke accessibility/at-spi accessibility/dasher accessibility/eflite accessibility/gnome-mag accessibility/gnome-speech acces... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 15:30:47 -0000 Author: mat Date: Wed Jan 22 15:30:13 2014 New Revision: 340717 URL: http://svnweb.freebsd.org/changeset/ports/340717 QAT: https://qat.redports.org/buildarchive/r340717/ Log: Fixup auto-props for distinfo* With hat: portmgr Sponsored by: Absolight Modified: Directory Properties: head/accessibility/accerciser/distinfo (props changed) head/accessibility/at-poke/distinfo (props changed) head/accessibility/at-spi/distinfo (props changed) head/accessibility/dasher/distinfo (props changed) head/accessibility/eflite/distinfo (props changed) head/accessibility/gnome-mag/distinfo (props changed) head/accessibility/gnome-speech/distinfo (props changed) head/accessibility/gnopernicus/distinfo (props changed) head/accessibility/gok/distinfo (props changed) head/accessibility/java-access-bridge/distinfo (props changed) head/accessibility/linux-f10-atk/distinfo.i386 (props changed) head/accessibility/mousetweaks/distinfo (props changed) head/accessibility/orca/distinfo (props changed) head/accessibility/py-papi/distinfo (props changed) head/accessibility/redshift/distinfo (props changed) head/accessibility/rubygem-atk/distinfo (props changed) head/accessibility/yasr/distinfo (props changed) head/arabic/ae_fonts_mono/distinfo (props changed) head/arabic/ae_fonts_ttf/distinfo (props changed) head/arabic/aspell/distinfo (props changed) head/arabic/kacst_fonts/distinfo (props changed) head/arabic/libitl/distinfo (props changed) head/arabic/libreoffice/distinfo (props changed) head/archivers/9e/distinfo (props changed) head/archivers/amigadepacker/distinfo (props changed) head/archivers/aolserver-nszlib/distinfo (props changed) head/archivers/arc/distinfo (props changed) head/archivers/arj/distinfo (props changed) head/archivers/bicom/distinfo (props changed) head/archivers/bzip/distinfo (props changed) head/archivers/bzip2/distinfo (props changed) head/archivers/cabextract/distinfo (props changed) head/archivers/dact/distinfo (props changed) head/archivers/deco/distinfo (props changed) head/archivers/deutex/distinfo (props changed) head/archivers/dzip/distinfo (props changed) head/archivers/ecm/distinfo (props changed) head/archivers/epkg/distinfo (props changed) head/archivers/fastjar/distinfo (props changed) head/archivers/file-roller/distinfo (props changed) head/archivers/freetar/distinfo (props changed) head/archivers/freeze/distinfo (props changed) head/archivers/gcpio/distinfo (props changed) head/archivers/grzip/distinfo (props changed) head/archivers/gtar/distinfo (props changed) head/archivers/gzip/distinfo (props changed) head/archivers/gzrecover/distinfo (props changed) head/archivers/ha/distinfo (props changed) head/archivers/hffzip/distinfo (props changed) head/archivers/hpack.non-usa.only/distinfo (props changed) head/archivers/hs-tar/distinfo (props changed) head/archivers/hs-zip-archive/distinfo (props changed) head/archivers/hs-zlib-bindings/distinfo (props changed) head/archivers/hs-zlib-conduit/distinfo (props changed) head/archivers/hs-zlib-enum/distinfo (props changed) head/archivers/hs-zlib/distinfo (props changed) head/archivers/javatar/distinfo (props changed) head/archivers/jzip.org/distinfo (props changed) head/archivers/kzip/distinfo (props changed) head/archivers/laszip/distinfo (props changed) head/archivers/lbrate/distinfo (props changed) head/archivers/lbzip2/distinfo (props changed) head/archivers/lcab/distinfo (props changed) head/archivers/lha-ac/distinfo (props changed) head/archivers/lha/distinfo (props changed) head/archivers/libarc/distinfo (props changed) head/archivers/libarchive/distinfo (props changed) head/archivers/libcabinet/distinfo (props changed) head/archivers/libcomprex/distinfo (props changed) head/archivers/libdynamite/distinfo (props changed) head/archivers/liblzxcomp/distinfo (props changed) head/archivers/libmspack/distinfo (props changed) head/archivers/liborange/distinfo (props changed) head/archivers/libpar2/distinfo (props changed) head/archivers/libunrar/distinfo (props changed) head/archivers/libunrar4/distinfo (props changed) head/archivers/linux-f10-ucl/distinfo.i386 (props changed) head/archivers/linux-f10-upx/distinfo.i386 (props changed) head/archivers/lrzip/distinfo (props changed) head/archivers/lz4/distinfo (props changed) head/archivers/lzip/distinfo (props changed) head/archivers/lzlib/distinfo (props changed) head/archivers/lzma/distinfo (props changed) head/archivers/lzmalib/distinfo (props changed) head/archivers/lzo2/distinfo (props changed) head/archivers/lzop/distinfo (props changed) head/archivers/macutils/distinfo (props changed) head/archivers/makeself/distinfo (props changed) head/archivers/mar/distinfo (props changed) head/archivers/mate-file-archiver/distinfo (props changed) head/archivers/mscompress/distinfo (props changed) head/archivers/mtf/distinfo (props changed) head/archivers/nomarch/distinfo (props changed) head/archivers/nulib/distinfo (props changed) head/archivers/nwreckdum/distinfo (props changed) head/archivers/ocaml-bz2/distinfo (props changed) head/archivers/ocaml-zip/distinfo (props changed) head/archivers/p5-Archive-Any-Plugin-Rar/distinfo (props changed) head/archivers/p5-Archive-Any/distinfo (props changed) head/archivers/p5-Archive-Extract-Libarchive/distinfo (props changed) head/archivers/p5-Archive-Peek/distinfo (props changed) head/archivers/p5-Archive-Rar/distinfo (props changed) head/archivers/p5-Archive-SimpleExtractor/distinfo (props changed) head/archivers/p5-Compress-Bzip2/distinfo (props changed) head/archivers/p5-Compress-LZO/distinfo (props changed) head/archivers/p5-IO-Zlib/distinfo (props changed) head/archivers/p5-Mac-Macbinary/distinfo (props changed) head/archivers/p5-POE-Filter-Bzip2/distinfo (props changed) head/archivers/p5-POE-Filter-LZF/distinfo (props changed) head/archivers/p5-POE-Filter-LZO/distinfo (props changed) head/archivers/p5-POE-Filter-LZW/distinfo (props changed) head/archivers/p5-POE-Filter-Zlib/distinfo (props changed) head/archivers/p5-PerlIO-gzip/distinfo (props changed) head/archivers/p5-PerlIO-via-Bzip2/distinfo (props changed) head/archivers/p7zip/distinfo (props changed) head/archivers/packddir/distinfo (props changed) head/archivers/par/distinfo (props changed) head/archivers/par2cmdline-tbb/distinfo (props changed) head/archivers/par2cmdline/distinfo (props changed) head/archivers/parchive/distinfo (props changed) head/archivers/pbzip2/distinfo (props changed) head/archivers/pear-File_Archive/distinfo (props changed) head/archivers/pear-Horde_Compress/distinfo (props changed) head/archivers/pear-Horde_Compress_Fast/distinfo (props changed) head/archivers/pear-PHP_Archiv/distinfo (props changed) head/archivers/pecl-phk/distinfo (props changed) head/archivers/php-horde_lz4/distinfo (props changed) head/archivers/pigz/distinfo (props changed) head/archivers/pixz/distinfo (props changed) head/archivers/plzip/distinfo (props changed) head/archivers/ppmd-7z/distinfo (props changed) head/archivers/ppmd/distinfo (props changed) head/archivers/ppunpack/distinfo (props changed) head/archivers/pxz/distinfo (props changed) head/archivers/py-liblzma/distinfo (props changed) head/archivers/py-lzma/distinfo (props changed) head/archivers/qpress/distinfo (props changed) head/archivers/quazip/distinfo (props changed) head/archivers/rar/distinfo (props changed) head/archivers/rox-archive/distinfo (props changed) head/archivers/rpm/distinfo (props changed) head/archivers/rpm4/distinfo (props changed) head/archivers/rpm5/distinfo (props changed) head/archivers/ruby-lha/distinfo (props changed) head/archivers/ruby-libarchive/distinfo (props changed) head/archivers/ruby-zip/distinfo (props changed) head/archivers/rubygem-archive-tar-minitar/distinfo (props changed) head/archivers/rubygem-archive-zip/distinfo (props changed) head/archivers/rubygem-bzip2/distinfo (props changed) head/archivers/rubygem-rubyzip2/distinfo (props changed) head/archivers/rvm/distinfo (props changed) head/archivers/rzip/distinfo (props changed) head/archivers/sectar/distinfo (props changed) head/archivers/snappy-java/distinfo (props changed) head/archivers/snappy/distinfo (props changed) head/archivers/squeeze/distinfo (props changed) head/archivers/squsq/distinfo (props changed) head/archivers/star/distinfo (props changed) head/archivers/stuffit/distinfo (props changed) head/archivers/szip/distinfo (props changed) head/archivers/tardy/distinfo (props changed) head/archivers/tclmkziplib/distinfo (props changed) head/archivers/torrentzip/distinfo (props changed) head/archivers/ucl/distinfo (props changed) head/archivers/unace/distinfo (props changed) head/archivers/unadf/distinfo (props changed) head/archivers/unalz/distinfo (props changed) head/archivers/unarj/distinfo (props changed) head/archivers/undms/distinfo (props changed) head/archivers/unfoo/distinfo (props changed) head/archivers/unlzx/distinfo (props changed) head/archivers/unmass/distinfo (props changed) head/archivers/unshield/distinfo (props changed) head/archivers/untar/distinfo (props changed) head/archivers/unzip/distinfo (props changed) head/archivers/unzoo/distinfo (props changed) head/archivers/upx/distinfo (props changed) head/archivers/wzip/distinfo (props changed) head/archivers/xar/distinfo (props changed) head/archivers/xarchive/distinfo (props changed) head/archivers/xarchiver/distinfo (props changed) head/archivers/xdms/distinfo (props changed) head/archivers/xmill/distinfo (props changed) head/archivers/xpk/distinfo (props changed) head/archivers/zip/distinfo (props changed) head/archivers/zipmix/distinfo (props changed) head/archivers/zoo/distinfo (props changed) head/archivers/zutils/distinfo (props changed) head/astro/R-cran-maptools/distinfo (props changed) head/astro/aa/distinfo (props changed) head/astro/accrete/distinfo (props changed) head/astro/astrometry/distinfo (props changed) head/astro/celestia/distinfo (props changed) head/astro/dgpsip/distinfo (props changed) head/astro/ephem/distinfo (props changed) head/astro/fowsr/distinfo (props changed) head/astro/foxtrotgps/distinfo (props changed) head/astro/gkrellmoon2/distinfo (props changed) head/astro/glunarclock/distinfo (props changed) head/astro/gmapcatcher/distinfo (props changed) head/astro/gpsd/distinfo (props changed) head/astro/gpsdrive/distinfo (props changed) head/astro/gpsman/distinfo (props changed) head/astro/gpsprune/distinfo (props changed) head/astro/gpstk/distinfo (props changed) head/astro/gpxloggerd/distinfo (props changed) head/astro/jday/distinfo (props changed) head/astro/josm/distinfo (props changed) head/astro/libgal/distinfo (props changed) head/astro/libnova/distinfo (props changed) head/astro/libroadnav/distinfo (props changed) head/astro/luna/distinfo (props changed) head/astro/match/distinfo (props changed) head/astro/merkaartor/distinfo (props changed) head/astro/mkgmap-splitter/distinfo (props changed) head/astro/mkgmap/distinfo (props changed) head/astro/mymoon/distinfo (props changed) head/astro/nightfall/distinfo (props changed) head/astro/openmap/distinfo (props changed) head/astro/openuniverse/distinfo (props changed) head/astro/osmosis/distinfo (props changed) head/astro/p5-Astro-Constants/distinfo (props changed) head/astro/p5-Astro-DSS/distinfo (props changed) head/astro/p5-Astro-FITS-CFITSIO/distinfo (props changed) head/astro/p5-Astro-FITS-Header/distinfo (props changed) head/astro/p5-Astro-Flux/distinfo (props changed) head/astro/p5-Astro-Hipparcos/distinfo (props changed) head/astro/p5-Astro-MoonPhase/distinfo (props changed) head/astro/p5-Astro-PAL/distinfo (props changed) head/astro/p5-Astro-SIMBAD/distinfo (props changed) head/astro/p5-Astro-SunTime/distinfo (props changed) head/astro/p5-Astro-Sunrise/distinfo (props changed) head/astro/p5-Astro-Telescope/distinfo (props changed) head/astro/p5-Astro-WaveBand/distinfo (props changed) head/astro/p5-Astro/distinfo (props changed) head/astro/p5-GPS-Babel/distinfo (props changed) head/astro/p5-GPS-OID/distinfo (props changed) head/astro/p5-GPS/distinfo (props changed) head/astro/p5-Geo-METAR/distinfo (props changed) head/astro/p5-Misc-Quality/distinfo (props changed) head/astro/p5-Weather-Underground/distinfo (props changed) head/astro/p5-ZConf-Weather/distinfo (props changed) head/astro/phoon/distinfo (props changed) head/astro/planets/distinfo (props changed) head/astro/pp3/distinfo (props changed) head/astro/ptiger/distinfo (props changed) head/astro/py-RO/distinfo (props changed) head/astro/py-aipy/distinfo (props changed) head/astro/py-astLib/distinfo (props changed) head/astro/py-pyfits/distinfo (props changed) head/astro/pyephem/distinfo (props changed) head/astro/pyweather/distinfo (props changed) head/astro/rmap/distinfo (props changed) head/astro/roadmap/distinfo (props changed) head/astro/roadnav/distinfo (props changed) head/astro/saoimage/distinfo (props changed) head/astro/sextractor/distinfo (props changed) head/astro/sky2000/distinfo (props changed) head/astro/sscalc/distinfo (props changed) head/astro/stardates/distinfo (props changed) head/astro/starplot/distinfo (props changed) head/astro/stars/distinfo (props changed) head/astro/stellarium/distinfo (props changed) head/astro/tclgeomap/distinfo (props changed) head/astro/tkgeomap/distinfo (props changed) head/astro/wcslib/distinfo (props changed) head/astro/weather/distinfo (props changed) head/astro/weatherspect/distinfo (props changed) head/astro/wmglobe/distinfo (props changed) head/astro/wmjupiter/distinfo (props changed) head/astro/wmmoonclock/distinfo (props changed) head/astro/wmsolar/distinfo (props changed) head/astro/wmspaceweather/distinfo (props changed) head/astro/wmsun/distinfo (props changed) head/astro/xeartk/distinfo (props changed) head/astro/xephem/distinfo (props changed) head/astro/xglobe/distinfo (props changed) head/astro/xmoontool/distinfo (props changed) head/astro/xphoon/distinfo (props changed) head/astro/xplanet/distinfo (props changed) head/astro/xtide/distinfo (props changed) head/astro/xworld/distinfo (props changed) head/audio/HVSC-Update/distinfo (props changed) head/audio/Maaate/distinfo (props changed) head/audio/aacgain/distinfo (props changed) head/audio/aacplusenc/distinfo (props changed) head/audio/abcde/distinfo (props changed) head/audio/abcmidi/distinfo (props changed) head/audio/abcselect/distinfo (props changed) head/audio/adplay/distinfo (props changed) head/audio/afsp/distinfo (props changed) head/audio/aften/distinfo (props changed) head/audio/alac/distinfo (props changed) head/audio/alienwah/distinfo (props changed) head/audio/alure/distinfo (props changed) head/audio/amb-plugins/distinfo (props changed) head/audio/amp/distinfo (props changed) head/audio/ampache/distinfo (props changed) head/audio/ample/distinfo (props changed) head/audio/amrcoder/distinfo (props changed) head/audio/aqualung/distinfo (props changed) head/audio/ardour/distinfo (props changed) head/audio/ario/distinfo (props changed) head/audio/arss/distinfo (props changed) head/audio/ascd/distinfo (props changed) head/audio/asmix/distinfo (props changed) head/audio/asmixer/distinfo (props changed) head/audio/aubio/distinfo (props changed) head/audio/audacity/distinfo (props changed) head/audio/audex/distinfo (props changed) head/audio/audiere/distinfo (props changed) head/audio/audiotag/distinfo (props changed) head/audio/aumix/distinfo (props changed) head/audio/aureal-kmod/distinfo (props changed) head/audio/autocd/distinfo (props changed) head/audio/autotalent/distinfo (props changed) head/audio/autozen/distinfo (props changed) head/audio/baresip/distinfo (props changed) head/audio/baudline/distinfo (props changed) head/audio/bebocd/distinfo (props changed) head/audio/beep/distinfo (props changed) head/audio/blop/distinfo (props changed) head/audio/bmp-fc/distinfo (props changed) head/audio/bmp-flac/distinfo (props changed) head/audio/bmp-htmlplaylist/distinfo (props changed) head/audio/bmp-mac/distinfo (props changed) head/audio/bmp-modplug/distinfo (props changed) head/audio/bmp-songchange/distinfo (props changed) head/audio/bmp-wma/distinfo (props changed) head/audio/bonk/distinfo (props changed) head/audio/boodler/distinfo (props changed) head/audio/bristol/distinfo (props changed) head/audio/btc/distinfo (props changed) head/audio/cam/distinfo (props changed) head/audio/cantus_3/distinfo (props changed) head/audio/caps-plugins/distinfo (props changed) head/audio/ccaudio2/distinfo (props changed) head/audio/cd-console/distinfo (props changed) head/audio/cd-discid/distinfo (props changed) head/audio/cd2mp3/distinfo (props changed) head/audio/cddb-bundle/distinfo (props changed) head/audio/cdparanoia/distinfo (props changed) head/audio/cdplay/distinfo (props changed) head/audio/celt/distinfo (props changed) head/audio/checkmate/distinfo (props changed) head/audio/chordpack/distinfo (props changed) head/audio/clunk/distinfo (props changed) head/audio/cmp3/distinfo (props changed) head/audio/cmt/distinfo (props changed) head/audio/cmus-post.fm/distinfo (props changed) head/audio/cowbell/distinfo (props changed) head/audio/cpige/distinfo (props changed) head/audio/cplay/distinfo (props changed) head/audio/crip/distinfo (props changed) head/audio/cripple/distinfo (props changed) head/audio/ctronome/distinfo (props changed) head/audio/cuberok/distinfo (props changed) head/audio/cue2toc/distinfo (props changed) head/audio/cueplayer/distinfo (props changed) head/audio/cuetools/distinfo (props changed) head/audio/cutmp3/distinfo (props changed) head/audio/cymbaline/distinfo (props changed) head/audio/dagrab/distinfo (props changed) head/audio/dcd/distinfo (props changed) head/audio/deadbeef-mpris-plugin/distinfo (props changed) head/audio/deadbeef/distinfo (props changed) head/audio/decibel-audio-player/distinfo (props changed) head/audio/dekagen/distinfo (props changed) head/audio/dir2ogg/distinfo (props changed) head/audio/discid/distinfo (props changed) head/audio/drumpiler/distinfo (props changed) head/audio/dssi/distinfo (props changed) head/audio/dtmfdial/distinfo (props changed) head/audio/dumb/distinfo (props changed) head/audio/dvda-author/distinfo (props changed) head/audio/easytag/distinfo (props changed) head/audio/eawpats/distinfo (props changed) head/audio/eawplus/distinfo (props changed) head/audio/emms/distinfo (props changed) head/audio/emu10kx/distinfo (props changed) head/audio/enscribe/distinfo (props changed) head/audio/epos-devel/distinfo (props changed) head/audio/esound/distinfo (props changed) head/audio/espeak/distinfo (props changed) head/audio/esperanza/distinfo (props changed) head/audio/etcd/distinfo (props changed) head/audio/etktab/distinfo (props changed) head/audio/exaile/distinfo (props changed) head/audio/extace/distinfo (props changed) head/audio/ezstream/distinfo (props changed) head/audio/faac/distinfo (props changed) head/audio/faad/distinfo (props changed) head/audio/fapg/distinfo (props changed) head/audio/fcplay/distinfo (props changed) head/audio/fdmf/distinfo (props changed) head/audio/festalon/distinfo (props changed) head/audio/festdoc/distinfo (props changed) head/audio/festival-freebsoft-utils/distinfo (props changed) head/audio/festlex-cmu/distinfo (props changed) head/audio/festlex-czech/distinfo (props changed) head/audio/festlex-oald/distinfo (props changed) head/audio/festlex-ogi/distinfo (props changed) head/audio/festlex-poslex/distinfo (props changed) head/audio/festvox-czech/distinfo (props changed) head/audio/festvox-don/distinfo (props changed) head/audio/festvox-el11/distinfo (props changed) head/audio/festvox-kal16/distinfo (props changed) head/audio/festvox-kal8/distinfo (props changed) head/audio/festvox-ked16/distinfo (props changed) head/audio/festvox-ked8/distinfo (props changed) head/audio/festvox-rab16/distinfo (props changed) head/audio/festvox-rab8/distinfo (props changed) head/audio/festvox-russian/distinfo (props changed) head/audio/festvox-us1-mbrola/distinfo (props changed) head/audio/festvox-us2-mbrola/distinfo (props changed) head/audio/festvox-us3-mbrola/distinfo (props changed) head/audio/firefly/distinfo (props changed) head/audio/flac123/distinfo (props changed) head/audio/flite/distinfo (props changed) head/audio/fluidsynth-dssi/distinfo (props changed) head/audio/fmio/distinfo (props changed) head/audio/fmit/distinfo (props changed) head/audio/freealut/distinfo (props changed) head/audio/freedesktop-sound-theme/distinfo (props changed) head/audio/freepats/distinfo (props changed) head/audio/freeswitch-music/distinfo (props changed) head/audio/funktrackergold/distinfo (props changed) head/audio/gbemol/distinfo (props changed) head/audio/gbsplay/distinfo (props changed) head/audio/gervill/distinfo (props changed) head/audio/ghostess/distinfo (props changed) head/audio/gigedit/distinfo (props changed) head/audio/gimmix/distinfo (props changed) head/audio/gkrellmms/distinfo (props changed) head/audio/gkrellmms2/distinfo (props changed) head/audio/gkrellmss2/distinfo (props changed) head/audio/gkrellmvolume/distinfo (props changed) head/audio/gkrellmvolume2/distinfo (props changed) head/audio/glame/distinfo (props changed) head/audio/glurp/distinfo (props changed) head/audio/gmidimonitor/distinfo (props changed) head/audio/gmixer/distinfo (props changed) head/audio/gmpc-alarm/distinfo (props changed) head/audio/gmpc-albumview/distinfo (props changed) head/audio/gmpc-discogs/distinfo (props changed) head/audio/gmpc-extraplaylist/distinfo (props changed) head/audio/gmpc-lastfm/distinfo (props changed) head/audio/gmpc-libnotify/distinfo (props changed) head/audio/gmpc-lyrics/distinfo (props changed) head/audio/gmpc-lyricsplugin/distinfo (props changed) head/audio/gmpc-lyricwiki/distinfo (props changed) head/audio/gmpc-magnatune/distinfo (props changed) head/audio/gmpc-mdcover/distinfo (props changed) head/audio/gmpc-mserver/distinfo (props changed) head/audio/gmpc-shout/distinfo (props changed) head/audio/gmpc-wikipedia/distinfo (props changed) head/audio/gmpc/distinfo (props changed) head/audio/gmtp/distinfo (props changed) head/audio/gnome-audio/distinfo (props changed) head/audio/gnome-media/distinfo (props changed) head/audio/gnomoradio/distinfo (props changed) head/audio/gnormalize/distinfo (props changed) head/audio/gnuitar/distinfo (props changed) head/audio/gnupod/distinfo (props changed) head/audio/gnustep-cdplayer/distinfo (props changed) head/audio/gogglesmm/distinfo (props changed) head/audio/goobox/distinfo (props changed) head/audio/gqmpeg/distinfo (props changed) head/audio/gqradio/distinfo (props changed) head/audio/gramofile/distinfo (props changed) head/audio/grip/distinfo (props changed) head/audio/gsi/distinfo (props changed) head/audio/gsm/distinfo (props changed) head/audio/gspeakers/distinfo (props changed) head/audio/gstreamer-plugins-fluendo-mp3/distinfo (props changed) head/audio/gstreamer-plugins-moodbar/distinfo (props changed) head/audio/gtkguitune/distinfo (props changed) head/audio/gtkpod/distinfo (props changed) head/audio/guspat/distinfo (props changed) head/audio/gvolwheel/distinfo (props changed) head/audio/gxmms2/distinfo (props changed) head/audio/harp/distinfo (props changed) head/audio/hawkvoice/distinfo (props changed) head/audio/herrie/distinfo (props changed) head/audio/hexter/distinfo (props changed) head/audio/hs-ALUT/distinfo (props changed) head/audio/hs-OpenAL/distinfo (props changed) head/audio/hs-libmpd/distinfo (props changed) head/audio/hydrogen/distinfo (props changed) head/audio/icegenerator/distinfo (props changed) head/audio/ices/distinfo (props changed) head/audio/id3ed/distinfo (props changed) head/audio/id3el/distinfo (props changed) head/audio/id3lib/distinfo (props changed) head/audio/id3mtag/distinfo (props changed) head/audio/id3ren/distinfo (props changed) head/audio/id3tool/distinfo (props changed) head/audio/id3v2/distinfo (props changed) head/audio/ipod-sharp/distinfo (props changed) head/audio/istream/distinfo (props changed) head/audio/jack-keyboard/distinfo (props changed) head/audio/jack-rack/distinfo (props changed) head/audio/jack-smf-utils/distinfo (props changed) head/audio/jack/distinfo (props changed) head/audio/jack_ghero/distinfo (props changed) head/audio/jack_mixer/distinfo (props changed) head/audio/jack_umidi/distinfo (props changed) head/audio/jamin/distinfo (props changed) head/audio/jid3lib/distinfo (props changed) head/audio/jokosher/distinfo (props changed) head/audio/juke/distinfo (props changed) head/audio/julius/distinfo (props changed) head/audio/jxm/distinfo (props changed) head/audio/kaudiocreator/distinfo (props changed) head/audio/kexis/distinfo (props changed) head/audio/ksmp3play/distinfo (props changed) head/audio/kstreamripper/distinfo (props changed) head/audio/ladspa/distinfo (props changed) head/audio/lame/distinfo (props changed) head/audio/lash/distinfo (props changed) head/audio/last-cmus/distinfo (props changed) head/audio/last.fm/distinfo (props changed) head/audio/lastfm-desktop/distinfo (props changed) head/audio/liba52/distinfo (props changed) head/audio/libaacplus/distinfo (props changed) head/audio/libadplug/distinfo (props changed) head/audio/libaiff/distinfo (props changed) head/audio/libao/distinfo (props changed) head/audio/libaudiofile/distinfo (props changed) head/audio/libbpm/distinfo (props changed) head/audio/libbs2b/distinfo (props changed) head/audio/libcanberra/distinfo (props changed) head/audio/libcdaudio/distinfo (props changed) head/audio/libcddb-doc/distinfo (props changed) head/audio/libcddb/distinfo (props changed) head/audio/libconvolve/distinfo (props changed) head/audio/libdssialsacompat/distinfo (props changed) head/audio/libfishsound/distinfo (props changed) head/audio/libgig/distinfo (props changed) head/audio/libgme/distinfo (props changed) head/audio/libid3tag/distinfo (props changed) head/audio/liblo/distinfo (props changed) head/audio/liblscp/distinfo (props changed) head/audio/libmad/distinfo (props changed) head/audio/libmikmod/distinfo (props changed) head/audio/libmodplug/distinfo (props changed) head/audio/libmp3-archive-perl/distinfo (props changed) head/audio/libmpd/distinfo (props changed) head/audio/libmpdclient/distinfo (props changed) head/audio/libmusicbrainz3/distinfo (props changed) head/audio/libmusicbrainz4/distinfo (props changed) head/audio/libmusicbrainz5/distinfo (props changed) head/audio/libnjb/distinfo (props changed) head/audio/libnoise/distinfo (props changed) head/audio/libofa/distinfo (props changed) head/audio/libogg/distinfo (props changed) head/audio/liboggz/distinfo (props changed) head/audio/libopenspc/distinfo (props changed) head/audio/libsamplerate/distinfo (props changed) head/audio/libshairport/distinfo (props changed) head/audio/libshout/distinfo (props changed) head/audio/libshout2/distinfo (props changed) head/audio/libsidplay/distinfo (props changed) head/audio/libsidplay2/distinfo (props changed) head/audio/libsmf/distinfo (props changed) head/audio/libsndfile/distinfo (props changed) head/audio/libtremor/distinfo (props changed) head/audio/libvorbis/distinfo (props changed) head/audio/libworkman/distinfo (props changed) head/audio/libxmp/distinfo (props changed) head/audio/lingot/distinfo (props changed) head/audio/linux-f10-alsa-lib/distinfo.i386 (props changed) head/audio/linux-f10-alsa-plugins-oss/distinfo.i386 (props changed) head/audio/linux-f10-arts/distinfo.i386 (props changed) head/audio/linux-f10-esound/distinfo.i386 (props changed) head/audio/linux-f10-freealut/distinfo.i386 (props changed) head/audio/linux-f10-libaudiofile/distinfo.i386 (props changed) head/audio/linux-f10-libogg/distinfo.i386 (props changed) head/audio/linux-f10-libvorbis/distinfo.i386 (props changed) head/audio/linux-f10-mikmod/distinfo.i386 (props changed) head/audio/linux-f10-nas-libs/distinfo.i386 (props changed) head/audio/linux-f10-openal-soft/distinfo.i386 (props changed) head/audio/linux-f10-openal/distinfo.i386 (props changed) head/audio/linux-f10-pulseaudio-libs/distinfo.i386 (props changed) head/audio/linux-f10-sdl_mixer/distinfo.i386 (props changed) head/audio/linux-fmodapi/distinfo (props changed) head/audio/linux-genpuid/distinfo (props changed) head/audio/linux-laudio/distinfo (props changed) head/audio/linux-mbrola/distinfo (props changed) head/audio/linux-musicipserver/distinfo (props changed) head/audio/linux-neroaaccodec/distinfo (props changed) head/audio/linuxsampler/distinfo (props changed) head/audio/liquidsoap/distinfo (props changed) head/audio/listener/distinfo (props changed) head/audio/lpac/distinfo (props changed) head/audio/lv2core/distinfo (props changed) head/audio/mac/distinfo (props changed) head/audio/madfufw/distinfo (props changed) head/audio/madplay/distinfo (props changed) head/audio/malint/distinfo (props changed) head/audio/mangler/distinfo (props changed) head/audio/maplay/distinfo (props changed) head/audio/mate-media/distinfo (props changed) head/audio/mbox/distinfo (props changed) head/audio/mcplay/distinfo (props changed) head/audio/mctoolame-decoder/distinfo (props changed) head/audio/mctoolame-encoder/distinfo (props changed) head/audio/mehdiaplayer/distinfo (props changed) head/audio/mhwaveedit/distinfo (props changed) head/audio/mikmod/distinfo (props changed) head/audio/milkytracker/distinfo (props changed) head/audio/minitunes/distinfo (props changed) head/audio/mixer.app/distinfo (props changed) head/audio/mixmos/distinfo (props changed) head/audio/mma/distinfo (props changed) head/audio/moc/distinfo (props changed) head/audio/modplugplay/distinfo (props changed) head/audio/mous/distinfo (props changed) head/audio/mp-player/distinfo (props changed) head/audio/mp3-archive-tools/distinfo (props changed) head/audio/mp32ogg/distinfo (props changed) head/audio/mp3_check/distinfo (props changed) head/audio/mp3asm/distinfo (props changed) head/audio/mp3blaster/distinfo (props changed) head/audio/mp3burn/distinfo (props changed) head/audio/mp3c/distinfo (props changed) head/audio/mp3check/distinfo (props changed) head/audio/mp3ck/distinfo (props changed) head/audio/mp3gain/distinfo (props changed) head/audio/mp3guessenc/distinfo (props changed) head/audio/mp3info/distinfo (props changed) head/audio/mp3lint/distinfo (props changed) head/audio/mp3mover/distinfo (props changed) head/audio/mp3plot/distinfo (props changed) head/audio/mp3rename/distinfo (props changed) head/audio/mp3riot/distinfo (props changed) head/audio/mp3splt-gtk/distinfo (props changed) head/audio/mp3stat/distinfo (props changed) head/audio/mp3unicode/distinfo (props changed) head/audio/mp3val/distinfo (props changed) head/audio/mp3wrap/distinfo (props changed) head/audio/mpdas/distinfo (props changed) head/audio/mpdbrowser/distinfo (props changed) head/audio/mpdcon/distinfo (props changed) head/audio/mpdscribble/distinfo (props changed) head/audio/mpg123.el/distinfo (props changed) head/audio/mpg123/distinfo (props changed) head/audio/mpg321/distinfo (props changed) head/audio/mpiosh/distinfo (props changed) head/audio/muine/distinfo (props changed) head/audio/muse/distinfo (props changed) head/audio/musepack/distinfo (props changed) head/audio/musica/distinfo (props changed) head/audio/musicbox-tag-editor/distinfo (props changed) head/audio/musiccontrol/distinfo (props changed) head/audio/musicpc/distinfo (props changed) head/audio/musicpd/distinfo (props changed) head/audio/napster/distinfo (props changed) head/audio/nas/distinfo (props changed) head/audio/ncmpc/distinfo (props changed) head/audio/ncmpcpp/distinfo (props changed) head/audio/normalize/distinfo (props changed) head/audio/nosefart/distinfo (props changed) head/audio/nspmod/distinfo (props changed) head/audio/ocp/distinfo (props changed) head/audio/ogg2mp3/distinfo (props changed) head/audio/oggsplit/distinfo (props changed) head/audio/openal-soft/distinfo (props changed) head/audio/openal/distinfo (props changed) head/audio/opencore-amr/distinfo (props changed) head/audio/openspc/distinfo (props changed) head/audio/optimfrog/distinfo (props changed) head/audio/osalp/distinfo (props changed) head/audio/osd-lyrics/distinfo (props changed) head/audio/osdmixer/distinfo (props changed) head/audio/oss/distinfo (props changed) head/audio/p5-Audio-Beep/distinfo (props changed) head/audio/p5-Audio-CD/distinfo (props changed) head/audio/p5-Audio-Ecasound/distinfo (props changed) head/audio/p5-Audio-FLAC-Header/distinfo (props changed) head/audio/p5-Audio-MPD-Common/distinfo (props changed) head/audio/p5-Audio-MPD/distinfo (props changed) head/audio/p5-Audio-Mixer/distinfo (props changed) head/audio/p5-Audio-Musepack/distinfo (props changed) head/audio/p5-Audio-Scan/distinfo (props changed) head/audio/p5-Audio-Scrobbler/distinfo (props changed) head/audio/p5-Audio-WMA/distinfo (props changed) head/audio/p5-Audio-Wav/distinfo (props changed) head/audio/p5-Audio/distinfo (props changed) head/audio/p5-CDDB-File/distinfo (props changed) head/audio/p5-CDDB_get/distinfo (props changed) head/audio/p5-Filesys-Virtual-DAAP/distinfo (props changed) head/audio/p5-MIDI/distinfo (props changed) head/audio/p5-MP3-Find/distinfo (props changed) head/audio/p5-MP3-ID3v1Tag/distinfo (props changed) head/audio/p5-MP3-Info/distinfo (props changed) head/audio/p5-MP3-Tag/distinfo (props changed) head/audio/p5-MPEG-ID3v2Tag/distinfo (props changed) head/audio/p5-Music-Audioscrobbler-MPD/distinfo (props changed) head/audio/p5-Music-Audioscrobbler-Submit/distinfo (props changed) head/audio/p5-MusicBrainz-DiscID/distinfo (props changed) head/audio/p5-Net-DAAP-Client/distinfo (props changed) head/audio/p5-Net-DAAP-DMAP/distinfo (props changed) head/audio/p5-Net-FreeDB/distinfo (props changed) head/audio/p5-Net-LibLO/distinfo (props changed) head/audio/p5-Ogg-Vorbis-Header-PurePerl/distinfo (props changed) head/audio/p5-Ogg-Vorbis-Header/distinfo (props changed) head/audio/p5-Shout/distinfo (props changed) head/audio/p5-Test-Corpus-Audio-MPD/distinfo (props changed) head/audio/p5-Xmms/distinfo (props changed) head/audio/p5-libvorbis/distinfo (props changed) head/audio/p5-tagged/distinfo (props changed) head/audio/pacpl/distinfo (props changed) head/audio/padevchooser/distinfo (props changed) head/audio/paman/distinfo (props changed) head/audio/paprefs/distinfo (props changed) head/audio/patchage/distinfo (props changed) head/audio/pavucontrol/distinfo (props changed) head/audio/pavumeter/distinfo (props changed) head/audio/pear-Text_Spell_Audio/distinfo (props changed) head/audio/pecl-id3/distinfo (props changed) head/audio/penguinsap/distinfo (props changed) head/audio/pidgin-musictracker/distinfo (props changed) head/audio/pithos/distinfo (props changed) head/audio/play/distinfo (props changed) head/audio/playgsf/distinfo (props changed) head/audio/playmidi/distinfo (props changed) head/audio/pm3umpdl/distinfo (props changed) head/audio/pms/distinfo (props changed) head/audio/pocketsphinx/distinfo (props changed) head/audio/portaudio/distinfo (props changed) head/audio/portaudio2/distinfo (props changed) head/audio/pulseaudio/distinfo (props changed) head/audio/pure-audio/distinfo (props changed) head/audio/py-al/distinfo (props changed) head/audio/py-ao/distinfo (props changed) head/audio/py-apetag/distinfo (props changed) head/audio/py-cddb/distinfo (props changed) head/audio/py-discogs-client/distinfo (props changed) head/audio/py-eyed3/distinfo (props changed) head/audio/py-fastaudio/distinfo (props changed) head/audio/py-id3/distinfo (props changed) head/audio/py-karaoke/distinfo (props changed) head/audio/py-mpd/distinfo (props changed) head/audio/py-musicbrainz2/distinfo (props changed) head/audio/py-ogg/distinfo (props changed) head/audio/py-openal/distinfo (props changed) head/audio/py-pyaudio/distinfo (props changed) head/audio/py-pylast/distinfo (props changed) head/audio/py-pyliblo/distinfo (props changed) head/audio/py-shout/distinfo (props changed) head/audio/py-speex/distinfo (props changed) head/audio/py-vorbis/distinfo (props changed) head/audio/py-xmms/distinfo (props changed) head/audio/pysol-sound-server/distinfo (props changed) head/audio/pytone/distinfo (props changed) head/audio/qmpdclient/distinfo (props changed) head/audio/qsampler/distinfo (props changed) head/audio/raop_play/distinfo (props changed) head/audio/raproxy/distinfo (props changed) head/audio/raul/distinfo (props changed) head/audio/rawrec/distinfo (props changed) head/audio/re/distinfo (props changed) head/audio/rebot3/distinfo (props changed) head/audio/rem/distinfo (props changed) head/audio/resid/distinfo (props changed) head/audio/rexima/distinfo (props changed) head/audio/rezound/distinfo (props changed) head/audio/rhythmbox/distinfo (props changed) head/audio/rio500/distinfo (props changed) head/audio/rioutil/distinfo (props changed) head/audio/ripit/distinfo (props changed) head/audio/ripperx/distinfo (props changed) head/audio/rplay/distinfo (props changed) head/audio/rsynth/distinfo (props changed) head/audio/rubberband/distinfo (props changed) head/audio/ruby-audiofile/distinfo (props changed) head/audio/ruby-esound/distinfo (props changed) head/audio/ruby-freedb/distinfo (props changed) head/audio/ruby-mp3info/distinfo (props changed) head/audio/ruby-mp3tag/distinfo (props changed) head/audio/ruby-smf/distinfo (props changed) head/audio/ruby-taglib/distinfo (props changed) head/audio/rubygem-librmpd/distinfo (props changed) head/audio/rubyripper/distinfo (props changed) head/audio/s3mod/distinfo (props changed) head/audio/sbagen/distinfo (props changed) head/audio/schism/distinfo (props changed) head/audio/scmpc/distinfo (props changed) head/audio/scrobbler/distinfo (props changed) head/audio/sdl_mixer/distinfo (props changed) head/audio/sdl_sound/distinfo (props changed) head/audio/sfront/distinfo (props changed) head/audio/shairport/distinfo (props changed) head/audio/shntool/distinfo (props changed) head/audio/shorten/distinfo (props changed) head/audio/shout/distinfo (props changed) head/audio/shoutcast/distinfo (props changed) head/audio/sidplay/distinfo (props changed) head/audio/sidplay2/distinfo (props changed) head/audio/sidplayer/distinfo (props changed) head/audio/simplemod/distinfo (props changed) head/audio/slv2/distinfo (props changed) head/audio/smasher/distinfo (props changed) head/audio/snack/distinfo (props changed) head/audio/snd/distinfo (props changed) head/audio/solfege/distinfo (props changed) head/audio/sonata/distinfo (props changed) head/audio/sonice/distinfo (props changed) head/audio/sooperlooper/distinfo (props changed) head/audio/sound-juicer/distinfo (props changed) head/audio/soundconverter/distinfo (props changed) head/audio/soundgrab/distinfo (props changed) head/audio/soundkonverter/distinfo (props changed) head/audio/soundtracker/distinfo (props changed) head/audio/sox/distinfo (props changed) head/audio/specimen/distinfo (props changed) head/audio/speex/distinfo (props changed) head/audio/sphinx/distinfo (props changed) head/audio/sphinx3/distinfo (props changed) head/audio/sphinxbase/distinfo (props changed) head/audio/spiralloops/distinfo (props changed) head/audio/spiralsynth/distinfo (props changed) head/audio/spiralsynthmodular/distinfo (props changed) head/audio/splay/distinfo (props changed) head/audio/splaytk/distinfo (props changed) head/audio/squash/distinfo (props changed) head/audio/squeezeboxserver-dynamicplaylist/distinfo (props changed) head/audio/squeezeboxserver-lazysearch/distinfo (props changed) head/audio/squeezeboxserver-sqlplaylist/distinfo (props changed) head/audio/squeezeboxserver-trackstat/distinfo (props changed) head/audio/squeezeboxserver/distinfo (props changed) head/audio/streamripper/distinfo (props changed) head/audio/streamtranscoder/distinfo (props changed) head/audio/streamtuner/distinfo (props changed) head/audio/stymulator/distinfo (props changed) head/audio/sweep/distinfo (props changed) head/audio/swhplugins/distinfo (props changed) head/audio/tagger/distinfo (props changed) head/audio/taglib-extras/distinfo (props changed) head/audio/taglib-sharp/distinfo (props changed) head/audio/taglookup/distinfo (props changed) head/audio/tagtool/distinfo (props changed) head/audio/tagutil/distinfo (props changed) head/audio/tap-plugins/distinfo (props changed) head/audio/tcd/distinfo (props changed) head/audio/tclmidi/distinfo (props changed) head/audio/teamspeak_client/distinfo (props changed) head/audio/teamspeak_server/distinfo (props changed) head/audio/tempest_for_eliza/distinfo (props changed) head/audio/tepsonic/distinfo (props changed) head/audio/terminatorx/distinfo (props changed) head/audio/timemachine/distinfo (props changed) head/audio/timidity++/distinfo (props changed) head/audio/timidity/distinfo (props changed) head/audio/tkeca/distinfo (props changed) head/audio/toolame/distinfo (props changed) head/audio/tosha/distinfo (props changed) head/audio/trommler/distinfo (props changed) head/audio/tse3/distinfo (props changed) head/audio/tta/distinfo (props changed) head/audio/tuneradio/distinfo (props changed) head/audio/tuxguitar/distinfo (props changed) head/audio/twolame/distinfo (props changed) head/audio/uade/distinfo (props changed) head/audio/umix/distinfo (props changed) head/audio/umodplayer/distinfo (props changed) head/audio/umurmur/distinfo (props changed) head/audio/vagalume/distinfo (props changed) head/audio/vamp-plugin-sdk/distinfo (props changed) head/audio/ventrilo-server/distinfo (props changed) head/audio/vitunes/distinfo (props changed) head/audio/vo-aacenc/distinfo (props changed) head/audio/vo-amrwbenc/distinfo (props changed) head/audio/voipong/distinfo (props changed) head/audio/vorbis-tools/distinfo (props changed) head/audio/vorbisgain/distinfo (props changed) head/audio/vsound/distinfo (props changed) head/audio/waheela/distinfo (props changed) head/audio/waon/distinfo (props changed) head/audio/wav2cdr/distinfo (props changed) head/audio/wavbreaker/distinfo (props changed) head/audio/wavegain/distinfo (props changed) head/audio/waveplay/distinfo (props changed) head/audio/wavpack/distinfo (props changed) head/audio/wavplay/distinfo (props changed) head/audio/whysynth/distinfo (props changed) head/audio/wmalbum/distinfo (props changed) head/audio/wmauda/distinfo (props changed) head/audio/wmix/distinfo (props changed) head/audio/wmmp/distinfo (props changed) head/audio/wmrecord/distinfo (props changed) head/audio/wmsmixer/distinfo (props changed) head/audio/workman/distinfo (props changed) head/audio/wxguitar/distinfo (props changed) head/audio/x11amp/distinfo (props changed) head/audio/xanalyser/distinfo (props changed) head/audio/xcd/distinfo (props changed) head/audio/xcdplayer/distinfo (props changed) head/audio/xfce4-mpc-plugin/distinfo (props changed) head/audio/xfmpc/distinfo (props changed) head/audio/ximp3/distinfo (props changed) head/audio/xmcd/distinfo (props changed) head/audio/xmix/distinfo (props changed) head/audio/xmixer/distinfo (props changed) head/audio/xmmix/distinfo (props changed) head/audio/xmms-a52dec/distinfo (props changed) head/audio/xmms-ahx/distinfo (props changed) head/audio/xmms-audiofile/distinfo (props changed) head/audio/xmms-bonk/distinfo (props changed) head/audio/xmms-cdread/distinfo (props changed) head/audio/xmms-crossfade/distinfo (props changed) head/audio/xmms-crystality/distinfo (props changed) head/audio/xmms-curses/distinfo (props changed) head/audio/xmms-defx/distinfo (props changed) head/audio/xmms-efxmms/distinfo (props changed) head/audio/xmms-eq/distinfo (props changed) head/audio/xmms-faad/distinfo (props changed) head/audio/xmms-fc/distinfo (props changed) head/audio/xmms-fxt/distinfo (props changed) head/audio/xmms-infopipe/distinfo (props changed) head/audio/xmms-jack/distinfo (props changed) head/audio/xmms-ladspa/distinfo (props changed) head/audio/xmms-liveice/distinfo (props changed) head/audio/xmms-mac/distinfo (props changed) head/audio/xmms-mad/distinfo (props changed) head/audio/xmms-mailnotify/distinfo (props changed) head/audio/xmms-midi/distinfo (props changed) head/audio/xmms-modplug/distinfo (props changed) head/audio/xmms-mp3cue/distinfo (props changed) head/audio/xmms-musepack/distinfo (props changed) head/audio/xmms-nas/distinfo (props changed) head/audio/xmms-nsf/distinfo (props changed) head/audio/xmms-openspc/distinfo (props changed) head/audio/xmms-osssurround/distinfo (props changed) head/audio/xmms-quix3dn/distinfo (props changed) head/audio/xmms-sapplug/distinfo (props changed) head/audio/xmms-sexypsf/distinfo (props changed) head/audio/xmms-sexyspc/distinfo (props changed) head/audio/xmms-shn/distinfo (props changed) head/audio/xmms-sid/distinfo (props changed) head/audio/xmms-sndfile/distinfo (props changed) head/audio/xmms-tfmx/distinfo (props changed) head/audio/xmms-timidity/distinfo (props changed) head/audio/xmms-volnorm/distinfo (props changed) head/audio/xmms-wavpack/distinfo (props changed) head/audio/xmms-wma/distinfo (props changed) head/audio/xmms-xf86audio/distinfo (props changed) head/audio/xmms-xymms/distinfo (props changed) head/audio/xmms2-scrobbler/distinfo (props changed) head/audio/xmms2/distinfo (props changed) head/audio/xmmsctrl/distinfo (props changed) head/audio/xmp/distinfo (props changed) head/audio/xmradio/distinfo (props changed) head/audio/xoscope/distinfo (props changed) head/audio/xpi-musicpm/distinfo (props changed) head/audio/xsynth-dssi/distinfo (props changed) head/audio/xvmixer/distinfo (props changed) head/audio/xwave/distinfo (props changed) head/audio/yell/distinfo (props changed) head/audio/zinf/distinfo (props changed) head/benchmarks/autobench/distinfo (props changed) head/benchmarks/blogbench/distinfo (props changed) head/benchmarks/bonnie/distinfo (props changed) head/benchmarks/cpipe/distinfo (props changed) head/benchmarks/dbench/distinfo (props changed) head/benchmarks/dbs/distinfo (props changed) head/benchmarks/dkftpbench/distinfo (props changed) head/benchmarks/expedite/distinfo (props changed) head/benchmarks/fhourstones/distinfo (props changed) head/benchmarks/filebench/distinfo (props changed) head/benchmarks/fio/distinfo (props changed) head/benchmarks/flops/distinfo (props changed) head/benchmarks/forkbomb/distinfo (props changed) head/benchmarks/geekbench/distinfo (props changed) head/benchmarks/gtkperf/distinfo (props changed) head/benchmarks/himenobench/distinfo (props changed) head/benchmarks/hs-criterion/distinfo (props changed) head/benchmarks/httperf/distinfo (props changed) head/benchmarks/imb/distinfo (props changed) head/benchmarks/interbench/distinfo (props changed) head/benchmarks/iorate/distinfo (props changed) head/benchmarks/iozone/distinfo (props changed) head/benchmarks/iozone21/distinfo (props changed) head/benchmarks/iperf/distinfo (props changed) head/benchmarks/iperf3/distinfo (props changed) head/benchmarks/lmbench/distinfo (props changed) head/benchmarks/nbench/distinfo (props changed) head/benchmarks/netio/distinfo (props changed) head/benchmarks/netperf/distinfo (props changed) head/benchmarks/netpipe/distinfo (props changed) head/benchmarks/nosqlbench/distinfo (props changed) head/benchmarks/nqueens/distinfo (props changed) head/benchmarks/nttcp/distinfo (props changed) head/benchmarks/nuttcp/distinfo (props changed) head/benchmarks/octave-forge-benchmark/distinfo (props changed) head/benchmarks/p5-Benchmark-Forking/distinfo (props changed) head/benchmarks/p5-Benchmark-Stopwatch/distinfo (props changed) head/benchmarks/pathchirp/distinfo (props changed) head/benchmarks/pathload/distinfo (props changed) head/benchmarks/pathrate/distinfo (props changed) head/benchmarks/pear-Benchmark/distinfo (props changed) head/benchmarks/phoronix-test-suite/distinfo (props changed) head/benchmarks/pipebench/distinfo (props changed) head/benchmarks/pnetmark/distinfo (props changed) head/benchmarks/polygraph/distinfo (props changed) head/benchmarks/postal/distinfo (props changed) head/benchmarks/postmark/distinfo (props changed) head/benchmarks/pybench/distinfo (props changed) head/benchmarks/randomio/distinfo (props changed) head/benchmarks/rubygem-railsbench/distinfo (props changed) head/benchmarks/scimark2/distinfo (props changed) head/benchmarks/scimark2c/distinfo (props changed) head/benchmarks/slowloris/distinfo (props changed) head/benchmarks/spp/distinfo (props changed) head/benchmarks/super-smack/distinfo (props changed) head/benchmarks/sysbench/distinfo (props changed) head/benchmarks/thrulay/distinfo (props changed) head/benchmarks/ttcp/distinfo (props changed) head/benchmarks/ubench/distinfo (props changed) head/benchmarks/unixbench/distinfo (props changed) head/benchmarks/webbench/distinfo (props changed) head/benchmarks/xdd/distinfo (props changed) head/biology/ariadne/distinfo (props changed) head/biology/artemis/distinfo (props changed) head/biology/avida/distinfo (props changed) head/biology/babel/distinfo (props changed) head/biology/biococoa/distinfo (props changed) head/biology/biojava/distinfo (props changed) head/biology/blast/distinfo (props changed) head/biology/blat/distinfo (props changed) head/biology/boinc-simap/distinfo (props changed) head/biology/chemeq/distinfo (props changed) head/biology/clustalw/distinfo (props changed) head/biology/consed/distinfo (props changed) head/biology/crux/distinfo (props changed) head/biology/embassy/distinfo (props changed) head/biology/emboss/distinfo (props changed) head/biology/fasta/distinfo (props changed) head/biology/fastdnaml/distinfo (props changed) head/biology/finchtv/distinfo (props changed) head/biology/fluctuate/distinfo (props changed) head/biology/garlic/distinfo (props changed) head/biology/genpak/distinfo (props changed) head/biology/gff2ps/distinfo (props changed) head/biology/gmap/distinfo (props changed) head/biology/gperiodic/distinfo (props changed) head/biology/grappa/distinfo (props changed) head/biology/hmmer/distinfo (props changed) head/biology/jalview/distinfo (props changed) head/biology/lagan/distinfo (props changed) head/biology/lamarc/distinfo (props changed) head/biology/libgenome/distinfo (props changed) head/biology/libsbml/distinfo (props changed) head/biology/linux-foldingathome/distinfo (props changed) head/biology/mafft/distinfo (props changed) head/biology/mapm3/distinfo (props changed) head/biology/migrate/distinfo (props changed) head/biology/mopac/distinfo (props changed) head/biology/mrbayes/distinfo (props changed) head/biology/mummer/distinfo (props changed) head/biology/muscle/distinfo (props changed) head/biology/njplot/distinfo (props changed) head/biology/ortep3/distinfo (props changed) head/biology/p5-AcePerl/distinfo (props changed) head/biology/p5-Bio-ASN1-EntrezGene/distinfo (props changed) head/biology/p5-Bio-Das-Lite/distinfo (props changed) head/biology/p5-Bio-Das/distinfo (props changed) head/biology/p5-Bio-Glite/distinfo (props changed) head/biology/p5-Bio-Graphics/distinfo (props changed) head/biology/p5-Bio-NEXUS/distinfo (props changed) head/biology/p5-Bio-SCF/distinfo (props changed) head/biology/p5-bioperl-run/distinfo (props changed) head/biology/p5-bioperl/distinfo (props changed) head/biology/paml/distinfo (props changed) head/biology/phd2fasta/distinfo (props changed) head/biology/phrap/distinfo (props changed) head/biology/phred/distinfo (props changed) head/biology/platon/distinfo (props changed) head/biology/povchem/distinfo (props changed) head/biology/primer3/distinfo (props changed) head/biology/protomol/distinfo (props changed) head/biology/psi88/distinfo (props changed) head/biology/py-biopython/distinfo (props changed) head/biology/pycogent/distinfo (props changed) head/biology/pyfasta/distinfo (props changed) head/biology/pymol/distinfo (props changed) head/biology/python-nexus/distinfo (props changed) head/biology/rasmol/distinfo (props changed) head/biology/recombine/distinfo (props changed) head/biology/ruby-bio/distinfo (props changed) head/biology/seqan/distinfo (props changed) head/biology/seqio/distinfo (props changed) head/biology/sim4/distinfo (props changed) head/biology/ssaha/distinfo (props changed) head/biology/tRNAscan-SE/distinfo (props changed) head/biology/treepuzzle/distinfo (props changed) head/biology/treeviewx/distinfo (props changed) head/biology/ugene/distinfo (props changed) head/biology/velvet/distinfo (props changed) head/biology/xmolwt/distinfo (props changed) head/cad/admesh/distinfo (props changed) head/cad/adms/distinfo (props changed) head/cad/alliance/distinfo (props changed) head/cad/atlc/distinfo (props changed) head/cad/basicdsp/distinfo (props changed) head/cad/calculix/distinfo (props changed) head/cad/cascade/distinfo (props changed) head/cad/chipmunk/distinfo (props changed) head/cad/chipvault/distinfo (props changed) head/cad/cider/distinfo (props changed) head/cad/dinotrace/distinfo (props changed) head/cad/dxf2fig/distinfo (props changed) head/cad/electric/distinfo (props changed) head/cad/feappv/distinfo (props changed) head/cad/fidocadj/distinfo (props changed) head/cad/findhier/distinfo (props changed) head/cad/freehdl/distinfo (props changed) head/cad/gdsreader/distinfo (props changed) head/cad/gdt/distinfo (props changed) head/cad/geda-docs/distinfo (props changed) head/cad/geda-examples/distinfo (props changed) head/cad/geda-gattrib/distinfo (props changed) head/cad/geda-gschem/distinfo (props changed) head/cad/geda-netlist/distinfo (props changed) head/cad/geda-symbols/distinfo (props changed) head/cad/geda-symcheck/distinfo (props changed) head/cad/geda-utils/distinfo (props changed) head/cad/gmsh/distinfo (props changed) head/cad/gnucap/distinfo (props changed) head/cad/gplcver/distinfo (props changed) head/cad/gspiceui/distinfo (props changed) head/cad/gtkwave/distinfo (props changed) head/cad/iverilog/distinfo (props changed) head/cad/jspice3/distinfo (props changed) head/cad/kicad-devel/distinfo (props changed) head/cad/kicad-library/distinfo (props changed) head/cad/kicad/distinfo (props changed) head/cad/klayout/distinfo (props changed) head/cad/layouteditor/distinfo (props changed) head/cad/libgeda/distinfo (props changed) head/cad/linux-eagle5/distinfo (props changed) head/cad/logisim/distinfo (props changed) head/cad/mars/distinfo (props changed) head/cad/meshdev/distinfo (props changed) head/cad/netgen/distinfo (props changed) head/cad/ngspice_rework/distinfo (props changed) head/cad/openscad/distinfo (props changed) head/cad/p5-GDS2/distinfo (props changed) head/cad/p5-Verilog-Perl/distinfo (props changed) head/cad/pcb/distinfo (props changed) head/cad/pdnmesh/distinfo (props changed) head/cad/pythoncad/distinfo (props changed) head/cad/qcad-partslib/distinfo (props changed) head/cad/qfsm/distinfo (props changed) head/cad/qmls/distinfo (props changed) head/cad/repsnapper/distinfo (props changed) head/cad/salome/distinfo (props changed) head/cad/sceptre/distinfo (props changed) head/cad/scotch/distinfo (props changed) head/cad/scv/distinfo (props changed) head/cad/slffea/distinfo (props changed) head/cad/spice/distinfo (props changed) head/cad/systemc/distinfo (props changed) head/cad/tochnog/distinfo (props changed) head/cad/transcalc/distinfo (props changed) head/cad/verilog-mode.el/distinfo (props changed) head/cad/z88/distinfo (props changed) head/chinese/CJKUnifonts/distinfo (props changed) head/chinese/CNS11643-font/distinfo (props changed) head/chinese/acroread8-zh_CN/distinfo (props changed) head/chinese/acroread8-zh_TW/distinfo (props changed) head/chinese/arphicttf/distinfo (props changed) head/chinese/auto-cn-l10n/distinfo (props changed) head/chinese/autoconvert/distinfo (props changed) head/chinese/bg5pdf/distinfo (props changed) head/chinese/bg5ps/distinfo (props changed) head/chinese/big5con/distinfo (props changed) head/chinese/c2t/distinfo (props changed) head/chinese/cce/distinfo (props changed) head/chinese/cconv/distinfo (props changed) head/chinese/celvis/distinfo (props changed) head/chinese/cless/distinfo (props changed) head/chinese/cmexfonts/distinfo (props changed) head/chinese/cnprint/distinfo (props changed) head/chinese/cwtex/distinfo (props changed) head/chinese/cwtexttf/distinfo (props changed) head/chinese/dictd-database/distinfo (props changed) head/chinese/fcitx-chewing/distinfo (props changed) head/chinese/fcitx-cloudpinyin/distinfo (props changed) head/chinese/fcitx-configtool/distinfo (props changed) head/chinese/fcitx-googlepinyin/distinfo (props changed) head/chinese/fcitx-libpinyin/distinfo (props changed) head/chinese/fcitx-sunpinyin/distinfo (props changed) head/chinese/fcitx-ui-light/distinfo (props changed) head/chinese/fcitx/distinfo (props changed) head/chinese/fireflyttf/distinfo (props changed) head/chinese/fortune/distinfo (props changed) head/chinese/fortunetw/distinfo (props changed) head/chinese/fqterm/distinfo (props changed) head/chinese/gb2jis/distinfo (props changed) head/chinese/gb2ps/distinfo (props changed) head/chinese/gcin/distinfo (props changed) head/chinese/gugod-clean/distinfo (props changed) head/chinese/hanzim/distinfo (props changed) head/chinese/hc/distinfo (props changed) head/chinese/hztty/distinfo (props changed) head/chinese/ibus-chewing/distinfo (props changed) head/chinese/ibus-pinyin/distinfo (props changed) head/chinese/jis2gb/distinfo (props changed) head/chinese/joe/distinfo (props changed) head/chinese/kcfonts/distinfo (props changed) head/chinese/libchewing/distinfo (props changed) head/chinese/libgooglepinyin/distinfo (props changed) head/chinese/libpinyin/distinfo (props changed) head/chinese/libreoffice-zh_CN/distinfo (props changed) head/chinese/libreoffice-zh_TW/distinfo (props changed) head/chinese/libtabe/distinfo (props changed) head/chinese/lunar/distinfo (props changed) head/chinese/miniChinput/distinfo (props changed) head/chinese/moefonts-cid/distinfo (props changed) head/chinese/moettf/distinfo (props changed) head/chinese/msttf/distinfo (props changed) head/chinese/muni/distinfo (props changed) head/chinese/oicq/distinfo (props changed) head/chinese/opencc/distinfo (props changed) head/chinese/opendesktop-fonts/distinfo (props changed) head/chinese/oto/distinfo (props changed) head/chinese/oxim/distinfo (props changed) head/chinese/p5-Date-Chinese/distinfo (props changed) head/chinese/p5-Encode-CNMap/distinfo (props changed) head/chinese/p5-Encode-HanConvert/distinfo (props changed) head/chinese/p5-Encode-HanExtra/distinfo (props changed) head/chinese/p5-Lingua-Han-Utils/distinfo (props changed) head/chinese/p5-Lingua-ZH-BPMFConvert/distinfo (props changed) head/chinese/p5-Lingua-ZH-HanDetect/distinfo (props changed) head/chinese/p5-Lingua-ZH-Keywords/distinfo (props changed) head/chinese/p5-Lingua-ZH-Numbers/distinfo (props changed) head/chinese/p5-Lingua-ZH-Segment/distinfo (props changed) head/chinese/p5-Lingua-ZH-Summarize/distinfo (props changed) head/chinese/p5-Lingua-ZH-TaBE/distinfo (props changed) head/chinese/p5-Lingua-ZH-Toke/distinfo (props changed) head/chinese/p5-Lingua-ZH-WordSegmenter/distinfo (props changed) head/chinese/p5-Lingua-ZH-Wrap/distinfo (props changed) head/chinese/p5-Text-Greeking-zh_TW/distinfo (props changed) head/chinese/p5-cconv/distinfo (props changed) head/chinese/php5-cconv/distinfo (props changed) head/chinese/phpbb-tw/distinfo (props changed) head/chinese/phpbb3-tw/distinfo (props changed) head/chinese/pine4/distinfo (props changed) head/chinese/py-cconv/distinfo (props changed) head/chinese/qe/distinfo (props changed) head/chinese/reciteword/distinfo (props changed) head/chinese/scim-array/distinfo (props changed) head/chinese/scim-fcitx/distinfo (props changed) head/chinese/scim-tables/distinfo (props changed) head/chinese/srecite/distinfo (props changed) head/chinese/sunpinyin/distinfo (props changed) head/chinese/ttf2pt1/distinfo (props changed) head/chinese/ttfm/distinfo (props changed) head/chinese/ve/distinfo (props changed) head/chinese/wenju/distinfo (props changed) head/chinese/xpdf/distinfo (props changed) head/chinese/xsim/distinfo (props changed) head/chinese/ydict/distinfo (props changed) head/chinese/zhcon/distinfo (props changed) head/comms/acfax/distinfo (props changed) head/comms/aldo/distinfo (props changed) head/comms/amtterm/distinfo (props changed) head/comms/anyremote/distinfo (props changed) head/comms/aprsd/distinfo (props changed) head/comms/atslog/distinfo (props changed) head/comms/bfhist/distinfo (props changed) head/comms/bforce-kst/distinfo (props changed) head/comms/bforce/distinfo (props changed) head/comms/birda/distinfo (props changed) head/comms/bluegps/distinfo (props changed) head/comms/bluez-firmware/distinfo (props changed) head/comms/bpl+/distinfo (props changed) head/comms/callsign/distinfo (props changed) head/comms/cdr_read/distinfo (props changed) head/comms/chirp/distinfo (props changed) head/comms/chu/distinfo (props changed) head/comms/comserv/distinfo (props changed) head/comms/conserver-com/distinfo (props changed) head/comms/conserver/distinfo (props changed) head/comms/cutecom/distinfo (props changed) head/comms/cwdaemon/distinfo (props changed) head/comms/dfu-programmer/distinfo (props changed) head/comms/ebook2cw/distinfo (props changed) head/comms/ebook2cwgui/distinfo (props changed) head/comms/echolinux/distinfo (props changed) head/comms/efax-gtk/distinfo (props changed) head/comms/efax/distinfo (props changed) head/comms/ems-flasher/distinfo (props changed) head/comms/esmska/distinfo (props changed) head/comms/fl_moxgen/distinfo (props changed) head/comms/fldigi/distinfo (props changed) head/comms/flwrap/distinfo (props changed) head/comms/gammu-devel/distinfo (props changed) head/comms/gammu/distinfo (props changed) head/comms/geoid/distinfo (props changed) head/comms/gkermit/distinfo (props changed) head/comms/gmfsk/distinfo (props changed) head/comms/gnocky/distinfo (props changed) head/comms/gnokii/distinfo (props changed) head/comms/gnuradio/distinfo (props changed) head/comms/gpsk31/distinfo (props changed) head/comms/gqrx/distinfo (props changed) head/comms/gr-osmosdr/distinfo (props changed) head/comms/grig/distinfo (props changed) head/comms/gscmxx/distinfo (props changed) head/comms/gsmlib/distinfo (props changed) head/comms/gtkmmorse/distinfo (props changed) head/comms/hamfax/distinfo (props changed) head/comms/hamlib/distinfo (props changed) head/comms/hcidump/distinfo (props changed) head/comms/hf/distinfo (props changed) head/comms/hylafax/distinfo (props changed) head/comms/ibp/distinfo (props changed) head/comms/java-commapi-freebsd/distinfo (props changed) head/comms/java-commapi/distinfo (props changed) head/comms/jerm/distinfo (props changed) head/comms/kb/distinfo (props changed) head/comms/kermit/distinfo (props changed) head/comms/libfec/distinfo (props changed) head/comms/libirman/distinfo (props changed) head/comms/libmodbus/distinfo (props changed) head/comms/linrad/distinfo (props changed) head/comms/lirc/distinfo (props changed) head/comms/locator/distinfo (props changed) head/comms/lrzsz/distinfo (props changed) head/comms/mgetty+sendfax/distinfo (props changed) head/comms/minicom/distinfo (props changed) head/comms/mlan3/distinfo (props changed) head/comms/morse/distinfo (props changed) head/comms/nasawash/distinfo (props changed) head/comms/ncid/distinfo (props changed) head/comms/nec2c/distinfo (props changed) head/comms/nokryptia/distinfo (props changed) head/comms/o2sms/distinfo (props changed) head/comms/obexapp/distinfo (props changed) head/comms/p5-Cisco-UCS/distinfo (props changed) head/comms/p5-Device-Gsm/distinfo (props changed) head/comms/p5-Device-Modem/distinfo (props changed) head/comms/p5-Device-SerialPort/distinfo (props changed) head/comms/p5-Fax-Hylafax-Client/distinfo (props changed) head/comms/p5-Nexmo-SMS/distinfo (props changed) head/comms/p5-SMS-SMS77/distinfo (props changed) head/comms/p5-SMS-Send-DeviceGsm/distinfo (props changed) head/comms/p5-SMS-Send-NexmoUnicode/distinfo (props changed) head/comms/p5-SMS-Send-TW-HiAir/distinfo (props changed) head/comms/p5-SMS-Send-TW-PChome/distinfo (props changed) head/comms/p5-SMS-Send-TW-Qma/distinfo (props changed) head/comms/p5-SMS-Send-TW-ShareSMS/distinfo (props changed) head/comms/p5-SMS-Send-TW-Socket2Air/distinfo (props changed) head/comms/p5-SMS-Send-TW-chtsns/distinfo (props changed) head/comms/p5-SMS-Send-TW-emome/distinfo (props changed) head/comms/p5-SMS-Send/distinfo (props changed) head/comms/pear-Horde_ActiveSync/distinfo (props changed) head/comms/pear-Horde_SyncMl/distinfo (props changed) head/comms/picocom/distinfo (props changed) head/comms/pr/distinfo (props changed) head/comms/predict/distinfo (props changed) head/comms/py-bulksms/distinfo (props changed) head/comms/py-lirc/distinfo (props changed) head/comms/py-serial/distinfo (props changed) head/comms/pyla/distinfo (props changed) head/comms/qico/distinfo (props changed) head/comms/qpage/distinfo (props changed) head/comms/qrq/distinfo (props changed) head/comms/qsstv/distinfo (props changed) head/comms/remserial/distinfo (props changed) head/comms/rubygem-callsign/distinfo (props changed) head/comms/rubygem-ruby-termios/distinfo (props changed) head/comms/rxtx/distinfo (props changed) head/comms/scmxx/distinfo (props changed) head/comms/serialoverip/distinfo (props changed) head/comms/seyon/distinfo (props changed) head/comms/soundmodem/distinfo (props changed) head/comms/spandsp-devel/distinfo (props changed) head/comms/spandsp/distinfo (props changed) head/comms/splat/distinfo (props changed) head/comms/sredird/distinfo (props changed) head/comms/syncterm/distinfo (props changed) head/comms/thebridge/distinfo (props changed) head/comms/tits/distinfo (props changed) head/comms/tkhylafax/distinfo (props changed) head/comms/tkscanfax/distinfo (props changed) head/comms/tlf/distinfo (props changed) head/comms/trustedqsl/distinfo (props changed) head/comms/twpsk/distinfo (props changed) head/comms/uarduno/distinfo (props changed) head/comms/uartlirc/distinfo (props changed) head/comms/uird/distinfo (props changed) head/comms/unixcw/distinfo (props changed) head/comms/usrp/distinfo (props changed) head/comms/viewfax/distinfo (props changed) head/comms/vrflash/distinfo (props changed) head/comms/wsjt/distinfo (props changed) head/comms/wspr/distinfo (props changed) head/comms/wwl/distinfo (props changed) head/comms/wy60/distinfo (props changed) head/comms/xastir/distinfo (props changed) head/comms/xdx/distinfo (props changed) head/comms/xlog/distinfo (props changed) head/comms/xmorse/distinfo (props changed) head/comms/xnecview/distinfo (props changed) head/comms/xwota/distinfo (props changed) head/comms/yagiuda/distinfo (props changed) head/comms/yaps/distinfo (props changed) head/comms/yfklog/distinfo (props changed) head/comms/zmtx-zmrx/distinfo (props changed) head/comms/zssh/distinfo (props changed) head/converters/R-cran-RJSONIO/distinfo (props changed) head/converters/R-cran-rjson/distinfo (props changed) head/converters/aish/distinfo (props changed) head/converters/ascii2binary/distinfo (props changed) head/converters/asr10/distinfo (props changed) head/converters/base64/distinfo (props changed) head/converters/btoa/distinfo (props changed) head/converters/cl-babel/distinfo (props changed) head/converters/cmios9/distinfo (props changed) head/converters/cocot/distinfo (props changed) head/converters/convmv/distinfo (props changed) head/converters/dosunix/distinfo (props changed) head/converters/drg2sbg/distinfo (props changed) head/converters/dumpasn1/distinfo (props changed) head/converters/enca/distinfo (props changed) head/converters/fconv/distinfo (props changed) head/converters/fix-mime-charset/distinfo (props changed) head/converters/fondu/distinfo (props changed) head/converters/fribidi/distinfo (props changed) head/converters/gbase/distinfo (props changed) head/converters/hs-aeson/distinfo (props changed) head/converters/hs-dataenc/distinfo (props changed) head/converters/hs-json/distinfo (props changed) head/converters/htx/distinfo (props changed) head/converters/i18ntools/distinfo (props changed) head/converters/ical2html/distinfo (props changed) head/converters/iconv-extra/distinfo (props changed) head/converters/iconv-rfc1345/distinfo (props changed) head/converters/iconv/distinfo (props changed) head/converters/igbinary/distinfo (props changed) head/converters/ish/distinfo (props changed) head/converters/konwert/distinfo (props changed) head/converters/libb64/distinfo (props changed) head/converters/libutf-8/distinfo (props changed) head/converters/lua-iconv/distinfo (props changed) head/converters/mimelib/distinfo (props changed) head/converters/mmencode/distinfo (props changed) head/converters/mpack/distinfo (props changed) head/converters/mule-ucs/distinfo (props changed) head/converters/nomyso/distinfo (props changed) head/converters/o3read/distinfo (props changed) head/converters/osm2mp/distinfo (props changed) head/converters/osm2pgsql/distinfo (props changed) head/converters/p5-Boulder/distinfo (props changed) head/converters/p5-Convert-ASCII-Armour/distinfo (props changed) head/converters/p5-Convert-ASN1/distinfo (props changed) head/converters/p5-Convert-BER/distinfo (props changed) head/converters/p5-Convert-Bencode/distinfo (props changed) head/converters/p5-Convert-Bencode_XS/distinfo (props changed) head/converters/p5-Convert-Binary-C/distinfo (props changed) head/converters/p5-Convert-IBM390/distinfo (props changed) head/converters/p5-Convert-Morse/distinfo (props changed) head/converters/p5-Convert-NLS_DATE_FORMAT/distinfo (props changed) head/converters/p5-Convert-PEM/distinfo (props changed) head/converters/p5-Convert-Recode/distinfo (props changed) head/converters/p5-Convert-TNEF/distinfo (props changed) head/converters/p5-Convert-UU/distinfo (props changed) head/converters/p5-Convert-UUlib/distinfo (props changed) head/converters/p5-Cstools/distinfo (props changed) head/converters/p5-Data-AMF/distinfo (props changed) head/converters/p5-Encode-Detect-CJK/distinfo (props changed) head/converters/p5-Encode-Detect/distinfo (props changed) head/converters/p5-Encode-DoubleEncodedUTF8/distinfo (props changed) head/converters/p5-Encode-IMAPUTF7/distinfo (props changed) head/converters/p5-Encode-JIS2K/distinfo (props changed) head/converters/p5-Encode-Locale/distinfo (props changed) head/converters/p5-Encode-compat/distinfo (props changed) head/converters/p5-Encode/distinfo (props changed) head/converters/p5-Encoding-FixLatin/distinfo (props changed) head/converters/p5-Format-Human-Bytes/distinfo (props changed) head/converters/p5-JSON-DWIW/distinfo (props changed) head/converters/p5-JSON-XS-VersionOneAndTwo/distinfo (props changed) head/converters/p5-JSON/distinfo (props changed) head/converters/p5-JSON1/distinfo (props changed) head/converters/p5-MIME-Base32/distinfo (props changed) head/converters/p5-MIME-Base64-URLSafe/distinfo (props changed) head/converters/p5-MIME-Base64/distinfo (props changed) head/converters/p5-Number-Nary/distinfo (props changed) head/converters/p5-Number-RecordLocator/distinfo (props changed) head/converters/p5-PerlIO-via-Unidecode/distinfo (props changed) head/converters/p5-Sereal-Decoder/distinfo (props changed) head/converters/p5-Sereal-Encoder/distinfo (props changed) head/converters/p5-Sereal/distinfo (props changed) head/converters/p5-Storable-AMF/distinfo (props changed) head/converters/p5-String-Multibyte/distinfo (props changed) head/converters/p5-String-SetUTF8/distinfo (props changed) head/converters/p5-Text-Iconv/distinfo (props changed) head/converters/p5-Text-Unidecode/distinfo (props changed) head/converters/p5-Unicode-IMAPUtf7/distinfo (props changed) head/converters/p5-Unicode-Map/distinfo (props changed) head/converters/p5-Unicode-Map8/distinfo (props changed) head/converters/p5-Unicode-MapUTF8/distinfo (props changed) head/converters/p5-Unicode-RecursiveDowngrade/distinfo (props changed) head/converters/p5-Unicode-String/distinfo (props changed) head/converters/p5-Unicode-Stringprep/distinfo (props changed) head/converters/p5-Unicode-UTF8simple/distinfo (props changed) head/converters/p5-XML-WBXML/distinfo (props changed) head/converters/p5-plutil/distinfo (props changed) head/converters/pear-Services_JSON/distinfo (props changed) head/converters/pecl-fribidi/distinfo (props changed) head/converters/psiconv/distinfo (props changed) head/converters/py-iconv/distinfo (props changed) head/converters/py-pisa/distinfo (props changed) head/converters/py-zfec/distinfo (props changed) head/converters/rcctools/distinfo (props changed) head/converters/recode/distinfo (props changed) head/converters/ruby-dump.rb/distinfo (props changed) head/converters/shftool/distinfo (props changed) head/converters/showkey/distinfo (props changed) head/converters/ta2as/distinfo (props changed) head/converters/tnef/distinfo (props changed) head/converters/trans/distinfo (props changed) head/converters/tuc/distinfo (props changed) head/converters/unix2dos/distinfo (props changed) head/converters/uudeview/distinfo (props changed) head/converters/uudx/distinfo (props changed) head/converters/uulib/distinfo (props changed) head/converters/vda2fbd/distinfo (props changed) head/converters/wkhtmltopdf/distinfo (props changed) head/converters/xdeview/distinfo (props changed) head/converters/ytnef/distinfo (props changed) head/converters/zbase32/distinfo (props changed) head/databases/R-cran-DBI/distinfo (props changed) head/databases/R-cran-RMySQL/distinfo (props changed) head/databases/WWWdb/distinfo (props changed) head/databases/adminer/distinfo (props changed) head/databases/adodb/distinfo (props changed) head/databases/adodb5/distinfo (props changed) head/databases/akonadi-googledata/distinfo (props changed) head/databases/animenfo-client-gtk/distinfo (props changed) head/databases/animenfo-client/distinfo (props changed) head/databases/aolserver-nsmysql/distinfo (props changed) head/databases/aolserver-nspostgres/distinfo (props changed) head/databases/autobackupmysql/distinfo (props changed) head/databases/bbdb/distinfo (props changed) head/databases/beansdb/distinfo (props changed) head/databases/buzhug/distinfo (props changed) head/databases/c3p0/distinfo (props changed) head/databases/cdb/distinfo (props changed) head/databases/credis/distinfo (props changed) head/databases/cyrus-imspd/distinfo (props changed) head/databases/dalmp/distinfo (props changed) head/databases/datamodeler/distinfo (props changed) head/databases/db/distinfo (props changed) head/databases/db4/distinfo (props changed) head/databases/db41-nocrypto/distinfo (props changed) head/databases/db41/distinfo (props changed) head/databases/db42-nocrypto/distinfo (props changed) head/databases/db42/distinfo (props changed) head/databases/db43/distinfo (props changed) head/databases/db44/distinfo (props changed) head/databases/db46/distinfo (props changed) head/databases/db47/distinfo (props changed) head/databases/db48/distinfo (props changed) head/databases/db4o-mono/distinfo (props changed) head/databases/dbXML/distinfo (props changed) head/databases/dbconnect/distinfo (props changed) head/databases/dbf/distinfo (props changed) head/databases/dbf2mysql/distinfo (props changed) head/databases/dbh/distinfo (props changed) head/databases/dbow/distinfo (props changed) head/databases/dbtool/distinfo (props changed) head/databases/dbview/distinfo (props changed) head/databases/emma/distinfo (props changed) head/databases/epgsql/distinfo (props changed) head/databases/erlang-mysql/distinfo (props changed) head/databases/evolution-data-server/distinfo (props changed) head/databases/exist/distinfo (props changed) head/databases/fastdb/distinfo (props changed) head/databases/firebird20-server/distinfo (props changed) head/databases/firebird21-server/distinfo (props changed) head/databases/firebird25-server/distinfo (props changed) head/databases/flamerobin/distinfo (props changed) head/databases/flare/distinfo (props changed) head/databases/fortytwo-bdb/distinfo (props changed) head/databases/freetds-devel/distinfo (props changed) head/databases/freetds/distinfo (props changed) head/databases/frontbase-jdbc/distinfo (props changed) head/databases/frontbase/distinfo (props changed) head/databases/gadfly/distinfo (props changed) head/databases/gdbm/distinfo (props changed) head/databases/geoserver-mysql-plugin/distinfo (props changed) head/databases/gigabase/distinfo (props changed) head/databases/glom/distinfo (props changed) head/databases/gnats4/distinfo (props changed) head/databases/gnatsweb4/distinfo (props changed) head/databases/godis/distinfo (props changed) head/databases/gosqlite3/distinfo (props changed) head/databases/gqlplus/distinfo (props changed) head/databases/grass/distinfo (props changed) head/databases/gtksql/distinfo (props changed) head/databases/hamsterdb/distinfo (props changed) head/databases/hashtypes/distinfo (props changed) head/databases/hiredis/distinfo (props changed) head/databases/hk_classes/distinfo (props changed) head/databases/hs-mysql/distinfo (props changed) head/databases/hs-persistent-sqlite/distinfo (props changed) head/databases/hs-persistent-template/distinfo (props changed) head/databases/hs-persistent/distinfo (props changed) head/databases/innotop/distinfo (props changed) head/databases/ip4r/distinfo (props changed) head/databases/ipa_sdb/distinfo (props changed) head/databases/iplike/distinfo (props changed) head/databases/isql-viewer/distinfo (props changed) head/databases/jakarta-commons-dbutils/distinfo (props changed) head/databases/jasperreports/distinfo (props changed) head/databases/jasperserver/distinfo (props changed) head/databases/java-mybatis/distinfo (props changed) head/databases/jdb/distinfo (props changed) head/databases/jdbc-oracle10g/distinfo (props changed) head/databases/jdbc-oracle11g/distinfo (props changed) head/databases/jdbc-oracle8i/distinfo (props changed) head/databases/jdbc-oracle9i/distinfo (props changed) head/databases/jdbm2/distinfo (props changed) head/databases/jrobin/distinfo (props changed) head/databases/jrrd/distinfo (props changed) head/databases/kinterbasdb/distinfo (props changed) head/databases/kumofs/distinfo (props changed) head/databases/kyotocabinet/distinfo (props changed) head/databases/kyototycoon/distinfo (props changed) head/databases/ldb/distinfo (props changed) head/databases/libdbi-drivers/distinfo (props changed) head/databases/libdbi/distinfo (props changed) head/databases/libdrizzle/distinfo (props changed) head/databases/libgda2/distinfo (props changed) head/databases/libgda3/distinfo (props changed) head/databases/libgdamm/distinfo (props changed) head/databases/libgnomedb/distinfo (props changed) head/databases/libhsclient/distinfo (props changed) head/databases/libiodbc/distinfo (props changed) head/databases/libmemcache/distinfo (props changed) head/databases/libmemcached/distinfo (props changed) head/databases/libmongo-client/distinfo (props changed) head/databases/libodbc++/distinfo (props changed) head/databases/libpbl/distinfo (props changed) head/databases/libsdb/distinfo (props changed) head/databases/libzdb/distinfo (props changed) head/databases/linux-f10-sqlite3/distinfo.i386 (props changed) head/databases/linux-oracle-instantclient-basic/distinfo.amd64 (props changed) head/databases/linux-oracle-instantclient-basic/distinfo.i386 (props changed) head/databases/linux-oracle-instantclient-sdk/distinfo.amd64 (props changed) head/databases/linux-oracle-instantclient-sdk/distinfo.i386 (props changed) head/databases/linux-oracle-instantclient-sqlplus/distinfo.amd64 (props changed) head/databases/linux-oracle-instantclient-sqlplus/distinfo.i386 (props changed) head/databases/liquibase/distinfo (props changed) head/databases/lmdb/distinfo (props changed) head/databases/lsdb/distinfo (props changed) head/databases/luasql-mysql/distinfo (props changed) head/databases/ludia/distinfo (props changed) head/databases/mdbtools/distinfo (props changed) head/databases/mdcached/distinfo (props changed) head/databases/memcachedb/distinfo (props changed) head/databases/memcacheq/distinfo (props changed) head/databases/mergeant/distinfo (props changed) head/databases/metakit/distinfo (props changed) head/databases/mrtg-mysql-load/distinfo (props changed) head/databases/msql/distinfo (props changed) head/databases/msql3/distinfo (props changed) head/databases/mtop/distinfo (props changed) head/databases/my2cego/distinfo (props changed) head/databases/mydbf2mysql/distinfo (props changed) head/databases/mydumper/distinfo (props changed) head/databases/mysac/distinfo (props changed) head/databases/mysql++1/distinfo (props changed) head/databases/mysql++3/distinfo (props changed) head/databases/mysql-connector-odbc/distinfo (props changed) head/databases/mysql-proxy/distinfo (props changed) head/databases/mysql-q4m/distinfo (props changed) head/databases/mysql-udf-preg/distinfo (props changed) head/databases/mysql-udf-sys/distinfo (props changed) head/databases/mysql-udf/distinfo (props changed) head/databases/mysql-workbench51/distinfo (props changed) head/databases/mysql-xql/distinfo (props changed) head/databases/mysql2odbc/distinfo (props changed) head/databases/mysql2pgsql/distinfo (props changed) head/databases/mysql51-server/distinfo (props changed) head/databases/mysql55-server/distinfo (props changed) head/databases/mysql56-server/distinfo (props changed) head/databases/mysqlard/distinfo (props changed) head/databases/mysqlcppapi/distinfo (props changed) head/databases/mysqldumper/distinfo (props changed) head/databases/mysqlidxchk/distinfo (props changed) head/databases/mysqlreport/distinfo (props changed) head/databases/mysqlsla/distinfo (props changed) head/databases/mysqlsniffer/distinfo (props changed) head/databases/mysqltuner/distinfo (props changed) head/databases/mytop/distinfo (props changed) head/databases/mywwwatcher/distinfo (props changed) head/databases/nagios-check_postgres_replication/distinfo (props changed) head/databases/namazu2/distinfo (props changed) head/databases/ocaml-mysql/distinfo (props changed) head/databases/ocaml-pgocaml/distinfo (props changed) head/databases/ocaml-sqlite3/distinfo (props changed) head/databases/openbase-jdbc/distinfo (props changed) head/databases/opendbx/distinfo (props changed) head/databases/oracle7-client/distinfo (props changed) head/databases/oracle8-client/distinfo (props changed) head/databases/oracle_odbc_driver/distinfo (props changed) head/databases/p5-Amazon-SimpleDB/distinfo (props changed) head/databases/p5-Amon2-DBI/distinfo (props changed) head/databases/p5-AnyEvent-BDB/distinfo (props changed) head/databases/p5-AnyEvent-DBD-Pg/distinfo (props changed) head/databases/p5-AnyEvent-Memcached/distinfo (props changed) head/databases/p5-AnyEvent-Redis/distinfo (props changed) head/databases/p5-AsciiDB-TagFile/distinfo (props changed) head/databases/p5-BDB/distinfo (props changed) head/databases/p5-BSON/distinfo (props changed) head/databases/p5-Bucardo/distinfo (props changed) head/databases/p5-CDB_File-Generator/distinfo (props changed) head/databases/p5-CDB_File/distinfo (props changed) head/databases/p5-Cache-BDB/distinfo (props changed) head/databases/p5-Cache-Memcached-Fast/distinfo (props changed) head/databases/p5-Cache-Memcached-Managed/distinfo (props changed) head/databases/p5-Cache-Memcached-XS/distinfo (props changed) head/databases/p5-Cache-Memcached-libmemcached/distinfo (props changed) head/databases/p5-Cache-Memcached/distinfo (props changed) head/databases/p5-Class-DBI-AbstractSearch/distinfo (props changed) head/databases/p5-Class-DBI-AsForm/distinfo (props changed) head/databases/p5-Class-DBI-AutoLoader/distinfo (props changed) head/databases/p5-Class-DBI-BaseDSN/distinfo (props changed) head/databases/p5-Class-DBI-DATA-Schema/distinfo (props changed) head/databases/p5-Class-DBI-DDL/distinfo (props changed) head/databases/p5-Class-DBI-FromCGI/distinfo (props changed) head/databases/p5-Class-DBI-LazyInflate/distinfo (props changed) head/databases/p5-Class-DBI-Lite/distinfo (props changed) head/databases/p5-Class-DBI-Loader-Relationship/distinfo (props changed) head/databases/p5-Class-DBI-Loader/distinfo (props changed) head/databases/p5-Class-DBI-Oracle/distinfo (props changed) head/databases/p5-Class-DBI-Pager/distinfo (props changed) head/databases/p5-Class-DBI-Pg/distinfo (props changed) head/databases/p5-Class-DBI-Plugin-AbstractCount/distinfo (props changed) head/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/distinfo (props changed) head/databases/p5-Class-DBI-Plugin-Iterator/distinfo (props changed) head/databases/p5-Class-DBI-Plugin-Pager/distinfo (props changed) head/databases/p5-Class-DBI-Plugin-RetrieveAll/distinfo (props changed) head/databases/p5-Class-DBI-Plugin-Senna/distinfo (props changed) head/databases/p5-Class-DBI-Plugin-Type/distinfo (props changed) head/databases/p5-Class-DBI-Plugin/distinfo (props changed) head/databases/p5-Class-DBI-Replication/distinfo (props changed) head/databases/p5-Class-DBI-SAK/distinfo (props changed) head/databases/p5-Class-DBI-SQLite/distinfo (props changed) head/databases/p5-Class-DBI-Sweet/distinfo (props changed) head/databases/p5-Class-DBI-ToSax/distinfo (props changed) head/databases/p5-Class-DBI-Untaint/distinfo (props changed) head/databases/p5-Class-DBI-mysql/distinfo (props changed) head/databases/p5-Class-DBI/distinfo (props changed) head/databases/p5-Class-Inflate/distinfo (props changed) head/databases/p5-CouchDB-View/distinfo (props changed) head/databases/p5-DBD-AnyData/distinfo (props changed) head/databases/p5-DBD-Excel/distinfo (props changed) head/databases/p5-DBD-FrontBase/distinfo (props changed) head/databases/p5-DBD-Google/distinfo (props changed) head/databases/p5-DBD-LDAP/distinfo (props changed) head/databases/p5-DBD-Mock/distinfo (props changed) head/databases/p5-DBD-Multi/distinfo (props changed) head/databases/p5-DBD-Oracle/distinfo (props changed) head/databases/p5-DBD-Pg/distinfo (props changed) head/databases/p5-DBD-PgLite/distinfo (props changed) head/databases/p5-DBD-PgPP/distinfo (props changed) head/databases/p5-DBD-XBase/distinfo (props changed) head/databases/p5-DBI-Shell/distinfo (props changed) head/databases/p5-DBICx-Deploy/distinfo (props changed) head/databases/p5-DBICx-MapMaker/distinfo (props changed) head/databases/p5-DBICx-TxnInsert/distinfo (props changed) head/databases/p5-DBIWrapper/distinfo (props changed) head/databases/p5-DBIx-Abstract/distinfo (props changed) head/databases/p5-DBIx-AnyDBD/distinfo (props changed) head/databases/p5-DBIx-Browse/distinfo (props changed) head/databases/p5-DBIx-Class-AsFdat/distinfo (props changed) head/databases/p5-DBIx-Class-Candy/distinfo (props changed) head/databases/p5-DBIx-Class-Cursor-Cached/distinfo (props changed) head/databases/p5-DBIx-Class-CustomPrefetch/distinfo (props changed) head/databases/p5-DBIx-Class-DateTime-Epoch/distinfo (props changed) head/databases/p5-DBIx-Class-DeploymentHandler/distinfo (props changed) head/databases/p5-DBIx-Class-DigestColumns/distinfo (props changed) head/databases/p5-DBIx-Class-DynamicDefault/distinfo (props changed) head/databases/p5-DBIx-Class-DynamicSubclass/distinfo (props changed) head/databases/p5-DBIx-Class-EncodeColumns/distinfo (props changed) head/databases/p5-DBIx-Class-EncodedColumn/distinfo (props changed) head/databases/p5-DBIx-Class-Fixtures/distinfo (props changed) head/databases/p5-DBIx-Class-FrozenColumns/distinfo (props changed) head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/distinfo (props changed) head/databases/p5-DBIx-Class-InflateColumn-FS/distinfo (props changed) head/databases/p5-DBIx-Class-IntrospectableM2M/distinfo (props changed) head/databases/p5-DBIx-Class-Loader/distinfo (props changed) head/databases/p5-DBIx-Class-Migration/distinfo (props changed) head/databases/p5-DBIx-Class-MooseColumns/distinfo (props changed) head/databases/p5-DBIx-Class-QueryLog/distinfo (props changed) head/databases/p5-DBIx-Class-QueryProfiler/distinfo (props changed) head/databases/p5-DBIx-Class-ResultSet-HashRef/distinfo (props changed) head/databases/p5-DBIx-Class-Schema-PopulateMore/distinfo (props changed) head/databases/p5-DBIx-Class-TimeStamp/distinfo (props changed) head/databases/p5-DBIx-Class-Tree-NestedSet/distinfo (props changed) head/databases/p5-DBIx-Class-Tree/distinfo (props changed) head/databases/p5-DBIx-Class-UUIDColumns/distinfo (props changed) head/databases/p5-DBIx-Class-VirtualColumns/distinfo (props changed) head/databases/p5-DBIx-Class-WebForm/distinfo (props changed) head/databases/p5-DBIx-Class/distinfo (props changed) head/databases/p5-DBIx-Connector/distinfo (props changed) head/databases/p5-DBIx-ContextualFetch/distinfo (props changed) head/databases/p5-DBIx-Custom/distinfo (props changed) head/databases/p5-DBIx-DBHResolver/distinfo (props changed) head/databases/p5-DBIx-DataSource/distinfo (props changed) head/databases/p5-DBIx-Ease/distinfo (props changed) head/databases/p5-DBIx-HA/distinfo (props changed) head/databases/p5-DBIx-Inspector/distinfo (props changed) head/databases/p5-DBIx-Log4perl/distinfo (props changed) head/databases/p5-DBIx-MySQLSequence/distinfo (props changed) head/databases/p5-DBIx-NoSQL/distinfo (props changed) head/databases/p5-DBIx-Password/distinfo (props changed) head/databases/p5-DBIx-Perlish/distinfo (props changed) head/databases/p5-DBIx-QueryLog/distinfo (props changed) head/databases/p5-DBIx-Recordset/distinfo (props changed) head/databases/p5-DBIx-RetryOverDisconnects/distinfo (props changed) head/databases/p5-DBIx-SQLEngine/distinfo (props changed) head/databases/p5-DBIx-SQLite-Simple/distinfo (props changed) head/databases/p5-DBIx-Safe/distinfo (props changed) head/databases/p5-DBIx-Sequence/distinfo (props changed) head/databases/p5-DBIx-Simple/distinfo (props changed) head/databases/p5-DBIx-Skinny-InflateColumn-DateTime/distinfo (props changed) head/databases/p5-DBIx-Skinny-Mixin-DBHResolver/distinfo (props changed) head/databases/p5-DBIx-Skinny-Pager/distinfo (props changed) head/databases/p5-DBIx-Skinny-Schema-Loader/distinfo (props changed) head/databases/p5-DBIx-Skinny/distinfo (props changed) head/databases/p5-DBIx-Sunny/distinfo (props changed) head/databases/p5-DBIx-TableHash/distinfo (props changed) head/databases/p5-DBIx-TransactionManager/distinfo (props changed) head/databases/p5-DBIx-Tree/distinfo (props changed) head/databases/p5-DBIx-VersionedDDL/distinfo (props changed) head/databases/p5-DBIx-Wrapper/distinfo (props changed) head/databases/p5-DBIx-XHTML_Table/distinfo (props changed) head/databases/p5-DBIx-XML_RDB/distinfo (props changed) head/databases/p5-DBM-Deep/distinfo (props changed) head/databases/p5-DMOZ-ParseRDF/distinfo (props changed) head/databases/p5-DWH_File/distinfo (props changed) head/databases/p5-Dancer-Plugin-Redis/distinfo (props changed) head/databases/p5-Dancer-Session-Memcached/distinfo (props changed) head/databases/p5-Data-Page/distinfo (props changed) head/databases/p5-Data-Pageset/distinfo (props changed) head/databases/p5-Exception-Class-DBI/distinfo (props changed) head/databases/p5-GDBM/distinfo (props changed) head/databases/p5-Genezzo/distinfo (props changed) head/databases/p5-GraphViz-DBI/distinfo (props changed) head/databases/p5-HTML-FormHandler-Model-DBIC/distinfo (props changed) head/databases/p5-Ima-DBI-Contextual/distinfo (props changed) head/databases/p5-Ima-DBI/distinfo (props changed) head/databases/p5-Iterator-DBI/distinfo (props changed) head/databases/p5-KyotoCabinet/distinfo (props changed) head/databases/p5-MLDBM-Sync/distinfo (props changed) head/databases/p5-MLDBM/distinfo (props changed) head/databases/p5-Memcached-libmemcached/distinfo (props changed) head/databases/p5-Metadata/distinfo (props changed) head/databases/p5-MongoDB/distinfo (props changed) head/databases/p5-MySQL-Diff/distinfo (props changed) head/databases/p5-ORLite-Migrate/distinfo (props changed) head/databases/p5-Oryx/distinfo (props changed) head/databases/p5-POE-Component-DBIAgent/distinfo (props changed) head/databases/p5-POE-Component-EasyDBI/distinfo (props changed) head/databases/p5-POE-Component-LaDBI/distinfo (props changed) head/databases/p5-POE-Component-RRDTool/distinfo (props changed) head/databases/p5-Pg/distinfo (props changed) head/databases/p5-PostgreSQL-PLPerl-Call/distinfo (props changed) head/databases/p5-PostgreSQL-PLPerl-Trace/distinfo (props changed) head/databases/p5-Prophet/distinfo (props changed) head/databases/p5-RRD-Simple/distinfo (props changed) head/databases/p5-Redis-hiredis/distinfo (props changed) head/databases/p5-Relations-Query/distinfo (props changed) head/databases/p5-Relations/distinfo (props changed) head/databases/p5-ResourcePool-Resource-DBI/distinfo (props changed) head/databases/p5-Rose-DBx-Object-Renderer/distinfo (props changed) head/databases/p5-SQL-Abstract-Limit/distinfo (props changed) head/databases/p5-SQL-Abstract-Plugin-InsertMulti/distinfo (props changed) head/databases/p5-SQL-Maker/distinfo (props changed) head/databases/p5-SQL-ReservedWords/distinfo (props changed) head/databases/p5-SQL-Statement/distinfo (props changed) head/databases/p5-Search-InvertedIndex/distinfo (props changed) head/databases/p5-Search-Namazu/distinfo (props changed) head/databases/p5-Search-Xapian10/distinfo (props changed) head/databases/p5-T2/distinfo (props changed) head/databases/p5-Tangram/distinfo (props changed) head/databases/p5-Template-DBI/distinfo (props changed) head/databases/p5-Teng/distinfo (props changed) head/databases/p5-Test-Cukes/distinfo (props changed) head/databases/p5-Test-Database/distinfo (props changed) head/databases/p5-Test-DatabaseRow/distinfo (props changed) head/databases/p5-Test-Fixture-DBI/distinfo (props changed) head/databases/p5-Test-mysqld/distinfo (props changed) head/databases/p5-Test-postgresql/distinfo (props changed) head/databases/p5-Text-Query-SQL/distinfo (props changed) head/databases/p5-Text-xSV/distinfo (props changed) head/databases/p5-Tie-DBI/distinfo (props changed) head/databases/p5-Tie-LevelDB/distinfo (props changed) head/databases/p5-Time-Piece-MySQL/distinfo (props changed) head/databases/p5-TokyoCabinet/distinfo (props changed) head/databases/p5-hp200lx-db/distinfo (props changed) head/databases/p5-mysql-genocide/distinfo (props changed) head/databases/p5-tokyotyrant/distinfo (props changed) head/databases/pear-DB/distinfo (props changed) head/databases/pear-DBA/distinfo (props changed) head/databases/pear-DBA_Relational/distinfo (props changed) head/databases/pear-DB_DataObject_FormBuilder/distinfo (props changed) head/databases/pear-DB_Pager/distinfo (props changed) head/databases/pear-DB_QueryTool/distinfo (props changed) head/databases/pear-DB_Sqlite_Tools/distinfo (props changed) head/databases/pear-DB_Table/distinfo (props changed) head/databases/pear-DB_ldap/distinfo (props changed) head/databases/pear-DB_ldap2/distinfo (props changed) head/databases/pear-Doctrine12/distinfo (props changed) head/databases/pear-DoctrineCommon/distinfo (props changed) head/databases/pear-DoctrineDBAL/distinfo (props changed) head/databases/pear-DoctrineORM/distinfo (props changed) head/databases/pear-Horde_Db/distinfo (props changed) head/databases/pear-Horde_HashTable/distinfo (props changed) head/databases/pear-Horde_Imsp/distinfo (props changed) head/databases/pear-Horde_Memcache/distinfo (props changed) head/databases/pear-Horde_Mongo/distinfo (props changed) head/databases/pear-MDB/distinfo (props changed) head/databases/pear-MDB2_Schema/distinfo (props changed) head/databases/pear-MDB_QueryTool/distinfo (props changed) head/databases/pear-Structures_DataGrid_DataSource_Array/distinfo (props changed) head/databases/pear-Structures_DataGrid_DataSource_CSV/distinfo (props changed) head/databases/pear-Structures_DataGrid_DataSource_DB/distinfo (props changed) head/databases/pear-Structures_DataGrid_DataSource_DBQuery/distinfo (props changed) head/databases/pear-Structures_DataGrid_DataSource_DBTable/distinfo (props changed) head/databases/pear-Structures_DataGrid_DataSource_DataObject/distinfo (props changed) head/databases/pear-Structures_DataGrid_DataSource_MDB2/distinfo (props changed) head/databases/pear-Structures_DataGrid_DataSource_PDO/distinfo (props changed) head/databases/pear-XML_Query2XML/distinfo (props changed) head/databases/pecl-chdb/distinfo (props changed) head/databases/pecl-drizzle/distinfo (props changed) head/databases/pecl-handlersocket/distinfo (props changed) head/databases/pecl-mdbtools/distinfo (props changed) head/databases/pecl-memcached/distinfo (props changed) head/databases/pecl-pdo_user/distinfo (props changed) head/databases/pecl-tokyo_tyrant/distinfo (props changed) head/databases/pg_filedump/distinfo (props changed) head/databases/pg_reorg/distinfo (props changed) head/databases/pg_rman/distinfo (props changed) head/databases/pg_statsinfo/distinfo (props changed) head/databases/pgaccess/distinfo (props changed) head/databases/pgadmin3/distinfo (props changed) head/databases/pgagent/distinfo (props changed) head/databases/pgbouncer/distinfo (props changed) head/databases/pgdbf/distinfo (props changed) head/databases/pgfouine/distinfo (props changed) head/databases/pglesslog/distinfo (props changed) head/databases/pgloader/distinfo (props changed) head/databases/pgpool-II-22/distinfo (props changed) head/databases/pgpool-II-23/distinfo (props changed) head/databases/pgpool-II-30/distinfo (props changed) head/databases/pgpool-II/distinfo (props changed) head/databases/pgpool/distinfo (props changed) head/databases/pgpoolAdmin/distinfo (props changed) head/databases/pgsphere/distinfo (props changed) head/databases/pgtcl/distinfo (props changed) head/databases/pgtop/distinfo (props changed) head/databases/pgtune/distinfo (props changed) head/databases/pgworksheet/distinfo (props changed) head/databases/php-adodb-ext/distinfo (props changed) head/databases/php-mdcached/distinfo (props changed) head/databases/php5-creole/distinfo (props changed) head/databases/php5-pdo_cassandra/distinfo (props changed) head/databases/php5-propel/distinfo (props changed) head/databases/php53-redis/distinfo (props changed) head/databases/phpminiadmin/distinfo (props changed) head/databases/phppgadmin/distinfo (props changed) head/databases/postgis-jdbc/distinfo (props changed) head/databases/postgresql-jdbc/distinfo (props changed) head/databases/postgresql-libpgeasy/distinfo (props changed) head/databases/postgresql-libpqxx/distinfo (props changed) head/databases/postgresql-pllua/distinfo (props changed) head/databases/postgresql-plv8js/distinfo (props changed) head/databases/postgresql-relay/distinfo (props changed) head/databases/postgresql84-server/distinfo (props changed) head/databases/postgresql90-server/distinfo (props changed) head/databases/postgresql91-server/distinfo (props changed) head/databases/postgresql92-server/distinfo (props changed) head/databases/postgresql93-server/distinfo (props changed) head/databases/postgresql_autodoc/distinfo (props changed) head/databases/powerarchitect/distinfo (props changed) head/databases/pure-sql3/distinfo (props changed) head/databases/puredb/distinfo (props changed) head/databases/pxlib/distinfo (props changed) head/databases/pxtools/distinfo (props changed) head/databases/py-Elixir/distinfo (props changed) head/databases/py-MySQLdb/distinfo (props changed) head/databases/py-alembic/distinfo (props changed) head/databases/py-apsw/distinfo (props changed) head/databases/py-bsddb3/distinfo (props changed) head/databases/py-cdb/distinfo (props changed) head/databases/py-cmemcache/distinfo (props changed) head/databases/py-couchdb/distinfo (props changed) head/databases/py-dbf/distinfo (props changed) head/databases/py-dbutils/distinfo (props changed) head/databases/py-firebirdsql/distinfo (props changed) head/databases/py-forgetsql/distinfo (props changed) head/databases/py-hiredis/distinfo (props changed) head/databases/py-kyotocabinet/distinfo (props changed) head/databases/py-mssql/distinfo (props changed) head/databases/py-odbc/distinfo (props changed) head/databases/py-oops/distinfo (props changed) head/databases/py-pg8000/distinfo (props changed) head/databases/py-pg_pqueue/distinfo (props changed) head/databases/py-pgxnclient/distinfo (props changed) head/databases/py-pickledb/distinfo (props changed) head/databases/py-postgresql/distinfo (props changed) head/databases/py-psycopg/distinfo (props changed) head/databases/py-pyPgSQL/distinfo (props changed) head/databases/py-pyhs/distinfo (props changed) head/databases/py-pylibmc/distinfo (props changed) head/databases/py-pymysql/distinfo (props changed) head/databases/py-pytc/distinfo (props changed) head/databases/py-riak/distinfo (props changed) head/databases/py-rrdtool_lgpl/distinfo (props changed) head/databases/py-simplecouchdb/distinfo (props changed) head/databases/py-south/distinfo (props changed) head/databases/py-sqlalchemy-migrate/distinfo (props changed) head/databases/py-sqlalchemy06/distinfo (props changed) head/databases/py-sqlite3dbm/distinfo (props changed) head/databases/py-sqlkit/distinfo (props changed) head/databases/py-sqlobject/distinfo (props changed) head/databases/py-sqlparse/distinfo (props changed) head/databases/py-swift/distinfo (props changed) head/databases/py-sybase/distinfo (props changed) head/databases/py-whisper/distinfo (props changed) head/databases/pydbdesigner/distinfo (props changed) head/databases/pydbx/distinfo (props changed) head/databases/pymongo/distinfo (props changed) head/databases/pyspatialite/distinfo (props changed) head/databases/qdbm/distinfo (props changed) head/databases/rdb/distinfo (props changed) head/databases/rdfdb/distinfo (props changed) head/databases/recutils/distinfo (props changed) head/databases/redis-devel/distinfo (props changed) head/databases/redis/distinfo (props changed) head/databases/rrdman/distinfo (props changed) head/databases/rrdmerge/distinfo (props changed) head/databases/rrdtool/distinfo (props changed) head/databases/rrdtool10/distinfo (props changed) head/databases/rrdtool12/distinfo (props changed) head/databases/ruby-bdb/distinfo (props changed) head/databases/ruby-cdb/distinfo (props changed) head/databases/ruby-dbd_mysql/distinfo (props changed) head/databases/ruby-dbd_odbc/distinfo (props changed) head/databases/ruby-dbd_pg/distinfo (props changed) head/databases/ruby-dbd_sqlite/distinfo (props changed) head/databases/ruby-dbd_sqlite3/distinfo (props changed) head/databases/ruby-dbi/distinfo (props changed) head/databases/ruby-frontbase/distinfo (props changed) head/databases/ruby-msql/distinfo (props changed) head/databases/ruby-mysql/distinfo (props changed) head/databases/ruby-o_dbm/distinfo (props changed) head/databases/ruby-oci8/distinfo (props changed) head/databases/ruby-odbc/distinfo (props changed) head/databases/ruby-rdbc1/distinfo (props changed) head/databases/ruby-sybct/distinfo (props changed) head/databases/ruby-tokyocabinet/distinfo (props changed) head/databases/rubygem-amalgalite/distinfo (props changed) head/databases/rubygem-bdb1/distinfo (props changed) head/databases/rubygem-bigrecord/distinfo (props changed) head/databases/rubygem-datamapper/distinfo (props changed) head/databases/rubygem-dm-active_model/distinfo (props changed) head/databases/rubygem-dm-aggregates/distinfo (props changed) head/databases/rubygem-dm-chunked_query/distinfo (props changed) head/databases/rubygem-dm-constraints/distinfo (props changed) head/databases/rubygem-dm-do-adapter/distinfo (props changed) head/databases/rubygem-dm-migrations/distinfo (props changed) head/databases/rubygem-dm-mysql-adapter/distinfo (props changed) head/databases/rubygem-dm-observer/distinfo (props changed) head/databases/rubygem-dm-pager/distinfo (props changed) head/databases/rubygem-dm-postgres-adapter/distinfo (props changed) head/databases/rubygem-dm-rails/distinfo (props changed) head/databases/rubygem-dm-serializer/distinfo (props changed) head/databases/rubygem-dm-timestamps/distinfo (props changed) head/databases/rubygem-dm-transactions/distinfo (props changed) head/databases/rubygem-dm-types/distinfo (props changed) head/databases/rubygem-dm-validations/distinfo (props changed) head/databases/rubygem-familia/distinfo (props changed) head/databases/rubygem-memcache-client/distinfo (props changed) head/databases/rubygem-rbase/distinfo (props changed) head/databases/rubygem-redis-actionpack/distinfo (props changed) head/databases/rubygem-rubyrep/distinfo (props changed) head/databases/rubygem-seed-fu/distinfo (props changed) head/databases/rubygem-tarantool/distinfo (props changed) head/databases/sharedance/distinfo (props changed) head/databases/skytools/distinfo (props changed) head/databases/slony1/distinfo (props changed) head/databases/slony1v2/distinfo (props changed) head/databases/spatialite/distinfo (props changed) head/databases/spatialite_gui/distinfo (props changed) head/databases/sqlbuddy/distinfo (props changed) head/databases/sqlcached/distinfo (props changed) head/databases/sqlclient/distinfo (props changed) head/databases/sqldeveloper/distinfo (props changed) head/databases/sqlite-ext-miscfuncs/distinfo (props changed) head/databases/sqlite-ext-mobigroup/distinfo (props changed) head/databases/sqlite2/distinfo (props changed) head/databases/sqliteman/distinfo (props changed) head/databases/sqlitemanager/distinfo (props changed) head/databases/sqsh/distinfo (props changed) head/databases/sybtcl/distinfo (props changed) head/databases/tablelog/distinfo (props changed) head/databases/tcl-Mysql/distinfo (props changed) head/databases/tdb/distinfo (props changed) head/databases/tinycdb/distinfo (props changed) head/databases/tokyocabinet/distinfo (props changed) head/databases/tokyotyrant/distinfo (props changed) head/databases/tora/distinfo (props changed) head/databases/tuning-primer/distinfo (props changed) head/databases/typhoon/distinfo (props changed) head/databases/unixODBC/distinfo (props changed) head/databases/useracc/distinfo (props changed) head/databases/usogres/distinfo (props changed) head/databases/vfront/distinfo (props changed) head/databases/virtuoso/distinfo (props changed) head/databases/wfb2sql/distinfo (props changed) head/databases/wmjsql/distinfo (props changed) head/databases/xapian-core10/distinfo (props changed) head/databases/xmbase-grok/distinfo (props changed) head/databases/yasql/distinfo (props changed) head/databases/zodb3/distinfo (props changed) head/deskutils/adesklets/distinfo (props changed) head/deskutils/affiche/distinfo (props changed) head/deskutils/akamaru/distinfo (props changed) head/deskutils/alacarte/distinfo (props changed) head/deskutils/appwrapper/distinfo (props changed) head/deskutils/aspostit/distinfo (props changed) head/deskutils/autocutsel/distinfo (props changed) head/deskutils/babytrans/distinfo (props changed) head/deskutils/bigyear/distinfo (props changed) head/deskutils/bitcollider/distinfo (props changed) head/deskutils/bmp-docklet/distinfo (props changed) head/deskutils/cairo-dock-plugins/distinfo (props changed) head/deskutils/cairo-dock/distinfo (props changed) head/deskutils/cal/distinfo (props changed) head/deskutils/calcurse/distinfo (props changed) head/deskutils/cartotheque/distinfo (props changed) head/deskutils/cdcat/distinfo (props changed) head/deskutils/charmap/distinfo (props changed) head/deskutils/charmtimetracker/distinfo (props changed) head/deskutils/checkrdf/distinfo (props changed) head/deskutils/conduit/distinfo (props changed) head/deskutils/conkyemail/distinfo (props changed) head/deskutils/conkyforecast/distinfo (props changed) head/deskutils/cycle/distinfo (props changed) head/deskutils/dailystrips/distinfo (props changed) head/deskutils/deskbar-applet/distinfo (props changed) head/deskutils/devd-notifier/distinfo (props changed) head/deskutils/displaycalibrator/distinfo (props changed) head/deskutils/dlume/distinfo (props changed) head/deskutils/dosage/distinfo (props changed) head/deskutils/easystroke/distinfo (props changed) head/deskutils/epoch/distinfo (props changed) head/deskutils/etask/distinfo (props changed) head/deskutils/everygui/distinfo (props changed) head/deskutils/evolution-jescs/distinfo (props changed) head/deskutils/fbreader/distinfo (props changed) head/deskutils/fengoffice/distinfo (props changed) head/deskutils/freemind/distinfo (props changed) head/deskutils/fusenshi/distinfo (props changed) head/deskutils/gaddr/distinfo (props changed) head/deskutils/ganttproject/distinfo (props changed) head/deskutils/gbirthday/distinfo (props changed) head/deskutils/gcal/distinfo (props changed) head/deskutils/gcalcli/distinfo (props changed) head/deskutils/gdesklets-recentlyused/distinfo (props changed) head/deskutils/gdesklets-starterbar/distinfo (props changed) head/deskutils/gdesklets/distinfo (props changed) head/deskutils/genius/distinfo (props changed) head/deskutils/gimmie/distinfo (props changed) head/deskutils/gkrellm-reminder2/distinfo (props changed) head/deskutils/glabels/distinfo (props changed) head/deskutils/glipper/distinfo (props changed) head/deskutils/global-menu/distinfo (props changed) head/deskutils/gmcal/distinfo (props changed) head/deskutils/gnochm/distinfo (props changed) head/deskutils/gnome-blog/distinfo (props changed) head/deskutils/gnome-main-menu/distinfo (props changed) head/deskutils/gnome-utils/distinfo (props changed) head/deskutils/gnote/distinfo (props changed) head/deskutils/gnustep-notebook/distinfo (props changed) head/deskutils/gnustep-wrapper/distinfo (props changed) head/deskutils/griffith/distinfo (props changed) head/deskutils/gruler/distinfo (props changed) head/deskutils/gtg/distinfo (props changed) head/deskutils/gtimer/distinfo (props changed) head/deskutils/gtkjournal/distinfo (props changed) head/deskutils/gtodo/distinfo (props changed) head/deskutils/gtweakui/distinfo (props changed) head/deskutils/gucharmap/distinfo (props changed) head/deskutils/gworkspace-gwmetadata/distinfo (props changed) head/deskutils/gworkspace/distinfo (props changed) head/deskutils/gxmessage/distinfo (props changed) head/deskutils/gxneur/distinfo (props changed) head/deskutils/hamster-applet/distinfo (props changed) head/deskutils/hebcal/distinfo (props changed) head/deskutils/helpviewer/distinfo (props changed) head/deskutils/horde-groupware/distinfo (props changed) head/deskutils/horde-kronolith/distinfo (props changed) head/deskutils/horde-mnemo/distinfo (props changed) head/deskutils/horde-nag/distinfo (props changed) head/deskutils/horde3-hermes/distinfo (props changed) head/deskutils/horde3-klutz/distinfo (props changed) head/deskutils/horde3-kronolith/distinfo (props changed) head/deskutils/horde3-mnemo/distinfo (props changed) head/deskutils/horde3-nag/distinfo (props changed) head/deskutils/hot-babe/distinfo (props changed) head/deskutils/howm/distinfo (props changed) head/deskutils/ical/distinfo (props changed) head/deskutils/ithought/distinfo (props changed) head/deskutils/jjclient/distinfo (props changed) head/deskutils/jlj/distinfo (props changed) head/deskutils/kchmviewer-kde4/distinfo (props changed) head/deskutils/kdepim44-runtime/distinfo (props changed) head/deskutils/kdepim44/distinfo (props changed) head/deskutils/ksshaskpass/distinfo (props changed) head/deskutils/kupfer/distinfo (props changed) head/deskutils/labyrinth/distinfo (props changed) head/deskutils/launchy/distinfo (props changed) head/deskutils/libgcal/distinfo (props changed) head/deskutils/libopensync-plugin-evolution2-devel/distinfo (props changed) head/deskutils/libopensync-plugin-evolution2/distinfo (props changed) head/deskutils/libopensync-plugin-file/distinfo (props changed) head/deskutils/libopensync-plugin-python/distinfo (props changed) head/deskutils/libopensync-plugin-sunbird/distinfo (props changed) head/deskutils/libopensync-plugin-synce-legacy/distinfo (props changed) head/deskutils/libopensync-plugin-vformat-devel/distinfo (props changed) head/deskutils/ljcharm/distinfo (props changed) head/deskutils/ljclive/distinfo (props changed) head/deskutils/ljit/distinfo (props changed) head/deskutils/logjam/distinfo (props changed) head/deskutils/lxshortcut/distinfo (props changed) head/deskutils/mate-character-map/distinfo (props changed) head/deskutils/mate-file-manager-open-terminal/distinfo (props changed) head/deskutils/mate-menu-editor/distinfo (props changed) head/deskutils/mate-notification-daemon/distinfo (props changed) head/deskutils/mate-utils/distinfo (props changed) head/deskutils/mcal/distinfo (props changed) head/deskutils/mdh/distinfo (props changed) head/deskutils/mencal/distinfo (props changed) head/deskutils/menumaker/distinfo (props changed) head/deskutils/mirall/distinfo (props changed) head/deskutils/moregroupware/distinfo (props changed) head/deskutils/mrundlg/distinfo (props changed) head/deskutils/msynctool/distinfo (props changed) head/deskutils/multisync/distinfo (props changed) head/deskutils/myitcrm/distinfo (props changed) head/deskutils/nagaina/distinfo (props changed) head/deskutils/narval/distinfo (props changed) head/deskutils/nautilus-actions/distinfo (props changed) head/deskutils/nautilus-locked-folder/distinfo (props changed) head/deskutils/nautilus-open-terminal/distinfo (props changed) head/deskutils/nautilus-sendto/distinfo (props changed) head/deskutils/notecase/distinfo (props changed) head/deskutils/notification-daemon/distinfo (props changed) head/deskutils/notify-osd/distinfo (props changed) head/deskutils/ontv/distinfo (props changed) head/deskutils/openproj/distinfo (props changed) head/deskutils/org-mode.el/distinfo (props changed) head/deskutils/osmo/distinfo (props changed) head/deskutils/osynctool/distinfo (props changed) head/deskutils/p5-Goo/distinfo (props changed) head/deskutils/p5-ZConf-BGSet/distinfo (props changed) head/deskutils/p5-ZConf-Runner-GUI-GTK/distinfo (props changed) head/deskutils/p5-ZConf-Runner/distinfo (props changed) head/deskutils/pal/distinfo (props changed) head/deskutils/phpcollab/distinfo (props changed) head/deskutils/phpicalendar/distinfo (props changed) head/deskutils/phprojekt/distinfo (props changed) head/deskutils/plan/distinfo (props changed) head/deskutils/planner.el/distinfo (props changed) head/deskutils/planner/distinfo (props changed) head/deskutils/plans/distinfo (props changed) head/deskutils/plasma-applet-daisy/distinfo (props changed) head/deskutils/plasma-applet-fancytasks/distinfo (props changed) head/deskutils/plasma-applet-panelspacer/distinfo (props changed) head/deskutils/plasma-applet-playwolf/distinfo (props changed) head/deskutils/plasma-applet-serverstatuswidget/distinfo (props changed) head/deskutils/plasma-applet-simpleweatherforecast/distinfo (props changed) head/deskutils/plasma-applet-teacooker/distinfo (props changed) head/deskutils/plasma-applet-yawp/distinfo (props changed) head/deskutils/plopfolio/distinfo (props changed) head/deskutils/preferencepanes/distinfo (props changed) head/deskutils/preferences/distinfo (props changed) head/deskutils/py-vobject/distinfo (props changed) head/deskutils/pybookreader/distinfo (props changed) head/deskutils/pypanel/distinfo (props changed) head/deskutils/qlabels/distinfo (props changed) head/deskutils/qorganizer/distinfo (props changed) head/deskutils/qrfcview/distinfo (props changed) head/deskutils/qtm/distinfo (props changed) head/deskutils/remember.el/distinfo (props changed) head/deskutils/remind/distinfo (props changed) head/deskutils/rolo/distinfo (props changed) head/deskutils/rox-memo/distinfo (props changed) head/deskutils/silence/distinfo (props changed) head/deskutils/simpleagenda/distinfo (props changed) head/deskutils/simplegroupware/distinfo (props changed) head/deskutils/sliderule/distinfo (props changed) head/deskutils/splashsetter/distinfo (props changed) head/deskutils/sugarcrm/distinfo (props changed) head/deskutils/superswitcher/distinfo (props changed) head/deskutils/surrealtodo/distinfo (props changed) head/deskutils/systempreferences/distinfo (props changed) head/deskutils/tagutils/distinfo (props changed) head/deskutils/taskcoach/distinfo (props changed) head/deskutils/teapot/distinfo (props changed) head/deskutils/tel/distinfo (props changed) head/deskutils/thinkingrock/distinfo (props changed) head/deskutils/tnote/distinfo (props changed) head/deskutils/todo/distinfo (props changed) head/deskutils/tomboy-plugin-latex/distinfo (props changed) head/deskutils/tomboy-plugin-reminder/distinfo (props changed) head/deskutils/tomboy-plugin-todo/distinfo (props changed) head/deskutils/tomboy-plugin-wordcount/distinfo (props changed) head/deskutils/tomboy/distinfo (props changed) head/deskutils/toolboxkit/distinfo (props changed) head/deskutils/tpb/distinfo (props changed) head/deskutils/treeline/distinfo (props changed) head/deskutils/tuxcards/distinfo (props changed) head/deskutils/vboxgtk/distinfo (props changed) head/deskutils/virt-manager/distinfo (props changed) head/deskutils/vnc2flv/distinfo (props changed) head/deskutils/vym/distinfo (props changed) head/deskutils/wammu/distinfo (props changed) head/deskutils/when/distinfo (props changed) head/deskutils/wmpinboard/distinfo (props changed) head/deskutils/wyrd/distinfo (props changed) head/deskutils/x-tile/distinfo (props changed) head/deskutils/x026/distinfo (props changed) head/deskutils/xcalendar/distinfo (props changed) head/deskutils/xchm/distinfo (props changed) head/deskutils/xfce4-generic-slider/distinfo (props changed) head/deskutils/xfce4-notes-plugin/distinfo (props changed) head/deskutils/xfce4-notification-daemon/distinfo (props changed) head/deskutils/xmaddressbook/distinfo (props changed) head/deskutils/xmdiary/distinfo (props changed) head/deskutils/xneur/distinfo (props changed) head/deskutils/xpad-current/distinfo (props changed) head/deskutils/xpad/distinfo (props changed) head/deskutils/xpostit/distinfo (props changed) head/deskutils/xpostitPlus/distinfo (props changed) head/deskutils/xrolo/distinfo (props changed) head/deskutils/xwrits/distinfo (props changed) head/deskutils/znotes/distinfo (props changed) head/deskutils/zorro/distinfo (props changed) head/devel/ElectricFence/distinfo (props changed) head/devel/ORBit2/distinfo (props changed) head/devel/R-cran-Defaults/distinfo (props changed) head/devel/R-cran-Rcpp/distinfo (props changed) head/devel/R-cran-bitops/distinfo (props changed) head/devel/R-cran-caTools/distinfo (props changed) head/devel/R-cran-caret/distinfo (props changed) head/devel/R-cran-foreach/distinfo (props changed) head/devel/R-cran-gdata/distinfo (props changed) head/devel/R-cran-gtools/distinfo (props changed) head/devel/R-cran-iterators/distinfo (props changed) head/devel/R-cran-itertools/distinfo (props changed) head/devel/R-cran-memoise/distinfo (props changed) head/devel/R-cran-plyr/distinfo (props changed) head/devel/R-cran-proto/distinfo (props changed) head/devel/R-cran-reshape/distinfo (props changed) head/devel/R-cran-reshape2/distinfo (props changed) head/devel/SpecTcl/distinfo (props changed) head/devel/aap/distinfo (props changed) head/devel/ace+tao-doc/distinfo (props changed) head/devel/acme/distinfo (props changed) head/devel/activitymail/distinfo (props changed) head/devel/adabooch-doc-html/distinfo (props changed) head/devel/adabooch/distinfo (props changed) head/devel/adacurses/distinfo (props changed) head/devel/adasdl/distinfo (props changed) head/devel/adime/distinfo (props changed) head/devel/aegis/distinfo (props changed) head/devel/afay/distinfo (props changed) head/devel/alabastra/distinfo (props changed) head/devel/ald/distinfo (props changed) head/devel/alf/distinfo (props changed) head/devel/android-tools-adb/distinfo (props changed) head/devel/anjuta-extras/distinfo (props changed) head/devel/anjuta/distinfo (props changed) head/devel/antlr/distinfo (props changed) head/devel/antlrworks/distinfo (props changed) head/devel/apache-ant/distinfo (props changed) head/devel/apiextractor/distinfo (props changed) head/devel/apr1/distinfo (props changed) head/devel/apr2/distinfo (props changed) head/devel/arduino-glcd/distinfo (props changed) head/devel/arduino-irremote/distinfo (props changed) head/devel/arduino-mk/distinfo (props changed) head/devel/argp-standalone/distinfo (props changed) head/devel/argtable/distinfo (props changed) head/devel/arm-eabi-binutils/distinfo (props changed) head/devel/aros-sdk/distinfo (props changed) head/devel/art/distinfo (props changed) head/devel/as31/distinfo (props changed) head/devel/asdlgen/distinfo (props changed) head/devel/asl/distinfo (props changed) head/devel/asmutils/distinfo (props changed) head/devel/asmx/distinfo (props changed) head/devel/astah-community/distinfo (props changed) head/devel/atlas/distinfo (props changed) head/devel/autobook/distinfo (props changed) head/devel/autoconf-archive/distinfo (props changed) head/devel/autoconf/distinfo (props changed) head/devel/autoconf213/distinfo (props changed) head/devel/autodist/distinfo (props changed) head/devel/autogen/distinfo (props changed) head/devel/automake14/distinfo (props changed) head/devel/automoc4/distinfo (props changed) head/devel/avalon-framework/distinfo (props changed) head/devel/avarice/distinfo (props changed) head/devel/avce00/distinfo (props changed) head/devel/avltree/distinfo (props changed) head/devel/avr-binutils/distinfo (props changed) head/devel/avr-gcc/distinfo (props changed) head/devel/avr-gdb/distinfo (props changed) head/devel/avr-libc/distinfo (props changed) head/devel/avra/distinfo (props changed) head/devel/avrdude/distinfo (props changed) head/devel/avro-c/distinfo (props changed) head/devel/avro-cpp/distinfo (props changed) head/devel/bam/distinfo (props changed) head/devel/baz/distinfo (props changed) head/devel/bcc/distinfo (props changed) head/devel/bcpp/distinfo (props changed) head/devel/beautifyphp/distinfo (props changed) head/devel/bennugd-core/distinfo (props changed) head/devel/bennugd-modules/distinfo (props changed) head/devel/bglibs/distinfo (props changed) head/devel/bicyclerepair/distinfo (props changed) head/devel/binutils/distinfo (props changed) head/devel/bison/distinfo (props changed) head/devel/bisoncpp/distinfo (props changed) head/devel/blame/distinfo (props changed) head/devel/bmkdep/distinfo (props changed) head/devel/bncsutil-ghost++/distinfo (props changed) head/devel/bnf/distinfo (props changed) head/devel/boaconstructor/distinfo (props changed) head/devel/boehm-gc/distinfo (props changed) head/devel/boost-docs/distinfo (props changed) head/devel/boost-jam/distinfo (props changed) head/devel/boost-libs/distinfo (props changed) head/devel/boost-python-libs/distinfo (props changed) head/devel/boost_build/distinfo (props changed) head/devel/bouml-doc/distinfo (props changed) head/devel/bsdbuild/distinfo (props changed) head/devel/bsdcflow/distinfo (props changed) head/devel/bsdlibdwarf/distinfo (props changed) head/devel/bufferpool/distinfo (props changed) head/devel/bug-buddy/distinfo (props changed) head/devel/bugzilla40/distinfo (props changed) head/devel/build/distinfo (props changed) head/devel/buildapp/distinfo (props changed) head/devel/buildtool-doc/distinfo (props changed) head/devel/buildtool/distinfo (props changed) head/devel/bullet/distinfo (props changed) head/devel/bunny/distinfo (props changed) head/devel/byaccj/distinfo (props changed) head/devel/bzapi/distinfo (props changed) head/devel/bzr-builder/distinfo (props changed) head/devel/bzr-colo/distinfo (props changed) head/devel/bzr-explorer/distinfo (props changed) head/devel/bzr-externals/distinfo (props changed) head/devel/bzr-fastimport/distinfo (props changed) head/devel/bzr-git/distinfo (props changed) head/devel/bzr-grep/distinfo (props changed) head/devel/bzr-gtk/distinfo (props changed) head/devel/bzr-loom/distinfo (props changed) head/devel/bzr-pipeline/distinfo (props changed) head/devel/bzr-rewrite/distinfo (props changed) head/devel/bzr-scmproj/distinfo (props changed) head/devel/bzr-stats/distinfo (props changed) head/devel/bzr-svn/distinfo (props changed) head/devel/bzr-upload/distinfo (props changed) head/devel/bzr/distinfo (props changed) head/devel/bzrtools/distinfo (props changed) head/devel/c-unit/distinfo (props changed) head/devel/c4/distinfo (props changed) head/devel/calibrator/distinfo (props changed) head/devel/cbind/distinfo (props changed) head/devel/cbrowser/distinfo (props changed) head/devel/cc65/distinfo (props changed) head/devel/ccache/distinfo (props changed) head/devel/cccc/distinfo (props changed) head/devel/ccdoc/distinfo (props changed) head/devel/ccrtp/distinfo (props changed) head/devel/cdash/distinfo (props changed) head/devel/cdecl/distinfo (props changed) head/devel/cdialog/distinfo (props changed) head/devel/cdk/distinfo (props changed) head/devel/cedet/distinfo (props changed) head/devel/cflow/distinfo (props changed) head/devel/cflow2vcg/distinfo (props changed) head/devel/cgdb/distinfo (props changed) head/devel/cgilib/distinfo (props changed) head/devel/cgit/distinfo (props changed) head/devel/cgprof/distinfo (props changed) head/devel/charva/distinfo (props changed) head/devel/checkheaders/distinfo (props changed) head/devel/chrpath/distinfo (props changed) head/devel/cityhash/distinfo (props changed) head/devel/cl-alexandria/distinfo (props changed) head/devel/cl-asdf/distinfo (props changed) head/devel/cl-cffi/distinfo (props changed) head/devel/cl-infix/distinfo (props changed) head/devel/cl-port/distinfo (props changed) head/devel/cl-split-sequence/distinfo (props changed) head/devel/cl-trivial-features/distinfo (props changed) head/devel/cl-trivial-gray-streams/distinfo (props changed) head/devel/cl-uffi/distinfo (props changed) head/devel/cld/distinfo (props changed) head/devel/clewn/distinfo (props changed) head/devel/clig/distinfo (props changed) head/devel/clint/distinfo (props changed) head/devel/clisp-hyperspec/distinfo (props changed) head/devel/cmph/distinfo (props changed) head/devel/cmunge/distinfo (props changed) head/devel/cobf/distinfo (props changed) head/devel/coccinelle/distinfo (props changed) head/devel/colorgcc/distinfo (props changed) head/devel/colormake/distinfo (props changed) head/devel/combat/distinfo (props changed) head/devel/commit-patch/distinfo (props changed) head/devel/common_lib/distinfo (props changed) head/devel/commoncpp/distinfo (props changed) head/devel/compiler-rt/distinfo (props changed) head/devel/compiz-bcop/distinfo (props changed) head/devel/configkit/distinfo (props changed) head/devel/cons-test/distinfo (props changed) head/devel/cons/distinfo (props changed) head/devel/cook/distinfo (props changed) head/devel/covtool/distinfo (props changed) head/devel/cowlib/distinfo (props changed) head/devel/cpan-upload-http/distinfo (props changed) head/devel/cpan-upload/distinfo (props changed) head/devel/cppi/distinfo (props changed) head/devel/cppunit/distinfo (props changed) head/devel/cproto/distinfo (props changed) head/devel/cpuflags/distinfo (props changed) head/devel/cross-binutils/distinfo (props changed) head/devel/cross-gcc/distinfo (props changed) head/devel/cross-gdb/distinfo (props changed) head/devel/cscout/distinfo (props changed) head/devel/csmith/distinfo (props changed) head/devel/csoap/distinfo (props changed) head/devel/cstringbuffer/distinfo (props changed) head/devel/ctags/distinfo (props changed) head/devel/cunit/distinfo (props changed) head/devel/cut/distinfo (props changed) head/devel/cutils/distinfo (props changed) head/devel/cutter/distinfo (props changed) head/devel/cvs+ipv6/distinfo (props changed) head/devel/cvs-devel/distinfo (props changed) head/devel/cvs-syncmail/distinfo (props changed) head/devel/cvs/distinfo (props changed) head/devel/cvs2cl/distinfo (props changed) head/devel/cvs2darcs/distinfo (props changed) head/devel/cvs2html/distinfo (props changed) head/devel/cvs2p4/distinfo (props changed) head/devel/cvs2svn/distinfo (props changed) head/devel/cvsadmin/distinfo (props changed) head/devel/cvsbook/distinfo (props changed) head/devel/cvschangelogbuilder/distinfo (props changed) head/devel/cvschk/distinfo (props changed) head/devel/cvsd/distinfo (props changed) head/devel/cvsdadm/distinfo (props changed) head/devel/cvsdelta/distinfo (props changed) head/devel/cvsdiff2patch/distinfo (props changed) head/devel/cvsgraph/distinfo (props changed) head/devel/cvslines/distinfo (props changed) head/devel/cvsmonitor/distinfo (props changed) head/devel/cvsplot/distinfo (props changed) head/devel/cvsps-devel/distinfo (props changed) head/devel/cvsps/distinfo (props changed) head/devel/cvsspam/distinfo (props changed) head/devel/cvsstat/distinfo (props changed) head/devel/cvstrac/distinfo (props changed) head/devel/cvsweb/distinfo (props changed) head/devel/cvsweb3/distinfo (props changed) head/devel/cvswrap/distinfo (props changed) head/devel/cweb/distinfo (props changed) head/devel/cxmon/distinfo (props changed) head/devel/cxxtest/distinfo (props changed) head/devel/cxxtools/distinfo (props changed) head/devel/d-feet/distinfo (props changed) head/devel/darts/distinfo (props changed) head/devel/dasm/distinfo (props changed) head/devel/datadraw/distinfo (props changed) head/devel/dbus-sharp-glib/distinfo (props changed) head/devel/dcmtk/distinfo (props changed) head/devel/ddd/distinfo (props changed) head/devel/deheader/distinfo (props changed) head/devel/delta/distinfo (props changed) head/devel/dev86/distinfo (props changed) head/devel/devhelp/distinfo (props changed) head/devel/devtodo/distinfo (props changed) head/devel/dfuife-curses/distinfo (props changed) head/devel/dia2code/distinfo (props changed) head/devel/ding-libs/distinfo (props changed) head/devel/directfb/distinfo (props changed) head/devel/dissy/distinfo (props changed) head/devel/distcc/distinfo (props changed) head/devel/distel/distinfo (props changed) head/devel/ditrack/distinfo (props changed) head/devel/djgpp-binutils/distinfo (props changed) head/devel/djgpp-crx/distinfo (props changed) head/devel/dmake/distinfo (props changed) head/devel/dmalloc/distinfo (props changed) head/devel/dmucs/distinfo (props changed) head/devel/doctorj/distinfo (props changed) head/devel/dotconf++/distinfo (props changed) head/devel/dotconf/distinfo (props changed) head/devel/doxygen/distinfo (props changed) head/devel/dprog/distinfo (props changed) head/devel/dragon/distinfo (props changed) head/devel/dreampie/distinfo (props changed) head/devel/drpython/distinfo (props changed) head/devel/duplo/distinfo (props changed) head/devel/dwarfdump/distinfo (props changed) head/devel/dxa65/distinfo (props changed) head/devel/dyncall/distinfo (props changed) head/devel/e00compr/distinfo (props changed) head/devel/e4graph/distinfo (props changed) head/devel/e_dbus/distinfo (props changed) head/devel/easygit/distinfo (props changed) head/devel/ebnf2yacc/distinfo (props changed) head/devel/ecb/distinfo (props changed) head/devel/eclipse-eclemma/distinfo (props changed) head/devel/ecore-file/distinfo (props changed) head/devel/ecore-ipc/distinfo (props changed) head/devel/ecore-main/distinfo (props changed) head/devel/eet/distinfo (props changed) head/devel/eggdbus/distinfo (props changed) head/devel/egypt/distinfo (props changed) head/devel/eieio/distinfo (props changed) head/devel/eiffelstudio/distinfo (props changed) head/devel/eina/distinfo (props changed) head/devel/eio/distinfo (props changed) head/devel/elf/distinfo (props changed) head/devel/elfio/distinfo (props changed) head/devel/elfkickers/distinfo (props changed) head/devel/elfrc/distinfo (props changed) head/devel/elfsh/distinfo (props changed) head/devel/elftoaout/distinfo (props changed) head/devel/elib/distinfo (props changed) head/devel/entity/distinfo (props changed) head/devel/epm/distinfo (props changed) head/devel/epydoc/distinfo (props changed) head/devel/eric4/distinfo (props changed) head/devel/esdl/distinfo (props changed) head/devel/etl/distinfo (props changed) head/devel/eventxx/distinfo (props changed) head/devel/evolution-gconf-tools/distinfo (props changed) head/devel/exercisix/distinfo (props changed) head/devel/f77flow/distinfo (props changed) head/devel/fam/distinfo (props changed) head/devel/fampp/distinfo (props changed) head/devel/fastcrc/distinfo (props changed) head/devel/fc++/distinfo (props changed) head/devel/ffcall/distinfo (props changed) head/devel/fga/distinfo (props changed) head/devel/fhist/distinfo (props changed) head/devel/fib/distinfo (props changed) head/devel/firmware-utils/distinfo (props changed) head/devel/fistgen/distinfo (props changed) head/devel/flex-sdk/distinfo (props changed) head/devel/flex-sdk2/distinfo (props changed) head/devel/flex-sdk35/distinfo (props changed) head/devel/flex_compiler_shell/distinfo (props changed) head/devel/flexdock/distinfo (props changed) head/devel/flexjson/distinfo (props changed) head/devel/flick/distinfo (props changed) head/devel/flickrnet/distinfo (props changed) head/devel/flowdesigner/distinfo (props changed) head/devel/flyspray/distinfo (props changed) head/devel/fmake/distinfo (props changed) head/devel/fnccheck/distinfo (props changed) head/devel/fnorb/distinfo (props changed) head/devel/fortran-utils/distinfo (props changed) head/devel/fortytwo-encore/distinfo (props changed) head/devel/fossil/distinfo (props changed) head/devel/fpp/distinfo (props changed) head/devel/freeocl/distinfo (props changed) head/devel/frink/distinfo (props changed) head/devel/fsmgenerator/distinfo (props changed) head/devel/ftjam/distinfo (props changed) head/devel/ftnchek/distinfo (props changed) head/devel/fuel/distinfo (props changed) head/devel/fujaba/distinfo (props changed) head/devel/funnelweb/distinfo (props changed) head/devel/g-wrap/distinfo (props changed) head/devel/gaa/distinfo (props changed) head/devel/gamin/distinfo (props changed) head/devel/gauche-readline/distinfo (props changed) head/devel/gaul/distinfo (props changed) head/devel/gazpacho/distinfo (props changed) head/devel/gccmakedep/distinfo (props changed) head/devel/gconf2/distinfo (props changed) head/devel/gconfmm26/distinfo (props changed) head/devel/gdb66/distinfo (props changed) head/devel/gdbmods/distinfo (props changed) head/devel/gearmand-devel/distinfo (props changed) head/devel/gearmand/distinfo (props changed) head/devel/gecode/distinfo (props changed) head/devel/generate/distinfo (props changed) head/devel/generatorrunner/distinfo (props changed) head/devel/gengetopt/distinfo (props changed) head/devel/genproto/distinfo (props changed) head/devel/geoip-java/distinfo (props changed) head/devel/gettext-lint/distinfo (props changed) head/devel/gettext-msghack/distinfo (props changed) head/devel/giggle/distinfo (props changed) head/devel/gindent/distinfo (props changed) head/devel/gio-sharp/distinfo (props changed) head/devel/gitg/distinfo (props changed) head/devel/gitg0/distinfo (props changed) head/devel/glade2/distinfo (props changed) head/devel/glademm/distinfo (props changed) head/devel/glib-java/distinfo (props changed) head/devel/glib12/distinfo (props changed) head/devel/global/distinfo (props changed) head/devel/glog/distinfo (props changed) head/devel/glrparser/distinfo (props changed) head/devel/glui/distinfo (props changed) head/devel/gmake/distinfo (props changed) head/devel/gnatpython/distinfo (props changed) head/devel/gnome-js-common/distinfo (props changed) head/devel/gnome-vfs-monikers/distinfo (props changed) head/devel/gnome-vfs/distinfo (props changed) head/devel/gnome-vfsmm/distinfo (props changed) head/devel/gnucflow/distinfo (props changed) head/devel/gnulib/distinfo (props changed) head/devel/gnulibiberty/distinfo (props changed) head/devel/gnustep-make/distinfo (props changed) head/devel/go-pretty/distinfo (props changed) head/devel/gob2/distinfo (props changed) head/devel/goffice/distinfo (props changed) head/devel/google-gdata/distinfo (props changed) head/devel/google-sparsehash/distinfo (props changed) head/devel/google-styleguide/distinfo (props changed) head/devel/googlemock/distinfo (props changed) head/devel/googletest/distinfo (props changed) head/devel/goprotobuf/distinfo (props changed) head/devel/gorm/distinfo (props changed) head/devel/gperf/distinfo (props changed) head/devel/gprbuild/distinfo (props changed) head/devel/gps/distinfo (props changed) head/devel/gpsim/distinfo (props changed) head/devel/gsoap/distinfo (props changed) head/devel/gtgt/distinfo (props changed) head/devel/gtkparasite/distinfo (props changed) head/devel/gtranslator/distinfo (props changed) head/devel/guichan/distinfo (props changed) head/devel/guikachu/distinfo (props changed) head/devel/guiloader-c++/distinfo (props changed) head/devel/guiloader/distinfo (props changed) head/devel/gwenhywfar/distinfo (props changed) head/devel/gzstream/distinfo (props changed) head/devel/hachoir-core/distinfo (props changed) head/devel/hachoir-parser/distinfo (props changed) head/devel/hachoir-regex/distinfo (props changed) head/devel/hapy/distinfo (props changed) head/devel/hcs12mem/distinfo (props changed) head/devel/hexcompare/distinfo (props changed) head/devel/hgsvn/distinfo (props changed) head/devel/hgview/distinfo (props changed) head/devel/highlighterkit/distinfo (props changed) head/devel/horde-content/distinfo (props changed) head/devel/horde-timeobjects/distinfo (props changed) head/devel/horde-whups/distinfo (props changed) head/devel/horde3-chora/distinfo (props changed) head/devel/horde3-whups/distinfo (props changed) head/devel/hp48cc/distinfo (props changed) head/devel/hp48xgcc/distinfo (props changed) head/devel/hs-BNFC/distinfo (props changed) head/devel/hs-Boolean/distinfo (props changed) head/devel/hs-ConfigFile/distinfo (props changed) head/devel/hs-HUnit/distinfo (props changed) head/devel/hs-IORefCAS/distinfo (props changed) head/devel/hs-IfElse/distinfo (props changed) head/devel/hs-MaybeT/distinfo (props changed) head/devel/hs-MemoTrie/distinfo (props changed) head/devel/hs-MissingH/distinfo (props changed) head/devel/hs-MonadCatchIO-mtl/distinfo (props changed) head/devel/hs-MonadCatchIO-transformers/distinfo (props changed) head/devel/hs-ObjectName/distinfo (props changed) head/devel/hs-PSQueue/distinfo (props changed) head/devel/hs-QuickCheck/distinfo (props changed) head/devel/hs-StateVar/distinfo (props changed) head/devel/hs-Stream/distinfo (props changed) head/devel/hs-Tensor/distinfo (props changed) head/devel/hs-TypeCompose/distinfo (props changed) head/devel/hs-abstract-deque/distinfo (props changed) head/devel/hs-abstract-par/distinfo (props changed) head/devel/hs-alex/distinfo (props changed) head/devel/hs-ansi-terminal/distinfo (props changed) head/devel/hs-ansi-wl-pprint/distinfo (props changed) head/devel/hs-arrows/distinfo (props changed) head/devel/hs-asn1-data/distinfo (props changed) head/devel/hs-attempt/distinfo (props changed) head/devel/hs-base-unicode-symbols/distinfo (props changed) head/devel/hs-base16-bytestring/distinfo (props changed) head/devel/hs-base64-bytestring/distinfo (props changed) head/devel/hs-bits-atomic/distinfo (props changed) head/devel/hs-blaze-builder-conduit/distinfo (props changed) head/devel/hs-blaze-builder-enumerator/distinfo (props changed) head/devel/hs-blaze-builder/distinfo (props changed) head/devel/hs-blaze-textual/distinfo (props changed) head/devel/hs-bloomfilter/distinfo (props changed) head/devel/hs-bsd-sysctl/distinfo (props changed) head/devel/hs-byteorder/distinfo (props changed) head/devel/hs-bytestring-nums/distinfo (props changed) head/devel/hs-c2hs/distinfo (props changed) head/devel/hs-cabal-install/distinfo (props changed) head/devel/hs-cereal/distinfo (props changed) head/devel/hs-checkers/distinfo (props changed) head/devel/hs-cmdargs/distinfo (props changed) head/devel/hs-conduit/distinfo (props changed) head/devel/hs-configurator/distinfo (props changed) head/devel/hs-convertible/distinfo (props changed) head/devel/hs-cpphs/distinfo (props changed) head/devel/hs-darcs/distinfo (props changed) head/devel/hs-data-default/distinfo (props changed) head/devel/hs-datetime/distinfo (props changed) head/devel/hs-directory-tree/distinfo (props changed) head/devel/hs-dlist/distinfo (props changed) head/devel/hs-drift/distinfo (props changed) head/devel/hs-edit-distance/distinfo (props changed) head/devel/hs-enumerator/distinfo (props changed) head/devel/hs-failure/distinfo (props changed) head/devel/hs-fast-logger/distinfo (props changed) head/devel/hs-fgl/distinfo (props changed) head/devel/hs-file-embed/distinfo (props changed) head/devel/hs-filemanip/distinfo (props changed) head/devel/hs-filestore/distinfo (props changed) head/devel/hs-filesystem-conduit/distinfo (props changed) head/devel/hs-gconf/distinfo (props changed) head/devel/hs-ghc-events/distinfo (props changed) head/devel/hs-ghc-mtl/distinfo (props changed) head/devel/hs-ghc-paths/distinfo (props changed) head/devel/hs-gio/distinfo (props changed) head/devel/hs-git-annex/distinfo (props changed) head/devel/hs-glade/distinfo (props changed) head/devel/hs-glib/distinfo (props changed) head/devel/hs-gtk2hs-buildtools/distinfo (props changed) head/devel/hs-haddock/distinfo (props changed) head/devel/hs-happy/distinfo (props changed) head/devel/hs-hashable/distinfo (props changed) head/devel/hs-hashed-storage/distinfo (props changed) head/devel/hs-hashtables/distinfo (props changed) head/devel/hs-haskeline/distinfo (props changed) head/devel/hs-haskell-src-exts/distinfo (props changed) head/devel/hs-haskell-src/distinfo (props changed) head/devel/hs-hastache/distinfo (props changed) head/devel/hs-hint/distinfo (props changed) head/devel/hs-hlibev/distinfo (props changed) head/devel/hs-hoogle/distinfo (props changed) head/devel/hs-hslogger/distinfo (props changed) head/devel/hs-hspec/distinfo (props changed) head/devel/hs-language-c/distinfo (props changed) head/devel/hs-language-javascript/distinfo (props changed) head/devel/hs-largeword/distinfo (props changed) head/devel/hs-lazysmallcheck/distinfo (props changed) head/devel/hs-lifted-base/distinfo (props changed) head/devel/hs-logict/distinfo (props changed) head/devel/hs-mmap/distinfo (props changed) head/devel/hs-monad-control/distinfo (props changed) head/devel/hs-monad-par-extras/distinfo (props changed) head/devel/hs-monad-par/distinfo (props changed) head/devel/hs-mtl/distinfo (props changed) head/devel/hs-mueval/distinfo (props changed) head/devel/hs-murmur-hash/distinfo (props changed) head/devel/hs-parallel/distinfo (props changed) head/devel/hs-pcre-light/distinfo (props changed) head/devel/hs-pool-conduit/distinfo (props changed) head/devel/hs-primitive/distinfo (props changed) head/devel/hs-random/distinfo (props changed) head/devel/hs-ranges/distinfo (props changed) head/devel/hs-readline/distinfo (props changed) head/devel/hs-resource-pool/distinfo (props changed) head/devel/hs-resourcet/distinfo (props changed) head/devel/hs-safe/distinfo (props changed) head/devel/hs-show/distinfo (props changed) head/devel/hs-silently/distinfo (props changed) head/devel/hs-smallcheck/distinfo (props changed) head/devel/hs-split/distinfo (props changed) head/devel/hs-stm/distinfo (props changed) head/devel/hs-strict/distinfo (props changed) head/devel/hs-syb-with-class-instances-text/distinfo (props changed) head/devel/hs-syb-with-class/distinfo (props changed) head/devel/hs-syb/distinfo (props changed) head/devel/hs-system-fileio/distinfo (props changed) head/devel/hs-system-filepath/distinfo (props changed) head/devel/hs-tagged/distinfo (props changed) head/devel/hs-temporary/distinfo (props changed) head/devel/hs-terminfo/distinfo (props changed) head/devel/hs-test-framework-hunit/distinfo (props changed) head/devel/hs-test-framework-quickcheck2/distinfo (props changed) head/devel/hs-test-framework/distinfo (props changed) head/devel/hs-testpack/distinfo (props changed) head/devel/hs-text/distinfo (props changed) head/devel/hs-threadscope/distinfo (props changed) head/devel/hs-transformers-base/distinfo (props changed) head/devel/hs-transformers/distinfo (props changed) head/devel/hs-unamb/distinfo (props changed) head/devel/hs-uniplate/distinfo (props changed) head/devel/hs-unix-compat/distinfo (props changed) head/devel/hs-unordered-containers/distinfo (props changed) head/devel/hs-utf8-light/distinfo (props changed) head/devel/hs-utf8-string/distinfo (props changed) head/devel/hs-utility-ht/distinfo (props changed) head/devel/hs-uuagc-bootstrap/distinfo (props changed) head/devel/hs-uuagc-cabal/distinfo (props changed) head/devel/hs-uuagc/distinfo (props changed) head/devel/hs-uulib/distinfo (props changed) head/devel/hs-vault/distinfo (props changed) head/devel/hs-vector-algorithms/distinfo (props changed) head/devel/hs-vector/distinfo (props changed) head/devel/hs-void/distinfo (props changed) head/devel/htable/distinfo (props changed) head/devel/hyena/distinfo (props changed) head/devel/icmake/distinfo (props changed) head/devel/icu/distinfo (props changed) head/devel/idutils/distinfo (props changed) head/devel/ifd-test/distinfo (props changed) head/devel/imake/distinfo (props changed) head/devel/inilib/distinfo (props changed) head/devel/iniparser/distinfo (props changed) head/devel/initutil/distinfo (props changed) head/devel/ioncube/distinfo (props changed) head/devel/ipython/distinfo (props changed) head/devel/ireport/distinfo (props changed) head/devel/itext/distinfo (props changed) head/devel/ixlib/distinfo (props changed) head/devel/jakarta-commons-configuration/distinfo (props changed) head/devel/jakarta-commons-daemon/distinfo (props changed) head/devel/jakarta-commons-io/distinfo (props changed) head/devel/jakarta-commons-jxpath/distinfo (props changed) head/devel/jakarta-commons-modeler/distinfo (props changed) head/devel/jam/distinfo (props changed) head/devel/jansson/distinfo (props changed) head/devel/java-findbugs/distinfo (props changed) head/devel/java-util-concurrent/distinfo (props changed) head/devel/javolution/distinfo (props changed) head/devel/jclassinfo/distinfo (props changed) head/devel/jcmdline/distinfo (props changed) head/devel/jech-dht/distinfo (props changed) head/devel/jenkins/distinfo (props changed) head/devel/jep/distinfo (props changed) head/devel/jiic/distinfo (props changed) head/devel/jline/distinfo (props changed) head/devel/jna/distinfo (props changed) head/devel/jrtplib/distinfo (props changed) head/devel/jsap/distinfo (props changed) head/devel/jsl/distinfo (props changed) head/devel/json-c/distinfo (props changed) head/devel/jtag/distinfo (props changed) head/devel/judy/distinfo (props changed) head/devel/jzmq/distinfo (props changed) head/devel/kcachegrind/distinfo (props changed) head/devel/kdbg/distinfo (props changed) head/devel/kdesvn-kde4/distinfo (props changed) head/devel/kdevelop-pg-qt/distinfo (props changed) head/devel/kickassembler/distinfo (props changed) head/devel/kimwitu/distinfo (props changed) head/devel/lasi/distinfo (props changed) head/devel/lcov/distinfo (props changed) head/devel/leaktracer/distinfo (props changed) head/devel/lemon/distinfo (props changed) head/devel/lfcbase/distinfo (props changed) head/devel/lfcxml/distinfo (props changed) head/devel/libIDL/distinfo (props changed) head/devel/libPropList/distinfo (props changed) head/devel/libafterbase/distinfo (props changed) head/devel/libarena/distinfo (props changed) head/devel/libassa/distinfo (props changed) head/devel/libassetml/distinfo (props changed) head/devel/libast/distinfo (props changed) head/devel/libatomic_ops/distinfo (props changed) head/devel/libaura/distinfo (props changed) head/devel/libavl/distinfo (props changed) head/devel/libbegemot/distinfo (props changed) head/devel/libbfd/distinfo (props changed) head/devel/libbinio/distinfo (props changed) head/devel/libbnr/distinfo (props changed) head/devel/libbobcat/distinfo (props changed) head/devel/libbonobo/distinfo (props changed) head/devel/libburn/distinfo (props changed) head/devel/libccid/distinfo (props changed) head/devel/libcfg/distinfo (props changed) head/devel/libcfu/distinfo (props changed) head/devel/libchipcard/distinfo (props changed) head/devel/libcidr/distinfo (props changed) head/devel/libcii/distinfo (props changed) head/devel/libclaw/distinfo (props changed) head/devel/libcli/distinfo (props changed) head/devel/libconfig/distinfo (props changed) head/devel/libconfuse/distinfo (props changed) head/devel/libcwd/distinfo (props changed) head/devel/libdaemon/distinfo (props changed) head/devel/libdasm/distinfo (props changed) head/devel/libdatrie/distinfo (props changed) head/devel/libdbusmenu-qt/distinfo (props changed) head/devel/libdfui/distinfo (props changed) head/devel/libdict/distinfo (props changed) head/devel/libdisasm/distinfo (props changed) head/devel/libdisorder/distinfo (props changed) head/devel/libdispatch/distinfo (props changed) head/devel/libdlmalloc/distinfo (props changed) head/devel/libdlna/distinfo (props changed) head/devel/libdnsres/distinfo (props changed) head/devel/libdouble-conversion/distinfo (props changed) head/devel/libds/distinfo (props changed) head/devel/libdsp/distinfo (props changed) head/devel/libdwarf/distinfo (props changed) head/devel/libedit/distinfo (props changed) head/devel/libee/distinfo (props changed) head/devel/libelf/distinfo (props changed) head/devel/libestr/distinfo (props changed) head/devel/libev/distinfo (props changed) head/devel/libevent/distinfo (props changed) head/devel/libevent2/distinfo (props changed) head/devel/libewf/distinfo (props changed) head/devel/libexecinfo/distinfo (props changed) head/devel/libffi/distinfo (props changed) head/devel/libfortuna/distinfo (props changed) head/devel/libfreefare/distinfo (props changed) head/devel/libg19/distinfo (props changed) head/devel/libg19draw/distinfo (props changed) head/devel/libgalago/distinfo (props changed) head/devel/libgamepad/distinfo (props changed) head/devel/libgconf-java/distinfo (props changed) head/devel/libgdata/distinfo (props changed) head/devel/libgetline/distinfo (props changed) head/devel/libghthash/distinfo (props changed) head/devel/libgii/distinfo (props changed) head/devel/libgit2/distinfo (props changed) head/devel/libglade-java/distinfo (props changed) head/devel/libglade2/distinfo (props changed) head/devel/libglademm24/distinfo (props changed) head/devel/libgpc/distinfo (props changed) head/devel/libgta/distinfo (props changed) head/devel/libgutenfetch/distinfo (props changed) head/devel/libhash/distinfo (props changed) head/devel/libhid/distinfo (props changed) head/devel/libhoard/distinfo (props changed) head/devel/libinotify/distinfo (props changed) head/devel/libiqxmlrpc/distinfo (props changed) head/devel/libisofs/distinfo (props changed) head/devel/libixp/distinfo (props changed) head/devel/libk8055/distinfo (props changed) head/devel/libklel/distinfo (props changed) head/devel/liblas/distinfo (props changed) head/devel/liblcfg/distinfo (props changed) head/devel/libleaftag/distinfo (props changed) head/devel/liblogging/distinfo (props changed) head/devel/liblouis/distinfo (props changed) head/devel/liblouisxml/distinfo (props changed) head/devel/libmaa/distinfo (props changed) head/devel/libmatheval/distinfo (props changed) head/devel/libmba/distinfo (props changed) head/devel/libmcs/distinfo (props changed) head/devel/libmimedir/distinfo (props changed) head/devel/libmonetra/distinfo (props changed) head/devel/libmowgli/distinfo (props changed) head/devel/libmpcbdm/distinfo (props changed) head/devel/libmsocket/distinfo (props changed) head/devel/libmtrie/distinfo (props changed) head/devel/libnaji/distinfo (props changed) head/devel/libnfc/distinfo (props changed) head/devel/libnxt/distinfo (props changed) head/devel/liboil/distinfo (props changed) head/devel/libol/distinfo (props changed) head/devel/libole2/distinfo (props changed) head/devel/liboobs/distinfo (props changed) head/devel/liboop/distinfo (props changed) head/devel/libopendaap/distinfo (props changed) head/devel/libopensync022/distinfo (props changed) head/devel/libopkele/distinfo (props changed) head/devel/libowfat/distinfo (props changed) head/devel/libpafe-ruby/distinfo (props changed) head/devel/libpafe/distinfo (props changed) head/devel/libparserutils/distinfo (props changed) head/devel/libpasori/distinfo (props changed) head/devel/libpciaccess/distinfo (props changed) head/devel/libpdel/distinfo (props changed) head/devel/libpeak/distinfo (props changed) head/devel/libpff/distinfo (props changed) head/devel/libphish/distinfo (props changed) head/devel/libphk/distinfo (props changed) head/devel/libpthread-stubs/distinfo (props changed) head/devel/libreadline-java/distinfo (props changed) head/devel/libredblack/distinfo (props changed) head/devel/librelp/distinfo (props changed) head/devel/librest/distinfo (props changed) head/devel/libruin/distinfo (props changed) head/devel/libs11n/distinfo (props changed) head/devel/libshhmsg/distinfo (props changed) head/devel/libshhopt/distinfo (props changed) head/devel/libsigc++12/distinfo (props changed) head/devel/libsigcx/distinfo (props changed) head/devel/libsigrok/distinfo (props changed) head/devel/libsigrokdecode/distinfo (props changed) head/devel/libsigsegv/distinfo (props changed) head/devel/libslang2/distinfo (props changed) head/devel/libstatgrab/distinfo (props changed) head/devel/libstrfunc/distinfo (props changed) head/devel/libstroke/distinfo (props changed) head/devel/libsysinfo/distinfo (props changed) head/devel/libtai/distinfo (props changed) head/devel/libtap/distinfo (props changed) head/devel/libtar/distinfo (props changed) head/devel/libtecla/distinfo (props changed) head/devel/libthai/distinfo (props changed) head/devel/libtool/distinfo (props changed) head/devel/libtpl/distinfo (props changed) head/devel/libublio/distinfo (props changed) head/devel/libukcprog/distinfo (props changed) head/devel/libunicode/distinfo (props changed) head/devel/libuninum/distinfo (props changed) head/devel/libunistring/distinfo (props changed) head/devel/libunwind/distinfo (props changed) head/devel/libvc/distinfo (props changed) head/devel/libvirt-glib/distinfo (props changed) head/devel/libvirt-java/distinfo (props changed) head/devel/libvolume_id/distinfo (props changed) head/devel/libvshadow/distinfo (props changed) head/devel/libwfut/distinfo (props changed) head/devel/libx86/distinfo (props changed) head/devel/libxalloc/distinfo (props changed) head/devel/libxs/distinfo (props changed) head/devel/libytnef/distinfo (props changed) head/devel/libzrtpcpp/distinfo (props changed) head/devel/linux-f10-allegro/distinfo.i386 (props changed) head/devel/linux-f10-dbus-glib/distinfo.i386 (props changed) head/devel/linux-f10-dbus-libs/distinfo.i386 (props changed) head/devel/linux-f10-libglade2/distinfo.i386 (props changed) head/devel/linux-f10-libsigc++20/distinfo.i386 (props changed) head/devel/linux-f10-ncurses-base/distinfo.i386 (props changed) head/devel/linux-f10-nspr/distinfo.i386 (props changed) head/devel/linux-f10-sdl12/distinfo.i386 (props changed) head/devel/linux-kmod-compat/distinfo (props changed) head/devel/linux_kdump/distinfo (props changed) head/devel/lion/distinfo (props changed) head/devel/llvm-devel/distinfo (props changed) head/devel/llvm31/distinfo (props changed) head/devel/llvm32/distinfo (props changed) head/devel/llvm33/distinfo (props changed) head/devel/llvm34/distinfo (props changed) head/devel/lmdbg/distinfo (props changed) head/devel/lndir/distinfo (props changed) head/devel/log4cplus/distinfo (props changed) head/devel/log4cpp/distinfo (props changed) head/devel/log4cxx/distinfo (props changed) head/devel/log4j/distinfo (props changed) head/devel/log4net/distinfo (props changed) head/devel/log4sh/distinfo (props changed) head/devel/log4shib/distinfo (props changed) head/devel/loki/distinfo (props changed) head/devel/looks/distinfo (props changed) head/devel/love/distinfo (props changed) head/devel/love07/distinfo (props changed) head/devel/love5/distinfo (props changed) head/devel/lrmi/distinfo (props changed) head/devel/lua-alien/distinfo (props changed) head/devel/lua-bitlib/distinfo (props changed) head/devel/lua-cjson/distinfo (props changed) head/devel/lua-gettext/distinfo (props changed) head/devel/lua-posix/distinfo (props changed) head/devel/lua-pty/distinfo (props changed) head/devel/lua-rds-parser/distinfo (props changed) head/devel/lua-redis-parser/distinfo (props changed) head/devel/lua-sysctl/distinfo (props changed) head/devel/luabind/distinfo (props changed) head/devel/luajava/distinfo (props changed) head/devel/lwp/distinfo (props changed) head/devel/lxr/distinfo (props changed) head/devel/m17n-docs/distinfo (props changed) head/devel/m4/distinfo (props changed) head/devel/m6811-binutils/distinfo (props changed) head/devel/magit/distinfo (props changed) head/devel/make++/distinfo (props changed) head/devel/makedepend/distinfo (props changed) head/devel/matreshka/distinfo (props changed) head/devel/maven-ant-tasks/distinfo (props changed) head/devel/maven2/distinfo (props changed) head/devel/maven3/distinfo (props changed) head/devel/maven31/distinfo (props changed) head/devel/mcpp/distinfo (props changed) head/devel/meck/distinfo (props changed) head/devel/memcheck/distinfo (props changed) head/devel/menhir/distinfo (props changed) head/devel/mercurialeclipse/distinfo (props changed) head/devel/meta-cvs/distinfo (props changed) head/devel/mico/distinfo (props changed) head/devel/mime/distinfo (props changed) head/devel/mimir/distinfo (props changed) head/devel/mingw32-bin-msvcrt/distinfo (props changed) head/devel/mingw32-binutils/distinfo (props changed) head/devel/mingw32-directx/distinfo (props changed) head/devel/mingw32-libffi/distinfo (props changed) head/devel/mingw32-libyaml/distinfo (props changed) head/devel/mingw32-openssl/distinfo (props changed) head/devel/mingw32-pdcurses/distinfo (props changed) head/devel/mingw32-pthreads/distinfo (props changed) head/devel/mingw32-zlib/distinfo (props changed) head/devel/mk/distinfo (props changed) head/devel/mkcmd/distinfo (props changed) head/devel/ml-doc/distinfo (props changed) head/devel/mm-common/distinfo (props changed) head/devel/mm/distinfo (props changed) head/devel/mono-addins/distinfo (props changed) head/devel/monodevelop-database/distinfo (props changed) head/devel/monodevelop/distinfo (props changed) head/devel/monotone-viz/distinfo (props changed) head/devel/monotone/distinfo (props changed) head/devel/motor/distinfo (props changed) head/devel/mpatrol/distinfo (props changed) head/devel/mph/distinfo (props changed) head/devel/mq4cpp/distinfo (props changed) head/devel/msgpack/distinfo (props changed) head/devel/msp430-binutils/distinfo (props changed) head/devel/msp430-gcc/distinfo (props changed) head/devel/msp430-gcc3/distinfo (props changed) head/devel/msp430-gdb/distinfo (props changed) head/devel/msp430-libc/distinfo (props changed) head/devel/msp430mcu/distinfo (props changed) head/devel/mspdebug/distinfo (props changed) head/devel/msrc0/distinfo (props changed) head/devel/nana/distinfo (props changed) head/devel/naturaldocs/distinfo (props changed) head/devel/ncc/distinfo (props changed) head/devel/ncnf/distinfo (props changed) head/devel/ncurses/distinfo (props changed) head/devel/ndesk-dbus-glib/distinfo (props changed) head/devel/ndesk-dbus/distinfo (props changed) head/devel/ndesk-options/distinfo (props changed) head/devel/nemiver/distinfo (props changed) head/devel/netscape-java40/distinfo (props changed) head/devel/newfile/distinfo (props changed) head/devel/nglogc/distinfo (props changed) head/devel/nini/distinfo (props changed) head/devel/ninja/distinfo (props changed) head/devel/notify-sharp/distinfo (props changed) head/devel/noweb/distinfo (props changed) head/devel/npth/distinfo (props changed) head/devel/nxt-python/distinfo (props changed) head/devel/obby/distinfo (props changed) head/devel/obfuscatejs/distinfo (props changed) head/devel/ocaml-annexlib/distinfo (props changed) head/devel/ocaml-camljava/distinfo (props changed) head/devel/ocaml-camomile-examples/distinfo (props changed) head/devel/ocaml-camomile/distinfo (props changed) head/devel/ocaml-classes/distinfo (props changed) head/devel/ocaml-cppo/distinfo (props changed) head/devel/ocaml-deriving-ocsigen/distinfo (props changed) head/devel/ocaml-equeue/distinfo (props changed) head/devel/ocaml-event/distinfo (props changed) head/devel/ocaml-findlib/distinfo (props changed) head/devel/ocaml-lwt/distinfo (props changed) head/devel/ocaml-magic/distinfo (props changed) head/devel/ocaml-opam/distinfo (props changed) head/devel/ocaml-ounit/distinfo (props changed) head/devel/ocaml-pcre/distinfo (props changed) head/devel/ocaml-react/distinfo (props changed) head/devel/ocaml-sem/distinfo (props changed) head/devel/ocaml-ulex/distinfo (props changed) head/devel/ocaml-xstr/distinfo (props changed) head/devel/ocamlweb/distinfo (props changed) head/devel/ocfpcsc/distinfo (props changed) head/devel/ode-devel/distinfo (props changed) head/devel/ode/distinfo (props changed) head/devel/ois/distinfo (props changed) head/devel/omniNotify/distinfo (props changed) head/devel/omniORB/distinfo (props changed) head/devel/oniguruma/distinfo (props changed) head/devel/oniguruma4/distinfo (props changed) head/devel/open-beagle/distinfo (props changed) head/devel/open-usp-tukubai/distinfo (props changed) head/devel/opencl/distinfo (props changed) head/devel/opencvs/distinfo (props changed) head/devel/opengrok/distinfo (props changed) head/devel/openwince-include/distinfo (props changed) head/devel/openzz/distinfo (props changed) head/devel/orbitcpp/distinfo (props changed) head/devel/orc/distinfo (props changed) head/devel/oserl/distinfo (props changed) head/devel/ossp-al/distinfo (props changed) head/devel/ossp-cfg/distinfo (props changed) head/devel/ossp-ex/distinfo (props changed) head/devel/ossp-l2/distinfo (props changed) head/devel/ossp-val/distinfo (props changed) head/devel/ossp-var/distinfo (props changed) head/devel/ossp-xds/distinfo (props changed) head/devel/p4.el/distinfo (props changed) head/devel/p4/distinfo.freebsd60x86 (props changed) head/devel/p4/distinfo.freebsd60x86_64 (props changed) head/devel/p4/distinfo.freebsd70x86 (props changed) head/devel/p4/distinfo.freebsd70x86_64 (props changed) head/devel/p4api/distinfo (props changed) head/devel/p4d/distinfo.freebsd60x86 (props changed) head/devel/p4d/distinfo.freebsd60x86_64 (props changed) head/devel/p4d/distinfo.freebsd70x86 (props changed) head/devel/p4d/distinfo.freebsd70x86_64 (props changed) head/devel/p4db/distinfo (props changed) head/devel/p4delta/distinfo (props changed) head/devel/p4ftpd/distinfo.freebsd60x86 (props changed) head/devel/p4ftpd/distinfo.freebsd60x86_64 (props changed) head/devel/p4ftpd/distinfo.freebsd70x86 (props changed) head/devel/p4ftpd/distinfo.freebsd70x86_64 (props changed) head/devel/p4p/distinfo.freebsd60x86 (props changed) head/devel/p4p/distinfo.freebsd60x86_64 (props changed) head/devel/p4p/distinfo.freebsd70x86 (props changed) head/devel/p4p/distinfo.freebsd70x86_64 (props changed) head/devel/p4web/distinfo.freebsd60x86 (props changed) head/devel/p4web/distinfo.freebsd60x86_64 (props changed) head/devel/p4web/distinfo.freebsd70x86 (props changed) head/devel/p4web/distinfo.freebsd70x86_64 (props changed) head/devel/p5-AI-Pathfinding-AStar/distinfo (props changed) head/devel/p5-AI-Prolog/distinfo (props changed) head/devel/p5-Acme-Comment/distinfo (props changed) head/devel/p5-Agent/distinfo (props changed) head/devel/p5-Algorithm-Accounting/distinfo (props changed) head/devel/p5-Algorithm-Annotate/distinfo (props changed) head/devel/p5-Algorithm-Bucketizer/distinfo (props changed) head/devel/p5-Algorithm-C3/distinfo (props changed) head/devel/p5-Algorithm-ChooseSubsets/distinfo (props changed) head/devel/p5-Algorithm-Cluster/distinfo (props changed) head/devel/p5-Algorithm-Dependency-Objects/distinfo (props changed) head/devel/p5-Algorithm-Dependency/distinfo (props changed) head/devel/p5-Algorithm-Diff/distinfo (props changed) head/devel/p5-Algorithm-Evolutionary/distinfo (props changed) head/devel/p5-Algorithm-FloodControl/distinfo (props changed) head/devel/p5-Algorithm-IncludeExclude/distinfo (props changed) head/devel/p5-Algorithm-Interval2Prefix/distinfo (props changed) head/devel/p5-Algorithm-LCS/distinfo (props changed) head/devel/p5-Algorithm-LUHN/distinfo (props changed) head/devel/p5-Algorithm-MarkovChain/distinfo (props changed) head/devel/p5-Algorithm-Merge/distinfo (props changed) head/devel/p5-Algorithm-MinMax/distinfo (props changed) head/devel/p5-Algorithm-NaiveBayes/distinfo (props changed) head/devel/p5-Algorithm-Networksort/distinfo (props changed) head/devel/p5-Algorithm-Permute/distinfo (props changed) head/devel/p5-Algorithm-SVM/distinfo (props changed) head/devel/p5-Alias/distinfo (props changed) head/devel/p5-Alzabo-GUI-Mason/distinfo (props changed) head/devel/p5-Alzabo/distinfo (props changed) head/devel/p5-Any-Moose-Convert/distinfo (props changed) head/devel/p5-Any-Moose/distinfo (props changed) head/devel/p5-AnyData/distinfo (props changed) head/devel/p5-AnyEvent-AIO/distinfo (props changed) head/devel/p5-AnyEvent-Connection/distinfo (props changed) head/devel/p5-AnyEvent-DBI-Abstract/distinfo (props changed) head/devel/p5-AnyEvent-DBI/distinfo (props changed) head/devel/p5-AnyEvent-DBus/distinfo (props changed) head/devel/p5-AnyEvent-Filesys-Notify/distinfo (props changed) head/devel/p5-AnyEvent-Graphite/distinfo (props changed) head/devel/p5-AnyEvent-I3/distinfo (props changed) head/devel/p5-AnyEvent-MessagePack/distinfo (props changed) head/devel/p5-AnyEvent-RPC/distinfo (props changed) head/devel/p5-AnyEvent-Run/distinfo (props changed) head/devel/p5-AnyEvent-Subprocess/distinfo (props changed) head/devel/p5-AnyEvent-Worker/distinfo (props changed) head/devel/p5-App-Build/distinfo (props changed) head/devel/p5-App-CLI-Extension/distinfo (props changed) head/devel/p5-App-CLI/distinfo (props changed) head/devel/p5-App-Cache/distinfo (props changed) head/devel/p5-App-Control/distinfo (props changed) head/devel/p5-App-FatPacker/distinfo (props changed) head/devel/p5-App-GitHub/distinfo (props changed) head/devel/p5-App-Info/distinfo (props changed) head/devel/p5-App-Options/distinfo (props changed) head/devel/p5-App-SD/distinfo (props changed) head/devel/p5-App-Trace/distinfo (props changed) head/devel/p5-App-cpanminus/distinfo (props changed) head/devel/p5-App-scan_prereqs_cpanfile/distinfo (props changed) head/devel/p5-AppConfig-Std/distinfo (props changed) head/devel/p5-AppConfig/distinfo (props changed) head/devel/p5-Array-Unique/distinfo (props changed) head/devel/p5-Array-Window/distinfo (props changed) head/devel/p5-Async-Interrupt/distinfo (props changed) head/devel/p5-Async-MergePoint/distinfo (props changed) head/devel/p5-AtExit/distinfo (props changed) head/devel/p5-Attribute-Handlers-Prospective/distinfo (props changed) head/devel/p5-Attribute-Handlers/distinfo (props changed) head/devel/p5-Attribute-Persistent/distinfo (props changed) head/devel/p5-AutoLoader/distinfo (props changed) head/devel/p5-AutoXS-Header/distinfo (props changed) head/devel/p5-B-Compiling/distinfo (props changed) head/devel/p5-B-Deobfuscate/distinfo (props changed) head/devel/p5-B-Generate/distinfo (props changed) head/devel/p5-B-Graph/distinfo (props changed) head/devel/p5-B-Hooks-OP-Annotation/distinfo (props changed) head/devel/p5-B-Hooks-OP-Check-EntersubForCV/distinfo (props changed) head/devel/p5-B-Hooks-OP-Check/distinfo (props changed) head/devel/p5-B-Hooks-OP-PPAddr/distinfo (props changed) head/devel/p5-B-Hooks-Parser/distinfo (props changed) head/devel/p5-B-Keywords/distinfo (props changed) head/devel/p5-B-OPCheck/distinfo (props changed) head/devel/p5-B-Size2/distinfo (props changed) head/devel/p5-B-Utils/distinfo (props changed) head/devel/p5-BFD/distinfo (props changed) head/devel/p5-BS-Event/distinfo (props changed) head/devel/p5-BSD-Resource/distinfo (props changed) head/devel/p5-BSD-devstat/distinfo (props changed) head/devel/p5-BSD-stat/distinfo (props changed) head/devel/p5-BZ-Client/distinfo (props changed) head/devel/p5-Badger/distinfo (props changed) head/devel/p5-Benchmark-Timer/distinfo (props changed) head/devel/p5-Best/distinfo (props changed) head/devel/p5-Bundle-Perl6/distinfo (props changed) head/devel/p5-C-Scan/distinfo (props changed) head/devel/p5-CHI/distinfo (props changed) head/devel/p5-CLASS/distinfo (props changed) head/devel/p5-CPAN-Checksums/distinfo (props changed) head/devel/p5-CPAN-DistnameInfo/distinfo (props changed) head/devel/p5-CPAN-Inject/distinfo (props changed) head/devel/p5-CPAN-Meta-Check/distinfo (props changed) head/devel/p5-CPAN-Mini/distinfo (props changed) head/devel/p5-CPAN-Recent-Uploads/distinfo (props changed) head/devel/p5-CPAN-Reporter-Smoker/distinfo (props changed) head/devel/p5-CPAN-Reporter/distinfo (props changed) head/devel/p5-CPAN-SQLite/distinfo (props changed) head/devel/p5-CPAN-Site/distinfo (props changed) head/devel/p5-CPAN-Testers-Report/distinfo (props changed) head/devel/p5-CPAN-Uploader/distinfo (props changed) head/devel/p5-CPAN-YACSmoke/distinfo (props changed) head/devel/p5-CPS/distinfo (props changed) head/devel/p5-Cache-AgainstFile/distinfo (props changed) head/devel/p5-Cache-Cache/distinfo (props changed) head/devel/p5-Cache-FastMmap/distinfo (props changed) head/devel/p5-Cache-LRU/distinfo (props changed) head/devel/p5-Cache-Memcached-Tie/distinfo (props changed) head/devel/p5-Cache-Mmap/distinfo (props changed) head/devel/p5-Cache-Simple-TimedExpiry/distinfo (props changed) head/devel/p5-Cache/distinfo (props changed) head/devel/p5-Calendar-Simple/distinfo (props changed) head/devel/p5-Carp-Always/distinfo (props changed) head/devel/p5-Carp-Assert-More/distinfo (props changed) head/devel/p5-Carp-Assert/distinfo (props changed) head/devel/p5-Carp-Clan-Share/distinfo (props changed) head/devel/p5-Carp-Clan/distinfo (props changed) head/devel/p5-Carp-Datum/distinfo (props changed) head/devel/p5-Carp-REPL/distinfo (props changed) head/devel/p5-Check-ISA/distinfo (props changed) head/devel/p5-Child/distinfo (props changed) head/devel/p5-Chooser/distinfo (props changed) head/devel/p5-Class-Accessor-Chained/distinfo (props changed) head/devel/p5-Class-Accessor-Children/distinfo (props changed) head/devel/p5-Class-Accessor-Complex/distinfo (props changed) head/devel/p5-Class-Accessor-Constructor/distinfo (props changed) head/devel/p5-Class-Accessor-Fast-Contained/distinfo (props changed) head/devel/p5-Class-Accessor-Fast-XS/distinfo (props changed) head/devel/p5-Class-Accessor-Grouped/distinfo (props changed) head/devel/p5-Class-Accessor-Installer/distinfo (props changed) head/devel/p5-Class-Accessor-Lite/distinfo (props changed) head/devel/p5-Class-Accessor-Lvalue/distinfo (props changed) head/devel/p5-Class-Accessor-Named/distinfo (props changed) head/devel/p5-Class-Accessor/distinfo (props changed) head/devel/p5-Class-Adapter/distinfo (props changed) head/devel/p5-Class-AlzaboWrapper/distinfo (props changed) head/devel/p5-Class-ArrayObjects/distinfo (props changed) head/devel/p5-Class-Autouse/distinfo (props changed) head/devel/p5-Class-Base/distinfo (props changed) head/devel/p5-Class-BlackHole/distinfo (props changed) head/devel/p5-Class-C3-Adopt-NEXT/distinfo (props changed) head/devel/p5-Class-C3-XS/distinfo (props changed) head/devel/p5-Class-C3/distinfo (props changed) head/devel/p5-Class-Closure/distinfo (props changed) head/devel/p5-Class-CodeStyler/distinfo (props changed) head/devel/p5-Class-Component/distinfo (props changed) head/devel/p5-Class-Constant/distinfo (props changed) head/devel/p5-Class-Container/distinfo (props changed) head/devel/p5-Class-Contract/distinfo (props changed) head/devel/p5-Class-Data-ConfigHash/distinfo (props changed) head/devel/p5-Class-Data-Inheritable/distinfo (props changed) head/devel/p5-Class-Date/distinfo (props changed) head/devel/p5-Class-Declare/distinfo (props changed) head/devel/p5-Class-Default/distinfo (props changed) head/devel/p5-Class-Delegation/distinfo (props changed) head/devel/p5-Class-ErrorHandler/distinfo (props changed) head/devel/p5-Class-Factory-Util/distinfo (props changed) head/devel/p5-Class-Factory/distinfo (props changed) head/devel/p5-Class-Field/distinfo (props changed) head/devel/p5-Class-Forward/distinfo (props changed) head/devel/p5-Class-Generate/distinfo (props changed) head/devel/p5-Class-Gomor/distinfo (props changed) head/devel/p5-Class-Handle/distinfo (props changed) head/devel/p5-Class-Hook/distinfo (props changed) head/devel/p5-Class-ISA/distinfo (props changed) head/devel/p5-Class-Inner/distinfo (props changed) head/devel/p5-Class-InsideOut/distinfo (props changed) head/devel/p5-Class-Inspector/distinfo (props changed) head/devel/p5-Class-Interfaces/distinfo (props changed) head/devel/p5-Class-Load/distinfo (props changed) head/devel/p5-Class-Loader/distinfo (props changed) head/devel/p5-Class-MakeMethods/distinfo (props changed) head/devel/p5-Class-Measure/distinfo (props changed) head/devel/p5-Class-Method-Modifiers-Fast/distinfo (props changed) head/devel/p5-Class-MethodMapper/distinfo (props changed) head/devel/p5-Class-Mix/distinfo (props changed) head/devel/p5-Class-Mixin/distinfo (props changed) head/devel/p5-Class-MixinFactory/distinfo (props changed) head/devel/p5-Class-Multimethods-Pure/distinfo (props changed) head/devel/p5-Class-Multimethods/distinfo (props changed) head/devel/p5-Class-NamedParms/distinfo (props changed) head/devel/p5-Class-Null/distinfo (props changed) head/devel/p5-Class-OOorNO/distinfo (props changed) head/devel/p5-Class-ObjectTemplate-DB/distinfo (props changed) head/devel/p5-Class-ObjectTemplate/distinfo (props changed) head/devel/p5-Class-Observable/distinfo (props changed) head/devel/p5-Class-ParmList/distinfo (props changed) head/devel/p5-Class-Prototyped/distinfo (props changed) head/devel/p5-Class-ReturnValue/distinfo (props changed) head/devel/p5-Class-Roles/distinfo (props changed) head/devel/p5-Class-STL-Containers/distinfo (props changed) head/devel/p5-Class-Singleton/distinfo (props changed) head/devel/p5-Class-Spiffy/distinfo (props changed) head/devel/p5-Class-StateMachine/distinfo (props changed) head/devel/p5-Class-Std-Fast/distinfo (props changed) head/devel/p5-Class-Std-Utils/distinfo (props changed) head/devel/p5-Class-Std/distinfo (props changed) head/devel/p5-Class-StrongSingleton/distinfo (props changed) head/devel/p5-Class-Tangram/distinfo (props changed) head/devel/p5-Class-Throwable/distinfo (props changed) head/devel/p5-Class-Tom/distinfo (props changed) head/devel/p5-Class-Trigger/distinfo (props changed) head/devel/p5-Class-Unload/distinfo (props changed) head/devel/p5-Class-Virtual/distinfo (props changed) head/devel/p5-Class-WhiteHole/distinfo (props changed) head/devel/p5-Class-Workflow/distinfo (props changed) head/devel/p5-Class-XPath/distinfo (props changed) head/devel/p5-Class-XSAccessor-Array/distinfo (props changed) head/devel/p5-Clone-Fast/distinfo (props changed) head/devel/p5-Clone-More/distinfo (props changed) head/devel/p5-Clone-PP/distinfo (props changed) head/devel/p5-Clone/distinfo (props changed) head/devel/p5-Code-Perl/distinfo (props changed) head/devel/p5-Commands-Guarded/distinfo (props changed) head/devel/p5-CommitBit/distinfo (props changed) head/devel/p5-Config-ApacheFormat/distinfo (props changed) head/devel/p5-Config-Auto/distinfo (props changed) head/devel/p5-Config-AutoConf/distinfo (props changed) head/devel/p5-Config-Fast/distinfo (props changed) head/devel/p5-Config-General/distinfo (props changed) head/devel/p5-Config-GitLike/distinfo (props changed) head/devel/p5-Config-Grammar/distinfo (props changed) head/devel/p5-Config-INI-Simple/distinfo (props changed) head/devel/p5-Config-IniFiles/distinfo (props changed) head/devel/p5-Config-IniHash/distinfo (props changed) head/devel/p5-Config-IniRegEx/distinfo (props changed) head/devel/p5-Config-JFDI/distinfo (props changed) head/devel/p5-Config-JSON/distinfo (props changed) head/devel/p5-Config-MVP-Reader-INI/distinfo (props changed) head/devel/p5-Config-MySQL/distinfo (props changed) head/devel/p5-Config-Objective/distinfo (props changed) head/devel/p5-Config-Options/distinfo (props changed) head/devel/p5-Config-Perl-V/distinfo (props changed) head/devel/p5-Config-Properties/distinfo (props changed) head/devel/p5-Config-Record/distinfo (props changed) head/devel/p5-Config-Setting/distinfo (props changed) head/devel/p5-Config-Simple/distinfo (props changed) head/devel/p5-Config-Wrest/distinfo (props changed) head/devel/p5-Config-YAML/distinfo (props changed) head/devel/p5-ConfigReader-Simple/distinfo (props changed) head/devel/p5-ConfigReader/distinfo (props changed) head/devel/p5-Const-Fast/distinfo (props changed) head/devel/p5-Context-Preserve/distinfo (props changed) head/devel/p5-Contextual-Return/distinfo (props changed) head/devel/p5-Curses-Application/distinfo (props changed) head/devel/p5-Curses-Forms/distinfo (props changed) head/devel/p5-Curses-UI/distinfo (props changed) head/devel/p5-Curses-Widgets/distinfo (props changed) head/devel/p5-Curses/distinfo (props changed) head/devel/p5-Cvs/distinfo (props changed) head/devel/p5-DB_File-Lock/distinfo (props changed) head/devel/p5-Dancer-Debug/distinfo (props changed) head/devel/p5-Danga-Socket-Callback/distinfo (props changed) head/devel/p5-Danga-Socket/distinfo (props changed) head/devel/p5-Data-ACL/distinfo (props changed) head/devel/p5-Data-Average/distinfo (props changed) head/devel/p5-Data-Bind/distinfo (props changed) head/devel/p5-Data-Capture/distinfo (props changed) head/devel/p5-Data-ClearSilver-HDF/distinfo (props changed) head/devel/p5-Data-Clone/distinfo (props changed) head/devel/p5-Data-Compare/distinfo (props changed) head/devel/p5-Data-Dump/distinfo (props changed) head/devel/p5-Data-DumpXML/distinfo (props changed) head/devel/p5-Data-Dumper-Perltidy/distinfo (props changed) head/devel/p5-Data-Dumper-Simple/distinfo (props changed) head/devel/p5-Data-Dumper/distinfo (props changed) head/devel/p5-Data-Flow/distinfo (props changed) head/devel/p5-Data-GUID/distinfo (props changed) head/devel/p5-Data-Grouper/distinfo (props changed) head/devel/p5-Data-HashArray/distinfo (props changed) head/devel/p5-Data-HexDump/distinfo (props changed) head/devel/p5-Data-Hexdumper/distinfo (props changed) head/devel/p5-Data-Hexify/distinfo (props changed) head/devel/p5-Data-Hierarchy/distinfo (props changed) head/devel/p5-Data-Inherited/distinfo (props changed) head/devel/p5-Data-Inspect/distinfo (props changed) head/devel/p5-Data-Integer/distinfo (props changed) head/devel/p5-Data-JavaScript-Anon/distinfo (props changed) head/devel/p5-Data-Lazy/distinfo (props changed) head/devel/p5-Data-Localize/distinfo (props changed) head/devel/p5-Data-MessagePack-Stream/distinfo (props changed) head/devel/p5-Data-MessagePack/distinfo (props changed) head/devel/p5-Data-Miscellany/distinfo (props changed) head/devel/p5-Data-Model/distinfo (props changed) head/devel/p5-Data-ObjectDriver/distinfo (props changed) head/devel/p5-Data-Page-NoTotalEntries/distinfo (props changed) head/devel/p5-Data-ParseBinary/distinfo (props changed) head/devel/p5-Data-Path/distinfo (props changed) head/devel/p5-Data-Printer/distinfo (props changed) head/devel/p5-Data-Properties/distinfo (props changed) head/devel/p5-Data-Rand/distinfo (props changed) head/devel/p5-Data-Range-Compare/distinfo (props changed) head/devel/p5-Data-Record/distinfo (props changed) head/devel/p5-Data-Recursive-Encode/distinfo (props changed) head/devel/p5-Data-Remember/distinfo (props changed) head/devel/p5-Data-Rmap/distinfo (props changed) head/devel/p5-Data-RoundRobin/distinfo (props changed) head/devel/p5-Data-SExpression/distinfo (props changed) head/devel/p5-Data-Serializer/distinfo (props changed) head/devel/p5-Data-Stag/distinfo (props changed) head/devel/p5-Data-Stream-Bulk/distinfo (props changed) head/devel/p5-Data-Structure-Util/distinfo (props changed) head/devel/p5-Data-Swap/distinfo (props changed) head/devel/p5-Data-Table/distinfo (props changed) head/devel/p5-Data-Taxonomy-Tags/distinfo (props changed) head/devel/p5-Data-TemporaryBag/distinfo (props changed) head/devel/p5-Data-Throttler-Memcached/distinfo (props changed) head/devel/p5-Data-Throttler/distinfo (props changed) head/devel/p5-Data-Thunk/distinfo (props changed) head/devel/p5-Data-TreeDumper-Renderer-GTK/distinfo (props changed) head/devel/p5-Data-TreeDumper/distinfo (props changed) head/devel/p5-Data-Types/distinfo (props changed) head/devel/p5-Data-Uniqid/distinfo (props changed) head/devel/p5-Data-Util/distinfo (props changed) head/devel/p5-Data-Validate/distinfo (props changed) head/devel/p5-Data-Visitor-Encode/distinfo (props changed) head/devel/p5-Data-Visitor/distinfo (props changed) head/devel/p5-Data-Walk/distinfo (props changed) head/devel/p5-Date-Business/distinfo (props changed) head/devel/p5-Date-Calc-Iterator/distinfo (props changed) head/devel/p5-Date-Calc-XS/distinfo (props changed) head/devel/p5-Date-Calc/distinfo (props changed) head/devel/p5-Date-DayOfWeek/distinfo (props changed) head/devel/p5-Date-Easter/distinfo (props changed) head/devel/p5-Date-EzDate/distinfo (props changed) head/devel/p5-Date-Holidays-DK/distinfo (props changed) head/devel/p5-Date-ICal/distinfo (props changed) head/devel/p5-Date-ISO/distinfo (props changed) head/devel/p5-Date-Leapyear/distinfo (props changed) head/devel/p5-Date-Pcalc/distinfo (props changed) head/devel/p5-Date-Piece/distinfo (props changed) head/devel/p5-Date-Range/distinfo (props changed) head/devel/p5-Date-Roman/distinfo (props changed) head/devel/p5-Date-Simple/distinfo (props changed) head/devel/p5-DateConvert/distinfo (props changed) head/devel/p5-DateTime-Calendar-Chinese/distinfo (props changed) head/devel/p5-DateTime-Calendar-Christian/distinfo (props changed) head/devel/p5-DateTime-Calendar-Discordian/distinfo (props changed) head/devel/p5-DateTime-Calendar-FrenchRevolutionary/distinfo (props changed) head/devel/p5-DateTime-Calendar-Hebrew/distinfo (props changed) head/devel/p5-DateTime-Calendar-Japanese/distinfo (props changed) head/devel/p5-DateTime-Calendar-Julian/distinfo (props changed) head/devel/p5-DateTime-Calendar-Mayan/distinfo (props changed) head/devel/p5-DateTime-Calendar-Pataphysical/distinfo (props changed) head/devel/p5-DateTime-Event-Chinese/distinfo (props changed) head/devel/p5-DateTime-Event-Cron/distinfo (props changed) head/devel/p5-DateTime-Event-Easter/distinfo (props changed) head/devel/p5-DateTime-Event-ICal/distinfo (props changed) head/devel/p5-DateTime-Event-Lunar/distinfo (props changed) head/devel/p5-DateTime-Event-NameDay/distinfo (props changed) head/devel/p5-DateTime-Event-Random/distinfo (props changed) head/devel/p5-DateTime-Event-Recurrence/distinfo (props changed) head/devel/p5-DateTime-Event-SolarTerm/distinfo (props changed) head/devel/p5-DateTime-Event-Zodiac/distinfo (props changed) head/devel/p5-DateTime-Fiscal-Year/distinfo (props changed) head/devel/p5-DateTime-Format-Baby/distinfo (props changed) head/devel/p5-DateTime-Format-Bork/distinfo (props changed) head/devel/p5-DateTime-Format-Builder/distinfo (props changed) head/devel/p5-DateTime-Format-DateManip/distinfo (props changed) head/devel/p5-DateTime-Format-DateParse/distinfo (props changed) head/devel/p5-DateTime-Format-Duration/distinfo (props changed) head/devel/p5-DateTime-Format-Epoch/distinfo (props changed) head/devel/p5-DateTime-Format-Excel/distinfo (props changed) head/devel/p5-DateTime-Format-Flexible/distinfo (props changed) head/devel/p5-DateTime-Format-HTTP/distinfo (props changed) head/devel/p5-DateTime-Format-IBeat/distinfo (props changed) head/devel/p5-DateTime-Format-ICal/distinfo (props changed) head/devel/p5-DateTime-Format-ISO8601/distinfo (props changed) head/devel/p5-DateTime-Format-Mail/distinfo (props changed) head/devel/p5-DateTime-Format-MySQL/distinfo (props changed) head/devel/p5-DateTime-Format-Oracle/distinfo (props changed) head/devel/p5-DateTime-Format-Pg/distinfo (props changed) head/devel/p5-DateTime-Format-RFC3339/distinfo (props changed) head/devel/p5-DateTime-Format-RSS/distinfo (props changed) head/devel/p5-DateTime-Format-Roman/distinfo (props changed) head/devel/p5-DateTime-Format-SQLite/distinfo (props changed) head/devel/p5-DateTime-Format-Strptime/distinfo (props changed) head/devel/p5-DateTime-Format-W3CDTF/distinfo (props changed) head/devel/p5-DateTime-Format-XSD/distinfo (props changed) head/devel/p5-DateTime-Functions/distinfo (props changed) head/devel/p5-DateTime-HiRes/distinfo (props changed) head/devel/p5-DateTime-Incomplete/distinfo (props changed) head/devel/p5-DateTime-Locale/distinfo (props changed) head/devel/p5-DateTime-Precise/distinfo (props changed) head/devel/p5-DateTime-TimeZone-Alias/distinfo (props changed) head/devel/p5-DateTime-TimeZone-LMT/distinfo (props changed) head/devel/p5-DateTime-Util-Astro/distinfo (props changed) head/devel/p5-DateTime-Util-Calc/distinfo (props changed) head/devel/p5-DateTimeX-Easy/distinfo (props changed) head/devel/p5-Debug-Client/distinfo (props changed) head/devel/p5-Decision-ACL/distinfo (props changed) head/devel/p5-Declare-Constraints-Simple/distinfo (props changed) head/devel/p5-Devel-ArgNames/distinfo (props changed) head/devel/p5-Devel-Autoflush/distinfo (props changed) head/devel/p5-Devel-Backtrace/distinfo (props changed) head/devel/p5-Devel-BeginLift/distinfo (props changed) head/devel/p5-Devel-Caller-IgnoreNamespaces/distinfo (props changed) head/devel/p5-Devel-Caller-Perl/distinfo (props changed) head/devel/p5-Devel-Caller/distinfo (props changed) head/devel/p5-Devel-Callsite/distinfo (props changed) head/devel/p5-Devel-CheckLib/distinfo (props changed) head/devel/p5-Devel-CheckOS/distinfo (props changed) head/devel/p5-Devel-CoreStack/distinfo (props changed) head/devel/p5-Devel-Cover-Report-Clover/distinfo (props changed) head/devel/p5-Devel-Cycle/distinfo (props changed) head/devel/p5-Devel-DProfPP/distinfo (props changed) head/devel/p5-Devel-Declare-Parser/distinfo (props changed) head/devel/p5-Devel-Declare/distinfo (props changed) head/devel/p5-Devel-Diagram/distinfo (props changed) head/devel/p5-Devel-Ditto/distinfo (props changed) head/devel/p5-Devel-Dumpvar/distinfo (props changed) head/devel/p5-Devel-EvalContext/distinfo (props changed) head/devel/p5-Devel-Events-Objects/distinfo (props changed) head/devel/p5-Devel-Events/distinfo (props changed) head/devel/p5-Devel-FindPerl/distinfo (props changed) head/devel/p5-Devel-Hide/distinfo (props changed) head/devel/p5-Devel-KYTProf/distinfo (props changed) head/devel/p5-Devel-Leak-Cb/distinfo (props changed) head/devel/p5-Devel-Leak-Object/distinfo (props changed) head/devel/p5-Devel-Leak/distinfo (props changed) head/devel/p5-Devel-LeakGuard-Object/distinfo (props changed) head/devel/p5-Devel-LeakTrace-Fast/distinfo (props changed) head/devel/p5-Devel-LeakTrace/distinfo (props changed) head/devel/p5-Devel-Messenger/distinfo (props changed) head/devel/p5-Devel-Modlist/distinfo (props changed) head/devel/p5-Devel-NYTProf/distinfo (props changed) head/devel/p5-Devel-PackagePath/distinfo (props changed) head/devel/p5-Devel-Pointer/distinfo (props changed) head/devel/p5-Devel-Profile/distinfo (props changed) head/devel/p5-Devel-Profiler/distinfo (props changed) head/devel/p5-Devel-REPL/distinfo (props changed) head/devel/p5-Devel-Refactor/distinfo (props changed) head/devel/p5-Devel-Refcount/distinfo (props changed) head/devel/p5-Devel-Required/distinfo (props changed) head/devel/p5-Devel-RingBuffer/distinfo (props changed) head/devel/p5-Devel-STrace/distinfo (props changed) head/devel/p5-Devel-SimpleTrace/distinfo (props changed) head/devel/p5-Devel-Size-Report/distinfo (props changed) head/devel/p5-Devel-Size/distinfo (props changed) head/devel/p5-Devel-SmallProf/distinfo (props changed) head/devel/p5-Devel-StackTrace-AsHTML/distinfo (props changed) head/devel/p5-Devel-StackTrace-WithLexicals/distinfo (props changed) head/devel/p5-Devel-StackTrace/distinfo (props changed) head/devel/p5-Devel-StealthDebug/distinfo (props changed) head/devel/p5-Devel-Symdump/distinfo (props changed) head/devel/p5-Devel-Timer/distinfo (props changed) head/devel/p5-Devel-Trace/distinfo (props changed) head/devel/p5-Devel-TraceCalls/distinfo (props changed) head/devel/p5-Devel-TraceUse/distinfo (props changed) head/devel/p5-Devel-ebug/distinfo (props changed) head/devel/p5-Devel-ptkdb/distinfo (props changed) head/devel/p5-Device-USB/distinfo (props changed) head/devel/p5-Digest-TransformPath/distinfo (props changed) head/devel/p5-Dir-Project/distinfo (props changed) head/devel/p5-Dir-Self/distinfo (props changed) head/devel/p5-Dir-Watch/distinfo (props changed) head/devel/p5-Directory-Queue/distinfo (props changed) head/devel/p5-Directory-Scratch-Structured/distinfo (props changed) head/devel/p5-Directory-Scratch/distinfo (props changed) head/devel/p5-Dist-Joseki/distinfo (props changed) head/devel/p5-Dist-Metadata/distinfo (props changed) head/devel/p5-Dist-Zilla/distinfo (props changed) head/devel/p5-EV/distinfo (props changed) head/devel/p5-Env-PS1/distinfo (props changed) head/devel/p5-Env-Path/distinfo (props changed) head/devel/p5-Errno/distinfo (props changed) head/devel/p5-Error-Helper/distinfo (props changed) head/devel/p5-Eval-Context/distinfo (props changed) head/devel/p5-Eval-WithLexicals/distinfo (props changed) head/devel/p5-Event-ExecFlow/distinfo (props changed) head/devel/p5-Event-Join/distinfo (props changed) head/devel/p5-Event-Lib/distinfo (props changed) head/devel/p5-Event-Notify/distinfo (props changed) head/devel/p5-Event/distinfo (props changed) head/devel/p5-Every/distinfo (props changed) head/devel/p5-Exception-Class-TryCatch/distinfo (props changed) head/devel/p5-Exception-Class/distinfo (props changed) head/devel/p5-Exception-Handler/distinfo (props changed) head/devel/p5-Expect-Simple/distinfo (props changed) head/devel/p5-Exporter-Declare/distinfo (props changed) head/devel/p5-Exporter-Easy/distinfo (props changed) head/devel/p5-Exporter-Lite/distinfo (props changed) head/devel/p5-Exporter-Tidy/distinfo (props changed) head/devel/p5-ExtUtils-AutoInstall/distinfo (props changed) head/devel/p5-ExtUtils-CBuilder/distinfo (props changed) head/devel/p5-ExtUtils-CChecker/distinfo (props changed) head/devel/p5-ExtUtils-Command/distinfo (props changed) head/devel/p5-ExtUtils-Constant/distinfo (props changed) head/devel/p5-ExtUtils-Depends/distinfo (props changed) head/devel/p5-ExtUtils-Install/distinfo (props changed) head/devel/p5-ExtUtils-LibBuilder/distinfo (props changed) head/devel/p5-ExtUtils-MakeMaker-Coverage/distinfo (props changed) head/devel/p5-ExtUtils-Manifest/distinfo (props changed) head/devel/p5-ExtUtils-ParseXS/distinfo (props changed) head/devel/p5-ExtUtils-XSBuilder/distinfo (props changed) head/devel/p5-Fennec-Lite/distinfo (props changed) head/devel/p5-File-Append-TempFile/distinfo (props changed) head/devel/p5-File-Assets/distinfo (props changed) head/devel/p5-File-Attributes-Recursive/distinfo (props changed) head/devel/p5-File-Attributes/distinfo (props changed) head/devel/p5-File-BOM/distinfo (props changed) head/devel/p5-File-BaseDir/distinfo (props changed) head/devel/p5-File-BasicFlock/distinfo (props changed) head/devel/p5-File-Binary/distinfo (props changed) head/devel/p5-File-Cache/distinfo (props changed) head/devel/p5-File-Cat/distinfo (props changed) head/devel/p5-File-Copy-Recursive/distinfo (props changed) head/devel/p5-File-CountLines/distinfo (props changed) head/devel/p5-File-CreationTime/distinfo (props changed) head/devel/p5-File-DesktopEntry/distinfo (props changed) head/devel/p5-File-Dir-Dumper/distinfo (props changed) head/devel/p5-File-DirSync/distinfo (props changed) head/devel/p5-File-ExtAttr/distinfo (props changed) head/devel/p5-File-Find-Closures/distinfo (props changed) head/devel/p5-File-Find-Rule-Filesys-Virtual/distinfo (props changed) head/devel/p5-File-Find-Rule-Perl/distinfo (props changed) head/devel/p5-File-Find-Rule-VCS/distinfo (props changed) head/devel/p5-File-Find-Rule/distinfo (props changed) head/devel/p5-File-Finder/distinfo (props changed) head/devel/p5-File-Flat/distinfo (props changed) head/devel/p5-File-FnMatch/distinfo (props changed) head/devel/p5-File-Grep/distinfo (props changed) head/devel/p5-File-HStore/distinfo (props changed) head/devel/p5-File-HomeDir-PathClass/distinfo (props changed) head/devel/p5-File-HomeDir/distinfo (props changed) head/devel/p5-File-Iterator/distinfo (props changed) head/devel/p5-File-LibMagic/distinfo (props changed) head/devel/p5-File-MMagic/distinfo (props changed) head/devel/p5-File-MimeInfo/distinfo (props changed) head/devel/p5-File-Modified/distinfo (props changed) head/devel/p5-File-Monitor/distinfo (props changed) head/devel/p5-File-NCopy/distinfo (props changed) head/devel/p5-File-NFSLock/distinfo (props changed) head/devel/p5-File-Path-Expand/distinfo (props changed) head/devel/p5-File-Path/distinfo (props changed) head/devel/p5-File-PathConvert/distinfo (props changed) head/devel/p5-File-Pid-Quick/distinfo (props changed) head/devel/p5-File-Pid/distinfo (props changed) head/devel/p5-File-Policy/distinfo (props changed) head/devel/p5-File-Random/distinfo (props changed) head/devel/p5-File-ReadBackwards/distinfo (props changed) head/devel/p5-File-Remove/distinfo (props changed) head/devel/p5-File-SafeDO/distinfo (props changed) head/devel/p5-File-SearchPath/distinfo (props changed) head/devel/p5-File-ShareDir-Install/distinfo (props changed) head/devel/p5-File-ShareDir-PAR/distinfo (props changed) head/devel/p5-File-ShareDir-PathClass/distinfo (props changed) head/devel/p5-File-ShareDir-ProjectDistDir/distinfo (props changed) head/devel/p5-File-ShareDir/distinfo (props changed) head/devel/p5-File-Slurp-Tree/distinfo (props changed) head/devel/p5-File-Slurp/distinfo (props changed) head/devel/p5-File-Spec-Native/distinfo (props changed) head/devel/p5-File-Stream/distinfo (props changed) head/devel/p5-File-Sync/distinfo (props changed) head/devel/p5-File-Tail-Dir/distinfo (props changed) head/devel/p5-File-Tail/distinfo (props changed) head/devel/p5-File-Temp/distinfo (props changed) head/devel/p5-File-Tempdir/distinfo (props changed) head/devel/p5-File-Touch/distinfo (props changed) head/devel/p5-File-Type/distinfo (props changed) head/devel/p5-File-Util/distinfo (props changed) head/devel/p5-File-chdir/distinfo (props changed) head/devel/p5-File-chmod/distinfo (props changed) head/devel/p5-File-pushd/distinfo (props changed) head/devel/p5-FileHandle-Fmode/distinfo (props changed) head/devel/p5-FileHandle-Unget/distinfo (props changed) head/devel/p5-Filesys-Notify-KQueue/distinfo (props changed) head/devel/p5-Filesys-Notify-Simple/distinfo (props changed) head/devel/p5-Filesys-Virtual-Plain/distinfo (props changed) head/devel/p5-Filesys-Virtual/distinfo (props changed) head/devel/p5-Find-Lib/distinfo (props changed) head/devel/p5-FindBin-libs/distinfo (props changed) head/devel/p5-Form-Sensible/distinfo (props changed) head/devel/p5-FreeBSD-i386-Ptrace/distinfo (props changed) head/devel/p5-FreezeThaw/distinfo (props changed) head/devel/p5-Gearman-Client-Async/distinfo (props changed) head/devel/p5-Gearman-Server/distinfo (props changed) head/devel/p5-Gearman-XS/distinfo (props changed) head/devel/p5-Gearman/distinfo (props changed) head/devel/p5-Geo-ShapeFile/distinfo (props changed) head/devel/p5-Getargs-Long/distinfo (props changed) head/devel/p5-Getopt-ArgvFile/distinfo (props changed) head/devel/p5-Getopt-Attribute/distinfo (props changed) head/devel/p5-Getopt-Compact-WithCmd/distinfo (props changed) head/devel/p5-Getopt-Compact/distinfo (props changed) head/devel/p5-Getopt-Declare/distinfo (props changed) head/devel/p5-Getopt-Euclid/distinfo (props changed) head/devel/p5-Getopt-Long/distinfo (props changed) head/devel/p5-Git-PurePerl/distinfo (props changed) head/devel/p5-Git-Sub/distinfo (props changed) head/devel/p5-Git-Wrapper/distinfo (props changed) head/devel/p5-Gnome2-GConf/distinfo (props changed) head/devel/p5-Goo-Canvas/distinfo (props changed) head/devel/p5-Google-Checkout/distinfo (props changed) head/devel/p5-Gravatar-URL/distinfo (props changed) head/devel/p5-Gtk2-Notify/distinfo (props changed) head/devel/p5-Gtk2-Spell/distinfo (props changed) head/devel/p5-Guard/distinfo (props changed) head/devel/p5-HOP-Lexer/distinfo (props changed) head/devel/p5-HOP-Stream/distinfo (props changed) head/devel/p5-Hash-AsObject/distinfo (props changed) head/devel/p5-Hash-AutoHash/distinfo (props changed) head/devel/p5-Hash-Case/distinfo (props changed) head/devel/p5-Hash-Diff/distinfo (props changed) head/devel/p5-Hash-Flatten/distinfo (props changed) head/devel/p5-Hash-Merge-Simple/distinfo (props changed) head/devel/p5-Hash-MoreUtils/distinfo (props changed) head/devel/p5-Hash-MultiKey/distinfo (props changed) head/devel/p5-Hash-MultiValue/distinfo (props changed) head/devel/p5-Hash-NoRef/distinfo (props changed) head/devel/p5-Hash-Union/distinfo (props changed) head/devel/p5-Hash-Util-FieldHash-Compat/distinfo (props changed) head/devel/p5-Hash-WithDefaults/distinfo (props changed) head/devel/p5-Heap-Simple-Perl/distinfo (props changed) head/devel/p5-Heap-Simple-XS/distinfo (props changed) head/devel/p5-Heap-Simple/distinfo (props changed) head/devel/p5-Heap/distinfo (props changed) head/devel/p5-Hook-LexWrap/distinfo (props changed) head/devel/p5-IO-AIO/distinfo (props changed) head/devel/p5-IO-All-LWP/distinfo (props changed) head/devel/p5-IO-BufferedSelect/distinfo (props changed) head/devel/p5-IO-Callback/distinfo (props changed) head/devel/p5-IO-Capture/distinfo (props changed) head/devel/p5-IO-CaptureOutput/distinfo (props changed) head/devel/p5-IO-Digest/distinfo (props changed) head/devel/p5-IO-FDPass/distinfo (props changed) head/devel/p5-IO-HTML/distinfo (props changed) head/devel/p5-IO-Handle-Util/distinfo (props changed) head/devel/p5-IO-Interactive/distinfo (props changed) head/devel/p5-IO-KQueue/distinfo (props changed) head/devel/p5-IO-Lambda/distinfo (props changed) head/devel/p5-IO-LockedFile/distinfo (props changed) head/devel/p5-IO-MultiPipe/distinfo (props changed) head/devel/p5-IO-Multiplex/distinfo (props changed) head/devel/p5-IO-NestedCapture/distinfo (props changed) head/devel/p5-IO-Null/distinfo (props changed) head/devel/p5-IO-Pager/distinfo (props changed) head/devel/p5-IO-Pipely/distinfo (props changed) head/devel/p5-IO-Prompt/distinfo (props changed) head/devel/p5-IO-Pty-Easy/distinfo (props changed) head/devel/p5-IO-String/distinfo (props changed) head/devel/p5-IO-Stty/distinfo (props changed) head/devel/p5-IO-Tee/distinfo (props changed) head/devel/p5-IO-Toolkit/distinfo (props changed) head/devel/p5-IO-Tty/distinfo (props changed) head/devel/p5-IO-Util/distinfo (props changed) head/devel/p5-IO-YAML/distinfo (props changed) head/devel/p5-IO-stringy/distinfo (props changed) head/devel/p5-IOC/distinfo (props changed) head/devel/p5-IPC-Cache/distinfo (props changed) head/devel/p5-IPC-Cmd/distinfo (props changed) head/devel/p5-IPC-DirQueue/distinfo (props changed) head/devel/p5-IPC-Locker/distinfo (props changed) head/devel/p5-IPC-MM/distinfo (props changed) head/devel/p5-IPC-MMA/distinfo (props changed) head/devel/p5-IPC-Mmap-Share/distinfo (props changed) head/devel/p5-IPC-Mmap/distinfo (props changed) head/devel/p5-IPC-Open3-Simple/distinfo (props changed) head/devel/p5-IPC-PubSub/distinfo (props changed) head/devel/p5-IPC-Run-SafeHandles/distinfo (props changed) head/devel/p5-IPC-Run/distinfo (props changed) head/devel/p5-IPC-Run3/distinfo (props changed) head/devel/p5-IPC-ShareLite/distinfo (props changed) head/devel/p5-IPC-Shareable/distinfo (props changed) head/devel/p5-IPC-SharedCache/distinfo (props changed) head/devel/p5-IPC-Signal/distinfo (props changed) head/devel/p5-IPC-System-Simple/distinfo (props changed) head/devel/p5-Inline-ASM/distinfo (props changed) head/devel/p5-Inline-Files/distinfo (props changed) head/devel/p5-Inline-Filters/distinfo (props changed) head/devel/p5-Inline-Java/distinfo (props changed) head/devel/p5-Inline-TT/distinfo (props changed) head/devel/p5-Inline-Tcl/distinfo (props changed) head/devel/p5-Inline/distinfo (props changed) head/devel/p5-InlineX-C2XS/distinfo (props changed) head/devel/p5-InlineX-CPP2XS/distinfo (props changed) head/devel/p5-Ioctl/distinfo (props changed) head/devel/p5-Iterator-IO/distinfo (props changed) head/devel/p5-Iterator-Misc/distinfo (props changed) head/devel/p5-Iterator-Util/distinfo (props changed) head/devel/p5-Iterator/distinfo (props changed) head/devel/p5-JIRA-Client/distinfo (props changed) head/devel/p5-JQuery/distinfo (props changed) head/devel/p5-JSON-RPC-Common/distinfo (props changed) head/devel/p5-JSON-RPC-Dispatcher/distinfo (props changed) head/devel/p5-JSON-RPC/distinfo (props changed) head/devel/p5-Java/distinfo (props changed) head/devel/p5-Jonk/distinfo (props changed) head/devel/p5-Lexical-Alias/distinfo (props changed) head/devel/p5-Lexical-Import/distinfo (props changed) head/devel/p5-Lexical-SealRequireHints/distinfo (props changed) head/devel/p5-Lingua-JA-Fold/distinfo (props changed) head/devel/p5-Lingua-Translit/distinfo (props changed) head/devel/p5-List-Cycle/distinfo (props changed) head/devel/p5-List-Gen/distinfo (props changed) head/devel/p5-List-Group/distinfo (props changed) head/devel/p5-List-Permutor/distinfo (props changed) head/devel/p5-List-PowerSet/distinfo (props changed) head/devel/p5-List-Rotation-Cycle/distinfo (props changed) head/devel/p5-List-Uniq/distinfo (props changed) head/devel/p5-List-UtilsBy/distinfo (props changed) head/devel/p5-Locale-Maketext-Fuzzy/distinfo (props changed) head/devel/p5-Locale-Maketext-Gettext/distinfo (props changed) head/devel/p5-Locale-Maketext-Simple/distinfo (props changed) head/devel/p5-Locale-Maketext/distinfo (props changed) head/devel/p5-Locale-Msgfmt/distinfo (props changed) head/devel/p5-Locale-PGetText/distinfo (props changed) head/devel/p5-Locale-gettext/distinfo (props changed) head/devel/p5-Locale-libintl/distinfo (props changed) head/devel/p5-LockFile-Simple/distinfo (props changed) head/devel/p5-Log-Accounting-SVK/distinfo (props changed) head/devel/p5-Log-Accounting-SVN/distinfo (props changed) head/devel/p5-Log-Agent-Logger/distinfo (props changed) head/devel/p5-Log-Agent/distinfo (props changed) head/devel/p5-Log-Any-Adapter-Dispatch/distinfo (props changed) head/devel/p5-Log-Any-Adapter-Log4perl/distinfo (props changed) head/devel/p5-Log-Any-Adapter-Syslog/distinfo (props changed) head/devel/p5-Log-Any-Adapter/distinfo (props changed) head/devel/p5-Log-Any-App/distinfo (props changed) head/devel/p5-Log-Any/distinfo (props changed) head/devel/p5-Log-Contextual/distinfo (props changed) head/devel/p5-Log-Dispatch-Array/distinfo (props changed) head/devel/p5-Log-Dispatch-Colorful/distinfo (props changed) head/devel/p5-Log-Dispatch-Config/distinfo (props changed) head/devel/p5-Log-Dispatch-Configurator-YAML/distinfo (props changed) head/devel/p5-Log-Dispatch-DBI/distinfo (props changed) head/devel/p5-Log-Dispatch-Email-EmailSend/distinfo (props changed) head/devel/p5-Log-Dispatch-File-Stamped/distinfo (props changed) head/devel/p5-Log-Dispatch-FileRotate/distinfo (props changed) head/devel/p5-Log-Dispatch-FileShared/distinfo (props changed) head/devel/p5-Log-Dispatch-Perl/distinfo (props changed) head/devel/p5-Log-Dispatch-Screen-Color/distinfo (props changed) head/devel/p5-Log-Dispatch-Scribe/distinfo (props changed) head/devel/p5-Log-Dispatchouli/distinfo (props changed) head/devel/p5-Log-Log4perl-Appender-RabbitMQ/distinfo (props changed) head/devel/p5-Log-Log4perl/distinfo (props changed) head/devel/p5-Log-Message-Simple/distinfo (props changed) head/devel/p5-Log-Message/distinfo (props changed) head/devel/p5-Log-Report/distinfo (props changed) head/devel/p5-Log-Simple/distinfo (props changed) head/devel/p5-Log-Trace/distinfo (props changed) head/devel/p5-Log-TraceMessages/distinfo (props changed) head/devel/p5-Logfile-Rotate/distinfo (props changed) head/devel/p5-Luka/distinfo (props changed) head/devel/p5-MRO-Compat/distinfo (props changed) head/devel/p5-MRO-Define/distinfo (props changed) head/devel/p5-Mac-FileSpec-Unixish/distinfo (props changed) head/devel/p5-Make/distinfo (props changed) head/devel/p5-Memoize-ExpireLRU/distinfo (props changed) head/devel/p5-Memoize/distinfo (props changed) head/devel/p5-Meta-Builder/distinfo (props changed) head/devel/p5-MetaCPAN-API/distinfo (props changed) head/devel/p5-Metabase-Client-Simple/distinfo (props changed) head/devel/p5-Metabase-Fact/distinfo (props changed) head/devel/p5-Method-Alias/distinfo (props changed) head/devel/p5-Method-Signatures-Simple/distinfo (props changed) head/devel/p5-Mknod/distinfo (props changed) head/devel/p5-Module-Build-Convert/distinfo (props changed) head/devel/p5-Module-Build-Kwalitee/distinfo (props changed) head/devel/p5-Module-CPANfile/distinfo (props changed) head/devel/p5-Module-CheckDeps/distinfo (props changed) head/devel/p5-Module-Collect/distinfo (props changed) head/devel/p5-Module-Compile/distinfo (props changed) head/devel/p5-Module-Dependency/distinfo (props changed) head/devel/p5-Module-Depends/distinfo (props changed) head/devel/p5-Module-Extract/distinfo (props changed) head/devel/p5-Module-ExtractUse/distinfo (props changed) head/devel/p5-Module-Find/distinfo (props changed) head/devel/p5-Module-Functions/distinfo (props changed) head/devel/p5-Module-Info-File/distinfo (props changed) head/devel/p5-Module-Info/distinfo (props changed) head/devel/p5-Module-Inspector/distinfo (props changed) head/devel/p5-Module-Install-AuthorRequires/distinfo (props changed) head/devel/p5-Module-Install-AuthorTests/distinfo (props changed) head/devel/p5-Module-Install-Repository/distinfo (props changed) head/devel/p5-Module-Install-Template/distinfo (props changed) head/devel/p5-Module-Install/distinfo (props changed) head/devel/p5-Module-List/distinfo (props changed) head/devel/p5-Module-Load-Conditional/distinfo (props changed) head/devel/p5-Module-Loaded/distinfo (props changed) head/devel/p5-Module-Manifest/distinfo (props changed) head/devel/p5-Module-Math-Depends/distinfo (props changed) head/devel/p5-Module-Metadata/distinfo (props changed) head/devel/p5-Module-Path/distinfo (props changed) head/devel/p5-Module-Pluggable-Fast/distinfo (props changed) head/devel/p5-Module-Pluggable-Ordered/distinfo (props changed) head/devel/p5-Module-Pluggable/distinfo (props changed) head/devel/p5-Module-Reader/distinfo (props changed) head/devel/p5-Module-Recursive-Require/distinfo (props changed) head/devel/p5-Module-Refresh/distinfo (props changed) head/devel/p5-Module-Reload-Sel/distinfo (props changed) head/devel/p5-Module-Reload/distinfo (props changed) head/devel/p5-Module-Runtime/distinfo (props changed) head/devel/p5-Module-ScanDeps/distinfo (props changed) head/devel/p5-Module-Setup/distinfo (props changed) head/devel/p5-Module-Starter-PBP/distinfo (props changed) head/devel/p5-Module-Starter-Plugin-SimpleStore/distinfo (props changed) head/devel/p5-Module-Starter-Plugin-TT2/distinfo (props changed) head/devel/p5-Module-Used/distinfo (props changed) head/devel/p5-Module-Util/distinfo (props changed) head/devel/p5-Module-Version/distinfo (props changed) head/devel/p5-Module-Versions-Report/distinfo (props changed) head/devel/p5-Module-Versions/distinfo (props changed) head/devel/p5-MooX-late/distinfo (props changed) head/devel/p5-Moose-Autobox/distinfo (props changed) head/devel/p5-Moose-Policy/distinfo (props changed) head/devel/p5-Moose-Test/distinfo (props changed) head/devel/p5-MooseX-Aliases/distinfo (props changed) head/devel/p5-MooseX-Async/distinfo (props changed) head/devel/p5-MooseX-Attribute-Chained/distinfo (props changed) head/devel/p5-MooseX-Attribute-ENV/distinfo (props changed) head/devel/p5-MooseX-AttributeHelpers/distinfo (props changed) head/devel/p5-MooseX-AttributeShortcuts/distinfo (props changed) head/devel/p5-MooseX-AuthorizedMethods/distinfo (props changed) head/devel/p5-MooseX-Clone/distinfo (props changed) head/devel/p5-MooseX-CompileTime-Traits/distinfo (props changed) head/devel/p5-MooseX-ConfigFromFile/distinfo (props changed) head/devel/p5-MooseX-Emulate-Class-Accessor-Fast/distinfo (props changed) head/devel/p5-MooseX-FollowPBP/distinfo (props changed) head/devel/p5-MooseX-Has-Options/distinfo (props changed) head/devel/p5-MooseX-Has-Sugar/distinfo (props changed) head/devel/p5-MooseX-HasDefaults/distinfo (props changed) head/devel/p5-MooseX-IOC/distinfo (props changed) head/devel/p5-MooseX-InsideOut/distinfo (props changed) head/devel/p5-MooseX-LazyRequire/distinfo (props changed) head/devel/p5-MooseX-Lists/distinfo (props changed) head/devel/p5-MooseX-Log-Log4perl/distinfo (props changed) head/devel/p5-MooseX-MarkAsMethods/distinfo (props changed) head/devel/p5-MooseX-Meta-TypeConstraint-ForceCoercion/distinfo (props changed) head/devel/p5-MooseX-MultiInitArg/distinfo (props changed) head/devel/p5-MooseX-MultiMethods/distinfo (props changed) head/devel/p5-MooseX-NonMoose/distinfo (props changed) head/devel/p5-MooseX-Object-Pluggable/distinfo (props changed) head/devel/p5-MooseX-OneArgNew/distinfo (props changed) head/devel/p5-MooseX-POE/distinfo (props changed) head/devel/p5-MooseX-Params-Validate/distinfo (props changed) head/devel/p5-MooseX-RelatedClassRoles/distinfo (props changed) head/devel/p5-MooseX-Role-Loggable/distinfo (props changed) head/devel/p5-MooseX-Role-WithOverloading/distinfo (props changed) head/devel/p5-MooseX-SemiAffordanceAccessor/distinfo (props changed) head/devel/p5-MooseX-SimpleConfig/distinfo (props changed) head/devel/p5-MooseX-Singleton/distinfo (props changed) head/devel/p5-MooseX-StrictConstructor/distinfo (props changed) head/devel/p5-MooseX-Traits-Pluggable/distinfo (props changed) head/devel/p5-MooseX-TransactionalMethods/distinfo (props changed) head/devel/p5-MooseX-Types-DateTime-ButMaintained/distinfo (props changed) head/devel/p5-MooseX-Types-DateTimeX/distinfo (props changed) head/devel/p5-MooseX-Types-ISO8601/distinfo (props changed) head/devel/p5-MooseX-Types-JSON/distinfo (props changed) head/devel/p5-MooseX-Types-LoadableClass/distinfo (props changed) head/devel/p5-MooseX-Types-Path-Class/distinfo (props changed) head/devel/p5-MooseX-Types-Path-Tiny/distinfo (props changed) head/devel/p5-MooseX-Types-Perl/distinfo (props changed) head/devel/p5-MooseX-Types-Signal/distinfo (props changed) head/devel/p5-MooseX-Types-Stringlike/distinfo (props changed) head/devel/p5-MooseX-Types-VariantTable/distinfo (props changed) head/devel/p5-MouseX-App-Cmd/distinfo (props changed) head/devel/p5-MouseX-AttributeHelpers/distinfo (props changed) head/devel/p5-MouseX-ConfigFromFile/distinfo (props changed) head/devel/p5-MouseX-Foreign/distinfo (props changed) head/devel/p5-MouseX-Getopt/distinfo (props changed) head/devel/p5-MouseX-StrictConstructor/distinfo (props changed) head/devel/p5-MouseX-Traits/distinfo (props changed) head/devel/p5-MouseX-Types-Path-Class/distinfo (props changed) head/devel/p5-MouseX-Types/distinfo (props changed) head/devel/p5-Multiplex-CMD/distinfo (props changed) head/devel/p5-NEXT/distinfo (props changed) head/devel/p5-Net-DBus/distinfo (props changed) head/devel/p5-Net-ZooKeeper/distinfo (props changed) head/devel/p5-No-Worries/distinfo (props changed) head/devel/p5-Number-Bytes-Human/distinfo (props changed) head/devel/p5-OLE-Storage_Lite/distinfo (props changed) head/devel/p5-Object-Accessor/distinfo (props changed) head/devel/p5-Object-Array/distinfo (props changed) head/devel/p5-Object-Authority/distinfo (props changed) head/devel/p5-Object-Container/distinfo (props changed) head/devel/p5-Object-Declare/distinfo (props changed) head/devel/p5-Object-Destroyer/distinfo (props changed) head/devel/p5-Object-Enum/distinfo (props changed) head/devel/p5-Object-Event/distinfo (props changed) head/devel/p5-Object-MultiType/distinfo (props changed) head/devel/p5-Object-Pluggable/distinfo (props changed) head/devel/p5-Object-Realize-Later/distinfo (props changed) head/devel/p5-Object-Role/distinfo (props changed) head/devel/p5-Object-Signature/distinfo (props changed) head/devel/p5-Object-Tiny-Lvalue/distinfo (props changed) head/devel/p5-Object-Tiny/distinfo (props changed) head/devel/p5-Olson-Abbreviations/distinfo (props changed) head/devel/p5-Ouch/distinfo (props changed) head/devel/p5-PAR-Dist/distinfo (props changed) head/devel/p5-PAR-Packer/distinfo (props changed) head/devel/p5-PAR/distinfo (props changed) head/devel/p5-PCSC-Card/distinfo (props changed) head/devel/p5-PHP-Serialization/distinfo (props changed) head/devel/p5-POE-API-Hooks/distinfo (props changed) head/devel/p5-POE-API-Peek/distinfo (props changed) head/devel/p5-POE-Component-Child/distinfo (props changed) head/devel/p5-POE-Component-Cron/distinfo (props changed) head/devel/p5-POE-Component-Daemon/distinfo (props changed) head/devel/p5-POE-Component-DebugShell/distinfo (props changed) head/devel/p5-POE-Component-DirWatch/distinfo (props changed) head/devel/p5-POE-Component-Hailo/distinfo (props changed) head/devel/p5-POE-Component-JobQueue/distinfo (props changed) head/devel/p5-POE-Component-Logger/distinfo (props changed) head/devel/p5-POE-Component-Pluggable/distinfo (props changed) head/devel/p5-POE-Component-RSS/distinfo (props changed) head/devel/p5-POE-Component-RSSAggregator/distinfo (props changed) head/devel/p5-POE-Component-Schedule/distinfo (props changed) head/devel/p5-POE-Component-Server-XMLRPC/distinfo (props changed) head/devel/p5-POE-Component-Syndicator/distinfo (props changed) head/devel/p5-POE-Component-TSTP/distinfo (props changed) head/devel/p5-POE-Devel-Profiler/distinfo (props changed) head/devel/p5-POE-Loop-Glib/distinfo (props changed) head/devel/p5-POE-Quickie/distinfo (props changed) head/devel/p5-POE-Session-MultiDispatch/distinfo (props changed) head/devel/p5-POE-Stage/distinfo (props changed) head/devel/p5-POE-XS-Loop-Poll/distinfo (props changed) head/devel/p5-POE-XS-Queue-Array/distinfo (props changed) head/devel/p5-POEx-Role-SessionInstantiation/distinfo (props changed) head/devel/p5-POEx-Role-Streaming/distinfo (props changed) head/devel/p5-POEx-Types/distinfo (props changed) head/devel/p5-POSIX-strptime/distinfo (props changed) head/devel/p5-PPerl/distinfo (props changed) head/devel/p5-PV/distinfo (props changed) head/devel/p5-Package-Constants/distinfo (props changed) head/devel/p5-Package-DeprecationManager/distinfo (props changed) head/devel/p5-Package-Generator/distinfo (props changed) head/devel/p5-Package-Stash/distinfo (props changed) head/devel/p5-Parallel-Iterator/distinfo (props changed) head/devel/p5-Parallel-Prefork/distinfo (props changed) head/devel/p5-Parallel-Scoreboard/distinfo (props changed) head/devel/p5-Params-CallbackRequest/distinfo (props changed) head/devel/p5-Params-Check/distinfo (props changed) head/devel/p5-Params-Classify/distinfo (props changed) head/devel/p5-Params-Coerce/distinfo (props changed) head/devel/p5-Params-Util/distinfo (props changed) head/devel/p5-Params-Validate/distinfo (props changed) head/devel/p5-Paranoid/distinfo (props changed) head/devel/p5-Parse-CPAN-Meta/distinfo (props changed) head/devel/p5-Parse-CPAN-Packages/distinfo (props changed) head/devel/p5-Parse-ErrorString-Perl/distinfo (props changed) head/devel/p5-Parse-ExuberantCTags/distinfo (props changed) head/devel/p5-Parse-PerlConfig/distinfo (props changed) head/devel/p5-Parse-PlainConfig/distinfo (props changed) head/devel/p5-Parse-RecDescent/distinfo (props changed) head/devel/p5-Parse-Win32Registry/distinfo (props changed) head/devel/p5-Parse-Yapp/distinfo (props changed) head/devel/p5-ParseLex/distinfo (props changed) head/devel/p5-ParseTemplate/distinfo (props changed) head/devel/p5-PatchReader/distinfo (props changed) head/devel/p5-Path-Abstract/distinfo (props changed) head/devel/p5-Path-Class-File-Lockable/distinfo (props changed) head/devel/p5-Path-Class/distinfo (props changed) head/devel/p5-Path-Dispatcher-Declarative/distinfo (props changed) head/devel/p5-Path-IsDev/distinfo (props changed) head/devel/p5-Path-Iterator-Rule/distinfo (props changed) head/devel/p5-Path-Resource/distinfo (props changed) head/devel/p5-PathTools/distinfo (props changed) head/devel/p5-Penguin-Easy/distinfo (props changed) head/devel/p5-Penguin/distinfo (props changed) head/devel/p5-Perl-Metrics-Lite/distinfo (props changed) head/devel/p5-Perl-Metrics-Simple/distinfo (props changed) head/devel/p5-Perl-PrereqScanner/distinfo (props changed) head/devel/p5-Perl-Unsafe-Signals/distinfo (props changed) head/devel/p5-Perl-Version/distinfo (props changed) head/devel/p5-Perl6-Builtins/distinfo (props changed) head/devel/p5-Perl6-Export-Attrs/distinfo (props changed) head/devel/p5-Perl6-Export/distinfo (props changed) head/devel/p5-Perl6-Form/distinfo (props changed) head/devel/p5-Perl6-Rules/distinfo (props changed) head/devel/p5-Perl6-Say/distinfo (props changed) head/devel/p5-PerlIO-Layers/distinfo (props changed) head/devel/p5-PerlIO-Util/distinfo (props changed) head/devel/p5-PerlIO-eol/distinfo (props changed) head/devel/p5-PerlIO-locale/distinfo (props changed) head/devel/p5-PerlIO-via-MD5/distinfo (props changed) head/devel/p5-PerlIO-via-dynamic/distinfo (props changed) head/devel/p5-PerlIO-via-symlink/distinfo (props changed) head/devel/p5-Pid-File-Flock/distinfo (props changed) head/devel/p5-Pipeline/distinfo (props changed) head/devel/p5-Pod-Coverage-TrustPod/distinfo (props changed) head/devel/p5-Pod-Coverage/distinfo (props changed) head/devel/p5-Pod-Tests/distinfo (props changed) head/devel/p5-Pragmatic/distinfo (props changed) head/devel/p5-Proc-Background/distinfo (props changed) head/devel/p5-Proc-Daemon/distinfo (props changed) head/devel/p5-Proc-Fork/distinfo (props changed) head/devel/p5-Proc-Guard/distinfo (props changed) head/devel/p5-Proc-PID-File/distinfo (props changed) head/devel/p5-Proc-Pidfile/distinfo (props changed) head/devel/p5-Proc-Queue/distinfo (props changed) head/devel/p5-Proc-Reliable/distinfo (props changed) head/devel/p5-Proc-Simple/distinfo (props changed) head/devel/p5-Proc-Wait3/distinfo (props changed) head/devel/p5-Proc-WaitStat/distinfo (props changed) head/devel/p5-Project-Gantt/distinfo (props changed) head/devel/p5-Project-Libs/distinfo (props changed) head/devel/p5-Qudo/distinfo (props changed) head/devel/p5-RRDTool-OO/distinfo (props changed) head/devel/p5-Range-String/distinfo (props changed) head/devel/p5-Rcs-Agent/distinfo (props changed) head/devel/p5-Rcs/distinfo (props changed) head/devel/p5-ReadLine-Gnu/distinfo (props changed) head/devel/p5-ReadLine-Perl/distinfo (props changed) head/devel/p5-Regexp-Assemble-Compressed/distinfo (props changed) head/devel/p5-Regexp-Assemble/distinfo (props changed) head/devel/p5-Regexp-Bind/distinfo (props changed) head/devel/p5-Regexp-RegGrp/distinfo (props changed) head/devel/p5-Regexp-Shellish/distinfo (props changed) head/devel/p5-Regexp-Subst-Parallel/distinfo (props changed) head/devel/p5-Religion/distinfo (props changed) head/devel/p5-ResourcePool/distinfo (props changed) head/devel/p5-Resources/distinfo (props changed) head/devel/p5-Return-Value/distinfo (props changed) head/devel/p5-Role-HasMessage/distinfo (props changed) head/devel/p5-Role-Identifiable/distinfo (props changed) head/devel/p5-RunApp/distinfo (props changed) head/devel/p5-SNMP-Persist/distinfo (props changed) head/devel/p5-SOAP-WSDL/distinfo (props changed) head/devel/p5-SSN-Validate/distinfo (props changed) head/devel/p5-SUPER/distinfo (props changed) head/devel/p5-SVN-ACL/distinfo (props changed) head/devel/p5-SVN-Access/distinfo (props changed) head/devel/p5-SVN-Agent/distinfo (props changed) head/devel/p5-SVN-Dump/distinfo (props changed) head/devel/p5-SVN-Dumpfile/distinfo (props changed) head/devel/p5-SVN-Hook/distinfo (props changed) head/devel/p5-SVN-Log/distinfo (props changed) head/devel/p5-SVN-Mirror/distinfo (props changed) head/devel/p5-SVN-Notify-Config/distinfo (props changed) head/devel/p5-SVN-Notify-Filter-AuthZMail/distinfo (props changed) head/devel/p5-SVN-Notify-Filter-EmailFlatFileDB/distinfo (props changed) head/devel/p5-SVN-Notify-Filter-Markdown/distinfo (props changed) head/devel/p5-SVN-Notify-Filter-Watchers/distinfo (props changed) head/devel/p5-SVN-Notify-Mirror/distinfo (props changed) head/devel/p5-SVN-Notify-Snapshot/distinfo (props changed) head/devel/p5-SVN-S4/distinfo (props changed) head/devel/p5-SVN-Simple/distinfo (props changed) head/devel/p5-SVN-Statistics/distinfo (props changed) head/devel/p5-Safe-Isa/distinfo (props changed) head/devel/p5-Scalar-Defer/distinfo (props changed) head/devel/p5-Scalar-Listify/distinfo (props changed) head/devel/p5-Scalar-String/distinfo (props changed) head/devel/p5-Scope-Guard/distinfo (props changed) head/devel/p5-Scope-Upper/distinfo (props changed) head/devel/p5-Script-isAperlScript/distinfo (props changed) head/devel/p5-Search-Binary/distinfo (props changed) head/devel/p5-Sepia/distinfo (props changed) head/devel/p5-Set-ConsistentHash/distinfo (props changed) head/devel/p5-Set-Crontab/distinfo (props changed) head/devel/p5-Set-CrossProduct/distinfo (props changed) head/devel/p5-Set-Infinite/distinfo (props changed) head/devel/p5-Set-NestedGroups/distinfo (props changed) head/devel/p5-Set-Scalar/distinfo (props changed) head/devel/p5-Shape/distinfo (props changed) head/devel/p5-Shell-Base/distinfo (props changed) head/devel/p5-Shell-EnvImporter/distinfo (props changed) head/devel/p5-Shell-Parser/distinfo (props changed) head/devel/p5-Shell-Source/distinfo (props changed) head/devel/p5-ShipIt-Step-Manifest/distinfo (props changed) head/devel/p5-ShipIt/distinfo (props changed) head/devel/p5-Slurp/distinfo (props changed) head/devel/p5-Sort-Array/distinfo (props changed) head/devel/p5-Sort-ArrayOfArrays/distinfo (props changed) head/devel/p5-Sort-Key-DateTime/distinfo (props changed) head/devel/p5-Sort-Key-Top/distinfo (props changed) head/devel/p5-Sort-Key/distinfo (props changed) head/devel/p5-Sort-Maker/distinfo (props changed) head/devel/p5-Sort-Tree/distinfo (props changed) head/devel/p5-Sort-Versions/distinfo (props changed) head/devel/p5-Spiffy/distinfo (props changed) head/devel/p5-Spoon/distinfo (props changed) head/devel/p5-Storable/distinfo (props changed) head/devel/p5-Stream-Buffered/distinfo (props changed) head/devel/p5-Stream-Reader/distinfo (props changed) head/devel/p5-Stream/distinfo (props changed) head/devel/p5-String-Approx/distinfo (props changed) head/devel/p5-String-Checker/distinfo (props changed) head/devel/p5-String-Diff/distinfo (props changed) head/devel/p5-String-Dump/distinfo (props changed) head/devel/p5-String-Ediff/distinfo (props changed) head/devel/p5-String-Errf/distinfo (props changed) head/devel/p5-String-Formatter/distinfo (props changed) head/devel/p5-String-LRC/distinfo (props changed) head/devel/p5-String-Parity/distinfo (props changed) head/devel/p5-String-Random/distinfo (props changed) head/devel/p5-String-RexxParse/distinfo (props changed) head/devel/p5-String-Similarity/distinfo (props changed) head/devel/p5-String-TT/distinfo (props changed) head/devel/p5-Sub-Alias/distinfo (props changed) head/devel/p5-Sub-Current/distinfo (props changed) head/devel/p5-Sub-Delete/distinfo (props changed) head/devel/p5-Sub-Exporter-ForMethods/distinfo (props changed) head/devel/p5-Sub-Exporter-GlobExporter/distinfo (props changed) head/devel/p5-Sub-Identify/distinfo (props changed) head/devel/p5-Sub-Installer/distinfo (props changed) head/devel/p5-Sub-Multi/distinfo (props changed) head/devel/p5-Sub-Name/distinfo (props changed) head/devel/p5-Sub-Override/distinfo (props changed) head/devel/p5-Sub-Prototype/distinfo (props changed) head/devel/p5-Sub-Signatures/distinfo (props changed) head/devel/p5-Sub-Uplevel/distinfo (props changed) head/devel/p5-Sub-WrapPackages/distinfo (props changed) head/devel/p5-Symbol-Util/distinfo (props changed) head/devel/p5-Syntax-Keyword-Junction/distinfo (props changed) head/devel/p5-Sys-Cpu/distinfo (props changed) head/devel/p5-Sys-Info-Base/distinfo (props changed) head/devel/p5-Sys-Info-Driver-BSD/distinfo (props changed) head/devel/p5-Sys-Info/distinfo (props changed) head/devel/p5-Sys-MemInfo/distinfo (props changed) head/devel/p5-Sys-Mmap/distinfo (props changed) head/devel/p5-Sys-RunAlone/distinfo (props changed) head/devel/p5-Sys-RunAlways/distinfo (props changed) head/devel/p5-Sys-Sendfile-FreeBSD/distinfo (props changed) head/devel/p5-Sys-Sendfile/distinfo (props changed) head/devel/p5-Sys-Sig/distinfo (props changed) head/devel/p5-Sys-SigAction/distinfo (props changed) head/devel/p5-Sys-Syscall/distinfo (props changed) head/devel/p5-Sys-Trace/distinfo (props changed) head/devel/p5-Sys-Virt/distinfo (props changed) head/devel/p5-System-Sub/distinfo (props changed) head/devel/p5-System2/distinfo (props changed) head/devel/p5-TAP-Formatter-JUnit/distinfo (props changed) head/devel/p5-TAP-Harness-JUnit/distinfo (props changed) head/devel/p5-TAP-SimpleOutput/distinfo (props changed) head/devel/p5-Taint-Runtime/distinfo (props changed) head/devel/p5-Taint-Util/distinfo (props changed) head/devel/p5-Task-Weaken/distinfo (props changed) head/devel/p5-Tee/distinfo (props changed) head/devel/p5-Template-Provider-Encode/distinfo (props changed) head/devel/p5-Term-ANSIColor/distinfo (props changed) head/devel/p5-Term-ANSIScreen/distinfo (props changed) head/devel/p5-Term-Animation/distinfo (props changed) head/devel/p5-Term-CallEditor/distinfo (props changed) head/devel/p5-Term-Encoding/distinfo (props changed) head/devel/p5-Term-Menus/distinfo (props changed) head/devel/p5-Term-ProgressBar/distinfo (props changed) head/devel/p5-Term-Prompt/distinfo (props changed) head/devel/p5-Term-Query/distinfo (props changed) head/devel/p5-Term-RawInput/distinfo (props changed) head/devel/p5-Term-ReadKey/distinfo (props changed) head/devel/p5-Term-ReadLine-Zoid/distinfo (props changed) head/devel/p5-Term-ReadPassword/distinfo (props changed) head/devel/p5-Term-Screen/distinfo (props changed) head/devel/p5-Term-Shell/distinfo (props changed) head/devel/p5-Term-Size/distinfo (props changed) head/devel/p5-Term-Title/distinfo (props changed) head/devel/p5-Term-VT102-Boundless/distinfo (props changed) head/devel/p5-Term-VT102/distinfo (props changed) head/devel/p5-Term-Visual/distinfo (props changed) head/devel/p5-Test-Assertions/distinfo (props changed) head/devel/p5-Test-Base/distinfo (props changed) head/devel/p5-Test-Benchmark/distinfo (props changed) head/devel/p5-Test-Block/distinfo (props changed) head/devel/p5-Test-CheckDeps/distinfo (props changed) head/devel/p5-Test-ClassAPI/distinfo (props changed) head/devel/p5-Test-Classy/distinfo (props changed) head/devel/p5-Test-Cmd/distinfo (props changed) head/devel/p5-Test-Command-Simple/distinfo (props changed) head/devel/p5-Test-Compile/distinfo (props changed) head/devel/p5-Test-DBIx-Class/distinfo (props changed) head/devel/p5-Test-Data/distinfo (props changed) head/devel/p5-Test-Debugger/distinfo (props changed) head/devel/p5-Test-Declare/distinfo (props changed) head/devel/p5-Test-Dependencies/distinfo (props changed) head/devel/p5-Test-Differences/distinfo (props changed) head/devel/p5-Test-Distribution/distinfo (props changed) head/devel/p5-Test-EOL/distinfo (props changed) head/devel/p5-Test-Exception-LessClever/distinfo (props changed) head/devel/p5-Test-Exception/distinfo (props changed) head/devel/p5-Test-Expect/distinfo (props changed) head/devel/p5-Test-Fatal/distinfo (props changed) head/devel/p5-Test-File-Contents/distinfo (props changed) head/devel/p5-Test-File-ShareDir/distinfo (props changed) head/devel/p5-Test-Filename/distinfo (props changed) head/devel/p5-Test-Fixture-DBIC-Schema/distinfo (props changed) head/devel/p5-Test-Group/distinfo (props changed) head/devel/p5-Test-HTML-Tidy/distinfo (props changed) head/devel/p5-Test-Harness-Straps/distinfo (props changed) head/devel/p5-Test-HasVersion/distinfo (props changed) head/devel/p5-Test-HexString/distinfo (props changed) head/devel/p5-Test-Identity/distinfo (props changed) head/devel/p5-Test-If/distinfo (props changed) head/devel/p5-Test-InDistDir/distinfo (props changed) head/devel/p5-Test-Inline/distinfo (props changed) head/devel/p5-Test-Inter/distinfo (props changed) head/devel/p5-Test-JSON/distinfo (props changed) head/devel/p5-Test-Kwalitee/distinfo (props changed) head/devel/p5-Test-Lazy/distinfo (props changed) head/devel/p5-Test-LeakTrace/distinfo (props changed) head/devel/p5-Test-LoadAllModules/distinfo (props changed) head/devel/p5-Test-Log4perl/distinfo (props changed) head/devel/p5-Test-LongString/distinfo (props changed) head/devel/p5-Test-Manifest/distinfo (props changed) head/devel/p5-Test-ManyParams/distinfo (props changed) head/devel/p5-Test-Memory-Cycle/distinfo (props changed) head/devel/p5-Test-Mini-Unit/distinfo (props changed) head/devel/p5-Test-Mini/distinfo (props changed) head/devel/p5-Test-Mock-Guard/distinfo (props changed) head/devel/p5-Test-Mock-LWP/distinfo (props changed) head/devel/p5-Test-MockModule/distinfo (props changed) head/devel/p5-Test-MockObject/distinfo (props changed) head/devel/p5-Test-MockRandom/distinfo (props changed) head/devel/p5-Test-MockTime/distinfo (props changed) head/devel/p5-Test-Module-Used/distinfo (props changed) head/devel/p5-Test-Moose-More/distinfo (props changed) head/devel/p5-Test-Most/distinfo (props changed) head/devel/p5-Test-Name-FromLine/distinfo (props changed) head/devel/p5-Test-Net-RabbitMQ/distinfo (props changed) head/devel/p5-Test-NoTabs/distinfo (props changed) head/devel/p5-Test-NoWarnings/distinfo (props changed) head/devel/p5-Test-Object/distinfo (props changed) head/devel/p5-Test-Output/distinfo (props changed) head/devel/p5-Test-POE-Client-TCP/distinfo (props changed) head/devel/p5-Test-POE-Server-TCP/distinfo (props changed) head/devel/p5-Test-Parser/distinfo (props changed) head/devel/p5-Test-PerlTidy/distinfo (props changed) head/devel/p5-Test-Pod-Coverage-Permissive/distinfo (props changed) head/devel/p5-Test-Pod-Coverage/distinfo (props changed) head/devel/p5-Test-Pod/distinfo (props changed) head/devel/p5-Test-RandomResults/distinfo (props changed) head/devel/p5-Test-Refcount/distinfo (props changed) head/devel/p5-Test-Reporter-Transport-Metabase/distinfo (props changed) head/devel/p5-Test-Reporter/distinfo (props changed) head/devel/p5-Test-Requires/distinfo (props changed) head/devel/p5-Test-Script-Run/distinfo (props changed) head/devel/p5-Test-Script/distinfo (props changed) head/devel/p5-Test-SharedFork/distinfo (props changed) head/devel/p5-Test-Signature/distinfo (props changed) head/devel/p5-Test-Singleton/distinfo (props changed) head/devel/p5-Test-Spelling/distinfo (props changed) head/devel/p5-Test-Strict/distinfo (props changed) head/devel/p5-Test-SubCalls/distinfo (props changed) head/devel/p5-Test-Synopsis/distinfo (props changed) head/devel/p5-Test-Sys-Info/distinfo (props changed) head/devel/p5-Test-TAP-HTMLMatrix/distinfo (props changed) head/devel/p5-Test-TAP-Model/distinfo (props changed) head/devel/p5-Test-TCP/distinfo (props changed) head/devel/p5-Test-TableDriven/distinfo (props changed) head/devel/p5-Test-Taint/distinfo (props changed) head/devel/p5-Test-Tester/distinfo (props changed) head/devel/p5-Test-Time/distinfo (props changed) head/devel/p5-Test-Timer/distinfo (props changed) head/devel/p5-Test-Unit/distinfo (props changed) head/devel/p5-Test-UseAllModules/distinfo (props changed) head/devel/p5-Test-WWW-Declare/distinfo (props changed) head/devel/p5-Test-WWW-Mechanize-CGI/distinfo (props changed) head/devel/p5-Test-WWW-Mechanize-CGIApp/distinfo (props changed) head/devel/p5-Test-WWW-Mechanize-Catalyst/distinfo (props changed) head/devel/p5-Test-WWW-Mechanize-PSGI/distinfo (props changed) head/devel/p5-Test-WWW-Mechanize/distinfo (props changed) head/devel/p5-Test-WWW-Selenium/distinfo (props changed) head/devel/p5-Test-Warn/distinfo (props changed) head/devel/p5-Test-Weaken/distinfo (props changed) head/devel/p5-Test-Without-Module/distinfo (props changed) head/devel/p5-Test-XML-Valid/distinfo (props changed) head/devel/p5-Test-XML/distinfo (props changed) head/devel/p5-Test-YAML-Valid/distinfo (props changed) head/devel/p5-Test-use-ok/distinfo (props changed) head/devel/p5-Text-Levenshtein/distinfo (props changed) head/devel/p5-Text-LevenshteinXS/distinfo (props changed) head/devel/p5-Text-Outdent/distinfo (props changed) head/devel/p5-Text-vFile-asData/distinfo (props changed) head/devel/p5-TheSchwartz-Simple/distinfo (props changed) head/devel/p5-TheSchwartz-Worker-SendEmail/distinfo (props changed) head/devel/p5-TheSchwartz/distinfo (props changed) head/devel/p5-Thread-Apartment/distinfo (props changed) head/devel/p5-Thread-Cancel/distinfo (props changed) head/devel/p5-Thread-Pool-Simple/distinfo (props changed) head/devel/p5-Thread-Queue-Duplex/distinfo (props changed) head/devel/p5-Thrift-XS/distinfo (props changed) head/devel/p5-Tie-Array-Pack/distinfo (props changed) head/devel/p5-Tie-Array-Sorted/distinfo (props changed) head/devel/p5-Tie-CPHash/distinfo (props changed) head/devel/p5-Tie-Cache/distinfo (props changed) head/devel/p5-Tie-DB_File-SplitHash/distinfo (props changed) head/devel/p5-Tie-DB_FileLock/distinfo (props changed) head/devel/p5-Tie-File-AsHash/distinfo (props changed) head/devel/p5-Tie-File/distinfo (props changed) head/devel/p5-Tie-FileLRUCache/distinfo (props changed) head/devel/p5-Tie-Function/distinfo (props changed) head/devel/p5-Tie-Hash-Indexed/distinfo (props changed) head/devel/p5-Tie-Hash-MultiValue/distinfo (props changed) head/devel/p5-Tie-Hash-Regex/distinfo (props changed) head/devel/p5-Tie-Hash-Sorted/distinfo (props changed) head/devel/p5-Tie-Hash-TwoWay/distinfo (props changed) head/devel/p5-Tie-IxHash/distinfo (props changed) head/devel/p5-Tie-LLHash/distinfo (props changed) head/devel/p5-Tie-RefHash-Weak/distinfo (props changed) head/devel/p5-Tie-RefHash/distinfo (props changed) head/devel/p5-Tie-RegexpHash/distinfo (props changed) head/devel/p5-Tie-Restore/distinfo (props changed) head/devel/p5-Tie-ShareLite/distinfo (props changed) head/devel/p5-Tie-Simple/distinfo (props changed) head/devel/p5-Tie-ToObject/distinfo (props changed) head/devel/p5-Tie-Util/distinfo (props changed) head/devel/p5-Tie-iCal/distinfo (props changed) head/devel/p5-Time-Clock/distinfo (props changed) head/devel/p5-Time-Crontab/distinfo (props changed) head/devel/p5-Time-Duration-Parse/distinfo (props changed) head/devel/p5-Time-Duration/distinfo (props changed) head/devel/p5-Time-Format/distinfo (props changed) head/devel/p5-Time-HiRes/distinfo (props changed) head/devel/p5-Time-Interval/distinfo (props changed) head/devel/p5-Time-Local/distinfo (props changed) head/devel/p5-Time-Object/distinfo (props changed) head/devel/p5-Time-Out/distinfo (props changed) head/devel/p5-Time-Period/distinfo (props changed) head/devel/p5-Time-Piece-Range/distinfo (props changed) head/devel/p5-Time-Piece/distinfo (props changed) head/devel/p5-Time-Progress/distinfo (props changed) head/devel/p5-Time-Stopwatch/distinfo (props changed) head/devel/p5-Time-Warp/distinfo (props changed) head/devel/p5-TimeDate/distinfo (props changed) head/devel/p5-ToolSet/distinfo (props changed) head/devel/p5-TraceFuncs/distinfo (props changed) head/devel/p5-Tree-Binary-Dictionary/distinfo (props changed) head/devel/p5-Tree-Binary/distinfo (props changed) head/devel/p5-Tree-Node/distinfo (props changed) head/devel/p5-Tree-Parser/distinfo (props changed) head/devel/p5-Tree-R/distinfo (props changed) head/devel/p5-Tree-RedBlack/distinfo (props changed) head/devel/p5-Tree-Simple-View/distinfo (props changed) head/devel/p5-Tree-Simple-VisitorFactory/distinfo (props changed) head/devel/p5-UDCode/distinfo (props changed) head/devel/p5-UNIVERSAL-can/distinfo (props changed) head/devel/p5-UNIVERSAL-isa/distinfo (props changed) head/devel/p5-UNIVERSAL-moniker/distinfo (props changed) head/devel/p5-UNIVERSAL-ref/distinfo (props changed) head/devel/p5-UNIVERSAL-require/distinfo (props changed) head/devel/p5-UNIVERSAL-which/distinfo (props changed) head/devel/p5-UUID/distinfo (props changed) head/devel/p5-Uniq/distinfo (props changed) head/devel/p5-Unix-Statgrab/distinfo (props changed) head/devel/p5-Unix-Uptime/distinfo (props changed) head/devel/p5-User-Identity/distinfo (props changed) head/devel/p5-VCP-Dest-svk/distinfo (props changed) head/devel/p5-VCP-Source-cvsbk/distinfo (props changed) head/devel/p5-VCP-autrijus/distinfo (props changed) head/devel/p5-VCS-CVS/distinfo (props changed) head/devel/p5-VCS-Lite/distinfo (props changed) head/devel/p5-VCS/distinfo (props changed) head/devel/p5-Validation-Class/distinfo (props changed) head/devel/p5-Variable-Eject/distinfo (props changed) head/devel/p5-Variable-Magic/distinfo (props changed) head/devel/p5-WeakRef/distinfo (props changed) head/devel/p5-XML-Compile-Tester/distinfo (props changed) head/devel/p5-XML-Pastor/distinfo (props changed) head/devel/p5-XS-Object-Magic/distinfo (props changed) head/devel/p5-XSLoader/distinfo (props changed) head/devel/p5-YAML-AppConfig/distinfo (props changed) head/devel/p5-Yada-Yada-Yada/distinfo (props changed) head/devel/p5-ZConf-GUI/distinfo (props changed) head/devel/p5-ZML/distinfo (props changed) head/devel/p5-accessors/distinfo (props changed) head/devel/p5-aliased/distinfo (props changed) head/devel/p5-asa/distinfo (props changed) head/devel/p5-autobox-Core/distinfo (props changed) head/devel/p5-base/distinfo (props changed) head/devel/p5-capitalization/distinfo (props changed) head/devel/p5-carton/distinfo (props changed) head/devel/p5-common-sense/distinfo (props changed) head/devel/p5-constant-boolean/distinfo (props changed) head/devel/p5-constant-def/distinfo (props changed) head/devel/p5-constant-lexical/distinfo (props changed) head/devel/p5-cpan-listchanges/distinfo (props changed) head/devel/p5-enum/distinfo (props changed) head/devel/p5-ex-lib/distinfo (props changed) head/devel/p5-forks/distinfo (props changed) head/devel/p5-github_creator/distinfo (props changed) head/devel/p5-iCal-Parser/distinfo (props changed) head/devel/p5-indirect/distinfo (props changed) head/devel/p5-latest/distinfo (props changed) head/devel/p5-lib-abs/distinfo (props changed) head/devel/p5-libalarm/distinfo (props changed) head/devel/p5-libxml-enno/distinfo (props changed) head/devel/p5-local-lib/distinfo (props changed) head/devel/p5-mixin/distinfo (props changed) head/devel/p5-mocked/distinfo (props changed) head/devel/p5-namespace-autoclean/distinfo (props changed) head/devel/p5-namespace-sweep/distinfo (props changed) head/devel/p5-orz/distinfo (props changed) head/devel/p5-parent/distinfo (props changed) head/devel/p5-perlbrew/distinfo (props changed) head/devel/p5-pip/distinfo (props changed) head/devel/p5-prefork/distinfo (props changed) head/devel/p5-reaper/distinfo (props changed) head/devel/p5-relative/distinfo (props changed) head/devel/p5-self-init/distinfo (props changed) head/devel/p5-self/distinfo (props changed) head/devel/p5-subatom/distinfo (props changed) head/devel/p5-syntax/distinfo (props changed) head/devel/p5-true/distinfo (props changed) head/devel/p5-uni-perl/distinfo (props changed) head/devel/p65/distinfo (props changed) head/devel/papi/distinfo (props changed) head/devel/papp/distinfo (props changed) head/devel/pas2dox/distinfo (props changed) head/devel/patch/distinfo (props changed) head/devel/pccts/distinfo (props changed) head/devel/pcl/distinfo (props changed) head/devel/pcre++/distinfo (props changed) head/devel/pcsc-lite/distinfo (props changed) head/devel/pdcurses-the/distinfo (props changed) head/devel/pdcurses/distinfo (props changed) head/devel/pear-Config/distinfo (props changed) head/devel/pear-Console_Color/distinfo (props changed) head/devel/pear-Console_Getargs/distinfo (props changed) head/devel/pear-Date/distinfo (props changed) head/devel/pear-Date_Holidays_Austria/distinfo (props changed) head/devel/pear-Date_Holidays_Brazil/distinfo (props changed) head/devel/pear-Date_Holidays_Denmark/distinfo (props changed) head/devel/pear-Date_Holidays_Discordian/distinfo (props changed) head/devel/pear-Date_Holidays_Germany/distinfo (props changed) head/devel/pear-Date_Holidays_Iceland/distinfo (props changed) head/devel/pear-Date_Holidays_Ireland/distinfo (props changed) head/devel/pear-Date_Holidays_Italy/distinfo (props changed) head/devel/pear-Date_Holidays_Japan/distinfo (props changed) head/devel/pear-Date_Holidays_Norway/distinfo (props changed) head/devel/pear-Date_Holidays_PHPdotNet/distinfo (props changed) head/devel/pear-Date_Holidays_Romania/distinfo (props changed) head/devel/pear-Date_Holidays_Slovenia/distinfo (props changed) head/devel/pear-Date_Holidays_Sweden/distinfo (props changed) head/devel/pear-Date_Holidays_UNO/distinfo (props changed) head/devel/pear-Date_Holidays_USA/distinfo (props changed) head/devel/pear-Date_Holidays_Ukraine/distinfo (props changed) head/devel/pear-Event_Dispatcher/distinfo (props changed) head/devel/pear-FSM/distinfo (props changed) head/devel/pear-File_Iterator/distinfo (props changed) head/devel/pear-HTML_BBCodeParser/distinfo (props changed) head/devel/pear-HTML_CSS/distinfo (props changed) head/devel/pear-HTML_Common/distinfo (props changed) head/devel/pear-HTML_Common2/distinfo (props changed) head/devel/pear-HTML_Form/distinfo (props changed) head/devel/pear-HTML_Javascript/distinfo (props changed) head/devel/pear-HTML_Page2/distinfo (props changed) head/devel/pear-HTML_QuickForm_Livesearch/distinfo (props changed) head/devel/pear-HTML_QuickForm_Renderer_Tableless/distinfo (props changed) head/devel/pear-HTML_QuickForm_SelectFilter/distinfo (props changed) head/devel/pear-HTML_QuickForm_advmultiselect/distinfo (props changed) head/devel/pear-HTML_Select/distinfo (props changed) head/devel/pear-HTML_Select_Common/distinfo (props changed) head/devel/pear-HTML_Table/distinfo (props changed) head/devel/pear-HTML_Template_Flexy/distinfo (props changed) head/devel/pear-HTML_Template_IT/distinfo (props changed) head/devel/pear-HTML_Template_PHPLIB/distinfo (props changed) head/devel/pear-HTML_TreeMenu/distinfo (props changed) head/devel/pear-Horde_Alarm/distinfo (props changed) head/devel/pear-Horde_Argv/distinfo (props changed) head/devel/pear-Horde_Autoloader/distinfo (props changed) head/devel/pear-Horde_Autoloader_Cache/distinfo (props changed) head/devel/pear-Horde_Cache/distinfo (props changed) head/devel/pear-Horde_Cli/distinfo (props changed) head/devel/pear-Horde_Constraint/distinfo (props changed) head/devel/pear-Horde_Controller/distinfo (props changed) head/devel/pear-Horde_Core/distinfo (props changed) head/devel/pear-Horde_Data/distinfo (props changed) head/devel/pear-Horde_Date/distinfo (props changed) head/devel/pear-Horde_Date_Parser/distinfo (props changed) head/devel/pear-Horde_Exception/distinfo (props changed) head/devel/pear-Horde_History/distinfo (props changed) head/devel/pear-Horde_Icalendar/distinfo (props changed) head/devel/pear-Horde_Injector/distinfo (props changed) head/devel/pear-Horde_Itip/distinfo (props changed) head/devel/pear-Horde_Lock/distinfo (props changed) head/devel/pear-Horde_LoginTasks/distinfo (props changed) head/devel/pear-Horde_Nls/distinfo (props changed) head/devel/pear-Horde_Notification/distinfo (props changed) head/devel/pear-Horde_Prefs/distinfo (props changed) head/devel/pear-Horde_Queue/distinfo (props changed) head/devel/pear-Horde_Rdo/distinfo (props changed) head/devel/pear-Horde_Role/distinfo (props changed) head/devel/pear-Horde_Scheduler/distinfo (props changed) head/devel/pear-Horde_Serialize/distinfo (props changed) head/devel/pear-Horde_Stream/distinfo (props changed) head/devel/pear-Horde_Stream_Filter/distinfo (props changed) head/devel/pear-Horde_Stream_Wrapper/distinfo (props changed) head/devel/pear-Horde_Support/distinfo (props changed) head/devel/pear-Horde_Thrift/distinfo (props changed) head/devel/pear-Horde_Timezone/distinfo (props changed) head/devel/pear-Horde_Token/distinfo (props changed) head/devel/pear-Horde_Translation/distinfo (props changed) head/devel/pear-Horde_Tree/distinfo (props changed) head/devel/pear-Horde_Util/distinfo (props changed) head/devel/pear-Horde_View/distinfo (props changed) head/devel/pear-I18N/distinfo (props changed) head/devel/pear-IO_Bit/distinfo (props changed) head/devel/pear-Math_Fraction/distinfo (props changed) head/devel/pear-Net_Gearman/distinfo (props changed) head/devel/pear-PEAR_Info/distinfo (props changed) head/devel/pear-PEAR_PackageFileManager/distinfo (props changed) head/devel/pear-PEAR_PackageFileManager2/distinfo (props changed) head/devel/pear-PEAR_PackageFileManager_Plugins/distinfo (props changed) head/devel/pear-PHPDoc/distinfo (props changed) head/devel/pear-PHPTAL/distinfo (props changed) head/devel/pear-PHPUnit3/distinfo (props changed) head/devel/pear-PHPUnit_MockObject/distinfo (props changed) head/devel/pear-PHP_ArrayOf/distinfo (props changed) head/devel/pear-PHP_Beautifier/distinfo (props changed) head/devel/pear-PHP_CodeBrowser/distinfo (props changed) head/devel/pear-PHP_CodeCoverage/distinfo (props changed) head/devel/pear-PHP_Compat/distinfo (props changed) head/devel/pear-PHP_CompatInfo/distinfo (props changed) head/devel/pear-PHP_Depend/distinfo (props changed) head/devel/pear-PHP_PMD/distinfo (props changed) head/devel/pear-PHP_Parser/distinfo (props changed) head/devel/pear-PHP_ParserGenerator/distinfo (props changed) head/devel/pear-PHP_Timer/distinfo (props changed) head/devel/pear-PHP_TokenStream/distinfo (props changed) head/devel/pear-PHP_UML/distinfo (props changed) head/devel/pear-PPW/distinfo (props changed) head/devel/pear-Pager/distinfo (props changed) head/devel/pear-PhpDocumentor/distinfo (props changed) head/devel/pear-Pirum/distinfo (props changed) head/devel/pear-SebastianBergmann_FinderFacade/distinfo (props changed) head/devel/pear-SebastianBergmann_PHPCPD/distinfo (props changed) head/devel/pear-Structure_LinkedList/distinfo (props changed) head/devel/pear-Structures_DataGrid/distinfo (props changed) head/devel/pear-Structures_DataGrid_Renderer_Console/distinfo (props changed) head/devel/pear-Structures_DataGrid_Renderer_HTMLSortForm/distinfo (props changed) head/devel/pear-Structures_DataGrid_Renderer_XUL/distinfo (props changed) head/devel/pear-Symfony_Component_Console/distinfo (props changed) head/devel/pear-Symfony_Component_Finder/distinfo (props changed) head/devel/pear-System_Command/distinfo (props changed) head/devel/pear-Testing_Selenium/distinfo (props changed) head/devel/pear-Text_Diff/distinfo (props changed) head/devel/pear-TheSeer_fXSL/distinfo (props changed) head/devel/pear-TheSeer_phpDox/distinfo (props changed) head/devel/pear-VFS/distinfo (props changed) head/devel/pear-Validate/distinfo (props changed) head/devel/pear-Validate_AU/distinfo (props changed) head/devel/pear-Validate_Finance/distinfo (props changed) head/devel/pear-Validate_Finance_CreditCard/distinfo (props changed) head/devel/pear-Validate_US/distinfo (props changed) head/devel/pear-Var_Dump/distinfo (props changed) head/devel/pear-VersionControl_Git/distinfo (props changed) head/devel/pear-VersionControl_SVN/distinfo (props changed) head/devel/pear-XML_NITF/distinfo (props changed) head/devel/pear-XML_Parser/distinfo (props changed) head/devel/pear-XML_RSS/distinfo (props changed) head/devel/pear-XML_SVG/distinfo (props changed) head/devel/pear-XML_Serializer/distinfo (props changed) head/devel/pear-XML_Transformer/distinfo (props changed) head/devel/pear-XML_Tree/distinfo (props changed) head/devel/pear-XML_Util/distinfo (props changed) head/devel/pear-codegen/distinfo (props changed) head/devel/pear-ezc_Base/distinfo (props changed) head/devel/pear-ezc_ConsoleTools/distinfo (props changed) head/devel/pear-htmlpurifier/distinfo (props changed) head/devel/pear-pdepend-staticReflection/distinfo (props changed) head/devel/pear-phing/distinfo (props changed) head/devel/pecl-bbcode/distinfo (props changed) head/devel/pecl-bcompiler/distinfo (props changed) head/devel/pecl-eio/distinfo (props changed) head/devel/pecl-expect/distinfo (props changed) head/devel/pecl-htscanner/distinfo (props changed) head/devel/pecl-inotify/distinfo (props changed) head/devel/pecl-judy/distinfo (props changed) head/devel/pecl-libevent/distinfo (props changed) head/devel/pecl-mcve/distinfo (props changed) head/devel/pecl-ncurses/distinfo (props changed) head/devel/pecl-newt/distinfo (props changed) head/devel/pecl-operator/distinfo (props changed) head/devel/pecl-params/distinfo (props changed) head/devel/pecl-parsekit/distinfo (props changed) head/devel/pecl-runkit/distinfo (props changed) head/devel/pecl-scream/distinfo (props changed) head/devel/pecl-shape/distinfo (props changed) head/devel/pecl-spl_types/distinfo (props changed) head/devel/pecl-spread/distinfo (props changed) head/devel/pecl-statgrab/distinfo (props changed) head/devel/pecl-svn/distinfo (props changed) head/devel/pecl-test_helpers/distinfo (props changed) head/devel/pecl-uuid/distinfo (props changed) head/devel/pecl-yac/distinfo (props changed) head/devel/pecl-zookeeper/distinfo (props changed) head/devel/performance/distinfo (props changed) head/devel/perlconsole/distinfo (props changed) head/devel/php-java-bridge/distinfo (props changed) head/devel/php5-blitz-devel/distinfo (props changed) head/devel/php5-blitz/distinfo (props changed) head/devel/php5-dav/distinfo (props changed) head/devel/php5-geshi/distinfo (props changed) head/devel/php5-msgpack/distinfo (props changed) head/devel/php5-pinba/distinfo (props changed) head/devel/phpbt/distinfo (props changed) head/devel/phpsh/distinfo (props changed) head/devel/phptags/distinfo (props changed) head/devel/physfs-devel/distinfo (props changed) head/devel/picasm/distinfo (props changed) head/devel/picp/distinfo (props changed) head/devel/picprog/distinfo (props changed) head/devel/pinba_engine/distinfo (props changed) head/devel/pipestatus/distinfo (props changed) head/devel/pire/distinfo (props changed) head/devel/plan9port/distinfo (props changed) head/devel/pmd/distinfo (props changed) head/devel/pmk/distinfo (props changed) head/devel/poco-ssl/distinfo (props changed) head/devel/poco/distinfo (props changed) head/devel/popt/distinfo (props changed) head/devel/poslib/distinfo (props changed) head/devel/ppl/distinfo (props changed) head/devel/premake/distinfo (props changed) head/devel/premake4/distinfo (props changed) head/devel/preps-gui/distinfo (props changed) head/devel/prepstools/distinfo (props changed) head/devel/privman/distinfo (props changed) head/devel/projectcenter/distinfo (props changed) head/devel/protobuf-c/distinfo (props changed) head/devel/protobuf/distinfo (props changed) head/devel/prototype/distinfo (props changed) head/devel/psptoolchain-binutils/distinfo (props changed) head/devel/psptoolchain-gcc-stage1/distinfo (props changed) head/devel/psptoolchain-gdb/distinfo (props changed) head/devel/psptoolchain-newlib/distinfo (props changed) head/devel/psptoolchain-pspsdk-stage1/distinfo (props changed) head/devel/psvn/distinfo (props changed) head/devel/pth/distinfo (props changed) head/devel/pthsem/distinfo (props changed) head/devel/ptmalloc/distinfo (props changed) head/devel/ptmalloc2/distinfo (props changed) head/devel/pty/distinfo (props changed) head/devel/ptypes/distinfo (props changed) head/devel/publib/distinfo (props changed) head/devel/pure-ffi/distinfo (props changed) head/devel/pure-gen/distinfo (props changed) head/devel/pure-readline/distinfo (props changed) head/devel/pure-stldict/distinfo (props changed) head/devel/pushmi/distinfo (props changed) head/devel/pwlib/distinfo (props changed) head/devel/py-Acquisition/distinfo (props changed) head/devel/py-AddOns/distinfo (props changed) head/devel/py-Breve/distinfo (props changed) head/devel/py-BytecodeAssembler/distinfo (props changed) head/devel/py-DocumentTemplate/distinfo (props changed) head/devel/py-EnthoughtBase/distinfo (props changed) head/devel/py-ExtensionClass/distinfo (props changed) head/devel/py-InlineEgg/distinfo (props changed) head/devel/py-Jinja/distinfo (props changed) head/devel/py-Jinja2/distinfo (props changed) head/devel/py-Missing/distinfo (props changed) head/devel/py-MultiMapping/distinfo (props changed) head/devel/py-PEAK-Rules/distinfo (props changed) head/devel/py-Persistence/distinfo (props changed) head/devel/py-Products.ATReferenceBrowserWidget/distinfo (props changed) head/devel/py-Products.BTreeFolder2/distinfo (props changed) head/devel/py-Products.CMFActionIcons/distinfo (props changed) head/devel/py-Products.CMFCalendar/distinfo (props changed) head/devel/py-Products.CMFCore/distinfo (props changed) head/devel/py-Products.CMFDefault/distinfo (props changed) head/devel/py-Products.CMFEditions/distinfo (props changed) head/devel/py-Products.CMFFormController/distinfo (props changed) head/devel/py-Products.CMFPlacefulWorkflow/distinfo (props changed) head/devel/py-Products.CMFQuickInstallerTool/distinfo (props changed) head/devel/py-Products.CMFTestCase/distinfo (props changed) head/devel/py-Products.CMFUid/distinfo (props changed) head/devel/py-Products.DCWorkflow/distinfo (props changed) head/devel/py-Products.ExtendedPathIndex/distinfo (props changed) head/devel/py-Products.ExternalEditor/distinfo (props changed) head/devel/py-Products.ExternalMethod/distinfo (props changed) head/devel/py-Products.LDAPMultiPlugins/distinfo (props changed) head/devel/py-Products.LDAPUserFolder/distinfo (props changed) head/devel/py-Products.MIMETools/distinfo (props changed) head/devel/py-Products.Marshall/distinfo (props changed) head/devel/py-Products.OFSP/distinfo (props changed) head/devel/py-Products.PloneLanguageTool/distinfo (props changed) head/devel/py-Products.PluginRegistry/distinfo (props changed) head/devel/py-Products.PortalTransforms/distinfo (props changed) head/devel/py-Products.PythonScripts/distinfo (props changed) head/devel/py-Products.StandardCacheManagers/distinfo (props changed) head/devel/py-Products.ZCTextIndex/distinfo (props changed) head/devel/py-Products.ZCatalog/distinfo (props changed) head/devel/py-Products.ZSQLMethods/distinfo (props changed) head/devel/py-Products.ZopeVersionControl/distinfo (props changed) head/devel/py-Products.statusmessages/distinfo (props changed) head/devel/py-Products.validation/distinfo (props changed) head/devel/py-RPyC/distinfo (props changed) head/devel/py-Record/distinfo (props changed) head/devel/py-ScriptTest/distinfo (props changed) head/devel/py-SymbolType/distinfo (props changed) head/devel/py-TGScheduler/distinfo (props changed) head/devel/py-ToscaWidgets/distinfo (props changed) head/devel/py-TurboJinja/distinfo (props changed) head/devel/py-ZopeUndo/distinfo (props changed) head/devel/py-akismet/distinfo (props changed) head/devel/py-anonfunc/distinfo (props changed) head/devel/py-anyjson/distinfo (props changed) head/devel/py-apipkg/distinfo (props changed) head/devel/py-application/distinfo (props changed) head/devel/py-archetypes.schemaextender/distinfo (props changed) head/devel/py-argh/distinfo (props changed) head/devel/py-asn1-modules/distinfo (props changed) head/devel/py-asn1/distinfo (props changed) head/devel/py-aspects/distinfo (props changed) head/devel/py-aspyct/distinfo (props changed) head/devel/py-async/distinfo (props changed) head/devel/py-avro/distinfo (props changed) head/devel/py-babel/distinfo (props changed) head/devel/py-biplist/distinfo (props changed) head/devel/py-bison/distinfo (props changed) head/devel/py-cclib/distinfo (props changed) head/devel/py-celery/distinfo (props changed) head/devel/py-cfgparse/distinfo (props changed) head/devel/py-cheetah/distinfo (props changed) head/devel/py-ciphon/distinfo (props changed) head/devel/py-cjson/distinfo (props changed) head/devel/py-cld/distinfo (props changed) head/devel/py-cmdln/distinfo (props changed) head/devel/py-cog/distinfo (props changed) head/devel/py-coil/distinfo (props changed) head/devel/py-collective.monkeypatcher/distinfo (props changed) head/devel/py-colorama/distinfo (props changed) head/devel/py-configobj/distinfo (props changed) head/devel/py-construct/distinfo (props changed) head/devel/py-country/distinfo (props changed) head/devel/py-coverage/distinfo (props changed) head/devel/py-crcmod/distinfo (props changed) head/devel/py-ctags/distinfo (props changed) head/devel/py-cxx/distinfo (props changed) head/devel/py-daemon/distinfo (props changed) head/devel/py-dal/distinfo (props changed) head/devel/py-darcsver/distinfo (props changed) head/devel/py-decoratortools/distinfo (props changed) head/devel/py-defusedxml/distinfo (props changed) head/devel/py-deliciousapi/distinfo (props changed) head/devel/py-demjson/distinfo (props changed) head/devel/py-dexml/distinfo (props changed) head/devel/py-dialog/distinfo (props changed) head/devel/py-diazo/distinfo (props changed) head/devel/py-dirspec/distinfo (props changed) head/devel/py-durus/distinfo (props changed) head/devel/py-eggtestinfo/distinfo (props changed) head/devel/py-epsilon/distinfo (props changed) head/devel/py-event/distinfo (props changed) head/devel/py-experimental.cssselect/distinfo (props changed) head/devel/py-extremes/distinfo (props changed) head/devel/py-ezpyinline/distinfo (props changed) head/devel/py-fam/distinfo (props changed) head/devel/py-fastimport/distinfo (props changed) head/devel/py-fileutils/distinfo (props changed) head/devel/py-five.formlib/distinfo (props changed) head/devel/py-five.globalrequest/distinfo (props changed) head/devel/py-five.localsitemanager/distinfo (props changed) head/devel/py-flexmock/distinfo (props changed) head/devel/py-foolscap/distinfo (props changed) head/devel/py-fortran/distinfo (props changed) head/devel/py-freebsd/distinfo (props changed) head/devel/py-fs/distinfo (props changed) head/devel/py-fudge/distinfo (props changed) head/devel/py-funcparserlib/distinfo (props changed) head/devel/py-fusefs/distinfo (props changed) head/devel/py-game/distinfo (props changed) head/devel/py-gdata/distinfo (props changed) head/devel/py-gearman/distinfo (props changed) head/devel/py-generate/distinfo (props changed) head/devel/py-geojson/distinfo (props changed) head/devel/py-geotypes/distinfo (props changed) head/devel/py-gflags/distinfo (props changed) head/devel/py-gitdb/distinfo (props changed) head/devel/py-gitosis/distinfo (props changed) head/devel/py-gitpython/distinfo (props changed) head/devel/py-gobject/distinfo (props changed) head/devel/py-grab/distinfo (props changed) head/devel/py-grizzled/distinfo (props changed) head/devel/py-grouch/distinfo (props changed) head/devel/py-gyp-devel/distinfo (props changed) head/devel/py-hashring/distinfo (props changed) head/devel/py-hghooks/distinfo (props changed) head/devel/py-hgsubversion/distinfo (props changed) head/devel/py-icu/distinfo (props changed) head/devel/py-iniparse/distinfo (props changed) head/devel/py-initgroups/distinfo (props changed) head/devel/py-interface/distinfo (props changed) head/devel/py-ipaddr/distinfo (props changed) head/devel/py-iterpipes/distinfo (props changed) head/devel/py-itools/distinfo (props changed) head/devel/py-jcc/distinfo (props changed) head/devel/py-jira/distinfo (props changed) head/devel/py-jsmin/distinfo (props changed) head/devel/py-json-py/distinfo (props changed) head/devel/py-jsonlib/distinfo (props changed) head/devel/py-jsonlib2/distinfo (props changed) head/devel/py-jsonrpclib/distinfo (props changed) head/devel/py-jsonschema/distinfo (props changed) head/devel/py-kid/distinfo (props changed) head/devel/py-kjbuckets/distinfo (props changed) head/devel/py-kqueue/distinfo (props changed) head/devel/py-levenshtein/distinfo (props changed) head/devel/py-liblarch/distinfo (props changed) head/devel/py-libvirt/distinfo (props changed) head/devel/py-ll-core/distinfo (props changed) head/devel/py-lock_file/distinfo (props changed) head/devel/py-lockfile/distinfo (props changed) head/devel/py-log4py/distinfo (props changed) head/devel/py-magic/distinfo (props changed) head/devel/py-manuel/distinfo (props changed) head/devel/py-meliae/distinfo (props changed) head/devel/py-mercurialserver/distinfo (props changed) head/devel/py-mez_xml/distinfo (props changed) head/devel/py-mimeparse/distinfo (props changed) head/devel/py-minimongo/distinfo (props changed) head/devel/py-mock/distinfo (props changed) head/devel/py-mongokit/distinfo (props changed) head/devel/py-mox/distinfo (props changed) head/devel/py-msgpack/distinfo (props changed) head/devel/py-mwlib.ext/distinfo (props changed) head/devel/py-mwlib.rl/distinfo (props changed) head/devel/py-mwlib/distinfo (props changed) head/devel/py-mx-experimental/distinfo (props changed) head/devel/py-mygpoclient/distinfo (props changed) head/devel/py-ncurses/distinfo (props changed) head/devel/py-notifier/distinfo (props changed) head/devel/py-notify/distinfo (props changed) head/devel/py-ocempgui/distinfo (props changed) head/devel/py-ode/distinfo (props changed) head/devel/py-odfpy/distinfo (props changed) head/devel/py-omniorb/distinfo (props changed) head/devel/py-optik/distinfo (props changed) head/devel/py-orbit/distinfo (props changed) head/devel/py-ordereddict/distinfo (props changed) head/devel/py-parsedatetime/distinfo (props changed) head/devel/py-parsing/distinfo (props changed) head/devel/py-pathtools/distinfo (props changed) head/devel/py-paver/distinfo (props changed) head/devel/py-pefile/distinfo (props changed) head/devel/py-period/distinfo (props changed) head/devel/py-phpserialize/distinfo (props changed) head/devel/py-pika/distinfo (props changed) head/devel/py-plex/distinfo (props changed) head/devel/py-ply/distinfo (props changed) head/devel/py-polib/distinfo (props changed) head/devel/py-pp/distinfo (props changed) head/devel/py-pqueue/distinfo (props changed) head/devel/py-prettytable/distinfo (props changed) head/devel/py-prioritized_methods/distinfo (props changed) head/devel/py-protobuf/distinfo (props changed) head/devel/py-protocols-devel/distinfo (props changed) head/devel/py-protocols/distinfo (props changed) head/devel/py-pudb/distinfo (props changed) head/devel/py-px/distinfo (props changed) head/devel/py-pycalendar/distinfo (props changed) head/devel/py-pycallgraph/distinfo (props changed) head/devel/py-pydasm/distinfo (props changed) head/devel/py-pyev/distinfo (props changed) head/devel/py-pygit2/distinfo (props changed) head/devel/py-pygpx/distinfo (props changed) head/devel/py-pyke/distinfo (props changed) head/devel/py-pymarc/distinfo (props changed) head/devel/py-pyro/distinfo (props changed) head/devel/py-pyshapelib/distinfo (props changed) head/devel/py-pytemplate/distinfo (props changed) head/devel/py-pytest-runner/distinfo (props changed) head/devel/py-pytest/distinfo (props changed) head/devel/py-pythonbrew/distinfo (props changed) head/devel/py-pytz/distinfo (props changed) head/devel/py-pyutil/distinfo (props changed) head/devel/py-qserve/distinfo (props changed) head/devel/py-repoze.tm2/distinfo (props changed) head/devel/py-repoze.what-pylons/distinfo (props changed) head/devel/py-repoze.what/distinfo (props changed) head/devel/py-repoze.who-friendlyform/distinfo (props changed) head/devel/py-repoze.who-testutil/distinfo (props changed) head/devel/py-repoze.xmliter/distinfo (props changed) head/devel/py-resourcepackage/distinfo (props changed) head/devel/py-robotframework-pabot/distinfo (props changed) head/devel/py-robotframework-ride/distinfo (props changed) head/devel/py-rope/distinfo (props changed) head/devel/py-roxlib/distinfo (props changed) head/devel/py-rtree/distinfo (props changed) head/devel/py-ruledispatch/distinfo (props changed) head/devel/py-sanetime/distinfo (props changed) head/devel/py-serpent/distinfo (props changed) head/devel/py-setuptools_darcs/distinfo (props changed) head/devel/py-setuptools_hg/distinfo (props changed) head/devel/py-shapely/distinfo (props changed) head/devel/py-simpleparse/distinfo (props changed) head/devel/py-simpletal/distinfo (props changed) head/devel/py-simpy/distinfo (props changed) head/devel/py-six/distinfo (props changed) head/devel/py-smmap/distinfo (props changed) head/devel/py-spark/distinfo (props changed) head/devel/py-speaklater/distinfo (props changed) head/devel/py-sqlcc/distinfo (props changed) head/devel/py-statgrab/distinfo (props changed) head/devel/py-subvertpy/distinfo (props changed) head/devel/py-sysctl/distinfo (props changed) head/devel/py-sysv_ipc/distinfo (props changed) head/devel/py-tables/distinfo (props changed) head/devel/py-tconfpy/distinfo (props changed) head/devel/py-tempstorage/distinfo (props changed) head/devel/py-termcolor/distinfo (props changed) head/devel/py-testgears/distinfo (props changed) head/devel/py-testoob/distinfo (props changed) head/devel/py-testtools/distinfo (props changed) head/devel/py-tgMochiKit/distinfo (props changed) head/devel/py-timelib/distinfo (props changed) head/devel/py-trace2html/distinfo (props changed) head/devel/py-traits/distinfo (props changed) head/devel/py-transaction/distinfo (props changed) head/devel/py-turbocheetah/distinfo (props changed) head/devel/py-turbojson/distinfo (props changed) head/devel/py-turbojson11/distinfo (props changed) head/devel/py-turbokid/distinfo (props changed) head/devel/py-tvrage/distinfo (props changed) head/devel/py-tw.forms/distinfo (props changed) head/devel/py-twistedFlow/distinfo (props changed) head/devel/py-ujson/distinfo (props changed) head/devel/py-unittest2/distinfo (props changed) head/devel/py-unittestplus/distinfo (props changed) head/devel/py-urlimport/distinfo (props changed) head/devel/py-urwid/distinfo (props changed) head/devel/py-usb/distinfo (props changed) head/devel/py-utils/distinfo (props changed) head/devel/py-venusian/distinfo (props changed) head/devel/py-versiontools/distinfo (props changed) head/devel/py-virtualenv-clone/distinfo (props changed) head/devel/py-virtualenvwrapper/distinfo (props changed) head/devel/py-watchdog/distinfo (props changed) head/devel/py-wheel/distinfo (props changed) head/devel/py-wsgi_xmlrpc/distinfo (props changed) head/devel/py-wsgitools/distinfo (props changed) head/devel/py-wsgiutils/distinfo (props changed) head/devel/py-xattr/distinfo (props changed) head/devel/py-xcaplib/distinfo (props changed) head/devel/py-xdg/distinfo (props changed) head/devel/py-xoltar-toolkit/distinfo (props changed) head/devel/py-yaml/distinfo (props changed) head/devel/py-yapps2/distinfo (props changed) head/devel/py-ydbf/distinfo (props changed) head/devel/py-yum-metadata-parser/distinfo (props changed) head/devel/py-z3c.autoinclude/distinfo (props changed) head/devel/py-z3c.batching/distinfo (props changed) head/devel/py-z3c.caching/distinfo (props changed) head/devel/py-z3c.formwidget.query/distinfo (props changed) head/devel/py-z3c.zcmlhook/distinfo (props changed) head/devel/py-zExceptions/distinfo (props changed) head/devel/py-zLOG/distinfo (props changed) head/devel/py-zc.buildout/distinfo (props changed) head/devel/py-zclockfile/distinfo (props changed) head/devel/py-zconfig/distinfo (props changed) head/devel/py-zope.annotation/distinfo (props changed) head/devel/py-zope.app.applicationcontrol/distinfo (props changed) head/devel/py-zope.app.appsetup/distinfo (props changed) head/devel/py-zope.app.basicskin/distinfo (props changed) head/devel/py-zope.app.broken/distinfo (props changed) head/devel/py-zope.app.cache/distinfo (props changed) head/devel/py-zope.app.component/distinfo (props changed) head/devel/py-zope.app.container/distinfo (props changed) head/devel/py-zope.app.content/distinfo (props changed) head/devel/py-zope.app.debug/distinfo (props changed) head/devel/py-zope.app.dependable/distinfo (props changed) head/devel/py-zope.app.error/distinfo (props changed) head/devel/py-zope.app.exception/distinfo (props changed) head/devel/py-zope.app.folder/distinfo (props changed) head/devel/py-zope.app.form/distinfo (props changed) head/devel/py-zope.app.generations/distinfo (props changed) head/devel/py-zope.app.http/distinfo (props changed) head/devel/py-zope.app.pagetemplate/distinfo (props changed) head/devel/py-zope.app.publication/distinfo (props changed) head/devel/py-zope.app.publisher/distinfo (props changed) head/devel/py-zope.app.renderer/distinfo (props changed) head/devel/py-zope.app.rotterdam/distinfo (props changed) head/devel/py-zope.app.schema/distinfo (props changed) head/devel/py-zope.app.testing/distinfo (props changed) head/devel/py-zope.app.zcmlfiles/distinfo (props changed) head/devel/py-zope.app.zopeappgenerations/distinfo (props changed) head/devel/py-zope.applicationcontrol/distinfo (props changed) head/devel/py-zope.broken/distinfo (props changed) head/devel/py-zope.browser/distinfo (props changed) head/devel/py-zope.browsermenu/distinfo (props changed) head/devel/py-zope.browserpage/distinfo (props changed) head/devel/py-zope.browserresource/distinfo (props changed) head/devel/py-zope.cachedescriptors/distinfo (props changed) head/devel/py-zope.component/distinfo (props changed) head/devel/py-zope.componentvocabulary/distinfo (props changed) head/devel/py-zope.configuration/distinfo (props changed) head/devel/py-zope.container/distinfo (props changed) head/devel/py-zope.contentprovider/distinfo (props changed) head/devel/py-zope.contenttype/distinfo (props changed) head/devel/py-zope.copy/distinfo (props changed) head/devel/py-zope.copypastemove/distinfo (props changed) head/devel/py-zope.datetime/distinfo (props changed) head/devel/py-zope.deferredimport/distinfo (props changed) head/devel/py-zope.deprecation/distinfo (props changed) head/devel/py-zope.dottedname/distinfo (props changed) head/devel/py-zope.dublincore/distinfo (props changed) head/devel/py-zope.error/distinfo (props changed) head/devel/py-zope.event/distinfo (props changed) head/devel/py-zope.exceptions/distinfo (props changed) head/devel/py-zope.filerepresentation/distinfo (props changed) head/devel/py-zope.formlib/distinfo (props changed) head/devel/py-zope.generations/distinfo (props changed) head/devel/py-zope.globalrequest/distinfo (props changed) head/devel/py-zope.i18n/distinfo (props changed) head/devel/py-zope.interface/distinfo (props changed) head/devel/py-zope.lifecycleevent/distinfo (props changed) head/devel/py-zope.location/distinfo (props changed) head/devel/py-zope.minmax/distinfo (props changed) head/devel/py-zope.pagetemplate/distinfo (props changed) head/devel/py-zope.processlifetime/distinfo (props changed) head/devel/py-zope.ptresource/distinfo (props changed) head/devel/py-zope.publisher/distinfo (props changed) head/devel/py-zope.ramcache/distinfo (props changed) head/devel/py-zope.sequencesort/distinfo (props changed) head/devel/py-zope.site/distinfo (props changed) head/devel/py-zope.size/distinfo (props changed) head/devel/py-zope.tales/distinfo (props changed) head/devel/py-zope.testbrowser/distinfo (props changed) head/devel/py-zope.testing/distinfo (props changed) head/devel/py-zope.traversing/distinfo (props changed) head/devel/py-zope.viewlet/distinfo (props changed) head/devel/py_static_check/distinfo (props changed) head/devel/pybaz/distinfo (props changed) head/devel/pybugz/distinfo (props changed) head/devel/pychecker/distinfo (props changed) head/devel/pycount/distinfo (props changed) head/devel/pymacs/distinfo (props changed) head/devel/pyobfuscate/distinfo (props changed) head/devel/pypersrc/distinfo (props changed) head/devel/pyrex/distinfo (props changed) head/devel/pyside-tools/distinfo (props changed) head/devel/pyside/distinfo (props changed) head/devel/pyst/distinfo (props changed) head/devel/pysvn/distinfo (props changed) head/devel/pythk/distinfo (props changed) head/devel/pythontidy/distinfo (props changed) head/devel/qbzr/distinfo (props changed) head/devel/qca/distinfo (props changed) head/devel/qconf/distinfo (props changed) head/devel/qct/distinfo (props changed) head/devel/qdevelop/distinfo (props changed) head/devel/qgit/distinfo (props changed) head/devel/qmake/distinfo (props changed) head/devel/qprog/distinfo (props changed) head/devel/qross/distinfo (props changed) head/devel/qsvn/distinfo (props changed) head/devel/qt4-assistant-adp/distinfo (props changed) head/devel/qt4-libqtassistantclient/distinfo (props changed) head/devel/qt4-qtsolutions-singleapplication/distinfo (props changed) head/devel/qtscriptgenerator/distinfo (props changed) head/devel/quickcheck++/distinfo (props changed) head/devel/raknet/distinfo (props changed) head/devel/rapidsvn/distinfo (props changed) head/devel/rbenv/distinfo (props changed) head/devel/rclint/distinfo (props changed) head/devel/readline/distinfo (props changed) head/devel/rebar/distinfo (props changed) head/devel/regexx/distinfo (props changed) head/devel/regexxer/distinfo (props changed) head/devel/remake/distinfo (props changed) head/devel/replay/distinfo (props changed) head/devel/ri-emacs/distinfo (props changed) head/devel/rlog/distinfo (props changed) head/devel/rlwrap/distinfo (props changed) head/devel/roboctl/distinfo (props changed) head/devel/robodoc/distinfo (props changed) head/devel/root-doc/distinfo (props changed) head/devel/ros-common_msgs/distinfo (props changed) head/devel/ros-documentation/distinfo (props changed) head/devel/ros-nxt/distinfo (props changed) head/devel/ros-rx/distinfo (props changed) head/devel/ros/distinfo (props changed) head/devel/ros_comm/distinfo (props changed) head/devel/ros_tutorials/distinfo (props changed) head/devel/rote/distinfo (props changed) head/devel/rpc2/distinfo (props changed) head/devel/rpm-spec-mode.el/distinfo (props changed) head/devel/rsvndump/distinfo (props changed) head/devel/rth/distinfo (props changed) head/devel/ruby-amstd/distinfo (props changed) head/devel/ruby-aspectr/distinfo (props changed) head/devel/ruby-avl/distinfo (props changed) head/devel/ruby-bsearch/distinfo (props changed) head/devel/ruby-byaccr/distinfo (props changed) head/devel/ruby-cache/distinfo (props changed) head/devel/ruby-calendar/distinfo (props changed) head/devel/ruby-date2/distinfo (props changed) head/devel/ruby-dialogs/distinfo (props changed) head/devel/ruby-event-loop/distinfo (props changed) head/devel/ruby-fastri/distinfo (props changed) head/devel/ruby-intl/distinfo (props changed) head/devel/ruby-langscan/distinfo (props changed) head/devel/ruby-locale/distinfo (props changed) head/devel/ruby-locale2/distinfo (props changed) head/devel/ruby-memoize/distinfo (props changed) head/devel/ruby-multi/distinfo (props changed) head/devel/ruby-ncurses/distinfo (props changed) head/devel/ruby-property/distinfo (props changed) head/devel/ruby-rbbr/distinfo (props changed) head/devel/ruby-rbison/distinfo (props changed) head/devel/ruby-rbprof/distinfo (props changed) head/devel/ruby-robjectteam/distinfo (props changed) head/devel/ruby-rreadline/distinfo (props changed) head/devel/ruby-setup.rb/distinfo (props changed) head/devel/ruby-statgrab/distinfo (props changed) head/devel/ruby-tzfile/distinfo (props changed) head/devel/ruby-wirble/distinfo (props changed) head/devel/rubygem-abstract/distinfo (props changed) head/devel/rubygem-allison/distinfo (props changed) head/devel/rubygem-analogger/distinfo (props changed) head/devel/rubygem-annoy/distinfo (props changed) head/devel/rubygem-ansi/distinfo (props changed) head/devel/rubygem-ascii85/distinfo (props changed) head/devel/rubygem-atomic/distinfo (props changed) head/devel/rubygem-atoulme-antwrap/distinfo (props changed) head/devel/rubygem-attic/distinfo (props changed) head/devel/rubygem-benelux/distinfo (props changed) head/devel/rubygem-bin_utils/distinfo (props changed) head/devel/rubygem-blockenspiel/distinfo (props changed) head/devel/rubygem-bugspots/distinfo (props changed) head/devel/rubygem-builder/distinfo (props changed) head/devel/rubygem-caesars/distinfo (props changed) head/devel/rubygem-cairo-gobject/distinfo (props changed) head/devel/rubygem-classifier/distinfo (props changed) head/devel/rubygem-clio/distinfo (props changed) head/devel/rubygem-coffee-rails/distinfo (props changed) head/devel/rubygem-coffee-script/distinfo (props changed) head/devel/rubygem-columnize/distinfo (props changed) head/devel/rubygem-cool.io/distinfo (props changed) head/devel/rubygem-cri/distinfo (props changed) head/devel/rubygem-daemon_controller/distinfo (props changed) head/devel/rubygem-daemons/distinfo (props changed) head/devel/rubygem-debugger-linecache/distinfo (props changed) head/devel/rubygem-debugger/distinfo (props changed) head/devel/rubygem-deeptest/distinfo (props changed) head/devel/rubygem-dep_selector/distinfo (props changed) head/devel/rubygem-deprecated2/distinfo (props changed) head/devel/rubygem-descendants_tracker/distinfo (props changed) head/devel/rubygem-directory_watcher/distinfo (props changed) head/devel/rubygem-ditz/distinfo (props changed) head/devel/rubygem-drydock/distinfo (props changed) head/devel/rubygem-echoe/distinfo (props changed) head/devel/rubygem-edavis10-object_daddy/distinfo (props changed) head/devel/rubygem-elif/distinfo (props changed) head/devel/rubygem-enumerize/distinfo (props changed) head/devel/rubygem-errand/distinfo (props changed) head/devel/rubygem-facets/distinfo (props changed) head/devel/rubygem-fastercsv/distinfo (props changed) head/devel/rubygem-fastri/distinfo (props changed) head/devel/rubygem-fastthread/distinfo (props changed) head/devel/rubygem-fattr/distinfo (props changed) head/devel/rubygem-filemagic/distinfo (props changed) head/devel/rubygem-font-awesome-rails/distinfo (props changed) head/devel/rubygem-foreman/distinfo (props changed) head/devel/rubygem-gdata/distinfo (props changed) head/devel/rubygem-gem_plugin/distinfo (props changed) head/devel/rubygem-gemcutter/distinfo (props changed) head/devel/rubygem-generator_spec/distinfo (props changed) head/devel/rubygem-georuby/distinfo (props changed) head/devel/rubygem-getopt/distinfo (props changed) head/devel/rubygem-gettext/distinfo (props changed) head/devel/rubygem-gio2/distinfo (props changed) head/devel/rubygem-git/distinfo (props changed) head/devel/rubygem-github_api/distinfo (props changed) head/devel/rubygem-gitlab_git/distinfo (props changed) head/devel/rubygem-gitlab_meta/distinfo (props changed) head/devel/rubygem-glib2/distinfo (props changed) head/devel/rubygem-gobject-introspection/distinfo (props changed) head/devel/rubygem-graf/distinfo (props changed) head/devel/rubygem-grape-entity/distinfo (props changed) head/devel/rubygem-grape/distinfo (props changed) head/devel/rubygem-grit/distinfo (props changed) head/devel/rubygem-hashery/distinfo (props changed) head/devel/rubygem-hashie/distinfo (props changed) head/devel/rubygem-holidays/distinfo (props changed) head/devel/rubygem-igraph/distinfo (props changed) head/devel/rubygem-io-like/distinfo (props changed) head/devel/rubygem-iobuffer/distinfo (props changed) head/devel/rubygem-json146/distinfo (props changed) head/devel/rubygem-little_plugger/distinfo (props changed) head/devel/rubygem-locale/distinfo (props changed) head/devel/rubygem-loquacious/distinfo (props changed) head/devel/rubygem-metaid/distinfo (props changed) head/devel/rubygem-minitest4/distinfo (props changed) head/devel/rubygem-mirror/distinfo (props changed) head/devel/rubygem-mixlib-authentication/distinfo (props changed) head/devel/rubygem-mixlib-config/distinfo (props changed) head/devel/rubygem-mkrf/distinfo (props changed) head/devel/rubygem-murmurhash3/distinfo (props changed) head/devel/rubygem-mutter/distinfo (props changed) head/devel/rubygem-needle/distinfo (props changed) head/devel/rubygem-nice-ffi/distinfo (props changed) head/devel/rubygem-open4/distinfo (props changed) head/devel/rubygem-orm_adapter/distinfo (props changed) head/devel/rubygem-paint/distinfo (props changed) head/devel/rubygem-piston/distinfo (props changed) head/devel/rubygem-pkg-config/distinfo (props changed) head/devel/rubygem-platform/distinfo (props changed) head/devel/rubygem-polyglot/distinfo (props changed) head/devel/rubygem-popen4/distinfo (props changed) head/devel/rubygem-posix-spawn/distinfo (props changed) head/devel/rubygem-prototype-rails/distinfo (props changed) head/devel/rubygem-ptreloaded/distinfo (props changed) head/devel/rubygem-rainbow/distinfo (props changed) head/devel/rubygem-rapt/distinfo (props changed) head/devel/rubygem-rash/distinfo (props changed) head/devel/rubygem-rcov/distinfo (props changed) head/devel/rubygem-redis-activesupport/distinfo (props changed) head/devel/rubygem-redis-store/distinfo (props changed) head/devel/rubygem-ref/distinfo (props changed) head/devel/rubygem-require_all/distinfo (props changed) head/devel/rubygem-rgl/distinfo (props changed) head/devel/rubygem-rscm/distinfo (props changed) head/devel/rubygem-rspec-spies/distinfo (props changed) head/devel/rubygem-ruby-sdl-ffi/distinfo (props changed) head/devel/rubygem-rubyforge/distinfo (props changed) head/devel/rubygem-rubygame/distinfo (props changed) head/devel/rubygem-rubyinlineaccel/distinfo (props changed) head/devel/rubygem-settingslogic/distinfo (props changed) head/devel/rubygem-shoulda-context/distinfo (props changed) head/devel/rubygem-soap4r/distinfo (props changed) head/devel/rubygem-spruz/distinfo (props changed) head/devel/rubygem-statsd/distinfo (props changed) head/devel/rubygem-stella/distinfo (props changed) head/devel/rubygem-stemmer/distinfo (props changed) head/devel/rubygem-storable/distinfo (props changed) head/devel/rubygem-stream/distinfo (props changed) head/devel/rubygem-structured_warnings/distinfo (props changed) head/devel/rubygem-sumbur/distinfo (props changed) head/devel/rubygem-sysinfo/distinfo (props changed) head/devel/rubygem-systemu/distinfo (props changed) head/devel/rubygem-templater/distinfo (props changed) head/devel/rubygem-temple/distinfo (props changed) head/devel/rubygem-term-ansicolor/distinfo (props changed) head/devel/rubygem-test/distinfo (props changed) head/devel/rubygem-thread_safe/distinfo (props changed) head/devel/rubygem-trollop/distinfo (props changed) head/devel/rubygem-turn/distinfo (props changed) head/devel/rubygem-typed-array/distinfo (props changed) head/devel/rubygem-validatable/distinfo (props changed) head/devel/rubygem-versionomy/distinfo (props changed) head/devel/rubygem-virtus/distinfo (props changed) head/devel/rubygem-webby/distinfo (props changed) head/devel/rubygem-yajl-ruby/distinfo (props changed) head/devel/rudeconfig/distinfo (props changed) head/devel/runsnakerun/distinfo (props changed) head/devel/rvi/distinfo (props changed) head/devel/rvm/distinfo (props changed) head/devel/sabre/distinfo (props changed) head/devel/safe-iop/distinfo (props changed) head/devel/sbt/distinfo (props changed) head/devel/scala-ide/distinfo (props changed) head/devel/scalatest/distinfo (props changed) head/devel/scandoc/distinfo (props changed) head/devel/scons/distinfo (props changed) head/devel/scsh-install-lib/distinfo (props changed) head/devel/sdl12/distinfo (props changed) head/devel/sdl_console/distinfo (props changed) head/devel/sdl_sge/distinfo (props changed) head/devel/sdlmm/distinfo (props changed) head/devel/sdlskk/distinfo (props changed) head/devel/sdts++/distinfo (props changed) head/devel/sedsed/distinfo (props changed) head/devel/seed/distinfo (props changed) head/devel/seed3/distinfo (props changed) head/devel/semantic/distinfo (props changed) head/devel/serdisplib/distinfo (props changed) head/devel/sfio/distinfo (props changed) head/devel/sfml/distinfo (props changed) head/devel/sfslite/distinfo (props changed) head/devel/sgb/distinfo (props changed) head/devel/sgl/distinfo (props changed) head/devel/shapelib/distinfo (props changed) head/devel/shflags/distinfo (props changed) head/devel/shiboken/distinfo (props changed) head/devel/shmap/distinfo (props changed) head/devel/showgrammar/distinfo (props changed) head/devel/shtool/distinfo (props changed) head/devel/sigslot/distinfo (props changed) head/devel/silc-toolkit/distinfo (props changed) head/devel/silentbob/distinfo (props changed) head/devel/simian/distinfo (props changed) head/devel/simpletest/distinfo (props changed) head/devel/skalibs/distinfo (props changed) head/devel/slf4j/distinfo (props changed) head/devel/smack/distinfo (props changed) head/devel/smake/distinfo (props changed) head/devel/smc/distinfo (props changed) head/devel/sml_tk/distinfo (props changed) head/devel/smv/distinfo (props changed) head/devel/soapui/distinfo (props changed) head/devel/sourcenav/distinfo (props changed) head/devel/spatialindex/distinfo (props changed) head/devel/spdict/distinfo (props changed) head/devel/spin/distinfo (props changed) head/devel/splint/distinfo (props changed) head/devel/srecord/distinfo (props changed) head/devel/st/distinfo (props changed) head/devel/statcvs/distinfo (props changed) head/devel/statsvn/distinfo (props changed) head/devel/stfl/distinfo (props changed) head/devel/stlfilt/distinfo (props changed) head/devel/stlport/distinfo (props changed) head/devel/stormlib-ghost++/distinfo (props changed) head/devel/str/distinfo (props changed) head/devel/strace/distinfo (props changed) head/devel/streamhtmlparser/distinfo (props changed) head/devel/stringencoders/distinfo (props changed) head/devel/styx/distinfo (props changed) head/devel/subclipse/distinfo (props changed) head/devel/subversion/distinfo (props changed) head/devel/subversion16/distinfo (props changed) head/devel/subversion17/distinfo (props changed) head/devel/subversive/distinfo (props changed) head/devel/sunterlib/distinfo (props changed) head/devel/svk/distinfo (props changed) head/devel/svndelta/distinfo (props changed) head/devel/svnkit/distinfo (props changed) head/devel/swank-clojure/distinfo (props changed) head/devel/swig13/distinfo (props changed) head/devel/synfig/distinfo (props changed) head/devel/sysconftool/distinfo (props changed) head/devel/sysfsutils/distinfo (props changed) head/devel/t1lib/distinfo (props changed) head/devel/ta-lib/distinfo (props changed) head/devel/tailor/distinfo (props changed) head/devel/talloc/distinfo (props changed) head/devel/tcl-memchan/distinfo (props changed) head/devel/tcl-signal/distinfo (props changed) head/devel/tcl-trf/distinfo (props changed) head/devel/tclap/distinfo (props changed) head/devel/tclcheck/distinfo (props changed) head/devel/tclcl/distinfo (props changed) head/devel/tclgetopts/distinfo (props changed) head/devel/tclmore/distinfo (props changed) head/devel/tclreadline/distinfo (props changed) head/devel/tcltls/distinfo (props changed) head/devel/tdl/distinfo (props changed) head/devel/terminality/distinfo (props changed) head/devel/tex-kpathsea/distinfo (props changed) head/devel/tex-web2c/distinfo (props changed) head/devel/thunar-vcs-plugin/distinfo (props changed) head/devel/tide/distinfo (props changed) head/devel/tig/distinfo (props changed) head/devel/tigcc/distinfo (props changed) head/devel/tijmp/distinfo (props changed) head/devel/tinylaf/distinfo (props changed) head/devel/tinyq/distinfo (props changed) head/devel/tkcon/distinfo (props changed) head/devel/tkcvs/distinfo (props changed) head/devel/tkinspect/distinfo (props changed) head/devel/tkmerge/distinfo (props changed) head/devel/tkp4/distinfo (props changed) head/devel/tla/distinfo (props changed) head/devel/tmake/distinfo (props changed) head/devel/tnt/distinfo (props changed) head/devel/toh/distinfo (props changed) head/devel/tokamak/distinfo (props changed) head/devel/trac-bitten/distinfo (props changed) head/devel/tradcpp/distinfo (props changed) head/devel/trio/distinfo (props changed) head/devel/truc/distinfo (props changed) head/devel/uatraits/distinfo (props changed) head/devel/uclmmbase/distinfo (props changed) head/devel/ucpp/distinfo (props changed) head/devel/ultragetopt/distinfo (props changed) head/devel/umem/distinfo (props changed) head/devel/umlgraph/distinfo (props changed) head/devel/universalindentgui/distinfo (props changed) head/devel/upp/distinfo (props changed) head/devel/uppaal/distinfo (props changed) head/devel/upslug/distinfo (props changed) head/devel/urjtag/distinfo (props changed) head/devel/ustl/distinfo (props changed) head/devel/valgrind-devel/distinfo (props changed) head/devel/valgrind/distinfo (props changed) head/devel/violet/distinfo (props changed) head/devel/vstr/distinfo (props changed) head/devel/vtcl/distinfo (props changed) head/devel/vtg/distinfo (props changed) head/devel/vxlog/distinfo (props changed) head/devel/wand-libconfig/distinfo (props changed) head/devel/websvn/distinfo (props changed) head/devel/wininfo/distinfo (props changed) head/devel/winpdb/distinfo (props changed) head/devel/wizardkit/distinfo (props changed) head/devel/xa65/distinfo (props changed) head/devel/xc3sprog/distinfo (props changed) head/devel/xdg-user-dirs/distinfo (props changed) head/devel/xdg-utils/distinfo (props changed) head/devel/xfce4-dev-tools/distinfo (props changed) head/devel/xmake/distinfo (props changed) head/devel/xmltooling/distinfo (props changed) head/devel/xorg-macros/distinfo (props changed) head/devel/xparam/distinfo (props changed) head/devel/xtl/distinfo (props changed) head/devel/xtla/distinfo (props changed) head/devel/xwpe/distinfo (props changed) head/devel/xxgdb/distinfo (props changed) head/devel/xxl/distinfo (props changed) head/devel/yajl/distinfo (props changed) head/devel/yaml-cpp/distinfo (props changed) head/devel/yasm/distinfo (props changed) head/devel/z80-asm/distinfo (props changed) head/devel/z80asm/distinfo (props changed) head/devel/zookeeper/distinfo (props changed) head/devel/zpu-binutils/distinfo (props changed) head/devel/zpu-gcc/distinfo (props changed) head/devel/ztcl/distinfo (props changed) head/devel/zthread/distinfo (props changed) head/devel/zziplib/distinfo (props changed) head/dns/adns/distinfo (props changed) head/dns/adsuck/distinfo (props changed) head/dns/ares/distinfo (props changed) head/dns/autotrust/distinfo (props changed) head/dns/bind10/distinfo (props changed) head/dns/bind96/distinfo (props changed) head/dns/bind98/distinfo (props changed) head/dns/bind99/distinfo (props changed) head/dns/bindgraph/distinfo (props changed) head/dns/checkdns/distinfo (props changed) head/dns/credns/distinfo (props changed) head/dns/crossip/distinfo (props changed) head/dns/curvedns/distinfo (props changed) head/dns/ddclient/distinfo (props changed) head/dns/dhisd/distinfo (props changed) head/dns/djbdns-tools/distinfo (props changed) head/dns/djbdns/distinfo (props changed) head/dns/dlint/distinfo (props changed) head/dns/dnrd/distinfo (props changed) head/dns/dns2tcp/distinfo (props changed) head/dns/dns_balance/distinfo (props changed) head/dns/dns_mre/distinfo (props changed) head/dns/dnscap/distinfo (props changed) head/dns/dnscheck/distinfo (props changed) head/dns/dnscheckengine/distinfo (props changed) head/dns/dnsflood/distinfo (props changed) head/dns/dnshijacker/distinfo (props changed) head/dns/dnsmax-perl/distinfo (props changed) head/dns/dnsperf/distinfo (props changed) head/dns/dnsproxy/distinfo (props changed) head/dns/dnsreflector/distinfo (props changed) head/dns/dnstop/distinfo (props changed) head/dns/dnstracer/distinfo (props changed) head/dns/dnsutl/distinfo (props changed) head/dns/dnswalk/distinfo (props changed) head/dns/dnswall/distinfo (props changed) head/dns/doc/distinfo (props changed) head/dns/ez-ipupdate/distinfo (props changed) head/dns/fastresolve/distinfo (props changed) head/dns/firedns/distinfo (props changed) head/dns/geta/distinfo (props changed) head/dns/ghtool/distinfo (props changed) head/dns/idnkit/distinfo (props changed) head/dns/idnkit2/distinfo (props changed) head/dns/inadyn/distinfo (props changed) head/dns/ipcheck/distinfo (props changed) head/dns/ldapdns/distinfo (props changed) head/dns/ldnsm/distinfo (props changed) head/dns/libbind/distinfo (props changed) head/dns/libdjbdns/distinfo (props changed) head/dns/linux-f10-libasyncns/distinfo.i386 (props changed) head/dns/maradns/distinfo (props changed) head/dns/mdnsd/distinfo (props changed) head/dns/mydns-ng/distinfo (props changed) head/dns/mydns/distinfo (props changed) head/dns/noip/distinfo (props changed) head/dns/nslint/distinfo (props changed) head/dns/nsping/distinfo (props changed) head/dns/nss_mdns/distinfo (props changed) head/dns/nss_resinit/distinfo (props changed) head/dns/odsclient/distinfo (props changed) head/dns/opendd/distinfo (props changed) head/dns/openresolv/distinfo (props changed) head/dns/p5-BIND-Conf_Parser/distinfo (props changed) head/dns/p5-BIND-Config-Parser/distinfo (props changed) head/dns/p5-DNS-Config/distinfo (props changed) head/dns/p5-DNS-EasyDNS/distinfo (props changed) head/dns/p5-DNS-Zone/distinfo (props changed) head/dns/p5-DNS-ZoneParse/distinfo (props changed) head/dns/p5-Data-Validate-Domain/distinfo (props changed) head/dns/p5-Net-Amazon-Route53/distinfo (props changed) head/dns/p5-Net-Bonjour/distinfo (props changed) head/dns/p5-Net-DNS-Async/distinfo (props changed) head/dns/p5-Net-DNS-Check/distinfo (props changed) head/dns/p5-Net-DNS-Codes/distinfo (props changed) head/dns/p5-Net-DNS-RR-SRV-Helper/distinfo (props changed) head/dns/p5-Net-DNS-Resolver-Programmable/distinfo (props changed) head/dns/p5-Net-DNS-TestNS/distinfo (props changed) head/dns/p5-Net-DNS-Zone-Parser/distinfo (props changed) head/dns/p5-Net-DNS-ZoneCheck/distinfo (props changed) head/dns/p5-Net-DNS-ZoneFile-Fast/distinfo (props changed) head/dns/p5-Net-DNSBL-Statistics/distinfo (props changed) head/dns/p5-Net-DRI/distinfo (props changed) head/dns/p5-Net-Domain-ExpireDate/distinfo (props changed) head/dns/p5-Net-Domain-TLD/distinfo (props changed) head/dns/p5-Net-LibIDN/distinfo (props changed) head/dns/p5-Net-Nslookup/distinfo (props changed) head/dns/p5-Net-RBLClient/distinfo (props changed) head/dns/p5-POE-Component-Client-DNS-Recursive/distinfo (props changed) head/dns/p5-POE-Component-Client-DNS/distinfo (props changed) head/dns/p5-POE-Component-Client-DNSBL/distinfo (props changed) head/dns/p5-POE-Component-Resolver/distinfo (props changed) head/dns/p5-POE-Component-Server-DNS/distinfo (props changed) head/dns/p5-POE-Filter-DNS-TCP/distinfo (props changed) head/dns/p5-Stanford-DNSserver/distinfo (props changed) head/dns/p5-pgeodns/distinfo (props changed) head/dns/pdnsd/distinfo (props changed) head/dns/pear-File_DNS/distinfo (props changed) head/dns/pear-Net_DNS/distinfo (props changed) head/dns/posadis/distinfo (props changed) head/dns/poweradmin/distinfo (props changed) head/dns/powerdns-recursor/distinfo (props changed) head/dns/py-adns/distinfo (props changed) head/dns/py-dns/distinfo (props changed) head/dns/py-easyzone/distinfo (props changed) head/dns/py-idnkit2/distinfo (props changed) head/dns/py-namebench/distinfo (props changed) head/dns/py-publicsuffix/distinfo (props changed) head/dns/radns/distinfo (props changed) head/dns/rbldnsd/distinfo (props changed) head/dns/rbllookup-ng/distinfo (props changed) head/dns/rbllookup/distinfo (props changed) head/dns/rubygem-public_suffix_service/distinfo (props changed) head/dns/scavenge/distinfo (props changed) head/dns/sheerdns/distinfo (props changed) head/dns/skadns/distinfo (props changed) head/dns/sleuth/distinfo (props changed) head/dns/sshfp/distinfo (props changed) head/dns/tinystats/distinfo (props changed) head/dns/totd/distinfo (props changed) head/dns/udns/distinfo (props changed) head/dns/unbound/distinfo (props changed) head/dns/updatedd/distinfo (props changed) head/dns/validns/distinfo (props changed) head/dns/vizone/distinfo (props changed) head/dns/walker/distinfo (props changed) head/dns/yadifa/distinfo (props changed) head/dns/zkt/distinfo (props changed) head/dns/zonecheck/distinfo (props changed) head/dns/zonenotify/distinfo (props changed) head/editors/2bsd-vi/distinfo (props changed) head/editors/aee/distinfo (props changed) head/editors/aewan/distinfo (props changed) head/editors/apel/distinfo (props changed) head/editors/asedit/distinfo (props changed) head/editors/axe/distinfo (props changed) head/editors/beav/distinfo (props changed) head/editors/biew/distinfo (props changed) head/editors/bitedit/distinfo (props changed) head/editors/bless/distinfo (props changed) head/editors/boiling-egg/distinfo (props changed) head/editors/bpatch/distinfo (props changed) head/editors/bvi/distinfo (props changed) head/editors/chexedit/distinfo (props changed) head/editors/color-mate/distinfo (props changed) head/editors/conglomerate/distinfo (props changed) head/editors/cooledit/distinfo (props changed) head/editors/cream/distinfo (props changed) head/editors/dhex/distinfo (props changed) head/editors/drjava/distinfo (props changed) head/editors/e3/distinfo (props changed) head/editors/e93/distinfo (props changed) head/editors/edith/distinfo (props changed) head/editors/editorconfig-core-c/distinfo (props changed) head/editors/elvis/distinfo (props changed) head/editors/emacs/distinfo (props changed) head/editors/emacs21/distinfo (props changed) head/editors/emacs22/distinfo (props changed) head/editors/emacs23/distinfo (props changed) head/editors/fb/distinfo (props changed) head/editors/flim/distinfo (props changed) head/editors/fte/distinfo (props changed) head/editors/gate/distinfo (props changed) head/editors/gedit-plugins/distinfo (props changed) head/editors/gedit/distinfo (props changed) head/editors/ghex/distinfo (props changed) head/editors/gmanedit/distinfo (props changed) head/editors/gnotepad+/distinfo (props changed) head/editors/gnuserv/distinfo (props changed) head/editors/gwrite/distinfo (props changed) head/editors/heme/distinfo (props changed) head/editors/hexcurse/distinfo (props changed) head/editors/hexedit/distinfo (props changed) head/editors/hexpert/distinfo (props changed) head/editors/hnb/distinfo (props changed) head/editors/impress/distinfo (props changed) head/editors/jed/distinfo (props changed) head/editors/jedit/distinfo (props changed) head/editors/jext/distinfo (props changed) head/editors/joe/distinfo (props changed) head/editors/joe2/distinfo (props changed) head/editors/jove/distinfo (props changed) head/editors/jupp/distinfo (props changed) head/editors/klat4/distinfo (props changed) head/editors/komodo-edit/distinfo (props changed) head/editors/komodo-ide/distinfo (props changed) head/editors/lazarus/distinfo (props changed) head/editors/leafpad/distinfo (props changed) head/editors/led/distinfo (props changed) head/editors/leo/distinfo (props changed) head/editors/lfhex/distinfo (props changed) head/editors/libreoffice-af/distinfo (props changed) head/editors/libreoffice-as/distinfo (props changed) head/editors/libreoffice-be/distinfo (props changed) head/editors/libreoffice-bg/distinfo (props changed) head/editors/libreoffice-bn/distinfo (props changed) head/editors/libreoffice-br/distinfo (props changed) head/editors/libreoffice-brx/distinfo (props changed) head/editors/libreoffice-bs/distinfo (props changed) head/editors/libreoffice-ca/distinfo (props changed) head/editors/libreoffice-ca_XV/distinfo (props changed) head/editors/libreoffice-cs/distinfo (props changed) head/editors/libreoffice-cy/distinfo (props changed) head/editors/libreoffice-da/distinfo (props changed) head/editors/libreoffice-dgo/distinfo (props changed) head/editors/libreoffice-dz/distinfo (props changed) head/editors/libreoffice-el/distinfo (props changed) head/editors/libreoffice-en_GB/distinfo (props changed) head/editors/libreoffice-en_ZA/distinfo (props changed) head/editors/libreoffice-eo/distinfo (props changed) head/editors/libreoffice-es/distinfo (props changed) head/editors/libreoffice-et/distinfo (props changed) head/editors/libreoffice-eu/distinfo (props changed) head/editors/libreoffice-fa/distinfo (props changed) head/editors/libreoffice-fi/distinfo (props changed) head/editors/libreoffice-ga/distinfo (props changed) head/editors/libreoffice-gd/distinfo (props changed) head/editors/libreoffice-gl/distinfo (props changed) head/editors/libreoffice-gu/distinfo (props changed) head/editors/libreoffice-hi/distinfo (props changed) head/editors/libreoffice-hr/distinfo (props changed) head/editors/libreoffice-id/distinfo (props changed) head/editors/libreoffice-is/distinfo (props changed) head/editors/libreoffice-it/distinfo (props changed) head/editors/libreoffice-ka/distinfo (props changed) head/editors/libreoffice-kk/distinfo (props changed) head/editors/libreoffice-km/distinfo (props changed) head/editors/libreoffice-kok/distinfo (props changed) head/editors/libreoffice-ks/distinfo (props changed) head/editors/libreoffice-ku/distinfo (props changed) head/editors/libreoffice-lo/distinfo (props changed) head/editors/libreoffice-lt/distinfo (props changed) head/editors/libreoffice-lv/distinfo (props changed) head/editors/libreoffice-mai/distinfo (props changed) head/editors/libreoffice-mk/distinfo (props changed) head/editors/libreoffice-ml/distinfo (props changed) head/editors/libreoffice-mn/distinfo (props changed) head/editors/libreoffice-mni/distinfo (props changed) head/editors/libreoffice-mr/distinfo (props changed) head/editors/libreoffice-my/distinfo (props changed) head/editors/libreoffice-nb/distinfo (props changed) head/editors/libreoffice-ne/distinfo (props changed) head/editors/libreoffice-nl/distinfo (props changed) head/editors/libreoffice-nn/distinfo (props changed) head/editors/libreoffice-nr/distinfo (props changed) head/editors/libreoffice-nso/distinfo (props changed) head/editors/libreoffice-oc/distinfo (props changed) head/editors/libreoffice-om/distinfo (props changed) head/editors/libreoffice-or/distinfo (props changed) head/editors/libreoffice-pa_IN/distinfo (props changed) head/editors/libreoffice-ro/distinfo (props changed) head/editors/libreoffice-rw/distinfo (props changed) head/editors/libreoffice-sa_IN/distinfo (props changed) head/editors/libreoffice-sat/distinfo (props changed) head/editors/libreoffice-sd/distinfo (props changed) head/editors/libreoffice-sh/distinfo (props changed) head/editors/libreoffice-si/distinfo (props changed) head/editors/libreoffice-sk/distinfo (props changed) head/editors/libreoffice-sl/distinfo (props changed) head/editors/libreoffice-sq/distinfo (props changed) head/editors/libreoffice-sr/distinfo (props changed) head/editors/libreoffice-ss/distinfo (props changed) head/editors/libreoffice-st/distinfo (props changed) head/editors/libreoffice-sv/distinfo (props changed) head/editors/libreoffice-sw_TZ/distinfo (props changed) head/editors/libreoffice-ta/distinfo (props changed) head/editors/libreoffice-te/distinfo (props changed) head/editors/libreoffice-tg/distinfo (props changed) head/editors/libreoffice-th/distinfo (props changed) head/editors/libreoffice-tn/distinfo (props changed) head/editors/libreoffice-tr/distinfo (props changed) head/editors/libreoffice-ts/distinfo (props changed) head/editors/libreoffice-uz/distinfo (props changed) head/editors/libreoffice-ve/distinfo (props changed) head/editors/libreoffice-xh/distinfo (props changed) head/editors/libreoffice-zu/distinfo (props changed) head/editors/libreoffice/distinfo (props changed) head/editors/madedit/distinfo (props changed) head/editors/manedit/distinfo (props changed) head/editors/mate-text-editor/distinfo (props changed) head/editors/mg/distinfo (props changed) head/editors/mlview/distinfo (props changed) head/editors/morla/distinfo (props changed) head/editors/nano-devel/distinfo (props changed) head/editors/nano/distinfo (props changed) head/editors/ne/distinfo (props changed) head/editors/nedit/distinfo (props changed) head/editors/nvi-devel/distinfo (props changed) head/editors/nvi-m17n/distinfo (props changed) head/editors/nxml/distinfo (props changed) head/editors/omegaT/distinfo (props changed) head/editors/openoffice-3/distinfo (props changed) head/editors/openoffice-4/distinfo (props changed) head/editors/openoffice-devel/distinfo (props changed) head/editors/p5-Proc-InvokeEditor/distinfo (props changed) head/editors/p5-Vimana/distinfo (props changed) head/editors/paredit-mode.el/distinfo (props changed) head/editors/poedit/distinfo (props changed) head/editors/psgml/distinfo (props changed) head/editors/puff/distinfo (props changed) head/editors/py-room/distinfo (props changed) head/editors/rox-edit/distinfo (props changed) head/editors/se/distinfo (props changed) head/editors/semi/distinfo (props changed) head/editors/setedit/distinfo (props changed) head/editors/slime/distinfo (props changed) head/editors/softmaker-office/distinfo (props changed) head/editors/spe/distinfo (props changed) head/editors/speedbar/distinfo (props changed) head/editors/ssam/distinfo (props changed) head/editors/ssed/distinfo (props changed) head/editors/sted/distinfo (props changed) head/editors/tamago/distinfo (props changed) head/editors/teco/distinfo (props changed) head/editors/tetradraw/distinfo (props changed) head/editors/texmacs/distinfo (props changed) head/editors/texmakerx/distinfo (props changed) head/editors/textedit/distinfo (props changed) head/editors/textroom/distinfo (props changed) head/editors/the/distinfo (props changed) head/editors/thoteditor/distinfo (props changed) head/editors/tpad/distinfo (props changed) head/editors/tree-widget/distinfo (props changed) head/editors/treeform/distinfo (props changed) head/editors/tweak/distinfo (props changed) head/editors/uemacs/distinfo (props changed) head/editors/uzap/distinfo (props changed) head/editors/ved/distinfo (props changed) head/editors/vigor/distinfo (props changed) head/editors/winefish/distinfo (props changed) head/editors/wordgrinder/distinfo (props changed) head/editors/xcoral/distinfo (props changed) head/editors/xed/distinfo (props changed) head/editors/xemacs-devel-mule/distinfo (props changed) head/editors/xemacs-devel/distinfo (props changed) head/editors/xemacs-mule-packages/distinfo (props changed) head/editors/xemacs-packages/distinfo (props changed) head/editors/xemacs/distinfo (props changed) head/editors/xemacs21-mule/distinfo (props changed) head/editors/yasnippet/distinfo (props changed) head/editors/yudit/distinfo (props changed) head/editors/yzis/distinfo (props changed) head/editors/zile/distinfo (props changed) head/editors/zim/distinfo (props changed) head/editors/zoinks/distinfo (props changed) head/emulators/adamem/distinfo (props changed) head/emulators/advancemess/distinfo (props changed) head/emulators/aftp/distinfo (props changed) head/emulators/atari800/distinfo (props changed) head/emulators/bfe/distinfo (props changed) head/emulators/bsvc/distinfo (props changed) head/emulators/catapult/distinfo (props changed) head/emulators/cinc/distinfo (props changed) head/emulators/cingb/distinfo (props changed) head/emulators/cpmemu/distinfo (props changed) head/emulators/cpmtools/distinfo (props changed) head/emulators/cygne-sdl/distinfo (props changed) head/emulators/darcnes/distinfo (props changed) head/emulators/dboxfe/distinfo (props changed) head/emulators/desmume/distinfo (props changed) head/emulators/dosbox/distinfo (props changed) head/emulators/doscmd/distinfo (props changed) head/emulators/dtcyber/distinfo (props changed) head/emulators/dynagen/distinfo (props changed) head/emulators/dynagui/distinfo (props changed) head/emulators/dynamips-community/distinfo (props changed) head/emulators/dynamips-devel/distinfo (props changed) head/emulators/dynamips/distinfo (props changed) head/emulators/e-uae/distinfo (props changed) head/emulators/extract-xiso/distinfo (props changed) head/emulators/fmsx/distinfo (props changed) head/emulators/frodo/distinfo (props changed) head/emulators/gbe/distinfo (props changed) head/emulators/generator-cbiere/distinfo (props changed) head/emulators/generator/distinfo (props changed) head/emulators/gngb/distinfo (props changed) head/emulators/gngeo/distinfo (props changed) head/emulators/gns3/distinfo (props changed) head/emulators/gnuboy/distinfo (props changed) head/emulators/gxemul/distinfo (props changed) head/emulators/gxmame/distinfo (props changed) head/emulators/hfs/distinfo (props changed) head/emulators/hugo/distinfo (props changed) head/emulators/ia64sim/distinfo (props changed) head/emulators/ines/distinfo (props changed) head/emulators/its/distinfo (props changed) head/emulators/kcemu/distinfo (props changed) head/emulators/klh10/distinfo (props changed) head/emulators/kqemu-kmod-devel/distinfo (props changed) head/emulators/kqemu-kmod/distinfo (props changed) head/emulators/lib765/distinfo (props changed) head/emulators/libdsk/distinfo (props changed) head/emulators/linux-geepee32/distinfo (props changed) head/emulators/linux-systemsimcell/distinfo.i386 (props changed) head/emulators/linux_base-c6/distinfo.i686 (props changed) head/emulators/linux_base-f10/distinfo.i386 (props changed) head/emulators/linux_dist-gentoo-stage3/distinfo (props changed) head/emulators/lisaem/distinfo (props changed) head/emulators/loemu/distinfo (props changed) head/emulators/m2000/distinfo (props changed) head/emulators/mastergear/distinfo (props changed) head/emulators/mednafen/distinfo (props changed) head/emulators/minivmac/distinfo (props changed) head/emulators/mtools/distinfo (props changed) head/emulators/mupen64-base/distinfo (props changed) head/emulators/mupen64-glide/distinfo (props changed) head/emulators/mupen64-rice/distinfo (props changed) head/emulators/mupen64-tr64/distinfo (props changed) head/emulators/mupen64plus-core/distinfo (props changed) head/emulators/nonpareil/distinfo (props changed) head/emulators/o2em/distinfo (props changed) head/emulators/ods2reader/distinfo (props changed) head/emulators/openmsx/distinfo (props changed) head/emulators/p5-Acme-6502/distinfo (props changed) head/emulators/parallels-tools/distinfo (props changed) head/emulators/pcemu/distinfo (props changed) head/emulators/pearpc/distinfo (props changed) head/emulators/prodosemu/distinfo (props changed) head/emulators/psim-freebsd/distinfo (props changed) head/emulators/pyxmame/distinfo (props changed) head/emulators/qemu-launcher/distinfo (props changed) head/emulators/qemu/distinfo (props changed) head/emulators/qtemu/distinfo (props changed) head/emulators/quasi88/distinfo (props changed) head/emulators/raine/distinfo (props changed) head/emulators/sim6811/distinfo (props changed) head/emulators/simh/distinfo (props changed) head/emulators/ski/distinfo (props changed) head/emulators/skyeye/distinfo (props changed) head/emulators/snes9express/distinfo (props changed) head/emulators/snes9x-gtk/distinfo (props changed) head/emulators/snes9x/distinfo (props changed) head/emulators/spim/distinfo (props changed) head/emulators/stella/distinfo (props changed) head/emulators/stonx/distinfo (props changed) head/emulators/tiemu3/distinfo (props changed) head/emulators/tilem/distinfo (props changed) head/emulators/tme/distinfo (props changed) head/emulators/tuxnes/distinfo (props changed) head/emulators/uae/distinfo (props changed) head/emulators/vMac/distinfo (props changed) head/emulators/vba/distinfo (props changed) head/emulators/vboxtool/distinfo (props changed) head/emulators/vgb-bin/distinfo (props changed) head/emulators/vgba-bin/distinfo (props changed) head/emulators/vice/distinfo (props changed) head/emulators/virtio-kmod/distinfo (props changed) head/emulators/visualboyadvance-m/distinfo (props changed) head/emulators/vmips/distinfo (props changed) head/emulators/vmsbackup/distinfo (props changed) head/emulators/vmw/distinfo (props changed) head/emulators/vxtools/distinfo (props changed) head/emulators/wine-devel/distinfo (props changed) head/emulators/wine-doors/distinfo (props changed) head/emulators/wine-gecko-devel/distinfo (props changed) head/emulators/wine-gecko/distinfo (props changed) head/emulators/wine-mono-devel/distinfo (props changed) head/emulators/wine-mono/distinfo (props changed) head/emulators/wine/distinfo (props changed) head/emulators/wxmupen64plus/distinfo (props changed) head/emulators/x48/distinfo (props changed) head/emulators/x49gp/distinfo (props changed) head/emulators/xbraitenberg/distinfo (props changed) head/emulators/xcpc/distinfo (props changed) head/emulators/xhomer/distinfo (props changed) head/emulators/xmame/distinfo (props changed) head/emulators/xsystem35/distinfo (props changed) head/emulators/xzx/distinfo (props changed) head/emulators/yabause/distinfo (props changed) head/emulators/yape/distinfo (props changed) head/emulators/zsnes/distinfo (props changed) head/finance/R-cran-PerformanceAnalytics/distinfo (props changed) head/finance/R-cran-RFinanceYJ/distinfo (props changed) head/finance/R-cran-TTR/distinfo (props changed) head/finance/R-cran-ccgarch/distinfo (props changed) head/finance/R-cran-fBasics/distinfo (props changed) head/finance/R-cran-fGarch/distinfo (props changed) head/finance/R-cran-gmm/distinfo (props changed) head/finance/R-cran-lmtest/distinfo (props changed) head/finance/R-cran-plm/distinfo (props changed) head/finance/R-cran-quantmod/distinfo (props changed) head/finance/R-cran-strucchange/distinfo (props changed) head/finance/R-cran-timeDate/distinfo (props changed) head/finance/R-cran-timeSeries/distinfo (props changed) head/finance/R-cran-tseries/distinfo (props changed) head/finance/R-cran-urca/distinfo (props changed) head/finance/R-cran-vars/distinfo (props changed) head/finance/aqbanking/distinfo (props changed) head/finance/aqmoney/distinfo (props changed) head/finance/beanie/distinfo (props changed) head/finance/electrum/distinfo (props changed) head/finance/expense/distinfo (props changed) head/finance/gnucash-docs/distinfo (props changed) head/finance/grisbi/distinfo (props changed) head/finance/ledger/distinfo (props changed) head/finance/ledgersmb/distinfo (props changed) head/finance/ledgersmb12/distinfo (props changed) head/finance/libalkimia/distinfo (props changed) head/finance/libstocks/distinfo (props changed) head/finance/moneymanagerex/distinfo (props changed) head/finance/mybudget/distinfo (props changed) head/finance/myphpmoney/distinfo (props changed) head/finance/openerp-server/distinfo (props changed) head/finance/openerp-web/distinfo (props changed) head/finance/openhbci/distinfo (props changed) head/finance/opentaxsolver/distinfo (props changed) head/finance/p5-Business-CreditCard/distinfo (props changed) head/finance/p5-Business-MaxMind-CreditCardFraudDetection/distinfo (props changed) head/finance/p5-Business-OCV/distinfo (props changed) head/finance/p5-Business-OnlinePayment-2CheckOut/distinfo (props changed) head/finance/p5-Business-OnlinePayment-AuthorizeNet/distinfo (props changed) head/finance/p5-Business-OnlinePayment-BankOfAmerica/distinfo (props changed) head/finance/p5-Business-OnlinePayment-Beanstream/distinfo (props changed) head/finance/p5-Business-OnlinePayment-Cardstream/distinfo (props changed) head/finance/p5-Business-OnlinePayment-Jettis/distinfo (props changed) head/finance/p5-Business-OnlinePayment-LinkPoint/distinfo (props changed) head/finance/p5-Business-OnlinePayment-MerchantCommerce/distinfo (props changed) head/finance/p5-Business-OnlinePayment-Network1Financial/distinfo (props changed) head/finance/p5-Business-OnlinePayment-OCV/distinfo (props changed) head/finance/p5-Business-OnlinePayment-PayConnect/distinfo (props changed) head/finance/p5-Business-OnlinePayment-PaymenTech/distinfo (props changed) head/finance/p5-Business-OnlinePayment-PaymentsGateway/distinfo (props changed) head/finance/p5-Business-OnlinePayment-SurePay/distinfo (props changed) head/finance/p5-Business-OnlinePayment-TCLink/distinfo (props changed) head/finance/p5-Business-OnlinePayment-VirtualNet/distinfo (props changed) head/finance/p5-Business-OnlinePayment-eSec/distinfo (props changed) head/finance/p5-Business-OnlinePayment-iAuthorizer/distinfo (props changed) head/finance/p5-Business-OnlinePayment/distinfo (props changed) head/finance/p5-Business-PayPal-IPN/distinfo (props changed) head/finance/p5-Business-Stripe/distinfo (props changed) head/finance/p5-Business-TW-Invoice-U420/distinfo (props changed) head/finance/p5-Business-TW-TSIB-CStorePayment/distinfo (props changed) head/finance/p5-Business-TW-TSIB-VirtualAccount/distinfo (props changed) head/finance/p5-Business-WorldPay-Junior/distinfo (props changed) head/finance/p5-Finance-Amortization/distinfo (props changed) head/finance/p5-Finance-Bitcoin/distinfo (props changed) head/finance/p5-Finance-Currency-Convert-WebserviceX/distinfo (props changed) head/finance/p5-Finance-Currency-Convert-XE/distinfo (props changed) head/finance/p5-Finance-Currency-Convert/distinfo (props changed) head/finance/p5-Finance-QuoteHist/distinfo (props changed) head/finance/p5-Finance-QuoteTW/distinfo (props changed) head/finance/p5-Finance-TW-EmergingQuote/distinfo (props changed) head/finance/p5-Finance-TW-TSEQuote/distinfo (props changed) head/finance/p5-Finance-YahooQuote/distinfo (props changed) head/finance/p5-Locale-Currency-Format/distinfo (props changed) head/finance/p5-Math-Financial/distinfo (props changed) head/finance/p5-PayflowPro/distinfo (props changed) head/finance/pear_Payment_DTA/distinfo (props changed) head/finance/php-tclink/distinfo (props changed) head/finance/prestashop/distinfo (props changed) head/finance/py-vatnumber/distinfo (props changed) head/finance/sabernetdcs-client/distinfo (props changed) head/finance/sql-ledger/distinfo (props changed) head/finance/tryton/distinfo (props changed) head/finance/tryton28/distinfo (props changed) head/finance/trytond/distinfo (props changed) head/finance/trytond28/distinfo (props changed) head/finance/trytond28_account_be/distinfo (props changed) head/finance/trytond28_account_invoice_history/distinfo (props changed) head/finance/trytond28_account_invoice_line_standalone/distinfo (props changed) head/finance/trytond28_account_statement/distinfo (props changed) head/finance/trytond28_account_stock_anglo_saxon/distinfo (props changed) head/finance/trytond28_account_stock_continental/distinfo (props changed) head/finance/trytond28_analytic_account/distinfo (props changed) head/finance/trytond28_analytic_invoice/distinfo (props changed) head/finance/trytond28_analytic_purchase/distinfo (props changed) head/finance/trytond28_analytic_sale/distinfo (props changed) head/finance/trytond28_calendar_classification/distinfo (props changed) head/finance/trytond28_calendar_scheduling/distinfo (props changed) head/finance/trytond28_calendar_todo/distinfo (props changed) head/finance/trytond28_party_siret/distinfo (props changed) head/finance/trytond28_party_vcarddav/distinfo (props changed) head/finance/trytond28_product_cost_fifo/distinfo (props changed) head/finance/trytond28_product_cost_history/distinfo (props changed) head/finance/trytond28_purchase_invoice_line_standalone/distinfo (props changed) head/finance/trytond28_purchase_shipment_cost/distinfo (props changed) head/finance/trytond28_stock_forecast/distinfo (props changed) head/finance/trytond28_stock_inventory_location/distinfo (props changed) head/finance/trytond28_stock_location_sequence/distinfo (props changed) head/finance/trytond28_stock_lot/distinfo (props changed) head/finance/trytond28_stock_product_location/distinfo (props changed) head/finance/trytond28_stock_split/distinfo (props changed) head/finance/trytond28_stock_supply/distinfo (props changed) head/finance/trytond28_stock_supply_day/distinfo (props changed) head/finance/trytond28_stock_supply_forecast/distinfo (props changed) head/finance/trytond_account_be/distinfo (props changed) head/finance/trytond_account_invoice_history/distinfo (props changed) head/finance/trytond_account_invoice_line_standalone/distinfo (props changed) head/finance/trytond_account_statement/distinfo (props changed) head/finance/trytond_account_stock_anglo_saxon/distinfo (props changed) head/finance/trytond_account_stock_continental/distinfo (props changed) head/finance/trytond_analytic_account/distinfo (props changed) head/finance/trytond_analytic_invoice/distinfo (props changed) head/finance/trytond_analytic_purchase/distinfo (props changed) head/finance/trytond_analytic_sale/distinfo (props changed) head/finance/trytond_calendar_classification/distinfo (props changed) head/finance/trytond_calendar_scheduling/distinfo (props changed) head/finance/trytond_calendar_todo/distinfo (props changed) head/finance/trytond_party_siret/distinfo (props changed) head/finance/trytond_party_vcarddav/distinfo (props changed) head/finance/trytond_product_cost_fifo/distinfo (props changed) head/finance/trytond_product_cost_history/distinfo (props changed) head/finance/trytond_purchase_invoice_line_standalone/distinfo (props changed) head/finance/trytond_purchase_shipment_cost/distinfo (props changed) head/finance/trytond_stock_forecast/distinfo (props changed) head/finance/trytond_stock_inventory_location/distinfo (props changed) head/finance/trytond_stock_location_sequence/distinfo (props changed) head/finance/trytond_stock_lot/distinfo (props changed) head/finance/trytond_stock_product_location/distinfo (props changed) head/finance/trytond_stock_split/distinfo (props changed) head/finance/trytond_stock_supply/distinfo (props changed) head/finance/trytond_stock_supply_day/distinfo (props changed) head/finance/trytond_stock_supply_forecast/distinfo (props changed) head/finance/weberp/distinfo (props changed) head/finance/wmstock/distinfo (props changed) head/finance/xtrader/distinfo (props changed) head/french/acroread8/distinfo (props changed) head/french/acroread9/distinfo (props changed) head/french/alphabet_sounds_fr/distinfo (props changed) head/french/aspell/distinfo (props changed) head/french/belote/distinfo (props changed) head/french/dico/distinfo (props changed) head/french/eric4/distinfo (props changed) head/french/facturier/distinfo (props changed) head/french/fortune-mod-zarathoustra/distinfo (props changed) head/french/gfaim/distinfo (props changed) head/french/hyphen/distinfo (props changed) head/french/jdictionary-fre-hun/distinfo (props changed) head/french/libreoffice/distinfo (props changed) head/french/mythes/distinfo (props changed) head/french/trytond28_account_fr/distinfo (props changed) head/french/trytond_account_fr/distinfo (props changed) head/french/tvdownloader/distinfo (props changed) head/french/verbiste/distinfo (props changed) head/ftp/R-cran-RCurl/distinfo (props changed) head/ftp/atftp/distinfo (props changed) head/ftp/axel/distinfo (props changed) head/ftp/bareftp/distinfo (props changed) head/ftp/bbftp/distinfo (props changed) head/ftp/bftpd/distinfo (props changed) head/ftp/bsdftpd-ssl/distinfo (props changed) head/ftp/cftp/distinfo (props changed) head/ftp/cmdftp/distinfo (props changed) head/ftp/curlpp/distinfo (props changed) head/ftp/dmachine/distinfo (props changed) head/ftp/fget/distinfo (props changed) head/ftp/filezilla/distinfo (props changed) head/ftp/fmirror/distinfo (props changed) head/ftp/frox/distinfo (props changed) head/ftp/ftpcopy/distinfo (props changed) head/ftp/ftpcube/distinfo (props changed) head/ftp/ftpfind/distinfo (props changed) head/ftp/ftplocate/distinfo (props changed) head/ftp/ftpmirror/distinfo (props changed) head/ftp/ftpproxy/distinfo (props changed) head/ftp/ftpsesame/distinfo (props changed) head/ftp/ftpsync/distinfo (props changed) head/ftp/gnusget/distinfo (props changed) head/ftp/gnustep-ftp/distinfo (props changed) head/ftp/gwget/distinfo (props changed) head/ftp/horde-gollem/distinfo (props changed) head/ftp/horde3-gollem/distinfo (props changed) head/ftp/hs-curl/distinfo (props changed) head/ftp/hsftp/distinfo (props changed) head/ftp/jftp/distinfo (props changed) head/ftp/jftpgw/distinfo (props changed) head/ftp/linux-f10-curl/distinfo.i386 (props changed) head/ftp/llnlxdir/distinfo (props changed) head/ftp/llnlxftp/distinfo (props changed) head/ftp/mirror/distinfo (props changed) head/ftp/multiget/distinfo (props changed) head/ftp/ncftp1/distinfo (props changed) head/ftp/ncftp3/distinfo (props changed) head/ftp/ncftpd/distinfo (props changed) head/ftp/net2ftp/distinfo (props changed) head/ftp/ocaml-ocurl/distinfo (props changed) head/ftp/oftpd/distinfo (props changed) head/ftp/omi/distinfo (props changed) head/ftp/p5-Net-FTP-Common/distinfo (props changed) head/ftp/p5-Net-FTP-Recursive/distinfo (props changed) head/ftp/p5-Net-FTPServer/distinfo (props changed) head/ftp/p5-POE-Component-Client-FTP/distinfo (props changed) head/ftp/p5-SOAP-Transport-FTP/distinfo (props changed) head/ftp/paraget/distinfo (props changed) head/ftp/pavuk/distinfo (props changed) head/ftp/pear-Net_FTP/distinfo (props changed) head/ftp/phpwebftp/distinfo (props changed) head/ftp/plasma-applet-ftpmonitor/distinfo (props changed) head/ftp/proftpd/distinfo (props changed) head/ftp/profxp/distinfo (props changed) head/ftp/puf/distinfo (props changed) head/ftp/pure-ftpd/distinfo (props changed) head/ftp/pureadmin/distinfo (props changed) head/ftp/py-curl/distinfo (props changed) head/ftp/py-ftputil/distinfo (props changed) head/ftp/py-pyftpdlib/distinfo (props changed) head/ftp/quftp/distinfo (props changed) head/ftp/rexx-curl/distinfo (props changed) head/ftp/scythia/distinfo (props changed) head/ftp/smbftpd/distinfo (props changed) head/ftp/spegla/distinfo (props changed) head/ftp/tftp-hpa/distinfo (props changed) head/ftp/tnftp/distinfo (props changed) head/ftp/urlgfe/distinfo (props changed) head/ftp/vsftpd-ext/distinfo (props changed) head/ftp/vsftpd/distinfo (props changed) head/ftp/waiho/distinfo (props changed) head/ftp/weex/distinfo (props changed) head/ftp/wget/distinfo (props changed) head/ftp/wmget/distinfo (props changed) head/ftp/wput/distinfo (props changed) head/ftp/wxdfast/distinfo (props changed) head/ftp/yafc/distinfo (props changed) head/games/0verkill/distinfo (props changed) head/games/3dc/distinfo (props changed) head/games/4stattack/distinfo (props changed) head/games/54321/distinfo (props changed) head/games/CaribbeanStud/distinfo (props changed) head/games/KnightCap/distinfo (props changed) head/games/abuse_sdl/distinfo (props changed) head/games/acm/distinfo (props changed) head/games/actx/distinfo (props changed) head/games/adgali/distinfo (props changed) head/games/adom/distinfo (props changed) head/games/adonthell/distinfo (props changed) head/games/aestats/distinfo (props changed) head/games/affenspiel/distinfo (props changed) head/games/agame/distinfo (props changed) head/games/airstrike/distinfo (props changed) head/games/alephone-data/distinfo (props changed) head/games/alephone-scenarios/distinfo (props changed) head/games/alephone/distinfo (props changed) head/games/alienarena-data/distinfo (props changed) head/games/alienarena/distinfo (props changed) head/games/alienblaster/distinfo (props changed) head/games/allacrost/distinfo (props changed) head/games/amoebax/distinfo (props changed) head/games/an/distinfo (props changed) head/games/annelid/distinfo (props changed) head/games/antipolix/distinfo (props changed) head/games/aop/distinfo (props changed) head/games/apoolGL/distinfo (props changed) head/games/apricots/distinfo (props changed) head/games/arkanoidsb/distinfo (props changed) head/games/armagetron/distinfo (props changed) head/games/arx-libertatis/distinfo (props changed) head/games/asciiquarium/distinfo (props changed) head/games/atanks/distinfo (props changed) head/games/atitd/distinfo (props changed) head/games/atomix/distinfo (props changed) head/games/atr3d/distinfo (props changed) head/games/atris-sounds/distinfo (props changed) head/games/atris/distinfo (props changed) head/games/avanor/distinfo (props changed) head/games/avoision/distinfo (props changed) head/games/avp-demo/distinfo (props changed) head/games/awale/distinfo (props changed) head/games/awele/distinfo (props changed) head/games/balazar/distinfo (props changed) head/games/balazarbrothers/distinfo (props changed) head/games/banihstypos/distinfo (props changed) head/games/barrage/distinfo (props changed) head/games/bass/distinfo (props changed) head/games/bastet/distinfo (props changed) head/games/battalion/distinfo (props changed) head/games/battletanks/distinfo (props changed) head/games/belooted/distinfo (props changed) head/games/biloba/distinfo (props changed) head/games/biniax2/distinfo (props changed) head/games/biorythm/distinfo (props changed) head/games/bitefusion/distinfo (props changed) head/games/blackshadeselite/distinfo (props changed) head/games/blinkensisters/distinfo (props changed) head/games/bloboats/distinfo (props changed) head/games/blobwars/distinfo (props changed) head/games/block/distinfo (props changed) head/games/blockade/distinfo (props changed) head/games/blockout/distinfo (props changed) head/games/blokish/distinfo (props changed) head/games/bloodfrontier/distinfo (props changed) head/games/bluemoon/distinfo (props changed) head/games/bogged/distinfo (props changed) head/games/bomberclone/distinfo (props changed) head/games/bomberinstinct/distinfo (props changed) head/games/bombz/distinfo (props changed) head/games/bomns/distinfo (props changed) head/games/boswars/distinfo (props changed) head/games/bouncy/distinfo (props changed) head/games/braincurses/distinfo (props changed) head/games/brainparty/distinfo (props changed) head/games/brainworkshop/distinfo (props changed) head/games/brickshooter/distinfo (props changed) head/games/brikx/distinfo (props changed) head/games/briquolo/distinfo (props changed) head/games/brutalchess/distinfo (props changed) head/games/bs/distinfo (props changed) head/games/bsdgames/distinfo (props changed) head/games/bsdrain/distinfo (props changed) head/games/bsdtris/distinfo (props changed) head/games/bsp/distinfo (props changed) head/games/bubble-chains/distinfo (props changed) head/games/bubbros/distinfo (props changed) head/games/bugsx/distinfo (props changed) head/games/bumprace/distinfo (props changed) head/games/burrtools/distinfo (props changed) head/games/bygfoot/distinfo (props changed) head/games/bzflag/distinfo (props changed) head/games/cake/distinfo (props changed) head/games/caph/distinfo (props changed) head/games/capicity/distinfo (props changed) head/games/capitalism/distinfo (props changed) head/games/cardpics/distinfo (props changed) head/games/cave9/distinfo (props changed) head/games/cavezofphear/distinfo (props changed) head/games/ceferino/distinfo (props changed) head/games/cgoban/distinfo (props changed) head/games/chanta/distinfo (props changed) head/games/chapping/distinfo (props changed) head/games/cheech/distinfo (props changed) head/games/childsplay_plugins/distinfo (props changed) head/games/chroma/distinfo (props changed) head/games/chromium-bsu/distinfo (props changed) head/games/circuslinux/distinfo (props changed) head/games/cleanq3/distinfo (props changed) head/games/colorcode/distinfo (props changed) head/games/columns/distinfo (props changed) head/games/concentration/distinfo (props changed) head/games/connectfive/distinfo (props changed) head/games/conquest/distinfo (props changed) head/games/construo/distinfo (props changed) head/games/corewars/distinfo (props changed) head/games/cosmo/distinfo (props changed) head/games/cowsay/distinfo (props changed) head/games/crack-attack/distinfo (props changed) head/games/crafty-open-enormous/distinfo (props changed) head/games/crafty-open-large/distinfo (props changed) head/games/crafty-open-medium/distinfo (props changed) head/games/crafty-tablebase-no-pawn/distinfo (props changed) head/games/crafty-tablebase-pawn/distinfo (props changed) head/games/crafty/distinfo (props changed) head/games/cre/distinfo (props changed) head/games/cretan-hubris/distinfo (props changed) head/games/crimson/distinfo (props changed) head/games/criticalmass/distinfo (props changed) head/games/critterding/distinfo (props changed) head/games/crossfire-client/distinfo (props changed) head/games/crossfire-server/distinfo (props changed) head/games/crrcsim/distinfo (props changed) head/games/cryptoslam/distinfo (props changed) head/games/csmash/distinfo (props changed) head/games/ctris/distinfo (props changed) head/games/cube/distinfo (props changed) head/games/cultivation/distinfo (props changed) head/games/cursive/distinfo (props changed) head/games/cutemaze/distinfo (props changed) head/games/cuyo/distinfo (props changed) head/games/d2x-xl/distinfo (props changed) head/games/d2x/distinfo (props changed) head/games/daimonin/distinfo (props changed) head/games/dangen/distinfo (props changed) head/games/dangerdeep-data/distinfo (props changed) head/games/dangerdeep/distinfo (props changed) head/games/darkplaces/distinfo (props changed) head/games/dcross/distinfo (props changed) head/games/deal/distinfo (props changed) head/games/diameter/distinfo (props changed) head/games/digger-vgl/distinfo (props changed) head/games/djgame2/distinfo (props changed) head/games/dmjava/distinfo (props changed) head/games/dodgindiamond2/distinfo (props changed) head/games/dontspace/distinfo (props changed) head/games/doom-data/distinfo (props changed) head/games/doom-freedoom/distinfo (props changed) head/games/doom-hacx/distinfo (props changed) head/games/doom-hr/distinfo (props changed) head/games/doom-hr2/distinfo (props changed) head/games/doom-wolfendoom/distinfo (props changed) head/games/doom/distinfo (props changed) head/games/doomlegacy/distinfo (props changed) head/games/dopewars/distinfo (props changed) head/games/drm/distinfo (props changed) head/games/dsnake/distinfo (props changed) head/games/duckmaze/distinfo (props changed) head/games/duel/distinfo (props changed) head/games/duke3d-data/distinfo (props changed) head/games/dungeoncrawl/distinfo (props changed) head/games/eboard/distinfo (props changed) head/games/edge/distinfo (props changed) head/games/editss/distinfo (props changed) head/games/eduke32/distinfo (props changed) head/games/egl/distinfo (props changed) head/games/egoboo/distinfo (props changed) head/games/eif/distinfo (props changed) head/games/eights/distinfo (props changed) head/games/einstein/distinfo (props changed) head/games/el-data/distinfo (props changed) head/games/el/distinfo (props changed) head/games/endgame-singularity-music/distinfo (props changed) head/games/endgame-singularity/distinfo (props changed) head/games/enigma/distinfo (props changed) head/games/ensemblist/distinfo (props changed) head/games/entombed/distinfo (props changed) head/games/enygma/distinfo (props changed) head/games/etracer/distinfo (props changed) head/games/evilfinder/distinfo (props changed) head/games/evq3/distinfo (props changed) head/games/excido/distinfo (props changed) head/games/exhaust-doc/distinfo (props changed) head/games/exhaust-ma/distinfo (props changed) head/games/exhaust/distinfo (props changed) head/games/exmars/distinfo (props changed) head/games/exult/distinfo (props changed) head/games/ezquake/distinfo (props changed) head/games/f1spirit-remake/distinfo (props changed) head/games/fairymax/distinfo (props changed) head/games/falconseye/distinfo (props changed) head/games/farblazer/distinfo (props changed) head/games/fargoal/distinfo (props changed) head/games/fbg2/distinfo (props changed) head/games/fgkicker/distinfo (props changed) head/games/fightorperish/distinfo (props changed) head/games/fillets-ng/distinfo (props changed) head/games/filters/distinfo (props changed) head/games/fishsupper/distinfo (props changed) head/games/fkiss/distinfo (props changed) head/games/flare-engine/distinfo (props changed) head/games/flare-game/distinfo (props changed) head/games/flobopuyo/distinfo (props changed) head/games/flyhard/distinfo (props changed) head/games/flying/distinfo (props changed) head/games/fmars/distinfo (props changed) head/games/foobillard/distinfo (props changed) head/games/formido/distinfo (props changed) head/games/fortunate/distinfo (props changed) head/games/freeciv-sounds/distinfo (props changed) head/games/freeciv/distinfo (props changed) head/games/freecol/distinfo (props changed) head/games/freedink-data/distinfo (props changed) head/games/freedink-dfarc/distinfo (props changed) head/games/freedink-engine/distinfo (props changed) head/games/freedoko/distinfo (props changed) head/games/freedroid/distinfo (props changed) head/games/freedroidrpg/distinfo (props changed) head/games/freeminer/distinfo (props changed) head/games/freera/distinfo (props changed) head/games/freesweep/distinfo (props changed) head/games/freetennis/distinfo (props changed) head/games/fretsonfire-data/distinfo (props changed) head/games/fretsonfire/distinfo (props changed) head/games/frikqcc/distinfo (props changed) head/games/frobtads/distinfo (props changed) head/games/frogatto/distinfo (props changed) head/games/frotz/distinfo (props changed) head/games/fteqw/distinfo (props changed) head/games/ftjava/distinfo (props changed) head/games/fuhquake/distinfo (props changed) head/games/funnyboat/distinfo (props changed) head/games/fxsudoku/distinfo (props changed) head/games/galaxyhack/distinfo (props changed) head/games/galaxymage/distinfo (props changed) head/games/garith/distinfo (props changed) head/games/gbottler/distinfo (props changed) head/games/gbrainy/distinfo (props changed) head/games/gcompris/distinfo (props changed) head/games/gdado/distinfo (props changed) head/games/ggz-client-libs/distinfo (props changed) head/games/ggz-gtk-client/distinfo (props changed) head/games/ggz-gtk-games/distinfo (props changed) head/games/ggz-sdl-games/distinfo (props changed) head/games/ggz-txt-client/distinfo (props changed) head/games/gillo/distinfo (props changed) head/games/gish-demo/distinfo (props changed) head/games/gl-117/distinfo (props changed) head/games/glaxium/distinfo (props changed) head/games/glbsp/distinfo (props changed) head/games/glchess/distinfo (props changed) head/games/glest-data/distinfo (props changed) head/games/glest/distinfo (props changed) head/games/glightoff/distinfo (props changed) head/games/glmaze/distinfo (props changed) head/games/glob2/distinfo (props changed) head/games/glsfcave/distinfo (props changed) head/games/gltron/distinfo (props changed) head/games/gma/distinfo (props changed) head/games/gmastermind/distinfo (props changed) head/games/gmines/distinfo (props changed) head/games/gnake/distinfo (props changed) head/games/gnarr/distinfo (props changed) head/games/gno3dtet/distinfo (props changed) head/games/gnome-games-extra-data/distinfo (props changed) head/games/gnome-games/distinfo (props changed) head/games/gnomeattacks/distinfo (props changed) head/games/gnomebreakout/distinfo (props changed) head/games/gnomechess/distinfo (props changed) head/games/gnomekiss/distinfo (props changed) head/games/gnomesudoku/distinfo (props changed) head/games/gnono/distinfo (props changed) head/games/gnubg/distinfo (props changed) head/games/gnuchess/distinfo (props changed) head/games/gnudoku/distinfo (props changed) head/games/gnugo/distinfo (props changed) head/games/gnurobbo/distinfo (props changed) head/games/gnurobots/distinfo (props changed) head/games/gnushogi/distinfo (props changed) head/games/gnustep-ladder/distinfo (props changed) head/games/gnustep-sudoku/distinfo (props changed) head/games/gomoku/distinfo (props changed) head/games/gondola/distinfo (props changed) head/games/goonies/distinfo (props changed) head/games/gracer/distinfo (props changed) head/games/gretools/distinfo (props changed) head/games/grhino/distinfo (props changed) head/games/gru/distinfo (props changed) head/games/grubik/distinfo (props changed) head/games/gshisen/distinfo (props changed) head/games/gtetrinet/distinfo (props changed) head/games/gti/distinfo (props changed) head/games/gtkatlantic/distinfo (props changed) head/games/gtkballs/distinfo (props changed) head/games/gtkevemon/distinfo (props changed) head/games/gtklife/distinfo (props changed) head/games/gtkpool/distinfo (props changed) head/games/gtkradiant/distinfo (props changed) head/games/gturing/distinfo (props changed) head/games/gunfudeadlands/distinfo (props changed) head/games/gweled/distinfo (props changed) head/games/hangman/distinfo (props changed) head/games/hedgewars/distinfo (props changed) head/games/help_hannahs_horse/distinfo (props changed) head/games/heretic/distinfo (props changed) head/games/heroes/distinfo (props changed) head/games/hex-a-hop/distinfo (props changed) head/games/hex/distinfo (props changed) head/games/hexalate/distinfo (props changed) head/games/hexglass/distinfo (props changed) head/games/hexxagon/distinfo (props changed) head/games/highmoon/distinfo (props changed) head/games/hinversi/distinfo (props changed) head/games/hlstats/distinfo (props changed) head/games/hlstatsx/distinfo (props changed) head/games/hohlin/distinfo (props changed) head/games/ifm/distinfo (props changed) head/games/imaze/distinfo (props changed) head/games/inform/distinfo (props changed) head/games/inform7/distinfo (props changed) head/games/instead/distinfo (props changed) head/games/interlogic/distinfo (props changed) head/games/ioquake3/distinfo (props changed) head/games/irrlamb/distinfo (props changed) head/games/ishido/distinfo (props changed) head/games/ivan/distinfo (props changed) head/games/jag/distinfo (props changed) head/games/jaggedalliance2/distinfo (props changed) head/games/java-games-suite/distinfo (props changed) head/games/jchessboard/distinfo (props changed) head/games/jfk/distinfo (props changed) head/games/jfsw/distinfo (props changed) head/games/jigsaw/distinfo (props changed) head/games/jigzo/distinfo (props changed) head/games/jin/distinfo (props changed) head/games/jinput/distinfo (props changed) head/games/joequake/distinfo (props changed) head/games/jools/distinfo (props changed) head/games/jtans/distinfo (props changed) head/games/jutils/distinfo (props changed) head/games/jvgs/distinfo (props changed) head/games/jzip/distinfo (props changed) head/games/kajaani-kombat/distinfo (props changed) head/games/kanatest/distinfo (props changed) head/games/kardsgt/distinfo (props changed) head/games/kartofel/distinfo (props changed) head/games/kcheckers/distinfo (props changed) head/games/kevedit/distinfo (props changed) head/games/kiki/distinfo (props changed) head/games/klavaro/distinfo (props changed) head/games/klondike/distinfo (props changed) head/games/kmancala/distinfo (props changed) head/games/knights-kde4/distinfo (props changed) head/games/kobodeluxe/distinfo (props changed) head/games/krank/distinfo (props changed) head/games/kuklomenos/distinfo (props changed) head/games/ladder/distinfo (props changed) head/games/lander/distinfo (props changed) head/games/lapispuzzle/distinfo (props changed) head/games/latrine/distinfo (props changed) head/games/lbreakout/distinfo (props changed) head/games/lbreakout2/distinfo (props changed) head/games/ldmud/distinfo (props changed) head/games/legends/distinfo (props changed) head/games/legesmotus/distinfo (props changed) head/games/lexter/distinfo (props changed) head/games/lgeneral/distinfo (props changed) head/games/lianliankan/distinfo (props changed) head/games/libdungeonmaker/distinfo (props changed) head/games/libggz/distinfo (props changed) head/games/libmaitretarot/distinfo (props changed) head/games/libmt_client/distinfo (props changed) head/games/libshhcards/distinfo (props changed) head/games/lincity-ng/distinfo (props changed) head/games/lincity/distinfo (props changed) head/games/linux-americasarmy/distinfo (props changed) head/games/linux-candycruncher-demo/distinfo (props changed) head/games/linux-coldwar-demo/distinfo (props changed) head/games/linux-darwinia-demo/distinfo (props changed) head/games/linux-defcon/distinfo (props changed) head/games/linux-doom3-demo/distinfo (props changed) head/games/linux-doom3/distinfo (props changed) head/games/linux-enemyterritory-etpro/distinfo (props changed) head/games/linux-enemyterritory-jaymod-21/distinfo (props changed) head/games/linux-enemyterritory-jaymod/distinfo (props changed) head/games/linux-enemyterritory-omni-bot-0660/distinfo (props changed) head/games/linux-enemyterritory-omni-bot/distinfo (props changed) head/games/linux-enemyterritory-shrub/distinfo (props changed) head/games/linux-enemyterritory-tce/distinfo (props changed) head/games/linux-enemyterritory/distinfo (props changed) head/games/linux-etqw-demo-server/distinfo (props changed) head/games/linux-etqw-server/distinfo (props changed) head/games/linux-gorky17-demo/distinfo (props changed) head/games/linux-hdb-demo/distinfo (props changed) head/games/linux-majesty-demo/distinfo (props changed) head/games/linux-nerogame/distinfo (props changed) head/games/linux-ningpo-demo/distinfo (props changed) head/games/linux-nwnclient/distinfo (props changed) head/games/linux-nwserver/distinfo (props changed) head/games/linux-quake3-demo/distinfo (props changed) head/games/linux-quake3/distinfo (props changed) head/games/linux-quake4-demo/distinfo (props changed) head/games/linux-quake4/distinfo (props changed) head/games/linux-rtcw/distinfo (props changed) head/games/linux-savage/distinfo (props changed) head/games/linux-skulltag/distinfo (props changed) head/games/linux-sof/distinfo (props changed) head/games/linux-spheresofchaos-demo/distinfo (props changed) head/games/linux-ssamtfe/distinfo (props changed) head/games/linux-ssamtse/distinfo (props changed) head/games/linux-steam/distinfo (props changed) head/games/linux-unrealgold/distinfo (props changed) head/games/linux-uplink-demo/distinfo (props changed) head/games/linux-ut/distinfo (props changed) head/games/linux-ut2003-demo/distinfo (props changed) head/games/linux-ut2004-demo/distinfo (props changed) head/games/linux-virtual-jay-peak/distinfo (props changed) head/games/linux-warsow/distinfo (props changed) head/games/linux-worldofgoo-demo/distinfo (props changed) head/games/linwarrior/distinfo (props changed) head/games/liquidwar/distinfo (props changed) head/games/lm-solve/distinfo (props changed) head/games/lmpc/distinfo (props changed) head/games/lolcat/distinfo (props changed) head/games/lostfeathers/distinfo (props changed) head/games/lpairs/distinfo (props changed) head/games/ltris/distinfo (props changed) head/games/lucidlife/distinfo (props changed) head/games/lugaru/distinfo (props changed) head/games/luola/distinfo (props changed) head/games/macopix/distinfo (props changed) head/games/madbomber/distinfo (props changed) head/games/magiccube4d/distinfo (props changed) head/games/magicor/distinfo (props changed) head/games/maitretarot/distinfo (props changed) head/games/mangband/distinfo (props changed) head/games/mangos/distinfo (props changed) head/games/marsnomercy/distinfo (props changed) head/games/masterserver/distinfo (props changed) head/games/maxr/distinfo (props changed) head/games/meandmyshadow/distinfo (props changed) head/games/megaglest-data/distinfo (props changed) head/games/megaglest/distinfo (props changed) head/games/memonix/distinfo (props changed) head/games/meqcc/distinfo (props changed) head/games/meritous/distinfo (props changed) head/games/mindfocus/distinfo (props changed) head/games/mindguard/distinfo (props changed) head/games/minetest/distinfo (props changed) head/games/mirrormagic/distinfo (props changed) head/games/miscom/distinfo (props changed) head/games/mkgichessclub/distinfo (props changed) head/games/mkhexgrid/distinfo (props changed) head/games/monkeybubble/distinfo (props changed) head/games/monster-masher/distinfo (props changed) head/games/monsterz/distinfo (props changed) head/games/moon-buggy/distinfo (props changed) head/games/moonlander/distinfo (props changed) head/games/moria/distinfo (props changed) head/games/motogt/distinfo (props changed) head/games/mt_dolphin_ia/distinfo (props changed) head/games/mt_gtk_client/distinfo (props changed) head/games/mtaserver/distinfo (props changed) head/games/mudmagic/distinfo (props changed) head/games/mvdsv/distinfo (props changed) head/games/nInvaders/distinfo (props changed) head/games/nadar/distinfo (props changed) head/games/naev-data/distinfo (props changed) head/games/naev/distinfo (props changed) head/games/nazghul/distinfo (props changed) head/games/nehquake/distinfo (props changed) head/games/nethack32/distinfo (props changed) head/games/nethack33/distinfo (props changed) head/games/nethack34/distinfo (props changed) head/games/netherearth/distinfo (props changed) head/games/netpanzer/distinfo (props changed) head/games/netradiant/distinfo (props changed) head/games/netrek-BRMH-bin/distinfo (props changed) head/games/netrek-client-cow/distinfo (props changed) head/games/netris/distinfo (props changed) head/games/netspades/distinfo (props changed) head/games/nettoe/distinfo (props changed) head/games/neverball/distinfo (props changed) head/games/newvox/distinfo (props changed) head/games/nextgo/distinfo (props changed) head/games/nexuiz/distinfo (props changed) head/games/nibbles/distinfo (props changed) head/games/nighthawk/distinfo (props changed) head/games/nimuh/distinfo (props changed) head/games/ninix-aya/distinfo (props changed) head/games/njam/distinfo (props changed) head/games/noegnud-addons/distinfo (props changed) head/games/noegnud-data/distinfo (props changed) head/games/noegnud-littlehack/distinfo (props changed) head/games/noegnud-nethack-deet/distinfo (props changed) head/games/noegnud-nethack/distinfo (props changed) head/games/noegnud-slashem/distinfo (props changed) head/games/nonsense/distinfo (props changed) head/games/npush/distinfo (props changed) head/games/nsnake/distinfo (props changed) head/games/numptyphysics-npcomplete/distinfo (props changed) head/games/numptyphysics/distinfo (props changed) head/games/nwndata/distinfo (props changed) head/games/oldrunner/distinfo (props changed) head/games/omega/distinfo (props changed) head/games/oneisenough/distinfo (props changed) head/games/oneko-sakura/distinfo (props changed) head/games/oneko/distinfo (props changed) head/games/oolite/distinfo (props changed) head/games/oonsoo/distinfo (props changed) head/games/openalchemist/distinfo (props changed) head/games/openarena-data/distinfo (props changed) head/games/openarena-oax/distinfo (props changed) head/games/openarena/distinfo (props changed) head/games/openastromenace/distinfo (props changed) head/games/opencity/distinfo (props changed) head/games/openglad/distinfo (props changed) head/games/openlierox/distinfo (props changed) head/games/openmortal/distinfo (props changed) head/games/openmsx/distinfo (props changed) head/games/openpref/distinfo (props changed) head/games/opensfx/distinfo (props changed) head/games/openssn/distinfo (props changed) head/games/openttd/distinfo (props changed) head/games/openyahtzee/distinfo (props changed) head/games/optimax/distinfo (props changed) head/games/orbital_eunuchs_sniper/distinfo (props changed) head/games/osgg/distinfo (props changed) head/games/outerspace/distinfo (props changed) head/games/p5-Acme-GuessNumber/distinfo (props changed) head/games/p5-Algorithm-Pair-Best/distinfo (props changed) head/games/p5-Algorithm-Pair-Best2/distinfo (props changed) head/games/p5-Algorithm-Pair-Swiss/distinfo (props changed) head/games/p5-Baseball-Sabermetrics/distinfo (props changed) head/games/p5-Games-Alak/distinfo (props changed) head/games/p5-Games-AlphaBeta/distinfo (props changed) head/games/p5-Games-Bingo-Bot/distinfo (props changed) head/games/p5-Games-Bingo-Print/distinfo (props changed) head/games/p5-Games-Bingo/distinfo (props changed) head/games/p5-Games-Dice/distinfo (props changed) head/games/p5-Games-GuessWord/distinfo (props changed) head/games/p5-Games-Tournament-RoundRobin/distinfo (props changed) head/games/pachi/distinfo (props changed) head/games/paintown/distinfo (props changed) head/games/pangzero/distinfo (props changed) head/games/passage/distinfo (props changed) head/games/pathological/distinfo (props changed) head/games/pcgen/distinfo (props changed) head/games/pear-Games_Chess/distinfo (props changed) head/games/peg-e/distinfo (props changed) head/games/pengpong/distinfo (props changed) head/games/penguin-command/distinfo (props changed) head/games/pengupop/distinfo (props changed) head/games/phalanx/distinfo (props changed) head/games/phlipple/distinfo (props changed) head/games/pinball/distinfo (props changed) head/games/pink-pony/distinfo (props changed) head/games/pioneers/distinfo (props changed) head/games/pipenightdreams/distinfo (props changed) head/games/pipepanic/distinfo (props changed) head/games/pipewalker/distinfo (props changed) head/games/plee-the-bear/distinfo (props changed) head/games/plonx/distinfo (props changed) head/games/plutocracy/distinfo (props changed) head/games/pmars-sdl/distinfo (props changed) head/games/pmars/distinfo (props changed) head/games/poker-engine/distinfo (props changed) head/games/poker-eval/distinfo (props changed) head/games/polyglot/distinfo (props changed) head/games/polypuzzle/distinfo (props changed) head/games/pongix/distinfo (props changed) head/games/popstar/distinfo (props changed) head/games/pouetchess/distinfo (props changed) head/games/powder/distinfo (props changed) head/games/powermanga/distinfo (props changed) head/games/ppracer/distinfo (props changed) head/games/prboom/distinfo (props changed) head/games/primateplunge/distinfo (props changed) head/games/ptkei/distinfo (props changed) head/games/ptools/distinfo (props changed) head/games/pushover/distinfo (props changed) head/games/pvpgn/distinfo (props changed) head/games/py-mnemosyne/distinfo (props changed) head/games/py-poker-eval/distinfo (props changed) head/games/py-pychess/distinfo (props changed) head/games/py-sgflib/distinfo (props changed) head/games/py-sgfsummary/distinfo (props changed) head/games/py-ski/distinfo (props changed) head/games/pyawale/distinfo (props changed) head/games/pyching/distinfo (props changed) head/games/pydance/distinfo (props changed) head/games/pykawari/distinfo (props changed) head/games/pysol-cardsets/distinfo (props changed) head/games/pysol-music/distinfo (props changed) head/games/pysol/distinfo (props changed) head/games/pysolfc/distinfo (props changed) head/games/pyspacewar/distinfo (props changed) head/games/pysycache-lang/distinfo (props changed) head/games/pysycache-themes/distinfo (props changed) head/games/pysycache/distinfo (props changed) head/games/pythonchess/distinfo (props changed) head/games/pythonsudoku/distinfo (props changed) head/games/pytowerdefense/distinfo (props changed) head/games/q2p/distinfo (props changed) head/games/q2pro/distinfo (props changed) head/games/q3cellshading/distinfo (props changed) head/games/qcc/distinfo (props changed) head/games/qccx/distinfo (props changed) head/games/qix/distinfo (props changed) head/games/qmars/distinfo (props changed) head/games/qnetwalk/distinfo (props changed) head/games/qonk/distinfo (props changed) head/games/qstat/distinfo (props changed) head/games/qtads/distinfo (props changed) head/games/qtv/distinfo (props changed) head/games/quackle/distinfo (props changed) head/games/quadra/distinfo (props changed) head/games/quake-data/distinfo (props changed) head/games/quake-dpmod/distinfo (props changed) head/games/quake-extras/distinfo (props changed) head/games/quake-reaper/distinfo (props changed) head/games/quake-source/distinfo (props changed) head/games/quake2-3zb2/distinfo (props changed) head/games/quake2-ctf/distinfo (props changed) head/games/quake2-data/distinfo (props changed) head/games/quake2-extras/distinfo (props changed) head/games/quake2-lights/distinfo (props changed) head/games/quake2-matrix/distinfo (props changed) head/games/quake2-psychomod/distinfo (props changed) head/games/quake2-relay/distinfo (props changed) head/games/quake2-rogue/distinfo (props changed) head/games/quake2-source/distinfo (props changed) head/games/quake2-xatrix/distinfo (props changed) head/games/quake2-zaero/distinfo (props changed) head/games/quake2lnx/distinfo (props changed) head/games/quake2max/distinfo (props changed) head/games/quake3-data/distinfo (props changed) head/games/quake3-excessive/distinfo (props changed) head/games/quake3-freezetag/distinfo (props changed) head/games/quake3-osp/distinfo (props changed) head/games/quake3-ra3/distinfo (props changed) head/games/quake3-ut/distinfo (props changed) head/games/quake3-wfa/distinfo (props changed) head/games/quake3/distinfo (props changed) head/games/quakeforge/distinfo (props changed) head/games/quantumminigolf/distinfo (props changed) head/games/quaqut/distinfo (props changed) head/games/qudos/distinfo (props changed) head/games/quetoo/distinfo (props changed) head/games/quit/distinfo (props changed) head/games/r1q2/distinfo (props changed) head/games/railroad-rampage/distinfo (props changed) head/games/redeclipse/distinfo (props changed) head/games/reminiscence/distinfo (props changed) head/games/residualvm/distinfo (props changed) head/games/rezerwar/distinfo (props changed) head/games/rfksay/distinfo (props changed) head/games/rftg/distinfo (props changed) head/games/ri-li/distinfo (props changed) head/games/robotfindskitten/distinfo (props changed) head/games/rottdc/distinfo (props changed) head/games/rt2-demo/distinfo (props changed) head/games/rtb/distinfo (props changed) head/games/rubix/distinfo (props changed) head/games/sampsvr/distinfo (props changed) head/games/sarien/distinfo (props changed) head/games/sauerbraten/distinfo (props changed) head/games/scare/distinfo (props changed) head/games/schiff/distinfo (props changed) head/games/schwarzweiss/distinfo (props changed) head/games/scid/distinfo (props changed) head/games/scorched3d/distinfo (props changed) head/games/scourge-data/distinfo (props changed) head/games/scourge/distinfo (props changed) head/games/scramble/distinfo (props changed) head/games/sdb/distinfo (props changed) head/games/sdl-ball/distinfo (props changed) head/games/sdlCC/distinfo (props changed) head/games/sdlquake2/distinfo (props changed) head/games/sdlroids/distinfo (props changed) head/games/sdlsand/distinfo (props changed) head/games/sea-defender/distinfo (props changed) head/games/seabattle/distinfo (props changed) head/games/seahaven/distinfo (props changed) head/games/searchandrescue-data/distinfo (props changed) head/games/searchandrescue/distinfo (props changed) head/games/secretmaryochronicles-music/distinfo (props changed) head/games/secretmaryochronicles/distinfo (props changed) head/games/senken/distinfo (props changed) head/games/sex/distinfo (props changed) head/games/shaaft/distinfo (props changed) head/games/shootingstar/distinfo (props changed) head/games/simplevaders/distinfo (props changed) head/games/simsu/distinfo (props changed) head/games/sjeng/distinfo (props changed) head/games/sl/distinfo (props changed) head/games/slashem-tty/distinfo (props changed) head/games/slune/distinfo (props changed) head/games/smiley/distinfo (props changed) head/games/sokoban/distinfo (props changed) head/games/sol/distinfo (props changed) head/games/solarconquest/distinfo (props changed) head/games/solarwolf/distinfo (props changed) head/games/sopwith/distinfo (props changed) head/games/spacejunk/distinfo (props changed) head/games/speak/distinfo (props changed) head/games/species/distinfo (props changed) head/games/spellathon/distinfo (props changed) head/games/spellcast/distinfo (props changed) head/games/speyes/distinfo (props changed) head/games/spicetrade/distinfo (props changed) head/games/spider/distinfo (props changed) head/games/spring/distinfo (props changed) head/games/springlobby/distinfo (props changed) head/games/starfighter/distinfo (props changed) head/games/starlanes/distinfo (props changed) head/games/steelstorm/distinfo (props changed) head/games/stormbaancoureur/distinfo (props changed) head/games/stransball2/distinfo (props changed) head/games/sudoku-sensei/distinfo (props changed) head/games/sudoku/distinfo (props changed) head/games/sudoku_solver/distinfo (props changed) head/games/sudsol/distinfo (props changed) head/games/super_mario_bros_python/distinfo (props changed) head/games/supertux/distinfo (props changed) head/games/supertuxkart/distinfo (props changed) head/games/sxsame/distinfo (props changed) head/games/tads/distinfo (props changed) head/games/taipan/distinfo (props changed) head/games/tanglet/distinfo (props changed) head/games/tank/distinfo (props changed) head/games/tbclock/distinfo (props changed) head/games/tbe/distinfo (props changed) head/games/tecnoballz/distinfo (props changed) head/games/teeworlds/distinfo (props changed) head/games/teg/distinfo (props changed) head/games/tenebrae/distinfo (props changed) head/games/tetrinet-x/distinfo (props changed) head/games/tetrinet/distinfo (props changed) head/games/tetrons/distinfo (props changed) head/games/tetzle/distinfo (props changed) head/games/textmaze/distinfo (props changed) head/games/thegrind/distinfo (props changed) head/games/thevalley/distinfo (props changed) head/games/thudboard/distinfo (props changed) head/games/tileworld/distinfo (props changed) head/games/timeseal/distinfo (props changed) head/games/tinymux/distinfo (props changed) head/games/tkmoo/distinfo (props changed) head/games/tksol/distinfo (props changed) head/games/tomatoes/distinfo (props changed) head/games/tong/distinfo (props changed) head/games/toppler/distinfo (props changed) head/games/tornado/distinfo (props changed) head/games/torrent/distinfo (props changed) head/games/toycars/distinfo (props changed) head/games/trackballs/distinfo (props changed) head/games/tractorgen/distinfo (props changed) head/games/traindirector/distinfo (props changed) head/games/traingame/distinfo (props changed) head/games/tremulous/distinfo (props changed) head/games/trimines/distinfo (props changed) head/games/trojka/distinfo (props changed) head/games/trophy/distinfo (props changed) head/games/tsito/distinfo (props changed) head/games/tt/distinfo (props changed) head/games/ttraffic/distinfo (props changed) head/games/tux-aqfh/distinfo (props changed) head/games/tuxfighter/distinfo (props changed) head/games/tuxkart/distinfo (props changed) head/games/tuxmath/distinfo (props changed) head/games/tuxpaint-config/distinfo (props changed) head/games/tuxpaint-fonts/distinfo (props changed) head/games/tuxpaint-stamps/distinfo (props changed) head/games/tuxpaint/distinfo (props changed) head/games/tuxpuck/distinfo (props changed) head/games/tuxracer/distinfo (props changed) head/games/tuxtype/distinfo (props changed) head/games/twind/distinfo (props changed) head/games/twitch/distinfo (props changed) head/games/tycho/distinfo (props changed) head/games/typespeed/distinfo (props changed) head/games/tyrquake/distinfo (props changed) head/games/ufoai-data/distinfo (props changed) head/games/ufoai/distinfo (props changed) head/games/uhexen/distinfo (props changed) head/games/uhexen2-extras/distinfo (props changed) head/games/uhexen2/distinfo (props changed) head/games/umark/distinfo (props changed) head/games/unnethack/distinfo (props changed) head/games/untahris/distinfo (props changed) head/games/urbanterror-data/distinfo (props changed) head/games/utserver/distinfo (props changed) head/games/vavoom-extras/distinfo (props changed) head/games/vavoom/distinfo (props changed) head/games/vdrift-data/distinfo (props changed) head/games/vdrift/distinfo (props changed) head/games/vectoroids/distinfo (props changed) head/games/vegastrike-data/distinfo (props changed) head/games/vegastrike/distinfo (props changed) head/games/violetland/distinfo (props changed) head/games/viruskiller/distinfo (props changed) head/games/vitetris/distinfo (props changed) head/games/vodovod/distinfo (props changed) head/games/volleyball/distinfo (props changed) head/games/vor/distinfo (props changed) head/games/vultures-eye/distinfo (props changed) head/games/wanderer/distinfo (props changed) head/games/wargus/distinfo (props changed) head/games/warmux/distinfo (props changed) head/games/warsow-data/distinfo (props changed) head/games/warsow/distinfo (props changed) head/games/warzone2100/distinfo (props changed) head/games/widelands/distinfo (props changed) head/games/wizznic/distinfo (props changed) head/games/wmeyes/distinfo (props changed) head/games/wmfortune/distinfo (props changed) head/games/wmminichess/distinfo (props changed) head/games/wmqstat/distinfo (props changed) head/games/wmquake/distinfo (props changed) head/games/wmshuffle/distinfo (props changed) head/games/wmtictactoe/distinfo (props changed) head/games/wolfpack/distinfo (props changed) head/games/wop/distinfo (props changed) head/games/wordplay/distinfo (props changed) head/games/worldofpadman/distinfo (props changed) head/games/xarchon/distinfo (props changed) head/games/xasteroids/distinfo (props changed) head/games/xataxx/distinfo (props changed) head/games/xbat/distinfo (props changed) head/games/xbattle/distinfo (props changed) head/games/xbill/distinfo (props changed) head/games/xbl/distinfo (props changed) head/games/xblackjack/distinfo (props changed) head/games/xblast/distinfo (props changed) head/games/xblood/distinfo (props changed) head/games/xboard/distinfo (props changed) head/games/xboing/distinfo (props changed) head/games/xbomb/distinfo (props changed) head/games/xbomber/distinfo (props changed) head/games/xbubble/distinfo (props changed) head/games/xchadance/distinfo (props changed) head/games/xcheckers/distinfo (props changed) head/games/xchomp/distinfo (props changed) head/games/xcowsay/distinfo (props changed) head/games/xcubes/distinfo (props changed) head/games/xdeblock/distinfo (props changed) head/games/xdemineur/distinfo (props changed) head/games/xdesktopwaves/distinfo (props changed) head/games/xdigger/distinfo (props changed) head/games/xdino/distinfo (props changed) head/games/xevil/distinfo (props changed) head/games/xeyesplus/distinfo (props changed) head/games/xfireworks/distinfo (props changed) head/games/xflame/distinfo (props changed) head/games/xfrisk/distinfo (props changed) head/games/xgalaga-sdl/distinfo (props changed) head/games/xgalaga/distinfo (props changed) head/games/xglk/distinfo (props changed) head/games/xgospel/distinfo (props changed) head/games/xhexagons/distinfo (props changed) head/games/xhime/distinfo (props changed) head/games/xinfocom/distinfo (props changed) head/games/xinvaders/distinfo (props changed) head/games/xinvaders3d/distinfo (props changed) head/games/xisola/distinfo (props changed) head/games/xjewel/distinfo (props changed) head/games/xjig/distinfo (props changed) head/games/xjump/distinfo (props changed) head/games/xjumpx/distinfo (props changed) head/games/xkoules/distinfo (props changed) head/games/xlaby/distinfo (props changed) head/games/xlogical/distinfo (props changed) head/games/xmahjongg/distinfo (props changed) head/games/xmastermind/distinfo (props changed) head/games/xmball/distinfo (props changed) head/games/xmemory/distinfo (props changed) head/games/xmille/distinfo (props changed) head/games/xmine/distinfo (props changed) head/games/xminehunter/distinfo (props changed) head/games/xmines/distinfo (props changed) head/games/xminesweep/distinfo (props changed) head/games/xmlink/distinfo (props changed) head/games/xmoto/distinfo (props changed) head/games/xmris/distinfo (props changed) head/games/xmulti/distinfo (props changed) head/games/xneko/distinfo (props changed) head/games/xoct/distinfo (props changed) head/games/xoids/distinfo (props changed) head/games/xoj/distinfo (props changed) head/games/xonix/distinfo (props changed) head/games/xonotic/distinfo (props changed) head/games/xorgramana/distinfo (props changed) head/games/xosmulti/distinfo (props changed) head/games/xpacman/distinfo (props changed) head/games/xpanex/distinfo (props changed) head/games/xpat2/distinfo (props changed) head/games/xpenguins/distinfo (props changed) head/games/xpilot-ng-server/distinfo (props changed) head/games/xpilot/distinfo (props changed) head/games/xpipeman/distinfo (props changed) head/games/xpired/distinfo (props changed) head/games/xpuyopuyo/distinfo (props changed) head/games/xpuzzletama/distinfo (props changed) head/games/xpyraminx/distinfo (props changed) head/games/xqf/distinfo (props changed) head/games/xrally/distinfo (props changed) head/games/xrick/distinfo (props changed) head/games/xrisk/distinfo (props changed) head/games/xroach/distinfo (props changed) head/games/xroads/distinfo (props changed) head/games/xrobots/distinfo (props changed) head/games/xrot/distinfo (props changed) head/games/xrubik/distinfo (props changed) head/games/xsc/distinfo (props changed) head/games/xscavenger/distinfo (props changed) head/games/xscorch/distinfo (props changed) head/games/xscrabble/distinfo (props changed) head/games/xshisen/distinfo (props changed) head/games/xskat/distinfo (props changed) head/games/xskewb/distinfo (props changed) head/games/xsokoban/distinfo (props changed) head/games/xsoldier/distinfo (props changed) head/games/xspacewarp/distinfo (props changed) head/games/xspringies/distinfo (props changed) head/games/xteddy/distinfo (props changed) head/games/xtet42/distinfo (props changed) head/games/xtic/distinfo (props changed) head/games/xtriangles/distinfo (props changed) head/games/xtris/distinfo (props changed) head/games/xtrojka/distinfo (props changed) head/games/xtron/distinfo (props changed) head/games/xtruco/distinfo (props changed) head/games/xtux/distinfo (props changed) head/games/xvier/distinfo (props changed) head/games/xvmahjongg/distinfo (props changed) head/games/xvmines/distinfo (props changed) head/games/xwelltris/distinfo (props changed) head/games/xwordpy/distinfo (props changed) head/games/xworm/distinfo (props changed) head/games/xzip/distinfo (props changed) head/games/yadex/distinfo (props changed) head/games/yahtzee/distinfo (props changed) head/games/yamsweeper/distinfo (props changed) head/games/zangband/distinfo (props changed) head/games/zatacka/distinfo (props changed) head/games/zaz/distinfo (props changed) head/games/znibbles/distinfo (props changed) head/games/zoom/distinfo (props changed) head/games/ztrack/distinfo (props changed) head/german/BBBike/distinfo (props changed) head/german/acroread8/distinfo (props changed) head/german/acroread9/distinfo (props changed) head/german/alt-aspell/distinfo (props changed) head/german/aspell/distinfo (props changed) head/german/bsdforen-firefox-searchplugin/distinfo (props changed) head/german/bsdgroup-firefox-searchplugin/distinfo (props changed) head/german/bsdpaste/distinfo (props changed) head/german/bugzilla40/distinfo (props changed) head/german/dict/distinfo (props changed) head/german/ding/distinfo (props changed) head/german/dtaus/distinfo (props changed) head/german/eric4/distinfo (props changed) head/german/hyphen/distinfo (props changed) head/german/jdictionary-eng-ger/distinfo (props changed) head/german/jdictionary-ger-hun/distinfo (props changed) head/german/libreoffice/distinfo (props changed) head/german/manpages/distinfo (props changed) head/german/pecl-konto_check/distinfo (props changed) head/german/phone/distinfo (props changed) head/german/schwobifyer/distinfo (props changed) head/german/selfhtml/distinfo (props changed) head/german/steak/distinfo (props changed) head/german/tipp10/distinfo (props changed) head/german/trytond28_account_de_skr03/distinfo (props changed) head/german/trytond_account_de_skr03/distinfo (props changed) head/german/unix-connect/distinfo (props changed) head/german/vtiger/distinfo (props changed) head/graphics/4va/distinfo (props changed) head/graphics/Cgraph/distinfo (props changed) head/graphics/Coin/distinfo (props changed) head/graphics/EZWGL/distinfo (props changed) head/graphics/GraphicsMagick/distinfo (props changed) head/graphics/GraphicsMagick12/distinfo (props changed) head/graphics/Hermes/distinfo (props changed) head/graphics/IPA/distinfo (props changed) head/graphics/O2-tools/distinfo (props changed) head/graphics/R-cran-RColorBrewer/distinfo (props changed) head/graphics/R-cran-colorspace/distinfo (props changed) head/graphics/R-cran-diagram/distinfo (props changed) head/graphics/R-cran-dichromat/distinfo (props changed) head/graphics/R-cran-ggplot2/distinfo (props changed) head/graphics/R-cran-munsell/distinfo (props changed) head/graphics/R-cran-pixmap/distinfo (props changed) head/graphics/R-cran-png/distinfo (props changed) head/graphics/R-cran-rgdal/distinfo (props changed) head/graphics/R-cran-rtiff/distinfo (props changed) head/graphics/R-cran-scales/distinfo (props changed) head/graphics/R-cran-shape/distinfo (props changed) head/graphics/SciPlot/distinfo (props changed) head/graphics/a2png/distinfo (props changed) head/graphics/aalib/distinfo (props changed) head/graphics/acidwarp/distinfo (props changed) head/graphics/aeskulap/distinfo (props changed) head/graphics/agave/distinfo (props changed) head/graphics/agg/distinfo (props changed) head/graphics/alpng/distinfo (props changed) head/graphics/ampasACES-container/distinfo (props changed) head/graphics/animorph/distinfo (props changed) head/graphics/aolserver-nsgd/distinfo (props changed) head/graphics/apvlv/distinfo (props changed) head/graphics/aqsis/distinfo (props changed) head/graphics/asciio/distinfo (props changed) head/graphics/autopano-sift-c/distinfo (props changed) head/graphics/autoq3d/distinfo (props changed) head/graphics/autotrace/distinfo (props changed) head/graphics/aview/distinfo (props changed) head/graphics/ayam/distinfo (props changed) head/graphics/backfract/distinfo (props changed) head/graphics/barcode/distinfo (props changed) head/graphics/bbrb/distinfo (props changed) head/graphics/blender-doc/distinfo (props changed) head/graphics/bmp-rootvis/distinfo (props changed) head/graphics/bmp2html/distinfo (props changed) head/graphics/box/distinfo (props changed) head/graphics/boxer/distinfo (props changed) head/graphics/bugle/distinfo (props changed) head/graphics/c-a-i-r/distinfo (props changed) head/graphics/cadubi/distinfo (props changed) head/graphics/cairo-java/distinfo (props changed) head/graphics/cairo/distinfo (props changed) head/graphics/cairomm/distinfo (props changed) head/graphics/cal3d-devel/distinfo (props changed) head/graphics/cal3d/distinfo (props changed) head/graphics/camediaplay/distinfo (props changed) head/graphics/camera/distinfo (props changed) head/graphics/camerakit/distinfo (props changed) head/graphics/cbview/distinfo (props changed) head/graphics/cbviewer/distinfo (props changed) head/graphics/cenon/distinfo (props changed) head/graphics/cfdg/distinfo (props changed) head/graphics/chbg/distinfo (props changed) head/graphics/claraocr/distinfo (props changed) head/graphics/clutter-box2d/distinfo (props changed) head/graphics/clutter-gtk/distinfo (props changed) head/graphics/clutter/distinfo (props changed) head/graphics/comical/distinfo (props changed) head/graphics/comix/distinfo (props changed) head/graphics/commons-utilities/distinfo (props changed) head/graphics/compupic/distinfo (props changed) head/graphics/corona/distinfo (props changed) head/graphics/cosmoplayer/distinfo (props changed) head/graphics/crw/distinfo (props changed) head/graphics/cthumb/distinfo (props changed) head/graphics/cuneiform/distinfo (props changed) head/graphics/curator/distinfo (props changed) head/graphics/cuttlefish/distinfo (props changed) head/graphics/danpei/distinfo (props changed) head/graphics/darknock/distinfo (props changed) head/graphics/darktable/distinfo (props changed) head/graphics/dataplot/distinfo (props changed) head/graphics/dc20ctrl/distinfo (props changed) head/graphics/dc20pack/distinfo (props changed) head/graphics/deegree-csw/distinfo (props changed) head/graphics/deegree-igeoportal/distinfo (props changed) head/graphics/deegree-wcs/distinfo (props changed) head/graphics/deegree-wfs/distinfo (props changed) head/graphics/deegree-wms/distinfo (props changed) head/graphics/deegree-wps/distinfo (props changed) head/graphics/deegree-wpvs/distinfo (props changed) head/graphics/delaboratory/distinfo (props changed) head/graphics/devil/distinfo (props changed) head/graphics/diacanvas2/distinfo (props changed) head/graphics/ditaa/distinfo (props changed) head/graphics/djview4/distinfo (props changed) head/graphics/djvulibre/distinfo (props changed) head/graphics/dmtx-utils/distinfo (props changed) head/graphics/driconf/distinfo (props changed) head/graphics/duhdraw/distinfo (props changed) head/graphics/dynamechs/distinfo (props changed) head/graphics/easypaint/distinfo (props changed) head/graphics/ecore-evas/distinfo (props changed) head/graphics/ecore-sdl/distinfo (props changed) head/graphics/edje/distinfo (props changed) head/graphics/edje_viewer/distinfo (props changed) head/graphics/electrix/distinfo (props changed) head/graphics/enblend/distinfo (props changed) head/graphics/enfle/distinfo (props changed) head/graphics/entangle/distinfo (props changed) head/graphics/eog-plugins/distinfo (props changed) head/graphics/eog/distinfo (props changed) head/graphics/epdfview/distinfo (props changed) head/graphics/epeg/distinfo (props changed) head/graphics/eps2png/distinfo (props changed) head/graphics/epstool/distinfo (props changed) head/graphics/eterm-bg/distinfo (props changed) head/graphics/ethumb/distinfo (props changed) head/graphics/evas-core/distinfo (props changed) head/graphics/evas-engine-buffer/distinfo (props changed) head/graphics/evas-engine-opengl/distinfo (props changed) head/graphics/evas-engine-sdl/distinfo (props changed) head/graphics/evas-engine-x11/distinfo (props changed) head/graphics/evas-loader-bmp/distinfo (props changed) head/graphics/evas-loader-eet/distinfo (props changed) head/graphics/evas-loader-generic/distinfo (props changed) head/graphics/evas-loader-gif/distinfo (props changed) head/graphics/evas-loader-ico/distinfo (props changed) head/graphics/evas-loader-jpeg/distinfo (props changed) head/graphics/evas-loader-pmaps/distinfo (props changed) head/graphics/evas-loader-png/distinfo (props changed) head/graphics/evas-loader-psd/distinfo (props changed) head/graphics/evas-loader-svg/distinfo (props changed) head/graphics/evas-loader-tga/distinfo (props changed) head/graphics/evas-loader-tiff/distinfo (props changed) head/graphics/evas-loader-wbmp/distinfo (props changed) head/graphics/evas-loader-xpm/distinfo (props changed) head/graphics/evas_generic_loaders-gst/distinfo (props changed) head/graphics/evas_generic_loaders-pdf/distinfo (props changed) head/graphics/evas_generic_loaders-ps/distinfo (props changed) head/graphics/evas_generic_loaders-raw/distinfo (props changed) head/graphics/evas_generic_loaders-xcf/distinfo (props changed) head/graphics/evince/distinfo (props changed) head/graphics/exiftags/distinfo (props changed) head/graphics/exiftran/distinfo (props changed) head/graphics/exiv2/distinfo (props changed) head/graphics/exrtools/distinfo (props changed) head/graphics/fbm/distinfo (props changed) head/graphics/feh/distinfo (props changed) head/graphics/ffff/distinfo (props changed) head/graphics/fig2sxd/distinfo (props changed) head/graphics/figurine/distinfo (props changed) head/graphics/flam3/distinfo (props changed) head/graphics/flasm/distinfo (props changed) head/graphics/fli2gif/distinfo (props changed) head/graphics/flphoto/distinfo (props changed) head/graphics/fly/distinfo (props changed) head/graphics/fortytwo/distinfo (props changed) head/graphics/fotofix/distinfo (props changed) head/graphics/fotoxx/distinfo (props changed) head/graphics/freeglut/distinfo (props changed) head/graphics/frei0r/distinfo (props changed) head/graphics/ftgl/distinfo (props changed) head/graphics/fujiplay/distinfo (props changed) head/graphics/fusefs-gphotofs/distinfo (props changed) head/graphics/fv/distinfo (props changed) head/graphics/fyre/distinfo (props changed) head/graphics/g2/distinfo (props changed) head/graphics/gauche-gl/distinfo (props changed) head/graphics/gcolor/distinfo (props changed) head/graphics/gcolor2/distinfo (props changed) head/graphics/gd/distinfo (props changed) head/graphics/gdal-grass/distinfo (props changed) head/graphics/gdchart/distinfo (props changed) head/graphics/gdk-pixbuf/distinfo (props changed) head/graphics/gdtclft/distinfo (props changed) head/graphics/geeqie/distinfo (props changed) head/graphics/geoapi/distinfo (props changed) head/graphics/geomorph/distinfo (props changed) head/graphics/geomview/distinfo (props changed) head/graphics/geoserver/distinfo (props changed) head/graphics/gexiv2/distinfo (props changed) head/graphics/giblib/distinfo (props changed) head/graphics/gif2png/distinfo (props changed) head/graphics/giflib/distinfo (props changed) head/graphics/gifmerge/distinfo (props changed) head/graphics/gifsicle/distinfo (props changed) head/graphics/giftool/distinfo (props changed) head/graphics/gimageview/distinfo (props changed) head/graphics/gimmage/distinfo (props changed) head/graphics/gimp-data-extras/distinfo (props changed) head/graphics/gimp-focusblur-plugin/distinfo (props changed) head/graphics/gimp-gap/distinfo (props changed) head/graphics/gimp-gmic-plugin/distinfo (props changed) head/graphics/gimp-lqr-plugin/distinfo (props changed) head/graphics/gimp-manual-html/distinfo (props changed) head/graphics/gimp-resynthesizer/distinfo (props changed) head/graphics/gimp-save-for-web/distinfo (props changed) head/graphics/gimpfx-foundry/distinfo (props changed) head/graphics/giram/distinfo (props changed) head/graphics/gkrellkam2/distinfo (props changed) head/graphics/gle-graphics/distinfo (props changed) head/graphics/gle/distinfo (props changed) head/graphics/glexcess/distinfo (props changed) head/graphics/glfw-devel/distinfo (props changed) head/graphics/glide3/distinfo (props changed) head/graphics/glitz/distinfo (props changed) head/graphics/gliv/distinfo (props changed) head/graphics/glosm/distinfo (props changed) head/graphics/glpng/distinfo (props changed) head/graphics/gltt/distinfo (props changed) head/graphics/gmt/distinfo (props changed) head/graphics/gnash/distinfo (props changed) head/graphics/gnofract4d/distinfo (props changed) head/graphics/gnustep-slideshow/distinfo (props changed) head/graphics/gnustep-slideshowkit/distinfo (props changed) head/graphics/gocr/distinfo (props changed) head/graphics/goocanvasmm/distinfo (props changed) head/graphics/goom/distinfo (props changed) head/graphics/gource/distinfo (props changed) head/graphics/gozer/distinfo (props changed) head/graphics/gpaint/distinfo (props changed) head/graphics/gplot/distinfo (props changed) head/graphics/gpsmanshp/distinfo (props changed) head/graphics/gqview/distinfo (props changed) head/graphics/gracula/distinfo (props changed) head/graphics/grads/distinfo (props changed) head/graphics/grafx2/distinfo (props changed) head/graphics/graphite2/distinfo (props changed) head/graphics/graphopt/distinfo (props changed) head/graphics/graphviz/distinfo (props changed) head/graphics/grx/distinfo (props changed) head/graphics/gscan2pdf/distinfo (props changed) head/graphics/gsculpt/distinfo (props changed) head/graphics/gsnapshot/distinfo (props changed) head/graphics/gstreamer-plugins-gl/distinfo (props changed) head/graphics/gthumb/distinfo (props changed) head/graphics/gtimelapse/distinfo (props changed) head/graphics/gtkdps/distinfo (props changed) head/graphics/gtkgraph/distinfo (props changed) head/graphics/gts/distinfo (props changed) head/graphics/guilib/distinfo (props changed) head/graphics/gx/distinfo (props changed) head/graphics/hobbes-icons-xpm/distinfo (props changed) head/graphics/hppsmtools/distinfo (props changed) head/graphics/hs-HGL/distinfo (props changed) head/graphics/hs-cairo/distinfo (props changed) head/graphics/hs-soegtk/distinfo (props changed) head/graphics/hs-svgcairo/distinfo (props changed) head/graphics/hsetroot/distinfo (props changed) head/graphics/hugin-devel/distinfo (props changed) head/graphics/hugin/distinfo (props changed) head/graphics/icat/distinfo (props changed) head/graphics/icc-profiles-basiccolor/distinfo (props changed) head/graphics/icc-profiles-openicc/distinfo (props changed) head/graphics/iccexamin/distinfo (props changed) head/graphics/iccxml/distinfo (props changed) head/graphics/icoconvert/distinfo (props changed) head/graphics/icon-slicer/distinfo (props changed) head/graphics/icontact/distinfo (props changed) head/graphics/ida/distinfo (props changed) head/graphics/iec16022/distinfo (props changed) head/graphics/iiview/distinfo (props changed) head/graphics/imageindex/distinfo (props changed) head/graphics/imagesort/distinfo (props changed) head/graphics/imageviewer/distinfo (props changed) head/graphics/imc/distinfo (props changed) head/graphics/imgtops/distinfo (props changed) head/graphics/imgv/distinfo (props changed) head/graphics/imlib/distinfo (props changed) head/graphics/imlib2/distinfo (props changed) head/graphics/imlib2_loaders/distinfo (props changed) head/graphics/import-pictures/distinfo (props changed) head/graphics/impressive/distinfo (props changed) head/graphics/intergif/distinfo (props changed) head/graphics/inventor/distinfo (props changed) head/graphics/iulib/distinfo (props changed) head/graphics/ivtools/distinfo (props changed) head/graphics/jasper/distinfo (props changed) head/graphics/jave6/distinfo (props changed) head/graphics/jbig2dec/distinfo (props changed) head/graphics/jbigkit/distinfo (props changed) head/graphics/jdraw/distinfo (props changed) head/graphics/jgraph/distinfo (props changed) head/graphics/jogamp-jogl/distinfo (props changed) head/graphics/jogl/distinfo (props changed) head/graphics/jp2a/distinfo (props changed) head/graphics/jpatch/distinfo (props changed) head/graphics/jpeg/distinfo (props changed) head/graphics/jpeg2ps/distinfo (props changed) head/graphics/jpeginfo/distinfo (props changed) head/graphics/jpegoptim/distinfo (props changed) head/graphics/jpg2pdf/distinfo (props changed) head/graphics/jpgraph2/distinfo (props changed) head/graphics/jpgtn/distinfo (props changed) head/graphics/jslice/distinfo (props changed) head/graphics/jumpgis-postgis/distinfo (props changed) head/graphics/jumpgis/distinfo (props changed) head/graphics/k3d/distinfo (props changed) head/graphics/kcoloredit/distinfo (props changed) head/graphics/kdc2tiff/distinfo (props changed) head/graphics/kgraphviewer/distinfo (props changed) head/graphics/kiconedit/distinfo (props changed) head/graphics/kix-kmod/distinfo (props changed) head/graphics/kludge3d/distinfo (props changed) head/graphics/kpovmodeler/distinfo (props changed) head/graphics/kudu/distinfo (props changed) head/graphics/kuickshow-kde4/distinfo (props changed) head/graphics/l2p/distinfo (props changed) head/graphics/laternamagica/distinfo (props changed) head/graphics/lcms-python/distinfo (props changed) head/graphics/lcms/distinfo (props changed) head/graphics/leafpak/distinfo (props changed) head/graphics/lensfun/distinfo (props changed) head/graphics/lfview/distinfo (props changed) head/graphics/lib3ds/distinfo (props changed) head/graphics/libGL/distinfo (props changed) head/graphics/libGLw/distinfo (props changed) head/graphics/libafterimage/distinfo (props changed) head/graphics/libart_lgpl/distinfo (props changed) head/graphics/libaux/distinfo (props changed) head/graphics/libboard/distinfo (props changed) head/graphics/libcaca/distinfo (props changed) head/graphics/libchamplain/distinfo (props changed) head/graphics/libdmtx/distinfo (props changed) head/graphics/libecwj2/distinfo (props changed) head/graphics/libemf/distinfo (props changed) head/graphics/libgaiagraphics/distinfo (props changed) head/graphics/libgeotiff/distinfo (props changed) head/graphics/libgfx/distinfo (props changed) head/graphics/libggi/distinfo (props changed) head/graphics/libgltext/distinfo (props changed) head/graphics/libgnomecanvas/distinfo (props changed) head/graphics/libgnomecanvasmm26/distinfo (props changed) head/graphics/libimg/distinfo (props changed) head/graphics/libiptcdata/distinfo (props changed) head/graphics/liblqr-1/distinfo (props changed) head/graphics/liblug/distinfo (props changed) head/graphics/libmng/distinfo (props changed) head/graphics/libmorph/distinfo (props changed) head/graphics/libopenraw/distinfo (props changed) head/graphics/libpano12/distinfo (props changed) head/graphics/libpano13/distinfo (props changed) head/graphics/libpcd/distinfo (props changed) head/graphics/libpgf/distinfo (props changed) head/graphics/libprojectm/distinfo (props changed) head/graphics/libpuzzle/distinfo (props changed) head/graphics/libqrencode/distinfo (props changed) head/graphics/libraw/distinfo (props changed) head/graphics/libreatlas/distinfo (props changed) head/graphics/librsvg2/distinfo (props changed) head/graphics/libspiro/distinfo (props changed) head/graphics/libsvg-cairo/distinfo (props changed) head/graphics/libsvg/distinfo (props changed) head/graphics/libvisual/distinfo (props changed) head/graphics/libvisual04-plugins/distinfo (props changed) head/graphics/libvisual04/distinfo (props changed) head/graphics/libwmf/distinfo (props changed) head/graphics/libwpg/distinfo (props changed) head/graphics/linplasma/distinfo (props changed) head/graphics/linux-XnViewMP/distinfo (props changed) head/graphics/linux-adobesvg/distinfo (props changed) head/graphics/linux-f10-cairo/distinfo.i386 (props changed) head/graphics/linux-f10-dri/distinfo.i386 (props changed) head/graphics/linux-f10-gdk-pixbuf/distinfo.i386 (props changed) head/graphics/linux-f10-glew/distinfo.i386 (props changed) head/graphics/linux-f10-imlib/distinfo.i386 (props changed) head/graphics/linux-f10-jpeg/distinfo.i386 (props changed) head/graphics/linux-f10-libGLU/distinfo.i386 (props changed) head/graphics/linux-f10-libmng/distinfo.i386 (props changed) head/graphics/linux-f10-png/distinfo.i386 (props changed) head/graphics/linux-f10-sdl_image/distinfo.i386 (props changed) head/graphics/linux-f10-tiff/distinfo.i386 (props changed) head/graphics/linux-f10-ungif/distinfo.i386 (props changed) head/graphics/linux-sdl_ttf/distinfo.i386 (props changed) head/graphics/linux_glide/distinfo (props changed) head/graphics/lprof-devel/distinfo (props changed) head/graphics/luminance/distinfo (props changed) head/graphics/luxrays/distinfo (props changed) head/graphics/luxrender/distinfo (props changed) head/graphics/makehuman/distinfo (props changed) head/graphics/mapserver/distinfo (props changed) head/graphics/mate-document-viewer/distinfo (props changed) head/graphics/mate-image-viewer/distinfo (props changed) head/graphics/maverik/distinfo (props changed) head/graphics/megapov/distinfo (props changed) head/graphics/mesa-demos/distinfo (props changed) head/graphics/meshviewer/distinfo (props changed) head/graphics/metacam/distinfo (props changed) head/graphics/metapixel/distinfo (props changed) head/graphics/mhgui/distinfo (props changed) head/graphics/mingplot/distinfo (props changed) head/graphics/mirage/distinfo (props changed) head/graphics/mmrecover/distinfo (props changed) head/graphics/mscgen/distinfo (props changed) head/graphics/mtpaint/distinfo (props changed) head/graphics/multican/distinfo (props changed) head/graphics/mxp/distinfo (props changed) head/graphics/nathive/distinfo (props changed) head/graphics/netpbm/distinfo (props changed) head/graphics/nip2/distinfo (props changed) head/graphics/npretty/distinfo (props changed) head/graphics/nurbs++/distinfo (props changed) head/graphics/nvidia-texture-tools/distinfo (props changed) head/graphics/ocaml-images/distinfo (props changed) head/graphics/ocaml-lablgl/distinfo (props changed) head/graphics/ocrfeeder/distinfo (props changed) head/graphics/ocropus/distinfo (props changed) head/graphics/openclipart/distinfo (props changed) head/graphics/opencsg/distinfo (props changed) head/graphics/opendis/distinfo (props changed) head/graphics/opendx/distinfo (props changed) head/graphics/opengl-man/distinfo (props changed) head/graphics/openjpeg/distinfo (props changed) head/graphics/optar/distinfo (props changed) head/graphics/optipng/distinfo (props changed) head/graphics/orca/distinfo (props changed) head/graphics/osg-devel/distinfo (props changed) head/graphics/osg/distinfo (props changed) head/graphics/oyranos/distinfo (props changed) head/graphics/p5-Acme-Steganography-Image-Png/distinfo (props changed) head/graphics/p5-CAD-Drawing-Template/distinfo (props changed) head/graphics/p5-CAD-Drawing/distinfo (props changed) head/graphics/p5-Captcha-reCAPTCHA-Mailhide/distinfo (props changed) head/graphics/p5-Captcha-reCAPTCHA/distinfo (props changed) head/graphics/p5-Chart-Graph/distinfo (props changed) head/graphics/p5-Chart-PNGgraph/distinfo (props changed) head/graphics/p5-Chart/distinfo (props changed) head/graphics/p5-Color-Calc/distinfo (props changed) head/graphics/p5-Color-Library/distinfo (props changed) head/graphics/p5-Color-Palette/distinfo (props changed) head/graphics/p5-Color-Rgb/distinfo (props changed) head/graphics/p5-Color-Scheme/distinfo (props changed) head/graphics/p5-Convert-Color/distinfo (props changed) head/graphics/p5-GD-Arrow/distinfo (props changed) head/graphics/p5-GD-Barcode/distinfo (props changed) head/graphics/p5-GD-Graph-histogram/distinfo (props changed) head/graphics/p5-GD-Graph-ohlc/distinfo (props changed) head/graphics/p5-GD-Graph3d/distinfo (props changed) head/graphics/p5-GD-SVG/distinfo (props changed) head/graphics/p5-GD-TextUtil/distinfo (props changed) head/graphics/p5-GD-Thumbnail/distinfo (props changed) head/graphics/p5-Geo-EOP/distinfo (props changed) head/graphics/p5-Geo-GML/distinfo (props changed) head/graphics/p5-Geo-Gpx/distinfo (props changed) head/graphics/p5-Geo-KML/distinfo (props changed) head/graphics/p5-Geo-Point/distinfo (props changed) head/graphics/p5-Geo-Proj4/distinfo (props changed) head/graphics/p5-Geometry-Primitive/distinfo (props changed) head/graphics/p5-Google-Chart/distinfo (props changed) head/graphics/p5-Graph-Easy/distinfo (props changed) head/graphics/p5-Graph-SocialMap/distinfo (props changed) head/graphics/p5-Graph-Writer-GraphViz/distinfo (props changed) head/graphics/p5-GraphViz-Data-Structure/distinfo (props changed) head/graphics/p5-GraphViz-Traverse/distinfo (props changed) head/graphics/p5-Graphics-Color/distinfo (props changed) head/graphics/p5-Graphics-ColorNames-WWW/distinfo (props changed) head/graphics/p5-Graphics-ColorNames/distinfo (props changed) head/graphics/p5-Graphics-GnuplotIF/distinfo (props changed) head/graphics/p5-Graphics-Primitive-Driver-Cairo/distinfo (props changed) head/graphics/p5-Graphics-Primitive/distinfo (props changed) head/graphics/p5-Image-Base-SVG/distinfo (props changed) head/graphics/p5-Image-Base/distinfo (props changed) head/graphics/p5-Image-Caa/distinfo (props changed) head/graphics/p5-Image-Compare/distinfo (props changed) head/graphics/p5-Image-ExifTool/distinfo (props changed) head/graphics/p5-Image-Grab/distinfo (props changed) head/graphics/p5-Image-Heatmap/distinfo (props changed) head/graphics/p5-Image-IPTCInfo/distinfo (props changed) head/graphics/p5-Image-Imgur/distinfo (props changed) head/graphics/p5-Image-Imlib2/distinfo (props changed) head/graphics/p5-Image-Info/distinfo (props changed) head/graphics/p5-Image-Magick-Iterator/distinfo (props changed) head/graphics/p5-Image-Math-Constrain/distinfo (props changed) head/graphics/p5-Image-MetaData-GQview/distinfo (props changed) head/graphics/p5-Image-MetaData-JPEG/distinfo (props changed) head/graphics/p5-Image-PBMlib/distinfo (props changed) head/graphics/p5-Image-Pngslimmer/distinfo (props changed) head/graphics/p5-Image-Scale/distinfo (props changed) head/graphics/p5-Image-Size-FillFullSelect/distinfo (props changed) head/graphics/p5-Image-Size/distinfo (props changed) head/graphics/p5-Imager-AverageGray/distinfo (props changed) head/graphics/p5-Imager-Graph/distinfo (props changed) head/graphics/p5-Imager-Plot/distinfo (props changed) head/graphics/p5-Imager-QRCode/distinfo (props changed) head/graphics/p5-Imlib2/distinfo (props changed) head/graphics/p5-Layout-Manager/distinfo (props changed) head/graphics/p5-OpenGL/distinfo (props changed) head/graphics/p5-PGPLOT/distinfo (props changed) head/graphics/p5-SVG-DOM2/distinfo (props changed) head/graphics/p5-SVG-Graph/distinfo (props changed) head/graphics/p5-SVG-Metadata/distinfo (props changed) head/graphics/p5-SWF-Builder/distinfo (props changed) head/graphics/p5-SWF-File/distinfo (props changed) head/graphics/p5-Sane/distinfo (props changed) head/graphics/p5-SpringGraph/distinfo (props changed) head/graphics/p5-URI-GoogleChart/distinfo (props changed) head/graphics/p5-VCG/distinfo (props changed) head/graphics/p5-Visio/distinfo (props changed) head/graphics/panoglview/distinfo (props changed) head/graphics/panomatic/distinfo (props changed) head/graphics/passepartout/distinfo (props changed) head/graphics/pear-Horde_Image/distinfo (props changed) head/graphics/pear-IO_SWF/distinfo (props changed) head/graphics/pear-Image_3D/distinfo (props changed) head/graphics/pear-Image_Barcode/distinfo (props changed) head/graphics/pear-Image_Canvas/distinfo (props changed) head/graphics/pear-Image_Graph/distinfo (props changed) head/graphics/pear-Image_Transform/distinfo (props changed) head/graphics/pecl-gmagick/distinfo (props changed) head/graphics/pecl-imagick/distinfo (props changed) head/graphics/pecl-imlib2/distinfo (props changed) head/graphics/pecl-qrencode/distinfo (props changed) head/graphics/pecomato/distinfo (props changed) head/graphics/pencil/distinfo (props changed) head/graphics/peps/distinfo (props changed) head/graphics/pfscalibration/distinfo (props changed) head/graphics/pfstmo/distinfo (props changed) head/graphics/pfstools/distinfo (props changed) head/graphics/pgplot/distinfo (props changed) head/graphics/pho/distinfo (props changed) head/graphics/photopc/distinfo (props changed) head/graphics/php-facedetect/distinfo (props changed) head/graphics/php-libpuzzle/distinfo (props changed) head/graphics/php-magickwand/distinfo (props changed) head/graphics/php5-chartdirector/distinfo (props changed) head/graphics/php5-ffmpeg/distinfo (props changed) head/graphics/php5-swfed/distinfo (props changed) head/graphics/phplot/distinfo (props changed) head/graphics/picpuz/distinfo (props changed) head/graphics/picturebook/distinfo (props changed) head/graphics/picviz/distinfo (props changed) head/graphics/piddle/distinfo (props changed) head/graphics/pinpoint/distinfo (props changed) head/graphics/pinta/distinfo (props changed) head/graphics/pixelize/distinfo (props changed) head/graphics/pixen/distinfo (props changed) head/graphics/pixie/distinfo (props changed) head/graphics/pixmap/distinfo (props changed) head/graphics/plasma-kmod/distinfo (props changed) head/graphics/plotmtv/distinfo (props changed) head/graphics/plotutils/distinfo (props changed) head/graphics/png/distinfo (props changed) head/graphics/png2html/distinfo (props changed) head/graphics/png2ico/distinfo (props changed) head/graphics/pngcheck/distinfo (props changed) head/graphics/pngnq/distinfo (props changed) head/graphics/pngrewrite/distinfo (props changed) head/graphics/pngwriter/distinfo (props changed) head/graphics/podofo/distinfo (props changed) head/graphics/poppler-data/distinfo (props changed) head/graphics/pornview/distinfo (props changed) head/graphics/povray31/distinfo (props changed) head/graphics/povray36/distinfo (props changed) head/graphics/ppmcaption/distinfo (props changed) head/graphics/ppminfo/distinfo (props changed) head/graphics/ppsei/distinfo (props changed) head/graphics/pqiv/distinfo (props changed) head/graphics/preview/distinfo (props changed) head/graphics/price/distinfo (props changed) head/graphics/prison/distinfo (props changed) head/graphics/processing/distinfo (props changed) head/graphics/proj/distinfo (props changed) head/graphics/projectm-libvisual/distinfo (props changed) head/graphics/pstoepsi/distinfo (props changed) head/graphics/pure-gl/distinfo (props changed) head/graphics/pvmpov/distinfo (props changed) head/graphics/py-PyX/distinfo (props changed) head/graphics/py-aafigure/distinfo (props changed) head/graphics/py-actdiag/distinfo (props changed) head/graphics/py-blockdiag/distinfo (props changed) head/graphics/py-blockdiagcontrib-cisco/distinfo (props changed) head/graphics/py-cairo/distinfo (props changed) head/graphics/py-chart/distinfo (props changed) head/graphics/py-django-easy-thumbnails/distinfo (props changed) head/graphics/py-editobj/distinfo (props changed) head/graphics/py-exif/distinfo (props changed) head/graphics/py-exiv2/distinfo (props changed) head/graphics/py-freeimagepy/distinfo (props changed) head/graphics/py-gchartwrapper/distinfo (props changed) head/graphics/py-glewpy/distinfo (props changed) head/graphics/py-goocanvas/distinfo (props changed) head/graphics/py-graph-core/distinfo (props changed) head/graphics/py-graph-dot/distinfo (props changed) head/graphics/py-graphviz/distinfo (props changed) head/graphics/py-graphy/distinfo (props changed) head/graphics/py-gvgen/distinfo (props changed) head/graphics/py-imaging/distinfo (props changed) head/graphics/py-nwdiag/distinfo (props changed) head/graphics/py-openexr/distinfo (props changed) head/graphics/py-opengl/distinfo (props changed) head/graphics/py-paint/distinfo (props changed) head/graphics/py-png/distinfo (props changed) head/graphics/py-poppler/distinfo (props changed) head/graphics/py-pycha/distinfo (props changed) head/graphics/py-pydot/distinfo (props changed) head/graphics/py-pyglet/distinfo (props changed) head/graphics/py-pygooglechart/distinfo (props changed) head/graphics/py-pyproj/distinfo (props changed) head/graphics/py-rabbyt/distinfo (props changed) head/graphics/py-sane/distinfo (props changed) head/graphics/py-seqdiag/distinfo (props changed) head/graphics/py-sorl-thumbnail/distinfo (props changed) head/graphics/py-soya3d/distinfo (props changed) head/graphics/py-webcolors/distinfo (props changed) head/graphics/py3-cairo/distinfo (props changed) head/graphics/pygts/distinfo (props changed) head/graphics/pymorph/distinfo (props changed) head/graphics/pyro/distinfo (props changed) head/graphics/pysvg/distinfo (props changed) head/graphics/qcread/distinfo (props changed) head/graphics/qgis/distinfo (props changed) head/graphics/qiviewer/distinfo (props changed) head/graphics/qslim/distinfo (props changed) head/graphics/quat-gui/distinfo (props changed) head/graphics/quat/distinfo (props changed) head/graphics/quesa/distinfo (props changed) head/graphics/quesoglc/distinfo (props changed) head/graphics/qvplay/distinfo (props changed) head/graphics/radius-engine/distinfo (props changed) head/graphics/raster3d/distinfo (props changed) head/graphics/rawstudio/distinfo (props changed) head/graphics/rayshade/distinfo (props changed) head/graphics/reallyslick/distinfo (props changed) head/graphics/recoverjpeg/distinfo (props changed) head/graphics/renrot/distinfo (props changed) head/graphics/repng2jpeg/distinfo (props changed) head/graphics/rgbpaint/distinfo (props changed) head/graphics/ristretto/distinfo (props changed) head/graphics/ruby-cairo/distinfo (props changed) head/graphics/ruby-gd/distinfo (props changed) head/graphics/ruby-image_size/distinfo (props changed) head/graphics/ruby-imlib2/distinfo (props changed) head/graphics/ruby-ming/distinfo (props changed) head/graphics/ruby-svg/distinfo (props changed) head/graphics/ruby-tgif/distinfo (props changed) head/graphics/rubygem-cairo/distinfo (props changed) head/graphics/rubygem-clutter-gtk/distinfo (props changed) head/graphics/rubygem-clutter/distinfo (props changed) head/graphics/rubygem-exifr/distinfo (props changed) head/graphics/rubygem-fastimage/distinfo (props changed) head/graphics/rubygem-gd2/distinfo (props changed) head/graphics/rubygem-gdk_pixbuf2/distinfo (props changed) head/graphics/rubygem-goocanvas/distinfo (props changed) head/graphics/rubygem-imagesize/distinfo (props changed) head/graphics/rubygem-objectdetect/distinfo (props changed) head/graphics/rubygem-png/distinfo (props changed) head/graphics/rubygem-railroad/distinfo (props changed) head/graphics/rubygem-rmagick/distinfo (props changed) head/graphics/rubygem-rsvg2/distinfo (props changed) head/graphics/rubygem-scruffy/distinfo (props changed) head/graphics/rubyphoto/distinfo (props changed) head/graphics/s10sh/distinfo (props changed) head/graphics/sage/distinfo (props changed) head/graphics/sam2p/distinfo (props changed) head/graphics/sampleicc/distinfo (props changed) head/graphics/sane-epkowa/distinfo (props changed) head/graphics/sane-frontends/distinfo (props changed) head/graphics/scantailor/distinfo (props changed) head/graphics/scr2png/distinfo (props changed) head/graphics/scrot/distinfo (props changed) head/graphics/scwm-icons/distinfo (props changed) head/graphics/sdl_gfx/distinfo (props changed) head/graphics/sdl_image/distinfo (props changed) head/graphics/sdl_ttf/distinfo (props changed) head/graphics/seam-carving-gui/distinfo (props changed) head/graphics/seejpeg/distinfo (props changed) head/graphics/separate/distinfo (props changed) head/graphics/sharpconstruct/distinfo (props changed) head/graphics/shiva-collections/distinfo (props changed) head/graphics/shotwell/distinfo (props changed) head/graphics/show/distinfo (props changed) head/graphics/showimage/distinfo (props changed) head/graphics/silgraphite/distinfo (props changed) head/graphics/simage/distinfo (props changed) head/graphics/simpleviewer/distinfo (props changed) head/graphics/sk1libs/distinfo (props changed) head/graphics/skencil/distinfo (props changed) head/graphics/sketch/distinfo (props changed) head/graphics/sng/distinfo (props changed) head/graphics/sodipodi/distinfo (props changed) head/graphics/springgraph/distinfo (props changed) head/graphics/squish/distinfo (props changed) head/graphics/sswf/distinfo (props changed) head/graphics/stamp/distinfo (props changed) head/graphics/structuresynth/distinfo (props changed) head/graphics/svg2pdf/distinfo (props changed) head/graphics/svg2png/distinfo (props changed) head/graphics/svg2swf/distinfo (props changed) head/graphics/svgalib/distinfo (props changed) head/graphics/svgfig/distinfo (props changed) head/graphics/swfdec/distinfo (props changed) head/graphics/swftools/distinfo (props changed) head/graphics/synaesthesia/distinfo (props changed) head/graphics/synfigstudio/distinfo (props changed) head/graphics/telak/distinfo (props changed) head/graphics/tgif/distinfo (props changed) head/graphics/tiff/distinfo (props changed) head/graphics/tiff2png/distinfo (props changed) head/graphics/tifmerge/distinfo (props changed) head/graphics/tilecache/distinfo (props changed) head/graphics/tiled/distinfo (props changed) head/graphics/timeless/distinfo (props changed) head/graphics/tintfu/distinfo (props changed) head/graphics/tinyows/distinfo (props changed) head/graphics/tkpng/distinfo (props changed) head/graphics/togl/distinfo (props changed) head/graphics/truevision/distinfo (props changed) head/graphics/tulip/distinfo (props changed) head/graphics/tumble/distinfo (props changed) head/graphics/uDrawGraph/distinfo (props changed) head/graphics/ufraw/distinfo (props changed) head/graphics/uniconvertor/distinfo (props changed) head/graphics/uniconvw/distinfo (props changed) head/graphics/unpaper/distinfo (props changed) head/graphics/urt/distinfo (props changed) head/graphics/vcg/distinfo (props changed) head/graphics/viewnior/distinfo (props changed) head/graphics/vips/distinfo (props changed) head/graphics/visionworkbench/distinfo (props changed) head/graphics/visprint/distinfo (props changed) head/graphics/volpack/distinfo (props changed) head/graphics/webp/distinfo (props changed) head/graphics/whirlgif/distinfo (props changed) head/graphics/white_dune/distinfo (props changed) head/graphics/wings/distinfo (props changed) head/graphics/wmgrabimage/distinfo (props changed) head/graphics/wmicons/distinfo (props changed) head/graphics/xbmbrowser/distinfo (props changed) head/graphics/xd3d/distinfo (props changed) head/graphics/xdgagrab/distinfo (props changed) head/graphics/xface.el/distinfo (props changed) head/graphics/xfig/distinfo (props changed) head/graphics/xfpovray/distinfo (props changed) head/graphics/xfractint/distinfo (props changed) head/graphics/xglurbules/distinfo (props changed) head/graphics/xgrasp/distinfo (props changed) head/graphics/xli/distinfo (props changed) head/graphics/xmandel/distinfo (props changed) head/graphics/xmfract/distinfo (props changed) head/graphics/xmms-blursk/distinfo (props changed) head/graphics/xmms-dancingparticles/distinfo (props changed) head/graphics/xmms-dflowers/distinfo (props changed) head/graphics/xmms-dscope/distinfo (props changed) head/graphics/xmms-dspectogram/distinfo (props changed) head/graphics/xmms-dspectral/distinfo (props changed) head/graphics/xmms-finespectrum/distinfo (props changed) head/graphics/xmms-fishmatic/distinfo (props changed) head/graphics/xmms-gdancer/distinfo (props changed) head/graphics/xmms-iris/distinfo (props changed) head/graphics/xmms-jess/distinfo (props changed) head/graphics/xmms-nebulus/distinfo (props changed) head/graphics/xmms-paranormal/distinfo (props changed) head/graphics/xmms-scivi/distinfo (props changed) head/graphics/xmms-vumeter/distinfo (props changed) head/graphics/xmms-waterfall/distinfo (props changed) head/graphics/xmorph/distinfo (props changed) head/graphics/xnview/distinfo (props changed) head/graphics/xoris/distinfo (props changed) head/graphics/xournal/distinfo (props changed) head/graphics/xpaint/distinfo (props changed) head/graphics/xpdf/distinfo (props changed) head/graphics/xpx/distinfo (props changed) head/graphics/xsvg/distinfo (props changed) head/graphics/xtexcad/distinfo (props changed) head/graphics/xv/distinfo (props changed) head/graphics/xwpick/distinfo (props changed) head/graphics/xzgv/distinfo (props changed) head/graphics/yafray/distinfo (props changed) head/graphics/yagf/distinfo (props changed) head/graphics/zbar/distinfo (props changed) head/graphics/zgv/distinfo (props changed) head/graphics/zimg/distinfo (props changed) head/graphics/zint/distinfo (props changed) head/graphics/zphoto/distinfo (props changed) head/hebrew/aspell/distinfo (props changed) head/hebrew/culmus/distinfo (props changed) head/hebrew/elmar-fonts/distinfo (props changed) head/hebrew/he2/distinfo (props changed) head/hebrew/hspell/distinfo (props changed) head/hebrew/hunspell/distinfo (props changed) head/hebrew/libreoffice/distinfo (props changed) head/hungarian/aspell/distinfo (props changed) head/hungarian/hu-phone/distinfo (props changed) head/hungarian/hu-zipcodes/distinfo (props changed) head/hungarian/hunspell/distinfo (props changed) head/hungarian/hyphen/distinfo (props changed) head/hungarian/ispell/distinfo (props changed) head/hungarian/jdictionary-eng-hun-expr/distinfo (props changed) head/hungarian/jdictionary-eng-hun/distinfo (props changed) head/hungarian/libreoffice/distinfo (props changed) head/hungarian/mythes/distinfo (props changed) head/irc/anope/distinfo (props changed) head/irc/bip/distinfo (props changed) head/irc/bitlbee/distinfo (props changed) head/irc/bnc/distinfo (props changed) head/irc/bobot++/distinfo (props changed) head/irc/bopm/distinfo (props changed) head/irc/cgiirc/distinfo (props changed) head/irc/charybdis/distinfo (props changed) head/irc/ctrlproxy/distinfo (props changed) head/irc/cwirc/distinfo (props changed) head/irc/dancer/distinfo (props changed) head/irc/darkbot/distinfo (props changed) head/irc/dcc/distinfo (props changed) head/irc/dircproxy/distinfo (props changed) head/irc/eggdrop-devel/distinfo (props changed) head/irc/eggdrop/distinfo (props changed) head/irc/epic4/distinfo (props changed) head/irc/epic5/distinfo (props changed) head/irc/evangeline/distinfo (props changed) head/irc/ezbounce/distinfo (props changed) head/irc/fisg/distinfo (props changed) head/irc/gruftistats/distinfo (props changed) head/irc/gseen.mod/distinfo (props changed) head/irc/icbirc/distinfo (props changed) head/irc/infobot/distinfo (props changed) head/irc/insub/distinfo (props changed) head/irc/irc/distinfo (props changed) head/irc/irc2dc/distinfo (props changed) head/irc/ircII/distinfo (props changed) head/irc/ircd-hybrid/distinfo (props changed) head/irc/ircd-ratbox-devel/distinfo (props changed) head/irc/ircd-ratbox/distinfo (props changed) head/irc/ircd-ru/distinfo (props changed) head/irc/irchat-pj-emacs21/distinfo (props changed) head/irc/ircproxy/distinfo (props changed) head/irc/ircservices/distinfo (props changed) head/irc/iroffer-dinoex/distinfo (props changed) head/irc/iroffer-lamm/distinfo (props changed) head/irc/iroffer/distinfo (props changed) head/irc/irssi-dcc_send_limiter/distinfo (props changed) head/irc/irssi-devel/distinfo (props changed) head/irc/irssi-fish/distinfo (props changed) head/irc/irssi-otr/distinfo (props changed) head/irc/irssi/distinfo (props changed) head/irc/irssistats/distinfo (props changed) head/irc/keitairc2/distinfo (props changed) head/irc/konversation-kde4/distinfo (props changed) head/irc/libircclient/distinfo (props changed) head/irc/lostirc/distinfo (props changed) head/irc/miau/distinfo (props changed) head/irc/muh/distinfo (props changed) head/irc/nefarious/distinfo (props changed) head/irc/nethirc/distinfo (props changed) head/irc/netwalker-ircc/distinfo (props changed) head/irc/ninja/distinfo (props changed) head/irc/onis/distinfo (props changed) head/irc/p5-AnyEvent-IRC/distinfo (props changed) head/irc/p5-Bot-BasicBot/distinfo (props changed) head/irc/p5-IRC-Bot-Hangman/distinfo (props changed) head/irc/p5-IRC-Utils/distinfo (props changed) head/irc/p5-POE-Component-IRC-Object/distinfo (props changed) head/irc/p5-POE-Component-IRC-Plugin-Blowfish/distinfo (props changed) head/irc/p5-POE-Component-IRC-Plugin-Bollocks/distinfo (props changed) head/irc/p5-POE-Component-IRC-Plugin-CoreList/distinfo (props changed) head/irc/p5-POE-Component-IRC-Plugin-Karma/distinfo (props changed) head/irc/p5-POE-Component-IRC-Plugin-POE-Knee/distinfo (props changed) head/irc/p5-POE-Component-IRC-Plugin-QueryDNS/distinfo (props changed) head/irc/p5-POE-Component-IRC-Plugin-QueryDNSBL/distinfo (props changed) head/irc/p5-POE-Component-IRC-Plugin-RSS-Headlines/distinfo (props changed) head/irc/p5-POE-Component-Server-IRC/distinfo (props changed) head/irc/p5-POE-Session-Irssi/distinfo (props changed) head/irc/p5-Parse-IRC/distinfo (props changed) head/irc/pear-Net_SmartIRC/distinfo (props changed) head/irc/pircbot/distinfo (props changed) head/irc/pisg/distinfo (props changed) head/irc/psybnc/distinfo (props changed) head/irc/pure-emacs21/distinfo (props changed) head/irc/py-fishcrypt/distinfo (props changed) head/irc/py-gozerbot/distinfo (props changed) head/irc/py-irc/distinfo (props changed) head/irc/py-supybot-plugins/distinfo (props changed) head/irc/py-supybot/distinfo (props changed) head/irc/quirc/distinfo (props changed) head/irc/qwebirc/distinfo (props changed) head/irc/ratbox-respond/distinfo (props changed) head/irc/ratbox-services/distinfo (props changed) head/irc/rbot/distinfo (props changed) head/irc/riece/distinfo (props changed) head/irc/roxirc/distinfo (props changed) head/irc/ruby-irc/distinfo (props changed) head/irc/ruby-rica/distinfo (props changed) head/irc/ruby-rice/distinfo (props changed) head/irc/rubygem-net-irc/distinfo (props changed) head/irc/scrollz/distinfo (props changed) head/irc/sic/distinfo (props changed) head/irc/simpleirc/distinfo (props changed) head/irc/sirc/distinfo (props changed) head/irc/slirc/distinfo (props changed) head/irc/smartirc4net/distinfo (props changed) head/irc/solid-ircd/distinfo (props changed) head/irc/srvx/distinfo (props changed) head/irc/thales/distinfo (props changed) head/irc/tircd/distinfo (props changed) head/irc/tircproxy/distinfo (props changed) head/irc/trickyirc/distinfo (props changed) head/irc/undernet-ircu/distinfo (props changed) head/irc/unreal/distinfo (props changed) head/irc/xaric/distinfo (props changed) head/irc/xchat-fish/distinfo (props changed) head/irc/xchat-mircryption/distinfo (props changed) head/irc/xchat-ruby/distinfo (props changed) head/irc/xchat/distinfo (props changed) head/japanese/ASCIIdates98-fpw/distinfo (props changed) head/japanese/CGdic-fpw/distinfo (props changed) head/japanese/FreeWnn-lib/distinfo (props changed) head/japanese/FreeWnn-server/distinfo (props changed) head/japanese/VTPSfont/distinfo (props changed) head/japanese/Wnn6-lib/distinfo (props changed) head/japanese/Wnn7-lib/distinfo (props changed) head/japanese/a2ps/distinfo (props changed) head/japanese/ack/distinfo (props changed) head/japanese/acroread8/distinfo (props changed) head/japanese/acroread9/distinfo (props changed) head/japanese/ajaxzip2-core/distinfo (props changed) head/japanese/ajaxzip2-data/distinfo (props changed) head/japanese/another-htmllint/distinfo (props changed) head/japanese/anthy/distinfo (props changed) head/japanese/asterisk-sounds/distinfo (props changed) head/japanese/aterm/distinfo (props changed) head/japanese/bible_names-fpw/distinfo (props changed) head/japanese/bookview/distinfo (props changed) head/japanese/bugzilla40/distinfo (props changed) head/japanese/bugzilla42/distinfo (props changed) head/japanese/bugzilla44/distinfo (props changed) head/japanese/canna-lib/distinfo (props changed) head/japanese/canna-server/distinfo (props changed) head/japanese/cannadic/distinfo (props changed) head/japanese/cdrom2/distinfo (props changed) head/japanese/celrw/distinfo (props changed) head/japanese/chasen-base/distinfo (props changed) head/japanese/cmigemo/distinfo (props changed) head/japanese/ctags/distinfo (props changed) head/japanese/dbskkd-cdb/distinfo (props changed) head/japanese/devil-fpw/distinfo (props changed) head/japanese/dvi2tty/distinfo (props changed) head/japanese/dvipsk/distinfo (props changed) head/japanese/e2ps/distinfo (props changed) head/japanese/eb/distinfo (props changed) head/japanese/ebd-fpw/distinfo (props changed) head/japanese/eblook/distinfo (props changed) head/japanese/ebnetd/distinfo (props changed) head/japanese/ebview-gtk2/distinfo (props changed) head/japanese/ebview/distinfo (props changed) head/japanese/edict-fpw/distinfo (props changed) head/japanese/edict-utf-8/distinfo (props changed) head/japanese/edict/distinfo (props changed) head/japanese/edyvalue/distinfo (props changed) head/japanese/egg-canna/distinfo (props changed) head/japanese/eijiro-fpw/distinfo (props changed) head/japanese/elisa8x8/distinfo (props changed) head/japanese/elvis/distinfo (props changed) head/japanese/emacs-emcws/distinfo (props changed) head/japanese/epwutil/distinfo (props changed) head/japanese/esecanna-module-vje25/distinfo (props changed) head/japanese/esecanna-module-vje30/distinfo (props changed) head/japanese/esecanna-module-wnn6/distinfo (props changed) head/japanese/esecanna/distinfo (props changed) head/japanese/fcitx-anthy/distinfo (props changed) head/japanese/flex-sdk/distinfo (props changed) head/japanese/flower-fpw/distinfo (props changed) head/japanese/foldoc-fpw/distinfo (props changed) head/japanese/font-ipa-uigothic/distinfo (props changed) head/japanese/font-ipa/distinfo (props changed) head/japanese/font-ipaex/distinfo (props changed) head/japanese/font-jisx0213/distinfo (props changed) head/japanese/font-kochi/distinfo (props changed) head/japanese/font-migmix/distinfo (props changed) head/japanese/font-migu/distinfo (props changed) head/japanese/font-mona-ipa/distinfo (props changed) head/japanese/font-motoya-al/distinfo (props changed) head/japanese/font-mplus-ipa/distinfo (props changed) head/japanese/font-mplus/distinfo (props changed) head/japanese/font-ricty/distinfo (props changed) head/japanese/font-sazanami/distinfo (props changed) head/japanese/font-shinonome/distinfo (props changed) head/japanese/font-takao/distinfo (props changed) head/japanese/font-ume/distinfo (props changed) head/japanese/font-vlgothic/distinfo (props changed) head/japanese/freepwing/distinfo (props changed) head/japanese/fumeikai-fpw/distinfo (props changed) head/japanese/gawk/distinfo (props changed) head/japanese/gedy/distinfo (props changed) head/japanese/grep/distinfo (props changed) head/japanese/groff/distinfo (props changed) head/japanese/gskk/distinfo (props changed) head/japanese/gsuica/distinfo (props changed) head/japanese/gtkicq/distinfo (props changed) head/japanese/guesswork-classic/distinfo (props changed) head/japanese/hns/distinfo (props changed) head/japanese/ibus-anthy/distinfo (props changed) head/japanese/ibus-skk/distinfo (props changed) head/japanese/icanna/distinfo (props changed) head/japanese/im-ja/distinfo (props changed) head/japanese/ipadic/distinfo (props changed) head/japanese/ja6/distinfo (props changed) head/japanese/jacode.pl/distinfo (props changed) head/japanese/jadetex-ptex/distinfo (props changed) head/japanese/japana/distinfo (props changed) head/japanese/japaneseAFM/distinfo (props changed) head/japanese/jargon-fpw/distinfo (props changed) head/japanese/jcode.pl/distinfo (props changed) head/japanese/jd/distinfo (props changed) head/japanese/jed/distinfo (props changed) head/japanese/jishyo/distinfo (props changed) head/japanese/jls/distinfo (props changed) head/japanese/jmode/distinfo (props changed) head/japanese/jstrings/distinfo (props changed) head/japanese/jvim3/distinfo (props changed) head/japanese/jyuroku/distinfo (props changed) head/japanese/k10/distinfo (props changed) head/japanese/k12/distinfo (props changed) head/japanese/kakasi/distinfo (props changed) head/japanese/kana-no-quiz/distinfo (props changed) head/japanese/kanji18/distinfo (props changed) head/japanese/kanji26/distinfo (props changed) head/japanese/kanjipad/distinfo (props changed) head/japanese/kappa20/distinfo (props changed) head/japanese/kasumi/distinfo (props changed) head/japanese/kbanner/distinfo (props changed) head/japanese/kcc/distinfo (props changed) head/japanese/kcode/distinfo (props changed) head/japanese/kdrill/distinfo (props changed) head/japanese/kinput2/distinfo (props changed) head/japanese/kon2-16dot/distinfo (props changed) head/japanese/kpcal/distinfo (props changed) head/japanese/kterm/distinfo (props changed) head/japanese/lambdamoo/distinfo (props changed) head/japanese/latex2html/distinfo (props changed) head/japanese/leafrogue/distinfo (props changed) head/japanese/less/distinfo (props changed) head/japanese/libjcode/distinfo (props changed) head/japanese/libreoffice/distinfo (props changed) head/japanese/libskk/distinfo (props changed) head/japanese/libslang/distinfo (props changed) head/japanese/libtomoe-gtk/distinfo (props changed) head/japanese/lipsf/distinfo (props changed) head/japanese/lookup/distinfo (props changed) head/japanese/lsd-fpw/distinfo (props changed) head/japanese/lynx-current/distinfo (props changed) head/japanese/lynx/distinfo (props changed) head/japanese/mailman/distinfo (props changed) head/japanese/makejvf/distinfo (props changed) head/japanese/man-doc/distinfo (props changed) head/japanese/man/distinfo (props changed) head/japanese/marumoji-fonts/distinfo (props changed) head/japanese/mecab-ipadic/distinfo (props changed) head/japanese/mecab/distinfo (props changed) head/japanese/mell/distinfo (props changed) head/japanese/mendexk-euc/distinfo (props changed) head/japanese/mg/distinfo (props changed) head/japanese/mh/distinfo (props changed) head/japanese/migemo/distinfo (props changed) head/japanese/mikachan-ttfonts/distinfo (props changed) head/japanese/mime_pls/distinfo (props changed) head/japanese/ming/distinfo (props changed) head/japanese/monafonts-ttf/distinfo (props changed) head/japanese/monafonts/distinfo (props changed) head/japanese/mozc-server/distinfo (props changed) head/japanese/mtools/distinfo (props changed) head/japanese/multiskkserv/distinfo (props changed) head/japanese/mutt-devel/distinfo (props changed) head/japanese/mypaedia-fpw-package/distinfo (props changed) head/japanese/mypaedia-fpw/distinfo (props changed) head/japanese/namazu/distinfo (props changed) head/japanese/navi2ch/distinfo (props changed) head/japanese/ne/distinfo (props changed) head/japanese/nethack34/distinfo (props changed) head/japanese/netype/distinfo (props changed) head/japanese/newosaka/distinfo (props changed) head/japanese/ng-devel/distinfo (props changed) head/japanese/ng/distinfo (props changed) head/japanese/nhocr/distinfo (props changed) head/japanese/nkf/distinfo (props changed) head/japanese/ochusha/distinfo (props changed) head/japanese/onew/distinfo (props changed) head/japanese/p5-Acme-Lou/distinfo (props changed) head/japanese/p5-Date-Japanese-Era/distinfo (props changed) head/japanese/p5-Date-Japanese-Holiday/distinfo (props changed) head/japanese/p5-DateTime-Calendar-Japanese-Era/distinfo (props changed) head/japanese/p5-DateTime-Format-Japanese/distinfo (props changed) head/japanese/p5-Encode-EUCJPMS/distinfo (props changed) head/japanese/p5-Encode-JP-Emoji/distinfo (props changed) head/japanese/p5-Encode-JP-Mobile/distinfo (props changed) head/japanese/p5-HTML-MobileJp/distinfo (props changed) head/japanese/p5-Jcode/distinfo (props changed) head/japanese/p5-Lingua-JA-Kana/distinfo (props changed) head/japanese/p5-Lingua-JA-Numbers/distinfo (props changed) head/japanese/p5-Lingua-JA-Regular-Unicode/distinfo (props changed) head/japanese/p5-Lingua-JA-Summarize-Extract/distinfo (props changed) head/japanese/p5-MeCab/distinfo (props changed) head/japanese/p5-PDFJ/distinfo (props changed) head/japanese/p5-Text-Kakasi/distinfo (props changed) head/japanese/p5-Text-MeCab/distinfo (props changed) head/japanese/p5-Unicode-Japanese/distinfo (props changed) head/japanese/p5-WWW-2ch/distinfo (props changed) head/japanese/p5-WWW-MobileCarrierJP/distinfo (props changed) head/japanese/p5-manual/distinfo (props changed) head/japanese/p5-nkf/distinfo (props changed) head/japanese/pejv-fpw/distinfo (props changed) head/japanese/php5-mecab/distinfo (props changed) head/japanese/plain2/distinfo (props changed) head/japanese/platex-japanese/distinfo (props changed) head/japanese/platex-jsclasses/distinfo (props changed) head/japanese/platex-otf/distinfo (props changed) head/japanese/platex209/distinfo (props changed) head/japanese/postgresql82-man/distinfo (props changed) head/japanese/prime-dict/distinfo (props changed) head/japanese/prime-el/distinfo (props changed) head/japanese/prime/distinfo (props changed) head/japanese/prn/distinfo (props changed) head/japanese/ptex/distinfo (props changed) head/japanese/py-mecab/distinfo (props changed) head/japanese/py-tegaki-gtk/distinfo (props changed) head/japanese/py-tegaki/distinfo (props changed) head/japanese/py-zinnia/distinfo (props changed) head/japanese/qkc/distinfo (props changed) head/japanese/rbnamazu/distinfo (props changed) head/japanese/roget-fpw/distinfo (props changed) head/japanese/rogue_s/distinfo (props changed) head/japanese/rskkserv/distinfo (props changed) head/japanese/ruby-eb/distinfo (props changed) head/japanese/ruby-man/distinfo (props changed) head/japanese/ruby-mecab/distinfo (props changed) head/japanese/ruby-ming/distinfo (props changed) head/japanese/ruby-romkan/distinfo (props changed) head/japanese/ruby-uconv/distinfo (props changed) head/japanese/ruby-usersguide/distinfo (props changed) head/japanese/rubygem-jpmobile-ipaddresses/distinfo (props changed) head/japanese/rubygem-jpmobile-terminfo/distinfo (props changed) head/japanese/rubygem-jpmobile/distinfo (props changed) head/japanese/ryaku-fpw/distinfo (props changed) head/japanese/scim-anthy/distinfo (props changed) head/japanese/scim-canna/distinfo (props changed) head/japanese/scim-honoka-plugin-romkan/distinfo (props changed) head/japanese/scim-honoka-plugin-wnn/distinfo (props changed) head/japanese/scim-honoka/distinfo (props changed) head/japanese/scim-prime/distinfo (props changed) head/japanese/scim-skk/distinfo (props changed) head/japanese/scim-tables/distinfo (props changed) head/japanese/scim-tomoe/distinfo (props changed) head/japanese/scim-uim/distinfo (props changed) head/japanese/seaside/distinfo (props changed) head/japanese/sed/distinfo (props changed) head/japanese/sj3-lib/distinfo (props changed) head/japanese/sj3-server/distinfo (props changed) head/japanese/skk-tools/distinfo (props changed) head/japanese/skkfep/distinfo (props changed) head/japanese/skkinput/distinfo (props changed) head/japanese/skkinput3/distinfo (props changed) head/japanese/skkserv/distinfo (props changed) head/japanese/slimeforest/distinfo (props changed) head/japanese/slrn/distinfo (props changed) head/japanese/srd-fpw-package/distinfo (props changed) head/japanese/srd-fpw/distinfo (props changed) head/japanese/suicavalue/distinfo (props changed) head/japanese/suikyo/distinfo (props changed) head/japanese/t2ps/distinfo (props changed) head/japanese/tcl80/distinfo (props changed) head/japanese/tegaki-recognize/distinfo (props changed) head/japanese/tegaki-zinnia-japanese/distinfo (props changed) head/japanese/tex-ptex/distinfo (props changed) head/japanese/texinfo/distinfo (props changed) head/japanese/tiarra/distinfo (props changed) head/japanese/tk80/distinfo (props changed) head/japanese/tkhonyaku/distinfo (props changed) head/japanese/today/distinfo (props changed) head/japanese/tomoe/distinfo (props changed) head/japanese/trac/distinfo (props changed) head/japanese/uim-tomoe-gtk/distinfo (props changed) head/japanese/vera-fpw/distinfo (props changed) head/japanese/vftool/distinfo (props changed) head/japanese/waeijiro-fpw/distinfo (props changed) head/japanese/wdic-fpw/distinfo (props changed) head/japanese/web1913-fpw/distinfo (props changed) head/japanese/wnn7egg/distinfo (props changed) head/japanese/wordnet-fpw/distinfo (props changed) head/japanese/wwasw-fpw/distinfo (props changed) head/japanese/xdtp/distinfo (props changed) head/japanese/xdvik/distinfo (props changed) head/japanese/xgate/distinfo (props changed) head/japanese/xjtext/distinfo (props changed) head/japanese/xpdf/distinfo (props changed) head/japanese/xshodou/distinfo (props changed) head/japanese/xtr/distinfo (props changed) head/japanese/xyaku/distinfo (props changed) head/japanese/yasou-fpw/distinfo (props changed) head/japanese/yc.el/distinfo (props changed) head/japanese/zangband/distinfo (props changed) head/japanese/zinnia-tomoe/distinfo (props changed) head/japanese/zinnia/distinfo (props changed) head/japanese/zipcodes/distinfo (props changed) head/java/avis/distinfo (props changed) head/java/berkeley-db/distinfo (props changed) head/java/bouncycastle/distinfo (props changed) head/java/cacao/distinfo (props changed) head/java/castor/distinfo (props changed) head/java/classpath/distinfo (props changed) head/java/commonclipse/distinfo (props changed) head/java/cos/distinfo (props changed) head/java/cryptix-jce/distinfo (props changed) head/java/dbvis/distinfo (props changed) head/java/drexelsnmp/distinfo (props changed) head/java/eclipse-EPIC/distinfo (props changed) head/java/eclipse-RDT/distinfo (props changed) head/java/eclipse-aptana-radrails/distinfo (props changed) head/java/eclipse-aptana/distinfo (props changed) head/java/eclipse-aptana2/distinfo (props changed) head/java/eclipse-cdt/distinfo (props changed) head/java/eclipse-checkstyle/distinfo (props changed) head/java/eclipse-datatools/distinfo (props changed) head/java/eclipse-drjava/distinfo (props changed) head/java/eclipse-ecj/distinfo (props changed) head/java/eclipse-emf/distinfo (props changed) head/java/eclipse-examples/distinfo (props changed) head/java/eclipse-findbugs/distinfo (props changed) head/java/eclipse-gef-examples/distinfo (props changed) head/java/eclipse-gef/distinfo (props changed) head/java/eclipse-hibernatetools/distinfo (props changed) head/java/eclipse-jad/distinfo (props changed) head/java/eclipse-langpack/distinfo (props changed) head/java/eclipse-log4e/distinfo (props changed) head/java/eclipse-lomboz/distinfo (props changed) head/java/eclipse-ocl/distinfo (props changed) head/java/eclipse-pmd/distinfo (props changed) head/java/eclipse-propedit/distinfo (props changed) head/java/eclipse-quantum/distinfo (props changed) head/java/eclipse-shelled/distinfo (props changed) head/java/eclipse-sqlexplorer/distinfo (props changed) head/java/eclipse-sysdeo-tomcat/distinfo (props changed) head/java/eclipse-uml/distinfo (props changed) head/java/eclipse-vep-examples/distinfo (props changed) head/java/eclipse-vep/distinfo (props changed) head/java/eclipse-viplugin/distinfo (props changed) head/java/eclipse-webtools/distinfo (props changed) head/java/eclipse-windowbuilder/distinfo (props changed) head/java/eclipse/distinfo (props changed) head/java/icedtea-web/distinfo (props changed) head/java/infobus/distinfo (props changed) head/java/j2sdkee13/distinfo (props changed) head/java/jad/distinfo (props changed) head/java/jaf/distinfo (props changed) head/java/jai-imageio/distinfo (props changed) head/java/jai/distinfo (props changed) head/java/jakarta-bcel/distinfo (props changed) head/java/jakarta-commons-beanutils/distinfo (props changed) head/java/jakarta-commons-cli/distinfo (props changed) head/java/jakarta-commons-codec/distinfo (props changed) head/java/jakarta-commons-collections/distinfo (props changed) head/java/jakarta-commons-dbcp/distinfo (props changed) head/java/jakarta-commons-discovery/distinfo (props changed) head/java/jakarta-commons-httpclient/distinfo (props changed) head/java/jakarta-commons-lang/distinfo (props changed) head/java/jakarta-commons-logging/distinfo (props changed) head/java/jakarta-commons-pool/distinfo (props changed) head/java/jakarta-commons-primitives/distinfo (props changed) head/java/jakarta-oro/distinfo (props changed) head/java/jakarta-regexp/distinfo (props changed) head/java/jakarta-struts/distinfo (props changed) head/java/jamvm/distinfo (props changed) head/java/jasmin/distinfo (props changed) head/java/java-checkstyle/distinfo (props changed) head/java/java-cup/distinfo (props changed) head/java/java-getopt/distinfo (props changed) head/java/java3d/distinfo (props changed) head/java/javahelp/distinfo (props changed) head/java/javamail/distinfo (props changed) head/java/jaxen/distinfo (props changed) head/java/jboss5/distinfo (props changed) head/java/jboss7/distinfo (props changed) head/java/jc/distinfo (props changed) head/java/jcalendar/distinfo (props changed) head/java/jcckit/distinfo (props changed) head/java/jcommon/distinfo (props changed) head/java/jdbcpool/distinfo (props changed) head/java/jdom/distinfo (props changed) head/java/jflex/distinfo (props changed) head/java/jfreechart/distinfo (props changed) head/java/jgraph/distinfo (props changed) head/java/jgrapht/distinfo (props changed) head/java/jikes/distinfo (props changed) head/java/jlex/distinfo (props changed) head/java/jlint/distinfo (props changed) head/java/jmf/distinfo (props changed) head/java/jode/distinfo (props changed) head/java/jomp/distinfo (props changed) head/java/jrosetta/distinfo (props changed) head/java/jta/distinfo (props changed) head/java/jtiger/distinfo (props changed) head/java/jump/distinfo (props changed) head/java/langspec/distinfo (props changed) head/java/mmake/distinfo (props changed) head/java/mx4j/distinfo (props changed) head/java/netcomponents/distinfo (props changed) head/java/netrexx/distinfo (props changed) head/java/netty/distinfo (props changed) head/java/openjdk7/distinfo (props changed) head/java/phpeclipse/distinfo (props changed) head/java/poseidon/distinfo (props changed) head/java/proguard/distinfo (props changed) head/java/rubygem-rjb/distinfo (props changed) head/java/sablevm-classpath/distinfo (props changed) head/java/sablevm/distinfo (props changed) head/java/servingxml/distinfo (props changed) head/java/springframework/distinfo (props changed) head/java/springframework31/distinfo (props changed) head/java/sqlitejdbc/distinfo (props changed) head/java/trove4j/distinfo (props changed) head/java/veditor/distinfo (props changed) head/java/visualvm/distinfo (props changed) head/java/xdoclet/distinfo (props changed) head/korean/acroread8/distinfo (props changed) head/korean/aleefonts-ttf/distinfo (props changed) head/korean/ami/distinfo (props changed) head/korean/baekmukfonts-bdf/distinfo (props changed) head/korean/baekmukfonts-ttf/distinfo (props changed) head/korean/engdic/distinfo (props changed) head/korean/eterm/distinfo (props changed) head/korean/fcitx-hangul/distinfo (props changed) head/korean/gtkcomm/distinfo (props changed) head/korean/h2ps/distinfo (props changed) head/korean/hanyangfonts/distinfo (props changed) head/korean/hcode/distinfo (props changed) head/korean/hmconv/distinfo (props changed) head/korean/hpscat/distinfo (props changed) head/korean/hunspell/distinfo (props changed) head/korean/ibus-hangul/distinfo (props changed) head/korean/imhangul/distinfo (props changed) head/korean/kaistfonts/distinfo (props changed) head/korean/ko.TeX-fonts-base/distinfo (props changed) head/korean/ko.TeX-fonts-extra/distinfo (props changed) head/korean/ko.TeX/distinfo (props changed) head/korean/libhangul/distinfo (props changed) head/korean/libreoffice/distinfo (props changed) head/korean/man-doc/distinfo (props changed) head/korean/munhwafonts-cid/distinfo (props changed) head/korean/nabi/distinfo (props changed) head/korean/nanumcoding-ttf/distinfo (props changed) head/korean/nanumfonts-otf/distinfo.otf (props changed) head/korean/nanumfonts-otf/distinfo.ttf (props changed) head/korean/nhpf/distinfo (props changed) head/korean/scim-hangul/distinfo (props changed) head/korean/scim-tables/distinfo (props changed) head/korean/unfonts-core/distinfo.core-ttf (props changed) head/korean/unfonts-core/distinfo.extra-ttf (props changed) head/korean/uniksc/distinfo (props changed) head/korean/xpdf/distinfo (props changed) head/lang/Gofer/distinfo (props changed) head/lang/STk/distinfo (props changed) head/lang/Sather/distinfo (props changed) head/lang/abcl/distinfo (props changed) head/lang/afnix/distinfo (props changed) head/lang/algol68g/distinfo (props changed) head/lang/alisp/distinfo (props changed) head/lang/arena/distinfo (props changed) head/lang/atlast/distinfo (props changed) head/lang/awka/distinfo (props changed) head/lang/bas2tap/distinfo (props changed) head/lang/bsh/distinfo (props changed) head/lang/bwbasic/distinfo (props changed) head/lang/caml-light/distinfo (props changed) head/lang/ccl/distinfo (props changed) head/lang/cdent/distinfo (props changed) head/lang/cduce/distinfo (props changed) head/lang/cfortran/distinfo (props changed) head/lang/cint/distinfo (props changed) head/lang/clang-devel/distinfo (props changed) head/lang/clang31/distinfo (props changed) head/lang/clang32/distinfo (props changed) head/lang/clang33/distinfo (props changed) head/lang/clang34/distinfo (props changed) head/lang/clay/distinfo (props changed) head/lang/clisp/distinfo (props changed) head/lang/clojure-contrib/distinfo (props changed) head/lang/clojure-mode.el/distinfo (props changed) head/lang/cmucl-extra/distinfo (props changed) head/lang/cmucl/distinfo (props changed) head/lang/cocor/distinfo (props changed) head/lang/csharp-mode.el/distinfo (props changed) head/lang/cython/distinfo (props changed) head/lang/dice/distinfo (props changed) head/lang/diveintopython/distinfo (props changed) head/lang/dlv/distinfo (props changed) head/lang/dmd/distinfo (props changed) head/lang/dmd2/distinfo (props changed) head/lang/dragonegg-devel46/distinfo (props changed) head/lang/dragonegg46-33/distinfo (props changed) head/lang/ecl/distinfo (props changed) head/lang/elan/distinfo (props changed) head/lang/elk/distinfo (props changed) head/lang/emacs-lisp-intro/distinfo (props changed) head/lang/embryo/distinfo (props changed) head/lang/erlang-runtime15/distinfo (props changed) head/lang/erlang-runtime16/distinfo (props changed) head/lang/erlang/distinfo (props changed) head/lang/execline/distinfo (props changed) head/lang/expect-devel/distinfo (props changed) head/lang/expect/distinfo (props changed) head/lang/ezm3/distinfo (props changed) head/lang/f2c/distinfo (props changed) head/lang/f77/distinfo (props changed) head/lang/fasm/distinfo (props changed) head/lang/fbbi/distinfo (props changed) head/lang/ferite/distinfo (props changed) head/lang/ficl/distinfo (props changed) head/lang/fpc-docs/distinfo (props changed) head/lang/fpc/distinfo (props changed) head/lang/fsharp/distinfo (props changed) head/lang/g95/distinfo (props changed) head/lang/gambit-c/distinfo (props changed) head/lang/gauche/distinfo (props changed) head/lang/gawk/distinfo (props changed) head/lang/gcc-aux/distinfo (props changed) head/lang/gcc-ecj45/distinfo (props changed) head/lang/gcc/distinfo (props changed) head/lang/gcc34/distinfo (props changed) head/lang/gcc44/distinfo (props changed) head/lang/gcc46/distinfo (props changed) head/lang/gcc47/distinfo (props changed) head/lang/gcc48/distinfo (props changed) head/lang/gcc49/distinfo (props changed) head/lang/gcl/distinfo (props changed) head/lang/gforth/distinfo (props changed) head/lang/gnat-aux/distinfo (props changed) head/lang/gnat/distinfo (props changed) head/lang/gnatdroid-armv5/distinfo (props changed) head/lang/gnatdroid-armv7/distinfo (props changed) head/lang/gnatdroid-binutils/distinfo (props changed) head/lang/gnatdroid-sysroot/distinfo (props changed) head/lang/gnustep-base/distinfo (props changed) head/lang/gnustep-guile/distinfo (props changed) head/lang/groovy/distinfo (props changed) head/lang/gscheme/distinfo (props changed) head/lang/guile/distinfo (props changed) head/lang/harbour/distinfo (props changed) head/lang/haskell-mode.el/distinfo (props changed) head/lang/hiphop-php/distinfo (props changed) head/lang/hla/distinfo (props changed) head/lang/hope/distinfo (props changed) head/lang/hs-brainfuck/distinfo (props changed) head/lang/hs-epic/distinfo (props changed) head/lang/hs-unlambda/distinfo (props changed) head/lang/huc/distinfo (props changed) head/lang/hugs/distinfo (props changed) head/lang/icc/distinfo (props changed) head/lang/ici/distinfo (props changed) head/lang/icon/distinfo (props changed) head/lang/ifc/distinfo (props changed) head/lang/ikarus/distinfo (props changed) head/lang/intel2gas/distinfo (props changed) head/lang/intercal/distinfo (props changed) head/lang/jakarta-commons-jelly/distinfo (props changed) head/lang/klone/distinfo (props changed) head/lang/kroc/distinfo (props changed) head/lang/lafontaine/distinfo (props changed) head/lang/libjit/distinfo (props changed) head/lang/libobjc2/distinfo (props changed) head/lang/libstdc++_stldoc_3.4.0/distinfo (props changed) head/lang/libstdc++_stldoc_4.2.2/distinfo (props changed) head/lang/linux-f10-libg2c/distinfo.i386 (props changed) head/lang/linux-f10-tcl85/distinfo.i386 (props changed) head/lang/linux-j/distinfo (props changed) head/lang/logo/distinfo (props changed) head/lang/lua-mode.el/distinfo (props changed) head/lang/lua/distinfo (props changed) head/lang/luajit/distinfo (props changed) head/lang/lush/distinfo (props changed) head/lang/malbolge/distinfo (props changed) head/lang/maude/distinfo (props changed) head/lang/mawk/distinfo (props changed) head/lang/mdk/distinfo (props changed) head/lang/metaocaml/distinfo (props changed) head/lang/mit-scheme/distinfo (props changed) head/lang/mixal/distinfo (props changed) head/lang/ml-pnet/distinfo (props changed) head/lang/mlton/distinfo (props changed) head/lang/mmix/distinfo (props changed) head/lang/mono-basic/distinfo (props changed) head/lang/mono/distinfo (props changed) head/lang/moscow_ml/distinfo (props changed) head/lang/mosh/distinfo (props changed) head/lang/mpd/distinfo (props changed) head/lang/mtasc/distinfo (props changed) head/lang/nawk/distinfo (props changed) head/lang/nbc/distinfo (props changed) head/lang/nbfc/distinfo (props changed) head/lang/neko/distinfo (props changed) head/lang/nesasm/distinfo (props changed) head/lang/newlisp-devel/distinfo (props changed) head/lang/newlisp/distinfo (props changed) head/lang/nhc98/distinfo (props changed) head/lang/nickle/distinfo (props changed) head/lang/nml/distinfo (props changed) head/lang/nqc/distinfo (props changed) head/lang/nwcc/distinfo (props changed) head/lang/ocaml-autoconf/distinfo (props changed) head/lang/ocaml-camlidl/distinfo (props changed) head/lang/ocaml-doc/distinfo (props changed) head/lang/ocaml-examples/distinfo (props changed) head/lang/ocaml-mode.el/distinfo (props changed) head/lang/ocaml/distinfo (props changed) head/lang/ocs/distinfo (props changed) head/lang/ofc/distinfo (props changed) head/lang/ohugs/distinfo (props changed) head/lang/onyx/distinfo (props changed) head/lang/oo2c/distinfo (props changed) head/lang/oorexx/distinfo (props changed) head/lang/opa/distinfo (props changed) head/lang/open-cobol/distinfo (props changed) head/lang/otcl/distinfo (props changed) head/lang/p2c/distinfo (props changed) head/lang/p5-Data-JavaScript/distinfo (props changed) head/lang/p5-Expect/distinfo (props changed) head/lang/p5-ExtUtils-F77/distinfo (props changed) head/lang/p5-Interpolation/distinfo (props changed) head/lang/p5-JSAN/distinfo (props changed) head/lang/p5-JavaScript-SpiderMonkey/distinfo (props changed) head/lang/p5-JavaScript-Squish/distinfo (props changed) head/lang/p5-JavaScript-Value-Escape/distinfo (props changed) head/lang/p5-List-MoreUtils/distinfo (props changed) head/lang/p5-Marpa-PP/distinfo (props changed) head/lang/p5-Marpa-XS/distinfo (props changed) head/lang/p5-Marpa/distinfo (props changed) head/lang/p5-Modern-Perl/distinfo (props changed) head/lang/p5-Parse-Perl/distinfo (props changed) head/lang/p5-Perl6-Subs/distinfo (props changed) head/lang/p5-Pugs-Compiler-Rule/distinfo (props changed) head/lang/p5-Quantum-Superpositions/distinfo (props changed) head/lang/p5-Switch/distinfo (props changed) head/lang/p5-Tcl/distinfo (props changed) head/lang/p5-Test-XPath/distinfo (props changed) head/lang/p5-Try-Tiny/distinfo (props changed) head/lang/p5-ePerl/distinfo (props changed) head/lang/p5-signatures/distinfo (props changed) head/lang/p5-v6/distinfo (props changed) head/lang/pbasic/distinfo (props changed) head/lang/pcc/distinfo (props changed) head/lang/pecl-perl/distinfo (props changed) head/lang/petite-chez/distinfo (props changed) head/lang/pfe/distinfo (props changed) head/lang/phantomjs/distinfo (props changed) head/lang/pharo/distinfo (props changed) head/lang/phc/distinfo (props changed) head/lang/php-mode.el/distinfo (props changed) head/lang/php_doc/distinfo (props changed) head/lang/picoc/distinfo (props changed) head/lang/pike76/distinfo (props changed) head/lang/pike78/distinfo (props changed) head/lang/pnet-base/distinfo (props changed) head/lang/pnetlib/distinfo (props changed) head/lang/ptoc/distinfo (props changed) head/lang/pure/distinfo (props changed) head/lang/py-mx-base/distinfo (props changed) head/lang/py-prolog/distinfo (props changed) head/lang/pypy-devel/distinfo (props changed) head/lang/pypy/distinfo (props changed) head/lang/pypy3-devel/distinfo (props changed) head/lang/python-mode.el/distinfo (props changed) head/lang/python31/distinfo (props changed) head/lang/python32/distinfo (props changed) head/lang/python33/distinfo (props changed) head/lang/qscheme/distinfo (props changed) head/lang/racket-textual/distinfo (props changed) head/lang/racket/distinfo (props changed) head/lang/ratfor/distinfo (props changed) head/lang/rexx-imc/distinfo (props changed) head/lang/rexx-regina/distinfo (props changed) head/lang/rexx-regutil/distinfo (props changed) head/lang/rexx-wrapper/distinfo (props changed) head/lang/rhino/distinfo (props changed) head/lang/rscheme/distinfo (props changed) head/lang/rubinius/distinfo (props changed) head/lang/ruby-man/distinfo (props changed) head/lang/ruby-programmingruby/distinfo (props changed) head/lang/ruby-usersguide/distinfo (props changed) head/lang/rust/distinfo (props changed) head/lang/s9fes/distinfo (props changed) head/lang/sather-specification/distinfo (props changed) head/lang/sather-tutorial/distinfo (props changed) head/lang/scala-docs/distinfo (props changed) head/lang/scheme48/distinfo (props changed) head/lang/schemetoc/distinfo (props changed) head/lang/scsh/distinfo (props changed) head/lang/sdcc/distinfo (props changed) head/lang/see-devel/distinfo (props changed) head/lang/see/distinfo (props changed) head/lang/siod/distinfo (props changed) head/lang/sisc/distinfo (props changed) head/lang/sketchy/distinfo (props changed) head/lang/slib/distinfo (props changed) head/lang/slisp/distinfo (props changed) head/lang/smalltalk/distinfo (props changed) head/lang/sml-mode.el/distinfo (props changed) head/lang/sml-nj-devel/distinfo (props changed) head/lang/sml-nj/distinfo (props changed) head/lang/snobol4/distinfo (props changed) head/lang/spidermonkey17/distinfo (props changed) head/lang/spl/distinfo (props changed) head/lang/squeak/distinfo (props changed) head/lang/squirrel/distinfo (props changed) head/lang/sr/distinfo (props changed) head/lang/stalin/distinfo (props changed) head/lang/starlogo/distinfo (props changed) head/lang/stklos/distinfo (props changed) head/lang/stldoc/distinfo (props changed) head/lang/swi-pl/distinfo (props changed) head/lang/sxm/distinfo (props changed) head/lang/t3x/distinfo (props changed) head/lang/tcc/distinfo (props changed) head/lang/tclX/distinfo (props changed) head/lang/tcltutor/distinfo (props changed) head/lang/tinypy/distinfo (props changed) head/lang/tolua++/distinfo (props changed) head/lang/tolua/distinfo (props changed) head/lang/treecc/distinfo (props changed) head/lang/tuareg-mode.el/distinfo (props changed) head/lang/twelf/distinfo (props changed) head/lang/ucc/distinfo (props changed) head/lang/urweb/distinfo (props changed) head/lang/v8-devel/distinfo (props changed) head/lang/v8/distinfo (props changed) head/lang/visualworks/distinfo (props changed) head/lang/whitespace/distinfo (props changed) head/lang/x10/distinfo (props changed) head/lang/xds-c/distinfo (props changed) head/lang/xds/distinfo (props changed) head/lang/yabasic/distinfo (props changed) head/lang/yorick/distinfo (props changed) head/lang/ypsilon/distinfo (props changed) head/mail/abook/distinfo (props changed) head/mail/adcomplain/distinfo (props changed) head/mail/addresses-goodies/distinfo (props changed) head/mail/addresses/distinfo (props changed) head/mail/akpop3d/distinfo (props changed) head/mail/alpine/distinfo (props changed) head/mail/altermime/distinfo (props changed) head/mail/althea/distinfo (props changed) head/mail/amavis-logwatch/distinfo (props changed) head/mail/annoyance-filter/distinfo (props changed) head/mail/anomy-sanitizer/distinfo (props changed) head/mail/antivirus-milter/distinfo (props changed) head/mail/anubis/distinfo (props changed) head/mail/archivemail/distinfo (props changed) head/mail/archiveopteryx/distinfo (props changed) head/mail/archivesmtp/distinfo (props changed) head/mail/archmbox/distinfo (props changed) head/mail/ask/distinfo (props changed) head/mail/asmail/distinfo (props changed) head/mail/assp/distinfo (props changed) head/mail/atmail/distinfo (props changed) head/mail/automx/distinfo (props changed) head/mail/autorespond/distinfo (props changed) head/mail/autosig/distinfo (props changed) head/mail/balsa/distinfo (props changed) head/mail/batv-milter/distinfo (props changed) head/mail/bayespam/distinfo (props changed) head/mail/bbmail/distinfo (props changed) head/mail/biabam/distinfo (props changed) head/mail/biffer/distinfo (props changed) head/mail/bmf/distinfo (props changed) head/mail/bsfilter/distinfo (props changed) head/mail/bsmtp/distinfo (props changed) head/mail/bulk_mailer/distinfo (props changed) head/mail/c-sig/distinfo (props changed) head/mail/cclient/distinfo (props changed) head/mail/chk4mail/distinfo (props changed) head/mail/clamfilter/distinfo (props changed) head/mail/contact-lookup-applet/distinfo (props changed) head/mail/coolmail/distinfo (props changed) head/mail/courier-pythonfilter/distinfo (props changed) head/mail/courier/distinfo (props changed) head/mail/couriergraph/distinfo (props changed) head/mail/crm114/distinfo (props changed) head/mail/cucipop/distinfo (props changed) head/mail/cvsmail/distinfo (props changed) head/mail/cyrus-imapd2/distinfo (props changed) head/mail/cyrus-imapd22/distinfo (props changed) head/mail/cyrus-imapd23/distinfo (props changed) head/mail/cyrus-imapd24/distinfo (props changed) head/mail/cyrus2courier/distinfo (props changed) head/mail/cyrus2dovecot/distinfo (props changed) head/mail/davmail/distinfo (props changed) head/mail/dbmail22/distinfo (props changed) head/mail/dcc-dccd/distinfo (props changed) head/mail/delatt/distinfo (props changed) head/mail/dk-milter/distinfo (props changed) head/mail/dkfilter/distinfo (props changed) head/mail/dkimproxy/distinfo (props changed) head/mail/dma/distinfo (props changed) head/mail/dovecot-antispam/distinfo (props changed) head/mail/dovecot-managesieve/distinfo (props changed) head/mail/dovecot-sieve/distinfo (props changed) head/mail/dovecot/distinfo (props changed) head/mail/dovecot2-antispam-plugin/distinfo (props changed) head/mail/drac/distinfo (props changed) head/mail/dracmail/distinfo (props changed) head/mail/dsbl-testers/distinfo (props changed) head/mail/dspam-devel/distinfo (props changed) head/mail/dspam/distinfo (props changed) head/mail/ecartis/distinfo (props changed) head/mail/elm+ME/distinfo (props changed) head/mail/elm/distinfo (props changed) head/mail/elmo-devel/distinfo (props changed) head/mail/elmo/distinfo (props changed) head/mail/emh/distinfo (props changed) head/mail/emil/distinfo (props changed) head/mail/enma/distinfo (props changed) head/mail/eps/distinfo (props changed) head/mail/epstools/distinfo (props changed) head/mail/esmtp/distinfo (props changed) head/mail/evolution-exchange/distinfo (props changed) head/mail/evolution-mapi/distinfo (props changed) head/mail/evolution/distinfo (props changed) head/mail/exact/distinfo (props changed) head/mail/exilog/distinfo (props changed) head/mail/exim-doc-html/distinfo (props changed) head/mail/exim/distinfo (props changed) head/mail/exipick/distinfo (props changed) head/mail/exmh2/distinfo (props changed) head/mail/extmail/distinfo (props changed) head/mail/extman/distinfo (props changed) head/mail/ez-pine-gpg/distinfo (props changed) head/mail/ezmlm-idx/distinfo (props changed) head/mail/ezmlm-web/distinfo (props changed) head/mail/ezmlm/distinfo (props changed) head/mail/faces/distinfo (props changed) head/mail/fdm/distinfo (props changed) head/mail/filtermail/distinfo (props changed) head/mail/findmaildirs/distinfo (props changed) head/mail/firemime/distinfo (props changed) head/mail/firepay/distinfo (props changed) head/mail/ftrack/distinfo (props changed) head/mail/gbuffy/distinfo (props changed) head/mail/gensig/distinfo (props changed) head/mail/gkrellmmailwatch2/distinfo (props changed) head/mail/gld/distinfo (props changed) head/mail/gmail-notify/distinfo (props changed) head/mail/gmime2/distinfo (props changed) head/mail/gml/distinfo (props changed) head/mail/gnarwl/distinfo (props changed) head/mail/gnome-gmail-notifier/distinfo (props changed) head/mail/gnubiff/distinfo (props changed) head/mail/gnumail/distinfo (props changed) head/mail/gotmail/distinfo (props changed) head/mail/grepmail/distinfo (props changed) head/mail/greyfix/distinfo (props changed) head/mail/greylite/distinfo (props changed) head/mail/gubby/distinfo (props changed) head/mail/hashcash/distinfo (props changed) head/mail/hbiff/distinfo (props changed) head/mail/heirloom-mailx/distinfo (props changed) head/mail/horde-imp/distinfo (props changed) head/mail/horde-ingo/distinfo (props changed) head/mail/horde-turba/distinfo (props changed) head/mail/horde-webmail/distinfo (props changed) head/mail/horde3-dimp/distinfo (props changed) head/mail/horde3-forwards/distinfo (props changed) head/mail/horde3-imp/distinfo (props changed) head/mail/horde3-ingo/distinfo (props changed) head/mail/horde3-mimp/distinfo (props changed) head/mail/horde3-turba/distinfo (props changed) head/mail/horde3-vacation/distinfo (props changed) head/mail/hotwayd/distinfo (props changed) head/mail/hs-email-validate/distinfo (props changed) head/mail/hs-mime-mail/distinfo (props changed) head/mail/hs-mime/distinfo (props changed) head/mail/ifile/distinfo (props changed) head/mail/ilohamail-devel/distinfo (props changed) head/mail/ilohamail/distinfo (props changed) head/mail/im/distinfo (props changed) head/mail/imap-uw/distinfo (props changed) head/mail/imapfilter/distinfo (props changed) head/mail/imapsync/distinfo (props changed) head/mail/imaptools/distinfo (props changed) head/mail/imaputils/distinfo (props changed) head/mail/isbg/distinfo (props changed) head/mail/isoqlog/distinfo (props changed) head/mail/isync/distinfo (props changed) head/mail/james/distinfo (props changed) head/mail/jamlib/distinfo (props changed) head/mail/jmba/distinfo (props changed) head/mail/junkfilter/distinfo (props changed) head/mail/kbiff/distinfo (props changed) head/mail/kshowmail/distinfo (props changed) head/mail/lbdb/distinfo (props changed) head/mail/lens/distinfo (props changed) head/mail/libcmime/distinfo (props changed) head/mail/libdkim/distinfo (props changed) head/mail/libdomainkeys/distinfo (props changed) head/mail/libesmtp/distinfo (props changed) head/mail/libetpan/distinfo (props changed) head/mail/libmapi/distinfo (props changed) head/mail/librfc822/distinfo (props changed) head/mail/libsieve/distinfo (props changed) head/mail/libspamtest/distinfo (props changed) head/mail/libspf/distinfo (props changed) head/mail/libsrs2/distinfo (props changed) head/mail/libsrs_alt/distinfo (props changed) head/mail/libvmime/distinfo (props changed) head/mail/listadmin/distinfo (props changed) head/mail/lmtp2nntp/distinfo (props changed) head/mail/lookout/distinfo (props changed) head/mail/lurker/distinfo (props changed) head/mail/mahogany/distinfo (props changed) head/mail/mail-notification/distinfo (props changed) head/mail/mail2procmailrc/distinfo (props changed) head/mail/mail2sms/distinfo (props changed) head/mail/mailcrypt/distinfo (props changed) head/mail/maildirsync/distinfo (props changed) head/mail/mailfmt/distinfo (props changed) head/mail/mailfront/distinfo (props changed) head/mail/mailgraph/distinfo (props changed) head/mail/mailmgr/distinfo (props changed) head/mail/mailscanner/distinfo (props changed) head/mail/mailsync/distinfo (props changed) head/mail/mailtray/distinfo (props changed) head/mail/mailutils/distinfo (props changed) head/mail/mailx/distinfo (props changed) head/mail/mairix/distinfo (props changed) head/mail/majordomo/distinfo (props changed) head/mail/masqmail/distinfo (props changed) head/mail/mb2md/distinfo (props changed) head/mail/mbox2imap/distinfo (props changed) head/mail/mboxcheck-applet/distinfo (props changed) head/mail/mboxgrep/distinfo (props changed) head/mail/mboxstats/distinfo (props changed) head/mail/mbx2mbox/distinfo (props changed) head/mail/mdpop3d/distinfo (props changed) head/mail/mess822/distinfo (props changed) head/mail/meta1/distinfo (props changed) head/mail/metamail/distinfo (props changed) head/mail/mew/distinfo (props changed) head/mail/milter-bogom/distinfo (props changed) head/mail/milter-callback/distinfo (props changed) head/mail/milter-regex/distinfo (props changed) head/mail/milter-skem/distinfo (props changed) head/mail/mime-construct/distinfo (props changed) head/mail/mime4j/distinfo (props changed) head/mail/mini_sendmail/distinfo (props changed) head/mail/minimalist/distinfo (props changed) head/mail/missey/distinfo (props changed) head/mail/mixmaster/distinfo (props changed) head/mail/ml/distinfo (props changed) head/mail/mlmmj/distinfo (props changed) head/mail/mls/distinfo (props changed) head/mail/mmr/distinfo (props changed) head/mail/movemail/distinfo (props changed) head/mail/mpop/distinfo (props changed) head/mail/mreport/distinfo (props changed) head/mail/msgconvert/distinfo (props changed) head/mail/msmtp/distinfo (props changed) head/mail/mu/distinfo (props changed) head/mail/mulberry/distinfo (props changed) head/mail/mutt14/distinfo (props changed) head/mail/mutt_vc_query/distinfo (props changed) head/mail/muttils/distinfo (props changed) head/mail/muttzilla/distinfo (props changed) head/mail/nbsmtp/distinfo (props changed) head/mail/newmail/distinfo (props changed) head/mail/nmh/distinfo (props changed) head/mail/nmzmail/distinfo (props changed) head/mail/noattach/distinfo (props changed) head/mail/nocc/distinfo (props changed) head/mail/nohtml/distinfo (props changed) head/mail/normalizemime/distinfo (props changed) head/mail/notmuch/distinfo (props changed) head/mail/nullmailer/distinfo (props changed) head/mail/nullpop/distinfo (props changed) head/mail/offlineimap/distinfo (props changed) head/mail/opensmtpd/distinfo (props changed) head/mail/openwebmail/distinfo (props changed) head/mail/osbf-lua/distinfo (props changed) head/mail/ovs/distinfo (props changed) head/mail/p3scan/distinfo (props changed) head/mail/p5-CGP-CLI/distinfo (props changed) head/mail/p5-Clamd/distinfo (props changed) head/mail/p5-Dancer-Plugin-Email/distinfo (props changed) head/mail/p5-Data-Validate-Email/distinfo (props changed) head/mail/p5-Email-Abstract/distinfo (props changed) head/mail/p5-Email-Address-Loose/distinfo (props changed) head/mail/p5-Email-AddressParser/distinfo (props changed) head/mail/p5-Email-Date-Format/distinfo (props changed) head/mail/p5-Email-Delete/distinfo (props changed) head/mail/p5-Email-Find/distinfo (props changed) head/mail/p5-Email-Folder-IMAP/distinfo (props changed) head/mail/p5-Email-Folder-IMAPS/distinfo (props changed) head/mail/p5-Email-Folder-POP3/distinfo (props changed) head/mail/p5-Email-Folder/distinfo (props changed) head/mail/p5-Email-FolderType-Net/distinfo (props changed) head/mail/p5-Email-FolderType/distinfo (props changed) head/mail/p5-Email-LocalDelivery-Ezmlm/distinfo (props changed) head/mail/p5-Email-MIME-Attachment-Stripper/distinfo (props changed) head/mail/p5-Email-MIME-ContentType/distinfo (props changed) head/mail/p5-Email-MIME-CreateHTML/distinfo (props changed) head/mail/p5-Email-MIME-Creator-ISO_2022_JP/distinfo (props changed) head/mail/p5-Email-MIME-Encodings/distinfo (props changed) head/mail/p5-Email-MIME/distinfo (props changed) head/mail/p5-Email-MessageID/distinfo (props changed) head/mail/p5-Email-Reply/distinfo (props changed) head/mail/p5-Email-Send/distinfo (props changed) head/mail/p5-Email-Sender-Transport-SQLite/distinfo (props changed) head/mail/p5-Email-Simple/distinfo (props changed) head/mail/p5-Email-Stuff/distinfo (props changed) head/mail/p5-Email-Valid-Loose/distinfo (props changed) head/mail/p5-Email-Valid/distinfo (props changed) head/mail/p5-FuzzyOcr-devel/distinfo (props changed) head/mail/p5-FuzzyOcr/distinfo (props changed) head/mail/p5-GMail-IMAPD/distinfo (props changed) head/mail/p5-IMAP-Admin/distinfo (props changed) head/mail/p5-IMAP-Client/distinfo (props changed) head/mail/p5-IMAP-Sieve/distinfo (props changed) head/mail/p5-LMAP-CID2SPF/distinfo (props changed) head/mail/p5-Log-Procmail/distinfo (props changed) head/mail/p5-MIME-AltWords/distinfo (props changed) head/mail/p5-MIME-Charset/distinfo (props changed) head/mail/p5-MIME-EncWords/distinfo (props changed) head/mail/p5-MIME-Explode/distinfo (props changed) head/mail/p5-MIME-Fast/distinfo (props changed) head/mail/p5-MIME-Lite-HTML/distinfo (props changed) head/mail/p5-MIME-Lite-TT-HTML/distinfo (props changed) head/mail/p5-MIME-Lite-TT/distinfo (props changed) head/mail/p5-Mail-Address-MobileJp/distinfo (props changed) head/mail/p5-Mail-Alias/distinfo (props changed) head/mail/p5-Mail-Audit-Attach/distinfo (props changed) head/mail/p5-Mail-Audit/distinfo (props changed) head/mail/p5-Mail-Box-Parser-C/distinfo (props changed) head/mail/p5-Mail-Box/distinfo (props changed) head/mail/p5-Mail-Bulkmail/distinfo (props changed) head/mail/p5-Mail-Cache/distinfo (props changed) head/mail/p5-Mail-CheckUser/distinfo (props changed) head/mail/p5-Mail-ClamAV/distinfo (props changed) head/mail/p5-Mail-DKIM/distinfo (props changed) head/mail/p5-Mail-DomainKeys/distinfo (props changed) head/mail/p5-Mail-Ezmlm/distinfo (props changed) head/mail/p5-Mail-Field-Received/distinfo (props changed) head/mail/p5-Mail-FilterXML/distinfo (props changed) head/mail/p5-Mail-Folder/distinfo (props changed) head/mail/p5-Mail-Freshmeat/distinfo (props changed) head/mail/p5-Mail-GnuPG/distinfo (props changed) head/mail/p5-Mail-Graph/distinfo (props changed) head/mail/p5-Mail-IMAPTalk-MailCache/distinfo (props changed) head/mail/p5-Mail-IMAPTalk/distinfo (props changed) head/mail/p5-Mail-LMLM/distinfo (props changed) head/mail/p5-Mail-ListDetector/distinfo (props changed) head/mail/p5-Mail-MailStats/distinfo (props changed) head/mail/p5-Mail-Mbox-MessageParser/distinfo (props changed) head/mail/p5-Mail-MboxParser/distinfo (props changed) head/mail/p5-Mail-OpenRelay-Simple/distinfo (props changed) head/mail/p5-Mail-POP3Client/distinfo (props changed) head/mail/p5-Mail-Procmail/distinfo (props changed) head/mail/p5-Mail-Procmailrc/distinfo (props changed) head/mail/p5-Mail-RBL/distinfo (props changed) head/mail/p5-Mail-RFC822-Address/distinfo (props changed) head/mail/p5-Mail-SRS/distinfo (props changed) head/mail/p5-Mail-SendEasy/distinfo (props changed) head/mail/p5-Mail-Sender/distinfo (props changed) head/mail/p5-Mail-Sendmail/distinfo (props changed) head/mail/p5-Mail-SpamAssassin/distinfo (props changed) head/mail/p5-Mail-Spool/distinfo (props changed) head/mail/p5-Mail-Tools/distinfo (props changed) head/mail/p5-Mail-Transport-Dbx/distinfo (props changed) head/mail/p5-Mail-Verify/distinfo (props changed) head/mail/p5-Mail-Verp/distinfo (props changed) head/mail/p5-Mail-Webmail-Gmail/distinfo (props changed) head/mail/p5-Net-IMAP-Client/distinfo (props changed) head/mail/p5-Net-IMAP-Server/distinfo (props changed) head/mail/p5-Net-IMAP-Simple-SSL/distinfo (props changed) head/mail/p5-Net-ManageSieve/distinfo (props changed) head/mail/p5-Net-POP3-SSLWrapper/distinfo (props changed) head/mail/p5-Net-QMTP/distinfo (props changed) head/mail/p5-Net-SMTP-SSL/distinfo (props changed) head/mail/p5-Net-SMTP-Server/distinfo (props changed) head/mail/p5-Net-SMTP-TLS/distinfo (props changed) head/mail/p5-Net-SMTP_auth/distinfo (props changed) head/mail/p5-Net-SenderBase/distinfo (props changed) head/mail/p5-Net-Server-Mail/distinfo (props changed) head/mail/p5-POE-Component-Client-POP3/distinfo (props changed) head/mail/p5-POE-Component-Client-SMTP/distinfo (props changed) head/mail/p5-POE-Component-SMTP/distinfo (props changed) head/mail/p5-POE-Filter-Transparent-SMTP/distinfo (props changed) head/mail/p5-Parse-Syslog-Mail/distinfo (props changed) head/mail/p5-Qmail-Envelope/distinfo (props changed) head/mail/p5-SES/distinfo (props changed) head/mail/p5-Sendmail-AccessDB/distinfo (props changed) head/mail/p5-Sendmail-Milter/distinfo (props changed) head/mail/p5-URI-imap/distinfo (props changed) head/mail/p5-URI-imaps/distinfo (props changed) head/mail/p5-WWW-GMail/distinfo (props changed) head/mail/p5-WWW-Hotmail/distinfo (props changed) head/mail/p5-ZConf-Mail/distinfo (props changed) head/mail/p5-qpsmtpd/distinfo (props changed) head/mail/pantomime/distinfo (props changed) head/mail/pathalias/distinfo (props changed) head/mail/pear-Contact_Vcard_Build/distinfo (props changed) head/mail/pear-Contact_Vcard_Parse/distinfo (props changed) head/mail/pear-Horde_Imap_Client/distinfo (props changed) head/mail/pear-Horde_Kolab_Storage/distinfo (props changed) head/mail/pear-Horde_ListHeaders/distinfo (props changed) head/mail/pear-Horde_Mail/distinfo (props changed) head/mail/pear-Horde_Mime/distinfo (props changed) head/mail/pear-Horde_Mime_Viewer/distinfo (props changed) head/mail/pear-Horde_Smtp/distinfo (props changed) head/mail/pear-Mail/distinfo (props changed) head/mail/pear-Mail_Mbox/distinfo (props changed) head/mail/pear-Mail_Queue/distinfo (props changed) head/mail/pear-Mail_mimeDecode/distinfo (props changed) head/mail/pear-Net_Cyrus/distinfo (props changed) head/mail/pear-Net_IMAP/distinfo (props changed) head/mail/pear-Net_LMTP/distinfo (props changed) head/mail/pecl-esmtp/distinfo (props changed) head/mail/pecl-mailparse/distinfo (props changed) head/mail/pecl-pop3/distinfo (props changed) head/mail/pflogstats/distinfo (props changed) head/mail/pflogsumm/distinfo (props changed) head/mail/pfqueue/distinfo (props changed) head/mail/pgpsendmail/distinfo (props changed) head/mail/phpmailer2/distinfo (props changed) head/mail/pine-pgp-filters/distinfo (props changed) head/mail/pm-lib/distinfo (props changed) head/mail/policyd2/distinfo (props changed) head/mail/pop-before-smtp/distinfo (props changed) head/mail/pop3gwd/distinfo (props changed) head/mail/pop3lite/distinfo (props changed) head/mail/pop3proxy/distinfo (props changed) head/mail/pop3vscan/distinfo (props changed) head/mail/popa3d/distinfo (props changed) head/mail/popcheck/distinfo (props changed) head/mail/popd/distinfo (props changed) head/mail/poppassd/distinfo (props changed) head/mail/popper/distinfo (props changed) head/mail/poppwd/distinfo (props changed) head/mail/poppy/distinfo (props changed) head/mail/popular/distinfo (props changed) head/mail/postfinger/distinfo (props changed) head/mail/postfix-gps/distinfo (props changed) head/mail/postfix-logwatch/distinfo (props changed) head/mail/postfix-policyd-sf/distinfo (props changed) head/mail/postfix-policyd-spf-perl/distinfo (props changed) head/mail/postfix-policyd-spf-python/distinfo (props changed) head/mail/postfix-policyd-weight/distinfo (props changed) head/mail/postgrey/distinfo (props changed) head/mail/postpals/distinfo (props changed) head/mail/prayer/distinfo (props changed) head/mail/premail/distinfo (props changed) head/mail/prepflog/distinfo (props changed) head/mail/procmail/distinfo (props changed) head/mail/prom-wl/distinfo (props changed) head/mail/pronto/distinfo (props changed) head/mail/py-Products.MailHost/distinfo (props changed) head/mail/py-Products.SecureMailHost/distinfo (props changed) head/mail/py-apolicy/distinfo (props changed) head/mail/py-authres/distinfo (props changed) head/mail/py-cyruslib/distinfo (props changed) head/mail/py-libgmail/distinfo (props changed) head/mail/py-ppolicy/distinfo (props changed) head/mail/py-spambayes/distinfo (props changed) head/mail/py-turbomail/distinfo (props changed) head/mail/py-zope.sendmail/distinfo (props changed) head/mail/pymsgauth/distinfo (props changed) head/mail/pysieved/distinfo (props changed) head/mail/pyzor/distinfo (props changed) head/mail/qar-bufo/distinfo (props changed) head/mail/qconfirm/distinfo (props changed) head/mail/qgmailnotifier/distinfo (props changed) head/mail/qmail-activedir/distinfo (props changed) head/mail/qmail-auditor/distinfo (props changed) head/mail/qmail-autoresponder/distinfo (props changed) head/mail/qmail-conf/distinfo (props changed) head/mail/qmail-contrib/distinfo (props changed) head/mail/qmail-dk/distinfo (props changed) head/mail/qmail-notify/distinfo (props changed) head/mail/qmail-qfilter/distinfo (props changed) head/mail/qmail-rblchk/distinfo (props changed) head/mail/qmail-remove/distinfo (props changed) head/mail/qmail-scanner/distinfo (props changed) head/mail/qmail-scanner1/distinfo (props changed) head/mail/qmail/distinfo (props changed) head/mail/qmailadmin/distinfo (props changed) head/mail/qmailanalog/distinfo (props changed) head/mail/qmailmrtg7/distinfo (props changed) head/mail/qmhandle/distinfo (props changed) head/mail/qmqtool/distinfo (props changed) head/mail/qpopper/distinfo (props changed) head/mail/qscan/distinfo (props changed) head/mail/qsf/distinfo (props changed) head/mail/qsheff/distinfo (props changed) head/mail/qtools/distinfo (props changed) head/mail/queue-fix/distinfo (props changed) head/mail/queue-repair/distinfo (props changed) head/mail/quickml/distinfo (props changed) head/mail/rabl_client/distinfo (props changed) head/mail/rabl_server/distinfo (props changed) head/mail/raysfilter/distinfo (props changed) head/mail/razor-agents/distinfo (props changed) head/mail/rbl-milter/distinfo (props changed) head/mail/rblcheck/distinfo (props changed) head/mail/relay-ctrl/distinfo (props changed) head/mail/relaydb/distinfo (props changed) head/mail/renattach/distinfo (props changed) head/mail/reply-o-matic/distinfo (props changed) head/mail/rftp/distinfo (props changed) head/mail/ripmime/distinfo (props changed) head/mail/rlytest/distinfo (props changed) head/mail/rmilter/distinfo (props changed) head/mail/roundcube-air/distinfo (props changed) head/mail/roundcube-contextmenu/distinfo (props changed) head/mail/roundcube-groupvice/distinfo (props changed) head/mail/roundcube-login_info/distinfo (props changed) head/mail/roundcube-mobilecube/distinfo (props changed) head/mail/roundcube-mvision2/distinfo (props changed) head/mail/roundcube-thunderbird_labels/distinfo (props changed) head/mail/roundcube-umich/distinfo (props changed) head/mail/roundcube-veximaccountadmin/distinfo (props changed) head/mail/roundcube/distinfo (props changed) head/mail/rspamd/distinfo (props changed) head/mail/rss2email/distinfo (props changed) head/mail/ruby-rfilter/distinfo (props changed) head/mail/ruby-rmail/distinfo (props changed) head/mail/rubygem-exception_notification/distinfo (props changed) head/mail/rubygem-mailfactory/distinfo (props changed) head/mail/rubygem-qmail/distinfo (props changed) head/mail/rubygem-rmail/distinfo (props changed) head/mail/rubygem-tmail/distinfo (props changed) head/mail/sa-stats/distinfo (props changed) head/mail/sastatd/distinfo (props changed) head/mail/scam-backscatter/distinfo (props changed) head/mail/sccmilter/distinfo (props changed) head/mail/sendmail/distinfo (props changed) head/mail/sendok/distinfo (props changed) head/mail/sentinel/distinfo (props changed) head/mail/serialmail/distinfo (props changed) head/mail/sgwi/distinfo (props changed) head/mail/sid-milter/distinfo (props changed) head/mail/sigit/distinfo (props changed) head/mail/sigrot/distinfo (props changed) head/mail/simscan/distinfo (props changed) head/mail/slapd-cyrus/distinfo (props changed) head/mail/sma/distinfo (props changed) head/mail/smail/distinfo (props changed) head/mail/smfsav/distinfo (props changed) head/mail/smtp-gated/distinfo (props changed) head/mail/smtpfeed/distinfo (props changed) head/mail/smtpmail/distinfo (props changed) head/mail/smtprc/distinfo (props changed) head/mail/smtptrapd/distinfo (props changed) head/mail/softfail/distinfo (props changed) head/mail/sortmail/distinfo (props changed) head/mail/spamass-ixhash/distinfo (props changed) head/mail/spamass-milter/distinfo (props changed) head/mail/spamass-rules/distinfo (props changed) head/mail/spambnc/distinfo (props changed) head/mail/spamcup/distinfo (props changed) head/mail/spamd/distinfo (props changed) head/mail/spamdb-curses/distinfo (props changed) head/mail/spamdyke/distinfo (props changed) head/mail/spamguard/distinfo (props changed) head/mail/spamilter/distinfo (props changed) head/mail/spamoracle/distinfo (props changed) head/mail/spampd/distinfo (props changed) head/mail/spamprobe/distinfo (props changed) head/mail/spamstats/distinfo (props changed) head/mail/spfval/distinfo (props changed) head/mail/spmfilter-clamav/distinfo (props changed) head/mail/spmfilter-spamassassin/distinfo (props changed) head/mail/sqlgrey/distinfo (props changed) head/mail/squirrelmail-abook_import_export-plugin/distinfo (props changed) head/mail/squirrelmail-askuserinfo-plugin/distinfo (props changed) head/mail/squirrelmail-avelsieve-plugin/distinfo (props changed) head/mail/squirrelmail-calendar_file_backend-plugin/distinfo (props changed) head/mail/squirrelmail-change_ldappass-plugin/distinfo (props changed) head/mail/squirrelmail-change_sqlpass-plugin/distinfo (props changed) head/mail/squirrelmail-check_quota-plugin/distinfo (props changed) head/mail/squirrelmail-compatibility-plugin/distinfo (props changed) head/mail/squirrelmail-email_footer-plugin/distinfo (props changed) head/mail/squirrelmail-login_auth-plugin/distinfo (props changed) head/mail/squirrelmail-login_notes-plugin/distinfo (props changed) head/mail/squirrelmail-mark_read-plugin/distinfo (props changed) head/mail/squirrelmail-multilogin-plugin/distinfo (props changed) head/mail/squirrelmail-notes-plugin/distinfo (props changed) head/mail/squirrelmail-notify-plugin/distinfo (props changed) head/mail/squirrelmail-password_forget-plugin/distinfo (props changed) head/mail/squirrelmail-pupdate-plugin/distinfo (props changed) head/mail/squirrelmail-qmailadmin_login-plugin/distinfo (props changed) head/mail/squirrelmail-quota_usage-plugin/distinfo (props changed) head/mail/squirrelmail-sasql-plugin/distinfo (props changed) head/mail/squirrelmail-secure_login-plugin/distinfo (props changed) head/mail/squirrelmail-shared_calendars-plugin/distinfo (props changed) head/mail/squirrelmail-spam-buttons-plugin/distinfo (props changed) head/mail/squirrelmail-squirrel_logger-plugin/distinfo (props changed) head/mail/squirrelmail-timeout_user-plugin/distinfo (props changed) head/mail/squirrelmail-tmda-plugin/distinfo (props changed) head/mail/squirrelmail-translations/distinfo (props changed) head/mail/squirrelmail-unsafe_image_rules-plugin/distinfo (props changed) head/mail/squirrelmail-user_special_mailboxes-plugin/distinfo (props changed) head/mail/squirrelmail-vlogin-plugin/distinfo (props changed) head/mail/squirrelmail-websearch-plugin/distinfo (props changed) head/mail/squirrelmail-wetteronline-plugin/distinfo (props changed) head/mail/squirrelmail/distinfo (props changed) head/mail/ssmtp/distinfo (props changed) head/mail/surblhost/distinfo (props changed) head/mail/svnmailer/distinfo (props changed) head/mail/swaks/distinfo (props changed) head/mail/sylpheed/distinfo (props changed) head/mail/sympa/distinfo (props changed) head/mail/synonym/distinfo (props changed) head/mail/t-prot/distinfo (props changed) head/mail/teapop/distinfo (props changed) head/mail/textmail/distinfo (props changed) head/mail/thunderbird-dictionaries/distinfo (props changed) head/mail/tkrat2/distinfo (props changed) head/mail/tlb/distinfo (props changed) head/mail/tmda/distinfo (props changed) head/mail/tpop3d/distinfo (props changed) head/mail/trojita/distinfo (props changed) head/mail/uebimiau/distinfo (props changed) head/mail/up-imapproxy/distinfo (props changed) head/mail/usendmail/distinfo (props changed) head/mail/vacation/distinfo (props changed) head/mail/vbsfilter/distinfo (props changed) head/mail/vm-pop3d/distinfo (props changed) head/mail/vm/distinfo (props changed) head/mail/vmailmgr/distinfo (props changed) head/mail/vpopmail/distinfo (props changed) head/mail/vqadmin/distinfo (props changed) head/mail/vqregister/distinfo (props changed) head/mail/vrfy/distinfo (props changed) head/mail/wanderlust-devel/distinfo (props changed) head/mail/wanderlust/distinfo (props changed) head/mail/websieve/distinfo (props changed) head/mail/whoson/distinfo (props changed) head/mail/wmbiff/distinfo (props changed) head/mail/wmmaiload/distinfo (props changed) head/mail/wmpop3/distinfo (props changed) head/mail/wmpop3lb/distinfo (props changed) head/mail/x-face-e21/distinfo (props changed) head/mail/xbuffy/distinfo (props changed) head/mail/xcite/distinfo (props changed) head/mail/xf-spf/distinfo (props changed) head/mail/xfaces/distinfo (props changed) head/mail/xfmail/distinfo (props changed) head/mail/xlbiff/distinfo (props changed) head/mail/xmail/distinfo (props changed) head/mail/xmailbox/distinfo (props changed) head/mail/xmailwatcher/distinfo (props changed) head/mail/xpbiff/distinfo (props changed) head/mail/xpi-dispmua/distinfo (props changed) head/mail/zmailer/distinfo (props changed) head/math/GiNaC/distinfo (props changed) head/math/PDL/distinfo (props changed) head/math/R-cran-ChangeAnomalyDetection/distinfo (props changed) head/math/R-cran-Formula/distinfo (props changed) head/math/R-cran-KFAS/distinfo (props changed) head/math/R-cran-LearnBayes/distinfo (props changed) head/math/R-cran-MCMCpack/distinfo (props changed) head/math/R-cran-RHmm/distinfo (props changed) head/math/R-cran-RSvgDevice/distinfo (props changed) head/math/R-cran-RcppArmadillo/distinfo (props changed) head/math/R-cran-Zelig/distinfo (props changed) head/math/R-cran-bdsmatrix/distinfo (props changed) head/math/R-cran-car/distinfo (props changed) head/math/R-cran-coda/distinfo (props changed) head/math/R-cran-deldir/distinfo (props changed) head/math/R-cran-forecast/distinfo (props changed) head/math/R-cran-fracdiff/distinfo (props changed) head/math/R-cran-gpclib/distinfo (props changed) head/math/R-cran-gtable/distinfo (props changed) head/math/R-cran-igraph/distinfo (props changed) head/math/R-cran-inline/distinfo (props changed) head/math/R-cran-memisc/distinfo (props changed) head/math/R-cran-mvtnorm/distinfo (props changed) head/math/R-cran-outliers/distinfo (props changed) head/math/R-cran-psych/distinfo (props changed) head/math/R-cran-quadprog/distinfo (props changed) head/math/R-cran-sandwich/distinfo (props changed) head/math/R-cran-sm/distinfo (props changed) head/math/R-cran-sp/distinfo (props changed) head/math/R-cran-spdep/distinfo (props changed) head/math/R-cran-stabledist/distinfo (props changed) head/math/R-cran-xts/distinfo (props changed) head/math/R-cran-zoo/distinfo (props changed) head/math/aamath/distinfo (props changed) head/math/abakus/distinfo (props changed) head/math/abs/distinfo (props changed) head/math/algae/distinfo (props changed) head/math/algotutor/distinfo (props changed) head/math/alt-ergo/distinfo (props changed) head/math/ann/distinfo (props changed) head/math/apc/distinfo (props changed) head/math/aribas/distinfo (props changed) head/math/armadillo/distinfo (props changed) head/math/arpack++/distinfo (props changed) head/math/arpack/distinfo (props changed) head/math/asir2000/distinfo (props changed) head/math/asymptote/distinfo (props changed) head/math/atlas-devel/distinfo (props changed) head/math/atlas/distinfo (props changed) head/math/bamg/distinfo (props changed) head/math/bargraph/distinfo (props changed) head/math/biggles/distinfo (props changed) head/math/bihar/distinfo (props changed) head/math/blacs/distinfo (props changed) head/math/blitz++/distinfo (props changed) head/math/blocksolve95/distinfo (props changed) head/math/bsdnt/distinfo (props changed) head/math/calc/distinfo (props changed) head/math/calcoo/distinfo (props changed) head/math/calctool/distinfo (props changed) head/math/carve/distinfo (props changed) head/math/cblas/distinfo (props changed) head/math/ccmath/distinfo (props changed) head/math/cgal/distinfo (props changed) head/math/chaco/distinfo (props changed) head/math/chryzodus/distinfo (props changed) head/math/clarence/distinfo (props changed) head/math/cln/distinfo (props changed) head/math/clp/distinfo (props changed) head/math/coinmp/distinfo (props changed) head/math/concorde/distinfo (props changed) head/math/convertall/distinfo (props changed) head/math/coq/distinfo (props changed) head/math/crlibm/distinfo (props changed) head/math/cvc3/distinfo (props changed) head/math/dcdflib/distinfo (props changed) head/math/diehard/distinfo (props changed) head/math/dieharder/distinfo (props changed) head/math/djbfft/distinfo (props changed) head/math/drgeo/distinfo (props changed) head/math/e/distinfo (props changed) head/math/edenmath/distinfo (props changed) head/math/eigen2/distinfo (props changed) head/math/eispack/distinfo (props changed) head/math/elmer-umfpack/distinfo (props changed) head/math/emacs-calc/distinfo (props changed) head/math/emc2/distinfo (props changed) head/math/entropy/distinfo (props changed) head/math/eukleides/distinfo (props changed) head/math/eval/distinfo (props changed) head/math/facile/distinfo (props changed) head/math/fann/distinfo (props changed) head/math/fflas-ffpack/distinfo (props changed) head/math/fftw/distinfo (props changed) head/math/freefem/distinfo (props changed) head/math/fricas/distinfo (props changed) head/math/fxt/distinfo (props changed) head/math/gap/distinfo (props changed) head/math/gcalctool/distinfo (props changed) head/math/gdcalc/distinfo (props changed) head/math/geg/distinfo (props changed) head/math/geonext/distinfo (props changed) head/math/gexpr/distinfo (props changed) head/math/ggobi/distinfo (props changed) head/math/giacxcas/distinfo (props changed) head/math/givaro/distinfo (props changed) head/math/gkmap/distinfo (props changed) head/math/glgraph/distinfo (props changed) head/math/glm/distinfo (props changed) head/math/gmm++/distinfo (props changed) head/math/gmp-ecm/distinfo (props changed) head/math/gmp/distinfo (props changed) head/math/gnubc/distinfo (props changed) head/math/goblin/distinfo (props changed) head/math/gotoblas/distinfo (props changed) head/math/grace/distinfo (props changed) head/math/gracetmpl/distinfo (props changed) head/math/graphthing/distinfo (props changed) head/math/grpn/distinfo (props changed) head/math/hs-Agda/distinfo (props changed) head/math/hs-NumInstances/distinfo (props changed) head/math/hs-categories/distinfo (props changed) head/math/hs-comonad-transformers/distinfo (props changed) head/math/hs-comonad/distinfo (props changed) head/math/hs-contravariant/distinfo (props changed) head/math/hs-data-lens-template/distinfo (props changed) head/math/hs-data-lens/distinfo (props changed) head/math/hs-distributive/distinfo (props changed) head/math/hs-erf/distinfo (props changed) head/math/hs-ieee754/distinfo (props changed) head/math/hs-math-functions/distinfo (props changed) head/math/hs-mwc-random/distinfo (props changed) head/math/hs-pointed/distinfo (props changed) head/math/hs-probability/distinfo (props changed) head/math/hs-semigroupoids/distinfo (props changed) head/math/hs-semigroups/distinfo (props changed) head/math/hs-statistics/distinfo (props changed) head/math/hs-vector-space/distinfo (props changed) head/math/igraph/distinfo (props changed) head/math/isabelle/distinfo (props changed) head/math/ised/distinfo (props changed) head/math/itl/distinfo (props changed) head/math/jacal/distinfo (props changed) head/math/jakarta-commons-math/distinfo (props changed) head/math/jakarta-commons-math3/distinfo (props changed) head/math/jama/distinfo (props changed) head/math/javanns/distinfo (props changed) head/math/javaview/distinfo (props changed) head/math/jeuclid/distinfo (props changed) head/math/jlatexmath/distinfo (props changed) head/math/jsmath-fonts-sprite/distinfo (props changed) head/math/jsmath-fonts/distinfo (props changed) head/math/jsmath/distinfo (props changed) head/math/jtransforms/distinfo (props changed) head/math/jts/distinfo (props changed) head/math/kash3/distinfo (props changed) head/math/kktdirect/distinfo (props changed) head/math/lambda/distinfo (props changed) head/math/lapack++/distinfo (props changed) head/math/lapack/distinfo (props changed) head/math/lapack95/distinfo (props changed) head/math/lapacke/distinfo (props changed) head/math/laspack/distinfo (props changed) head/math/ldouble/distinfo (props changed) head/math/levmar/distinfo (props changed) head/math/libflame/distinfo (props changed) head/math/libjbigi/distinfo (props changed) head/math/liblbfgs/distinfo (props changed) head/math/libneural/distinfo (props changed) head/math/libqalculate/distinfo (props changed) head/math/libranlip/distinfo (props changed) head/math/libtommath/distinfo (props changed) head/math/libtsnnls/distinfo (props changed) head/math/linpack/distinfo (props changed) head/math/lll_spect/distinfo (props changed) head/math/lp_solve/distinfo (props changed) head/math/ltl/distinfo (props changed) head/math/ltl2ba/distinfo (props changed) head/math/lybniz/distinfo (props changed) head/math/mate-calc/distinfo (props changed) head/math/mathomatic/distinfo (props changed) head/math/matio/distinfo (props changed) head/math/matlab-R2012a-installer/distinfo (props changed) head/math/matrix/distinfo (props changed) head/math/mbasecalc/distinfo (props changed) head/math/metis4/distinfo (props changed) head/math/moo/distinfo (props changed) head/math/mpc/distinfo (props changed) head/math/mpexpr/distinfo (props changed) head/math/mpfr/distinfo (props changed) head/math/mprime/distinfo (props changed) head/math/mtl/distinfo (props changed) head/math/mtrxmath/distinfo (props changed) head/math/mumps/distinfo (props changed) head/math/muparser/distinfo (props changed) head/math/naturalmath/distinfo (props changed) head/math/nauty/distinfo (props changed) head/math/ndiff/distinfo (props changed) head/math/newmat/distinfo (props changed) head/math/ngraph/distinfo (props changed) head/math/ntl/distinfo (props changed) head/math/numdiff/distinfo (props changed) head/math/nyh-hoc/distinfo (props changed) head/math/ocaml-ocamlgraph/distinfo (props changed) head/math/ocamlgsl/distinfo (props changed) head/math/octave-forge-actuarial/distinfo (props changed) head/math/octave-forge-ad/distinfo (props changed) head/math/octave-forge-audio/distinfo (props changed) head/math/octave-forge-bim/distinfo (props changed) head/math/octave-forge-bioinfo/distinfo (props changed) head/math/octave-forge-cgi/distinfo (props changed) head/math/octave-forge-civil-engineering/distinfo (props changed) head/math/octave-forge-communications/distinfo (props changed) head/math/octave-forge-control/distinfo (props changed) head/math/octave-forge-data-smoothing/distinfo (props changed) head/math/octave-forge-database/distinfo (props changed) head/math/octave-forge-dataframe/distinfo (props changed) head/math/octave-forge-dicom/distinfo (props changed) head/math/octave-forge-econometrics/distinfo (props changed) head/math/octave-forge-engine/distinfo (props changed) head/math/octave-forge-fenv/distinfo (props changed) head/math/octave-forge-financial/distinfo (props changed) head/math/octave-forge-fits/distinfo (props changed) head/math/octave-forge-fl-core/distinfo (props changed) head/math/octave-forge-fpl/distinfo (props changed) head/math/octave-forge-fuzzy-logic-toolkit/distinfo (props changed) head/math/octave-forge-ga/distinfo (props changed) head/math/octave-forge-general/distinfo (props changed) head/math/octave-forge-generate_html/distinfo (props changed) head/math/octave-forge-geometry/distinfo (props changed) head/math/octave-forge-gnuplot/distinfo (props changed) head/math/octave-forge-gsl/distinfo (props changed) head/math/octave-forge-ident/distinfo (props changed) head/math/octave-forge-image/distinfo (props changed) head/math/octave-forge-informationtheory/distinfo (props changed) head/math/octave-forge-integration/distinfo (props changed) head/math/octave-forge-io/distinfo (props changed) head/math/octave-forge-irsa/distinfo (props changed) head/math/octave-forge-linear-algebra/distinfo (props changed) head/math/octave-forge-lssa/distinfo (props changed) head/math/octave-forge-ltfat/distinfo (props changed) head/math/octave-forge-mapping/distinfo (props changed) head/math/octave-forge-mechanics/distinfo (props changed) head/math/octave-forge-miscellaneous/distinfo (props changed) head/math/octave-forge-missing-functions/distinfo (props changed) head/math/octave-forge-msh/distinfo (props changed) head/math/octave-forge-multicore/distinfo (props changed) head/math/octave-forge-mvn/distinfo (props changed) head/math/octave-forge-nan/distinfo (props changed) head/math/octave-forge-ncarray/distinfo (props changed) head/math/octave-forge-netcdf/distinfo (props changed) head/math/octave-forge-nlwing2/distinfo (props changed) head/math/octave-forge-nnet/distinfo (props changed) head/math/octave-forge-nurbs/distinfo (props changed) head/math/octave-forge-ocs/distinfo (props changed) head/math/octave-forge-oct2mat/distinfo (props changed) head/math/octave-forge-octcdf/distinfo (props changed) head/math/octave-forge-octclip/distinfo (props changed) head/math/octave-forge-octgpr/distinfo (props changed) head/math/octave-forge-octproj/distinfo (props changed) head/math/octave-forge-odebvp/distinfo (props changed) head/math/octave-forge-odepkg/distinfo (props changed) head/math/octave-forge-optim/distinfo (props changed) head/math/octave-forge-optiminterp/distinfo (props changed) head/math/octave-forge-outliers/distinfo (props changed) head/math/octave-forge-parallel/distinfo (props changed) head/math/octave-forge-pdb/distinfo (props changed) head/math/octave-forge-plot/distinfo (props changed) head/math/octave-forge-pt_br/distinfo (props changed) head/math/octave-forge-quaternion/distinfo (props changed) head/math/octave-forge-queueing/distinfo (props changed) head/math/octave-forge-secs1d/distinfo (props changed) head/math/octave-forge-secs2d/distinfo (props changed) head/math/octave-forge-secs3d/distinfo (props changed) head/math/octave-forge-signal/distinfo (props changed) head/math/octave-forge-simp/distinfo (props changed) head/math/octave-forge-sockets/distinfo (props changed) head/math/octave-forge-specfun/distinfo (props changed) head/math/octave-forge-special-matrix/distinfo (props changed) head/math/octave-forge-spline-gcvspl/distinfo (props changed) head/math/octave-forge-splines/distinfo (props changed) head/math/octave-forge-statistics/distinfo (props changed) head/math/octave-forge-strings/distinfo (props changed) head/math/octave-forge-struct/distinfo (props changed) head/math/octave-forge-symband/distinfo (props changed) head/math/octave-forge-symbolic/distinfo (props changed) head/math/octave-forge-tcl-octave/distinfo (props changed) head/math/octave-forge-tsa/distinfo (props changed) head/math/octave-forge-video/distinfo (props changed) head/math/octave-forge-xraylib/distinfo (props changed) head/math/octave-forge-zenity/distinfo (props changed) head/math/octave/distinfo (props changed) head/math/oleo/distinfo (props changed) head/math/open-axiom/distinfo (props changed) head/math/openfst/distinfo (props changed) head/math/orpie/distinfo (props changed) head/math/p5-AI-DecisionTree/distinfo (props changed) head/math/p5-AI-Genetic/distinfo (props changed) head/math/p5-AI-NeuralNet-BackProp/distinfo (props changed) head/math/p5-AI-Perceptron/distinfo (props changed) head/math/p5-Algorithm-Combinatorics/distinfo (props changed) head/math/p5-Algorithm-CurveFit/distinfo (props changed) head/math/p5-Algorithm-KMeans/distinfo (props changed) head/math/p5-Algorithm-Munkres/distinfo (props changed) head/math/p5-Bit-ShiftReg/distinfo (props changed) head/math/p5-Bit-Vector-Minimal/distinfo (props changed) head/math/p5-Bit-Vector/distinfo (props changed) head/math/p5-CAD-Calc/distinfo (props changed) head/math/p5-Chart-Math-Axis/distinfo (props changed) head/math/p5-Data-Float/distinfo (props changed) head/math/p5-Date-Handler/distinfo (props changed) head/math/p5-GIS-Distance-Fast/distinfo (props changed) head/math/p5-GIS-Distance-Lite/distinfo (props changed) head/math/p5-GIS-Distance/distinfo (props changed) head/math/p5-Geo-Coordinates-UTM/distinfo (props changed) head/math/p5-Geo-Distance-XS/distinfo (props changed) head/math/p5-Geo-Distance/distinfo (props changed) head/math/p5-Graph/distinfo (props changed) head/math/p5-Math-Algebra-Symbols/distinfo (props changed) head/math/p5-Math-Base36/distinfo (props changed) head/math/p5-Math-Base85/distinfo (props changed) head/math/p5-Math-BaseCnv/distinfo (props changed) head/math/p5-Math-Bezier-Convert/distinfo (props changed) head/math/p5-Math-Bezier/distinfo (props changed) head/math/p5-Math-BigInt-FastCalc/distinfo (props changed) head/math/p5-Math-BigInt-GMP/distinfo (props changed) head/math/p5-Math-BigInt-Pari/distinfo (props changed) head/math/p5-Math-BigInt/distinfo (props changed) head/math/p5-Math-BigRat/distinfo (props changed) head/math/p5-Math-CDF/distinfo (props changed) head/math/p5-Math-Calc-Units/distinfo (props changed) head/math/p5-Math-Combinatorics/distinfo (props changed) head/math/p5-Math-Complex/distinfo (props changed) head/math/p5-Math-ConvexHull/distinfo (props changed) head/math/p5-Math-Currency/distinfo (props changed) head/math/p5-Math-Derivative/distinfo (props changed) head/math/p5-Math-Evol/distinfo (props changed) head/math/p5-Math-Expr/distinfo (props changed) head/math/p5-Math-FFT/distinfo (props changed) head/math/p5-Math-FixedPrecision/distinfo (props changed) head/math/p5-Math-GMP/distinfo (props changed) head/math/p5-Math-GSL/distinfo (props changed) head/math/p5-Math-Geometry-Planar-GPC-Polygon/distinfo (props changed) head/math/p5-Math-Geometry-Planar-GPC/distinfo (props changed) head/math/p5-Math-Geometry-Planar-Offset/distinfo (props changed) head/math/p5-Math-Geometry-Planar/distinfo (props changed) head/math/p5-Math-Geometry-Voronoi/distinfo (props changed) head/math/p5-Math-Geometry/distinfo (props changed) head/math/p5-Math-Gradient/distinfo (props changed) head/math/p5-Math-Intersection-StraightLine/distinfo (props changed) head/math/p5-Math-Logic/distinfo (props changed) head/math/p5-Math-MPC/distinfo (props changed) head/math/p5-Math-MatrixReal/distinfo (props changed) head/math/p5-Math-NumberCruncher/distinfo (props changed) head/math/p5-Math-Pari/distinfo (props changed) head/math/p5-Math-Polygon-Tree/distinfo (props changed) head/math/p5-Math-Polygon/distinfo (props changed) head/math/p5-Math-Polynomial-Solve/distinfo (props changed) head/math/p5-Math-Prime-XS/distinfo (props changed) head/math/p5-Math-RPN/distinfo (props changed) head/math/p5-Math-Random-ISAAC-XS/distinfo (props changed) head/math/p5-Math-Random-ISAAC/distinfo (props changed) head/math/p5-Math-Random-MT-Auto/distinfo (props changed) head/math/p5-Math-Random-MT/distinfo (props changed) head/math/p5-Math-Random-OO/distinfo (props changed) head/math/p5-Math-Random-Secure/distinfo (props changed) head/math/p5-Math-Random/distinfo (props changed) head/math/p5-Math-RandomOrg/distinfo (props changed) head/math/p5-Math-Round-Var/distinfo (props changed) head/math/p5-Math-Round/distinfo (props changed) head/math/p5-Math-Sequence/distinfo (props changed) head/math/p5-Math-Series/distinfo (props changed) head/math/p5-Math-SigFigs/distinfo (props changed) head/math/p5-Math-SimpleVariable/distinfo (props changed) head/math/p5-Math-Spline/distinfo (props changed) head/math/p5-Math-String/distinfo (props changed) head/math/p5-Math-Symbolic-Custom-CCompiler/distinfo (props changed) head/math/p5-Math-Symbolic-Custom-Contains/distinfo (props changed) head/math/p5-Math-Symbolic-Custom-ErrorPropagation/distinfo (props changed) head/math/p5-Math-Symbolic-Custom-LaTeXDumper/distinfo (props changed) head/math/p5-Math-Symbolic-Custom-Pattern/distinfo (props changed) head/math/p5-Math-Symbolic-Custom-Simplification/distinfo (props changed) head/math/p5-Math-Symbolic-Custom-Transformation/distinfo (props changed) head/math/p5-Math-Symbolic/distinfo (props changed) head/math/p5-Math-SymbolicX-BigNum/distinfo (props changed) head/math/p5-Math-SymbolicX-Complex/distinfo (props changed) head/math/p5-Math-SymbolicX-Error/distinfo (props changed) head/math/p5-Math-SymbolicX-Inline/distinfo (props changed) head/math/p5-Math-SymbolicX-NoSimplification/distinfo (props changed) head/math/p5-Math-SymbolicX-ParserExtensionFactory/distinfo (props changed) head/math/p5-Math-SymbolicX-Statistics-Distributions/distinfo (props changed) head/math/p5-Math-TrulyRandom/distinfo (props changed) head/math/p5-Math-Units/distinfo (props changed) head/math/p5-Math-Vec/distinfo (props changed) head/math/p5-Math-VecStat/distinfo (props changed) head/math/p5-Math-VectorReal/distinfo (props changed) head/math/p5-NetCDF/distinfo (props changed) head/math/p5-Number-Compare/distinfo (props changed) head/math/p5-Number-Fraction/distinfo (props changed) head/math/p5-Number-Uncertainty/distinfo (props changed) head/math/p5-Number-WithError-LaTeX/distinfo (props changed) head/math/p5-Number-WithError/distinfo (props changed) head/math/p5-Parse-Range/distinfo (props changed) head/math/p5-Roman/distinfo (props changed) head/math/p5-Set-IntSpan-Fast-XS/distinfo (props changed) head/math/p5-Set-IntSpan-Fast/distinfo (props changed) head/math/p5-Set-IntSpan/distinfo (props changed) head/math/p5-Set-Partition/distinfo (props changed) head/math/p5-Set-Window/distinfo (props changed) head/math/p5-Statistics-Basic/distinfo (props changed) head/math/p5-Statistics-Benford/distinfo (props changed) head/math/p5-Statistics-ChiSquare/distinfo (props changed) head/math/p5-Statistics-Contingency/distinfo (props changed) head/math/p5-Statistics-Descriptive-Discrete/distinfo (props changed) head/math/p5-Statistics-Descriptive/distinfo (props changed) head/math/p5-Statistics-Distributions/distinfo (props changed) head/math/p5-Statistics-Forecast/distinfo (props changed) head/math/p5-Statistics-Frequency/distinfo (props changed) head/math/p5-Statistics-LTU/distinfo (props changed) head/math/p5-Statistics-LineFit/distinfo (props changed) head/math/p5-Statistics-Lite/distinfo (props changed) head/math/p5-Statistics-OLS/distinfo (props changed) head/math/p5-Statistics-Regression/distinfo (props changed) head/math/p5-Statistics-TTest/distinfo (props changed) head/math/p5-Task-Math-Symbolic/distinfo (props changed) head/math/p5-Text-AsciiTeX/distinfo (props changed) head/math/p5-bignum/distinfo (props changed) head/math/pari/distinfo (props changed) head/math/parmetis/distinfo (props changed) head/math/parmgridgen/distinfo (props changed) head/math/pear-Math_BigInteger/distinfo (props changed) head/math/pear-Math_Combinatorics/distinfo (props changed) head/math/pecl-big_int/distinfo (props changed) head/math/pecl-bitset/distinfo (props changed) head/math/petsc/distinfo (props changed) head/math/physcalc/distinfo (props changed) head/math/plman/distinfo (props changed) head/math/ploticus/distinfo (props changed) head/math/polymake/distinfo (props changed) head/math/primegen/distinfo (props changed) head/math/prng/distinfo (props changed) head/math/proofgeneral/distinfo (props changed) head/math/pspp/distinfo (props changed) head/math/pure-mpfr/distinfo (props changed) head/math/pure-rational/distinfo (props changed) head/math/py-apgl/distinfo (props changed) head/math/py-basemap-data/distinfo (props changed) head/math/py-basemap/distinfo (props changed) head/math/py-bitvector/distinfo (props changed) head/math/py-fpconst/distinfo (props changed) head/math/py-gato/distinfo (props changed) head/math/py-gmpy/distinfo (props changed) head/math/py-gnuplot/distinfo (props changed) head/math/py-graphtool/distinfo (props changed) head/math/py-gsl/distinfo (props changed) head/math/py-igraph/distinfo (props changed) head/math/py-mathdom/distinfo (props changed) head/math/py-matplotlib/distinfo (props changed) head/math/py-mpmath/distinfo (props changed) head/math/py-networkx/distinfo (props changed) head/math/py-numarray/distinfo (props changed) head/math/py-numeric/distinfo (props changed) head/math/py-numpy/distinfo (props changed) head/math/py-nzmath/distinfo (props changed) head/math/py-plastex/distinfo (props changed) head/math/py-probstat/distinfo (props changed) head/math/py-pybloom/distinfo (props changed) head/math/py-pymc/distinfo (props changed) head/math/py-roman/distinfo (props changed) head/math/py-scientific/distinfo (props changed) head/math/py-svgmath/distinfo (props changed) head/math/py-symeig/distinfo (props changed) head/math/py-sympy/distinfo (props changed) head/math/qalculate/distinfo (props changed) head/math/qd/distinfo (props changed) head/math/qhull/distinfo (props changed) head/math/qhull5/distinfo (props changed) head/math/qtiplot-doc/distinfo (props changed) head/math/qtiplot/distinfo (props changed) head/math/qwtplot3d-qt4/distinfo (props changed) head/math/randlib/distinfo (props changed) head/math/rapid/distinfo (props changed) head/math/reed-solomon/distinfo (props changed) head/math/rngstreams/distinfo (props changed) head/math/ros-geometry/distinfo (props changed) head/math/rpcalc/distinfo (props changed) head/math/rpy/distinfo (props changed) head/math/rpy2/distinfo (props changed) head/math/ruby-algebra/distinfo (props changed) head/math/ruby-fftw3/distinfo (props changed) head/math/ruby-gnuplot/distinfo (props changed) head/math/ruby-gsl/distinfo (props changed) head/math/ruby-narray/distinfo (props changed) head/math/ruby-numru_misc/distinfo (props changed) head/math/ruby-numru_units/distinfo (props changed) head/math/saga/distinfo (props changed) head/math/sage/distinfo (props changed) head/math/sc/distinfo (props changed) head/math/scalapack/distinfo (props changed) head/math/scilab-toolbox-sivp/distinfo (props changed) head/math/scilab-toolbox-swt/distinfo (props changed) head/math/scilab/distinfo (props changed) head/math/sdpa-gmp/distinfo (props changed) head/math/sdpa/distinfo (props changed) head/math/sdpara/distinfo (props changed) head/math/sedumi/distinfo (props changed) head/math/sfft/distinfo (props changed) head/math/simd-viterbi/distinfo (props changed) head/math/slatec/distinfo (props changed) head/math/slgrace/distinfo (props changed) head/math/snns/distinfo (props changed) head/math/solitaire/distinfo (props changed) head/math/spar/distinfo (props changed) head/math/spblas/distinfo (props changed) head/math/speedcrunch/distinfo (props changed) head/math/spooles/distinfo (props changed) head/math/stp/distinfo (props changed) head/math/suitesparse/distinfo (props changed) head/math/superlu/distinfo (props changed) head/math/superlu_mt/distinfo (props changed) head/math/surf/distinfo (props changed) head/math/tablix/distinfo (props changed) head/math/taucs/distinfo (props changed) head/math/testu01/distinfo (props changed) head/math/tetgen/distinfo (props changed) head/math/timbl/distinfo (props changed) head/math/tomsfastmath/distinfo (props changed) head/math/topaz/distinfo (props changed) head/math/triangle/distinfo (props changed) head/math/trlan/distinfo (props changed) head/math/truthtable/distinfo (props changed) head/math/tvmet/distinfo (props changed) head/math/umatrix/distinfo (props changed) head/math/ump/distinfo (props changed) head/math/units/distinfo (props changed) head/math/unixstat/distinfo (props changed) head/math/unuran/distinfo (props changed) head/math/wcalc/distinfo (props changed) head/math/wingz/distinfo (props changed) head/math/wingz3/distinfo (props changed) head/math/wxMaxima/distinfo (props changed) head/math/x12arima/distinfo (props changed) head/math/xblas/distinfo (props changed) head/math/xgobi/distinfo (props changed) head/math/xgraph/distinfo (props changed) head/math/xldlas/distinfo (props changed) head/math/xplot/distinfo (props changed) head/math/xppaut/distinfo (props changed) head/math/xspread/distinfo (props changed) head/misc/achievo/distinfo (props changed) head/misc/aclgen/distinfo (props changed) head/misc/amanda-server/distinfo (props changed) head/misc/amanda25-server/distinfo (props changed) head/misc/amanda26-server/distinfo (props changed) head/misc/amanda32-server/distinfo (props changed) head/misc/amfm/distinfo (props changed) head/misc/apparix/distinfo (props changed) head/misc/asbutton/distinfo (props changed) head/misc/asr-manpages/distinfo (props changed) head/misc/bb/distinfo (props changed) head/misc/bbjd/distinfo (props changed) head/misc/bdelta/distinfo (props changed) head/misc/bestfit/distinfo (props changed) head/misc/bigboard/distinfo (props changed) head/misc/biosfont-demos/distinfo (props changed) head/misc/birthday/distinfo (props changed) head/misc/bogosort/distinfo (props changed) head/misc/bottlerocket/distinfo (props changed) head/misc/boxquote.el/distinfo (props changed) head/misc/brs/distinfo (props changed) head/misc/buffer/distinfo (props changed) head/misc/c-hey/distinfo (props changed) head/misc/callid/distinfo (props changed) head/misc/cave/distinfo (props changed) head/misc/cdcollect/distinfo (props changed) head/misc/chef/distinfo (props changed) head/misc/chmlib/distinfo (props changed) head/misc/chord2html/distinfo (props changed) head/misc/clex/distinfo (props changed) head/misc/clpbar/distinfo (props changed) head/misc/cmatrix/distinfo (props changed) head/misc/color-theme.el/distinfo (props changed) head/misc/colortail/distinfo (props changed) head/misc/compat4x/distinfo (props changed) head/misc/compat5x/distinfo (props changed) head/misc/compat6x/distinfo (props changed) head/misc/compat7x/distinfo (props changed) head/misc/countrycodes/distinfo (props changed) head/misc/cpuid/distinfo (props changed) head/misc/crosspad/distinfo (props changed) head/misc/cstream/distinfo (props changed) head/misc/cuecat/distinfo (props changed) head/misc/cwish/distinfo (props changed) head/misc/dahdi-kmod/distinfo (props changed) head/misc/dahdi-kmod26/distinfo (props changed) head/misc/dahdi/distinfo (props changed) head/misc/ddate/distinfo (props changed) head/misc/deco/distinfo (props changed) head/misc/delay/distinfo (props changed) head/misc/detachtty/distinfo (props changed) head/misc/diary-hercules/distinfo (props changed) head/misc/diction/distinfo (props changed) head/misc/digitemp/distinfo (props changed) head/misc/display/distinfo (props changed) head/misc/dnetc/distinfo.amd64 (props changed) head/misc/dnetc/distinfo.i386 (props changed) head/misc/dnetc/distinfo.powerpc (props changed) head/misc/dnetc/distinfo.sparc64 (props changed) head/misc/dotfile/distinfo (props changed) head/misc/dphys-config/distinfo (props changed) head/misc/dtach/distinfo (props changed) head/misc/dvorak7min/distinfo (props changed) head/misc/dvorakng/distinfo (props changed) head/misc/elscreen/distinfo (props changed) head/misc/estic/distinfo (props changed) head/misc/explosions/distinfo (props changed) head/misc/fbless/distinfo (props changed) head/misc/felis/distinfo (props changed) head/misc/figlet-fonts/distinfo (props changed) head/misc/figlet/distinfo (props changed) head/misc/firestring/distinfo (props changed) head/misc/floatator/distinfo (props changed) head/misc/fortune-mod-bible/distinfo (props changed) head/misc/fortune-mod-bofh/distinfo (props changed) head/misc/fortune-mod-culmea-culmilor/distinfo (props changed) head/misc/fortune-mod-ferengi_rules_of_acquisition/distinfo (props changed) head/misc/fortune-mod-futurama/distinfo (props changed) head/misc/fortuneit/distinfo (props changed) head/misc/freebsd-doc-en/distinfo (props changed) head/misc/freecode-submit/distinfo (props changed) head/misc/freeguide/distinfo (props changed) head/misc/ftdi-eeprom/distinfo (props changed) head/misc/fxload/distinfo (props changed) head/misc/gcstar/distinfo (props changed) head/misc/geekcode/distinfo (props changed) head/misc/getopt/distinfo (props changed) head/misc/gimp-help-en/distinfo (props changed) head/misc/gkrellm-gamma/distinfo (props changed) head/misc/gkrellm-helium/distinfo (props changed) head/misc/gkrellm-xkb/distinfo (props changed) head/misc/gkrellmbgchg2/distinfo (props changed) head/misc/gkrellmfmonitor/distinfo (props changed) head/misc/gkrellmlaunch/distinfo (props changed) head/misc/gkrellmlaunch2/distinfo (props changed) head/misc/gkrellshoot/distinfo (props changed) head/misc/gkrellshoot2/distinfo (props changed) head/misc/gkx86info2/distinfo (props changed) head/misc/gman/distinfo (props changed) head/misc/gnome-devel-docs/distinfo (props changed) head/misc/gnome-icon-theme-extras/distinfo (props changed) head/misc/gnome-icon-theme/distinfo (props changed) head/misc/gnome-mime-data/distinfo (props changed) head/misc/gnome-osd/distinfo (props changed) head/misc/gnome-user-docs/distinfo (props changed) head/misc/gnu-watch/distinfo (props changed) head/misc/gnuit/distinfo (props changed) head/misc/gnuls/distinfo (props changed) head/misc/gnustep-examples/distinfo (props changed) head/misc/gone/distinfo (props changed) head/misc/gplink/distinfo (props changed) head/misc/granulate/distinfo (props changed) head/misc/gregexp/distinfo (props changed) head/misc/grun/distinfo (props changed) head/misc/gtkfind/distinfo (props changed) head/misc/gwhich/distinfo (props changed) head/misc/hb/distinfo (props changed) head/misc/hello/distinfo (props changed) head/misc/heyu2/distinfo (props changed) head/misc/hicolor-icon-theme/distinfo (props changed) head/misc/histring/distinfo (props changed) head/misc/hotkeys/distinfo (props changed) head/misc/hulgalugha/distinfo (props changed) head/misc/imerge/distinfo (props changed) head/misc/inplace/distinfo (props changed) head/misc/ipa_conv/distinfo (props changed) head/misc/ipbt/distinfo (props changed) head/misc/iselect/distinfo (props changed) head/misc/jargon/distinfo (props changed) head/misc/jbidwatcher/distinfo (props changed) head/misc/jive/distinfo (props changed) head/misc/kbdscan/distinfo (props changed) head/misc/kcd/distinfo (props changed) head/misc/kenny/distinfo (props changed) head/misc/krecipes-kde4/distinfo (props changed) head/misc/latex-mk/distinfo (props changed) head/misc/lc/distinfo (props changed) head/misc/lesspipe/distinfo (props changed) head/misc/libeatmydata/distinfo (props changed) head/misc/libhome/distinfo (props changed) head/misc/libmcal/distinfo (props changed) head/misc/libmetalink/distinfo (props changed) head/misc/libpri/distinfo (props changed) head/misc/libsupertone/distinfo (props changed) head/misc/libutf/distinfo (props changed) head/misc/lifelines/distinfo (props changed) head/misc/lingoteach/distinfo (props changed) head/misc/localedata/distinfo (props changed) head/misc/logsurfer+/distinfo (props changed) head/misc/loop/distinfo (props changed) head/misc/lr/distinfo (props changed) head/misc/lv/distinfo (props changed) head/misc/lxde-common/distinfo (props changed) head/misc/magicpoint/distinfo (props changed) head/misc/man.el/distinfo (props changed) head/misc/mbuffer/distinfo (props changed) head/misc/mc-light/distinfo (props changed) head/misc/metalink-checker/distinfo (props changed) head/misc/metalink-editor/distinfo (props changed) head/misc/metalink-tools/distinfo (props changed) head/misc/metromap/distinfo (props changed) head/misc/mmv/distinfo (props changed) head/misc/mshell/distinfo (props changed) head/misc/mtail/distinfo (props changed) head/misc/mtx/distinfo (props changed) head/misc/nagios-base-logos/distinfo (props changed) head/misc/najitool/distinfo (props changed) head/misc/newer/distinfo (props changed) head/misc/nsf/distinfo (props changed) head/misc/numchar/distinfo (props changed) head/misc/nut/distinfo (props changed) head/misc/ondir/distinfo (props changed) head/misc/opencyc/distinfo (props changed) head/misc/openr2/distinfo (props changed) head/misc/orville-write/distinfo (props changed) head/misc/ossp-uuid/distinfo (props changed) head/misc/otter/distinfo (props changed) head/misc/p5-Acme-ButFirst/distinfo (props changed) head/misc/p5-Array-Compare/distinfo (props changed) head/misc/p5-Array-Diff/distinfo (props changed) head/misc/p5-Array-FileReader/distinfo (props changed) head/misc/p5-Array-IntSpan/distinfo (props changed) head/misc/p5-Array-LineReader/distinfo (props changed) head/misc/p5-Array-PrintCols/distinfo (props changed) head/misc/p5-Array-RefElem/distinfo (props changed) head/misc/p5-Asterisk-FastAGI/distinfo (props changed) head/misc/p5-Asterisk/distinfo (props changed) head/misc/p5-Bot-Training-MegaHAL/distinfo (props changed) head/misc/p5-Bot-Training-StarCraft/distinfo (props changed) head/misc/p5-Bot-Training/distinfo (props changed) head/misc/p5-Business-EDI/distinfo (props changed) head/misc/p5-Business-ISBN-Data/distinfo (props changed) head/misc/p5-Business-ISBN/distinfo (props changed) head/misc/p5-Business-ISIN/distinfo (props changed) head/misc/p5-Business-ISSN/distinfo (props changed) head/misc/p5-Business-UPS/distinfo (props changed) head/misc/p5-Chatbot-Eliza/distinfo (props changed) head/misc/p5-Data-Buffer/distinfo (props changed) head/misc/p5-File-CounterFile/distinfo (props changed) head/misc/p5-File-Sort/distinfo (props changed) head/misc/p5-Geo-Cache/distinfo (props changed) head/misc/p5-Geo-Coder-Bing/distinfo (props changed) head/misc/p5-Geo-Coder-Multimap/distinfo (props changed) head/misc/p5-Geo-Coder-Multiple/distinfo (props changed) head/misc/p5-Geo-Coder-Navteq/distinfo (props changed) head/misc/p5-Geo-Coder-Ovi/distinfo (props changed) head/misc/p5-Geo-Coder-PlaceFinder/distinfo (props changed) head/misc/p5-Geo-Coder-TomTom/distinfo (props changed) head/misc/p5-Geo-Postcodes-DK/distinfo (props changed) head/misc/p5-Geo-Postcodes-NO/distinfo (props changed) head/misc/p5-Geo-Postcodes/distinfo (props changed) head/misc/p5-Geo-Weather/distinfo (props changed) head/misc/p5-Geography-Countries/distinfo (props changed) head/misc/p5-I18N-Charset/distinfo (props changed) head/misc/p5-I18N-LangTags/distinfo (props changed) head/misc/p5-LEGO-RCX/distinfo (props changed) head/misc/p5-List-Compare/distinfo (props changed) head/misc/p5-List-Util-WeightedRoundRobin/distinfo (props changed) head/misc/p5-Locale-Codes/distinfo (props changed) head/misc/p5-Locale-Geocode/distinfo (props changed) head/misc/p5-Locale-Msgcat/distinfo (props changed) head/misc/p5-Locale-SubCountry/distinfo (props changed) head/misc/p5-Locale-US/distinfo (props changed) head/misc/p5-Net-vCard/distinfo (props changed) head/misc/p5-Norge/distinfo (props changed) head/misc/p5-Test-Dir/distinfo (props changed) head/misc/p5-Tie-DxHash/distinfo (props changed) head/misc/p5-Zen-Koans/distinfo (props changed) head/misc/pantry/distinfo (props changed) head/misc/pastebinit/distinfo (props changed) head/misc/patchutils/distinfo (props changed) head/misc/pauker/distinfo (props changed) head/misc/pdfmap/distinfo (props changed) head/misc/pdmenu/distinfo (props changed) head/misc/pear-Text_Figlet/distinfo (props changed) head/misc/phraze/distinfo (props changed) head/misc/pinfo/distinfo (props changed) head/misc/pipe/distinfo (props changed) head/misc/podsleuth/distinfo (props changed) head/misc/posixtestsuite/distinfo (props changed) head/misc/projectionlib/distinfo (props changed) head/misc/proxyper/distinfo (props changed) head/misc/pspresent/distinfo (props changed) head/misc/py-YABT/distinfo (props changed) head/misc/py-osd/distinfo (props changed) head/misc/py-pexpect/distinfo (props changed) head/misc/py-progressbar/distinfo (props changed) head/misc/pylize/distinfo (props changed) head/misc/pypanda/distinfo (props changed) head/misc/qbrew/distinfo (props changed) head/misc/qlas/distinfo (props changed) head/misc/quick-lounge-applet/distinfo (props changed) head/misc/quotes/distinfo (props changed) head/misc/quranref/distinfo (props changed) head/misc/ree/distinfo (props changed) head/misc/rfc/distinfo (props changed) head/misc/ringtonetools/distinfo (props changed) head/misc/rname/distinfo (props changed) head/misc/rpl/distinfo (props changed) head/misc/rtfm/distinfo (props changed) head/misc/ruby-progressbar/distinfo (props changed) head/misc/ruby-vpim/distinfo (props changed) head/misc/rubygem-dotenv/distinfo (props changed) head/misc/rubygem-rabbit/distinfo (props changed) head/misc/salias/distinfo (props changed) head/misc/seq2/distinfo (props changed) head/misc/shc/distinfo (props changed) head/misc/shuffle-db/distinfo (props changed) head/misc/shuffle/distinfo (props changed) head/misc/since/distinfo (props changed) head/misc/skyutils/distinfo (props changed) head/misc/sloccount/distinfo (props changed) head/misc/sls/distinfo (props changed) head/misc/smssend/distinfo (props changed) head/misc/spamcalc/distinfo (props changed) head/misc/sshbuddy/distinfo (props changed) head/misc/stan/distinfo (props changed) head/misc/susv2/distinfo (props changed) head/misc/susv3/distinfo (props changed) head/misc/table.el/distinfo (props changed) head/misc/talkfilters/distinfo (props changed) head/misc/tcb/distinfo (props changed) head/misc/team/distinfo (props changed) head/misc/telbook/distinfo (props changed) head/misc/tellico-kde4/distinfo (props changed) head/misc/tempcontrol/distinfo (props changed) head/misc/termatrix/distinfo (props changed) head/misc/terraform/distinfo (props changed) head/misc/teseq/distinfo (props changed) head/misc/tet/distinfo (props changed) head/misc/tkcron/distinfo (props changed) head/misc/tkinfo/distinfo (props changed) head/misc/tkman/distinfo (props changed) head/misc/tkrunit/distinfo (props changed) head/misc/toilet/distinfo (props changed) head/misc/tpp/distinfo (props changed) head/misc/translate/distinfo (props changed) head/misc/ttyrec/distinfo (props changed) head/misc/txt2regex/distinfo (props changed) head/misc/typetrainer/distinfo (props changed) head/misc/uf-view/distinfo (props changed) head/misc/uk-phone/distinfo (props changed) head/misc/uk-postcodes/distinfo (props changed) head/misc/umodunpack/distinfo (props changed) head/misc/unclutter/distinfo (props changed) head/misc/upclient/distinfo (props changed) head/misc/us-zipcodes/distinfo (props changed) head/misc/usbrh-libusb/distinfo (props changed) head/misc/utftools/distinfo (props changed) head/misc/vera/distinfo (props changed) head/misc/viz/distinfo (props changed) head/misc/whichman/distinfo (props changed) head/misc/window/distinfo (props changed) head/misc/wmScoreBoard/distinfo (props changed) head/misc/wmcalendar/distinfo (props changed) head/misc/wmfirew/distinfo (props changed) head/misc/wminfo/distinfo (props changed) head/misc/wmjulia/distinfo (props changed) head/misc/wmpal/distinfo (props changed) head/misc/wmtunlo/distinfo (props changed) head/misc/wmwork/distinfo (props changed) head/misc/wotsap/distinfo (props changed) head/misc/xbiso/distinfo (props changed) head/misc/xd/distinfo (props changed) head/misc/xdelta/distinfo (props changed) head/misc/xfce4-artwork/distinfo (props changed) head/misc/xfce4-wm-themes/distinfo (props changed) head/misc/xgas/distinfo (props changed) head/misc/xless/distinfo (props changed) head/misc/xmonad-log-applet/distinfo (props changed) head/misc/xosd/distinfo (props changed) head/misc/xpns/distinfo (props changed) head/misc/xsw/distinfo (props changed) head/misc/xtail/distinfo (props changed) head/misc/xtar/distinfo (props changed) head/misc/xtypo/distinfo (props changed) head/misc/xyzcmd/distinfo (props changed) head/misc/yaunc/distinfo (props changed) head/misc/ytree/distinfo (props changed) head/misc/zoneinfo/distinfo (props changed) head/multimedia/ab25/distinfo (props changed) head/multimedia/abby/distinfo (props changed) head/multimedia/acidrip/distinfo (props changed) head/multimedia/aegisub/distinfo (props changed) head/multimedia/arista/distinfo (props changed) head/multimedia/asdcplib/distinfo (props changed) head/multimedia/assimp/distinfo (props changed) head/multimedia/atomicparsley/distinfo (props changed) head/multimedia/audiopreview/distinfo (props changed) head/multimedia/avbin/distinfo (props changed) head/multimedia/avidemux2/distinfo (props changed) head/multimedia/avinfo/distinfo (props changed) head/multimedia/bangarang/distinfo (props changed) head/multimedia/banshee/distinfo (props changed) head/multimedia/beep-media-player/distinfo (props changed) head/multimedia/bino/distinfo (props changed) head/multimedia/bsdbktr_tvtune/distinfo (props changed) head/multimedia/camserv/distinfo (props changed) head/multimedia/castpodder/distinfo (props changed) head/multimedia/cheese/distinfo (props changed) head/multimedia/clipgrab/distinfo (props changed) head/multimedia/clive/distinfo (props changed) head/multimedia/clive1/distinfo (props changed) head/multimedia/clutter-gst/distinfo (props changed) head/multimedia/devede/distinfo (props changed) head/multimedia/dirac/distinfo (props changed) head/multimedia/dtv/distinfo (props changed) head/multimedia/dumpmpeg/distinfo (props changed) head/multimedia/dv2jpg/distinfo (props changed) head/multimedia/dv2sub/distinfo (props changed) head/multimedia/dvbcut/distinfo (props changed) head/multimedia/dvbsnoop/distinfo (props changed) head/multimedia/dvdauthor/distinfo (props changed) head/multimedia/dvdid/distinfo (props changed) head/multimedia/dvdrip/distinfo (props changed) head/multimedia/dvts/distinfo (props changed) head/multimedia/emotion/distinfo (props changed) head/multimedia/emovix/distinfo (props changed) head/multimedia/ffmpeg/distinfo (props changed) head/multimedia/ffmpeg0/distinfo (props changed) head/multimedia/ffmpegthumbnailer/distinfo (props changed) head/multimedia/flvmeta/distinfo (props changed) head/multimedia/flvstreamer/distinfo (props changed) head/multimedia/flvtool++/distinfo (props changed) head/multimedia/freetuxtv/distinfo (props changed) head/multimedia/freevo/distinfo (props changed) head/multimedia/fxtv/distinfo (props changed) head/multimedia/gaupol/distinfo (props changed) head/multimedia/gavl/distinfo (props changed) head/multimedia/gcap/distinfo (props changed) head/multimedia/gcfilms/distinfo (props changed) head/multimedia/gdialog/distinfo (props changed) head/multimedia/gdvrecv/distinfo (props changed) head/multimedia/ggrab/distinfo (props changed) head/multimedia/gmencoder/distinfo (props changed) head/multimedia/gmerlin-avdecoder/distinfo (props changed) head/multimedia/gmerlin/distinfo (props changed) head/multimedia/gmimms/distinfo (props changed) head/multimedia/gnome-mplayer/distinfo (props changed) head/multimedia/gnome-subtitles/distinfo (props changed) head/multimedia/gopchop/distinfo (props changed) head/multimedia/gpac-libgpac/distinfo (props changed) head/multimedia/gpac-mp4box/distinfo (props changed) head/multimedia/gpodder/distinfo (props changed) head/multimedia/grake/distinfo (props changed) head/multimedia/gst123/distinfo (props changed) head/multimedia/gstreamer-ffmpeg/distinfo (props changed) head/multimedia/gstreamer-plugins-buzztard/distinfo (props changed) head/multimedia/gstreamer-plugins-fluendo-mpegdemux/distinfo (props changed) head/multimedia/gstreamer-plugins-gnonlin/distinfo (props changed) head/multimedia/gstreamer-plugins/distinfo (props changed) head/multimedia/gstreamer/distinfo (props changed) head/multimedia/gstreamermm/distinfo (props changed) head/multimedia/gtk-recordmydesktop/distinfo (props changed) head/multimedia/gxanim/distinfo (props changed) head/multimedia/gxine/distinfo (props changed) head/multimedia/handbrake/distinfo (props changed) head/multimedia/hs-gstreamer/distinfo (props changed) head/multimedia/imagination/distinfo (props changed) head/multimedia/iriverter/distinfo (props changed) head/multimedia/iso2mkv/distinfo (props changed) head/multimedia/jmref/distinfo (props changed) head/multimedia/k9copy-kde4/distinfo (props changed) head/multimedia/kaffeine/distinfo (props changed) head/multimedia/kino/distinfo (props changed) head/multimedia/kissdx/distinfo (props changed) head/multimedia/kmplayer-kde4/distinfo (props changed) head/multimedia/kplayer-kde4/distinfo (props changed) head/multimedia/libaacs/distinfo (props changed) head/multimedia/libass/distinfo (props changed) head/multimedia/libbluray/distinfo (props changed) head/multimedia/libcec/distinfo (props changed) head/multimedia/libdc1394/distinfo (props changed) head/multimedia/libdca/distinfo (props changed) head/multimedia/libdv/distinfo (props changed) head/multimedia/libdvbpsi/distinfo (props changed) head/multimedia/libdvdcss/distinfo (props changed) head/multimedia/libdvdnav/distinfo (props changed) head/multimedia/libdvdread/distinfo (props changed) head/multimedia/libfame/distinfo (props changed) head/multimedia/libkate/distinfo (props changed) head/multimedia/libmatroska/distinfo (props changed) head/multimedia/libmovtar/distinfo (props changed) head/multimedia/libmpeg2/distinfo (props changed) head/multimedia/libmpeg3/distinfo (props changed) head/multimedia/libquicktime-lame/distinfo (props changed) head/multimedia/libquicktime/distinfo (props changed) head/multimedia/libquvi/distinfo (props changed) head/multimedia/librtmp/distinfo (props changed) head/multimedia/libsmacker/distinfo (props changed) head/multimedia/libtheora/distinfo (props changed) head/multimedia/libtuner/distinfo (props changed) head/multimedia/libv4l/distinfo (props changed) head/multimedia/libxine/distinfo (props changed) head/multimedia/libxspf/distinfo (props changed) head/multimedia/linux-f10-libtheora/distinfo.i386 (props changed) head/multimedia/linux-f10-libv4l/distinfo.i386 (props changed) head/multimedia/linux-huludesktop/distinfo (props changed) head/multimedia/linux-realplayer/distinfo (props changed) head/multimedia/linux-tsmuxer/distinfo (props changed) head/multimedia/linux-xmovie/distinfo (props changed) head/multimedia/linux_v4l2wrapper-kmod/distinfo (props changed) head/multimedia/lsdvd/distinfo (props changed) head/multimedia/lxdvdrip/distinfo (props changed) head/multimedia/m2tstoavi/distinfo (props changed) head/multimedia/m2vrequantiser/distinfo (props changed) head/multimedia/mediadownloader/distinfo (props changed) head/multimedia/mediainfo/distinfo (props changed) head/multimedia/mimms/distinfo (props changed) head/multimedia/mjpegtools/distinfo (props changed) head/multimedia/mkclean/distinfo (props changed) head/multimedia/mkvalidator/distinfo (props changed) head/multimedia/mkvtoolnix/distinfo (props changed) head/multimedia/mkxvcd/distinfo (props changed) head/multimedia/mmpython/distinfo (props changed) head/multimedia/mmsclient/distinfo (props changed) head/multimedia/mmsrip/distinfo (props changed) head/multimedia/motion/distinfo (props changed) head/multimedia/mp3cd/distinfo (props changed) head/multimedia/mp4v2/distinfo (props changed) head/multimedia/mpeg2codec/distinfo (props changed) head/multimedia/mpeg2play/distinfo (props changed) head/multimedia/mpeg4ip/distinfo (props changed) head/multimedia/mpeg_encode/distinfo (props changed) head/multimedia/mpeg_play/distinfo (props changed) head/multimedia/mpeg_stat/distinfo (props changed) head/multimedia/mpgtx/distinfo (props changed) head/multimedia/mplayer-fonts/distinfo (props changed) head/multimedia/mplayer-skins/distinfo (props changed) head/multimedia/mplayer2/distinfo (props changed) head/multimedia/mplayerxp/distinfo (props changed) head/multimedia/mplex/distinfo (props changed) head/multimedia/msdl/distinfo (props changed) head/multimedia/mxflib/distinfo (props changed) head/multimedia/nxtvepg/distinfo (props changed) head/multimedia/ogmtools/distinfo (props changed) head/multimedia/opencinematools/distinfo (props changed) head/multimedia/openmovieeditor/distinfo (props changed) head/multimedia/openquicktime/distinfo (props changed) head/multimedia/openshot/distinfo (props changed) head/multimedia/oqtencoder/distinfo (props changed) head/multimedia/oqtplayer/distinfo (props changed) head/multimedia/p5-Audio-M4P/distinfo (props changed) head/multimedia/p5-FFmpeg-Command/distinfo (props changed) head/multimedia/p5-FLV-Info/distinfo (props changed) head/multimedia/p5-File-Format-RIFF/distinfo (props changed) head/multimedia/p5-GStreamer/distinfo (props changed) head/multimedia/p5-MP4-Info/distinfo (props changed) head/multimedia/p5-Net-UPnP/distinfo (props changed) head/multimedia/p5-Subtitles/distinfo (props changed) head/multimedia/p5-Umph-Prompt/distinfo (props changed) head/multimedia/p5-Video-OpenQuicktime/distinfo (props changed) head/multimedia/phonon-xine/distinfo (props changed) head/multimedia/photofilmstrip/distinfo (props changed) head/multimedia/pitivi/distinfo (props changed) head/multimedia/playd/distinfo (props changed) head/multimedia/plexmediaserver/distinfo (props changed) head/multimedia/podcatcher/distinfo (props changed) head/multimedia/poe/distinfo (props changed) head/multimedia/ppm2fli/distinfo (props changed) head/multimedia/ptx-kmod/distinfo (props changed) head/multimedia/pvr250/distinfo (props changed) head/multimedia/pvrxxx/distinfo (props changed) head/multimedia/pwcbsd/distinfo (props changed) head/multimedia/pwcview/distinfo (props changed) head/multimedia/py-gstreamer/distinfo (props changed) head/multimedia/py-kaa-base/distinfo (props changed) head/multimedia/py-kaa-imlib2/distinfo (props changed) head/multimedia/py-kaa-metadata/distinfo (props changed) head/multimedia/py-periscope/distinfo (props changed) head/multimedia/py-pybmp/distinfo (props changed) head/multimedia/py-subliminal/distinfo (props changed) head/multimedia/py-tvnamer/distinfo (props changed) head/multimedia/pyjama/distinfo (props changed) head/multimedia/pymp/distinfo (props changed) head/multimedia/quark/distinfo (props changed) head/multimedia/quodlibet/distinfo (props changed) head/multimedia/quvi/distinfo (props changed) head/multimedia/recmpeg/distinfo (props changed) head/multimedia/recordmydesktop/distinfo (props changed) head/multimedia/replex/distinfo (props changed) head/multimedia/rox-videothumbnail/distinfo (props changed) head/multimedia/rtmpdump/distinfo (props changed) head/multimedia/ruby-flvtool2/distinfo (props changed) head/multimedia/rubygem-clutter-gstreamer/distinfo (props changed) head/multimedia/rubygem-gstreamer/distinfo (props changed) head/multimedia/sabbu/distinfo (props changed) head/multimedia/schroedinger/distinfo (props changed) head/multimedia/shell-fm/distinfo (props changed) head/multimedia/smile/distinfo (props changed) head/multimedia/smpeg/distinfo (props changed) head/multimedia/smplayer-themes/distinfo (props changed) head/multimedia/sms1xxx-kmod/distinfo (props changed) head/multimedia/spigot/distinfo (props changed) head/multimedia/spook/distinfo (props changed) head/multimedia/streamanalyze/distinfo (props changed) head/multimedia/subtitleeditor/distinfo (props changed) head/multimedia/subtitleoffsetmodifier/distinfo (props changed) head/multimedia/subtitleripper/distinfo (props changed) head/multimedia/subtools/distinfo (props changed) head/multimedia/swfdec-gnome/distinfo (props changed) head/multimedia/szap-s2/distinfo (props changed) head/multimedia/tcmplex-panteltje/distinfo (props changed) head/multimedia/tivodecode/distinfo (props changed) head/multimedia/totem-pl-parser/distinfo (props changed) head/multimedia/totem/distinfo (props changed) head/multimedia/transcode/distinfo (props changed) head/multimedia/tstools/distinfo (props changed) head/multimedia/tunapie/distinfo (props changed) head/multimedia/umplayer/distinfo (props changed) head/multimedia/umr/distinfo (props changed) head/multimedia/v4l-utils/distinfo (props changed) head/multimedia/v4l_compat/distinfo (props changed) head/multimedia/vamps/distinfo (props changed) head/multimedia/vcdgear/distinfo (props changed) head/multimedia/vcdimager/distinfo (props changed) head/multimedia/vcdpad/distinfo (props changed) head/multimedia/vdr-plugin-control/distinfo (props changed) head/multimedia/vdr-plugin-eepg/distinfo (props changed) head/multimedia/vdr-plugin-epgsearch/distinfo (props changed) head/multimedia/vdr-plugin-extrecmenu/distinfo (props changed) head/multimedia/vdr-plugin-femon/distinfo (props changed) head/multimedia/vdr-plugin-infosatepg/distinfo (props changed) head/multimedia/vdr-plugin-iptv/distinfo (props changed) head/multimedia/vdr-plugin-osdpip/distinfo (props changed) head/multimedia/vdr-plugin-osdteletext/distinfo (props changed) head/multimedia/vdr-plugin-reelchannelscan/distinfo (props changed) head/multimedia/vdr-plugin-remote/distinfo (props changed) head/multimedia/vdr-plugin-skinenigmang/distinfo (props changed) head/multimedia/vdr-plugin-sleeptimer/distinfo (props changed) head/multimedia/vdr-plugin-softdevice/distinfo (props changed) head/multimedia/vdr-plugin-softhddevice/distinfo (props changed) head/multimedia/vdr-plugin-streamdev/distinfo (props changed) head/multimedia/vdr-plugin-ttxtsubs/distinfo (props changed) head/multimedia/vdr-plugin-upnp/distinfo (props changed) head/multimedia/vdr-plugin-vdrmanager/distinfo (props changed) head/multimedia/vdr-plugin-wirbelscan/distinfo (props changed) head/multimedia/vdr-plugin-xineliboutput/distinfo (props changed) head/multimedia/vdr-plugin-xvdr/distinfo (props changed) head/multimedia/vdr/distinfo (props changed) head/multimedia/vic/distinfo (props changed) head/multimedia/vodcatcher/distinfo (props changed) head/multimedia/vtkmpeg2encode/distinfo (props changed) head/multimedia/w_scan/distinfo (props changed) head/multimedia/win32-codecs/distinfo (props changed) head/multimedia/xanim/distinfo (props changed) head/multimedia/xbmc-addon-xvdr/distinfo (props changed) head/multimedia/xbmc-pvr/distinfo (props changed) head/multimedia/xfce4-xmms-plugin/distinfo (props changed) head/multimedia/xine/distinfo (props changed) head/multimedia/xmms-skins-huge/distinfo (props changed) head/multimedia/xmms-skins/distinfo (props changed) head/multimedia/xmms-status-plugin/distinfo (props changed) head/multimedia/xmms-weasel/distinfo (props changed) head/multimedia/xporthdmv/distinfo (props changed) head/multimedia/xtheater/distinfo (props changed) head/multimedia/xvid/distinfo (props changed) head/multimedia/y4mscaler/distinfo (props changed) head/multimedia/youtube-viewer/distinfo (props changed) head/multimedia/zoneminder/distinfo (props changed) head/net-im/ari-yahoo/distinfo (props changed) head/net-im/bsflite/distinfo (props changed) head/net-im/centericq/distinfo (props changed) head/net-im/centerim-devel/distinfo (props changed) head/net-im/centerim/distinfo (props changed) head/net-im/cicquin/distinfo (props changed) head/net-im/cjc/distinfo (props changed) head/net-im/climm/distinfo (props changed) head/net-im/coccinella/distinfo (props changed) head/net-im/convey/distinfo (props changed) head/net-im/echat/distinfo (props changed) head/net-im/ejabberd/distinfo (props changed) head/net-im/emesene/distinfo (props changed) head/net-im/freetalk/distinfo (props changed) head/net-im/fugu/distinfo (props changed) head/net-im/gajim/distinfo (props changed) head/net-im/gale/distinfo (props changed) head/net-im/gloox/distinfo (props changed) head/net-im/gtkyahoo/distinfo (props changed) head/net-im/gyach/distinfo (props changed) head/net-im/hotot/distinfo (props changed) head/net-im/icb/distinfo (props changed) head/net-im/icmpchat/distinfo (props changed) head/net-im/icqlib/distinfo (props changed) head/net-im/imspector/distinfo (props changed) head/net-im/iserverd/distinfo (props changed) head/net-im/jabber-pyaim/distinfo (props changed) head/net-im/jabber-pyicq/distinfo (props changed) head/net-im/jabber.el/distinfo (props changed) head/net-im/jabber/distinfo (props changed) head/net-im/jarl/distinfo (props changed) head/net-im/jggtrans/distinfo (props changed) head/net-im/jitsi/distinfo (props changed) head/net-im/kmess-kde4/distinfo (props changed) head/net-im/libjingle/distinfo (props changed) head/net-im/libpurple/distinfo (props changed) head/net-im/libtelepathy/distinfo (props changed) head/net-im/libyahoo2/distinfo (props changed) head/net-im/licq/distinfo (props changed) head/net-im/linpopup/distinfo (props changed) head/net-im/loudmouth/distinfo (props changed) head/net-im/mbpurple/distinfo (props changed) head/net-im/mcabber/distinfo (props changed) head/net-im/meanwhile/distinfo (props changed) head/net-im/mercury/distinfo (props changed) head/net-im/mikutter/distinfo (props changed) head/net-im/mu-conference/distinfo (props changed) head/net-im/naim/distinfo (props changed) head/net-im/openfire-devel/distinfo (props changed) head/net-im/p5-DJabberd/distinfo (props changed) head/net-im/p5-Jabber-Connection/distinfo (props changed) head/net-im/p5-Jabber-Lite/distinfo (props changed) head/net-im/p5-Jabber-SimpleSend/distinfo (props changed) head/net-im/p5-Net-AIM/distinfo (props changed) head/net-im/p5-Net-AOLIM/distinfo (props changed) head/net-im/p5-Net-Async-XMPP/distinfo (props changed) head/net-im/p5-Net-ICQ2000/distinfo (props changed) head/net-im/p5-Net-Jabber/distinfo (props changed) head/net-im/p5-Net-NetSend/distinfo (props changed) head/net-im/p5-Net-OSCAR/distinfo (props changed) head/net-im/p5-Net-Stomp/distinfo (props changed) head/net-im/p5-Net-XMPP/distinfo (props changed) head/net-im/p5-Net-XMPP2/distinfo (props changed) head/net-im/p5-Protocol-XMPP/distinfo (props changed) head/net-im/p5-SOAP-Transport-JABBER/distinfo (props changed) head/net-im/papyon/distinfo (props changed) head/net-im/pebrot/distinfo (props changed) head/net-im/pidgin-audacious-remote/distinfo (props changed) head/net-im/pidgin-birthday-reminder/distinfo (props changed) head/net-im/pidgin-bs/distinfo (props changed) head/net-im/pidgin-facebookchat/distinfo (props changed) head/net-im/pidgin-fetion/distinfo (props changed) head/net-im/pidgin-guifications/distinfo (props changed) head/net-im/pidgin-hotkeys/distinfo (props changed) head/net-im/pidgin-latex/distinfo (props changed) head/net-im/pidgin-libnotify/distinfo (props changed) head/net-im/pidgin-manualsize/distinfo (props changed) head/net-im/pidgin-osd/distinfo (props changed) head/net-im/pidgin-pidgimpd/distinfo (props changed) head/net-im/pidgin-privacy-please/distinfo (props changed) head/net-im/pidgin-rhythmbox/distinfo (props changed) head/net-im/pidgin-sipe/distinfo (props changed) head/net-im/pidgin-twitter/distinfo (props changed) head/net-im/pork/distinfo (props changed) head/net-im/prosody/distinfo (props changed) head/net-im/psimedia/distinfo (props changed) head/net-im/pwytter/distinfo (props changed) head/net-im/py-jabber/distinfo (props changed) head/net-im/py-jabberbot/distinfo (props changed) head/net-im/py-punjab/distinfo (props changed) head/net-im/py-pyxmpp/distinfo (props changed) head/net-im/py-skype4py/distinfo (props changed) head/net-im/py-xmpppy-irc/distinfo (props changed) head/net-im/py-xmpppy-yahoo/distinfo (props changed) head/net-im/py-xmpppy/distinfo (props changed) head/net-im/qq/distinfo (props changed) head/net-im/qwit-devel/distinfo (props changed) head/net-im/qwit/distinfo (props changed) head/net-im/qxmpp-leechcraft/distinfo (props changed) head/net-im/qxmpp/distinfo (props changed) head/net-im/ramblercontacts/distinfo (props changed) head/net-im/rubygem-termtter/distinfo (props changed) head/net-im/rubygem-tinder/distinfo (props changed) head/net-im/sendxmpp/distinfo (props changed) head/net-im/skype-devel/distinfo (props changed) head/net-im/skype/distinfo (props changed) head/net-im/telepathy-butterfly/distinfo (props changed) head/net-im/telepathy-logger-qt4/distinfo (props changed) head/net-im/telepathy-python/distinfo (props changed) head/net-im/tkabber-devel/distinfo (props changed) head/net-im/tkabber-plugins/distinfo (props changed) head/net-im/tkabber/distinfo (props changed) head/net-im/tkabbur/distinfo (props changed) head/net-im/ttytter/distinfo (props changed) head/net-im/twirssi/distinfo (props changed) head/net-im/twitmail/distinfo (props changed) head/net-im/vicq/distinfo (props changed) head/net-im/vqcc-gtk/distinfo (props changed) head/net-im/ysm/distinfo (props changed) head/net-im/zephyr/distinfo (props changed) head/net-mgmt/TkTopNetFlows/distinfo (props changed) head/net-mgmt/aggregate/distinfo (props changed) head/net-mgmt/airport/distinfo (props changed) head/net-mgmt/angst/distinfo (props changed) head/net-mgmt/ap-utils/distinfo (props changed) head/net-mgmt/argus-monitor/distinfo (props changed) head/net-mgmt/argus3-clients/distinfo (props changed) head/net-mgmt/argus3/distinfo (props changed) head/net-mgmt/arpalert/distinfo (props changed) head/net-mgmt/arpwatch/distinfo (props changed) head/net-mgmt/arts++/distinfo (props changed) head/net-mgmt/aspathtree/distinfo (props changed) head/net-mgmt/bandwidthd/distinfo (props changed) head/net-mgmt/bgpq/distinfo (props changed) head/net-mgmt/bigsister/distinfo (props changed) head/net-mgmt/braa/distinfo (props changed) head/net-mgmt/bsd-airtools/distinfo (props changed) head/net-mgmt/bsnmp-jails/distinfo (props changed) head/net-mgmt/bsnmp-ucd/distinfo (props changed) head/net-mgmt/bsnmptools/distinfo (props changed) head/net-mgmt/bwm-ng/distinfo (props changed) head/net-mgmt/cacti-spine/distinfo (props changed) head/net-mgmt/cacti/distinfo (props changed) head/net-mgmt/cdpd/distinfo (props changed) head/net-mgmt/cdpr/distinfo (props changed) head/net-mgmt/cflowd/distinfo (props changed) head/net-mgmt/check_logfiles/distinfo (props changed) head/net-mgmt/check_multi/distinfo (props changed) head/net-mgmt/check_mysql_health/distinfo (props changed) head/net-mgmt/check_snmp_pkgvuln/distinfo (props changed) head/net-mgmt/chillispot/distinfo (props changed) head/net-mgmt/choparp/distinfo (props changed) head/net-mgmt/cidr/distinfo (props changed) head/net-mgmt/circe/distinfo (props changed) head/net-mgmt/cisco_conf/distinfo (props changed) head/net-mgmt/ciscoconf/distinfo (props changed) head/net-mgmt/clog/distinfo (props changed) head/net-mgmt/confregdecode/distinfo (props changed) head/net-mgmt/coovachilli/distinfo (props changed) head/net-mgmt/cowpatty/distinfo (props changed) head/net-mgmt/cricket/distinfo (props changed) head/net-mgmt/darkstat/distinfo (props changed) head/net-mgmt/devmon-templates/distinfo (props changed) head/net-mgmt/devmon/distinfo (props changed) head/net-mgmt/disco/distinfo (props changed) head/net-mgmt/docsis/distinfo (props changed) head/net-mgmt/driftnet/distinfo (props changed) head/net-mgmt/echolot/distinfo (props changed) head/net-mgmt/ehnt/distinfo (props changed) head/net-mgmt/etherape/distinfo (props changed) head/net-mgmt/ezradius/distinfo (props changed) head/net-mgmt/fetchconfig/distinfo (props changed) head/net-mgmt/flow-extract/distinfo (props changed) head/net-mgmt/flow-tools-ng/distinfo (props changed) head/net-mgmt/flow-tools/distinfo (props changed) head/net-mgmt/flowd/distinfo (props changed) head/net-mgmt/flowviewer/distinfo (props changed) head/net-mgmt/fprobe/distinfo (props changed) head/net-mgmt/fruity/distinfo (props changed) head/net-mgmt/glpi-plugins-fusioninventory-server/distinfo (props changed) head/net-mgmt/glpi-plugins-tracker-agent/distinfo (props changed) head/net-mgmt/glpi-plugins-tracker-server/distinfo (props changed) head/net-mgmt/gps/distinfo (props changed) head/net-mgmt/grepip/distinfo (props changed) head/net-mgmt/gsnmp/distinfo (props changed) head/net-mgmt/hastmon/distinfo (props changed) head/net-mgmt/hawk/distinfo (props changed) head/net-mgmt/horde3-nic/distinfo (props changed) head/net-mgmt/icmpmonitor/distinfo (props changed) head/net-mgmt/icmpquery/distinfo (props changed) head/net-mgmt/ifgraph/distinfo (props changed) head/net-mgmt/iftop/distinfo (props changed) head/net-mgmt/iog/distinfo (props changed) head/net-mgmt/ipacco/distinfo (props changed) head/net-mgmt/ipacctd/distinfo (props changed) head/net-mgmt/ipaudit/distinfo (props changed) head/net-mgmt/ipcad/distinfo (props changed) head/net-mgmt/ipcalc/distinfo (props changed) head/net-mgmt/ipfm/distinfo (props changed) head/net-mgmt/ipplan/distinfo (props changed) head/net-mgmt/ipv6calc/distinfo (props changed) head/net-mgmt/ipv6gen/distinfo (props changed) head/net-mgmt/ipv6mon/distinfo (props changed) head/net-mgmt/irrtoolset/distinfo (props changed) head/net-mgmt/isic/distinfo (props changed) head/net-mgmt/jnettop/distinfo (props changed) head/net-mgmt/lanmap/distinfo (props changed) head/net-mgmt/libsmi/distinfo (props changed) head/net-mgmt/macroscope/distinfo (props changed) head/net-mgmt/mbrowse/distinfo (props changed) head/net-mgmt/mk-livestatus/distinfo (props changed) head/net-mgmt/mrtg-ping-probe/distinfo (props changed) head/net-mgmt/mrtg/distinfo (props changed) head/net-mgmt/mtrace/distinfo (props changed) head/net-mgmt/nagcon/distinfo (props changed) head/net-mgmt/nagios-certexp-plugin/distinfo (props changed) head/net-mgmt/nagios-check_bacula/distinfo (props changed) head/net-mgmt/nagios-check_clamav/distinfo (props changed) head/net-mgmt/nagios-check_email_delivery/distinfo (props changed) head/net-mgmt/nagios-check_hp_bladechassis/distinfo (props changed) head/net-mgmt/nagios-check_mysql_slave/distinfo (props changed) head/net-mgmt/nagios-check_ports/distinfo (props changed) head/net-mgmt/nagios-check_smartmon/distinfo (props changed) head/net-mgmt/nagios-check_tftp/distinfo (props changed) head/net-mgmt/nagios-devel/distinfo (props changed) head/net-mgmt/nagios-geom/distinfo (props changed) head/net-mgmt/nagios-openldap-plugins/distinfo (props changed) head/net-mgmt/nagios-pf-plugin/distinfo (props changed) head/net-mgmt/nagios-plugins/distinfo (props changed) head/net-mgmt/nagios-portaudit/distinfo (props changed) head/net-mgmt/nagios-silfreed-plugins/distinfo (props changed) head/net-mgmt/nagios-snmp-plugins-extras/distinfo (props changed) head/net-mgmt/nagios-snmp-plugins/distinfo (props changed) head/net-mgmt/nagios-spamd-plugin/distinfo (props changed) head/net-mgmt/nagios/distinfo (props changed) head/net-mgmt/nagiosagent/distinfo (props changed) head/net-mgmt/nagiosgraph/distinfo (props changed) head/net-mgmt/nagiostat/distinfo (props changed) head/net-mgmt/nagircbot/distinfo (props changed) head/net-mgmt/nagstamon/distinfo (props changed) head/net-mgmt/nagtail/distinfo (props changed) head/net-mgmt/nat/distinfo (props changed) head/net-mgmt/nbtscan/distinfo (props changed) head/net-mgmt/ndoutils/distinfo (props changed) head/net-mgmt/ndpmon/distinfo (props changed) head/net-mgmt/nedi/distinfo (props changed) head/net-mgmt/nefu/distinfo (props changed) head/net-mgmt/net-snmp/distinfo (props changed) head/net-mgmt/netams-front/distinfo (props changed) head/net-mgmt/netams/distinfo (props changed) head/net-mgmt/netdot/distinfo (props changed) head/net-mgmt/netleak/distinfo (props changed) head/net-mgmt/netmagis-common/distinfo (props changed) head/net-mgmt/netmask/distinfo (props changed) head/net-mgmt/netmond/distinfo (props changed) head/net-mgmt/netspoc/distinfo (props changed) head/net-mgmt/netustad/distinfo (props changed) head/net-mgmt/netwag/distinfo (props changed) head/net-mgmt/netwox/distinfo (props changed) head/net-mgmt/netxms/distinfo (props changed) head/net-mgmt/ng_ipacct/distinfo (props changed) head/net-mgmt/nitpicker/distinfo (props changed) head/net-mgmt/nocol/distinfo (props changed) head/net-mgmt/nrpe/distinfo (props changed) head/net-mgmt/nsca/distinfo (props changed) head/net-mgmt/nsca27/distinfo (props changed) head/net-mgmt/nstreams/distinfo (props changed) head/net-mgmt/observium/distinfo (props changed) head/net-mgmt/ocsinventory-agent/distinfo (props changed) head/net-mgmt/ocsinventory-ng/distinfo (props changed) head/net-mgmt/openlldp/distinfo (props changed) head/net-mgmt/ourmon/distinfo (props changed) head/net-mgmt/p0f2/distinfo (props changed) head/net-mgmt/p5-AnyEvent-SNMP/distinfo (props changed) head/net-mgmt/p5-BigIP-iControl/distinfo (props changed) head/net-mgmt/p5-Cflow/distinfo (props changed) head/net-mgmt/p5-Cisco-Reconfig/distinfo (props changed) head/net-mgmt/p5-Data-Validate-IP/distinfo (props changed) head/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/distinfo (props changed) head/net-mgmt/p5-FusionInventory-Agent/distinfo (props changed) head/net-mgmt/p5-GRNOC-TL1/distinfo (props changed) head/net-mgmt/p5-MRTG-Parse/distinfo (props changed) head/net-mgmt/p5-Mon/distinfo (props changed) head/net-mgmt/p5-NSNMP/distinfo (props changed) head/net-mgmt/p5-Nagios-Object/distinfo (props changed) head/net-mgmt/p5-Nagios-Plugin-LDAP/distinfo (props changed) head/net-mgmt/p5-Nagios-Plugin/distinfo (props changed) head/net-mgmt/p5-Nagios-Plugins-Memcached/distinfo (props changed) head/net-mgmt/p5-Net-ACL/distinfo (props changed) head/net-mgmt/p5-Net-CIDR/distinfo (props changed) head/net-mgmt/p5-Net-ILO/distinfo (props changed) head/net-mgmt/p5-Net-IP-Match-Regexp/distinfo (props changed) head/net-mgmt/p5-Net-IP-Match-XS/distinfo (props changed) head/net-mgmt/p5-Net-IP-Resolver/distinfo (props changed) head/net-mgmt/p5-Net-IP/distinfo (props changed) head/net-mgmt/p5-Net-IPv4Addr/distinfo (props changed) head/net-mgmt/p5-Net-IPv6Addr/distinfo (props changed) head/net-mgmt/p5-Net-Netmask/distinfo (props changed) head/net-mgmt/p5-Net-SNMP-Util/distinfo (props changed) head/net-mgmt/p5-Net-SNMP/distinfo (props changed) head/net-mgmt/p5-Net-Telnet-Cisco-IOS/distinfo (props changed) head/net-mgmt/p5-NetAddr-IP-Lite/distinfo (props changed) head/net-mgmt/p5-NetAddr-IP/distinfo (props changed) head/net-mgmt/p5-NetApp/distinfo (props changed) head/net-mgmt/p5-POE-Component-SNMP/distinfo (props changed) head/net-mgmt/p5-SNMP-MIB-Compiler/distinfo (props changed) head/net-mgmt/p5-SNMP-Simple/distinfo (props changed) head/net-mgmt/p5-SNMP-Trapinfo/distinfo (props changed) head/net-mgmt/p5-SNMP-Util/distinfo (props changed) head/net-mgmt/p5-SNMP_Session/distinfo (props changed) head/net-mgmt/p5-Telnet-Cisco/distinfo (props changed) head/net-mgmt/p5-Tie-NetAddr-IP/distinfo (props changed) head/net-mgmt/p5-Xymon-Client/distinfo (props changed) head/net-mgmt/p5-Xymon-Server/distinfo (props changed) head/net-mgmt/p5-Xymon/distinfo (props changed) head/net-mgmt/p5-Zenoss/distinfo (props changed) head/net-mgmt/packit/distinfo (props changed) head/net-mgmt/pads/distinfo (props changed) head/net-mgmt/pancho/distinfo (props changed) head/net-mgmt/pandorafms_agent/distinfo (props changed) head/net-mgmt/pandorafms_console/distinfo (props changed) head/net-mgmt/pandorafms_server/distinfo (props changed) head/net-mgmt/percona-monitoring-plugins/distinfo (props changed) head/net-mgmt/pftabled/distinfo (props changed) head/net-mgmt/phpip/distinfo (props changed) head/net-mgmt/phpweathermap/distinfo (props changed) head/net-mgmt/pixilate/distinfo (props changed) head/net-mgmt/pnp/distinfo (props changed) head/net-mgmt/portmon/distinfo (props changed) head/net-mgmt/py-flowtools/distinfo (props changed) head/net-mgmt/py-ipcalc/distinfo (props changed) head/net-mgmt/py-ipy/distinfo (props changed) head/net-mgmt/py-snmp4-apps/distinfo (props changed) head/net-mgmt/py-snmp4-mibs/distinfo (props changed) head/net-mgmt/py-snmp4/distinfo (props changed) head/net-mgmt/py-yapsnmp/distinfo (props changed) head/net-mgmt/qkismet/distinfo (props changed) head/net-mgmt/rackmonkey/distinfo (props changed) head/net-mgmt/ramond/distinfo (props changed) head/net-mgmt/rancid-devel/distinfo (props changed) head/net-mgmt/rancid/distinfo (props changed) head/net-mgmt/rate/distinfo (props changed) head/net-mgmt/rcpd/distinfo (props changed) head/net-mgmt/remarp/distinfo (props changed) head/net-mgmt/routers2-extensions/distinfo (props changed) head/net-mgmt/routers2-extras/distinfo (props changed) head/net-mgmt/routers2/distinfo (props changed) head/net-mgmt/rrdbot/distinfo (props changed) head/net-mgmt/rubygem-visage-app/distinfo (props changed) head/net-mgmt/satellite/distinfo (props changed) head/net-mgmt/sblim-wbemcli/distinfo (props changed) head/net-mgmt/scdp/distinfo (props changed) head/net-mgmt/scli/distinfo (props changed) head/net-mgmt/sdig/distinfo (props changed) head/net-mgmt/send/distinfo (props changed) head/net-mgmt/sendip/distinfo (props changed) head/net-mgmt/sing/distinfo (props changed) head/net-mgmt/sipcalc/distinfo (props changed) head/net-mgmt/sjitter/distinfo (props changed) head/net-mgmt/slate/distinfo (props changed) head/net-mgmt/snmp++/distinfo (props changed) head/net-mgmt/snmp4nagios/distinfo (props changed) head/net-mgmt/snmptt/distinfo (props changed) head/net-mgmt/softflowd/distinfo (props changed) head/net-mgmt/spectools/distinfo (props changed) head/net-mgmt/subcalc/distinfo (props changed) head/net-mgmt/sysmon/distinfo (props changed) head/net-mgmt/tcpreplay/distinfo (props changed) head/net-mgmt/tcptrack/distinfo (props changed) head/net-mgmt/torrus/distinfo (props changed) head/net-mgmt/vidalia/distinfo (props changed) head/net-mgmt/virtinst/distinfo (props changed) head/net-mgmt/wdiag/distinfo (props changed) head/net-mgmt/weathermap/distinfo (props changed) head/net-mgmt/weplab/distinfo (props changed) head/net-mgmt/whatmask/distinfo (props changed) head/net-mgmt/wide-dhcp/distinfo (props changed) head/net-mgmt/wifimgr/distinfo (props changed) head/net-mgmt/wmi-client/distinfo (props changed) head/net-mgmt/yabm/distinfo (props changed) head/net-mgmt/yaf/distinfo (props changed) head/net-mgmt/zenoss/distinfo (props changed) head/net-mgmt/zenpack-checkping/distinfo (props changed) head/net-mgmt/zenpack-dellmon/distinfo (props changed) head/net-mgmt/zenpack-deviceadvdetail/distinfo (props changed) head/net-mgmt/zenpack-devicesearch/distinfo (props changed) head/net-mgmt/zenpack-graphportlet/distinfo (props changed) head/net-mgmt/zenpack-interfacegraphs/distinfo (props changed) head/net-mgmt/zenpack-libvirt/distinfo (props changed) head/net-mgmt/zenpack-macreport/distinfo (props changed) head/net-p2p/amule/distinfo (props changed) head/net-p2p/azureus2/distinfo (props changed) head/net-p2p/bitflu/distinfo (props changed) head/net-p2p/bitmessage/distinfo (props changed) head/net-p2p/bittyrant/distinfo (props changed) head/net-p2p/bnbt/distinfo (props changed) head/net-p2p/btpd/distinfo (props changed) head/net-p2p/btqueue/distinfo (props changed) head/net-p2p/cdonkey/distinfo (props changed) head/net-p2p/cpuminer/distinfo (props changed) head/net-p2p/createtorrent/distinfo (props changed) head/net-p2p/ctcs/distinfo (props changed) head/net-p2p/ctorrent/distinfo (props changed) head/net-p2p/dclib/distinfo (props changed) head/net-p2p/deluge/distinfo (props changed) head/net-p2p/digitalcoin/distinfo (props changed) head/net-p2p/ed2k/distinfo (props changed) head/net-p2p/edonkey-tool-hash/distinfo (props changed) head/net-p2p/eiskaltdcpp-cli/distinfo (props changed) head/net-p2p/eiskaltdcpp-daemon/distinfo (props changed) head/net-p2p/eiskaltdcpp-data/distinfo (props changed) head/net-p2p/eiskaltdcpp-gtk/distinfo (props changed) head/net-p2p/eiskaltdcpp-lib/distinfo (props changed) head/net-p2p/eiskaltdcpp-qt/distinfo (props changed) head/net-p2p/frost/distinfo (props changed) head/net-p2p/gkremldk/distinfo (props changed) head/net-p2p/gnewtellium/distinfo (props changed) head/net-p2p/gnunet-gtk/distinfo (props changed) head/net-p2p/gnunet/distinfo (props changed) head/net-p2p/gtkhx/distinfo (props changed) head/net-p2p/gtorrentviewer/distinfo (props changed) head/net-p2p/i2p/distinfo (props changed) head/net-p2p/jigdo/distinfo (props changed) head/net-p2p/libbt/distinfo (props changed) head/net-p2p/liberator/distinfo (props changed) head/net-p2p/libpdtp/distinfo (props changed) head/net-p2p/libtorrent/distinfo (props changed) head/net-p2p/linux-jigdo/distinfo (props changed) head/net-p2p/linuxdcpp/distinfo (props changed) head/net-p2p/lopster/distinfo (props changed) head/net-p2p/microdc2/distinfo (props changed) head/net-p2p/minder/distinfo (props changed) head/net-p2p/mktorrent/distinfo (props changed) head/net-p2p/mldonkey-perlreactor/distinfo (props changed) head/net-p2p/mldonkey-urlslave/distinfo (props changed) head/net-p2p/museekplus/distinfo (props changed) head/net-p2p/napshare/distinfo (props changed) head/net-p2p/opendchub/distinfo (props changed) head/net-p2p/opennap/distinfo (props changed) head/net-p2p/p5-Net-BitTorrent-File/distinfo (props changed) head/net-p2p/p5-Net-BitTorrent-PeerPacket/distinfo (props changed) head/net-p2p/p5-Net-BitTorrent/distinfo (props changed) head/net-p2p/p5-Net-DirectConnect-TigerHash/distinfo (props changed) head/net-p2p/p5-Net-DirectConnect/distinfo (props changed) head/net-p2p/p5-WWW-BitTorrent/distinfo (props changed) head/net-p2p/phex/distinfo (props changed) head/net-p2p/py-fngrab/distinfo (props changed) head/net-p2p/py-kenosis/distinfo (props changed) head/net-p2p/py-py2play/distinfo (props changed) head/net-p2p/py-vertex/distinfo (props changed) head/net-p2p/rtgui/distinfo (props changed) head/net-p2p/rtorrent/distinfo (props changed) head/net-p2p/solidcoin/distinfo (props changed) head/net-p2p/squall/distinfo (props changed) head/net-p2p/teknap/distinfo (props changed) head/net-p2p/torrentsniff/distinfo (props changed) head/net-p2p/transmission-cli/distinfo (props changed) head/net-p2p/transmission-remote-gui/distinfo (props changed) head/net-p2p/tribler/distinfo (props changed) head/net-p2p/uhub/distinfo (props changed) head/net-p2p/unworkable/distinfo (props changed) head/net-p2p/valknut/distinfo (props changed) head/net-p2p/verlihub-plugins-chatroom/distinfo (props changed) head/net-p2p/verlihub-plugins-floodprotect/distinfo (props changed) head/net-p2p/verlihub-plugins-forbid/distinfo (props changed) head/net-p2p/verlihub-plugins-iplog/distinfo (props changed) head/net-p2p/verlihub-plugins-isp/distinfo (props changed) head/net-p2p/verlihub-plugins-luascript/distinfo (props changed) head/net-p2p/verlihub-plugins-messanger/distinfo (props changed) head/net-p2p/verlihub-plugins-stats/distinfo (props changed) head/net-p2p/verlihub/distinfo (props changed) head/net-p2p/vhcp/distinfo (props changed) head/net-p2p/xnap/distinfo (props changed) head/net-p2p/zetacoin/distinfo (props changed) head/net/3proxy/distinfo (props changed) head/net/44bsd-rdist/distinfo (props changed) head/net/6tunnel/distinfo (props changed) head/net/AquaGatekeeper/distinfo.amd64 (props changed) head/net/AquaGatekeeper/distinfo.i386 (props changed) head/net/DarwinStreamingServer/distinfo (props changed) head/net/GeoIP/distinfo (props changed) head/net/R-cran-twitteR/distinfo (props changed) head/net/Sockets/distinfo (props changed) head/net/abills/distinfo (props changed) head/net/activemq/distinfo (props changed) head/net/acx100/distinfo (props changed) head/net/afpfs-ng/distinfo (props changed) head/net/aget/distinfo (props changed) head/net/aoe/distinfo (props changed) head/net/apinger/distinfo (props changed) head/net/appkonference/distinfo (props changed) head/net/arp-scan/distinfo (props changed) head/net/arp-sk/distinfo (props changed) head/net/arping/distinfo (props changed) head/net/arprelease/distinfo (props changed) head/net/asfrecorder/distinfo (props changed) head/net/asio/distinfo (props changed) head/net/aslookup/distinfo (props changed) head/net/asterisk-oh323/distinfo (props changed) head/net/asterisk14-addons/distinfo (props changed) head/net/asterisk14/distinfo (props changed) head/net/avahi-app/distinfo (props changed) head/net/balance/distinfo (props changed) head/net/bcusdk-eibd/distinfo (props changed) head/net/beacon/distinfo (props changed) head/net/beanstalkd/distinfo (props changed) head/net/bindtest/distinfo (props changed) head/net/binkd/distinfo (props changed) head/net/bird-devel/distinfo (props changed) head/net/bird/distinfo (props changed) head/net/bittwist/distinfo (props changed) head/net/blam/distinfo (props changed) head/net/bld/distinfo (props changed) head/net/bmon/distinfo (props changed) head/net/boclient/distinfo (props changed) head/net/boinc_curses/distinfo (props changed) head/net/bounce/distinfo (props changed) head/net/bsdproxy/distinfo (props changed) head/net/bwi-firmware-kmod/distinfo (props changed) head/net/bwn-firmware-kmod/distinfo (props changed) head/net/cagibi/distinfo (props changed) head/net/callweaver/distinfo (props changed) head/net/ccxstream/distinfo (props changed) head/net/clamz/distinfo (props changed) head/net/click/distinfo (props changed) head/net/clusterit/distinfo (props changed) head/net/cnd/distinfo (props changed) head/net/cnet/distinfo (props changed) head/net/cnupm/distinfo (props changed) head/net/coda6_server/distinfo (props changed) head/net/corkscrew/distinfo (props changed) head/net/crtmpserver/distinfo (props changed) head/net/cryptcat/distinfo (props changed) head/net/csocks/distinfo (props changed) head/net/csync2/distinfo (props changed) head/net/ct/distinfo (props changed) head/net/ctrace/distinfo (props changed) head/net/cvsup/distinfo (props changed) head/net/cvsync/distinfo (props changed) head/net/daemonlogger/distinfo (props changed) head/net/dante/distinfo (props changed) head/net/datapipe/distinfo (props changed) head/net/dbeacon/distinfo (props changed) head/net/delegate/distinfo (props changed) head/net/desktop-data-model/distinfo (props changed) head/net/despoof/distinfo (props changed) head/net/dgd-kernel/distinfo (props changed) head/net/dgd-lpmud/distinfo (props changed) head/net/dhcp6/distinfo (props changed) head/net/dhcpcd/distinfo (props changed) head/net/dhcpdump/distinfo (props changed) head/net/dhcperf/distinfo (props changed) head/net/dhcping/distinfo (props changed) head/net/dhcprelay/distinfo (props changed) head/net/dhcprelya/distinfo (props changed) head/net/dictd-database/distinfo (props changed) head/net/dictd/distinfo (props changed) head/net/dimes/distinfo (props changed) head/net/dosdetector/distinfo (props changed) head/net/drawterm/distinfo (props changed) head/net/dropbox-api-command/distinfo (props changed) head/net/dropbox-uploader/distinfo (props changed) head/net/dtcp/distinfo (props changed) head/net/dtcpclient/distinfo (props changed) head/net/e169-stats/distinfo (props changed) head/net/easysoap/distinfo (props changed) head/net/echoping/distinfo (props changed) head/net/ecore-con/distinfo (props changed) head/net/empty/distinfo (props changed) head/net/entitymib/distinfo (props changed) head/net/erlang_xmlrpc/distinfo (props changed) head/net/etherboot/distinfo (props changed) head/net/etrace/distinfo (props changed) head/net/findmtu/distinfo (props changed) head/net/flowgrep/distinfo (props changed) head/net/fonulator/distinfo (props changed) head/net/forg/distinfo (props changed) head/net/freebsd-tftp/distinfo (props changed) head/net/freebsd-uucp/distinfo (props changed) head/net/freedbd/distinfo (props changed) head/net/freenet6/distinfo (props changed) head/net/freenx/distinfo (props changed) head/net/freeradius-client/distinfo (props changed) head/net/freevrrpd/distinfo (props changed) head/net/freewais-sf/distinfo (props changed) head/net/frickin/distinfo (props changed) head/net/fspclient/distinfo (props changed) head/net/fspd/distinfo (props changed) head/net/fsplib/distinfo (props changed) head/net/get_iplayer/distinfo (props changed) head/net/gini/distinfo (props changed) head/net/gkrellmqst/distinfo (props changed) head/net/gkrellmwireless2/distinfo (props changed) head/net/glflow/distinfo (props changed) head/net/gnet2/distinfo (props changed) head/net/gnetcat/distinfo (props changed) head/net/gnome-mud/distinfo (props changed) head/net/gnome-netstatus/distinfo (props changed) head/net/gnome-nettool/distinfo (props changed) head/net/gnu-dico/distinfo (props changed) head/net/gnu-radius/distinfo (props changed) head/net/go.net/distinfo (props changed) head/net/gofish/distinfo (props changed) head/net/gogoc/distinfo (props changed) head/net/googolplex/distinfo (props changed) head/net/gopher/distinfo (props changed) head/net/gotthard/distinfo (props changed) head/net/gpxe/distinfo (props changed) head/net/gq/distinfo (props changed) head/net/grdesktop/distinfo (props changed) head/net/grive/distinfo (props changed) head/net/gsk/distinfo (props changed) head/net/gspoof/distinfo (props changed) head/net/gtic/distinfo (props changed) head/net/gtk-vnc/distinfo (props changed) head/net/gtknetcat/distinfo (props changed) head/net/gupnp-ui/distinfo (props changed) head/net/gutenfetch/distinfo (props changed) head/net/gwhois/distinfo (props changed) head/net/hawknl-devel/distinfo (props changed) head/net/hawknl/distinfo (props changed) head/net/hidentd/distinfo (props changed) head/net/hinfo/distinfo (props changed) head/net/hlmaster/distinfo (props changed) head/net/honeyd/distinfo (props changed) head/net/hornetq/distinfo (props changed) head/net/hostapd/distinfo (props changed) head/net/howl/distinfo (props changed) head/net/hping-devel/distinfo (props changed) head/net/hping/distinfo (props changed) head/net/hs-hostname/distinfo (props changed) head/net/hs-network-conduit/distinfo (props changed) head/net/hs-network/distinfo (props changed) head/net/hs-pcap/distinfo (props changed) head/net/hs-sendfile/distinfo (props changed) head/net/hs-simple-sendfile/distinfo (props changed) head/net/hs-socks/distinfo (props changed) head/net/http_ping/distinfo (props changed) head/net/httping/distinfo (props changed) head/net/httpry/distinfo (props changed) head/net/hupnp/distinfo (props changed) head/net/iaxmodem/distinfo (props changed) head/net/icmpinfo/distinfo (props changed) head/net/icpld/distinfo (props changed) head/net/iet/distinfo (props changed) head/net/ifdepd/distinfo (props changed) head/net/iffinder/distinfo (props changed) head/net/ifstat/distinfo (props changed) head/net/ifstated/distinfo (props changed) head/net/igmpproxy/distinfo (props changed) head/net/ilbc/distinfo (props changed) head/net/imapproxy/distinfo (props changed) head/net/iodine/distinfo (props changed) head/net/ip6_int/distinfo (props changed) head/net/ipa_ip6fw/distinfo (props changed) head/net/ipa_ipfw/distinfo (props changed) head/net/ipfw-graph/distinfo (props changed) head/net/ipgrab/distinfo (props changed) head/net/iplog/distinfo (props changed) head/net/ipsorc/distinfo (props changed) head/net/ipsumdump/distinfo (props changed) head/net/ipsvd/distinfo (props changed) head/net/irrd/distinfo (props changed) head/net/isc-dhcp41-server/distinfo (props changed) head/net/isc-dhcp42-server/distinfo (props changed) head/net/iscsi-target/distinfo (props changed) head/net/jags/distinfo (props changed) head/net/jakarta-commons-net/distinfo (props changed) head/net/java-beepcore/distinfo (props changed) head/net/jcifs/distinfo (props changed) head/net/jgroups/distinfo (props changed) head/net/jicmp/distinfo (props changed) head/net/jpcap/distinfo (props changed) head/net/jrdesktop/distinfo (props changed) head/net/jsch/distinfo (props changed) head/net/jumpgate/distinfo (props changed) head/net/jwhois/distinfo (props changed) head/net/kio-upnp-ms/distinfo (props changed) head/net/kissd/distinfo (props changed) head/net/kojoney/distinfo (props changed) head/net/kwooty/distinfo (props changed) head/net/l2tpd/distinfo (props changed) head/net/l4ip/distinfo (props changed) head/net/ladvd/distinfo (props changed) head/net/lam/distinfo (props changed) head/net/lambdamoo/distinfo (props changed) head/net/ldap-stats/distinfo (props changed) head/net/ldap2dns/distinfo (props changed) head/net/ldapbrowser/distinfo (props changed) head/net/ldapdiff/distinfo (props changed) head/net/ldapsdk/distinfo (props changed) head/net/ldapsh/distinfo (props changed) head/net/lft/distinfo (props changed) head/net/libarms/distinfo (props changed) head/net/libbgpdump/distinfo (props changed) head/net/libcmis/distinfo (props changed) head/net/libdnet/distinfo (props changed) head/net/libexosip2/distinfo (props changed) head/net/libfb/distinfo (props changed) head/net/libfixbuf/distinfo (props changed) head/net/libgnetwork/distinfo (props changed) head/net/libgweather/distinfo (props changed) head/net/libmateweather/distinfo (props changed) head/net/libmms/distinfo (props changed) head/net/libmxp/distinfo (props changed) head/net/libnatpmp/distinfo (props changed) head/net/libnet/distinfo (props changed) head/net/libnet10/distinfo (props changed) head/net/libnetdude/distinfo (props changed) head/net/libnfs/distinfo (props changed) head/net/libnids/distinfo (props changed) head/net/libnss-mysql/distinfo (props changed) head/net/liboauth/distinfo (props changed) head/net/libopennet/distinfo (props changed) head/net/liboping/distinfo (props changed) head/net/libosip/distinfo (props changed) head/net/libpcapnav/distinfo (props changed) head/net/libproxy/distinfo (props changed) head/net/librouteros/distinfo (props changed) head/net/librsync/distinfo (props changed) head/net/libsocket++/distinfo (props changed) head/net/libsocketcpp/distinfo (props changed) head/net/libsrtp/distinfo (props changed) head/net/libtcp4u/distinfo (props changed) head/net/libtnl/distinfo (props changed) head/net/libunp/distinfo (props changed) head/net/libutp/distinfo (props changed) head/net/libvncserver/distinfo (props changed) head/net/libzmq2/distinfo (props changed) head/net/linc/distinfo (props changed) head/net/link-monitor-applet/distinfo (props changed) head/net/linknx/distinfo (props changed) head/net/linphone-base/distinfo (props changed) head/net/linux-f10-nss_ldap/distinfo.i386 (props changed) head/net/linux-f10-openldap/distinfo.i386 (props changed) head/net/linux-nx-client/distinfo (props changed) head/net/linuxigd/distinfo (props changed) head/net/lla/distinfo (props changed) head/net/ltm/distinfo (props changed) head/net/luasocket/distinfo (props changed) head/net/lvwimax/distinfo (props changed) head/net/mad_fcl/distinfo (props changed) head/net/mars_nwe/distinfo (props changed) head/net/mcast-tools/distinfo (props changed) head/net/mediaproxy/distinfo (props changed) head/net/mediatomb/distinfo (props changed) head/net/mgen/distinfo (props changed) head/net/micro_inetd/distinfo (props changed) head/net/micro_proxy/distinfo (props changed) head/net/minisapserver/distinfo (props changed) head/net/minissdpd/distinfo (props changed) head/net/miniupnpc/distinfo (props changed) head/net/miniupnpd/distinfo (props changed) head/net/miredo/distinfo (props changed) head/net/mknbi/distinfo (props changed) head/net/mmucl/distinfo (props changed) head/net/mono-zeroconf/distinfo (props changed) head/net/mopd/distinfo (props changed) head/net/morebalance/distinfo (props changed) head/net/mosh/distinfo (props changed) head/net/mpd5/distinfo (props changed) head/net/mpich2/distinfo (props changed) head/net/mping/distinfo (props changed) head/net/mrouted/distinfo (props changed) head/net/msend/distinfo (props changed) head/net/nakenchat/distinfo (props changed) head/net/nam/distinfo (props changed) head/net/nast/distinfo (props changed) head/net/nc/distinfo (props changed) head/net/nc6/distinfo (props changed) head/net/ncp/distinfo (props changed) head/net/ncplib/distinfo (props changed) head/net/ndisc6/distinfo (props changed) head/net/nemesis/distinfo (props changed) head/net/nepenthes/distinfo (props changed) head/net/nepim/distinfo (props changed) head/net/net-http/distinfo (props changed) head/net/net6/distinfo (props changed) head/net/netatalk/distinfo (props changed) head/net/netatalk3/distinfo (props changed) head/net/netcat/distinfo (props changed) head/net/netdude/distinfo (props changed) head/net/netembryo/distinfo (props changed) head/net/netmap/distinfo (props changed) head/net/netpipes/distinfo (props changed) head/net/netscript/distinfo (props changed) head/net/netsed/distinfo (props changed) head/net/netselect/distinfo (props changed) head/net/netspeed_applet/distinfo (props changed) head/net/netstrain/distinfo (props changed) head/net/nettest/distinfo (props changed) head/net/netwib/distinfo (props changed) head/net/nfsshell/distinfo (props changed) head/net/ng_daphne/distinfo (props changed) head/net/ng_mikrotik_eoip/distinfo (props changed) head/net/ngrep/distinfo (props changed) head/net/nifmon/distinfo (props changed) head/net/nload/distinfo (props changed) head/net/nocatsplash/distinfo (props changed) head/net/nos-ttb/distinfo (props changed) head/net/nph/distinfo (props changed) head/net/ns/distinfo (props changed) head/net/nss_ldap/distinfo (props changed) head/net/nstxd/distinfo (props changed) head/net/ntlmaps/distinfo (props changed) head/net/ntop/distinfo (props changed) head/net/ntp-devel/distinfo (props changed) head/net/ntp-rc/distinfo (props changed) head/net/ntp/distinfo (props changed) head/net/ntraceroute/distinfo (props changed) head/net/nusoap/distinfo (props changed) head/net/nxproxy/distinfo (props changed) head/net/nxserver/distinfo (props changed) head/net/nyancat/distinfo (props changed) head/net/nylon/distinfo (props changed) head/net/ohphone/distinfo (props changed) head/net/omcmd/distinfo (props changed) head/net/omnitty/distinfo (props changed) head/net/onenetd/distinfo (props changed) head/net/online-desktop/distinfo (props changed) head/net/openafs/distinfo (props changed) head/net/openam/distinfo (props changed) head/net/openbgpd/distinfo (props changed) head/net/opendpi/distinfo (props changed) head/net/openh323/distinfo (props changed) head/net/openistgt/distinfo (props changed) head/net/openldap24-server/distinfo (props changed) head/net/openmcu/distinfo (props changed) head/net/openmpi/distinfo (props changed) head/net/openmq/distinfo (props changed) head/net/openntpd/distinfo (props changed) head/net/opennx/distinfo (props changed) head/net/openospfd/distinfo (props changed) head/net/openpgm/distinfo (props changed) head/net/openradius/distinfo (props changed) head/net/openser/distinfo (props changed) head/net/openslp/distinfo (props changed) head/net/opentracker/distinfo (props changed) head/net/openvswitch/distinfo (props changed) head/net/ortp/distinfo (props changed) head/net/osrtspproxy/distinfo (props changed) head/net/ossp-sa/distinfo (props changed) head/net/owamp/distinfo (props changed) head/net/p5-AddressBook/distinfo (props changed) head/net/p5-Amazon-SQS-Simple/distinfo (props changed) head/net/p5-AnyEvent-MPRPC/distinfo (props changed) head/net/p5-AnyEvent-RabbitMQ/distinfo (props changed) head/net/p5-AnyMQ-AMQP/distinfo (props changed) head/net/p5-Apache2-SOAP/distinfo (props changed) head/net/p5-BBS-Client/distinfo (props changed) head/net/p5-BBS-UserInfo-Maple3/distinfo (props changed) head/net/p5-BBS-UserInfo-Maple3itoc/distinfo (props changed) head/net/p5-BBS-UserInfo-Ptt/distinfo (props changed) head/net/p5-BBS-UserInfo-SOB/distinfo (props changed) head/net/p5-BBS-UserInfo-Wretch/distinfo (props changed) head/net/p5-BBS-UserInfo/distinfo (props changed) head/net/p5-Beanstalk-Client/distinfo (props changed) head/net/p5-Cisco-IPPhone/distinfo (props changed) head/net/p5-Crypt-DH-GMP/distinfo (props changed) head/net/p5-Daemon-Generic/distinfo (props changed) head/net/p5-Data-IPV4-Range-Parse/distinfo (props changed) head/net/p5-EasyTCP/distinfo (props changed) head/net/p5-Event-tcp/distinfo (props changed) head/net/p5-File-Rsync/distinfo (props changed) head/net/p5-File-RsyncP/distinfo (props changed) head/net/p5-Filesys-SmbClient/distinfo (props changed) head/net/p5-Frontier-RPC/distinfo (props changed) head/net/p5-Geo-IP-PurePerl/distinfo (props changed) head/net/p5-Geo-IPfree/distinfo (props changed) head/net/p5-Google-SAML-Request/distinfo (props changed) head/net/p5-Google-SAML-Response/distinfo (props changed) head/net/p5-Growl-GNTP/distinfo (props changed) head/net/p5-IO-Interface/distinfo (props changed) head/net/p5-IO-Socket-INET6/distinfo (props changed) head/net/p5-IO-Socket-Multicast/distinfo (props changed) head/net/p5-IO-Socket-Multicast6/distinfo (props changed) head/net/p5-IP-Anonymous/distinfo (props changed) head/net/p5-IP-Country/distinfo (props changed) head/net/p5-IPC-Session/distinfo (props changed) head/net/p5-JavaScript-RPC/distinfo (props changed) head/net/p5-Jifty-Plugin-Authentication-Ldap/distinfo (props changed) head/net/p5-Net-AMQP/distinfo (props changed) head/net/p5-Net-APNS/distinfo (props changed) head/net/p5-Net-APNs-Extended/distinfo (props changed) head/net/p5-Net-ARP/distinfo (props changed) head/net/p5-Net-Address-IPv4-Local/distinfo (props changed) head/net/p5-Net-Amazon-AWSSign/distinfo (props changed) head/net/p5-Net-Amazon-MechanicalTurk/distinfo (props changed) head/net/p5-Net-Amazon-S3/distinfo (props changed) head/net/p5-Net-Amazon-Signature/distinfo (props changed) head/net/p5-Net-Amazon-Thumbnail/distinfo (props changed) head/net/p5-Net-Amazon/distinfo (props changed) head/net/p5-Net-Analysis/distinfo (props changed) head/net/p5-Net-Appliance-Phrasebook/distinfo (props changed) head/net/p5-Net-BGP/distinfo (props changed) head/net/p5-Net-Blogger/distinfo (props changed) head/net/p5-Net-CIDR-Lite/distinfo (props changed) head/net/p5-Net-CIDR-MobileJP/distinfo (props changed) head/net/p5-Net-CIDR-Set/distinfo (props changed) head/net/p5-Net-CSTA/distinfo (props changed) head/net/p5-Net-CascadeCopy/distinfo (props changed) head/net/p5-Net-Cassandra-Easy/distinfo (props changed) head/net/p5-Net-Cassandra/distinfo (props changed) head/net/p5-Net-DHCP/distinfo (props changed) head/net/p5-Net-DHCPClient/distinfo (props changed) head/net/p5-Net-DLookup/distinfo (props changed) head/net/p5-Net-Daemon/distinfo (props changed) head/net/p5-Net-Divert/distinfo (props changed) head/net/p5-Net-Dropbox-API/distinfo (props changed) head/net/p5-Net-EPP-Proxy/distinfo (props changed) head/net/p5-Net-FS-Flickr/distinfo (props changed) head/net/p5-Net-FS-Gmail/distinfo (props changed) head/net/p5-Net-FTP-AutoReconnect/distinfo (props changed) head/net/p5-Net-FTP-File/distinfo (props changed) head/net/p5-Net-Finger/distinfo (props changed) head/net/p5-Net-Flow/distinfo (props changed) head/net/p5-Net-Frame-Dump/distinfo (props changed) head/net/p5-Net-Frame-Layer-ICMPv6/distinfo (props changed) head/net/p5-Net-Frame-Layer-IPv6/distinfo (props changed) head/net/p5-Net-Frame/distinfo (props changed) head/net/p5-Net-Gnats/distinfo (props changed) head/net/p5-Net-Google-Analytics/distinfo (props changed) head/net/p5-Net-Google-AuthSub/distinfo (props changed) head/net/p5-Net-Google-Calendar/distinfo (props changed) head/net/p5-Net-Google-Code/distinfo (props changed) head/net/p5-Net-Google-DataAPI/distinfo (props changed) head/net/p5-Net-Google-Spreadsheets/distinfo (props changed) head/net/p5-Net-Google/distinfo (props changed) head/net/p5-Net-Growl/distinfo (props changed) head/net/p5-Net-GrowlClient/distinfo (props changed) head/net/p5-Net-HL7/distinfo (props changed) head/net/p5-Net-HTTP/distinfo (props changed) head/net/p5-Net-HTTPS-Any/distinfo (props changed) head/net/p5-Net-Hiveminder/distinfo (props changed) head/net/p5-Net-INET6Glue/distinfo (props changed) head/net/p5-Net-IP-Minimal/distinfo (props changed) head/net/p5-Net-IP-RangeCompare/distinfo (props changed) head/net/p5-Net-IPTrie/distinfo (props changed) head/net/p5-Net-IRR/distinfo (props changed) head/net/p5-Net-Ident/distinfo (props changed) head/net/p5-Net-Ifconfig-Wrapper/distinfo (props changed) head/net/p5-Net-Interface/distinfo (props changed) head/net/p5-Net-Jaiku/distinfo (props changed) head/net/p5-Net-Jifty/distinfo (props changed) head/net/p5-Net-LDAP-AutoDNs/distinfo (props changed) head/net/p5-Net-LDAP-AutoServer/distinfo (props changed) head/net/p5-Net-LDAP-Express/distinfo (props changed) head/net/p5-Net-LDAP-LDAPhash/distinfo (props changed) head/net/p5-Net-LDAP-Makepath/distinfo (props changed) head/net/p5-Net-LDAP-Server-Test/distinfo (props changed) head/net/p5-Net-LDAP-Server/distinfo (props changed) head/net/p5-Net-LDAP-posixAccount/distinfo (props changed) head/net/p5-Net-LDAP-posixGroup/distinfo (props changed) head/net/p5-Net-Libdnet/distinfo (props changed) head/net/p5-Net-LimeLight-Purge/distinfo (props changed) head/net/p5-Net-MAC/distinfo (props changed) head/net/p5-Net-Mosso-CloudFiles/distinfo (props changed) head/net/p5-Net-MovableType/distinfo (props changed) head/net/p5-Net-NBName/distinfo (props changed) head/net/p5-Net-NBsocket/distinfo (props changed) head/net/p5-Net-NIS-Listgroup/distinfo (props changed) head/net/p5-Net-NIS/distinfo (props changed) head/net/p5-Net-Nessus-XMLRPC/distinfo (props changed) head/net/p5-Net-OAuth-Simple/distinfo (props changed) head/net/p5-Net-OAuth/distinfo (props changed) head/net/p5-Net-OpenSSH-Parallel/distinfo (props changed) head/net/p5-Net-OpenStack-Attack/distinfo (props changed) head/net/p5-Net-Packet-Target/distinfo (props changed) head/net/p5-Net-Packet/distinfo (props changed) head/net/p5-Net-ParseWhois/distinfo (props changed) head/net/p5-Net-Patricia/distinfo (props changed) head/net/p5-Net-Pcap/distinfo (props changed) head/net/p5-Net-PcapUtils/distinfo (props changed) head/net/p5-Net-Ping-External/distinfo (props changed) head/net/p5-Net-Ping/distinfo (props changed) head/net/p5-Net-Proxy/distinfo (props changed) head/net/p5-Net-PubSubHubbub-Publisher/distinfo (props changed) head/net/p5-Net-RTP/distinfo (props changed) head/net/p5-Net-RabbitMQ/distinfo (props changed) head/net/p5-Net-Radius/distinfo (props changed) head/net/p5-Net-RawIP/distinfo (props changed) head/net/p5-Net-RawSock/distinfo (props changed) head/net/p5-Net-Rendezvous-Publish/distinfo (props changed) head/net/p5-Net-Riak/distinfo (props changed) head/net/p5-Net-Rsh/distinfo (props changed) head/net/p5-Net-SAP/distinfo (props changed) head/net/p5-Net-SCP-Expect/distinfo (props changed) head/net/p5-Net-SCP/distinfo (props changed) head/net/p5-Net-SDP/distinfo (props changed) head/net/p5-Net-SFTP-Foreign/distinfo (props changed) head/net/p5-Net-SFTP/distinfo (props changed) head/net/p5-Net-SMPP/distinfo (props changed) head/net/p5-Net-SMS-Clickatell/distinfo (props changed) head/net/p5-Net-SMS-Mollie/distinfo (props changed) head/net/p5-Net-SMS-PChome/distinfo (props changed) head/net/p5-Net-SNPP/distinfo (props changed) head/net/p5-Net-SSH-Expect/distinfo (props changed) head/net/p5-Net-SSH-Mechanize/distinfo (props changed) head/net/p5-Net-SSH/distinfo (props changed) head/net/p5-Net-STOMP-Client/distinfo (props changed) head/net/p5-Net-Server-Coro/distinfo (props changed) head/net/p5-Net-Server-SS-PreFork/distinfo (props changed) head/net/p5-Net-Server/distinfo (props changed) head/net/p5-Net-Subnet/distinfo (props changed) head/net/p5-Net-TCLink/distinfo (props changed) head/net/p5-Net-TcpDumpLog/distinfo (props changed) head/net/p5-Net-Telnet-Netscreen/distinfo (props changed) head/net/p5-Net-Telnet/distinfo (props changed) head/net/p5-Net-TiVo/distinfo (props changed) head/net/p5-Net-Todoist/distinfo (props changed) head/net/p5-Net-Traceroute-PurePerl/distinfo (props changed) head/net/p5-Net-Traceroute/distinfo (props changed) head/net/p5-Net-Traceroute6/distinfo (props changed) head/net/p5-Net-Trackback/distinfo (props changed) head/net/p5-Net-VNC/distinfo (props changed) head/net/p5-Net-Wake/distinfo (props changed) head/net/p5-Net-WhitePages/distinfo (props changed) head/net/p5-Net-Whois-ARIN/distinfo (props changed) head/net/p5-Net-Whois-IP/distinfo (props changed) head/net/p5-Net-Whois-RIPE/distinfo (props changed) head/net/p5-Net-Whois/distinfo (props changed) head/net/p5-Net-Write/distinfo (props changed) head/net/p5-Net-XWhois/distinfo (props changed) head/net/p5-Net-Yadis/distinfo (props changed) head/net/p5-Net-Z3950-SimpleServer/distinfo (props changed) head/net/p5-Net-Z3950-ZOOM/distinfo (props changed) head/net/p5-Net-ext/distinfo (props changed) head/net/p5-Net-sFlow/distinfo (props changed) head/net/p5-Net-uFTP/distinfo (props changed) head/net/p5-NetAddr-IP-Count/distinfo (props changed) head/net/p5-NetPacket/distinfo (props changed) head/net/p5-OAI-Harvester/distinfo (props changed) head/net/p5-OurNet-BBS/distinfo (props changed) head/net/p5-OurNet-BBSAgent/distinfo (props changed) head/net/p5-POE-Component-Client-Ident/distinfo (props changed) head/net/p5-POE-Component-Client-Keepalive/distinfo (props changed) head/net/p5-POE-Component-Client-Telnet/distinfo (props changed) head/net/p5-POE-Component-Client-Traceroute/distinfo (props changed) head/net/p5-POE-Component-Client-Twitter/distinfo (props changed) head/net/p5-POE-Component-ControlPort/distinfo (props changed) head/net/p5-POE-Component-Generic/distinfo (props changed) head/net/p5-POE-Component-Jabber/distinfo (props changed) head/net/p5-POE-Component-Pcap/distinfo (props changed) head/net/p5-POE-Component-PubSub/distinfo (props changed) head/net/p5-POE-Component-Server-Twirc/distinfo (props changed) head/net/p5-POE-Component-Spread/distinfo (props changed) head/net/p5-POEx-Role-TCPServer/distinfo (props changed) head/net/p5-POSIX-Socket/distinfo (props changed) head/net/p5-POSIX-getpeername/distinfo (props changed) head/net/p5-Parallel-Pvm/distinfo (props changed) head/net/p5-Phone-Info/distinfo (props changed) head/net/p5-PlRPC/distinfo (props changed) head/net/p5-Queue-Beanstalk/distinfo (props changed) head/net/p5-REST-Application/distinfo (props changed) head/net/p5-REST-Google/distinfo (props changed) head/net/p5-RPC-EPC-Service/distinfo (props changed) head/net/p5-RPC-Simple/distinfo (props changed) head/net/p5-RPC-XML/distinfo (props changed) head/net/p5-ResourcePool-Resource-Net-LDAP/distinfo (props changed) head/net/p5-ResourcePool-Resource-SOAP-Lite/distinfo (props changed) head/net/p5-Rose-URI/distinfo (props changed) head/net/p5-S3/distinfo (props changed) head/net/p5-SOAP-Amazon-S3/distinfo (props changed) head/net/p5-SOAP-MySOAP/distinfo (props changed) head/net/p5-SOAP/distinfo (props changed) head/net/p5-Samba-LDAP/distinfo (props changed) head/net/p5-Server-Starter/distinfo (props changed) head/net/p5-Socket-Class/distinfo (props changed) head/net/p5-Socket-Multicast6/distinfo (props changed) head/net/p5-Socket6/distinfo (props changed) head/net/p5-Socks/distinfo (props changed) head/net/p5-Sort-Key-IPv4/distinfo (props changed) head/net/p5-Spread-Message/distinfo (props changed) head/net/p5-Spread-Session/distinfo (props changed) head/net/p5-Test-URI/distinfo (props changed) head/net/p5-URI-FromHash/distinfo (props changed) head/net/p5-URI-Match/distinfo (props changed) head/net/p5-URI-OpenURL/distinfo (props changed) head/net/p5-URI-SmartURI/distinfo (props changed) head/net/p5-URI-Template-Restrict/distinfo (props changed) head/net/p5-URI/distinfo (props changed) head/net/p5-Validate-Net/distinfo (props changed) head/net/p5-WebService-Dropbox/distinfo (props changed) head/net/p5-WebService-Prowl/distinfo (props changed) head/net/p5-What/distinfo (props changed) head/net/p5-X500-DN/distinfo (props changed) head/net/p5-XML-Compile-SOAP-AnyEvent/distinfo (props changed) head/net/p5-XML-Compile-SOAP-Daemon/distinfo (props changed) head/net/p5-XML-Compile-SOAP-WSA/distinfo (props changed) head/net/p5-XML-Compile-SOAP/distinfo (props changed) head/net/p5-XML-Fast/distinfo (props changed) head/net/p5-XML-RPC-Fast/distinfo (props changed) head/net/p5-XML-RPC/distinfo (props changed) head/net/p5-XPC/distinfo (props changed) head/net/p5-ZConf-Bookmarks/distinfo (props changed) head/net/p5-ZConf/distinfo (props changed) head/net/p5-ZeroMQ/distinfo (props changed) head/net/packetdrill/distinfo (props changed) head/net/packter-agent/distinfo (props changed) head/net/panoptis/distinfo (props changed) head/net/paris-traceroute/distinfo (props changed) head/net/passlogd/distinfo (props changed) head/net/pathneck/distinfo (props changed) head/net/pbnc/distinfo (props changed) head/net/pchar/distinfo (props changed) head/net/pcnfsd/distinfo (props changed) head/net/pdb/distinfo (props changed) head/net/pear-Auth_RADIUS/distinfo (props changed) head/net/pear-File_Bittorrent2/distinfo (props changed) head/net/pear-Horde_Kolab_Server/distinfo (props changed) head/net/pear-Horde_Kolab_Session/distinfo (props changed) head/net/pear-Horde_Ldap/distinfo (props changed) head/net/pear-Horde_Rpc/distinfo (props changed) head/net/pear-Horde_Scribe/distinfo (props changed) head/net/pear-Horde_Socket_Client/distinfo (props changed) head/net/pear-Horde_Url/distinfo (props changed) head/net/pear-Net_CDDB/distinfo (props changed) head/net/pear-Net_CheckIP/distinfo (props changed) head/net/pear-Net_DIME/distinfo (props changed) head/net/pear-Net_DNSBL/distinfo (props changed) head/net/pear-Net_Dict/distinfo (props changed) head/net/pear-Net_Finger/distinfo (props changed) head/net/pear-Net_Geo/distinfo (props changed) head/net/pear-Net_GeoIP/distinfo (props changed) head/net/pear-Net_IPv4/distinfo (props changed) head/net/pear-Net_IPv6/distinfo (props changed) head/net/pear-Net_Ident/distinfo (props changed) head/net/pear-Net_LDAP/distinfo (props changed) head/net/pear-Net_LDAP2/distinfo (props changed) head/net/pear-Net_MAC/distinfo (props changed) head/net/pear-Net_Nmap/distinfo (props changed) head/net/pear-Net_Ping/distinfo (props changed) head/net/pear-Net_SMS/distinfo (props changed) head/net/pear-Net_Sieve/distinfo (props changed) head/net/pear-Net_Traceroute/distinfo (props changed) head/net/pear-Net_URL/distinfo (props changed) head/net/pear-Net_URL_Mapper/distinfo (props changed) head/net/pear-Net_UserAgent_Detect/distinfo (props changed) head/net/pear-Net_UserAgent_Mobile/distinfo (props changed) head/net/pear-Net_Vpopmaild/distinfo (props changed) head/net/pear-Net_Whois/distinfo (props changed) head/net/pear-SOAP/distinfo (props changed) head/net/pear-Services_Pingback/distinfo (props changed) head/net/pear-Services_Twitter/distinfo (props changed) head/net/pear-URI_Template/distinfo (props changed) head/net/pear-XML_RPC/distinfo (props changed) head/net/pear-XML_RPC2/distinfo (props changed) head/net/pecl-cvsclient/distinfo (props changed) head/net/pecl-geoip/distinfo (props changed) head/net/pecl-radius/distinfo (props changed) head/net/pecl-yaz/distinfo (props changed) head/net/pen/distinfo (props changed) head/net/pfflowd/distinfo (props changed) head/net/pfinger/distinfo (props changed) head/net/phamm/distinfo (props changed) head/net/pimdd/distinfo (props changed) head/net/pipsecd/distinfo (props changed) head/net/pload/distinfo (props changed) head/net/plugdaemon/distinfo (props changed) head/net/pmf/distinfo (props changed) head/net/poptop/distinfo (props changed) head/net/portfwd/distinfo (props changed) head/net/pppd23/distinfo (props changed) head/net/pppoa/distinfo (props changed) head/net/pptpclient/distinfo (props changed) head/net/prosearch/distinfo (props changed) head/net/proxy-connect/distinfo (props changed) head/net/proxy-suite/distinfo (props changed) head/net/proxychains/distinfo (props changed) head/net/prtunnel/distinfo (props changed) head/net/ptpd2-devel/distinfo (props changed) head/net/ptpd2/distinfo (props changed) head/net/ptunnel/distinfo (props changed) head/net/pure-sockets/distinfo (props changed) head/net/pvm++/distinfo (props changed) head/net/pvm/distinfo (props changed) head/net/pxe-pdhcp/distinfo (props changed) head/net/pxe/distinfo (props changed) head/net/py-GeoIP/distinfo (props changed) head/net/py-amqplib/distinfo (props changed) head/net/py-beanstalkc/distinfo (props changed) head/net/py-cloudfiles/distinfo (props changed) head/net/py-ec2-cli-tools/distinfo (props changed) head/net/py-eventlet/distinfo (props changed) head/net/py-gntp/distinfo (props changed) head/net/py-google/distinfo (props changed) head/net/py-gspreadsheet/distinfo (props changed) head/net/py-impacket/distinfo (props changed) head/net/py-iplib/distinfo (props changed) head/net/py-kombu/distinfo (props changed) head/net/py-ldap2/distinfo (props changed) head/net/py-ldaptor/distinfo (props changed) head/net/py-libcloud/distinfo (props changed) head/net/py-libnet/distinfo (props changed) head/net/py-medusa/distinfo (props changed) head/net/py-msrplib/distinfo (props changed) head/net/py-netaddr/distinfo (props changed) head/net/py-netifaces/distinfo (props changed) head/net/py-netstring/distinfo (props changed) head/net/py-novaclient/distinfo (props changed) head/net/py-oauth/distinfo (props changed) head/net/py-oauth2/distinfo (props changed) head/net/py-pcap/distinfo (props changed) head/net/py-pcapy/distinfo (props changed) head/net/py-pcs/distinfo (props changed) head/net/py-port-for/distinfo (props changed) head/net/py-pypcap/distinfo (props changed) head/net/py-pysendfile/distinfo (props changed) head/net/py-radix/distinfo (props changed) head/net/py-s3cmd/distinfo (props changed) head/net/py-smb/distinfo (props changed) head/net/py-smbpasswd/distinfo (props changed) head/net/py-soappy-devel/distinfo (props changed) head/net/py-soappy/distinfo (props changed) head/net/py-soapy/distinfo (props changed) head/net/py-spreadmodule/distinfo (props changed) head/net/py-suds/distinfo (props changed) head/net/py-tofu/distinfo (props changed) head/net/py-txamqp/distinfo (props changed) head/net/py-xmlrpc/distinfo (props changed) head/net/py-xmlrpclib/distinfo (props changed) head/net/py-yadis/distinfo (props changed) head/net/py-zsi/distinfo (props changed) head/net/pygopherd/distinfo (props changed) head/net/pynids/distinfo (props changed) head/net/pyrad/distinfo (props changed) head/net/pythondirector/distinfo (props changed) head/net/qadsl/distinfo (props changed) head/net/qoauth/distinfo (props changed) head/net/qtweetlib/distinfo (props changed) head/net/quagga-re/distinfo (props changed) head/net/queso/distinfo (props changed) head/net/quoted/distinfo (props changed) head/net/rabbitmq-c-devel/distinfo (props changed) head/net/rabbitmq-c/distinfo (props changed) head/net/rabbitmq/distinfo (props changed) head/net/raddump/distinfo (props changed) head/net/radiator/distinfo (props changed) head/net/radiusclient/distinfo (props changed) head/net/radiusd-cistron/distinfo (props changed) head/net/radreport/distinfo (props changed) head/net/radsecproxy/distinfo (props changed) head/net/radvd/distinfo (props changed) head/net/raggle/distinfo (props changed) head/net/ranch/distinfo (props changed) head/net/rdesktop/distinfo (props changed) head/net/rdist6/distinfo (props changed) head/net/recvnet/distinfo (props changed) head/net/redir/distinfo (props changed) head/net/relayd/distinfo (props changed) head/net/remmina-applet/distinfo (props changed) head/net/remotedesk/distinfo (props changed) head/net/repeater/distinfo (props changed) head/net/rexx-sock/distinfo (props changed) head/net/rfbproxy/distinfo (props changed) head/net/rinetd/distinfo (props changed) head/net/ripe-whois/distinfo (props changed) head/net/ris/distinfo (props changed) head/net/rmsg/distinfo (props changed) head/net/rshell/distinfo (props changed) head/net/rsmb/distinfo (props changed) head/net/rsplib/distinfo (props changed) head/net/rsync/distinfo (props changed) head/net/rtg/distinfo (props changed) head/net/rtpbreak/distinfo (props changed) head/net/rtpproxy/distinfo (props changed) head/net/rtptools/distinfo (props changed) head/net/ruby-dict/distinfo (props changed) head/net/ruby-growl/distinfo (props changed) head/net/ruby-icmp/distinfo (props changed) head/net/ruby-ldap/distinfo (props changed) head/net/ruby-net-geoip/distinfo (props changed) head/net/ruby-tcpsocketpipe/distinfo (props changed) head/net/ruby-tserver/distinfo (props changed) head/net/rubygem-amazon-ec2/distinfo (props changed) head/net/rubygem-amqp-utils/distinfo (props changed) head/net/rubygem-amqp067/distinfo (props changed) head/net/rubygem-aws-s3/distinfo (props changed) head/net/rubygem-connection_pool/distinfo (props changed) head/net/rubygem-gitlab_omniauth-ldap/distinfo (props changed) head/net/rubygem-http_parser.rb/distinfo (props changed) head/net/rubygem-ipaddress/distinfo (props changed) head/net/rubygem-net-ldap/distinfo (props changed) head/net/rubygem-net-netrc/distinfo (props changed) head/net/rubygem-omniauth-github/distinfo (props changed) head/net/rubygem-omniauth-oauth/distinfo (props changed) head/net/rubygem-omniauth-oauth2/distinfo (props changed) head/net/rubygem-omniauth-twitter/distinfo (props changed) head/net/rubygem-open-uri-cached/distinfo (props changed) head/net/rubygem-rightaws/distinfo (props changed) head/net/rubygem-rightflexiscale/distinfo (props changed) head/net/rubygem-rightgogrid/distinfo (props changed) head/net/rubygem-righthttpconnection/distinfo (props changed) head/net/rubygem-rightslicehost/distinfo (props changed) head/net/rubygem-rubyntlm/distinfo (props changed) head/net/rubygem-rubytter/distinfo (props changed) head/net/rubygem-rudy/distinfo (props changed) head/net/rubygem-stompserver/distinfo (props changed) head/net/rubygem-twitter-stream/distinfo (props changed) head/net/rubygem-twitter4r/distinfo (props changed) head/net/rubygem-uri-redis/distinfo (props changed) head/net/rubygem-yadis/distinfo (props changed) head/net/rude/distinfo (props changed) head/net/rwhoisd/distinfo (props changed) head/net/samba36/distinfo (props changed) head/net/samba4/distinfo (props changed) head/net/samba4wins/distinfo (props changed) head/net/sbd/distinfo (props changed) head/net/scamper/distinfo (props changed) head/net/scapy/distinfo (props changed) head/net/scnc/distinfo (props changed) head/net/scr_ipfm/distinfo (props changed) head/net/scribe/distinfo (props changed) head/net/sdl_net/distinfo (props changed) head/net/seda/distinfo (props changed) head/net/sendemail/distinfo (props changed) head/net/sendfile/distinfo (props changed) head/net/sendsms/distinfo (props changed) head/net/sendsnpp/distinfo (props changed) head/net/ser/distinfo (props changed) head/net/service-discovery-applet/distinfo (props changed) head/net/serviio/distinfo (props changed) head/net/sflowtool/distinfo (props changed) head/net/shadowsocks-libev/distinfo (props changed) head/net/shaperprobe/distinfo (props changed) head/net/sharity-light/distinfo (props changed) head/net/shmux/distinfo (props changed) head/net/silc-client/distinfo (props changed) head/net/silc-server/distinfo (props changed) head/net/simpleproxy/distinfo (props changed) head/net/sip_scenario/distinfo (props changed) head/net/sippy_b2bua/distinfo (props changed) head/net/siproxd/distinfo (props changed) head/net/sipsak/distinfo (props changed) head/net/sixxs-aiccu/distinfo (props changed) head/net/skyfish/distinfo (props changed) head/net/skystar2/distinfo (props changed) head/net/sl2tps/distinfo (props changed) head/net/slirp/distinfo (props changed) head/net/slurm/distinfo (props changed) head/net/smb4k-kde4/distinfo (props changed) head/net/smbldap-tools/distinfo (props changed) head/net/smm++/distinfo (props changed) head/net/sniffit/distinfo (props changed) head/net/sntop/distinfo (props changed) head/net/sobby/distinfo (props changed) head/net/socat/distinfo (props changed) head/net/socketpipe/distinfo (props changed) head/net/splatd/distinfo (props changed) head/net/spoofer/distinfo (props changed) head/net/spread-j/distinfo (props changed) head/net/spread/distinfo (props changed) head/net/sprinkle/distinfo (props changed) head/net/spserver/distinfo (props changed) head/net/sqtop/distinfo (props changed) head/net/ss5/distinfo (props changed) head/net/ssldump/distinfo (props changed) head/net/sslh/distinfo (props changed) head/net/ssltunnel-client/distinfo (props changed) head/net/ssltunnel-server/distinfo (props changed) head/net/ssmping/distinfo (props changed) head/net/ssspl/distinfo (props changed) head/net/ssvnc/distinfo (props changed) head/net/stf-6rd-kmod/distinfo (props changed) head/net/stone/distinfo (props changed) head/net/stund/distinfo (props changed) head/net/suckblow/distinfo (props changed) head/net/sup/distinfo (props changed) head/net/tableutil/distinfo (props changed) head/net/tac_plus-libradius/distinfo (props changed) head/net/tac_plus4/distinfo (props changed) head/net/tapidbus/distinfo (props changed) head/net/tcludp/distinfo (props changed) head/net/tcpcat/distinfo (props changed) head/net/tcpdstat/distinfo (props changed) head/net/tcpdump398/distinfo (props changed) head/net/tcpflow/distinfo (props changed) head/net/tcpick/distinfo (props changed) head/net/tcpillust/distinfo (props changed) head/net/tcping/distinfo (props changed) head/net/tcpproxy/distinfo (props changed) head/net/tcpreen/distinfo (props changed) head/net/tcpsg/distinfo (props changed) head/net/tcpshow/distinfo (props changed) head/net/tcpslice/distinfo (props changed) head/net/tcpstat/distinfo (props changed) head/net/tcptrace/distinfo (props changed) head/net/tcptraceroute-devel/distinfo (props changed) head/net/tcptraceroute/distinfo (props changed) head/net/tcpview/distinfo (props changed) head/net/tcpwatch/distinfo (props changed) head/net/tcpxd/distinfo (props changed) head/net/tcpxtract/distinfo (props changed) head/net/tdetect/distinfo (props changed) head/net/tftpgrab/distinfo (props changed) head/net/thcrut/distinfo (props changed) head/net/tigervnc/distinfo (props changed) head/net/tightvnc/distinfo (props changed) head/net/tinyfugue/distinfo (props changed) head/net/tinyldap/distinfo (props changed) head/net/tn5250/distinfo (props changed) head/net/tn5250j/distinfo (props changed) head/net/toonel/distinfo (props changed) head/net/torsocks/distinfo (props changed) head/net/traceroute/distinfo (props changed) head/net/traff/distinfo (props changed) head/net/trafshow/distinfo (props changed) head/net/trafshow3/distinfo (props changed) head/net/tramp/distinfo (props changed) head/net/trickle/distinfo (props changed) head/net/tridiavnc/distinfo (props changed) head/net/tsclient/distinfo (props changed) head/net/tsocks/distinfo (props changed) head/net/ttbudget/distinfo (props changed) head/net/ttlscan/distinfo (props changed) head/net/tucan/distinfo (props changed) head/net/twitux/distinfo (props changed) head/net/ucarp/distinfo (props changed) head/net/udptunnel/distinfo (props changed) head/net/udt/distinfo (props changed) head/net/ulxmlrpcpp/distinfo (props changed) head/net/unfs3/distinfo (props changed) head/net/unison232/distinfo (props changed) head/net/unix2tcp/distinfo (props changed) head/net/uplog/distinfo (props changed) head/net/urelay/distinfo (props changed) head/net/urlendec/distinfo (props changed) head/net/userfw/distinfo (props changed) head/net/ushare/distinfo (props changed) head/net/utftpd/distinfo (props changed) head/net/v6eval/distinfo (props changed) head/net/vblade/distinfo (props changed) head/net/vchat/distinfo (props changed) head/net/vde/distinfo (props changed) head/net/vde2/distinfo (props changed) head/net/vinagre/distinfo (props changed) head/net/vino/distinfo (props changed) head/net/vmware-vsphere-cli/distinfo (props changed) head/net/vnc/distinfo (props changed) head/net/vncreflector/distinfo (props changed) head/net/vnstat/distinfo (props changed) head/net/vserver/distinfo (props changed) head/net/vtun/distinfo (props changed) head/net/wackamole/distinfo (props changed) head/net/wakeonlan/distinfo (props changed) head/net/wire/distinfo (props changed) head/net/wired-tracker/distinfo (props changed) head/net/wired/distinfo (props changed) head/net/wireshark/distinfo (props changed) head/net/wlan2eth/distinfo (props changed) head/net/wmlj/distinfo (props changed) head/net/wmnd/distinfo (props changed) head/net/wmnet/distinfo (props changed) head/net/wmnet2/distinfo (props changed) head/net/wmnetload/distinfo (props changed) head/net/wmnetmon/distinfo (props changed) head/net/wmpiki/distinfo (props changed) head/net/wmping/distinfo (props changed) head/net/wmwave/distinfo (props changed) head/net/wmwifi/distinfo (props changed) head/net/wmwlmon/distinfo (props changed) head/net/wol/distinfo (props changed) head/net/wowzamediaserverpro/distinfo (props changed) head/net/wping/distinfo (props changed) head/net/x11vnc/distinfo (props changed) head/net/x2goclient-cli/distinfo (props changed) head/net/xbone/distinfo (props changed) head/net/xboxproxy/distinfo (props changed) head/net/xferstats/distinfo (props changed) head/net/xipdump/distinfo (props changed) head/net/xipmsg/distinfo (props changed) head/net/xisp/distinfo (props changed) head/net/xmlrpc-c/distinfo (props changed) head/net/xmlrpc-epi/distinfo (props changed) head/net/xorp-devel/distinfo (props changed) head/net/xorp/distinfo (props changed) head/net/xprobe/distinfo (props changed) head/net/xpvm/distinfo (props changed) head/net/xrdesktop/distinfo (props changed) head/net/yaph/distinfo (props changed) head/net/yconalyzer/distinfo (props changed) head/net/yptransitd/distinfo (props changed) head/net/zebra/distinfo (props changed) head/net/zillion/distinfo (props changed) head/net/zsync/distinfo (props changed) head/news/atp/distinfo (props changed) head/news/aub/distinfo (props changed) head/news/brag/distinfo (props changed) head/news/c-nocem/distinfo (props changed) head/news/cg/distinfo (props changed) head/news/cleanfeed/distinfo (props changed) head/news/cnews/distinfo (props changed) head/news/crashmail/distinfo (props changed) head/news/diablo/distinfo (props changed) head/news/dnews/distinfo (props changed) head/news/fidogate-ds/distinfo (props changed) head/news/fidogate/distinfo (props changed) head/news/golded+/distinfo (props changed) head/news/gup/distinfo (props changed) head/news/hellanzb/distinfo (props changed) head/news/husky-base-devel/distinfo (props changed) head/news/husky-base/distinfo (props changed) head/news/husky-bsopack/distinfo (props changed) head/news/husky-fidoconf-devel/distinfo (props changed) head/news/husky-fidoconf/distinfo (props changed) head/news/husky-hpt-devel/distinfo (props changed) head/news/husky-hpt/distinfo (props changed) head/news/husky-hptkill/distinfo (props changed) head/news/husky-hptsqfix/distinfo (props changed) head/news/husky-hpucode/distinfo (props changed) head/news/husky-htick-devel/distinfo (props changed) head/news/husky-htick/distinfo (props changed) head/news/husky-msged/distinfo (props changed) head/news/husky-nltools/distinfo (props changed) head/news/husky-smapi-devel/distinfo (props changed) head/news/husky-smapi/distinfo (props changed) head/news/husky-sqpack/distinfo (props changed) head/news/ifmail/distinfo (props changed) head/news/knews/distinfo (props changed) head/news/lusernet/distinfo (props changed) head/news/mmail/distinfo (props changed) head/news/multisuck/distinfo (props changed) head/news/newscache/distinfo (props changed) head/news/newsfetch/distinfo (props changed) head/news/newsfish/distinfo (props changed) head/news/newsgrab/distinfo (props changed) head/news/newspost/distinfo (props changed) head/news/newsstar/distinfo (props changed) head/news/newsx/distinfo (props changed) head/news/nget/distinfo (props changed) head/news/nn/distinfo (props changed) head/news/nnap/distinfo (props changed) head/news/nntp/distinfo (props changed) head/news/nntpbtr/distinfo (props changed) head/news/nntpcache/distinfo (props changed) head/news/noffle/distinfo (props changed) head/news/nzbperl/distinfo (props changed) head/news/p5-NNML/distinfo (props changed) head/news/p5-NNTPClient/distinfo (props changed) head/news/p5-News-Article-NoCeM/distinfo (props changed) head/news/p5-News-Article/distinfo (props changed) head/news/p5-News-Newsrc/distinfo (props changed) head/news/p5-POE-Component-Client-NNTP/distinfo (props changed) head/news/p5-POE-Component-Server-NNTP/distinfo (props changed) head/news/papercut/distinfo (props changed) head/news/pgpmoose/distinfo (props changed) head/news/plor/distinfo (props changed) head/news/py-pynzb/distinfo (props changed) head/news/py-yenc/distinfo (props changed) head/news/rawdog/distinfo (props changed) head/news/s-news/distinfo (props changed) head/news/slnr/distinfo (props changed) head/news/slrn/distinfo (props changed) head/news/slrnconf/distinfo (props changed) head/news/slrnface/distinfo (props changed) head/news/sn/distinfo (props changed) head/news/suck/distinfo (props changed) head/news/tin/distinfo (props changed) head/news/trn/distinfo (props changed) head/news/trn4/distinfo (props changed) head/news/ubh/distinfo (props changed) head/news/xpn/distinfo (props changed) head/news/xrn/distinfo (props changed) head/news/yencode/distinfo (props changed) head/news/yydecode/distinfo (props changed) head/palm/bibelot/distinfo (props changed) head/palm/gnome-pilot-conduits/distinfo (props changed) head/palm/gnome-pilot/distinfo (props changed) head/palm/iSiloXC/distinfo (props changed) head/palm/imgvtopgm/distinfo (props changed) head/palm/jpilot-db/distinfo (props changed) head/palm/jpilot-picsnvideos/distinfo (props changed) head/palm/jpilot/distinfo (props changed) head/palm/libmal/distinfo (props changed) head/palm/makeztxt/distinfo (props changed) head/palm/mdbconv/distinfo (props changed) head/palm/p5-Palm-PalmDoc/distinfo (props changed) head/palm/p5-Palm/distinfo (props changed) head/palm/palm-db-tools/distinfo (props changed) head/palm/palmos-sdk/distinfo (props changed) head/palm/pdbar/distinfo (props changed) head/palm/pilot-link/distinfo (props changed) head/palm/pilot_makedoc/distinfo (props changed) head/palm/pilrc/distinfo (props changed) head/palm/ppmtoTbmp/distinfo (props changed) head/palm/synce-gvfs/distinfo (props changed) head/palm/synce-hal/distinfo (props changed) head/palm/synce-librapi2/distinfo (props changed) head/palm/synce-librra/distinfo (props changed) head/palm/synce-libsynce/distinfo (props changed) head/palm/synce-serial/distinfo (props changed) head/palm/synce-sync-engine/distinfo (props changed) head/palm/synce-vdccm/distinfo (props changed) head/polish/aspell/distinfo (props changed) head/polish/ekg/distinfo (props changed) head/polish/ekg2/distinfo (props changed) head/polish/fortunepl/distinfo (props changed) head/polish/gnugadu2/distinfo (props changed) head/polish/hyphen/distinfo (props changed) head/polish/kadu/distinfo (props changed) head/polish/libgadu/distinfo (props changed) head/polish/libreoffice/distinfo (props changed) head/polish/libtlen/distinfo (props changed) head/polish/mythes/distinfo (props changed) head/polish/qfaktury/distinfo (props changed) head/polish/qnapi/distinfo (props changed) head/polish/sms2/distinfo (props changed) head/polish/tleenx2/distinfo (props changed) head/polish/trf/distinfo (props changed) head/ports-mgmt/bpm/distinfo (props changed) head/ports-mgmt/bxpkg/distinfo (props changed) head/ports-mgmt/distilator/distinfo (props changed) head/ports-mgmt/fastest_sites/distinfo (props changed) head/ports-mgmt/gnome-packagekit/distinfo (props changed) head/ports-mgmt/hs-porte/distinfo (props changed) head/ports-mgmt/jailaudit/distinfo (props changed) head/ports-mgmt/kpackagekit/distinfo (props changed) head/ports-mgmt/kports-qt4/distinfo (props changed) head/ports-mgmt/managepkg/distinfo (props changed) head/ports-mgmt/mkreadmes/distinfo (props changed) head/ports-mgmt/p5-App-Pm2Port/distinfo (props changed) head/ports-mgmt/p5-FreeBSD-Pkgs-FindUpdates/distinfo (props changed) head/ports-mgmt/p5-FreeBSD-Pkgs/distinfo (props changed) head/ports-mgmt/p5-FreeBSD-Ports-INDEXhash/distinfo (props changed) head/ports-mgmt/p5-FreeBSD-Ports/distinfo (props changed) head/ports-mgmt/packagekit/distinfo (props changed) head/ports-mgmt/pib/distinfo (props changed) head/ports-mgmt/pkg-devel/distinfo (props changed) head/ports-mgmt/pkg-orphan/distinfo (props changed) head/ports-mgmt/pkg/distinfo (props changed) head/ports-mgmt/pkg_add_it/distinfo (props changed) head/ports-mgmt/pkg_install/distinfo (props changed) head/ports-mgmt/pkg_rmleaves/distinfo (props changed) head/ports-mgmt/pkg_search/distinfo (props changed) head/ports-mgmt/pkg_trackinst/distinfo (props changed) head/ports-mgmt/pkg_tree/distinfo (props changed) head/ports-mgmt/pkgfe/distinfo (props changed) head/ports-mgmt/pkgsearch/distinfo (props changed) head/ports-mgmt/portcheckout/distinfo (props changed) head/ports-mgmt/portell/distinfo (props changed) head/ports-mgmt/portmaster/distinfo (props changed) head/ports-mgmt/portrac/distinfo (props changed) head/ports-mgmt/portscout/distinfo (props changed) head/ports-mgmt/portsearch/distinfo (props changed) head/ports-mgmt/portshaker/distinfo (props changed) head/ports-mgmt/portsopt/distinfo (props changed) head/ports-mgmt/porttools/distinfo (props changed) head/ports-mgmt/porttree/distinfo (props changed) head/ports-mgmt/portupgrade-devel/distinfo (props changed) head/ports-mgmt/portupgrade/distinfo (props changed) head/ports-mgmt/poudriere-devel/distinfo (props changed) head/ports-mgmt/poudriere/distinfo (props changed) head/ports-mgmt/psearch/distinfo (props changed) head/ports-mgmt/pver/distinfo (props changed) head/ports-mgmt/symports/distinfo (props changed) head/ports-mgmt/tinderbox-devel/distinfo (props changed) head/portuguese/acroread8/distinfo (props changed) head/portuguese/aspell-pt_BR/distinfo (props changed) head/portuguese/aspell-pt_PT/distinfo (props changed) head/portuguese/hyphen/distinfo (props changed) head/portuguese/irpf-pt_BR/distinfo (props changed) head/portuguese/ispell-pt_BR/distinfo (props changed) head/portuguese/libreoffice-pt_BR/distinfo (props changed) head/portuguese/libreoffice/distinfo (props changed) head/portuguese/mythes/distinfo (props changed) head/print/a2pdf/distinfo (props changed) head/print/a2ps/distinfo (props changed) head/print/abc2mtex/distinfo (props changed) head/print/abntex/distinfo (props changed) head/print/acrobatviewer/distinfo (props changed) head/print/acroread8/distinfo (props changed) head/print/acroread9/distinfo (props changed) head/print/acroreadwrapper/distinfo (props changed) head/print/adobe-cmaps/distinfo (props changed) head/print/afm/distinfo (props changed) head/print/alignmargins/distinfo (props changed) head/print/ansiprint/distinfo (props changed) head/print/apsfilter/distinfo (props changed) head/print/asprint/distinfo (props changed) head/print/auctex/distinfo (props changed) head/print/axpoint/distinfo (props changed) head/print/bibcursed/distinfo (props changed) head/print/biblio-py/distinfo (props changed) head/print/bibview/distinfo (props changed) head/print/bophook/distinfo (props changed) head/print/c2ps/distinfo (props changed) head/print/catdvi/distinfo (props changed) head/print/cdlabelgen/distinfo (props changed) head/print/cm-super/distinfo (props changed) head/print/cpp2latex/distinfo (props changed) head/print/cups-base/distinfo (props changed) head/print/cups-bjnp/distinfo (props changed) head/print/cups-pdf/distinfo (props changed) head/print/cups-pk-helper/distinfo (props changed) head/print/cups-pstoraster/distinfo (props changed) head/print/cups-samba/distinfo (props changed) head/print/detex/distinfo (props changed) head/print/dk-acroread8/distinfo (props changed) head/print/dot2tex/distinfo (props changed) head/print/dvi2tty/distinfo (props changed) head/print/dvipdfmx/distinfo (props changed) head/print/dvips/distinfo (props changed) head/print/dvips2ascii/distinfo (props changed) head/print/dvipsk-tetex/distinfo (props changed) head/print/dviselect/distinfo (props changed) head/print/dvisvg/distinfo (props changed) head/print/easylatex/distinfo (props changed) head/print/enscript-letter/distinfo (props changed) head/print/enscriptfonts/distinfo (props changed) head/print/epsonepl/distinfo (props changed) head/print/es-acroread8/distinfo (props changed) head/print/examplep/distinfo (props changed) head/print/fi-acroread8/distinfo (props changed) head/print/flpsed/distinfo (props changed) head/print/font-amsfonts/distinfo (props changed) head/print/font2svg/distinfo (props changed) head/print/foo2zjs/distinfo (props changed) head/print/foomatic-db-engine/distinfo (props changed) head/print/foomatic-db-hpijs/distinfo (props changed) head/print/foomatic-db/distinfo (props changed) head/print/foomatic-filters/distinfo (props changed) head/print/foxitreader/distinfo (props changed) head/print/fpdf/distinfo (props changed) head/print/freetype-tools/distinfo (props changed) head/print/freetype/distinfo (props changed) head/print/ft2demos/distinfo (props changed) head/print/ggv/distinfo (props changed) head/print/ghostscript7/distinfo (props changed) head/print/ghostscript8/distinfo (props changed) head/print/ghostscript9-agpl/distinfo (props changed) head/print/ghostscript9/distinfo (props changed) head/print/ghostview/distinfo (props changed) head/print/gnome-cups-manager/distinfo (props changed) head/print/gnome-specimen/distinfo (props changed) head/print/gnomephotoprinter/distinfo (props changed) head/print/gribouy/distinfo (props changed) head/print/gsfonts/distinfo (props changed) head/print/gspdf/distinfo (props changed) head/print/gsview/distinfo (props changed) head/print/gtklp/distinfo (props changed) head/print/guitartex/distinfo (props changed) head/print/gutenprint-base/distinfo (props changed) head/print/hp2xx/distinfo (props changed) head/print/hpijs/distinfo (props changed) head/print/hs-hscolour/distinfo (props changed) head/print/html2latex/distinfo (props changed) head/print/html2ps/distinfo (props changed) head/print/hyperlatex/distinfo (props changed) head/print/ifxetex/distinfo (props changed) head/print/it-acroread8/distinfo (props changed) head/print/jadetex/distinfo (props changed) head/print/kde_poster/distinfo (props changed) head/print/kpdftool/distinfo (props changed) head/print/latex-aa/distinfo (props changed) head/print/latex-aastex/distinfo (props changed) head/print/latex-acm/distinfo (props changed) head/print/latex-arydshln/distinfo (props changed) head/print/latex-auto-greek/distinfo (props changed) head/print/latex-beamer/distinfo (props changed) head/print/latex-biblatex/distinfo (props changed) head/print/latex-biblist/distinfo (props changed) head/print/latex-bytefield/distinfo (props changed) head/print/latex-caption/distinfo (props changed) head/print/latex-chapterfolder/distinfo (props changed) head/print/latex-circ/distinfo (props changed) head/print/latex-cjk/distinfo (props changed) head/print/latex-csquotes/distinfo (props changed) head/print/latex-etoolbox/distinfo (props changed) head/print/latex-feynmf/distinfo (props changed) head/print/latex-keystroke/distinfo (props changed) head/print/latex-logpap/distinfo (props changed) head/print/latex-logreq/distinfo (props changed) head/print/latex-ltablex/distinfo (props changed) head/print/latex-mathabx/distinfo (props changed) head/print/latex-nomencl/distinfo (props changed) head/print/latex-pgf/distinfo (props changed) head/print/latex-prettyref/distinfo (props changed) head/print/latex-resume/distinfo (props changed) head/print/latex-subfloat/distinfo (props changed) head/print/latex-supertabular/distinfo (props changed) head/print/latex-svninfo/distinfo (props changed) head/print/latex-timing/distinfo (props changed) head/print/latex-tipa/distinfo (props changed) head/print/latex-ucs/distinfo (props changed) head/print/latex/distinfo (props changed) head/print/latex2rtf/distinfo (props changed) head/print/latex2slides/distinfo (props changed) head/print/latexdiff/distinfo (props changed) head/print/lgrind/distinfo (props changed) head/print/libgnomecups/distinfo (props changed) head/print/libgnomeprint/distinfo (props changed) head/print/libgnomeprintmm/distinfo (props changed) head/print/libharu/distinfo (props changed) head/print/libijs/distinfo (props changed) head/print/libpaper/distinfo (props changed) head/print/libppd/distinfo (props changed) head/print/libspectre/distinfo (props changed) head/print/linux-f10-cups-libs/distinfo.i386 (props changed) head/print/lpr-wrapper/distinfo (props changed) head/print/lprps/distinfo (props changed) head/print/lyx/distinfo (props changed) head/print/magicfilter/distinfo (props changed) head/print/makeindex/distinfo (props changed) head/print/mftrace/distinfo (props changed) head/print/min12xxw/distinfo (props changed) head/print/mp-letter/distinfo (props changed) head/print/mpage/distinfo (props changed) head/print/mup/distinfo (props changed) head/print/musixtex/distinfo (props changed) head/print/muttprint/distinfo (props changed) head/print/nenscript/distinfo (props changed) head/print/nl-acroread8/distinfo (props changed) head/print/no-acroread8/distinfo (props changed) head/print/openprinting/distinfo (props changed) head/print/p5-Font-FreeType/distinfo (props changed) head/print/p5-Net-CUPS/distinfo (props changed) head/print/p5-Net-Printer/distinfo (props changed) head/print/p5-PDF-Template/distinfo (props changed) head/print/p5-PDFLib/distinfo (props changed) head/print/p5-PostScript-Simple/distinfo (props changed) head/print/p5-PostScript/distinfo (props changed) head/print/p5-Text-PDF/distinfo (props changed) head/print/p5-XML-ApacheFOP/distinfo (props changed) head/print/panda/distinfo (props changed) head/print/paps/distinfo (props changed) head/print/passivetex/distinfo (props changed) head/print/pcal/distinfo (props changed) head/print/pdf-renderer/distinfo (props changed) head/print/pdfbox/distinfo (props changed) head/print/pdfcolorsplit/distinfo (props changed) head/print/pdfcube/distinfo (props changed) head/print/pdfjam/distinfo (props changed) head/print/pdflib/distinfo (props changed) head/print/pdfmod/distinfo (props changed) head/print/pdftk/distinfo (props changed) head/print/pdq/distinfo (props changed) head/print/pear-File_PDF/distinfo (props changed) head/print/pecl-pdflib/distinfo (props changed) head/print/pecl-ps/distinfo (props changed) head/print/pfbtopfa/distinfo (props changed) head/print/photoprint/distinfo (props changed) head/print/phppdflib/distinfo (props changed) head/print/pic2fig/distinfo (props changed) head/print/pkfonts300/distinfo (props changed) head/print/pkipplib/distinfo (props changed) head/print/pkpgcounter/distinfo (props changed) head/print/pnm2ppa/distinfo (props changed) head/print/poster/distinfo (props changed) head/print/ps2eps/distinfo (props changed) head/print/pscal/distinfo (props changed) head/print/psdim/distinfo (props changed) head/print/pslib/distinfo (props changed) head/print/pstotext/distinfo (props changed) head/print/psutils/distinfo (props changed) head/print/pup/distinfo (props changed) head/print/py-pdf/distinfo (props changed) head/print/py-pollyreports/distinfo (props changed) head/print/py-pyscript/distinfo (props changed) head/print/py-relatorio/distinfo (props changed) head/print/py-reportlab/distinfo (props changed) head/print/py-reportlab2/distinfo (props changed) head/print/py-rtf/distinfo (props changed) head/print/py-trml2pdf/distinfo (props changed) head/print/rlpr/distinfo (props changed) head/print/rprint/distinfo (props changed) head/print/rtf2latex/distinfo (props changed) head/print/rtf2latex2e/distinfo (props changed) head/print/ruby-panda/distinfo (props changed) head/print/rubygem-afm/distinfo (props changed) head/print/rubygem-colortools/distinfo (props changed) head/print/rubygem-pdf-reader/distinfo (props changed) head/print/rubygem-pdfwriter/distinfo (props changed) head/print/rubygem-prawn-core/distinfo (props changed) head/print/rubygem-prawn-flexible-table/distinfo (props changed) head/print/rubygem-prawn-format/distinfo (props changed) head/print/rubygem-prawn-graph/distinfo (props changed) head/print/rubygem-prawn-js/distinfo (props changed) head/print/rubygem-prawn-layout/distinfo (props changed) head/print/rubygem-prawn-security/distinfo (props changed) head/print/rubygem-ttfunk/distinfo (props changed) head/print/scribus/distinfo (props changed) head/print/sgf2tex/distinfo (props changed) head/print/splix/distinfo (props changed) head/print/sv-acroread8/distinfo (props changed) head/print/system-config-printer/distinfo (props changed) head/print/t1utils/distinfo (props changed) head/print/teTeX-base/distinfo (props changed) head/print/teTeX-texmf/distinfo (props changed) head/print/tex-aleph/distinfo (props changed) head/print/tex-dvipdfmx/distinfo (props changed) head/print/tex-dvipsk/distinfo (props changed) head/print/tex-jadetex/distinfo (props changed) head/print/tex-luatex/distinfo (props changed) head/print/tex-mfpic/distinfo (props changed) head/print/tex-omegaware-old/distinfo (props changed) head/print/tex-ptexenc/distinfo (props changed) head/print/tex-xdvik/distinfo (props changed) head/print/tex-xetex/distinfo (props changed) head/print/tex-xmltex/distinfo (props changed) head/print/tex/distinfo (props changed) head/print/texinfo/distinfo (props changed) head/print/texlive-base/distinfo (props changed) head/print/texlive-docs/distinfo (props changed) head/print/texlive-infra/distinfo (props changed) head/print/texlive-texmf/distinfo (props changed) head/print/texpower/distinfo (props changed) head/print/texvc/distinfo (props changed) head/print/tgif2tex/distinfo (props changed) head/print/transfig/distinfo (props changed) head/print/trueprint/distinfo (props changed) head/print/ttf2pt1/distinfo (props changed) head/print/ttftot42/distinfo (props changed) head/print/txtbdf2ps/distinfo (props changed) head/print/utopia/distinfo (props changed) head/print/wprint/distinfo (props changed) head/print/xdvi/distinfo (props changed) head/print/xdvik/distinfo (props changed) head/print/xfce4-print/distinfo (props changed) head/print/xmbibtex/distinfo (props changed) head/print/xmltex/distinfo (props changed) head/print/xpp/distinfo (props changed) head/print/xtexsh/distinfo (props changed) head/print/yatex/distinfo (props changed) head/russian/artwiz-ru/distinfo (props changed) head/russian/aspell/distinfo (props changed) head/russian/bugzilla40/distinfo (props changed) head/russian/bugzilla42/distinfo (props changed) head/russian/bugzilla44/distinfo (props changed) head/russian/d1489/distinfo (props changed) head/russian/eric4/distinfo (props changed) head/russian/fortune-bashorgru/distinfo (props changed) head/russian/fortuneru/distinfo (props changed) head/russian/hyphen/distinfo (props changed) head/russian/ircd-hybrid/distinfo (props changed) head/russian/koi8r-ps/distinfo (props changed) head/russian/libcyrillic/distinfo (props changed) head/russian/libreoffice/distinfo (props changed) head/russian/mueller-dic/distinfo (props changed) head/russian/mythes/distinfo (props changed) head/russian/p5-Convert-Cyrillic/distinfo (props changed) head/russian/p5-Lingua-DetectCyrillic/distinfo (props changed) head/russian/p5-Lingua-RU-Charset/distinfo (props changed) head/russian/p5-cyrillic/distinfo (props changed) head/russian/prawda/distinfo (props changed) head/russian/pscyr/distinfo (props changed) head/russian/rubygem-russian/distinfo (props changed) head/russian/rubygem-rutils/distinfo (props changed) head/russian/rus-ispell/distinfo (props changed) head/russian/rux/distinfo (props changed) head/russian/stardict-bars/distinfo (props changed) head/russian/stardict-computer/distinfo (props changed) head/russian/stardict-dal/distinfo (props changed) head/russian/stardict-engcom/distinfo (props changed) head/russian/stardict-mueller7/distinfo (props changed) head/russian/stardict-mueller7accent/distinfo (props changed) head/russian/stardict-pc/distinfo (props changed) head/russian/tac+ia/distinfo (props changed) head/russian/tidyup-mail/distinfo (props changed) head/russian/xcode/distinfo (props changed) head/russian/xpi-tabextensions/distinfo (props changed) head/russian/xruskb/distinfo (props changed) head/science/2d-rewriter/distinfo (props changed) head/science/2dhf/distinfo (props changed) head/science/InsightToolkit/distinfo (props changed) head/science/R-cran-AMORE/distinfo (props changed) head/science/R-cran-DCluster/distinfo (props changed) head/science/R-cran-Epi/distinfo (props changed) head/science/R-cran-bayesm/distinfo (props changed) head/science/R-cran-e1071/distinfo (props changed) head/science/R-cran-eco/distinfo (props changed) head/science/R-cran-epicalc/distinfo (props changed) head/science/R-cran-snow/distinfo (props changed) head/science/R-cran-som/distinfo (props changed) head/science/abinit/distinfo (props changed) head/science/afni/distinfo (props changed) head/science/bddsolve/distinfo (props changed) head/science/bft/distinfo (props changed) head/science/brian/distinfo (props changed) head/science/buddy/distinfo (props changed) head/science/cdcl/distinfo (props changed) head/science/cdf/distinfo (props changed) head/science/chemical-mime-data/distinfo (props changed) head/science/chemtool-devel/distinfo (props changed) head/science/chemtool/distinfo (props changed) head/science/clhep/distinfo (props changed) head/science/colt/distinfo (props changed) head/science/crf++/distinfo (props changed) head/science/devisor/distinfo (props changed) head/science/dlpoly-classic/distinfo (props changed) head/science/dtiquery/distinfo (props changed) head/science/ecs/distinfo (props changed) head/science/elmer-eio/distinfo (props changed) head/science/elmer-hutiter/distinfo (props changed) head/science/elmer-matc/distinfo (props changed) head/science/elmer-meshgen2d/distinfo (props changed) head/science/elmergrid/distinfo (props changed) head/science/elmerpost/distinfo (props changed) head/science/epte/distinfo (props changed) head/science/euler/distinfo (props changed) head/science/fastcap/distinfo (props changed) head/science/flounder/distinfo (props changed) head/science/fvm/distinfo (props changed) head/science/g3data/distinfo (props changed) head/science/gamess/distinfo (props changed) head/science/getdp/distinfo (props changed) head/science/ghemical/distinfo (props changed) head/science/ghmm/distinfo (props changed) head/science/gramps/distinfo (props changed) head/science/gsmc/distinfo (props changed) head/science/gtamsanalyzer/distinfo (props changed) head/science/h5utils/distinfo (props changed) head/science/harminv/distinfo (props changed) head/science/hdf-java/distinfo (props changed) head/science/hdf5/distinfo (props changed) head/science/hs-bio/distinfo (props changed) head/science/isaac-cfd/distinfo (props changed) head/science/lamprop/distinfo (props changed) head/science/libctl/distinfo (props changed) head/science/libghemical/distinfo (props changed) head/science/libint/distinfo (props changed) head/science/libkml/distinfo (props changed) head/science/liblinear/distinfo (props changed) head/science/liboglappth/distinfo (props changed) head/science/libquantum/distinfo (props changed) head/science/libsvm/distinfo (props changed) head/science/mbdyn/distinfo (props changed) head/science/mcstas/distinfo (props changed) head/science/meep/distinfo (props changed) head/science/minc/distinfo (props changed) head/science/mpb/distinfo (props changed) head/science/mpqc/distinfo (props changed) head/science/ncs/distinfo (props changed) head/science/netcdf/distinfo (props changed) head/science/netcdf4/distinfo (props changed) head/science/nifticlib/distinfo (props changed) head/science/p5-Algorithm-SVMLight/distinfo (props changed) head/science/p5-Chemistry-3DBuilder/distinfo (props changed) head/science/p5-Chemistry-Bond-Find/distinfo (props changed) head/science/p5-Chemistry-Canonicalize/distinfo (props changed) head/science/p5-Chemistry-Elements/distinfo (props changed) head/science/p5-Chemistry-File-MDLMol/distinfo (props changed) head/science/p5-Chemistry-File-Mopac/distinfo (props changed) head/science/p5-Chemistry-File-PDB/distinfo (props changed) head/science/p5-Chemistry-File-SLN/distinfo (props changed) head/science/p5-Chemistry-File-SMARTS/distinfo (props changed) head/science/p5-Chemistry-File-SMILES/distinfo (props changed) head/science/p5-Chemistry-File-VRML/distinfo (props changed) head/science/p5-Chemistry-File-XYZ/distinfo (props changed) head/science/p5-Chemistry-FormulaPattern/distinfo (props changed) head/science/p5-Chemistry-InternalCoords/distinfo (props changed) head/science/p5-Chemistry-Isotope/distinfo (props changed) head/science/p5-Chemistry-MacroMol/distinfo (props changed) head/science/p5-Chemistry-MidasPattern/distinfo (props changed) head/science/p5-Chemistry-Mok/distinfo (props changed) head/science/p5-Chemistry-Mol/distinfo (props changed) head/science/p5-Chemistry-Pattern/distinfo (props changed) head/science/p5-Chemistry-Reaction/distinfo (props changed) head/science/p5-Chemistry-Ring/distinfo (props changed) head/science/p5-Geo-Coordinates-Converter-iArea/distinfo (props changed) head/science/p5-Geo-Coordinates-Converter/distinfo (props changed) head/science/p5-Geo-ReadGRIB/distinfo (props changed) head/science/p5-Geo-WebService-Elevation-USGS/distinfo (props changed) head/science/p5-PerlMol/distinfo (props changed) head/science/p5-Physics-Unit/distinfo (props changed) head/science/paje/distinfo (props changed) head/science/paraview/distinfo (props changed) head/science/peekabot/distinfo (props changed) head/science/psi3/distinfo (props changed) head/science/psychopy/distinfo (props changed) head/science/py-DendroPy/distinfo (props changed) head/science/py-hcluster/distinfo (props changed) head/science/py-mdp/distinfo (props changed) head/science/py-mlpy/distinfo (props changed) head/science/py-obspy/distinfo (props changed) head/science/py-paida/distinfo (props changed) head/science/py-pydicom/distinfo (props changed) head/science/py-scikit-learn/distinfo (props changed) head/science/py-scimath/distinfo (props changed) head/science/py-scipy/distinfo (props changed) head/science/py-ws2300/distinfo (props changed) head/science/pybrain/distinfo (props changed) head/science/pycdf/distinfo (props changed) head/science/qtresistors/distinfo (props changed) head/science/ruby-dcl/distinfo (props changed) head/science/ruby-netcdf/distinfo (props changed) head/science/sigrok-cli/distinfo (props changed) head/science/simlib/distinfo (props changed) head/science/svmlight/distinfo (props changed) head/science/szip/distinfo (props changed) head/science/udunits/distinfo (props changed) head/science/vmd/distinfo (props changed) head/science/x11iraf/distinfo (props changed) head/science/xmakemol/distinfo (props changed) head/science/xmds/distinfo (props changed) head/security/ADMsmb/distinfo (props changed) head/security/ADMsnmp/distinfo (props changed) head/security/R-cran-ROAuth/distinfo (props changed) head/security/R-cran-digest/distinfo (props changed) head/security/aescrypt/distinfo (props changed) head/security/aespipe/distinfo (props changed) head/security/aide/distinfo (props changed) head/security/aimsniff/distinfo (props changed) head/security/amap/distinfo (props changed) head/security/amavis-stats/distinfo (props changed) head/security/amavisd-milter/distinfo (props changed) head/security/amavisd-new/distinfo (props changed) head/security/aolserver-nsencrypt/distinfo (props changed) head/security/aolserver-nsmcrypt/distinfo (props changed) head/security/aolserver-nsmhash/distinfo (props changed) head/security/aolserver-nsopenssl/distinfo (props changed) head/security/aolserver-nssha1/distinfo (props changed) head/security/apache-xml-security-c/distinfo (props changed) head/security/apg/distinfo (props changed) head/security/arirang/distinfo (props changed) head/security/arm/distinfo (props changed) head/security/arpCounterattack/distinfo (props changed) head/security/authforce/distinfo (props changed) head/security/autossh/distinfo (props changed) head/security/avcheck/distinfo (props changed) head/security/base/distinfo (props changed) head/security/bcrypt/distinfo (props changed) head/security/bcwipe/distinfo (props changed) head/security/bdc/distinfo (props changed) head/security/beecrypt/distinfo (props changed) head/security/belier/distinfo (props changed) head/security/bfbtester/distinfo (props changed) head/security/bioapi/distinfo (props changed) head/security/blindelephant/distinfo (props changed) head/security/botan/distinfo (props changed) head/security/bruteblock/distinfo (props changed) head/security/bruteforceblocker/distinfo (props changed) head/security/bsdsfv/distinfo (props changed) head/security/bsmtrace/distinfo (props changed) head/security/bsp_upektfmess/distinfo (props changed) head/security/bugs/distinfo (props changed) head/security/calife-devel/distinfo (props changed) head/security/calife/distinfo (props changed) head/security/ccrypt/distinfo (props changed) head/security/ccsrch/distinfo (props changed) head/security/cfs/distinfo (props changed) head/security/cfv/distinfo (props changed) head/security/chaosreader/distinfo (props changed) head/security/checkpassword-pam/distinfo (props changed) head/security/checkpassword/distinfo (props changed) head/security/chkrootkit/distinfo (props changed) head/security/chntpw/distinfo (props changed) head/security/chroot_safe/distinfo (props changed) head/security/chrootuid/distinfo (props changed) head/security/cksfv/distinfo (props changed) head/security/cl-md5/distinfo (props changed) head/security/clamassassin/distinfo (props changed) head/security/clamav-unofficial-sigs/distinfo (props changed) head/security/clamcour/distinfo (props changed) head/security/clamd-stream-client/distinfo (props changed) head/security/clamsmtp/distinfo (props changed) head/security/clusterssh/distinfo (props changed) head/security/cmd5checkpw/distinfo (props changed) head/security/cops/distinfo (props changed) head/security/courierpassd/distinfo (props changed) head/security/courierpasswd/distinfo (props changed) head/security/courieruserinfo/distinfo (props changed) head/security/cp2fwb/distinfo (props changed) head/security/crack/distinfo (props changed) head/security/crank/distinfo (props changed) head/security/create-cert/distinfo (props changed) head/security/cryptlib/distinfo (props changed) head/security/cryptopp/distinfo (props changed) head/security/cryptstring/distinfo (props changed) head/security/cvm/distinfo (props changed) head/security/cyrus-sasl2/distinfo (props changed) head/security/dcetest/distinfo (props changed) head/security/ddos_scan/distinfo (props changed) head/security/denyhosts/distinfo (props changed) head/security/destroy/distinfo (props changed) head/security/didentd/distinfo (props changed) head/security/digest/distinfo (props changed) head/security/dirbuster/distinfo (props changed) head/security/distcache-devel/distinfo (props changed) head/security/distcache/distinfo (props changed) head/security/dmitry/distinfo (props changed) head/security/doorman/distinfo (props changed) head/security/doscan/distinfo (props changed) head/security/dradis/distinfo (props changed) head/security/dsniff/distinfo (props changed) head/security/easypg/distinfo (props changed) head/security/engine_pkcs11/distinfo (props changed) head/security/expiretable/distinfo (props changed) head/security/f-prot/distinfo (props changed) head/security/fakebo/distinfo (props changed) head/security/fakeident/distinfo (props changed) head/security/fbopenssl/distinfo (props changed) head/security/fcheck/distinfo (props changed) head/security/fcrackzip/distinfo (props changed) head/security/fiked/distinfo (props changed) head/security/find-zlib/distinfo (props changed) head/security/firewalk/distinfo (props changed) head/security/fl0p/distinfo (props changed) head/security/flawfinder/distinfo (props changed) head/security/fpm2/distinfo (props changed) head/security/fragroute/distinfo (props changed) head/security/fragrouter/distinfo (props changed) head/security/fsh/distinfo (props changed) head/security/fswatch/distinfo (props changed) head/security/ftimes/distinfo (props changed) head/security/fuzz/distinfo (props changed) head/security/fwanalog/distinfo (props changed) head/security/fwbuilder/distinfo (props changed) head/security/fwipe/distinfo (props changed) head/security/fwlogwatch/distinfo (props changed) head/security/gag/distinfo (props changed) head/security/gcipher/distinfo (props changed) head/security/gnome-gpg/distinfo (props changed) head/security/gnome-keyring-sharp/distinfo (props changed) head/security/gnome-keyring/distinfo (props changed) head/security/gnome-password-generator/distinfo (props changed) head/security/gnome-ssh-askpass/distinfo (props changed) head/security/gnomint/distinfo (props changed) head/security/gnupg/distinfo (props changed) head/security/gnupg1/distinfo (props changed) head/security/gnutls-devel/distinfo (props changed) head/security/gnutls/distinfo (props changed) head/security/gorilla/distinfo (props changed) head/security/gpasman/distinfo (props changed) head/security/gpass/distinfo (props changed) head/security/gringotts/distinfo (props changed) head/security/gsasl/distinfo (props changed) head/security/gsfv/distinfo (props changed) head/security/gss/distinfo (props changed) head/security/gtk-knocker/distinfo (props changed) head/security/gtkpasman/distinfo (props changed) head/security/gtkportscan/distinfo (props changed) head/security/gwee/distinfo (props changed) head/security/hackbot/distinfo (props changed) head/security/hamachi/distinfo (props changed) head/security/heimdal/distinfo (props changed) head/security/hlfl/distinfo (props changed) head/security/hmap/distinfo (props changed) head/security/honggfuzz/distinfo (props changed) head/security/horde3-jeta/distinfo (props changed) head/security/hotssh/distinfo (props changed) head/security/hs-Crypto/distinfo (props changed) head/security/hs-HsOpenSSL/distinfo (props changed) head/security/hs-RSA/distinfo (props changed) head/security/hs-SHA/distinfo (props changed) head/security/hs-certificate/distinfo (props changed) head/security/hs-clientsession/distinfo (props changed) head/security/hs-cprng-aes/distinfo (props changed) head/security/hs-crypto-api/distinfo (props changed) head/security/hs-crypto-conduit/distinfo (props changed) head/security/hs-crypto-pubkey-types/distinfo (props changed) head/security/hs-cryptocipher/distinfo (props changed) head/security/hs-cryptohash/distinfo (props changed) head/security/hs-digest/distinfo (props changed) head/security/hs-entropy/distinfo (props changed) head/security/hs-monadcryptorandom/distinfo (props changed) head/security/hs-pem/distinfo (props changed) head/security/hs-pureMD5/distinfo (props changed) head/security/hs-pwstore-fast/distinfo (props changed) head/security/hs-skein/distinfo (props changed) head/security/hs-tls-extra/distinfo (props changed) head/security/hs-tls/distinfo (props changed) head/security/httprint/distinfo (props changed) head/security/hunch/distinfo (props changed) head/security/hydra/distinfo (props changed) head/security/iaikpkcs11wrapper/distinfo (props changed) head/security/idea/distinfo (props changed) head/security/identify/distinfo (props changed) head/security/ifd-slb_rf60/distinfo (props changed) head/security/ike-scan/distinfo (props changed) head/security/integrit/distinfo (props changed) head/security/ipfcount/distinfo (props changed) head/security/ipfilter2dshield/distinfo (props changed) head/security/ipfmeta/distinfo (props changed) head/security/ipfw2dshield/distinfo (props changed) head/security/ipfwcount/distinfo (props changed) head/security/ipguard/distinfo (props changed) head/security/ipsec-tools/distinfo (props changed) head/security/isakmpd/distinfo (props changed) head/security/isnprober/distinfo (props changed) head/security/jbrofuzz/distinfo (props changed) head/security/kc/distinfo (props changed) head/security/kedpm/distinfo (props changed) head/security/keepassx/distinfo (props changed) head/security/keychain/distinfo (props changed) head/security/keynote/distinfo (props changed) head/security/keyprint/distinfo (props changed) head/security/knock/distinfo (props changed) head/security/knocker/distinfo (props changed) head/security/krb5-appl/distinfo (props changed) head/security/krb5-maint/distinfo (props changed) head/security/krb5/distinfo (props changed) head/security/kripp/distinfo (props changed) head/security/l0pht-watch/distinfo (props changed) head/security/l0phtcrack/distinfo (props changed) head/security/l5/distinfo (props changed) head/security/labrea/distinfo (props changed) head/security/lasso/distinfo (props changed) head/security/libbf/distinfo (props changed) head/security/libecc/distinfo (props changed) head/security/libfprint/distinfo (props changed) head/security/libgnome-keyring/distinfo (props changed) head/security/libgnomesu/distinfo (props changed) head/security/libgpg-error/distinfo (props changed) head/security/libgringotts/distinfo (props changed) head/security/libident/distinfo (props changed) head/security/libksba/distinfo (props changed) head/security/libmatekeyring/distinfo (props changed) head/security/libmcrypt/distinfo (props changed) head/security/libntlm/distinfo (props changed) head/security/libotr/distinfo (props changed) head/security/libotr3/distinfo (props changed) head/security/libp11/distinfo (props changed) head/security/libprelude/distinfo (props changed) head/security/libpreludedb/distinfo (props changed) head/security/libpwstor/distinfo (props changed) head/security/libscrypt/distinfo (props changed) head/security/libsectok/distinfo (props changed) head/security/libsparkcrypto/distinfo (props changed) head/security/libtasn1/distinfo (props changed) head/security/libtomcrypt/distinfo (props changed) head/security/libwhisker/distinfo (props changed) head/security/linux-f10-cyrus-sasl2/distinfo.i386 (props changed) head/security/linux-f10-gnutls/distinfo.i386 (props changed) head/security/linux-f10-libgcrypt/distinfo.i386 (props changed) head/security/linux-f10-libgpg-error/distinfo.i386 (props changed) head/security/linux-f10-libssh2/distinfo.i386 (props changed) head/security/linux-f10-libtasn1/distinfo.i386 (props changed) head/security/linux-f10-nss/distinfo.i386 (props changed) head/security/linux-f10-openssl/distinfo.i386 (props changed) head/security/lockdown/distinfo (props changed) head/security/log2timeline/distinfo (props changed) head/security/logcheck/distinfo (props changed) head/security/lsh/distinfo (props changed) head/security/luasec/distinfo (props changed) head/security/mac-robber/distinfo (props changed) head/security/maia/distinfo (props changed) head/security/mailzu/distinfo (props changed) head/security/makepasswd/distinfo (props changed) head/security/manipulate_data/distinfo (props changed) head/security/massh/distinfo (props changed) head/security/mate-keyring/distinfo (props changed) head/security/matrixssl/distinfo (props changed) head/security/mcrypt/distinfo (props changed) head/security/md4coll/distinfo (props changed) head/security/md5coll/distinfo (props changed) head/security/mdcrack/distinfo (props changed) head/security/medusa/distinfo (props changed) head/security/mhash/distinfo (props changed) head/security/mindterm-binary/distinfo (props changed) head/security/monkeysphere/distinfo (props changed) head/security/mosref/distinfo (props changed) head/security/mussh/distinfo (props changed) head/security/nacl/distinfo (props changed) head/security/nbaudit/distinfo (props changed) head/security/ncrack/distinfo (props changed) head/security/ncrypt/distinfo (props changed) head/security/nessus-libraries/distinfo (props changed) head/security/nessus-plugins/distinfo (props changed) head/security/nessus/distinfo (props changed) head/security/netpgp/distinfo (props changed) head/security/nettle/distinfo (props changed) head/security/nikto/distinfo (props changed) head/security/oath-toolkit/distinfo (props changed) head/security/obfsproxy/distinfo (props changed) head/security/ocaml-cryptgps/distinfo (props changed) head/security/ocaml-cryptokit/distinfo (props changed) head/security/ocaml-ssl/distinfo (props changed) head/security/oidentd/distinfo (props changed) head/security/oinkmaster/distinfo (props changed) head/security/op/distinfo (props changed) head/security/openbsm/distinfo (props changed) head/security/opencdk/distinfo (props changed) head/security/opencryptoki/distinfo (props changed) head/security/openct/distinfo (props changed) head/security/openfwtk/distinfo (props changed) head/security/openpgpsdk/distinfo (props changed) head/security/opensaml2/distinfo (props changed) head/security/opensc/distinfo (props changed) head/security/openscep/distinfo (props changed) head/security/openssh-askpass/distinfo (props changed) head/security/openssh-portable/distinfo (props changed) head/security/openssl/distinfo (props changed) head/security/openssl_tpm_engine/distinfo (props changed) head/security/openvas-client/distinfo (props changed) head/security/openvas-libnasl/distinfo (props changed) head/security/openvas-libraries/distinfo (props changed) head/security/openvas-plugins/distinfo (props changed) head/security/openvas-server/distinfo (props changed) head/security/openvpn-admin/distinfo (props changed) head/security/openvpn-auth-ldap/distinfo (props changed) head/security/openvpn-auth-radius/distinfo (props changed) head/security/ophcrack/distinfo (props changed) head/security/orthrus/distinfo (props changed) head/security/osiris/distinfo (props changed) head/security/ossec-hids-server/distinfo (props changed) head/security/osslsigncode/distinfo (props changed) head/security/outguess/distinfo (props changed) head/security/p11-kit/distinfo (props changed) head/security/p5-App-TLSMe/distinfo (props changed) head/security/p5-Auth-YubikeyDecrypter/distinfo (props changed) head/security/p5-AuthCAS/distinfo (props changed) head/security/p5-Authen-Bitcard/distinfo (props changed) head/security/p5-Authen-Captcha/distinfo (props changed) head/security/p5-Authen-CyrusSASL/distinfo (props changed) head/security/p5-Authen-DecHpwd/distinfo (props changed) head/security/p5-Authen-Htpasswd/distinfo (props changed) head/security/p5-Authen-Krb5/distinfo (props changed) head/security/p5-Authen-Libwrap/distinfo (props changed) head/security/p5-Authen-NTLM/distinfo (props changed) head/security/p5-Authen-OATH/distinfo (props changed) head/security/p5-Authen-PAAS/distinfo (props changed) head/security/p5-Authen-PAM/distinfo (props changed) head/security/p5-Authen-Passphrase/distinfo (props changed) head/security/p5-Authen-PluggableCaptcha/distinfo (props changed) head/security/p5-Authen-SASL-Cyrus/distinfo (props changed) head/security/p5-Authen-SASL/distinfo (props changed) head/security/p5-Authen-Simple-DBI/distinfo (props changed) head/security/p5-Authen-Simple-DBM/distinfo (props changed) head/security/p5-Authen-Simple-HTTP/distinfo (props changed) head/security/p5-Authen-Simple-LDAP/distinfo (props changed) head/security/p5-Authen-Simple-Net/distinfo (props changed) head/security/p5-Authen-Simple-PAM/distinfo (props changed) head/security/p5-Authen-Simple-Passwd/distinfo (props changed) head/security/p5-Authen-Simple-RADIUS/distinfo (props changed) head/security/p5-Authen-Simple-SMB/distinfo (props changed) head/security/p5-Authen-Simple-SSH/distinfo (props changed) head/security/p5-Authen-Simple/distinfo (props changed) head/security/p5-Authen-Smb/distinfo (props changed) head/security/p5-Authen-TacacsPlus/distinfo (props changed) head/security/p5-Authen-Ticket/distinfo (props changed) head/security/p5-Authen-TypeKey/distinfo (props changed) head/security/p5-CSP/distinfo (props changed) head/security/p5-Cisco-Hash/distinfo (props changed) head/security/p5-Crypt-Anubis/distinfo (props changed) head/security/p5-Crypt-AppleTwoFish/distinfo (props changed) head/security/p5-Crypt-Blowfish/distinfo (props changed) head/security/p5-Crypt-Blowfish_PP/distinfo (props changed) head/security/p5-Crypt-CAST5/distinfo (props changed) head/security/p5-Crypt-CAST5_PP/distinfo (props changed) head/security/p5-Crypt-CBC/distinfo (props changed) head/security/p5-Crypt-CBCeasy/distinfo (props changed) head/security/p5-Crypt-CFB/distinfo (props changed) head/security/p5-Crypt-Caesar/distinfo (props changed) head/security/p5-Crypt-Camellia_PP/distinfo (props changed) head/security/p5-Crypt-Chimera/distinfo (props changed) head/security/p5-Crypt-CipherSaber/distinfo (props changed) head/security/p5-Crypt-Cracklib/distinfo (props changed) head/security/p5-Crypt-Ctr/distinfo (props changed) head/security/p5-Crypt-DES_EDE3/distinfo (props changed) head/security/p5-Crypt-DES_PP/distinfo (props changed) head/security/p5-Crypt-DH/distinfo (props changed) head/security/p5-Crypt-DSA/distinfo (props changed) head/security/p5-Crypt-Dining/distinfo (props changed) head/security/p5-Crypt-ECB/distinfo (props changed) head/security/p5-Crypt-Eksblowfish/distinfo (props changed) head/security/p5-Crypt-Enigma/distinfo (props changed) head/security/p5-Crypt-GCrypt/distinfo (props changed) head/security/p5-Crypt-GOST/distinfo (props changed) head/security/p5-Crypt-GOST_PP/distinfo (props changed) head/security/p5-Crypt-GPG/distinfo (props changed) head/security/p5-Crypt-GeneratePassword/distinfo (props changed) head/security/p5-Crypt-HCE_MD5/distinfo (props changed) head/security/p5-Crypt-HCE_SHA/distinfo (props changed) head/security/p5-Crypt-IDEA/distinfo (props changed) head/security/p5-Crypt-Imail/distinfo (props changed) head/security/p5-Crypt-Juniper/distinfo (props changed) head/security/p5-Crypt-Khazad/distinfo (props changed) head/security/p5-Crypt-License/distinfo (props changed) head/security/p5-Crypt-Lite/distinfo (props changed) head/security/p5-Crypt-Loki97/distinfo (props changed) head/security/p5-Crypt-MySQL/distinfo (props changed) head/security/p5-Crypt-NULL/distinfo (props changed) head/security/p5-Crypt-OFB/distinfo (props changed) head/security/p5-Crypt-OICQ/distinfo (props changed) head/security/p5-Crypt-OTP/distinfo (props changed) head/security/p5-Crypt-OpenPGP/distinfo (props changed) head/security/p5-Crypt-OpenSSL-AES/distinfo (props changed) head/security/p5-Crypt-OpenSSL-Bignum/distinfo (props changed) head/security/p5-Crypt-OpenSSL-CA/distinfo (props changed) head/security/p5-Crypt-OpenSSL-DSA/distinfo (props changed) head/security/p5-Crypt-OpenSSL-RSA/distinfo (props changed) head/security/p5-Crypt-OpenSSL-Random/distinfo (props changed) head/security/p5-Crypt-PGPSimple/distinfo (props changed) head/security/p5-Crypt-PassGen/distinfo (props changed) head/security/p5-Crypt-PasswdMD5/distinfo (props changed) head/security/p5-Crypt-Primes/distinfo (props changed) head/security/p5-Crypt-RC4/distinfo (props changed) head/security/p5-Crypt-RC5/distinfo (props changed) head/security/p5-Crypt-RC6/distinfo (props changed) head/security/p5-Crypt-RIPEMD160/distinfo (props changed) head/security/p5-Crypt-RSA-Yandex/distinfo (props changed) head/security/p5-Crypt-RSA/distinfo (props changed) head/security/p5-Crypt-Rabbit/distinfo (props changed) head/security/p5-Crypt-RandPasswd/distinfo (props changed) head/security/p5-Crypt-Random-Source/distinfo (props changed) head/security/p5-Crypt-Random/distinfo (props changed) head/security/p5-Crypt-Rijndael/distinfo (props changed) head/security/p5-Crypt-Rijndael_PP/distinfo (props changed) head/security/p5-Crypt-SKey/distinfo (props changed) head/security/p5-Crypt-SSLeay/distinfo (props changed) head/security/p5-Crypt-Salt/distinfo (props changed) head/security/p5-Crypt-SaltedHash/distinfo (props changed) head/security/p5-Crypt-Serpent/distinfo (props changed) head/security/p5-Crypt-Shark/distinfo (props changed) head/security/p5-Crypt-Simple/distinfo (props changed) head/security/p5-Crypt-SmbHash/distinfo (props changed) head/security/p5-Crypt-Solitaire/distinfo (props changed) head/security/p5-Crypt-TEA/distinfo (props changed) head/security/p5-Crypt-T_e_a/distinfo (props changed) head/security/p5-Crypt-TripleDES/distinfo (props changed) head/security/p5-Crypt-Twofish/distinfo (props changed) head/security/p5-Crypt-Twofish2/distinfo (props changed) head/security/p5-Crypt-Twofish_PP/distinfo (props changed) head/security/p5-Crypt-URandom/distinfo (props changed) head/security/p5-Crypt-UnixCrypt/distinfo (props changed) head/security/p5-Crypt-UnixCrypt_XS/distinfo (props changed) head/security/p5-Crypt-X509/distinfo (props changed) head/security/p5-Crypt-xDBM_File/distinfo (props changed) head/security/p5-CryptX/distinfo (props changed) head/security/p5-Dancer-Plugin-Passphrase/distinfo (props changed) head/security/p5-Data-Entropy/distinfo (props changed) head/security/p5-Data-Password/distinfo (props changed) head/security/p5-Digest-Adler32/distinfo (props changed) head/security/p5-Digest-Bcrypt/distinfo (props changed) head/security/p5-Digest-BubbleBabble/distinfo (props changed) head/security/p5-Digest-CRC/distinfo (props changed) head/security/p5-Digest-Crc32/distinfo (props changed) head/security/p5-Digest-DJB/distinfo (props changed) head/security/p5-Digest-DMAC/distinfo (props changed) head/security/p5-Digest-EMAC/distinfo (props changed) head/security/p5-Digest-Elf/distinfo (props changed) head/security/p5-Digest-FNV/distinfo (props changed) head/security/p5-Digest-HMAC/distinfo (props changed) head/security/p5-Digest-Hashcash/distinfo (props changed) head/security/p5-Digest-Haval256/distinfo (props changed) head/security/p5-Digest-JHash/distinfo (props changed) head/security/p5-Digest-MD2/distinfo (props changed) head/security/p5-Digest-MD5-File/distinfo (props changed) head/security/p5-Digest-MD5-M4p/distinfo (props changed) head/security/p5-Digest-MD5-Reverse/distinfo (props changed) head/security/p5-Digest-MD5/distinfo (props changed) head/security/p5-Digest-ManberHash/distinfo (props changed) head/security/p5-Digest-MurmurHash/distinfo (props changed) head/security/p5-Digest-Nilsimsa/distinfo (props changed) head/security/p5-Digest-Pearson-PurePerl/distinfo (props changed) head/security/p5-Digest-Pearson/distinfo (props changed) head/security/p5-Digest-Perl-MD4/distinfo (props changed) head/security/p5-Digest-Perl-MD5/distinfo (props changed) head/security/p5-Digest-SHA-PurePerl/distinfo (props changed) head/security/p5-Digest-SHA/distinfo (props changed) head/security/p5-Digest-SHA1/distinfo (props changed) head/security/p5-Digest-SV1/distinfo (props changed) head/security/p5-Digest-Tiger/distinfo (props changed) head/security/p5-Digest-Whirlpool/distinfo (props changed) head/security/p5-Digest/distinfo (props changed) head/security/p5-File-Scan-ClamAV/distinfo (props changed) head/security/p5-File-Scan/distinfo (props changed) head/security/p5-Filter-CBC/distinfo (props changed) head/security/p5-GD-SecurityImage/distinfo (props changed) head/security/p5-GSSAPI/distinfo (props changed) head/security/p5-GnuPG-Interface/distinfo (props changed) head/security/p5-GnuPG/distinfo (props changed) head/security/p5-HTML-Email-Obfuscate/distinfo (props changed) head/security/p5-Jifty-Plugin-OpenID/distinfo (props changed) head/security/p5-MD5/distinfo (props changed) head/security/p5-Mcrypt/distinfo (props changed) head/security/p5-Module-Signature/distinfo (props changed) head/security/p5-Net-Daemon-SSL/distinfo (props changed) head/security/p5-Net-OpenID-JanRain/distinfo (props changed) head/security/p5-Net-OpenID-Server/distinfo (props changed) head/security/p5-Net-Radius-Server/distinfo (props changed) head/security/p5-Net-SSL-ExpireDate/distinfo (props changed) head/security/p5-Net-Server-Mail-ESMTP-AUTH/distinfo (props changed) head/security/p5-Net-SinFP/distinfo (props changed) head/security/p5-Nmap-Scanner/distinfo (props changed) head/security/p5-OpenCA-CRR/distinfo (props changed) head/security/p5-OpenCA-OpenSSL/distinfo (props changed) head/security/p5-OpenCA-PKCS7/distinfo (props changed) head/security/p5-OpenCA-REQ/distinfo (props changed) head/security/p5-OpenCA-X509/distinfo (props changed) head/security/p5-PGP-Sign/distinfo (props changed) head/security/p5-PGP/distinfo (props changed) head/security/p5-POE-Component-SSLify/distinfo (props changed) head/security/p5-PerlCryptLib/distinfo (props changed) head/security/p5-SAVI-Perl/distinfo (props changed) head/security/p5-SHA/distinfo (props changed) head/security/p5-Safe-Hole/distinfo (props changed) head/security/p5-Snort-Rule/distinfo (props changed) head/security/p5-String-MkPasswd/distinfo (props changed) head/security/p5-Sudo/distinfo (props changed) head/security/p5-Text-Password-Pronounceable/distinfo (props changed) head/security/p5-Tie-EncryptedHash/distinfo (props changed) head/security/p5-Tree-Authz/distinfo (props changed) head/security/p5-Yahoo-BBAuth/distinfo (props changed) head/security/p5-dicewaregen/distinfo (props changed) head/security/p5-openxpki-client-html-mason/distinfo (props changed) head/security/p5-openxpki-client-scep/distinfo (props changed) head/security/p5-openxpki-client/distinfo (props changed) head/security/p5-openxpki-deployment/distinfo (props changed) head/security/p5-openxpki-i18n/distinfo (props changed) head/security/p5-openxpki/distinfo (props changed) head/security/pad/distinfo (props changed) head/security/pam-mysql/distinfo (props changed) head/security/pam-pgsql/distinfo (props changed) head/security/pam_abl/distinfo (props changed) head/security/pam_alreadyloggedin/distinfo (props changed) head/security/pam_bsdbioapi/distinfo (props changed) head/security/pam_fprint/distinfo (props changed) head/security/pam_google_authenticator/distinfo (props changed) head/security/pam_helper/distinfo (props changed) head/security/pam_jail/distinfo (props changed) head/security/pam_krb5/distinfo (props changed) head/security/pam_ldap/distinfo (props changed) head/security/pam_mkhomedir/distinfo (props changed) head/security/pam_p11/distinfo (props changed) head/security/pam_per_user/distinfo (props changed) head/security/pam_pgina/distinfo (props changed) head/security/pam_pseudo/distinfo (props changed) head/security/pam_pwdfile/distinfo (props changed) head/security/pam_require/distinfo (props changed) head/security/pam_search_list/distinfo (props changed) head/security/pam_smb/distinfo (props changed) head/security/pamtester/distinfo (props changed) head/security/parano/distinfo (props changed) head/security/pbnj/distinfo (props changed) head/security/pcsc-tools/distinfo (props changed) head/security/pear-Auth/distinfo (props changed) head/security/pear-Auth_HTTP/distinfo (props changed) head/security/pear-Auth_OpenID/distinfo (props changed) head/security/pear-Auth_SASL/distinfo (props changed) head/security/pear-Crypt_Blowfish/distinfo (props changed) head/security/pear-Crypt_CBC/distinfo (props changed) head/security/pear-Crypt_CHAP/distinfo (props changed) head/security/pear-Crypt_DiffieHellman/distinfo (props changed) head/security/pear-Crypt_GPG/distinfo (props changed) head/security/pear-Crypt_HMAC2/distinfo (props changed) head/security/pear-Crypt_MicroID/distinfo (props changed) head/security/pear-Crypt_RC4/distinfo (props changed) head/security/pear-Crypt_RSA/distinfo (props changed) head/security/pear-Crypt_XXTEA/distinfo (props changed) head/security/pear-File_HtAccess/distinfo (props changed) head/security/pear-File_Passwd/distinfo (props changed) head/security/pear-File_SMBPasswd/distinfo (props changed) head/security/pear-HTML_Crypt/distinfo (props changed) head/security/pear-Horde_Auth/distinfo (props changed) head/security/pear-Horde_Crypt/distinfo (props changed) head/security/pear-Horde_Crypt_Blowfish/distinfo (props changed) head/security/pear-Horde_Group/distinfo (props changed) head/security/pear-Horde_Oauth/distinfo (props changed) head/security/pear-Horde_Perms/distinfo (props changed) head/security/pear-Horde_Secret/distinfo (props changed) head/security/pear-Horde_Share/distinfo (props changed) head/security/pear-LiveUser/distinfo (props changed) head/security/pear-LiveUser_Admin/distinfo (props changed) head/security/pear-Net_Portscan/distinfo (props changed) head/security/pear-Text_Password/distinfo (props changed) head/security/pecl-crack/distinfo (props changed) head/security/pecl-pam/distinfo (props changed) head/security/pecl-tcpwrap/distinfo (props changed) head/security/pft/distinfo (props changed) head/security/pgp/distinfo (props changed) head/security/pgpdump/distinfo (props changed) head/security/pgpgpg/distinfo (props changed) head/security/pgpin/distinfo (props changed) head/security/php-Auth_OpenID/distinfo (props changed) head/security/php-Auth_OpenID2/distinfo (props changed) head/security/php-openid-ldap/distinfo (props changed) head/security/php-suhosin/distinfo (props changed) head/security/phpdeadlock/distinfo (props changed) head/security/phpsecinfo/distinfo (props changed) head/security/pidentd/distinfo (props changed) head/security/pidgin-encryption/distinfo (props changed) head/security/pidgin-otr/distinfo (props changed) head/security/pkcrack/distinfo (props changed) head/security/pkcs11-dump/distinfo (props changed) head/security/pkcs11-gateway/distinfo (props changed) head/security/pkcs11-helper/distinfo (props changed) head/security/pks/distinfo (props changed) head/security/pktsuckers/distinfo (props changed) head/security/poly1305aes/distinfo (props changed) head/security/pond/distinfo (props changed) head/security/portsentry/distinfo (props changed) head/security/ppars/distinfo (props changed) head/security/prelude-lml/distinfo (props changed) head/security/prelude-manager/distinfo (props changed) head/security/prelude-pflogger/distinfo (props changed) head/security/proxycheck/distinfo (props changed) head/security/proxytunnel/distinfo (props changed) head/security/pscan/distinfo (props changed) head/security/pssh/distinfo (props changed) head/security/pulledpork/distinfo (props changed) head/security/pure-sfv/distinfo (props changed) head/security/pvk/distinfo (props changed) head/security/pwauth/distinfo (props changed) head/security/pwman/distinfo (props changed) head/security/pwman3/distinfo (props changed) head/security/pxytest/distinfo (props changed) head/security/py-PF/distinfo (props changed) head/security/py-Products.PluggableAuthService/distinfo (props changed) head/security/py-RestrictedPython/distinfo (props changed) head/security/py-borg.localrole/distinfo (props changed) head/security/py-cerealizer/distinfo (props changed) head/security/py-certify/distinfo (props changed) head/security/py-clamav/distinfo (props changed) head/security/py-cryptkit/distinfo (props changed) head/security/py-ecdsa/distinfo (props changed) head/security/py-ed25519ll/distinfo (props changed) head/security/py-gnupg/distinfo (props changed) head/security/py-gnutls/distinfo (props changed) head/security/py-htpasswd/distinfo (props changed) head/security/py-kerberos/distinfo (props changed) head/security/py-keyczar/distinfo (props changed) head/security/py-mcrypt/distinfo (props changed) head/security/py-mhash/distinfo (props changed) head/security/py-openid/distinfo (props changed) head/security/py-openssl/distinfo (props changed) head/security/py-otr/distinfo (props changed) head/security/py-passlib/distinfo (props changed) head/security/py-plone.app.openid/distinfo (props changed) head/security/py-plone.keyring/distinfo (props changed) head/security/py-plone.openid/distinfo (props changed) head/security/py-plone.protect/distinfo (props changed) head/security/py-plone.session/distinfo (props changed) head/security/py-posix1e/distinfo (props changed) head/security/py-potr/distinfo (props changed) head/security/py-pow/distinfo (props changed) head/security/py-pyclamd/distinfo (props changed) head/security/py-pycrypto/distinfo (props changed) head/security/py-pycryptopp/distinfo (props changed) head/security/py-pylibacl/distinfo (props changed) head/security/py-pyme/distinfo (props changed) head/security/py-pyptlib/distinfo (props changed) head/security/py-python-registry/distinfo (props changed) head/security/py-slowaes/distinfo (props changed) head/security/py-ssh/distinfo (props changed) head/security/py-sslstrip/distinfo (props changed) head/security/py-stem/distinfo (props changed) head/security/py-tlslite/distinfo (props changed) head/security/py-trustedpickle/distinfo (props changed) head/security/py-twofish/distinfo (props changed) head/security/py-volatility/distinfo (props changed) head/security/py-xmlsec/distinfo (props changed) head/security/py-yara-editor/distinfo (props changed) head/security/py-zope.app.authentication/distinfo (props changed) head/security/py-zope.app.localpermission/distinfo (props changed) head/security/py-zope.app.principalannotation/distinfo (props changed) head/security/py-zope.app.security/distinfo (props changed) head/security/py-zope.app.securitypolicy/distinfo (props changed) head/security/py-zope.authentication/distinfo (props changed) head/security/py-zope.login/distinfo (props changed) head/security/py-zope.password/distinfo (props changed) head/security/py-zope.pluggableauth/distinfo (props changed) head/security/py-zope.principalannotation/distinfo (props changed) head/security/py-zope.principalregistry/distinfo (props changed) head/security/py-zope.security/distinfo (props changed) head/security/py-zope.securitypolicy/distinfo (props changed) head/security/py-zope.session/distinfo (props changed) head/security/qca-cyrus-sasl/distinfo (props changed) head/security/qca-gnupg/distinfo (props changed) head/security/qca-ossl/distinfo (props changed) head/security/quantis-kmod/distinfo (props changed) head/security/quantis/distinfo (props changed) head/security/racoon2/distinfo (props changed) head/security/radiusniff/distinfo (props changed) head/security/rainbowcrack/distinfo (props changed) head/security/ranpwd/distinfo (props changed) head/security/ratproxy/distinfo (props changed) head/security/rats/distinfo (props changed) head/security/razorback-api/distinfo (props changed) head/security/razorback-archiveInflate/distinfo (props changed) head/security/razorback-clamavNugget/distinfo (props changed) head/security/razorback-dispatcher/distinfo (props changed) head/security/razorback-fileInject/distinfo (props changed) head/security/razorback-fsMonitor/distinfo (props changed) head/security/razorback-fsWalk/distinfo (props changed) head/security/razorback-masterNugget/distinfo (props changed) head/security/razorback-officeCat/distinfo (props changed) head/security/razorback-pdfFox/distinfo (props changed) head/security/razorback-scriptNugget/distinfo (props changed) head/security/razorback-swfScanner/distinfo (props changed) head/security/razorback-syslogNugget/distinfo (props changed) head/security/razorback-virusTotal/distinfo (props changed) head/security/razorback-yaraNugget/distinfo (props changed) head/security/regripper/distinfo (props changed) head/security/retranslator/distinfo (props changed) head/security/revealrk/distinfo (props changed) head/security/rifiuti2/distinfo (props changed) head/security/rkhunter/distinfo (props changed) head/security/ruby-camellia/distinfo (props changed) head/security/ruby-crypt/distinfo (props changed) head/security/ruby-gpgme/distinfo (props changed) head/security/ruby-hmac/distinfo (props changed) head/security/ruby-password/distinfo (props changed) head/security/ruby-tcpwrap/distinfo (props changed) head/security/rubygem-ezcrypto/distinfo (props changed) head/security/rubygem-gpgr/distinfo (props changed) head/security/rubygem-hmac/distinfo (props changed) head/security/rubygem-jugyo-twitter_oauth/distinfo (props changed) head/security/rubygem-net-ssh-multi/distinfo (props changed) head/security/rubygem-omniauth/distinfo (props changed) head/security/rubygem-pyu-ruby-sasl/distinfo (props changed) head/security/rubygem-razorback-scriptNugget/distinfo (props changed) head/security/rubygem-rc4/distinfo (props changed) head/security/rubygem-roauth/distinfo (props changed) head/security/rubygem-ruby-hmac/distinfo (props changed) head/security/rubygem-six/distinfo (props changed) head/security/saint/distinfo (props changed) head/security/samba-virusfilter/distinfo (props changed) head/security/samhain/distinfo (props changed) head/security/sancp/distinfo (props changed) head/security/sasp/distinfo (props changed) head/security/scamp/distinfo (props changed) head/security/scanhill/distinfo (props changed) head/security/scanlogd/distinfo (props changed) head/security/scannedonly/distinfo (props changed) head/security/scanssh/distinfo (props changed) head/security/scrypt/distinfo (props changed) head/security/seahorse-plugins/distinfo (props changed) head/security/seahorse/distinfo (props changed) head/security/seccure/distinfo (props changed) head/security/secpanel/distinfo (props changed) head/security/sectok/distinfo (props changed) head/security/secure_delete/distinfo (props changed) head/security/sha/distinfo (props changed) head/security/shibboleth2-sp/distinfo (props changed) head/security/shimmer/distinfo (props changed) head/security/shishi/distinfo (props changed) head/security/shttpscanner/distinfo (props changed) head/security/sig2dot/distinfo (props changed) head/security/signing-party/distinfo (props changed) head/security/silktools/distinfo (props changed) head/security/sks/distinfo (props changed) head/security/slurpie/distinfo (props changed) head/security/slush/distinfo (props changed) head/security/smap/distinfo (props changed) head/security/smtpscan/distinfo (props changed) head/security/smurflog/distinfo (props changed) head/security/sniff/distinfo (props changed) head/security/snort-rep/distinfo (props changed) head/security/snortreport/distinfo (props changed) head/security/snortsam/distinfo (props changed) head/security/snortsnarf/distinfo (props changed) head/security/softhsm/distinfo (props changed) head/security/spass/distinfo (props changed) head/security/spike-proxy/distinfo (props changed) head/security/spybye/distinfo (props changed) head/security/sqlmap/distinfo (props changed) head/security/sqlninja/distinfo (props changed) head/security/srp/distinfo (props changed) head/security/ssdeep/distinfo (props changed) head/security/ssh-gui/distinfo (props changed) head/security/ssh-multiadd/distinfo (props changed) head/security/ssh_askpass_gtk2/distinfo (props changed) head/security/sshblock/distinfo (props changed) head/security/sshguard/distinfo (props changed) head/security/sshit/distinfo (props changed) head/security/sshpass/distinfo (props changed) head/security/sslscan/distinfo (props changed) head/security/sslsniffer/distinfo (props changed) head/security/sslwrap/distinfo (props changed) head/security/sssd/distinfo (props changed) head/security/ssss/distinfo (props changed) head/security/sst/distinfo (props changed) head/security/starttls/distinfo (props changed) head/security/stegdetect/distinfo (props changed) head/security/steghide/distinfo (props changed) head/security/strobe/distinfo (props changed) head/security/strongswan/distinfo (props changed) head/security/stunnel/distinfo (props changed) head/security/subweb/distinfo (props changed) head/security/sud/distinfo (props changed) head/security/sudoscript/distinfo (props changed) head/security/sudosh/distinfo (props changed) head/security/sudosh2/distinfo (props changed) head/security/sudosh3/distinfo (props changed) head/security/super/distinfo (props changed) head/security/swatch/distinfo (props changed) head/security/switzerland/distinfo (props changed) head/security/symbion-sslproxy/distinfo (props changed) head/security/tclsasl/distinfo (props changed) head/security/termlog/distinfo (props changed) head/security/tinc/distinfo (props changed) head/security/tinyca/distinfo (props changed) head/security/tinysu/distinfo (props changed) head/security/tlswrap/distinfo (props changed) head/security/tpm-tools/distinfo (props changed) head/security/tpmmanager/distinfo (props changed) head/security/trinokiller/distinfo (props changed) head/security/tripwire-131/distinfo (props changed) head/security/tripwire/distinfo (props changed) head/security/tripwire12/distinfo (props changed) head/security/trousers/distinfo (props changed) head/security/truecrack/distinfo (props changed) head/security/truecrypt/distinfo (props changed) head/security/tsshbatch/distinfo (props changed) head/security/tthsum/distinfo (props changed) head/security/tuntun/distinfo (props changed) head/security/umit/distinfo (props changed) head/security/unicornscan/distinfo (props changed) head/security/unssh/distinfo (props changed) head/security/vida/distinfo (props changed) head/security/vinetto/distinfo (props changed) head/security/vlock/distinfo (props changed) head/security/vlog/distinfo (props changed) head/security/vnccrack/distinfo (props changed) head/security/vpnc/distinfo (props changed) head/security/vuxml/distinfo (props changed) head/security/vxquery/distinfo (props changed) head/security/w3af/distinfo (props changed) head/security/wapiti/distinfo (props changed) head/security/webfwlog/distinfo (props changed) head/security/webscarab/distinfo (props changed) head/security/whatweb/distinfo (props changed) head/security/wipe/distinfo (props changed) head/security/xca/distinfo (props changed) head/security/xinetd/distinfo (props changed) head/security/xml-security/distinfo (props changed) head/security/xmlsec1/distinfo (props changed) head/security/xorsearch/distinfo (props changed) head/security/xspy/distinfo (props changed) head/security/xyssl/distinfo (props changed) head/security/yafic/distinfo (props changed) head/security/yapet/distinfo (props changed) head/security/yassl/distinfo (props changed) head/security/yersinia/distinfo (props changed) head/security/zebedee/distinfo (props changed) head/security/zombiezapper/distinfo (props changed) head/security/zxid/distinfo (props changed) head/security/zzuf/distinfo (props changed) head/shells/44bsd-csh/distinfo (props changed) head/shells/ambit/distinfo (props changed) head/shells/bash-completion/distinfo (props changed) head/shells/bash-devel/distinfo (props changed) head/shells/bashc/distinfo (props changed) head/shells/ch/distinfo (props changed) head/shells/dash/distinfo (props changed) head/shells/es/distinfo (props changed) head/shells/esh/distinfo (props changed) head/shells/fd/distinfo (props changed) head/shells/flash/distinfo (props changed) head/shells/heirloom-sh/distinfo (props changed) head/shells/ibsh/distinfo (props changed) head/shells/jailkit/distinfo (props changed) head/shells/lshell/distinfo (props changed) head/shells/p5-Bash-Completion/distinfo (props changed) head/shells/p5-Shell-Perl/distinfo (props changed) head/shells/p5-Term-ShellUI/distinfo (props changed) head/shells/pdksh/distinfo (props changed) head/shells/pear-PHP_Shell/distinfo (props changed) head/shells/psh/distinfo (props changed) head/shells/rc/distinfo (props changed) head/shells/rssh/distinfo (props changed) head/shells/sash/distinfo (props changed) head/shells/scponly/distinfo (props changed) head/shells/shell-include/distinfo (props changed) head/shells/tcshrc/distinfo (props changed) head/shells/v7sh/distinfo (props changed) head/shells/viewglob/distinfo (props changed) head/shells/vshnu/distinfo (props changed) head/shells/wapsh/distinfo (props changed) head/shells/zoidberg/distinfo (props changed) head/shells/zsh/distinfo (props changed) head/sysutils/3dm/distinfo (props changed) head/sysutils/44bsd-more/distinfo (props changed) head/sysutils/915resolution/distinfo (props changed) head/sysutils/DTraceToolkit/distinfo (props changed) head/sysutils/LPRng/distinfo (props changed) head/sysutils/LPRngTool/distinfo (props changed) head/sysutils/abck/distinfo (props changed) head/sysutils/abgx360/distinfo (props changed) head/sysutils/abgx360gui/distinfo (props changed) head/sysutils/acpi_call/distinfo (props changed) head/sysutils/adtool/distinfo (props changed) head/sysutils/afbinit/distinfo (props changed) head/sysutils/afflib/distinfo (props changed) head/sysutils/afio/distinfo (props changed) head/sysutils/ah-tty/distinfo (props changed) head/sysutils/aimage/distinfo (props changed) head/sysutils/aird/distinfo (props changed) head/sysutils/am-utils/distinfo (props changed) head/sysutils/amrstat/distinfo (props changed) head/sysutils/anacron/distinfo (props changed) head/sysutils/and/distinfo (props changed) head/sysutils/anteater/distinfo (props changed) head/sysutils/apachetop/distinfo (props changed) head/sysutils/apcpwr/distinfo (props changed) head/sysutils/apcupsd/distinfo (props changed) head/sysutils/apt/distinfo (props changed) head/sysutils/arcconf/distinfo (props changed) head/sysutils/archivemount/distinfo (props changed) head/sysutils/areca-cli/distinfo (props changed) head/sysutils/asapm/distinfo (props changed) head/sysutils/ascpu/distinfo (props changed) head/sysutils/asfsm/distinfo (props changed) head/sysutils/asmem/distinfo (props changed) head/sysutils/asmon/distinfo (props changed) head/sysutils/asr-utils/distinfo (props changed) head/sysutils/asusoled/distinfo (props changed) head/sysutils/ataidle/distinfo (props changed) head/sysutils/atitvout/distinfo (props changed) head/sysutils/autojump/distinfo (props changed) head/sysutils/automount/distinfo (props changed) head/sysutils/autopsy/distinfo (props changed) head/sysutils/b43-fwcutter/distinfo (props changed) head/sysutils/backupme/distinfo (props changed) head/sysutils/bacula-server/distinfo (props changed) head/sysutils/bashburn/distinfo (props changed) head/sysutils/batmon/distinfo (props changed) head/sysutils/battfink/distinfo (props changed) head/sysutils/battmond/distinfo (props changed) head/sysutils/battray/distinfo (props changed) head/sysutils/bbapm/distinfo (props changed) head/sysutils/bbcp/distinfo (props changed) head/sysutils/bchunk/distinfo (props changed) head/sysutils/be_agent/distinfo (props changed) head/sysutils/beadm-devel/distinfo (props changed) head/sysutils/beadm/distinfo (props changed) head/sysutils/bkpupsd/distinfo (props changed) head/sysutils/bksh/distinfo (props changed) head/sysutils/blimitd/distinfo (props changed) head/sysutils/bontmia/distinfo (props changed) head/sysutils/boxbackup-devel/distinfo (props changed) head/sysutils/boxbackup/distinfo (props changed) head/sysutils/brasero/distinfo (props changed) head/sysutils/bsdadminscripts/distinfo (props changed) head/sysutils/bsdcrashtar/distinfo (props changed) head/sysutils/bsdhwmon/distinfo (props changed) head/sysutils/bsdinfo/distinfo (props changed) head/sysutils/bsdmoted/distinfo (props changed) head/sysutils/bubblemon-dockapp/distinfo (props changed) head/sysutils/bubblemon2/distinfo (props changed) head/sysutils/byobu/distinfo (props changed) head/sysutils/ccd2iso/distinfo (props changed) head/sysutils/cciss_vol_status/distinfo (props changed) head/sysutils/ccze/distinfo (props changed) head/sysutils/cdargs/distinfo (props changed) head/sysutils/cdbkup/distinfo (props changed) head/sysutils/cdeploy/distinfo (props changed) head/sysutils/cdf/distinfo (props changed) head/sysutils/cdircmp/distinfo (props changed) head/sysutils/cdls/distinfo (props changed) head/sysutils/cdrdao/distinfo (props changed) head/sysutils/cdrkit/distinfo (props changed) head/sysutils/cdroot/distinfo (props changed) head/sysutils/cdrtools-devel/distinfo (props changed) head/sysutils/cdrtools/distinfo (props changed) head/sysutils/cfengine22/distinfo (props changed) head/sysutils/cfengine32/distinfo (props changed) head/sysutils/cfengine33/distinfo (props changed) head/sysutils/chgrep/distinfo (props changed) head/sysutils/ciso/distinfo (props changed) head/sysutils/ck4up/distinfo (props changed) head/sysutils/ckl/distinfo (props changed) head/sysutils/clean/distinfo (props changed) head/sysutils/clockspeed-conf/distinfo (props changed) head/sysutils/clockspeed/distinfo (props changed) head/sysutils/clone/distinfo (props changed) head/sysutils/clonehdd/distinfo (props changed) head/sysutils/cloop-utils/distinfo (props changed) head/sysutils/cmdwatch/distinfo (props changed) head/sysutils/cmospwd/distinfo (props changed) head/sysutils/cog/distinfo (props changed) head/sysutils/colorize/distinfo (props changed) head/sysutils/comiccron/distinfo (props changed) head/sysutils/condor/distinfo (props changed) head/sysutils/confctl/distinfo (props changed) head/sysutils/confman/distinfo (props changed) head/sysutils/conky/distinfo (props changed) head/sysutils/consolehm/distinfo (props changed) head/sysutils/consolekit/distinfo (props changed) head/sysutils/contool/distinfo (props changed) head/sysutils/copytape/distinfo (props changed) head/sysutils/coreutils/distinfo (props changed) head/sysutils/cotty/distinfo (props changed) head/sysutils/cpdup/distinfo (props changed) head/sysutils/cpu/distinfo (props changed) head/sysutils/cpuburn/distinfo (props changed) head/sysutils/cpulimit/distinfo (props changed) head/sysutils/cpupowerd/distinfo (props changed) head/sysutils/cramfs/distinfo (props changed) head/sysutils/crashme/distinfo (props changed) head/sysutils/createrepo/distinfo (props changed) head/sysutils/cromwell/distinfo (props changed) head/sysutils/cronolog-devel/distinfo (props changed) head/sysutils/cronolog/distinfo (props changed) head/sysutils/curly/distinfo (props changed) head/sysutils/cvsweb-converters/distinfo (props changed) head/sysutils/cw/distinfo (props changed) head/sysutils/daa2iso/distinfo (props changed) head/sysutils/daedalus/distinfo (props changed) head/sysutils/daemontools/distinfo (props changed) head/sysutils/dar/distinfo (props changed) head/sysutils/dc3dd/distinfo (props changed) head/sysutils/dcfldd/distinfo (props changed) head/sysutils/ddpt/distinfo (props changed) head/sysutils/debhelper/distinfo (props changed) head/sysutils/debootstrap/distinfo (props changed) head/sysutils/decomment/distinfo (props changed) head/sysutils/deltup/distinfo (props changed) head/sysutils/detach/distinfo (props changed) head/sysutils/detox/distinfo (props changed) head/sysutils/devcpu-data/distinfo (props changed) head/sysutils/devstat/distinfo (props changed) head/sysutils/dfc/distinfo (props changed) head/sysutils/dim/distinfo (props changed) head/sysutils/dirdiff/distinfo (props changed) head/sysutils/dirvish/distinfo (props changed) head/sysutils/diskimage-tools/distinfo (props changed) head/sysutils/disktool/distinfo (props changed) head/sysutils/disktype/distinfo (props changed) head/sysutils/djmount/distinfo (props changed) head/sysutils/dmg2img/distinfo (props changed) head/sysutils/dmidecode/distinfo (props changed) head/sysutils/doinkd/distinfo (props changed) head/sysutils/dolly/distinfo (props changed) head/sysutils/downtime/distinfo (props changed) head/sysutils/downtimed/distinfo (props changed) head/sysutils/dt/distinfo (props changed) head/sysutils/dtc/distinfo (props changed) head/sysutils/dtpstree/distinfo (props changed) head/sysutils/du2ps/distinfo (props changed) head/sysutils/duff/distinfo (props changed) head/sysutils/dupmerge/distinfo (props changed) head/sysutils/dvd+rw-tools/distinfo (props changed) head/sysutils/dvdbackup/distinfo (props changed) head/sysutils/dvdimagecmp/distinfo (props changed) head/sysutils/dvtm/distinfo (props changed) head/sysutils/dwatch/distinfo (props changed) head/sysutils/ec2-scripts/distinfo (props changed) head/sysutils/edid-decode/distinfo (props changed) head/sysutils/eiciel/distinfo (props changed) head/sysutils/eject/distinfo (props changed) head/sysutils/endian/distinfo (props changed) head/sysutils/enteruser/distinfo (props changed) head/sysutils/env4801/distinfo (props changed) head/sysutils/epylog/distinfo (props changed) head/sysutils/eroaster/distinfo (props changed) head/sysutils/eventlog/distinfo (props changed) head/sysutils/evtviewer/distinfo (props changed) head/sysutils/exfat-utils/distinfo (props changed) head/sysutils/extipl/distinfo (props changed) head/sysutils/ezjail/distinfo (props changed) head/sysutils/fanout/distinfo (props changed) head/sysutils/farbot/distinfo (props changed) head/sysutils/fastest_cvsup/distinfo (props changed) head/sysutils/fatback/distinfo (props changed) head/sysutils/fconfig/distinfo (props changed) head/sysutils/fcron/distinfo (props changed) head/sysutils/fdupes/distinfo (props changed) head/sysutils/feather/distinfo (props changed) head/sysutils/fetchlog/distinfo (props changed) head/sysutils/ffs2recov/distinfo (props changed) head/sysutils/filedupe/distinfo (props changed) head/sysutils/fileprune/distinfo (props changed) head/sysutils/fileschanged/distinfo (props changed) head/sysutils/filetype/distinfo (props changed) head/sysutils/filewatcherd/distinfo (props changed) head/sysutils/finfo/distinfo (props changed) head/sysutils/flasher/distinfo (props changed) head/sysutils/flashrom/distinfo (props changed) head/sysutils/flexbackup/distinfo (props changed) head/sysutils/flock/distinfo (props changed) head/sysutils/flog/distinfo (props changed) head/sysutils/flyback/distinfo (props changed) head/sysutils/fonteditfs/distinfo (props changed) head/sysutils/foremost/distinfo (props changed) head/sysutils/fortunelock/distinfo (props changed) head/sysutils/fpkg/distinfo (props changed) head/sysutils/freebsd-snapshot/distinfo (props changed) head/sysutils/freecolor/distinfo (props changed) head/sysutils/freedt/distinfo (props changed) head/sysutils/freesbie/distinfo (props changed) head/sysutils/freqsdwn/distinfo (props changed) head/sysutils/froxlor/distinfo (props changed) head/sysutils/fsbackup/distinfo (props changed) head/sysutils/fsc/distinfo (props changed) head/sysutils/fstyp/distinfo (props changed) head/sysutils/fusefs-afuse/distinfo (props changed) head/sysutils/fusefs-chironfs/distinfo (props changed) head/sysutils/fusefs-cryptofs/distinfo (props changed) head/sysutils/fusefs-curlftpfs/distinfo (props changed) head/sysutils/fusefs-encfs/distinfo (props changed) head/sysutils/fusefs-exfat/distinfo (props changed) head/sysutils/fusefs-ext4fuse/distinfo (props changed) head/sysutils/fusefs-funionfs/distinfo (props changed) head/sysutils/fusefs-fur/distinfo (props changed) head/sysutils/fusefs-fusepak/distinfo (props changed) head/sysutils/fusefs-gnome-vfs/distinfo (props changed) head/sysutils/fusefs-gstfs/distinfo (props changed) head/sysutils/fusefs-gunzip/distinfo (props changed) head/sysutils/fusefs-kmod/distinfo (props changed) head/sysutils/fusefs-mhddfs/distinfo (props changed) head/sysutils/fusefs-ntfs/distinfo (props changed) head/sysutils/fusefs-pod/distinfo (props changed) head/sysutils/fusefs-rar2fs/distinfo (props changed) head/sysutils/fusefs-sqlfs/distinfo (props changed) head/sysutils/fusefs-sshfs/distinfo (props changed) head/sysutils/fusefs-unionfs/distinfo (props changed) head/sysutils/fusefs-wdfs/distinfo (props changed) head/sysutils/fusefs-wikipediafs/distinfo (props changed) head/sysutils/fvcool/distinfo (props changed) head/sysutils/gaffitter/distinfo (props changed) head/sysutils/gai-leds/distinfo (props changed) head/sysutils/ganglia-monitor-core/distinfo (props changed) head/sysutils/ganglia-webfrontend/distinfo (props changed) head/sysutils/gapcmon/distinfo (props changed) head/sysutils/gather/distinfo (props changed) head/sysutils/gcombust/distinfo (props changed) head/sysutils/gconf-editor/distinfo (props changed) head/sysutils/gdisk/distinfo (props changed) head/sysutils/gdmap/distinfo (props changed) head/sysutils/geomWatch/distinfo (props changed) head/sysutils/getdelta/distinfo (props changed) head/sysutils/geteltorito/distinfo (props changed) head/sysutils/gkfreq/distinfo (props changed) head/sysutils/gkleds2/distinfo (props changed) head/sysutils/gkrellfire/distinfo (props changed) head/sysutils/gkrellflynn/distinfo (props changed) head/sysutils/gkrellm-trayicons/distinfo (props changed) head/sysutils/gkrellm/distinfo (props changed) head/sysutils/gkrellm2/distinfo (props changed) head/sysutils/gkrellmwho2/distinfo (props changed) head/sysutils/gksu/distinfo (props changed) head/sysutils/gnome-control-center/distinfo (props changed) head/sysutils/gnome-device-manager/distinfo (props changed) head/sysutils/gnome-mount/distinfo (props changed) head/sysutils/gnome-pkgview/distinfo (props changed) head/sysutils/gnome-power-manager/distinfo (props changed) head/sysutils/gnome-schedule/distinfo (props changed) head/sysutils/gnome-settings-daemon/distinfo (props changed) head/sysutils/gnome-system-monitor/distinfo (props changed) head/sysutils/gnome-system-tools/distinfo (props changed) head/sysutils/gnomebaker/distinfo (props changed) head/sysutils/goaccess/distinfo (props changed) head/sysutils/gosa/distinfo (props changed) head/sysutils/gpart/distinfo (props changed) head/sysutils/gpkgdep/distinfo (props changed) head/sysutils/gpte/distinfo (props changed) head/sysutils/graid5/distinfo (props changed) head/sysutils/graphicboot/distinfo (props changed) head/sysutils/graveman/distinfo (props changed) head/sysutils/grok/distinfo (props changed) head/sysutils/gsmartcontrol/distinfo (props changed) head/sysutils/gstopd/distinfo (props changed) head/sysutils/gtk-imonc/distinfo (props changed) head/sysutils/gtk-send-pr/distinfo (props changed) head/sysutils/hachoir-metadata/distinfo (props changed) head/sysutils/hachoir-subfile/distinfo (props changed) head/sysutils/hachoir-urwid/distinfo (props changed) head/sysutils/hachoir-wx/distinfo (props changed) head/sysutils/hal-info/distinfo (props changed) head/sysutils/hal/distinfo (props changed) head/sysutils/hardlink/distinfo (props changed) head/sysutils/hatop/distinfo (props changed) head/sysutils/hdrecover/distinfo (props changed) head/sysutils/hdup/distinfo (props changed) head/sysutils/healthd/distinfo (props changed) head/sysutils/heartbeat/distinfo (props changed) head/sysutils/heirloom/distinfo (props changed) head/sysutils/hextools/distinfo (props changed) head/sysutils/hfsexplorer/distinfo (props changed) head/sysutils/hfsutils/distinfo (props changed) head/sysutils/hidesvn/distinfo (props changed) head/sysutils/highlnk/distinfo (props changed) head/sysutils/hilite/distinfo (props changed) head/sysutils/host-setup/distinfo (props changed) head/sysutils/hourglass/distinfo (props changed) head/sysutils/hoz/distinfo (props changed) head/sysutils/hpacucli/distinfo (props changed) head/sysutils/hploscripts/distinfo (props changed) head/sysutils/hs-angel/distinfo (props changed) head/sysutils/hs-cpu/distinfo (props changed) head/sysutils/httplog/distinfo (props changed) head/sysutils/hwstat/distinfo (props changed) head/sysutils/hyperic-sigar/distinfo (props changed) head/sysutils/i2c-tools/distinfo (props changed) head/sysutils/i7z/distinfo (props changed) head/sysutils/iat/distinfo (props changed) head/sysutils/installwatch/distinfo (props changed) head/sysutils/iogen/distinfo (props changed) head/sysutils/iograph/distinfo (props changed) head/sysutils/ipa/distinfo (props changed) head/sysutils/ipmitool/distinfo (props changed) head/sysutils/ipsc/distinfo (props changed) head/sysutils/isc-cron/distinfo (props changed) head/sysutils/ispman/distinfo (props changed) head/sysutils/istatd/distinfo (props changed) head/sysutils/jailadmin/distinfo (props changed) head/sysutils/jailctl/distinfo (props changed) head/sysutils/jaildaemon/distinfo (props changed) head/sysutils/jailer/distinfo (props changed) head/sysutils/jailme/distinfo (props changed) head/sysutils/jailuser/distinfo (props changed) head/sysutils/jailutils/distinfo (props changed) head/sysutils/javaservicewrapper/distinfo (props changed) head/sysutils/jfbterm/distinfo (props changed) head/sysutils/jkill/distinfo (props changed) head/sysutils/jps/distinfo (props changed) head/sysutils/jtop/distinfo (props changed) head/sysutils/jtopen/distinfo (props changed) head/sysutils/jvmtop/distinfo (props changed) head/sysutils/jx/distinfo (props changed) head/sysutils/k3b-kde4/distinfo (props changed) head/sysutils/k8temp/distinfo (props changed) head/sysutils/keyboard-daemon/distinfo (props changed) head/sysutils/kiconvtool/distinfo (props changed) head/sysutils/kldfind/distinfo (props changed) head/sysutils/kldpatch/distinfo (props changed) head/sysutils/knutclient-kde4/distinfo (props changed) head/sysutils/krename-kde4/distinfo (props changed) head/sysutils/lbl-cf/distinfo (props changed) head/sysutils/lbl-hf/distinfo (props changed) head/sysutils/ldapenter/distinfo (props changed) head/sysutils/ldapvi/distinfo (props changed) head/sysutils/ledit/distinfo (props changed) head/sysutils/lfm/distinfo (props changed) head/sysutils/libcdio/distinfo (props changed) head/sysutils/libchk/distinfo (props changed) head/sysutils/libgksu/distinfo (props changed) head/sysutils/libieee1284/distinfo (props changed) head/sysutils/libretto-config/distinfo (props changed) head/sysutils/libsunacl/distinfo (props changed) head/sysutils/libutempter/distinfo (props changed) head/sysutils/lineak-defaultplugin/distinfo (props changed) head/sysutils/lineak-xosdplugin/distinfo (props changed) head/sysutils/lineakd/distinfo (props changed) head/sysutils/linux-afaapps/distinfo.i386 (props changed) head/sysutils/linux-nero/distinfo.i386 (props changed) head/sysutils/linuxfdisk/distinfo (props changed) head/sysutils/lire/distinfo (props changed) head/sysutils/livecd/distinfo (props changed) head/sysutils/lmmon/distinfo (props changed) head/sysutils/lmon/distinfo (props changed) head/sysutils/log_analysis/distinfo (props changed) head/sysutils/logmon/distinfo (props changed) head/sysutils/logstalgia/distinfo (props changed) head/sysutils/logtool/distinfo (props changed) head/sysutils/logwatch/distinfo (props changed) head/sysutils/lookupd/distinfo (props changed) head/sysutils/lookupd_ldap/distinfo (props changed) head/sysutils/luckybackup/distinfo (props changed) head/sysutils/lxinput/distinfo (props changed) head/sysutils/lxsplit/distinfo (props changed) head/sysutils/lxtask/distinfo (props changed) head/sysutils/lxterminal/distinfo (props changed) head/sysutils/magicrescue/distinfo (props changed) head/sysutils/manck/distinfo (props changed) head/sysutils/mapchan/distinfo (props changed) head/sysutils/massadmin/distinfo (props changed) head/sysutils/mate-control-center/distinfo (props changed) head/sysutils/mate-power-manager/distinfo (props changed) head/sysutils/mate-settings-daemon/distinfo (props changed) head/sysutils/mate-system-monitor/distinfo (props changed) head/sysutils/mbmon/distinfo (props changed) head/sysutils/mcelog/distinfo (props changed) head/sysutils/mcron/distinfo (props changed) head/sysutils/mcweject/distinfo (props changed) head/sysutils/mdcp/distinfo (props changed) head/sysutils/mdf2iso/distinfo (props changed) head/sysutils/megarc/distinfo (props changed) head/sysutils/memdump/distinfo (props changed) head/sysutils/memfetch/distinfo (props changed) head/sysutils/memtest/distinfo (props changed) head/sysutils/memtest86+/distinfo (props changed) head/sysutils/memtest86/distinfo (props changed) head/sysutils/mfid/distinfo (props changed) head/sysutils/mgeupsd/distinfo (props changed) head/sysutils/minirsyslogd/distinfo (props changed) head/sysutils/mkfile/distinfo (props changed) head/sysutils/mkfwimage/distinfo (props changed) head/sysutils/mkntpwd/distinfo (props changed) head/sysutils/mksunbootcd/distinfo (props changed) head/sysutils/mmore/distinfo (props changed) head/sysutils/modules/distinfo (props changed) head/sysutils/monitord/distinfo (props changed) head/sysutils/monitorix/distinfo (props changed) head/sysutils/monkeytail/distinfo (props changed) head/sysutils/mono-kmod/distinfo (props changed) head/sysutils/most/distinfo (props changed) head/sysutils/mount.app/distinfo (props changed) head/sysutils/mountsmb2/distinfo (props changed) head/sysutils/mpiexec/distinfo (props changed) head/sysutils/mptd/distinfo (props changed) head/sysutils/msyslog/distinfo (props changed) head/sysutils/mtxorbd/distinfo (props changed) head/sysutils/multitail/distinfo (props changed) head/sysutils/muse/distinfo (props changed) head/sysutils/mybashburn/distinfo (props changed) head/sysutils/nagios-statd/distinfo (props changed) head/sysutils/namefix/distinfo (props changed) head/sysutils/nautilus-cd-burner/distinfo (props changed) head/sysutils/nbosd/distinfo (props changed) head/sysutils/netident/distinfo (props changed) head/sysutils/news/distinfo (props changed) head/sysutils/nitrogen/distinfo (props changed) head/sysutils/no-login/distinfo (props changed) head/sysutils/npadmin/distinfo (props changed) head/sysutils/nrg2iso/distinfo (props changed) head/sysutils/ntfsprogs/distinfo (props changed) head/sysutils/nut/distinfo (props changed) head/sysutils/nut22/distinfo (props changed) head/sysutils/nvclock/distinfo (props changed) head/sysutils/nvramtool/distinfo (props changed) head/sysutils/nvtv/distinfo (props changed) head/sysutils/oak/distinfo (props changed) head/sysutils/obliterate/distinfo (props changed) head/sysutils/ods2/distinfo (props changed) head/sysutils/open/distinfo (props changed) head/sysutils/openipmi/distinfo (props changed) head/sysutils/openupsd/distinfo (props changed) head/sysutils/ori/distinfo (props changed) head/sysutils/p5-BSD-Jail-Object/distinfo (props changed) head/sysutils/p5-BSD-Process/distinfo (props changed) head/sysutils/p5-BSD-Sysctl/distinfo (props changed) head/sysutils/p5-BackupPC-XS/distinfo (props changed) head/sysutils/p5-Brackup/distinfo (props changed) head/sysutils/p5-Dir-Purge/distinfo (props changed) head/sysutils/p5-File-DirCompare/distinfo (props changed) head/sysutils/p5-File-Listing/distinfo (props changed) head/sysutils/p5-File-Log/distinfo (props changed) head/sysutils/p5-File-Next/distinfo (props changed) head/sysutils/p5-File-Signature/distinfo (props changed) head/sysutils/p5-File-Stat-Bits/distinfo (props changed) head/sysutils/p5-File-Stat-ModeString/distinfo (props changed) head/sysutils/p5-File-Tee/distinfo (props changed) head/sysutils/p5-File-Which/distinfo (props changed) head/sysutils/p5-Filesys-Df/distinfo (props changed) head/sysutils/p5-Filesys-DfPortable/distinfo (props changed) head/sysutils/p5-Filesys-DiskFree/distinfo (props changed) head/sysutils/p5-Filesys-DiskSpace/distinfo (props changed) head/sysutils/p5-Filesys-DiskUsage/distinfo (props changed) head/sysutils/p5-Filesys-Statvfs/distinfo (props changed) head/sysutils/p5-Fuse-Simple/distinfo (props changed) head/sysutils/p5-Iterator-File/distinfo (props changed) head/sysutils/p5-Lchown/distinfo (props changed) head/sysutils/p5-MogileFS-Client/distinfo (props changed) head/sysutils/p5-MogileFS-Utils/distinfo (props changed) head/sysutils/p5-Plugtools-Plugins-HomeOU/distinfo (props changed) head/sysutils/p5-Plugtools/distinfo (props changed) head/sysutils/p5-Proc-PidUtil/distinfo (props changed) head/sysutils/p5-Proclet/distinfo (props changed) head/sysutils/p5-Samba-SIDhelper/distinfo (props changed) head/sysutils/p5-Schedule-At/distinfo (props changed) head/sysutils/p5-Schedule-Cron/distinfo (props changed) head/sysutils/p5-Schedule-Load/distinfo (props changed) head/sysutils/p5-Schedule-Match/distinfo (props changed) head/sysutils/p5-Shell-Command/distinfo (props changed) head/sysutils/p5-Stat-lsMode/distinfo (props changed) head/sysutils/p5-Sys-CpuLoad/distinfo (props changed) head/sysutils/p5-Sys-Filesystem/distinfo (props changed) head/sysutils/p5-Sys-Gamin/distinfo (props changed) head/sysutils/p5-Sys-Group-GIDhelper/distinfo (props changed) head/sysutils/p5-Sys-HostIP/distinfo (props changed) head/sysutils/p5-Sys-Hostname-FQDN/distinfo (props changed) head/sysutils/p5-Sys-Hostname-Long/distinfo (props changed) head/sysutils/p5-Sys-Load/distinfo (props changed) head/sysutils/p5-Sys-Syslog/distinfo (props changed) head/sysutils/p5-Sys-User-UIDhelper/distinfo (props changed) head/sysutils/p5-Sys-Utmp/distinfo (props changed) head/sysutils/p5-Sysadm-Install/distinfo (props changed) head/sysutils/p5-SyslogScan/distinfo (props changed) head/sysutils/p5-Tail-Stat/distinfo (props changed) head/sysutils/p5-Ubic/distinfo (props changed) head/sysutils/p5-Unix-ConfigFile/distinfo (props changed) head/sysutils/p5-Unix-Lsof/distinfo (props changed) head/sysutils/p5-Unix-Mknod/distinfo (props changed) head/sysutils/p5-Unix-Processors/distinfo (props changed) head/sysutils/p5-Unix-Syslog/distinfo (props changed) head/sysutils/p5-User/distinfo (props changed) head/sysutils/p5-ZConf-Cron/distinfo (props changed) head/sysutils/p5-arclog/distinfo (props changed) head/sysutils/p5-reslog/distinfo (props changed) head/sysutils/paicc/distinfo (props changed) head/sysutils/pam_mount/distinfo (props changed) head/sysutils/pbimaker/distinfo (props changed) head/sysutils/pc-sysinstall/distinfo (props changed) head/sysutils/pcfclock/distinfo (props changed) head/sysutils/pcpustat/distinfo (props changed) head/sysutils/pdixtract/distinfo (props changed) head/sysutils/pdsh/distinfo (props changed) head/sysutils/pdumpfs/distinfo (props changed) head/sysutils/pear-Cache/distinfo (props changed) head/sysutils/pear-Cache_Lite/distinfo (props changed) head/sysutils/pear-File/distinfo (props changed) head/sysutils/pear-File_Find/distinfo (props changed) head/sysutils/pear-File_Fstab/distinfo (props changed) head/sysutils/pear-File_Gettext/distinfo (props changed) head/sysutils/pear-Horde_Log/distinfo (props changed) head/sysutils/pear-Horde_Vfs/distinfo (props changed) head/sysutils/pear-I18Nv2/distinfo (props changed) head/sysutils/pear-Log/distinfo (props changed) head/sysutils/pear-Translation2/distinfo (props changed) head/sysutils/pecl-fileinfo/distinfo (props changed) head/sysutils/pecl-mogilefs/distinfo (props changed) head/sysutils/pecl-proctitle/distinfo (props changed) head/sysutils/pefs-kmod/distinfo (props changed) head/sysutils/penv/distinfo (props changed) head/sysutils/pessulus/distinfo (props changed) head/sysutils/pflogx/distinfo (props changed) head/sysutils/pftop/distinfo (props changed) head/sysutils/phantom/distinfo (props changed) head/sysutils/philesight/distinfo (props changed) head/sysutils/pidof/distinfo (props changed) head/sysutils/pipemeter/distinfo (props changed) head/sysutils/plconfig/distinfo (props changed) head/sysutils/pmap/distinfo (props changed) head/sysutils/pmt/distinfo (props changed) head/sysutils/policykit-gnome/distinfo (props changed) head/sysutils/policykit-qt/distinfo (props changed) head/sysutils/policykit/distinfo (props changed) head/sysutils/polkit-kde/distinfo (props changed) head/sysutils/polkit-qt/distinfo (props changed) head/sysutils/powerman/distinfo (props changed) head/sysutils/pp/distinfo (props changed) head/sysutils/pprotectd/distinfo (props changed) head/sysutils/prelink/distinfo (props changed) head/sysutils/prips/distinfo (props changed) head/sysutils/progsreiserfs/distinfo (props changed) head/sysutils/psgconf/distinfo (props changed) head/sysutils/pslist/distinfo (props changed) head/sysutils/psmisc/distinfo (props changed) head/sysutils/pstack/distinfo (props changed) head/sysutils/pstree/distinfo (props changed) head/sysutils/puppet-mode.el/distinfo (props changed) head/sysutils/pwgen/distinfo (props changed) head/sysutils/pwsafe/distinfo (props changed) head/sysutils/py-XenAPI/distinfo (props changed) head/sysutils/py-bcfg2/distinfo (props changed) head/sysutils/py-drmaa/distinfo (props changed) head/sysutils/py-filelike/distinfo (props changed) head/sysutils/py-nagiosplugin/distinfo (props changed) head/sysutils/py-stdiff/distinfo (props changed) head/sysutils/py-zdaemon/distinfo (props changed) head/sysutils/pydf/distinfo (props changed) head/sysutils/pyrenamer/distinfo (props changed) head/sysutils/qjail2/distinfo (props changed) head/sysutils/qlogtools/distinfo (props changed) head/sysutils/qpxtool/distinfo (props changed) head/sysutils/quicksynergy/distinfo (props changed) head/sysutils/qzeitgeist/distinfo (props changed) head/sysutils/radeontool/distinfo (props changed) head/sysutils/radmind/distinfo (props changed) head/sysutils/raincoat/distinfo (props changed) head/sysutils/rclean/distinfo (props changed) head/sysutils/rdate/distinfo (props changed) head/sysutils/rdiff-backup-devel/distinfo (props changed) head/sysutils/rdiff-backup/distinfo (props changed) head/sysutils/rdup/distinfo (props changed) head/sysutils/readlink/distinfo (props changed) head/sysutils/recoverdm/distinfo (props changed) head/sysutils/reed/distinfo (props changed) head/sysutils/rej/distinfo (props changed) head/sysutils/relaxconf/distinfo (props changed) head/sysutils/relpath/distinfo (props changed) head/sysutils/rename/distinfo (props changed) head/sysutils/reoback/distinfo (props changed) head/sysutils/respond/distinfo (props changed) head/sysutils/retail/distinfo (props changed) head/sysutils/rfstool/distinfo (props changed) head/sysutils/rmonitor/distinfo (props changed) head/sysutils/roottail/distinfo (props changed) head/sysutils/rsnapshot/distinfo (props changed) head/sysutils/rsyncbackup/distinfo (props changed) head/sysutils/rsyncmanager/distinfo (props changed) head/sysutils/rsyslog7-devel/distinfo (props changed) head/sysutils/rsyslog7/distinfo (props changed) head/sysutils/rsyslog8-devel/distinfo (props changed) head/sysutils/rtty/distinfo (props changed) head/sysutils/ruby-quota/distinfo (props changed) head/sysutils/rubygem-capistrano-ext/distinfo (props changed) head/sysutils/rubygem-fluent-mixin-plaintextformatter/distinfo (props changed) head/sysutils/rubygem-fluent-plugin-config-expander/distinfo (props changed) head/sysutils/rubygem-fluent-plugin-file-alternative/distinfo (props changed) head/sysutils/rubygem-fluent-plugin-tail-asis/distinfo (props changed) head/sysutils/rubygem-fluentd/distinfo (props changed) head/sysutils/rubygem-hiera-json/distinfo (props changed) head/sysutils/rubygem-hiera-puppet/distinfo (props changed) head/sysutils/rubygem-log4r/distinfo (props changed) head/sysutils/rubygem-murder/distinfo (props changed) head/sysutils/rubygem-rubyipmi/distinfo (props changed) head/sysutils/rubygem-sys-cpu/distinfo (props changed) head/sysutils/rubygem-sys-host/distinfo (props changed) head/sysutils/rubygem-sys-proctable/distinfo (props changed) head/sysutils/rubygem-teamocil/distinfo (props changed) head/sysutils/runit/distinfo (props changed) head/sysutils/runwhen/distinfo (props changed) head/sysutils/safe-rm/distinfo (props changed) head/sysutils/safecat/distinfo (props changed) head/sysutils/samefile/distinfo (props changed) head/sysutils/samesame/distinfo (props changed) head/sysutils/savelogs/distinfo (props changed) head/sysutils/sb16config/distinfo (props changed) head/sysutils/scalpel/distinfo (props changed) head/sysutils/scan_ffs/distinfo (props changed) head/sysutils/scanbuttond/distinfo (props changed) head/sysutils/schedutils/distinfo (props changed) head/sysutils/scprotect/distinfo (props changed) head/sysutils/screen/distinfo (props changed) head/sysutils/screenie/distinfo (props changed) head/sysutils/sdd/distinfo (props changed) head/sysutils/sdparm/distinfo (props changed) head/sysutils/searchmonkey/distinfo (props changed) head/sysutils/seatools/distinfo (props changed) head/sysutils/sensors-applet/distinfo (props changed) head/sysutils/serpentine/distinfo (props changed) head/sysutils/setquota/distinfo (props changed) head/sysutils/sformat/distinfo (props changed) head/sysutils/sg3_utils/distinfo (props changed) head/sysutils/shmcat/distinfo (props changed) head/sysutils/sievelog/distinfo (props changed) head/sysutils/skill/distinfo (props changed) head/sysutils/slack/distinfo (props changed) head/sysutils/slmon/distinfo (props changed) head/sysutils/sloth/distinfo (props changed) head/sysutils/slst/distinfo (props changed) head/sysutils/slurm-hpc/distinfo (props changed) head/sysutils/smp_utils/distinfo (props changed) head/sysutils/snap/distinfo (props changed) head/sysutils/snowlog/distinfo (props changed) head/sysutils/socket/distinfo (props changed) head/sysutils/socklog/distinfo (props changed) head/sysutils/sortu/distinfo (props changed) head/sysutils/spindown/distinfo (props changed) head/sysutils/spinner/distinfo (props changed) head/sysutils/spiped/distinfo (props changed) head/sysutils/squashfs-tools/distinfo (props changed) head/sysutils/sshsudo/distinfo (props changed) head/sysutils/ssid/distinfo (props changed) head/sysutils/ssync/distinfo (props changed) head/sysutils/stalepid/distinfo (props changed) head/sysutils/stmpclean/distinfo (props changed) head/sysutils/stow/distinfo (props changed) head/sysutils/stowES/distinfo (props changed) head/sysutils/stress/distinfo (props changed) head/sysutils/su2/distinfo (props changed) head/sysutils/superiotool/distinfo (props changed) head/sysutils/swapd/distinfo (props changed) head/sysutils/swapexd/distinfo (props changed) head/sysutils/symlinks/distinfo (props changed) head/sysutils/symon/distinfo (props changed) head/sysutils/synergy-devel/distinfo (props changed) head/sysutils/synergy/distinfo (props changed) head/sysutils/sysinfo/distinfo (props changed) head/sysutils/syslog-ng-devel/distinfo (props changed) head/sysutils/syslog-ng/distinfo (props changed) head/sysutils/syslog-ng2/distinfo (props changed) head/sysutils/syslog-ng33/distinfo (props changed) head/sysutils/syslogger/distinfo (props changed) head/sysutils/system-tools-backends/distinfo (props changed) head/sysutils/sysupdate/distinfo (props changed) head/sysutils/tai64nfrac/distinfo (props changed) head/sysutils/tbku/distinfo (props changed) head/sysutils/tclsyslog/distinfo (props changed) head/sysutils/tcplist/distinfo (props changed) head/sysutils/tdir/distinfo (props changed) head/sysutils/tenshi/distinfo (props changed) head/sysutils/tentakel/distinfo (props changed) head/sysutils/testdisk/distinfo (props changed) head/sysutils/thefish/distinfo (props changed) head/sysutils/throttle/distinfo (props changed) head/sysutils/timelimit/distinfo (props changed) head/sysutils/timemon/distinfo (props changed) head/sysutils/titlefix/distinfo (props changed) head/sysutils/tkdvd/distinfo (props changed) head/sysutils/tm/distinfo (props changed) head/sysutils/tmpreaper/distinfo (props changed) head/sysutils/tmpwatch/distinfo (props changed) head/sysutils/topless/distinfo (props changed) head/sysutils/torsmo/distinfo (props changed) head/sysutils/toshctl/distinfo (props changed) head/sysutils/tracker-client/distinfo (props changed) head/sysutils/tree/distinfo (props changed) head/sysutils/tren/distinfo (props changed) head/sysutils/ts/distinfo (props changed) head/sysutils/tss/distinfo (props changed) head/sysutils/tty-clock/distinfo (props changed) head/sysutils/ttyload/distinfo (props changed) head/sysutils/tw_cli/distinfo (props changed) head/sysutils/tzdialog/distinfo (props changed) head/sysutils/u-boot-beaglebone-eabi/distinfo (props changed) head/sysutils/ua/distinfo (props changed) head/sysutils/ucspi-ipc/distinfo (props changed) head/sysutils/ucspi-proxy/distinfo (props changed) head/sysutils/ucspi-ssl/distinfo (props changed) head/sysutils/ucspi-tcp/distinfo (props changed) head/sysutils/ucspi-unix/distinfo (props changed) head/sysutils/udfclient/distinfo (props changed) head/sysutils/ufs_copy/distinfo (props changed) head/sysutils/uif2iso/distinfo (props changed) head/sysutils/unieject/distinfo (props changed) head/sysutils/uniutils/distinfo (props changed) head/sysutils/unquote/distinfo (props changed) head/sysutils/unstow/distinfo (props changed) head/sysutils/upower/distinfo (props changed) head/sysutils/upsd/distinfo (props changed) head/sysutils/upsdaemon/distinfo (props changed) head/sysutils/usb_modeswitch/distinfo (props changed) head/sysutils/usbutils/distinfo (props changed) head/sysutils/uschedule/distinfo (props changed) head/sysutils/userinfo/distinfo (props changed) head/sysutils/usermatic/distinfo (props changed) head/sysutils/usermin/distinfo (props changed) head/sysutils/userneu-devel/distinfo (props changed) head/sysutils/userneu/distinfo (props changed) head/sysutils/usrinfo/distinfo (props changed) head/sysutils/utcount/distinfo (props changed) head/sysutils/vbetool/distinfo (props changed) head/sysutils/vcp/distinfo (props changed) head/sysutils/videogen/distinfo (props changed) head/sysutils/vii/distinfo (props changed) head/sysutils/vils/distinfo (props changed) head/sysutils/vimpager/distinfo (props changed) head/sysutils/virtualmin/distinfo (props changed) head/sysutils/vlogger/distinfo (props changed) head/sysutils/vmdktool/distinfo (props changed) head/sysutils/vobcopy/distinfo (props changed) head/sysutils/volman/distinfo (props changed) head/sysutils/vordog/distinfo (props changed) head/sysutils/vstrip/distinfo (props changed) head/sysutils/wait_on/distinfo (props changed) head/sysutils/watchdog/distinfo (props changed) head/sysutils/watchfolder/distinfo (props changed) head/sysutils/webjob/distinfo (props changed) head/sysutils/webmin/distinfo (props changed) head/sysutils/weedit/distinfo (props changed) head/sysutils/wemux/distinfo (props changed) head/sysutils/whatpix/distinfo (props changed) head/sysutils/whowatch/distinfo (props changed) head/sysutils/wiimms/distinfo (props changed) head/sysutils/wmapm/distinfo (props changed) head/sysutils/wmapmload/distinfo (props changed) head/sysutils/wmbluecpu/distinfo (props changed) head/sysutils/wmbsdbatt/distinfo (props changed) head/sysutils/wmcpuload/distinfo (props changed) head/sysutils/wmcube-gdk/distinfo (props changed) head/sysutils/wmcube/distinfo (props changed) head/sysutils/wmdiskmon/distinfo (props changed) head/sysutils/wmfire/distinfo (props changed) head/sysutils/wmflame/distinfo (props changed) head/sysutils/wmmemfree/distinfo (props changed) head/sysutils/wmmemload/distinfo (props changed) head/sysutils/wmtop/distinfo (props changed) head/sysutils/wmupmon/distinfo (props changed) head/sysutils/worldtools/distinfo (props changed) head/sysutils/wtail/distinfo (props changed) head/sysutils/wuzzah/distinfo (props changed) head/sysutils/x86info/distinfo (props changed) head/sysutils/xacpim/distinfo (props changed) head/sysutils/xbatt/distinfo (props changed) head/sysutils/xbattbar/distinfo (props changed) head/sysutils/xcdroast/distinfo (props changed) head/sysutils/xcpustate/distinfo (props changed) head/sysutils/xdu/distinfo (props changed) head/sysutils/xe-guest-utilities/distinfo (props changed) head/sysutils/xfburn/distinfo (props changed) head/sysutils/xfce4-battery-plugin/distinfo (props changed) head/sysutils/xfce4-cpugraph-plugin/distinfo (props changed) head/sysutils/xfce4-fsguard-plugin/distinfo (props changed) head/sysutils/xfce4-genmon-plugin/distinfo (props changed) head/sysutils/xfce4-minicmd-plugin/distinfo (props changed) head/sysutils/xfce4-mount-plugin/distinfo (props changed) head/sysutils/xfce4-netload-plugin/distinfo (props changed) head/sysutils/xfce4-power-manager/distinfo (props changed) head/sysutils/xfce4-systemload-plugin/distinfo (props changed) head/sysutils/xfce4-wavelan-plugin/distinfo (props changed) head/sysutils/xfsm/distinfo (props changed) head/sysutils/xfsprogs/distinfo (props changed) head/sysutils/xin/distinfo (props changed) head/sysutils/xjobs/distinfo (props changed) head/sysutils/xlogmaster/distinfo (props changed) head/sysutils/xorriso/distinfo (props changed) head/sysutils/xosview/distinfo (props changed) head/sysutils/xsi/distinfo (props changed) head/sysutils/xstow/distinfo (props changed) head/sysutils/xsysstats/distinfo (props changed) head/sysutils/xvidcap/distinfo (props changed) head/sysutils/yawho/distinfo (props changed) head/sysutils/zeitgeist/distinfo (props changed) head/sysutils/zeroer/distinfo (props changed) head/sysutils/zetaback/distinfo (props changed) head/sysutils/zfs-periodic/distinfo (props changed) head/sysutils/zfs-replicate/distinfo (props changed) head/sysutils/zfs-snapshot-clean/distinfo (props changed) head/sysutils/zfs-snapshot-mgmt/distinfo (props changed) head/sysutils/zfs-stats/distinfo (props changed) head/sysutils/zfsnap/distinfo (props changed) head/sysutils/zfstools/distinfo (props changed) head/sysutils/zidrav/distinfo (props changed) head/sysutils/zisofs-tools/distinfo (props changed) head/textproc/2bsd-diff/distinfo (props changed) head/textproc/R-cran-XML/distinfo (props changed) head/textproc/R-cran-stringr/distinfo (props changed) head/textproc/R-cran-xtable/distinfo (props changed) head/textproc/add-css-links/distinfo (props changed) head/textproc/af-aspell/distinfo (props changed) head/textproc/aft/distinfo (props changed) head/textproc/agrep/distinfo (props changed) head/textproc/aiksaurus/distinfo (props changed) head/textproc/align/distinfo (props changed) head/textproc/am-aspell/distinfo (props changed) head/textproc/amberfish/distinfo (props changed) head/textproc/ansifilter/distinfo (props changed) head/textproc/ant-xinclude-task/distinfo (props changed) head/textproc/antiword/distinfo (props changed) head/textproc/apache-poi/distinfo (props changed) head/textproc/apache-solr3/distinfo (props changed) head/textproc/apertium/distinfo (props changed) head/textproc/archmage/distinfo (props changed) head/textproc/artha/distinfo (props changed) head/textproc/asm-xml/distinfo (props changed) head/textproc/aspell/distinfo (props changed) head/textproc/ast-aspell/distinfo (props changed) head/textproc/atom/distinfo (props changed) head/textproc/az-aspell/distinfo (props changed) head/textproc/bar/distinfo (props changed) head/textproc/bbe/distinfo (props changed) head/textproc/be-aspell/distinfo (props changed) head/textproc/bedic-data/distinfo (props changed) head/textproc/beediff/distinfo (props changed) head/textproc/bg-aspell/distinfo (props changed) head/textproc/bg-hyphen/distinfo (props changed) head/textproc/bg-mythes/distinfo (props changed) head/textproc/bib2html/distinfo (props changed) head/textproc/bibtex2html/distinfo (props changed) head/textproc/bibtool/distinfo (props changed) head/textproc/bn-aspell/distinfo (props changed) head/textproc/bomstrip/distinfo (props changed) head/textproc/br-aspell/distinfo (props changed) head/textproc/bsddiff/distinfo (props changed) head/textproc/bsdgrep/distinfo (props changed) head/textproc/bsdsort/distinfo (props changed) head/textproc/btparse/distinfo (props changed) head/textproc/c2html/distinfo (props changed) head/textproc/ca-aspell/distinfo (props changed) head/textproc/catdoc/distinfo (props changed) head/textproc/cbedic/distinfo (props changed) head/textproc/cdif/distinfo (props changed) head/textproc/chm2pdf/distinfo (props changed) head/textproc/chpp/distinfo (props changed) head/textproc/cl-meta/distinfo (props changed) head/textproc/cl-ppcre/distinfo (props changed) head/textproc/clit/distinfo (props changed) head/textproc/coccigrep/distinfo (props changed) head/textproc/coco/distinfo (props changed) head/textproc/code2html/distinfo (props changed) head/textproc/codespell/distinfo (props changed) head/textproc/colordiff/distinfo (props changed) head/textproc/confetti/distinfo (props changed) head/textproc/crimson/distinfo (props changed) head/textproc/cs-aspell/distinfo (props changed) head/textproc/cs-mythes/distinfo (props changed) head/textproc/csb-aspell/distinfo (props changed) head/textproc/csv2latex/distinfo (props changed) head/textproc/csv2xml/distinfo (props changed) head/textproc/csvdiff/distinfo (props changed) head/textproc/ctpp2/distinfo (props changed) head/textproc/cwtext/distinfo (props changed) head/textproc/cy-aspell/distinfo (props changed) head/textproc/da-aspell/distinfo (props changed) head/textproc/da-hyphen/distinfo (props changed) head/textproc/dadadodo/distinfo (props changed) head/textproc/db2latex/distinfo (props changed) head/textproc/dbacl/distinfo (props changed) head/textproc/dblatex/distinfo (props changed) head/textproc/denature/distinfo (props changed) head/textproc/dict/distinfo (props changed) head/textproc/dictem/distinfo (props changed) head/textproc/dictfmt/distinfo (props changed) head/textproc/dictionary/distinfo (props changed) head/textproc/diffmark/distinfo (props changed) head/textproc/diffsplit/distinfo (props changed) head/textproc/diffstat/distinfo (props changed) head/textproc/diffutils/distinfo (props changed) head/textproc/dikt/distinfo (props changed) head/textproc/discount/distinfo (props changed) head/textproc/doc-mode.el/distinfo (props changed) head/textproc/docbook-241/distinfo (props changed) head/textproc/docbook-300/distinfo (props changed) head/textproc/docbook-310/distinfo (props changed) head/textproc/docbook-400/distinfo (props changed) head/textproc/docbook-410/distinfo (props changed) head/textproc/docbook-420/distinfo (props changed) head/textproc/docbook-430/distinfo (props changed) head/textproc/docbook-440/distinfo (props changed) head/textproc/docbook-450/distinfo (props changed) head/textproc/docbook-500/distinfo (props changed) head/textproc/docbook-sk/distinfo (props changed) head/textproc/docbook-tdg/distinfo (props changed) head/textproc/docbook-to-man/distinfo (props changed) head/textproc/docbook-utils/distinfo (props changed) head/textproc/docbook-xml-430/distinfo (props changed) head/textproc/docbook-xml-440/distinfo (props changed) head/textproc/docbook-xml-450/distinfo (props changed) head/textproc/docbook-xml/distinfo (props changed) head/textproc/docbook-xsd/distinfo (props changed) head/textproc/docbook-xsl-ns/distinfo (props changed) head/textproc/docbook-xsl/distinfo (props changed) head/textproc/docbook2X/distinfo (props changed) head/textproc/docbook2odf/distinfo (props changed) head/textproc/docbookide.el/distinfo (props changed) head/textproc/docdiff/distinfo (props changed) head/textproc/dom4j/distinfo (props changed) head/textproc/domc/distinfo (props changed) head/textproc/dsssl-docbook-modular/distinfo (props changed) head/textproc/dtd2relax/distinfo (props changed) head/textproc/dtdparse/distinfo (props changed) head/textproc/duncan/distinfo (props changed) head/textproc/easydiff/distinfo (props changed) head/textproc/ecromedos/distinfo (props changed) head/textproc/ekhtml/distinfo (props changed) head/textproc/el-aspell/distinfo (props changed) head/textproc/el-hyphen/distinfo (props changed) head/textproc/emacs-wiki/distinfo (props changed) head/textproc/en-aspell/distinfo (props changed) head/textproc/en-hunspell/distinfo (props changed) head/textproc/en-mythes/distinfo (props changed) head/textproc/enchant/distinfo (props changed) head/textproc/eo-aspell/distinfo (props changed) head/textproc/eqe/distinfo (props changed) head/textproc/eruby/distinfo (props changed) head/textproc/es-aspell/distinfo (props changed) head/textproc/es-hyphen/distinfo (props changed) head/textproc/estraier/distinfo (props changed) head/textproc/et-aspell/distinfo (props changed) head/textproc/exempi/distinfo (props changed) head/textproc/exmpp/distinfo (props changed) head/textproc/exslt/distinfo (props changed) head/textproc/extract_url/distinfo (props changed) head/textproc/ezxml/distinfo (props changed) head/textproc/fa-aspell/distinfo (props changed) head/textproc/fex/distinfo (props changed) head/textproc/fi-aspell/distinfo (props changed) head/textproc/filepp/distinfo (props changed) head/textproc/fist/distinfo (props changed) head/textproc/fldiff/distinfo (props changed) head/textproc/flex/distinfo (props changed) head/textproc/flip/distinfo (props changed) head/textproc/fo-aspell/distinfo (props changed) head/textproc/foiltex/distinfo (props changed) head/textproc/fop/distinfo (props changed) head/textproc/fy-aspell/distinfo (props changed) head/textproc/ga-aspell/distinfo (props changed) head/textproc/gastex/distinfo (props changed) head/textproc/gd-aspell/distinfo (props changed) head/textproc/gdict/distinfo (props changed) head/textproc/gdome2/distinfo (props changed) head/textproc/gl-aspell/distinfo (props changed) head/textproc/glark/distinfo (props changed) head/textproc/glimpse/distinfo (props changed) head/textproc/glpi-plugins-AdditionalReports/distinfo (props changed) head/textproc/glpi-plugins-DataInjection/distinfo (props changed) head/textproc/gmetadom/distinfo (props changed) head/textproc/gnome-spell/distinfo (props changed) head/textproc/gnome-translate/distinfo (props changed) head/textproc/gnugrep/distinfo (props changed) head/textproc/go.text/distinfo (props changed) head/textproc/goldendict/distinfo (props changed) head/textproc/google-ctemplate/distinfo (props changed) head/textproc/gpp/distinfo (props changed) head/textproc/grap/distinfo (props changed) head/textproc/grc-aspell/distinfo (props changed) head/textproc/groff/distinfo (props changed) head/textproc/groonga/distinfo (props changed) head/textproc/gsed/distinfo (props changed) head/textproc/gtkspell/distinfo (props changed) head/textproc/gu-aspell/distinfo (props changed) head/textproc/gutenmark/distinfo (props changed) head/textproc/gv-aspell/distinfo (props changed) head/textproc/heirloom-doctools/distinfo (props changed) head/textproc/hgrep/distinfo (props changed) head/textproc/hhm/distinfo (props changed) head/textproc/hi-aspell/distinfo (props changed) head/textproc/highlight/distinfo (props changed) head/textproc/hil-aspell/distinfo (props changed) head/textproc/hr-aspell/distinfo (props changed) head/textproc/hs-Diff/distinfo (props changed) head/textproc/hs-HStringTemplate/distinfo (props changed) head/textproc/hs-HaXml/distinfo (props changed) head/textproc/hs-attoparsec-conduit/distinfo (props changed) head/textproc/hs-attoparsec-enumerator/distinfo (props changed) head/textproc/hs-attoparsec/distinfo (props changed) head/textproc/hs-blaze-html/distinfo (props changed) head/textproc/hs-blaze-markup/distinfo (props changed) head/textproc/hs-bytestring-csv/distinfo (props changed) head/textproc/hs-case-insensitive/distinfo (props changed) head/textproc/hs-citeproc-hs/distinfo (props changed) head/textproc/hs-csv/distinfo (props changed) head/textproc/hs-double-conversion/distinfo (props changed) head/textproc/hs-feed/distinfo (props changed) head/textproc/hs-highlighting-kate/distinfo (props changed) head/textproc/hs-hs-bibutils/distinfo (props changed) head/textproc/hs-html-conduit/distinfo (props changed) head/textproc/hs-html/distinfo (props changed) head/textproc/hs-hxt-charproperties/distinfo (props changed) head/textproc/hs-hxt-regex-xmlschema/distinfo (props changed) head/textproc/hs-hxt-unicode/distinfo (props changed) head/textproc/hs-hxt/distinfo (props changed) head/textproc/hs-lhs2tex/distinfo (props changed) head/textproc/hs-libxml/distinfo (props changed) head/textproc/hs-pandoc-types/distinfo (props changed) head/textproc/hs-pandoc/distinfo (props changed) head/textproc/hs-parsec/distinfo (props changed) head/textproc/hs-polyparse/distinfo (props changed) head/textproc/hs-regex-base/distinfo (props changed) head/textproc/hs-regex-compat/distinfo (props changed) head/textproc/hs-regex-pcre-builtin/distinfo (props changed) head/textproc/hs-regex-posix/distinfo (props changed) head/textproc/hs-stringsearch/distinfo (props changed) head/textproc/hs-tagsoup/distinfo (props changed) head/textproc/hs-tagstream-conduit/distinfo (props changed) head/textproc/hs-texmath/distinfo (props changed) head/textproc/hs-xhtml/distinfo (props changed) head/textproc/hs-xml-conduit/distinfo (props changed) head/textproc/hs-xml-types/distinfo (props changed) head/textproc/hs-xml/distinfo (props changed) head/textproc/hs-xmlhtml/distinfo (props changed) head/textproc/hs-yaml/distinfo (props changed) head/textproc/hsb-aspell/distinfo (props changed) head/textproc/htdig/distinfo (props changed) head/textproc/html-pretty/distinfo (props changed) head/textproc/html/distinfo (props changed) head/textproc/html2fo/distinfo (props changed) head/textproc/html2tex/distinfo (props changed) head/textproc/html2text/distinfo (props changed) head/textproc/htmlc/distinfo (props changed) head/textproc/htmldoc/distinfo (props changed) head/textproc/htmlise/distinfo (props changed) head/textproc/htmlize.el/distinfo (props changed) head/textproc/htmlsection/distinfo (props changed) head/textproc/htmltolatex/distinfo (props changed) head/textproc/humanzip/distinfo (props changed) head/textproc/hy-aspell/distinfo (props changed) head/textproc/hyperestraier/distinfo (props changed) head/textproc/hyphen/distinfo (props changed) head/textproc/ia-aspell/distinfo (props changed) head/textproc/ibus-el/distinfo (props changed) head/textproc/ibus-kmfl/distinfo (props changed) head/textproc/ibus-m17n/distinfo (props changed) head/textproc/ibus-qt/distinfo (props changed) head/textproc/ibus-table/distinfo (props changed) head/textproc/ibus/distinfo (props changed) head/textproc/id-aspell/distinfo (props changed) head/textproc/id-hyphen/distinfo (props changed) head/textproc/iksemel/distinfo (props changed) head/textproc/info2html/distinfo (props changed) head/textproc/info2man/distinfo (props changed) head/textproc/info_to_html/distinfo (props changed) head/textproc/intltool/distinfo (props changed) head/textproc/ipdf/distinfo (props changed) head/textproc/is-aspell/distinfo (props changed) head/textproc/is-hyphen/distinfo (props changed) head/textproc/iso-schematron-xslt/distinfo (props changed) head/textproc/iso12083/distinfo (props changed) head/textproc/iso8879/distinfo (props changed) head/textproc/ispell/distinfo (props changed) head/textproc/it-aspell/distinfo (props changed) head/textproc/it-hunspell/distinfo (props changed) head/textproc/it-hyphen/distinfo (props changed) head/textproc/it-mythes/distinfo (props changed) head/textproc/itstool/distinfo (props changed) head/textproc/jade/distinfo (props changed) head/textproc/jakarta-commons-digester/distinfo (props changed) head/textproc/jalingo/distinfo (props changed) head/textproc/jarnal/distinfo (props changed) head/textproc/java2html/distinfo (props changed) head/textproc/jaxup/distinfo (props changed) head/textproc/jdictionary-int-eng/distinfo (props changed) head/textproc/jdictionary/distinfo (props changed) head/textproc/jing/distinfo (props changed) head/textproc/jq/distinfo (props changed) head/textproc/jrefentry/distinfo (props changed) head/textproc/kdiff3/distinfo (props changed) head/textproc/kmfl-european-latin/distinfo (props changed) head/textproc/kmfl-khmer/distinfo (props changed) head/textproc/kmfl-sil-ezra/distinfo (props changed) head/textproc/kmfl-sil-galatia/distinfo (props changed) head/textproc/kmfl-sil-ipa-unicode/distinfo (props changed) head/textproc/kmfl-sil-panafrican-latin/distinfo (props changed) head/textproc/kmfl-sil-yi/distinfo (props changed) head/textproc/kmfl-varamozhi-malayalam/distinfo (props changed) head/textproc/kmflcomp/distinfo (props changed) head/textproc/kn-aspell/distinfo (props changed) head/textproc/ku-aspell/distinfo (props changed) head/textproc/ky-aspell/distinfo (props changed) head/textproc/l2a/distinfo (props changed) head/textproc/la-aspell/distinfo (props changed) head/textproc/lacheck/distinfo (props changed) head/textproc/latex-service/distinfo (props changed) head/textproc/latex2html/distinfo (props changed) head/textproc/lemmatizer2/distinfo (props changed) head/textproc/libcrm114/distinfo (props changed) head/textproc/libcue/distinfo (props changed) head/textproc/libebml/distinfo (props changed) head/textproc/libextractor/distinfo (props changed) head/textproc/libexttextcat/distinfo (props changed) head/textproc/libflate/distinfo (props changed) head/textproc/libguess/distinfo (props changed) head/textproc/libkmfl/distinfo (props changed) head/textproc/liblingoteach/distinfo (props changed) head/textproc/liblrdf/distinfo (props changed) head/textproc/libmrss/distinfo (props changed) head/textproc/libnxml/distinfo (props changed) head/textproc/libparsifal/distinfo (props changed) head/textproc/libsoldout/distinfo (props changed) head/textproc/libsphinxclient/distinfo (props changed) head/textproc/libstree/distinfo (props changed) head/textproc/libtext-charwidth-perl/distinfo (props changed) head/textproc/libtext-wrapi18n-perl/distinfo (props changed) head/textproc/libtextcat/distinfo (props changed) head/textproc/libtranslate/distinfo (props changed) head/textproc/libtre/distinfo (props changed) head/textproc/libuninameslist/distinfo (props changed) head/textproc/libwps/distinfo (props changed) head/textproc/libxdiff/distinfo (props changed) head/textproc/libxml++26/distinfo (props changed) head/textproc/libxode/distinfo (props changed) head/textproc/libyaml/distinfo (props changed) head/textproc/link-grammar/distinfo (props changed) head/textproc/linux-f10-aspell/distinfo.i386 (props changed) head/textproc/linux-f10-expat/distinfo.i386 (props changed) head/textproc/linux-f10-libxml2/distinfo.i386 (props changed) head/textproc/linux-f10-scim-gtk/distinfo.i386 (props changed) head/textproc/linux-f10-scim-libs/distinfo.i386 (props changed) head/textproc/linuxdoc/distinfo (props changed) head/textproc/localize/distinfo (props changed) head/textproc/loook/distinfo (props changed) head/textproc/lt-aspell/distinfo (props changed) head/textproc/lt-hyphen/distinfo (props changed) head/textproc/lttoolbox/distinfo (props changed) head/textproc/ltxml/distinfo (props changed) head/textproc/luaexpat/distinfo (props changed) head/textproc/lucene/distinfo (props changed) head/textproc/lv-aspell/distinfo (props changed) head/textproc/m17n-im-config/distinfo (props changed) head/textproc/makefaq/distinfo (props changed) head/textproc/makepatch/distinfo (props changed) head/textproc/man2html/distinfo (props changed) head/textproc/manued.el/distinfo (props changed) head/textproc/markdown-mode.el/distinfo (props changed) head/textproc/markdown/distinfo (props changed) head/textproc/mathml-xsd/distinfo (props changed) head/textproc/mdocml/distinfo (props changed) head/textproc/metaf2xml/distinfo (props changed) head/textproc/metauml/distinfo (props changed) head/textproc/mgdiff/distinfo (props changed) head/textproc/mguesser/distinfo (props changed) head/textproc/mi-aspell/distinfo (props changed) head/textproc/minised/distinfo (props changed) head/textproc/mk-aspell/distinfo (props changed) head/textproc/ml-aspell/distinfo (props changed) head/textproc/ml1/distinfo (props changed) head/textproc/mn-aspell/distinfo (props changed) head/textproc/modlogan/distinfo (props changed) head/textproc/mr-aspell/distinfo (props changed) head/textproc/ms-aspell/distinfo (props changed) head/textproc/msort/distinfo (props changed) head/textproc/mt-aspell/distinfo (props changed) head/textproc/muse/distinfo (props changed) head/textproc/mysqlviz/distinfo (props changed) head/textproc/mythes/distinfo (props changed) head/textproc/nb-aspell/distinfo (props changed) head/textproc/nds-aspell/distinfo (props changed) head/textproc/nl-aspell/distinfo (props changed) head/textproc/nl-hunspell/distinfo (props changed) head/textproc/nl-hyphen/distinfo (props changed) head/textproc/nltk/distinfo (props changed) head/textproc/nn-aspell/distinfo (props changed) head/textproc/no-hunspell/distinfo (props changed) head/textproc/nunnimcax/distinfo (props changed) head/textproc/nux/distinfo (props changed) head/textproc/ny-aspell/distinfo (props changed) head/textproc/ocaml-csv/distinfo (props changed) head/textproc/ocaml-expat/distinfo (props changed) head/textproc/ocaml-pxp/distinfo (props changed) head/textproc/ocaml-text/distinfo (props changed) head/textproc/ocaml-tyxml/distinfo (props changed) head/textproc/odt2txt/distinfo (props changed) head/textproc/openfts/distinfo (props changed) head/textproc/openjade/distinfo (props changed) head/textproc/opensched/distinfo (props changed) head/textproc/opensp/distinfo (props changed) head/textproc/openvanilla-framework/distinfo (props changed) head/textproc/openvanilla-modules/distinfo (props changed) head/textproc/or-aspell/distinfo (props changed) head/textproc/ots/distinfo (props changed) head/textproc/p5-AI-Categorizer/distinfo (props changed) head/textproc/p5-Algorithm-CheckDigits/distinfo (props changed) head/textproc/p5-Algorithm-RabinKarp/distinfo (props changed) head/textproc/p5-Apache-ParseLog/distinfo (props changed) head/textproc/p5-BibTeX-Parser/distinfo (props changed) head/textproc/p5-Bloom-Filter/distinfo (props changed) head/textproc/p5-CSS-Compressor/distinfo (props changed) head/textproc/p5-CSS-Croco/distinfo (props changed) head/textproc/p5-CSS-Minifier/distinfo (props changed) head/textproc/p5-CSS-Packer/distinfo (props changed) head/textproc/p5-CSS-SAC/distinfo (props changed) head/textproc/p5-CSS-Simple/distinfo (props changed) head/textproc/p5-CSS-Squish/distinfo (props changed) head/textproc/p5-CSS-Tiny/distinfo (props changed) head/textproc/p5-CSS/distinfo (props changed) head/textproc/p5-Chess-PGN-Parse/distinfo (props changed) head/textproc/p5-Class-CSV/distinfo (props changed) head/textproc/p5-Data-FormValidator-Constraints-DateTime/distinfo (props changed) head/textproc/p5-Data-Phrasebook-Loader-YAML/distinfo (props changed) head/textproc/p5-Data-Phrasebook/distinfo (props changed) head/textproc/p5-Data-Report/distinfo (props changed) head/textproc/p5-Data-SpreadPagination/distinfo (props changed) head/textproc/p5-DelimMatch/distinfo (props changed) head/textproc/p5-Dev-Bollocks/distinfo (props changed) head/textproc/p5-Devel-TraceSAX/distinfo (props changed) head/textproc/p5-DocSet/distinfo (props changed) head/textproc/p5-EBook-Tools/distinfo (props changed) head/textproc/p5-Excel-Template/distinfo (props changed) head/textproc/p5-File-Inplace/distinfo (props changed) head/textproc/p5-Filter-Simple/distinfo (props changed) head/textproc/p5-Games-Dissociate/distinfo (props changed) head/textproc/p5-Geo-Parse-OSM/distinfo (props changed) head/textproc/p5-Google-Data-JSON/distinfo (props changed) head/textproc/p5-HTML-CTPP2/distinfo (props changed) head/textproc/p5-HTML-Copy/distinfo (props changed) head/textproc/p5-HTML-Entities-ImodePictogram/distinfo (props changed) head/textproc/p5-HTML-Entities-Numbered/distinfo (props changed) head/textproc/p5-HTML-EscapeEvil/distinfo (props changed) head/textproc/p5-HTML-FormatText-WithLinks-AndTables/distinfo (props changed) head/textproc/p5-HTML-FormatText-WithLinks/distinfo (props changed) head/textproc/p5-HTML-Fraction/distinfo (props changed) head/textproc/p5-HTML-HTML5-Entities/distinfo (props changed) head/textproc/p5-HTML-HTML5-Parser/distinfo (props changed) head/textproc/p5-HTML-HTMLDoc/distinfo (props changed) head/textproc/p5-HTML-Packer/distinfo (props changed) head/textproc/p5-HTML-QRCode/distinfo (props changed) head/textproc/p5-HTML-Quoted/distinfo (props changed) head/textproc/p5-HTML-RewriteAttributes/distinfo (props changed) head/textproc/p5-HTML-SBC/distinfo (props changed) head/textproc/p5-HTML-SuperForm/distinfo (props changed) head/textproc/p5-HTML-TagFilter/distinfo (props changed) head/textproc/p5-HTML-Tiny/distinfo (props changed) head/textproc/p5-HTML-Truncate/distinfo (props changed) head/textproc/p5-Hailo/distinfo (props changed) head/textproc/p5-Hatena-Keyword/distinfo (props changed) head/textproc/p5-IDNA-Punycode/distinfo (props changed) head/textproc/p5-IO-CSVHeaderFile/distinfo (props changed) head/textproc/p5-JavaScript-Minifier-XS/distinfo (props changed) head/textproc/p5-JavaScript-Packer/distinfo (props changed) head/textproc/p5-KinoSearch1/distinfo (props changed) head/textproc/p5-LaTeX-Encode/distinfo (props changed) head/textproc/p5-LaTeX-Pod/distinfo (props changed) head/textproc/p5-LaTeX-TOM/distinfo (props changed) head/textproc/p5-LaTeX-Table/distinfo (props changed) head/textproc/p5-LaTeX-ToUnicode/distinfo (props changed) head/textproc/p5-Lingua-Conjunction/distinfo (props changed) head/textproc/p5-Lingua-EN-AddressParse/distinfo (props changed) head/textproc/p5-Lingua-EN-Fathom/distinfo (props changed) head/textproc/p5-Lingua-EN-Gender/distinfo (props changed) head/textproc/p5-Lingua-EN-Infinitive/distinfo (props changed) head/textproc/p5-Lingua-EN-Inflect-Number/distinfo (props changed) head/textproc/p5-Lingua-EN-Inflect-Phrase/distinfo (props changed) head/textproc/p5-Lingua-EN-Inflect/distinfo (props changed) head/textproc/p5-Lingua-EN-MatchNames/distinfo (props changed) head/textproc/p5-Lingua-EN-NameCase/distinfo (props changed) head/textproc/p5-Lingua-EN-NamedEntity/distinfo (props changed) head/textproc/p5-Lingua-EN-Number-IsOrdinal/distinfo (props changed) head/textproc/p5-Lingua-EN-Numbers-Easy/distinfo (props changed) head/textproc/p5-Lingua-EN-Numbers-Ordinate/distinfo (props changed) head/textproc/p5-Lingua-EN-Sentence/distinfo (props changed) head/textproc/p5-Lingua-EN-Squeeze/distinfo (props changed) head/textproc/p5-Lingua-EN-Summarize/distinfo (props changed) head/textproc/p5-Lingua-EN-Syllable/distinfo (props changed) head/textproc/p5-Lingua-EN-Tagger/distinfo (props changed) head/textproc/p5-Lingua-Ident/distinfo (props changed) head/textproc/p5-Lingua-Identify/distinfo (props changed) head/textproc/p5-Lingua-Ispell/distinfo (props changed) head/textproc/p5-Lingua-PT-Stemmer/distinfo (props changed) head/textproc/p5-Lingua-Preferred/distinfo (props changed) head/textproc/p5-Lingua-Stem-Fr/distinfo (props changed) head/textproc/p5-Lingua-Stem-It/distinfo (props changed) head/textproc/p5-Lingua-Stem-Ru/distinfo (props changed) head/textproc/p5-Lingua-Stem-Snowball-Da/distinfo (props changed) head/textproc/p5-Lingua-Stem-Snowball-No/distinfo (props changed) head/textproc/p5-Lingua-Stem-Snowball-Se/distinfo (props changed) head/textproc/p5-Lingua-Stem-Snowball/distinfo (props changed) head/textproc/p5-Lingua-Stem/distinfo (props changed) head/textproc/p5-Lingua-StopWords/distinfo (props changed) head/textproc/p5-Lingua-Treebank/distinfo (props changed) head/textproc/p5-MARC-Lint/distinfo (props changed) head/textproc/p5-MARC-Record/distinfo (props changed) head/textproc/p5-MARC-XML/distinfo (props changed) head/textproc/p5-MARC/distinfo (props changed) head/textproc/p5-MKDoc-XML/distinfo (props changed) head/textproc/p5-Makefile-DOM/distinfo (props changed) head/textproc/p5-Makefile-Parser/distinfo (props changed) head/textproc/p5-Markapl/distinfo (props changed) head/textproc/p5-Marpa-HTML/distinfo (props changed) head/textproc/p5-MathML-Entities/distinfo (props changed) head/textproc/p5-Net-YASA/distinfo (props changed) head/textproc/p5-NetAddr-IP-Find/distinfo (props changed) head/textproc/p5-Number-Format/distinfo (props changed) head/textproc/p5-Number-Spell/distinfo (props changed) head/textproc/p5-ODF-lpOD/distinfo (props changed) head/textproc/p5-PDF-API2/distinfo (props changed) head/textproc/p5-PDF-API3/distinfo (props changed) head/textproc/p5-PDF-FromHTML/distinfo (props changed) head/textproc/p5-PDF-Table/distinfo (props changed) head/textproc/p5-PDF-Writer/distinfo (props changed) head/textproc/p5-POD2-Base/distinfo (props changed) head/textproc/p5-POE-Filter-XML/distinfo (props changed) head/textproc/p5-POSIX-Regex/distinfo (props changed) head/textproc/p5-PPI-HTML/distinfo (props changed) head/textproc/p5-PPI-XS/distinfo (props changed) head/textproc/p5-PPI/distinfo (props changed) head/textproc/p5-PPIx-Regexp/distinfo (props changed) head/textproc/p5-PPIx-Utilities/distinfo (props changed) head/textproc/p5-Parse-BooleanLogic/distinfo (props changed) head/textproc/p5-Parse-CSV/distinfo (props changed) head/textproc/p5-Parse-FixedLength/distinfo (props changed) head/textproc/p5-Parse-Flex/distinfo (props changed) head/textproc/p5-Parse-PhoneNumber/distinfo (props changed) head/textproc/p5-Parse-Syslog/distinfo (props changed) head/textproc/p5-Perl-Critic-Bangs/distinfo (props changed) head/textproc/p5-Perl-MinimumVersion/distinfo (props changed) head/textproc/p5-PerlPoint-Converters/distinfo (props changed) head/textproc/p5-PerlPoint-Package/distinfo (props changed) head/textproc/p5-Petal-CodePerl/distinfo (props changed) head/textproc/p5-Petal-Mail/distinfo (props changed) head/textproc/p5-Petal-Utils/distinfo (props changed) head/textproc/p5-Plagger/distinfo (props changed) head/textproc/p5-Plucene-Analysis-CJKAnalyzer/distinfo (props changed) head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/distinfo (props changed) head/textproc/p5-Plucene-Simple/distinfo (props changed) head/textproc/p5-Plucene/distinfo (props changed) head/textproc/p5-Pod-Abstract/distinfo (props changed) head/textproc/p5-Pod-Autopod/distinfo (props changed) head/textproc/p5-Pod-Constants/distinfo (props changed) head/textproc/p5-Pod-DocBook/distinfo (props changed) head/textproc/p5-Pod-Escapes/distinfo (props changed) head/textproc/p5-Pod-HtmlEasy/distinfo (props changed) head/textproc/p5-Pod-POM-View-HTML-Filter/distinfo (props changed) head/textproc/p5-Pod-Parser/distinfo (props changed) head/textproc/p5-Pod-Perldoc/distinfo (props changed) head/textproc/p5-Pod-ProjectDocs/distinfo (props changed) head/textproc/p5-Pod-Readme/distinfo (props changed) head/textproc/p5-Pod-Simple/distinfo (props changed) head/textproc/p5-Pod-Spell/distinfo (props changed) head/textproc/p5-Pod-Strip/distinfo (props changed) head/textproc/p5-Pod-Stripper/distinfo (props changed) head/textproc/p5-Pod-Tree/distinfo (props changed) head/textproc/p5-Pod-WSDL/distinfo (props changed) head/textproc/p5-Pod-WikiDoc/distinfo (props changed) head/textproc/p5-Pod-XML/distinfo (props changed) head/textproc/p5-Pod-Xhtml/distinfo (props changed) head/textproc/p5-RADIUS-UserFile/distinfo (props changed) head/textproc/p5-RDF-Core/distinfo (props changed) head/textproc/p5-RDF-Notation3/distinfo (props changed) head/textproc/p5-RDF-Simple/distinfo (props changed) head/textproc/p5-RDFStore/distinfo (props changed) head/textproc/p5-RTF-Parser/distinfo (props changed) head/textproc/p5-RTF-Tokenizer/distinfo (props changed) head/textproc/p5-RTF-Writer/distinfo (props changed) head/textproc/p5-Regex-PreSuf/distinfo (props changed) head/textproc/p5-Regexp-Common-Email-Address/distinfo (props changed) head/textproc/p5-Regexp-Common-net-CIDR/distinfo (props changed) head/textproc/p5-Regexp-Common-profanity_us/distinfo (props changed) head/textproc/p5-Regexp-Common/distinfo (props changed) head/textproc/p5-Regexp-Copy/distinfo (props changed) head/textproc/p5-Regexp-DefaultFlags/distinfo (props changed) head/textproc/p5-Regexp-IPv6/distinfo (props changed) head/textproc/p5-Regexp-Log-Common/distinfo (props changed) head/textproc/p5-Regexp-Log/distinfo (props changed) head/textproc/p5-SGML-DTDParse/distinfo (props changed) head/textproc/p5-SGML-Parser-OpenSP/distinfo (props changed) head/textproc/p5-SGMLSpm/distinfo (props changed) head/textproc/p5-SQL-Tokenizer/distinfo (props changed) head/textproc/p5-SVG-Parser/distinfo (props changed) head/textproc/p5-Search-Estraier/distinfo (props changed) head/textproc/p5-Search-Odeum/distinfo (props changed) head/textproc/p5-Search-Saryer/distinfo (props changed) head/textproc/p5-Search-VectorSpace/distinfo (props changed) head/textproc/p5-Senna/distinfo (props changed) head/textproc/p5-Solr/distinfo (props changed) head/textproc/p5-Sort-ArbBiLex/distinfo (props changed) head/textproc/p5-Sort-Fields/distinfo (props changed) head/textproc/p5-Sort-Naturally/distinfo (props changed) head/textproc/p5-Sphinx-Config/distinfo (props changed) head/textproc/p5-Sphinx-Manager/distinfo (props changed) head/textproc/p5-Spork/distinfo (props changed) head/textproc/p5-Spreadsheet-ParseExcel/distinfo (props changed) head/textproc/p5-Spreadsheet-Read/distinfo (props changed) head/textproc/p5-Spreadsheet-ReadSXC/distinfo (props changed) head/textproc/p5-Spreadsheet-WriteExcel-FromXML/distinfo (props changed) head/textproc/p5-Spreadsheet-WriteExcel-Styler/distinfo (props changed) head/textproc/p5-Spreadsheet-WriteExcelXML/distinfo (props changed) head/textproc/p5-Spreadsheet-XLSX/distinfo (props changed) head/textproc/p5-String-BufferStack/distinfo (props changed) head/textproc/p5-String-CamelCase/distinfo (props changed) head/textproc/p5-String-Compare-ConstantTime/distinfo (props changed) head/textproc/p5-String-Divert/distinfo (props changed) head/textproc/p5-String-Escape/distinfo (props changed) head/textproc/p5-String-Flogger/distinfo (props changed) head/textproc/p5-String-Fraction/distinfo (props changed) head/textproc/p5-String-Koremutake/distinfo (props changed) head/textproc/p5-String-RewritePrefix/distinfo (props changed) head/textproc/p5-String-Scanf/distinfo (props changed) head/textproc/p5-String-ShellQuote/distinfo (props changed) head/textproc/p5-String-ShowDiff/distinfo (props changed) head/textproc/p5-String-Strip/distinfo (props changed) head/textproc/p5-String-Tokenizer/distinfo (props changed) head/textproc/p5-String-Truncate/distinfo (props changed) head/textproc/p5-String-Urandom/distinfo (props changed) head/textproc/p5-Syntax-Highlight-Engine-Kate/distinfo (props changed) head/textproc/p5-Syntax-Highlight-Perl-Improved/distinfo (props changed) head/textproc/p5-TeX-Encode/distinfo (props changed) head/textproc/p5-TeX-Hyphen/distinfo (props changed) head/textproc/p5-Template-Declare/distinfo (props changed) head/textproc/p5-Template-Extract/distinfo (props changed) head/textproc/p5-Template-Magic/distinfo (props changed) head/textproc/p5-Template-Plugin-Autoformat/distinfo (props changed) head/textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/distinfo (props changed) head/textproc/p5-Template-Plugin-Filter-Minify-CSS/distinfo (props changed) head/textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/distinfo (props changed) head/textproc/p5-Template-Plugin-Filter-Minify-JavaScript/distinfo (props changed) head/textproc/p5-Template-Plugin-HTML-SuperForm/distinfo (props changed) head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/distinfo (props changed) head/textproc/p5-Template-Plugin-XML-Escape/distinfo (props changed) head/textproc/p5-Template-Semantic/distinfo (props changed) head/textproc/p5-Template-Tiny/distinfo (props changed) head/textproc/p5-Term-QRCode/distinfo (props changed) head/textproc/p5-Test-Perl-Critic/distinfo (props changed) head/textproc/p5-Text-ASCIIMathML/distinfo (props changed) head/textproc/p5-Text-ASCIITable/distinfo (props changed) head/textproc/p5-Text-Affixes/distinfo (props changed) head/textproc/p5-Text-Aspell/distinfo (props changed) head/textproc/p5-Text-Autoformat/distinfo (props changed) head/textproc/p5-Text-Balanced/distinfo (props changed) head/textproc/p5-Text-Bastardize/distinfo (props changed) head/textproc/p5-Text-BibTeX/distinfo (props changed) head/textproc/p5-Text-Bind/distinfo (props changed) head/textproc/p5-Text-Brew/distinfo (props changed) head/textproc/p5-Text-CSV-Encoded/distinfo (props changed) head/textproc/p5-Text-CSV-Simple/distinfo (props changed) head/textproc/p5-Text-CSV/distinfo (props changed) head/textproc/p5-Text-CSV_XS/distinfo (props changed) head/textproc/p5-Text-Capitalize/distinfo (props changed) head/textproc/p5-Text-CharWidth/distinfo (props changed) head/textproc/p5-Text-Chomp/distinfo (props changed) head/textproc/p5-Text-ClearSilver/distinfo (props changed) head/textproc/p5-Text-Context-EitherSide/distinfo (props changed) head/textproc/p5-Text-Context/distinfo (props changed) head/textproc/p5-Text-DHCPLeases/distinfo (props changed) head/textproc/p5-Text-Decorator/distinfo (props changed) head/textproc/p5-Text-Delimited/distinfo (props changed) head/textproc/p5-Text-Diff-HTML/distinfo (props changed) head/textproc/p5-Text-Diff-Parser/distinfo (props changed) head/textproc/p5-Text-Diff/distinfo (props changed) head/textproc/p5-Text-Diff3/distinfo (props changed) head/textproc/p5-Text-DoubleMetaphone/distinfo (props changed) head/textproc/p5-Text-Emoticon-GoogleTalk/distinfo (props changed) head/textproc/p5-Text-Emoticon/distinfo (props changed) head/textproc/p5-Text-EtText/distinfo (props changed) head/textproc/p5-Text-Extract-Word/distinfo (props changed) head/textproc/p5-Text-ExtractWords/distinfo (props changed) head/textproc/p5-Text-FillIn/distinfo (props changed) head/textproc/p5-Text-Filter-Chain/distinfo (props changed) head/textproc/p5-Text-Filter/distinfo (props changed) head/textproc/p5-Text-FindIndent/distinfo (props changed) head/textproc/p5-Text-FixEOL/distinfo (props changed) head/textproc/p5-Text-FixedLength-Extra/distinfo (props changed) head/textproc/p5-Text-FixedLength/distinfo (props changed) head/textproc/p5-Text-Flow/distinfo (props changed) head/textproc/p5-Text-Flowchart/distinfo (props changed) head/textproc/p5-Text-Flowed/distinfo (props changed) head/textproc/p5-Text-Format+NWrap/distinfo (props changed) head/textproc/p5-Text-Format/distinfo (props changed) head/textproc/p5-Text-FormatTable/distinfo (props changed) head/textproc/p5-Text-German/distinfo (props changed) head/textproc/p5-Text-Glob/distinfo (props changed) head/textproc/p5-Text-Graphics/distinfo (props changed) head/textproc/p5-Text-Greeking/distinfo (props changed) head/textproc/p5-Text-Haml/distinfo (props changed) head/textproc/p5-Text-Hatena/distinfo (props changed) head/textproc/p5-Text-Highlight/distinfo (props changed) head/textproc/p5-Text-HikiDoc/distinfo (props changed) head/textproc/p5-Text-LTSV/distinfo (props changed) head/textproc/p5-Text-Language-Guess/distinfo (props changed) head/textproc/p5-Text-Lorem/distinfo (props changed) head/textproc/p5-Text-Markdown/distinfo (props changed) head/textproc/p5-Text-Match-FastAlternatives/distinfo (props changed) head/textproc/p5-Text-Metaphone/distinfo (props changed) head/textproc/p5-Text-MicroMason/distinfo (props changed) head/textproc/p5-Text-MicroTemplate-Extended/distinfo (props changed) head/textproc/p5-Text-MicroTemplate/distinfo (props changed) head/textproc/p5-Text-MultiMarkdown/distinfo (props changed) head/textproc/p5-Text-NSP/distinfo (props changed) head/textproc/p5-Text-NeatTemplate/distinfo (props changed) head/textproc/p5-Text-Netstring/distinfo (props changed) head/textproc/p5-Text-Ngram/distinfo (props changed) head/textproc/p5-Text-Ngrams/distinfo (props changed) head/textproc/p5-Text-Original/distinfo (props changed) head/textproc/p5-Text-Padding/distinfo (props changed) head/textproc/p5-Text-ParagraphDiff/distinfo (props changed) head/textproc/p5-Text-ParseWords/distinfo (props changed) head/textproc/p5-Text-Patch/distinfo (props changed) head/textproc/p5-Text-Pipe/distinfo (props changed) head/textproc/p5-Text-Prefix-XS/distinfo (props changed) head/textproc/p5-Text-Query/distinfo (props changed) head/textproc/p5-Text-Quote/distinfo (props changed) head/textproc/p5-Text-Quoted/distinfo (props changed) head/textproc/p5-Text-RecordParser/distinfo (props changed) head/textproc/p5-Text-Reflow/distinfo (props changed) head/textproc/p5-Text-Reform/distinfo (props changed) head/textproc/p5-Text-Report/distinfo (props changed) head/textproc/p5-Text-Repository/distinfo (props changed) head/textproc/p5-Text-Sass/distinfo (props changed) head/textproc/p5-Text-Shellwords/distinfo (props changed) head/textproc/p5-Text-Similarity/distinfo (props changed) head/textproc/p5-Text-SimpleTable/distinfo (props changed) head/textproc/p5-Text-SimpleTemplate/distinfo (props changed) head/textproc/p5-Text-SpellChecker-GUI/distinfo (props changed) head/textproc/p5-Text-SpellChecker/distinfo (props changed) head/textproc/p5-Text-Striphigh/distinfo (props changed) head/textproc/p5-Text-Tabs+Wrap/distinfo (props changed) head/textproc/p5-Text-TabularDisplay/distinfo (props changed) head/textproc/p5-Text-Tags/distinfo (props changed) head/textproc/p5-Text-Template/distinfo (props changed) head/textproc/p5-Text-Textile/distinfo (props changed) head/textproc/p5-Text-Tmpl/distinfo (props changed) head/textproc/p5-Text-Trac/distinfo (props changed) head/textproc/p5-Text-Trim/distinfo (props changed) head/textproc/p5-Text-Truncate/distinfo (props changed) head/textproc/p5-Text-Unaccent/distinfo (props changed) head/textproc/p5-Text-VimColor/distinfo (props changed) head/textproc/p5-Text-WikiCreole/distinfo (props changed) head/textproc/p5-Text-WikiFormat/distinfo (props changed) head/textproc/p5-Text-WordDiff/distinfo (props changed) head/textproc/p5-Text-Wrapper/distinfo (props changed) head/textproc/p5-Text-Xslate-Bridge-TT2Like/distinfo (props changed) head/textproc/p5-Text-vCard/distinfo (props changed) head/textproc/p5-Tiffany/distinfo (props changed) head/textproc/p5-Time-Human/distinfo (props changed) head/textproc/p5-Tk-XMLViewer/distinfo (props changed) head/textproc/p5-Tree-Nary/distinfo (props changed) head/textproc/p5-Tree-Suffix/distinfo (props changed) head/textproc/p5-UML-Class-Simple/distinfo (props changed) head/textproc/p5-UML-Sequence/distinfo (props changed) head/textproc/p5-UML-State/distinfo (props changed) head/textproc/p5-URI-Find/distinfo (props changed) head/textproc/p5-Unicode-CheckUTF8/distinfo (props changed) head/textproc/p5-Unicode-EastAsianWidth/distinfo (props changed) head/textproc/p5-Unicode-Escape/distinfo (props changed) head/textproc/p5-Unicode-Unihan/distinfo (props changed) head/textproc/p5-Version-Next/distinfo (props changed) head/textproc/p5-Vroom/distinfo (props changed) head/textproc/p5-WDDX/distinfo (props changed) head/textproc/p5-WWW-Google-SiteMap/distinfo (props changed) head/textproc/p5-WWW-Wordnik-API/distinfo (props changed) head/textproc/p5-WordNet-QueryData/distinfo (props changed) head/textproc/p5-WordNet-Similarity/distinfo (props changed) head/textproc/p5-XML-Atom-Ext-OpenSearch/distinfo (props changed) head/textproc/p5-XML-Atom-Filter/distinfo (props changed) head/textproc/p5-XML-Atom-SimpleFeed/distinfo (props changed) head/textproc/p5-XML-Atom-Stream/distinfo (props changed) head/textproc/p5-XML-Atom-Syndication/distinfo (props changed) head/textproc/p5-XML-Atom/distinfo (props changed) head/textproc/p5-XML-AutoWriter/distinfo (props changed) head/textproc/p5-XML-Canonical/distinfo (props changed) head/textproc/p5-XML-CanonicalizeXML/distinfo (props changed) head/textproc/p5-XML-Catalog/distinfo (props changed) head/textproc/p5-XML-Clean/distinfo (props changed) head/textproc/p5-XML-Code/distinfo (props changed) head/textproc/p5-XML-Compile-Dumper/distinfo (props changed) head/textproc/p5-XML-DBMS/distinfo (props changed) head/textproc/p5-XML-DOM-Lite/distinfo (props changed) head/textproc/p5-XML-DOM-XPath/distinfo (props changed) head/textproc/p5-XML-DOM/distinfo (props changed) head/textproc/p5-XML-DOM2/distinfo (props changed) head/textproc/p5-XML-DOMHandler/distinfo (props changed) head/textproc/p5-XML-DTDParser/distinfo (props changed) head/textproc/p5-XML-Descent/distinfo (props changed) head/textproc/p5-XML-DifferenceMarkup/distinfo (props changed) head/textproc/p5-XML-Directory/distinfo (props changed) head/textproc/p5-XML-DoubleEncodedEntities/distinfo (props changed) head/textproc/p5-XML-Driver-HTML/distinfo (props changed) head/textproc/p5-XML-Dumper/distinfo (props changed) head/textproc/p5-XML-Elemental/distinfo (props changed) head/textproc/p5-XML-Encoding/distinfo (props changed) head/textproc/p5-XML-Entities/distinfo (props changed) head/textproc/p5-XML-FOAF/distinfo (props changed) head/textproc/p5-XML-Feed-Deduper/distinfo (props changed) head/textproc/p5-XML-Feed/distinfo (props changed) head/textproc/p5-XML-FeedPP/distinfo (props changed) head/textproc/p5-XML-Filter-BufferText/distinfo (props changed) head/textproc/p5-XML-Filter-DOMFilter-LibXML/distinfo (props changed) head/textproc/p5-XML-Filter-DetectWS/distinfo (props changed) head/textproc/p5-XML-Filter-GenericChunk/distinfo (props changed) head/textproc/p5-XML-Filter-Reindent/distinfo (props changed) head/textproc/p5-XML-Filter-SAX1toSAX2/distinfo (props changed) head/textproc/p5-XML-Filter-SAXT/distinfo (props changed) head/textproc/p5-XML-Filter-XInclude/distinfo (props changed) head/textproc/p5-XML-Filter-XSLT/distinfo (props changed) head/textproc/p5-XML-Flow/distinfo (props changed) head/textproc/p5-XML-GDOME/distinfo (props changed) head/textproc/p5-XML-Generator-DBI/distinfo (props changed) head/textproc/p5-XML-Generator-PerlData/distinfo (props changed) head/textproc/p5-XML-Generator/distinfo (props changed) head/textproc/p5-XML-Grove/distinfo (props changed) head/textproc/p5-XML-Handler-Dtd2DocBook/distinfo (props changed) head/textproc/p5-XML-Handler-Dtd2Html/distinfo (props changed) head/textproc/p5-XML-Handler-HTMLWriter/distinfo (props changed) head/textproc/p5-XML-Handler-Trees/distinfo (props changed) head/textproc/p5-XML-Handler-YAWriter/distinfo (props changed) head/textproc/p5-XML-Hash-LX/distinfo (props changed) head/textproc/p5-XML-LibXML-Iterator/distinfo (props changed) head/textproc/p5-XML-LibXML-Simple/distinfo (props changed) head/textproc/p5-XML-Liberal/distinfo (props changed) head/textproc/p5-XML-Literal/distinfo (props changed) head/textproc/p5-XML-Mini/distinfo (props changed) head/textproc/p5-XML-MyXML/distinfo (props changed) head/textproc/p5-XML-NamespaceSupport/distinfo (props changed) head/textproc/p5-XML-Node/distinfo (props changed) head/textproc/p5-XML-NodeFilter/distinfo (props changed) head/textproc/p5-XML-OPML-LibXML/distinfo (props changed) head/textproc/p5-XML-OPML/distinfo (props changed) head/textproc/p5-XML-Parsepp/distinfo (props changed) head/textproc/p5-XML-Parser-EasyTree/distinfo (props changed) head/textproc/p5-XML-Parser-Lite-Tree/distinfo (props changed) head/textproc/p5-XML-Parser-Style-EasyTree/distinfo (props changed) head/textproc/p5-XML-Parser-Style-Elemental/distinfo (props changed) head/textproc/p5-XML-Parser/distinfo (props changed) head/textproc/p5-XML-Quote/distinfo (props changed) head/textproc/p5-XML-RAI/distinfo (props changed) head/textproc/p5-XML-RSS-LibXML/distinfo (props changed) head/textproc/p5-XML-RSS-Liberal/distinfo (props changed) head/textproc/p5-XML-RSS-Parser/distinfo (props changed) head/textproc/p5-XML-RSS-SimpleGen/distinfo (props changed) head/textproc/p5-XML-RSS/distinfo (props changed) head/textproc/p5-XML-RSSLite/distinfo (props changed) head/textproc/p5-XML-Reader/distinfo (props changed) head/textproc/p5-XML-RegExp/distinfo (props changed) head/textproc/p5-XML-Rewrite/distinfo (props changed) head/textproc/p5-XML-Rules/distinfo (props changed) head/textproc/p5-XML-SAX-Base/distinfo (props changed) head/textproc/p5-XML-SAX-Expat-Incremental/distinfo (props changed) head/textproc/p5-XML-SAX-Expat/distinfo (props changed) head/textproc/p5-XML-SAX-ExpatXS/distinfo (props changed) head/textproc/p5-XML-SAX-Machines/distinfo (props changed) head/textproc/p5-XML-SAX-Simple/distinfo (props changed) head/textproc/p5-XML-SAX/distinfo (props changed) head/textproc/p5-XML-SAXDriver-CSV/distinfo (props changed) head/textproc/p5-XML-SAXDriver-Excel/distinfo (props changed) head/textproc/p5-XML-STX/distinfo (props changed) head/textproc/p5-XML-Schematron/distinfo (props changed) head/textproc/p5-XML-SemanticDiff/distinfo (props changed) head/textproc/p5-XML-Simple/distinfo (props changed) head/textproc/p5-XML-SimpleObject-LibXML/distinfo (props changed) head/textproc/p5-XML-SimpleObject/distinfo (props changed) head/textproc/p5-XML-Stream/distinfo (props changed) head/textproc/p5-XML-Tiny/distinfo (props changed) head/textproc/p5-XML-TinyXML/distinfo (props changed) head/textproc/p5-XML-TokeParser/distinfo (props changed) head/textproc/p5-XML-Toolkit/distinfo (props changed) head/textproc/p5-XML-TreeBuilder/distinfo (props changed) head/textproc/p5-XML-Twig/distinfo (props changed) head/textproc/p5-XML-Validate/distinfo (props changed) head/textproc/p5-XML-Validator-Schema/distinfo (props changed) head/textproc/p5-XML-XBEL/distinfo (props changed) head/textproc/p5-XML-XML2JSON/distinfo (props changed) head/textproc/p5-XML-XPath/distinfo (props changed) head/textproc/p5-XML-XPathEngine/distinfo (props changed) head/textproc/p5-XML-XQL/distinfo (props changed) head/textproc/p5-XML-XSH/distinfo (props changed) head/textproc/p5-XML-XSLT/distinfo (props changed) head/textproc/p5-XML-XUpdate-LibXML/distinfo (props changed) head/textproc/p5-XML-Xerces/distinfo (props changed) head/textproc/p5-YAML-LibYAML/distinfo (props changed) head/textproc/p5-YAML-Shell/distinfo (props changed) head/textproc/p5-YAML-Tiny-Color/distinfo (props changed) head/textproc/p5-YAPE-HTML/distinfo (props changed) head/textproc/p5-YAPE-Regex-Explain/distinfo (props changed) head/textproc/p5-YAPE-Regex/distinfo (props changed) head/textproc/p5-dTemplate/distinfo (props changed) head/textproc/p5-libsoldout/distinfo (props changed) head/textproc/p5-libxml/distinfo (props changed) head/textproc/p5-pod2pdf/distinfo (props changed) head/textproc/p5-xmltv/distinfo (props changed) head/textproc/pa-aspell/distinfo (props changed) head/textproc/par/distinfo (props changed) head/textproc/pardiff/distinfo (props changed) head/textproc/pcrs/distinfo (props changed) head/textproc/pdfgrep/distinfo (props changed) head/textproc/pdftohtml/distinfo (props changed) head/textproc/pear-File_Fortune/distinfo (props changed) head/textproc/pear-File_MARC/distinfo (props changed) head/textproc/pear-Horde_Kolab_Format/distinfo (props changed) head/textproc/pear-Horde_Pdf/distinfo (props changed) head/textproc/pear-Horde_SpellChecker/distinfo (props changed) head/textproc/pear-Horde_Text_Diff/distinfo (props changed) head/textproc/pear-Horde_Text_Filter/distinfo (props changed) head/textproc/pear-Horde_Text_Filter_Csstidy/distinfo (props changed) head/textproc/pear-Horde_Text_Flowed/distinfo (props changed) head/textproc/pear-Horde_Xml_Element/distinfo (props changed) head/textproc/pear-Horde_Xml_Wbxml/distinfo (props changed) head/textproc/pear-Numbers_Roman/distinfo (props changed) head/textproc/pear-Numbers_Words/distinfo (props changed) head/textproc/pear-Structures_DataGrid_DataSource_RSS/distinfo (props changed) head/textproc/pear-Structures_DataGrid_DataSource_XML/distinfo (props changed) head/textproc/pear-Structures_DataGrid_Renderer_CSV/distinfo (props changed) head/textproc/pear-Structures_DataGrid_Renderer_XLS/distinfo (props changed) head/textproc/pear-Structures_DataGrid_Renderer_XML/distinfo (props changed) head/textproc/pear-Symfony_Component_Yaml/distinfo (props changed) head/textproc/pear-Text_Highlighter/distinfo (props changed) head/textproc/pear-XML_Beautifier/distinfo (props changed) head/textproc/pear-XML_DTD/distinfo (props changed) head/textproc/pear-XML_Feed_Parser/distinfo (props changed) head/textproc/pear-XML_HTMLSax/distinfo (props changed) head/textproc/pear-XML_Wddx/distinfo (props changed) head/textproc/pear-YAML/distinfo (props changed) head/textproc/pecl-ctemplate/distinfo (props changed) head/textproc/pecl-doublemetaphone/distinfo (props changed) head/textproc/pecl-enchant/distinfo (props changed) head/textproc/pecl-html_parse/distinfo (props changed) head/textproc/pecl-stem/distinfo (props changed) head/textproc/pecl-syck/distinfo (props changed) head/textproc/pecl-wbxml/distinfo (props changed) head/textproc/perl2html/distinfo (props changed) head/textproc/permute/distinfo (props changed) head/textproc/plover/distinfo (props changed) head/textproc/pocketreader/distinfo (props changed) head/textproc/pootle/distinfo (props changed) head/textproc/popup-stacks/distinfo (props changed) head/textproc/popup/distinfo (props changed) head/textproc/ppower4/distinfo (props changed) head/textproc/print-n-times/distinfo (props changed) head/textproc/prosper/distinfo (props changed) head/textproc/publican/distinfo (props changed) head/textproc/pure-csv/distinfo (props changed) head/textproc/pure-xml/distinfo (props changed) head/textproc/py-4suite-xml/distinfo (props changed) head/textproc/py-4suite/distinfo (props changed) head/textproc/py-Chameleon/distinfo (props changed) head/textproc/py-MarkupSafe/distinfo (props changed) head/textproc/py-Tempita/distinfo (props changed) head/textproc/py-asv/distinfo (props changed) head/textproc/py-chardet/distinfo (props changed) head/textproc/py-creole/distinfo (props changed) head/textproc/py-dsv/distinfo (props changed) head/textproc/py-elib.intl/distinfo (props changed) head/textproc/py-empy/distinfo (props changed) head/textproc/py-enchant/distinfo (props changed) head/textproc/py-errorhandler/distinfo (props changed) head/textproc/py-excelerator/distinfo (props changed) head/textproc/py-genshi-devel/distinfo (props changed) head/textproc/py-genshi/distinfo (props changed) head/textproc/py-gettext/distinfo (props changed) head/textproc/py-html2text/distinfo (props changed) head/textproc/py-hyperestraier-python/distinfo (props changed) head/textproc/py-jaxml/distinfo (props changed) head/textproc/py-libtre/distinfo (props changed) head/textproc/py-ltxml/distinfo (props changed) head/textproc/py-mako/distinfo (props changed) head/textproc/py-markdown/distinfo (props changed) head/textproc/py-markdown2/distinfo (props changed) head/textproc/py-paragrep/distinfo (props changed) head/textproc/py-pss/distinfo (props changed) head/textproc/py-pyctpp2/distinfo (props changed) head/textproc/py-pygments/distinfo (props changed) head/textproc/py-pystache/distinfo (props changed) head/textproc/py-pyx12/distinfo (props changed) head/textproc/py-reverend/distinfo (props changed) head/textproc/py-rss2gen/distinfo (props changed) head/textproc/py-rstyoutube/distinfo (props changed) head/textproc/py-rxp/distinfo (props changed) head/textproc/py-sgrep/distinfo (props changed) head/textproc/py-sphinx/distinfo (props changed) head/textproc/py-sphinxcontrib-bitbucket/distinfo (props changed) head/textproc/py-sphinxcontrib-httpdomain/distinfo (props changed) head/textproc/py-stripogram/distinfo (props changed) head/textproc/py-syck/distinfo (props changed) head/textproc/py-texttable/distinfo (props changed) head/textproc/py-trans/distinfo (props changed) head/textproc/py-translationstring/distinfo (props changed) head/textproc/py-tvgrab/distinfo (props changed) head/textproc/py-wicked/distinfo (props changed) head/textproc/py-wordnet/distinfo (props changed) head/textproc/py-wtforms/distinfo (props changed) head/textproc/py-xlrd/distinfo (props changed) head/textproc/py-xlwriter/distinfo (props changed) head/textproc/py-xlwt/distinfo (props changed) head/textproc/py-xml/distinfo (props changed) head/textproc/py-xmltools/distinfo (props changed) head/textproc/py-xmltv/distinfo (props changed) head/textproc/py-zope.app.i18n/distinfo (props changed) head/textproc/py-zope.app.locales/distinfo (props changed) head/textproc/py-zope.i18nmessageid/distinfo (props changed) head/textproc/py-zope.structuredtext/distinfo (props changed) head/textproc/py-zope.tal/distinfo (props changed) head/textproc/py-zpt/distinfo (props changed) head/textproc/py2html/distinfo (props changed) head/textproc/pybook/distinfo (props changed) head/textproc/pychm/distinfo (props changed) head/textproc/pystemmer/distinfo (props changed) head/textproc/qprint/distinfo (props changed) head/textproc/qu-aspell/distinfo (props changed) head/textproc/queequeg/distinfo (props changed) head/textproc/raptor/distinfo (props changed) head/textproc/rarian/distinfo (props changed) head/textproc/rast/distinfo (props changed) head/textproc/re_graph/distinfo (props changed) head/textproc/redet/distinfo (props changed) head/textproc/redland/distinfo (props changed) head/textproc/refdb/distinfo (props changed) head/textproc/reflex/distinfo (props changed) head/textproc/replaceit/distinfo (props changed) head/textproc/resume-extensions/distinfo (props changed) head/textproc/resume/distinfo (props changed) head/textproc/rfcdiff/distinfo (props changed) head/textproc/rl/distinfo (props changed) head/textproc/rman/distinfo (props changed) head/textproc/ro-aspell/distinfo (props changed) head/textproc/ro-mythes/distinfo (props changed) head/textproc/roap/distinfo (props changed) head/textproc/rot/distinfo (props changed) head/textproc/rss2html/distinfo (props changed) head/textproc/rtf2html/distinfo (props changed) head/textproc/rtfreader/distinfo (props changed) head/textproc/rtfx/distinfo (props changed) head/textproc/rubber/distinfo (props changed) head/textproc/ruby-amatch/distinfo (props changed) head/textproc/ruby-deplate/distinfo (props changed) head/textproc/ruby-diff/distinfo (props changed) head/textproc/ruby-escape/distinfo (props changed) head/textproc/ruby-format/distinfo (props changed) head/textproc/ruby-hikidoc/distinfo (props changed) head/textproc/ruby-html-fillinform/distinfo (props changed) head/textproc/ruby-html-template/distinfo (props changed) head/textproc/ruby-htmlrepair/distinfo (props changed) head/textproc/ruby-htmlsplit/distinfo (props changed) head/textproc/ruby-htree/distinfo (props changed) head/textproc/ruby-liquid/distinfo (props changed) head/textproc/ruby-rdtool/distinfo (props changed) head/textproc/ruby-rss.alt/distinfo (props changed) head/textproc/ruby-rss/distinfo (props changed) head/textproc/ruby-rttool/distinfo (props changed) head/textproc/ruby-sary/distinfo (props changed) head/textproc/ruby-xmlconfigfile/distinfo (props changed) head/textproc/ruby-xmlscan/distinfo (props changed) head/textproc/rubygem-albino/distinfo (props changed) head/textproc/rubygem-asciidoctor/distinfo (props changed) head/textproc/rubygem-charlock_holmes/distinfo (props changed) head/textproc/rubygem-coderay/distinfo (props changed) head/textproc/rubygem-colorator/distinfo (props changed) head/textproc/rubygem-colored/distinfo (props changed) head/textproc/rubygem-compass/distinfo (props changed) head/textproc/rubygem-cssmin/distinfo (props changed) head/textproc/rubygem-ezamar/distinfo (props changed) head/textproc/rubygem-gemoji/distinfo (props changed) head/textproc/rubygem-gherkin/distinfo (props changed) head/textproc/rubygem-github-markdown/distinfo (props changed) head/textproc/rubygem-gitlab-grit/distinfo (props changed) head/textproc/rubygem-heredoc_unindent/distinfo (props changed) head/textproc/rubygem-htmlentities/distinfo (props changed) head/textproc/rubygem-ini/distinfo (props changed) head/textproc/rubygem-itextomml/distinfo (props changed) head/textproc/rubygem-jsmin/distinfo (props changed) head/textproc/rubygem-kwalify/distinfo (props changed) head/textproc/rubygem-loggability/distinfo (props changed) head/textproc/rubygem-loofah/distinfo (props changed) head/textproc/rubygem-ltsv/distinfo (props changed) head/textproc/rubygem-opml/distinfo (props changed) head/textproc/rubygem-rdtool/distinfo (props changed) head/textproc/rubygem-rttool/distinfo (props changed) head/textproc/rubygem-stamp/distinfo (props changed) head/textproc/rubygem-syntax/distinfo (props changed) head/textproc/rubygem-termcolor/distinfo (props changed) head/textproc/rubygem-tidy/distinfo (props changed) head/textproc/rubygem-xslt/distinfo (props changed) head/textproc/rubygem-zmq/distinfo (props changed) head/textproc/rw-aspell/distinfo (props changed) head/textproc/rxp/distinfo (props changed) head/textproc/s5/distinfo (props changed) head/textproc/sablotron/distinfo (props changed) head/textproc/sagasu/distinfo (props changed) head/textproc/sarep/distinfo (props changed) head/textproc/sary/distinfo (props changed) head/textproc/saxon-devel/distinfo (props changed) head/textproc/saxon-he/distinfo (props changed) head/textproc/saxon/distinfo (props changed) head/textproc/sc-aspell/distinfo (props changed) head/textproc/scim-bridge-qt4/distinfo (props changed) head/textproc/scim-bridge/distinfo (props changed) head/textproc/scim-input-pad/distinfo (props changed) head/textproc/scim-kmfl-imengine/distinfo (props changed) head/textproc/scim-m17n/distinfo (props changed) head/textproc/scim-openvanilla/distinfo (props changed) head/textproc/scim-table-imengine/distinfo (props changed) head/textproc/scr2txt/distinfo (props changed) head/textproc/scrollkeeper/distinfo (props changed) head/textproc/scss/distinfo (props changed) head/textproc/sdcv/distinfo (props changed) head/textproc/sdf/distinfo (props changed) head/textproc/sdocbook-xml/distinfo (props changed) head/textproc/sdom/distinfo (props changed) head/textproc/senna/distinfo (props changed) head/textproc/sgmlformat/distinfo (props changed) head/textproc/sgmls/distinfo (props changed) head/textproc/sgmltools-lite/distinfo (props changed) head/textproc/sgrep/distinfo (props changed) head/textproc/sgrep2/distinfo (props changed) head/textproc/sigil/distinfo (props changed) head/textproc/silvercity/distinfo (props changed) head/textproc/simplehtmldom/distinfo (props changed) head/textproc/simplexml/distinfo (props changed) head/textproc/sk-aspell/distinfo (props changed) head/textproc/sk-hunspell/distinfo (props changed) head/textproc/sk-hyphen/distinfo (props changed) head/textproc/sl-aspell/distinfo (props changed) head/textproc/sl-hyphen/distinfo (props changed) head/textproc/slides/distinfo (props changed) head/textproc/sml-fxp/distinfo (props changed) head/textproc/smu/distinfo (props changed) head/textproc/so-hunspell/distinfo (props changed) head/textproc/soothsayer/distinfo (props changed) head/textproc/source-highlight/distinfo (props changed) head/textproc/sowing/distinfo (props changed) head/textproc/spellutils/distinfo (props changed) head/textproc/sphinxsearch-devel/distinfo (props changed) head/textproc/sq-hunspell/distinfo (props changed) head/textproc/sr-aspell/distinfo (props changed) head/textproc/sr-hunspell/distinfo (props changed) head/textproc/srilm/distinfo (props changed) head/textproc/ss-hunspell/distinfo (props changed) head/textproc/ssddiff/distinfo (props changed) head/textproc/stardict-BritannicaConcise/distinfo (props changed) head/textproc/stardict-MerrianWebster/distinfo (props changed) head/textproc/stardict-OxfordCollocation/distinfo (props changed) head/textproc/stardict-dict-fa_IR/distinfo (props changed) head/textproc/stardict-longman/distinfo (props changed) head/textproc/stardict-oald/distinfo (props changed) head/textproc/stardict-rptts/distinfo (props changed) head/textproc/supercat/distinfo (props changed) head/textproc/sv-aspell/distinfo (props changed) head/textproc/sv-hunspell/distinfo (props changed) head/textproc/sv-hyphen/distinfo (props changed) head/textproc/sv-mythes/distinfo (props changed) head/textproc/svn2cl/distinfo (props changed) head/textproc/sw-aspell/distinfo (props changed) head/textproc/sxml/distinfo (props changed) head/textproc/syck/distinfo (props changed) head/textproc/ta-aspell/distinfo (props changed) head/textproc/tdhkit/distinfo (props changed) head/textproc/te-aspell/distinfo (props changed) head/textproc/te-hunspell/distinfo (props changed) head/textproc/teckit/distinfo (props changed) head/textproc/tei-guidelines-p3/distinfo (props changed) head/textproc/tei-p3/distinfo (props changed) head/textproc/tet-aspell/distinfo (props changed) head/textproc/tex2im/distinfo (props changed) head/textproc/texi2db/distinfo (props changed) head/textproc/texi2html/distinfo (props changed) head/textproc/textogif/distinfo (props changed) head/textproc/ti-hunspell/distinfo (props changed) head/textproc/tidyp/distinfo (props changed) head/textproc/tinyxml/distinfo (props changed) head/textproc/tk-aspell/distinfo (props changed) head/textproc/tk-hunspell/distinfo (props changed) head/textproc/tkdiff/distinfo (props changed) head/textproc/tkxmlive/distinfo (props changed) head/textproc/tl-aspell/distinfo (props changed) head/textproc/tn-aspell/distinfo (props changed) head/textproc/tn-hunspell/distinfo (props changed) head/textproc/tnef2txt/distinfo (props changed) head/textproc/tokyodystopia/distinfo (props changed) head/textproc/tr-aspell/distinfo (props changed) head/textproc/trang/distinfo (props changed) head/textproc/translate-toolkit/distinfo (props changed) head/textproc/ts-hunspell/distinfo (props changed) head/textproc/tth/distinfo (props changed) head/textproc/txt2html/distinfo (props changed) head/textproc/txt2man/distinfo (props changed) head/textproc/txt2tags/distinfo (props changed) head/textproc/uml2svg/distinfo (props changed) head/textproc/uncrustify/distinfo (props changed) head/textproc/uni2ascii/distinfo (props changed) head/textproc/unroff/distinfo (props changed) head/textproc/urlview/distinfo (props changed) head/textproc/utf8proc/distinfo (props changed) head/textproc/uz-aspell/distinfo (props changed) head/textproc/uz-hunspell/distinfo (props changed) head/textproc/vbindiff/distinfo (props changed) head/textproc/ve-hunspell/distinfo (props changed) head/textproc/wa-aspell/distinfo (props changed) head/textproc/wa-hunspell/distinfo (props changed) head/textproc/wbxml2/distinfo (props changed) head/textproc/wdiff/distinfo (props changed) head/textproc/webcpp/distinfo (props changed) head/textproc/website/distinfo (props changed) head/textproc/weka/distinfo (props changed) head/textproc/word2x/distinfo (props changed) head/textproc/wordnet/distinfo (props changed) head/textproc/words/distinfo (props changed) head/textproc/wv/distinfo (props changed) head/textproc/wv2/distinfo (props changed) head/textproc/xalan-c/distinfo (props changed) head/textproc/xalan-j/distinfo (props changed) head/textproc/xerces-c2-devel/distinfo (props changed) head/textproc/xerces-c2/distinfo (props changed) head/textproc/xerces-c3/distinfo (props changed) head/textproc/xerces-j/distinfo (props changed) head/textproc/xh-hunspell/distinfo (props changed) head/textproc/xhtml-11/distinfo (props changed) head/textproc/xhtml-basic/distinfo (props changed) head/textproc/xhtml-modularization/distinfo (props changed) head/textproc/xhtml/distinfo (props changed) head/textproc/xhtml1-xsd/distinfo (props changed) head/textproc/xincluder/distinfo (props changed) head/textproc/xlhtml/distinfo (props changed) head/textproc/xlreader/distinfo (props changed) head/textproc/xml-commons/distinfo (props changed) head/textproc/xml-format/distinfo (props changed) head/textproc/xml-i18n-tools/distinfo (props changed) head/textproc/xml-lite.el/distinfo (props changed) head/textproc/xml-parse.el/distinfo (props changed) head/textproc/xml2/distinfo (props changed) head/textproc/xml2rfc/distinfo (props changed) head/textproc/xmlada/distinfo (props changed) head/textproc/xmlcatmgr/distinfo (props changed) head/textproc/xmlcharent/distinfo (props changed) head/textproc/xmldiff/distinfo (props changed) head/textproc/xmlenc/distinfo (props changed) head/textproc/xmlformat/distinfo (props changed) head/textproc/xmlgen/distinfo (props changed) head/textproc/xmlindent/distinfo (props changed) head/textproc/xmlppm/distinfo (props changed) head/textproc/xmlprpr/distinfo (props changed) head/textproc/xmlroff/distinfo (props changed) head/textproc/xmlstarlet/distinfo (props changed) head/textproc/xom/distinfo (props changed) head/textproc/xp/distinfo (props changed) head/textproc/xqilla/distinfo (props changed) head/textproc/xslide.el/distinfo (props changed) head/textproc/xslint/distinfo (props changed) head/textproc/xstream/distinfo (props changed) head/textproc/xt/distinfo (props changed) head/textproc/y2l/distinfo (props changed) head/textproc/yali/distinfo (props changed) head/textproc/yamcha/distinfo (props changed) head/textproc/yaml-mode.el/distinfo (props changed) head/textproc/yi-aspell/distinfo (props changed) head/textproc/yi-hunspell/distinfo (props changed) head/textproc/yodl/distinfo (props changed) head/textproc/yould/distinfo (props changed) head/textproc/zu-aspell/distinfo (props changed) head/textproc/zu-hunspell/distinfo (props changed) head/ukrainian/aspell/distinfo (props changed) head/ukrainian/hyphen/distinfo (props changed) head/ukrainian/ispell/distinfo (props changed) head/ukrainian/libreoffice/distinfo (props changed) head/ukrainian/monacofonts/distinfo (props changed) head/vietnamese/aspell/distinfo (props changed) head/vietnamese/hunspell/distinfo (props changed) head/vietnamese/libreoffice/distinfo (props changed) head/vietnamese/libviet/distinfo (props changed) head/vietnamese/unicode-uhoai/distinfo (props changed) head/vietnamese/urwvn/distinfo (props changed) head/vietnamese/vietunicode-hannom/distinfo (props changed) head/vietnamese/vietunicode-trichlor/distinfo (props changed) head/vietnamese/vietunicode-web1/distinfo (props changed) head/vietnamese/vis2u/distinfo (props changed) head/vietnamese/vn7to8/distinfo (props changed) head/vietnamese/vnconvert/distinfo (props changed) head/vietnamese/vnless/distinfo (props changed) head/vietnamese/vnlpr/distinfo (props changed) head/vietnamese/vnpstext/distinfo (props changed) head/vietnamese/vnroff/distinfo (props changed) head/vietnamese/vntex/distinfo (props changed) head/vietnamese/vnxfonts/distinfo (props changed) head/vietnamese/x-unikey/distinfo (props changed) head/vietnamese/xvnkb/distinfo (props changed) head/www/R-cran-RgoogleMaps/distinfo (props changed) head/www/R-cran-Rpad/distinfo (props changed) head/www/R-cran-httpuv/distinfo (props changed) head/www/R-cran-scrapeR/distinfo (props changed) head/www/R-cran-shiny/distinfo (props changed) head/www/WebMagick/distinfo (props changed) head/www/abyssws/distinfo (props changed) head/www/admuser/distinfo (props changed) head/www/adzap/distinfo (props changed) head/www/amphetadesk/distinfo (props changed) head/www/analog/distinfo (props changed) head/www/anyremote2html/distinfo (props changed) head/www/anyterm/distinfo (props changed) head/www/aolserver/distinfo (props changed) head/www/apache-forrest/distinfo (props changed) head/www/apache-mode.el/distinfo (props changed) head/www/apercu/distinfo (props changed) head/www/aria/distinfo (props changed) head/www/aria2fe/distinfo (props changed) head/www/arora/distinfo (props changed) head/www/asp2php/distinfo (props changed) head/www/asql/distinfo (props changed) head/www/asterisk-stat/distinfo (props changed) head/www/aswedit/distinfo (props changed) head/www/atutor/distinfo (props changed) head/www/august/distinfo (props changed) head/www/autoindex2/distinfo (props changed) head/www/awffull/distinfo (props changed) head/www/aws-demos/distinfo (props changed) head/www/aws/distinfo (props changed) head/www/axis/distinfo (props changed) head/www/axis2/distinfo (props changed) head/www/b2evolution/distinfo (props changed) head/www/bacula-web/distinfo (props changed) head/www/baikal/distinfo (props changed) head/www/bannerfilter/distinfo (props changed) head/www/bblog/distinfo (props changed) head/www/bigbluebutton/distinfo (props changed) head/www/bins/distinfo (props changed) head/www/bk2site/distinfo (props changed) head/www/bkmrkconv/distinfo (props changed) head/www/blogsum/distinfo (props changed) head/www/bluefish-devel/distinfo (props changed) head/www/bluefish/distinfo (props changed) head/www/boa/distinfo (props changed) head/www/bookmarkbridge/distinfo (props changed) head/www/bugmenot-firefox/distinfo (props changed) head/www/c-icap-modules/distinfo (props changed) head/www/c-icap/distinfo (props changed) head/www/cacheboy16/distinfo (props changed) head/www/cadaver/distinfo (props changed) head/www/cakephp11/distinfo (props changed) head/www/cakephp12/distinfo (props changed) head/www/cakephp21/distinfo (props changed) head/www/calamaris/distinfo (props changed) head/www/cas/distinfo (props changed) head/www/castget/distinfo (props changed) head/www/caudium14/distinfo (props changed) head/www/cblog/distinfo (props changed) head/www/cgi-lib.pl/distinfo (props changed) head/www/cgi-lib/distinfo (props changed) head/www/cgic/distinfo (props changed) head/www/cgichk/distinfo (props changed) head/www/cgihtml/distinfo (props changed) head/www/cgiparse/distinfo (props changed) head/www/cgiwrap/distinfo (props changed) head/www/checkbot/distinfo (props changed) head/www/chems/distinfo (props changed) head/www/cherokee/distinfo (props changed) head/www/chimera/distinfo (props changed) head/www/choqok/distinfo (props changed) head/www/chpasswd/distinfo (props changed) head/www/chtml/distinfo (props changed) head/www/ckeditor/distinfo (props changed) head/www/cl-lml/distinfo (props changed) head/www/claroline/distinfo (props changed) head/www/clearsilver/distinfo (props changed) head/www/closure-compiler/distinfo (props changed) head/www/closure-linter/distinfo (props changed) head/www/cmsmadesimple/distinfo (props changed) head/www/cntlm/distinfo (props changed) head/www/cocoon/distinfo (props changed) head/www/comclear/distinfo (props changed) head/www/cowboy/distinfo (props changed) head/www/cplanet/distinfo (props changed) head/www/crawl/distinfo (props changed) head/www/crp/distinfo (props changed) head/www/css-mode.el/distinfo (props changed) head/www/cssed/distinfo (props changed) head/www/csso/distinfo (props changed) head/www/csstidy/distinfo (props changed) head/www/ctemplate/distinfo (props changed) head/www/cutycapt/distinfo (props changed) head/www/dalbum/distinfo (props changed) head/www/dansguardian/distinfo (props changed) head/www/decss/distinfo (props changed) head/www/demoroniser/distinfo (props changed) head/www/dfileserver/distinfo (props changed) head/www/dhttpd/distinfo (props changed) head/www/diamanda/distinfo (props changed) head/www/docebo/distinfo (props changed) head/www/dojo-shrinksafe/distinfo (props changed) head/www/dojo/distinfo (props changed) head/www/dokeos/distinfo (props changed) head/www/dokuwiki/distinfo (props changed) head/www/dotclear/distinfo (props changed) head/www/dotproject/distinfo (props changed) head/www/download-gemist/distinfo (props changed) head/www/dpsearch/distinfo (props changed) head/www/drraw/distinfo (props changed) head/www/drupal6-advanced_help/distinfo (props changed) head/www/drupal6-cck/distinfo (props changed) head/www/drupal6-chaos/distinfo (props changed) head/www/drupal6-ckeditor/distinfo (props changed) head/www/drupal6-content_access/distinfo (props changed) head/www/drupal6-geshifilter/distinfo (props changed) head/www/drupal6-image/distinfo (props changed) head/www/drupal6-imce/distinfo (props changed) head/www/drupal6-mimedetect/distinfo (props changed) head/www/drupal6-panels/distinfo (props changed) head/www/drupal6-print/distinfo (props changed) head/www/drupal6-services/distinfo (props changed) head/www/drupal6-tagadelic/distinfo (props changed) head/www/drupal6-token/distinfo (props changed) head/www/drupal6-views/distinfo (props changed) head/www/drupal6-webform/distinfo (props changed) head/www/drupal6-wysiwyg/distinfo (props changed) head/www/drupal6-zeropoint/distinfo (props changed) head/www/drupal7-vulnscan/distinfo (props changed) head/www/drupal7-wysiwyg/distinfo (props changed) head/www/dtse/distinfo (props changed) head/www/dummyflash/distinfo (props changed) head/www/dwoo/distinfo (props changed) head/www/e107/distinfo (props changed) head/www/eaccelerator/distinfo (props changed) head/www/efront/distinfo (props changed) head/www/eldav.el/distinfo (props changed) head/www/elgg/distinfo (props changed) head/www/elinks/distinfo (props changed) head/www/elog/distinfo (props changed) head/www/emacs-w3m/distinfo (props changed) head/www/encode-explorer/distinfo (props changed) head/www/entrans/distinfo (props changed) head/www/ephemera/distinfo (props changed) head/www/epiphany-extensions/distinfo (props changed) head/www/epiphany/distinfo (props changed) head/www/erwn/distinfo (props changed) head/www/eventum/distinfo (props changed) head/www/evolution-webcal/distinfo (props changed) head/www/extsm/distinfo (props changed) head/www/eyeos-themes/distinfo (props changed) head/www/eyeos/distinfo (props changed) head/www/fancybox/distinfo (props changed) head/www/fcgi/distinfo (props changed) head/www/fcgiwrap/distinfo (props changed) head/www/feedjack/distinfo (props changed) head/www/feedonfeeds/distinfo (props changed) head/www/ffproxy/distinfo (props changed) head/www/fhttpd/distinfo (props changed) head/www/fira-webfont/distinfo (props changed) head/www/firefox-remote/distinfo (props changed) head/www/flat-frog/distinfo (props changed) head/www/flood/distinfo (props changed) head/www/flot/distinfo (props changed) head/www/fluxbb/distinfo (props changed) head/www/fluxcms/distinfo (props changed) head/www/fnord/distinfo (props changed) head/www/formication/distinfo (props changed) head/www/foswiki-ModPerlEngineContrib/distinfo (props changed) head/www/foswiki/distinfo (props changed) head/www/free-sa-devel/distinfo (props changed) head/www/free-sa/distinfo (props changed) head/www/freeway/distinfo (props changed) head/www/fswiki/distinfo (props changed) head/www/ftasv/distinfo (props changed) head/www/fusionpbx/distinfo (props changed) head/www/g-cows/distinfo (props changed) head/www/g-gcl/distinfo (props changed) head/www/gaeo/distinfo (props changed) head/www/gaeutilities/distinfo (props changed) head/www/gallery/distinfo (props changed) head/www/gallery2/distinfo (props changed) head/www/gatling/distinfo (props changed) head/www/gecko-sharp20/distinfo (props changed) head/www/geeklog/distinfo (props changed) head/www/geronimo/distinfo (props changed) head/www/get_flash_videos/distinfo (props changed) head/www/getleft/distinfo (props changed) head/www/gist/distinfo (props changed) head/www/gnome-user-share/distinfo (props changed) head/www/gnome-web-photo/distinfo (props changed) head/www/google-sitemapgen/distinfo (props changed) head/www/goose/distinfo (props changed) head/www/grails/distinfo (props changed) head/www/gregarius/distinfo (props changed) head/www/groupoffice/distinfo (props changed) head/www/grr/distinfo (props changed) head/www/gtkhtml3/distinfo (props changed) head/www/guile-www/distinfo (props changed) head/www/gurlchecker/distinfo (props changed) head/www/harvest/distinfo (props changed) head/www/hastymail/distinfo (props changed) head/www/hastymail2-devel/distinfo (props changed) head/www/havp/distinfo (props changed) head/www/helma/distinfo (props changed) head/www/hiawatha/distinfo (props changed) head/www/hinventory-client/distinfo (props changed) head/www/horde-ansel/distinfo (props changed) head/www/horde-base/distinfo (props changed) head/www/horde-passwd/distinfo (props changed) head/www/horde-trean/distinfo (props changed) head/www/horde-wicked/distinfo (props changed) head/www/horde3-ansel/distinfo (props changed) head/www/horde3-base/distinfo (props changed) head/www/horde3-passwd/distinfo (props changed) head/www/horde3-trean/distinfo (props changed) head/www/horde3-wicked/distinfo (props changed) head/www/hotcrp/distinfo (props changed) head/www/hs-HTTP/distinfo (props changed) head/www/hs-authenticate/distinfo (props changed) head/www/hs-cgi/distinfo (props changed) head/www/hs-cookie/distinfo (props changed) head/www/hs-css-text/distinfo (props changed) head/www/hs-fastcgi/distinfo (props changed) head/www/hs-gitit/distinfo (props changed) head/www/hs-hS3/distinfo (props changed) head/www/hs-hamlet/distinfo (props changed) head/www/hs-happstack-server/distinfo (props changed) head/www/hs-happstack/distinfo (props changed) head/www/hs-heist/distinfo (props changed) head/www/hs-hjsmin/distinfo (props changed) head/www/hs-http-conduit/distinfo (props changed) head/www/hs-http-date/distinfo (props changed) head/www/hs-http-server/distinfo (props changed) head/www/hs-http-types/distinfo (props changed) head/www/hs-oeis/distinfo (props changed) head/www/hs-path-pieces/distinfo (props changed) head/www/hs-recaptcha/distinfo (props changed) head/www/hs-scgi/distinfo (props changed) head/www/hs-shakespeare-css/distinfo (props changed) head/www/hs-shakespeare-i18n/distinfo (props changed) head/www/hs-shakespeare-js/distinfo (props changed) head/www/hs-shakespeare-text/distinfo (props changed) head/www/hs-shakespeare/distinfo (props changed) head/www/hs-snap-core/distinfo (props changed) head/www/hs-snap-server/distinfo (props changed) head/www/hs-snap/distinfo (props changed) head/www/hs-url/distinfo (props changed) head/www/hs-wai-app-static/distinfo (props changed) head/www/hs-wai-extra/distinfo (props changed) head/www/hs-wai-logger/distinfo (props changed) head/www/hs-wai-test/distinfo (props changed) head/www/hs-wai/distinfo (props changed) head/www/hs-warp/distinfo (props changed) head/www/hs-webkit/distinfo (props changed) head/www/hs-xss-sanitize/distinfo (props changed) head/www/hs-yesod-auth/distinfo (props changed) head/www/hs-yesod-core/distinfo (props changed) head/www/hs-yesod-form/distinfo (props changed) head/www/hs-yesod-persistent/distinfo (props changed) head/www/hs-yesod-platform/distinfo (props changed) head/www/hs-yesod-routes/distinfo (props changed) head/www/hs-yesod-static/distinfo (props changed) head/www/hs-yesod-test/distinfo (props changed) head/www/hs-yesod/distinfo (props changed) head/www/htdigest/distinfo (props changed) head/www/html2hdml/distinfo (props changed) head/www/html2wml/distinfo (props changed) head/www/htmlcxx/distinfo (props changed) head/www/htmlobject/distinfo (props changed) head/www/htmlpp/distinfo (props changed) head/www/httest/distinfo (props changed) head/www/http_get/distinfo (props changed) head/www/http_load/distinfo (props changed) head/www/http_post/distinfo (props changed) head/www/httpclient/distinfo (props changed) head/www/httpcore/distinfo (props changed) head/www/httpsqs/distinfo (props changed) head/www/httptunnel/distinfo (props changed) head/www/hudson/distinfo (props changed) head/www/hydra/distinfo (props changed) head/www/hypermail/distinfo (props changed) head/www/igal2/distinfo (props changed) head/www/ikiwiki/distinfo (props changed) head/www/ilias/distinfo (props changed) head/www/imgsizer/distinfo (props changed) head/www/impresscms/distinfo (props changed) head/www/interchange/distinfo (props changed) head/www/ismail/distinfo (props changed) head/www/iwebcal/distinfo (props changed) head/www/jawstats/distinfo (props changed) head/www/jdresolve/distinfo (props changed) head/www/jericho-html/distinfo (props changed) head/www/jesred/distinfo (props changed) head/www/jetty/distinfo (props changed) head/www/jinzora/distinfo (props changed) head/www/jmeter/distinfo (props changed) head/www/joomla15/distinfo (props changed) head/www/jspacker/distinfo (props changed) head/www/jspwiki/distinfo (props changed) head/www/jtoolkit/distinfo (props changed) head/www/junkbuster/distinfo (props changed) head/www/kannel/distinfo (props changed) head/www/kpartsplugin/distinfo (props changed) head/www/kplaylist/distinfo (props changed) head/www/larbin/distinfo (props changed) head/www/libapreq2/distinfo (props changed) head/www/libepc/distinfo (props changed) head/www/libgtkhtml/distinfo (props changed) head/www/libwww/distinfo (props changed) head/www/lifetype/distinfo (props changed) head/www/lightsquid/distinfo (props changed) head/www/lilurl/distinfo (props changed) head/www/limesurvey/distinfo (props changed) head/www/linkcheck/distinfo (props changed) head/www/linklint/distinfo (props changed) head/www/links-hacked/distinfo (props changed) head/www/links1/distinfo (props changed) head/www/linux-libgtkembedmoz/distinfo (props changed) head/www/linux-mplayer-plugin/distinfo.i386 (props changed) head/www/linux-opera-devel/distinfo (props changed) head/www/linux-opera/distinfo (props changed) head/www/lionwiki/distinfo (props changed) head/www/ljdump/distinfo (props changed) head/www/llgal/distinfo (props changed) head/www/logtools/distinfo (props changed) head/www/luakit/distinfo (props changed) head/www/lusca-head/distinfo (props changed) head/www/lynx-current/distinfo (props changed) head/www/lynx/distinfo (props changed) head/www/magento/distinfo (props changed) head/www/mahara/distinfo (props changed) head/www/mambo/distinfo (props changed) head/www/man2web/distinfo (props changed) head/www/mathjax/distinfo (props changed) head/www/mathopd/distinfo (props changed) head/www/mediawiki119/distinfo (props changed) head/www/mergelog/distinfo (props changed) head/www/metacafe_dl/distinfo (props changed) head/www/mgstat/distinfo (props changed) head/www/mhonarc/distinfo (props changed) head/www/micro_httpd/distinfo (props changed) head/www/middleman/distinfo (props changed) head/www/mini_httpd/distinfo (props changed) head/www/mkapachepw/distinfo (props changed) head/www/mknmz-wwwoffle/distinfo (props changed) head/www/mnogosearch/distinfo (props changed) head/www/mochiweb-basho/distinfo (props changed) head/www/mochiweb/distinfo (props changed) head/www/mod_amazon_proxy/distinfo (props changed) head/www/mod_antiloris/distinfo (props changed) head/www/mod_asn/distinfo (props changed) head/www/mod_auth_cas/distinfo (props changed) head/www/mod_auth_cookie_mysql2/distinfo (props changed) head/www/mod_auth_external2/distinfo (props changed) head/www/mod_auth_form/distinfo (props changed) head/www/mod_auth_imap2/distinfo (props changed) head/www/mod_auth_kerb2/distinfo (props changed) head/www/mod_auth_mellon/distinfo (props changed) head/www/mod_auth_mysql2/distinfo (props changed) head/www/mod_auth_mysql_another/distinfo (props changed) head/www/mod_auth_openid/distinfo (props changed) head/www/mod_auth_pam2/distinfo (props changed) head/www/mod_auth_pgsql2/distinfo (props changed) head/www/mod_auth_pubtkt/distinfo (props changed) head/www/mod_auth_tkt/distinfo (props changed) head/www/mod_auth_xradius/distinfo (props changed) head/www/mod_authn_otp/distinfo (props changed) head/www/mod_authn_sasl/distinfo (props changed) head/www/mod_authnz_external22/distinfo (props changed) head/www/mod_authnz_external24/distinfo (props changed) head/www/mod_authz_unixgroup/distinfo (props changed) head/www/mod_backtrace/distinfo (props changed) head/www/mod_bw/distinfo (props changed) head/www/mod_cband/distinfo (props changed) head/www/mod_cfg_ldap/distinfo (props changed) head/www/mod_chroot/distinfo (props changed) head/www/mod_clamav/distinfo (props changed) head/www/mod_cplusplus/distinfo (props changed) head/www/mod_cvs2/distinfo (props changed) head/www/mod_dnssd/distinfo (props changed) head/www/mod_domaintree/distinfo (props changed) head/www/mod_encoding/distinfo (props changed) head/www/mod_evasive/distinfo (props changed) head/www/mod_extract_forwarded/distinfo (props changed) head/www/mod_fastcgi/distinfo (props changed) head/www/mod_fcgid/distinfo (props changed) head/www/mod_fileiri/distinfo (props changed) head/www/mod_flickr/distinfo (props changed) head/www/mod_ftp/distinfo (props changed) head/www/mod_gnutls/distinfo (props changed) head/www/mod_gzip2/distinfo (props changed) head/www/mod_h264_streaming/distinfo (props changed) head/www/mod_hosts_access/distinfo (props changed) head/www/mod_jail/distinfo (props changed) head/www/mod_jk/distinfo (props changed) head/www/mod_layout22/distinfo (props changed) head/www/mod_limitipconn2/distinfo (props changed) head/www/mod_line_edit/distinfo (props changed) head/www/mod_log_dbd/distinfo (props changed) head/www/mod_log_firstbyte/distinfo (props changed) head/www/mod_log_sql2-dtc/distinfo (props changed) head/www/mod_log_sql2/distinfo (props changed) head/www/mod_macro22/distinfo (props changed) head/www/mod_memcache/distinfo (props changed) head/www/mod_memcache_block/distinfo (props changed) head/www/mod_mono/distinfo (props changed) head/www/mod_musicindex/distinfo (props changed) head/www/mod_myvhost/distinfo (props changed) head/www/mod_ntlm2/distinfo (props changed) head/www/mod_perl2/distinfo (props changed) head/www/mod_proctitle/distinfo (props changed) head/www/mod_proxy_html/distinfo (props changed) head/www/mod_proxy_xml/distinfo (props changed) head/www/mod_python3/distinfo (props changed) head/www/mod_remoteip/distinfo (props changed) head/www/mod_reproxy/distinfo (props changed) head/www/mod_rpaf2/distinfo (props changed) head/www/mod_ruby/distinfo (props changed) head/www/mod_scgi/distinfo (props changed) head/www/mod_setenvifplus/distinfo (props changed) head/www/mod_tidy/distinfo (props changed) head/www/mod_tsa/distinfo (props changed) head/www/mod_uid/distinfo (props changed) head/www/mod_umask/distinfo (props changed) head/www/mod_vhost_ldap/distinfo (props changed) head/www/mod_vhs/distinfo (props changed) head/www/mod_webkit/distinfo (props changed) head/www/mod_whatkilledus/distinfo (props changed) head/www/mod_wsgi2/distinfo (props changed) head/www/mod_wsgi3/distinfo (props changed) head/www/mod_xml2enc/distinfo (props changed) head/www/mod_xmlns/distinfo (props changed) head/www/mod_xsendfile/distinfo (props changed) head/www/moinmoin/distinfo (props changed) head/www/monast/distinfo (props changed) head/www/mongrel2/distinfo (props changed) head/www/moodle/distinfo (props changed) head/www/multisort/distinfo (props changed) head/www/multiwatch/distinfo (props changed) head/www/myfaces/distinfo (props changed) head/www/mysar/distinfo (props changed) head/www/mysqlphp2postgres/distinfo (props changed) head/www/nanoblogger-extra/distinfo (props changed) head/www/nanoblogger/distinfo (props changed) head/www/nd/distinfo (props changed) head/www/neon29/distinfo (props changed) head/www/netoffice/distinfo (props changed) head/www/netrik/distinfo (props changed) head/www/netstiff/distinfo (props changed) head/www/newsbeuter/distinfo (props changed) head/www/nibbleblog/distinfo (props changed) head/www/nostromo/distinfo (props changed) head/www/npapi-xine/distinfo (props changed) head/www/npc/distinfo (props changed) head/www/nscache/distinfo (props changed) head/www/nspluginwrapper/distinfo (props changed) head/www/ocaml-net/distinfo (props changed) head/www/ocsigen/distinfo (props changed) head/www/ojs2/distinfo (props changed) head/www/ompload/distinfo (props changed) head/www/oops/distinfo (props changed) head/www/openacs-dotlrn/distinfo (props changed) head/www/openacs/distinfo (props changed) head/www/opencart/distinfo (props changed) head/www/openvrml/distinfo (props changed) head/www/openx/distinfo (props changed) head/www/openxmldir/distinfo (props changed) head/www/opera-devel/distinfo (props changed) head/www/opera-linuxplugins/distinfo (props changed) head/www/opera/distinfo (props changed) head/www/orangehrm/distinfo (props changed) head/www/oscommerce/distinfo (props changed) head/www/owncloud/distinfo (props changed) head/www/p5-AMF-Perl/distinfo (props changed) head/www/p5-Acme-Monta/distinfo (props changed) head/www/p5-Amon2-Lite/distinfo (props changed) head/www/p5-Amon2-Plugin-LogDispatch/distinfo (props changed) head/www/p5-Amon2-Plugin-Web-MobileAgent/distinfo (props changed) head/www/p5-Amon2/distinfo (props changed) head/www/p5-Any-Template/distinfo (props changed) head/www/p5-AnyEvent-HTTP-LWP-UserAgent/distinfo (props changed) head/www/p5-AnyEvent-HTTP/distinfo (props changed) head/www/p5-AnyEvent-HTTPD/distinfo (props changed) head/www/p5-AnyEvent-Mojo/distinfo (props changed) head/www/p5-AnyEvent-ReverseHTTP/distinfo (props changed) head/www/p5-AnyEvent-SCGI/distinfo (props changed) head/www/p5-Apache-Admin-Config/distinfo (props changed) head/www/p5-Apache-AuthTicket/distinfo (props changed) head/www/p5-Apache-Clean2/distinfo (props changed) head/www/p5-Apache-ConfigFile/distinfo (props changed) head/www/p5-Apache-ConfigParser/distinfo (props changed) head/www/p5-Apache-DB/distinfo (props changed) head/www/p5-Apache-Gallery/distinfo (props changed) head/www/p5-Apache-Htgroup/distinfo (props changed) head/www/p5-Apache-LogFormat-Compiler/distinfo (props changed) head/www/p5-Apache-MP3/distinfo (props changed) head/www/p5-Apache-ParseFormData/distinfo (props changed) head/www/p5-Apache-Profiler/distinfo (props changed) head/www/p5-Apache-Session-PHP/distinfo (props changed) head/www/p5-Apache-Session-SQLite3/distinfo (props changed) head/www/p5-Apache-Session-SharedMem/distinfo (props changed) head/www/p5-Apache-Session-Wrapper/distinfo (props changed) head/www/p5-Apache-Session/distinfo (props changed) head/www/p5-Apache-SessionX/distinfo (props changed) head/www/p5-Apache-Singleton/distinfo (props changed) head/www/p5-Apache2-SiteControl/distinfo (props changed) head/www/p5-Ark/distinfo (props changed) head/www/p5-Bigtop/distinfo (props changed) head/www/p5-Blog-Spam/distinfo (props changed) head/www/p5-Business-PayPal/distinfo (props changed) head/www/p5-CGI-Ajax/distinfo (props changed) head/www/p5-CGI-Application-Dispatch-Server/distinfo (props changed) head/www/p5-CGI-Application-PSGI/distinfo (props changed) head/www/p5-CGI-Application-Plugin-AnyTemplate/distinfo (props changed) head/www/p5-CGI-Application-Plugin-Apache/distinfo (props changed) head/www/p5-CGI-Application-Plugin-Authentication/distinfo (props changed) head/www/p5-CGI-Application-Plugin-Authorization/distinfo (props changed) head/www/p5-CGI-Application-Plugin-AutoRunmode/distinfo (props changed) head/www/p5-CGI-Application-Plugin-Config-YAML/distinfo (props changed) head/www/p5-CGI-Application-Plugin-ConfigAuto/distinfo (props changed) head/www/p5-CGI-Application-Plugin-DebugScreen/distinfo (props changed) head/www/p5-CGI-Application-Plugin-DevPopup/distinfo (props changed) head/www/p5-CGI-Application-Plugin-Forward/distinfo (props changed) head/www/p5-CGI-Application-Plugin-HTDot/distinfo (props changed) head/www/p5-CGI-Application-Plugin-HTMLPrototype/distinfo (props changed) head/www/p5-CGI-Application-Plugin-HtmlTidy/distinfo (props changed) head/www/p5-CGI-Application-Plugin-JSON/distinfo (props changed) head/www/p5-CGI-Application-Plugin-LinkIntegrity/distinfo (props changed) head/www/p5-CGI-Application-Plugin-LogDispatch/distinfo (props changed) head/www/p5-CGI-Application-Plugin-MessageStack/distinfo (props changed) head/www/p5-CGI-Application-Plugin-Redirect/distinfo (props changed) head/www/p5-CGI-Application-Plugin-TT/distinfo (props changed) head/www/p5-CGI-Application-Plugin-ValidateRM/distinfo (props changed) head/www/p5-CGI-Application-Plugin-ViewCode/distinfo (props changed) head/www/p5-CGI-Application-Server/distinfo (props changed) head/www/p5-CGI-Application/distinfo (props changed) head/www/p5-CGI-ArgChecker/distinfo (props changed) head/www/p5-CGI-Builder-TT2/distinfo (props changed) head/www/p5-CGI-Builder/distinfo (props changed) head/www/p5-CGI-Cache/distinfo (props changed) head/www/p5-CGI-Compile/distinfo (props changed) head/www/p5-CGI-Compress-Gzip/distinfo (props changed) head/www/p5-CGI-Cookie-Splitter/distinfo (props changed) head/www/p5-CGI-Cookie-XS/distinfo (props changed) head/www/p5-CGI-Deurl-XS/distinfo (props changed) head/www/p5-CGI-Emulate-PSGI/distinfo (props changed) head/www/p5-CGI-EncryptForm/distinfo (props changed) head/www/p5-CGI-Enurl/distinfo (props changed) head/www/p5-CGI-Ex/distinfo (props changed) head/www/p5-CGI-FCKeditor/distinfo (props changed) head/www/p5-CGI-FastTemplate/distinfo (props changed) head/www/p5-CGI-Framework/distinfo (props changed) head/www/p5-CGI-Kwiki/distinfo (props changed) head/www/p5-CGI-Minimal/distinfo (props changed) head/www/p5-CGI-PSGI/distinfo (props changed) head/www/p5-CGI-Pager/distinfo (props changed) head/www/p5-CGI-Prototype/distinfo (props changed) head/www/p5-CGI-Response/distinfo (props changed) head/www/p5-CGI-SSI/distinfo (props changed) head/www/p5-CGI-Session-ExpireSessions/distinfo (props changed) head/www/p5-CGI-Session/distinfo (props changed) head/www/p5-CGI-Simple/distinfo (props changed) head/www/p5-CGI-SpeedyCGI/distinfo (props changed) head/www/p5-CGI-Thin/distinfo (props changed) head/www/p5-CGI-Untaint-date/distinfo (props changed) head/www/p5-CGI-Untaint-email/distinfo (props changed) head/www/p5-CGI-Untaint/distinfo (props changed) head/www/p5-CGI-Upload/distinfo (props changed) head/www/p5-CGI-Utils/distinfo (props changed) head/www/p5-CGI-XMLApplication/distinfo (props changed) head/www/p5-CGI-modules/distinfo (props changed) head/www/p5-CGI.pm/distinfo (props changed) head/www/p5-CGI_Lite/distinfo (props changed) head/www/p5-CIF-Client/distinfo (props changed) head/www/p5-CSS-DOM/distinfo (props changed) head/www/p5-Catalyst-Action-RenderView/distinfo (props changed) head/www/p5-Catalyst-ActionRole-ACL/distinfo (props changed) head/www/p5-Catalyst-Authentication-Credential-HTTP/distinfo (props changed) head/www/p5-Catalyst-Authentication-Store-LDAP/distinfo (props changed) head/www/p5-Catalyst-Component-ACCEPT_CONTEXT/distinfo (props changed) head/www/p5-Catalyst-Component-InstancePerContext/distinfo (props changed) head/www/p5-Catalyst-Controller-ActionRole/distinfo (props changed) head/www/p5-Catalyst-Controller-BindLex/distinfo (props changed) head/www/p5-Catalyst-Controller-FormBuilder/distinfo (props changed) head/www/p5-Catalyst-Controller-RateLimit/distinfo (props changed) head/www/p5-Catalyst-Controller-RequestToken/distinfo (props changed) head/www/p5-Catalyst-Engine-Apache/distinfo (props changed) head/www/p5-Catalyst-Engine-HTTP-Prefork/distinfo (props changed) head/www/p5-Catalyst-Engine-PSGI/distinfo (props changed) head/www/p5-Catalyst-Enzyme/distinfo (props changed) head/www/p5-Catalyst-Helper-Controller-Scaffold/distinfo (props changed) head/www/p5-Catalyst-Manual/distinfo (props changed) head/www/p5-Catalyst-Model-Adaptor/distinfo (props changed) head/www/p5-Catalyst-Model-CDBI-Plain/distinfo (props changed) head/www/p5-Catalyst-Model-CDBI-Sweet/distinfo (props changed) head/www/p5-Catalyst-Model-CDBI/distinfo (props changed) head/www/p5-Catalyst-Model-DBIC-Plain/distinfo (props changed) head/www/p5-Catalyst-Model-DynamicAdaptor/distinfo (props changed) head/www/p5-Catalyst-Model-LDAP/distinfo (props changed) head/www/p5-Catalyst-Model-Memcached/distinfo (props changed) head/www/p5-Catalyst-Model-Oryx/distinfo (props changed) head/www/p5-Catalyst-Model-XML-Feed/distinfo (props changed) head/www/p5-Catalyst-Model-Xapian/distinfo (props changed) head/www/p5-Catalyst-Model-Xapian10/distinfo (props changed) head/www/p5-Catalyst-Plugin-AtomServer/distinfo (props changed) head/www/p5-Catalyst-Plugin-Authentication-CDBI/distinfo (props changed) head/www/p5-Catalyst-Plugin-Authentication-OpenID/distinfo (props changed) head/www/p5-Catalyst-Plugin-Authentication-Store-Htpasswd/distinfo (props changed) head/www/p5-Catalyst-Plugin-Authentication/distinfo (props changed) head/www/p5-Catalyst-Plugin-Authorization-ACL/distinfo (props changed) head/www/p5-Catalyst-Plugin-Authorization-Roles/distinfo (props changed) head/www/p5-Catalyst-Plugin-AutoCRUD/distinfo (props changed) head/www/p5-Catalyst-Plugin-Browser/distinfo (props changed) head/www/p5-Catalyst-Plugin-C3/distinfo (props changed) head/www/p5-Catalyst-Plugin-Cache-FastMmap/distinfo (props changed) head/www/p5-Catalyst-Plugin-Cache-Memcached-Fast/distinfo (props changed) head/www/p5-Catalyst-Plugin-Cache-Memcached/distinfo (props changed) head/www/p5-Catalyst-Plugin-Cache/distinfo (props changed) head/www/p5-Catalyst-Plugin-Captcha/distinfo (props changed) head/www/p5-Catalyst-Plugin-ConfigLoader-Environment/distinfo (props changed) head/www/p5-Catalyst-Plugin-ConfigLoader/distinfo (props changed) head/www/p5-Catalyst-Plugin-CookiedSession/distinfo (props changed) head/www/p5-Catalyst-Plugin-DateTime/distinfo (props changed) head/www/p5-Catalyst-Plugin-DefaultEnd/distinfo (props changed) head/www/p5-Catalyst-Plugin-Email/distinfo (props changed) head/www/p5-Catalyst-Plugin-FillInForm/distinfo (props changed) head/www/p5-Catalyst-Plugin-FormBuilder/distinfo (props changed) head/www/p5-Catalyst-Plugin-FormValidator/distinfo (props changed) head/www/p5-Catalyst-Plugin-I18N/distinfo (props changed) head/www/p5-Catalyst-Plugin-Log-Dispatch/distinfo (props changed) head/www/p5-Catalyst-Plugin-Log-Handler/distinfo (props changed) head/www/p5-Catalyst-Plugin-LogWarnings/distinfo (props changed) head/www/p5-Catalyst-Plugin-PageCache/distinfo (props changed) head/www/p5-Catalyst-Plugin-Params-Nested/distinfo (props changed) head/www/p5-Catalyst-Plugin-Pluggable/distinfo (props changed) head/www/p5-Catalyst-Plugin-Prototype/distinfo (props changed) head/www/p5-Catalyst-Plugin-RunAfterRequest/distinfo (props changed) head/www/p5-Catalyst-Plugin-Scheduler/distinfo (props changed) head/www/p5-Catalyst-Plugin-Server/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-FastMmap/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-State-Cookie/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-State-URI/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Cache/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-Store-DBI/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-Store-DBIC/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Delegate/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-Store-FastMmap/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-Store-File/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Memcached-Fast/distinfo (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Memcached/distinfo (props changed) head/www/p5-Catalyst-Plugin-Setenv/distinfo (props changed) head/www/p5-Catalyst-Plugin-Singleton/distinfo (props changed) head/www/p5-Catalyst-Plugin-SmartURI/distinfo (props changed) head/www/p5-Catalyst-Plugin-Static-Simple/distinfo (props changed) head/www/p5-Catalyst-Plugin-Static/distinfo (props changed) head/www/p5-Catalyst-Plugin-SubRequest/distinfo (props changed) head/www/p5-Catalyst-Plugin-Textile/distinfo (props changed) head/www/p5-Catalyst-Plugin-Unicode/distinfo (props changed) head/www/p5-Catalyst-Plugin-XMLRPC/distinfo (props changed) head/www/p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging/distinfo (props changed) head/www/p5-Catalyst-TraitFor-Request-BrowserDetect/distinfo (props changed) head/www/p5-Catalyst-View-ClearSilver/distinfo (props changed) head/www/p5-Catalyst-View-Email/distinfo (props changed) head/www/p5-Catalyst-View-GraphViz/distinfo (props changed) head/www/p5-Catalyst-View-HTML-Template-Compiled/distinfo (props changed) head/www/p5-Catalyst-View-HTML-Template/distinfo (props changed) head/www/p5-Catalyst-View-JSON/distinfo (props changed) head/www/p5-Catalyst-View-Jemplate/distinfo (props changed) head/www/p5-Catalyst-View-Mason/distinfo (props changed) head/www/p5-Catalyst-View-REST-XML/distinfo (props changed) head/www/p5-Catalyst-View-RRDGraph/distinfo (props changed) head/www/p5-Catalyst-View-TT-ControllerLocal/distinfo (props changed) head/www/p5-Catalyst-View-TT/distinfo (props changed) head/www/p5-Catalyst-View-Template-Declare/distinfo (props changed) head/www/p5-Catalyst-View-Templated/distinfo (props changed) head/www/p5-Catalyst-View-XML-Feed/distinfo (props changed) head/www/p5-Catalyst-View-XML-Simple/distinfo (props changed) head/www/p5-Catalyst-View-XSLT/distinfo (props changed) head/www/p5-CatalystX-Component-Traits/distinfo (props changed) head/www/p5-CatalystX-InjectComponent/distinfo (props changed) head/www/p5-CatalystX-LeakChecker/distinfo (props changed) head/www/p5-CatalystX-Profile/distinfo (props changed) head/www/p5-CatalystX-REPL/distinfo (props changed) head/www/p5-CatalystX-RoleApplicator/distinfo (props changed) head/www/p5-CatalystX-SimpleLogin/distinfo (props changed) head/www/p5-Class-DBI-FromForm/distinfo (props changed) head/www/p5-ClearSilver/distinfo (props changed) head/www/p5-Compress-LeadingBlankSpaces/distinfo (props changed) head/www/p5-Continuity/distinfo (props changed) head/www/p5-Cookie-Baker/distinfo (props changed) head/www/p5-Corona/distinfo (props changed) head/www/p5-Dancer-Plugin-Feed/distinfo (props changed) head/www/p5-Dancer-Plugin-SiteMap/distinfo (props changed) head/www/p5-Dancer-Plugin-ValidationClass/distinfo (props changed) head/www/p5-Dancer-Session-Cookie/distinfo (props changed) head/www/p5-Dancer-Template-Xslate/distinfo (props changed) head/www/p5-Data-TreeDumper-Renderer-DHTML/distinfo (props changed) head/www/p5-Data-Validate-URI/distinfo (props changed) head/www/p5-Emplacken/distinfo (props changed) head/www/p5-FAQ-OMatic/distinfo (props changed) head/www/p5-FCGI-Async/distinfo (props changed) head/www/p5-FCGI-Client/distinfo (props changed) head/www/p5-FCGI-ProcManager/distinfo (props changed) head/www/p5-FCGI-Spawn/distinfo (props changed) head/www/p5-FCGI/distinfo (props changed) head/www/p5-FEAR-API/distinfo (props changed) head/www/p5-Facebook-Graph/distinfo (props changed) head/www/p5-Feed-Find/distinfo (props changed) head/www/p5-Feersum/distinfo (props changed) head/www/p5-File-Mork/distinfo (props changed) head/www/p5-Flea/distinfo (props changed) head/www/p5-Flickr-API/distinfo (props changed) head/www/p5-Flickr-Upload/distinfo (props changed) head/www/p5-Fliggy/distinfo (props changed) head/www/p5-Furl/distinfo (props changed) head/www/p5-FurlX-Coro/distinfo (props changed) head/www/p5-Gantry/distinfo (props changed) head/www/p5-Geo-Caching/distinfo (props changed) head/www/p5-Google-Code-Upload/distinfo (props changed) head/www/p5-Google-Search/distinfo (props changed) head/www/p5-Gtk2-WebKit/distinfo (props changed) head/www/p5-Gungho/distinfo (props changed) head/www/p5-GunghoX-FollowLinks/distinfo (props changed) head/www/p5-HTML-Adsense/distinfo (props changed) head/www/p5-HTML-Breadcrumbs/distinfo (props changed) head/www/p5-HTML-CalendarMonthSimple/distinfo (props changed) head/www/p5-HTML-Chunks/distinfo (props changed) head/www/p5-HTML-Clean/distinfo (props changed) head/www/p5-HTML-ContentExtractor/distinfo (props changed) head/www/p5-HTML-DOM/distinfo (props changed) head/www/p5-HTML-Declare/distinfo (props changed) head/www/p5-HTML-Defaultify/distinfo (props changed) head/www/p5-HTML-Diff/distinfo (props changed) head/www/p5-HTML-Display/distinfo (props changed) head/www/p5-HTML-Element-Extended/distinfo (props changed) head/www/p5-HTML-Element-Library/distinfo (props changed) head/www/p5-HTML-Element-Replacer/distinfo (props changed) head/www/p5-HTML-Encoding/distinfo (props changed) head/www/p5-HTML-ExtractContent/distinfo (props changed) head/www/p5-HTML-ExtractMain/distinfo (props changed) head/www/p5-HTML-Field/distinfo (props changed) head/www/p5-HTML-FillInForm-ForceUTF8/distinfo (props changed) head/www/p5-HTML-FillInForm-Lite/distinfo (props changed) head/www/p5-HTML-FillInForm/distinfo (props changed) head/www/p5-HTML-Form/distinfo (props changed) head/www/p5-HTML-FormFu-Model-DBIC/distinfo (props changed) head/www/p5-HTML-FromANSI/distinfo (props changed) head/www/p5-HTML-FromText/distinfo (props changed) head/www/p5-HTML-GenToc/distinfo (props changed) head/www/p5-HTML-GenerateUtil/distinfo (props changed) head/www/p5-HTML-GoogleMaps/distinfo (props changed) head/www/p5-HTML-Highlight/distinfo (props changed) head/www/p5-HTML-LinkExtractor/distinfo (props changed) head/www/p5-HTML-LinkList/distinfo (props changed) head/www/p5-HTML-Location/distinfo (props changed) head/www/p5-HTML-Macro/distinfo (props changed) head/www/p5-HTML-Mason-PSGIHandler/distinfo (props changed) head/www/p5-HTML-MobileConverter/distinfo (props changed) head/www/p5-HTML-Pager/distinfo (props changed) head/www/p5-HTML-Perlinfo/distinfo (props changed) head/www/p5-HTML-PrettyPrinter/distinfo (props changed) head/www/p5-HTML-Prototype/distinfo (props changed) head/www/p5-HTML-Query/distinfo (props changed) head/www/p5-HTML-QuickCheck/distinfo (props changed) head/www/p5-HTML-RSSAutodiscovery/distinfo (props changed) head/www/p5-HTML-ResolveLink/distinfo (props changed) head/www/p5-HTML-RobotsMETA/distinfo (props changed) head/www/p5-HTML-Seamstress/distinfo (props changed) head/www/p5-HTML-Selector-XPath/distinfo (props changed) head/www/p5-HTML-Shakan/distinfo (props changed) head/www/p5-HTML-SimpleLinkExtor/distinfo (props changed) head/www/p5-HTML-SimpleParse/distinfo (props changed) head/www/p5-HTML-StickyQuery-DoCoMoGUID/distinfo (props changed) head/www/p5-HTML-StickyQuery/distinfo (props changed) head/www/p5-HTML-Stream/distinfo (props changed) head/www/p5-HTML-Strip/distinfo (props changed) head/www/p5-HTML-StripScripts-Parser/distinfo (props changed) head/www/p5-HTML-StripScripts/distinfo (props changed) head/www/p5-HTML-Summary/distinfo (props changed) head/www/p5-HTML-Table/distinfo (props changed) head/www/p5-HTML-TableContentParser/distinfo (props changed) head/www/p5-HTML-TableExtract/distinfo (props changed) head/www/p5-HTML-TableLayout/distinfo (props changed) head/www/p5-HTML-TableParser/distinfo (props changed) head/www/p5-HTML-TableTiler/distinfo (props changed) head/www/p5-HTML-TagCloud-Extended/distinfo (props changed) head/www/p5-HTML-TagCloud/distinfo (props changed) head/www/p5-HTML-TagParser/distinfo (props changed) head/www/p5-HTML-Tagset/distinfo (props changed) head/www/p5-HTML-Template-Associate/distinfo (props changed) head/www/p5-HTML-Template-Compiled/distinfo (props changed) head/www/p5-HTML-Template-Expr/distinfo (props changed) head/www/p5-HTML-Template-HashWrapper/distinfo (props changed) head/www/p5-HTML-Template-JIT/distinfo (props changed) head/www/p5-HTML-Template-Pluggable/distinfo (props changed) head/www/p5-HTML-Template-Pro/distinfo (props changed) head/www/p5-HTML-Template/distinfo (props changed) head/www/p5-HTML-Toc/distinfo (props changed) head/www/p5-HTML-TokeParser-Simple/distinfo (props changed) head/www/p5-HTML-Tree/distinfo (props changed) head/www/p5-HTML-TreeBuilder-XPath/distinfo (props changed) head/www/p5-HTML-Widgets-SelectLayers/distinfo (props changed) head/www/p5-HTML-WikiConverter-DokuWiki/distinfo (props changed) head/www/p5-HTML-WikiConverter-GoogleCode/distinfo (props changed) head/www/p5-HTML-WikiConverter-Kwiki/distinfo (props changed) head/www/p5-HTML-WikiConverter-Markdown/distinfo (props changed) head/www/p5-HTML-WikiConverter-MediaWiki/distinfo (props changed) head/www/p5-HTML-WikiConverter-MoinMoin/distinfo (props changed) head/www/p5-HTML-WikiConverter-Oddmuse/distinfo (props changed) head/www/p5-HTML-WikiConverter-PbWiki/distinfo (props changed) head/www/p5-HTML-WikiConverter-PhpWiki/distinfo (props changed) head/www/p5-HTML-WikiConverter-PmWiki/distinfo (props changed) head/www/p5-HTML-WikiConverter-SnipSnap/distinfo (props changed) head/www/p5-HTML-WikiConverter-Socialtext/distinfo (props changed) head/www/p5-HTML-WikiConverter-TikiWiki/distinfo (props changed) head/www/p5-HTML-WikiConverter-UseMod/distinfo (props changed) head/www/p5-HTML-WikiConverter-WakkaWiki/distinfo (props changed) head/www/p5-HTML-WikiConverter-WikkaWiki/distinfo (props changed) head/www/p5-HTML-WikiConverter/distinfo (props changed) head/www/p5-HTTP-Cache-Transparent/distinfo (props changed) head/www/p5-HTTP-Cookies-Mozilla/distinfo (props changed) head/www/p5-HTTP-Cookies-iCab/distinfo (props changed) head/www/p5-HTTP-Cookies-w3m/distinfo (props changed) head/www/p5-HTTP-Cookies/distinfo (props changed) head/www/p5-HTTP-DAV/distinfo (props changed) head/www/p5-HTTP-Daemon-SSL/distinfo (props changed) head/www/p5-HTTP-Daemon/distinfo (props changed) head/www/p5-HTTP-Date/distinfo (props changed) head/www/p5-HTTP-Engine-Middleware/distinfo (props changed) head/www/p5-HTTP-Engine/distinfo (props changed) head/www/p5-HTTP-Exception/distinfo (props changed) head/www/p5-HTTP-HeaderParser-XS/distinfo (props changed) head/www/p5-HTTP-Headers-Fast/distinfo (props changed) head/www/p5-HTTP-Lite/distinfo (props changed) head/www/p5-HTTP-MHTTP/distinfo (props changed) head/www/p5-HTTP-Message/distinfo (props changed) head/www/p5-HTTP-MobileAgent-Plugin-Charset/distinfo (props changed) head/www/p5-HTTP-MobileAgent-Plugin-Locator/distinfo (props changed) head/www/p5-HTTP-MobileAgent/distinfo (props changed) head/www/p5-HTTP-Negotiate/distinfo (props changed) head/www/p5-HTTP-Parser-XS/distinfo (props changed) head/www/p5-HTTP-Parser/distinfo (props changed) head/www/p5-HTTP-Proxy/distinfo (props changed) head/www/p5-HTTP-Request-AsCGI/distinfo (props changed) head/www/p5-HTTP-Request-Params/distinfo (props changed) head/www/p5-HTTP-Response-Encoding/distinfo (props changed) head/www/p5-HTTP-Router/distinfo (props changed) head/www/p5-HTTP-Server-Simple-Authen/distinfo (props changed) head/www/p5-HTTP-Server-Simple-Mason/distinfo (props changed) head/www/p5-HTTP-Server-Simple-Recorder/distinfo (props changed) head/www/p5-HTTP-Server-Simple-Static/distinfo (props changed) head/www/p5-HTTP-Server-Simple/distinfo (props changed) head/www/p5-HTTP-Session-State-MobileAgentID/distinfo (props changed) head/www/p5-HTTP-Session-Store-DBI/distinfo (props changed) head/www/p5-HTTP-Session/distinfo (props changed) head/www/p5-HTTP-Session2/distinfo (props changed) head/www/p5-HTTP-SimpleLinkChecker/distinfo (props changed) head/www/p5-HTTP-Size/distinfo (props changed) head/www/p5-HTTP-WebTest/distinfo (props changed) head/www/p5-HTTPD-Log-Filter/distinfo (props changed) head/www/p5-HTTPD-User-Manage/distinfo (props changed) head/www/p5-I18N-AcceptLanguage/distinfo (props changed) head/www/p5-IMDB-Film/distinfo (props changed) head/www/p5-Image-Delivery/distinfo (props changed) head/www/p5-JE/distinfo (props changed) head/www/p5-Jemplate/distinfo (props changed) head/www/p5-Jifty/distinfo (props changed) head/www/p5-Kwiki/distinfo (props changed) head/www/p5-LWP-Authen-OAuth/distinfo (props changed) head/www/p5-LWP-Authen-Wsse/distinfo (props changed) head/www/p5-LWP-ConnCache-MaxKeepAliveRequests/distinfo (props changed) head/www/p5-LWP-MediaTypes/distinfo (props changed) head/www/p5-LWP-Online/distinfo (props changed) head/www/p5-LWP-Protocol-PSGI/distinfo (props changed) head/www/p5-LWP-Protocol-http10/distinfo (props changed) head/www/p5-LWP-UserAgent-Determined/distinfo (props changed) head/www/p5-LWP-UserAgent-POE/distinfo (props changed) head/www/p5-LWP-UserAgent-WithCache/distinfo (props changed) head/www/p5-LWPx-TimedHTTP/distinfo (props changed) head/www/p5-Markup-Perl/distinfo (props changed) head/www/p5-Mason/distinfo (props changed) head/www/p5-MasonX-Interp-WithCallbacks/distinfo (props changed) head/www/p5-MasonX-Profiler/distinfo (props changed) head/www/p5-MasonX-Request-WithApacheSession/distinfo (props changed) head/www/p5-MasonX-WebApp/distinfo (props changed) head/www/p5-Maypole-Authentication-UserSessionCookie/distinfo (props changed) head/www/p5-Maypole-Component/distinfo (props changed) head/www/p5-Maypole/distinfo (props changed) head/www/p5-MediaWiki-API/distinfo (props changed) head/www/p5-MediaWiki/distinfo (props changed) head/www/p5-Mobile-UserAgent/distinfo (props changed) head/www/p5-ModPerl-VersionUtil/distinfo (props changed) head/www/p5-Mojo-Server-FastCGI/distinfo (props changed) head/www/p5-MojoMojo/distinfo (props changed) head/www/p5-Mojolicious-Plugin-Database/distinfo (props changed) head/www/p5-Mojolicious-Plugin-YamlConfig/distinfo (props changed) head/www/p5-Monoceros/distinfo (props changed) head/www/p5-Mozilla-CA/distinfo (props changed) head/www/p5-Net-Akismet/distinfo (props changed) head/www/p5-Net-Amazon-AWIS/distinfo (props changed) head/www/p5-Net-Async-FastCGI/distinfo (props changed) head/www/p5-Net-FastCGI/distinfo (props changed) head/www/p5-Net-FireEagle/distinfo (props changed) head/www/p5-Net-Flickr-API/distinfo (props changed) head/www/p5-Net-Flickr-Backup/distinfo (props changed) head/www/p5-Net-Flickr-RDF/distinfo (props changed) head/www/p5-Net-FreshBooks-API/distinfo (props changed) head/www/p5-Net-GeoPlanet/distinfo (props changed) head/www/p5-Net-Plurk/distinfo (props changed) head/www/p5-Net-STF-Client/distinfo (props changed) head/www/p5-Net-Trac/distinfo (props changed) head/www/p5-Net-YAP/distinfo (props changed) head/www/p5-Net-eBay/distinfo (props changed) head/www/p5-Newsletter/distinfo (props changed) head/www/p5-Nginx-ReadBody/distinfo (props changed) head/www/p5-Nginx-Simple/distinfo (props changed) head/www/p5-PHP-Session/distinfo (props changed) head/www/p5-POE-Component-Client-HTTP/distinfo (props changed) head/www/p5-POE-Component-Client-UserAgent/distinfo (props changed) head/www/p5-POE-Component-Server-HTTP/distinfo (props changed) head/www/p5-POE-Component-Server-HTTPServer/distinfo (props changed) head/www/p5-POE-Component-Server-PSGI/distinfo (props changed) head/www/p5-POE-Component-Server-SOAP/distinfo (props changed) head/www/p5-POE-Component-Server-SimpleHTTP/distinfo (props changed) head/www/p5-POE-Filter-HTTP-Parser/distinfo (props changed) head/www/p5-POEx-Role-PSGIServer/distinfo (props changed) head/www/p5-PSGI/distinfo (props changed) head/www/p5-ParallelUA/distinfo (props changed) head/www/p5-Path-Class-URI/distinfo (props changed) head/www/p5-Perlanet/distinfo (props changed) head/www/p5-Perlbal-Plugin-PSGI/distinfo (props changed) head/www/p5-Plack-App-Proxy/distinfo (props changed) head/www/p5-Plack-Builder-Conditionals/distinfo (props changed) head/www/p5-Plack-Handler-AnyEvent-HTTPD/distinfo (props changed) head/www/p5-Plack-Handler-AnyEvent-ReverseHTTP/distinfo (props changed) head/www/p5-Plack-Handler-AnyEvent-SCGI/distinfo (props changed) head/www/p5-Plack-Handler-CLI/distinfo (props changed) head/www/p5-Plack-Handler-SCGI/distinfo (props changed) head/www/p5-Plack-Middleware-AMF/distinfo (props changed) head/www/p5-Plack-Middleware-AddDefaultCharset/distinfo (props changed) head/www/p5-Plack-Middleware-Auth-Digest/distinfo (props changed) head/www/p5-Plack-Middleware-AutoRefresh/distinfo (props changed) head/www/p5-Plack-Middleware-ConsoleLogger/distinfo (props changed) head/www/p5-Plack-Middleware-Debug/distinfo (props changed) head/www/p5-Plack-Middleware-Deflater/distinfo (props changed) head/www/p5-Plack-Middleware-Expires/distinfo (props changed) head/www/p5-Plack-Middleware-File-Sass/distinfo (props changed) head/www/p5-Plack-Middleware-ForceEnv/distinfo (props changed) head/www/p5-Plack-Middleware-Header/distinfo (props changed) head/www/p5-Plack-Middleware-IEnosniff/distinfo (props changed) head/www/p5-Plack-Middleware-InteractiveDebugger/distinfo (props changed) head/www/p5-Plack-Middleware-JSConcat/distinfo (props changed) head/www/p5-Plack-Middleware-MemoryUsage/distinfo (props changed) head/www/p5-Plack-Middleware-Precompressed/distinfo (props changed) head/www/p5-Plack-Middleware-Reproxy/distinfo (props changed) head/www/p5-Plack-Middleware-ReverseProxy/distinfo (props changed) head/www/p5-Plack-Middleware-ServerStatus-Lite/distinfo (props changed) head/www/p5-Plack-Middleware-Session/distinfo (props changed) head/www/p5-Plack-Middleware-SocketIO/distinfo (props changed) head/www/p5-Plack-Middleware-Status/distinfo (props changed) head/www/p5-Plack-Middleware-Test-StashWarnings/distinfo (props changed) head/www/p5-Plack-Middleware-Throttle/distinfo (props changed) head/www/p5-Plack-Middleware-XForwardedFor/distinfo (props changed) head/www/p5-Plack-Server-Coro/distinfo (props changed) head/www/p5-Plack-Server-POE/distinfo (props changed) head/www/p5-Plack-Server-ReverseHTTP/distinfo (props changed) head/www/p5-Plack-Test-ExternalServer/distinfo (props changed) head/www/p5-Plack/distinfo (props changed) head/www/p5-Pod-Site/distinfo (props changed) head/www/p5-PodToHTML/distinfo (props changed) head/www/p5-Protocol-WebSocket/distinfo (props changed) head/www/p5-Protocol-XMLRPC/distinfo (props changed) head/www/p5-REST-Client/distinfo (props changed) head/www/p5-REST-Google-Apps-Provisioning/distinfo (props changed) head/www/p5-RT-Client-REST/distinfo (props changed) head/www/p5-RT-Extension-MandatoryOnTransition/distinfo (props changed) head/www/p5-RT-Extension-SLA/distinfo (props changed) head/www/p5-Reddit/distinfo (props changed) head/www/p5-Router-Boom/distinfo (props changed) head/www/p5-Router-Simple-Sinatraish/distinfo (props changed) head/www/p5-SCGI/distinfo (props changed) head/www/p5-SOAP-Transport-HTTP-Plack/distinfo (props changed) head/www/p5-STF-Dispatcher-PSGI/distinfo (props changed) head/www/p5-SWF-Chart/distinfo (props changed) head/www/p5-Scrappy/distinfo (props changed) head/www/p5-Session-Storage-Secure/distinfo (props changed) head/www/p5-Squatting-On-PSGI/distinfo (props changed) head/www/p5-Squatting/distinfo (props changed) head/www/p5-Starlet/distinfo (props changed) head/www/p5-Starman/distinfo (props changed) head/www/p5-Syntax-Highlight-HTML/distinfo (props changed) head/www/p5-Syntax-Highlight-Shell/distinfo (props changed) head/www/p5-Task-Catalyst/distinfo (props changed) head/www/p5-Task-Plack/distinfo (props changed) head/www/p5-Tatsumaki/distinfo (props changed) head/www/p5-Template-GD/distinfo (props changed) head/www/p5-Template-Iterator-AlzaboWrapperCursor/distinfo (props changed) head/www/p5-Template-Multilingual/distinfo (props changed) head/www/p5-Template-Mustache/distinfo (props changed) head/www/p5-Template-Plugin-Class/distinfo (props changed) head/www/p5-Template-Plugin-Clickable-Email/distinfo (props changed) head/www/p5-Template-Plugin-Clickable/distinfo (props changed) head/www/p5-Template-Plugin-Comma/distinfo (props changed) head/www/p5-Template-Plugin-FillInForm/distinfo (props changed) head/www/p5-Template-Plugin-JSON/distinfo (props changed) head/www/p5-Template-Plugin-JavaScript/distinfo (props changed) head/www/p5-Template-Plugin-MP3/distinfo (props changed) head/www/p5-Template-Plugin-Markdown/distinfo (props changed) head/www/p5-Template-Plugin-Monta/distinfo (props changed) head/www/p5-Template-Plugin-Number-Format/distinfo (props changed) head/www/p5-Template-Plugin-Subst/distinfo (props changed) head/www/p5-Template-Plugin-VMethods/distinfo (props changed) head/www/p5-Template-Provider-Encoding/distinfo (props changed) head/www/p5-Template-Simple/distinfo (props changed) head/www/p5-Template-Stash-AutoEscape/distinfo (props changed) head/www/p5-Template-Timer/distinfo (props changed) head/www/p5-Template-Toolkit-Simple/distinfo (props changed) head/www/p5-Tenjin/distinfo (props changed) head/www/p5-Test-HTTP-Server-Simple/distinfo (props changed) head/www/p5-Test-HTTP/distinfo (props changed) head/www/p5-Test-Nginx/distinfo (props changed) head/www/p5-TestGen4Web-Runner/distinfo (props changed) head/www/p5-Tie-TinyURL/distinfo (props changed) head/www/p5-Toader/distinfo (props changed) head/www/p5-Twiggy-TLS/distinfo (props changed) head/www/p5-Twiggy/distinfo (props changed) head/www/p5-URI-Encode/distinfo (props changed) head/www/p5-URI-Escape-JavaScript/distinfo (props changed) head/www/p5-URI-Escape-XS/distinfo (props changed) head/www/p5-URI-Fetch/distinfo (props changed) head/www/p5-URI-ParseSearchString/distinfo (props changed) head/www/p5-URI-Sequin/distinfo (props changed) head/www/p5-URI-Title/distinfo (props changed) head/www/p5-URI-ToDisk/distinfo (props changed) head/www/p5-VUser-Google-ProvisioningAPI/distinfo (props changed) head/www/p5-W3C-LinkChecker/distinfo (props changed) head/www/p5-W3C-LogValidator/distinfo (props changed) head/www/p5-WWW-AtMovies-TV/distinfo (props changed) head/www/p5-WWW-Babelfish/distinfo (props changed) head/www/p5-WWW-Baseball-NPB/distinfo (props changed) head/www/p5-WWW-Comic/distinfo (props changed) head/www/p5-WWW-Contact/distinfo (props changed) head/www/p5-WWW-Curl/distinfo (props changed) head/www/p5-WWW-DHL/distinfo (props changed) head/www/p5-WWW-Dilbert/distinfo (props changed) head/www/p5-WWW-Facebook-API/distinfo (props changed) head/www/p5-WWW-FreeProxy/distinfo (props changed) head/www/p5-WWW-GitHub-Gist/distinfo (props changed) head/www/p5-WWW-Google-Calculator/distinfo (props changed) head/www/p5-WWW-Google-News-TW/distinfo (props changed) head/www/p5-WWW-Google-News/distinfo (props changed) head/www/p5-WWW-Google-Notebook/distinfo (props changed) head/www/p5-WWW-Google-PageRank/distinfo (props changed) head/www/p5-WWW-Google-Video/distinfo (props changed) head/www/p5-WWW-HatenaDiary/distinfo (props changed) head/www/p5-WWW-HatenaLogin/distinfo (props changed) head/www/p5-WWW-HatenaStar/distinfo (props changed) head/www/p5-WWW-IMDb/distinfo (props changed) head/www/p5-WWW-Instapaper-Client/distinfo (props changed) head/www/p5-WWW-Link/distinfo (props changed) head/www/p5-WWW-LongURL/distinfo (props changed) head/www/p5-WWW-Mechanize-CGI/distinfo (props changed) head/www/p5-WWW-Mechanize-Cached/distinfo (props changed) head/www/p5-WWW-Mechanize-DecodedContent/distinfo (props changed) head/www/p5-WWW-Mechanize-FormFiller/distinfo (props changed) head/www/p5-WWW-Mechanize-GZip/distinfo (props changed) head/www/p5-WWW-Mechanize-Meta/distinfo (props changed) head/www/p5-WWW-Mechanize-Pluggable/distinfo (props changed) head/www/p5-WWW-Mechanize-Plugin-phpBB/distinfo (props changed) head/www/p5-WWW-Mechanize-SpamCop/distinfo (props changed) head/www/p5-WWW-Mechanize-TreeBuilder/distinfo (props changed) head/www/p5-WWW-Mechanize/distinfo (props changed) head/www/p5-WWW-Mediawiki-Client/distinfo (props changed) head/www/p5-WWW-Mixi-Scraper/distinfo (props changed) head/www/p5-WWW-Mixi/distinfo (props changed) head/www/p5-WWW-Myspace/distinfo (props changed) head/www/p5-WWW-NicoVideo-Download/distinfo (props changed) head/www/p5-WWW-NioTV/distinfo (props changed) head/www/p5-WWW-OpenSVN/distinfo (props changed) head/www/p5-WWW-Pastebin-PastebinCom-Create/distinfo (props changed) head/www/p5-WWW-Plurk/distinfo (props changed) head/www/p5-WWW-Robot/distinfo (props changed) head/www/p5-WWW-RobotRules-Parser/distinfo (props changed) head/www/p5-WWW-RobotRules/distinfo (props changed) head/www/p5-WWW-Scripter-Plugin-Ajax/distinfo (props changed) head/www/p5-WWW-Scripter-Plugin-JavaScript/distinfo (props changed) head/www/p5-WWW-Scripter/distinfo (props changed) head/www/p5-WWW-Search-AltaVista/distinfo (props changed) head/www/p5-WWW-Search-Google/distinfo (props changed) head/www/p5-WWW-Search-MSN/distinfo (props changed) head/www/p5-WWW-Shorten-0rz/distinfo (props changed) head/www/p5-WWW-Shorten-Bitly/distinfo (props changed) head/www/p5-WWW-Shorten-Googl/distinfo (props changed) head/www/p5-WWW-Shorten-KUSO/distinfo (props changed) head/www/p5-WWW-Shorten-NotLong/distinfo (props changed) head/www/p5-WWW-Shorten-Yourls/distinfo (props changed) head/www/p5-WWW-Shorten-isgd/distinfo (props changed) head/www/p5-WWW-Shorten/distinfo (props changed) head/www/p5-WWW-SourceForge/distinfo (props changed) head/www/p5-WWW-Spinn3r/distinfo (props changed) head/www/p5-WWW-TV/distinfo (props changed) head/www/p5-WWW-TWSMS/distinfo (props changed) head/www/p5-WWW-TinySong/distinfo (props changed) head/www/p5-WWW-Tumblr/distinfo (props changed) head/www/p5-WWW-VenusEnvy/distinfo (props changed) head/www/p5-WWW-WebArchive/distinfo (props changed) head/www/p5-WWW-Wikipedia/distinfo (props changed) head/www/p5-WWW-Yandex-TIC/distinfo (props changed) head/www/p5-WWW-iTunesConnect/distinfo (props changed) head/www/p5-Web-Scraper-Config/distinfo (props changed) head/www/p5-Web-Scraper/distinfo (props changed) head/www/p5-Web-oEmbed/distinfo (props changed) head/www/p5-WebDAO/distinfo (props changed) head/www/p5-WebService-Basecamp/distinfo (props changed) head/www/p5-WebService-Bloglines/distinfo (props changed) head/www/p5-WebService-BuzzurlAPI/distinfo (props changed) head/www/p5-WebService-CIA/distinfo (props changed) head/www/p5-WebService-GData/distinfo (props changed) head/www/p5-WebService-Google-Reader/distinfo (props changed) head/www/p5-WebService-Google-Sets/distinfo (props changed) head/www/p5-WebService-IMDB/distinfo (props changed) head/www/p5-WebService-ISBNDB/distinfo (props changed) head/www/p5-WebService-MoviePosterDB/distinfo (props changed) head/www/p5-WebService-MusicBrainz/distinfo (props changed) head/www/p5-WebService-NoPaste/distinfo (props changed) head/www/p5-WebService-Pushover/distinfo (props changed) head/www/p5-WebService-Rakuten/distinfo (props changed) head/www/p5-WebService-Technorati/distinfo (props changed) head/www/p5-WebService-YouTube/distinfo (props changed) head/www/p5-WordPress-XMLRPC/distinfo (props changed) head/www/p5-Yahoo-Lifestyle/distinfo (props changed) head/www/p5-Yahoo-Search/distinfo (props changed) head/www/p5-ZConf-RSS-GUI-GTK/distinfo (props changed) head/www/p5-ZConf-RSS/distinfo (props changed) head/www/p5-chklinks/distinfo (props changed) head/www/p5-jQuery-File-Upload/distinfo (props changed) head/www/p5-libservlet/distinfo (props changed) head/www/p5-pQuery/distinfo (props changed) head/www/p5-webservice-validator-css-w3c/distinfo (props changed) head/www/p5-webservice-validator-html-w3c/distinfo (props changed) head/www/paros/distinfo (props changed) head/www/pear-HTML_AJAX/distinfo (props changed) head/www/pear-HTML_TagCloud/distinfo (props changed) head/www/pear-HTTP/distinfo (props changed) head/www/pear-HTTP_Client/distinfo (props changed) head/www/pear-HTTP_Download/distinfo (props changed) head/www/pear-HTTP_FloodControl/distinfo (props changed) head/www/pear-HTTP_Header/distinfo (props changed) head/www/pear-HTTP_Request/distinfo (props changed) head/www/pear-HTTP_Request2/distinfo (props changed) head/www/pear-HTTP_Session2/distinfo (props changed) head/www/pear-HTTP_Upload/distinfo (props changed) head/www/pear-HTTP_WebDAV_Client/distinfo (props changed) head/www/pear-HTTP_WebDAV_Server/distinfo (props changed) head/www/pear-Horde_Browser/distinfo (props changed) head/www/pear-Horde_Css_Parser/distinfo (props changed) head/www/pear-Horde_Dav/distinfo (props changed) head/www/pear-Horde_Editor/distinfo (props changed) head/www/pear-Horde_Feed/distinfo (props changed) head/www/pear-Horde_Form/distinfo (props changed) head/www/pear-Horde_Http/distinfo (props changed) head/www/pear-Horde_Routes/distinfo (props changed) head/www/pear-Horde_Service_Facebook/distinfo (props changed) head/www/pear-Horde_Service_Twitter/distinfo (props changed) head/www/pear-Horde_Service_UrlShortener/distinfo (props changed) head/www/pear-Horde_Service_Weather/distinfo (props changed) head/www/pear-Horde_SessionHandler/distinfo (props changed) head/www/pear-Horde_Template/distinfo (props changed) head/www/pear-Services_Amazon/distinfo (props changed) head/www/pear-Services_Blogging/distinfo (props changed) head/www/pear-Services_Compete/distinfo (props changed) head/www/pear-Services_Delicious/distinfo (props changed) head/www/pear-Services_Digg/distinfo (props changed) head/www/pear-Services_Facebook/distinfo (props changed) head/www/pear-Services_GeoNames/distinfo (props changed) head/www/pear-Services_Google/distinfo (props changed) head/www/pear-Services_OpenSearch/distinfo (props changed) head/www/pear-Services_SharedBook/distinfo (props changed) head/www/pear-Services_ShortURL/distinfo (props changed) head/www/pear-Services_TinyURL/distinfo (props changed) head/www/pear-Services_TwitPic/distinfo (props changed) head/www/pear-Services_W3C_CSSValidator/distinfo (props changed) head/www/pear-Services_W3C_HTMLValidator/distinfo (props changed) head/www/pear-Services_Yadis/distinfo (props changed) head/www/pear-Services_Yahoo/distinfo (props changed) head/www/pear-Services_urlTea/distinfo (props changed) head/www/pear-Structures_DataGrid_Renderer_Pager/distinfo (props changed) head/www/pear-Text_Wiki/distinfo (props changed) head/www/pear-UDDI/distinfo (props changed) head/www/pear-XML_GRDDL/distinfo (props changed) head/www/pebble/distinfo (props changed) head/www/pecl-amfext/distinfo (props changed) head/www/pecl-solr/distinfo (props changed) head/www/pecl-swish/distinfo (props changed) head/www/pecl-zendopcache/distinfo (props changed) head/www/perlbal/distinfo (props changed) head/www/pglogd/distinfo (props changed) head/www/photo_gallery/distinfo (props changed) head/www/php-plurk-api/distinfo (props changed) head/www/php-screw/distinfo (props changed) head/www/php-templates/distinfo (props changed) head/www/phpbb-devel/distinfo (props changed) head/www/phpbb3/distinfo (props changed) head/www/phpgedview/distinfo (props changed) head/www/phpgroupware/distinfo (props changed) head/www/phpmp/distinfo (props changed) head/www/phpmustache/distinfo (props changed) head/www/phprecipebook/distinfo (props changed) head/www/phproxy/distinfo (props changed) head/www/phpscheduleit/distinfo (props changed) head/www/phpsysinfo-dev/distinfo (props changed) head/www/phpsysinfo/distinfo (props changed) head/www/phpwebapp/distinfo (props changed) head/www/pivotx/distinfo (props changed) head/www/piwigo/distinfo (props changed) head/www/planet/distinfo (props changed) head/www/pligg/distinfo (props changed) head/www/plugger/distinfo (props changed) head/www/pnews/distinfo (props changed) head/www/podcastamatic/distinfo (props changed) head/www/polipo/distinfo (props changed) head/www/pound/distinfo (props changed) head/www/prado/distinfo (props changed) head/www/privoxy+ipv6/distinfo (props changed) head/www/protovis/distinfo (props changed) head/www/pserv/distinfo (props changed) head/www/publicfile/distinfo (props changed) head/www/pwebstats/distinfo (props changed) head/www/py-GinGin/distinfo (props changed) head/www/py-HTMLgen/distinfo (props changed) head/www/py-Lightbox/distinfo (props changed) head/www/py-Products.PloneLDAP/distinfo (props changed) head/www/py-WebError/distinfo (props changed) head/www/py-WebFlash/distinfo (props changed) head/www/py-WebTest/distinfo (props changed) head/www/py-albatross/distinfo (props changed) head/www/py-amf/distinfo (props changed) head/www/py-apachelog/distinfo (props changed) head/www/py-beaker/distinfo (props changed) head/www/py-beautifulsoup/distinfo (props changed) head/www/py-blogofile/distinfo (props changed) head/www/py-cherrypy-old/distinfo (props changed) head/www/py-cherrypy/distinfo (props changed) head/www/py-clientform/distinfo (props changed) head/www/py-cssmin/distinfo (props changed) head/www/py-cssselect/distinfo (props changed) head/www/py-django-annoying/distinfo (props changed) head/www/py-django-app-plugins/distinfo (props changed) head/www/py-django-appconf/distinfo (props changed) head/www/py-django-appmedia/distinfo (props changed) head/www/py-django-auth-ldap/distinfo (props changed) head/www/py-django-caching-app-plugins/distinfo (props changed) head/www/py-django-cms/distinfo (props changed) head/www/py-django-devel/distinfo (props changed) head/www/py-django-filer/distinfo (props changed) head/www/py-django-haystack/distinfo (props changed) head/www/py-django-json-rpc/distinfo (props changed) head/www/py-django-keyedcache/distinfo (props changed) head/www/py-django-livesettings/distinfo (props changed) head/www/py-django-openid-auth/distinfo (props changed) head/www/py-django-picklefield/distinfo (props changed) head/www/py-django-piston/distinfo (props changed) head/www/py-django-profiles/distinfo (props changed) head/www/py-django-registration/distinfo (props changed) head/www/py-django-reversion/distinfo (props changed) head/www/py-django-sekizai/distinfo (props changed) head/www/py-django-signals-ahoy/distinfo (props changed) head/www/py-django-storages/distinfo (props changed) head/www/py-django-tables2/distinfo (props changed) head/www/py-django-tagging/distinfo (props changed) head/www/py-django-threaded-multihost/distinfo (props changed) head/www/py-django/distinfo (props changed) head/www/py-django14/distinfo (props changed) head/www/py-django15/distinfo (props changed) head/www/py-django_compressor/distinfo (props changed) head/www/py-djblets/distinfo (props changed) head/www/py-dojango/distinfo (props changed) head/www/py-dotcloud.cli/distinfo (props changed) head/www/py-dtflickr/distinfo (props changed) head/www/py-fcgi/distinfo (props changed) head/www/py-feedfinder/distinfo (props changed) head/www/py-flask-cache/distinfo (props changed) head/www/py-flask-uploads/distinfo (props changed) head/www/py-flup/distinfo (props changed) head/www/py-formalchemy/distinfo (props changed) head/www/py-funkload/distinfo (props changed) head/www/py-google-api-python-client/distinfo (props changed) head/www/py-html5lib/distinfo (props changed) head/www/py-httplib2/distinfo (props changed) head/www/py-imdbpy/distinfo (props changed) head/www/py-jonpy/distinfo (props changed) head/www/py-jswebkit/distinfo (props changed) head/www/py-mechanize/distinfo (props changed) head/www/py-meld/distinfo (props changed) head/www/py-meld3/distinfo (props changed) head/www/py-mt/distinfo (props changed) head/www/py-nevow/distinfo (props changed) head/www/py-openssl-proxy/distinfo (props changed) head/www/py-paste/distinfo (props changed) head/www/py-pastedeploy/distinfo (props changed) head/www/py-pastescript/distinfo (props changed) head/www/py-plone.app.contentmenu/distinfo (props changed) head/www/py-plone.app.customerize/distinfo (props changed) head/www/py-plone.app.folder/distinfo (props changed) head/www/py-plone.app.i18n/distinfo (props changed) head/www/py-plone.app.ldap/distinfo (props changed) head/www/py-plone.app.testing/distinfo (props changed) head/www/py-plone.app.users/distinfo (props changed) head/www/py-plone.app.uuid/distinfo (props changed) head/www/py-plone.browserlayer/distinfo (props changed) head/www/py-plone.cachepurging/distinfo (props changed) head/www/py-plone.caching/distinfo (props changed) head/www/py-plone.fieldsets/distinfo (props changed) head/www/py-plone.folder/distinfo (props changed) head/www/py-plone.indexer/distinfo (props changed) head/www/py-plone.intelligenttext/distinfo (props changed) head/www/py-plone.locking/distinfo (props changed) head/www/py-plone.memoize/distinfo (props changed) head/www/py-plone.portlet.static/distinfo (props changed) head/www/py-plone.registry/distinfo (props changed) head/www/py-plone.resource/distinfo (props changed) head/www/py-plone.subrequest/distinfo (props changed) head/www/py-plone.testing/distinfo (props changed) head/www/py-plone.theme/distinfo (props changed) head/www/py-plone.transformchain/distinfo (props changed) head/www/py-plone.uuid/distinfo (props changed) head/www/py-poster/distinfo (props changed) head/www/py-postmarkup/distinfo (props changed) head/www/py-prewikka/distinfo (props changed) head/www/py-py-restclient/distinfo (props changed) head/www/py-pylons/distinfo (props changed) head/www/py-pyramid/distinfo (props changed) head/www/py-pyramid_rpc/distinfo (props changed) head/www/py-pysearch/distinfo (props changed) head/www/py-pywebdav/distinfo (props changed) head/www/py-qp/distinfo (props changed) head/www/py-qpy/distinfo (props changed) head/www/py-recaptcha/distinfo (props changed) head/www/py-requests-oauth-hook/distinfo (props changed) head/www/py-restclient/distinfo (props changed) head/www/py-routes/distinfo (props changed) head/www/py-satchmo/distinfo (props changed) head/www/py-scgi/distinfo (props changed) head/www/py-scrapy/distinfo (props changed) head/www/py-scriptaculous/distinfo (props changed) head/www/py-slimmer/distinfo (props changed) head/www/py-surl/distinfo (props changed) head/www/py-textile/distinfo (props changed) head/www/py-tgwebservices/distinfo (props changed) head/www/py-turbogears/distinfo (props changed) head/www/py-turbogears2/distinfo (props changed) head/www/py-tvdb_api/distinfo (props changed) head/www/py-twistedWeb2/distinfo (props changed) head/www/py-urlgrabber/distinfo (props changed) head/www/py-urljr/distinfo (props changed) head/www/py-utidy/distinfo (props changed) head/www/py-webhelpers/distinfo (props changed) head/www/py-webkitgtk/distinfo (props changed) head/www/py-webob/distinfo (props changed) head/www/py-webunit/distinfo (props changed) head/www/py-webware-component/distinfo (props changed) head/www/py-wikitools/distinfo (props changed) head/www/py-wsgiauth/distinfo (props changed) head/www/py-zope.app.wsgi/distinfo (props changed) head/www/pyblosxom/distinfo (props changed) head/www/pyjamas/distinfo (props changed) head/www/pylot/distinfo (props changed) head/www/pyweblib/distinfo (props changed) head/www/qdecoder/distinfo (props changed) head/www/quickie/distinfo (props changed) head/www/quixote/distinfo (props changed) head/www/radicale/distinfo (props changed) head/www/red5/distinfo (props changed) head/www/redmine-basecamp/distinfo (props changed) head/www/redmine-http-auth/distinfo (props changed) head/www/redmine-sidebar_hide/distinfo (props changed) head/www/rejik/distinfo (props changed) head/www/reportmagic/distinfo (props changed) head/www/repos-style/distinfo (props changed) head/www/retawq/distinfo (props changed) head/www/reviewboard/distinfo (props changed) head/www/rnews/distinfo (props changed) head/www/rsskit/distinfo (props changed) head/www/rssowl/distinfo (props changed) head/www/rsstail/distinfo (props changed) head/www/rsstool/distinfo (props changed) head/www/ruboard/distinfo (props changed) head/www/ruby-amazon/distinfo (props changed) head/www/ruby-aws/distinfo (props changed) head/www/ruby-borges/distinfo (props changed) head/www/ruby-div/distinfo (props changed) head/www/ruby-fcgi/distinfo (props changed) head/www/ruby-fcgiwrap/distinfo (props changed) head/www/ruby-google/distinfo (props changed) head/www/ruby-wgettsv/distinfo (props changed) head/www/rubygem-acts-as-taggable-on/distinfo (props changed) head/www/rubygem-amazon-ecs/distinfo (props changed) head/www/rubygem-anemone/distinfo (props changed) head/www/rubygem-bluecloth/distinfo (props changed) head/www/rubygem-carrierwave/distinfo (props changed) head/www/rubygem-cgi_multipart_eof_fix/distinfo (props changed) head/www/rubygem-cookiejar/distinfo (props changed) head/www/rubygem-cuba/distinfo (props changed) head/www/rubygem-davclient/distinfo (props changed) head/www/rubygem-emk-sinatra-url-for/distinfo (props changed) head/www/rubygem-erubis/distinfo (props changed) head/www/rubygem-ethon/distinfo (props changed) head/www/rubygem-eventmachine_httpserver/distinfo (props changed) head/www/rubygem-faraday/distinfo (props changed) head/www/rubygem-faraday_middleware/distinfo (props changed) head/www/rubygem-feed-normalizer/distinfo (props changed) head/www/rubygem-geminabox/distinfo (props changed) head/www/rubygem-gitlab-gollum-lib/distinfo (props changed) head/www/rubygem-gitlab-grack/distinfo (props changed) head/www/rubygem-haml-coderay/distinfo (props changed) head/www/rubygem-haml-contrib/distinfo (props changed) head/www/rubygem-haml-rails/distinfo (props changed) head/www/rubygem-hpricot/distinfo (props changed) head/www/rubygem-html2haml/distinfo (props changed) head/www/rubygem-http-cookie/distinfo (props changed) head/www/rubygem-jekyll/distinfo (props changed) head/www/rubygem-journey/distinfo (props changed) head/www/rubygem-jquery-atwho-rails/distinfo (props changed) head/www/rubygem-jquery-turbolinks/distinfo (props changed) head/www/rubygem-jquery-ui-rails/distinfo (props changed) head/www/rubygem-jruby-rack/distinfo (props changed) head/www/rubygem-kaminari/distinfo (props changed) head/www/rubygem-layout-yullio/distinfo (props changed) head/www/rubygem-less/distinfo (props changed) head/www/rubygem-lighthouse-api/distinfo (props changed) head/www/rubygem-merb-assets/distinfo (props changed) head/www/rubygem-merb-core/distinfo (props changed) head/www/rubygem-merb-haml/distinfo (props changed) head/www/rubygem-merb-helpers/distinfo (props changed) head/www/rubygem-merb-param-protection/distinfo (props changed) head/www/rubygem-modernizr/distinfo (props changed) head/www/rubygem-multipart-post/distinfo (props changed) head/www/rubygem-nicovideo/distinfo (props changed) head/www/rubygem-ntlm-http/distinfo (props changed) head/www/rubygem-passenger/distinfo (props changed) head/www/rubygem-rack-accept/distinfo (props changed) head/www/rubygem-rack-attack/distinfo (props changed) head/www/rubygem-rack-cache/distinfo (props changed) head/www/rubygem-rack-mount/distinfo (props changed) head/www/rubygem-rack-openid/distinfo (props changed) head/www/rubygem-rack-test/distinfo (props changed) head/www/rubygem-raphael-rails/distinfo (props changed) head/www/rubygem-redcloth/distinfo (props changed) head/www/rubygem-redis-rack/distinfo (props changed) head/www/rubygem-redis-rails/distinfo (props changed) head/www/rubygem-rfacebook/distinfo (props changed) head/www/rubygem-rfeedfinder/distinfo (props changed) head/www/rubygem-robotex/distinfo (props changed) head/www/rubygem-robots/distinfo (props changed) head/www/rubygem-scrapi/distinfo (props changed) head/www/rubygem-scrubyt/distinfo (props changed) head/www/rubygem-select2-rails/distinfo (props changed) head/www/rubygem-taggable/distinfo (props changed) head/www/rubygem-thin/distinfo (props changed) head/www/rubygem-tinyatom/distinfo (props changed) head/www/rubygem-turbolinks/distinfo (props changed) head/www/rubygem-underscore-rails/distinfo (props changed) head/www/rubygem-url-mount/distinfo (props changed) head/www/rubygem-url_escape/distinfo (props changed) head/www/rubygem-webkit-gtk/distinfo (props changed) head/www/rubygem-webkit-gtk2/distinfo (props changed) head/www/rubygem-websocket/distinfo (props changed) head/www/rubygem-yapra/distinfo (props changed) head/www/runsomebrowser/distinfo (props changed) head/www/sahi/distinfo (props changed) head/www/sakai/distinfo (props changed) head/www/samidare/distinfo (props changed) head/www/sams/distinfo (props changed) head/www/sarg/distinfo (props changed) head/www/sbox-dtc/distinfo (props changed) head/www/scloader/distinfo (props changed) head/www/screem/distinfo (props changed) head/www/script4rss/distinfo (props changed) head/www/selenium/distinfo (props changed) head/www/serf/distinfo (props changed) head/www/servlet-api/distinfo (props changed) head/www/session2/distinfo (props changed) head/www/sfnt2woff/distinfo (props changed) head/www/shellinabox/distinfo (props changed) head/www/shttpd/distinfo (props changed) head/www/simplog/distinfo (props changed) head/www/sit/distinfo (props changed) head/www/sitebar/distinfo (props changed) head/www/sitecopy/distinfo (props changed) head/www/siteframe/distinfo (props changed) head/www/skytemplate/distinfo (props changed) head/www/smarty2/distinfo (props changed) head/www/smarty3/distinfo (props changed) head/www/smb_auth/distinfo (props changed) head/www/snarf/distinfo (props changed) head/www/snownews/distinfo (props changed) head/www/spawn-fcgi/distinfo (props changed) head/www/speedtest-mini/distinfo (props changed) head/www/spreadlogd/distinfo (props changed) head/www/sqstat/distinfo (props changed) head/www/squid/distinfo (props changed) head/www/squid_radius_auth/distinfo (props changed) head/www/squidclamav/distinfo (props changed) head/www/squidguard/distinfo (props changed) head/www/squidpurge/distinfo (props changed) head/www/squidstats/distinfo (props changed) head/www/squirm/distinfo (props changed) head/www/srg/distinfo (props changed) head/www/subsonic/distinfo (props changed) head/www/sventon/distinfo (props changed) head/www/swfdec-plugin/distinfo (props changed) head/www/swiggle/distinfo (props changed) head/www/swish++/distinfo (props changed) head/www/swish-e/distinfo (props changed) head/www/syndigator/distinfo (props changed) head/www/tclhttpd/distinfo (props changed) head/www/tclwebtest/distinfo (props changed) head/www/tdiary/distinfo (props changed) head/www/tdom/distinfo (props changed) head/www/template_/distinfo (props changed) head/www/templatelite/distinfo (props changed) head/www/testlink/distinfo (props changed) head/www/textpattern/distinfo (props changed) head/www/thttpd/distinfo (props changed) head/www/thumbnail_index/distinfo (props changed) head/www/thundercache/distinfo (props changed) head/www/thundersnarf/distinfo (props changed) head/www/tickr/distinfo (props changed) head/www/tidy-devel/distinfo (props changed) head/www/tidy/distinfo (props changed) head/www/tinyproxy/distinfo (props changed) head/www/tinytinyhttpd/distinfo (props changed) head/www/tntnet/distinfo (props changed) head/www/tokyopromenade/distinfo (props changed) head/www/tomcat-native/distinfo (props changed) head/www/tomcat6/distinfo (props changed) head/www/tomcat7/distinfo (props changed) head/www/trac-OhlohWidgetsMacro/distinfo (props changed) head/www/trac-TracDuplicates/distinfo (props changed) head/www/trac-TracGoogleAnalytics/distinfo (props changed) head/www/trac-accountmanager/distinfo (props changed) head/www/trac-addcomment/distinfo (props changed) head/www/trac-advancedticketworkflow/distinfo (props changed) head/www/trac-announcer/distinfo (props changed) head/www/trac-attachmentpolicy/distinfo (props changed) head/www/trac-autocomplete/distinfo (props changed) head/www/trac-batchmodify/distinfo (props changed) head/www/trac-bzr/distinfo (props changed) head/www/trac-calendar/distinfo (props changed) head/www/trac-ccselector/distinfo (props changed) head/www/trac-childtickets/distinfo (props changed) head/www/trac-codetags/distinfo (props changed) head/www/trac-customfieldadmin/distinfo (props changed) head/www/trac-datefield/distinfo (props changed) head/www/trac-defaultcc/distinfo (props changed) head/www/trac-discussion/distinfo (props changed) head/www/trac-down/distinfo (props changed) head/www/trac-downloads/distinfo (props changed) head/www/trac-estimator/distinfo (props changed) head/www/trac-fivestarvote/distinfo (props changed) head/www/trac-fullblog/distinfo (props changed) head/www/trac-fullblognotification/distinfo (props changed) head/www/trac-gantt/distinfo (props changed) head/www/trac-graphviz/distinfo (props changed) head/www/trac-hierwiki/distinfo (props changed) head/www/trac-iniadmin/distinfo (props changed) head/www/trac-keywords/distinfo (props changed) head/www/trac-ldap/distinfo (props changed) head/www/trac-macropost/distinfo (props changed) head/www/trac-mastertickets/distinfo (props changed) head/www/trac-math/distinfo (props changed) head/www/trac-mercurial/distinfo (props changed) head/www/trac-nav/distinfo (props changed) head/www/trac-navadd/distinfo (props changed) head/www/trac-pagelist/distinfo (props changed) head/www/trac-pagetopdf/distinfo (props changed) head/www/trac-pendingticket/distinfo (props changed) head/www/trac-permredirect/distinfo (props changed) head/www/trac-privatetickets/distinfo (props changed) head/www/trac-pydotorgtheme/distinfo (props changed) head/www/trac-remind/distinfo (props changed) head/www/trac-revtree/distinfo (props changed) head/www/trac-robotstxt/distinfo (props changed) head/www/trac-scrumburndown/distinfo (props changed) head/www/trac-simpleticket/distinfo (props changed) head/www/trac-spam-filter/distinfo (props changed) head/www/trac-subtickets/distinfo (props changed) head/www/trac-tags/distinfo (props changed) head/www/trac-ticketimport/distinfo (props changed) head/www/trac-tickettemplate/distinfo (props changed) head/www/trac-timingandestimation/distinfo (props changed) head/www/trac-tocmacro/distinfo (props changed) head/www/trac-tracdragdrop/distinfo (props changed) head/www/trac-tweakui/distinfo (props changed) head/www/trac-vote/distinfo (props changed) head/www/trac-wantedpages/distinfo (props changed) head/www/trac-watchlist/distinfo (props changed) head/www/trac-wikigoodies/distinfo (props changed) head/www/trac-wikinegotiator/distinfo (props changed) head/www/trac-wikinotification/distinfo (props changed) head/www/trac-wikitemplates/distinfo (props changed) head/www/trac-wikitopdf/distinfo (props changed) head/www/trac-wysiwyg/distinfo (props changed) head/www/trac-xmlrpc/distinfo (props changed) head/www/trac/distinfo (props changed) head/www/transproxy/distinfo (props changed) head/www/trytond28_google_maps/distinfo (props changed) head/www/trytond_google_maps/distinfo (props changed) head/www/ttf2eot/distinfo (props changed) head/www/twig/distinfo (props changed) head/www/twiki-BehaviourContrib/distinfo (props changed) head/www/twiki-BlogAddOn/distinfo (props changed) head/www/twiki-BugzillaLinkPlugin/distinfo (props changed) head/www/twiki-ClassicSkin/distinfo (props changed) head/www/twiki-CommentPlugin/distinfo (props changed) head/www/twiki-EditTablePlugin/distinfo (props changed) head/www/twiki-EmptyPlugin/distinfo (props changed) head/www/twiki-GluePlugin/distinfo (props changed) head/www/twiki-InterwikiPlugin/distinfo (props changed) head/www/twiki-JSCalendarContrib/distinfo (props changed) head/www/twiki-LDAPPasswordChangerPlugin/distinfo (props changed) head/www/twiki-LdapContrib/distinfo (props changed) head/www/twiki-LdapNgPlugin/distinfo (props changed) head/www/twiki-MailerContrib/distinfo (props changed) head/www/twiki-MathModePlugin/distinfo (props changed) head/www/twiki-NewUserPlugin/distinfo (props changed) head/www/twiki-PatternSkin/distinfo (props changed) head/www/twiki-PreferencesPlugin/distinfo (props changed) head/www/twiki-RenderListPlugin/distinfo (props changed) head/www/twiki-SlideShowPlugin/distinfo (props changed) head/www/twiki-SmiliesPlugin/distinfo (props changed) head/www/twiki-SpreadSheetPlugin/distinfo (props changed) head/www/twiki-SubscribePlugin/distinfo (props changed) head/www/twiki-TWikiUserMappingContrib/distinfo (props changed) head/www/twiki-TablePlugin/distinfo (props changed) head/www/twiki-TagMePlugin/distinfo (props changed) head/www/twiki-TinyMCEPlugin/distinfo (props changed) head/www/twiki-TipsContrib/distinfo (props changed) head/www/twiki-TopicVarsPlugin/distinfo (props changed) head/www/twiki-TwistyContrib/distinfo (props changed) head/www/twiki-TwistyPlugin/distinfo (props changed) head/www/twiki-WysiwygPlugin/distinfo (props changed) head/www/twiki/distinfo (props changed) head/www/twill/distinfo (props changed) head/www/twms/distinfo (props changed) head/www/typolight/distinfo (props changed) head/www/udmsearch/distinfo (props changed) head/www/ump/distinfo (props changed) head/www/usermanager/distinfo (props changed) head/www/uwsgitop/distinfo (props changed) head/www/uzbl/distinfo (props changed) head/www/validator/distinfo (props changed) head/www/varnish-libvmod-header/distinfo (props changed) head/www/varnish-nagios/distinfo (props changed) head/www/varnish/distinfo (props changed) head/www/vdr-plugin-live/distinfo (props changed) head/www/vdradmin-am/distinfo (props changed) head/www/vee/distinfo (props changed) head/www/vertx/distinfo (props changed) head/www/videocache/distinfo (props changed) head/www/visitors/distinfo (props changed) head/www/volta/distinfo (props changed) head/www/vtiger-customerportal/distinfo (props changed) head/www/vtiger/distinfo (props changed) head/www/w3m/distinfo (props changed) head/www/w3mir/distinfo (props changed) head/www/waccess/distinfo (props changed) head/www/wadcomblog/distinfo (props changed) head/www/web2ldap/distinfo (props changed) head/www/webalizer/distinfo (props changed) head/www/webcalendar-devel/distinfo (props changed) head/www/webcalendar/distinfo (props changed) head/www/webcheck/distinfo (props changed) head/www/webcopy/distinfo (props changed) head/www/webcrawl/distinfo (props changed) head/www/webfs/distinfo (props changed) head/www/webgo/distinfo (props changed) head/www/webinject/distinfo (props changed) head/www/webkit-sharp/distinfo (props changed) head/www/weblint++/distinfo (props changed) head/www/weblint/distinfo (props changed) head/www/webmachine/distinfo (props changed) head/www/webobjects/distinfo (props changed) head/www/webpy/distinfo (props changed) head/www/webreport/distinfo (props changed) head/www/webresolve/distinfo (props changed) head/www/websh/distinfo (props changed) head/www/webstats/distinfo (props changed) head/www/webstone-ssl/distinfo (props changed) head/www/webstone/distinfo (props changed) head/www/webtrees/distinfo (props changed) head/www/wikicalc/distinfo (props changed) head/www/wikindx/distinfo (props changed) head/www/wml/distinfo (props changed) head/www/woof/distinfo (props changed) head/www/wsdlpull/distinfo (props changed) head/www/wsmake/distinfo (props changed) head/www/www6to4/distinfo (props changed) head/www/wwwcount/distinfo (props changed) head/www/wwwoffle/distinfo (props changed) head/www/wwwstat/distinfo (props changed) head/www/xapian-omega10/distinfo (props changed) head/www/xaraya/distinfo (props changed) head/www/xcache/distinfo (props changed) head/www/xist/distinfo (props changed) head/www/xombrero/distinfo (props changed) head/www/xoops/distinfo (props changed) head/www/xpi-adblock/distinfo (props changed) head/www/xpi-adblock_plus/distinfo (props changed) head/www/xpi-bookmarkdd/distinfo (props changed) head/www/xpi-clear_cache_button/distinfo (props changed) head/www/xpi-clearfields/distinfo (props changed) head/www/xpi-close-all-tabs/distinfo (props changed) head/www/xpi-conkeror/distinfo (props changed) head/www/xpi-cookiesafe/distinfo (props changed) head/www/xpi-cssviewer/distinfo (props changed) head/www/xpi-cutemenus-crystalsvg/distinfo (props changed) head/www/xpi-deepestsender/distinfo (props changed) head/www/xpi-default_full_zoom_level/distinfo (props changed) head/www/xpi-delicious/distinfo (props changed) head/www/xpi-errorzilla/distinfo (props changed) head/www/xpi-fasterfox/distinfo (props changed) head/www/xpi-firefox-showcase/distinfo (props changed) head/www/xpi-firemobilesimulator/distinfo (props changed) head/www/xpi-fission/distinfo (props changed) head/www/xpi-flashblock/distinfo (props changed) head/www/xpi-flashgot/distinfo (props changed) head/www/xpi-flatbmark/distinfo (props changed) head/www/xpi-forecastfox/distinfo (props changed) head/www/xpi-formfox/distinfo (props changed) head/www/xpi-foxmarks/distinfo (props changed) head/www/xpi-foxyproxy/distinfo (props changed) head/www/xpi-gbrain/distinfo (props changed) head/www/xpi-gdata_provider/distinfo (props changed) head/www/xpi-gmail-manager/distinfo (props changed) head/www/xpi-google-notebook/distinfo (props changed) head/www/xpi-google_shortcuts/distinfo (props changed) head/www/xpi-grab_and_drag/distinfo (props changed) head/www/xpi-httpfox/distinfo (props changed) head/www/xpi-imagezoom/distinfo (props changed) head/www/xpi-imdbpreview/distinfo (props changed) head/www/xpi-imglikeopera/distinfo (props changed) head/www/xpi-infolister/distinfo (props changed) head/www/xpi-informenter/distinfo (props changed) head/www/xpi-inline-google-definitions/distinfo (props changed) head/www/xpi-jslib/distinfo (props changed) head/www/xpi-jsview/distinfo (props changed) head/www/xpi-jv/distinfo (props changed) head/www/xpi-leechblock/distinfo (props changed) head/www/xpi-linkification/distinfo (props changed) head/www/xpi-live_http_headers/distinfo (props changed) head/www/xpi-live_pagerank/distinfo (props changed) head/www/xpi-locale-switcher/distinfo (props changed) head/www/xpi-menueditor/distinfo (props changed) head/www/xpi-mldonkey/distinfo (props changed) head/www/xpi-modify_headers/distinfo (props changed) head/www/xpi-mrtech-local-install/distinfo (props changed) head/www/xpi-neo-diggler/distinfo (props changed) head/www/xpi-no-referrer/distinfo (props changed) head/www/xpi-passwordmaker/distinfo (props changed) head/www/xpi-pdf_download/distinfo (props changed) head/www/xpi-pencil/distinfo (props changed) head/www/xpi-permatabs/distinfo (props changed) head/www/xpi-prism/distinfo (props changed) head/www/xpi-quickproxy/distinfo (props changed) head/www/xpi-resurrectpages/distinfo (props changed) head/www/xpi-sameplace/distinfo (props changed) head/www/xpi-scrapbook/distinfo (props changed) head/www/xpi-searchstatus/distinfo (props changed) head/www/xpi-server_spy/distinfo (props changed) head/www/xpi-server_switcher/distinfo (props changed) head/www/xpi-sessionmanager/distinfo (props changed) head/www/xpi-showip/distinfo (props changed) head/www/xpi-speed-dial/distinfo (props changed) head/www/xpi-splash/distinfo (props changed) head/www/xpi-stumbleupon/distinfo (props changed) head/www/xpi-stylish/distinfo (props changed) head/www/xpi-table2clipboard/distinfo (props changed) head/www/xpi-tabletools/distinfo (props changed) head/www/xpi-tagzilla/distinfo (props changed) head/www/xpi-togglewordwrap/distinfo (props changed) head/www/xpi-twitterfox/distinfo (props changed) head/www/xpi-urllink/distinfo (props changed) head/www/xpi-user_agent_switcher/distinfo (props changed) head/www/xpi-vimperator/distinfo (props changed) head/www/xpi-wmlbrowser/distinfo (props changed) head/www/xpi-xhtml-ruby-support/distinfo (props changed) head/www/xpi-xmpp4moz/distinfo (props changed) head/www/xpi-yslow/distinfo (props changed) head/www/xshttpd-devel/distinfo (props changed) head/www/xshttpd/distinfo (props changed) head/www/xsp/distinfo (props changed) head/www/yanopaste/distinfo (props changed) head/www/yaws/distinfo (props changed) head/www/yourls/distinfo (props changed) head/www/zen-cart/distinfo (props changed) head/www/zend-framework/distinfo (props changed) head/www/zend-framework1/distinfo (props changed) head/www/zerowait-httpd/distinfo (props changed) head/www/zope213/distinfo (props changed) head/x11-clocks/abclock/distinfo (props changed) head/x11-clocks/aclock/distinfo (props changed) head/x11-clocks/alarm-clock/distinfo (props changed) head/x11-clocks/alltraxclock/distinfo (props changed) head/x11-clocks/asclock-gtk/distinfo (props changed) head/x11-clocks/asclock-xlib/distinfo (props changed) head/x11-clocks/asclock/distinfo (props changed) head/x11-clocks/astime/distinfo (props changed) head/x11-clocks/astzclock/distinfo (props changed) head/x11-clocks/bbdate/distinfo (props changed) head/x11-clocks/bclock/distinfo (props changed) head/x11-clocks/buici-clock/distinfo (props changed) head/x11-clocks/cairo-clock/distinfo (props changed) head/x11-clocks/emiclock/distinfo (props changed) head/x11-clocks/eyeclock/distinfo (props changed) head/x11-clocks/gdesklets-clock/distinfo (props changed) head/x11-clocks/gdesklets-countdown/distinfo (props changed) head/x11-clocks/gdesklets-ebichuclock/distinfo (props changed) head/x11-clocks/glclock/distinfo (props changed) head/x11-clocks/gtubeclock/distinfo (props changed) head/x11-clocks/intclock/distinfo (props changed) head/x11-clocks/lmclock/distinfo (props changed) head/x11-clocks/mlclock/distinfo (props changed) head/x11-clocks/mouseclock/distinfo (props changed) head/x11-clocks/oclock/distinfo (props changed) head/x11-clocks/osdclock/distinfo (props changed) head/x11-clocks/pclock/distinfo (props changed) head/x11-clocks/plasma-applet-geekclock/distinfo (props changed) head/x11-clocks/rclock/distinfo (props changed) head/x11-clocks/sanduhr/distinfo (props changed) head/x11-clocks/stopwatch/distinfo (props changed) head/x11-clocks/swisswatch/distinfo (props changed) head/x11-clocks/t3d/distinfo (props changed) head/x11-clocks/tclock/distinfo (props changed) head/x11-clocks/tktz/distinfo (props changed) head/x11-clocks/wmbday/distinfo (props changed) head/x11-clocks/wmbinclock/distinfo (props changed) head/x11-clocks/wmblueclock/distinfo (props changed) head/x11-clocks/wmcalclock/distinfo (props changed) head/x11-clocks/wmclock/distinfo (props changed) head/x11-clocks/wmclockmon/distinfo (props changed) head/x11-clocks/wmfishtime/distinfo (props changed) head/x11-clocks/wmfuzzy/distinfo (props changed) head/x11-clocks/wmitime/distinfo (props changed) head/x11-clocks/wmtime/distinfo (props changed) head/x11-clocks/wmtimer/distinfo (props changed) head/x11-clocks/xalarm/distinfo (props changed) head/x11-clocks/xclock/distinfo (props changed) head/x11-clocks/xfce4-timer-out-plugin/distinfo (props changed) head/x11-clocks/xtimer/distinfo (props changed) head/x11-drivers/input-wacom/distinfo (props changed) head/x11-drivers/xf86-input-acecad/distinfo (props changed) head/x11-drivers/xf86-input-egalax/distinfo (props changed) head/x11-drivers/xf86-input-elographics/distinfo (props changed) head/x11-drivers/xf86-input-hyperpen/distinfo (props changed) head/x11-drivers/xf86-input-joystick/distinfo (props changed) head/x11-drivers/xf86-input-keyboard/distinfo (props changed) head/x11-drivers/xf86-input-magictouch/distinfo (props changed) head/x11-drivers/xf86-input-mouse/distinfo (props changed) head/x11-drivers/xf86-input-mutouch/distinfo (props changed) head/x11-drivers/xf86-input-penmount/distinfo (props changed) head/x11-drivers/xf86-input-synaptics/distinfo (props changed) head/x11-drivers/xf86-input-vmmouse/distinfo (props changed) head/x11-drivers/xf86-input-void/distinfo (props changed) head/x11-drivers/xf86-video-apm/distinfo (props changed) head/x11-drivers/xf86-video-ark/distinfo (props changed) head/x11-drivers/xf86-video-ati/distinfo (props changed) head/x11-drivers/xf86-video-chips/distinfo (props changed) head/x11-drivers/xf86-video-cirrus/distinfo (props changed) head/x11-drivers/xf86-video-cyrix/distinfo (props changed) head/x11-drivers/xf86-video-dummy/distinfo (props changed) head/x11-drivers/xf86-video-fbdev/distinfo (props changed) head/x11-drivers/xf86-video-glint/distinfo (props changed) head/x11-drivers/xf86-video-i128/distinfo (props changed) head/x11-drivers/xf86-video-i740/distinfo (props changed) head/x11-drivers/xf86-video-imstt/distinfo (props changed) head/x11-drivers/xf86-video-intel/distinfo (props changed) head/x11-drivers/xf86-video-mach64/distinfo (props changed) head/x11-drivers/xf86-video-mga/distinfo (props changed) head/x11-drivers/xf86-video-neomagic/distinfo (props changed) head/x11-drivers/xf86-video-newport/distinfo (props changed) head/x11-drivers/xf86-video-nouveau/distinfo (props changed) head/x11-drivers/xf86-video-nv/distinfo (props changed) head/x11-drivers/xf86-video-openchrome/distinfo (props changed) head/x11-drivers/xf86-video-r128/distinfo (props changed) head/x11-drivers/xf86-video-radeonhd/distinfo (props changed) head/x11-drivers/xf86-video-rdc/distinfo (props changed) head/x11-drivers/xf86-video-rendition/distinfo (props changed) head/x11-drivers/xf86-video-s3/distinfo (props changed) head/x11-drivers/xf86-video-s3virge/distinfo (props changed) head/x11-drivers/xf86-video-savage/distinfo (props changed) head/x11-drivers/xf86-video-siliconmotion/distinfo (props changed) head/x11-drivers/xf86-video-sis-intel/distinfo (props changed) head/x11-drivers/xf86-video-sis/distinfo (props changed) head/x11-drivers/xf86-video-tdfx/distinfo (props changed) head/x11-drivers/xf86-video-tga/distinfo (props changed) head/x11-drivers/xf86-video-trident/distinfo (props changed) head/x11-drivers/xf86-video-tseng/distinfo (props changed) head/x11-drivers/xf86-video-vesa/distinfo (props changed) head/x11-drivers/xf86-video-via/distinfo (props changed) head/x11-drivers/xf86-video-vmware/distinfo (props changed) head/x11-drivers/xf86-video-voodoo/distinfo (props changed) head/x11-fm/asfiles/distinfo (props changed) head/x11-fm/catseye-fm/distinfo (props changed) head/x11-fm/dfm/distinfo (props changed) head/x11-fm/doublecmd/distinfo (props changed) head/x11-fm/ezfm/distinfo (props changed) head/x11-fm/gentoo/distinfo (props changed) head/x11-fm/gnome-commander2/distinfo (props changed) head/x11-fm/gprename/distinfo (props changed) head/x11-fm/mate-file-manager/distinfo (props changed) head/x11-fm/mtoolsfm/distinfo (props changed) head/x11-fm/nautilus/distinfo (props changed) head/x11-fm/p5-PerlFM/distinfo (props changed) head/x11-fm/pbi-thumbnailer/distinfo (props changed) head/x11-fm/py-nautilus/distinfo (props changed) head/x11-fm/qtfm/distinfo (props changed) head/x11-fm/rodent/distinfo (props changed) head/x11-fm/rox-filer/distinfo (props changed) head/x11-fm/rox-mime-editor/distinfo (props changed) head/x11-fm/rox-session/distinfo (props changed) head/x11-fm/tdfsb/distinfo (props changed) head/x11-fm/thunar-vfs/distinfo (props changed) head/x11-fm/twander/distinfo (props changed) head/x11-fm/ultracopier/distinfo (props changed) head/x11-fm/worker/distinfo (props changed) head/x11-fm/xcruise/distinfo (props changed) head/x11-fm/xdiskusage/distinfo (props changed) head/x11-fm/xfm/distinfo (props changed) head/x11-fm/xplore/distinfo (props changed) head/x11-fonts/andika/distinfo (props changed) head/x11-fonts/anonymous-pro/distinfo (props changed) head/x11-fonts/artwiz-aleczapka-de/distinfo (props changed) head/x11-fonts/artwiz-aleczapka-se/distinfo (props changed) head/x11-fonts/artwiz-aleczapka/distinfo (props changed) head/x11-fonts/artwiz-fonts/distinfo (props changed) head/x11-fonts/bdfresize/distinfo (props changed) head/x11-fonts/bdftopcf/distinfo (props changed) head/x11-fonts/bitstream-vera/distinfo (props changed) head/x11-fonts/c64bdf/distinfo (props changed) head/x11-fonts/code2000/distinfo (props changed) head/x11-fonts/code2001/distinfo (props changed) head/x11-fonts/cyberbit-ttfonts/distinfo (props changed) head/x11-fonts/cyr-rfx/distinfo (props changed) head/x11-fonts/doulos-compact/distinfo (props changed) head/x11-fonts/droid-fonts-ttf/distinfo (props changed) head/x11-fonts/ecofont/distinfo (props changed) head/x11-fonts/encodings/distinfo (props changed) head/x11-fonts/farsifonts/distinfo (props changed) head/x11-fonts/fira/distinfo (props changed) head/x11-fonts/fntsample/distinfo (props changed) head/x11-fonts/font-adobe-100dpi/distinfo (props changed) head/x11-fonts/font-adobe-75dpi/distinfo (props changed) head/x11-fonts/font-adobe-utopia-100dpi/distinfo (props changed) head/x11-fonts/font-adobe-utopia-75dpi/distinfo (props changed) head/x11-fonts/font-adobe-utopia-type1/distinfo (props changed) head/x11-fonts/font-alias/distinfo (props changed) head/x11-fonts/font-arabic-misc/distinfo (props changed) head/x11-fonts/font-bh-100dpi/distinfo (props changed) head/x11-fonts/font-bh-75dpi/distinfo (props changed) head/x11-fonts/font-bh-lucidatypewriter-100dpi/distinfo (props changed) head/x11-fonts/font-bh-lucidatypewriter-75dpi/distinfo (props changed) head/x11-fonts/font-bh-ttf/distinfo (props changed) head/x11-fonts/font-bh-type1/distinfo (props changed) head/x11-fonts/font-bitstream-100dpi/distinfo (props changed) head/x11-fonts/font-bitstream-75dpi/distinfo (props changed) head/x11-fonts/font-bitstream-speedo/distinfo (props changed) head/x11-fonts/font-bitstream-type1/distinfo (props changed) head/x11-fonts/font-cronyx-cyrillic/distinfo (props changed) head/x11-fonts/font-cursor-misc/distinfo (props changed) head/x11-fonts/font-daewoo-misc/distinfo (props changed) head/x11-fonts/font-dec-misc/distinfo (props changed) head/x11-fonts/font-ibm-type1/distinfo (props changed) head/x11-fonts/font-isas-misc/distinfo (props changed) head/x11-fonts/font-jis-misc/distinfo (props changed) head/x11-fonts/font-manager/distinfo (props changed) head/x11-fonts/font-micro-misc/distinfo (props changed) head/x11-fonts/font-misc-cyrillic/distinfo (props changed) head/x11-fonts/font-misc-ethiopic/distinfo (props changed) head/x11-fonts/font-misc-meltho/distinfo (props changed) head/x11-fonts/font-misc-misc/distinfo (props changed) head/x11-fonts/font-mutt-misc/distinfo (props changed) head/x11-fonts/font-schumacher-misc/distinfo (props changed) head/x11-fonts/font-screen-cyrillic/distinfo (props changed) head/x11-fonts/font-sony-misc/distinfo (props changed) head/x11-fonts/font-sun-misc/distinfo (props changed) head/x11-fonts/font-util/distinfo (props changed) head/x11-fonts/font-winitzki-cyrillic/distinfo (props changed) head/x11-fonts/font-xfree86-type1/distinfo (props changed) head/x11-fonts/fontcacheproto/distinfo (props changed) head/x11-fonts/fontmatrix/distinfo (props changed) head/x11-fonts/fonts-indic/distinfo (props changed) head/x11-fonts/fonts-te/distinfo (props changed) head/x11-fonts/fontsproto/distinfo (props changed) head/x11-fonts/fonttosfnt/distinfo (props changed) head/x11-fonts/freefont-ttf/distinfo (props changed) head/x11-fonts/freefonts/distinfo (props changed) head/x11-fonts/fslsfonts/distinfo (props changed) head/x11-fonts/gbdfed/distinfo (props changed) head/x11-fonts/geminifonts/distinfo (props changed) head/x11-fonts/gfe/distinfo (props changed) head/x11-fonts/gnu-unifont-ttf/distinfo (props changed) head/x11-fonts/gnu-unifont/distinfo (props changed) head/x11-fonts/hanazono-fonts-ttf/distinfo (props changed) head/x11-fonts/inconsolata-ttf/distinfo (props changed) head/x11-fonts/indic-ttf/distinfo (props changed) head/x11-fonts/intlfonts/distinfo (props changed) head/x11-fonts/isabella/distinfo (props changed) head/x11-fonts/jmk-x11-fonts/distinfo (props changed) head/x11-fonts/junicode/distinfo (props changed) head/x11-fonts/kaputa/distinfo (props changed) head/x11-fonts/khmeros/distinfo (props changed) head/x11-fonts/lfpfonts-fix/distinfo (props changed) head/x11-fonts/lfpfonts-var/distinfo (props changed) head/x11-fonts/libFS/distinfo (props changed) head/x11-fonts/libXfont/distinfo (props changed) head/x11-fonts/libXfontcache/distinfo (props changed) head/x11-fonts/libfontenc/distinfo (props changed) head/x11-fonts/linux-f10-fontconfig/distinfo.i386 (props changed) head/x11-fonts/linuxlibertine-g/distinfo (props changed) head/x11-fonts/linuxlibertine/distinfo (props changed) head/x11-fonts/lohit/distinfo (props changed) head/x11-fonts/manu-gothica/distinfo (props changed) head/x11-fonts/mgopen/distinfo (props changed) head/x11-fonts/mkbold-mkitalic/distinfo (props changed) head/x11-fonts/mkbold/distinfo (props changed) head/x11-fonts/mkfontdir/distinfo (props changed) head/x11-fonts/mkfontscale/distinfo (props changed) head/x11-fonts/mkitalic/distinfo (props changed) head/x11-fonts/mondulkiri/distinfo (props changed) head/x11-fonts/montecarlo_fonts/distinfo (props changed) head/x11-fonts/moveable-type-fonts/distinfo (props changed) head/x11-fonts/nexfontsel/distinfo (props changed) head/x11-fonts/nucleus/distinfo (props changed) head/x11-fonts/p5-Font-AFM/distinfo (props changed) head/x11-fonts/p5-Font-TTFMetrics/distinfo (props changed) head/x11-fonts/p5-type1inst/distinfo (props changed) head/x11-fonts/padauk/distinfo (props changed) head/x11-fonts/paratype/distinfo (props changed) head/x11-fonts/pcf2bdf/distinfo (props changed) head/x11-fonts/pingwi/distinfo (props changed) head/x11-fonts/profont/distinfo (props changed) head/x11-fonts/proggy_fonts-ttf/distinfo (props changed) head/x11-fonts/proggy_fonts/distinfo (props changed) head/x11-fonts/roboto-fonts-ttf/distinfo (props changed) head/x11-fonts/sgifonts/distinfo (props changed) head/x11-fonts/sharefonts/distinfo (props changed) head/x11-fonts/showfont/distinfo (props changed) head/x11-fonts/stix-fonts/distinfo (props changed) head/x11-fonts/suxus/distinfo (props changed) head/x11-fonts/terminus-font/distinfo (props changed) head/x11-fonts/texcm-ttf/distinfo (props changed) head/x11-fonts/tkfont/distinfo (props changed) head/x11-fonts/tmu/distinfo (props changed) head/x11-fonts/ttmkfdir/distinfo (props changed) head/x11-fonts/tv-fonts/distinfo (props changed) head/x11-fonts/ubuntu-font/distinfo (props changed) head/x11-fonts/urwfonts-ttf/distinfo (props changed) head/x11-fonts/urwfonts/distinfo (props changed) head/x11-fonts/webfonts/distinfo (props changed) head/x11-fonts/wqy/distinfo (props changed) head/x11-fonts/xf86bigfontproto/distinfo (props changed) head/x11-fonts/xfontsel/distinfo (props changed) head/x11-fonts/xfs/distinfo (props changed) head/x11-fonts/xfsinfo/distinfo (props changed) head/x11-fonts/xlsfonts/distinfo (props changed) head/x11-servers/Xfstt/distinfo (props changed) head/x11-servers/mga_hal/distinfo (props changed) head/x11-servers/x2vnc/distinfo (props changed) head/x11-servers/x2x/distinfo (props changed) head/x11-servers/xephyr/distinfo (props changed) head/x11-servers/xorg-dmx/distinfo (props changed) head/x11-servers/xorg-nestserver/distinfo (props changed) head/x11-servers/xorg-server/distinfo (props changed) head/x11-servers/xorg-vfbserver/distinfo (props changed) head/x11-themes/audacious-skins/distinfo (props changed) head/x11-themes/beastie/distinfo (props changed) head/x11-themes/bluecurve-themes/distinfo (props changed) head/x11-themes/claws-mail-themes/distinfo (props changed) head/x11-themes/clearlooks-metacity/distinfo (props changed) head/x11-themes/clearlooks-themes-extras/distinfo (props changed) head/x11-themes/clearlooks/distinfo (props changed) head/x11-themes/cursor-chameleon-anthracite/distinfo (props changed) head/x11-themes/cursor-chameleon-darkskyblue/distinfo (props changed) head/x11-themes/cursor-chameleon-pearl/distinfo (props changed) head/x11-themes/cursor-chameleon-skyblue/distinfo (props changed) head/x11-themes/cursor-chameleon-white/distinfo (props changed) head/x11-themes/cursor-crystal-theme/distinfo (props changed) head/x11-themes/cursor-dmz-aa-theme/distinfo (props changed) head/x11-themes/cursor-dmz-theme/distinfo (props changed) head/x11-themes/cursor-ecliz/distinfo (props changed) head/x11-themes/cursor-grounation-theme/distinfo (props changed) head/x11-themes/cursor-jimmac-theme/distinfo (props changed) head/x11-themes/cursor-neutral-theme/distinfo (props changed) head/x11-themes/cursor-neutral-white-theme/distinfo (props changed) head/x11-themes/cursor-polar-theme/distinfo (props changed) head/x11-themes/e16-themes/distinfo (props changed) head/x11-themes/emerald-themes/distinfo (props changed) head/x11-themes/fluxbox-tenr-styles-pack/distinfo (props changed) head/x11-themes/fvwm-themes/distinfo (props changed) head/x11-themes/gnome-backgrounds/distinfo (props changed) head/x11-themes/gnome-icons-aqua-fusion/distinfo (props changed) head/x11-themes/gnome-icons-crystal/distinfo (props changed) head/x11-themes/gnome-icons-dropline-neu/distinfo (props changed) head/x11-themes/gnome-icons-dropline-nou/distinfo (props changed) head/x11-themes/gnome-icons-elementary/distinfo (props changed) head/x11-themes/gnome-icons-faenza/distinfo (props changed) head/x11-themes/gnome-icons-gentoo-test/distinfo (props changed) head/x11-themes/gnome-icons-gion/distinfo (props changed) head/x11-themes/gnome-icons-iris/distinfo (props changed) head/x11-themes/gnome-icons-jini/distinfo (props changed) head/x11-themes/gnome-icons-lila/distinfo (props changed) head/x11-themes/gnome-icons-noia-full/distinfo (props changed) head/x11-themes/gnome-icons-noia-warm/distinfo (props changed) head/x11-themes/gnome-icons-refined/distinfo (props changed) head/x11-themes/gnome-icons-slick/distinfo (props changed) head/x11-themes/gnome-icons-snow-apple/distinfo (props changed) head/x11-themes/gnome-icons-snowish/distinfo (props changed) head/x11-themes/gnome-icons-stylish/distinfo (props changed) head/x11-themes/gnome-icons-ximian-south/distinfo (props changed) head/x11-themes/gnome-themes-extras/distinfo (props changed) head/x11-themes/gnome-themes/distinfo (props changed) head/x11-themes/gtk-aluminumalloy-cryogenic-theme/distinfo (props changed) head/x11-themes/gtk-aluminumalloy-smog-theme/distinfo (props changed) head/x11-themes/gtk-aluminumalloy-toxic-theme/distinfo (props changed) head/x11-themes/gtk-aluminumalloy-volcanic-theme/distinfo (props changed) head/x11-themes/gtk-aquaextremesunken-theme/distinfo (props changed) head/x11-themes/gtk-aqualightblue-theme/distinfo (props changed) head/x11-themes/gtk-aurora-engine/distinfo (props changed) head/x11-themes/gtk-cleanice-engine/distinfo (props changed) head/x11-themes/gtk-digital-cream-theme/distinfo (props changed) head/x11-themes/gtk-digital-harmony-theme/distinfo (props changed) head/x11-themes/gtk-engines2/distinfo (props changed) head/x11-themes/gtk-envy-theme/distinfo (props changed) head/x11-themes/gtk-equinox-engine/distinfo (props changed) head/x11-themes/gtk-flat-theme2/distinfo (props changed) head/x11-themes/gtk-gray-theme/distinfo (props changed) head/x11-themes/gtk-lila-theme-extras/distinfo (props changed) head/x11-themes/gtk-lila-theme/distinfo (props changed) head/x11-themes/gtk-longhorninspirat-theme/distinfo (props changed) head/x11-themes/gtk-milk-theme/distinfo (props changed) head/x11-themes/gtk-murrina-aqua/distinfo (props changed) head/x11-themes/gtk-murrina-fancy-clearlooks/distinfo (props changed) head/x11-themes/gtk-murrina-lightblue/distinfo (props changed) head/x11-themes/gtk-murrine-themes/distinfo (props changed) head/x11-themes/gtk-nodoka-engine/distinfo (props changed) head/x11-themes/gtk-oxygen-engine/distinfo (props changed) head/x11-themes/gtk-qnxtheme/distinfo (props changed) head/x11-themes/gtk-qt4-engine/distinfo (props changed) head/x11-themes/gtk3-oxygen-engine/distinfo (props changed) head/x11-themes/icon-naming-utils/distinfo (props changed) head/x11-themes/icons-buuf/distinfo (props changed) head/x11-themes/icons-human-azul/distinfo (props changed) head/x11-themes/icons-tango-extras/distinfo (props changed) head/x11-themes/icons-tango/distinfo (props changed) head/x11-themes/irssi-themes/distinfo (props changed) head/x11-themes/kde-icons-black-and-white/distinfo (props changed) head/x11-themes/kde-icons-cezanne/distinfo (props changed) head/x11-themes/kde-icons-crystal-project/distinfo (props changed) head/x11-themes/kde-icons-dark-glass/distinfo (props changed) head/x11-themes/kde-icons-gartoon-blue-svg/distinfo (props changed) head/x11-themes/kde-icons-gartoon-svg/distinfo (props changed) head/x11-themes/kde-icons-graphite-rade8/distinfo (props changed) head/x11-themes/kde-icons-icosx/distinfo (props changed) head/x11-themes/kde-icons-kool-gorilla/distinfo (props changed) head/x11-themes/kde-icons-lime-rade8/distinfo (props changed) head/x11-themes/kde-icons-lush/distinfo (props changed) head/x11-themes/kde-icons-noia/distinfo (props changed) head/x11-themes/kde-icons-nuovext/distinfo (props changed) head/x11-themes/kde-icons-nuovext2/distinfo (props changed) head/x11-themes/kde-icons-nuvola/distinfo (props changed) head/x11-themes/kde-icons-os-k/distinfo (props changed) head/x11-themes/kde-icons-sky/distinfo (props changed) head/x11-themes/kde-icons-umicons/distinfo (props changed) head/x11-themes/kde-icons-vista-inspirate/distinfo (props changed) head/x11-themes/kde4-style-nitrogen/distinfo (props changed) head/x11-themes/kde4-style-polyester/distinfo (props changed) head/x11-themes/kde4-style-skulpture/distinfo (props changed) head/x11-themes/kde4-windeco-dekorator/distinfo (props changed) head/x11-themes/kde4-windeco-nitrogen/distinfo (props changed) head/x11-themes/linux-f10-qtcurve-gtk2/distinfo.i386 (props changed) head/x11-themes/lxde-icon-theme/distinfo (props changed) head/x11-themes/mate-backgrounds/distinfo (props changed) head/x11-themes/mate-icon-theme/distinfo (props changed) head/x11-themes/mate-themes/distinfo (props changed) head/x11-themes/metacity-theme-microgui/distinfo (props changed) head/x11-themes/murrine-configurator/distinfo (props changed) head/x11-themes/nimbus/distinfo (props changed) head/x11-themes/openbox-themes/distinfo (props changed) head/x11-themes/qt4-style-float/distinfo (props changed) head/x11-themes/qt4-style-phase/distinfo (props changed) head/x11-themes/qt4-style-quantumstyle/distinfo (props changed) head/x11-themes/rezlooks/distinfo (props changed) head/x11-themes/sawfish-themes/distinfo (props changed) head/x11-themes/slim-themes/distinfo (props changed) head/x11-themes/thewidgetfactory/distinfo (props changed) head/x11-themes/ubuntulooks/distinfo (props changed) head/x11-themes/xcursor-themes/distinfo (props changed) head/x11-themes/xmms-eq-skins/distinfo (props changed) head/x11-themes/xmms-vumeter-skins/distinfo (props changed) head/x11-toolkits/SoXt/distinfo (props changed) head/x11-toolkits/Xaw3d/distinfo (props changed) head/x11-toolkits/bakery/distinfo (props changed) head/x11-toolkits/blt/distinfo (props changed) head/x11-toolkits/eel/distinfo (props changed) head/x11-toolkits/elementary/distinfo (props changed) head/x11-toolkits/fl_editor/distinfo (props changed) head/x11-toolkits/flowcanvas/distinfo (props changed) head/x11-toolkits/flvw/distinfo (props changed) head/x11-toolkits/fox14/distinfo (props changed) head/x11-toolkits/fxscintilla/distinfo (props changed) head/x11-toolkits/gai/distinfo (props changed) head/x11-toolkits/gal2/distinfo (props changed) head/x11-toolkits/gdl/distinfo (props changed) head/x11-toolkits/gigi/distinfo (props changed) head/x11-toolkits/gnome-desktop-sharp20/distinfo (props changed) head/x11-toolkits/gnome-sharp20/distinfo (props changed) head/x11-toolkits/gnustep-back/distinfo (props changed) head/x11-toolkits/gnustep-gui/distinfo (props changed) head/x11-toolkits/gtk-sharp-beans/distinfo (props changed) head/x11-toolkits/gtk-sharp10/distinfo (props changed) head/x11-toolkits/gtk-sharp20/distinfo (props changed) head/x11-toolkits/gtk12/distinfo (props changed) head/x11-toolkits/gtkada/distinfo (props changed) head/x11-toolkits/gtkdatabox/distinfo (props changed) head/x11-toolkits/gtkextra2/distinfo (props changed) head/x11-toolkits/gtkglarea2/distinfo (props changed) head/x11-toolkits/gtkglext/distinfo (props changed) head/x11-toolkits/gtkglextmm/distinfo (props changed) head/x11-toolkits/gtkimageview/distinfo (props changed) head/x11-toolkits/gtkmathview/distinfo (props changed) head/x11-toolkits/gtkmm20/distinfo (props changed) head/x11-toolkits/gtksourceview/distinfo (props changed) head/x11-toolkits/gtksourceview2/distinfo (props changed) head/x11-toolkits/gtkunique/distinfo (props changed) head/x11-toolkits/hippo-canvas/distinfo (props changed) head/x11-toolkits/hs-GLUT/distinfo (props changed) head/x11-toolkits/hs-OpenGL/distinfo (props changed) head/x11-toolkits/hs-gtk/distinfo (props changed) head/x11-toolkits/hs-gtkglext/distinfo (props changed) head/x11-toolkits/hs-gtksourceview2/distinfo (props changed) head/x11-toolkits/hs-pango/distinfo (props changed) head/x11-toolkits/hs-vte/distinfo (props changed) head/x11-toolkits/hs-wx/distinfo (props changed) head/x11-toolkits/hs-wxc/distinfo (props changed) head/x11-toolkits/hs-wxcore/distinfo (props changed) head/x11-toolkits/hs-wxdirect/distinfo (props changed) head/x11-toolkits/irrlicht/distinfo (props changed) head/x11-toolkits/itk/distinfo (props changed) head/x11-toolkits/iwidgets/distinfo (props changed) head/x11-toolkits/lesstif/distinfo (props changed) head/x11-toolkits/libXaw/distinfo (props changed) head/x11-toolkits/libXmu/distinfo (props changed) head/x11-toolkits/libXt/distinfo (props changed) head/x11-toolkits/libbonoboui/distinfo (props changed) head/x11-toolkits/libgail-gnome/distinfo (props changed) head/x11-toolkits/libgdiplus/distinfo (props changed) head/x11-toolkits/libgnomeprintui/distinfo (props changed) head/x11-toolkits/libgnomeprintuimm/distinfo (props changed) head/x11-toolkits/libgnomeui/distinfo (props changed) head/x11-toolkits/libgnomeuimm26/distinfo (props changed) head/x11-toolkits/libgtk-java/distinfo (props changed) head/x11-toolkits/libgtksourceviewmm/distinfo (props changed) head/x11-toolkits/libmatewnck/distinfo (props changed) head/x11-toolkits/libpanelappletmm/distinfo (props changed) head/x11-toolkits/libsexy/distinfo (props changed) head/x11-toolkits/libsexymm/distinfo (props changed) head/x11-toolkits/libunique3/distinfo (props changed) head/x11-toolkits/libwnck/distinfo (props changed) head/x11-toolkits/libxaw3dxft/distinfo (props changed) head/x11-toolkits/libxfce4gui/distinfo (props changed) head/x11-toolkits/libzvt/distinfo (props changed) head/x11-toolkits/linux-f10-blt/distinfo.i386 (props changed) head/x11-toolkits/linux-f10-gtk2/distinfo.i386 (props changed) head/x11-toolkits/linux-f10-openmotif/distinfo.i386 (props changed) head/x11-toolkits/linux-f10-pango/distinfo.i386 (props changed) head/x11-toolkits/linux-f10-qt45/distinfo.i386 (props changed) head/x11-toolkits/linux-f10-tk85/distinfo.i386 (props changed) head/x11-toolkits/movingmotif/distinfo (props changed) head/x11-toolkits/mowitz/distinfo (props changed) head/x11-toolkits/neXtaw/distinfo (props changed) head/x11-toolkits/nucleo/distinfo (props changed) head/x11-toolkits/open-motif/distinfo (props changed) head/x11-toolkits/otk/distinfo (props changed) head/x11-toolkits/p5-Glade2/distinfo (props changed) head/x11-toolkits/p5-Gnome2-Canvas/distinfo (props changed) head/x11-toolkits/p5-Gtk2-Chmod/distinfo (props changed) head/x11-toolkits/p5-Gtk2-Ex-Dialogs/distinfo (props changed) head/x11-toolkits/p5-Gtk2-Ex-FormFactory/distinfo (props changed) head/x11-toolkits/p5-Gtk2-Ex-PodViewer/distinfo (props changed) head/x11-toolkits/p5-Gtk2-Ex-Simple-List/distinfo (props changed) head/x11-toolkits/p5-Gtk2-Ex-Utils/distinfo (props changed) head/x11-toolkits/p5-Gtk2-GladeXML/distinfo (props changed) head/x11-toolkits/p5-Gtk2-Html2/distinfo (props changed) head/x11-toolkits/p5-Gtk2-ImageView/distinfo (props changed) head/x11-toolkits/p5-Gtk2-PathButtonBar/distinfo (props changed) head/x11-toolkits/p5-Gtk2-TrayIcon/distinfo (props changed) head/x11-toolkits/p5-Tk-Action/distinfo (props changed) head/x11-toolkits/p5-Tk-Autoscroll/distinfo (props changed) head/x11-toolkits/p5-Tk-ColourChooser/distinfo (props changed) head/x11-toolkits/p5-Tk-Contrib/distinfo (props changed) head/x11-toolkits/p5-Tk-CursorControl/distinfo (props changed) head/x11-toolkits/p5-Tk-DKW/distinfo (props changed) head/x11-toolkits/p5-Tk-Date/distinfo (props changed) head/x11-toolkits/p5-Tk-DynaTabFrame/distinfo (props changed) head/x11-toolkits/p5-Tk-Enscript/distinfo (props changed) head/x11-toolkits/p5-Tk-FileDialog/distinfo (props changed) head/x11-toolkits/p5-Tk-FontDialog/distinfo (props changed) head/x11-toolkits/p5-Tk-GBARR/distinfo (props changed) head/x11-toolkits/p5-Tk-Getopt/distinfo (props changed) head/x11-toolkits/p5-Tk-HistEntry/distinfo (props changed) head/x11-toolkits/p5-Tk-JComboBox/distinfo (props changed) head/x11-toolkits/p5-Tk-ResizeButton/distinfo (props changed) head/x11-toolkits/p5-Tk-Role-Dialog/distinfo (props changed) head/x11-toolkits/p5-Tk-Role-HasWidgets/distinfo (props changed) head/x11-toolkits/p5-Tk-Splashscreen/distinfo (props changed) head/x11-toolkits/p5-Tk-Sugar/distinfo (props changed) head/x11-toolkits/p5-Tk-TableMatrix/distinfo (props changed) head/x11-toolkits/p5-Tk-ToolBar/distinfo (props changed) head/x11-toolkits/p5-Tk/distinfo (props changed) head/x11-toolkits/p5-Wx-Perl-ProcessStream/distinfo (props changed) head/x11-toolkits/pangomm/distinfo (props changed) head/x11-toolkits/pangoxsl/distinfo (props changed) head/x11-toolkits/paragui-devel/distinfo (props changed) head/x11-toolkits/phat/distinfo (props changed) head/x11-toolkits/plib/distinfo (props changed) head/x11-toolkits/pure-gtk/distinfo (props changed) head/x11-toolkits/pure-tk/distinfo (props changed) head/x11-toolkits/py-Pmw/distinfo (props changed) head/x11-toolkits/py-SquareMap/distinfo (props changed) head/x11-toolkits/py-fltk/distinfo (props changed) head/x11-toolkits/py-gnome-desktop/distinfo (props changed) head/x11-toolkits/py-gnome-extras/distinfo (props changed) head/x11-toolkits/py-gnome2/distinfo (props changed) head/x11-toolkits/py-gtk2/distinfo (props changed) head/x11-toolkits/py-gtkglext/distinfo (props changed) head/x11-toolkits/py-gtksourceview/distinfo (props changed) head/x11-toolkits/py-gui/distinfo (props changed) head/x11-toolkits/py-kiwi/distinfo (props changed) head/x11-toolkits/py-pyqwt/distinfo (props changed) head/x11-toolkits/py-sexy/distinfo (props changed) head/x11-toolkits/py-traitsbackendwx/distinfo (props changed) head/x11-toolkits/py-traitsgui/distinfo (props changed) head/x11-toolkits/py-wax/distinfo (props changed) head/x11-toolkits/py-wmdockapps/distinfo (props changed) head/x11-toolkits/py-wxPython26/distinfo (props changed) head/x11-toolkits/py-wxPython28/distinfo (props changed) head/x11-toolkits/py-xlib/distinfo (props changed) head/x11-toolkits/qt4pas/distinfo (props changed) head/x11-toolkits/ruby-fox16/distinfo (props changed) head/x11-toolkits/rubygem-gdk3/distinfo (props changed) head/x11-toolkits/rubygem-gtk2/distinfo (props changed) head/x11-toolkits/rubygem-gtk3/distinfo (props changed) head/x11-toolkits/rubygem-gtksourceview2/distinfo (props changed) head/x11-toolkits/rubygem-gtksourceview3/distinfo (props changed) head/x11-toolkits/rubygem-pango/distinfo (props changed) head/x11-toolkits/rubygem-poppler/distinfo (props changed) head/x11-toolkits/rubygem-vte/distinfo (props changed) head/x11-toolkits/sakura/distinfo (props changed) head/x11-toolkits/sdl_pango/distinfo (props changed) head/x11-toolkits/shared-desktop-ontologies/distinfo (props changed) head/x11-toolkits/skinlf/distinfo (props changed) head/x11-toolkits/slingshot/distinfo (props changed) head/x11-toolkits/soqt/distinfo (props changed) head/x11-toolkits/swt-devel/distinfo (props changed) head/x11-toolkits/swt/distinfo (props changed) head/x11-toolkits/termit/distinfo (props changed) head/x11-toolkits/tile/distinfo (props changed) head/x11-toolkits/tix/distinfo (props changed) head/x11-toolkits/tkshape/distinfo (props changed) head/x11-toolkits/tktable/distinfo (props changed) head/x11-toolkits/unique/distinfo (props changed) head/x11-toolkits/v/distinfo (props changed) head/x11-toolkits/vdk/distinfo (props changed) head/x11-toolkits/vdkbuilder/distinfo (props changed) head/x11-toolkits/viewklass/distinfo (props changed) head/x11-toolkits/vte/distinfo (props changed) head/x11-toolkits/vte3/distinfo (props changed) head/x11-toolkits/vtkfox/distinfo (props changed) head/x11-toolkits/wmapp/distinfo (props changed) head/x11-toolkits/wxgtk26-docs/distinfo (props changed) head/x11-toolkits/wxgtk26/distinfo (props changed) head/x11-toolkits/wxgtk28/distinfo (props changed) head/x11-toolkits/wxgtk29/distinfo (props changed) head/x11-toolkits/xbae/distinfo (props changed) head/x11-toolkits/xmhtml/distinfo (props changed) head/x11-toolkits/xscoop/distinfo (props changed) head/x11-toolkits/xview-clients/distinfo (props changed) head/x11-toolkits/xview/distinfo (props changed) head/x11-wm/aewm/distinfo (props changed) head/x11-wm/afterstep-i18n/distinfo (props changed) head/x11-wm/afterstep/distinfo (props changed) head/x11-wm/amiwm/distinfo (props changed) head/x11-wm/antiwm/distinfo (props changed) head/x11-wm/awesome-vicious/distinfo (props changed) head/x11-wm/awesome/distinfo (props changed) head/x11-wm/awesome2/distinfo (props changed) head/x11-wm/bbkeys/distinfo (props changed) head/x11-wm/bbpager/distinfo (props changed) head/x11-wm/blackbox/distinfo (props changed) head/x11-wm/ccsm/distinfo (props changed) head/x11-wm/clementine/distinfo (props changed) head/x11-wm/compiz-plugins-extra/distinfo (props changed) head/x11-wm/compiz-plugins-main/distinfo (props changed) head/x11-wm/compiz-plugins-unsupported/distinfo (props changed) head/x11-wm/compiz/distinfo (props changed) head/x11-wm/compizconfig-backend-gconf/distinfo (props changed) head/x11-wm/compizconfig-python/distinfo (props changed) head/x11-wm/compton/distinfo (props changed) head/x11-wm/ctwm/distinfo (props changed) head/x11-wm/devilspie/distinfo (props changed) head/x11-wm/dwm/distinfo (props changed) head/x11-wm/e16utils/distinfo (props changed) head/x11-wm/e17-module-alarm/distinfo (props changed) head/x11-wm/e17-module-comp-scale/distinfo (props changed) head/x11-wm/e17-module-cpu/distinfo (props changed) head/x11-wm/e17-module-deskshow/distinfo (props changed) head/x11-wm/e17-module-diskio/distinfo (props changed) head/x11-wm/e17-module-elfe/distinfo (props changed) head/x11-wm/e17-module-empris/distinfo (props changed) head/x11-wm/e17-module-engage/distinfo (props changed) head/x11-wm/e17-module-eooorg/distinfo (props changed) head/x11-wm/e17-module-everything-aspell/distinfo (props changed) head/x11-wm/e17-module-everything-mpris/distinfo (props changed) head/x11-wm/e17-module-everything-pidgin/distinfo (props changed) head/x11-wm/e17-module-everything-places/distinfo (props changed) head/x11-wm/e17-module-everything-shotgun/distinfo (props changed) head/x11-wm/e17-module-everything-wallpaper/distinfo (props changed) head/x11-wm/e17-module-everything-websearch/distinfo (props changed) head/x11-wm/e17-module-exebuf/distinfo (props changed) head/x11-wm/e17-module-execwatch/distinfo (props changed) head/x11-wm/e17-module-flame/distinfo (props changed) head/x11-wm/e17-module-forecasts/distinfo (props changed) head/x11-wm/e17-module-iiirk/distinfo (props changed) head/x11-wm/e17-module-itask/distinfo (props changed) head/x11-wm/e17-module-mail/distinfo (props changed) head/x11-wm/e17-module-mem/distinfo (props changed) head/x11-wm/e17-module-moon/distinfo (props changed) head/x11-wm/e17-module-mpdule/distinfo (props changed) head/x11-wm/e17-module-net/distinfo (props changed) head/x11-wm/e17-module-news/distinfo (props changed) head/x11-wm/e17-module-penguins/distinfo (props changed) head/x11-wm/e17-module-photo/distinfo (props changed) head/x11-wm/e17-module-places/distinfo (props changed) head/x11-wm/e17-module-rain/distinfo (props changed) head/x11-wm/e17-module-screenshot/distinfo (props changed) head/x11-wm/e17-module-slideshow/distinfo (props changed) head/x11-wm/e17-module-snow/distinfo (props changed) head/x11-wm/e17-module-taskbar/distinfo (props changed) head/x11-wm/e17-module-tclock/distinfo (props changed) head/x11-wm/e17-module-uptime/distinfo (props changed) head/x11-wm/e17-module-weather/distinfo (props changed) head/x11-wm/e17-module-winlist-ng/distinfo (props changed) head/x11-wm/e17-module-winselector/distinfo (props changed) head/x11-wm/e17-module-wlan/distinfo (props changed) head/x11-wm/echinus/distinfo (props changed) head/x11-wm/ede/distinfo (props changed) head/x11-wm/emerald/distinfo (props changed) head/x11-wm/enlightenment-docs/distinfo (props changed) head/x11-wm/enlightenment/distinfo (props changed) head/x11-wm/evilwm/distinfo (props changed) head/x11-wm/fbcmd/distinfo (props changed) head/x11-wm/fluxbox/distinfo (props changed) head/x11-wm/fluxconf/distinfo (props changed) head/x11-wm/fluxter/distinfo (props changed) head/x11-wm/flwm/distinfo (props changed) head/x11-wm/fvwm-crystal/distinfo (props changed) head/x11-wm/fvwm/distinfo (props changed) head/x11-wm/fvwm2/distinfo (props changed) head/x11-wm/gcompmgr/distinfo (props changed) head/x11-wm/genmenu/distinfo (props changed) head/x11-wm/golem/distinfo (props changed) head/x11-wm/hackedbox/distinfo (props changed) head/x11-wm/herbstluftwm/distinfo (props changed) head/x11-wm/hs-xmonad-contrib/distinfo (props changed) head/x11-wm/hs-xmonad/distinfo (props changed) head/x11-wm/i3/distinfo (props changed) head/x11-wm/icewm/distinfo (props changed) head/x11-wm/ion/distinfo (props changed) head/x11-wm/jewel/distinfo (props changed) head/x11-wm/jwm/distinfo (props changed) head/x11-wm/larswm/distinfo (props changed) head/x11-wm/libcompizconfig/distinfo (props changed) head/x11-wm/libdockapp/distinfo (props changed) head/x11-wm/libwraster/distinfo (props changed) head/x11-wm/lxmed/distinfo (props changed) head/x11-wm/lxsession/distinfo (props changed) head/x11-wm/mate-window-manager/distinfo (props changed) head/x11-wm/matwm2/distinfo (props changed) head/x11-wm/metacity/distinfo (props changed) head/x11-wm/musca/distinfo (props changed) head/x11-wm/mutter/distinfo (props changed) head/x11-wm/nickleby/distinfo (props changed) head/x11-wm/obapps/distinfo (props changed) head/x11-wm/obconf/distinfo (props changed) head/x11-wm/obkey/distinfo (props changed) head/x11-wm/obmenu/distinfo (props changed) head/x11-wm/obpager/distinfo (props changed) head/x11-wm/olvwm/distinfo (props changed) head/x11-wm/openbox/distinfo (props changed) head/x11-wm/oroborus/distinfo (props changed) head/x11-wm/pager/distinfo (props changed) head/x11-wm/pawm/distinfo (props changed) head/x11-wm/peksystray/distinfo (props changed) head/x11-wm/pekwm/distinfo (props changed) head/x11-wm/phluid/distinfo (props changed) head/x11-wm/piewm/distinfo (props changed) head/x11-wm/plwm/distinfo (props changed) head/x11-wm/pwm/distinfo (props changed) head/x11-wm/qlwm/distinfo (props changed) head/x11-wm/ratmen/distinfo (props changed) head/x11-wm/ratmenu/distinfo (props changed) head/x11-wm/ratpoison/distinfo (props changed) head/x11-wm/sapphire/distinfo (props changed) head/x11-wm/selectwm/distinfo (props changed) head/x11-wm/simple-ccsm/distinfo (props changed) head/x11-wm/spectrwm/distinfo (props changed) head/x11-wm/stumpwm/distinfo (props changed) head/x11-wm/swm/distinfo (props changed) head/x11-wm/tinywm/distinfo (props changed) head/x11-wm/transset/distinfo (props changed) head/x11-wm/treewm/distinfo (props changed) head/x11-wm/tvtwm/distinfo (props changed) head/x11-wm/twm/distinfo (props changed) head/x11-wm/w9wm/distinfo (props changed) head/x11-wm/weewm/distinfo (props changed) head/x11-wm/wm2/distinfo (props changed) head/x11-wm/wmakerconf/distinfo (props changed) head/x11-wm/wmanager-addons/distinfo (props changed) head/x11-wm/wmanager/distinfo (props changed) head/x11-wm/wmfs/distinfo (props changed) head/x11-wm/wmii-devel/distinfo (props changed) head/x11-wm/wmii/distinfo (props changed) head/x11-wm/wmname/distinfo (props changed) head/x11-wm/xcompmgr/distinfo (props changed) head/x11/3ddesktop/distinfo (props changed) head/x11/9box/distinfo (props changed) head/x11/9menu/distinfo (props changed) head/x11/alltray/distinfo (props changed) head/x11/appres/distinfo (props changed) head/x11/apwal/distinfo (props changed) head/x11/arandr/distinfo (props changed) head/x11/aterm/distinfo (props changed) head/x11/avant-window-navigator/distinfo (props changed) head/x11/bbappconf/distinfo (props changed) head/x11/bbdock/distinfo (props changed) head/x11/bbrun/distinfo (props changed) head/x11/beforelight/distinfo (props changed) head/x11/bgrot/distinfo (props changed) head/x11/bgs/distinfo (props changed) head/x11/bigreqsproto/distinfo (props changed) head/x11/bitmap/distinfo (props changed) head/x11/blast/distinfo (props changed) head/x11/bmpanel2/distinfo (props changed) head/x11/bricons/distinfo (props changed) head/x11/brightside/distinfo (props changed) head/x11/cl-clx/distinfo (props changed) head/x11/compositeproto/distinfo (props changed) head/x11/damageproto/distinfo (props changed) head/x11/decurs/distinfo (props changed) head/x11/deskmenu/distinfo (props changed) head/x11/deskpaint/distinfo (props changed) head/x11/dgs/distinfo (props changed) head/x11/dmenu/distinfo (props changed) head/x11/dmxproto/distinfo (props changed) head/x11/docker/distinfo (props changed) head/x11/dri2proto/distinfo (props changed) head/x11/dxpc/distinfo (props changed) head/x11/dynamag/distinfo (props changed) head/x11/dzen2/distinfo (props changed) head/x11/eaglemode/distinfo (props changed) head/x11/ecore-imf/distinfo (props changed) head/x11/ecore-imf_evas/distinfo (props changed) head/x11/ecore-input/distinfo (props changed) head/x11/ecore-input_evas/distinfo (props changed) head/x11/ecore-x11/distinfo (props changed) head/x11/editres/distinfo (props changed) head/x11/efreet/distinfo (props changed) head/x11/emprint/distinfo (props changed) head/x11/emu/distinfo (props changed) head/x11/erun/distinfo (props changed) head/x11/eterm/distinfo (props changed) head/x11/evieext/distinfo (props changed) head/x11/evilvte/distinfo (props changed) head/x11/fbdesk/distinfo (props changed) head/x11/fbpanel/distinfo (props changed) head/x11/fireflies/distinfo (props changed) head/x11/fixesproto/distinfo (props changed) head/x11/florence/distinfo (props changed) head/x11/fluxbg/distinfo (props changed) head/x11/fstobdf/distinfo (props changed) head/x11/gcb/distinfo (props changed) head/x11/gdesklets-tasklist/distinfo (props changed) head/x11/gdkxft/distinfo (props changed) head/x11/gdm/distinfo (props changed) head/x11/glproto/distinfo (props changed) head/x11/gmessage/distinfo (props changed) head/x11/gmrun/distinfo (props changed) head/x11/gnome-applets/distinfo (props changed) head/x11/gnome-clipboard-daemon/distinfo (props changed) head/x11/gnome-desktop/distinfo (props changed) head/x11/gnome-menus/distinfo (props changed) head/x11/gnome-panel/distinfo (props changed) head/x11/gnome-pie/distinfo (props changed) head/x11/gnome-screensaver/distinfo (props changed) head/x11/gnome-session/distinfo (props changed) head/x11/gnome-shell/distinfo (props changed) head/x11/gnome-swallow/distinfo (props changed) head/x11/gnome-terminal/distinfo (props changed) head/x11/gpctool/distinfo (props changed) head/x11/grabc/distinfo (props changed) head/x11/gromit/distinfo (props changed) head/x11/gskrab/distinfo (props changed) head/x11/gtk-launch/distinfo (props changed) head/x11/gtk-theme-switch/distinfo (props changed) head/x11/gtk-theme-switch2/distinfo (props changed) head/x11/gtkchtheme/distinfo (props changed) head/x11/gtkterm2/distinfo (props changed) head/x11/gtstarter/distinfo (props changed) head/x11/hotwire-shell/distinfo (props changed) head/x11/hs-X11-xft/distinfo (props changed) head/x11/hs-X11/distinfo (props changed) head/x11/hs-xmobar/distinfo (props changed) head/x11/i3lock/distinfo (props changed) head/x11/iceauth/distinfo (props changed) head/x11/ico/distinfo (props changed) head/x11/idesk/distinfo (props changed) head/x11/imwheel/distinfo (props changed) head/x11/innerspace/distinfo (props changed) head/x11/inputproto/distinfo (props changed) head/x11/ipager/distinfo (props changed) head/x11/kb2mb2/distinfo (props changed) head/x11/kbproto/distinfo (props changed) head/x11/keyboardcast/distinfo (props changed) head/x11/keylaunch/distinfo (props changed) head/x11/keynav/distinfo (props changed) head/x11/libICE/distinfo (props changed) head/x11/libSM/distinfo (props changed) head/x11/libX11/distinfo (props changed) head/x11/libXScrnSaver/distinfo (props changed) head/x11/libXTrap/distinfo (props changed) head/x11/libXau/distinfo (props changed) head/x11/libXcm/distinfo (props changed) head/x11/libXcomposite/distinfo (props changed) head/x11/libXcursor/distinfo (props changed) head/x11/libXdamage/distinfo (props changed) head/x11/libXdmcp/distinfo (props changed) head/x11/libXevie/distinfo (props changed) head/x11/libXext/distinfo (props changed) head/x11/libXfixes/distinfo (props changed) head/x11/libXi/distinfo (props changed) head/x11/libXinerama/distinfo (props changed) head/x11/libXp/distinfo (props changed) head/x11/libXpm/distinfo (props changed) head/x11/libXprintAppUtil/distinfo (props changed) head/x11/libXprintUtil/distinfo (props changed) head/x11/libXrandr/distinfo (props changed) head/x11/libXrender/distinfo (props changed) head/x11/libXres/distinfo (props changed) head/x11/libXtst/distinfo (props changed) head/x11/libXv/distinfo (props changed) head/x11/libXvMC/distinfo (props changed) head/x11/libXxf86dga/distinfo (props changed) head/x11/libXxf86misc/distinfo (props changed) head/x11/libXxf86vm/distinfo (props changed) head/x11/libdmx/distinfo (props changed) head/x11/libdnd/distinfo (props changed) head/x11/libgnome-java/distinfo (props changed) head/x11/libgnome/distinfo (props changed) head/x11/libgnomekbd/distinfo (props changed) head/x11/libgnomemm26/distinfo (props changed) head/x11/libmatekbd/distinfo (props changed) head/x11/liboldX/distinfo (props changed) head/x11/libsx/distinfo (props changed) head/x11/libsynaptics/distinfo (props changed) head/x11/libxcb/distinfo (props changed) head/x11/libxdg-basedir/distinfo (props changed) head/x11/libxfce4menu/distinfo (props changed) head/x11/libxkbfile/distinfo (props changed) head/x11/libxkbui/distinfo (props changed) head/x11/libxklavier/distinfo (props changed) head/x11/linux-f10-xorg-libs/distinfo.i386 (props changed) head/x11/listres/distinfo (props changed) head/x11/lsw/distinfo (props changed) head/x11/luit/distinfo (props changed) head/x11/lupe/distinfo (props changed) head/x11/lxmenu-data/distinfo (props changed) head/x11/lxpanel/distinfo (props changed) head/x11/mate-applets/distinfo (props changed) head/x11/mate-desktop/distinfo (props changed) head/x11/mate-dialogs/distinfo (props changed) head/x11/mate-menus/distinfo (props changed) head/x11/mate-panel/distinfo (props changed) head/x11/mate-screensaver/distinfo (props changed) head/x11/mate-session-manager/distinfo (props changed) head/x11/mate-terminal/distinfo (props changed) head/x11/metalock/distinfo (props changed) head/x11/metisse/distinfo (props changed) head/x11/mgapdesk/distinfo (props changed) head/x11/mkcomposecache/distinfo (props changed) head/x11/mrxvt-devel/distinfo (props changed) head/x11/mrxvt/distinfo (props changed) head/x11/multi-aterm/distinfo (props changed) head/x11/mxico/distinfo (props changed) head/x11/numlockx/distinfo (props changed) head/x11/nvidia-driver/distinfo (props changed) head/x11/nvidia-settings/distinfo (props changed) head/x11/nvidia-xconfig/distinfo (props changed) head/x11/ooxcb/distinfo (props changed) head/x11/p5-X11-GUITest/distinfo (props changed) head/x11/p5-X11-IdleTime/distinfo (props changed) head/x11/p5-X11-Protocol/distinfo (props changed) head/x11/p5-X11-Resolution/distinfo (props changed) head/x11/peeper/distinfo (props changed) head/x11/pixman/distinfo (props changed) head/x11/printproto/distinfo (props changed) head/x11/props/distinfo (props changed) head/x11/qimageblitz/distinfo (props changed) head/x11/randrproto/distinfo (props changed) head/x11/recordproto/distinfo (props changed) head/x11/rendercheck/distinfo (props changed) head/x11/renderproto/distinfo (props changed) head/x11/resourceproto/distinfo (props changed) head/x11/rgb/distinfo (props changed) head/x11/rox-wallpaper/distinfo (props changed) head/x11/roxbg/distinfo (props changed) head/x11/rsibreak-kde4/distinfo (props changed) head/x11/rstart/distinfo (props changed) head/x11/ruby-X11/distinfo (props changed) head/x11/ruby-gnome2/distinfo (props changed) head/x11/rxvt-devel/distinfo (props changed) head/x11/rxvt/distinfo (props changed) head/x11/sbxkb/distinfo (props changed) head/x11/scripts/distinfo (props changed) head/x11/scrnsaverproto/distinfo (props changed) head/x11/sessreg/distinfo (props changed) head/x11/setlayout/distinfo (props changed) head/x11/settitle/distinfo (props changed) head/x11/setxkbmap/distinfo (props changed) head/x11/simdock/distinfo (props changed) head/x11/sisctrl/distinfo (props changed) head/x11/slim/distinfo (props changed) head/x11/slock/distinfo (props changed) head/x11/smproxy/distinfo (props changed) head/x11/sselp/distinfo (props changed) head/x11/stalonetray/distinfo (props changed) head/x11/startup-notification/distinfo (props changed) head/x11/stjerm/distinfo (props changed) head/x11/swarp/distinfo (props changed) head/x11/sxpc/distinfo (props changed) head/x11/tabbed/distinfo (props changed) head/x11/temperature.app/distinfo (props changed) head/x11/terminal.app/distinfo (props changed) head/x11/terminator/distinfo (props changed) head/x11/thinglaunch/distinfo (props changed) head/x11/thingylaunch/distinfo (props changed) head/x11/tilda/distinfo (props changed) head/x11/tint/distinfo (props changed) head/x11/tkXwin/distinfo (props changed) head/x11/trapproto/distinfo (props changed) head/x11/trayer/distinfo (props changed) head/x11/tycoon/distinfo (props changed) head/x11/vdesk/distinfo (props changed) head/x11/videoproto/distinfo (props changed) head/x11/viewres/distinfo (props changed) head/x11/wbarconf/distinfo (props changed) head/x11/wdm/distinfo (props changed) head/x11/wmappl/distinfo (props changed) head/x11/wmblob/distinfo (props changed) head/x11/wmbutton/distinfo (props changed) head/x11/wmcliphist/distinfo (props changed) head/x11/wmctrl/distinfo (props changed) head/x11/wmdrawer/distinfo (props changed) head/x11/wmmatrix/distinfo (props changed) head/x11/wmxss/distinfo (props changed) head/x11/workrave/distinfo (props changed) head/x11/x11perf/distinfo (props changed) head/x11/xaniroc/distinfo (props changed) head/x11/xantfarm/distinfo (props changed) head/x11/xascii/distinfo (props changed) head/x11/xauth/distinfo (props changed) head/x11/xautolock/distinfo (props changed) head/x11/xbacklight/distinfo (props changed) head/x11/xballoon/distinfo (props changed) head/x11/xbanner/distinfo (props changed) head/x11/xbelld/distinfo (props changed) head/x11/xbiff/distinfo (props changed) head/x11/xbindkeys/distinfo (props changed) head/x11/xbitmaps/distinfo (props changed) head/x11/xbrightness/distinfo (props changed) head/x11/xcalc/distinfo (props changed) head/x11/xcalib/distinfo (props changed) head/x11/xcb-proto/distinfo (props changed) head/x11/xcb-util-image/distinfo (props changed) head/x11/xcb-util-keysyms/distinfo (props changed) head/x11/xcb-util-renderutil/distinfo (props changed) head/x11/xcb-util-wm/distinfo (props changed) head/x11/xcb-util/distinfo (props changed) head/x11/xcb/distinfo (props changed) head/x11/xclick/distinfo (props changed) head/x11/xclip/distinfo (props changed) head/x11/xclipboard/distinfo (props changed) head/x11/xcm/distinfo (props changed) head/x11/xcmd/distinfo (props changed) head/x11/xcmiscproto/distinfo (props changed) head/x11/xcmsdb/distinfo (props changed) head/x11/xco/distinfo (props changed) head/x11/xcoloredit/distinfo (props changed) head/x11/xcolors/distinfo (props changed) head/x11/xcolorsel/distinfo (props changed) head/x11/xconsole/distinfo (props changed) head/x11/xcurs/distinfo (props changed) head/x11/xcursorgen/distinfo (props changed) head/x11/xcut/distinfo (props changed) head/x11/xdbedizzy/distinfo (props changed) head/x11/xdialog/distinfo (props changed) head/x11/xditview/distinfo (props changed) head/x11/xdm/distinfo (props changed) head/x11/xdotool/distinfo (props changed) head/x11/xdpyinfo/distinfo (props changed) head/x11/xdriinfo/distinfo (props changed) head/x11/xdtm/distinfo (props changed) head/x11/xedit/distinfo (props changed) head/x11/xev/distinfo (props changed) head/x11/xextproto/distinfo (props changed) head/x11/xeyes/distinfo (props changed) head/x11/xf86dga/distinfo (props changed) head/x11/xf86dgaproto/distinfo (props changed) head/x11/xf86driproto/distinfo (props changed) head/x11/xf86miscproto/distinfo (props changed) head/x11/xf86rushproto/distinfo (props changed) head/x11/xf86vidmodeproto/distinfo (props changed) head/x11/xfce4-clipman-plugin/distinfo (props changed) head/x11/xfce4-conf/distinfo (props changed) head/x11/xfce4-quicklauncher-plugin/distinfo (props changed) head/x11/xfce4-screenshooter-plugin/distinfo (props changed) head/x11/xfce4-verve-plugin/distinfo (props changed) head/x11/xfce4-xfapplet-plugin/distinfo (props changed) head/x11/xfd/distinfo (props changed) head/x11/xfindproxy/distinfo (props changed) head/x11/xfishtank/distinfo (props changed) head/x11/xforward/distinfo (props changed) head/x11/xfree86_xkb_xml/distinfo (props changed) head/x11/xfwp/distinfo (props changed) head/x11/xgamma/distinfo (props changed) head/x11/xgc/distinfo (props changed) head/x11/xgrab/distinfo (props changed) head/x11/xhost/distinfo (props changed) head/x11/xidle/distinfo (props changed) head/x11/xineramaproto/distinfo (props changed) head/x11/xinit/distinfo (props changed) head/x11/xinput/distinfo (props changed) head/x11/xkbcomp/distinfo (props changed) head/x11/xkbctrl/distinfo (props changed) head/x11/xkbevd/distinfo (props changed) head/x11/xkbprint/distinfo (props changed) head/x11/xkbset/distinfo (props changed) head/x11/xkbutils/distinfo (props changed) head/x11/xkeyboard-config/distinfo (props changed) head/x11/xkeycaps/distinfo (props changed) head/x11/xkeywrap/distinfo (props changed) head/x11/xkill/distinfo (props changed) head/x11/xload/distinfo (props changed) head/x11/xlockmore/distinfo (props changed) head/x11/xlogo/distinfo (props changed) head/x11/xlogout/distinfo (props changed) head/x11/xlsatoms/distinfo (props changed) head/x11/xlsclients/distinfo (props changed) head/x11/xlupe/distinfo (props changed) head/x11/xmag/distinfo (props changed) head/x11/xman/distinfo (props changed) head/x11/xmangekyou/distinfo (props changed) head/x11/xmascot/distinfo (props changed) head/x11/xmessage/distinfo (props changed) head/x11/xmh/distinfo (props changed) head/x11/xmodmap/distinfo (props changed) head/x11/xmon/distinfo (props changed) head/x11/xmore/distinfo (props changed) head/x11/xmotd/distinfo (props changed) head/x11/xmove/distinfo (props changed) head/x11/xmsg/distinfo (props changed) head/x11/xmx/distinfo (props changed) head/x11/xnodecor/distinfo (props changed) head/x11/xorg-cf-files/distinfo (props changed) head/x11/xorg-docs/distinfo (props changed) head/x11/xplsprinters/distinfo (props changed) head/x11/xpr/distinfo (props changed) head/x11/xprehashprinterlist/distinfo (props changed) head/x11/xprompt/distinfo (props changed) head/x11/xprop/distinfo (props changed) head/x11/xproto/distinfo (props changed) head/x11/xproxymanagementprotocol/distinfo (props changed) head/x11/xpyb/distinfo (props changed) head/x11/xrandr/distinfo (props changed) head/x11/xrdb/distinfo (props changed) head/x11/xrefresh/distinfo (props changed) head/x11/xrestop/distinfo (props changed) head/x11/xrootconsole/distinfo (props changed) head/x11/xrsh/distinfo (props changed) head/x11/xrsi/distinfo (props changed) head/x11/xrx/distinfo (props changed) head/x11/xscreensaver-gnome/distinfo (props changed) head/x11/xscreensaver.app/distinfo (props changed) head/x11/xscreensaver/distinfo (props changed) head/x11/xsel-conrad/distinfo (props changed) head/x11/xsel/distinfo (props changed) head/x11/xset/distinfo (props changed) head/x11/xsetmode/distinfo (props changed) head/x11/xsetpointer/distinfo (props changed) head/x11/xsetroot/distinfo (props changed) head/x11/xskyroot/distinfo (props changed) head/x11/xsm/distinfo (props changed) head/x11/xsnow/distinfo (props changed) head/x11/xstarroll/distinfo (props changed) head/x11/xstdcmap/distinfo (props changed) head/x11/xstroke/distinfo (props changed) head/x11/xtacy/distinfo (props changed) head/x11/xterm/distinfo (props changed) head/x11/xtermcontrol/distinfo (props changed) head/x11/xtermset/distinfo (props changed) head/x11/xtestpicture/distinfo (props changed) head/x11/xtoolwait/distinfo (props changed) head/x11/xtrans/distinfo (props changed) head/x11/xtrap/distinfo (props changed) head/x11/xtset/distinfo (props changed) head/x11/xvattr/distinfo (props changed) head/x11/xvidtune/distinfo (props changed) head/x11/xvinfo/distinfo (props changed) head/x11/xwatchwin/distinfo (props changed) head/x11/xwd/distinfo (props changed) head/x11/xwininfo/distinfo (props changed) head/x11/xwinwrap/distinfo (props changed) head/x11/xwit/distinfo (props changed) head/x11/xwud/distinfo (props changed) head/x11/xxkb/distinfo (props changed) head/x11/xzoom/distinfo (props changed) head/x11/yalias/distinfo (props changed) head/x11/yeahconsole/distinfo (props changed) head/x11/yelp/distinfo (props changed) head/x11/zenity/distinfo (props changed) From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 15:45:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30B1B97; Wed, 22 Jan 2014 15:45:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 11B831571; Wed, 22 Jan 2014 15:45:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MFjSjI073180; Wed, 22 Jan 2014 15:45:28 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MFjN7h073178; Wed, 22 Jan 2014 15:45:23 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221545.s0MFjN7h073178@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 15:45:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340718 - in head: accessibility/accerciser accessibility/at-poke accessibility/at-spi accessibility/at-spi-reference accessibility/at-spi2-atk accessibility/at-spi2-core accessibility/... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 15:45:29 -0000 Author: mat Date: Wed Jan 22 15:44:51 2014 New Revision: 340718 URL: http://svnweb.freebsd.org/changeset/ports/340718 QAT: https://qat.redports.org/buildarchive/r340718/ Log: Fixup svn props for pkg-descr* With hat: portmgr Sponsored by: Absolight Modified: head/benchmarks/raidtest/pkg-descr (contents, props changed) Directory Properties: head/accessibility/accerciser/pkg-descr (props changed) head/accessibility/at-poke/pkg-descr (props changed) head/accessibility/at-spi-reference/pkg-descr (props changed) head/accessibility/at-spi/pkg-descr (props changed) head/accessibility/at-spi2-atk/pkg-descr (props changed) head/accessibility/at-spi2-core/pkg-descr (props changed) head/accessibility/atk-reference/pkg-descr (props changed) head/accessibility/atk/pkg-descr (props changed) head/accessibility/atkmm/pkg-descr (props changed) head/accessibility/dasher/pkg-descr (props changed) head/accessibility/eflite/pkg-descr (props changed) head/accessibility/gnome-mag/pkg-descr (props changed) head/accessibility/gnome-speech/pkg-descr (props changed) head/accessibility/gnopernicus/pkg-descr (props changed) head/accessibility/gok/pkg-descr (props changed) head/accessibility/java-access-bridge/pkg-descr (props changed) head/accessibility/jovie/pkg-descr (props changed) head/accessibility/kaccessible/pkg-descr (props changed) head/accessibility/kdeaccessibility4/pkg-descr (props changed) head/accessibility/kmag/pkg-descr (props changed) head/accessibility/kmousetool/pkg-descr (props changed) head/accessibility/kmouth/pkg-descr (props changed) head/accessibility/linux-f10-atk/pkg-descr (props changed) head/accessibility/mousetweaks/pkg-descr (props changed) head/accessibility/orca/pkg-descr (props changed) head/accessibility/py-atspi/pkg-descr (props changed) head/accessibility/py-papi/pkg-descr (props changed) head/accessibility/redshift/pkg-descr (props changed) head/accessibility/ruby-atk/pkg-descr (props changed) head/accessibility/rubygem-atk/pkg-descr (props changed) head/accessibility/yasr/pkg-descr (props changed) head/arabic/ae_fonts_mono/pkg-descr (props changed) head/arabic/ae_fonts_ttf/pkg-descr (props changed) head/arabic/aspell/pkg-descr (props changed) head/arabic/kacst_fonts/pkg-descr (props changed) head/arabic/kde4-l10n/pkg-descr (props changed) head/arabic/khotot/pkg-descr (props changed) head/arabic/libitl/pkg-descr (props changed) head/arabic/libreoffice/pkg-descr (props changed) head/archivers/advancecomp/pkg-descr (props changed) head/archivers/amigadepacker/pkg-descr (props changed) head/archivers/aolserver-nszlib/pkg-descr (props changed) head/archivers/arc/pkg-descr (props changed) head/archivers/arj/pkg-descr (props changed) head/archivers/ark/pkg-descr (props changed) head/archivers/bicom/pkg-descr (props changed) head/archivers/bzip/pkg-descr (props changed) head/archivers/bzip2/pkg-descr (props changed) head/archivers/cabextract/pkg-descr (props changed) head/archivers/dact/pkg-descr (props changed) head/archivers/deb2targz/pkg-descr (props changed) head/archivers/deco/pkg-descr (props changed) head/archivers/deutex/pkg-descr (props changed) head/archivers/dpkg/pkg-descr (props changed) head/archivers/dzip/pkg-descr (props changed) head/archivers/ecm/pkg-descr (props changed) head/archivers/epkg/pkg-descr (props changed) head/archivers/fastjar/pkg-descr (props changed) head/archivers/file-roller/pkg-descr (props changed) head/archivers/freetar/pkg-descr (props changed) head/archivers/freeze/pkg-descr (props changed) head/archivers/gcpio/pkg-descr (props changed) head/archivers/gtar/pkg-descr (props changed) head/archivers/gzip/pkg-descr (props changed) head/archivers/gzrecover/pkg-descr (props changed) head/archivers/hffzip/pkg-descr (props changed) head/archivers/hlextract/pkg-descr (props changed) head/archivers/hpack.non-usa.only/pkg-descr (props changed) head/archivers/hs-tar/pkg-descr (props changed) head/archivers/hs-zip-archive/pkg-descr (props changed) head/archivers/hs-zlib-bindings/pkg-descr (props changed) head/archivers/hs-zlib-conduit/pkg-descr (props changed) head/archivers/hs-zlib-enum/pkg-descr (props changed) head/archivers/hs-zlib/pkg-descr (props changed) head/archivers/javatar/pkg-descr (props changed) head/archivers/jzip.org/pkg-descr (props changed) head/archivers/jzlib/pkg-descr (props changed) head/archivers/kzip/pkg-descr (props changed) head/archivers/laszip/pkg-descr (props changed) head/archivers/lbrate/pkg-descr (props changed) head/archivers/lbzip2/pkg-descr (props changed) head/archivers/lcab/pkg-descr (props changed) head/archivers/lha-ac/pkg-descr (props changed) head/archivers/lha/pkg-descr (props changed) head/archivers/libarc/pkg-descr (props changed) head/archivers/libarchive/pkg-descr (props changed) head/archivers/libcabinet/pkg-descr (props changed) head/archivers/libcomprex/pkg-descr (props changed) head/archivers/libdynamite/pkg-descr (props changed) head/archivers/liblzxcomp/pkg-descr (props changed) head/archivers/libmspack/pkg-descr (props changed) head/archivers/liborange/pkg-descr (props changed) head/archivers/libpar2/pkg-descr (props changed) head/archivers/libunrar/pkg-descr (props changed) head/archivers/libunrar4/pkg-descr (props changed) head/archivers/libzip/pkg-descr (props changed) head/archivers/lrzip/pkg-descr (props changed) head/archivers/lz4/pkg-descr (props changed) head/archivers/lzip/pkg-descr (props changed) head/archivers/lzlib/pkg-descr (props changed) head/archivers/lzma/pkg-descr (props changed) head/archivers/lzmalib/pkg-descr (props changed) head/archivers/lzo2/pkg-descr (props changed) head/archivers/lzop/pkg-descr (props changed) head/archivers/macutils/pkg-descr (props changed) head/archivers/makeself/pkg-descr (props changed) head/archivers/mar/pkg-descr (props changed) head/archivers/mate-file-archiver/pkg-descr (props changed) head/archivers/mscompress/pkg-descr (props changed) head/archivers/mtf/pkg-descr (props changed) head/archivers/nomarch/pkg-descr (props changed) head/archivers/nulib/pkg-descr (props changed) head/archivers/nwreckdum/pkg-descr (props changed) head/archivers/ocaml-bz2/pkg-descr (props changed) head/archivers/ocaml-zip/pkg-descr (props changed) head/archivers/p5-Archive-Any-Plugin-Rar/pkg-descr (props changed) head/archivers/p5-Archive-Extract-Libarchive/pkg-descr (props changed) head/archivers/p5-Archive-Extract/pkg-descr (props changed) head/archivers/p5-Archive-Peek/pkg-descr (props changed) head/archivers/p5-Archive-Tar/pkg-descr (props changed) head/archivers/p5-Compress-Bzip2/pkg-descr (props changed) head/archivers/p5-Compress-Raw-Bzip2/pkg-descr (props changed) head/archivers/p5-Compress-Raw-Zlib/pkg-descr (props changed) head/archivers/p5-Compress-Snappy/pkg-descr (props changed) head/archivers/p5-IO-Compress-Lzf/pkg-descr (props changed) head/archivers/p5-IO-Compress-Lzop/pkg-descr (props changed) head/archivers/p5-IO-Compress/pkg-descr (props changed) head/archivers/p5-IO-Zlib/pkg-descr (props changed) head/archivers/p5-Mac-Macbinary/pkg-descr (props changed) head/archivers/p5-PerlIO-gzip/pkg-descr (props changed) head/archivers/p5-PerlIO-via-Bzip2/pkg-descr (props changed) head/archivers/p7zip/pkg-descr (props changed) head/archivers/packddir/pkg-descr (props changed) head/archivers/par/pkg-descr (props changed) head/archivers/par2cmdline/pkg-descr (props changed) head/archivers/parchive/pkg-descr (props changed) head/archivers/pbzip2/pkg-descr (props changed) head/archivers/pear-File_Archive/pkg-descr (props changed) head/archivers/pear-Horde_Compress/pkg-descr (props changed) head/archivers/pear-Horde_Compress_Fast/pkg-descr (props changed) head/archivers/pear-PHP_Archiv/pkg-descr (props changed) head/archivers/pecl-lzf/pkg-descr (props changed) head/archivers/pecl-phk/pkg-descr (props changed) head/archivers/pecl-rar/pkg-descr (props changed) head/archivers/php-horde_lz4/pkg-descr (props changed) head/archivers/pigz/pkg-descr (props changed) head/archivers/pixz/pkg-descr (props changed) head/archivers/plzip/pkg-descr (props changed) head/archivers/ppmd-7z/pkg-descr (props changed) head/archivers/ppmd/pkg-descr (props changed) head/archivers/ppunpack/pkg-descr (props changed) head/archivers/pxz/pkg-descr (props changed) head/archivers/py-liblzma/pkg-descr (props changed) head/archivers/py-lzma/pkg-descr (props changed) head/archivers/qpress/pkg-descr (props changed) head/archivers/quazip/pkg-descr (props changed) head/archivers/rar/pkg-descr (props changed) head/archivers/rox-archive/pkg-descr (props changed) head/archivers/rpm/pkg-descr (props changed) head/archivers/rpm2cpio/pkg-descr (props changed) head/archivers/rpm4/pkg-descr (props changed) head/archivers/rpm5/pkg-descr (props changed) head/archivers/ruby-libarchive/pkg-descr (props changed) head/archivers/rubygem-archive-tar-minitar/pkg-descr (props changed) head/archivers/rubygem-archive-zip/pkg-descr (props changed) head/archivers/rubygem-rubyzip/pkg-descr (props changed) head/archivers/rubygem-rubyzip2/pkg-descr (props changed) head/archivers/rvm/pkg-descr (props changed) head/archivers/rzip/pkg-descr (props changed) head/archivers/sectar/pkg-descr (props changed) head/archivers/sharutils/pkg-descr (props changed) head/archivers/snappy-java/pkg-descr (props changed) head/archivers/snappy/pkg-descr (props changed) head/archivers/squeeze/pkg-descr (props changed) head/archivers/squsq/pkg-descr (props changed) head/archivers/star/pkg-descr (props changed) head/archivers/stuffit/pkg-descr (props changed) head/archivers/szip/pkg-descr (props changed) head/archivers/tardy/pkg-descr (props changed) head/archivers/tclmkziplib/pkg-descr (props changed) head/archivers/torrentzip/pkg-descr (props changed) head/archivers/ucl/pkg-descr (props changed) head/archivers/unace/pkg-descr (props changed) head/archivers/unadf/pkg-descr (props changed) head/archivers/unarj/pkg-descr (props changed) head/archivers/undms/pkg-descr (props changed) head/archivers/unfoo/pkg-descr (props changed) head/archivers/unlzx/pkg-descr (props changed) head/archivers/unmakeself/pkg-descr (props changed) head/archivers/unmass/pkg-descr (props changed) head/archivers/unrar/pkg-descr (props changed) head/archivers/unshield/pkg-descr (props changed) head/archivers/untar/pkg-descr (props changed) head/archivers/unzip/pkg-descr (props changed) head/archivers/unzoo/pkg-descr (props changed) head/archivers/upx/pkg-descr (props changed) head/archivers/wzip/pkg-descr (props changed) head/archivers/xar/pkg-descr (props changed) head/archivers/xarchive/pkg-descr (props changed) head/archivers/xarchiver/pkg-descr (props changed) head/archivers/xdms/pkg-descr (props changed) head/archivers/xmill/pkg-descr (props changed) head/archivers/xpk/pkg-descr (props changed) head/archivers/zip/pkg-descr (props changed) head/archivers/zipmix/pkg-descr (props changed) head/archivers/zipper/pkg-descr (props changed) head/archivers/zoo/pkg-descr (props changed) head/archivers/zutils/pkg-descr (props changed) head/astro/R-cran-maptools/pkg-descr (props changed) head/astro/aa/pkg-descr (props changed) head/astro/accrete/pkg-descr (props changed) head/astro/astrometry/pkg-descr (props changed) head/astro/boinc-astropulse/pkg-descr (props changed) head/astro/celestia/pkg-descr (props changed) head/astro/cfitsio/pkg-descr (props changed) head/astro/dgpsip/pkg-descr (props changed) head/astro/ephem/pkg-descr (props changed) head/astro/fowsr/pkg-descr (props changed) head/astro/foxtrotgps/pkg-descr (props changed) head/astro/gkrellmoon2/pkg-descr (props changed) head/astro/glunarclock/pkg-descr (props changed) head/astro/gmapcatcher/pkg-descr (props changed) head/astro/google-earth/pkg-descr (props changed) head/astro/gpsbabel/pkg-descr (props changed) head/astro/gpscorrelate/pkg-descr (props changed) head/astro/gpsd/pkg-descr (props changed) head/astro/gpsdrive/pkg-descr (props changed) head/astro/gpsman/pkg-descr (props changed) head/astro/gpsprune/pkg-descr (props changed) head/astro/gpstk/pkg-descr (props changed) head/astro/gpxloggerd/pkg-descr (props changed) head/astro/jday/pkg-descr (props changed) head/astro/josm/pkg-descr (props changed) head/astro/kstars/pkg-descr (props changed) head/astro/libgal/pkg-descr (props changed) head/astro/libkgeomap/pkg-descr (props changed) head/astro/libnova/pkg-descr (props changed) head/astro/libroadnav/pkg-descr (props changed) head/astro/luna/pkg-descr (props changed) head/astro/marble/pkg-descr (props changed) head/astro/match/pkg-descr (props changed) head/astro/merkaartor/pkg-descr (props changed) head/astro/mkgmap-splitter/pkg-descr (props changed) head/astro/mkgmap/pkg-descr (props changed) head/astro/mymoon/pkg-descr (props changed) head/astro/nightfall/pkg-descr (props changed) head/astro/openmap/pkg-descr (props changed) head/astro/openuniverse/pkg-descr (props changed) head/astro/osmosis/pkg-descr (props changed) head/astro/p5-Astro-ADS/pkg-descr (props changed) head/astro/p5-Astro-Catalog/pkg-descr (props changed) head/astro/p5-Astro-Constants/pkg-descr (props changed) head/astro/p5-Astro-Coords/pkg-descr (props changed) head/astro/p5-Astro-DSS/pkg-descr (props changed) head/astro/p5-Astro-FITS-CFITSIO/pkg-descr (props changed) head/astro/p5-Astro-FITS-Header/pkg-descr (props changed) head/astro/p5-Astro-Flux/pkg-descr (props changed) head/astro/p5-Astro-Hipparcos/pkg-descr (props changed) head/astro/p5-Astro-PAL/pkg-descr (props changed) head/astro/p5-Astro-SIMBAD-Client/pkg-descr (props changed) head/astro/p5-Astro-SIMBAD/pkg-descr (props changed) head/astro/p5-Astro-SpaceTrack/pkg-descr (props changed) head/astro/p5-Astro-SunTime/pkg-descr (props changed) head/astro/p5-Astro-Sunrise/pkg-descr (props changed) head/astro/p5-Astro-Telescope/pkg-descr (props changed) head/astro/p5-Astro-WaveBand/pkg-descr (props changed) head/astro/p5-Astro-satpass/pkg-descr (props changed) head/astro/p5-Astro/pkg-descr (props changed) head/astro/p5-GPS-Babel/pkg-descr (props changed) head/astro/p5-GPS-OID/pkg-descr (props changed) head/astro/p5-GPS/pkg-descr (props changed) head/astro/p5-Geo-METAR/pkg-descr (props changed) head/astro/p5-Misc-Quality/pkg-descr (props changed) head/astro/p5-Weather-Underground/pkg-descr (props changed) head/astro/p5-ZConf-Weather/pkg-descr (props changed) head/astro/phoon/pkg-descr (props changed) head/astro/planets/pkg-descr (props changed) head/astro/pp3/pkg-descr (props changed) head/astro/ptiger/pkg-descr (props changed) head/astro/py-RO/pkg-descr (props changed) head/astro/py-aipy/pkg-descr (props changed) head/astro/py-astLib/pkg-descr (props changed) head/astro/py-metar/pkg-descr (props changed) head/astro/py-pyfits/pkg-descr (props changed) head/astro/pyephem/pkg-descr (props changed) head/astro/pyweather/pkg-descr (props changed) head/astro/qlandkartegt/pkg-descr (props changed) head/astro/rmap/pkg-descr (props changed) head/astro/roadmap/pkg-descr (props changed) head/astro/roadnav/pkg-descr (props changed) head/astro/saoimage/pkg-descr (props changed) head/astro/sextractor/pkg-descr (props changed) head/astro/sky2000/pkg-descr (props changed) head/astro/sscalc/pkg-descr (props changed) head/astro/stardates/pkg-descr (props changed) head/astro/starplot/pkg-descr (props changed) head/astro/stars/pkg-descr (props changed) head/astro/stellarium/pkg-descr (props changed) head/astro/swe/pkg-descr (props changed) head/astro/tclgeomap/pkg-descr (props changed) head/astro/tkgeomap/pkg-descr (props changed) head/astro/viking/pkg-descr (props changed) head/astro/wcslib/pkg-descr (props changed) head/astro/weatherspect/pkg-descr (props changed) head/astro/wmglobe/pkg-descr (props changed) head/astro/wmjupiter/pkg-descr (props changed) head/astro/wmmoonclock/pkg-descr (props changed) head/astro/wmsolar/pkg-descr (props changed) head/astro/wmspaceweather/pkg-descr (props changed) head/astro/wmsun/pkg-descr (props changed) head/astro/xeartk/pkg-descr (props changed) head/astro/xephem/pkg-descr (props changed) head/astro/xglobe/pkg-descr (props changed) head/astro/xmoontool/pkg-descr (props changed) head/astro/xphoon/pkg-descr (props changed) head/astro/xplanet/pkg-descr (props changed) head/astro/xtide/pkg-descr (props changed) head/astro/xworld/pkg-descr (props changed) head/audio/HVSC-Update/pkg-descr (props changed) head/audio/Maaate/pkg-descr (props changed) head/audio/aacgain/pkg-descr (props changed) head/audio/aacplusenc/pkg-descr (props changed) head/audio/abcde/pkg-descr (props changed) head/audio/abcmidi/pkg-descr (props changed) head/audio/abcselect/pkg-descr (props changed) head/audio/adplay/pkg-descr (props changed) head/audio/afsp/pkg-descr (props changed) head/audio/aften/pkg-descr (props changed) head/audio/alac/pkg-descr (props changed) head/audio/alienwah/pkg-descr (props changed) head/audio/alsa-lib/pkg-descr (props changed) head/audio/alsa-plugins/pkg-descr (props changed) head/audio/alsa-utils/pkg-descr (props changed) head/audio/alure/pkg-descr (props changed) head/audio/amarok-kde4/pkg-descr (props changed) head/audio/amb-plugins/pkg-descr (props changed) head/audio/amp/pkg-descr (props changed) head/audio/ampache/pkg-descr (props changed) head/audio/ample/pkg-descr (props changed) head/audio/amrcoder/pkg-descr (props changed) head/audio/aqualung/pkg-descr (props changed) head/audio/ardour/pkg-descr (props changed) head/audio/ario/pkg-descr (props changed) head/audio/arss/pkg-descr (props changed) head/audio/ascd/pkg-descr (props changed) head/audio/asmix/pkg-descr (props changed) head/audio/asmixer/pkg-descr (props changed) head/audio/asunder/pkg-descr (props changed) head/audio/atunes/pkg-descr (props changed) head/audio/aubio/pkg-descr (props changed) head/audio/audacious-dumb/pkg-descr (props changed) head/audio/audacity/pkg-descr (props changed) head/audio/audex/pkg-descr (props changed) head/audio/audiere/pkg-descr (props changed) head/audio/audiotag/pkg-descr (props changed) head/audio/aumix/pkg-descr (props changed) head/audio/aureal-kmod/pkg-descr (props changed) head/audio/autocd/pkg-descr (props changed) head/audio/autotalent/pkg-descr (props changed) head/audio/baresip/pkg-descr (props changed) head/audio/baudline/pkg-descr (props changed) head/audio/beast/pkg-descr (props changed) head/audio/bebocd/pkg-descr (props changed) head/audio/beep/pkg-descr (props changed) head/audio/beets/pkg-descr (props changed) head/audio/blop/pkg-descr (props changed) head/audio/bmp-fc/pkg-descr (props changed) head/audio/bmp-festalon/pkg-descr (props changed) head/audio/bmp-flac/pkg-descr (props changed) head/audio/bmp-htmlplaylist/pkg-descr (props changed) head/audio/bmp-mac/pkg-descr (props changed) head/audio/bmp-modplug/pkg-descr (props changed) head/audio/bmp-scrobbler/pkg-descr (props changed) head/audio/bmp-songchange/pkg-descr (props changed) head/audio/bmp-wma/pkg-descr (props changed) head/audio/bonk/pkg-descr (props changed) head/audio/boodler/pkg-descr (props changed) head/audio/bristol/pkg-descr (props changed) head/audio/btc/pkg-descr (props changed) head/audio/cam/pkg-descr (props changed) head/audio/cantus_3/pkg-descr (props changed) head/audio/caps-plugins/pkg-descr (props changed) head/audio/ccaudio2/pkg-descr (props changed) head/audio/cd-console/pkg-descr (props changed) head/audio/cd-discid/pkg-descr (props changed) head/audio/cd2mp3/pkg-descr (props changed) head/audio/cddb-bundle/pkg-descr (props changed) head/audio/cdparanoia/pkg-descr (props changed) head/audio/cdplay/pkg-descr (props changed) head/audio/celt/pkg-descr (props changed) head/audio/checkmate/pkg-descr (props changed) head/audio/chordpack/pkg-descr (props changed) head/audio/clementine-player/pkg-descr (props changed) head/audio/clunk/pkg-descr (props changed) head/audio/cmp3/pkg-descr (props changed) head/audio/cmt/pkg-descr (props changed) head/audio/cmus-post.fm/pkg-descr (props changed) head/audio/cmus/pkg-descr (props changed) head/audio/cowbell/pkg-descr (props changed) head/audio/cpige/pkg-descr (props changed) head/audio/cplay/pkg-descr (props changed) head/audio/crip/pkg-descr (props changed) head/audio/cripple/pkg-descr (props changed) head/audio/csound/pkg-descr (props changed) head/audio/ctronome/pkg-descr (props changed) head/audio/cuberok/pkg-descr (props changed) head/audio/cue2toc/pkg-descr (props changed) head/audio/cueplayer/pkg-descr (props changed) head/audio/cuetools/pkg-descr (props changed) head/audio/cutmp3/pkg-descr (props changed) head/audio/cymbaline/pkg-descr (props changed) head/audio/dagrab/pkg-descr (props changed) head/audio/darkice/pkg-descr (props changed) head/audio/dcd/pkg-descr (props changed) head/audio/deadbeef-mpris-plugin/pkg-descr (props changed) head/audio/deadbeef/pkg-descr (props changed) head/audio/decibel-audio-player/pkg-descr (props changed) head/audio/dekagen/pkg-descr (props changed) head/audio/dir2ogg/pkg-descr (props changed) head/audio/discid/pkg-descr (props changed) head/audio/drumpiler/pkg-descr (props changed) head/audio/dssi/pkg-descr (props changed) head/audio/dtmfdial/pkg-descr (props changed) head/audio/dumb/pkg-descr (props changed) head/audio/dvda-author/pkg-descr (props changed) head/audio/easytag/pkg-descr (props changed) head/audio/eawpats/pkg-descr (props changed) head/audio/eawplus/pkg-descr (props changed) head/audio/emms/pkg-descr (props changed) head/audio/emu10kx/pkg-descr (props changed) head/audio/enscribe/pkg-descr (props changed) head/audio/esound/pkg-descr (props changed) head/audio/espeak/pkg-descr (props changed) head/audio/esperanza/pkg-descr (props changed) head/audio/etcd/pkg-descr (props changed) head/audio/etktab/pkg-descr (props changed) head/audio/exaile/pkg-descr (props changed) head/audio/extace/pkg-descr (props changed) head/audio/ezstream/pkg-descr (props changed) head/audio/faac/pkg-descr (props changed) head/audio/faad/pkg-descr (props changed) head/audio/fapg/pkg-descr (props changed) head/audio/fcplay/pkg-descr (props changed) head/audio/fdk-aac/pkg-descr (props changed) head/audio/fdmf/pkg-descr (props changed) head/audio/festalon/pkg-descr (props changed) head/audio/festival-freebsoft-utils/pkg-descr (props changed) head/audio/festival/pkg-descr (props changed) head/audio/festlex-cmu/pkg-descr (props changed) head/audio/festlex-czech/pkg-descr (props changed) head/audio/festlex-ogi/pkg-descr (props changed) head/audio/festlex-poslex/pkg-descr (props changed) head/audio/festvox-czech/pkg-descr (props changed) head/audio/festvox-russian/pkg-descr (props changed) head/audio/festvox-us1-mbrola/pkg-descr (props changed) head/audio/firefly/pkg-descr (props changed) head/audio/flac123/pkg-descr (props changed) head/audio/flite/pkg-descr (props changed) head/audio/fluidsynth-dssi/pkg-descr (props changed) head/audio/fluidsynth/pkg-descr (props changed) head/audio/fmio/pkg-descr (props changed) head/audio/fmit/pkg-descr (props changed) head/audio/fplib/pkg-descr (props changed) head/audio/freealut/pkg-descr (props changed) head/audio/freedesktop-sound-theme/pkg-descr (props changed) head/audio/freepats/pkg-descr (props changed) head/audio/freeswitch-music/pkg-descr (props changed) head/audio/freeswitch-sounds/pkg-descr (props changed) head/audio/funktrackergold/pkg-descr (props changed) head/audio/gbemol/pkg-descr (props changed) head/audio/gbsplay/pkg-descr (props changed) head/audio/gervill/pkg-descr (props changed) head/audio/ghostess/pkg-descr (props changed) head/audio/gimmix/pkg-descr (props changed) head/audio/gkrellmms/pkg-descr (props changed) head/audio/gkrellmms2/pkg-descr (props changed) head/audio/gkrellmss2/pkg-descr (props changed) head/audio/gkrellmvolume/pkg-descr (props changed) head/audio/gkrellmvolume2/pkg-descr (props changed) head/audio/glame/pkg-descr (props changed) head/audio/glurp/pkg-descr (props changed) head/audio/gmidimonitor/pkg-descr (props changed) head/audio/gmixer/pkg-descr (props changed) head/audio/gmpc-alarm/pkg-descr (props changed) head/audio/gmpc-albumview/pkg-descr (props changed) head/audio/gmpc-discogs/pkg-descr (props changed) head/audio/gmpc-extraplaylist/pkg-descr (props changed) head/audio/gmpc-lastfm/pkg-descr (props changed) head/audio/gmpc-libnotify/pkg-descr (props changed) head/audio/gmpc-lyrics/pkg-descr (props changed) head/audio/gmpc-lyricsplugin/pkg-descr (props changed) head/audio/gmpc-lyricwiki/pkg-descr (props changed) head/audio/gmpc-magnatune/pkg-descr (props changed) head/audio/gmpc-mdcover/pkg-descr (props changed) head/audio/gmpc-mserver/pkg-descr (props changed) head/audio/gmpc-shout/pkg-descr (props changed) head/audio/gmpc-wikipedia/pkg-descr (props changed) head/audio/gmpc/pkg-descr (props changed) head/audio/gmtp/pkg-descr (props changed) head/audio/gmusicbrowser/pkg-descr (props changed) head/audio/gnaural/pkg-descr (props changed) head/audio/gnome-audio/pkg-descr (props changed) head/audio/gnome-media/pkg-descr (props changed) head/audio/gnomoradio/pkg-descr (props changed) head/audio/gnormalize/pkg-descr (props changed) head/audio/gnuitar/pkg-descr (props changed) head/audio/gnupod/pkg-descr (props changed) head/audio/gnustep-cdplayer/pkg-descr (props changed) head/audio/gogglesmm/pkg-descr (props changed) head/audio/goobox/pkg-descr (props changed) head/audio/gqmpeg/pkg-descr (props changed) head/audio/gqradio/pkg-descr (props changed) head/audio/gramofile/pkg-descr (props changed) head/audio/grip/pkg-descr (props changed) head/audio/gsi/pkg-descr (props changed) head/audio/gsm/pkg-descr (props changed) head/audio/gspeakers/pkg-descr (props changed) head/audio/gstreamer-plugins-fluendo-mp3/pkg-descr (props changed) head/audio/gstreamer-plugins-moodbar/pkg-descr (props changed) head/audio/gstreamer-plugins-mp3/pkg-descr (props changed) head/audio/gtick/pkg-descr (props changed) head/audio/gtkpod/pkg-descr (props changed) head/audio/gtmixer/pkg-descr (props changed) head/audio/guspat/pkg-descr (props changed) head/audio/gxmms2/pkg-descr (props changed) head/audio/harp/pkg-descr (props changed) head/audio/hawkvoice/pkg-descr (props changed) head/audio/herrie/pkg-descr (props changed) head/audio/hexter/pkg-descr (props changed) head/audio/hs-ALUT/pkg-descr (props changed) head/audio/hs-OpenAL/pkg-descr (props changed) head/audio/hs-libmpd/pkg-descr (props changed) head/audio/hydrogen/pkg-descr (props changed) head/audio/icecast2/pkg-descr (props changed) head/audio/icegenerator/pkg-descr (props changed) head/audio/ices/pkg-descr (props changed) head/audio/id3ed/pkg-descr (props changed) head/audio/id3el/pkg-descr (props changed) head/audio/id3lib/pkg-descr (props changed) head/audio/id3mtag/pkg-descr (props changed) head/audio/id3ren/pkg-descr (props changed) head/audio/id3tool/pkg-descr (props changed) head/audio/id3v2/pkg-descr (props changed) head/audio/ifp-line/pkg-descr (props changed) head/audio/ipod-sharp/pkg-descr (props changed) head/audio/istream/pkg-descr (props changed) head/audio/jack-keyboard/pkg-descr (props changed) head/audio/jack-rack/pkg-descr (props changed) head/audio/jack-smf-utils/pkg-descr (props changed) head/audio/jack/pkg-descr (props changed) head/audio/jack_ghero/pkg-descr (props changed) head/audio/jack_mixer/pkg-descr (props changed) head/audio/jack_umidi/pkg-descr (props changed) head/audio/jamin/pkg-descr (props changed) head/audio/jid3lib/pkg-descr (props changed) head/audio/jmusic/pkg-descr (props changed) head/audio/jokosher/pkg-descr (props changed) head/audio/juke/pkg-descr (props changed) head/audio/julius/pkg-descr (props changed) head/audio/jxm/pkg-descr (props changed) head/audio/kaudiocreator/pkg-descr (props changed) head/audio/kexis/pkg-descr (props changed) head/audio/kid3-kde4/pkg-descr (props changed) head/audio/ksmp3play/pkg-descr (props changed) head/audio/kstreamripper/pkg-descr (props changed) head/audio/ladspa/pkg-descr (props changed) head/audio/lame/pkg-descr (props changed) head/audio/lash/pkg-descr (props changed) head/audio/last-cmus/pkg-descr (props changed) head/audio/last.fm/pkg-descr (props changed) head/audio/lastfm-desktop/pkg-descr (props changed) head/audio/liba52/pkg-descr (props changed) head/audio/libaacplus/pkg-descr (props changed) head/audio/libadplug/pkg-descr (props changed) head/audio/libaiff/pkg-descr (props changed) head/audio/libamrnb/pkg-descr (props changed) head/audio/libamrwb/pkg-descr (props changed) head/audio/libao/pkg-descr (props changed) head/audio/libaudiofile/pkg-descr (props changed) head/audio/libbpm/pkg-descr (props changed) head/audio/libbs2b/pkg-descr (props changed) head/audio/libcanberra/pkg-descr (props changed) head/audio/libcdaudio/pkg-descr (props changed) head/audio/libcddb-doc/pkg-descr (props changed) head/audio/libcddb/pkg-descr (props changed) head/audio/libconvolve/pkg-descr (props changed) head/audio/libdiscid/pkg-descr (props changed) head/audio/libdssialsacompat/pkg-descr (props changed) head/audio/libgig/pkg-descr (props changed) head/audio/libgme/pkg-descr (props changed) head/audio/liblo/pkg-descr (props changed) head/audio/liblscp/pkg-descr (props changed) head/audio/libmad/pkg-descr (props changed) head/audio/libmikmod/pkg-descr (props changed) head/audio/libmodplug/pkg-descr (props changed) head/audio/libmpd/pkg-descr (props changed) head/audio/libmpdclient/pkg-descr (props changed) head/audio/libmtp/pkg-descr (props changed) head/audio/libmusicbrainz3/pkg-descr (props changed) head/audio/libmusicbrainz4/pkg-descr (props changed) head/audio/libmusicbrainz5/pkg-descr (props changed) head/audio/libnjb/pkg-descr (props changed) head/audio/libnoise/pkg-descr (props changed) head/audio/libofa/pkg-descr (props changed) head/audio/libogg/pkg-descr (props changed) head/audio/liboggz/pkg-descr (props changed) head/audio/libopenspc/pkg-descr (props changed) head/audio/libsamplerate/pkg-descr (props changed) head/audio/libshairport/pkg-descr (props changed) head/audio/libshout/pkg-descr (props changed) head/audio/libshout2/pkg-descr (props changed) head/audio/libsidplay/pkg-descr (props changed) head/audio/libsidplay2/pkg-descr (props changed) head/audio/libsmf/pkg-descr (props changed) head/audio/libsndfile/pkg-descr (props changed) head/audio/libtremor/pkg-descr (props changed) head/audio/libumidi/pkg-descr (props changed) head/audio/libvorbis/pkg-descr (props changed) head/audio/libworkman/pkg-descr (props changed) head/audio/libxmp/pkg-descr (props changed) head/audio/lingot/pkg-descr (props changed) head/audio/linux-f10-alsa-lib/pkg-descr (props changed) head/audio/linux-f10-alsa-plugins-oss/pkg-descr (props changed) head/audio/linux-f10-esound/pkg-descr (props changed) head/audio/linux-f10-freealut/pkg-descr (props changed) head/audio/linux-f10-pulseaudio-libs/pkg-descr (props changed) head/audio/linux-fmodapi/pkg-descr (props changed) head/audio/linux-genpuid/pkg-descr (props changed) head/audio/linux-laudio/pkg-descr (props changed) head/audio/linux-mbrola/pkg-descr (props changed) head/audio/linux-musicipserver/pkg-descr (props changed) head/audio/linux-neroaaccodec/pkg-descr (props changed) head/audio/linuxsampler/pkg-descr (props changed) head/audio/liquidsoap/pkg-descr (props changed) head/audio/listener/pkg-descr (props changed) head/audio/lmms/pkg-descr (props changed) head/audio/lpac/pkg-descr (props changed) head/audio/lv2core/pkg-descr (props changed) head/audio/mac/pkg-descr (props changed) head/audio/mad/pkg-descr (props changed) head/audio/madfufw/pkg-descr (props changed) head/audio/madplay/pkg-descr (props changed) head/audio/malint/pkg-descr (props changed) head/audio/mangler/pkg-descr (props changed) head/audio/maplay/pkg-descr (props changed) head/audio/mate-media/pkg-descr (props changed) head/audio/mbox/pkg-descr (props changed) head/audio/mcplay/pkg-descr (props changed) head/audio/mctoolame-decoder/pkg-descr (props changed) head/audio/mctoolame-encoder/pkg-descr (props changed) head/audio/mehdiaplayer/pkg-descr (props changed) head/audio/mhwaveedit/pkg-descr (props changed) head/audio/mikmod/pkg-descr (props changed) head/audio/milkytracker/pkg-descr (props changed) head/audio/minitunes/pkg-descr (props changed) head/audio/mixer.app/pkg-descr (props changed) head/audio/mixmos/pkg-descr (props changed) head/audio/mixxx/pkg-descr (props changed) head/audio/mma/pkg-descr (props changed) head/audio/moc/pkg-descr (props changed) head/audio/modplugplay/pkg-descr (props changed) head/audio/mous/pkg-descr (props changed) head/audio/mp-player/pkg-descr (props changed) head/audio/mp32ogg/pkg-descr (props changed) head/audio/mp3_check/pkg-descr (props changed) head/audio/mp3asm/pkg-descr (props changed) head/audio/mp3blaster/pkg-descr (props changed) head/audio/mp3burn/pkg-descr (props changed) head/audio/mp3c/pkg-descr (props changed) head/audio/mp3check/pkg-descr (props changed) head/audio/mp3ck/pkg-descr (props changed) head/audio/mp3gain/pkg-descr (props changed) head/audio/mp3guessenc/pkg-descr (props changed) head/audio/mp3info/pkg-descr (props changed) head/audio/mp3mover/pkg-descr (props changed) head/audio/mp3plot/pkg-descr (props changed) head/audio/mp3rename/pkg-descr (props changed) head/audio/mp3riot/pkg-descr (props changed) head/audio/mp3splt-gtk/pkg-descr (props changed) head/audio/mp3splt/pkg-descr (props changed) head/audio/mp3stat/pkg-descr (props changed) head/audio/mp3wrap/pkg-descr (props changed) head/audio/mpdas/pkg-descr (props changed) head/audio/mpdbrowser/pkg-descr (props changed) head/audio/mpdcon/pkg-descr (props changed) head/audio/mpdscribble/pkg-descr (props changed) head/audio/mpg123.el/pkg-descr (props changed) head/audio/mpg123/pkg-descr (props changed) head/audio/mpg321/pkg-descr (props changed) head/audio/mpiosh/pkg-descr (props changed) head/audio/muine/pkg-descr (props changed) head/audio/mumble/pkg-descr (props changed) head/audio/muse/pkg-descr (props changed) head/audio/musepack/pkg-descr (props changed) head/audio/musescore/pkg-descr (props changed) head/audio/musica/pkg-descr (props changed) head/audio/musicbox-tag-editor/pkg-descr (props changed) head/audio/musiccontrol/pkg-descr (props changed) head/audio/musicpc/pkg-descr (props changed) head/audio/musicpd/pkg-descr (props changed) head/audio/mythplugin-mythmusic/pkg-descr (props changed) head/audio/napster/pkg-descr (props changed) head/audio/nas/pkg-descr (props changed) head/audio/ncmpc/pkg-descr (props changed) head/audio/ncmpcpp/pkg-descr (props changed) head/audio/normalize/pkg-descr (props changed) head/audio/nosefart/pkg-descr (props changed) head/audio/nspmod/pkg-descr (props changed) head/audio/ocp/pkg-descr (props changed) head/audio/ogg2mp3/pkg-descr (props changed) head/audio/oggsplit/pkg-descr (props changed) head/audio/openal/pkg-descr (props changed) head/audio/opencore-amr/pkg-descr (props changed) head/audio/openspc/pkg-descr (props changed) head/audio/optimfrog/pkg-descr (props changed) head/audio/opus-tools/pkg-descr (props changed) head/audio/osalp/pkg-descr (props changed) head/audio/osd-lyrics/pkg-descr (props changed) head/audio/osdmixer/pkg-descr (props changed) head/audio/oss/pkg-descr (props changed) head/audio/p5-Audio-Beep/pkg-descr (props changed) head/audio/p5-Audio-CD/pkg-descr (props changed) head/audio/p5-Audio-Ecasound/pkg-descr (props changed) head/audio/p5-Audio-FLAC-Header/pkg-descr (props changed) head/audio/p5-Audio-MPD-Common/pkg-descr (props changed) head/audio/p5-Audio-MPD/pkg-descr (props changed) head/audio/p5-Audio-Mixer/pkg-descr (props changed) head/audio/p5-Audio-Scan/pkg-descr (props changed) head/audio/p5-Audio-Scrobbler/pkg-descr (props changed) head/audio/p5-Audio-WMA/pkg-descr (props changed) head/audio/p5-Audio-Wav/pkg-descr (props changed) head/audio/p5-Audio/pkg-descr (props changed) head/audio/p5-CDDB-File/pkg-descr (props changed) head/audio/p5-CDDB/pkg-descr (props changed) head/audio/p5-CDDB_get/pkg-descr (props changed) head/audio/p5-Filesys-Virtual-DAAP/pkg-descr (props changed) head/audio/p5-MIDI/pkg-descr (props changed) head/audio/p5-MP3-Find/pkg-descr (props changed) head/audio/p5-MP3-ID3v1Tag/pkg-descr (props changed) head/audio/p5-MP3-Info/pkg-descr (props changed) head/audio/p5-MP3-Tag/pkg-descr (props changed) head/audio/p5-Music-Audioscrobbler-MPD/pkg-descr (props changed) head/audio/p5-Music-Audioscrobbler-Submit/pkg-descr (props changed) head/audio/p5-MusicBrainz-DiscID/pkg-descr (props changed) head/audio/p5-Net-DAAP-Client/pkg-descr (props changed) head/audio/p5-Net-DAAP-DMAP/pkg-descr (props changed) head/audio/p5-Net-FreeDB/pkg-descr (props changed) head/audio/p5-Net-LibLO/pkg-descr (props changed) head/audio/p5-Ogg-Vorbis-Header-PurePerl/pkg-descr (props changed) head/audio/p5-Ogg-Vorbis-Header/pkg-descr (props changed) head/audio/p5-Shout/pkg-descr (props changed) head/audio/p5-Test-Corpus-Audio-MPD/pkg-descr (props changed) head/audio/p5-Xmms/pkg-descr (props changed) head/audio/p5-libvorbis/pkg-descr (props changed) head/audio/p5-tagged/pkg-descr (props changed) head/audio/padevchooser/pkg-descr (props changed) head/audio/paman/pkg-descr (props changed) head/audio/paprefs/pkg-descr (props changed) head/audio/patchage/pkg-descr (props changed) head/audio/pavucontrol/pkg-descr (props changed) head/audio/pavumeter/pkg-descr (props changed) head/audio/pear-Text_Spell_Audio/pkg-descr (props changed) head/audio/pecl-id3/pkg-descr (props changed) head/audio/penguinsap/pkg-descr (props changed) head/audio/pianobar/pkg-descr (props changed) head/audio/pidgin-musictracker/pkg-descr (props changed) head/audio/pithos/pkg-descr (props changed) head/audio/play/pkg-descr (props changed) head/audio/playgsf/pkg-descr (props changed) head/audio/playmidi/pkg-descr (props changed) head/audio/pm3umpdl/pkg-descr (props changed) head/audio/pms/pkg-descr (props changed) head/audio/portaudio/pkg-descr (props changed) head/audio/portaudio2/pkg-descr (props changed) head/audio/puddletag/pkg-descr (props changed) head/audio/pulseaudio/pkg-descr (props changed) head/audio/pure-audio/pkg-descr (props changed) head/audio/py-al/pkg-descr (props changed) head/audio/py-ao/pkg-descr (props changed) head/audio/py-apetag/pkg-descr (props changed) head/audio/py-cddb/pkg-descr (props changed) head/audio/py-discogs-client/pkg-descr (props changed) head/audio/py-eyed3/pkg-descr (props changed) head/audio/py-fastaudio/pkg-descr (props changed) head/audio/py-id3/pkg-descr (props changed) head/audio/py-karaoke/pkg-descr (props changed) head/audio/py-mad/pkg-descr (props changed) head/audio/py-musicbrainzngs/pkg-descr (props changed) head/audio/py-mutagen/pkg-descr (props changed) head/audio/py-ogg/pkg-descr (props changed) head/audio/py-openal/pkg-descr (props changed) head/audio/py-pyacoustid/pkg-descr (props changed) head/audio/py-pyaudio/pkg-descr (props changed) head/audio/py-pylast/pkg-descr (props changed) head/audio/py-pyliblo/pkg-descr (props changed) head/audio/py-shout/pkg-descr (props changed) head/audio/py-speex/pkg-descr (props changed) head/audio/py-vorbis/pkg-descr (props changed) head/audio/py-xmms/pkg-descr (props changed) head/audio/pysol-sound-server/pkg-descr (props changed) head/audio/pytone/pkg-descr (props changed) head/audio/qjackctl/pkg-descr (props changed) head/audio/qmpdclient/pkg-descr (props changed) head/audio/qsampler/pkg-descr (props changed) head/audio/qsynth/pkg-descr (props changed) head/audio/raop_play/pkg-descr (props changed) head/audio/raproxy/pkg-descr (props changed) head/audio/raul/pkg-descr (props changed) head/audio/rawrec/pkg-descr (props changed) head/audio/re/pkg-descr (props changed) head/audio/rebot3/pkg-descr (props changed) head/audio/rem/pkg-descr (props changed) head/audio/resid/pkg-descr (props changed) head/audio/rexima/pkg-descr (props changed) head/audio/rezound/pkg-descr (props changed) head/audio/rhythmbox/pkg-descr (props changed) head/audio/rio500/pkg-descr (props changed) head/audio/rioutil/pkg-descr (props changed) head/audio/ripit/pkg-descr (props changed) head/audio/ripperx/pkg-descr (props changed) head/audio/rosegarden/pkg-descr (props changed) head/audio/rplay/pkg-descr (props changed) head/audio/rsynth/pkg-descr (props changed) head/audio/rubberband/pkg-descr (props changed) head/audio/ruby-taglib/pkg-descr (props changed) head/audio/rubygem-ruby-mp3info/pkg-descr (props changed) head/audio/rubyripper/pkg-descr (props changed) head/audio/s3mod/pkg-descr (props changed) head/audio/sbagen/pkg-descr (props changed) head/audio/schism/pkg-descr (props changed) head/audio/scmpc/pkg-descr (props changed) head/audio/scrobbler/pkg-descr (props changed) head/audio/sdl_mixer/pkg-descr (props changed) head/audio/sdl_sound/pkg-descr (props changed) head/audio/sfront/pkg-descr (props changed) head/audio/shairport/pkg-descr (props changed) head/audio/shntool/pkg-descr (props changed) head/audio/shorten/pkg-descr (props changed) head/audio/shout/pkg-descr (props changed) head/audio/shoutcast/pkg-descr (props changed) head/audio/sidplay/pkg-descr (props changed) head/audio/sidplay2/pkg-descr (props changed) head/audio/sidplayer/pkg-descr (props changed) head/audio/simplemod/pkg-descr (props changed) head/audio/slv2/pkg-descr (props changed) head/audio/snack/pkg-descr (props changed) head/audio/snd/pkg-descr (props changed) head/audio/solfege/pkg-descr (props changed) head/audio/sonata/pkg-descr (props changed) head/audio/sonice/pkg-descr (props changed) head/audio/sooperlooper/pkg-descr (props changed) head/audio/sound-juicer/pkg-descr (props changed) head/audio/soundconverter/pkg-descr (props changed) head/audio/soundgrab/pkg-descr (props changed) head/audio/soundkonverter/pkg-descr (props changed) head/audio/soundtouch/pkg-descr (props changed) head/audio/soundtracker/pkg-descr (props changed) head/audio/sox/pkg-descr (props changed) head/audio/specimen/pkg-descr (props changed) head/audio/speex/pkg-descr (props changed) head/audio/spek/pkg-descr (props changed) head/audio/sphinx3/pkg-descr (props changed) head/audio/spiralloops/pkg-descr (props changed) head/audio/spiralsynthmodular/pkg-descr (props changed) head/audio/splay/pkg-descr (props changed) head/audio/splaytk/pkg-descr (props changed) head/audio/squash/pkg-descr (props changed) head/audio/squeezeboxserver-dynamicplaylist/pkg-descr (props changed) head/audio/squeezeboxserver-lazysearch/pkg-descr (props changed) head/audio/squeezeboxserver-sqlplaylist/pkg-descr (props changed) head/audio/squeezeboxserver-superdatetime/pkg-descr (props changed) head/audio/squeezeboxserver-trackstat/pkg-descr (props changed) head/audio/squeezeboxserver/pkg-descr (props changed) head/audio/streamripper/pkg-descr (props changed) head/audio/streamtranscoder/pkg-descr (props changed) head/audio/streamtuner/pkg-descr (props changed) head/audio/stymulator/pkg-descr (props changed) head/audio/sweep/pkg-descr (props changed) head/audio/swhplugins/pkg-descr (props changed) head/audio/tagger/pkg-descr (props changed) head/audio/taglib-extras/pkg-descr (props changed) head/audio/taglib-sharp/pkg-descr (props changed) head/audio/taglib/pkg-descr (props changed) head/audio/taglookup/pkg-descr (props changed) head/audio/tagtool/pkg-descr (props changed) head/audio/tagutil/pkg-descr (props changed) head/audio/tap-plugins/pkg-descr (props changed) head/audio/tcd/pkg-descr (props changed) head/audio/tclmidi/pkg-descr (props changed) head/audio/teamspeak3-server/pkg-descr (props changed) head/audio/teamspeak_client/pkg-descr (props changed) head/audio/teamspeak_server/pkg-descr (props changed) head/audio/tempest_for_eliza/pkg-descr (props changed) head/audio/tepsonic/pkg-descr (props changed) head/audio/terminatorx/pkg-descr (props changed) head/audio/timemachine/pkg-descr (props changed) head/audio/timidity++-emacs/pkg-descr (props changed) head/audio/timidity++-gtk/pkg-descr (props changed) head/audio/timidity++-motif/pkg-descr (props changed) head/audio/timidity++-slang/pkg-descr (props changed) head/audio/timidity++-tcltk/pkg-descr (props changed) head/audio/timidity++-xaw/pkg-descr (props changed) head/audio/timidity++-xskin/pkg-descr (props changed) head/audio/timidity++/pkg-descr (props changed) head/audio/tkeca/pkg-descr (props changed) head/audio/tomahawk/pkg-descr (props changed) head/audio/toolame/pkg-descr (props changed) head/audio/tosha/pkg-descr (props changed) head/audio/trommler/pkg-descr (props changed) head/audio/tse3/pkg-descr (props changed) head/audio/tta/pkg-descr (props changed) head/audio/tuneradio/pkg-descr (props changed) head/audio/tuxguitar/pkg-descr (props changed) head/audio/twolame/pkg-descr (props changed) head/audio/uade/pkg-descr (props changed) head/audio/ufmcontrol-i18n/pkg-descr (props changed) head/audio/umix/pkg-descr (props changed) head/audio/umodplayer/pkg-descr (props changed) head/audio/umurmur/pkg-descr (props changed) head/audio/vagalume/pkg-descr (props changed) head/audio/vamp-plugin-sdk/pkg-descr (props changed) head/audio/ventrilo-server/pkg-descr (props changed) head/audio/vitunes/pkg-descr (props changed) head/audio/vo-aacenc/pkg-descr (props changed) head/audio/vo-amrwbenc/pkg-descr (props changed) head/audio/voipong/pkg-descr (props changed) head/audio/vorbis-tools/pkg-descr (props changed) head/audio/vorbisgain/pkg-descr (props changed) head/audio/vsound/pkg-descr (props changed) head/audio/waheela/pkg-descr (props changed) head/audio/waon/pkg-descr (props changed) head/audio/wav2cdr/pkg-descr (props changed) head/audio/wavbreaker/pkg-descr (props changed) head/audio/wavegain/pkg-descr (props changed) head/audio/waveplay/pkg-descr (props changed) head/audio/wavpack/pkg-descr (props changed) head/audio/wavplay/pkg-descr (props changed) head/audio/whysynth/pkg-descr (props changed) head/audio/wmalbum/pkg-descr (props changed) head/audio/wmix/pkg-descr (props changed) head/audio/wmmp/pkg-descr (props changed) head/audio/wmrecord/pkg-descr (props changed) head/audio/wmsmixer/pkg-descr (props changed) head/audio/workman/pkg-descr (props changed) head/audio/wxguitar/pkg-descr (props changed) head/audio/x11amp/pkg-descr (props changed) head/audio/xanalyser/pkg-descr (props changed) head/audio/xcd/pkg-descr (props changed) head/audio/xcdplayer/pkg-descr (props changed) head/audio/xfce4-mixer/pkg-descr (props changed) head/audio/xfmpc/pkg-descr (props changed) head/audio/xhippo/pkg-descr (props changed) head/audio/ximp3/pkg-descr (props changed) head/audio/xmcd/pkg-descr (props changed) head/audio/xmix/pkg-descr (props changed) head/audio/xmixer/pkg-descr (props changed) head/audio/xmmix/pkg-descr (props changed) head/audio/xmms-a52dec/pkg-descr (props changed) head/audio/xmms-ahx/pkg-descr (props changed) head/audio/xmms-audiofile/pkg-descr (props changed) head/audio/xmms-bonk/pkg-descr (props changed) head/audio/xmms-cdread/pkg-descr (props changed) head/audio/xmms-crossfade/pkg-descr (props changed) head/audio/xmms-crystality/pkg-descr (props changed) head/audio/xmms-curses/pkg-descr (props changed) head/audio/xmms-defx/pkg-descr (props changed) head/audio/xmms-efxmms/pkg-descr (props changed) head/audio/xmms-eq/pkg-descr (props changed) head/audio/xmms-fc/pkg-descr (props changed) head/audio/xmms-festalon/pkg-descr (props changed) head/audio/xmms-fxt/pkg-descr (props changed) head/audio/xmms-gbsplay/pkg-descr (props changed) head/audio/xmms-infopipe/pkg-descr (props changed) head/audio/xmms-jack/pkg-descr (props changed) head/audio/xmms-ladspa/pkg-descr (props changed) head/audio/xmms-liveice/pkg-descr (props changed) head/audio/xmms-mac/pkg-descr (props changed) head/audio/xmms-mad/pkg-descr (props changed) head/audio/xmms-mailnotify/pkg-descr (props changed) head/audio/xmms-midi/pkg-descr (props changed) head/audio/xmms-modplug/pkg-descr (props changed) head/audio/xmms-mp3cue/pkg-descr (props changed) head/audio/xmms-musepack/pkg-descr (props changed) head/audio/xmms-nas/pkg-descr (props changed) head/audio/xmms-nsf/pkg-descr (props changed) head/audio/xmms-openspc/pkg-descr (props changed) head/audio/xmms-osssurround/pkg-descr (props changed) head/audio/xmms-quix3dn/pkg-descr (props changed) head/audio/xmms-sapplug/pkg-descr (props changed) head/audio/xmms-scrobbler/pkg-descr (props changed) head/audio/xmms-sexypsf/pkg-descr (props changed) head/audio/xmms-sexyspc/pkg-descr (props changed) head/audio/xmms-shn/pkg-descr (props changed) head/audio/xmms-sid/pkg-descr (props changed) head/audio/xmms-sndfile/pkg-descr (props changed) head/audio/xmms-tfmx/pkg-descr (props changed) head/audio/xmms-timidity/pkg-descr (props changed) head/audio/xmms-volnorm/pkg-descr (props changed) head/audio/xmms-wavpack/pkg-descr (props changed) head/audio/xmms-wma/pkg-descr (props changed) head/audio/xmms-xf86audio/pkg-descr (props changed) head/audio/xmms-xymms/pkg-descr (props changed) head/audio/xmms2-scrobbler/pkg-descr (props changed) head/audio/xmms2/pkg-descr (props changed) head/audio/xmmsctrl/pkg-descr (props changed) head/audio/xmp/pkg-descr (props changed) head/audio/xmradio/pkg-descr (props changed) head/audio/xoscope/pkg-descr (props changed) head/audio/xpi-musicpm/pkg-descr (props changed) head/audio/xsynth-dssi/pkg-descr (props changed) head/audio/xvmixer/pkg-descr (props changed) head/audio/xwave/pkg-descr (props changed) head/audio/yell/pkg-descr (props changed) head/audio/zinf/pkg-descr (props changed) head/benchmarks/autobench/pkg-descr (props changed) head/benchmarks/blogbench/pkg-descr (props changed) head/benchmarks/bonnie++/pkg-descr (props changed) head/benchmarks/bonnie/pkg-descr (props changed) head/benchmarks/cpipe/pkg-descr (props changed) head/benchmarks/dbench/pkg-descr (props changed) head/benchmarks/dbs/pkg-descr (props changed) head/benchmarks/dkftpbench/pkg-descr (props changed) head/benchmarks/expedite/pkg-descr (props changed) head/benchmarks/fhourstones/pkg-descr (props changed) head/benchmarks/filebench/pkg-descr (props changed) head/benchmarks/fio/pkg-descr (props changed) head/benchmarks/flops/pkg-descr (props changed) head/benchmarks/flowgrind/pkg-descr (props changed) head/benchmarks/forkbomb/pkg-descr (props changed) head/benchmarks/geekbench/pkg-descr (props changed) head/benchmarks/gtkperf/pkg-descr (props changed) head/benchmarks/himenobench/pkg-descr (props changed) head/benchmarks/hpl/pkg-descr (props changed) head/benchmarks/hs-criterion/pkg-descr (props changed) head/benchmarks/httperf/pkg-descr (props changed) head/benchmarks/imb/pkg-descr (props changed) head/benchmarks/interbench/pkg-descr (props changed) head/benchmarks/iorate/pkg-descr (props changed) head/benchmarks/iozone/pkg-descr (props changed) head/benchmarks/iozone21/pkg-descr (props changed) head/benchmarks/iperf/pkg-descr (props changed) head/benchmarks/iperf3/pkg-descr (props changed) head/benchmarks/lmbench/pkg-descr (props changed) head/benchmarks/mdtest/pkg-descr (props changed) head/benchmarks/nbench/pkg-descr (props changed) head/benchmarks/netio/pkg-descr (props changed) head/benchmarks/netperf/pkg-descr (props changed) head/benchmarks/netperfmeter/pkg-descr (props changed) head/benchmarks/netpipe/pkg-descr (props changed) head/benchmarks/nosqlbench/pkg-descr (props changed) head/benchmarks/nqueens/pkg-descr (props changed) head/benchmarks/nttcp/pkg-descr (props changed) head/benchmarks/nuttcp/pkg-descr (props changed) head/benchmarks/octave-forge-benchmark/pkg-descr (props changed) head/benchmarks/p5-Benchmark-Forking/pkg-descr (props changed) head/benchmarks/pathchirp/pkg-descr (props changed) head/benchmarks/pathload/pkg-descr (props changed) head/benchmarks/pathrate/pkg-descr (props changed) head/benchmarks/pear-Benchmark/pkg-descr (props changed) head/benchmarks/phoronix-test-suite/pkg-descr (props changed) head/benchmarks/pipebench/pkg-descr (props changed) head/benchmarks/pnetmark/pkg-descr (props changed) head/benchmarks/polygraph/pkg-descr (props changed) head/benchmarks/postal/pkg-descr (props changed) head/benchmarks/postmark/pkg-descr (props changed) head/benchmarks/pybench/pkg-descr (props changed) head/benchmarks/randomio/pkg-descr (props changed) head/benchmarks/rubygem-railsbench/pkg-descr (props changed) head/benchmarks/scimark2/pkg-descr (props changed) head/benchmarks/scimark2c/pkg-descr (props changed) head/benchmarks/siege/pkg-descr (props changed) head/benchmarks/sipp/pkg-descr (props changed) head/benchmarks/slowloris/pkg-descr (props changed) head/benchmarks/spp/pkg-descr (props changed) head/benchmarks/stream/pkg-descr (props changed) head/benchmarks/sysbench/pkg-descr (props changed) head/benchmarks/tcpblast/pkg-descr (props changed) head/benchmarks/thrulay/pkg-descr (props changed) head/benchmarks/tsung/pkg-descr (props changed) head/benchmarks/ttcp/pkg-descr (props changed) head/benchmarks/ubench/pkg-descr (props changed) head/benchmarks/unixbench/pkg-descr (props changed) head/benchmarks/webbench/pkg-descr (props changed) head/benchmarks/xdd/pkg-descr (props changed) head/biology/ariadne/pkg-descr (props changed) head/biology/artemis/pkg-descr (props changed) head/biology/avida/pkg-descr (props changed) head/biology/babel/pkg-descr (props changed) head/biology/biococoa/pkg-descr (props changed) head/biology/biojava/pkg-descr (props changed) head/biology/blast/pkg-descr (props changed) head/biology/blat/pkg-descr (props changed) head/biology/boinc-simap/pkg-descr (props changed) head/biology/chemeq/pkg-descr (props changed) head/biology/clustalw/pkg-descr (props changed) head/biology/consed/pkg-descr (props changed) head/biology/crux/pkg-descr (props changed) head/biology/embassy/pkg-descr (props changed) head/biology/emboss/pkg-descr (props changed) head/biology/fasta/pkg-descr (props changed) head/biology/fastdnaml/pkg-descr (props changed) head/biology/finchtv/pkg-descr (props changed) head/biology/fluctuate/pkg-descr (props changed) head/biology/garlic/pkg-descr (props changed) head/biology/genpak/pkg-descr (props changed) head/biology/gff2ps/pkg-descr (props changed) head/biology/gmap/pkg-descr (props changed) head/biology/gperiodic/pkg-descr (props changed) head/biology/grappa/pkg-descr (props changed) head/biology/hmmer/pkg-descr (props changed) head/biology/jalview/pkg-descr (props changed) head/biology/lagan/pkg-descr (props changed) head/biology/lamarc/pkg-descr (props changed) head/biology/libgenome/pkg-descr (props changed) head/biology/libsbml/pkg-descr (props changed) head/biology/linux-foldingathome/pkg-descr (props changed) head/biology/mafft/pkg-descr (props changed) head/biology/mapm3/pkg-descr (props changed) head/biology/migrate/pkg-descr (props changed) head/biology/mopac/pkg-descr (props changed) head/biology/mrbayes/pkg-descr (props changed) head/biology/mummer/pkg-descr (props changed) head/biology/muscle/pkg-descr (props changed) head/biology/njplot/pkg-descr (props changed) head/biology/ortep3/pkg-descr (props changed) head/biology/p5-Bio-ASN1-EntrezGene/pkg-descr (props changed) head/biology/p5-Bio-Das-Lite/pkg-descr (props changed) head/biology/p5-Bio-Das/pkg-descr (props changed) head/biology/p5-Bio-GFF3/pkg-descr (props changed) head/biology/p5-Bio-Glite/pkg-descr (props changed) head/biology/p5-Bio-Graphics/pkg-descr (props changed) head/biology/p5-Bio-MAGETAB/pkg-descr (props changed) head/biology/p5-Bio-NEXUS/pkg-descr (props changed) head/biology/p5-Bio-Phylo/pkg-descr (props changed) head/biology/p5-bioperl-run/pkg-descr (props changed) head/biology/p5-bioperl/pkg-descr (props changed) head/biology/paml/pkg-descr (props changed) head/biology/phd2fasta/pkg-descr (props changed) head/biology/phrap/pkg-descr (props changed) head/biology/phred/pkg-descr (props changed) head/biology/phylip/pkg-descr (props changed) head/biology/phyml/pkg-descr (props changed) head/biology/platon/pkg-descr (props changed) head/biology/povchem/pkg-descr (props changed) head/biology/primer3/pkg-descr (props changed) head/biology/protomol/pkg-descr (props changed) head/biology/psi88/pkg-descr (props changed) head/biology/py-biopython/pkg-descr (props changed) head/biology/pycogent/pkg-descr (props changed) head/biology/pyfasta/pkg-descr (props changed) head/biology/pymol/pkg-descr (props changed) head/biology/python-nexus/pkg-descr (props changed) head/biology/rasmol/pkg-descr (props changed) head/biology/recombine/pkg-descr (props changed) head/biology/ruby-bio/pkg-descr (props changed) head/biology/seaview/pkg-descr (props changed) head/biology/seqan/pkg-descr (props changed) head/biology/seqio/pkg-descr (props changed) head/biology/sim4/pkg-descr (props changed) head/biology/ssaha/pkg-descr (props changed) head/biology/tRNAscan-SE/pkg-descr (props changed) head/biology/t_coffee/pkg-descr (props changed) head/biology/tinker/pkg-descr (props changed) head/biology/treepuzzle/pkg-descr (props changed) head/biology/treeviewx/pkg-descr (props changed) head/biology/ugene/pkg-descr (props changed) head/biology/velvet/pkg-descr (props changed) head/biology/wise/pkg-descr (props changed) head/biology/xmolwt/pkg-descr (props changed) head/cad/adms/pkg-descr (props changed) head/cad/alliance/pkg-descr (props changed) head/cad/astk-serveur/pkg-descr (props changed) head/cad/atlc/pkg-descr (props changed) head/cad/basicdsp/pkg-descr (props changed) head/cad/brlcad/pkg-descr (props changed) head/cad/calculix/pkg-descr (props changed) head/cad/cascade/pkg-descr (props changed) head/cad/chipmunk/pkg-descr (props changed) head/cad/chipvault/pkg-descr (props changed) head/cad/cider/pkg-descr (props changed) head/cad/dinotrace/pkg-descr (props changed) head/cad/dxf2fig/pkg-descr (props changed) head/cad/electric/pkg-descr (props changed) head/cad/feappv/pkg-descr (props changed) head/cad/fidocadj/pkg-descr (props changed) head/cad/findhier/pkg-descr (props changed) head/cad/freehdl/pkg-descr (props changed) head/cad/gdsreader/pkg-descr (props changed) head/cad/gdt/pkg-descr (props changed) head/cad/geda-docs/pkg-descr (props changed) head/cad/geda-examples/pkg-descr (props changed) head/cad/geda-gattrib/pkg-descr (props changed) head/cad/geda-gschem/pkg-descr (props changed) head/cad/geda-netlist/pkg-descr (props changed) head/cad/geda-symbols/pkg-descr (props changed) head/cad/geda-symcheck/pkg-descr (props changed) head/cad/geda-utils/pkg-descr (props changed) head/cad/geda/pkg-descr (props changed) head/cad/gmsh-occ/pkg-descr (props changed) head/cad/gmsh/pkg-descr (props changed) head/cad/gnucap/pkg-descr (props changed) head/cad/gplcver/pkg-descr (props changed) head/cad/gspiceui/pkg-descr (props changed) head/cad/gtkwave/pkg-descr (props changed) head/cad/irsim/pkg-descr (props changed) head/cad/iverilog/pkg-descr (props changed) head/cad/jspice3/pkg-descr (props changed) head/cad/kicad-devel/pkg-descr (props changed) head/cad/kicad-library/pkg-descr (props changed) head/cad/kicad/pkg-descr (props changed) head/cad/klayout/pkg-descr (props changed) head/cad/layouteditor/pkg-descr (props changed) head/cad/ldraw/pkg-descr (props changed) head/cad/libgeda/pkg-descr (props changed) head/cad/linux-eagle5/pkg-descr (props changed) head/cad/logisim/pkg-descr (props changed) head/cad/magic/pkg-descr (props changed) head/cad/mars/pkg-descr (props changed) head/cad/meshdev/pkg-descr (props changed) head/cad/meshlab/pkg-descr (props changed) head/cad/netgen/pkg-descr (props changed) head/cad/ngspice_rework/pkg-descr (props changed) head/cad/opencascade/pkg-descr (props changed) head/cad/openscad/pkg-descr (props changed) head/cad/p5-GDS2/pkg-descr (props changed) head/cad/p5-Verilog-Perl/pkg-descr (props changed) head/cad/pcb/pkg-descr (props changed) head/cad/pdnmesh/pkg-descr (props changed) head/cad/pythoncad/pkg-descr (props changed) head/cad/qcad-partslib/pkg-descr (props changed) head/cad/qcad/pkg-descr (props changed) head/cad/qfsm/pkg-descr (props changed) head/cad/qmls/pkg-descr (props changed) head/cad/repsnapper/pkg-descr (props changed) head/cad/salome-geom/pkg-descr (props changed) head/cad/salome-gui/pkg-descr (props changed) head/cad/salome-jobmanager/pkg-descr (props changed) head/cad/salome-kernel/pkg-descr (props changed) head/cad/salome-light/pkg-descr (props changed) head/cad/salome-med/pkg-descr (props changed) head/cad/salome-multipr/pkg-descr (props changed) head/cad/salome-netgenplugin/pkg-descr (props changed) head/cad/salome-randomizer/pkg-descr (props changed) head/cad/salome-sierpinsky/pkg-descr (props changed) head/cad/salome-smesh/pkg-descr (props changed) head/cad/salome-visu/pkg-descr (props changed) head/cad/salome-yacs/pkg-descr (props changed) head/cad/salome/pkg-descr (props changed) head/cad/sceptre/pkg-descr (props changed) head/cad/scotch/pkg-descr (props changed) head/cad/scv/pkg-descr (props changed) head/cad/slffea/pkg-descr (props changed) head/cad/spice/pkg-descr (props changed) head/cad/sweethome3d/pkg-descr (props changed) head/cad/systemc/pkg-descr (props changed) head/cad/tochnog/pkg-descr (props changed) head/cad/transcalc/pkg-descr (props changed) head/cad/varkon/pkg-descr (props changed) head/cad/verilog-mode.el/pkg-descr (props changed) head/cad/xcircuit/pkg-descr (props changed) head/cad/z88/pkg-descr (props changed) head/chinese/CJKUnifonts/pkg-descr (props changed) head/chinese/CNS11643-font/pkg-descr (props changed) head/chinese/FreeWnn-lib/pkg-descr (props changed) head/chinese/FreeWnn-server/pkg-descr (props changed) head/chinese/arphicttf/pkg-descr (props changed) head/chinese/aterm/pkg-descr (props changed) head/chinese/auto-cn-l10n/pkg-descr (props changed) head/chinese/auto-tw-l10n/pkg-descr (props changed) head/chinese/autoconvert/pkg-descr (props changed) head/chinese/bg5pdf/pkg-descr (props changed) head/chinese/bg5ps/pkg-descr (props changed) head/chinese/big5con/pkg-descr (props changed) head/chinese/big5width/pkg-descr (props changed) head/chinese/bug5/pkg-descr (props changed) head/chinese/c2t/pkg-descr (props changed) head/chinese/calligra-l10n-zh_CN/pkg-descr (props changed) head/chinese/calligra-l10n-zh_TW/pkg-descr (props changed) head/chinese/cce/pkg-descr (props changed) head/chinese/cconv/pkg-descr (props changed) head/chinese/celvis/pkg-descr (props changed) head/chinese/cless/pkg-descr (props changed) head/chinese/cmexfonts/pkg-descr (props changed) head/chinese/cnprint/pkg-descr (props changed) head/chinese/cwtex/pkg-descr (props changed) head/chinese/cwtexttf/pkg-descr (props changed) head/chinese/dictd-database/pkg-descr (props changed) head/chinese/docproj/pkg-descr (props changed) head/chinese/eterm/pkg-descr (props changed) head/chinese/fcitx-chewing/pkg-descr (props changed) head/chinese/fcitx-cloudpinyin/pkg-descr (props changed) head/chinese/fcitx-configtool/pkg-descr (props changed) head/chinese/fcitx-googlepinyin/pkg-descr (props changed) head/chinese/fcitx-libpinyin/pkg-descr (props changed) head/chinese/fcitx-sunpinyin/pkg-descr (props changed) head/chinese/fcitx-ui-light/pkg-descr (props changed) head/chinese/fcitx/pkg-descr (props changed) head/chinese/fireflyttf/pkg-descr (props changed) head/chinese/font-std/pkg-descr (props changed) head/chinese/fortune/pkg-descr (props changed) head/chinese/fortunetw/pkg-descr (props changed) head/chinese/fqterm/pkg-descr (props changed) head/chinese/gb2jis/pkg-descr (props changed) head/chinese/gb2ps/pkg-descr (props changed) head/chinese/gcin/pkg-descr (props changed) head/chinese/gugod-clean/pkg-descr (props changed) head/chinese/hanzim/pkg-descr (props changed) head/chinese/hc/pkg-descr (props changed) head/chinese/hztty/pkg-descr (props changed) head/chinese/ibus-chewing/pkg-descr (props changed) head/chinese/ibus-pinyin/pkg-descr (props changed) head/chinese/jis2gb/pkg-descr (props changed) head/chinese/kcfonts/pkg-descr (props changed) head/chinese/kde4-l10n-zh_CN/pkg-descr (props changed) head/chinese/kde4-l10n-zh_TW/pkg-descr (props changed) head/chinese/libchewing/pkg-descr (props changed) head/chinese/libgooglepinyin/pkg-descr (props changed) head/chinese/libpinyin/pkg-descr (props changed) head/chinese/libreoffice-zh_CN/pkg-descr (props changed) head/chinese/libreoffice-zh_TW/pkg-descr (props changed) head/chinese/libtabe/pkg-descr (props changed) head/chinese/lunar/pkg-descr (props changed) head/chinese/miniChinput/pkg-descr (props changed) head/chinese/moefonts-cid/pkg-descr (props changed) head/chinese/moettf/pkg-descr (props changed) head/chinese/msttf/pkg-descr (props changed) head/chinese/muni/pkg-descr (props changed) head/chinese/oicq/pkg-descr (props changed) head/chinese/opencc/pkg-descr (props changed) head/chinese/opendesktop-fonts/pkg-descr (props changed) head/chinese/oto/pkg-descr (props changed) head/chinese/oxim/pkg-descr (props changed) head/chinese/p5-Date-Chinese/pkg-descr (props changed) head/chinese/p5-Encode-CNMap/pkg-descr (props changed) head/chinese/p5-Encode-HanConvert/pkg-descr (props changed) head/chinese/p5-Encode-HanExtra/pkg-descr (props changed) head/chinese/p5-Lingua-ZH-HanDetect/pkg-descr (props changed) head/chinese/p5-Lingua-ZH-Keywords/pkg-descr (props changed) head/chinese/p5-Lingua-ZH-Numbers/pkg-descr (props changed) head/chinese/p5-Lingua-ZH-Summarize/pkg-descr (props changed) head/chinese/p5-Lingua-ZH-Toke/pkg-descr (props changed) head/chinese/p5-Lingua-ZH-WordSegmenter/pkg-descr (props changed) head/chinese/p5-Lingua-ZH-Wrap/pkg-descr (props changed) head/chinese/p5-Text-Greeking-zh_TW/pkg-descr (props changed) head/chinese/p5-cconv/pkg-descr (props changed) head/chinese/pcmanx/pkg-descr (props changed) head/chinese/php5-cconv/pkg-descr (props changed) head/chinese/phpbb-tw/pkg-descr (props changed) head/chinese/phpbb3-tw/pkg-descr (props changed) head/chinese/pine4/pkg-descr (props changed) head/chinese/py-cconv/pkg-descr (props changed) head/chinese/qe/pkg-descr (props changed) head/chinese/reciteword/pkg-descr (props changed) head/chinese/scim-array/pkg-descr (props changed) head/chinese/scim-fcitx/pkg-descr (props changed) head/chinese/scim-pinyin/pkg-descr (props changed) head/chinese/scim-tables/pkg-descr (props changed) head/chinese/srecite/pkg-descr (props changed) head/chinese/telnet/pkg-descr (props changed) head/chinese/ttf2pt1/pkg-descr (props changed) head/chinese/ttfm/pkg-descr (props changed) head/chinese/ve/pkg-descr (props changed) head/chinese/wenju/pkg-descr (props changed) head/chinese/xpdf/pkg-descr (props changed) head/chinese/xsim/pkg-descr (props changed) head/chinese/ydict/pkg-descr (props changed) head/chinese/zhcon/pkg-descr (props changed) head/comms/acfax/pkg-descr (props changed) head/comms/aldo/pkg-descr (props changed) head/comms/amtterm/pkg-descr (props changed) head/comms/anyremote/pkg-descr (props changed) head/comms/aprsd/pkg-descr (props changed) head/comms/atslog/pkg-descr (props changed) head/comms/bfhist/pkg-descr (props changed) head/comms/bforce-kst/pkg-descr (props changed) head/comms/bforce/pkg-descr (props changed) head/comms/birda/pkg-descr (props changed) head/comms/bluez-firmware/pkg-descr (props changed) head/comms/bpl+/pkg-descr (props changed) head/comms/callsign/pkg-descr (props changed) head/comms/cdr_read/pkg-descr (props changed) head/comms/chirp/pkg-descr (props changed) head/comms/chu/pkg-descr (props changed) head/comms/comserv/pkg-descr (props changed) head/comms/conserver-com/pkg-descr (props changed) head/comms/conserver/pkg-descr (props changed) head/comms/cutecom/pkg-descr (props changed) head/comms/cwdaemon/pkg-descr (props changed) head/comms/dfu-programmer/pkg-descr (props changed) head/comms/ebook2cw/pkg-descr (props changed) head/comms/ebook2cwgui/pkg-descr (props changed) head/comms/echolinux/pkg-descr (props changed) head/comms/efax-gtk/pkg-descr (props changed) head/comms/efax/pkg-descr (props changed) head/comms/ems-flasher/pkg-descr (props changed) head/comms/esmska/pkg-descr (props changed) head/comms/fl_moxgen/pkg-descr (props changed) head/comms/fldigi/pkg-descr (props changed) head/comms/flwrap/pkg-descr (props changed) head/comms/gammu-devel/pkg-descr (props changed) head/comms/gammu/pkg-descr (props changed) head/comms/geoid/pkg-descr (props changed) head/comms/gkermit/pkg-descr (props changed) head/comms/gmfsk/pkg-descr (props changed) head/comms/gnocky/pkg-descr (props changed) head/comms/gnokii/pkg-descr (props changed) head/comms/gnuradio/pkg-descr (props changed) head/comms/gpsk31/pkg-descr (props changed) head/comms/gqrx/pkg-descr (props changed) head/comms/gr-osmosdr/pkg-descr (props changed) head/comms/grig/pkg-descr (props changed) head/comms/gscmxx/pkg-descr (props changed) head/comms/gsmlib/pkg-descr (props changed) head/comms/gtkmmorse/pkg-descr (props changed) head/comms/hamfax/pkg-descr (props changed) head/comms/hamlib/pkg-descr (props changed) head/comms/hcidump/pkg-descr (props changed) head/comms/hf/pkg-descr (props changed) head/comms/hylafax/pkg-descr (props changed) head/comms/ibp/pkg-descr (props changed) head/comms/java-commapi-freebsd/pkg-descr (props changed) head/comms/java-commapi/pkg-descr (props changed) head/comms/jerm/pkg-descr (props changed) head/comms/kb/pkg-descr (props changed) head/comms/kermit/pkg-descr (props changed) head/comms/kremotecontrol/pkg-descr (props changed) head/comms/libfec/pkg-descr (props changed) head/comms/libirman/pkg-descr (props changed) head/comms/libmodbus/pkg-descr (props changed) head/comms/linrad/pkg-descr (props changed) head/comms/lirc/pkg-descr (props changed) head/comms/locator/pkg-descr (props changed) head/comms/lrzsz/pkg-descr (props changed) head/comms/mgetty+sendfax/pkg-descr (props changed) head/comms/minicom/pkg-descr (props changed) head/comms/mlan3/pkg-descr (props changed) head/comms/morse/pkg-descr (props changed) head/comms/nasawash/pkg-descr (props changed) head/comms/ncid/pkg-descr (props changed) head/comms/nec2c/pkg-descr (props changed) head/comms/nokryptia/pkg-descr (props changed) head/comms/o2sms/pkg-descr (props changed) head/comms/obexapp/pkg-descr (props changed) head/comms/p5-Cisco-UCS/pkg-descr (props changed) head/comms/p5-Device-Gsm/pkg-descr (props changed) head/comms/p5-Device-Modem/pkg-descr (props changed) head/comms/p5-Device-SerialPort/pkg-descr (props changed) head/comms/p5-Fax-Hylafax-Client/pkg-descr (props changed) head/comms/p5-Nexmo-SMS/pkg-descr (props changed) head/comms/p5-SMS-SMS77/pkg-descr (props changed) head/comms/p5-SMS-Send-DeviceGsm/pkg-descr (props changed) head/comms/p5-SMS-Send-NexmoUnicode/pkg-descr (props changed) head/comms/p5-SMS-Send-TW-HiAir/pkg-descr (props changed) head/comms/p5-SMS-Send-TW-PChome/pkg-descr (props changed) head/comms/p5-SMS-Send-TW-Qma/pkg-descr (props changed) head/comms/p5-SMS-Send-TW-ShareSMS/pkg-descr (props changed) head/comms/p5-SMS-Send-TW-Socket2Air/pkg-descr (props changed) head/comms/p5-SMS-Send-TW-chtsns/pkg-descr (props changed) head/comms/p5-SMS-Send-TW-emome/pkg-descr (props changed) head/comms/p5-SMS-Send/pkg-descr (props changed) head/comms/pear-Horde_ActiveSync/pkg-descr (props changed) head/comms/pear-Horde_SyncMl/pkg-descr (props changed) head/comms/picocom/pkg-descr (props changed) head/comms/pr/pkg-descr (props changed) head/comms/predict/pkg-descr (props changed) head/comms/py-bulksms/pkg-descr (props changed) head/comms/py-lirc/pkg-descr (props changed) head/comms/py-serial/pkg-descr (props changed) head/comms/pyla/pkg-descr (props changed) head/comms/qico/pkg-descr (props changed) head/comms/qpage/pkg-descr (props changed) head/comms/qrq/pkg-descr (props changed) head/comms/qsstv/pkg-descr (props changed) head/comms/remserial/pkg-descr (props changed) head/comms/rtl-sdr/pkg-descr (props changed) head/comms/rubygem-callsign/pkg-descr (props changed) head/comms/rubygem-ruby-termios/pkg-descr (props changed) head/comms/rxtx/pkg-descr (props changed) head/comms/scmxx/pkg-descr (props changed) head/comms/ser2net/pkg-descr (props changed) head/comms/serialoverip/pkg-descr (props changed) head/comms/seyon/pkg-descr (props changed) head/comms/smstools3/pkg-descr (props changed) head/comms/soundmodem/pkg-descr (props changed) head/comms/spandsp-devel/pkg-descr (props changed) head/comms/spandsp/pkg-descr (props changed) head/comms/splat/pkg-descr (props changed) head/comms/sredird/pkg-descr (props changed) head/comms/syncterm/pkg-descr (props changed) head/comms/tcpser/pkg-descr (props changed) head/comms/thebridge/pkg-descr (props changed) head/comms/tits/pkg-descr (props changed) head/comms/tkhylafax/pkg-descr (props changed) head/comms/tkscanfax/pkg-descr (props changed) head/comms/tlf/pkg-descr (props changed) head/comms/trustedqsl/pkg-descr (props changed) head/comms/twpsk/pkg-descr (props changed) head/comms/uarduno/pkg-descr (props changed) head/comms/uird/pkg-descr (props changed) head/comms/unixcw/pkg-descr (props changed) head/comms/usrp/pkg-descr (props changed) head/comms/viewfax/pkg-descr (props changed) head/comms/vrflash/pkg-descr (props changed) head/comms/wsjt/pkg-descr (props changed) head/comms/wspr/pkg-descr (props changed) head/comms/wwl/pkg-descr (props changed) head/comms/wy60/pkg-descr (props changed) head/comms/xastir/pkg-descr (props changed) head/comms/xdx/pkg-descr (props changed) head/comms/xlog/pkg-descr (props changed) head/comms/xmorse/pkg-descr (props changed) head/comms/xnecview/pkg-descr (props changed) head/comms/xwota/pkg-descr (props changed) head/comms/yagiuda/pkg-descr (props changed) head/comms/yaps/pkg-descr (props changed) head/comms/yfklog/pkg-descr (props changed) head/comms/zmtx-zmrx/pkg-descr (props changed) head/comms/zssh/pkg-descr (props changed) head/converters/R-cran-RJSONIO/pkg-descr (props changed) head/converters/R-cran-rjson/pkg-descr (props changed) head/converters/aish/pkg-descr (props changed) head/converters/ascii2binary/pkg-descr (props changed) head/converters/asr10/pkg-descr (props changed) head/converters/base64/pkg-descr (props changed) head/converters/bibtexconv/pkg-descr (props changed) head/converters/bsdconv/pkg-descr (props changed) head/converters/btoa/pkg-descr (props changed) head/converters/cl-babel-clisp/pkg-descr (props changed) head/converters/cl-babel-sbcl/pkg-descr (props changed) head/converters/cl-babel/pkg-descr (props changed) head/converters/cmios9/pkg-descr (props changed) head/converters/cocot/pkg-descr (props changed) head/converters/convmv/pkg-descr (props changed) head/converters/dosunix/pkg-descr (props changed) head/converters/drg2sbg/pkg-descr (props changed) head/converters/dumpasn1/pkg-descr (props changed) head/converters/enca/pkg-descr (props changed) head/converters/fconv/pkg-descr (props changed) head/converters/fix-mime-charset/pkg-descr (props changed) head/converters/fondu/pkg-descr (props changed) head/converters/fribidi/pkg-descr (props changed) head/converters/gbase/pkg-descr (props changed) head/converters/gbsdconv/pkg-descr (props changed) head/converters/hs-aeson/pkg-descr (props changed) head/converters/hs-dataenc/pkg-descr (props changed) head/converters/hs-json/pkg-descr (props changed) head/converters/htx/pkg-descr (props changed) head/converters/i18ntools/pkg-descr (props changed) head/converters/ical2html/pkg-descr (props changed) head/converters/iconv-extra/pkg-descr (props changed) head/converters/iconv-rfc1345/pkg-descr (props changed) head/converters/iconv/pkg-descr (props changed) head/converters/igbinary/pkg-descr (props changed) head/converters/ish/pkg-descr (props changed) head/converters/konwert/pkg-descr (props changed) head/converters/libb64/pkg-descr (props changed) head/converters/libutf-8/pkg-descr (props changed) head/converters/lua-iconv/pkg-descr (props changed) head/converters/mimelib/pkg-descr (props changed) head/converters/mmencode/pkg-descr (props changed) head/converters/mpack/pkg-descr (props changed) head/converters/mule-ucs/pkg-descr (props changed) head/converters/nomyso/pkg-descr (props changed) head/converters/o3read/pkg-descr (props changed) head/converters/osm2mp/pkg-descr (props changed) head/converters/osm2pgsql/pkg-descr (props changed) head/converters/p5-Boulder/pkg-descr (props changed) head/converters/p5-Convert-ASCII-Armour/pkg-descr (props changed) head/converters/p5-Convert-ASN1/pkg-descr (props changed) head/converters/p5-Convert-BER/pkg-descr (props changed) head/converters/p5-Convert-Bencode/pkg-descr (props changed) head/converters/p5-Convert-Binary-C/pkg-descr (props changed) head/converters/p5-Convert-Morse/pkg-descr (props changed) head/converters/p5-Convert-NLS_DATE_FORMAT/pkg-descr (props changed) head/converters/p5-Convert-PEM/pkg-descr (props changed) head/converters/p5-Convert-Recode/pkg-descr (props changed) head/converters/p5-Convert-TNEF/pkg-descr (props changed) head/converters/p5-Convert-UU/pkg-descr (props changed) head/converters/p5-Convert-UUlib/pkg-descr (props changed) head/converters/p5-Cstools/pkg-descr (props changed) head/converters/p5-Data-AMF/pkg-descr (props changed) head/converters/p5-Encode-Detect-CJK/pkg-descr (props changed) head/converters/p5-Encode-DoubleEncodedUTF8/pkg-descr (props changed) head/converters/p5-Encode-IMAPUTF7/pkg-descr (props changed) head/converters/p5-Encode-JIS2K/pkg-descr (props changed) head/converters/p5-Encode-Locale/pkg-descr (props changed) head/converters/p5-Encode-Punycode/pkg-descr (props changed) head/converters/p5-Encode-compat/pkg-descr (props changed) head/converters/p5-Encode/pkg-descr (props changed) head/converters/p5-Encoding-FixLatin/pkg-descr (props changed) head/converters/p5-Format-Human-Bytes/pkg-descr (props changed) head/converters/p5-JSON-Any/pkg-descr (props changed) head/converters/p5-JSON-DWIW/pkg-descr (props changed) head/converters/p5-JSON-PP/pkg-descr (props changed) head/converters/p5-JSON-XS-VersionOneAndTwo/pkg-descr (props changed) head/converters/p5-JSON-XS/pkg-descr (props changed) head/converters/p5-JSON/pkg-descr (props changed) head/converters/p5-JSON1/pkg-descr (props changed) head/converters/p5-MIME-Base32/pkg-descr (props changed) head/converters/p5-MIME-Base64-URLSafe/pkg-descr (props changed) head/converters/p5-MIME-Base64/pkg-descr (props changed) head/converters/p5-Net-IDN-Nameprep/pkg-descr (props changed) head/converters/p5-Number-Nary/pkg-descr (props changed) head/converters/p5-Number-RecordLocator/pkg-descr (props changed) head/converters/p5-PerlIO-via-Unidecode/pkg-descr (props changed) head/converters/p5-Sereal-Decoder/pkg-descr (props changed) head/converters/p5-Sereal-Encoder/pkg-descr (props changed) head/converters/p5-Sereal/pkg-descr (props changed) head/converters/p5-Storable-AMF/pkg-descr (props changed) head/converters/p5-String-Multibyte/pkg-descr (props changed) head/converters/p5-String-SetUTF8/pkg-descr (props changed) head/converters/p5-Text-Bidi/pkg-descr (props changed) head/converters/p5-Text-Iconv/pkg-descr (props changed) head/converters/p5-Text-Unidecode/pkg-descr (props changed) head/converters/p5-URI-UTF8-Punycode/pkg-descr (props changed) head/converters/p5-Unicode-IMAPUtf7/pkg-descr (props changed) head/converters/p5-Unicode-Map/pkg-descr (props changed) head/converters/p5-Unicode-Map8/pkg-descr (props changed) head/converters/p5-Unicode-MapUTF8/pkg-descr (props changed) head/converters/p5-Unicode-RecursiveDowngrade/pkg-descr (props changed) head/converters/p5-Unicode-String/pkg-descr (props changed) head/converters/p5-Unicode-Stringprep/pkg-descr (props changed) head/converters/p5-Unicode-UTF8simple/pkg-descr (props changed) head/converters/p5-WAP-wbxml/pkg-descr (props changed) head/converters/p5-XML-WBXML/pkg-descr (props changed) head/converters/p5-bsdconv/pkg-descr (props changed) head/converters/p5-plutil/pkg-descr (props changed) head/converters/pdf2djvu/pkg-descr (props changed) head/converters/pear-Services_JSON/pkg-descr (props changed) head/converters/pecl-fribidi/pkg-descr (props changed) head/converters/php5-bsdconv/pkg-descr (props changed) head/converters/psiconv/pkg-descr (props changed) head/converters/py-bsdconv/pkg-descr (props changed) head/converters/py-iconv/pkg-descr (props changed) head/converters/py-pisa/pkg-descr (props changed) head/converters/rcctools/pkg-descr (props changed) head/converters/recode/pkg-descr (props changed) head/converters/rubygem-bsdconv/pkg-descr (props changed) head/converters/shftool/pkg-descr (props changed) head/converters/showkey/pkg-descr (props changed) head/converters/ta2as/pkg-descr (props changed) head/converters/trans/pkg-descr (props changed) head/converters/tuc/pkg-descr (props changed) head/converters/unix2dos/pkg-descr (props changed) head/converters/uudeview/pkg-descr (props changed) head/converters/uudx/pkg-descr (props changed) head/converters/uulib/pkg-descr (props changed) head/converters/vda2fbd/pkg-descr (props changed) head/converters/wkhtmltopdf/pkg-descr (props changed) head/converters/xdeview/pkg-descr (props changed) head/converters/ytnef/pkg-descr (props changed) head/databases/R-cran-DBI/pkg-descr (props changed) head/databases/R-cran-RMySQL/pkg-descr (props changed) head/databases/WWWdb/pkg-descr (props changed) head/databases/adminer/pkg-descr (props changed) head/databases/adodb/pkg-descr (props changed) head/databases/adodb5/pkg-descr (props changed) head/databases/akonadi/pkg-descr (props changed) head/databases/animenfo-client-gtk/pkg-descr (props changed) head/databases/animenfo-client/pkg-descr (props changed) head/databases/aolserver-nsmysql/pkg-descr (props changed) head/databases/aolserver-nspostgres/pkg-descr (props changed) head/databases/autobackupmysql/pkg-descr (props changed) head/databases/bbdb/pkg-descr (props changed) head/databases/beansdb/pkg-descr (props changed) head/databases/buzhug/pkg-descr (props changed) head/databases/c3p0/pkg-descr (props changed) head/databases/cdb/pkg-descr (props changed) head/databases/cego/pkg-descr (props changed) head/databases/couchdb/pkg-descr (props changed) head/databases/credis/pkg-descr (props changed) head/databases/cyrus-imspd/pkg-descr (props changed) head/databases/dalmp/pkg-descr (props changed) head/databases/datamodeler/pkg-descr (props changed) head/databases/db/pkg-descr (props changed) head/databases/db4/pkg-descr (props changed) head/databases/db41/pkg-descr (props changed) head/databases/db42/pkg-descr (props changed) head/databases/db43/pkg-descr (props changed) head/databases/db44/pkg-descr (props changed) head/databases/db46/pkg-descr (props changed) head/databases/db47/pkg-descr (props changed) head/databases/db48/pkg-descr (props changed) head/databases/db4o-mono/pkg-descr (props changed) head/databases/db5/pkg-descr (props changed) head/databases/dbXML/pkg-descr (props changed) head/databases/dbconnect/pkg-descr (props changed) head/databases/dbf/pkg-descr (props changed) head/databases/dbf2mysql/pkg-descr (props changed) head/databases/dbh/pkg-descr (props changed) head/databases/dbow/pkg-descr (props changed) head/databases/dbtool/pkg-descr (props changed) head/databases/dbview/pkg-descr (props changed) head/databases/emma/pkg-descr (props changed) head/databases/epgsql/pkg-descr (props changed) head/databases/erlang-mysql/pkg-descr (props changed) head/databases/evolution-data-server/pkg-descr (props changed) head/databases/exist/pkg-descr (props changed) head/databases/fastdb/pkg-descr (props changed) head/databases/firebird20-server/pkg-descr (props changed) head/databases/firebird21-server/pkg-descr (props changed) head/databases/firebird25-server/pkg-descr (props changed) head/databases/flamerobin/pkg-descr (props changed) head/databases/flare/pkg-descr (props changed) head/databases/fortytwo-bdb/pkg-descr (props changed) head/databases/freetds-devel/pkg-descr (props changed) head/databases/freetds/pkg-descr (props changed) head/databases/frontbase-jdbc/pkg-descr (props changed) head/databases/frontbase/pkg-descr (props changed) head/databases/gadfly/pkg-descr (props changed) head/databases/gdbm/pkg-descr (props changed) head/databases/geoserver-mysql-plugin/pkg-descr (props changed) head/databases/gigabase/pkg-descr (props changed) head/databases/glom/pkg-descr (props changed) head/databases/gnats4/pkg-descr (props changed) head/databases/gnatsweb4/pkg-descr (props changed) head/databases/godis/pkg-descr (props changed) head/databases/gosqlite3/pkg-descr (props changed) head/databases/gqlplus/pkg-descr (props changed) head/databases/grass/pkg-descr (props changed) head/databases/gtksql/pkg-descr (props changed) head/databases/hamsterdb/pkg-descr (props changed) head/databases/hashtypes/pkg-descr (props changed) head/databases/hiredis/pkg-descr (props changed) head/databases/hk_classes/pkg-descr (props changed) head/databases/hs-mysql/pkg-descr (props changed) head/databases/hs-persistent-sqlite/pkg-descr (props changed) head/databases/hs-persistent-template/pkg-descr (props changed) head/databases/hs-persistent/pkg-descr (props changed) head/databases/hsqldb/pkg-descr (props changed) head/databases/innotop/pkg-descr (props changed) head/databases/ip4r/pkg-descr (props changed) head/databases/ipa_sdb/pkg-descr (props changed) head/databases/iplike/pkg-descr (props changed) head/databases/isql-viewer/pkg-descr (props changed) head/databases/jakarta-commons-dbutils/pkg-descr (props changed) head/databases/jasperreports/pkg-descr (props changed) head/databases/jasperserver/pkg-descr (props changed) head/databases/java-mybatis/pkg-descr (props changed) head/databases/jdb/pkg-descr (props changed) head/databases/jdbc-oracle10g/pkg-descr (props changed) head/databases/jdbc-oracle11g/pkg-descr (props changed) head/databases/jdbc-oracle8i/pkg-descr (props changed) head/databases/jdbc-oracle9i/pkg-descr (props changed) head/databases/jdbm2/pkg-descr (props changed) head/databases/jrobin/pkg-descr (props changed) head/databases/jrrd/pkg-descr (props changed) head/databases/kbibtex/pkg-descr (props changed) head/databases/kinterbasdb/pkg-descr (props changed) head/databases/kumofs/pkg-descr (props changed) head/databases/kyototycoon/pkg-descr (props changed) head/databases/ldb/pkg-descr (props changed) head/databases/libdbi-drivers/pkg-descr (props changed) head/databases/libdbi/pkg-descr (props changed) head/databases/libdrizzle/pkg-descr (props changed) head/databases/libgda2-reference/pkg-descr (props changed) head/databases/libgda2/pkg-descr (props changed) head/databases/libgda3-reference/pkg-descr (props changed) head/databases/libgda3/pkg-descr (props changed) head/databases/libgda4-reference/pkg-descr (props changed) head/databases/libgda4/pkg-descr (props changed) head/databases/libgda5/pkg-descr (props changed) head/databases/libgdamm/pkg-descr (props changed) head/databases/libgnomedb-reference/pkg-descr (props changed) head/databases/libgnomedb/pkg-descr (props changed) head/databases/libhsclient/pkg-descr (props changed) head/databases/libiodbc/pkg-descr (props changed) head/databases/libmemcache/pkg-descr (props changed) head/databases/libmemcached/pkg-descr (props changed) head/databases/libmongo-client/pkg-descr (props changed) head/databases/libodbc++/pkg-descr (props changed) head/databases/libpbl/pkg-descr (props changed) head/databases/libsdb/pkg-descr (props changed) head/databases/libzdb/pkg-descr (props changed) head/databases/linux-oracle-instantclient-basic/pkg-descr (props changed) head/databases/linux-oracle-instantclient-sdk/pkg-descr (props changed) head/databases/linux-oracle-instantclient-sqlplus/pkg-descr (props changed) head/databases/liquibase/pkg-descr (props changed) head/databases/lmdb/pkg-descr (props changed) head/databases/lsdb/pkg-descr (props changed) head/databases/luasql-mysql/pkg-descr (props changed) head/databases/ludia/pkg-descr (props changed) head/databases/mantis/pkg-descr (props changed) head/databases/mariadb-server/pkg-descr (props changed) head/databases/mdbtools/pkg-descr (props changed) head/databases/mdcached/pkg-descr (props changed) head/databases/memcached/pkg-descr (props changed) head/databases/memcachedb/pkg-descr (props changed) head/databases/memcacheq/pkg-descr (props changed) head/databases/mergeant/pkg-descr (props changed) head/databases/metakit/pkg-descr (props changed) head/databases/mongodb/pkg-descr (props changed) head/databases/mrtg-mysql-load/pkg-descr (props changed) head/databases/msql/pkg-descr (props changed) head/databases/msql3/pkg-descr (props changed) head/databases/mtop/pkg-descr (props changed) head/databases/my2cego/pkg-descr (props changed) head/databases/mydbf2mysql/pkg-descr (props changed) head/databases/mydumper/pkg-descr (props changed) head/databases/mysac/pkg-descr (props changed) head/databases/mysql++1/pkg-descr (props changed) head/databases/mysql++3/pkg-descr (props changed) head/databases/mysql-connector-java/pkg-descr (props changed) head/databases/mysql-connector-odbc/pkg-descr (props changed) head/databases/mysql-proxy/pkg-descr (props changed) head/databases/mysql-q4m/pkg-descr (props changed) head/databases/mysql-udf-preg/pkg-descr (props changed) head/databases/mysql-udf-sys/pkg-descr (props changed) head/databases/mysql-udf/pkg-descr (props changed) head/databases/mysql-workbench51/pkg-descr (props changed) head/databases/mysql-xql/pkg-descr (props changed) head/databases/mysql2odbc/pkg-descr (props changed) head/databases/mysql2pgsql/pkg-descr (props changed) head/databases/mysql51-server/pkg-descr (props changed) head/databases/mysql55-server/pkg-descr (props changed) head/databases/mysql56-server/pkg-descr (props changed) head/databases/mysqlard/pkg-descr (props changed) head/databases/mysqlbackup/pkg-descr (props changed) head/databases/mysqlcppapi/pkg-descr (props changed) head/databases/mysqldumper/pkg-descr (props changed) head/databases/mysqlidxchk/pkg-descr (props changed) head/databases/mysqlreport/pkg-descr (props changed) head/databases/mysqlsla/pkg-descr (props changed) head/databases/mysqlsniffer/pkg-descr (props changed) head/databases/mysqltcl/pkg-descr (props changed) head/databases/mytop/pkg-descr (props changed) head/databases/mywwwatcher/pkg-descr (props changed) head/databases/namazu2/pkg-descr (props changed) head/databases/ocaml-mysql/pkg-descr (props changed) head/databases/ocaml-pgocaml/pkg-descr (props changed) head/databases/ocaml-sqlite3/pkg-descr (props changed) head/databases/openbase-jdbc/pkg-descr (props changed) head/databases/opendbx/pkg-descr (props changed) head/databases/oracle7-client/pkg-descr (props changed) head/databases/oracle8-client/pkg-descr (props changed) head/databases/oracle_odbc_driver/pkg-descr (props changed) head/databases/p5-Amazon-SimpleDB/pkg-descr (props changed) head/databases/p5-Amon2-DBI/pkg-descr (props changed) head/databases/p5-AnyEvent-BDB/pkg-descr (props changed) head/databases/p5-AnyEvent-CouchDB/pkg-descr (props changed) head/databases/p5-AnyEvent-DBD-Pg/pkg-descr (props changed) head/databases/p5-AnyEvent-Memcached/pkg-descr (props changed) head/databases/p5-AnyEvent-Redis/pkg-descr (props changed) head/databases/p5-AsciiDB-TagFile/pkg-descr (props changed) head/databases/p5-BDB/pkg-descr (props changed) head/databases/p5-BSON/pkg-descr (props changed) head/databases/p5-BerkeleyDB/pkg-descr (props changed) head/databases/p5-Bucardo/pkg-descr (props changed) head/databases/p5-CDB_File-Generator/pkg-descr (props changed) head/databases/p5-CDB_File/pkg-descr (props changed) head/databases/p5-Cache-BDB/pkg-descr (props changed) head/databases/p5-Cache-Memcached-Fast/pkg-descr (props changed) head/databases/p5-Cache-Memcached-Managed/pkg-descr (props changed) head/databases/p5-Cache-Memcached-XS/pkg-descr (props changed) head/databases/p5-Cache-Memcached-libmemcached/pkg-descr (props changed) head/databases/p5-Cache-Memcached/pkg-descr (props changed) head/databases/p5-Class-DBI-AbstractSearch/pkg-descr (props changed) head/databases/p5-Class-DBI-AsForm/pkg-descr (props changed) head/databases/p5-Class-DBI-AutoLoader/pkg-descr (props changed) head/databases/p5-Class-DBI-BaseDSN/pkg-descr (props changed) head/databases/p5-Class-DBI-DATA-Schema/pkg-descr (props changed) head/databases/p5-Class-DBI-DDL/pkg-descr (props changed) head/databases/p5-Class-DBI-FromCGI/pkg-descr (props changed) head/databases/p5-Class-DBI-LazyInflate/pkg-descr (props changed) head/databases/p5-Class-DBI-Lite/pkg-descr (props changed) head/databases/p5-Class-DBI-Loader-Relationship/pkg-descr (props changed) head/databases/p5-Class-DBI-Oracle/pkg-descr (props changed) head/databases/p5-Class-DBI-Pager/pkg-descr (props changed) head/databases/p5-Class-DBI-Pg/pkg-descr (props changed) head/databases/p5-Class-DBI-Plugin-AbstractCount/pkg-descr (props changed) head/databases/p5-Class-DBI-Plugin-DeepAbstractSearch/pkg-descr (props changed) head/databases/p5-Class-DBI-Plugin-Iterator/pkg-descr (props changed) head/databases/p5-Class-DBI-Plugin-Pager/pkg-descr (props changed) head/databases/p5-Class-DBI-Plugin-RetrieveAll/pkg-descr (props changed) head/databases/p5-Class-DBI-Plugin-Senna/pkg-descr (props changed) head/databases/p5-Class-DBI-Plugin-Type/pkg-descr (props changed) head/databases/p5-Class-DBI-Plugin/pkg-descr (props changed) head/databases/p5-Class-DBI-Replication/pkg-descr (props changed) head/databases/p5-Class-DBI-SAK/pkg-descr (props changed) head/databases/p5-Class-DBI-SQLite/pkg-descr (props changed) head/databases/p5-Class-DBI-Sweet/pkg-descr (props changed) head/databases/p5-Class-DBI-ToSax/pkg-descr (props changed) head/databases/p5-Class-DBI-Untaint/pkg-descr (props changed) head/databases/p5-Class-DBI-mysql/pkg-descr (props changed) head/databases/p5-Class-DBI/pkg-descr (props changed) head/databases/p5-CouchDB-View/pkg-descr (props changed) head/databases/p5-DBD-AnyData/pkg-descr (props changed) head/databases/p5-DBD-CSV/pkg-descr (props changed) head/databases/p5-DBD-Excel/pkg-descr (props changed) head/databases/p5-DBD-FrontBase/pkg-descr (props changed) head/databases/p5-DBD-Google/pkg-descr (props changed) head/databases/p5-DBD-LDAP/pkg-descr (props changed) head/databases/p5-DBD-Mock/pkg-descr (props changed) head/databases/p5-DBD-Multi/pkg-descr (props changed) head/databases/p5-DBD-ODBC/pkg-descr (props changed) head/databases/p5-DBD-Oracle/pkg-descr (props changed) head/databases/p5-DBD-Pg/pkg-descr (props changed) head/databases/p5-DBD-PgLite/pkg-descr (props changed) head/databases/p5-DBD-PgPP/pkg-descr (props changed) head/databases/p5-DBD-SQLite/pkg-descr (props changed) head/databases/p5-DBD-SQLite2/pkg-descr (props changed) head/databases/p5-DBD-XBase/pkg-descr (props changed) head/databases/p5-DBD-cego/pkg-descr (props changed) head/databases/p5-DBD-mysql/pkg-descr (props changed) head/databases/p5-DBI-Shell/pkg-descr (props changed) head/databases/p5-DBI/pkg-descr (props changed) head/databases/p5-DBICx-Deploy/pkg-descr (props changed) head/databases/p5-DBICx-MapMaker/pkg-descr (props changed) head/databases/p5-DBICx-TestDatabase/pkg-descr (props changed) head/databases/p5-DBIWrapper/pkg-descr (props changed) head/databases/p5-DBIx-Abstract/pkg-descr (props changed) head/databases/p5-DBIx-AnyDBD/pkg-descr (props changed) head/databases/p5-DBIx-Browse/pkg-descr (props changed) head/databases/p5-DBIx-Class-AsFdat/pkg-descr (props changed) head/databases/p5-DBIx-Class-Candy/pkg-descr (props changed) head/databases/p5-DBIx-Class-Cursor-Cached/pkg-descr (props changed) head/databases/p5-DBIx-Class-CustomPrefetch/pkg-descr (props changed) head/databases/p5-DBIx-Class-DateTime-Epoch/pkg-descr (props changed) head/databases/p5-DBIx-Class-DeploymentHandler/pkg-descr (props changed) head/databases/p5-DBIx-Class-DigestColumns/pkg-descr (props changed) head/databases/p5-DBIx-Class-DynamicDefault/pkg-descr (props changed) head/databases/p5-DBIx-Class-DynamicSubclass/pkg-descr (props changed) head/databases/p5-DBIx-Class-EncodeColumns/pkg-descr (props changed) head/databases/p5-DBIx-Class-EncodedColumn/pkg-descr (props changed) head/databases/p5-DBIx-Class-Fixtures/pkg-descr (props changed) head/databases/p5-DBIx-Class-FrozenColumns/pkg-descr (props changed) head/databases/p5-DBIx-Class-InflateColumn-Authen-Passphrase/pkg-descr (props changed) head/databases/p5-DBIx-Class-InflateColumn-FS/pkg-descr (props changed) head/databases/p5-DBIx-Class-InflateColumn-IP/pkg-descr (props changed) head/databases/p5-DBIx-Class-IntrospectableM2M/pkg-descr (props changed) head/databases/p5-DBIx-Class-Loader/pkg-descr (props changed) head/databases/p5-DBIx-Class-Migration/pkg-descr (props changed) head/databases/p5-DBIx-Class-QueryProfiler/pkg-descr (props changed) head/databases/p5-DBIx-Class-ResultSet-HashRef/pkg-descr (props changed) head/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/pkg-descr (props changed) head/databases/p5-DBIx-Class-Schema-Loader/pkg-descr (props changed) head/databases/p5-DBIx-Class-TimeStamp/pkg-descr (props changed) head/databases/p5-DBIx-Class-Tree-NestedSet/pkg-descr (props changed) head/databases/p5-DBIx-Class-Tree/pkg-descr (props changed) head/databases/p5-DBIx-Class-UUIDColumns/pkg-descr (props changed) head/databases/p5-DBIx-Class-VirtualColumns/pkg-descr (props changed) head/databases/p5-DBIx-Class-WebForm/pkg-descr (props changed) head/databases/p5-DBIx-Class/pkg-descr (props changed) head/databases/p5-DBIx-Connector/pkg-descr (props changed) head/databases/p5-DBIx-ContextualFetch/pkg-descr (props changed) head/databases/p5-DBIx-Custom/pkg-descr (props changed) head/databases/p5-DBIx-DBHResolver/pkg-descr (props changed) head/databases/p5-DBIx-DBSchema/pkg-descr (props changed) head/databases/p5-DBIx-DataSource/pkg-descr (props changed) head/databases/p5-DBIx-Ease/pkg-descr (props changed) head/databases/p5-DBIx-HA/pkg-descr (props changed) head/databases/p5-DBIx-Inspector/pkg-descr (props changed) head/databases/p5-DBIx-Log4perl/pkg-descr (props changed) head/databases/p5-DBIx-MySQLSequence/pkg-descr (props changed) head/databases/p5-DBIx-NoSQL/pkg-descr (props changed) head/databases/p5-DBIx-Password/pkg-descr (props changed) head/databases/p5-DBIx-Perlish/pkg-descr (props changed) head/databases/p5-DBIx-QueryLog/pkg-descr (props changed) head/databases/p5-DBIx-Recordset/pkg-descr (props changed) head/databases/p5-DBIx-RetryOverDisconnects/pkg-descr (props changed) head/databases/p5-DBIx-SQLEngine/pkg-descr (props changed) head/databases/p5-DBIx-SQLite-Simple/pkg-descr (props changed) head/databases/p5-DBIx-Safe/pkg-descr (props changed) head/databases/p5-DBIx-SearchBuilder/pkg-descr (props changed) head/databases/p5-DBIx-Sequence/pkg-descr (props changed) head/databases/p5-DBIx-Simple/pkg-descr (props changed) head/databases/p5-DBIx-Skinny-InflateColumn-DateTime/pkg-descr (props changed) head/databases/p5-DBIx-Skinny-Mixin-DBHResolver/pkg-descr (props changed) head/databases/p5-DBIx-Skinny-Pager/pkg-descr (props changed) head/databases/p5-DBIx-Skinny-Schema-Loader/pkg-descr (props changed) head/databases/p5-DBIx-Skinny/pkg-descr (props changed) head/databases/p5-DBIx-Sunny/pkg-descr (props changed) head/databases/p5-DBIx-TableHash/pkg-descr (props changed) head/databases/p5-DBIx-TransactionManager/pkg-descr (props changed) head/databases/p5-DBIx-Tree/pkg-descr (props changed) head/databases/p5-DBIx-VersionedDDL/pkg-descr (props changed) head/databases/p5-DBIx-Wrapper/pkg-descr (props changed) head/databases/p5-DBIx-XHTML_Table/pkg-descr (props changed) head/databases/p5-DBIx-XML_RDB/pkg-descr (props changed) head/databases/p5-DBM-Deep/pkg-descr (props changed) head/databases/p5-DMOZ-ParseRDF/pkg-descr (props changed) head/databases/p5-Dancer-Plugin-DBIC/pkg-descr (props changed) head/databases/p5-Dancer-Plugin-Database/pkg-descr (props changed) head/databases/p5-Dancer-Plugin-Redis/pkg-descr (props changed) head/databases/p5-Dancer-Session-Memcached/pkg-descr (props changed) head/databases/p5-Data-Page/pkg-descr (props changed) head/databases/p5-Data-Pageset/pkg-descr (props changed) head/databases/p5-Exception-Class-DBI/pkg-descr (props changed) head/databases/p5-GDBM/pkg-descr (props changed) head/databases/p5-GraphViz-DBI/pkg-descr (props changed) head/databases/p5-HTML-FormHandler-Model-DBIC/pkg-descr (props changed) head/databases/p5-Ima-DBI-Contextual/pkg-descr (props changed) head/databases/p5-Ima-DBI/pkg-descr (props changed) head/databases/p5-Iterator-DBI/pkg-descr (props changed) head/databases/p5-Jifty-DBI/pkg-descr (props changed) head/databases/p5-KyotoCabinet/pkg-descr (props changed) head/databases/p5-MLDBM-Sync/pkg-descr (props changed) head/databases/p5-MLDBM/pkg-descr (props changed) head/databases/p5-Memcached-libmemcached/pkg-descr (props changed) head/databases/p5-Metadata/pkg-descr (props changed) head/databases/p5-MongoDB/pkg-descr (props changed) head/databases/p5-MySQL-Diff/pkg-descr (props changed) head/databases/p5-ORLite-Migrate/pkg-descr (props changed) head/databases/p5-ORLite/pkg-descr (props changed) head/databases/p5-Oryx/pkg-descr (props changed) head/databases/p5-POE-Component-DBIAgent/pkg-descr (props changed) head/databases/p5-POE-Component-EasyDBI/pkg-descr (props changed) head/databases/p5-POE-Component-LaDBI/pkg-descr (props changed) head/databases/p5-POE-Component-RRDTool/pkg-descr (props changed) head/databases/p5-Pg/pkg-descr (props changed) head/databases/p5-RRD-Simple/pkg-descr (props changed) head/databases/p5-Redis-hiredis/pkg-descr (props changed) head/databases/p5-Redis/pkg-descr (props changed) head/databases/p5-Relations-Query/pkg-descr (props changed) head/databases/p5-Relations/pkg-descr (props changed) head/databases/p5-ResourcePool-Resource-DBI/pkg-descr (props changed) head/databases/p5-Rose-DB/pkg-descr (props changed) head/databases/p5-Rose-DBx-Object-MoreHelpers/pkg-descr (props changed) head/databases/p5-Rose-DBx-Object-Renderer/pkg-descr (props changed) head/databases/p5-SQL-Abstract-Limit/pkg-descr (props changed) head/databases/p5-SQL-Abstract-Plugin-InsertMulti/pkg-descr (props changed) head/databases/p5-SQL-Abstract/pkg-descr (props changed) head/databases/p5-SQL-Interp/pkg-descr (props changed) head/databases/p5-SQL-Maker/pkg-descr (props changed) head/databases/p5-SQL-ReservedWords/pkg-descr (props changed) head/databases/p5-SQL-Statement/pkg-descr (props changed) head/databases/p5-SQL-Translator/pkg-descr (props changed) head/databases/p5-Search-Namazu/pkg-descr (props changed) head/databases/p5-Search-Xapian10/pkg-descr (props changed) head/databases/p5-T2/pkg-descr (props changed) head/databases/p5-Template-DBI/pkg-descr (props changed) head/databases/p5-Teng/pkg-descr (props changed) head/databases/p5-Test-Cukes/pkg-descr (props changed) head/databases/p5-Test-Database/pkg-descr (props changed) head/databases/p5-Test-DatabaseRow/pkg-descr (props changed) head/databases/p5-Test-Fixture-DBI/pkg-descr (props changed) head/databases/p5-Test-mysqld/pkg-descr (props changed) head/databases/p5-Test-postgresql/pkg-descr (props changed) head/databases/p5-Text-Query-SQL/pkg-descr (props changed) head/databases/p5-Text-xSV/pkg-descr (props changed) head/databases/p5-Tie-LevelDB/pkg-descr (props changed) head/databases/p5-Time-Piece-MySQL/pkg-descr (props changed) head/databases/p5-TokyoCabinet/pkg-descr (props changed) head/databases/p5-hp200lx-db/pkg-descr (props changed) head/databases/p5-mysql-genocide/pkg-descr (props changed) head/databases/p5-qdbm/pkg-descr (props changed) head/databases/p5-tokyotyrant/pkg-descr (props changed) head/databases/pear-DB/pkg-descr (props changed) head/databases/pear-DBA/pkg-descr (props changed) head/databases/pear-DBA_Relational/pkg-descr (props changed) head/databases/pear-DB_DataObject/pkg-descr (props changed) head/databases/pear-DB_DataObject_FormBuilder/pkg-descr (props changed) head/databases/pear-DB_Pager/pkg-descr (props changed) head/databases/pear-DB_QueryTool/pkg-descr (props changed) head/databases/pear-DB_Sqlite_Tools/pkg-descr (props changed) head/databases/pear-DB_Table/pkg-descr (props changed) head/databases/pear-DB_ldap/pkg-descr (props changed) head/databases/pear-DB_ldap2/pkg-descr (props changed) head/databases/pear-Doctrine12/pkg-descr (props changed) head/databases/pear-DoctrineCommon/pkg-descr (props changed) head/databases/pear-DoctrineDBAL/pkg-descr (props changed) head/databases/pear-DoctrineORM/pkg-descr (props changed) head/databases/pear-Horde_Db/pkg-descr (props changed) head/databases/pear-Horde_HashTable/pkg-descr (props changed) head/databases/pear-Horde_Imsp/pkg-descr (props changed) head/databases/pear-Horde_Memcache/pkg-descr (props changed) head/databases/pear-Horde_Mongo/pkg-descr (props changed) head/databases/pear-MDB/pkg-descr (props changed) head/databases/pear-MDB2/pkg-descr (props changed) head/databases/pear-MDB2_Driver_mysql/pkg-descr (props changed) head/databases/pear-MDB2_Driver_mysqli/pkg-descr (props changed) head/databases/pear-MDB2_Driver_pgsql/pkg-descr (props changed) head/databases/pear-MDB2_Driver_sqlite/pkg-descr (props changed) head/databases/pear-MDB2_Schema/pkg-descr (props changed) head/databases/pear-MDB_QueryTool/pkg-descr (props changed) head/databases/pear-Structures_DataGrid_DataSource_Array/pkg-descr (props changed) head/databases/pear-Structures_DataGrid_DataSource_CSV/pkg-descr (props changed) head/databases/pear-Structures_DataGrid_DataSource_DB/pkg-descr (props changed) head/databases/pear-Structures_DataGrid_DataSource_DBQuery/pkg-descr (props changed) head/databases/pear-Structures_DataGrid_DataSource_DBTable/pkg-descr (props changed) head/databases/pear-Structures_DataGrid_DataSource_DataObject/pkg-descr (props changed) head/databases/pear-Structures_DataGrid_DataSource_MDB2/pkg-descr (props changed) head/databases/pear-Structures_DataGrid_DataSource_PDO/pkg-descr (props changed) head/databases/pear-XML_Query2XML/pkg-descr (props changed) head/databases/pecl-chdb/pkg-descr (props changed) head/databases/pecl-dbase/pkg-descr (props changed) head/databases/pecl-drizzle/pkg-descr (props changed) head/databases/pecl-handlersocket/pkg-descr (props changed) head/databases/pecl-mdbtools/pkg-descr (props changed) head/databases/pecl-memcached/pkg-descr (props changed) head/databases/pecl-mongo/pkg-descr (props changed) head/databases/pecl-mysqlnd_ms/pkg-descr (props changed) head/databases/pecl-mysqlnd_qc/pkg-descr (props changed) head/databases/pecl-pdo_user/pkg-descr (props changed) head/databases/pecl-tokyo_tyrant/pkg-descr (props changed) head/databases/percona56-server/pkg-descr (props changed) head/databases/pg_filedump/pkg-descr (props changed) head/databases/pg_reorg/pkg-descr (props changed) head/databases/pg_rman/pkg-descr (props changed) head/databases/pg_statsinfo/pkg-descr (props changed) head/databases/pgaccess/pkg-descr (props changed) head/databases/pgadmin3/pkg-descr (props changed) head/databases/pgagent/pkg-descr (props changed) head/databases/pgbouncer/pkg-descr (props changed) head/databases/pgdbf/pkg-descr (props changed) head/databases/pgfouine/pkg-descr (props changed) head/databases/pglesslog/pkg-descr (props changed) head/databases/pgloader/pkg-descr (props changed) head/databases/pgpool-II-22/pkg-descr (props changed) head/databases/pgpool-II-23/pkg-descr (props changed) head/databases/pgpool-II-30/pkg-descr (props changed) head/databases/pgpool-II/pkg-descr (props changed) head/databases/pgpool/pkg-descr (props changed) head/databases/pgpoolAdmin/pkg-descr (props changed) head/databases/pgtcl/pkg-descr (props changed) head/databases/pgtop/pkg-descr (props changed) head/databases/pgtune/pkg-descr (props changed) head/databases/pgworksheet/pkg-descr (props changed) head/databases/php-adodb-ext/pkg-descr (props changed) head/databases/php-mdcached/pkg-descr (props changed) head/databases/php5-creole/pkg-descr (props changed) head/databases/php5-propel/pkg-descr (props changed) head/databases/php5-redis/pkg-descr (props changed) head/databases/php53-redis/pkg-descr (props changed) head/databases/phpminiadmin/pkg-descr (props changed) head/databases/phppgadmin/pkg-descr (props changed) head/databases/postgis-jdbc/pkg-descr (props changed) head/databases/postgresql-jdbc/pkg-descr (props changed) head/databases/postgresql-libpgeasy/pkg-descr (props changed) head/databases/postgresql-libpqxx/pkg-descr (props changed) head/databases/postgresql-libpqxx3/pkg-descr (props changed) head/databases/postgresql-odbc/pkg-descr (props changed) head/databases/postgresql-pllua/pkg-descr (props changed) head/databases/postgresql-plproxy/pkg-descr (props changed) head/databases/postgresql-plruby/pkg-descr (props changed) head/databases/postgresql-plv8js/pkg-descr (props changed) head/databases/postgresql-relay/pkg-descr (props changed) head/databases/postgresql-repmgr/pkg-descr (props changed) head/databases/postgresql84-contrib/pkg-descr (props changed) head/databases/postgresql84-server/pkg-descr (props changed) head/databases/postgresql90-contrib/pkg-descr (props changed) head/databases/postgresql90-server/pkg-descr (props changed) head/databases/postgresql91-contrib/pkg-descr (props changed) head/databases/postgresql91-server/pkg-descr (props changed) head/databases/postgresql92-contrib/pkg-descr (props changed) head/databases/postgresql92-server/pkg-descr (props changed) head/databases/postgresql93-contrib/pkg-descr (props changed) head/databases/postgresql93-server/pkg-descr (props changed) head/databases/postgresql_autodoc/pkg-descr (props changed) head/databases/powerarchitect/pkg-descr (props changed) head/databases/proftpd-mod_sql_mysql/pkg-descr (props changed) head/databases/proftpd-mod_sql_odbc/pkg-descr (props changed) head/databases/proftpd-mod_sql_postgres/pkg-descr (props changed) head/databases/proftpd-mod_sql_sqlite/pkg-descr (props changed) head/databases/proftpd-mod_sql_tds/pkg-descr (props changed) head/databases/pure-sql3/pkg-descr (props changed) head/databases/puredb/pkg-descr (props changed) head/databases/pxlib/pkg-descr (props changed) head/databases/pxtools/pkg-descr (props changed) head/databases/py-Elixir/pkg-descr (props changed) head/databases/py-MySQLdb/pkg-descr (props changed) head/databases/py-alembic/pkg-descr (props changed) head/databases/py-apsw/pkg-descr (props changed) head/databases/py-bsddb/pkg-descr (props changed) head/databases/py-bsddb3/pkg-descr (props changed) head/databases/py-carbon/pkg-descr (props changed) head/databases/py-cdb/pkg-descr (props changed) head/databases/py-cmemcache/pkg-descr (props changed) head/databases/py-couchdb/pkg-descr (props changed) head/databases/py-cql/pkg-descr (props changed) head/databases/py-fdb/pkg-descr (props changed) head/databases/py-firebirdsql/pkg-descr (props changed) head/databases/py-forgetsql/pkg-descr (props changed) head/databases/py-gdbm/pkg-descr (props changed) head/databases/py-hiredis/pkg-descr (props changed) head/databases/py-htsql/pkg-descr (props changed) head/databases/py-kyotocabinet/pkg-descr (props changed) head/databases/py-leveldb/pkg-descr (props changed) head/databases/py-mssql/pkg-descr (props changed) head/databases/py-mysql2pgsql/pkg-descr (props changed) head/databases/py-odbc/pkg-descr (props changed) head/databases/py-oops/pkg-descr (props changed) head/databases/py-pg8000/pkg-descr (props changed) head/databases/py-pg_pqueue/pkg-descr (props changed) head/databases/py-pgxnclient/pkg-descr (props changed) head/databases/py-pickledb/pkg-descr (props changed) head/databases/py-postgresql/pkg-descr (props changed) head/databases/py-psycopg/pkg-descr (props changed) head/databases/py-psycopg2/pkg-descr (props changed) head/databases/py-pyPgSQL/pkg-descr (props changed) head/databases/py-pymysql/pkg-descr (props changed) head/databases/py-pytc/pkg-descr (props changed) head/databases/py-redis/pkg-descr (props changed) head/databases/py-riak/pkg-descr (props changed) head/databases/py-rrdtool_lgpl/pkg-descr (props changed) head/databases/py-simplecouchdb/pkg-descr (props changed) head/databases/py-south/pkg-descr (props changed) head/databases/py-sqlalchemy-devel/pkg-descr (props changed) head/databases/py-sqlalchemy-migrate/pkg-descr (props changed) head/databases/py-sqlalchemy/pkg-descr (props changed) head/databases/py-sqlalchemy06/pkg-descr (props changed) head/databases/py-sqlite3/pkg-descr (props changed) head/databases/py-sqlite3dbm/pkg-descr (props changed) head/databases/py-sqlkit/pkg-descr (props changed) head/databases/py-sqlobject/pkg-descr (props changed) head/databases/py-sqlparse/pkg-descr (props changed) head/databases/py-sqlrelay/pkg-descr (props changed) head/databases/py-swift/pkg-descr (props changed) head/databases/py-swiftclient/pkg-descr (props changed) head/databases/py-sybase/pkg-descr (props changed) head/databases/py-whisper/pkg-descr (props changed) head/databases/pydbdesigner/pkg-descr (props changed) head/databases/pydbx/pkg-descr (props changed) head/databases/pymongo/pkg-descr (props changed) head/databases/pyspatialite/pkg-descr (props changed) head/databases/qdbm-plus/pkg-descr (props changed) head/databases/qdbm/pkg-descr (props changed) head/databases/rdb/pkg-descr (props changed) head/databases/rdfdb/pkg-descr (props changed) head/databases/recutils/pkg-descr (props changed) head/databases/redis-devel/pkg-descr (props changed) head/databases/redis/pkg-descr (props changed) head/databases/rrdman/pkg-descr (props changed) head/databases/rrdmerge/pkg-descr (props changed) head/databases/rrdtool/pkg-descr (props changed) head/databases/rrdtool10/pkg-descr (props changed) head/databases/rrdtool12/pkg-descr (props changed) head/databases/ruby-bdb/pkg-descr (props changed) head/databases/ruby-frontbase/pkg-descr (props changed) head/databases/ruby-gdbm/pkg-descr (props changed) head/databases/ruby-mysql/pkg-descr (props changed) head/databases/ruby-oci8/pkg-descr (props changed) head/databases/ruby-odbc/pkg-descr (props changed) head/databases/ruby-qdbm/pkg-descr (props changed) head/databases/ruby-sybct/pkg-descr (props changed) head/databases/ruby-tokyocabinet/pkg-descr (props changed) head/databases/rubygem-activemodel/pkg-descr (props changed) head/databases/rubygem-activerecord-jdbc-adapter/pkg-descr (props changed) head/databases/rubygem-activerecord-jdbcmysql-adapter/pkg-descr (props changed) head/databases/rubygem-activerecord/pkg-descr (props changed) head/databases/rubygem-amalgalite/pkg-descr (props changed) head/databases/rubygem-arel/pkg-descr (props changed) head/databases/rubygem-bigrecord/pkg-descr (props changed) head/databases/rubygem-couchrest/pkg-descr (props changed) head/databases/rubygem-data_objects/pkg-descr (props changed) head/databases/rubygem-datamapper/pkg-descr (props changed) head/databases/rubygem-dm-active_model/pkg-descr (props changed) head/databases/rubygem-dm-aggregates/pkg-descr (props changed) head/databases/rubygem-dm-chunked_query/pkg-descr (props changed) head/databases/rubygem-dm-constraints/pkg-descr (props changed) head/databases/rubygem-dm-core/pkg-descr (props changed) head/databases/rubygem-dm-do-adapter/pkg-descr (props changed) head/databases/rubygem-dm-migrations/pkg-descr (props changed) head/databases/rubygem-dm-mysql-adapter/pkg-descr (props changed) head/databases/rubygem-dm-observer/pkg-descr (props changed) head/databases/rubygem-dm-pager/pkg-descr (props changed) head/databases/rubygem-dm-paperclip/pkg-descr (props changed) head/databases/rubygem-dm-postgres-adapter/pkg-descr (props changed) head/databases/rubygem-dm-rails/pkg-descr (props changed) head/databases/rubygem-dm-serializer/pkg-descr (props changed) head/databases/rubygem-dm-timestamps/pkg-descr (props changed) head/databases/rubygem-dm-transactions/pkg-descr (props changed) head/databases/rubygem-dm-types/pkg-descr (props changed) head/databases/rubygem-dm-validations/pkg-descr (props changed) head/databases/rubygem-do_mysql/pkg-descr (props changed) head/databases/rubygem-do_postgres/pkg-descr (props changed) head/databases/rubygem-do_sqlite3/pkg-descr (props changed) head/databases/rubygem-jdbc-mysql/pkg-descr (props changed) head/databases/rubygem-memcache-client/pkg-descr (props changed) head/databases/rubygem-memcache/pkg-descr (props changed) head/databases/rubygem-mysql2/pkg-descr (props changed) head/databases/rubygem-pg/pkg-descr (props changed) head/databases/rubygem-rbase/pkg-descr (props changed) head/databases/rubygem-redis-actionpack/pkg-descr (props changed) head/databases/rubygem-redis-namespace/pkg-descr (props changed) head/databases/rubygem-redis/pkg-descr (props changed) head/databases/rubygem-rubyrep/pkg-descr (props changed) head/databases/rubygem-seed-fu/pkg-descr (props changed) head/databases/rubygem-tarantool/pkg-descr (props changed) head/databases/sharedance/pkg-descr (props changed) head/databases/skytools/pkg-descr (props changed) head/databases/slony1/pkg-descr (props changed) head/databases/slony1v2/pkg-descr (props changed) head/databases/soci/pkg-descr (props changed) head/databases/spatialite/pkg-descr (props changed) head/databases/spatialite_gui/pkg-descr (props changed) head/databases/sqlbuddy/pkg-descr (props changed) head/databases/sqlcached/pkg-descr (props changed) head/databases/sqlclient/pkg-descr (props changed) head/databases/sqldeveloper/pkg-descr (props changed) head/databases/sqlite-ext-miscfuncs/pkg-descr (props changed) head/databases/sqlite-ext-mobigroup/pkg-descr (props changed) head/databases/sqlite2/pkg-descr (props changed) head/databases/sqlite3/pkg-descr (props changed) head/databases/sqliteman/pkg-descr (props changed) head/databases/sqlitemanager/pkg-descr (props changed) head/databases/sqlrelay/pkg-descr (props changed) head/databases/sqsh/pkg-descr (props changed) head/databases/squirrel-sql/pkg-descr (props changed) head/databases/sybtcl/pkg-descr (props changed) head/databases/tablelog/pkg-descr (props changed) head/databases/tarantool/pkg-descr (props changed) head/databases/tcl-Mysql/pkg-descr (props changed) head/databases/tcl-sqlite3/pkg-descr (props changed) head/databases/tdb/pkg-descr (props changed) head/databases/tdbc/pkg-descr (props changed) head/databases/tinycdb/pkg-descr (props changed) head/databases/tokyocabinet/pkg-descr (props changed) head/databases/tokyotyrant/pkg-descr (props changed) head/databases/tora/pkg-descr (props changed) head/databases/tuning-primer/pkg-descr (props changed) head/databases/typhoon/pkg-descr (props changed) head/databases/unixODBC/pkg-descr (props changed) head/databases/useracc/pkg-descr (props changed) head/databases/usogres/pkg-descr (props changed) head/databases/vfront/pkg-descr (props changed) head/databases/virtuoso/pkg-descr (props changed) head/databases/wfb2sql/pkg-descr (props changed) head/databases/wmjsql/pkg-descr (props changed) head/databases/xapian-core10/pkg-descr (props changed) head/databases/xmbase-grok/pkg-descr (props changed) head/databases/xtrabackup/pkg-descr (props changed) head/databases/yasql/pkg-descr (props changed) head/databases/zodb3/pkg-descr (props changed) head/deskutils/adesklets/pkg-descr (props changed) head/deskutils/affiche/pkg-descr (props changed) head/deskutils/akamaru/pkg-descr (props changed) head/deskutils/alacarte/pkg-descr (props changed) head/deskutils/appwrapper/pkg-descr (props changed) head/deskutils/aspostit/pkg-descr (props changed) head/deskutils/autocutsel/pkg-descr (props changed) head/deskutils/babytrans/pkg-descr (props changed) head/deskutils/basket/pkg-descr (props changed) head/deskutils/bigyear/pkg-descr (props changed) head/deskutils/bitcollider/pkg-descr (props changed) head/deskutils/bmp-docklet/pkg-descr (props changed) head/deskutils/cairo-dock-plugins/pkg-descr (props changed) head/deskutils/cairo-dock/pkg-descr (props changed) head/deskutils/cal/pkg-descr (props changed) head/deskutils/calcurse/pkg-descr (props changed) head/deskutils/calibre/pkg-descr (props changed) head/deskutils/cartotheque/pkg-descr (props changed) head/deskutils/cdcat/pkg-descr (props changed) head/deskutils/charmap/pkg-descr (props changed) head/deskutils/charmtimetracker/pkg-descr (props changed) head/deskutils/checkrdf/pkg-descr (props changed) head/deskutils/conduit/pkg-descr (props changed) head/deskutils/cycle/pkg-descr (props changed) head/deskutils/dailystrips/pkg-descr (props changed) head/deskutils/deskbar-applet/pkg-descr (props changed) head/deskutils/devd-notifier/pkg-descr (props changed) head/deskutils/displaycalibrator/pkg-descr (props changed) head/deskutils/dlume/pkg-descr (props changed) head/deskutils/docear/pkg-descr (props changed) head/deskutils/dosage/pkg-descr (props changed) head/deskutils/drivel/pkg-descr (props changed) head/deskutils/easystroke/pkg-descr (props changed) head/deskutils/egroupware/pkg-descr (props changed) head/deskutils/epoch/pkg-descr (props changed) head/deskutils/etask/pkg-descr (props changed) head/deskutils/everygui/pkg-descr (props changed) head/deskutils/evolution-jescs/pkg-descr (props changed) head/deskutils/fbreader/pkg-descr (props changed) head/deskutils/fengoffice/pkg-descr (props changed) head/deskutils/freemind/pkg-descr (props changed) head/deskutils/fusenshi/pkg-descr (props changed) head/deskutils/ganttproject/pkg-descr (props changed) head/deskutils/ganyremote/pkg-descr (props changed) head/deskutils/gbirthday/pkg-descr (props changed) head/deskutils/gcal/pkg-descr (props changed) head/deskutils/gcalcli/pkg-descr (props changed) head/deskutils/gdesklets-recentlyused/pkg-descr (props changed) head/deskutils/gdesklets-starterbar/pkg-descr (props changed) head/deskutils/gdesklets/pkg-descr (props changed) head/deskutils/genius/pkg-descr (props changed) head/deskutils/gimmie/pkg-descr (props changed) head/deskutils/gkrellm-reminder2/pkg-descr (props changed) head/deskutils/glabels/pkg-descr (props changed) head/deskutils/glipper/pkg-descr (props changed) head/deskutils/global-menu/pkg-descr (props changed) head/deskutils/gmcal/pkg-descr (props changed) head/deskutils/gnochm/pkg-descr (props changed) head/deskutils/gnome-blog/pkg-descr (props changed) head/deskutils/gnome-main-menu/pkg-descr (props changed) head/deskutils/gnome-utils/pkg-descr (props changed) head/deskutils/gnote/pkg-descr (props changed) head/deskutils/gnotime/pkg-descr (props changed) head/deskutils/gnustep-notebook/pkg-descr (props changed) head/deskutils/gnustep-wrapper/pkg-descr (props changed) head/deskutils/griffith/pkg-descr (props changed) head/deskutils/growl-for-linux/pkg-descr (props changed) head/deskutils/gruler/pkg-descr (props changed) head/deskutils/gtg/pkg-descr (props changed) head/deskutils/gtimer/pkg-descr (props changed) head/deskutils/gtkjournal/pkg-descr (props changed) head/deskutils/gtodo/pkg-descr (props changed) head/deskutils/gtweakui/pkg-descr (props changed) head/deskutils/gucharmap/pkg-descr (props changed) head/deskutils/gworkspace-gwmetadata/pkg-descr (props changed) head/deskutils/gworkspace/pkg-descr (props changed) head/deskutils/gxmessage/pkg-descr (props changed) head/deskutils/gxneur/pkg-descr (props changed) head/deskutils/hamster-applet/pkg-descr (props changed) head/deskutils/hebcal/pkg-descr (props changed) head/deskutils/helpviewer/pkg-descr (props changed) head/deskutils/horde-groupware/pkg-descr (props changed) head/deskutils/horde-kronolith/pkg-descr (props changed) head/deskutils/horde-mnemo/pkg-descr (props changed) head/deskutils/horde-nag/pkg-descr (props changed) head/deskutils/horde3-hermes/pkg-descr (props changed) head/deskutils/horde3-klutz/pkg-descr (props changed) head/deskutils/horde3-kronolith/pkg-descr (props changed) head/deskutils/horde3-mnemo/pkg-descr (props changed) head/deskutils/horde3-nag/pkg-descr (props changed) head/deskutils/hot-babe/pkg-descr (props changed) head/deskutils/howm/pkg-descr (props changed) head/deskutils/ical/pkg-descr (props changed) head/deskutils/ithought/pkg-descr (props changed) head/deskutils/jjclient/pkg-descr (props changed) head/deskutils/jlj/pkg-descr (props changed) head/deskutils/kcharselect/pkg-descr (props changed) head/deskutils/kchmviewer-kde4/pkg-descr (props changed) head/deskutils/kdepim4-runtime/pkg-descr (props changed) head/deskutils/kdepim4/pkg-descr (props changed) head/deskutils/kdepim44-runtime/pkg-descr (props changed) head/deskutils/kdepim44/pkg-descr (props changed) head/deskutils/kdepimlibs4/pkg-descr (props changed) head/deskutils/kdeplasma-addons/pkg-descr (props changed) head/deskutils/kruler/pkg-descr (props changed) head/deskutils/ksshaskpass/pkg-descr (props changed) head/deskutils/kupfer/pkg-descr (props changed) head/deskutils/labyrinth/pkg-descr (props changed) head/deskutils/launchy/pkg-descr (props changed) head/deskutils/libopensync-plugin-evolution2-devel/pkg-descr (props changed) head/deskutils/libopensync-plugin-evolution2/pkg-descr (props changed) head/deskutils/libopensync-plugin-file/pkg-descr (props changed) head/deskutils/libopensync-plugin-python/pkg-descr (props changed) head/deskutils/libopensync-plugin-sunbird/pkg-descr (props changed) head/deskutils/libopensync-plugin-synce-legacy/pkg-descr (props changed) head/deskutils/libopensync-plugin-synce/pkg-descr (props changed) head/deskutils/libopensync-plugin-vformat-devel/pkg-descr (props changed) head/deskutils/ljcharm/pkg-descr (props changed) head/deskutils/ljclive/pkg-descr (props changed) head/deskutils/ljit/pkg-descr (props changed) head/deskutils/logjam/pkg-descr (props changed) head/deskutils/lxshortcut/pkg-descr (props changed) head/deskutils/mate-character-map/pkg-descr (props changed) head/deskutils/mate-file-manager-open-terminal/pkg-descr (props changed) head/deskutils/mate-menu-editor/pkg-descr (props changed) head/deskutils/mate-notification-daemon/pkg-descr (props changed) head/deskutils/mate-utils/pkg-descr (props changed) head/deskutils/mcal/pkg-descr (props changed) head/deskutils/mdh/pkg-descr (props changed) head/deskutils/mencal/pkg-descr (props changed) head/deskutils/menumaker/pkg-descr (props changed) head/deskutils/mirall/pkg-descr (props changed) head/deskutils/moregroupware/pkg-descr (props changed) head/deskutils/mrundlg/pkg-descr (props changed) head/deskutils/msynctool/pkg-descr (props changed) head/deskutils/multisync-backup/pkg-descr (props changed) head/deskutils/multisync-syncml/pkg-descr (props changed) head/deskutils/multisync/pkg-descr (props changed) head/deskutils/myitcrm/pkg-descr (props changed) head/deskutils/nagaina/pkg-descr (props changed) head/deskutils/narval/pkg-descr (props changed) head/deskutils/nautilus-actions/pkg-descr (props changed) head/deskutils/nautilus-locked-folder/pkg-descr (props changed) head/deskutils/nautilus-open-terminal/pkg-descr (props changed) head/deskutils/nautilus-sendto/pkg-descr (props changed) head/deskutils/notecase/pkg-descr (props changed) head/deskutils/notification-daemon/pkg-descr (props changed) head/deskutils/notify-osd/pkg-descr (props changed) head/deskutils/ontv/pkg-descr (props changed) head/deskutils/openproj/pkg-descr (props changed) head/deskutils/orage/pkg-descr (props changed) head/deskutils/org-mode.el/pkg-descr (props changed) head/deskutils/osmo/pkg-descr (props changed) head/deskutils/osynctool/pkg-descr (props changed) head/deskutils/p5-Data-ICal/pkg-descr (props changed) head/deskutils/p5-Goo/pkg-descr (props changed) head/deskutils/p5-ZConf-BGSet/pkg-descr (props changed) head/deskutils/p5-ZConf-Runner-GUI-GTK/pkg-descr (props changed) head/deskutils/p5-ZConf-Runner/pkg-descr (props changed) head/deskutils/pal/pkg-descr (props changed) head/deskutils/parcellite/pkg-descr (props changed) head/deskutils/phpcollab/pkg-descr (props changed) head/deskutils/phpicalendar/pkg-descr (props changed) head/deskutils/phprojekt/pkg-descr (props changed) head/deskutils/pinot/pkg-descr (props changed) head/deskutils/plan/pkg-descr (props changed) head/deskutils/planner.el/pkg-descr (props changed) head/deskutils/planner/pkg-descr (props changed) head/deskutils/plans/pkg-descr (props changed) head/deskutils/plasma-applet-cwp/pkg-descr (props changed) head/deskutils/plasma-applet-daisy/pkg-descr (props changed) head/deskutils/plasma-applet-fancytasks/pkg-descr (props changed) head/deskutils/plasma-applet-panelspacer/pkg-descr (props changed) head/deskutils/plasma-applet-playwolf/pkg-descr (props changed) head/deskutils/plasma-applet-serverstatuswidget/pkg-descr (props changed) head/deskutils/plasma-applet-simpleweatherforecast/pkg-descr (props changed) head/deskutils/plasma-applet-teacooker/pkg-descr (props changed) head/deskutils/plasma-applet-yawp/pkg-descr (props changed) head/deskutils/plopfolio/pkg-descr (props changed) head/deskutils/preferencepanes/pkg-descr (props changed) head/deskutils/preferences/pkg-descr (props changed) head/deskutils/py-vobject/pkg-descr (props changed) head/deskutils/pybookreader/pkg-descr (props changed) head/deskutils/pypanel/pkg-descr (props changed) head/deskutils/qlabels/pkg-descr (props changed) head/deskutils/qorganizer/pkg-descr (props changed) head/deskutils/qrfcview/pkg-descr (props changed) head/deskutils/qtm/pkg-descr (props changed) head/deskutils/recoll/pkg-descr (props changed) head/deskutils/rednotebook/pkg-descr (props changed) head/deskutils/remember.el/pkg-descr (props changed) head/deskutils/remind/pkg-descr (props changed) head/deskutils/rolo/pkg-descr (props changed) head/deskutils/rox-memo/pkg-descr (props changed) head/deskutils/rubygem-taskjuggler/pkg-descr (props changed) head/deskutils/semantik/pkg-descr (props changed) head/deskutils/silence/pkg-descr (props changed) head/deskutils/simpleagenda/pkg-descr (props changed) head/deskutils/simplegroupware/pkg-descr (props changed) head/deskutils/sliderule/pkg-descr (props changed) head/deskutils/splashsetter/pkg-descr (props changed) head/deskutils/sugarcrm/pkg-descr (props changed) head/deskutils/superkaramba/pkg-descr (props changed) head/deskutils/superswitcher/pkg-descr (props changed) head/deskutils/surrealtodo/pkg-descr (props changed) head/deskutils/systempreferences/pkg-descr (props changed) head/deskutils/tagutils/pkg-descr (props changed) head/deskutils/taskcoach/pkg-descr (props changed) head/deskutils/taskwarrior/pkg-descr (props changed) head/deskutils/teapot/pkg-descr (props changed) head/deskutils/tel/pkg-descr (props changed) head/deskutils/thinkingrock/pkg-descr (props changed) head/deskutils/tine20/pkg-descr (props changed) head/deskutils/tnote/pkg-descr (props changed) head/deskutils/todo/pkg-descr (props changed) head/deskutils/tomboy-plugin-latex/pkg-descr (props changed) head/deskutils/tomboy-plugin-reminder/pkg-descr (props changed) head/deskutils/tomboy-plugin-todo/pkg-descr (props changed) head/deskutils/tomboy-plugin-wordcount/pkg-descr (props changed) head/deskutils/tomboy/pkg-descr (props changed) head/deskutils/toolboxkit/pkg-descr (props changed) head/deskutils/tpb/pkg-descr (props changed) head/deskutils/treeline/pkg-descr (props changed) head/deskutils/tuxcards/pkg-descr (props changed) head/deskutils/vboxgtk/pkg-descr (props changed) head/deskutils/virt-manager/pkg-descr (props changed) head/deskutils/vnc2flv/pkg-descr (props changed) head/deskutils/vym/pkg-descr (props changed) head/deskutils/wammu/pkg-descr (props changed) head/deskutils/when/pkg-descr (props changed) head/deskutils/wmpinboard/pkg-descr (props changed) head/deskutils/wyrd/pkg-descr (props changed) head/deskutils/x-tile/pkg-descr (props changed) head/deskutils/x026/pkg-descr (props changed) head/deskutils/xcalendar/pkg-descr (props changed) head/deskutils/xchm/pkg-descr (props changed) head/deskutils/xfce4-generic-slider/pkg-descr (props changed) head/deskutils/xfce4-notification-daemon/pkg-descr (props changed) head/deskutils/xfce4-notifyd/pkg-descr (props changed) head/deskutils/xfce4-tumbler/pkg-descr (props changed) head/deskutils/xfce4-xkb-plugin/pkg-descr (props changed) head/deskutils/xmaddressbook/pkg-descr (props changed) head/deskutils/xmdiary/pkg-descr (props changed) head/deskutils/xneur/pkg-descr (props changed) head/deskutils/xpad-current/pkg-descr (props changed) head/deskutils/xpad/pkg-descr (props changed) head/deskutils/xpostit/pkg-descr (props changed) head/deskutils/xpostitPlus/pkg-descr (props changed) head/deskutils/xrolo/pkg-descr (props changed) head/deskutils/xwrits/pkg-descr (props changed) head/deskutils/zorro/pkg-descr (props changed) head/devel/9base/pkg-descr (props changed) head/devel/ElectricFence/pkg-descr (props changed) head/devel/ORBit2-reference/pkg-descr (props changed) head/devel/ORBit2/pkg-descr (props changed) head/devel/R-cran-Defaults/pkg-descr (props changed) head/devel/R-cran-Rcpp/pkg-descr (props changed) head/devel/R-cran-bitops/pkg-descr (props changed) head/devel/R-cran-caTools/pkg-descr (props changed) head/devel/R-cran-caret/pkg-descr (props changed) head/devel/R-cran-foreach/pkg-descr (props changed) head/devel/R-cran-gdata/pkg-descr (props changed) head/devel/R-cran-gtools/pkg-descr (props changed) head/devel/R-cran-iterators/pkg-descr (props changed) head/devel/R-cran-itertools/pkg-descr (props changed) head/devel/R-cran-memoise/pkg-descr (props changed) head/devel/R-cran-plyr/pkg-descr (props changed) head/devel/R-cran-proto/pkg-descr (props changed) head/devel/R-cran-reshape/pkg-descr (props changed) head/devel/R-cran-reshape2/pkg-descr (props changed) head/devel/SpecTcl/pkg-descr (props changed) head/devel/aap/pkg-descr (props changed) head/devel/abi-compliance-checker/pkg-descr (props changed) head/devel/ace+tao-doc/pkg-descr (props changed) head/devel/ace/pkg-descr (props changed) head/devel/acme/pkg-descr (props changed) head/devel/activitymail/pkg-descr (props changed) head/devel/adabooch-doc-html/pkg-descr (props changed) head/devel/adabooch/pkg-descr (props changed) head/devel/adacurses/pkg-descr (props changed) head/devel/adasdl/pkg-descr (props changed) head/devel/adime/pkg-descr (props changed) head/devel/aegis/pkg-descr (props changed) head/devel/afay/pkg-descr (props changed) head/devel/aifad/pkg-descr (props changed) head/devel/alabastra/pkg-descr (props changed) head/devel/ald/pkg-descr (props changed) head/devel/alf/pkg-descr (props changed) head/devel/allegro-devel/pkg-descr (props changed) head/devel/allegro/pkg-descr (props changed) head/devel/android-tools-adb/pkg-descr (props changed) head/devel/anjuta-extras/pkg-descr (props changed) head/devel/anjuta/pkg-descr (props changed) head/devel/antlr/pkg-descr (props changed) head/devel/antlrworks/pkg-descr (props changed) head/devel/apache-ant/pkg-descr (props changed) head/devel/api-sanity-autotest/pkg-descr (props changed) head/devel/apiextractor/pkg-descr (props changed) head/devel/apr1/pkg-descr (props changed) head/devel/apr2/pkg-descr (props changed) head/devel/arduino-glcd/pkg-descr (props changed) head/devel/arduino-irremote/pkg-descr (props changed) head/devel/arduino-mk/pkg-descr (props changed) head/devel/arduino/pkg-descr (props changed) head/devel/argouml/pkg-descr (props changed) head/devel/argp-standalone/pkg-descr (props changed) head/devel/argtable/pkg-descr (props changed) head/devel/arm-eabi-binutils/pkg-descr (props changed) head/devel/arm-elf-binutils/pkg-descr (props changed) head/devel/aros-sdk/pkg-descr (props changed) head/devel/art/pkg-descr (props changed) head/devel/as31/pkg-descr (props changed) head/devel/asdlgen/pkg-descr (props changed) head/devel/asl/pkg-descr (props changed) head/devel/asmutils/pkg-descr (props changed) head/devel/asmx/pkg-descr (props changed) head/devel/astah-community/pkg-descr (props changed) head/devel/atlas-devel/pkg-descr (props changed) head/devel/atlas/pkg-descr (props changed) head/devel/ats-contrib-testing/pkg-descr (props changed) head/devel/autobook/pkg-descr (props changed) head/devel/autoconf-archive/pkg-descr (props changed) head/devel/autoconf-wrapper/pkg-descr (props changed) head/devel/autoconf/pkg-descr (props changed) head/devel/autoconf213/pkg-descr (props changed) head/devel/autodist/pkg-descr (props changed) head/devel/autogen/pkg-descr (props changed) head/devel/automake-wrapper/pkg-descr (props changed) head/devel/automake/pkg-descr (props changed) head/devel/automake14/pkg-descr (props changed) head/devel/automoc4/pkg-descr (props changed) head/devel/autotools/pkg-descr (props changed) head/devel/avalon-framework/pkg-descr (props changed) head/devel/avarice/pkg-descr (props changed) head/devel/avce00/pkg-descr (props changed) head/devel/avltree/pkg-descr (props changed) head/devel/avr-binutils/pkg-descr (props changed) head/devel/avr-gcc/pkg-descr (props changed) head/devel/avr-gdb/pkg-descr (props changed) head/devel/avr-libc/pkg-descr (props changed) head/devel/avra/pkg-descr (props changed) head/devel/avrdude/pkg-descr (props changed) head/devel/avro-c/pkg-descr (props changed) head/devel/avro-cpp/pkg-descr (props changed) head/devel/avro/pkg-descr (props changed) head/devel/awscli/pkg-descr (props changed) head/devel/bam/pkg-descr (props changed) head/devel/baz/pkg-descr (props changed) head/devel/bcc/pkg-descr (props changed) head/devel/bcpp/pkg-descr (props changed) head/devel/beautifyphp/pkg-descr (props changed) head/devel/bennugd-core/pkg-descr (props changed) head/devel/bennugd-modules/pkg-descr (props changed) head/devel/bglibs/pkg-descr (props changed) head/devel/bicyclerepair/pkg-descr (props changed) head/devel/bin86/pkg-descr (props changed) head/devel/binutils/pkg-descr (props changed) head/devel/bison/pkg-descr (props changed) head/devel/bisoncpp/pkg-descr (props changed) head/devel/blame/pkg-descr (props changed) head/devel/bmake/pkg-descr (props changed) head/devel/bmkdep/pkg-descr (props changed) head/devel/bncsutil-ghost++/pkg-descr (props changed) head/devel/bnf/pkg-descr (props changed) head/devel/boaconstructor/pkg-descr (props changed) head/devel/boehm-gc-redirect/pkg-descr (props changed) head/devel/boehm-gc-threaded/pkg-descr (props changed) head/devel/boehm-gc/pkg-descr (props changed) head/devel/boost-all/pkg-descr (props changed) head/devel/boost-docs/pkg-descr (props changed) head/devel/boost-jam/pkg-descr (props changed) head/devel/boost-libs/pkg-descr (props changed) head/devel/boost-python-libs/pkg-descr (props changed) head/devel/boost_build/pkg-descr (props changed) head/devel/bouml-doc/pkg-descr (props changed) head/devel/bsdbuild/pkg-descr (props changed) head/devel/bsdlibdwarf/pkg-descr (props changed) head/devel/bufferpool/pkg-descr (props changed) head/devel/bug-buddy/pkg-descr (props changed) head/devel/bugzilla40/pkg-descr (props changed) head/devel/bugzilla42/pkg-descr (props changed) head/devel/bugzilla44/pkg-descr (props changed) head/devel/build/pkg-descr (props changed) head/devel/buildapp/pkg-descr (props changed) head/devel/buildbot-slave/pkg-descr (props changed) head/devel/buildbot/pkg-descr (props changed) head/devel/buildtool-doc/pkg-descr (props changed) head/devel/buildtool/pkg-descr (props changed) head/devel/bullet/pkg-descr (props changed) head/devel/bunny/pkg-descr (props changed) head/devel/byaccj/pkg-descr (props changed) head/devel/bzapi/pkg-descr (props changed) head/devel/bzr-builder/pkg-descr (props changed) head/devel/bzr-colo/pkg-descr (props changed) head/devel/bzr-explorer/pkg-descr (props changed) head/devel/bzr-externals/pkg-descr (props changed) head/devel/bzr-fastimport/pkg-descr (props changed) head/devel/bzr-git/pkg-descr (props changed) head/devel/bzr-grep/pkg-descr (props changed) head/devel/bzr-gtk/pkg-descr (props changed) head/devel/bzr-loom/pkg-descr (props changed) head/devel/bzr-pipeline/pkg-descr (props changed) head/devel/bzr-rewrite/pkg-descr (props changed) head/devel/bzr-scmproj/pkg-descr (props changed) head/devel/bzr-stats/pkg-descr (props changed) head/devel/bzr-svn/pkg-descr (props changed) head/devel/bzr-upload/pkg-descr (props changed) head/devel/bzr/pkg-descr (props changed) head/devel/bzrtools/pkg-descr (props changed) head/devel/c-unit/pkg-descr (props changed) head/devel/c4/pkg-descr (props changed) head/devel/calibrator/pkg-descr (props changed) head/devel/cbind/pkg-descr (props changed) head/devel/cbrowser/pkg-descr (props changed) head/devel/cc65/pkg-descr (props changed) head/devel/ccache/pkg-descr (props changed) head/devel/ccdoc/pkg-descr (props changed) head/devel/ccrtp/pkg-descr (props changed) head/devel/cdash/pkg-descr (props changed) head/devel/cdecl/pkg-descr (props changed) head/devel/cdialog/pkg-descr (props changed) head/devel/cdk/pkg-descr (props changed) head/devel/cedet/pkg-descr (props changed) head/devel/cflow/pkg-descr (props changed) head/devel/cflow2vcg/pkg-descr (props changed) head/devel/cgdb/pkg-descr (props changed) head/devel/cgilib/pkg-descr (props changed) head/devel/cgit/pkg-descr (props changed) head/devel/cgprof/pkg-descr (props changed) head/devel/charva/pkg-descr (props changed) head/devel/checkheaders/pkg-descr (props changed) head/devel/chrpath/pkg-descr (props changed) head/devel/chruby/pkg-descr (props changed) head/devel/cil/pkg-descr (props changed) head/devel/cityhash/pkg-descr (props changed) head/devel/cl-alexandria-clisp/pkg-descr (props changed) head/devel/cl-alexandria-sbcl/pkg-descr (props changed) head/devel/cl-alexandria/pkg-descr (props changed) head/devel/cl-asdf-clisp/pkg-descr (props changed) head/devel/cl-asdf/pkg-descr (props changed) head/devel/cl-cffi-clisp/pkg-descr (props changed) head/devel/cl-cffi-sbcl/pkg-descr (props changed) head/devel/cl-cffi/pkg-descr (props changed) head/devel/cl-infix-clisp/pkg-descr (props changed) head/devel/cl-infix-sbcl/pkg-descr (props changed) head/devel/cl-infix/pkg-descr (props changed) head/devel/cl-port-clisp/pkg-descr (props changed) head/devel/cl-port-sbcl/pkg-descr (props changed) head/devel/cl-port/pkg-descr (props changed) head/devel/cl-split-sequence-clisp/pkg-descr (props changed) head/devel/cl-split-sequence-sbcl/pkg-descr (props changed) head/devel/cl-split-sequence/pkg-descr (props changed) head/devel/cl-trivial-features-clisp/pkg-descr (props changed) head/devel/cl-trivial-features-sbcl/pkg-descr (props changed) head/devel/cl-trivial-features/pkg-descr (props changed) head/devel/cl-trivial-gray-streams-clisp/pkg-descr (props changed) head/devel/cl-trivial-gray-streams-sbcl/pkg-descr (props changed) head/devel/cl-trivial-gray-streams/pkg-descr (props changed) head/devel/cl-uffi-sbcl/pkg-descr (props changed) head/devel/cl-uffi/pkg-descr (props changed) head/devel/clanlib/pkg-descr (props changed) head/devel/clanlib1/pkg-descr (props changed) head/devel/clanlib22/pkg-descr (props changed) head/devel/cld/pkg-descr (props changed) head/devel/clewn/pkg-descr (props changed) head/devel/clig/pkg-descr (props changed) head/devel/clint/pkg-descr (props changed) head/devel/clisp-hyperspec/pkg-descr (props changed) head/devel/cmake-fedora/pkg-descr (props changed) head/devel/cmake-gui/pkg-descr (props changed) head/devel/cmake-modules/pkg-descr (props changed) head/devel/cmake/pkg-descr (props changed) head/devel/cmph/pkg-descr (props changed) head/devel/cmunge/pkg-descr (props changed) head/devel/cobf/pkg-descr (props changed) head/devel/coccinelle/pkg-descr (props changed) head/devel/codeblocks/pkg-descr (props changed) head/devel/colorgcc/pkg-descr (props changed) head/devel/colormake/pkg-descr (props changed) head/devel/combat/pkg-descr (props changed) head/devel/commit-patch/pkg-descr (props changed) head/devel/common_lib/pkg-descr (props changed) head/devel/commoncpp/pkg-descr (props changed) head/devel/compiler-rt/pkg-descr (props changed) head/devel/compiz-bcop/pkg-descr (props changed) head/devel/configkit/pkg-descr (props changed) head/devel/cons-test/pkg-descr (props changed) head/devel/cons/pkg-descr (props changed) head/devel/cook/pkg-descr (props changed) head/devel/covtool/pkg-descr (props changed) head/devel/cowlib/pkg-descr (props changed) head/devel/cpan-upload-http/pkg-descr (props changed) head/devel/cpan-upload/pkg-descr (props changed) head/devel/cppcheck/pkg-descr (props changed) head/devel/cppi/pkg-descr (props changed) head/devel/cppunit/pkg-descr (props changed) head/devel/cproto/pkg-descr (props changed) head/devel/cpuflags/pkg-descr (props changed) head/devel/cross-binutils/pkg-descr (props changed) head/devel/cross-gcc/pkg-descr (props changed) head/devel/cross-gdb/pkg-descr (props changed) head/devel/cscope/pkg-descr (props changed) head/devel/cscout/pkg-descr (props changed) head/devel/csmith/pkg-descr (props changed) head/devel/csoap/pkg-descr (props changed) head/devel/cstringbuffer/pkg-descr (props changed) head/devel/ctags/pkg-descr (props changed) head/devel/cunit/pkg-descr (props changed) head/devel/cut/pkg-descr (props changed) head/devel/cutils/pkg-descr (props changed) head/devel/cutter/pkg-descr (props changed) head/devel/cvs+ipv6/pkg-descr (props changed) head/devel/cvs-devel/pkg-descr (props changed) head/devel/cvs-syncmail/pkg-descr (props changed) head/devel/cvs/pkg-descr (props changed) head/devel/cvs2cl/pkg-descr (props changed) head/devel/cvs2darcs/pkg-descr (props changed) head/devel/cvs2html/pkg-descr (props changed) head/devel/cvs2p4/pkg-descr (props changed) head/devel/cvs2svn/pkg-descr (props changed) head/devel/cvsadmin/pkg-descr (props changed) head/devel/cvsbook/pkg-descr (props changed) head/devel/cvschangelogbuilder/pkg-descr (props changed) head/devel/cvschk/pkg-descr (props changed) head/devel/cvsd/pkg-descr (props changed) head/devel/cvsdadm/pkg-descr (props changed) head/devel/cvsdelta/pkg-descr (props changed) head/devel/cvsdiff2patch/pkg-descr (props changed) head/devel/cvsmonitor/pkg-descr (props changed) head/devel/cvsplot/pkg-descr (props changed) head/devel/cvsps-devel/pkg-descr (props changed) head/devel/cvsps/pkg-descr (props changed) head/devel/cvsspam/pkg-descr (props changed) head/devel/cvsstat/pkg-descr (props changed) head/devel/cvstrac/pkg-descr (props changed) head/devel/cvswrap/pkg-descr (props changed) head/devel/cweb/pkg-descr (props changed) head/devel/cx_Freeze/pkg-descr (props changed) head/devel/cxmon/pkg-descr (props changed) head/devel/cxxtest/pkg-descr (props changed) head/devel/cxxtools/pkg-descr (props changed) head/devel/d-feet/pkg-descr (props changed) head/devel/darts/pkg-descr (props changed) head/devel/dasm/pkg-descr (props changed) head/devel/datadraw/pkg-descr (props changed) head/devel/dbus-sharp-glib/pkg-descr (props changed) head/devel/dbus/pkg-descr (props changed) head/devel/dcmtk/pkg-descr (props changed) head/devel/ddd/pkg-descr (props changed) head/devel/deheader/pkg-descr (props changed) head/devel/delta/pkg-descr (props changed) head/devel/desktop-file-utils/pkg-descr (props changed) head/devel/dev86/pkg-descr (props changed) head/devel/devhelp/pkg-descr (props changed) head/devel/devtodo/pkg-descr (props changed) head/devel/dfuife-curses/pkg-descr (props changed) head/devel/dia2code/pkg-descr (props changed) head/devel/diffuse/pkg-descr (props changed) head/devel/ding-libs/pkg-descr (props changed) head/devel/directfb/pkg-descr (props changed) head/devel/dissy/pkg-descr (props changed) head/devel/distcc/pkg-descr (props changed) head/devel/distel/pkg-descr (props changed) head/devel/distorm/pkg-descr (props changed) head/devel/ditrack/pkg-descr (props changed) head/devel/dits/pkg-descr (props changed) head/devel/djgpp-binutils/pkg-descr (props changed) head/devel/djgpp-crx/pkg-descr (props changed) head/devel/dmake/pkg-descr (props changed) head/devel/dmalloc/pkg-descr (props changed) head/devel/dmucs/pkg-descr (props changed) head/devel/doctorj/pkg-descr (props changed) head/devel/dotconf++/pkg-descr (props changed) head/devel/dotconf/pkg-descr (props changed) head/devel/doxygen/pkg-descr (props changed) head/devel/dparser/pkg-descr (props changed) head/devel/dprog/pkg-descr (props changed) head/devel/dragon/pkg-descr (props changed) head/devel/dreampie/pkg-descr (props changed) head/devel/drpython/pkg-descr (props changed) head/devel/dulwich/pkg-descr (props changed) head/devel/duplo/pkg-descr (props changed) head/devel/dwarfdump/pkg-descr (props changed) head/devel/dxa65/pkg-descr (props changed) head/devel/dyncall/pkg-descr (props changed) head/devel/e00compr/pkg-descr (props changed) head/devel/e2fsprogs-libss/pkg-descr (props changed) head/devel/e4graph/pkg-descr (props changed) head/devel/e_dbus/pkg-descr (props changed) head/devel/easygit/pkg-descr (props changed) head/devel/eblob/pkg-descr (props changed) head/devel/ebnf2yacc/pkg-descr (props changed) head/devel/ecb/pkg-descr (props changed) head/devel/eclipse-eclemma/pkg-descr (props changed) head/devel/ecore-file/pkg-descr (props changed) head/devel/ecore-ipc/pkg-descr (props changed) head/devel/ecore-main/pkg-descr (props changed) head/devel/ecore/pkg-descr (props changed) head/devel/eet/pkg-descr (props changed) head/devel/eggdbus/pkg-descr (props changed) head/devel/egypt/pkg-descr (props changed) head/devel/eieio/pkg-descr (props changed) head/devel/eiffelstudio/pkg-descr (props changed) head/devel/eina/pkg-descr (props changed) head/devel/eio/pkg-descr (props changed) head/devel/elf/pkg-descr (props changed) head/devel/elfio/pkg-descr (props changed) head/devel/elfkickers/pkg-descr (props changed) head/devel/elfrc/pkg-descr (props changed) head/devel/elfsh/pkg-descr (props changed) head/devel/elftoaout/pkg-descr (props changed) head/devel/elib/pkg-descr (props changed) head/devel/epm/pkg-descr (props changed) head/devel/epydoc/pkg-descr (props changed) head/devel/eric4/pkg-descr (props changed) head/devel/eris/pkg-descr (props changed) head/devel/esdl/pkg-descr (props changed) head/devel/etl/pkg-descr (props changed) head/devel/eventxx/pkg-descr (props changed) head/devel/evolution-gconf-tools/pkg-descr (props changed) head/devel/exercisix/pkg-descr (props changed) head/devel/f77flow/pkg-descr (props changed) head/devel/fam/pkg-descr (props changed) head/devel/fampp/pkg-descr (props changed) head/devel/fastcrc/pkg-descr (props changed) head/devel/fb303/pkg-descr (props changed) head/devel/fc++/pkg-descr (props changed) head/devel/ffcall/pkg-descr (props changed) head/devel/fga/pkg-descr (props changed) head/devel/fhist/pkg-descr (props changed) head/devel/fib/pkg-descr (props changed) head/devel/firmware-utils/pkg-descr (props changed) head/devel/fistgen/pkg-descr (props changed) head/devel/flatzebra/pkg-descr (props changed) head/devel/flex-sdk/pkg-descr (props changed) head/devel/flex-sdk2/pkg-descr (props changed) head/devel/flex-sdk35/pkg-descr (props changed) head/devel/flex_compiler_shell/pkg-descr (props changed) head/devel/flexdock/pkg-descr (props changed) head/devel/flexjson/pkg-descr (props changed) head/devel/flick/pkg-descr (props changed) head/devel/flickrnet/pkg-descr (props changed) head/devel/flowdesigner/pkg-descr (props changed) head/devel/flyspray/pkg-descr (props changed) head/devel/fmake/pkg-descr (props changed) head/devel/fnccheck/pkg-descr (props changed) head/devel/fnorb/pkg-descr (props changed) head/devel/fortran-utils/pkg-descr (props changed) head/devel/fortytwo-encore/pkg-descr (props changed) head/devel/fossil/pkg-descr (props changed) head/devel/fpp/pkg-descr (props changed) head/devel/frama-c/pkg-descr (props changed) head/devel/freeocl/pkg-descr (props changed) head/devel/frink/pkg-descr (props changed) head/devel/fsmgenerator/pkg-descr (props changed) head/devel/ftjam/pkg-descr (props changed) head/devel/ftnchek/pkg-descr (props changed) head/devel/fuel/pkg-descr (props changed) head/devel/fujaba/pkg-descr (props changed) head/devel/funnelweb/pkg-descr (props changed) head/devel/g-wrap/pkg-descr (props changed) head/devel/gaa/pkg-descr (props changed) head/devel/gamin/pkg-descr (props changed) head/devel/gauche-readline/pkg-descr (props changed) head/devel/gaul/pkg-descr (props changed) head/devel/gazpacho/pkg-descr (props changed) head/devel/gccmakedep/pkg-descr (props changed) head/devel/gconf2-reference/pkg-descr (props changed) head/devel/gconf2/pkg-descr (props changed) head/devel/gconfmm26/pkg-descr (props changed) head/devel/gcvs/pkg-descr (props changed) head/devel/gdb66/pkg-descr (props changed) head/devel/gdbmods/pkg-descr (props changed) head/devel/gdcm/pkg-descr (props changed) head/devel/geany/pkg-descr (props changed) head/devel/gearmand-devel/pkg-descr (props changed) head/devel/gearmand/pkg-descr (props changed) head/devel/gecode/pkg-descr (props changed) head/devel/generate/pkg-descr (props changed) head/devel/generatorrunner/pkg-descr (props changed) head/devel/gengetopt/pkg-descr (props changed) head/devel/genproto/pkg-descr (props changed) head/devel/geoip-java/pkg-descr (props changed) head/devel/gettext-lint/pkg-descr (props changed) head/devel/gettext-msghack/pkg-descr (props changed) head/devel/gettext/pkg-descr (props changed) head/devel/giggle/pkg-descr (props changed) head/devel/gindent/pkg-descr (props changed) head/devel/gio-sharp/pkg-descr (props changed) head/devel/git-merge-changelog/pkg-descr (props changed) head/devel/git-subversion/pkg-descr (props changed) head/devel/gitg/pkg-descr (props changed) head/devel/gitg0/pkg-descr (props changed) head/devel/gitolite2/pkg-descr (props changed) head/devel/gitphp/pkg-descr (props changed) head/devel/gjstest/pkg-descr (props changed) head/devel/glade2/pkg-descr (props changed) head/devel/glade3/pkg-descr (props changed) head/devel/glademm/pkg-descr (props changed) head/devel/glib-java/pkg-descr (props changed) head/devel/glib12/pkg-descr (props changed) head/devel/glib20-reference/pkg-descr (props changed) head/devel/glib20/pkg-descr (props changed) head/devel/glibmm-reference/pkg-descr (props changed) head/devel/glibmm/pkg-descr (props changed) head/devel/global/pkg-descr (props changed) head/devel/glog/pkg-descr (props changed) head/devel/glrparser/pkg-descr (props changed) head/devel/glui/pkg-descr (props changed) head/devel/gmake/pkg-descr (props changed) head/devel/gnatpython/pkg-descr (props changed) head/devel/gnome-common/pkg-descr (props changed) head/devel/gnome-js-common/pkg-descr (props changed) head/devel/gnome-vfs-monikers/pkg-descr (props changed) head/devel/gnome-vfs-reference/pkg-descr (props changed) head/devel/gnome-vfs/pkg-descr (props changed) head/devel/gnome-vfsmm/pkg-descr (props changed) head/devel/gnome2-hacker-tools/pkg-descr (props changed) head/devel/gnucflow/pkg-descr (props changed) head/devel/gnulib/pkg-descr (props changed) head/devel/gnulibiberty/pkg-descr (props changed) head/devel/gnustep-make/pkg-descr (props changed) head/devel/gnustep/pkg-descr (props changed) head/devel/go-pretty/pkg-descr (props changed) head/devel/gob2/pkg-descr (props changed) head/devel/gobject-introspection/pkg-descr (props changed) head/devel/goffice/pkg-descr (props changed) head/devel/goffice010/pkg-descr (props changed) head/devel/google-gdata/pkg-descr (props changed) head/devel/google-perftools/pkg-descr (props changed) head/devel/google-sparsehash/pkg-descr (props changed) head/devel/google-styleguide/pkg-descr (props changed) head/devel/googlemock/pkg-descr (props changed) head/devel/googletest/pkg-descr (props changed) head/devel/goprotobuf/pkg-descr (props changed) head/devel/gorm/pkg-descr (props changed) head/devel/gperf/pkg-descr (props changed) head/devel/gprbuild/pkg-descr (props changed) head/devel/gps/pkg-descr (props changed) head/devel/gpsim/pkg-descr (props changed) head/devel/gsettings-desktop-schemas/pkg-descr (props changed) head/devel/gsoap/pkg-descr (props changed) head/devel/gtgt/pkg-descr (props changed) head/devel/gtkparasite/pkg-descr (props changed) head/devel/gtranslator/pkg-descr (props changed) head/devel/guichan/pkg-descr (props changed) head/devel/guikachu/pkg-descr (props changed) head/devel/guile-lib/pkg-descr (props changed) head/devel/guiloader-c++/pkg-descr (props changed) head/devel/guiloader/pkg-descr (props changed) head/devel/gvfs/pkg-descr (props changed) head/devel/gwenhywfar/pkg-descr (props changed) head/devel/gzstream/pkg-descr (props changed) head/devel/hachoir-core/pkg-descr (props changed) head/devel/hachoir-parser/pkg-descr (props changed) head/devel/hachoir-regex/pkg-descr (props changed) head/devel/happydoc/pkg-descr (props changed) head/devel/hapy/pkg-descr (props changed) head/devel/hcs12mem/pkg-descr (props changed) head/devel/hexcompare/pkg-descr (props changed) head/devel/hgview/pkg-descr (props changed) head/devel/highlighterkit/pkg-descr (props changed) head/devel/horde-content/pkg-descr (props changed) head/devel/horde-timeobjects/pkg-descr (props changed) head/devel/horde-whups/pkg-descr (props changed) head/devel/horde3-chora/pkg-descr (props changed) head/devel/horde3-whups/pkg-descr (props changed) head/devel/hp48cc/pkg-descr (props changed) head/devel/hp48xgcc/pkg-descr (props changed) head/devel/hs-BNFC/pkg-descr (props changed) head/devel/hs-Boolean/pkg-descr (props changed) head/devel/hs-ConfigFile/pkg-descr (props changed) head/devel/hs-HUnit/pkg-descr (props changed) head/devel/hs-IORefCAS/pkg-descr (props changed) head/devel/hs-IfElse/pkg-descr (props changed) head/devel/hs-MaybeT/pkg-descr (props changed) head/devel/hs-MemoTrie/pkg-descr (props changed) head/devel/hs-MissingH/pkg-descr (props changed) head/devel/hs-MonadCatchIO-mtl/pkg-descr (props changed) head/devel/hs-MonadCatchIO-transformers/pkg-descr (props changed) head/devel/hs-ObjectName/pkg-descr (props changed) head/devel/hs-PSQueue/pkg-descr (props changed) head/devel/hs-QuickCheck/pkg-descr (props changed) head/devel/hs-StateVar/pkg-descr (props changed) head/devel/hs-Stream/pkg-descr (props changed) head/devel/hs-Tensor/pkg-descr (props changed) head/devel/hs-TypeCompose/pkg-descr (props changed) head/devel/hs-abstract-deque/pkg-descr (props changed) head/devel/hs-abstract-par/pkg-descr (props changed) head/devel/hs-alex/pkg-descr (props changed) head/devel/hs-ansi-terminal/pkg-descr (props changed) head/devel/hs-ansi-wl-pprint/pkg-descr (props changed) head/devel/hs-arrows/pkg-descr (props changed) head/devel/hs-asn1-data/pkg-descr (props changed) head/devel/hs-attempt/pkg-descr (props changed) head/devel/hs-base-unicode-symbols/pkg-descr (props changed) head/devel/hs-base16-bytestring/pkg-descr (props changed) head/devel/hs-base64-bytestring/pkg-descr (props changed) head/devel/hs-bits-atomic/pkg-descr (props changed) head/devel/hs-blaze-builder-conduit/pkg-descr (props changed) head/devel/hs-blaze-builder-enumerator/pkg-descr (props changed) head/devel/hs-blaze-builder/pkg-descr (props changed) head/devel/hs-blaze-textual/pkg-descr (props changed) head/devel/hs-bloomfilter/pkg-descr (props changed) head/devel/hs-bsd-sysctl/pkg-descr (props changed) head/devel/hs-byteorder/pkg-descr (props changed) head/devel/hs-bytestring-nums/pkg-descr (props changed) head/devel/hs-c2hs/pkg-descr (props changed) head/devel/hs-cabal-install/pkg-descr (props changed) head/devel/hs-cereal/pkg-descr (props changed) head/devel/hs-checkers/pkg-descr (props changed) head/devel/hs-cmdargs/pkg-descr (props changed) head/devel/hs-conduit/pkg-descr (props changed) head/devel/hs-configurator/pkg-descr (props changed) head/devel/hs-convertible/pkg-descr (props changed) head/devel/hs-cpphs/pkg-descr (props changed) head/devel/hs-darcs/pkg-descr (props changed) head/devel/hs-data-default/pkg-descr (props changed) head/devel/hs-datetime/pkg-descr (props changed) head/devel/hs-directory-tree/pkg-descr (props changed) head/devel/hs-dlist/pkg-descr (props changed) head/devel/hs-drift/pkg-descr (props changed) head/devel/hs-edit-distance/pkg-descr (props changed) head/devel/hs-enumerator/pkg-descr (props changed) head/devel/hs-failure/pkg-descr (props changed) head/devel/hs-fast-logger/pkg-descr (props changed) head/devel/hs-fgl/pkg-descr (props changed) head/devel/hs-file-embed/pkg-descr (props changed) head/devel/hs-filemanip/pkg-descr (props changed) head/devel/hs-filestore/pkg-descr (props changed) head/devel/hs-filesystem-conduit/pkg-descr (props changed) head/devel/hs-gconf/pkg-descr (props changed) head/devel/hs-ghc-events/pkg-descr (props changed) head/devel/hs-ghc-mtl/pkg-descr (props changed) head/devel/hs-ghc-paths/pkg-descr (props changed) head/devel/hs-gio/pkg-descr (props changed) head/devel/hs-git-annex/pkg-descr (props changed) head/devel/hs-glade/pkg-descr (props changed) head/devel/hs-glib/pkg-descr (props changed) head/devel/hs-gtk2hs-buildtools/pkg-descr (props changed) head/devel/hs-haddock/pkg-descr (props changed) head/devel/hs-happy/pkg-descr (props changed) head/devel/hs-hashable/pkg-descr (props changed) head/devel/hs-hashed-storage/pkg-descr (props changed) head/devel/hs-hashtables/pkg-descr (props changed) head/devel/hs-haskeline/pkg-descr (props changed) head/devel/hs-haskell-platform/pkg-descr (props changed) head/devel/hs-haskell-src-exts/pkg-descr (props changed) head/devel/hs-haskell-src/pkg-descr (props changed) head/devel/hs-hastache/pkg-descr (props changed) head/devel/hs-hint/pkg-descr (props changed) head/devel/hs-hlibev/pkg-descr (props changed) head/devel/hs-hoogle/pkg-descr (props changed) head/devel/hs-hslogger/pkg-descr (props changed) head/devel/hs-hspec/pkg-descr (props changed) head/devel/hs-language-c/pkg-descr (props changed) head/devel/hs-language-javascript/pkg-descr (props changed) head/devel/hs-largeword/pkg-descr (props changed) head/devel/hs-lazysmallcheck/pkg-descr (props changed) head/devel/hs-lifted-base/pkg-descr (props changed) head/devel/hs-logict/pkg-descr (props changed) head/devel/hs-mmap/pkg-descr (props changed) head/devel/hs-monad-control/pkg-descr (props changed) head/devel/hs-monad-par-extras/pkg-descr (props changed) head/devel/hs-monad-par/pkg-descr (props changed) head/devel/hs-mtl/pkg-descr (props changed) head/devel/hs-mueval/pkg-descr (props changed) head/devel/hs-murmur-hash/pkg-descr (props changed) head/devel/hs-parallel/pkg-descr (props changed) head/devel/hs-pcre-light/pkg-descr (props changed) head/devel/hs-pool-conduit/pkg-descr (props changed) head/devel/hs-primitive/pkg-descr (props changed) head/devel/hs-random/pkg-descr (props changed) head/devel/hs-ranges/pkg-descr (props changed) head/devel/hs-readline/pkg-descr (props changed) head/devel/hs-resource-pool/pkg-descr (props changed) head/devel/hs-resourcet/pkg-descr (props changed) head/devel/hs-safe/pkg-descr (props changed) head/devel/hs-show/pkg-descr (props changed) head/devel/hs-silently/pkg-descr (props changed) head/devel/hs-smallcheck/pkg-descr (props changed) head/devel/hs-split/pkg-descr (props changed) head/devel/hs-stm/pkg-descr (props changed) head/devel/hs-strict/pkg-descr (props changed) head/devel/hs-syb-with-class-instances-text/pkg-descr (props changed) head/devel/hs-syb-with-class/pkg-descr (props changed) head/devel/hs-syb/pkg-descr (props changed) head/devel/hs-system-fileio/pkg-descr (props changed) head/devel/hs-system-filepath/pkg-descr (props changed) head/devel/hs-tagged/pkg-descr (props changed) head/devel/hs-temporary/pkg-descr (props changed) head/devel/hs-terminfo/pkg-descr (props changed) head/devel/hs-test-framework-hunit/pkg-descr (props changed) head/devel/hs-test-framework-quickcheck2/pkg-descr (props changed) head/devel/hs-test-framework/pkg-descr (props changed) head/devel/hs-testpack/pkg-descr (props changed) head/devel/hs-text/pkg-descr (props changed) head/devel/hs-threadscope/pkg-descr (props changed) head/devel/hs-transformers-base/pkg-descr (props changed) head/devel/hs-transformers/pkg-descr (props changed) head/devel/hs-unamb/pkg-descr (props changed) head/devel/hs-uniplate/pkg-descr (props changed) head/devel/hs-unix-compat/pkg-descr (props changed) head/devel/hs-unordered-containers/pkg-descr (props changed) head/devel/hs-utf8-light/pkg-descr (props changed) head/devel/hs-utf8-string/pkg-descr (props changed) head/devel/hs-utility-ht/pkg-descr (props changed) head/devel/hs-uuagc-bootstrap/pkg-descr (props changed) head/devel/hs-uuagc-cabal/pkg-descr (props changed) head/devel/hs-uuagc/pkg-descr (props changed) head/devel/hs-uulib/pkg-descr (props changed) head/devel/hs-vault/pkg-descr (props changed) head/devel/hs-vector-algorithms/pkg-descr (props changed) head/devel/hs-vector/pkg-descr (props changed) head/devel/hs-void/pkg-descr (props changed) head/devel/htable/pkg-descr (props changed) head/devel/hwloc/pkg-descr (props changed) head/devel/hyena/pkg-descr (props changed) head/devel/ice/pkg-descr (props changed) head/devel/icmake/pkg-descr (props changed) head/devel/idutils/pkg-descr (props changed) head/devel/ifd-test/pkg-descr (props changed) head/devel/imake/pkg-descr (props changed) head/devel/inilib/pkg-descr (props changed) head/devel/iniparser/pkg-descr (props changed) head/devel/initutil/pkg-descr (props changed) head/devel/ioncube/pkg-descr (props changed) head/devel/ipython/pkg-descr (props changed) head/devel/ireport/pkg-descr (props changed) head/devel/itext/pkg-descr (props changed) head/devel/ixlib/pkg-descr (props changed) head/devel/jakarta-commons-configuration/pkg-descr (props changed) head/devel/jakarta-commons-daemon/pkg-descr (props changed) head/devel/jakarta-commons-io/pkg-descr (props changed) head/devel/jakarta-commons-jxpath/pkg-descr (props changed) head/devel/jakarta-commons-modeler/pkg-descr (props changed) head/devel/jam/pkg-descr (props changed) head/devel/jansson/pkg-descr (props changed) head/devel/java-findbugs/pkg-descr (props changed) head/devel/java-util-concurrent/pkg-descr (props changed) head/devel/javolution/pkg-descr (props changed) head/devel/jclassinfo/pkg-descr (props changed) head/devel/jcmdline/pkg-descr (props changed) head/devel/jech-dht/pkg-descr (props changed) head/devel/jenkins-lts/pkg-descr (props changed) head/devel/jenkins/pkg-descr (props changed) head/devel/jep/pkg-descr (props changed) head/devel/jiic/pkg-descr (props changed) head/devel/jline/pkg-descr (props changed) head/devel/jna/pkg-descr (props changed) head/devel/jrtplib/pkg-descr (props changed) head/devel/jsap/pkg-descr (props changed) head/devel/jsl/pkg-descr (props changed) head/devel/jsmin/pkg-descr (props changed) head/devel/json-c/pkg-descr (props changed) head/devel/json-glib/pkg-descr (props changed) head/devel/jtag/pkg-descr (props changed) head/devel/judy/pkg-descr (props changed) head/devel/jzmq/pkg-descr (props changed) head/devel/k8048/pkg-descr (props changed) head/devel/kBuild/pkg-descr (props changed) head/devel/kcachegrind/pkg-descr (props changed) head/devel/kdbg/pkg-descr (props changed) head/devel/kdebindings4/pkg-descr (props changed) head/devel/kdesdk4/pkg-descr (props changed) head/devel/kdesvn-kde4/pkg-descr (props changed) head/devel/kdevelop-pg-qt/pkg-descr (props changed) head/devel/kickassembler/pkg-descr (props changed) head/devel/kimwitu/pkg-descr (props changed) head/devel/kyra/pkg-descr (props changed) head/devel/lcov/pkg-descr (props changed) head/devel/leaktracer/pkg-descr (props changed) head/devel/lemon/pkg-descr (props changed) head/devel/lfcbase/pkg-descr (props changed) head/devel/lfcxml/pkg-descr (props changed) head/devel/libIDL/pkg-descr (props changed) head/devel/libPropList/pkg-descr (props changed) head/devel/libafterbase/pkg-descr (props changed) head/devel/libarena/pkg-descr (props changed) head/devel/libassa/pkg-descr (props changed) head/devel/libassetml/pkg-descr (props changed) head/devel/libast/pkg-descr (props changed) head/devel/libatomic_ops/pkg-descr (props changed) head/devel/libaura/pkg-descr (props changed) head/devel/libavl/pkg-descr (props changed) head/devel/libbegemot/pkg-descr (props changed) head/devel/libbfd/pkg-descr (props changed) head/devel/libbinio/pkg-descr (props changed) head/devel/libbnr/pkg-descr (props changed) head/devel/libbobcat/pkg-descr (props changed) head/devel/libbonobo-reference/pkg-descr (props changed) head/devel/libbonobo/pkg-descr (props changed) head/devel/libburn/pkg-descr (props changed) head/devel/libccid/pkg-descr (props changed) head/devel/libcfg/pkg-descr (props changed) head/devel/libcfu/pkg-descr (props changed) head/devel/libcheck/pkg-descr (props changed) head/devel/libchipcard/pkg-descr (props changed) head/devel/libcidr/pkg-descr (props changed) head/devel/libcii/pkg-descr (props changed) head/devel/libclaw/pkg-descr (props changed) head/devel/libcli/pkg-descr (props changed) head/devel/libconfig/pkg-descr (props changed) head/devel/libconfuse/pkg-descr (props changed) head/devel/libcwd/pkg-descr (props changed) head/devel/libdaemon/pkg-descr (props changed) head/devel/libdap/pkg-descr (props changed) head/devel/libdasm/pkg-descr (props changed) head/devel/libdatrie/pkg-descr (props changed) head/devel/libdbusmenu-qt/pkg-descr (props changed) head/devel/libdfui/pkg-descr (props changed) head/devel/libdict/pkg-descr (props changed) head/devel/libdisasm/pkg-descr (props changed) head/devel/libdisorder/pkg-descr (props changed) head/devel/libdispatch/pkg-descr (props changed) head/devel/libdlmalloc/pkg-descr (props changed) head/devel/libdlna/pkg-descr (props changed) head/devel/libdnsres/pkg-descr (props changed) head/devel/libdombey/pkg-descr (props changed) head/devel/libdouble-conversion/pkg-descr (props changed) head/devel/libds/pkg-descr (props changed) head/devel/libdsp/pkg-descr (props changed) head/devel/libdwarf/pkg-descr (props changed) head/devel/libedit/pkg-descr (props changed) head/devel/libee/pkg-descr (props changed) head/devel/libelf/pkg-descr (props changed) head/devel/libepp-nicbr/pkg-descr (props changed) head/devel/libestr/pkg-descr (props changed) head/devel/libev/pkg-descr (props changed) head/devel/libevent-hiphop/pkg-descr (props changed) head/devel/libevent/pkg-descr (props changed) head/devel/libevent2/pkg-descr (props changed) head/devel/libevt/pkg-descr (props changed) head/devel/libevtx/pkg-descr (props changed) head/devel/libewf/pkg-descr (props changed) head/devel/libexecinfo/pkg-descr (props changed) head/devel/libffi/pkg-descr (props changed) head/devel/libfortuna/pkg-descr (props changed) head/devel/libfreefare/pkg-descr (props changed) head/devel/libftdi/pkg-descr (props changed) head/devel/libg19/pkg-descr (props changed) head/devel/libg19draw/pkg-descr (props changed) head/devel/libgalago/pkg-descr (props changed) head/devel/libgamepad/pkg-descr (props changed) head/devel/libgconf-java/pkg-descr (props changed) head/devel/libgdata/pkg-descr (props changed) head/devel/libgee/pkg-descr (props changed) head/devel/libgee06/pkg-descr (props changed) head/devel/libgetline/pkg-descr (props changed) head/devel/libghthash/pkg-descr (props changed) head/devel/libgii/pkg-descr (props changed) head/devel/libgit2/pkg-descr (props changed) head/devel/libglade-java/pkg-descr (props changed) head/devel/libglade2-reference/pkg-descr (props changed) head/devel/libglade2/pkg-descr (props changed) head/devel/libglademm24/pkg-descr (props changed) head/devel/libgpc/pkg-descr (props changed) head/devel/libgsf/pkg-descr (props changed) head/devel/libgta/pkg-descr (props changed) head/devel/libgtop/pkg-descr (props changed) head/devel/libgutenfetch/pkg-descr (props changed) head/devel/libhash/pkg-descr (props changed) head/devel/libhid/pkg-descr (props changed) head/devel/libhoard/pkg-descr (props changed) head/devel/libhtp/pkg-descr (props changed) head/devel/libical/pkg-descr (props changed) head/devel/libinotify/pkg-descr (props changed) head/devel/libiqxmlrpc/pkg-descr (props changed) head/devel/libisofs/pkg-descr (props changed) head/devel/libixp/pkg-descr (props changed) head/devel/libjson++/pkg-descr (props changed) head/devel/libk8055/pkg-descr (props changed) head/devel/libklel/pkg-descr (props changed) head/devel/liblas/pkg-descr (props changed) head/devel/liblcfg/pkg-descr (props changed) head/devel/libleaftag/pkg-descr (props changed) head/devel/liblnk/pkg-descr (props changed) head/devel/liblogging/pkg-descr (props changed) head/devel/liblognorm/pkg-descr (props changed) head/devel/liblouis/pkg-descr (props changed) head/devel/liblouisxml/pkg-descr (props changed) head/devel/libltdl/pkg-descr (props changed) head/devel/libmaa/pkg-descr (props changed) head/devel/libmatheval/pkg-descr (props changed) head/devel/libmba/pkg-descr (props changed) head/devel/libmcs/pkg-descr (props changed) head/devel/libmimedir/pkg-descr (props changed) head/devel/libmonetra/pkg-descr (props changed) head/devel/libmowgli/pkg-descr (props changed) head/devel/libmpcbdm/pkg-descr (props changed) head/devel/libmsiecf/pkg-descr (props changed) head/devel/libmsocket/pkg-descr (props changed) head/devel/libmtrie/pkg-descr (props changed) head/devel/libnaji/pkg-descr (props changed) head/devel/libnotify/pkg-descr (props changed) head/devel/liboil/pkg-descr (props changed) head/devel/libol/pkg-descr (props changed) head/devel/libole2/pkg-descr (props changed) head/devel/liboobs/pkg-descr (props changed) head/devel/liboop/pkg-descr (props changed) head/devel/libopendaap/pkg-descr (props changed) head/devel/libopensync/pkg-descr (props changed) head/devel/libopensync022/pkg-descr (props changed) head/devel/libopkele/pkg-descr (props changed) head/devel/libowfat/pkg-descr (props changed) head/devel/libpafe-ruby/pkg-descr (props changed) head/devel/libpafe/pkg-descr (props changed) head/devel/libparserutils/pkg-descr (props changed) head/devel/libpasori/pkg-descr (props changed) head/devel/libpciaccess/pkg-descr (props changed) head/devel/libpdel/pkg-descr (props changed) head/devel/libpeak/pkg-descr (props changed) head/devel/libpff/pkg-descr (props changed) head/devel/libphish/pkg-descr (props changed) head/devel/libphk/pkg-descr (props changed) head/devel/libpo6/pkg-descr (props changed) head/devel/libpthread-stubs/pkg-descr (props changed) head/devel/librcc/pkg-descr (props changed) head/devel/librcd/pkg-descr (props changed) head/devel/libreadline-java/pkg-descr (props changed) head/devel/libredblack/pkg-descr (props changed) head/devel/librelp/pkg-descr (props changed) head/devel/librest/pkg-descr (props changed) head/devel/libruin/pkg-descr (props changed) head/devel/libs11n/pkg-descr (props changed) head/devel/libserver/pkg-descr (props changed) head/devel/libshhmsg/pkg-descr (props changed) head/devel/libshhopt/pkg-descr (props changed) head/devel/libsigc++12/pkg-descr (props changed) head/devel/libsigc++20/pkg-descr (props changed) head/devel/libsigcx/pkg-descr (props changed) head/devel/libsigrok/pkg-descr (props changed) head/devel/libsigrokdecode/pkg-descr (props changed) head/devel/libsigsegv/pkg-descr (props changed) head/devel/libsoup-gnome/pkg-descr (props changed) head/devel/libsoup-reference/pkg-descr (props changed) head/devel/libsoup/pkg-descr (props changed) head/devel/libstatgrab/pkg-descr (props changed) head/devel/libstrfunc/pkg-descr (props changed) head/devel/libstroke/pkg-descr (props changed) head/devel/libsysinfo/pkg-descr (props changed) head/devel/libtai/pkg-descr (props changed) head/devel/libtap/pkg-descr (props changed) head/devel/libtar/pkg-descr (props changed) head/devel/libtecla/pkg-descr (props changed) head/devel/libtool/pkg-descr (props changed) head/devel/libtpl/pkg-descr (props changed) head/devel/libublio/pkg-descr (props changed) head/devel/libukcprog/pkg-descr (props changed) head/devel/libunicode/pkg-descr (props changed) head/devel/libuninum/pkg-descr (props changed) head/devel/libunistring/pkg-descr (props changed) head/devel/libunwind/pkg-descr (props changed) head/devel/libvc/pkg-descr (props changed) head/devel/libvirt-glib/pkg-descr (props changed) head/devel/libvirt-java/pkg-descr (props changed) head/devel/libvirt/pkg-descr (props changed) head/devel/libvolume_id/pkg-descr (props changed) head/devel/libvshadow/pkg-descr (props changed) head/devel/libwfut/pkg-descr (props changed) head/devel/libx86/pkg-descr (props changed) head/devel/libxalloc/pkg-descr (props changed) head/devel/libxs/pkg-descr (props changed) head/devel/libytnef/pkg-descr (props changed) head/devel/libzrtpcpp/pkg-descr (props changed) head/devel/libzvbi/pkg-descr (props changed) head/devel/linux-f10-ncurses-base/pkg-descr (props changed) head/devel/linux-kmod-compat/pkg-descr (props changed) head/devel/linux_kdump/pkg-descr (props changed) head/devel/lion/pkg-descr (props changed) head/devel/llvm-devel/pkg-descr (props changed) head/devel/llvm31/pkg-descr (props changed) head/devel/llvm32/pkg-descr (props changed) head/devel/llvm33/pkg-descr (props changed) head/devel/llvm34/pkg-descr (props changed) head/devel/lmdbg/pkg-descr (props changed) head/devel/lndir/pkg-descr (props changed) head/devel/log4c/pkg-descr (props changed) head/devel/log4cplus/pkg-descr (props changed) head/devel/log4cpp/pkg-descr (props changed) head/devel/log4j/pkg-descr (props changed) head/devel/log4net/pkg-descr (props changed) head/devel/log4sh/pkg-descr (props changed) head/devel/log4shib/pkg-descr (props changed) head/devel/loki/pkg-descr (props changed) head/devel/looks/pkg-descr (props changed) head/devel/love/pkg-descr (props changed) head/devel/love07/pkg-descr (props changed) head/devel/love5/pkg-descr (props changed) head/devel/lpc21isp/pkg-descr (props changed) head/devel/lrmi/pkg-descr (props changed) head/devel/lua-alien/pkg-descr (props changed) head/devel/lua-bitlib/pkg-descr (props changed) head/devel/lua-cjson/pkg-descr (props changed) head/devel/lua-gettext/pkg-descr (props changed) head/devel/lua-posix/pkg-descr (props changed) head/devel/lua-pty/pkg-descr (props changed) head/devel/lua-rds-parser/pkg-descr (props changed) head/devel/lua-redis-parser/pkg-descr (props changed) head/devel/lua-sysctl/pkg-descr (props changed) head/devel/luabind/pkg-descr (props changed) head/devel/luafilesystem/pkg-descr (props changed) head/devel/luajava/pkg-descr (props changed) head/devel/lwp/pkg-descr (props changed) head/devel/lxr/pkg-descr (props changed) head/devel/m17n-docs/pkg-descr (props changed) head/devel/m4/pkg-descr (props changed) head/devel/m6811-binutils/pkg-descr (props changed) head/devel/magit/pkg-descr (props changed) head/devel/make++/pkg-descr (props changed) head/devel/mate-common/pkg-descr (props changed) head/devel/matreshka/pkg-descr (props changed) head/devel/maven-ant-tasks/pkg-descr (props changed) head/devel/maven-wrapper/pkg-descr (props changed) head/devel/maven2/pkg-descr (props changed) head/devel/maven3/pkg-descr (props changed) head/devel/maven31/pkg-descr (props changed) head/devel/mcpp/pkg-descr (props changed) head/devel/meck/pkg-descr (props changed) head/devel/memcheck/pkg-descr (props changed) head/devel/menhir/pkg-descr (props changed) head/devel/mercator/pkg-descr (props changed) head/devel/mercurial/pkg-descr (props changed) head/devel/mercurialeclipse/pkg-descr (props changed) head/devel/meta-cvs/pkg-descr (props changed) head/devel/mico/pkg-descr (props changed) head/devel/mime/pkg-descr (props changed) head/devel/mimir/pkg-descr (props changed) head/devel/mingw32-bin-msvcrt/pkg-descr (props changed) head/devel/mingw32-binutils/pkg-descr (props changed) head/devel/mingw32-directx/pkg-descr (props changed) head/devel/mingw32-gcc/pkg-descr (props changed) head/devel/mingw32-libffi/pkg-descr (props changed) head/devel/mingw32-libyaml/pkg-descr (props changed) head/devel/mingw32-openssl/pkg-descr (props changed) head/devel/mingw32-pdcurses/pkg-descr (props changed) head/devel/mingw32-pthreads/pkg-descr (props changed) head/devel/mingw32-zlib/pkg-descr (props changed) head/devel/mk-configure/pkg-descr (props changed) head/devel/mk/pkg-descr (props changed) head/devel/mkcmd/pkg-descr (props changed) head/devel/ml-doc/pkg-descr (props changed) head/devel/mm-common/pkg-descr (props changed) head/devel/mm/pkg-descr (props changed) head/devel/mono-addins/pkg-descr (props changed) head/devel/monodevelop-database/pkg-descr (props changed) head/devel/monodevelop/pkg-descr (props changed) head/devel/monotone-viz/pkg-descr (props changed) head/devel/monotone/pkg-descr (props changed) head/devel/motor/pkg-descr (props changed) head/devel/mpatrol/pkg-descr (props changed) head/devel/mph/pkg-descr (props changed) head/devel/mq4cpp/pkg-descr (props changed) head/devel/msgpack/pkg-descr (props changed) head/devel/msp430-binutils/pkg-descr (props changed) head/devel/msp430-gcc/pkg-descr (props changed) head/devel/msp430-gcc3/pkg-descr (props changed) head/devel/msp430-gdb/pkg-descr (props changed) head/devel/msp430-libc/pkg-descr (props changed) head/devel/msp430mcu/pkg-descr (props changed) head/devel/mspdebug/pkg-descr (props changed) head/devel/msrc0/pkg-descr (props changed) head/devel/nana/pkg-descr (props changed) head/devel/nasm/pkg-descr (props changed) head/devel/naturaldocs/pkg-descr (props changed) head/devel/ncc/pkg-descr (props changed) head/devel/ncnf/pkg-descr (props changed) head/devel/ncurses/pkg-descr (props changed) head/devel/ndesk-dbus-glib/pkg-descr (props changed) head/devel/ndesk-dbus/pkg-descr (props changed) head/devel/ndesk-options/pkg-descr (props changed) head/devel/nemiver/pkg-descr (props changed) head/devel/netscape-java40/pkg-descr (props changed) head/devel/newfile/pkg-descr (props changed) head/devel/newt/pkg-descr (props changed) head/devel/nglogc/pkg-descr (props changed) head/devel/nini/pkg-descr (props changed) head/devel/ninja/pkg-descr (props changed) head/devel/node-thrift/pkg-descr (props changed) head/devel/notify-sharp/pkg-descr (props changed) head/devel/noweb/pkg-descr (props changed) head/devel/npth/pkg-descr (props changed) head/devel/nspr/pkg-descr (props changed) head/devel/nxt-python/pkg-descr (props changed) head/devel/obby/pkg-descr (props changed) head/devel/obfuscatejs/pkg-descr (props changed) head/devel/ocaml-annexlib/pkg-descr (props changed) head/devel/ocaml-calendar/pkg-descr (props changed) head/devel/ocaml-camljava/pkg-descr (props changed) head/devel/ocaml-camlp5/pkg-descr (props changed) head/devel/ocaml-camomile-examples/pkg-descr (props changed) head/devel/ocaml-camomile/pkg-descr (props changed) head/devel/ocaml-classes/pkg-descr (props changed) head/devel/ocaml-cppo/pkg-descr (props changed) head/devel/ocaml-deriving-ocsigen/pkg-descr (props changed) head/devel/ocaml-equeue/pkg-descr (props changed) head/devel/ocaml-event/pkg-descr (props changed) head/devel/ocaml-extlib/pkg-descr (props changed) head/devel/ocaml-findlib/pkg-descr (props changed) head/devel/ocaml-lwt/pkg-descr (props changed) head/devel/ocaml-magic/pkg-descr (props changed) head/devel/ocaml-opam/pkg-descr (props changed) head/devel/ocaml-ounit/pkg-descr (props changed) head/devel/ocaml-pcre/pkg-descr (props changed) head/devel/ocaml-react/pkg-descr (props changed) head/devel/ocaml-sdl/pkg-descr (props changed) head/devel/ocaml-sem/pkg-descr (props changed) head/devel/ocaml-ulex/pkg-descr (props changed) head/devel/ocaml-xstrp4/pkg-descr (props changed) head/devel/ocamlweb/pkg-descr (props changed) head/devel/ocfpcsc/pkg-descr (props changed) head/devel/ode-devel/pkg-descr (props changed) head/devel/ode/pkg-descr (props changed) head/devel/ois/pkg-descr (props changed) head/devel/omake/pkg-descr (props changed) head/devel/omniNotify/pkg-descr (props changed) head/devel/omniORB/pkg-descr (props changed) head/devel/oniguruma4/pkg-descr (props changed) head/devel/oniguruma5/pkg-descr (props changed) head/devel/open-beagle/pkg-descr (props changed) head/devel/open-usp-tukubai/pkg-descr (props changed) head/devel/opencl/pkg-descr (props changed) head/devel/opencvs/pkg-descr (props changed) head/devel/opengrok/pkg-descr (props changed) head/devel/openocd/pkg-descr (props changed) head/devel/openwince-include/pkg-descr (props changed) head/devel/openzz/pkg-descr (props changed) head/devel/orbitcpp/pkg-descr (props changed) head/devel/orc/pkg-descr (props changed) head/devel/oserl/pkg-descr (props changed) head/devel/ossp-al/pkg-descr (props changed) head/devel/ossp-cfg/pkg-descr (props changed) head/devel/ossp-ex/pkg-descr (props changed) head/devel/ossp-l2/pkg-descr (props changed) head/devel/ossp-val/pkg-descr (props changed) head/devel/ossp-var/pkg-descr (props changed) head/devel/ossp-xds/pkg-descr (props changed) head/devel/p4.el/pkg-descr (props changed) head/devel/p4/pkg-descr (props changed) head/devel/p4api/pkg-descr (props changed) head/devel/p4d/pkg-descr (props changed) head/devel/p4db/pkg-descr (props changed) head/devel/p4delta/pkg-descr (props changed) head/devel/p4ftpd/pkg-descr (props changed) head/devel/p4genpatch/pkg-descr (props changed) head/devel/p4p/pkg-descr (props changed) head/devel/p4web/pkg-descr (props changed) head/devel/p5-AI-Pathfinding-AStar/pkg-descr (props changed) head/devel/p5-AI-Prolog/pkg-descr (props changed) head/devel/p5-Acme-Comment/pkg-descr (props changed) head/devel/p5-Acme-Damn/pkg-descr (props changed) head/devel/p5-Acme-MetaSyntactic/pkg-descr (props changed) head/devel/p5-Agent/pkg-descr (props changed) head/devel/p5-Algorithm-Accounting/pkg-descr (props changed) head/devel/p5-Algorithm-Annotate/pkg-descr (props changed) head/devel/p5-Algorithm-Bucketizer/pkg-descr (props changed) head/devel/p5-Algorithm-C3/pkg-descr (props changed) head/devel/p5-Algorithm-ChooseSubsets/pkg-descr (props changed) head/devel/p5-Algorithm-Dependency-Objects/pkg-descr (props changed) head/devel/p5-Algorithm-Diff/pkg-descr (props changed) head/devel/p5-Algorithm-Evolutionary/pkg-descr (props changed) head/devel/p5-Algorithm-IncludeExclude/pkg-descr (props changed) head/devel/p5-Algorithm-Interval2Prefix/pkg-descr (props changed) head/devel/p5-Algorithm-LCS/pkg-descr (props changed) head/devel/p5-Algorithm-LUHN/pkg-descr (props changed) head/devel/p5-Algorithm-Merge/pkg-descr (props changed) head/devel/p5-Algorithm-MinMax/pkg-descr (props changed) head/devel/p5-Algorithm-Numerical-Shuffle/pkg-descr (props changed) head/devel/p5-Alias/pkg-descr (props changed) head/devel/p5-Alzabo-GUI-Mason/pkg-descr (props changed) head/devel/p5-Alzabo/pkg-descr (props changed) head/devel/p5-Any-Moose-Convert/pkg-descr (props changed) head/devel/p5-Any-Moose/pkg-descr (props changed) head/devel/p5-AnyData/pkg-descr (props changed) head/devel/p5-AnyEvent-AIO/pkg-descr (props changed) head/devel/p5-AnyEvent-Connection/pkg-descr (props changed) head/devel/p5-AnyEvent-DBI-Abstract/pkg-descr (props changed) head/devel/p5-AnyEvent-DBI/pkg-descr (props changed) head/devel/p5-AnyEvent-DBus/pkg-descr (props changed) head/devel/p5-AnyEvent-Filesys-Notify/pkg-descr (props changed) head/devel/p5-AnyEvent-Graphite/pkg-descr (props changed) head/devel/p5-AnyEvent-I3/pkg-descr (props changed) head/devel/p5-AnyEvent-MessagePack/pkg-descr (props changed) head/devel/p5-AnyEvent-RPC/pkg-descr (props changed) head/devel/p5-AnyEvent-Run/pkg-descr (props changed) head/devel/p5-AnyEvent-Subprocess/pkg-descr (props changed) head/devel/p5-AnyEvent-Worker/pkg-descr (props changed) head/devel/p5-AnyMQ/pkg-descr (props changed) head/devel/p5-App-Build/pkg-descr (props changed) head/devel/p5-App-CLI-Extension/pkg-descr (props changed) head/devel/p5-App-CLI/pkg-descr (props changed) head/devel/p5-App-Cmd/pkg-descr (props changed) head/devel/p5-App-Control/pkg-descr (props changed) head/devel/p5-App-FatPacker/pkg-descr (props changed) head/devel/p5-App-Info/pkg-descr (props changed) head/devel/p5-App-SVN-Bisect/pkg-descr (props changed) head/devel/p5-App-cpanminus/pkg-descr (props changed) head/devel/p5-App-scan_prereqs_cpanfile/pkg-descr (props changed) head/devel/p5-AppConfig-Std/pkg-descr (props changed) head/devel/p5-AppConfig/pkg-descr (props changed) head/devel/p5-Array-Group/pkg-descr (props changed) head/devel/p5-Array-Iterator/pkg-descr (props changed) head/devel/p5-Array-Unique/pkg-descr (props changed) head/devel/p5-Array-Window/pkg-descr (props changed) head/devel/p5-Async-MergePoint/pkg-descr (props changed) head/devel/p5-AtExit/pkg-descr (props changed) head/devel/p5-Attribute-Handlers-Prospective/pkg-descr (props changed) head/devel/p5-Attribute-Handlers/pkg-descr (props changed) head/devel/p5-Attribute-Persistent/pkg-descr (props changed) head/devel/p5-AutoLoader/pkg-descr (props changed) head/devel/p5-AutoXS-Header/pkg-descr (props changed) head/devel/p5-B-Compiling/pkg-descr (props changed) head/devel/p5-B-Deobfuscate/pkg-descr (props changed) head/devel/p5-B-Generate/pkg-descr (props changed) head/devel/p5-B-Graph/pkg-descr (props changed) head/devel/p5-B-Hooks-EndOfScope/pkg-descr (props changed) head/devel/p5-B-Hooks-OP-Annotation/pkg-descr (props changed) head/devel/p5-B-Hooks-OP-Check-EntersubForCV/pkg-descr (props changed) head/devel/p5-B-Hooks-OP-PPAddr/pkg-descr (props changed) head/devel/p5-B-Keywords/pkg-descr (props changed) head/devel/p5-B-Size2/pkg-descr (props changed) head/devel/p5-B-Utils/pkg-descr (props changed) head/devel/p5-BFD/pkg-descr (props changed) head/devel/p5-BS-Event/pkg-descr (props changed) head/devel/p5-BSD-devstat/pkg-descr (props changed) head/devel/p5-BSD-stat/pkg-descr (props changed) head/devel/p5-BZ-Client/pkg-descr (props changed) head/devel/p5-Badger/pkg-descr (props changed) head/devel/p5-Benchmark-Timer/pkg-descr (props changed) head/devel/p5-Best/pkg-descr (props changed) head/devel/p5-Bread-Board-Declare/pkg-descr (props changed) head/devel/p5-Bread-Board/pkg-descr (props changed) head/devel/p5-Bundle-Perl6/pkg-descr (props changed) head/devel/p5-CHI/pkg-descr (props changed) head/devel/p5-CLASS/pkg-descr (props changed) head/devel/p5-CPAN-Changes/pkg-descr (props changed) head/devel/p5-CPAN-Checksums/pkg-descr (props changed) head/devel/p5-CPAN-DistnameInfo/pkg-descr (props changed) head/devel/p5-CPAN-Inject/pkg-descr (props changed) head/devel/p5-CPAN-Meta-Check/pkg-descr (props changed) head/devel/p5-CPAN-Meta-Requirements/pkg-descr (props changed) head/devel/p5-CPAN-Meta-YAML/pkg-descr (props changed) head/devel/p5-CPAN-Meta/pkg-descr (props changed) head/devel/p5-CPAN-Mini/pkg-descr (props changed) head/devel/p5-CPAN-Recent-Uploads/pkg-descr (props changed) head/devel/p5-CPAN-Reporter/pkg-descr (props changed) head/devel/p5-CPAN-SQLite/pkg-descr (props changed) head/devel/p5-CPAN-Site/pkg-descr (props changed) head/devel/p5-CPAN-Uploader/pkg-descr (props changed) head/devel/p5-CPAN-YACSmoke/pkg-descr (props changed) head/devel/p5-CPANPLUS-Dist-Build/pkg-descr (props changed) head/devel/p5-CPS/pkg-descr (props changed) head/devel/p5-Cache-AgainstFile/pkg-descr (props changed) head/devel/p5-Cache-Cache/pkg-descr (props changed) head/devel/p5-Cache-FastMmap/pkg-descr (props changed) head/devel/p5-Cache-LRU/pkg-descr (props changed) head/devel/p5-Cache-Memcached-Tie/pkg-descr (props changed) head/devel/p5-Cache-Simple-TimedExpiry/pkg-descr (props changed) head/devel/p5-Cache/pkg-descr (props changed) head/devel/p5-Cairo-GObject/pkg-descr (props changed) head/devel/p5-Calendar-Simple/pkg-descr (props changed) head/devel/p5-Capture-Tiny/pkg-descr (props changed) head/devel/p5-Carp-Always-Color/pkg-descr (props changed) head/devel/p5-Carp-Always/pkg-descr (props changed) head/devel/p5-Carp-Assert/pkg-descr (props changed) head/devel/p5-Carp-Clan-Share/pkg-descr (props changed) head/devel/p5-Carp-Clan/pkg-descr (props changed) head/devel/p5-Carp-Datum/pkg-descr (props changed) head/devel/p5-Carp/pkg-descr (props changed) head/devel/p5-Check-ISA/pkg-descr (props changed) head/devel/p5-Child/pkg-descr (props changed) head/devel/p5-Chooser/pkg-descr (props changed) head/devel/p5-Class-Accessor-Chained/pkg-descr (props changed) head/devel/p5-Class-Accessor-Children/pkg-descr (props changed) head/devel/p5-Class-Accessor-Constructor/pkg-descr (props changed) head/devel/p5-Class-Accessor-Fast-Contained/pkg-descr (props changed) head/devel/p5-Class-Accessor-Fast-XS/pkg-descr (props changed) head/devel/p5-Class-Accessor-Grouped/pkg-descr (props changed) head/devel/p5-Class-Accessor-Lite/pkg-descr (props changed) head/devel/p5-Class-Accessor-Lvalue/pkg-descr (props changed) head/devel/p5-Class-Accessor/pkg-descr (props changed) head/devel/p5-Class-AlzaboWrapper/pkg-descr (props changed) head/devel/p5-Class-ArrayObjects/pkg-descr (props changed) head/devel/p5-Class-Autouse/pkg-descr (props changed) head/devel/p5-Class-Base/pkg-descr (props changed) head/devel/p5-Class-BlackHole/pkg-descr (props changed) head/devel/p5-Class-C3-Adopt-NEXT/pkg-descr (props changed) head/devel/p5-Class-C3-Componentised/pkg-descr (props changed) head/devel/p5-Class-C3-XS/pkg-descr (props changed) head/devel/p5-Class-C3/pkg-descr (props changed) head/devel/p5-Class-Closure/pkg-descr (props changed) head/devel/p5-Class-CodeStyler/pkg-descr (props changed) head/devel/p5-Class-Container/pkg-descr (props changed) head/devel/p5-Class-Contract/pkg-descr (props changed) head/devel/p5-Class-Data-Inheritable/pkg-descr (props changed) head/devel/p5-Class-Date/pkg-descr (props changed) head/devel/p5-Class-Declare/pkg-descr (props changed) head/devel/p5-Class-Default/pkg-descr (props changed) head/devel/p5-Class-Delegation/pkg-descr (props changed) head/devel/p5-Class-ErrorHandler/pkg-descr (props changed) head/devel/p5-Class-Factory-Util/pkg-descr (props changed) head/devel/p5-Class-Factory/pkg-descr (props changed) head/devel/p5-Class-Field/pkg-descr (props changed) head/devel/p5-Class-Forward/pkg-descr (props changed) head/devel/p5-Class-Generate/pkg-descr (props changed) head/devel/p5-Class-Handle/pkg-descr (props changed) head/devel/p5-Class-ISA/pkg-descr (props changed) head/devel/p5-Class-Inner/pkg-descr (props changed) head/devel/p5-Class-Inspector/pkg-descr (props changed) head/devel/p5-Class-Interfaces/pkg-descr (props changed) head/devel/p5-Class-Load-XS/pkg-descr (props changed) head/devel/p5-Class-Loader/pkg-descr (props changed) head/devel/p5-Class-MakeMethods/pkg-descr (props changed) head/devel/p5-Class-Method-Modifiers-Fast/pkg-descr (props changed) head/devel/p5-Class-Method-Modifiers/pkg-descr (props changed) head/devel/p5-Class-MethodMapper/pkg-descr (props changed) head/devel/p5-Class-Mix/pkg-descr (props changed) head/devel/p5-Class-Mixin/pkg-descr (props changed) head/devel/p5-Class-MixinFactory/pkg-descr (props changed) head/devel/p5-Class-Multimethods/pkg-descr (props changed) head/devel/p5-Class-OOorNO/pkg-descr (props changed) head/devel/p5-Class-ObjectTemplate-DB/pkg-descr (props changed) head/devel/p5-Class-ObjectTemplate/pkg-descr (props changed) head/devel/p5-Class-Observable/pkg-descr (props changed) head/devel/p5-Class-Prototyped/pkg-descr (props changed) head/devel/p5-Class-ReturnValue/pkg-descr (props changed) head/devel/p5-Class-Roles/pkg-descr (props changed) head/devel/p5-Class-STL-Containers/pkg-descr (props changed) head/devel/p5-Class-Singleton/pkg-descr (props changed) head/devel/p5-Class-Spiffy/pkg-descr (props changed) head/devel/p5-Class-StateMachine/pkg-descr (props changed) head/devel/p5-Class-Std-Fast/pkg-descr (props changed) head/devel/p5-Class-Std/pkg-descr (props changed) head/devel/p5-Class-StrongSingleton/pkg-descr (props changed) head/devel/p5-Class-Tiny/pkg-descr (props changed) head/devel/p5-Class-Tom/pkg-descr (props changed) head/devel/p5-Class-Trigger/pkg-descr (props changed) head/devel/p5-Class-Unload/pkg-descr (props changed) head/devel/p5-Class-Virtual/pkg-descr (props changed) head/devel/p5-Class-WhiteHole/pkg-descr (props changed) head/devel/p5-Class-Workflow/pkg-descr (props changed) head/devel/p5-Class-XSAccessor-Array/pkg-descr (props changed) head/devel/p5-Class-XSAccessor/pkg-descr (props changed) head/devel/p5-Clone-PP/pkg-descr (props changed) head/devel/p5-Clone/pkg-descr (props changed) head/devel/p5-Code-Perl/pkg-descr (props changed) head/devel/p5-Commands-Guarded/pkg-descr (props changed) head/devel/p5-Config-ApacheFormat/pkg-descr (props changed) head/devel/p5-Config-Auto/pkg-descr (props changed) head/devel/p5-Config-General/pkg-descr (props changed) head/devel/p5-Config-GitLike/pkg-descr (props changed) head/devel/p5-Config-Grammar/pkg-descr (props changed) head/devel/p5-Config-INI/pkg-descr (props changed) head/devel/p5-Config-IniFiles/pkg-descr (props changed) head/devel/p5-Config-JFDI/pkg-descr (props changed) head/devel/p5-Config-MVP-Reader-INI/pkg-descr (props changed) head/devel/p5-Config-MVP/pkg-descr (props changed) head/devel/p5-Config-Model/pkg-descr (props changed) head/devel/p5-Config-MySQL/pkg-descr (props changed) head/devel/p5-Config-Objective/pkg-descr (props changed) head/devel/p5-Config-Options/pkg-descr (props changed) head/devel/p5-Config-Perl-V/pkg-descr (props changed) head/devel/p5-Config-Properties/pkg-descr (props changed) head/devel/p5-Config-Setting/pkg-descr (props changed) head/devel/p5-Config-Simple/pkg-descr (props changed) head/devel/p5-Config-Std/pkg-descr (props changed) head/devel/p5-Config-Tiny/pkg-descr (props changed) head/devel/p5-Config-Wrest/pkg-descr (props changed) head/devel/p5-ConfigReader-Simple/pkg-descr (props changed) head/devel/p5-ConfigReader/pkg-descr (props changed) head/devel/p5-Const-Fast/pkg-descr (props changed) head/devel/p5-Context-Preserve/pkg-descr (props changed) head/devel/p5-Curses-Application/pkg-descr (props changed) head/devel/p5-Curses-Forms/pkg-descr (props changed) head/devel/p5-Curses-UI/pkg-descr (props changed) head/devel/p5-Curses-Widgets/pkg-descr (props changed) head/devel/p5-Curses/pkg-descr (props changed) head/devel/p5-Cvs/pkg-descr (props changed) head/devel/p5-DB_File-Lock/pkg-descr (props changed) head/devel/p5-Daemon-Control/pkg-descr (props changed) head/devel/p5-Dancer-Debug/pkg-descr (props changed) head/devel/p5-Danga-Socket-Callback/pkg-descr (props changed) head/devel/p5-Danga-Socket/pkg-descr (props changed) head/devel/p5-Data-ACL/pkg-descr (props changed) head/devel/p5-Data-Alias/pkg-descr (props changed) head/devel/p5-Data-Average/pkg-descr (props changed) head/devel/p5-Data-Bind/pkg-descr (props changed) head/devel/p5-Data-ClearSilver-HDF/pkg-descr (props changed) head/devel/p5-Data-Clone/pkg-descr (props changed) head/devel/p5-Data-Compare/pkg-descr (props changed) head/devel/p5-Data-Domain/pkg-descr (props changed) head/devel/p5-Data-Dump-Streamer/pkg-descr (props changed) head/devel/p5-Data-Dump/pkg-descr (props changed) head/devel/p5-Data-DumpXML/pkg-descr (props changed) head/devel/p5-Data-Dumper-Simple/pkg-descr (props changed) head/devel/p5-Data-Dumper/pkg-descr (props changed) head/devel/p5-Data-Flow/pkg-descr (props changed) head/devel/p5-Data-GUID/pkg-descr (props changed) head/devel/p5-Data-HashArray/pkg-descr (props changed) head/devel/p5-Data-HexDump/pkg-descr (props changed) head/devel/p5-Data-Hexdumper/pkg-descr (props changed) head/devel/p5-Data-Hierarchy/pkg-descr (props changed) head/devel/p5-Data-Inherited/pkg-descr (props changed) head/devel/p5-Data-Integer/pkg-descr (props changed) head/devel/p5-Data-JavaScript-Anon/pkg-descr (props changed) head/devel/p5-Data-Lazy/pkg-descr (props changed) head/devel/p5-Data-Localize/pkg-descr (props changed) head/devel/p5-Data-MessagePack-Stream/pkg-descr (props changed) head/devel/p5-Data-MessagePack/pkg-descr (props changed) head/devel/p5-Data-Miscellany/pkg-descr (props changed) head/devel/p5-Data-Model/pkg-descr (props changed) head/devel/p5-Data-OptList/pkg-descr (props changed) head/devel/p5-Data-Page-NoTotalEntries/pkg-descr (props changed) head/devel/p5-Data-Path/pkg-descr (props changed) head/devel/p5-Data-Peek/pkg-descr (props changed) head/devel/p5-Data-Printer/pkg-descr (props changed) head/devel/p5-Data-Properties/pkg-descr (props changed) head/devel/p5-Data-Rand/pkg-descr (props changed) head/devel/p5-Data-Record/pkg-descr (props changed) head/devel/p5-Data-Recursive-Encode/pkg-descr (props changed) head/devel/p5-Data-Remember/pkg-descr (props changed) head/devel/p5-Data-Rmap/pkg-descr (props changed) head/devel/p5-Data-RoundRobin/pkg-descr (props changed) head/devel/p5-Data-Rx/pkg-descr (props changed) head/devel/p5-Data-SExpression/pkg-descr (props changed) head/devel/p5-Data-Section-Simple/pkg-descr (props changed) head/devel/p5-Data-Section/pkg-descr (props changed) head/devel/p5-Data-Serializer/pkg-descr (props changed) head/devel/p5-Data-ShowTable/pkg-descr (props changed) head/devel/p5-Data-Stag/pkg-descr (props changed) head/devel/p5-Data-Stream-Bulk/pkg-descr (props changed) head/devel/p5-Data-Swap/pkg-descr (props changed) head/devel/p5-Data-Table/pkg-descr (props changed) head/devel/p5-Data-Taxonomy-Tags/pkg-descr (props changed) head/devel/p5-Data-TemporaryBag/pkg-descr (props changed) head/devel/p5-Data-Throttler/pkg-descr (props changed) head/devel/p5-Data-Thunk/pkg-descr (props changed) head/devel/p5-Data-TreeDumper-Renderer-GTK/pkg-descr (props changed) head/devel/p5-Data-TreeDumper/pkg-descr (props changed) head/devel/p5-Data-Types/pkg-descr (props changed) head/devel/p5-Data-UUID/pkg-descr (props changed) head/devel/p5-Data-Uniqid/pkg-descr (props changed) head/devel/p5-Data-Util/pkg-descr (props changed) head/devel/p5-Data-Validate/pkg-descr (props changed) head/devel/p5-Data-Validator/pkg-descr (props changed) head/devel/p5-Data-Visitor-Encode/pkg-descr (props changed) head/devel/p5-Data-Visitor/pkg-descr (props changed) head/devel/p5-Data-Walk/pkg-descr (props changed) head/devel/p5-Date-Business/pkg-descr (props changed) head/devel/p5-Date-Calc-Iterator/pkg-descr (props changed) head/devel/p5-Date-Calc-XS/pkg-descr (props changed) head/devel/p5-Date-Calc/pkg-descr (props changed) head/devel/p5-Date-DayOfWeek/pkg-descr (props changed) head/devel/p5-Date-Easter/pkg-descr (props changed) head/devel/p5-Date-EzDate/pkg-descr (props changed) head/devel/p5-Date-Holidays-DK/pkg-descr (props changed) head/devel/p5-Date-ICal/pkg-descr (props changed) head/devel/p5-Date-ISO/pkg-descr (props changed) head/devel/p5-Date-Leapyear/pkg-descr (props changed) head/devel/p5-Date-Manip/pkg-descr (props changed) head/devel/p5-Date-Pcalc/pkg-descr (props changed) head/devel/p5-Date-Piece/pkg-descr (props changed) head/devel/p5-Date-Range/pkg-descr (props changed) head/devel/p5-Date-Roman/pkg-descr (props changed) head/devel/p5-Date-Simple/pkg-descr (props changed) head/devel/p5-DateConvert/pkg-descr (props changed) head/devel/p5-DateTime-Astro/pkg-descr (props changed) head/devel/p5-DateTime-Calendar-Christian/pkg-descr (props changed) head/devel/p5-DateTime-Calendar-Discordian/pkg-descr (props changed) head/devel/p5-DateTime-Calendar-FrenchRevolutionary/pkg-descr (props changed) head/devel/p5-DateTime-Calendar-Hebrew/pkg-descr (props changed) head/devel/p5-DateTime-Calendar-Julian/pkg-descr (props changed) head/devel/p5-DateTime-Calendar-Mayan/pkg-descr (props changed) head/devel/p5-DateTime-Calendar-Pataphysical/pkg-descr (props changed) head/devel/p5-DateTime-Event-Cron/pkg-descr (props changed) head/devel/p5-DateTime-Event-Easter/pkg-descr (props changed) head/devel/p5-DateTime-Event-ICal/pkg-descr (props changed) head/devel/p5-DateTime-Event-Lunar/pkg-descr (props changed) head/devel/p5-DateTime-Event-NameDay/pkg-descr (props changed) head/devel/p5-DateTime-Event-Random/pkg-descr (props changed) head/devel/p5-DateTime-Event-Recurrence/pkg-descr (props changed) head/devel/p5-DateTime-Event-Zodiac/pkg-descr (props changed) head/devel/p5-DateTime-Fiscal-Year/pkg-descr (props changed) head/devel/p5-DateTime-Format-Baby/pkg-descr (props changed) head/devel/p5-DateTime-Format-Bork/pkg-descr (props changed) head/devel/p5-DateTime-Format-Builder/pkg-descr (props changed) head/devel/p5-DateTime-Format-DateManip/pkg-descr (props changed) head/devel/p5-DateTime-Format-DateParse/pkg-descr (props changed) head/devel/p5-DateTime-Format-Duration/pkg-descr (props changed) head/devel/p5-DateTime-Format-Epoch/pkg-descr (props changed) head/devel/p5-DateTime-Format-Excel/pkg-descr (props changed) head/devel/p5-DateTime-Format-HTTP/pkg-descr (props changed) head/devel/p5-DateTime-Format-IBeat/pkg-descr (props changed) head/devel/p5-DateTime-Format-ICal/pkg-descr (props changed) head/devel/p5-DateTime-Format-ISO8601/pkg-descr (props changed) head/devel/p5-DateTime-Format-Mail/pkg-descr (props changed) head/devel/p5-DateTime-Format-MySQL/pkg-descr (props changed) head/devel/p5-DateTime-Format-Natural/pkg-descr (props changed) head/devel/p5-DateTime-Format-Oracle/pkg-descr (props changed) head/devel/p5-DateTime-Format-Pg/pkg-descr (props changed) head/devel/p5-DateTime-Format-RFC3339/pkg-descr (props changed) head/devel/p5-DateTime-Format-RSS/pkg-descr (props changed) head/devel/p5-DateTime-Format-Roman/pkg-descr (props changed) head/devel/p5-DateTime-Format-SQLite/pkg-descr (props changed) head/devel/p5-DateTime-Format-W3CDTF/pkg-descr (props changed) head/devel/p5-DateTime-Format-XSD/pkg-descr (props changed) head/devel/p5-DateTime-Functions/pkg-descr (props changed) head/devel/p5-DateTime-HiRes/pkg-descr (props changed) head/devel/p5-DateTime-Incomplete/pkg-descr (props changed) head/devel/p5-DateTime-Locale/pkg-descr (props changed) head/devel/p5-DateTime-Precise/pkg-descr (props changed) head/devel/p5-DateTime-Set/pkg-descr (props changed) head/devel/p5-DateTime-TimeZone-Alias/pkg-descr (props changed) head/devel/p5-DateTime-TimeZone-LMT/pkg-descr (props changed) head/devel/p5-DateTime-TimeZone/pkg-descr (props changed) head/devel/p5-DateTime-Util-Calc/pkg-descr (props changed) head/devel/p5-DateTime/pkg-descr (props changed) head/devel/p5-DateTimeX-Easy/pkg-descr (props changed) head/devel/p5-Debug-Client/pkg-descr (props changed) head/devel/p5-Decision-ACL/pkg-descr (props changed) head/devel/p5-Devel-Backtrace/pkg-descr (props changed) head/devel/p5-Devel-BeginLift/pkg-descr (props changed) head/devel/p5-Devel-CallChecker/pkg-descr (props changed) head/devel/p5-Devel-Caller-Perl/pkg-descr (props changed) head/devel/p5-Devel-Caller/pkg-descr (props changed) head/devel/p5-Devel-Callsite/pkg-descr (props changed) head/devel/p5-Devel-CheckLib/pkg-descr (props changed) head/devel/p5-Devel-CheckOS/pkg-descr (props changed) head/devel/p5-Devel-Constants/pkg-descr (props changed) head/devel/p5-Devel-CoreStack/pkg-descr (props changed) head/devel/p5-Devel-Cover-Report-Clover/pkg-descr (props changed) head/devel/p5-Devel-Cover/pkg-descr (props changed) head/devel/p5-Devel-Cycle/pkg-descr (props changed) head/devel/p5-Devel-DProfPP/pkg-descr (props changed) head/devel/p5-Devel-Declare-Parser/pkg-descr (props changed) head/devel/p5-Devel-Declare/pkg-descr (props changed) head/devel/p5-Devel-Diagram/pkg-descr (props changed) head/devel/p5-Devel-Ditto/pkg-descr (props changed) head/devel/p5-Devel-Dumpvar/pkg-descr (props changed) head/devel/p5-Devel-EvalContext/pkg-descr (props changed) head/devel/p5-Devel-Events-Objects/pkg-descr (props changed) head/devel/p5-Devel-Events/pkg-descr (props changed) head/devel/p5-Devel-FindPerl/pkg-descr (props changed) head/devel/p5-Devel-Gladiator/pkg-descr (props changed) head/devel/p5-Devel-GlobalDestruction/pkg-descr (props changed) head/devel/p5-Devel-Hide/pkg-descr (props changed) head/devel/p5-Devel-KYTProf/pkg-descr (props changed) head/devel/p5-Devel-Leak-Cb/pkg-descr (props changed) head/devel/p5-Devel-Leak-Object/pkg-descr (props changed) head/devel/p5-Devel-Leak/pkg-descr (props changed) head/devel/p5-Devel-LeakGuard-Object/pkg-descr (props changed) head/devel/p5-Devel-LeakTrace-Fast/pkg-descr (props changed) head/devel/p5-Devel-LeakTrace/pkg-descr (props changed) head/devel/p5-Devel-LexAlias/pkg-descr (props changed) head/devel/p5-Devel-Modlist/pkg-descr (props changed) head/devel/p5-Devel-NYTProf/pkg-descr (props changed) head/devel/p5-Devel-PPPort/pkg-descr (props changed) head/devel/p5-Devel-PackagePath/pkg-descr (props changed) head/devel/p5-Devel-PartialDump/pkg-descr (props changed) head/devel/p5-Devel-PatchPerl/pkg-descr (props changed) head/devel/p5-Devel-Pointer/pkg-descr (props changed) head/devel/p5-Devel-Profile/pkg-descr (props changed) head/devel/p5-Devel-Profiler/pkg-descr (props changed) head/devel/p5-Devel-Refactor/pkg-descr (props changed) head/devel/p5-Devel-Refcount/pkg-descr (props changed) head/devel/p5-Devel-Required/pkg-descr (props changed) head/devel/p5-Devel-RingBuffer/pkg-descr (props changed) head/devel/p5-Devel-STrace/pkg-descr (props changed) head/devel/p5-Devel-SimpleTrace/pkg-descr (props changed) head/devel/p5-Devel-Size-Report/pkg-descr (props changed) head/devel/p5-Devel-Size/pkg-descr (props changed) head/devel/p5-Devel-SmallProf/pkg-descr (props changed) head/devel/p5-Devel-StackTrace-AsHTML/pkg-descr (props changed) head/devel/p5-Devel-StackTrace-WithLexicals/pkg-descr (props changed) head/devel/p5-Devel-StackTrace/pkg-descr (props changed) head/devel/p5-Devel-StealthDebug/pkg-descr (props changed) head/devel/p5-Devel-Timer/pkg-descr (props changed) head/devel/p5-Devel-Trace/pkg-descr (props changed) head/devel/p5-Devel-TraceCalls/pkg-descr (props changed) head/devel/p5-Devel-TraceUse/pkg-descr (props changed) head/devel/p5-Devel-ptkdb/pkg-descr (props changed) head/devel/p5-Device-USB/pkg-descr (props changed) head/devel/p5-Digest-TransformPath/pkg-descr (props changed) head/devel/p5-Dir-Watch/pkg-descr (props changed) head/devel/p5-Directory-Queue/pkg-descr (props changed) head/devel/p5-Directory-Scratch-Structured/pkg-descr (props changed) head/devel/p5-Directory-Scratch/pkg-descr (props changed) head/devel/p5-Dist-CheckConflicts/pkg-descr (props changed) head/devel/p5-Dist-Metadata/pkg-descr (props changed) head/devel/p5-Dist-Zilla/pkg-descr (props changed) head/devel/p5-DynaLoader-Functions/pkg-descr (props changed) head/devel/p5-EV/pkg-descr (props changed) head/devel/p5-Env-PS1/pkg-descr (props changed) head/devel/p5-Errno/pkg-descr (props changed) head/devel/p5-Error-Helper/pkg-descr (props changed) head/devel/p5-Eval-Context/pkg-descr (props changed) head/devel/p5-Eval-LineNumbers/pkg-descr (props changed) head/devel/p5-Eval-WithLexicals/pkg-descr (props changed) head/devel/p5-Event-ExecFlow/pkg-descr (props changed) head/devel/p5-Event-Join/pkg-descr (props changed) head/devel/p5-Event-Lib/pkg-descr (props changed) head/devel/p5-Event/pkg-descr (props changed) head/devel/p5-Every/pkg-descr (props changed) head/devel/p5-Exception-Class/pkg-descr (props changed) head/devel/p5-Exception-Handler/pkg-descr (props changed) head/devel/p5-Exporter-Declare/pkg-descr (props changed) head/devel/p5-Exporter-Lite/pkg-descr (props changed) head/devel/p5-Exporter-Tidy/pkg-descr (props changed) head/devel/p5-Exporter/pkg-descr (props changed) head/devel/p5-ExtUtils-AutoInstall/pkg-descr (props changed) head/devel/p5-ExtUtils-CChecker/pkg-descr (props changed) head/devel/p5-ExtUtils-Command/pkg-descr (props changed) head/devel/p5-ExtUtils-Constant/pkg-descr (props changed) head/devel/p5-ExtUtils-Depends/pkg-descr (props changed) head/devel/p5-ExtUtils-Install/pkg-descr (props changed) head/devel/p5-ExtUtils-LibBuilder/pkg-descr (props changed) head/devel/p5-ExtUtils-MakeMaker-Coverage/pkg-descr (props changed) head/devel/p5-ExtUtils-MakeMaker/pkg-descr (props changed) head/devel/p5-ExtUtils-ParseXS/pkg-descr (props changed) head/devel/p5-ExtUtils-PkgConfig/pkg-descr (props changed) head/devel/p5-ExtUtils-XSBuilder/pkg-descr (props changed) head/devel/p5-ExtUtils-XSpp/pkg-descr (props changed) head/devel/p5-FSA-Rules/pkg-descr (props changed) head/devel/p5-Fennec-Lite/pkg-descr (props changed) head/devel/p5-File-Append-TempFile/pkg-descr (props changed) head/devel/p5-File-Attributes-Recursive/pkg-descr (props changed) head/devel/p5-File-Attributes/pkg-descr (props changed) head/devel/p5-File-BaseDir/pkg-descr (props changed) head/devel/p5-File-BasicFlock/pkg-descr (props changed) head/devel/p5-File-Cache/pkg-descr (props changed) head/devel/p5-File-Cat/pkg-descr (props changed) head/devel/p5-File-ChangeNotify/pkg-descr (props changed) head/devel/p5-File-Copy-Recursive/pkg-descr (props changed) head/devel/p5-File-CountLines/pkg-descr (props changed) head/devel/p5-File-CreationTime/pkg-descr (props changed) head/devel/p5-File-DesktopEntry/pkg-descr (props changed) head/devel/p5-File-Dir-Dumper/pkg-descr (props changed) head/devel/p5-File-DirSync/pkg-descr (props changed) head/devel/p5-File-ExtAttr/pkg-descr (props changed) head/devel/p5-File-Find-Rule-Perl/pkg-descr (props changed) head/devel/p5-File-Find-Rule-VCS/pkg-descr (props changed) head/devel/p5-File-Find-Rule/pkg-descr (props changed) head/devel/p5-File-Finder/pkg-descr (props changed) head/devel/p5-File-Flat/pkg-descr (props changed) head/devel/p5-File-Flock/pkg-descr (props changed) head/devel/p5-File-FnMatch/pkg-descr (props changed) head/devel/p5-File-Grep/pkg-descr (props changed) head/devel/p5-File-HomeDir-PathClass/pkg-descr (props changed) head/devel/p5-File-HomeDir/pkg-descr (props changed) head/devel/p5-File-LibMagic/pkg-descr (props changed) head/devel/p5-File-MMagic-XS/pkg-descr (props changed) head/devel/p5-File-MMagic/pkg-descr (props changed) head/devel/p5-File-Map/pkg-descr (props changed) head/devel/p5-File-MimeInfo/pkg-descr (props changed) head/devel/p5-File-Monitor/pkg-descr (props changed) head/devel/p5-File-NCopy/pkg-descr (props changed) head/devel/p5-File-Path-Expand/pkg-descr (props changed) head/devel/p5-File-Path/pkg-descr (props changed) head/devel/p5-File-PathConvert/pkg-descr (props changed) head/devel/p5-File-Pid/pkg-descr (props changed) head/devel/p5-File-Policy/pkg-descr (props changed) head/devel/p5-File-Random/pkg-descr (props changed) head/devel/p5-File-Remove/pkg-descr (props changed) head/devel/p5-File-SafeDO/pkg-descr (props changed) head/devel/p5-File-ShareDir-PAR/pkg-descr (props changed) head/devel/p5-File-ShareDir-PathClass/pkg-descr (props changed) head/devel/p5-File-ShareDir-ProjectDistDir/pkg-descr (props changed) head/devel/p5-File-ShareDir/pkg-descr (props changed) head/devel/p5-File-Slurp/pkg-descr (props changed) head/devel/p5-File-Spec-Native/pkg-descr (props changed) head/devel/p5-File-Sync/pkg-descr (props changed) head/devel/p5-File-Tail/pkg-descr (props changed) head/devel/p5-File-Type/pkg-descr (props changed) head/devel/p5-File-Util/pkg-descr (props changed) head/devel/p5-File-chdir/pkg-descr (props changed) head/devel/p5-File-chmod/pkg-descr (props changed) head/devel/p5-File-pushd/pkg-descr (props changed) head/devel/p5-FileHandle-Fmode/pkg-descr (props changed) head/devel/p5-Filesys-Notify-KQueue/pkg-descr (props changed) head/devel/p5-Filesys-Notify-Simple/pkg-descr (props changed) head/devel/p5-Filesys-Virtual-Plain/pkg-descr (props changed) head/devel/p5-Filesys-Virtual/pkg-descr (props changed) head/devel/p5-Filter/pkg-descr (props changed) head/devel/p5-Find-Lib/pkg-descr (props changed) head/devel/p5-FindBin-libs/pkg-descr (props changed) head/devel/p5-Forest/pkg-descr (props changed) head/devel/p5-Form-Sensible/pkg-descr (props changed) head/devel/p5-FreeBSD-i386-Ptrace/pkg-descr (props changed) head/devel/p5-FreezeThaw/pkg-descr (props changed) head/devel/p5-Gearman-Server/pkg-descr (props changed) head/devel/p5-Gearman-XS/pkg-descr (props changed) head/devel/p5-Gearman/pkg-descr (props changed) head/devel/p5-Geo-ShapeFile/pkg-descr (props changed) head/devel/p5-Getargs-Long/pkg-descr (props changed) head/devel/p5-Getopt-ArgvFile/pkg-descr (props changed) head/devel/p5-Getopt-Compact-WithCmd/pkg-descr (props changed) head/devel/p5-Getopt-Compact/pkg-descr (props changed) head/devel/p5-Getopt-Euclid/pkg-descr (props changed) head/devel/p5-Getopt-GUI-Long/pkg-descr (props changed) head/devel/p5-Getopt-Long-Descriptive/pkg-descr (props changed) head/devel/p5-Getopt-Long/pkg-descr (props changed) head/devel/p5-Git-PurePerl/pkg-descr (props changed) head/devel/p5-Git-Repository/pkg-descr (props changed) head/devel/p5-Git-Sub/pkg-descr (props changed) head/devel/p5-Git-Wrapper/pkg-descr (props changed) head/devel/p5-Glib-Object-Introspection/pkg-descr (props changed) head/devel/p5-Glib2/pkg-descr (props changed) head/devel/p5-Gnome2-GConf/pkg-descr (props changed) head/devel/p5-Goo-Canvas/pkg-descr (props changed) head/devel/p5-Google-Checkout/pkg-descr (props changed) head/devel/p5-Google-ProtocolBuffers/pkg-descr (props changed) head/devel/p5-Gravatar-URL/pkg-descr (props changed) head/devel/p5-Gtk2-Notify/pkg-descr (props changed) head/devel/p5-Guard/pkg-descr (props changed) head/devel/p5-HOP-Lexer/pkg-descr (props changed) head/devel/p5-HOP-Stream/pkg-descr (props changed) head/devel/p5-Hash-AsObject/pkg-descr (props changed) head/devel/p5-Hash-AutoHash/pkg-descr (props changed) head/devel/p5-Hash-Diff/pkg-descr (props changed) head/devel/p5-Hash-FieldHash/pkg-descr (props changed) head/devel/p5-Hash-Merge-Simple/pkg-descr (props changed) head/devel/p5-Hash-MoreUtils/pkg-descr (props changed) head/devel/p5-Hash-MultiKey/pkg-descr (props changed) head/devel/p5-Hash-MultiValue/pkg-descr (props changed) head/devel/p5-Hash-NoRef/pkg-descr (props changed) head/devel/p5-Hash-Util-FieldHash-Compat/pkg-descr (props changed) head/devel/p5-Heap-Simple-Perl/pkg-descr (props changed) head/devel/p5-Heap-Simple-XS/pkg-descr (props changed) head/devel/p5-Heap-Simple/pkg-descr (props changed) head/devel/p5-Heap/pkg-descr (props changed) head/devel/p5-Hook-LexWrap/pkg-descr (props changed) head/devel/p5-IO-Any/pkg-descr (props changed) head/devel/p5-IO-Callback/pkg-descr (props changed) head/devel/p5-IO-Capture/pkg-descr (props changed) head/devel/p5-IO-CaptureOutput/pkg-descr (props changed) head/devel/p5-IO-Digest/pkg-descr (props changed) head/devel/p5-IO-FDPass/pkg-descr (props changed) head/devel/p5-IO-HTML/pkg-descr (props changed) head/devel/p5-IO-Handle-Util/pkg-descr (props changed) head/devel/p5-IO-Interactive/pkg-descr (props changed) head/devel/p5-IO-KQueue/pkg-descr (props changed) head/devel/p5-IO-LockedFile/pkg-descr (props changed) head/devel/p5-IO-MultiPipe/pkg-descr (props changed) head/devel/p5-IO-Multiplex/pkg-descr (props changed) head/devel/p5-IO-Pager/pkg-descr (props changed) head/devel/p5-IO-Pipely/pkg-descr (props changed) head/devel/p5-IO-Prompt/pkg-descr (props changed) head/devel/p5-IO-Pty-Easy/pkg-descr (props changed) head/devel/p5-IO-Stty/pkg-descr (props changed) head/devel/p5-IO-Tee/pkg-descr (props changed) head/devel/p5-IO-TieCombine/pkg-descr (props changed) head/devel/p5-IO-Tty/pkg-descr (props changed) head/devel/p5-IO-stringy/pkg-descr (props changed) head/devel/p5-IOC/pkg-descr (props changed) head/devel/p5-IPC-Cache/pkg-descr (props changed) head/devel/p5-IPC-Cmd/pkg-descr (props changed) head/devel/p5-IPC-DirQueue/pkg-descr (props changed) head/devel/p5-IPC-MM/pkg-descr (props changed) head/devel/p5-IPC-MMA/pkg-descr (props changed) head/devel/p5-IPC-PubSub/pkg-descr (props changed) head/devel/p5-IPC-Run-SafeHandles/pkg-descr (props changed) head/devel/p5-IPC-Run/pkg-descr (props changed) head/devel/p5-IPC-Run3/pkg-descr (props changed) head/devel/p5-IPC-ShareLite/pkg-descr (props changed) head/devel/p5-IPC-Shareable/pkg-descr (props changed) head/devel/p5-IPC-SharedCache/pkg-descr (props changed) head/devel/p5-IPC-Signal/pkg-descr (props changed) head/devel/p5-IPC-System-Simple/pkg-descr (props changed) head/devel/p5-Inline-ASM/pkg-descr (props changed) head/devel/p5-Inline-CPP/pkg-descr (props changed) head/devel/p5-Inline-Files/pkg-descr (props changed) head/devel/p5-Inline-Filters/pkg-descr (props changed) head/devel/p5-Inline-Java/pkg-descr (props changed) head/devel/p5-Inline-Tcl/pkg-descr (props changed) head/devel/p5-Inline/pkg-descr (props changed) head/devel/p5-InlineX-C2XS/pkg-descr (props changed) head/devel/p5-InlineX-CPP2XS/pkg-descr (props changed) head/devel/p5-Iterator-IO/pkg-descr (props changed) head/devel/p5-Iterator-Misc/pkg-descr (props changed) head/devel/p5-Iterator-Util/pkg-descr (props changed) head/devel/p5-Iterator/pkg-descr (props changed) head/devel/p5-JQuery/pkg-descr (props changed) head/devel/p5-JSON-RPC-Common/pkg-descr (props changed) head/devel/p5-JSON-RPC-Dispatcher/pkg-descr (props changed) head/devel/p5-JSON-RPC/pkg-descr (props changed) head/devel/p5-Java/pkg-descr (props changed) head/devel/p5-Jonk/pkg-descr (props changed) head/devel/p5-Lexical-Alias/pkg-descr (props changed) head/devel/p5-Lexical-Import/pkg-descr (props changed) head/devel/p5-Lexical-SealRequireHints/pkg-descr (props changed) head/devel/p5-Lexical-Var/pkg-descr (props changed) head/devel/p5-Lingua-JA-Fold/pkg-descr (props changed) head/devel/p5-Lingua-Translit/pkg-descr (props changed) head/devel/p5-List-Cycle/pkg-descr (props changed) head/devel/p5-List-Gen/pkg-descr (props changed) head/devel/p5-List-Group/pkg-descr (props changed) head/devel/p5-List-Permutor/pkg-descr (props changed) head/devel/p5-List-PowerSet/pkg-descr (props changed) head/devel/p5-List-Rotation-Cycle/pkg-descr (props changed) head/devel/p5-List-Uniq/pkg-descr (props changed) head/devel/p5-List-UtilsBy/pkg-descr (props changed) head/devel/p5-Locale-Maketext-Fuzzy/pkg-descr (props changed) head/devel/p5-Locale-Maketext-Gettext/pkg-descr (props changed) head/devel/p5-Locale-Maketext-Lexicon/pkg-descr (props changed) head/devel/p5-Locale-Maketext-Simple/pkg-descr (props changed) head/devel/p5-Locale-Maketext/pkg-descr (props changed) head/devel/p5-Locale-Msgfmt/pkg-descr (props changed) head/devel/p5-Locale-PGetText/pkg-descr (props changed) head/devel/p5-Locale-PO/pkg-descr (props changed) head/devel/p5-Locale-libintl/pkg-descr (props changed) head/devel/p5-Log-Accounting-SVK/pkg-descr (props changed) head/devel/p5-Log-Accounting-SVN/pkg-descr (props changed) head/devel/p5-Log-Agent-Logger/pkg-descr (props changed) head/devel/p5-Log-Any-Adapter-Dispatch/pkg-descr (props changed) head/devel/p5-Log-Any-Adapter-Log4perl/pkg-descr (props changed) head/devel/p5-Log-Any-Adapter-Syslog/pkg-descr (props changed) head/devel/p5-Log-Any-Adapter/pkg-descr (props changed) head/devel/p5-Log-Any-App/pkg-descr (props changed) head/devel/p5-Log-Any/pkg-descr (props changed) head/devel/p5-Log-Contextual/pkg-descr (props changed) head/devel/p5-Log-Dispatch-Array/pkg-descr (props changed) head/devel/p5-Log-Dispatch-Colorful/pkg-descr (props changed) head/devel/p5-Log-Dispatch-Config/pkg-descr (props changed) head/devel/p5-Log-Dispatch-Configurator-Any/pkg-descr (props changed) head/devel/p5-Log-Dispatch-Configurator-YAML/pkg-descr (props changed) head/devel/p5-Log-Dispatch-DBI/pkg-descr (props changed) head/devel/p5-Log-Dispatch-Dir/pkg-descr (props changed) head/devel/p5-Log-Dispatch-Email-EmailSend/pkg-descr (props changed) head/devel/p5-Log-Dispatch-File-Stamped/pkg-descr (props changed) head/devel/p5-Log-Dispatch-FileRotate/pkg-descr (props changed) head/devel/p5-Log-Dispatch-FileShared/pkg-descr (props changed) head/devel/p5-Log-Dispatch-Perl/pkg-descr (props changed) head/devel/p5-Log-Dispatch-Screen-Color/pkg-descr (props changed) head/devel/p5-Log-Dispatch/pkg-descr (props changed) head/devel/p5-Log-Dispatchouli/pkg-descr (props changed) head/devel/p5-Log-Handler/pkg-descr (props changed) head/devel/p5-Log-Log4perl/pkg-descr (props changed) head/devel/p5-Log-Message/pkg-descr (props changed) head/devel/p5-Log-Minimal/pkg-descr (props changed) head/devel/p5-Log-Report/pkg-descr (props changed) head/devel/p5-Log-Trace/pkg-descr (props changed) head/devel/p5-Log-TraceMessages/pkg-descr (props changed) head/devel/p5-MRO-Compat/pkg-descr (props changed) head/devel/p5-Mac-PropertyList/pkg-descr (props changed) head/devel/p5-Make/pkg-descr (props changed) head/devel/p5-Memoize-ExpireLRU/pkg-descr (props changed) head/devel/p5-Meta-Builder/pkg-descr (props changed) head/devel/p5-MetaCPAN-API/pkg-descr (props changed) head/devel/p5-Metabase-Client-Simple/pkg-descr (props changed) head/devel/p5-Metabase-Fact/pkg-descr (props changed) head/devel/p5-Mknod/pkg-descr (props changed) head/devel/p5-Mock-Quick/pkg-descr (props changed) head/devel/p5-Module-Build-Convert/pkg-descr (props changed) head/devel/p5-Module-Build-Kwalitee/pkg-descr (props changed) head/devel/p5-Module-Build/pkg-descr (props changed) head/devel/p5-Module-CPANTS-Analyse/pkg-descr (props changed) head/devel/p5-Module-CPANfile/pkg-descr (props changed) head/devel/p5-Module-Collect/pkg-descr (props changed) head/devel/p5-Module-CoreList/pkg-descr (props changed) head/devel/p5-Module-Depends/pkg-descr (props changed) head/devel/p5-Module-Extract/pkg-descr (props changed) head/devel/p5-Module-ExtractUse/pkg-descr (props changed) head/devel/p5-Module-Find/pkg-descr (props changed) head/devel/p5-Module-Functions/pkg-descr (props changed) head/devel/p5-Module-Implementation/pkg-descr (props changed) head/devel/p5-Module-Info-File/pkg-descr (props changed) head/devel/p5-Module-Info/pkg-descr (props changed) head/devel/p5-Module-Inspector/pkg-descr (props changed) head/devel/p5-Module-Install-AuthorRequires/pkg-descr (props changed) head/devel/p5-Module-Install-AuthorTests/pkg-descr (props changed) head/devel/p5-Module-Install-Repository/pkg-descr (props changed) head/devel/p5-Module-Install-Template/pkg-descr (props changed) head/devel/p5-Module-Install-XSUtil/pkg-descr (props changed) head/devel/p5-Module-Install/pkg-descr (props changed) head/devel/p5-Module-List/pkg-descr (props changed) head/devel/p5-Module-Load-Conditional/pkg-descr (props changed) head/devel/p5-Module-Loaded/pkg-descr (props changed) head/devel/p5-Module-Manifest/pkg-descr (props changed) head/devel/p5-Module-Math-Depends/pkg-descr (props changed) head/devel/p5-Module-Metadata/pkg-descr (props changed) head/devel/p5-Module-Path/pkg-descr (props changed) head/devel/p5-Module-Pluggable-Fast/pkg-descr (props changed) head/devel/p5-Module-Pluggable-Ordered/pkg-descr (props changed) head/devel/p5-Module-Reader/pkg-descr (props changed) head/devel/p5-Module-Refresh/pkg-descr (props changed) head/devel/p5-Module-Release/pkg-descr (props changed) head/devel/p5-Module-Reload-Sel/pkg-descr (props changed) head/devel/p5-Module-Reload/pkg-descr (props changed) head/devel/p5-Module-Runtime/pkg-descr (props changed) head/devel/p5-Module-ScanDeps/pkg-descr (props changed) head/devel/p5-Module-Setup/pkg-descr (props changed) head/devel/p5-Module-Starter-PBP/pkg-descr (props changed) head/devel/p5-Module-Starter-Plugin-TT2/pkg-descr (props changed) head/devel/p5-Module-Starter/pkg-descr (props changed) head/devel/p5-Module-Used/pkg-descr (props changed) head/devel/p5-Module-Util/pkg-descr (props changed) head/devel/p5-Module-Versions-Report/pkg-descr (props changed) head/devel/p5-Module-Versions/pkg-descr (props changed) head/devel/p5-Moo/pkg-descr (props changed) head/devel/p5-MooX-Options/pkg-descr (props changed) head/devel/p5-MooX-Types-MooseLike/pkg-descr (props changed) head/devel/p5-MooX-late/pkg-descr (props changed) head/devel/p5-Moose-Autobox/pkg-descr (props changed) head/devel/p5-Moose-Policy/pkg-descr (props changed) head/devel/p5-Moose-Test/pkg-descr (props changed) head/devel/p5-Moose/pkg-descr (props changed) head/devel/p5-MooseX-Aliases/pkg-descr (props changed) head/devel/p5-MooseX-App/pkg-descr (props changed) head/devel/p5-MooseX-Async/pkg-descr (props changed) head/devel/p5-MooseX-Attribute-Chained/pkg-descr (props changed) head/devel/p5-MooseX-Attribute-ENV/pkg-descr (props changed) head/devel/p5-MooseX-AttributeHelpers/pkg-descr (props changed) head/devel/p5-MooseX-AttributeShortcuts/pkg-descr (props changed) head/devel/p5-MooseX-AuthorizedMethods/pkg-descr (props changed) head/devel/p5-MooseX-ClassAttribute/pkg-descr (props changed) head/devel/p5-MooseX-Clone/pkg-descr (props changed) head/devel/p5-MooseX-CompileTime-Traits/pkg-descr (props changed) head/devel/p5-MooseX-ConfigFromFile/pkg-descr (props changed) head/devel/p5-MooseX-Daemonize/pkg-descr (props changed) head/devel/p5-MooseX-Declare/pkg-descr (props changed) head/devel/p5-MooseX-Emulate-Class-Accessor-Fast/pkg-descr (props changed) head/devel/p5-MooseX-FollowPBP/pkg-descr (props changed) head/devel/p5-MooseX-Getopt/pkg-descr (props changed) head/devel/p5-MooseX-Has-Options/pkg-descr (props changed) head/devel/p5-MooseX-Has-Sugar/pkg-descr (props changed) head/devel/p5-MooseX-HasDefaults/pkg-descr (props changed) head/devel/p5-MooseX-IOC/pkg-descr (props changed) head/devel/p5-MooseX-InsideOut/pkg-descr (props changed) head/devel/p5-MooseX-LazyRequire/pkg-descr (props changed) head/devel/p5-MooseX-Lists/pkg-descr (props changed) head/devel/p5-MooseX-Log-Log4perl/pkg-descr (props changed) head/devel/p5-MooseX-MarkAsMethods/pkg-descr (props changed) head/devel/p5-MooseX-Meta-TypeConstraint-ForceCoercion/pkg-descr (props changed) head/devel/p5-MooseX-MetaDescription/pkg-descr (props changed) head/devel/p5-MooseX-Method-Signatures/pkg-descr (props changed) head/devel/p5-MooseX-MethodAttributes/pkg-descr (props changed) head/devel/p5-MooseX-MultiInitArg/pkg-descr (props changed) head/devel/p5-MooseX-MultiMethods/pkg-descr (props changed) head/devel/p5-MooseX-NonMoose/pkg-descr (props changed) head/devel/p5-MooseX-OneArgNew/pkg-descr (props changed) head/devel/p5-MooseX-POE/pkg-descr (props changed) head/devel/p5-MooseX-Params-Validate/pkg-descr (props changed) head/devel/p5-MooseX-RelatedClassRoles/pkg-descr (props changed) head/devel/p5-MooseX-Role-Parameterized/pkg-descr (props changed) head/devel/p5-MooseX-Role-WithOverloading/pkg-descr (props changed) head/devel/p5-MooseX-Runnable/pkg-descr (props changed) head/devel/p5-MooseX-SemiAffordanceAccessor/pkg-descr (props changed) head/devel/p5-MooseX-SetOnce/pkg-descr (props changed) head/devel/p5-MooseX-SimpleConfig/pkg-descr (props changed) head/devel/p5-MooseX-Singleton/pkg-descr (props changed) head/devel/p5-MooseX-Storage/pkg-descr (props changed) head/devel/p5-MooseX-StrictConstructor/pkg-descr (props changed) head/devel/p5-MooseX-Traits-Pluggable/pkg-descr (props changed) head/devel/p5-MooseX-Traits/pkg-descr (props changed) head/devel/p5-MooseX-TransactionalMethods/pkg-descr (props changed) head/devel/p5-MooseX-Types-Common/pkg-descr (props changed) head/devel/p5-MooseX-Types-DateTime-ButMaintained/pkg-descr (props changed) head/devel/p5-MooseX-Types-DateTime-MoreCoercions/pkg-descr (props changed) head/devel/p5-MooseX-Types-DateTime/pkg-descr (props changed) head/devel/p5-MooseX-Types-DateTimeX/pkg-descr (props changed) head/devel/p5-MooseX-Types-ISO8601/pkg-descr (props changed) head/devel/p5-MooseX-Types-JSON/pkg-descr (props changed) head/devel/p5-MooseX-Types-Path-Class/pkg-descr (props changed) head/devel/p5-MooseX-Types-Path-Tiny/pkg-descr (props changed) head/devel/p5-MooseX-Types-Perl/pkg-descr (props changed) head/devel/p5-MooseX-Types-Set-Object/pkg-descr (props changed) head/devel/p5-MooseX-Types-Signal/pkg-descr (props changed) head/devel/p5-MooseX-Types-Stringlike/pkg-descr (props changed) head/devel/p5-MooseX-Types-Structured/pkg-descr (props changed) head/devel/p5-MooseX-Types-VariantTable/pkg-descr (props changed) head/devel/p5-MooseX-Types/pkg-descr (props changed) head/devel/p5-Mouse/pkg-descr (props changed) head/devel/p5-MouseX-App-Cmd/pkg-descr (props changed) head/devel/p5-MouseX-AttributeHelpers/pkg-descr (props changed) head/devel/p5-MouseX-Foreign/pkg-descr (props changed) head/devel/p5-MouseX-Getopt/pkg-descr (props changed) head/devel/p5-MouseX-NativeTraits/pkg-descr (props changed) head/devel/p5-MouseX-StrictConstructor/pkg-descr (props changed) head/devel/p5-MouseX-Traits/pkg-descr (props changed) head/devel/p5-MouseX-Types-Path-Class/pkg-descr (props changed) head/devel/p5-MouseX-Types/pkg-descr (props changed) head/devel/p5-Multiplex-CMD/pkg-descr (props changed) head/devel/p5-NEXT/pkg-descr (props changed) head/devel/p5-Net-DBus/pkg-descr (props changed) head/devel/p5-Net-ZooKeeper/pkg-descr (props changed) head/devel/p5-No-Worries/pkg-descr (props changed) head/devel/p5-Number-Bytes-Human/pkg-descr (props changed) head/devel/p5-Number-Tolerant/pkg-descr (props changed) head/devel/p5-OLE-Storage_Lite/pkg-descr (props changed) head/devel/p5-Object-Accessor/pkg-descr (props changed) head/devel/p5-Object-Array/pkg-descr (props changed) head/devel/p5-Object-Enum/pkg-descr (props changed) head/devel/p5-Object-InsideOut/pkg-descr (props changed) head/devel/p5-Object-MultiType/pkg-descr (props changed) head/devel/p5-Object-Pluggable/pkg-descr (props changed) head/devel/p5-Object-Signature/pkg-descr (props changed) head/devel/p5-Object-Simple/pkg-descr (props changed) head/devel/p5-Object-Tiny-Lvalue/pkg-descr (props changed) head/devel/p5-Olson-Abbreviations/pkg-descr (props changed) head/devel/p5-Ouch/pkg-descr (props changed) head/devel/p5-PAR-Dist/pkg-descr (props changed) head/devel/p5-PAR-Packer/pkg-descr (props changed) head/devel/p5-PAR/pkg-descr (props changed) head/devel/p5-PCSC-Card/pkg-descr (props changed) head/devel/p5-POE-API-Hooks/pkg-descr (props changed) head/devel/p5-POE-API-Peek/pkg-descr (props changed) head/devel/p5-POE-Component-Child/pkg-descr (props changed) head/devel/p5-POE-Component-Cron/pkg-descr (props changed) head/devel/p5-POE-Component-Daemon/pkg-descr (props changed) head/devel/p5-POE-Component-DebugShell/pkg-descr (props changed) head/devel/p5-POE-Component-DirWatch/pkg-descr (props changed) head/devel/p5-POE-Component-IKC/pkg-descr (props changed) head/devel/p5-POE-Component-JobQueue/pkg-descr (props changed) head/devel/p5-POE-Component-Logger/pkg-descr (props changed) head/devel/p5-POE-Component-Pluggable/pkg-descr (props changed) head/devel/p5-POE-Component-RSS/pkg-descr (props changed) head/devel/p5-POE-Component-RSSAggregator/pkg-descr (props changed) head/devel/p5-POE-Component-Schedule/pkg-descr (props changed) head/devel/p5-POE-Component-Server-XMLRPC/pkg-descr (props changed) head/devel/p5-POE-Component-Syndicator/pkg-descr (props changed) head/devel/p5-POE-Component-TSTP/pkg-descr (props changed) head/devel/p5-POE-Devel-Profiler/pkg-descr (props changed) head/devel/p5-POE-Loop-Glib/pkg-descr (props changed) head/devel/p5-POE-Loop-Tk/pkg-descr (props changed) head/devel/p5-POE-Quickie/pkg-descr (props changed) head/devel/p5-POE-Session-MultiDispatch/pkg-descr (props changed) head/devel/p5-POE-Stage/pkg-descr (props changed) head/devel/p5-POE-Test-Loops/pkg-descr (props changed) head/devel/p5-POE-XS-Loop-Poll/pkg-descr (props changed) head/devel/p5-POE-XS-Queue-Array/pkg-descr (props changed) head/devel/p5-POE/pkg-descr (props changed) head/devel/p5-POEx-Role-SessionInstantiation/pkg-descr (props changed) head/devel/p5-POEx-Role-Streaming/pkg-descr (props changed) head/devel/p5-POEx-Types/pkg-descr (props changed) head/devel/p5-POSIX-strptime/pkg-descr (props changed) head/devel/p5-PPerl/pkg-descr (props changed) head/devel/p5-PV/pkg-descr (props changed) head/devel/p5-Package-DeprecationManager/pkg-descr (props changed) head/devel/p5-Package-Generator/pkg-descr (props changed) head/devel/p5-Package-Stash/pkg-descr (props changed) head/devel/p5-PadWalker/pkg-descr (props changed) head/devel/p5-Parallel-Iterator/pkg-descr (props changed) head/devel/p5-Parallel-Prefork/pkg-descr (props changed) head/devel/p5-Parallel-Scoreboard/pkg-descr (props changed) head/devel/p5-Params-Check/pkg-descr (props changed) head/devel/p5-Params-Coerce/pkg-descr (props changed) head/devel/p5-Params-Util/pkg-descr (props changed) head/devel/p5-Params-Validate-Dependencies/pkg-descr (props changed) head/devel/p5-Paranoid/pkg-descr (props changed) head/devel/p5-Parse-CPAN-Meta/pkg-descr (props changed) head/devel/p5-Parse-CPAN-Packages-Fast/pkg-descr (props changed) head/devel/p5-Parse-CPAN-Packages/pkg-descr (props changed) head/devel/p5-Parse-ErrorString-Perl/pkg-descr (props changed) head/devel/p5-Parse-ExuberantCTags/pkg-descr (props changed) head/devel/p5-Parse-PerlConfig/pkg-descr (props changed) head/devel/p5-Parse-Pidl/pkg-descr (props changed) head/devel/p5-Parse-PlainConfig/pkg-descr (props changed) head/devel/p5-Parse-Win32Registry/pkg-descr (props changed) head/devel/p5-Parse-Yapp/pkg-descr (props changed) head/devel/p5-ParseLex/pkg-descr (props changed) head/devel/p5-ParseTemplate/pkg-descr (props changed) head/devel/p5-Path-Class-File-Lockable/pkg-descr (props changed) head/devel/p5-Path-Class/pkg-descr (props changed) head/devel/p5-Path-IsDev/pkg-descr (props changed) head/devel/p5-Path-Iterator-Rule/pkg-descr (props changed) head/devel/p5-Path-Tiny/pkg-descr (props changed) head/devel/p5-PathTools/pkg-descr (props changed) head/devel/p5-Penguin-Easy/pkg-descr (props changed) head/devel/p5-Penguin/pkg-descr (props changed) head/devel/p5-Perl-Metrics-Lite/pkg-descr (props changed) head/devel/p5-Perl-Metrics-Simple/pkg-descr (props changed) head/devel/p5-Perl-OSType/pkg-descr (props changed) head/devel/p5-Perl-PrereqScanner/pkg-descr (props changed) head/devel/p5-Perl-Tidy/pkg-descr (props changed) head/devel/p5-Perl-Unsafe-Signals/pkg-descr (props changed) head/devel/p5-Perl-Version/pkg-descr (props changed) head/devel/p5-Perl6-Builtins/pkg-descr (props changed) head/devel/p5-Perl6-Export-Attrs/pkg-descr (props changed) head/devel/p5-Perl6-Export/pkg-descr (props changed) head/devel/p5-Perl6-Form/pkg-descr (props changed) head/devel/p5-Perl6-Junction/pkg-descr (props changed) head/devel/p5-Perl6-Rules/pkg-descr (props changed) head/devel/p5-Perl6-Say/pkg-descr (props changed) head/devel/p5-Perl6-Slurp/pkg-descr (props changed) head/devel/p5-PerlIO-Layers/pkg-descr (props changed) head/devel/p5-PerlIO-Util/pkg-descr (props changed) head/devel/p5-PerlIO-eol/pkg-descr (props changed) head/devel/p5-PerlIO-via-MD5/pkg-descr (props changed) head/devel/p5-PerlIO-via-dynamic/pkg-descr (props changed) head/devel/p5-PerlIO-via-symlink/pkg-descr (props changed) head/devel/p5-Pipeline/pkg-descr (props changed) head/devel/p5-Pod-Coverage-Moose/pkg-descr (props changed) head/devel/p5-Pod-Coverage-TrustPod/pkg-descr (props changed) head/devel/p5-Pod-Coverage/pkg-descr (props changed) head/devel/p5-Pod-Tests/pkg-descr (props changed) head/devel/p5-Pragmatic/pkg-descr (props changed) head/devel/p5-Proc-Background/pkg-descr (props changed) head/devel/p5-Proc-Fork/pkg-descr (props changed) head/devel/p5-Proc-Guard/pkg-descr (props changed) head/devel/p5-Proc-PID-File/pkg-descr (props changed) head/devel/p5-Proc-Pidfile/pkg-descr (props changed) head/devel/p5-Proc-ProcessTable/pkg-descr (props changed) head/devel/p5-Proc-Queue/pkg-descr (props changed) head/devel/p5-Proc-Reliable/pkg-descr (props changed) head/devel/p5-Proc-SafeExec/pkg-descr (props changed) head/devel/p5-Proc-Simple/pkg-descr (props changed) head/devel/p5-Proc-Wait3/pkg-descr (props changed) head/devel/p5-Proc-WaitStat/pkg-descr (props changed) head/devel/p5-Project-Libs/pkg-descr (props changed) head/devel/p5-Qudo/pkg-descr (props changed) head/devel/p5-RRDTool-OO/pkg-descr (props changed) head/devel/p5-Range-String/pkg-descr (props changed) head/devel/p5-Rcs-Agent/pkg-descr (props changed) head/devel/p5-Rcs/pkg-descr (props changed) head/devel/p5-ReadLine-Gnu/pkg-descr (props changed) head/devel/p5-ReadLine-Perl/pkg-descr (props changed) head/devel/p5-ReadLine-TTYtter/pkg-descr (props changed) head/devel/p5-Readonly/pkg-descr (props changed) head/devel/p5-Reflex/pkg-descr (props changed) head/devel/p5-Regexp-Assemble-Compressed/pkg-descr (props changed) head/devel/p5-Regexp-Assemble/pkg-descr (props changed) head/devel/p5-Regexp-Bind/pkg-descr (props changed) head/devel/p5-Regexp-Compare/pkg-descr (props changed) head/devel/p5-Regexp-Grammars/pkg-descr (props changed) head/devel/p5-Regexp-RegGrp/pkg-descr (props changed) head/devel/p5-Regexp-Shellish/pkg-descr (props changed) head/devel/p5-Religion/pkg-descr (props changed) head/devel/p5-ResourcePool/pkg-descr (props changed) head/devel/p5-Resources/pkg-descr (props changed) head/devel/p5-Return-Value/pkg-descr (props changed) head/devel/p5-Role-HasMessage/pkg-descr (props changed) head/devel/p5-Role-Identifiable/pkg-descr (props changed) head/devel/p5-Role-Tiny/pkg-descr (props changed) head/devel/p5-Rose-DateTime/pkg-descr (props changed) head/devel/p5-Rose-Object/pkg-descr (props changed) head/devel/p5-RunApp/pkg-descr (props changed) head/devel/p5-SNMP-Persist/pkg-descr (props changed) head/devel/p5-SOAP-WSDL/pkg-descr (props changed) head/devel/p5-SUPER/pkg-descr (props changed) head/devel/p5-SVN-ACL/pkg-descr (props changed) head/devel/p5-SVN-Access/pkg-descr (props changed) head/devel/p5-SVN-Agent/pkg-descr (props changed) head/devel/p5-SVN-Dump/pkg-descr (props changed) head/devel/p5-SVN-Hook/pkg-descr (props changed) head/devel/p5-SVN-Log/pkg-descr (props changed) head/devel/p5-SVN-Mirror/pkg-descr (props changed) head/devel/p5-SVN-Notify-Config/pkg-descr (props changed) head/devel/p5-SVN-Notify-Filter-AuthZMail/pkg-descr (props changed) head/devel/p5-SVN-Notify-Filter-EmailFlatFileDB/pkg-descr (props changed) head/devel/p5-SVN-Notify-Filter-Markdown/pkg-descr (props changed) head/devel/p5-SVN-Notify-Mirror/pkg-descr (props changed) head/devel/p5-SVN-Notify-Snapshot/pkg-descr (props changed) head/devel/p5-SVN-Notify/pkg-descr (props changed) head/devel/p5-SVN-S4/pkg-descr (props changed) head/devel/p5-SVN-Simple/pkg-descr (props changed) head/devel/p5-SVN-Web/pkg-descr (props changed) head/devel/p5-Safe-Isa/pkg-descr (props changed) head/devel/p5-Scalar-Listify/pkg-descr (props changed) head/devel/p5-Scalar-String/pkg-descr (props changed) head/devel/p5-Scope-Guard/pkg-descr (props changed) head/devel/p5-Scope-Upper/pkg-descr (props changed) head/devel/p5-Script-isAperlScript/pkg-descr (props changed) head/devel/p5-Sepia/pkg-descr (props changed) head/devel/p5-Set-Array/pkg-descr (props changed) head/devel/p5-Set-Crontab/pkg-descr (props changed) head/devel/p5-Set-CrossProduct/pkg-descr (props changed) head/devel/p5-Set-Infinite/pkg-descr (props changed) head/devel/p5-Set-NestedGroups/pkg-descr (props changed) head/devel/p5-Set-Scalar/pkg-descr (props changed) head/devel/p5-Shape/pkg-descr (props changed) head/devel/p5-Shell-Base/pkg-descr (props changed) head/devel/p5-Shell-EnvImporter/pkg-descr (props changed) head/devel/p5-Shell-Parser/pkg-descr (props changed) head/devel/p5-Shell-Source/pkg-descr (props changed) head/devel/p5-ShipIt/pkg-descr (props changed) head/devel/p5-Slurp/pkg-descr (props changed) head/devel/p5-Sort-Array/pkg-descr (props changed) head/devel/p5-Sort-ArrayOfArrays/pkg-descr (props changed) head/devel/p5-Sort-Key-DateTime/pkg-descr (props changed) head/devel/p5-Sort-Key-Top/pkg-descr (props changed) head/devel/p5-Sort-Key/pkg-descr (props changed) head/devel/p5-Sort-Maker/pkg-descr (props changed) head/devel/p5-Sort-Versions/pkg-descr (props changed) head/devel/p5-Spiffy/pkg-descr (props changed) head/devel/p5-Storable/pkg-descr (props changed) head/devel/p5-Stream-Buffered/pkg-descr (props changed) head/devel/p5-Stream-Reader/pkg-descr (props changed) head/devel/p5-Stream/pkg-descr (props changed) head/devel/p5-String-Approx/pkg-descr (props changed) head/devel/p5-String-CRC32/pkg-descr (props changed) head/devel/p5-String-Checker/pkg-descr (props changed) head/devel/p5-String-Diff/pkg-descr (props changed) head/devel/p5-String-Dump/pkg-descr (props changed) head/devel/p5-String-Ediff/pkg-descr (props changed) head/devel/p5-String-Errf/pkg-descr (props changed) head/devel/p5-String-Formatter/pkg-descr (props changed) head/devel/p5-String-LRC/pkg-descr (props changed) head/devel/p5-String-Parity/pkg-descr (props changed) head/devel/p5-String-Random/pkg-descr (props changed) head/devel/p5-String-RexxParse/pkg-descr (props changed) head/devel/p5-String-Similarity/pkg-descr (props changed) head/devel/p5-String-TT/pkg-descr (props changed) head/devel/p5-Sub-Alias/pkg-descr (props changed) head/devel/p5-Sub-Current/pkg-descr (props changed) head/devel/p5-Sub-Exporter-ForMethods/pkg-descr (props changed) head/devel/p5-Sub-Exporter-GlobExporter/pkg-descr (props changed) head/devel/p5-Sub-Exporter-Progressive/pkg-descr (props changed) head/devel/p5-Sub-Exporter/pkg-descr (props changed) head/devel/p5-Sub-Identify/pkg-descr (props changed) head/devel/p5-Sub-Install/pkg-descr (props changed) head/devel/p5-Sub-Installer/pkg-descr (props changed) head/devel/p5-Sub-Multi/pkg-descr (props changed) head/devel/p5-Sub-Name/pkg-descr (props changed) head/devel/p5-Sub-Override/pkg-descr (props changed) head/devel/p5-Sub-Signatures/pkg-descr (props changed) head/devel/p5-Sub-Uplevel/pkg-descr (props changed) head/devel/p5-Sub-WrapPackages/pkg-descr (props changed) head/devel/p5-Syntax-Keyword-Junction/pkg-descr (props changed) head/devel/p5-Sys-Cpu/pkg-descr (props changed) head/devel/p5-Sys-Info-Base/pkg-descr (props changed) head/devel/p5-Sys-Info-Driver-BSD/pkg-descr (props changed) head/devel/p5-Sys-Info/pkg-descr (props changed) head/devel/p5-Sys-MemInfo/pkg-descr (props changed) head/devel/p5-Sys-Mmap/pkg-descr (props changed) head/devel/p5-Sys-RunAlone/pkg-descr (props changed) head/devel/p5-Sys-RunAlways/pkg-descr (props changed) head/devel/p5-Sys-Sendfile-FreeBSD/pkg-descr (props changed) head/devel/p5-Sys-Sendfile/pkg-descr (props changed) head/devel/p5-Sys-SigAction/pkg-descr (props changed) head/devel/p5-Sys-Trace/pkg-descr (props changed) head/devel/p5-Sys-Virt/pkg-descr (props changed) head/devel/p5-System-Command/pkg-descr (props changed) head/devel/p5-System-Sub/pkg-descr (props changed) head/devel/p5-TAP-Formatter-JUnit/pkg-descr (props changed) head/devel/p5-TAP-Harness-JUnit/pkg-descr (props changed) head/devel/p5-TAP-SimpleOutput/pkg-descr (props changed) head/devel/p5-Taint-Util/pkg-descr (props changed) head/devel/p5-Task-Weaken/pkg-descr (props changed) head/devel/p5-Tee/pkg-descr (props changed) head/devel/p5-Template-Provider-Encode/pkg-descr (props changed) head/devel/p5-Term-ANSIColor/pkg-descr (props changed) head/devel/p5-Term-ANSIScreen/pkg-descr (props changed) head/devel/p5-Term-Animation/pkg-descr (props changed) head/devel/p5-Term-CallEditor/pkg-descr (props changed) head/devel/p5-Term-Menus/pkg-descr (props changed) head/devel/p5-Term-ProgressBar/pkg-descr (props changed) head/devel/p5-Term-Query/pkg-descr (props changed) head/devel/p5-Term-RawInput/pkg-descr (props changed) head/devel/p5-Term-ReadKey/pkg-descr (props changed) head/devel/p5-Term-ReadLine-Zoid/pkg-descr (props changed) head/devel/p5-Term-ReadPassword/pkg-descr (props changed) head/devel/p5-Term-Screen/pkg-descr (props changed) head/devel/p5-Term-Visual/pkg-descr (props changed) head/devel/p5-Test-Aggregate/pkg-descr (props changed) head/devel/p5-Test-Assertions/pkg-descr (props changed) head/devel/p5-Test-Base/pkg-descr (props changed) head/devel/p5-Test-Benchmark/pkg-descr (props changed) head/devel/p5-Test-BinaryData/pkg-descr (props changed) head/devel/p5-Test-Block/pkg-descr (props changed) head/devel/p5-Test-CPAN-Meta-YAML/pkg-descr (props changed) head/devel/p5-Test-CheckDeps/pkg-descr (props changed) head/devel/p5-Test-CheckManifest/pkg-descr (props changed) head/devel/p5-Test-Class-Most/pkg-descr (props changed) head/devel/p5-Test-Class/pkg-descr (props changed) head/devel/p5-Test-ClassAPI/pkg-descr (props changed) head/devel/p5-Test-Cmd/pkg-descr (props changed) head/devel/p5-Test-Command-Simple/pkg-descr (props changed) head/devel/p5-Test-Command/pkg-descr (props changed) head/devel/p5-Test-Compile/pkg-descr (props changed) head/devel/p5-Test-Data/pkg-descr (props changed) head/devel/p5-Test-Debugger/pkg-descr (props changed) head/devel/p5-Test-Declare/pkg-descr (props changed) head/devel/p5-Test-Deep/pkg-descr (props changed) head/devel/p5-Test-Dependencies/pkg-descr (props changed) head/devel/p5-Test-DependentModules/pkg-descr (props changed) head/devel/p5-Test-Differences/pkg-descr (props changed) head/devel/p5-Test-Distribution/pkg-descr (props changed) head/devel/p5-Test-EOL/pkg-descr (props changed) head/devel/p5-Test-Exception/pkg-descr (props changed) head/devel/p5-Test-Expect/pkg-descr (props changed) head/devel/p5-Test-FailWarnings/pkg-descr (props changed) head/devel/p5-Test-Fatal/pkg-descr (props changed) head/devel/p5-Test-File-Contents/pkg-descr (props changed) head/devel/p5-Test-File-ShareDir/pkg-descr (props changed) head/devel/p5-Test-File/pkg-descr (props changed) head/devel/p5-Test-Filename/pkg-descr (props changed) head/devel/p5-Test-Fixture-DBIC-Schema/pkg-descr (props changed) head/devel/p5-Test-Group/pkg-descr (props changed) head/devel/p5-Test-HTML-Tidy/pkg-descr (props changed) head/devel/p5-Test-Harness/pkg-descr (props changed) head/devel/p5-Test-HexString/pkg-descr (props changed) head/devel/p5-Test-Identity/pkg-descr (props changed) head/devel/p5-Test-If/pkg-descr (props changed) head/devel/p5-Test-InDistDir/pkg-descr (props changed) head/devel/p5-Test-Inter/pkg-descr (props changed) head/devel/p5-Test-JSON/pkg-descr (props changed) head/devel/p5-Test-LeakTrace/pkg-descr (props changed) head/devel/p5-Test-LoadAllModules/pkg-descr (props changed) head/devel/p5-Test-Log4perl/pkg-descr (props changed) head/devel/p5-Test-LongString/pkg-descr (props changed) head/devel/p5-Test-Manifest/pkg-descr (props changed) head/devel/p5-Test-Memory-Cycle/pkg-descr (props changed) head/devel/p5-Test-Mini/pkg-descr (props changed) head/devel/p5-Test-Mock-Guard/pkg-descr (props changed) head/devel/p5-Test-Mock-LWP-Dispatch/pkg-descr (props changed) head/devel/p5-Test-MockModule/pkg-descr (props changed) head/devel/p5-Test-MockObject/pkg-descr (props changed) head/devel/p5-Test-MockRandom/pkg-descr (props changed) head/devel/p5-Test-MockTime/pkg-descr (props changed) head/devel/p5-Test-Module-Used/pkg-descr (props changed) head/devel/p5-Test-Moose-More/pkg-descr (props changed) head/devel/p5-Test-More-UTF8/pkg-descr (props changed) head/devel/p5-Test-Most/pkg-descr (props changed) head/devel/p5-Test-Name-FromLine/pkg-descr (props changed) head/devel/p5-Test-NoTabs/pkg-descr (props changed) head/devel/p5-Test-NoWarnings/pkg-descr (props changed) head/devel/p5-Test-Number-Delta/pkg-descr (props changed) head/devel/p5-Test-Object/pkg-descr (props changed) head/devel/p5-Test-POE-Client-TCP/pkg-descr (props changed) head/devel/p5-Test-POE-Server-TCP/pkg-descr (props changed) head/devel/p5-Test-PerlTidy/pkg-descr (props changed) head/devel/p5-Test-Pod-Coverage-Permissive/pkg-descr (props changed) head/devel/p5-Test-Pod-Coverage/pkg-descr (props changed) head/devel/p5-Test-Pod/pkg-descr (props changed) head/devel/p5-Test-Portability-Files/pkg-descr (props changed) head/devel/p5-Test-RandomResults/pkg-descr (props changed) head/devel/p5-Test-Refcount/pkg-descr (props changed) head/devel/p5-Test-Reporter/pkg-descr (props changed) head/devel/p5-Test-Requires/pkg-descr (props changed) head/devel/p5-Test-Script-Run/pkg-descr (props changed) head/devel/p5-Test-Script/pkg-descr (props changed) head/devel/p5-Test-SharedFork/pkg-descr (props changed) head/devel/p5-Test-Simple/pkg-descr (props changed) head/devel/p5-Test-Spec/pkg-descr (props changed) head/devel/p5-Test-Spelling/pkg-descr (props changed) head/devel/p5-Test-Strict/pkg-descr (props changed) head/devel/p5-Test-SubCalls/pkg-descr (props changed) head/devel/p5-Test-Sys-Info/pkg-descr (props changed) head/devel/p5-Test-TAP-HTMLMatrix/pkg-descr (props changed) head/devel/p5-Test-TAP-Model/pkg-descr (props changed) head/devel/p5-Test-TCP/pkg-descr (props changed) head/devel/p5-Test-TableDriven/pkg-descr (props changed) head/devel/p5-Test-Taint/pkg-descr (props changed) head/devel/p5-Test-TempDir/pkg-descr (props changed) head/devel/p5-Test-Tester/pkg-descr (props changed) head/devel/p5-Test-Time/pkg-descr (props changed) head/devel/p5-Test-Timer/pkg-descr (props changed) head/devel/p5-Test-TinyMocker/pkg-descr (props changed) head/devel/p5-Test-Trap/pkg-descr (props changed) head/devel/p5-Test-Unit/pkg-descr (props changed) head/devel/p5-Test-UseAllModules/pkg-descr (props changed) head/devel/p5-Test-WWW-Declare/pkg-descr (props changed) head/devel/p5-Test-WWW-Mechanize-CGI/pkg-descr (props changed) head/devel/p5-Test-WWW-Mechanize-CGIApp/pkg-descr (props changed) head/devel/p5-Test-WWW-Mechanize-Catalyst/pkg-descr (props changed) head/devel/p5-Test-WWW-Mechanize-PSGI/pkg-descr (props changed) head/devel/p5-Test-WWW-Mechanize/pkg-descr (props changed) head/devel/p5-Test-WWW-Selenium/pkg-descr (props changed) head/devel/p5-Test-Warn/pkg-descr (props changed) head/devel/p5-Test-Weaken/pkg-descr (props changed) head/devel/p5-Test-XML-Valid/pkg-descr (props changed) head/devel/p5-Test-XML/pkg-descr (props changed) head/devel/p5-Test-YAML-Meta/pkg-descr (props changed) head/devel/p5-Test-YAML-Valid/pkg-descr (props changed) head/devel/p5-Test-use-ok/pkg-descr (props changed) head/devel/p5-Test-utf8/pkg-descr (props changed) head/devel/p5-Text-Levenshtein/pkg-descr (props changed) head/devel/p5-Text-LevenshteinXS/pkg-descr (props changed) head/devel/p5-Text-vFile-asData/pkg-descr (props changed) head/devel/p5-Thread-Apartment/pkg-descr (props changed) head/devel/p5-Thread-Cancel/pkg-descr (props changed) head/devel/p5-Thread-Queue-Duplex/pkg-descr (props changed) head/devel/p5-Thread-Queue/pkg-descr (props changed) head/devel/p5-Thread-Suspend/pkg-descr (props changed) head/devel/p5-Thrift-XS/pkg-descr (props changed) head/devel/p5-Thrift/pkg-descr (props changed) head/devel/p5-Tie-Array-Pack/pkg-descr (props changed) head/devel/p5-Tie-Array-Sorted/pkg-descr (props changed) head/devel/p5-Tie-CPHash/pkg-descr (props changed) head/devel/p5-Tie-Cache/pkg-descr (props changed) head/devel/p5-Tie-File-AsHash/pkg-descr (props changed) head/devel/p5-Tie-File/pkg-descr (props changed) head/devel/p5-Tie-Function/pkg-descr (props changed) head/devel/p5-Tie-Hash-Indexed/pkg-descr (props changed) head/devel/p5-Tie-Hash-MultiValue/pkg-descr (props changed) head/devel/p5-Tie-Hash-Regex/pkg-descr (props changed) head/devel/p5-Tie-Hash-Sorted/pkg-descr (props changed) head/devel/p5-Tie-Hash-TwoWay/pkg-descr (props changed) head/devel/p5-Tie-RefHash-Weak/pkg-descr (props changed) head/devel/p5-Tie-RefHash/pkg-descr (props changed) head/devel/p5-Tie-RegexpHash/pkg-descr (props changed) head/devel/p5-Tie-Restore/pkg-descr (props changed) head/devel/p5-Tie-ShareLite/pkg-descr (props changed) head/devel/p5-Tie-ToObject/pkg-descr (props changed) head/devel/p5-Tie-Util/pkg-descr (props changed) head/devel/p5-Tie-iCal/pkg-descr (props changed) head/devel/p5-Time-Clock/pkg-descr (props changed) head/devel/p5-Time-Crontab/pkg-descr (props changed) head/devel/p5-Time-Duration/pkg-descr (props changed) head/devel/p5-Time-Format/pkg-descr (props changed) head/devel/p5-Time-HiRes/pkg-descr (props changed) head/devel/p5-Time-Interval/pkg-descr (props changed) head/devel/p5-Time-Local/pkg-descr (props changed) head/devel/p5-Time-Object/pkg-descr (props changed) head/devel/p5-Time-Out/pkg-descr (props changed) head/devel/p5-Time-Period/pkg-descr (props changed) head/devel/p5-Time-Piece-Range/pkg-descr (props changed) head/devel/p5-Time-Piece/pkg-descr (props changed) head/devel/p5-Time-Progress/pkg-descr (props changed) head/devel/p5-Time-Stopwatch/pkg-descr (props changed) head/devel/p5-Time-Warp/pkg-descr (props changed) head/devel/p5-Time-modules/pkg-descr (props changed) head/devel/p5-TraceFuncs/pkg-descr (props changed) head/devel/p5-Tree-Binary-Dictionary/pkg-descr (props changed) head/devel/p5-Tree-Binary/pkg-descr (props changed) head/devel/p5-Tree-Node/pkg-descr (props changed) head/devel/p5-Tree-Parser/pkg-descr (props changed) head/devel/p5-Tree-R/pkg-descr (props changed) head/devel/p5-Tree-RedBlack/pkg-descr (props changed) head/devel/p5-Tree-Simple-VisitorFactory/pkg-descr (props changed) head/devel/p5-Tree-Simple/pkg-descr (props changed) head/devel/p5-UDCode/pkg-descr (props changed) head/devel/p5-UNIVERSAL-can/pkg-descr (props changed) head/devel/p5-UNIVERSAL-isa/pkg-descr (props changed) head/devel/p5-UNIVERSAL-moniker/pkg-descr (props changed) head/devel/p5-UNIVERSAL-ref/pkg-descr (props changed) head/devel/p5-UNIVERSAL-require/pkg-descr (props changed) head/devel/p5-UNIVERSAL-which/pkg-descr (props changed) head/devel/p5-UUID-Tiny/pkg-descr (props changed) head/devel/p5-Uniq/pkg-descr (props changed) head/devel/p5-Unix-Statgrab/pkg-descr (props changed) head/devel/p5-Unix-Uptime/pkg-descr (props changed) head/devel/p5-User-Identity/pkg-descr (props changed) head/devel/p5-VCP-Dest-svk/pkg-descr (props changed) head/devel/p5-VCP-Source-cvsbk/pkg-descr (props changed) head/devel/p5-VCP-autrijus/pkg-descr (props changed) head/devel/p5-VCS-CVS/pkg-descr (props changed) head/devel/p5-VCS-Lite/pkg-descr (props changed) head/devel/p5-VCS/pkg-descr (props changed) head/devel/p5-Validation-Class/pkg-descr (props changed) head/devel/p5-Variable-Eject/pkg-descr (props changed) head/devel/p5-Variable-Magic/pkg-descr (props changed) head/devel/p5-Want/pkg-descr (props changed) head/devel/p5-WeakRef/pkg-descr (props changed) head/devel/p5-Workflow/pkg-descr (props changed) head/devel/p5-XML-Pastor/pkg-descr (props changed) head/devel/p5-XS-Object-Magic/pkg-descr (props changed) head/devel/p5-XSLoader/pkg-descr (props changed) head/devel/p5-YAML-AppConfig/pkg-descr (props changed) head/devel/p5-Yada-Yada-Yada/pkg-descr (props changed) head/devel/p5-ZConf-GUI/pkg-descr (props changed) head/devel/p5-ZML/pkg-descr (props changed) head/devel/p5-accessors/pkg-descr (props changed) head/devel/p5-aliased/pkg-descr (props changed) head/devel/p5-asa/pkg-descr (props changed) head/devel/p5-autobox-Core/pkg-descr (props changed) head/devel/p5-autobox/pkg-descr (props changed) head/devel/p5-autodie/pkg-descr (props changed) head/devel/p5-base/pkg-descr (props changed) head/devel/p5-boolean/pkg-descr (props changed) head/devel/p5-carton/pkg-descr (props changed) head/devel/p5-constant-boolean/pkg-descr (props changed) head/devel/p5-cpan-listchanges/pkg-descr (props changed) head/devel/p5-enum/pkg-descr (props changed) head/devel/p5-iCal-Parser/pkg-descr (props changed) head/devel/p5-indirect/pkg-descr (props changed) head/devel/p5-lib-abs/pkg-descr (props changed) head/devel/p5-libalarm/pkg-descr (props changed) head/devel/p5-local-lib/pkg-descr (props changed) head/devel/p5-mixin/pkg-descr (props changed) head/devel/p5-mocked/pkg-descr (props changed) head/devel/p5-namespace-autoclean/pkg-descr (props changed) head/devel/p5-namespace-clean/pkg-descr (props changed) head/devel/p5-namespace-sweep/pkg-descr (props changed) head/devel/p5-parent/pkg-descr (props changed) head/devel/p5-perlbrew/pkg-descr (props changed) head/devel/p5-perlkde/pkg-descr (props changed) head/devel/p5-perlqt/pkg-descr (props changed) head/devel/p5-pip/pkg-descr (props changed) head/devel/p5-prefork/pkg-descr (props changed) head/devel/p5-relative/pkg-descr (props changed) head/devel/p5-rpm-build-perl/pkg-descr (props changed) head/devel/p5-strictures/pkg-descr (props changed) head/devel/p5-subatom/pkg-descr (props changed) head/devel/p5-subversion/pkg-descr (props changed) head/devel/p5-syntax/pkg-descr (props changed) head/devel/p5-true/pkg-descr (props changed) head/devel/p5-uni-perl/pkg-descr (props changed) head/devel/p5-version/pkg-descr (props changed) head/devel/p65/pkg-descr (props changed) head/devel/paexec/pkg-descr (props changed) head/devel/papi/pkg-descr (props changed) head/devel/papp/pkg-descr (props changed) head/devel/pas2dox/pkg-descr (props changed) head/devel/patch/pkg-descr (props changed) head/devel/pccts/pkg-descr (props changed) head/devel/pcl/pkg-descr (props changed) head/devel/pcre++/pkg-descr (props changed) head/devel/pcre/pkg-descr (props changed) head/devel/pcsc-lite/pkg-descr (props changed) head/devel/pdcurses-the/pkg-descr (props changed) head/devel/pdcurses/pkg-descr (props changed) head/devel/pear-Config/pkg-descr (props changed) head/devel/pear-Console_Color/pkg-descr (props changed) head/devel/pear-Console_CommandLine/pkg-descr (props changed) head/devel/pear-Console_Getargs/pkg-descr (props changed) head/devel/pear-Console_Table/pkg-descr (props changed) head/devel/pear-Date/pkg-descr (props changed) head/devel/pear-Date_Holidays/pkg-descr (props changed) head/devel/pear-Date_Holidays_Austria/pkg-descr (props changed) head/devel/pear-Date_Holidays_Brazil/pkg-descr (props changed) head/devel/pear-Date_Holidays_Denmark/pkg-descr (props changed) head/devel/pear-Date_Holidays_Discordian/pkg-descr (props changed) head/devel/pear-Date_Holidays_Germany/pkg-descr (props changed) head/devel/pear-Date_Holidays_Iceland/pkg-descr (props changed) head/devel/pear-Date_Holidays_Ireland/pkg-descr (props changed) head/devel/pear-Date_Holidays_Italy/pkg-descr (props changed) head/devel/pear-Date_Holidays_Japan/pkg-descr (props changed) head/devel/pear-Date_Holidays_Netherlands/pkg-descr (props changed) head/devel/pear-Date_Holidays_Norway/pkg-descr (props changed) head/devel/pear-Date_Holidays_PHPdotNet/pkg-descr (props changed) head/devel/pear-Date_Holidays_Romania/pkg-descr (props changed) head/devel/pear-Date_Holidays_Slovenia/pkg-descr (props changed) head/devel/pear-Date_Holidays_Sweden/pkg-descr (props changed) head/devel/pear-Date_Holidays_UNO/pkg-descr (props changed) head/devel/pear-Date_Holidays_USA/pkg-descr (props changed) head/devel/pear-Date_Holidays_Ukraine/pkg-descr (props changed) head/devel/pear-Event_Dispatcher/pkg-descr (props changed) head/devel/pear-FSM/pkg-descr (props changed) head/devel/pear-File_Iterator/pkg-descr (props changed) head/devel/pear-HTML_BBCodeParser/pkg-descr (props changed) head/devel/pear-HTML_CSS/pkg-descr (props changed) head/devel/pear-HTML_Common/pkg-descr (props changed) head/devel/pear-HTML_Common2/pkg-descr (props changed) head/devel/pear-HTML_Form/pkg-descr (props changed) head/devel/pear-HTML_Javascript/pkg-descr (props changed) head/devel/pear-HTML_Page2/pkg-descr (props changed) head/devel/pear-HTML_QuickForm/pkg-descr (props changed) head/devel/pear-HTML_QuickForm2/pkg-descr (props changed) head/devel/pear-HTML_QuickForm_Controller/pkg-descr (props changed) head/devel/pear-HTML_QuickForm_Livesearch/pkg-descr (props changed) head/devel/pear-HTML_QuickForm_Renderer_Tableless/pkg-descr (props changed) head/devel/pear-HTML_QuickForm_SelectFilter/pkg-descr (props changed) head/devel/pear-HTML_QuickForm_advmultiselect/pkg-descr (props changed) head/devel/pear-HTML_Select/pkg-descr (props changed) head/devel/pear-HTML_Select_Common/pkg-descr (props changed) head/devel/pear-HTML_Table/pkg-descr (props changed) head/devel/pear-HTML_Template_Flexy/pkg-descr (props changed) head/devel/pear-HTML_Template_IT/pkg-descr (props changed) head/devel/pear-HTML_Template_PHPLIB/pkg-descr (props changed) head/devel/pear-HTML_Template_Sigma/pkg-descr (props changed) head/devel/pear-HTML_TreeMenu/pkg-descr (props changed) head/devel/pear-Horde_Alarm/pkg-descr (props changed) head/devel/pear-Horde_Argv/pkg-descr (props changed) head/devel/pear-Horde_Autoloader/pkg-descr (props changed) head/devel/pear-Horde_Autoloader_Cache/pkg-descr (props changed) head/devel/pear-Horde_Cache/pkg-descr (props changed) head/devel/pear-Horde_Cli/pkg-descr (props changed) head/devel/pear-Horde_Constraint/pkg-descr (props changed) head/devel/pear-Horde_Controller/pkg-descr (props changed) head/devel/pear-Horde_Core/pkg-descr (props changed) head/devel/pear-Horde_Data/pkg-descr (props changed) head/devel/pear-Horde_Date/pkg-descr (props changed) head/devel/pear-Horde_Date_Parser/pkg-descr (props changed) head/devel/pear-Horde_Exception/pkg-descr (props changed) head/devel/pear-Horde_History/pkg-descr (props changed) head/devel/pear-Horde_Icalendar/pkg-descr (props changed) head/devel/pear-Horde_Injector/pkg-descr (props changed) head/devel/pear-Horde_Itip/pkg-descr (props changed) head/devel/pear-Horde_Lock/pkg-descr (props changed) head/devel/pear-Horde_LoginTasks/pkg-descr (props changed) head/devel/pear-Horde_Nls/pkg-descr (props changed) head/devel/pear-Horde_Notification/pkg-descr (props changed) head/devel/pear-Horde_Prefs/pkg-descr (props changed) head/devel/pear-Horde_Queue/pkg-descr (props changed) head/devel/pear-Horde_Rdo/pkg-descr (props changed) head/devel/pear-Horde_Role/pkg-descr (props changed) head/devel/pear-Horde_Scheduler/pkg-descr (props changed) head/devel/pear-Horde_Serialize/pkg-descr (props changed) head/devel/pear-Horde_Stream/pkg-descr (props changed) head/devel/pear-Horde_Stream_Filter/pkg-descr (props changed) head/devel/pear-Horde_Stream_Wrapper/pkg-descr (props changed) head/devel/pear-Horde_Support/pkg-descr (props changed) head/devel/pear-Horde_Thrift/pkg-descr (props changed) head/devel/pear-Horde_Timezone/pkg-descr (props changed) head/devel/pear-Horde_Token/pkg-descr (props changed) head/devel/pear-Horde_Translation/pkg-descr (props changed) head/devel/pear-Horde_Tree/pkg-descr (props changed) head/devel/pear-Horde_Util/pkg-descr (props changed) head/devel/pear-Horde_View/pkg-descr (props changed) head/devel/pear-I18N/pkg-descr (props changed) head/devel/pear-IO_Bit/pkg-descr (props changed) head/devel/pear-Math_Fraction/pkg-descr (props changed) head/devel/pear-Net_Gearman/pkg-descr (props changed) head/devel/pear-OLE/pkg-descr (props changed) head/devel/pear-PEAR_Info/pkg-descr (props changed) head/devel/pear-PEAR_PackageFileManager/pkg-descr (props changed) head/devel/pear-PEAR_PackageFileManager2/pkg-descr (props changed) head/devel/pear-PEAR_PackageFileManager_Plugins/pkg-descr (props changed) head/devel/pear-PHPDoc/pkg-descr (props changed) head/devel/pear-PHPTAL/pkg-descr (props changed) head/devel/pear-PHPUnit3/pkg-descr (props changed) head/devel/pear-PHPUnit_MockObject/pkg-descr (props changed) head/devel/pear-PHP_ArrayOf/pkg-descr (props changed) head/devel/pear-PHP_Beautifier/pkg-descr (props changed) head/devel/pear-PHP_CodeBrowser/pkg-descr (props changed) head/devel/pear-PHP_CodeCoverage/pkg-descr (props changed) head/devel/pear-PHP_CodeSniffer/pkg-descr (props changed) head/devel/pear-PHP_Compat/pkg-descr (props changed) head/devel/pear-PHP_CompatInfo/pkg-descr (props changed) head/devel/pear-PHP_Depend/pkg-descr (props changed) head/devel/pear-PHP_PMD/pkg-descr (props changed) head/devel/pear-PHP_Parser/pkg-descr (props changed) head/devel/pear-PHP_ParserGenerator/pkg-descr (props changed) head/devel/pear-PHP_Timer/pkg-descr (props changed) head/devel/pear-PHP_TokenStream/pkg-descr (props changed) head/devel/pear-PHP_UML/pkg-descr (props changed) head/devel/pear-PPW/pkg-descr (props changed) head/devel/pear-Pager/pkg-descr (props changed) head/devel/pear-PhpDocumentor/pkg-descr (props changed) head/devel/pear-Pirum/pkg-descr (props changed) head/devel/pear-SebastianBergmann_FinderFacade/pkg-descr (props changed) head/devel/pear-SebastianBergmann_PHPCPD/pkg-descr (props changed) head/devel/pear-SebastianBergmann_PHPLOC/pkg-descr (props changed) head/devel/pear-Structure_LinkedList/pkg-descr (props changed) head/devel/pear-Structures_DataGrid/pkg-descr (props changed) head/devel/pear-Structures_DataGrid_Renderer_Console/pkg-descr (props changed) head/devel/pear-Structures_DataGrid_Renderer_HTMLSortForm/pkg-descr (props changed) head/devel/pear-Structures_DataGrid_Renderer_HTMLTable/pkg-descr (props changed) head/devel/pear-Structures_DataGrid_Renderer_XUL/pkg-descr (props changed) head/devel/pear-Symfony_Component_Console/pkg-descr (props changed) head/devel/pear-Symfony_Component_Finder/pkg-descr (props changed) head/devel/pear-System_Command/pkg-descr (props changed) head/devel/pear-Testing_Selenium/pkg-descr (props changed) head/devel/pear-Text_Diff/pkg-descr (props changed) head/devel/pear-TheSeer_DirectoryScanner/pkg-descr (props changed) head/devel/pear-TheSeer_fDOMDocument/pkg-descr (props changed) head/devel/pear-TheSeer_fXSL/pkg-descr (props changed) head/devel/pear-TheSeer_phpDox/pkg-descr (props changed) head/devel/pear-VFS/pkg-descr (props changed) head/devel/pear-Validate/pkg-descr (props changed) head/devel/pear-Validate_AU/pkg-descr (props changed) head/devel/pear-Validate_Finance/pkg-descr (props changed) head/devel/pear-Validate_Finance_CreditCard/pkg-descr (props changed) head/devel/pear-Validate_US/pkg-descr (props changed) head/devel/pear-Var_Dump/pkg-descr (props changed) head/devel/pear-VersionControl_Git/pkg-descr (props changed) head/devel/pear-VersionControl_SVN/pkg-descr (props changed) head/devel/pear-XML_NITF/pkg-descr (props changed) head/devel/pear-XML_Parser/pkg-descr (props changed) head/devel/pear-XML_RSS/pkg-descr (props changed) head/devel/pear-XML_SVG/pkg-descr (props changed) head/devel/pear-XML_Serializer/pkg-descr (props changed) head/devel/pear-XML_Transformer/pkg-descr (props changed) head/devel/pear-XML_Tree/pkg-descr (props changed) head/devel/pear-XML_Util/pkg-descr (props changed) head/devel/pear-channel-doctrine/pkg-descr (props changed) head/devel/pear-channel-ezc/pkg-descr (props changed) head/devel/pear-channel-horde/pkg-descr (props changed) head/devel/pear-channel-htmlpurifier/pkg-descr (props changed) head/devel/pear-channel-openpear/pkg-descr (props changed) head/devel/pear-channel-pdepend/pkg-descr (props changed) head/devel/pear-channel-phing/pkg-descr (props changed) head/devel/pear-channel-phpdoc/pkg-descr (props changed) head/devel/pear-channel-phpmd/pkg-descr (props changed) head/devel/pear-channel-phpunit/pkg-descr (props changed) head/devel/pear-channel-pirum/pkg-descr (props changed) head/devel/pear-channel-symfony/pkg-descr (props changed) head/devel/pear-channel-theseer/pkg-descr (props changed) head/devel/pear-codegen/pkg-descr (props changed) head/devel/pear-ezc_Base/pkg-descr (props changed) head/devel/pear-ezc_ConsoleTools/pkg-descr (props changed) head/devel/pear-htmlpurifier/pkg-descr (props changed) head/devel/pear-pdepend-staticReflection/pkg-descr (props changed) head/devel/pear-phing/pkg-descr (props changed) head/devel/pear/pkg-descr (props changed) head/devel/pecl-APCu/pkg-descr (props changed) head/devel/pecl-automap/pkg-descr (props changed) head/devel/pecl-bbcode/pkg-descr (props changed) head/devel/pecl-bcompiler/pkg-descr (props changed) head/devel/pecl-eio/pkg-descr (props changed) head/devel/pecl-ev/pkg-descr (props changed) head/devel/pecl-expect/pkg-descr (props changed) head/devel/pecl-gearman/pkg-descr (props changed) head/devel/pecl-hidef/pkg-descr (props changed) head/devel/pecl-htscanner/pkg-descr (props changed) head/devel/pecl-inotify/pkg-descr (props changed) head/devel/pecl-intl/pkg-descr (props changed) head/devel/pecl-judy/pkg-descr (props changed) head/devel/pecl-libevent/pkg-descr (props changed) head/devel/pecl-mcve/pkg-descr (props changed) head/devel/pecl-ncurses/pkg-descr (props changed) head/devel/pecl-operator/pkg-descr (props changed) head/devel/pecl-params/pkg-descr (props changed) head/devel/pecl-parsekit/pkg-descr (props changed) head/devel/pecl-pthreads/pkg-descr (props changed) head/devel/pecl-runkit/pkg-descr (props changed) head/devel/pecl-scream/pkg-descr (props changed) head/devel/pecl-shape/pkg-descr (props changed) head/devel/pecl-spl_types/pkg-descr (props changed) head/devel/pecl-spread/pkg-descr (props changed) head/devel/pecl-statgrab/pkg-descr (props changed) head/devel/pecl-svn/pkg-descr (props changed) head/devel/pecl-test_helpers/pkg-descr (props changed) head/devel/pecl-uploadprogress/pkg-descr (props changed) head/devel/pecl-uuid/pkg-descr (props changed) head/devel/pecl-vld/pkg-descr (props changed) head/devel/pecl-xhprof/pkg-descr (props changed) head/devel/pecl-yac/pkg-descr (props changed) head/devel/pecl-zookeeper/pkg-descr (props changed) head/devel/performance/pkg-descr (props changed) head/devel/perlconsole/pkg-descr (props changed) head/devel/php-java-bridge/pkg-descr (props changed) head/devel/php-libawl/pkg-descr (props changed) head/devel/php-xdebug/pkg-descr (props changed) head/devel/php5-blitz-devel/pkg-descr (props changed) head/devel/php5-blitz/pkg-descr (props changed) head/devel/php5-dav/pkg-descr (props changed) head/devel/php5-geshi/pkg-descr (props changed) head/devel/php5-msgpack/pkg-descr (props changed) head/devel/php5-pinba/pkg-descr (props changed) head/devel/php5-thrift/pkg-descr (props changed) head/devel/phpbt/pkg-descr (props changed) head/devel/phpsh/pkg-descr (props changed) head/devel/phptags/pkg-descr (props changed) head/devel/physfs-devel/pkg-descr (props changed) head/devel/physfs/pkg-descr (props changed) head/devel/picasm/pkg-descr (props changed) head/devel/picp/pkg-descr (props changed) head/devel/picprog/pkg-descr (props changed) head/devel/pinba_engine/pkg-descr (props changed) head/devel/pipestatus/pkg-descr (props changed) head/devel/pire/pkg-descr (props changed) head/devel/pit/pkg-descr (props changed) head/devel/plan9port/pkg-descr (props changed) head/devel/pmd/pkg-descr (props changed) head/devel/pmk/pkg-descr (props changed) head/devel/poco-ssl/pkg-descr (props changed) head/devel/poco/pkg-descr (props changed) head/devel/popt/pkg-descr (props changed) head/devel/poslib/pkg-descr (props changed) head/devel/ppl/pkg-descr (props changed) head/devel/premake/pkg-descr (props changed) head/devel/premake4/pkg-descr (props changed) head/devel/preps-gui/pkg-descr (props changed) head/devel/prepstools/pkg-descr (props changed) head/devel/privman/pkg-descr (props changed) head/devel/projectcenter/pkg-descr (props changed) head/devel/protobuf-c/pkg-descr (props changed) head/devel/protobuf/pkg-descr (props changed) head/devel/prototype/pkg-descr (props changed) head/devel/psptoolchain-binutils/pkg-descr (props changed) head/devel/psptoolchain-gcc-stage1/pkg-descr (props changed) head/devel/psptoolchain-gdb/pkg-descr (props changed) head/devel/psptoolchain-newlib/pkg-descr (props changed) head/devel/psptoolchain-pspsdk-stage1/pkg-descr (props changed) head/devel/psptoolchain/pkg-descr (props changed) head/devel/pstreams/pkg-descr (props changed) head/devel/psvn/pkg-descr (props changed) head/devel/pth/pkg-descr (props changed) head/devel/pthsem/pkg-descr (props changed) head/devel/ptlib/pkg-descr (props changed) head/devel/ptmalloc/pkg-descr (props changed) head/devel/ptmalloc2/pkg-descr (props changed) head/devel/pty/pkg-descr (props changed) head/devel/ptypes/pkg-descr (props changed) head/devel/publib/pkg-descr (props changed) head/devel/pure-ffi/pkg-descr (props changed) head/devel/pure-gen/pkg-descr (props changed) head/devel/pure-readline/pkg-descr (props changed) head/devel/pure-stldict/pkg-descr (props changed) head/devel/pushmi/pkg-descr (props changed) head/devel/pwlib/pkg-descr (props changed) head/devel/py-Acquisition/pkg-descr (props changed) head/devel/py-AddOns/pkg-descr (props changed) head/devel/py-Breve/pkg-descr (props changed) head/devel/py-DocumentTemplate/pkg-descr (props changed) head/devel/py-EnthoughtBase/pkg-descr (props changed) head/devel/py-ExtensionClass/pkg-descr (props changed) head/devel/py-InlineEgg/pkg-descr (props changed) head/devel/py-Jinja/pkg-descr (props changed) head/devel/py-Jinja2-doc/pkg-descr (props changed) head/devel/py-Jinja2/pkg-descr (props changed) head/devel/py-Missing/pkg-descr (props changed) head/devel/py-MultiMapping/pkg-descr (props changed) head/devel/py-Persistence/pkg-descr (props changed) head/devel/py-Products.ATReferenceBrowserWidget/pkg-descr (props changed) head/devel/py-Products.BTreeFolder2/pkg-descr (props changed) head/devel/py-Products.CMFCalendar/pkg-descr (props changed) head/devel/py-Products.CMFCore/pkg-descr (props changed) head/devel/py-Products.CMFDefault/pkg-descr (props changed) head/devel/py-Products.CMFEditions/pkg-descr (props changed) head/devel/py-Products.CMFFormController/pkg-descr (props changed) head/devel/py-Products.CMFPlacefulWorkflow/pkg-descr (props changed) head/devel/py-Products.CMFQuickInstallerTool/pkg-descr (props changed) head/devel/py-Products.CMFTestCase/pkg-descr (props changed) head/devel/py-Products.CMFUid/pkg-descr (props changed) head/devel/py-Products.DCWorkflow/pkg-descr (props changed) head/devel/py-Products.ExtendedPathIndex/pkg-descr (props changed) head/devel/py-Products.ExternalEditor/pkg-descr (props changed) head/devel/py-Products.ExternalMethod/pkg-descr (props changed) head/devel/py-Products.LDAPMultiPlugins/pkg-descr (props changed) head/devel/py-Products.LDAPUserFolder/pkg-descr (props changed) head/devel/py-Products.MIMETools/pkg-descr (props changed) head/devel/py-Products.Marshall/pkg-descr (props changed) head/devel/py-Products.OFSP/pkg-descr (props changed) head/devel/py-Products.PloneLanguageTool/pkg-descr (props changed) head/devel/py-Products.PluginRegistry/pkg-descr (props changed) head/devel/py-Products.PortalTransforms/pkg-descr (props changed) head/devel/py-Products.PythonScripts/pkg-descr (props changed) head/devel/py-Products.StandardCacheManagers/pkg-descr (props changed) head/devel/py-Products.ZCTextIndex/pkg-descr (props changed) head/devel/py-Products.ZCatalog/pkg-descr (props changed) head/devel/py-Products.ZSQLMethods/pkg-descr (props changed) head/devel/py-Products.ZopeVersionControl/pkg-descr (props changed) head/devel/py-Products.statusmessages/pkg-descr (props changed) head/devel/py-Products.validation/pkg-descr (props changed) head/devel/py-RPyC/pkg-descr (props changed) head/devel/py-Record/pkg-descr (props changed) head/devel/py-ScriptTest/pkg-descr (props changed) head/devel/py-SymbolType/pkg-descr (props changed) head/devel/py-TGScheduler/pkg-descr (props changed) head/devel/py-ToscaWidgets/pkg-descr (props changed) head/devel/py-TurboJinja/pkg-descr (props changed) head/devel/py-ZopeUndo/pkg-descr (props changed) head/devel/py-akismet/pkg-descr (props changed) head/devel/py-anonfunc/pkg-descr (props changed) head/devel/py-anyjson/pkg-descr (props changed) head/devel/py-apipkg/pkg-descr (props changed) head/devel/py-archetypes.schemaextender/pkg-descr (props changed) head/devel/py-argh/pkg-descr (props changed) head/devel/py-asn1-modules/pkg-descr (props changed) head/devel/py-aspects/pkg-descr (props changed) head/devel/py-aspyct/pkg-descr (props changed) head/devel/py-async/pkg-descr (props changed) head/devel/py-avro/pkg-descr (props changed) head/devel/py-babel/pkg-descr (props changed) head/devel/py-bcdoc/pkg-descr (props changed) head/devel/py-biplist/pkg-descr (props changed) head/devel/py-bison/pkg-descr (props changed) head/devel/py-bluelet/pkg-descr (props changed) head/devel/py-boto/pkg-descr (props changed) head/devel/py-botocore/pkg-descr (props changed) head/devel/py-cclib/pkg-descr (props changed) head/devel/py-cfgparse/pkg-descr (props changed) head/devel/py-cheetah/pkg-descr (props changed) head/devel/py-ciphon/pkg-descr (props changed) head/devel/py-circuits/pkg-descr (props changed) head/devel/py-cjson/pkg-descr (props changed) head/devel/py-cog/pkg-descr (props changed) head/devel/py-coil/pkg-descr (props changed) head/devel/py-collective.monkeypatcher/pkg-descr (props changed) head/devel/py-configobj/pkg-descr (props changed) head/devel/py-construct/pkg-descr (props changed) head/devel/py-country/pkg-descr (props changed) head/devel/py-coverage/pkg-descr (props changed) head/devel/py-crcmod/pkg-descr (props changed) head/devel/py-ctags/pkg-descr (props changed) head/devel/py-cxx/pkg-descr (props changed) head/devel/py-dal/pkg-descr (props changed) head/devel/py-dbus/pkg-descr (props changed) head/devel/py-defusedxml/pkg-descr (props changed) head/devel/py-deliciousapi/pkg-descr (props changed) head/devel/py-demjson/pkg-descr (props changed) head/devel/py-dexml/pkg-descr (props changed) head/devel/py-dialog/pkg-descr (props changed) head/devel/py-diazo/pkg-descr (props changed) head/devel/py-dirspec/pkg-descr (props changed) head/devel/py-durus/pkg-descr (props changed) head/devel/py-epsilon/pkg-descr (props changed) head/devel/py-event/pkg-descr (props changed) head/devel/py-experimental.cssselect/pkg-descr (props changed) head/devel/py-fam/pkg-descr (props changed) head/devel/py-fastimport/pkg-descr (props changed) head/devel/py-fileutils/pkg-descr (props changed) head/devel/py-five.formlib/pkg-descr (props changed) head/devel/py-five.globalrequest/pkg-descr (props changed) head/devel/py-five.localsitemanager/pkg-descr (props changed) head/devel/py-flexmock/pkg-descr (props changed) head/devel/py-foolscap/pkg-descr (props changed) head/devel/py-fortran/pkg-descr (props changed) head/devel/py-freebsd/pkg-descr (props changed) head/devel/py-fs/pkg-descr (props changed) head/devel/py-fudge/pkg-descr (props changed) head/devel/py-funcparserlib/pkg-descr (props changed) head/devel/py-fusefs/pkg-descr (props changed) head/devel/py-game/pkg-descr (props changed) head/devel/py-gamin/pkg-descr (props changed) head/devel/py-gdata/pkg-descr (props changed) head/devel/py-gearman/pkg-descr (props changed) head/devel/py-generate/pkg-descr (props changed) head/devel/py-geotypes/pkg-descr (props changed) head/devel/py-gevent/pkg-descr (props changed) head/devel/py-gflags/pkg-descr (props changed) head/devel/py-gitdb/pkg-descr (props changed) head/devel/py-gitosis/pkg-descr (props changed) head/devel/py-gobject/pkg-descr (props changed) head/devel/py-gobject3/pkg-descr (props changed) head/devel/py-grab/pkg-descr (props changed) head/devel/py-grizzled/pkg-descr (props changed) head/devel/py-grouch/pkg-descr (props changed) head/devel/py-gyp-devel/pkg-descr (props changed) head/devel/py-hghooks/pkg-descr (props changed) head/devel/py-hgsubversion/pkg-descr (props changed) head/devel/py-hgtools/pkg-descr (props changed) head/devel/py-icalendar/pkg-descr (props changed) head/devel/py-ice/pkg-descr (props changed) head/devel/py-icu/pkg-descr (props changed) head/devel/py-initgroups/pkg-descr (props changed) head/devel/py-instant/pkg-descr (props changed) head/devel/py-interface/pkg-descr (props changed) head/devel/py-ipaddr/pkg-descr (props changed) head/devel/py-itools/pkg-descr (props changed) head/devel/py-jira/pkg-descr (props changed) head/devel/py-jmespath/pkg-descr (props changed) head/devel/py-json-py/pkg-descr (props changed) head/devel/py-jsonrpclib/pkg-descr (props changed) head/devel/py-jsonschema/pkg-descr (props changed) head/devel/py-kid/pkg-descr (props changed) head/devel/py-kjbuckets/pkg-descr (props changed) head/devel/py-kqueue/pkg-descr (props changed) head/devel/py-krosspython/pkg-descr (props changed) head/devel/py-levenshtein/pkg-descr (props changed) head/devel/py-liblarch/pkg-descr (props changed) head/devel/py-libvirt/pkg-descr (props changed) head/devel/py-ll-core/pkg-descr (props changed) head/devel/py-lock_file/pkg-descr (props changed) head/devel/py-log4py/pkg-descr (props changed) head/devel/py-lxml/pkg-descr (props changed) head/devel/py-magic/pkg-descr (props changed) head/devel/py-meliae/pkg-descr (props changed) head/devel/py-mercurialserver/pkg-descr (props changed) head/devel/py-mez_xml/pkg-descr (props changed) head/devel/py-mimeparse/pkg-descr (props changed) head/devel/py-minimongo/pkg-descr (props changed) head/devel/py-mongoengine/pkg-descr (props changed) head/devel/py-mongokit/pkg-descr (props changed) head/devel/py-mox/pkg-descr (props changed) head/devel/py-msgpack/pkg-descr (props changed) head/devel/py-mwlib.ext/pkg-descr (props changed) head/devel/py-mx-experimental/pkg-descr (props changed) head/devel/py-mygpoclient/pkg-descr (props changed) head/devel/py-ncurses/pkg-descr (props changed) head/devel/py-nose/pkg-descr (props changed) head/devel/py-notifier/pkg-descr (props changed) head/devel/py-notify/pkg-descr (props changed) head/devel/py-ocempgui/pkg-descr (props changed) head/devel/py-ode/pkg-descr (props changed) head/devel/py-odfpy/pkg-descr (props changed) head/devel/py-omniorb/pkg-descr (props changed) head/devel/py-optik/pkg-descr (props changed) head/devel/py-orbit/pkg-descr (props changed) head/devel/py-parsedatetime/pkg-descr (props changed) head/devel/py-parsing/pkg-descr (props changed) head/devel/py-pathtools/pkg-descr (props changed) head/devel/py-paver/pkg-descr (props changed) head/devel/py-pefile/pkg-descr (props changed) head/devel/py-period/pkg-descr (props changed) head/devel/py-phpserialize/pkg-descr (props changed) head/devel/py-pika/pkg-descr (props changed) head/devel/py-plex/pkg-descr (props changed) head/devel/py-ply/pkg-descr (props changed) head/devel/py-polib/pkg-descr (props changed) head/devel/py-posix_ipc/pkg-descr (props changed) head/devel/py-pp/pkg-descr (props changed) head/devel/py-pqueue/pkg-descr (props changed) head/devel/py-protobuf/pkg-descr (props changed) head/devel/py-protocols-devel/pkg-descr (props changed) head/devel/py-protocols/pkg-descr (props changed) head/devel/py-ptrace/pkg-descr (props changed) head/devel/py-px/pkg-descr (props changed) head/devel/py-pycallgraph/pkg-descr (props changed) head/devel/py-pycerberus/pkg-descr (props changed) head/devel/py-pydasm/pkg-descr (props changed) head/devel/py-pyechonest/pkg-descr (props changed) head/devel/py-pyev/pkg-descr (props changed) head/devel/py-pyflakes/pkg-descr (props changed) head/devel/py-pygit2/pkg-descr (props changed) head/devel/py-pykde4/pkg-descr (props changed) head/devel/py-pykdeuic4/pkg-descr (props changed) head/devel/py-pyke/pkg-descr (props changed) head/devel/py-pylib/pkg-descr (props changed) head/devel/py-pyro/pkg-descr (props changed) head/devel/py-pyshapelib/pkg-descr (props changed) head/devel/py-pytemplate/pkg-descr (props changed) head/devel/py-pytest-runner/pkg-descr (props changed) head/devel/py-pytest/pkg-descr (props changed) head/devel/py-pythonbrew/pkg-descr (props changed) head/devel/py-pytz/pkg-descr (props changed) head/devel/py-pyutil/pkg-descr (props changed) head/devel/py-qserve/pkg-descr (props changed) head/devel/py-repoze.tm2/pkg-descr (props changed) head/devel/py-repoze.what/pkg-descr (props changed) head/devel/py-repoze.who-friendlyform/pkg-descr (props changed) head/devel/py-repoze.who-testutil/pkg-descr (props changed) head/devel/py-repoze.who/pkg-descr (props changed) head/devel/py-repoze.xmliter/pkg-descr (props changed) head/devel/py-resourcepackage/pkg-descr (props changed) head/devel/py-robotframework-pabot/pkg-descr (props changed) head/devel/py-robotframework-ride/pkg-descr (props changed) head/devel/py-robotframework-selenium2library/pkg-descr (props changed) head/devel/py-rope/pkg-descr (props changed) head/devel/py-roxlib/pkg-descr (props changed) head/devel/py-rtree/pkg-descr (props changed) head/devel/py-ruledispatch/pkg-descr (props changed) head/devel/py-sanetime/pkg-descr (props changed) head/devel/py-simpleparse/pkg-descr (props changed) head/devel/py-simpletal/pkg-descr (props changed) head/devel/py-simpy/pkg-descr (props changed) head/devel/py-sip/pkg-descr (props changed) head/devel/py-six/pkg-descr (props changed) head/devel/py-smmap/pkg-descr (props changed) head/devel/py-spark/pkg-descr (props changed) head/devel/py-sqlcc/pkg-descr (props changed) head/devel/py-statgrab/pkg-descr (props changed) head/devel/py-stevedore/pkg-descr (props changed) head/devel/py-subversion/pkg-descr (props changed) head/devel/py-subvertpy/pkg-descr (props changed) head/devel/py-sysctl/pkg-descr (props changed) head/devel/py-sysv_ipc/pkg-descr (props changed) head/devel/py-tables/pkg-descr (props changed) head/devel/py-tconfpy/pkg-descr (props changed) head/devel/py-tempstorage/pkg-descr (props changed) head/devel/py-testgears/pkg-descr (props changed) head/devel/py-testoob/pkg-descr (props changed) head/devel/py-testtools/pkg-descr (props changed) head/devel/py-tgMochiKit/pkg-descr (props changed) head/devel/py-thrift/pkg-descr (props changed) head/devel/py-turbocheetah/pkg-descr (props changed) head/devel/py-turbojson/pkg-descr (props changed) head/devel/py-turbojson11/pkg-descr (props changed) head/devel/py-turbokid/pkg-descr (props changed) head/devel/py-tvrage/pkg-descr (props changed) head/devel/py-tw.forms/pkg-descr (props changed) head/devel/py-twisted/pkg-descr (props changed) head/devel/py-twistedFlow/pkg-descr (props changed) head/devel/py-twistedRunner/pkg-descr (props changed) head/devel/py-ujson/pkg-descr (props changed) head/devel/py-unittestplus/pkg-descr (props changed) head/devel/py-urlimport/pkg-descr (props changed) head/devel/py-urwid/pkg-descr (props changed) head/devel/py-usb/pkg-descr (props changed) head/devel/py-utils/pkg-descr (props changed) head/devel/py-virtualenv-clone/pkg-descr (props changed) head/devel/py-virtualenv/pkg-descr (props changed) head/devel/py-virtualenvwrapper/pkg-descr (props changed) head/devel/py-watchdog/pkg-descr (props changed) head/devel/py-wheel/pkg-descr (props changed) head/devel/py-wsgi_xmlrpc/pkg-descr (props changed) head/devel/py-wsgitools/pkg-descr (props changed) head/devel/py-wsgiutils/pkg-descr (props changed) head/devel/py-xattr/pkg-descr (props changed) head/devel/py-xcaplib/pkg-descr (props changed) head/devel/py-xdg/pkg-descr (props changed) head/devel/py-yaml/pkg-descr (props changed) head/devel/py-yapps2/pkg-descr (props changed) head/devel/py-ydbf/pkg-descr (props changed) head/devel/py-yum-metadata-parser/pkg-descr (props changed) head/devel/py-z3c.autoinclude/pkg-descr (props changed) head/devel/py-z3c.batching/pkg-descr (props changed) head/devel/py-z3c.caching/pkg-descr (props changed) head/devel/py-z3c.formwidget.query/pkg-descr (props changed) head/devel/py-z3c.zcmlhook/pkg-descr (props changed) head/devel/py-zExceptions/pkg-descr (props changed) head/devel/py-zLOG/pkg-descr (props changed) head/devel/py-zc.buildout/pkg-descr (props changed) head/devel/py-zclockfile/pkg-descr (props changed) head/devel/py-zconfig/pkg-descr (props changed) head/devel/py-zope.annotation/pkg-descr (props changed) head/devel/py-zope.app.applicationcontrol/pkg-descr (props changed) head/devel/py-zope.app.appsetup/pkg-descr (props changed) head/devel/py-zope.app.basicskin/pkg-descr (props changed) head/devel/py-zope.app.broken/pkg-descr (props changed) head/devel/py-zope.app.cache/pkg-descr (props changed) head/devel/py-zope.app.component/pkg-descr (props changed) head/devel/py-zope.app.container/pkg-descr (props changed) head/devel/py-zope.app.content/pkg-descr (props changed) head/devel/py-zope.app.debug/pkg-descr (props changed) head/devel/py-zope.app.dependable/pkg-descr (props changed) head/devel/py-zope.app.error/pkg-descr (props changed) head/devel/py-zope.app.exception/pkg-descr (props changed) head/devel/py-zope.app.folder/pkg-descr (props changed) head/devel/py-zope.app.form/pkg-descr (props changed) head/devel/py-zope.app.generations/pkg-descr (props changed) head/devel/py-zope.app.http/pkg-descr (props changed) head/devel/py-zope.app.pagetemplate/pkg-descr (props changed) head/devel/py-zope.app.publication/pkg-descr (props changed) head/devel/py-zope.app.publisher/pkg-descr (props changed) head/devel/py-zope.app.renderer/pkg-descr (props changed) head/devel/py-zope.app.rotterdam/pkg-descr (props changed) head/devel/py-zope.app.schema/pkg-descr (props changed) head/devel/py-zope.app.testing/pkg-descr (props changed) head/devel/py-zope.app.zcmlfiles/pkg-descr (props changed) head/devel/py-zope.app.zopeappgenerations/pkg-descr (props changed) head/devel/py-zope.applicationcontrol/pkg-descr (props changed) head/devel/py-zope.broken/pkg-descr (props changed) head/devel/py-zope.browser/pkg-descr (props changed) head/devel/py-zope.browsermenu/pkg-descr (props changed) head/devel/py-zope.browserpage/pkg-descr (props changed) head/devel/py-zope.browserresource/pkg-descr (props changed) head/devel/py-zope.cachedescriptors/pkg-descr (props changed) head/devel/py-zope.component/pkg-descr (props changed) head/devel/py-zope.componentvocabulary/pkg-descr (props changed) head/devel/py-zope.configuration/pkg-descr (props changed) head/devel/py-zope.container/pkg-descr (props changed) head/devel/py-zope.contentprovider/pkg-descr (props changed) head/devel/py-zope.contenttype/pkg-descr (props changed) head/devel/py-zope.copy/pkg-descr (props changed) head/devel/py-zope.copypastemove/pkg-descr (props changed) head/devel/py-zope.datetime/pkg-descr (props changed) head/devel/py-zope.deferredimport/pkg-descr (props changed) head/devel/py-zope.deprecation/pkg-descr (props changed) head/devel/py-zope.dottedname/pkg-descr (props changed) head/devel/py-zope.error/pkg-descr (props changed) head/devel/py-zope.event/pkg-descr (props changed) head/devel/py-zope.exceptions/pkg-descr (props changed) head/devel/py-zope.filerepresentation/pkg-descr (props changed) head/devel/py-zope.formlib/pkg-descr (props changed) head/devel/py-zope.generations/pkg-descr (props changed) head/devel/py-zope.globalrequest/pkg-descr (props changed) head/devel/py-zope.i18n/pkg-descr (props changed) head/devel/py-zope.interface/pkg-descr (props changed) head/devel/py-zope.lifecycleevent/pkg-descr (props changed) head/devel/py-zope.location/pkg-descr (props changed) head/devel/py-zope.minmax/pkg-descr (props changed) head/devel/py-zope.pagetemplate/pkg-descr (props changed) head/devel/py-zope.processlifetime/pkg-descr (props changed) head/devel/py-zope.ptresource/pkg-descr (props changed) head/devel/py-zope.publisher/pkg-descr (props changed) head/devel/py-zope.ramcache/pkg-descr (props changed) head/devel/py-zope.sequencesort/pkg-descr (props changed) head/devel/py-zope.site/pkg-descr (props changed) head/devel/py-zope.size/pkg-descr (props changed) head/devel/py-zope.tales/pkg-descr (props changed) head/devel/py-zope.testbrowser/pkg-descr (props changed) head/devel/py-zope.testing/pkg-descr (props changed) head/devel/py-zope.traversing/pkg-descr (props changed) head/devel/py-zope.viewlet/pkg-descr (props changed) head/devel/pybaz/pkg-descr (props changed) head/devel/pybugz/pkg-descr (props changed) head/devel/pychecker/pkg-descr (props changed) head/devel/pycount/pkg-descr (props changed) head/devel/pymacs/pkg-descr (props changed) head/devel/pyobfuscate/pkg-descr (props changed) head/devel/pyrex/pkg-descr (props changed) head/devel/pyside-tools/pkg-descr (props changed) head/devel/pyside/pkg-descr (props changed) head/devel/pyst/pkg-descr (props changed) head/devel/pysvn/pkg-descr (props changed) head/devel/pythontidy/pkg-descr (props changed) head/devel/qbzr/pkg-descr (props changed) head/devel/qca/pkg-descr (props changed) head/devel/qct/pkg-descr (props changed) head/devel/qdevelop/pkg-descr (props changed) head/devel/qgit/pkg-descr (props changed) head/devel/qmake/pkg-descr (props changed) head/devel/qprog/pkg-descr (props changed) head/devel/qross/pkg-descr (props changed) head/devel/qscintilla2-designerplugin/pkg-descr (props changed) head/devel/qscintilla2/pkg-descr (props changed) head/devel/qsvn/pkg-descr (props changed) head/devel/qt4-qtsolutions-singleapplication/pkg-descr (props changed) head/devel/qt4-qtsolutions-soap/pkg-descr (props changed) head/devel/qtscriptgenerator/pkg-descr (props changed) head/devel/quickcheck++/pkg-descr (props changed) head/devel/quilt/pkg-descr (props changed) head/devel/radare2/pkg-descr (props changed) head/devel/ragel/pkg-descr (props changed) head/devel/rapidsvn/pkg-descr (props changed) head/devel/rbenv/pkg-descr (props changed) head/devel/rbtools/pkg-descr (props changed) head/devel/rclint/pkg-descr (props changed) head/devel/re2c/pkg-descr (props changed) head/devel/readline/pkg-descr (props changed) head/devel/rebar/pkg-descr (props changed) head/devel/regexx/pkg-descr (props changed) head/devel/regexxer/pkg-descr (props changed) head/devel/remake/pkg-descr (props changed) head/devel/replay/pkg-descr (props changed) head/devel/rhtvision/pkg-descr (props changed) head/devel/ri-emacs/pkg-descr (props changed) head/devel/rlog/pkg-descr (props changed) head/devel/rlwrap/pkg-descr (props changed) head/devel/robodoc/pkg-descr (props changed) head/devel/root-doc/pkg-descr (props changed) head/devel/ros-common_msgs/pkg-descr (props changed) head/devel/ros-documentation/pkg-descr (props changed) head/devel/ros-nxt/pkg-descr (props changed) head/devel/ros-rx/pkg-descr (props changed) head/devel/ros/pkg-descr (props changed) head/devel/ros_comm/pkg-descr (props changed) head/devel/ros_tutorials/pkg-descr (props changed) head/devel/rote/pkg-descr (props changed) head/devel/rpc2/pkg-descr (props changed) head/devel/rpm-spec-mode.el/pkg-descr (props changed) head/devel/rsvndump/pkg-descr (props changed) head/devel/rth/pkg-descr (props changed) head/devel/ruby-aspectr/pkg-descr (props changed) head/devel/ruby-byaccr/pkg-descr (props changed) head/devel/ruby-date2/pkg-descr (props changed) head/devel/ruby-event-loop/pkg-descr (props changed) head/devel/ruby-flexmock/pkg-descr (props changed) head/devel/ruby-gems/pkg-descr (props changed) head/devel/ruby-glib2/pkg-descr (props changed) head/devel/ruby-korundum/pkg-descr (props changed) head/devel/ruby-krossruby/pkg-descr (props changed) head/devel/ruby-langscan/pkg-descr (props changed) head/devel/ruby-memoize/pkg-descr (props changed) head/devel/ruby-ncurses/pkg-descr (props changed) head/devel/ruby-qtruby/pkg-descr (props changed) head/devel/ruby-rbprof/pkg-descr (props changed) head/devel/ruby-statgrab/pkg-descr (props changed) head/devel/ruby-subversion/pkg-descr (props changed) head/devel/rubygem-abstract/pkg-descr (props changed) head/devel/rubygem-activesupport/pkg-descr (props changed) head/devel/rubygem-activesupport4/pkg-descr (props changed) head/devel/rubygem-allison/pkg-descr (props changed) head/devel/rubygem-analogger/pkg-descr (props changed) head/devel/rubygem-annoy/pkg-descr (props changed) head/devel/rubygem-ansi/pkg-descr (props changed) head/devel/rubygem-app_config/pkg-descr (props changed) head/devel/rubygem-arrayfields/pkg-descr (props changed) head/devel/rubygem-ascii85/pkg-descr (props changed) head/devel/rubygem-atomic/pkg-descr (props changed) head/devel/rubygem-atoulme-antwrap/pkg-descr (props changed) head/devel/rubygem-authlogic/pkg-descr (props changed) head/devel/rubygem-awesome_print/pkg-descr (props changed) head/devel/rubygem-backports/pkg-descr (props changed) head/devel/rubygem-bin_utils/pkg-descr (props changed) head/devel/rubygem-bioruby/pkg-descr (props changed) head/devel/rubygem-blockenspiel/pkg-descr (props changed) head/devel/rubygem-bson/pkg-descr (props changed) head/devel/rubygem-bugspots/pkg-descr (props changed) head/devel/rubygem-builder/pkg-descr (props changed) head/devel/rubygem-builder31/pkg-descr (props changed) head/devel/rubygem-builder32/pkg-descr (props changed) head/devel/rubygem-caesars/pkg-descr (props changed) head/devel/rubygem-cairo-gobject/pkg-descr (props changed) head/devel/rubygem-capybara/pkg-descr (props changed) head/devel/rubygem-childprocess/pkg-descr (props changed) head/devel/rubygem-chronic/pkg-descr (props changed) head/devel/rubygem-classifier/pkg-descr (props changed) head/devel/rubygem-clio/pkg-descr (props changed) head/devel/rubygem-cloudfiles/pkg-descr (props changed) head/devel/rubygem-coffee-script-source/pkg-descr (props changed) head/devel/rubygem-coffee-script/pkg-descr (props changed) head/devel/rubygem-columnize/pkg-descr (props changed) head/devel/rubygem-commander/pkg-descr (props changed) head/devel/rubygem-configuration/pkg-descr (props changed) head/devel/rubygem-cool.io/pkg-descr (props changed) head/devel/rubygem-crack/pkg-descr (props changed) head/devel/rubygem-cri/pkg-descr (props changed) head/devel/rubygem-cucumber/pkg-descr (props changed) head/devel/rubygem-daemon_controller/pkg-descr (props changed) head/devel/rubygem-daemons/pkg-descr (props changed) head/devel/rubygem-debugger-linecache/pkg-descr (props changed) head/devel/rubygem-debugger-xml/pkg-descr (props changed) head/devel/rubygem-debugger/pkg-descr (props changed) head/devel/rubygem-delayed_job/pkg-descr (props changed) head/devel/rubygem-dep_selector/pkg-descr (props changed) head/devel/rubygem-descendants_tracker/pkg-descr (props changed) head/devel/rubygem-devise-async/pkg-descr (props changed) head/devel/rubygem-devise/pkg-descr (props changed) head/devel/rubygem-directory_watcher/pkg-descr (props changed) head/devel/rubygem-ditz/pkg-descr (props changed) head/devel/rubygem-echoe/pkg-descr (props changed) head/devel/rubygem-edavis10-object_daddy/pkg-descr (props changed) head/devel/rubygem-elif/pkg-descr (props changed) head/devel/rubygem-enumerize/pkg-descr (props changed) head/devel/rubygem-errand/pkg-descr (props changed) head/devel/rubygem-eventmachine/pkg-descr (props changed) head/devel/rubygem-execjs/pkg-descr (props changed) head/devel/rubygem-extlib/pkg-descr (props changed) head/devel/rubygem-facets/pkg-descr (props changed) head/devel/rubygem-fast-stemmer/pkg-descr (props changed) head/devel/rubygem-fastercsv/pkg-descr (props changed) head/devel/rubygem-fastthread/pkg-descr (props changed) head/devel/rubygem-fattr/pkg-descr (props changed) head/devel/rubygem-file-tail/pkg-descr (props changed) head/devel/rubygem-font-awesome-rails/pkg-descr (props changed) head/devel/rubygem-foreman/pkg-descr (props changed) head/devel/rubygem-gdata/pkg-descr (props changed) head/devel/rubygem-gem_plugin/pkg-descr (props changed) head/devel/rubygem-gemcutter/pkg-descr (props changed) head/devel/rubygem-generator_spec/pkg-descr (props changed) head/devel/rubygem-georuby/pkg-descr (props changed) head/devel/rubygem-getopt/pkg-descr (props changed) head/devel/rubygem-gettext/pkg-descr (props changed) head/devel/rubygem-gio2/pkg-descr (props changed) head/devel/rubygem-git/pkg-descr (props changed) head/devel/rubygem-github_api/pkg-descr (props changed) head/devel/rubygem-gitlab-pygments.rb/pkg-descr (props changed) head/devel/rubygem-gitlab_git/pkg-descr (props changed) head/devel/rubygem-gitlab_meta/pkg-descr (props changed) head/devel/rubygem-glib2/pkg-descr (props changed) head/devel/rubygem-gobject-introspection/pkg-descr (props changed) head/devel/rubygem-graf/pkg-descr (props changed) head/devel/rubygem-grape-entity/pkg-descr (props changed) head/devel/rubygem-grape/pkg-descr (props changed) head/devel/rubygem-grit/pkg-descr (props changed) head/devel/rubygem-hashery/pkg-descr (props changed) head/devel/rubygem-hashie/pkg-descr (props changed) head/devel/rubygem-highline/pkg-descr (props changed) head/devel/rubygem-hike/pkg-descr (props changed) head/devel/rubygem-hoe/pkg-descr (props changed) head/devel/rubygem-holidays/pkg-descr (props changed) head/devel/rubygem-i18n/pkg-descr (props changed) head/devel/rubygem-icalendar/pkg-descr (props changed) head/devel/rubygem-igraph/pkg-descr (props changed) head/devel/rubygem-inline/pkg-descr (props changed) head/devel/rubygem-interact/pkg-descr (props changed) head/devel/rubygem-io-like/pkg-descr (props changed) head/devel/rubygem-iobuffer/pkg-descr (props changed) head/devel/rubygem-jammit/pkg-descr (props changed) head/devel/rubygem-jeweler/pkg-descr (props changed) head/devel/rubygem-jruby-jars/pkg-descr (props changed) head/devel/rubygem-json/pkg-descr (props changed) head/devel/rubygem-json146/pkg-descr (props changed) head/devel/rubygem-json_pure/pkg-descr (props changed) head/devel/rubygem-kgio/pkg-descr (props changed) head/devel/rubygem-launchy/pkg-descr (props changed) head/devel/rubygem-little_plugger/pkg-descr (props changed) head/devel/rubygem-locale/pkg-descr (props changed) head/devel/rubygem-lockfile/pkg-descr (props changed) head/devel/rubygem-logging/pkg-descr (props changed) head/devel/rubygem-loquacious/pkg-descr (props changed) head/devel/rubygem-main/pkg-descr (props changed) head/devel/rubygem-mash/pkg-descr (props changed) head/devel/rubygem-metaclass/pkg-descr (props changed) head/devel/rubygem-metaid/pkg-descr (props changed) head/devel/rubygem-minitest/pkg-descr (props changed) head/devel/rubygem-minitest4/pkg-descr (props changed) head/devel/rubygem-mixlib-authentication/pkg-descr (props changed) head/devel/rubygem-mixlib-cli/pkg-descr (props changed) head/devel/rubygem-mixlib-config/pkg-descr (props changed) head/devel/rubygem-mixlib-log/pkg-descr (props changed) head/devel/rubygem-mixlib-shellout/pkg-descr (props changed) head/devel/rubygem-mkrf/pkg-descr (props changed) head/devel/rubygem-mocha/pkg-descr (props changed) head/devel/rubygem-moneta/pkg-descr (props changed) head/devel/rubygem-mongo/pkg-descr (props changed) head/devel/rubygem-msgpack/pkg-descr (props changed) head/devel/rubygem-multi_json/pkg-descr (props changed) head/devel/rubygem-multi_test/pkg-descr (props changed) head/devel/rubygem-murmurhash3/pkg-descr (props changed) head/devel/rubygem-mutter/pkg-descr (props changed) head/devel/rubygem-needle/pkg-descr (props changed) head/devel/rubygem-nice-ffi/pkg-descr (props changed) head/devel/rubygem-notify/pkg-descr (props changed) head/devel/rubygem-open4/pkg-descr (props changed) head/devel/rubygem-orm_adapter/pkg-descr (props changed) head/devel/rubygem-piston/pkg-descr (props changed) head/devel/rubygem-pkg-config/pkg-descr (props changed) head/devel/rubygem-platform/pkg-descr (props changed) head/devel/rubygem-polyglot/pkg-descr (props changed) head/devel/rubygem-posix-spawn/pkg-descr (props changed) head/devel/rubygem-prototype-rails/pkg-descr (props changed) head/devel/rubygem-pry-remote-em/pkg-descr (props changed) head/devel/rubygem-ptreloaded/pkg-descr (props changed) head/devel/rubygem-pygments.rb/pkg-descr (props changed) head/devel/rubygem-racc/pkg-descr (props changed) head/devel/rubygem-railsless-deploy/pkg-descr (props changed) head/devel/rubygem-rainbow/pkg-descr (props changed) head/devel/rubygem-rake/pkg-descr (props changed) head/devel/rubygem-rapt/pkg-descr (props changed) head/devel/rubygem-rash/pkg-descr (props changed) head/devel/rubygem-rcov/pkg-descr (props changed) head/devel/rubygem-rdoc/pkg-descr (props changed) head/devel/rubygem-redis-activesupport/pkg-descr (props changed) head/devel/rubygem-redis-store/pkg-descr (props changed) head/devel/rubygem-ref/pkg-descr (props changed) head/devel/rubygem-require_all/pkg-descr (props changed) head/devel/rubygem-rgl/pkg-descr (props changed) head/devel/rubygem-rr/pkg-descr (props changed) head/devel/rubygem-rscm/pkg-descr (props changed) head/devel/rubygem-rspec-core/pkg-descr (props changed) head/devel/rubygem-rspec-expectations/pkg-descr (props changed) head/devel/rubygem-rspec-mocks/pkg-descr (props changed) head/devel/rubygem-rspec-spies/pkg-descr (props changed) head/devel/rubygem-rspec/pkg-descr (props changed) head/devel/rubygem-rubigen/pkg-descr (props changed) head/devel/rubygem-ruby-ole/pkg-descr (props changed) head/devel/rubygem-ruby-prof/pkg-descr (props changed) head/devel/rubygem-ruby-sdl-ffi/pkg-descr (props changed) head/devel/rubygem-ruby2ruby/pkg-descr (props changed) head/devel/rubygem-rubyforge/pkg-descr (props changed) head/devel/rubygem-rubygame/pkg-descr (props changed) head/devel/rubygem-rubyinlineaccel/pkg-descr (props changed) head/devel/rubygem-rubytree/pkg-descr (props changed) head/devel/rubygem-runt/pkg-descr (props changed) head/devel/rubygem-ruport/pkg-descr (props changed) head/devel/rubygem-safe_yaml/pkg-descr (props changed) head/devel/rubygem-sequel/pkg-descr (props changed) head/devel/rubygem-sequel3/pkg-descr (props changed) head/devel/rubygem-settingslogic/pkg-descr (props changed) head/devel/rubygem-sexp_processor/pkg-descr (props changed) head/devel/rubygem-shoulda-context/pkg-descr (props changed) head/devel/rubygem-shoulda-matchers/pkg-descr (props changed) head/devel/rubygem-shoulda/pkg-descr (props changed) head/devel/rubygem-simple_form/pkg-descr (props changed) head/devel/rubygem-simplecov/pkg-descr (props changed) head/devel/rubygem-slim/pkg-descr (props changed) head/devel/rubygem-soap4r/pkg-descr (props changed) head/devel/rubygem-sprockets/pkg-descr (props changed) head/devel/rubygem-spruz/pkg-descr (props changed) head/devel/rubygem-state_machine/pkg-descr (props changed) head/devel/rubygem-stemmer/pkg-descr (props changed) head/devel/rubygem-stomp/pkg-descr (props changed) head/devel/rubygem-stream/pkg-descr (props changed) head/devel/rubygem-stringex/pkg-descr (props changed) head/devel/rubygem-structured_warnings/pkg-descr (props changed) head/devel/rubygem-subexec/pkg-descr (props changed) head/devel/rubygem-sugar-high/pkg-descr (props changed) head/devel/rubygem-sumbur/pkg-descr (props changed) head/devel/rubygem-sundawg_country_codes/pkg-descr (props changed) head/devel/rubygem-sysinfo/pkg-descr (props changed) head/devel/rubygem-systemu/pkg-descr (props changed) head/devel/rubygem-templater/pkg-descr (props changed) head/devel/rubygem-temple/pkg-descr (props changed) head/devel/rubygem-term-ansicolor/pkg-descr (props changed) head/devel/rubygem-test-unit/pkg-descr (props changed) head/devel/rubygem-test/pkg-descr (props changed) head/devel/rubygem-thor/pkg-descr (props changed) head/devel/rubygem-thread_safe/pkg-descr (props changed) head/devel/rubygem-thrift/pkg-descr (props changed) head/devel/rubygem-tilt/pkg-descr (props changed) head/devel/rubygem-tins/pkg-descr (props changed) head/devel/rubygem-transactionsimple/pkg-descr (props changed) head/devel/rubygem-treetop/pkg-descr (props changed) head/devel/rubygem-trollop/pkg-descr (props changed) head/devel/rubygem-turn/pkg-descr (props changed) head/devel/rubygem-typed-array/pkg-descr (props changed) head/devel/rubygem-tzinfo/pkg-descr (props changed) head/devel/rubygem-unicode/pkg-descr (props changed) head/devel/rubygem-uuid/pkg-descr (props changed) head/devel/rubygem-uuidtools/pkg-descr (props changed) head/devel/rubygem-validatable/pkg-descr (props changed) head/devel/rubygem-versionomy/pkg-descr (props changed) head/devel/rubygem-virtus/pkg-descr (props changed) head/devel/rubygem-warbler/pkg-descr (props changed) head/devel/rubygem-warden/pkg-descr (props changed) head/devel/rubygem-webby/pkg-descr (props changed) head/devel/rubygem-yajl-ruby/pkg-descr (props changed) head/devel/rubygem-yui-compressor/pkg-descr (props changed) head/devel/rubygem-zentest/pkg-descr (props changed) head/devel/rudeconfig/pkg-descr (props changed) head/devel/rudiments/pkg-descr (props changed) head/devel/runsnakerun/pkg-descr (props changed) head/devel/rvi/pkg-descr (props changed) head/devel/rvm/pkg-descr (props changed) head/devel/sabre/pkg-descr (props changed) head/devel/safe-iop/pkg-descr (props changed) head/devel/sbt/pkg-descr (props changed) head/devel/scala-ide/pkg-descr (props changed) head/devel/scalatest/pkg-descr (props changed) head/devel/scandoc/pkg-descr (props changed) head/devel/scons/pkg-descr (props changed) head/devel/scsh-install-lib/pkg-descr (props changed) head/devel/sdl12/pkg-descr (props changed) head/devel/sdl20/pkg-descr (props changed) head/devel/sdl_console/pkg-descr (props changed) head/devel/sdl_sge/pkg-descr (props changed) head/devel/sdlmm/pkg-descr (props changed) head/devel/sdts++/pkg-descr (props changed) head/devel/sedsed/pkg-descr (props changed) head/devel/seed/pkg-descr (props changed) head/devel/seed3/pkg-descr (props changed) head/devel/semantic/pkg-descr (props changed) head/devel/serdisplib/pkg-descr (props changed) head/devel/sfml/pkg-descr (props changed) head/devel/sfslite-dbg/pkg-descr (props changed) head/devel/sfslite-noopt/pkg-descr (props changed) head/devel/sfslite/pkg-descr (props changed) head/devel/sgb/pkg-descr (props changed) head/devel/sgl/pkg-descr (props changed) head/devel/shapelib/pkg-descr (props changed) head/devel/shiboken/pkg-descr (props changed) head/devel/shmap/pkg-descr (props changed) head/devel/showgrammar/pkg-descr (props changed) head/devel/shtool/pkg-descr (props changed) head/devel/sigslot/pkg-descr (props changed) head/devel/silc-toolkit/pkg-descr (props changed) head/devel/silentbob/pkg-descr (props changed) head/devel/simian/pkg-descr (props changed) head/devel/simpletest/pkg-descr (props changed) head/devel/skalibs/pkg-descr (props changed) head/devel/slf4j/pkg-descr (props changed) head/devel/smack/pkg-descr (props changed) head/devel/smake/pkg-descr (props changed) head/devel/smc/pkg-descr (props changed) head/devel/sml_tk/pkg-descr (props changed) head/devel/smokegen/pkg-descr (props changed) head/devel/smokekde/pkg-descr (props changed) head/devel/smokeqt/pkg-descr (props changed) head/devel/smv/pkg-descr (props changed) head/devel/soapui/pkg-descr (props changed) head/devel/sourcenav/pkg-descr (props changed) head/devel/spatialindex/pkg-descr (props changed) head/devel/spdict/pkg-descr (props changed) head/devel/spin/pkg-descr (props changed) head/devel/splint/pkg-descr (props changed) head/devel/srecord/pkg-descr (props changed) head/devel/st/pkg-descr (props changed) head/devel/statcvs/pkg-descr (props changed) head/devel/statsvn/pkg-descr (props changed) head/devel/stfl/pkg-descr (props changed) head/devel/stlfilt/pkg-descr (props changed) head/devel/stlport/pkg-descr (props changed) head/devel/stormlib-ghost++/pkg-descr (props changed) head/devel/str/pkg-descr (props changed) head/devel/streamhtmlparser/pkg-descr (props changed) head/devel/stringencoders/pkg-descr (props changed) head/devel/styx/pkg-descr (props changed) head/devel/subclipse/pkg-descr (props changed) head/devel/subversion/pkg-descr (props changed) head/devel/subversion16/pkg-descr (props changed) head/devel/subversion17/pkg-descr (props changed) head/devel/subversive/pkg-descr (props changed) head/devel/sunterlib/pkg-descr (props changed) head/devel/svk/pkg-descr (props changed) head/devel/svn2git/pkg-descr (props changed) head/devel/svn_load_dirs/pkg-descr (props changed) head/devel/svndelta/pkg-descr (props changed) head/devel/svnkit/pkg-descr (props changed) head/devel/svnmerge/pkg-descr (props changed) head/devel/swank-clojure/pkg-descr (props changed) head/devel/swig13/pkg-descr (props changed) head/devel/synfig/pkg-descr (props changed) head/devel/sysconftool/pkg-descr (props changed) head/devel/sysfsutils/pkg-descr (props changed) head/devel/t1lib/pkg-descr (props changed) head/devel/ta-lib/pkg-descr (props changed) head/devel/tailor/pkg-descr (props changed) head/devel/talloc/pkg-descr (props changed) head/devel/tcl-signal/pkg-descr (props changed) head/devel/tcl-trf/pkg-descr (props changed) head/devel/tclap/pkg-descr (props changed) head/devel/tclcheck/pkg-descr (props changed) head/devel/tclcl/pkg-descr (props changed) head/devel/tclgetopts/pkg-descr (props changed) head/devel/tcllib/pkg-descr (props changed) head/devel/tclmore/pkg-descr (props changed) head/devel/tclreadline/pkg-descr (props changed) head/devel/tclthread/pkg-descr (props changed) head/devel/tcltls/pkg-descr (props changed) head/devel/tclxml/pkg-descr (props changed) head/devel/tdl/pkg-descr (props changed) head/devel/terminality/pkg-descr (props changed) head/devel/tex-kpathsea/pkg-descr (props changed) head/devel/tex-web2c/pkg-descr (props changed) head/devel/thrift/pkg-descr (props changed) head/devel/tide/pkg-descr (props changed) head/devel/tig/pkg-descr (props changed) head/devel/tigcc/pkg-descr (props changed) head/devel/tijmp/pkg-descr (props changed) head/devel/tinylaf/pkg-descr (props changed) head/devel/tinyq/pkg-descr (props changed) head/devel/tkcvs/pkg-descr (props changed) head/devel/tkinspect/pkg-descr (props changed) head/devel/tkmerge/pkg-descr (props changed) head/devel/tkp4/pkg-descr (props changed) head/devel/tla/pkg-descr (props changed) head/devel/tmake/pkg-descr (props changed) head/devel/tnt/pkg-descr (props changed) head/devel/toh/pkg-descr (props changed) head/devel/tokamak/pkg-descr (props changed) head/devel/tortoisehg2/pkg-descr (props changed) head/devel/tpasm/pkg-descr (props changed) head/devel/trac-bitten/pkg-descr (props changed) head/devel/tradcpp/pkg-descr (props changed) head/devel/trio/pkg-descr (props changed) head/devel/truc/pkg-descr (props changed) head/devel/uatraits/pkg-descr (props changed) head/devel/uclmmbase/pkg-descr (props changed) head/devel/ucommon/pkg-descr (props changed) head/devel/ucpp/pkg-descr (props changed) head/devel/udis86/pkg-descr (props changed) head/devel/ultragetopt/pkg-descr (props changed) head/devel/umem/pkg-descr (props changed) head/devel/umlgraph/pkg-descr (props changed) head/devel/universalindentgui/pkg-descr (props changed) head/devel/upnp/pkg-descr (props changed) head/devel/upp/pkg-descr (props changed) head/devel/uppaal/pkg-descr (props changed) head/devel/upslug/pkg-descr (props changed) head/devel/urjtag/pkg-descr (props changed) head/devel/ustl/pkg-descr (props changed) head/devel/uthash/pkg-descr (props changed) head/devel/valgrind-devel/pkg-descr (props changed) head/devel/valgrind/pkg-descr (props changed) head/devel/varconf/pkg-descr (props changed) head/devel/viewvc/pkg-descr (props changed) head/devel/violet/pkg-descr (props changed) head/devel/vstr/pkg-descr (props changed) head/devel/vtcl/pkg-descr (props changed) head/devel/vtg/pkg-descr (props changed) head/devel/vxlog/pkg-descr (props changed) head/devel/wand-libconfig/pkg-descr (props changed) head/devel/websvn/pkg-descr (props changed) head/devel/wininfo/pkg-descr (props changed) head/devel/winpdb/pkg-descr (props changed) head/devel/wizardkit/pkg-descr (props changed) head/devel/wxGlade/pkg-descr (props changed) head/devel/xa65/pkg-descr (props changed) head/devel/xc3sprog/pkg-descr (props changed) head/devel/xdg-user-dirs/pkg-descr (props changed) head/devel/xdg-utils/pkg-descr (props changed) head/devel/xfce4-dev-tools/pkg-descr (props changed) head/devel/xmake/pkg-descr (props changed) head/devel/xmltooling/pkg-descr (props changed) head/devel/xorg-macros/pkg-descr (props changed) head/devel/xparam/pkg-descr (props changed) head/devel/xtl/pkg-descr (props changed) head/devel/xtla/pkg-descr (props changed) head/devel/xwpe/pkg-descr (props changed) head/devel/xxgdb/pkg-descr (props changed) head/devel/yajl/pkg-descr (props changed) head/devel/yaml-cpp/pkg-descr (props changed) head/devel/yasm/pkg-descr (props changed) head/devel/z80-asm/pkg-descr (props changed) head/devel/z80asm/pkg-descr (props changed) head/devel/z80ex/pkg-descr (props changed) head/devel/zookeeper/pkg-descr (props changed) head/devel/zpu-binutils/pkg-descr (props changed) head/devel/zpu-gcc/pkg-descr (props changed) head/devel/ztcl/pkg-descr (props changed) head/devel/zthread/pkg-descr (props changed) head/devel/zziplib/pkg-descr (props changed) head/dns/adns/pkg-descr (props changed) head/dns/adsuck/pkg-descr (props changed) head/dns/ares/pkg-descr (props changed) head/dns/autotrust/pkg-descr (props changed) head/dns/bind-tools/pkg-descr (props changed) head/dns/bind10/pkg-descr (props changed) head/dns/bind96/pkg-descr (props changed) head/dns/bind98/pkg-descr (props changed) head/dns/bind99/pkg-descr (props changed) head/dns/bindgraph/pkg-descr (props changed) head/dns/c-ares/pkg-descr (props changed) head/dns/checkdns/pkg-descr (props changed) head/dns/credns/pkg-descr (props changed) head/dns/crossip/pkg-descr (props changed) head/dns/curvedns/pkg-descr (props changed) head/dns/ddclient/pkg-descr (props changed) head/dns/dhisd/pkg-descr (props changed) head/dns/djbdns-tools/pkg-descr (props changed) head/dns/djbdns/pkg-descr (props changed) head/dns/dlint/pkg-descr (props changed) head/dns/dnrd/pkg-descr (props changed) head/dns/dns2tcp/pkg-descr (props changed) head/dns/dns_balance/pkg-descr (props changed) head/dns/dnscap/pkg-descr (props changed) head/dns/dnscheck/pkg-descr (props changed) head/dns/dnscheckengine/pkg-descr (props changed) head/dns/dnscrypt-proxy/pkg-descr (props changed) head/dns/dnsflood/pkg-descr (props changed) head/dns/dnshijacker/pkg-descr (props changed) head/dns/dnsjava/pkg-descr (props changed) head/dns/dnsmasq-devel/pkg-descr (props changed) head/dns/dnsmasq/pkg-descr (props changed) head/dns/dnsmax-perl/pkg-descr (props changed) head/dns/dnsperf/pkg-descr (props changed) head/dns/dnsproxy/pkg-descr (props changed) head/dns/dnsreflector/pkg-descr (props changed) head/dns/dnstop/pkg-descr (props changed) head/dns/dnstracer/pkg-descr (props changed) head/dns/dnsutl/pkg-descr (props changed) head/dns/dnswalk/pkg-descr (props changed) head/dns/dnswall/pkg-descr (props changed) head/dns/doc/pkg-descr (props changed) head/dns/dualserver/pkg-descr (props changed) head/dns/ez-ipupdate/pkg-descr (props changed) head/dns/fastresolve/pkg-descr (props changed) head/dns/firedns/pkg-descr (props changed) head/dns/fpdns/pkg-descr (props changed) head/dns/geta/pkg-descr (props changed) head/dns/ghtool/pkg-descr (props changed) head/dns/hesiod/pkg-descr (props changed) head/dns/idnkit/pkg-descr (props changed) head/dns/idnkit2/pkg-descr (props changed) head/dns/inadyn/pkg-descr (props changed) head/dns/ipcheck/pkg-descr (props changed) head/dns/ldapdns/pkg-descr (props changed) head/dns/ldns/pkg-descr (props changed) head/dns/ldnsm/pkg-descr (props changed) head/dns/libbind/pkg-descr (props changed) head/dns/libdjbdns/pkg-descr (props changed) head/dns/libidn/pkg-descr (props changed) head/dns/linux-f10-libasyncns/pkg-descr (props changed) head/dns/maradns/pkg-descr (props changed) head/dns/mdnsd/pkg-descr (props changed) head/dns/mydns-ng/pkg-descr (props changed) head/dns/mydns/pkg-descr (props changed) head/dns/noip/pkg-descr (props changed) head/dns/nslint/pkg-descr (props changed) head/dns/nsping/pkg-descr (props changed) head/dns/nss_mdns/pkg-descr (props changed) head/dns/nss_resinit/pkg-descr (props changed) head/dns/odsclient/pkg-descr (props changed) head/dns/opendd/pkg-descr (props changed) head/dns/opendnssec/pkg-descr (props changed) head/dns/opendnssec13/pkg-descr (props changed) head/dns/openresolv/pkg-descr (props changed) head/dns/p5-BIND-Conf_Parser/pkg-descr (props changed) head/dns/p5-BIND-Config-Parser/pkg-descr (props changed) head/dns/p5-DNS-Config/pkg-descr (props changed) head/dns/p5-DNS-EasyDNS/pkg-descr (props changed) head/dns/p5-DNS-Zone/pkg-descr (props changed) head/dns/p5-DNS-ZoneParse/pkg-descr (props changed) head/dns/p5-Data-Validate-Domain/pkg-descr (props changed) head/dns/p5-Mozilla-PublicSuffix/pkg-descr (props changed) head/dns/p5-Net-Amazon-Route53/pkg-descr (props changed) head/dns/p5-Net-DNS-Async/pkg-descr (props changed) head/dns/p5-Net-DNS-Check/pkg-descr (props changed) head/dns/p5-Net-DNS-Lite/pkg-descr (props changed) head/dns/p5-Net-DNS-RR-SRV-Helper/pkg-descr (props changed) head/dns/p5-Net-DNS-Resolver-Programmable/pkg-descr (props changed) head/dns/p5-Net-DNS-SEC/pkg-descr (props changed) head/dns/p5-Net-DNS-Zone-Parser/pkg-descr (props changed) head/dns/p5-Net-DNS-ZoneCheck/pkg-descr (props changed) head/dns/p5-Net-DNS-ZoneFile-Fast/pkg-descr (props changed) head/dns/p5-Net-DNSBL-MultiDaemon/pkg-descr (props changed) head/dns/p5-Net-DNSBL-Statistics/pkg-descr (props changed) head/dns/p5-Net-DRI/pkg-descr (props changed) head/dns/p5-Net-Domain-TLD/pkg-descr (props changed) head/dns/p5-Net-LibIDN/pkg-descr (props changed) head/dns/p5-Net-Nslookup/pkg-descr (props changed) head/dns/p5-Net-RBLClient/pkg-descr (props changed) head/dns/p5-POE-Component-Client-DNS/pkg-descr (props changed) head/dns/p5-POE-Component-Resolver/pkg-descr (props changed) head/dns/p5-POE-Filter-DNS-TCP/pkg-descr (props changed) head/dns/p5-Stanford-DNSserver/pkg-descr (props changed) head/dns/p5-Tie-DNS/pkg-descr (props changed) head/dns/pdnsd/pkg-descr (props changed) head/dns/pear-File_DNS/pkg-descr (props changed) head/dns/pear-Net_DNS/pkg-descr (props changed) head/dns/pear-Net_DNS2/pkg-descr (props changed) head/dns/posadis/pkg-descr (props changed) head/dns/poweradmin/pkg-descr (props changed) head/dns/powerdns-recursor/pkg-descr (props changed) head/dns/py-adns/pkg-descr (props changed) head/dns/py-dns/pkg-descr (props changed) head/dns/py-dnspython/pkg-descr (props changed) head/dns/py-easyzone/pkg-descr (props changed) head/dns/py-idnkit2/pkg-descr (props changed) head/dns/py-namebench/pkg-descr (props changed) head/dns/py-twistedNames/pkg-descr (props changed) head/dns/radns/pkg-descr (props changed) head/dns/rbldnsd/pkg-descr (props changed) head/dns/rbllookup-ng/pkg-descr (props changed) head/dns/rbllookup/pkg-descr (props changed) head/dns/rubygem-dnsruby/pkg-descr (props changed) head/dns/rubygem-net-dns/pkg-descr (props changed) head/dns/rubygem-public_suffix/pkg-descr (props changed) head/dns/scavenge/pkg-descr (props changed) head/dns/sheerdns/pkg-descr (props changed) head/dns/skadns/pkg-descr (props changed) head/dns/sleuth/pkg-descr (props changed) head/dns/sshfp/pkg-descr (props changed) head/dns/tinystats/pkg-descr (props changed) head/dns/totd/pkg-descr (props changed) head/dns/udns/pkg-descr (props changed) head/dns/unbound/pkg-descr (props changed) head/dns/updatedd/pkg-descr (props changed) head/dns/validns/pkg-descr (props changed) head/dns/vizone/pkg-descr (props changed) head/dns/walker/pkg-descr (props changed) head/dns/yadifa/pkg-descr (props changed) head/dns/zkt/pkg-descr (props changed) head/dns/zonecheck/pkg-descr (props changed) head/dns/zonenotify/pkg-descr (props changed) head/editors/2bsd-vi/pkg-descr (props changed) head/editors/abiword-docs/pkg-descr (props changed) head/editors/abiword/pkg-descr (props changed) head/editors/aewan/pkg-descr (props changed) head/editors/apel/pkg-descr (props changed) head/editors/asedit/pkg-descr (props changed) head/editors/axe/pkg-descr (props changed) head/editors/beav/pkg-descr (props changed) head/editors/biew/pkg-descr (props changed) head/editors/bitedit/pkg-descr (props changed) head/editors/bless/pkg-descr (props changed) head/editors/boiling-egg/pkg-descr (props changed) head/editors/bpatch/pkg-descr (props changed) head/editors/bvi/pkg-descr (props changed) head/editors/calligra-l10n-ca/pkg-descr (props changed) head/editors/calligra-l10n-ca_valencia/pkg-descr (props changed) head/editors/calligra-l10n-cs/pkg-descr (props changed) head/editors/calligra-l10n-da/pkg-descr (props changed) head/editors/calligra-l10n-el/pkg-descr (props changed) head/editors/calligra-l10n-en_GB/pkg-descr (props changed) head/editors/calligra-l10n-es/pkg-descr (props changed) head/editors/calligra-l10n-et/pkg-descr (props changed) head/editors/calligra-l10n-fi/pkg-descr (props changed) head/editors/calligra-l10n-gl/pkg-descr (props changed) head/editors/calligra-l10n-it/pkg-descr (props changed) head/editors/calligra-l10n-kk/pkg-descr (props changed) head/editors/calligra-l10n-nb/pkg-descr (props changed) head/editors/calligra-l10n-nds/pkg-descr (props changed) head/editors/calligra-l10n-nl/pkg-descr (props changed) head/editors/calligra-l10n-sk/pkg-descr (props changed) head/editors/calligra-l10n-sv/pkg-descr (props changed) head/editors/calligra-l10n/pkg-descr (props changed) head/editors/calligra/pkg-descr (props changed) head/editors/chexedit/pkg-descr (props changed) head/editors/codelite/pkg-descr (props changed) head/editors/color-mate/pkg-descr (props changed) head/editors/conglomerate/pkg-descr (props changed) head/editors/cooledit/pkg-descr (props changed) head/editors/cream/pkg-descr (props changed) head/editors/dhex/pkg-descr (props changed) head/editors/diakonos/pkg-descr (props changed) head/editors/dkns/pkg-descr (props changed) head/editors/drjava/pkg-descr (props changed) head/editors/e3/pkg-descr (props changed) head/editors/e93/pkg-descr (props changed) head/editors/edith/pkg-descr (props changed) head/editors/editorconfig-core-c/pkg-descr (props changed) head/editors/elvis/pkg-descr (props changed) head/editors/emacs-devel/pkg-descr (props changed) head/editors/emacs/pkg-descr (props changed) head/editors/emacs21/pkg-descr (props changed) head/editors/emacs22/pkg-descr (props changed) head/editors/emacs23/pkg-descr (props changed) head/editors/fb/pkg-descr (props changed) head/editors/flim/pkg-descr (props changed) head/editors/fte/pkg-descr (props changed) head/editors/fxite/pkg-descr (props changed) head/editors/gate/pkg-descr (props changed) head/editors/gedit-plugins/pkg-descr (props changed) head/editors/gedit/pkg-descr (props changed) head/editors/ghex/pkg-descr (props changed) head/editors/gmanedit/pkg-descr (props changed) head/editors/gnome2-office/pkg-descr (props changed) head/editors/gnotepad+/pkg-descr (props changed) head/editors/gnuserv/pkg-descr (props changed) head/editors/gobby/pkg-descr (props changed) head/editors/gwrite/pkg-descr (props changed) head/editors/heme/pkg-descr (props changed) head/editors/hexcurse/pkg-descr (props changed) head/editors/hexedit/pkg-descr (props changed) head/editors/hexpert/pkg-descr (props changed) head/editors/hnb/pkg-descr (props changed) head/editors/hte/pkg-descr (props changed) head/editors/impress/pkg-descr (props changed) head/editors/jed/pkg-descr (props changed) head/editors/jedit/pkg-descr (props changed) head/editors/jext/pkg-descr (props changed) head/editors/joe/pkg-descr (props changed) head/editors/joe2/pkg-descr (props changed) head/editors/jove/pkg-descr (props changed) head/editors/jupp/pkg-descr (props changed) head/editors/kate/pkg-descr (props changed) head/editors/kile-kde4/pkg-descr (props changed) head/editors/klat4/pkg-descr (props changed) head/editors/komodo-edit/pkg-descr (props changed) head/editors/komodo-ide/pkg-descr (props changed) head/editors/lazarus/pkg-descr (props changed) head/editors/le/pkg-descr (props changed) head/editors/leafpad/pkg-descr (props changed) head/editors/led/pkg-descr (props changed) head/editors/leo/pkg-descr (props changed) head/editors/lfhex/pkg-descr (props changed) head/editors/libreoffice-af/pkg-descr (props changed) head/editors/libreoffice-as/pkg-descr (props changed) head/editors/libreoffice-be/pkg-descr (props changed) head/editors/libreoffice-bg/pkg-descr (props changed) head/editors/libreoffice-bn/pkg-descr (props changed) head/editors/libreoffice-br/pkg-descr (props changed) head/editors/libreoffice-brx/pkg-descr (props changed) head/editors/libreoffice-bs/pkg-descr (props changed) head/editors/libreoffice-ca/pkg-descr (props changed) head/editors/libreoffice-ca_XV/pkg-descr (props changed) head/editors/libreoffice-cs/pkg-descr (props changed) head/editors/libreoffice-cy/pkg-descr (props changed) head/editors/libreoffice-da/pkg-descr (props changed) head/editors/libreoffice-dgo/pkg-descr (props changed) head/editors/libreoffice-dz/pkg-descr (props changed) head/editors/libreoffice-el/pkg-descr (props changed) head/editors/libreoffice-en_GB/pkg-descr (props changed) head/editors/libreoffice-en_ZA/pkg-descr (props changed) head/editors/libreoffice-eo/pkg-descr (props changed) head/editors/libreoffice-es/pkg-descr (props changed) head/editors/libreoffice-et/pkg-descr (props changed) head/editors/libreoffice-eu/pkg-descr (props changed) head/editors/libreoffice-fa/pkg-descr (props changed) head/editors/libreoffice-fi/pkg-descr (props changed) head/editors/libreoffice-ga/pkg-descr (props changed) head/editors/libreoffice-gd/pkg-descr (props changed) head/editors/libreoffice-gl/pkg-descr (props changed) head/editors/libreoffice-gu/pkg-descr (props changed) head/editors/libreoffice-hi/pkg-descr (props changed) head/editors/libreoffice-hr/pkg-descr (props changed) head/editors/libreoffice-i18n/pkg-descr (props changed) head/editors/libreoffice-id/pkg-descr (props changed) head/editors/libreoffice-is/pkg-descr (props changed) head/editors/libreoffice-it/pkg-descr (props changed) head/editors/libreoffice-ka/pkg-descr (props changed) head/editors/libreoffice-kk/pkg-descr (props changed) head/editors/libreoffice-km/pkg-descr (props changed) head/editors/libreoffice-kok/pkg-descr (props changed) head/editors/libreoffice-ks/pkg-descr (props changed) head/editors/libreoffice-ku/pkg-descr (props changed) head/editors/libreoffice-lo/pkg-descr (props changed) head/editors/libreoffice-lt/pkg-descr (props changed) head/editors/libreoffice-lv/pkg-descr (props changed) head/editors/libreoffice-mai/pkg-descr (props changed) head/editors/libreoffice-mk/pkg-descr (props changed) head/editors/libreoffice-ml/pkg-descr (props changed) head/editors/libreoffice-mn/pkg-descr (props changed) head/editors/libreoffice-mni/pkg-descr (props changed) head/editors/libreoffice-mr/pkg-descr (props changed) head/editors/libreoffice-my/pkg-descr (props changed) head/editors/libreoffice-nb/pkg-descr (props changed) head/editors/libreoffice-ne/pkg-descr (props changed) head/editors/libreoffice-nl/pkg-descr (props changed) head/editors/libreoffice-nn/pkg-descr (props changed) head/editors/libreoffice-nr/pkg-descr (props changed) head/editors/libreoffice-nso/pkg-descr (props changed) head/editors/libreoffice-oc/pkg-descr (props changed) head/editors/libreoffice-om/pkg-descr (props changed) head/editors/libreoffice-or/pkg-descr (props changed) head/editors/libreoffice-pa_IN/pkg-descr (props changed) head/editors/libreoffice-ro/pkg-descr (props changed) head/editors/libreoffice-rw/pkg-descr (props changed) head/editors/libreoffice-sa_IN/pkg-descr (props changed) head/editors/libreoffice-sat/pkg-descr (props changed) head/editors/libreoffice-sd/pkg-descr (props changed) head/editors/libreoffice-sh/pkg-descr (props changed) head/editors/libreoffice-si/pkg-descr (props changed) head/editors/libreoffice-sk/pkg-descr (props changed) head/editors/libreoffice-sl/pkg-descr (props changed) head/editors/libreoffice-sq/pkg-descr (props changed) head/editors/libreoffice-sr/pkg-descr (props changed) head/editors/libreoffice-ss/pkg-descr (props changed) head/editors/libreoffice-st/pkg-descr (props changed) head/editors/libreoffice-sv/pkg-descr (props changed) head/editors/libreoffice-sw_TZ/pkg-descr (props changed) head/editors/libreoffice-ta/pkg-descr (props changed) head/editors/libreoffice-te/pkg-descr (props changed) head/editors/libreoffice-tg/pkg-descr (props changed) head/editors/libreoffice-th/pkg-descr (props changed) head/editors/libreoffice-tn/pkg-descr (props changed) head/editors/libreoffice-tr/pkg-descr (props changed) head/editors/libreoffice-ts/pkg-descr (props changed) head/editors/libreoffice-uz/pkg-descr (props changed) head/editors/libreoffice-ve/pkg-descr (props changed) head/editors/libreoffice-xh/pkg-descr (props changed) head/editors/libreoffice-zu/pkg-descr (props changed) head/editors/libreoffice/pkg-descr (props changed) head/editors/madedit/pkg-descr (props changed) head/editors/manedit/pkg-descr (props changed) head/editors/mate-text-editor/pkg-descr (props changed) head/editors/mg/pkg-descr (props changed) head/editors/mined/pkg-descr (props changed) head/editors/mlview/pkg-descr (props changed) head/editors/morla/pkg-descr (props changed) head/editors/mp/pkg-descr (props changed) head/editors/nano-devel/pkg-descr (props changed) head/editors/nano/pkg-descr (props changed) head/editors/ne/pkg-descr (props changed) head/editors/nedit/pkg-descr (props changed) head/editors/nvi-devel/pkg-descr (props changed) head/editors/nvi-m17n/pkg-descr (props changed) head/editors/nxml/pkg-descr (props changed) head/editors/omegaT/pkg-descr (props changed) head/editors/openoffice-3/pkg-descr (props changed) head/editors/openoffice-4/pkg-descr (props changed) head/editors/openoffice-devel/pkg-descr (props changed) head/editors/p5-Padre/pkg-descr (props changed) head/editors/p5-Vimana/pkg-descr (props changed) head/editors/paredit-mode.el/pkg-descr (props changed) head/editors/pico-alpine/pkg-descr (props changed) head/editors/poedit/pkg-descr (props changed) head/editors/psgml/pkg-descr (props changed) head/editors/puff/pkg-descr (props changed) head/editors/py-room/pkg-descr (props changed) head/editors/rox-edit/pkg-descr (props changed) head/editors/scite/pkg-descr (props changed) head/editors/scribes/pkg-descr (props changed) head/editors/se/pkg-descr (props changed) head/editors/semi/pkg-descr (props changed) head/editors/setedit/pkg-descr (props changed) head/editors/slime/pkg-descr (props changed) head/editors/softmaker-office/pkg-descr (props changed) head/editors/spe/pkg-descr (props changed) head/editors/speedbar/pkg-descr (props changed) head/editors/ssam/pkg-descr (props changed) head/editors/ssed/pkg-descr (props changed) head/editors/sted/pkg-descr (props changed) head/editors/tamago/pkg-descr (props changed) head/editors/teco/pkg-descr (props changed) head/editors/ted/pkg-descr (props changed) head/editors/tetradraw/pkg-descr (props changed) head/editors/texmacs/pkg-descr (props changed) head/editors/texmaker/pkg-descr (props changed) head/editors/texmakerx/pkg-descr (props changed) head/editors/textedit/pkg-descr (props changed) head/editors/textroom/pkg-descr (props changed) head/editors/texworks/pkg-descr (props changed) head/editors/the/pkg-descr (props changed) head/editors/thoteditor/pkg-descr (props changed) head/editors/tpad/pkg-descr (props changed) head/editors/tree-widget/pkg-descr (props changed) head/editors/treeform/pkg-descr (props changed) head/editors/tweak/pkg-descr (props changed) head/editors/uemacs/pkg-descr (props changed) head/editors/uzap/pkg-descr (props changed) head/editors/ved/pkg-descr (props changed) head/editors/vigor/pkg-descr (props changed) head/editors/vim/pkg-descr (props changed) head/editors/winefish/pkg-descr (props changed) head/editors/wordgrinder/pkg-descr (props changed) head/editors/xcoral/pkg-descr (props changed) head/editors/xed/pkg-descr (props changed) head/editors/xemacs-devel-mule/pkg-descr (props changed) head/editors/xemacs-devel-mule/pkg-descr.ja (props changed) head/editors/xemacs-devel/pkg-descr (props changed) head/editors/xemacs-mule-packages/pkg-descr (props changed) head/editors/xemacs-packages/pkg-descr (props changed) head/editors/xemacs/pkg-descr (props changed) head/editors/xemacs21-mule/pkg-descr (props changed) head/editors/xemacs21-mule/pkg-descr.ja (props changed) head/editors/xmlcopyeditor/pkg-descr (props changed) head/editors/yasnippet/pkg-descr (props changed) head/editors/yudit/pkg-descr (props changed) head/editors/zile/pkg-descr (props changed) head/editors/zim/pkg-descr (props changed) head/editors/zoinks/pkg-descr (props changed) head/emulators/adamem/pkg-descr (props changed) head/emulators/advancemame/pkg-descr (props changed) head/emulators/advancemenu/pkg-descr (props changed) head/emulators/advancemess/pkg-descr (props changed) head/emulators/aftp/pkg-descr (props changed) head/emulators/aqemu/pkg-descr (props changed) head/emulators/atari800/pkg-descr (props changed) head/emulators/bfe/pkg-descr (props changed) head/emulators/bochs/pkg-descr (props changed) head/emulators/bsvc/pkg-descr (props changed) head/emulators/catapult/pkg-descr (props changed) head/emulators/cinc/pkg-descr (props changed) head/emulators/cingb/pkg-descr (props changed) head/emulators/cpmemu/pkg-descr (props changed) head/emulators/cpmtools/pkg-descr (props changed) head/emulators/cygne-sdl/pkg-descr (props changed) head/emulators/darcnes/pkg-descr (props changed) head/emulators/desmume/pkg-descr (props changed) head/emulators/dosbox/pkg-descr (props changed) head/emulators/doscmd/pkg-descr (props changed) head/emulators/dtcyber/pkg-descr (props changed) head/emulators/dynagen/pkg-descr (props changed) head/emulators/dynagui/pkg-descr (props changed) head/emulators/dynamips-community/pkg-descr (props changed) head/emulators/dynamips-devel/pkg-descr (props changed) head/emulators/dynamips/pkg-descr (props changed) head/emulators/e-uae/pkg-descr (props changed) head/emulators/extract-xiso/pkg-descr (props changed) head/emulators/fmsx/pkg-descr (props changed) head/emulators/frodo/pkg-descr (props changed) head/emulators/fuse/pkg-descr (props changed) head/emulators/gbe/pkg-descr (props changed) head/emulators/generator-cbiere/pkg-descr (props changed) head/emulators/generator/pkg-descr (props changed) head/emulators/gngb/pkg-descr (props changed) head/emulators/gngeo/pkg-descr (props changed) head/emulators/gns3/pkg-descr (props changed) head/emulators/gnuboy/pkg-descr (props changed) head/emulators/gxemul/pkg-descr (props changed) head/emulators/gxmame/pkg-descr (props changed) head/emulators/hatari/pkg-descr (props changed) head/emulators/hercules/pkg-descr (props changed) head/emulators/hfs/pkg-descr (props changed) head/emulators/hugo/pkg-descr (props changed) head/emulators/ia64sim/pkg-descr (props changed) head/emulators/ines/pkg-descr (props changed) head/emulators/its/pkg-descr (props changed) head/emulators/joytran/pkg-descr (props changed) head/emulators/jzintv/pkg-descr (props changed) head/emulators/kcemu/pkg-descr (props changed) head/emulators/klh10/pkg-descr (props changed) head/emulators/kqemu-kmod-devel/pkg-descr (props changed) head/emulators/kqemu-kmod/pkg-descr (props changed) head/emulators/libdsk/pkg-descr (props changed) head/emulators/libspectrum/pkg-descr (props changed) head/emulators/linux-geepee32/pkg-descr (props changed) head/emulators/linux-systemsimcell/pkg-descr (props changed) head/emulators/linux_base-c6/pkg-descr (props changed) head/emulators/linux_base-f10/pkg-descr (props changed) head/emulators/linux_dist-gentoo-stage3/pkg-descr (props changed) head/emulators/lisaem/pkg-descr (props changed) head/emulators/loemu/pkg-descr (props changed) head/emulators/m2000/pkg-descr (props changed) head/emulators/mastergear/pkg-descr (props changed) head/emulators/mednafen/pkg-descr (props changed) head/emulators/mess/pkg-descr (props changed) head/emulators/minivmac/pkg-descr (props changed) head/emulators/mtools/pkg-descr (props changed) head/emulators/mupen64-base/pkg-descr (props changed) head/emulators/mupen64-rice/pkg-descr (props changed) head/emulators/mupen64/pkg-descr (props changed) head/emulators/mupen64plus-core/pkg-descr (props changed) head/emulators/mupen64plus-plugins/pkg-descr (props changed) head/emulators/mupen64plus/pkg-descr (props changed) head/emulators/nonpareil/pkg-descr (props changed) head/emulators/o2em/pkg-descr (props changed) head/emulators/ods2reader/pkg-descr (props changed) head/emulators/openmsx/pkg-descr (props changed) head/emulators/p5-Acme-6502/pkg-descr (props changed) head/emulators/parallels-tools/pkg-descr (props changed) head/emulators/pcemu/pkg-descr (props changed) head/emulators/pcsxr/pkg-descr (props changed) head/emulators/pearpc/pkg-descr (props changed) head/emulators/prodosemu/pkg-descr (props changed) head/emulators/psim-freebsd/pkg-descr (props changed) head/emulators/pyxmame/pkg-descr (props changed) head/emulators/q4wine/pkg-descr (props changed) head/emulators/qemu-devel/pkg-descr (props changed) head/emulators/qemu-launcher/pkg-descr (props changed) head/emulators/qemu/pkg-descr (props changed) head/emulators/qtemu/pkg-descr (props changed) head/emulators/quasi88/pkg-descr (props changed) head/emulators/raine/pkg-descr (props changed) head/emulators/rtc/pkg-descr (props changed) head/emulators/sim6811/pkg-descr (props changed) head/emulators/simh/pkg-descr (props changed) head/emulators/ski/pkg-descr (props changed) head/emulators/skyeye/pkg-descr (props changed) head/emulators/snes9express/pkg-descr (props changed) head/emulators/snes9x-gtk/pkg-descr (props changed) head/emulators/snes9x/pkg-descr (props changed) head/emulators/spim/pkg-descr (props changed) head/emulators/stella/pkg-descr (props changed) head/emulators/stonx/pkg-descr (props changed) head/emulators/svr4_base/pkg-descr (props changed) head/emulators/swine/pkg-descr (props changed) head/emulators/tiemu3/pkg-descr (props changed) head/emulators/tilem/pkg-descr (props changed) head/emulators/tme/pkg-descr (props changed) head/emulators/tuxnes/pkg-descr (props changed) head/emulators/uae/pkg-descr (props changed) head/emulators/vMac/pkg-descr (props changed) head/emulators/vba/pkg-descr (props changed) head/emulators/vboxtool/pkg-descr (props changed) head/emulators/vgb-bin/pkg-descr (props changed) head/emulators/vgba-bin/pkg-descr (props changed) head/emulators/vice/pkg-descr (props changed) head/emulators/virtio-kmod/pkg-descr (props changed) head/emulators/visualboyadvance-m/pkg-descr (props changed) head/emulators/vmips/pkg-descr (props changed) head/emulators/vmsbackup/pkg-descr (props changed) head/emulators/vmw/pkg-descr (props changed) head/emulators/vxtools/pkg-descr (props changed) head/emulators/wine-devel/pkg-descr (props changed) head/emulators/wine-doors/pkg-descr (props changed) head/emulators/wine-gecko-devel/pkg-descr (props changed) head/emulators/wine-gecko/pkg-descr (props changed) head/emulators/wine-mono-devel/pkg-descr (props changed) head/emulators/wine-mono/pkg-descr (props changed) head/emulators/wine/pkg-descr (props changed) head/emulators/wxmupen64plus/pkg-descr (props changed) head/emulators/x48/pkg-descr (props changed) head/emulators/x49gp/pkg-descr (props changed) head/emulators/xbraitenberg/pkg-descr (props changed) head/emulators/xcpc/pkg-descr (props changed) head/emulators/xhomer/pkg-descr (props changed) head/emulators/xmame/pkg-descr (props changed) head/emulators/xmess/pkg-descr (props changed) head/emulators/xsystem35/pkg-descr (props changed) head/emulators/yabause/pkg-descr (props changed) head/emulators/yape/pkg-descr (props changed) head/emulators/zsnes/pkg-descr (props changed) head/finance/R-cran-PerformanceAnalytics/pkg-descr (props changed) head/finance/R-cran-RFinanceYJ/pkg-descr (props changed) head/finance/R-cran-TTR/pkg-descr (props changed) head/finance/R-cran-ccgarch/pkg-descr (props changed) head/finance/R-cran-fBasics/pkg-descr (props changed) head/finance/R-cran-fGarch/pkg-descr (props changed) head/finance/R-cran-gmm/pkg-descr (props changed) head/finance/R-cran-lmtest/pkg-descr (props changed) head/finance/R-cran-plm/pkg-descr (props changed) head/finance/R-cran-quantmod/pkg-descr (props changed) head/finance/R-cran-strucchange/pkg-descr (props changed) head/finance/R-cran-timeDate/pkg-descr (props changed) head/finance/R-cran-timeSeries/pkg-descr (props changed) head/finance/R-cran-tseries/pkg-descr (props changed) head/finance/R-cran-urca/pkg-descr (props changed) head/finance/R-cran-vars/pkg-descr (props changed) head/finance/aqmoney/pkg-descr (props changed) head/finance/beanie/pkg-descr (props changed) head/finance/electrum/pkg-descr (props changed) head/finance/expense/pkg-descr (props changed) head/finance/frontaccounting/pkg-descr (props changed) head/finance/gnucash-docs/pkg-descr (props changed) head/finance/gnucash/pkg-descr (props changed) head/finance/grisbi/pkg-descr (props changed) head/finance/homebank/pkg-descr (props changed) head/finance/jgnash/pkg-descr (props changed) head/finance/kmymoney-kde4/pkg-descr (props changed) head/finance/ktoblzcheck/pkg-descr (props changed) head/finance/ledger/pkg-descr (props changed) head/finance/ledgersmb/pkg-descr (props changed) head/finance/ledgersmb12/pkg-descr (props changed) head/finance/libalkimia/pkg-descr (props changed) head/finance/libstocks/pkg-descr (props changed) head/finance/moneymanagerex/pkg-descr (props changed) head/finance/mybudget/pkg-descr (props changed) head/finance/myphpmoney/pkg-descr (props changed) head/finance/openerp-server/pkg-descr (props changed) head/finance/openerp-web/pkg-descr (props changed) head/finance/openhbci/pkg-descr (props changed) head/finance/opentaxsolver/pkg-descr (props changed) head/finance/p5-Business-CreditCard/pkg-descr (props changed) head/finance/p5-Business-MaxMind-CreditCardFraudDetection/pkg-descr (props changed) head/finance/p5-Business-OCV/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-2CheckOut/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-AuthorizeNet/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-Jettis/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-LinkPoint/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-MerchantCommerce/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-OCV/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-PaymenTech/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-PaymentsGateway/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-SurePay/pkg-descr (props changed) head/finance/p5-Business-OnlinePayment-iAuthorizer/pkg-descr (props changed) head/finance/p5-Business-PayPal-IPN/pkg-descr (props changed) head/finance/p5-Business-Stripe/pkg-descr (props changed) head/finance/p5-Business-TW-Invoice-U420/pkg-descr (props changed) head/finance/p5-Business-TW-TSIB-CStorePayment/pkg-descr (props changed) head/finance/p5-Business-TW-TSIB-VirtualAccount/pkg-descr (props changed) head/finance/p5-Business-WorldPay-Junior/pkg-descr (props changed) head/finance/p5-Data-Currency/pkg-descr (props changed) head/finance/p5-Finance-Amortization/pkg-descr (props changed) head/finance/p5-Finance-Bitcoin/pkg-descr (props changed) head/finance/p5-Finance-Currency-Convert-WebserviceX/pkg-descr (props changed) head/finance/p5-Finance-Currency-Convert-XE/pkg-descr (props changed) head/finance/p5-Finance-Currency-Convert/pkg-descr (props changed) head/finance/p5-Finance-Quote/pkg-descr (props changed) head/finance/p5-Finance-QuoteHist/pkg-descr (props changed) head/finance/p5-Finance-QuoteTW/pkg-descr (props changed) head/finance/p5-Finance-TW-EmergingQuote/pkg-descr (props changed) head/finance/p5-Finance-TW-TSEQuote/pkg-descr (props changed) head/finance/p5-Finance-YahooQuote/pkg-descr (props changed) head/finance/p5-Locale-Currency-Format/pkg-descr (props changed) head/finance/p5-Math-Financial/pkg-descr (props changed) head/finance/p5-PayflowPro/pkg-descr (props changed) head/finance/pear_Payment_DTA/pkg-descr (props changed) head/finance/php-tclink/pkg-descr (props changed) head/finance/prestashop/pkg-descr (props changed) head/finance/py-vatnumber/pkg-descr (props changed) head/finance/qhacc/pkg-descr (props changed) head/finance/sabernetdcs-client/pkg-descr (props changed) head/finance/skrooge/pkg-descr (props changed) head/finance/sql-ledger/pkg-descr (props changed) head/finance/tryton/pkg-descr (props changed) head/finance/tryton28/pkg-descr (props changed) head/finance/trytond/pkg-descr (props changed) head/finance/trytond28/pkg-descr (props changed) head/finance/trytond28_account_be/pkg-descr (props changed) head/finance/trytond28_account_invoice_history/pkg-descr (props changed) head/finance/trytond28_account_invoice_line_standalone/pkg-descr (props changed) head/finance/trytond28_account_statement/pkg-descr (props changed) head/finance/trytond28_account_stock_anglo_saxon/pkg-descr (props changed) head/finance/trytond28_account_stock_continental/pkg-descr (props changed) head/finance/trytond28_analytic_account/pkg-descr (props changed) head/finance/trytond28_analytic_invoice/pkg-descr (props changed) head/finance/trytond28_analytic_purchase/pkg-descr (props changed) head/finance/trytond28_analytic_sale/pkg-descr (props changed) head/finance/trytond28_calendar_classification/pkg-descr (props changed) head/finance/trytond28_calendar_scheduling/pkg-descr (props changed) head/finance/trytond28_calendar_todo/pkg-descr (props changed) head/finance/trytond28_party_siret/pkg-descr (props changed) head/finance/trytond28_party_vcarddav/pkg-descr (props changed) head/finance/trytond28_product_cost_fifo/pkg-descr (props changed) head/finance/trytond28_product_cost_history/pkg-descr (props changed) head/finance/trytond28_purchase_invoice_line_standalone/pkg-descr (props changed) head/finance/trytond28_purchase_shipment_cost/pkg-descr (props changed) head/finance/trytond28_stock_forecast/pkg-descr (props changed) head/finance/trytond28_stock_inventory_location/pkg-descr (props changed) head/finance/trytond28_stock_location_sequence/pkg-descr (props changed) head/finance/trytond28_stock_lot/pkg-descr (props changed) head/finance/trytond28_stock_product_location/pkg-descr (props changed) head/finance/trytond28_stock_split/pkg-descr (props changed) head/finance/trytond28_stock_supply/pkg-descr (props changed) head/finance/trytond28_stock_supply_day/pkg-descr (props changed) head/finance/trytond28_stock_supply_forecast/pkg-descr (props changed) head/finance/trytond_account_be/pkg-descr (props changed) head/finance/trytond_account_invoice_history/pkg-descr (props changed) head/finance/trytond_account_invoice_line_standalone/pkg-descr (props changed) head/finance/trytond_account_statement/pkg-descr (props changed) head/finance/trytond_account_stock_anglo_saxon/pkg-descr (props changed) head/finance/trytond_account_stock_continental/pkg-descr (props changed) head/finance/trytond_analytic_account/pkg-descr (props changed) head/finance/trytond_analytic_invoice/pkg-descr (props changed) head/finance/trytond_analytic_purchase/pkg-descr (props changed) head/finance/trytond_analytic_sale/pkg-descr (props changed) head/finance/trytond_calendar_classification/pkg-descr (props changed) head/finance/trytond_calendar_scheduling/pkg-descr (props changed) head/finance/trytond_calendar_todo/pkg-descr (props changed) head/finance/trytond_party_siret/pkg-descr (props changed) head/finance/trytond_party_vcarddav/pkg-descr (props changed) head/finance/trytond_product_cost_fifo/pkg-descr (props changed) head/finance/trytond_product_cost_history/pkg-descr (props changed) head/finance/trytond_purchase_invoice_line_standalone/pkg-descr (props changed) head/finance/trytond_purchase_shipment_cost/pkg-descr (props changed) head/finance/trytond_stock_forecast/pkg-descr (props changed) head/finance/trytond_stock_inventory_location/pkg-descr (props changed) head/finance/trytond_stock_location_sequence/pkg-descr (props changed) head/finance/trytond_stock_lot/pkg-descr (props changed) head/finance/trytond_stock_product_location/pkg-descr (props changed) head/finance/trytond_stock_split/pkg-descr (props changed) head/finance/trytond_stock_supply/pkg-descr (props changed) head/finance/trytond_stock_supply_day/pkg-descr (props changed) head/finance/trytond_stock_supply_forecast/pkg-descr (props changed) head/finance/weberp/pkg-descr (props changed) head/finance/wmstock/pkg-descr (props changed) head/finance/xtrader/pkg-descr (props changed) head/french/alphabet_sounds_fr/pkg-descr (props changed) head/french/aspell/pkg-descr (props changed) head/french/aster/pkg-descr (props changed) head/french/belote/pkg-descr (props changed) head/french/calligra-l10n/pkg-descr (props changed) head/french/dico/pkg-descr (props changed) head/french/eficas/pkg-descr (props changed) head/french/facturier/pkg-descr (props changed) head/french/fortune-mod-zarathoustra/pkg-descr (props changed) head/french/gfaim/pkg-descr (props changed) head/french/homard/pkg-descr (props changed) head/french/jdictionary-fre-hun/pkg-descr (props changed) head/french/kde4-l10n/pkg-descr (props changed) head/french/libreoffice/pkg-descr (props changed) head/french/med/pkg-descr (props changed) head/french/trytond28_account_fr/pkg-descr (props changed) head/french/trytond_account_fr/pkg-descr (props changed) head/french/tvdownloader/pkg-descr (props changed) head/french/verbiste/pkg-descr (props changed) head/ftp/R-cran-RCurl/pkg-descr (props changed) head/ftp/atftp/pkg-descr (props changed) head/ftp/axel/pkg-descr (props changed) head/ftp/bareftp/pkg-descr (props changed) head/ftp/bbftp/pkg-descr (props changed) head/ftp/bftpd/pkg-descr (props changed) head/ftp/bsdftpd-ssl/files/pkg-descr.client (props changed) head/ftp/bsdftpd-ssl/pkg-descr (props changed) head/ftp/cftp/pkg-descr (props changed) head/ftp/cmdftp/pkg-descr (props changed) head/ftp/curl-hiphop/pkg-descr (props changed) head/ftp/curl/pkg-descr (props changed) head/ftp/curlpp/pkg-descr (props changed) head/ftp/dmachine/pkg-descr (props changed) head/ftp/fget/pkg-descr (props changed) head/ftp/filezilla/pkg-descr (props changed) head/ftp/fmirror/pkg-descr (props changed) head/ftp/frox/pkg-descr (props changed) head/ftp/ftpcopy/pkg-descr (props changed) head/ftp/ftpcube/pkg-descr (props changed) head/ftp/ftpfind/pkg-descr (props changed) head/ftp/ftplocate/pkg-descr (props changed) head/ftp/ftpmirror/pkg-descr (props changed) head/ftp/ftpproxy/pkg-descr (props changed) head/ftp/ftpsesame/pkg-descr (props changed) head/ftp/ftpsync/pkg-descr (props changed) head/ftp/gnusget/pkg-descr (props changed) head/ftp/gnustep-ftp/pkg-descr (props changed) head/ftp/gwget/pkg-descr (props changed) head/ftp/horde-gollem/pkg-descr (props changed) head/ftp/horde3-gollem/pkg-descr (props changed) head/ftp/hs-curl/pkg-descr (props changed) head/ftp/hsftp/pkg-descr (props changed) head/ftp/jftp/pkg-descr (props changed) head/ftp/jftpgw/pkg-descr (props changed) head/ftp/lftp/pkg-descr (props changed) head/ftp/llnlxdir/pkg-descr (props changed) head/ftp/llnlxftp/pkg-descr (props changed) head/ftp/mirror/pkg-descr (props changed) head/ftp/multiget/pkg-descr (props changed) head/ftp/ncftp1/pkg-descr (props changed) head/ftp/ncftp3/pkg-descr (props changed) head/ftp/ncftpd/pkg-descr (props changed) head/ftp/net2ftp/pkg-descr (props changed) head/ftp/ocaml-ocurl/pkg-descr (props changed) head/ftp/oftpd/pkg-descr (props changed) head/ftp/omi/pkg-descr (props changed) head/ftp/p5-Net-FTP-Common/pkg-descr (props changed) head/ftp/p5-Net-FTP-Recursive/pkg-descr (props changed) head/ftp/p5-Net-FTPSSL/pkg-descr (props changed) head/ftp/p5-Net-FTPServer/pkg-descr (props changed) head/ftp/p5-POE-Component-Client-FTP/pkg-descr (props changed) head/ftp/p5-SOAP-Transport-FTP/pkg-descr (props changed) head/ftp/paraget/pkg-descr (props changed) head/ftp/pavuk/pkg-descr (props changed) head/ftp/pear-Net_FTP/pkg-descr (props changed) head/ftp/pftpd/pkg-descr (props changed) head/ftp/phpwebftp/pkg-descr (props changed) head/ftp/plasma-applet-ftpmonitor/pkg-descr (props changed) head/ftp/proftpd/pkg-descr (props changed) head/ftp/profxp/pkg-descr (props changed) head/ftp/puf/pkg-descr (props changed) head/ftp/pureadmin/pkg-descr (props changed) head/ftp/py-curl/pkg-descr (props changed) head/ftp/py-ftputil/pkg-descr (props changed) head/ftp/py-pyftpdlib/pkg-descr (props changed) head/ftp/py-tftpy/pkg-descr (props changed) head/ftp/quftp/pkg-descr (props changed) head/ftp/rexx-curl/pkg-descr (props changed) head/ftp/rubygem-curb/pkg-descr (props changed) head/ftp/scythia/pkg-descr (props changed) head/ftp/smbftpd/pkg-descr (props changed) head/ftp/spegla/pkg-descr (props changed) head/ftp/tftp-hpa/pkg-descr (props changed) head/ftp/tnftp/pkg-descr (props changed) head/ftp/tnftpd/pkg-descr (props changed) head/ftp/twoftpd/pkg-descr (props changed) head/ftp/uftp/pkg-descr (props changed) head/ftp/urlgfe/pkg-descr (props changed) head/ftp/vsftpd-ext/pkg-descr (props changed) head/ftp/vsftpd/pkg-descr (props changed) head/ftp/waiho/pkg-descr (props changed) head/ftp/weex/pkg-descr (props changed) head/ftp/wget/pkg-descr (props changed) head/ftp/wmget/pkg-descr (props changed) head/ftp/wput/pkg-descr (props changed) head/ftp/wxdfast/pkg-descr (props changed) head/ftp/wzdftpd/pkg-descr (props changed) head/ftp/yafc/pkg-descr (props changed) head/games/0verkill/pkg-descr (props changed) head/games/3dc/pkg-descr (props changed) head/games/3dpong/pkg-descr (props changed) head/games/4stattack/pkg-descr (props changed) head/games/54321/pkg-descr (props changed) head/games/CaribbeanStud/pkg-descr (props changed) head/games/HeroesOfMightAndMagic/pkg-descr (props changed) head/games/KnightCap/pkg-descr (props changed) head/games/abe/pkg-descr (props changed) head/games/abuse_sdl/pkg-descr (props changed) head/games/acm/pkg-descr (props changed) head/games/actx/pkg-descr (props changed) head/games/adgali/pkg-descr (props changed) head/games/adom/pkg-descr (props changed) head/games/adonthell/pkg-descr (props changed) head/games/aestats/pkg-descr (props changed) head/games/affenspiel/pkg-descr (props changed) head/games/afternoonstalker/pkg-descr (props changed) head/games/agame/pkg-descr (props changed) head/games/alephone-data/pkg-descr (props changed) head/games/alephone-scenarios/pkg-descr (props changed) head/games/alephone/pkg-descr (props changed) head/games/alienarena-data/pkg-descr (props changed) head/games/alienarena/pkg-descr (props changed) head/games/alienblaster/pkg-descr (props changed) head/games/alienwave/pkg-descr (props changed) head/games/allacrost/pkg-descr (props changed) head/games/amoebax/pkg-descr (props changed) head/games/an/pkg-descr (props changed) head/games/angband/pkg-descr (props changed) head/games/anki/pkg-descr (props changed) head/games/annelid/pkg-descr (props changed) head/games/antipolix/pkg-descr (props changed) head/games/aop/pkg-descr (props changed) head/games/apoolGL/pkg-descr (props changed) head/games/apricots/pkg-descr (props changed) head/games/arkanoidsb/pkg-descr (props changed) head/games/armagetron/pkg-descr (props changed) head/games/arx-libertatis/pkg-descr (props changed) head/games/asc/pkg-descr (props changed) head/games/asciiquarium/pkg-descr (props changed) head/games/assaultcube/pkg-descr (props changed) head/games/atanks/pkg-descr (props changed) head/games/atitd/pkg-descr (props changed) head/games/atomix/pkg-descr (props changed) head/games/atris-sounds/pkg-descr (props changed) head/games/atris/pkg-descr (props changed) head/games/avanor/pkg-descr (props changed) head/games/avoision/pkg-descr (props changed) head/games/avp-demo/pkg-descr (props changed) head/games/awele/pkg-descr (props changed) head/games/balazar/pkg-descr (props changed) head/games/balazarbrothers/pkg-descr (props changed) head/games/banihstypos/pkg-descr (props changed) head/games/barrage/pkg-descr (props changed) head/games/bass/pkg-descr (props changed) head/games/bastet/pkg-descr (props changed) head/games/battalion/pkg-descr (props changed) head/games/battletanks/pkg-descr (props changed) head/games/belooted/pkg-descr (props changed) head/games/biloba/pkg-descr (props changed) head/games/biniax2/pkg-descr (props changed) head/games/biorythm/pkg-descr (props changed) head/games/bitefusion/pkg-descr (props changed) head/games/black-box/pkg-descr (props changed) head/games/blackshadeselite/pkg-descr (props changed) head/games/blinken/pkg-descr (props changed) head/games/blinkensisters/pkg-descr (props changed) head/games/blobby/pkg-descr (props changed) head/games/bloboats/pkg-descr (props changed) head/games/blobwars/pkg-descr (props changed) head/games/block/pkg-descr (props changed) head/games/blockade/pkg-descr (props changed) head/games/blockout/pkg-descr (props changed) head/games/blockrage/pkg-descr (props changed) head/games/blokish/pkg-descr (props changed) head/games/bloodfrontier/pkg-descr (props changed) head/games/bogged/pkg-descr (props changed) head/games/bomberclone/pkg-descr (props changed) head/games/bomberinstinct/pkg-descr (props changed) head/games/bombz/pkg-descr (props changed) head/games/bomns/pkg-descr (props changed) head/games/bouncy/pkg-descr (props changed) head/games/braincurses/pkg-descr (props changed) head/games/brainparty/pkg-descr (props changed) head/games/brainworkshop/pkg-descr (props changed) head/games/brickshooter/pkg-descr (props changed) head/games/brikx/pkg-descr (props changed) head/games/briquolo/pkg-descr (props changed) head/games/brutalchess/pkg-descr (props changed) head/games/bsdgames/pkg-descr (props changed) head/games/bsdrain/pkg-descr (props changed) head/games/bsdtris/pkg-descr (props changed) head/games/bsp/pkg-descr (props changed) head/games/bubble-chains/pkg-descr (props changed) head/games/bubbros/pkg-descr (props changed) head/games/bugsquish/pkg-descr (props changed) head/games/bugsx/pkg-descr (props changed) head/games/bumprace/pkg-descr (props changed) head/games/burgerspace/pkg-descr (props changed) head/games/burrtools/pkg-descr (props changed) head/games/bygfoot/pkg-descr (props changed) head/games/bzflag/pkg-descr (props changed) head/games/cake/pkg-descr (props changed) head/games/caph/pkg-descr (props changed) head/games/capicity/pkg-descr (props changed) head/games/capitalism/pkg-descr (props changed) head/games/cardpics/pkg-descr (props changed) head/games/cave9/pkg-descr (props changed) head/games/cavezofphear/pkg-descr (props changed) head/games/ceferino/pkg-descr (props changed) head/games/cgoban/pkg-descr (props changed) head/games/chanta/pkg-descr (props changed) head/games/chapping/pkg-descr (props changed) head/games/cheech/pkg-descr (props changed) head/games/childsplay_plugins/pkg-descr (props changed) head/games/chroma/pkg-descr (props changed) head/games/chromium-bsu/pkg-descr (props changed) head/games/circuslinux/pkg-descr (props changed) head/games/cleanq3/pkg-descr (props changed) head/games/colorcode/pkg-descr (props changed) head/games/columns/pkg-descr (props changed) head/games/concentration/pkg-descr (props changed) head/games/connectfive/pkg-descr (props changed) head/games/conquest/pkg-descr (props changed) head/games/construo/pkg-descr (props changed) head/games/corewars/pkg-descr (props changed) head/games/cosmo/pkg-descr (props changed) head/games/cosmosmash/pkg-descr (props changed) head/games/cowsay/pkg-descr (props changed) head/games/crack-attack/pkg-descr (props changed) head/games/crafty-open-enormous/pkg-descr (props changed) head/games/crafty-open-large/pkg-descr (props changed) head/games/crafty-open-medium/pkg-descr (props changed) head/games/crafty-tablebase-no-pawn/pkg-descr (props changed) head/games/crafty-tablebase-pawn/pkg-descr (props changed) head/games/crafty/pkg-descr (props changed) head/games/cretan-hubris/pkg-descr (props changed) head/games/crimson/pkg-descr (props changed) head/games/criticalmass/pkg-descr (props changed) head/games/critterding/pkg-descr (props changed) head/games/crossfire-client/pkg-descr (props changed) head/games/crossfire-server/pkg-descr (props changed) head/games/crrcsim/pkg-descr (props changed) head/games/cryptoslam/pkg-descr (props changed) head/games/csmash/pkg-descr (props changed) head/games/ctris/pkg-descr (props changed) head/games/cube/pkg-descr (props changed) head/games/cultivation/pkg-descr (props changed) head/games/cursive/pkg-descr (props changed) head/games/cutemaze/pkg-descr (props changed) head/games/cuyo/pkg-descr (props changed) head/games/d2x-xl/pkg-descr (props changed) head/games/d2x/pkg-descr (props changed) head/games/daimonin-music/pkg-descr (props changed) head/games/daimonin/pkg-descr (props changed) head/games/dangen/pkg-descr (props changed) head/games/dangerdeep-data/pkg-descr (props changed) head/games/dangerdeep/pkg-descr (props changed) head/games/darkplaces/pkg-descr (props changed) head/games/dcross/pkg-descr (props changed) head/games/deal/pkg-descr (props changed) head/games/defendguin/pkg-descr (props changed) head/games/diameter/pkg-descr (props changed) head/games/digger-vgl/pkg-descr (props changed) head/games/djgame2/pkg-descr (props changed) head/games/dmjava/pkg-descr (props changed) head/games/dodgindiamond2/pkg-descr (props changed) head/games/dontspace/pkg-descr (props changed) head/games/doom-data/pkg-descr (props changed) head/games/doom-freedoom/pkg-descr (props changed) head/games/doom-hacx/pkg-descr (props changed) head/games/doom-hr/pkg-descr (props changed) head/games/doom-hr2/pkg-descr (props changed) head/games/doom-wolfendoom/pkg-descr (props changed) head/games/doom/pkg-descr (props changed) head/games/doomlegacy/pkg-descr (props changed) head/games/doomsday/pkg-descr (props changed) head/games/dopewars/pkg-descr (props changed) head/games/drcreep/pkg-descr (props changed) head/games/drm/pkg-descr (props changed) head/games/dsnake/pkg-descr (props changed) head/games/duckmaze/pkg-descr (props changed) head/games/duel/pkg-descr (props changed) head/games/duke3d-data/pkg-descr (props changed) head/games/dungeon/pkg-descr (props changed) head/games/dungeoncrawl/pkg-descr (props changed) head/games/eboard/pkg-descr (props changed) head/games/edge/pkg-descr (props changed) head/games/editss/pkg-descr (props changed) head/games/eduke32/pkg-descr (props changed) head/games/egl/pkg-descr (props changed) head/games/egoboo/pkg-descr (props changed) head/games/eif/pkg-descr (props changed) head/games/eights/pkg-descr (props changed) head/games/einstein/pkg-descr (props changed) head/games/el-data/pkg-descr (props changed) head/games/el/pkg-descr (props changed) head/games/ember/pkg-descr (props changed) head/games/endgame-singularity-music/pkg-descr (props changed) head/games/endgame-singularity/pkg-descr (props changed) head/games/enigma/pkg-descr (props changed) head/games/ensemblist/pkg-descr (props changed) head/games/entombed/pkg-descr (props changed) head/games/enygma/pkg-descr (props changed) head/games/etracer/pkg-descr (props changed) head/games/evilfinder/pkg-descr (props changed) head/games/evq3/pkg-descr (props changed) head/games/excido/pkg-descr (props changed) head/games/exhaust-ma/pkg-descr (props changed) head/games/exmars/pkg-descr (props changed) head/games/exult/pkg-descr (props changed) head/games/ezquake/pkg-descr (props changed) head/games/f1spirit-remake/pkg-descr (props changed) head/games/fairymax/pkg-descr (props changed) head/games/falconseye/pkg-descr (props changed) head/games/farblazer/pkg-descr (props changed) head/games/fargoal/pkg-descr (props changed) head/games/fbg2/pkg-descr (props changed) head/games/fgkicker/pkg-descr (props changed) head/games/fgrun/pkg-descr (props changed) head/games/fightorperish/pkg-descr (props changed) head/games/fillets-ng/pkg-descr (props changed) head/games/filters/pkg-descr (props changed) head/games/fishsupper/pkg-descr (props changed) head/games/fkiss/pkg-descr (props changed) head/games/flare-engine/pkg-descr (props changed) head/games/flare-game/pkg-descr (props changed) head/games/flightgear-aircraft/pkg-descr (props changed) head/games/flightgear-data/pkg-descr (props changed) head/games/flightgear-mb339-pan/pkg-descr (props changed) head/games/flightgear/pkg-descr (props changed) head/games/flobopuyo/pkg-descr (props changed) head/games/flyhard/pkg-descr (props changed) head/games/flying/pkg-descr (props changed) head/games/fmars/pkg-descr (props changed) head/games/foobillard/pkg-descr (props changed) head/games/formido/pkg-descr (props changed) head/games/fortunate/pkg-descr (props changed) head/games/fotaq/pkg-descr (props changed) head/games/freeciv-sounds/pkg-descr (props changed) head/games/freeciv/pkg-descr (props changed) head/games/freecol/pkg-descr (props changed) head/games/freedink-data/pkg-descr (props changed) head/games/freedink-dfarc/pkg-descr (props changed) head/games/freedink-engine/pkg-descr (props changed) head/games/freedink/pkg-descr (props changed) head/games/freedoko/pkg-descr (props changed) head/games/freedroid/pkg-descr (props changed) head/games/freedroidrpg/pkg-descr (props changed) head/games/freeminer/pkg-descr (props changed) head/games/freera/pkg-descr (props changed) head/games/freesweep/pkg-descr (props changed) head/games/freesynd/pkg-descr (props changed) head/games/freetennis/pkg-descr (props changed) head/games/fretsonfire-data/pkg-descr (props changed) head/games/fretsonfire/pkg-descr (props changed) head/games/frikqcc/pkg-descr (props changed) head/games/frobtads/pkg-descr (props changed) head/games/frogatto/pkg-descr (props changed) head/games/frotz/pkg-descr (props changed) head/games/fteqw/pkg-descr (props changed) head/games/ftjava/pkg-descr (props changed) head/games/fuhquake/pkg-descr (props changed) head/games/funnyboat/pkg-descr (props changed) head/games/fxsudoku/pkg-descr (props changed) head/games/galaxis/pkg-descr (props changed) head/games/galaxyhack/pkg-descr (props changed) head/games/galaxymage/pkg-descr (props changed) head/games/garith/pkg-descr (props changed) head/games/gbottler/pkg-descr (props changed) head/games/gbrainy/pkg-descr (props changed) head/games/gcompris/pkg-descr (props changed) head/games/gdado/pkg-descr (props changed) head/games/gemdropx/pkg-descr (props changed) head/games/gemrb/pkg-descr (props changed) head/games/ggz-client-libs/pkg-descr (props changed) head/games/ggz-gtk-client/pkg-descr (props changed) head/games/ggz-gtk-games/pkg-descr (props changed) head/games/ggz-sdl-games/pkg-descr (props changed) head/games/ggz-txt-client/pkg-descr (props changed) head/games/gigalomania/pkg-descr (props changed) head/games/gillo/pkg-descr (props changed) head/games/gish-demo/pkg-descr (props changed) head/games/gl-117/pkg-descr (props changed) head/games/glaxium/pkg-descr (props changed) head/games/glbsp/pkg-descr (props changed) head/games/glchess/pkg-descr (props changed) head/games/glest-data/pkg-descr (props changed) head/games/glest/pkg-descr (props changed) head/games/glightoff/pkg-descr (props changed) head/games/glmaze/pkg-descr (props changed) head/games/glob2/pkg-descr (props changed) head/games/glsfcave/pkg-descr (props changed) head/games/gltron/pkg-descr (props changed) head/games/gmastermind/pkg-descr (props changed) head/games/gmines/pkg-descr (props changed) head/games/gnake/pkg-descr (props changed) head/games/gnarr/pkg-descr (props changed) head/games/gno3dtet/pkg-descr (props changed) head/games/gnome-games-extra-data/pkg-descr (props changed) head/games/gnome-games/pkg-descr (props changed) head/games/gnomeattacks/pkg-descr (props changed) head/games/gnomebreakout/pkg-descr (props changed) head/games/gnomechess/pkg-descr (props changed) head/games/gnomekiss/pkg-descr (props changed) head/games/gnomesudoku/pkg-descr (props changed) head/games/gnono/pkg-descr (props changed) head/games/gnubg/pkg-descr (props changed) head/games/gnuchess/pkg-descr (props changed) head/games/gnudoku/pkg-descr (props changed) head/games/gnugo/pkg-descr (props changed) head/games/gnurobbo/pkg-descr (props changed) head/games/gnurobots/pkg-descr (props changed) head/games/gnushogi/pkg-descr (props changed) head/games/gnustep-ladder/pkg-descr (props changed) head/games/gnustep-sudoku/pkg-descr (props changed) head/games/golddig/pkg-descr (props changed) head/games/gomoku/pkg-descr (props changed) head/games/gondola/pkg-descr (props changed) head/games/goonies/pkg-descr (props changed) head/games/gracer/pkg-descr (props changed) head/games/greed/pkg-descr (props changed) head/games/gretools/pkg-descr (props changed) head/games/grhino/pkg-descr (props changed) head/games/gru/pkg-descr (props changed) head/games/grubik/pkg-descr (props changed) head/games/gshisen/pkg-descr (props changed) head/games/gtetrinet/pkg-descr (props changed) head/games/gti/pkg-descr (props changed) head/games/gtkatlantic/pkg-descr (props changed) head/games/gtkballs/pkg-descr (props changed) head/games/gtkevemon/pkg-descr (props changed) head/games/gtklife/pkg-descr (props changed) head/games/gtkpool/pkg-descr (props changed) head/games/gtkradiant/pkg-descr (props changed) head/games/gtktetcolor/pkg-descr (props changed) head/games/gturing/pkg-descr (props changed) head/games/gtypist/pkg-descr (props changed) head/games/gunfudeadlands/pkg-descr (props changed) head/games/gweled/pkg-descr (props changed) head/games/hangman/pkg-descr (props changed) head/games/hedgewars/pkg-descr (props changed) head/games/help_hannahs_horse/pkg-descr (props changed) head/games/heretic/pkg-descr (props changed) head/games/heroes/pkg-descr (props changed) head/games/hex/pkg-descr (props changed) head/games/hexalate/pkg-descr (props changed) head/games/hexglass/pkg-descr (props changed) head/games/hexxagon/pkg-descr (props changed) head/games/highmoon/pkg-descr (props changed) head/games/hinversi/pkg-descr (props changed) head/games/hitori/pkg-descr (props changed) head/games/hllib/pkg-descr (props changed) head/games/hlstats/pkg-descr (props changed) head/games/hlstatsx/pkg-descr (props changed) head/games/hohlin/pkg-descr (props changed) head/games/holotz-castle/pkg-descr (props changed) head/games/icbm3d/pkg-descr (props changed) head/games/icebreaker/pkg-descr (props changed) head/games/iceicepenguin/pkg-descr (props changed) head/games/ifm/pkg-descr (props changed) head/games/imaze/pkg-descr (props changed) head/games/impossible_mission_puzzle/pkg-descr (props changed) head/games/inform/pkg-descr (props changed) head/games/inform7/pkg-descr (props changed) head/games/instead/pkg-descr (props changed) head/games/interlogic/pkg-descr (props changed) head/games/ioquake3-devel/pkg-descr (props changed) head/games/ioquake3/pkg-descr (props changed) head/games/iourbanterror/pkg-descr (props changed) head/games/irrlamb/pkg-descr (props changed) head/games/ishido/pkg-descr (props changed) head/games/ivan/pkg-descr (props changed) head/games/jag/pkg-descr (props changed) head/games/jaggedalliance2/pkg-descr (props changed) head/games/java-games-suite/pkg-descr (props changed) head/games/jchessboard/pkg-descr (props changed) head/games/jfk/pkg-descr (props changed) head/games/jfsw/pkg-descr (props changed) head/games/jigsaw/pkg-descr (props changed) head/games/jigzo/pkg-descr (props changed) head/games/jin/pkg-descr (props changed) head/games/jinput/pkg-descr (props changed) head/games/joequake/pkg-descr (props changed) head/games/jools/pkg-descr (props changed) head/games/jtans/pkg-descr (props changed) head/games/jutils/pkg-descr (props changed) head/games/jvgs/pkg-descr (props changed) head/games/jzip/pkg-descr (props changed) head/games/kajaani-kombat/pkg-descr (props changed) head/games/kanagram/pkg-descr (props changed) head/games/kanatest/pkg-descr (props changed) head/games/kardsgt/pkg-descr (props changed) head/games/kartofel/pkg-descr (props changed) head/games/kcheckers/pkg-descr (props changed) head/games/kevedit/pkg-descr (props changed) head/games/khangman/pkg-descr (props changed) head/games/kiki/pkg-descr (props changed) head/games/klavaro/pkg-descr (props changed) head/games/klondike/pkg-descr (props changed) head/games/kmancala/pkg-descr (props changed) head/games/knights-kde4/pkg-descr (props changed) head/games/kobodeluxe/pkg-descr (props changed) head/games/krank/pkg-descr (props changed) head/games/kuklomenos/pkg-descr (props changed) head/games/ladder/pkg-descr (props changed) head/games/lander/pkg-descr (props changed) head/games/lapispuzzle/pkg-descr (props changed) head/games/latrine/pkg-descr (props changed) head/games/lbreakout/pkg-descr (props changed) head/games/lbreakout2/pkg-descr (props changed) head/games/ldmud/pkg-descr (props changed) head/games/legend-of-edgar/pkg-descr (props changed) head/games/legends/pkg-descr (props changed) head/games/legesmotus/pkg-descr (props changed) head/games/lexter/pkg-descr (props changed) head/games/lgeneral/pkg-descr (props changed) head/games/libdungeonmaker/pkg-descr (props changed) head/games/libfov/pkg-descr (props changed) head/games/libggz/pkg-descr (props changed) head/games/libmaitretarot/pkg-descr (props changed) head/games/libmt_client/pkg-descr (props changed) head/games/libshhcards/pkg-descr (props changed) head/games/lincity-ng/pkg-descr (props changed) head/games/lincity/pkg-descr (props changed) head/games/linux-americasarmy/pkg-descr (props changed) head/games/linux-darwinia-demo/pkg-descr (props changed) head/games/linux-defcon/pkg-descr (props changed) head/games/linux-doom3-demo/pkg-descr (props changed) head/games/linux-doom3/pkg-descr (props changed) head/games/linux-enemyterritory-etpro/pkg-descr (props changed) head/games/linux-enemyterritory-jaymod-21/pkg-descr (props changed) head/games/linux-enemyterritory-jaymod/pkg-descr (props changed) head/games/linux-enemyterritory-omni-bot-0660/pkg-descr (props changed) head/games/linux-enemyterritory-omni-bot/pkg-descr (props changed) head/games/linux-enemyterritory-shrub/pkg-descr (props changed) head/games/linux-enemyterritory-tce/pkg-descr (props changed) head/games/linux-enemyterritory/pkg-descr (props changed) head/games/linux-etqw-demo-server/pkg-descr (props changed) head/games/linux-etqw-server/pkg-descr (props changed) head/games/linux-majesty-demo/pkg-descr (props changed) head/games/linux-nerogame/pkg-descr (props changed) head/games/linux-nwnclient/pkg-descr (props changed) head/games/linux-nwserver/pkg-descr (props changed) head/games/linux-quake3-demo/pkg-descr (props changed) head/games/linux-quake3/pkg-descr (props changed) head/games/linux-quake4-demo/pkg-descr (props changed) head/games/linux-quake4/pkg-descr (props changed) head/games/linux-rtcw/pkg-descr (props changed) head/games/linux-savage/pkg-descr (props changed) head/games/linux-skulltag/pkg-descr (props changed) head/games/linux-sof/pkg-descr (props changed) head/games/linux-spheresofchaos-demo/pkg-descr (props changed) head/games/linux-ssamtfe/pkg-descr (props changed) head/games/linux-ssamtse/pkg-descr (props changed) head/games/linux-steam/pkg-descr (props changed) head/games/linux-unrealgold/pkg-descr (props changed) head/games/linux-uplink-demo/pkg-descr (props changed) head/games/linux-ut/pkg-descr (props changed) head/games/linux-ut2003-demo/pkg-descr (props changed) head/games/linux-ut2004-demo/pkg-descr (props changed) head/games/linux-virtual-jay-peak/pkg-descr (props changed) head/games/linux-warsow/pkg-descr (props changed) head/games/linux-worldofgoo-demo/pkg-descr (props changed) head/games/linwarrior/pkg-descr (props changed) head/games/liquidwar/pkg-descr (props changed) head/games/lm-solve/pkg-descr (props changed) head/games/lmpc/pkg-descr (props changed) head/games/lolcat/pkg-descr (props changed) head/games/lordsawar/pkg-descr (props changed) head/games/lostfeathers/pkg-descr (props changed) head/games/lpairs/pkg-descr (props changed) head/games/ltris/pkg-descr (props changed) head/games/lucidlife/pkg-descr (props changed) head/games/lugaru/pkg-descr (props changed) head/games/luola/pkg-descr (props changed) head/games/lwjgl/pkg-descr (props changed) head/games/macopix/pkg-descr (props changed) head/games/madbomber/pkg-descr (props changed) head/games/maelstrom/pkg-descr (props changed) head/games/magiccube4d/pkg-descr (props changed) head/games/magicor/pkg-descr (props changed) head/games/maitretarot/pkg-descr (props changed) head/games/mangband/pkg-descr (props changed) head/games/mangos/pkg-descr (props changed) head/games/marsnomercy/pkg-descr (props changed) head/games/masterserver/pkg-descr (props changed) head/games/maxr/pkg-descr (props changed) head/games/meandmyshadow/pkg-descr (props changed) head/games/megaglest-data/pkg-descr (props changed) head/games/megaglest/pkg-descr (props changed) head/games/memonix/pkg-descr (props changed) head/games/meqcc/pkg-descr (props changed) head/games/meritous/pkg-descr (props changed) head/games/mindfocus/pkg-descr (props changed) head/games/mindguard/pkg-descr (props changed) head/games/minecraft-client/pkg-descr (props changed) head/games/minecraft-server/pkg-descr (props changed) head/games/minetest/pkg-descr (props changed) head/games/mirrormagic/pkg-descr (props changed) head/games/miscom/pkg-descr (props changed) head/games/mkgichessclub/pkg-descr (props changed) head/games/mkhexgrid/pkg-descr (props changed) head/games/moagg/pkg-descr (props changed) head/games/monkeybubble/pkg-descr (props changed) head/games/monster-masher/pkg-descr (props changed) head/games/monsterz/pkg-descr (props changed) head/games/moon-buggy/pkg-descr (props changed) head/games/moonlander/pkg-descr (props changed) head/games/moria/pkg-descr (props changed) head/games/motogt/pkg-descr (props changed) head/games/mt_dolphin_ia/pkg-descr (props changed) head/games/mt_gtk_client/pkg-descr (props changed) head/games/mtaserver/pkg-descr (props changed) head/games/mudmagic/pkg-descr (props changed) head/games/mvdsv/pkg-descr (props changed) head/games/nInvaders/pkg-descr (props changed) head/games/nadar/pkg-descr (props changed) head/games/naev-data/pkg-descr (props changed) head/games/naev/pkg-descr (props changed) head/games/nazghul/pkg-descr (props changed) head/games/nehquake/pkg-descr (props changed) head/games/nethack32/pkg-descr (props changed) head/games/nethack33/pkg-descr (props changed) head/games/nethack34/pkg-descr (props changed) head/games/netherearth/pkg-descr (props changed) head/games/netpanzer/pkg-descr (props changed) head/games/netradiant/pkg-descr (props changed) head/games/netrek-BRMH-bin/pkg-descr (props changed) head/games/netrek-client-cow/pkg-descr (props changed) head/games/netris/pkg-descr (props changed) head/games/netspades/pkg-descr (props changed) head/games/nettoe/pkg-descr (props changed) head/games/neverball/pkg-descr (props changed) head/games/newvox/pkg-descr (props changed) head/games/nextgo/pkg-descr (props changed) head/games/nexuiz/pkg-descr (props changed) head/games/nibbles/pkg-descr (props changed) head/games/nighthawk/pkg-descr (props changed) head/games/nimuh/pkg-descr (props changed) head/games/ninix-aya/pkg-descr (props changed) head/games/njam/pkg-descr (props changed) head/games/nlarn/pkg-descr (props changed) head/games/noegnud-addons/pkg-descr (props changed) head/games/noegnud-data/pkg-descr (props changed) head/games/noegnud-littlehack/pkg-descr (props changed) head/games/noegnud-nethack-deet/pkg-descr (props changed) head/games/noegnud-nethack/pkg-descr (props changed) head/games/noegnud-slashem/pkg-descr (props changed) head/games/nonsense/pkg-descr (props changed) head/games/npush/pkg-descr (props changed) head/games/nsnake/pkg-descr (props changed) head/games/nuclearchess/pkg-descr (props changed) head/games/numptyphysics-npcomplete/pkg-descr (props changed) head/games/numptyphysics/pkg-descr (props changed) head/games/nwndata/pkg-descr (props changed) head/games/odamex/pkg-descr (props changed) head/games/oldrunner/pkg-descr (props changed) head/games/omega/pkg-descr (props changed) head/games/oneisenough/pkg-descr (props changed) head/games/oneko-sakura/pkg-descr (props changed) head/games/oneko/pkg-descr (props changed) head/games/oolite/pkg-descr (props changed) head/games/oonsoo/pkg-descr (props changed) head/games/openalchemist/pkg-descr (props changed) head/games/openarena-data/pkg-descr (props changed) head/games/openarena-oax/pkg-descr (props changed) head/games/openarena/pkg-descr (props changed) head/games/openastromenace/pkg-descr (props changed) head/games/opencity/pkg-descr (props changed) head/games/openglad/pkg-descr (props changed) head/games/openjazz/pkg-descr (props changed) head/games/openlierox/pkg-descr (props changed) head/games/openmortal/pkg-descr (props changed) head/games/openpref/pkg-descr (props changed) head/games/opensonic/pkg-descr (props changed) head/games/openssn/pkg-descr (props changed) head/games/openttd/pkg-descr (props changed) head/games/openyahtzee/pkg-descr (props changed) head/games/optimax/pkg-descr (props changed) head/games/orbital_eunuchs_sniper/pkg-descr (props changed) head/games/osgg/pkg-descr (props changed) head/games/outerspace/pkg-descr (props changed) head/games/p5-Acme-GuessNumber/pkg-descr (props changed) head/games/p5-Algorithm-Pair-Best/pkg-descr (props changed) head/games/p5-Algorithm-Pair-Best2/pkg-descr (props changed) head/games/p5-Algorithm-Pair-Swiss/pkg-descr (props changed) head/games/p5-Baseball-Sabermetrics/pkg-descr (props changed) head/games/p5-Games-AlphaBeta/pkg-descr (props changed) head/games/p5-Games-Bingo-Bot/pkg-descr (props changed) head/games/p5-Games-Bingo-Print/pkg-descr (props changed) head/games/p5-Games-Bingo/pkg-descr (props changed) head/games/p5-Games-Dice/pkg-descr (props changed) head/games/p5-Games-GuessWord/pkg-descr (props changed) head/games/p5-Games-Tournament-RoundRobin/pkg-descr (props changed) head/games/pachi/pkg-descr (props changed) head/games/pacmanarena/pkg-descr (props changed) head/games/paintown/pkg-descr (props changed) head/games/palomino/pkg-descr (props changed) head/games/pangzero/pkg-descr (props changed) head/games/passage/pkg-descr (props changed) head/games/patapizza-tetris/pkg-descr (props changed) head/games/pathological/pkg-descr (props changed) head/games/pcgen/pkg-descr (props changed) head/games/pear-Games_Chess/pkg-descr (props changed) head/games/peg-e/pkg-descr (props changed) head/games/pengpong/pkg-descr (props changed) head/games/penguin-command/pkg-descr (props changed) head/games/pengupop/pkg-descr (props changed) head/games/phalanx/pkg-descr (props changed) head/games/phlipple/pkg-descr (props changed) head/games/pinball/pkg-descr (props changed) head/games/pink-pony/pkg-descr (props changed) head/games/pioneers/pkg-descr (props changed) head/games/pipenightdreams/pkg-descr (props changed) head/games/pipepanic/pkg-descr (props changed) head/games/pipewalker/pkg-descr (props changed) head/games/plee-the-bear/pkg-descr (props changed) head/games/plonx/pkg-descr (props changed) head/games/plutocracy/pkg-descr (props changed) head/games/pmars/pkg-descr (props changed) head/games/poker-engine/pkg-descr (props changed) head/games/poker-eval/pkg-descr (props changed) head/games/pokerth/pkg-descr (props changed) head/games/polyglot/pkg-descr (props changed) head/games/polypuzzle/pkg-descr (props changed) head/games/pongix/pkg-descr (props changed) head/games/popstar/pkg-descr (props changed) head/games/pouetchess/pkg-descr (props changed) head/games/powder/pkg-descr (props changed) head/games/powermanga/pkg-descr (props changed) head/games/powwow/pkg-descr (props changed) head/games/prboom/pkg-descr (props changed) head/games/primateplunge/pkg-descr (props changed) head/games/ptkei/pkg-descr (props changed) head/games/ptools/pkg-descr (props changed) head/games/puckman/pkg-descr (props changed) head/games/pushover/pkg-descr (props changed) head/games/pvpgn/pkg-descr (props changed) head/games/py-fife/pkg-descr (props changed) head/games/py-mnemosyne/pkg-descr (props changed) head/games/py-poker-eval/pkg-descr (props changed) head/games/py-pychess/pkg-descr (props changed) head/games/py-sgflib/pkg-descr (props changed) head/games/py-sgfsummary/pkg-descr (props changed) head/games/py-ski/pkg-descr (props changed) head/games/pyawale/pkg-descr (props changed) head/games/pycadia/pkg-descr (props changed) head/games/pyching/pkg-descr (props changed) head/games/pydance/pkg-descr (props changed) head/games/pykawari/pkg-descr (props changed) head/games/pysol-cardsets/pkg-descr (props changed) head/games/pysol-music/pkg-descr (props changed) head/games/pysol/pkg-descr (props changed) head/games/pysolfc/pkg-descr (props changed) head/games/pyspacewar/pkg-descr (props changed) head/games/pysycache-lang/pkg-descr (props changed) head/games/pysycache-themes/pkg-descr (props changed) head/games/pysycache/pkg-descr (props changed) head/games/pythonchess/pkg-descr (props changed) head/games/pythonsudoku/pkg-descr (props changed) head/games/pytowerdefense/pkg-descr (props changed) head/games/q2p/pkg-descr (props changed) head/games/q2pro/pkg-descr (props changed) head/games/q3cellshading/pkg-descr (props changed) head/games/qcc/pkg-descr (props changed) head/games/qccx/pkg-descr (props changed) head/games/qgo/pkg-descr (props changed) head/games/qix/pkg-descr (props changed) head/games/qmars/pkg-descr (props changed) head/games/qnetwalk/pkg-descr (props changed) head/games/qonk/pkg-descr (props changed) head/games/qstat/pkg-descr (props changed) head/games/qtads/pkg-descr (props changed) head/games/qtv/pkg-descr (props changed) head/games/quackle/pkg-descr (props changed) head/games/quadra/pkg-descr (props changed) head/games/quake-data/pkg-descr (props changed) head/games/quake-dpmod/pkg-descr (props changed) head/games/quake-extras/pkg-descr (props changed) head/games/quake-reaper/pkg-descr (props changed) head/games/quake-source/pkg-descr (props changed) head/games/quake2-3zb2/pkg-descr (props changed) head/games/quake2-ctf/pkg-descr (props changed) head/games/quake2-data/pkg-descr (props changed) head/games/quake2-extras/pkg-descr (props changed) head/games/quake2-lights/pkg-descr (props changed) head/games/quake2-matrix/pkg-descr (props changed) head/games/quake2-psychomod/pkg-descr (props changed) head/games/quake2-relay/pkg-descr (props changed) head/games/quake2-rogue/pkg-descr (props changed) head/games/quake2-source/pkg-descr (props changed) head/games/quake2-xatrix/pkg-descr (props changed) head/games/quake2-zaero/pkg-descr (props changed) head/games/quake2lnx/pkg-descr (props changed) head/games/quake2max/pkg-descr (props changed) head/games/quake3-data/pkg-descr (props changed) head/games/quake3-excessive/pkg-descr (props changed) head/games/quake3-freezetag/pkg-descr (props changed) head/games/quake3-osp/pkg-descr (props changed) head/games/quake3-ra3/pkg-descr (props changed) head/games/quake3-ut/pkg-descr (props changed) head/games/quake3-wfa/pkg-descr (props changed) head/games/quake3/pkg-descr (props changed) head/games/quakeforge/pkg-descr (props changed) head/games/quantumminigolf/pkg-descr (props changed) head/games/quaqut/pkg-descr (props changed) head/games/qudos/pkg-descr (props changed) head/games/quetoo/pkg-descr (props changed) head/games/quit/pkg-descr (props changed) head/games/qwdtools/pkg-descr (props changed) head/games/r1q2/pkg-descr (props changed) head/games/railroad-rampage/pkg-descr (props changed) head/games/redeclipse/pkg-descr (props changed) head/games/reminiscence/pkg-descr (props changed) head/games/rescue/pkg-descr (props changed) head/games/residualvm/pkg-descr (props changed) head/games/rezerwar/pkg-descr (props changed) head/games/rfksay/pkg-descr (props changed) head/games/rftg/pkg-descr (props changed) head/games/ri-li/pkg-descr (props changed) head/games/robotfindskitten/pkg-descr (props changed) head/games/rocksndiamonds-data/pkg-descr (props changed) head/games/rocksndiamonds/pkg-descr (props changed) head/games/rottdc/pkg-descr (props changed) head/games/rt2-demo/pkg-descr (props changed) head/games/rtb/pkg-descr (props changed) head/games/rubix/pkg-descr (props changed) head/games/sampsvr/pkg-descr (props changed) head/games/sarien/pkg-descr (props changed) head/games/sauerbraten/pkg-descr (props changed) head/games/scare/pkg-descr (props changed) head/games/schiff/pkg-descr (props changed) head/games/schwarzweiss/pkg-descr (props changed) head/games/scid/pkg-descr (props changed) head/games/scorched3d/pkg-descr (props changed) head/games/scourge-data/pkg-descr (props changed) head/games/scourge/pkg-descr (props changed) head/games/scramble/pkg-descr (props changed) head/games/scummvm-tools/pkg-descr (props changed) head/games/scummvm/pkg-descr (props changed) head/games/sdb/pkg-descr (props changed) head/games/sdl-ball/pkg-descr (props changed) head/games/sdlCC/pkg-descr (props changed) head/games/sdl_jewels/pkg-descr (props changed) head/games/sdl_lopan/pkg-descr (props changed) head/games/sdl_scavenger/pkg-descr (props changed) head/games/sdlquake2/pkg-descr (props changed) head/games/sdlsand/pkg-descr (props changed) head/games/sea-defender/pkg-descr (props changed) head/games/seabattle/pkg-descr (props changed) head/games/seahaven/pkg-descr (props changed) head/games/searchandrescue-data/pkg-descr (props changed) head/games/searchandrescue/pkg-descr (props changed) head/games/secretmaryochronicles-music/pkg-descr (props changed) head/games/secretmaryochronicles/pkg-descr (props changed) head/games/senken/pkg-descr (props changed) head/games/sets/pkg-descr (props changed) head/games/sex/pkg-descr (props changed) head/games/shaaft/pkg-descr (props changed) head/games/shootingstar/pkg-descr (props changed) head/games/simplevaders/pkg-descr (props changed) head/games/simsu/pkg-descr (props changed) head/games/sjeng/pkg-descr (props changed) head/games/sl/pkg-descr (props changed) head/games/slashem-tty/pkg-descr (props changed) head/games/slump/pkg-descr (props changed) head/games/slune/pkg-descr (props changed) head/games/smiley/pkg-descr (props changed) head/games/sokoban/pkg-descr (props changed) head/games/sol/pkg-descr (props changed) head/games/solarconquest/pkg-descr (props changed) head/games/solarwolf/pkg-descr (props changed) head/games/sopwith/pkg-descr (props changed) head/games/spacejunk/pkg-descr (props changed) head/games/speak/pkg-descr (props changed) head/games/species/pkg-descr (props changed) head/games/spellathon/pkg-descr (props changed) head/games/spellcast/pkg-descr (props changed) head/games/speyes/pkg-descr (props changed) head/games/spicetrade/pkg-descr (props changed) head/games/spider/pkg-descr (props changed) head/games/spring/pkg-descr (props changed) head/games/springlobby/pkg-descr (props changed) head/games/starfighter/pkg-descr (props changed) head/games/starlanes/pkg-descr (props changed) head/games/steelstorm/pkg-descr (props changed) head/games/stepmania-devel/pkg-descr (props changed) head/games/stormbaancoureur/pkg-descr (props changed) head/games/stransball2/pkg-descr (props changed) head/games/sudoku-sensei/pkg-descr (props changed) head/games/sudoku/pkg-descr (props changed) head/games/sudoku_solver/pkg-descr (props changed) head/games/sudsol/pkg-descr (props changed) head/games/sumwars/pkg-descr (props changed) head/games/super_mario_bros_python/pkg-descr (props changed) head/games/super_methane_brothers/pkg-descr (props changed) head/games/supertuxkart/pkg-descr (props changed) head/games/sxsame/pkg-descr (props changed) head/games/tads/pkg-descr (props changed) head/games/taipan/pkg-descr (props changed) head/games/tanglet/pkg-descr (props changed) head/games/tank/pkg-descr (props changed) head/games/tbclock/pkg-descr (props changed) head/games/tbe/pkg-descr (props changed) head/games/tecnoballz/pkg-descr (props changed) head/games/teeworlds/pkg-descr (props changed) head/games/teg/pkg-descr (props changed) head/games/tenebrae/pkg-descr (props changed) head/games/tetrinet-x/pkg-descr (props changed) head/games/tetrinet/pkg-descr (props changed) head/games/tetrons/pkg-descr (props changed) head/games/tetzle/pkg-descr (props changed) head/games/textmaze/pkg-descr (props changed) head/games/thegrind/pkg-descr (props changed) head/games/thevalley/pkg-descr (props changed) head/games/thudboard/pkg-descr (props changed) head/games/tileworld/pkg-descr (props changed) head/games/timeseal/pkg-descr (props changed) head/games/tinymux/pkg-descr (props changed) head/games/tkmoo/pkg-descr (props changed) head/games/tksol/pkg-descr (props changed) head/games/tomatoes/pkg-descr (props changed) head/games/tong/pkg-descr (props changed) head/games/toppler/pkg-descr (props changed) head/games/torcs/pkg-descr (props changed) head/games/tornado/pkg-descr (props changed) head/games/torrent/pkg-descr (props changed) head/games/toycars/pkg-descr (props changed) head/games/tractorgen/pkg-descr (props changed) head/games/traindirector/pkg-descr (props changed) head/games/traingame/pkg-descr (props changed) head/games/tremulous/pkg-descr (props changed) head/games/trimines/pkg-descr (props changed) head/games/triplane/pkg-descr (props changed) head/games/trojka/pkg-descr (props changed) head/games/trophy/pkg-descr (props changed) head/games/tsito/pkg-descr (props changed) head/games/tt/pkg-descr (props changed) head/games/ttraffic/pkg-descr (props changed) head/games/ttt/pkg-descr (props changed) head/games/tux-aqfh/pkg-descr (props changed) head/games/tuxfighter/pkg-descr (props changed) head/games/tuxkart/pkg-descr (props changed) head/games/tuxmath/pkg-descr (props changed) head/games/tuxpaint-config/pkg-descr (props changed) head/games/tuxpaint-fonts/pkg-descr (props changed) head/games/tuxpaint-stamps/pkg-descr (props changed) head/games/tuxpaint/pkg-descr (props changed) head/games/tuxpuck/pkg-descr (props changed) head/games/tuxracer/pkg-descr (props changed) head/games/tuxtype/pkg-descr (props changed) head/games/twind/pkg-descr (props changed) head/games/twitch/pkg-descr (props changed) head/games/tycho/pkg-descr (props changed) head/games/typespeed/pkg-descr (props changed) head/games/tyrquake/pkg-descr (props changed) head/games/ufoai-data/pkg-descr (props changed) head/games/ufoai/pkg-descr (props changed) head/games/uhexen/pkg-descr (props changed) head/games/uhexen2-extras/pkg-descr (props changed) head/games/uhexen2/pkg-descr (props changed) head/games/ultimatestunts/pkg-descr (props changed) head/games/umark/pkg-descr (props changed) head/games/unknown-horizons/pkg-descr (props changed) head/games/unnethack/pkg-descr (props changed) head/games/untahris/pkg-descr (props changed) head/games/uqm/pkg-descr (props changed) head/games/urbanterror-data/pkg-descr (props changed) head/games/utserver/pkg-descr (props changed) head/games/vamos/pkg-descr (props changed) head/games/vavoom-extras/pkg-descr (props changed) head/games/vavoom/pkg-descr (props changed) head/games/vdrift-data/pkg-descr (props changed) head/games/vdrift/pkg-descr (props changed) head/games/vectoroids/pkg-descr (props changed) head/games/vegastrike-data/pkg-descr (props changed) head/games/vegastrike/pkg-descr (props changed) head/games/violetland/pkg-descr (props changed) head/games/viruskiller/pkg-descr (props changed) head/games/vitetris/pkg-descr (props changed) head/games/vodovod/pkg-descr (props changed) head/games/volleyball/pkg-descr (props changed) head/games/vor/pkg-descr (props changed) head/games/vultures-eye/pkg-descr (props changed) head/games/wanderer/pkg-descr (props changed) head/games/wargus/pkg-descr (props changed) head/games/warsow-data/pkg-descr (props changed) head/games/warsow/pkg-descr (props changed) head/games/warzone2100/pkg-descr (props changed) head/games/wesnoth/pkg-descr (props changed) head/games/widelands/pkg-descr (props changed) head/games/wizznic/pkg-descr (props changed) head/games/wmeyes/pkg-descr (props changed) head/games/wmfortune/pkg-descr (props changed) head/games/wmminichess/pkg-descr (props changed) head/games/wmpuzzle/pkg-descr (props changed) head/games/wmqstat/pkg-descr (props changed) head/games/wmquake/pkg-descr (props changed) head/games/wmshuffle/pkg-descr (props changed) head/games/wmtictactoe/pkg-descr (props changed) head/games/wolfpack/pkg-descr (props changed) head/games/wop/pkg-descr (props changed) head/games/wordplay/pkg-descr (props changed) head/games/worldofpadman/pkg-descr (props changed) head/games/wtf/pkg-descr (props changed) head/games/xabacus/pkg-descr (props changed) head/games/xarchon/pkg-descr (props changed) head/games/xasteroids/pkg-descr (props changed) head/games/xbat/pkg-descr (props changed) head/games/xbattle/pkg-descr (props changed) head/games/xbill/pkg-descr (props changed) head/games/xbl/pkg-descr (props changed) head/games/xblackjack/pkg-descr (props changed) head/games/xblast/pkg-descr (props changed) head/games/xblood/pkg-descr (props changed) head/games/xboard/pkg-descr (props changed) head/games/xboing/pkg-descr (props changed) head/games/xbomb/pkg-descr (props changed) head/games/xbomber/pkg-descr (props changed) head/games/xbubble/pkg-descr (props changed) head/games/xchadance/pkg-descr (props changed) head/games/xcheckers/pkg-descr (props changed) head/games/xchomp/pkg-descr (props changed) head/games/xcowsay/pkg-descr (props changed) head/games/xcubes/pkg-descr (props changed) head/games/xdeblock/pkg-descr (props changed) head/games/xdemineur/pkg-descr (props changed) head/games/xdesktopwaves/pkg-descr (props changed) head/games/xdigger/pkg-descr (props changed) head/games/xdino/pkg-descr (props changed) head/games/xeyesplus/pkg-descr (props changed) head/games/xfireworks/pkg-descr (props changed) head/games/xflame/pkg-descr (props changed) head/games/xfrisk/pkg-descr (props changed) head/games/xgalaga-sdl/pkg-descr (props changed) head/games/xgalaga/pkg-descr (props changed) head/games/xglk/pkg-descr (props changed) head/games/xgospel/pkg-descr (props changed) head/games/xhexagons/pkg-descr (props changed) head/games/xhime/pkg-descr (props changed) head/games/xinfocom/pkg-descr (props changed) head/games/xinvaders/pkg-descr (props changed) head/games/xinvaders3d/pkg-descr (props changed) head/games/xisola/pkg-descr (props changed) head/games/xjewel/pkg-descr (props changed) head/games/xjig/pkg-descr (props changed) head/games/xjump/pkg-descr (props changed) head/games/xjumpx/pkg-descr (props changed) head/games/xkoules/pkg-descr (props changed) head/games/xlaby/pkg-descr (props changed) head/games/xlogical/pkg-descr (props changed) head/games/xmahjongg/pkg-descr (props changed) head/games/xmball/pkg-descr (props changed) head/games/xmemory/pkg-descr (props changed) head/games/xmille/pkg-descr (props changed) head/games/xmine/pkg-descr (props changed) head/games/xminehunter/pkg-descr (props changed) head/games/xmines/pkg-descr (props changed) head/games/xminesweep/pkg-descr (props changed) head/games/xmlink/pkg-descr (props changed) head/games/xmoto/pkg-descr (props changed) head/games/xmris/pkg-descr (props changed) head/games/xmulti/pkg-descr (props changed) head/games/xneko/pkg-descr (props changed) head/games/xoct/pkg-descr (props changed) head/games/xoids/pkg-descr (props changed) head/games/xoj/pkg-descr (props changed) head/games/xonix/pkg-descr (props changed) head/games/xonotic/pkg-descr (props changed) head/games/xorgramana/pkg-descr (props changed) head/games/xosmulti/pkg-descr (props changed) head/games/xpacman/pkg-descr (props changed) head/games/xpanex/pkg-descr (props changed) head/games/xpat2/pkg-descr (props changed) head/games/xpenguins/pkg-descr (props changed) head/games/xpilot-ng-server/pkg-descr.client (props changed) head/games/xpilot-ng-server/pkg-descr.server (props changed) head/games/xpilot/pkg-descr (props changed) head/games/xpipeman/pkg-descr (props changed) head/games/xpired/pkg-descr (props changed) head/games/xpuyopuyo/pkg-descr (props changed) head/games/xpuzzletama/pkg-descr (props changed) head/games/xpyraminx/pkg-descr (props changed) head/games/xqf/pkg-descr (props changed) head/games/xrally/pkg-descr (props changed) head/games/xrick/pkg-descr (props changed) head/games/xrisk/pkg-descr (props changed) head/games/xroach/pkg-descr (props changed) head/games/xroads/pkg-descr (props changed) head/games/xrobots/pkg-descr (props changed) head/games/xrot/pkg-descr (props changed) head/games/xrubik/pkg-descr (props changed) head/games/xsc/pkg-descr (props changed) head/games/xscavenger/pkg-descr (props changed) head/games/xscorch/pkg-descr (props changed) head/games/xscrabble/pkg-descr (props changed) head/games/xshisen/pkg-descr (props changed) head/games/xshogi/pkg-descr (props changed) head/games/xskat/pkg-descr (props changed) head/games/xskewb/pkg-descr (props changed) head/games/xsokoban/pkg-descr (props changed) head/games/xsoldier/pkg-descr (props changed) head/games/xspacewarp/pkg-descr (props changed) head/games/xspringies/pkg-descr (props changed) head/games/xteddy/pkg-descr (props changed) head/games/xtet42/pkg-descr (props changed) head/games/xtic/pkg-descr (props changed) head/games/xtriangles/pkg-descr (props changed) head/games/xtris/pkg-descr (props changed) head/games/xtrojka/pkg-descr (props changed) head/games/xtron/pkg-descr (props changed) head/games/xtruco/pkg-descr (props changed) head/games/xtux/pkg-descr (props changed) head/games/xvier/pkg-descr (props changed) head/games/xwelltris/pkg-descr (props changed) head/games/xwordpy/pkg-descr (props changed) head/games/xworm/pkg-descr (props changed) head/games/xye/pkg-descr (props changed) head/games/xzip/pkg-descr (props changed) head/games/yadex/pkg-descr (props changed) head/games/yahtzee/pkg-descr (props changed) head/games/yamsweeper/pkg-descr (props changed) head/games/zangband/pkg-descr (props changed) head/games/zatacka/pkg-descr (props changed) head/games/zaz/pkg-descr (props changed) head/games/zephulor/pkg-descr (props changed) head/games/zoom/pkg-descr (props changed) head/games/ztrack/pkg-descr (props changed) head/german/BBBike/pkg-descr (props changed) head/german/alt-aspell/pkg-descr (props changed) head/german/aspell/pkg-descr (props changed) head/german/bsdforen-firefox-searchplugin/pkg-descr (props changed) head/german/bsdgroup-firefox-searchplugin/pkg-descr (props changed) head/german/bsdpaste/pkg-descr (props changed) head/german/bugzilla40/pkg-descr (props changed) head/german/bugzilla42/pkg-descr (props changed) head/german/bugzilla44/pkg-descr (props changed) head/german/calligra-l10n/pkg-descr (props changed) head/german/dict/pkg-descr (props changed) head/german/ding/pkg-descr (props changed) head/german/dtaus/pkg-descr (props changed) head/german/hyphen/pkg-descr (props changed) head/german/jdictionary-eng-ger/pkg-descr (props changed) head/german/jdictionary-ger-hun/pkg-descr (props changed) head/german/kde4-l10n/pkg-descr (props changed) head/german/libreoffice/pkg-descr (props changed) head/german/manpages/pkg-descr (props changed) head/german/pecl-konto_check/pkg-descr (props changed) head/german/phone/pkg-descr (props changed) head/german/schwobifyer/pkg-descr (props changed) head/german/selfhtml/pkg-descr (props changed) head/german/steak/pkg-descr (props changed) head/german/tipp10/pkg-descr (props changed) head/german/trytond28_account_de_skr03/pkg-descr (props changed) head/german/trytond_account_de_skr03/pkg-descr (props changed) head/german/unix-connect/pkg-descr (props changed) head/german/vtiger/pkg-descr (props changed) head/graphics/4va/pkg-descr (props changed) head/graphics/Cgraph/pkg-descr (props changed) head/graphics/Coin/pkg-descr (props changed) head/graphics/EZWGL/pkg-descr (props changed) head/graphics/GraphicsMagick/pkg-descr (props changed) head/graphics/GraphicsMagick12/pkg-descr (props changed) head/graphics/GraphicsMagick13/pkg-descr (props changed) head/graphics/Hermes/pkg-descr (props changed) head/graphics/IPA/pkg-descr (props changed) head/graphics/ImageMagick/pkg-descr (props changed) head/graphics/O2-tools/pkg-descr (props changed) head/graphics/R-cran-RColorBrewer/pkg-descr (props changed) head/graphics/R-cran-colorspace/pkg-descr (props changed) head/graphics/R-cran-diagram/pkg-descr (props changed) head/graphics/R-cran-dichromat/pkg-descr (props changed) head/graphics/R-cran-ggplot2/pkg-descr (props changed) head/graphics/R-cran-munsell/pkg-descr (props changed) head/graphics/R-cran-pixmap/pkg-descr (props changed) head/graphics/R-cran-png/pkg-descr (props changed) head/graphics/R-cran-rgdal/pkg-descr (props changed) head/graphics/R-cran-rtiff/pkg-descr (props changed) head/graphics/R-cran-scales/pkg-descr (props changed) head/graphics/R-cran-shape/pkg-descr (props changed) head/graphics/SciPlot/pkg-descr (props changed) head/graphics/a2png/pkg-descr (props changed) head/graphics/aalib/pkg-descr (props changed) head/graphics/aeskulap/pkg-descr (props changed) head/graphics/agave/pkg-descr (props changed) head/graphics/agg/pkg-descr (props changed) head/graphics/alpng/pkg-descr (props changed) head/graphics/amide/pkg-descr (props changed) head/graphics/ampasACES-container/pkg-descr (props changed) head/graphics/animorph/pkg-descr (props changed) head/graphics/aoi/pkg-descr (props changed) head/graphics/aolserver-nsgd/pkg-descr (props changed) head/graphics/apngasm/pkg-descr (props changed) head/graphics/apvlv/pkg-descr (props changed) head/graphics/aqsis/pkg-descr (props changed) head/graphics/asciio/pkg-descr (props changed) head/graphics/autopano-sift-c/pkg-descr (props changed) head/graphics/autotrace/pkg-descr (props changed) head/graphics/aview/pkg-descr (props changed) head/graphics/ayam/pkg-descr (props changed) head/graphics/backfract/pkg-descr (props changed) head/graphics/barcode/pkg-descr (props changed) head/graphics/bbrb/pkg-descr (props changed) head/graphics/blender-doc/pkg-descr (props changed) head/graphics/blender/pkg-descr (props changed) head/graphics/bmeps/pkg-descr (props changed) head/graphics/bmp-rootvis/pkg-descr (props changed) head/graphics/bmp2html/pkg-descr (props changed) head/graphics/box/pkg-descr (props changed) head/graphics/boxer/pkg-descr (props changed) head/graphics/bugle/pkg-descr (props changed) head/graphics/c-a-i-r/pkg-descr (props changed) head/graphics/cadubi/pkg-descr (props changed) head/graphics/cairo-java/pkg-descr (props changed) head/graphics/cairo-reference/pkg-descr (props changed) head/graphics/cairo/pkg-descr (props changed) head/graphics/cairomm/pkg-descr (props changed) head/graphics/cal3d-devel/pkg-descr (props changed) head/graphics/cal3d/pkg-descr (props changed) head/graphics/camediaplay/pkg-descr (props changed) head/graphics/camera/pkg-descr (props changed) head/graphics/camerakit/pkg-descr (props changed) head/graphics/cbrpager/pkg-descr (props changed) head/graphics/cbview/pkg-descr (props changed) head/graphics/cbviewer/pkg-descr (props changed) head/graphics/cegui/pkg-descr (props changed) head/graphics/cenon/pkg-descr (props changed) head/graphics/cfdg/pkg-descr (props changed) head/graphics/chbg/pkg-descr (props changed) head/graphics/cinepaint/pkg-descr (props changed) head/graphics/claraocr/pkg-descr (props changed) head/graphics/clutter-box2d/pkg-descr (props changed) head/graphics/clutter-gtk/pkg-descr (props changed) head/graphics/comical/pkg-descr (props changed) head/graphics/comix/pkg-descr (props changed) head/graphics/commons-utilities/pkg-descr (props changed) head/graphics/compupic/pkg-descr (props changed) head/graphics/converseen/pkg-descr (props changed) head/graphics/corona/pkg-descr (props changed) head/graphics/cosmoplayer/pkg-descr (props changed) head/graphics/crw/pkg-descr (props changed) head/graphics/cthumb/pkg-descr (props changed) head/graphics/cuneiform/pkg-descr (props changed) head/graphics/curator/pkg-descr (props changed) head/graphics/cuttlefish/pkg-descr (props changed) head/graphics/danpei/pkg-descr (props changed) head/graphics/darknock/pkg-descr (props changed) head/graphics/darktable/pkg-descr (props changed) head/graphics/dataplot/pkg-descr (props changed) head/graphics/dc20ctrl/pkg-descr (props changed) head/graphics/dc20pack/pkg-descr (props changed) head/graphics/dcraw/pkg-descr (props changed) head/graphics/deegree-csw/pkg-descr (props changed) head/graphics/deegree-igeoportal/pkg-descr (props changed) head/graphics/deegree-wcs/pkg-descr (props changed) head/graphics/deegree-wfs/pkg-descr (props changed) head/graphics/deegree-wms/pkg-descr (props changed) head/graphics/deegree-wps/pkg-descr (props changed) head/graphics/deegree-wpvs/pkg-descr (props changed) head/graphics/delaboratory/pkg-descr (props changed) head/graphics/devil/pkg-descr (props changed) head/graphics/diacanvas2/pkg-descr (props changed) head/graphics/digikam-kde4/pkg-descr (props changed) head/graphics/ditaa/pkg-descr (props changed) head/graphics/djview4/pkg-descr (props changed) head/graphics/djvulibre/pkg-descr (props changed) head/graphics/dmtx-utils/pkg-descr (props changed) head/graphics/dri/pkg-descr (props changed) head/graphics/driconf/pkg-descr (props changed) head/graphics/duhdraw/pkg-descr (props changed) head/graphics/dynamechs/pkg-descr (props changed) head/graphics/easypaint/pkg-descr (props changed) head/graphics/ecore-evas/pkg-descr (props changed) head/graphics/ecore-sdl/pkg-descr (props changed) head/graphics/edje/pkg-descr (props changed) head/graphics/edje_viewer/pkg-descr (props changed) head/graphics/electrix/pkg-descr (props changed) head/graphics/enblend/pkg-descr (props changed) head/graphics/enfle/pkg-descr (props changed) head/graphics/entangle/pkg-descr (props changed) head/graphics/eog-plugins/pkg-descr (props changed) head/graphics/eog/pkg-descr (props changed) head/graphics/eos-movrec/pkg-descr (props changed) head/graphics/epdfview/pkg-descr (props changed) head/graphics/epeg/pkg-descr (props changed) head/graphics/epix/pkg-descr (props changed) head/graphics/eps2png/pkg-descr (props changed) head/graphics/epstool/pkg-descr (props changed) head/graphics/eterm-bg/pkg-descr (props changed) head/graphics/ethumb/pkg-descr (props changed) head/graphics/evas-core/pkg-descr (props changed) head/graphics/evas-engine-buffer/pkg-descr (props changed) head/graphics/evas-engine-opengl/pkg-descr (props changed) head/graphics/evas-engine-sdl/pkg-descr (props changed) head/graphics/evas-engine-x11/pkg-descr (props changed) head/graphics/evas-loader-bmp/pkg-descr (props changed) head/graphics/evas-loader-eet/pkg-descr (props changed) head/graphics/evas-loader-generic/pkg-descr (props changed) head/graphics/evas-loader-gif/pkg-descr (props changed) head/graphics/evas-loader-ico/pkg-descr (props changed) head/graphics/evas-loader-jpeg/pkg-descr (props changed) head/graphics/evas-loader-pmaps/pkg-descr (props changed) head/graphics/evas-loader-png/pkg-descr (props changed) head/graphics/evas-loader-psd/pkg-descr (props changed) head/graphics/evas-loader-svg/pkg-descr (props changed) head/graphics/evas-loader-tga/pkg-descr (props changed) head/graphics/evas-loader-tiff/pkg-descr (props changed) head/graphics/evas-loader-wbmp/pkg-descr (props changed) head/graphics/evas-loader-xpm/pkg-descr (props changed) head/graphics/evas/pkg-descr (props changed) head/graphics/evas_generic_loaders-gst/pkg-descr (props changed) head/graphics/evas_generic_loaders-pdf/pkg-descr (props changed) head/graphics/evas_generic_loaders-ps/pkg-descr (props changed) head/graphics/evas_generic_loaders-raw/pkg-descr (props changed) head/graphics/evas_generic_loaders-xcf/pkg-descr (props changed) head/graphics/evince/pkg-descr (props changed) head/graphics/evolvotron/pkg-descr (props changed) head/graphics/exact-image/pkg-descr (props changed) head/graphics/exif/pkg-descr (props changed) head/graphics/exiftags/pkg-descr (props changed) head/graphics/exiftran/pkg-descr (props changed) head/graphics/exiv2/pkg-descr (props changed) head/graphics/exrtools/pkg-descr (props changed) head/graphics/fbm/pkg-descr (props changed) head/graphics/feh/pkg-descr (props changed) head/graphics/ffff/pkg-descr (props changed) head/graphics/fig2sxd/pkg-descr (props changed) head/graphics/figurine/pkg-descr (props changed) head/graphics/flam3/pkg-descr (props changed) head/graphics/flasm/pkg-descr (props changed) head/graphics/fli2gif/pkg-descr (props changed) head/graphics/flphoto/pkg-descr (props changed) head/graphics/fly/pkg-descr (props changed) head/graphics/fortytwo/pkg-descr (props changed) head/graphics/fotofix/pkg-descr (props changed) head/graphics/fotoxx/pkg-descr (props changed) head/graphics/founts/pkg-descr (props changed) head/graphics/fraqtive/pkg-descr (props changed) head/graphics/freeglut/pkg-descr (props changed) head/graphics/frei0r/pkg-descr (props changed) head/graphics/ftgl/pkg-descr (props changed) head/graphics/fujiplay/pkg-descr (props changed) head/graphics/fusefs-gphotofs/pkg-descr (props changed) head/graphics/fv/pkg-descr (props changed) head/graphics/fyre/pkg-descr (props changed) head/graphics/g2/pkg-descr (props changed) head/graphics/gauche-gl/pkg-descr (props changed) head/graphics/gcolor/pkg-descr (props changed) head/graphics/gcolor2/pkg-descr (props changed) head/graphics/gd/pkg-descr (props changed) head/graphics/gdal-grass/pkg-descr (props changed) head/graphics/gdal/pkg-descr (props changed) head/graphics/gdchart/pkg-descr (props changed) head/graphics/gdk-pixbuf/pkg-descr (props changed) head/graphics/gdk-pixbuf2/pkg-descr (props changed) head/graphics/gdtclft/pkg-descr (props changed) head/graphics/geeqie/pkg-descr (props changed) head/graphics/gegl/pkg-descr (props changed) head/graphics/geoapi/pkg-descr (props changed) head/graphics/geomorph/pkg-descr (props changed) head/graphics/geomview/pkg-descr (props changed) head/graphics/geos/pkg-descr (props changed) head/graphics/geoserver/pkg-descr (props changed) head/graphics/gexiv2/pkg-descr (props changed) head/graphics/gif2png/pkg-descr (props changed) head/graphics/giflib/pkg-descr (props changed) head/graphics/gifmerge/pkg-descr (props changed) head/graphics/gifsicle/pkg-descr (props changed) head/graphics/giftool/pkg-descr (props changed) head/graphics/gimageview/pkg-descr (props changed) head/graphics/gimp-app/pkg-descr (props changed) head/graphics/gimp-data-extras/pkg-descr (props changed) head/graphics/gimp-focusblur-plugin/pkg-descr (props changed) head/graphics/gimp-gap/pkg-descr (props changed) head/graphics/gimp-gmic-plugin/pkg-descr (props changed) head/graphics/gimp-help/pkg-descr (props changed) head/graphics/gimp-lqr-plugin/pkg-descr (props changed) head/graphics/gimp-manual-html/pkg-descr (props changed) head/graphics/gimp-resynthesizer/pkg-descr (props changed) head/graphics/gimp-save-for-web/pkg-descr (props changed) head/graphics/gimp/pkg-descr (props changed) head/graphics/gimpfx-foundry/pkg-descr (props changed) head/graphics/giram/pkg-descr (props changed) head/graphics/gkrellkam2/pkg-descr (props changed) head/graphics/gle-graphics/pkg-descr (props changed) head/graphics/gle/pkg-descr (props changed) head/graphics/glew/pkg-descr (props changed) head/graphics/glexcess/pkg-descr (props changed) head/graphics/glfw-devel/pkg-descr (props changed) head/graphics/glfw/pkg-descr (props changed) head/graphics/glide3/pkg-descr (props changed) head/graphics/glitz/pkg-descr (props changed) head/graphics/gliv/pkg-descr (props changed) head/graphics/glosm/pkg-descr (props changed) head/graphics/glpng/pkg-descr (props changed) head/graphics/gltt/pkg-descr (props changed) head/graphics/gmt/pkg-descr (props changed) head/graphics/gnash/pkg-descr (props changed) head/graphics/gnofract4d/pkg-descr (props changed) head/graphics/gnustep-slideshow/pkg-descr (props changed) head/graphics/gnustep-slideshowkit/pkg-descr (props changed) head/graphics/gocr/pkg-descr (props changed) head/graphics/goocanvas/pkg-descr (props changed) head/graphics/goocanvas2/pkg-descr (props changed) head/graphics/goocanvasmm/pkg-descr (props changed) head/graphics/goocanvasmm2/pkg-descr (props changed) head/graphics/goom/pkg-descr (props changed) head/graphics/gource/pkg-descr (props changed) head/graphics/gpaint/pkg-descr (props changed) head/graphics/gphoto2/pkg-descr (props changed) head/graphics/gplot/pkg-descr (props changed) head/graphics/gpsmanshp/pkg-descr (props changed) head/graphics/gqview/pkg-descr (props changed) head/graphics/gracula/pkg-descr (props changed) head/graphics/grads/pkg-descr (props changed) head/graphics/grafx2/pkg-descr (props changed) head/graphics/graphite2/pkg-descr (props changed) head/graphics/graphopt/pkg-descr (props changed) head/graphics/graphviz/pkg-descr (props changed) head/graphics/grx/pkg-descr (props changed) head/graphics/gscan2pdf/pkg-descr (props changed) head/graphics/gsculpt/pkg-descr (props changed) head/graphics/gsnapshot/pkg-descr (props changed) head/graphics/gstreamer-plugins-gl/pkg-descr (props changed) head/graphics/gthumb/pkg-descr (props changed) head/graphics/gtimelapse/pkg-descr (props changed) head/graphics/gtk-update-icon-cache/pkg-descr (props changed) head/graphics/gtkam/pkg-descr (props changed) head/graphics/gtkdps/pkg-descr (props changed) head/graphics/gtkgraph/pkg-descr (props changed) head/graphics/gts/pkg-descr (props changed) head/graphics/guilib/pkg-descr (props changed) head/graphics/gwenview-kde4/pkg-descr (props changed) head/graphics/gx/pkg-descr (props changed) head/graphics/hobbes-icons-xpm/pkg-descr (props changed) head/graphics/hppsmtools/pkg-descr (props changed) head/graphics/hs-HGL/pkg-descr (props changed) head/graphics/hs-cairo/pkg-descr (props changed) head/graphics/hs-soegtk/pkg-descr (props changed) head/graphics/hs-svgcairo/pkg-descr (props changed) head/graphics/hsetroot/pkg-descr (props changed) head/graphics/hugin-devel/pkg-descr (props changed) head/graphics/hugin/pkg-descr (props changed) head/graphics/icat/pkg-descr (props changed) head/graphics/icc-profiles-basiccolor/pkg-descr (props changed) head/graphics/icc-profiles-openicc/pkg-descr (props changed) head/graphics/iccexamin/pkg-descr (props changed) head/graphics/iccxml/pkg-descr (props changed) head/graphics/icoconvert/pkg-descr (props changed) head/graphics/icontact/pkg-descr (props changed) head/graphics/icoutils/pkg-descr (props changed) head/graphics/ida/pkg-descr (props changed) head/graphics/iec16022/pkg-descr (props changed) head/graphics/iiview/pkg-descr (props changed) head/graphics/imageindex/pkg-descr (props changed) head/graphics/imagesort/pkg-descr (props changed) head/graphics/imageviewer/pkg-descr (props changed) head/graphics/imc/pkg-descr (props changed) head/graphics/imgtops/pkg-descr (props changed) head/graphics/imgv/pkg-descr (props changed) head/graphics/imlib/pkg-descr (props changed) head/graphics/imlib2/pkg-descr (props changed) head/graphics/imlib2_loaders/pkg-descr (props changed) head/graphics/import-pictures/pkg-descr (props changed) head/graphics/impressive/pkg-descr (props changed) head/graphics/inkscape/pkg-descr (props changed) head/graphics/intergif/pkg-descr (props changed) head/graphics/inventor/pkg-descr (props changed) head/graphics/iulib/pkg-descr (props changed) head/graphics/ivtools/pkg-descr (props changed) head/graphics/jalbum/pkg-descr (props changed) head/graphics/jasper/pkg-descr (props changed) head/graphics/jave6/pkg-descr (props changed) head/graphics/jbig2dec/pkg-descr (props changed) head/graphics/jbigkit/pkg-descr (props changed) head/graphics/jdraw/pkg-descr (props changed) head/graphics/jgraph/pkg-descr (props changed) head/graphics/jogamp-jogl/pkg-descr (props changed) head/graphics/jogl/pkg-descr (props changed) head/graphics/jp2a/pkg-descr (props changed) head/graphics/jpatch/pkg-descr (props changed) head/graphics/jpeg/pkg-descr (props changed) head/graphics/jpeg2ps/pkg-descr (props changed) head/graphics/jpeginfo/pkg-descr (props changed) head/graphics/jpegoptim/pkg-descr (props changed) head/graphics/jpg2pdf/pkg-descr (props changed) head/graphics/jpgraph2/pkg-descr (props changed) head/graphics/jpgtn/pkg-descr (props changed) head/graphics/jslice/pkg-descr (props changed) head/graphics/jumpgis-postgis/pkg-descr (props changed) head/graphics/jumpgis/pkg-descr (props changed) head/graphics/k3d/pkg-descr (props changed) head/graphics/kamera-kde4/pkg-descr (props changed) head/graphics/kcolorchooser/pkg-descr (props changed) head/graphics/kcoloredit/pkg-descr (props changed) head/graphics/kdc2tiff/pkg-descr (props changed) head/graphics/kdegraphics4-mobipocket/pkg-descr (props changed) head/graphics/kdegraphics4-strigi-analyzer/pkg-descr (props changed) head/graphics/kdegraphics4-svgpart/pkg-descr (props changed) head/graphics/kdegraphics4-thumbnailers/pkg-descr (props changed) head/graphics/kdegraphics4/pkg-descr (props changed) head/graphics/kgraphviewer/pkg-descr (props changed) head/graphics/kiconedit/pkg-descr (props changed) head/graphics/kix-kmod/pkg-descr (props changed) head/graphics/klatexformula/pkg-descr (props changed) head/graphics/kludge3d/pkg-descr (props changed) head/graphics/kolourpaint/pkg-descr (props changed) head/graphics/kphotoalbum-kde4/pkg-descr (props changed) head/graphics/kpovmodeler/pkg-descr (props changed) head/graphics/ksaneplugin/pkg-descr (props changed) head/graphics/ksnapshot/pkg-descr (props changed) head/graphics/kudu/pkg-descr (props changed) head/graphics/kuickshow-kde4/pkg-descr (props changed) head/graphics/laternamagica/pkg-descr (props changed) head/graphics/lcms-python/pkg-descr (props changed) head/graphics/lcms/pkg-descr (props changed) head/graphics/lcms2/pkg-descr (props changed) head/graphics/leafpak/pkg-descr (props changed) head/graphics/lensfun/pkg-descr (props changed) head/graphics/leptonica/pkg-descr (props changed) head/graphics/lfview/pkg-descr (props changed) head/graphics/libGL/pkg-descr (props changed) head/graphics/libGLU/pkg-descr (props changed) head/graphics/libGLw/pkg-descr (props changed) head/graphics/libafterimage/pkg-descr (props changed) head/graphics/libart_lgpl/pkg-descr (props changed) head/graphics/libaux/pkg-descr (props changed) head/graphics/libchamplain/pkg-descr (props changed) head/graphics/libdmtx/pkg-descr (props changed) head/graphics/libdrm/pkg-descr (props changed) head/graphics/libecwj2/pkg-descr (props changed) head/graphics/libemf/pkg-descr (props changed) head/graphics/libexif/pkg-descr (props changed) head/graphics/libfpx/pkg-descr (props changed) head/graphics/libgaiagraphics/pkg-descr (props changed) head/graphics/libgfx/pkg-descr (props changed) head/graphics/libggi/pkg-descr (props changed) head/graphics/libgltext/pkg-descr (props changed) head/graphics/libgnomecanvas-reference/pkg-descr (props changed) head/graphics/libgnomecanvas/pkg-descr (props changed) head/graphics/libgnomecanvasmm26/pkg-descr (props changed) head/graphics/libgphoto2/pkg-descr (props changed) head/graphics/libimg/pkg-descr (props changed) head/graphics/libiptcdata/pkg-descr (props changed) head/graphics/libjpeg-turbo/pkg-descr (props changed) head/graphics/libkdcraw-kde4/pkg-descr (props changed) head/graphics/libkexiv2-kde4/pkg-descr (props changed) head/graphics/libkface/pkg-descr (props changed) head/graphics/libksane/pkg-descr (props changed) head/graphics/liblqr-1/pkg-descr (props changed) head/graphics/liblug/pkg-descr (props changed) head/graphics/libmng/pkg-descr (props changed) head/graphics/libmorph/pkg-descr (props changed) head/graphics/libopenraw/pkg-descr (props changed) head/graphics/libosmesa/pkg-descr (props changed) head/graphics/libpano12/pkg-descr (props changed) head/graphics/libpano13/pkg-descr (props changed) head/graphics/libpcd/pkg-descr (props changed) head/graphics/libpgf/pkg-descr (props changed) head/graphics/libprojectm/pkg-descr (props changed) head/graphics/libpuzzle/pkg-descr (props changed) head/graphics/libqrencode/pkg-descr (props changed) head/graphics/librasterlite/pkg-descr (props changed) head/graphics/libraw/pkg-descr (props changed) head/graphics/libreatlas/pkg-descr (props changed) head/graphics/librsvg2/pkg-descr (props changed) head/graphics/libspiro/pkg-descr (props changed) head/graphics/libsvg-cairo/pkg-descr (props changed) head/graphics/libsvg/pkg-descr (props changed) head/graphics/libvisual/pkg-descr (props changed) head/graphics/libvisual04-plugins/pkg-descr (props changed) head/graphics/libvisual04/pkg-descr (props changed) head/graphics/libwmf/pkg-descr (props changed) head/graphics/libwpg/pkg-descr (props changed) head/graphics/linplasma/pkg-descr (props changed) head/graphics/linux-XnViewMP/pkg-descr (props changed) head/graphics/linux-adobesvg/pkg-descr (props changed) head/graphics/linux-f10-cairo/pkg-descr (props changed) head/graphics/linux-f10-dri/pkg-descr (props changed) head/graphics/linux-f10-gdk-pixbuf/pkg-descr (props changed) head/graphics/linux-f10-glew/pkg-descr (props changed) head/graphics/linux-f10-imlib/pkg-descr (props changed) head/graphics/linux-f10-libmng/pkg-descr (props changed) head/graphics/linux-f10-ungif/pkg-descr (props changed) head/graphics/linux-sdl_ttf/pkg-descr (props changed) head/graphics/linux_glide/pkg-descr (props changed) head/graphics/lprof-devel/pkg-descr (props changed) head/graphics/luminance/pkg-descr (props changed) head/graphics/luxrays/pkg-descr (props changed) head/graphics/luxrender/pkg-descr (props changed) head/graphics/mahotas/pkg-descr (props changed) head/graphics/makehuman/pkg-descr (props changed) head/graphics/mapserver/pkg-descr (props changed) head/graphics/mate-document-viewer/pkg-descr (props changed) head/graphics/mate-image-viewer/pkg-descr (props changed) head/graphics/maverik/pkg-descr (props changed) head/graphics/megapov/pkg-descr (props changed) head/graphics/mesa-demos/pkg-descr (props changed) head/graphics/meshviewer/pkg-descr (props changed) head/graphics/metacam/pkg-descr (props changed) head/graphics/metapixel/pkg-descr (props changed) head/graphics/mhgui/pkg-descr (props changed) head/graphics/mingplot/pkg-descr (props changed) head/graphics/mirage/pkg-descr (props changed) head/graphics/mmrecover/pkg-descr (props changed) head/graphics/mscgen/pkg-descr (props changed) head/graphics/mtpaint/pkg-descr (props changed) head/graphics/multican/pkg-descr (props changed) head/graphics/mupdf/pkg-descr (props changed) head/graphics/mxp/pkg-descr (props changed) head/graphics/nathive/pkg-descr (props changed) head/graphics/netpbm/pkg-descr (props changed) head/graphics/nip2/pkg-descr (props changed) head/graphics/npretty/pkg-descr (props changed) head/graphics/nurbs++/pkg-descr (props changed) head/graphics/nvidia-texture-tools/pkg-descr (props changed) head/graphics/ocaml-images/pkg-descr (props changed) head/graphics/ocaml-lablgl/pkg-descr (props changed) head/graphics/ocrad/pkg-descr (props changed) head/graphics/ocre/pkg-descr (props changed) head/graphics/ocrfeeder/pkg-descr (props changed) head/graphics/ocropus/pkg-descr (props changed) head/graphics/ogre3d/pkg-descr (props changed) head/graphics/openclipart/pkg-descr (props changed) head/graphics/opencolorio/pkg-descr (props changed) head/graphics/opencsg/pkg-descr (props changed) head/graphics/opendis/pkg-descr (props changed) head/graphics/opendx/pkg-descr (props changed) head/graphics/opengl-man/pkg-descr (props changed) head/graphics/opengtl/pkg-descr (props changed) head/graphics/openjpeg/pkg-descr (props changed) head/graphics/openjump/pkg-descr (props changed) head/graphics/opennurbs/pkg-descr (props changed) head/graphics/openrm/pkg-descr (props changed) head/graphics/openshadinglanguage/pkg-descr (props changed) head/graphics/optar/pkg-descr (props changed) head/graphics/optipng/pkg-descr (props changed) head/graphics/orca/pkg-descr (props changed) head/graphics/osg-devel/pkg-descr (props changed) head/graphics/osg/pkg-descr (props changed) head/graphics/oyranos/pkg-descr (props changed) head/graphics/p5-Acme-Steganography-Image-Png/pkg-descr (props changed) head/graphics/p5-CAD-Drawing-Template/pkg-descr (props changed) head/graphics/p5-Cairo/pkg-descr (props changed) head/graphics/p5-Captcha-reCAPTCHA-Mailhide/pkg-descr (props changed) head/graphics/p5-Captcha-reCAPTCHA/pkg-descr (props changed) head/graphics/p5-Chart-Clicker/pkg-descr (props changed) head/graphics/p5-Chart-Graph/pkg-descr (props changed) head/graphics/p5-Chart-PNGgraph/pkg-descr (props changed) head/graphics/p5-Chart/pkg-descr (props changed) head/graphics/p5-Color-Calc/pkg-descr (props changed) head/graphics/p5-Color-Library/pkg-descr (props changed) head/graphics/p5-Color-Palette/pkg-descr (props changed) head/graphics/p5-Color-Rgb/pkg-descr (props changed) head/graphics/p5-Color-Scheme/pkg-descr (props changed) head/graphics/p5-Convert-Color/pkg-descr (props changed) head/graphics/p5-GD-Arrow/pkg-descr (props changed) head/graphics/p5-GD-Barcode/pkg-descr (props changed) head/graphics/p5-GD-Graph-histogram/pkg-descr (props changed) head/graphics/p5-GD-Graph-ohlc/pkg-descr (props changed) head/graphics/p5-GD-Graph3d/pkg-descr (props changed) head/graphics/p5-GD-SVG/pkg-descr (props changed) head/graphics/p5-GD-TextUtil/pkg-descr (props changed) head/graphics/p5-GD-Thumbnail/pkg-descr (props changed) head/graphics/p5-GD/pkg-descr (props changed) head/graphics/p5-Geo-EOP/pkg-descr (props changed) head/graphics/p5-Geo-GDAL/pkg-descr (props changed) head/graphics/p5-Geo-GML/pkg-descr (props changed) head/graphics/p5-Geo-Gpx/pkg-descr (props changed) head/graphics/p5-Geo-KML/pkg-descr (props changed) head/graphics/p5-Geo-Point/pkg-descr (props changed) head/graphics/p5-Geo-Proj4/pkg-descr (props changed) head/graphics/p5-Geometry-Primitive/pkg-descr (props changed) head/graphics/p5-Google-Chart/pkg-descr (props changed) head/graphics/p5-Graph-Easy/pkg-descr (props changed) head/graphics/p5-Graph-SocialMap/pkg-descr (props changed) head/graphics/p5-Graph-Writer-GraphViz/pkg-descr (props changed) head/graphics/p5-GraphViz-Data-Structure/pkg-descr (props changed) head/graphics/p5-GraphViz/pkg-descr (props changed) head/graphics/p5-GraphViz2/pkg-descr (props changed) head/graphics/p5-Graphics-Color/pkg-descr (props changed) head/graphics/p5-Graphics-ColorNames/pkg-descr (props changed) head/graphics/p5-Graphics-GnuplotIF/pkg-descr (props changed) head/graphics/p5-Graphics-Primitive-Driver-Cairo/pkg-descr (props changed) head/graphics/p5-Graphics-Primitive/pkg-descr (props changed) head/graphics/p5-Image-Base-SVG/pkg-descr (props changed) head/graphics/p5-Image-Base/pkg-descr (props changed) head/graphics/p5-Image-ExifTool-devel/pkg-descr (props changed) head/graphics/p5-Image-ExifTool/pkg-descr (props changed) head/graphics/p5-Image-Grab/pkg-descr (props changed) head/graphics/p5-Image-Heatmap/pkg-descr (props changed) head/graphics/p5-Image-Imgur/pkg-descr (props changed) head/graphics/p5-Image-Imlib2/pkg-descr (props changed) head/graphics/p5-Image-Info/pkg-descr (props changed) head/graphics/p5-Image-Magick-Iterator/pkg-descr (props changed) head/graphics/p5-Image-Math-Constrain/pkg-descr (props changed) head/graphics/p5-Image-MetaData-GQview/pkg-descr (props changed) head/graphics/p5-Image-MetaData-JPEG/pkg-descr (props changed) head/graphics/p5-Image-Pngslimmer/pkg-descr (props changed) head/graphics/p5-Image-Scale/pkg-descr (props changed) head/graphics/p5-Image-Size-FillFullSelect/pkg-descr (props changed) head/graphics/p5-Image-Size/pkg-descr (props changed) head/graphics/p5-Imager-AverageGray/pkg-descr (props changed) head/graphics/p5-Imager-Graph/pkg-descr (props changed) head/graphics/p5-Imager-Plot/pkg-descr (props changed) head/graphics/p5-Imager-QRCode/pkg-descr (props changed) head/graphics/p5-Imager/pkg-descr (props changed) head/graphics/p5-Imlib2/pkg-descr (props changed) head/graphics/p5-Layout-Manager/pkg-descr (props changed) head/graphics/p5-OpenGL/pkg-descr (props changed) head/graphics/p5-PGPLOT/pkg-descr (props changed) head/graphics/p5-SVG-DOM2/pkg-descr (props changed) head/graphics/p5-SVG-Graph/pkg-descr (props changed) head/graphics/p5-SVG-Metadata/pkg-descr (props changed) head/graphics/p5-SWF-Builder/pkg-descr (props changed) head/graphics/p5-SWF-File/pkg-descr (props changed) head/graphics/p5-Sane/pkg-descr (props changed) head/graphics/p5-SpringGraph/pkg-descr (props changed) head/graphics/p5-URI-GoogleChart/pkg-descr (props changed) head/graphics/p5-VCG/pkg-descr (props changed) head/graphics/p5-Visio/pkg-descr (props changed) head/graphics/panoglview/pkg-descr (props changed) head/graphics/panomatic/pkg-descr (props changed) head/graphics/passepartout/pkg-descr (props changed) head/graphics/pdf2svg/pkg-descr (props changed) head/graphics/pear-Horde_Image/pkg-descr (props changed) head/graphics/pear-IO_SWF/pkg-descr (props changed) head/graphics/pear-Image_3D/pkg-descr (props changed) head/graphics/pear-Image_Barcode/pkg-descr (props changed) head/graphics/pear-Image_Barcode2/pkg-descr (props changed) head/graphics/pear-Image_Canvas/pkg-descr (props changed) head/graphics/pear-Image_Color/pkg-descr (props changed) head/graphics/pear-Image_Graph/pkg-descr (props changed) head/graphics/pear-Image_GraphViz/pkg-descr (props changed) head/graphics/pear-Image_Transform/pkg-descr (props changed) head/graphics/pecl-gmagick/pkg-descr (props changed) head/graphics/pecl-imagick/pkg-descr (props changed) head/graphics/pecl-imlib2/pkg-descr (props changed) head/graphics/pecl-qrencode/pkg-descr (props changed) head/graphics/pecomato/pkg-descr (props changed) head/graphics/pencil/pkg-descr (props changed) head/graphics/peps/pkg-descr (props changed) head/graphics/pfscalibration/pkg-descr (props changed) head/graphics/pfstmo/pkg-descr (props changed) head/graphics/pfstools/pkg-descr (props changed) head/graphics/pgplot/pkg-descr (props changed) head/graphics/pho/pkg-descr (props changed) head/graphics/photopc/pkg-descr (props changed) head/graphics/php-facedetect/pkg-descr (props changed) head/graphics/php-gdal/pkg-descr (props changed) head/graphics/php-libpuzzle/pkg-descr (props changed) head/graphics/php-magickwand/pkg-descr (props changed) head/graphics/php5-chartdirector/pkg-descr (props changed) head/graphics/php5-ffmpeg/pkg-descr (props changed) head/graphics/php5-swfed/pkg-descr (props changed) head/graphics/phplot/pkg-descr (props changed) head/graphics/picpuz/pkg-descr (props changed) head/graphics/picturebook/pkg-descr (props changed) head/graphics/picviz/pkg-descr (props changed) head/graphics/piddle/pkg-descr (props changed) head/graphics/pinpoint/pkg-descr (props changed) head/graphics/pinta/pkg-descr (props changed) head/graphics/pixelize/pkg-descr (props changed) head/graphics/pixen/pkg-descr (props changed) head/graphics/pixie/pkg-descr (props changed) head/graphics/pixmap/pkg-descr (props changed) head/graphics/plasma-kmod/pkg-descr (props changed) head/graphics/plotmtv/pkg-descr (props changed) head/graphics/plotutils/pkg-descr (props changed) head/graphics/png/pkg-descr (props changed) head/graphics/png2html/pkg-descr (props changed) head/graphics/png2ico/pkg-descr (props changed) head/graphics/pngcrush/pkg-descr (props changed) head/graphics/pngnq/pkg-descr (props changed) head/graphics/pngquant/pkg-descr (props changed) head/graphics/pngrewrite/pkg-descr (props changed) head/graphics/pngwriter/pkg-descr (props changed) head/graphics/podofo/pkg-descr (props changed) head/graphics/poppler-data/pkg-descr (props changed) head/graphics/poppler/pkg-descr (props changed) head/graphics/pornview/pkg-descr (props changed) head/graphics/potrace/pkg-descr (props changed) head/graphics/povray-meta/pkg-descr (props changed) head/graphics/povray31/pkg-descr (props changed) head/graphics/povray36/pkg-descr (props changed) head/graphics/povray37/pkg-descr (props changed) head/graphics/ppmcaption/pkg-descr (props changed) head/graphics/ppminfo/pkg-descr (props changed) head/graphics/ppsei/pkg-descr (props changed) head/graphics/preview/pkg-descr (props changed) head/graphics/price/pkg-descr (props changed) head/graphics/prison/pkg-descr (props changed) head/graphics/processing/pkg-descr (props changed) head/graphics/proj/pkg-descr (props changed) head/graphics/projectm-libvisual/pkg-descr (props changed) head/graphics/pstoepsi/pkg-descr (props changed) head/graphics/pure-gl/pkg-descr (props changed) head/graphics/pvmpov/pkg-descr (props changed) head/graphics/py-PyX/pkg-descr (props changed) head/graphics/py-aafigure/pkg-descr (props changed) head/graphics/py-actdiag/pkg-descr (props changed) head/graphics/py-blockdiag/pkg-descr (props changed) head/graphics/py-cairo/pkg-descr (props changed) head/graphics/py-chart/pkg-descr (props changed) head/graphics/py-editobj/pkg-descr (props changed) head/graphics/py-exif/pkg-descr (props changed) head/graphics/py-exiv2/pkg-descr (props changed) head/graphics/py-freeimagepy/pkg-descr (props changed) head/graphics/py-gchartwrapper/pkg-descr (props changed) head/graphics/py-gd/pkg-descr (props changed) head/graphics/py-gdal/pkg-descr (props changed) head/graphics/py-glewpy/pkg-descr (props changed) head/graphics/py-goocanvas/pkg-descr (props changed) head/graphics/py-graph-core/pkg-descr (props changed) head/graphics/py-graph-dot/pkg-descr (props changed) head/graphics/py-graph/pkg-descr (props changed) head/graphics/py-graphviz/pkg-descr (props changed) head/graphics/py-graphy/pkg-descr (props changed) head/graphics/py-gvgen/pkg-descr (props changed) head/graphics/py-imaging/pkg-descr (props changed) head/graphics/py-nwdiag/pkg-descr (props changed) head/graphics/py-openexr/pkg-descr (props changed) head/graphics/py-opengl/pkg-descr (props changed) head/graphics/py-paint/pkg-descr (props changed) head/graphics/py-png/pkg-descr (props changed) head/graphics/py-poppler-qt4/pkg-descr (props changed) head/graphics/py-poppler/pkg-descr (props changed) head/graphics/py-pycha/pkg-descr (props changed) head/graphics/py-pydot/pkg-descr (props changed) head/graphics/py-pyglet/pkg-descr (props changed) head/graphics/py-pygooglechart/pkg-descr (props changed) head/graphics/py-pyproj/pkg-descr (props changed) head/graphics/py-rabbyt/pkg-descr (props changed) head/graphics/py-sane/pkg-descr (props changed) head/graphics/py-seqdiag/pkg-descr (props changed) head/graphics/py-sorl-thumbnail/pkg-descr (props changed) head/graphics/py-soya3d/pkg-descr (props changed) head/graphics/py-wand/pkg-descr (props changed) head/graphics/py-webcolors/pkg-descr (props changed) head/graphics/py3-cairo/pkg-descr (props changed) head/graphics/pygts/pkg-descr (props changed) head/graphics/pyro/pkg-descr (props changed) head/graphics/pysvg/pkg-descr (props changed) head/graphics/qcread/pkg-descr (props changed) head/graphics/qgis/pkg-descr (props changed) head/graphics/qiv/pkg-descr (props changed) head/graphics/qiviewer/pkg-descr (props changed) head/graphics/qslim/pkg-descr (props changed) head/graphics/quat-gui/pkg-descr (props changed) head/graphics/quat/pkg-descr (props changed) head/graphics/quesa/pkg-descr (props changed) head/graphics/quesoglc/pkg-descr (props changed) head/graphics/radius-engine/pkg-descr (props changed) head/graphics/raster3d/pkg-descr (props changed) head/graphics/rawstudio/pkg-descr (props changed) head/graphics/rayshade/pkg-descr (props changed) head/graphics/reallyslick/pkg-descr (props changed) head/graphics/recoverjpeg/pkg-descr (props changed) head/graphics/renrot/pkg-descr (props changed) head/graphics/repng2jpeg/pkg-descr (props changed) head/graphics/rgbpaint/pkg-descr (props changed) head/graphics/ristretto/pkg-descr (props changed) head/graphics/ruby-cairo/pkg-descr (props changed) head/graphics/ruby-gd/pkg-descr (props changed) head/graphics/ruby-gdal/pkg-descr (props changed) head/graphics/ruby-gdk_pixbuf2/pkg-descr (props changed) head/graphics/ruby-ming/pkg-descr (props changed) head/graphics/ruby-rsvg2/pkg-descr (props changed) head/graphics/rubygem-cairo/pkg-descr (props changed) head/graphics/rubygem-captcha/pkg-descr (props changed) head/graphics/rubygem-chunky_png/pkg-descr (props changed) head/graphics/rubygem-clutter-gtk/pkg-descr (props changed) head/graphics/rubygem-clutter/pkg-descr (props changed) head/graphics/rubygem-dragonfly/pkg-descr (props changed) head/graphics/rubygem-exifr/pkg-descr (props changed) head/graphics/rubygem-ezprint/pkg-descr (props changed) head/graphics/rubygem-fastimage/pkg-descr (props changed) head/graphics/rubygem-gd2/pkg-descr (props changed) head/graphics/rubygem-gdk_pixbuf2/pkg-descr (props changed) head/graphics/rubygem-geokit/pkg-descr (props changed) head/graphics/rubygem-goocanvas/pkg-descr (props changed) head/graphics/rubygem-gruff/pkg-descr (props changed) head/graphics/rubygem-image_science/pkg-descr (props changed) head/graphics/rubygem-imagesize/pkg-descr (props changed) head/graphics/rubygem-objectdetect/pkg-descr (props changed) head/graphics/rubygem-pdfkit/pkg-descr (props changed) head/graphics/rubygem-railroad/pkg-descr (props changed) head/graphics/rubygem-rsvg2/pkg-descr (props changed) head/graphics/rubygem-scruffy/pkg-descr (props changed) head/graphics/rubyphoto/pkg-descr (props changed) head/graphics/s10sh/pkg-descr (props changed) head/graphics/sage/pkg-descr (props changed) head/graphics/sam2p/pkg-descr (props changed) head/graphics/sampleicc/pkg-descr (props changed) head/graphics/sane-backends/pkg-descr (props changed) head/graphics/sane-frontends/pkg-descr (props changed) head/graphics/scale2x/pkg-descr (props changed) head/graphics/scantailor/pkg-descr (props changed) head/graphics/scr2png/pkg-descr (props changed) head/graphics/scrot/pkg-descr (props changed) head/graphics/scwm-icons/pkg-descr (props changed) head/graphics/sdl2_gfx/pkg-descr (props changed) head/graphics/sdl_gfx/pkg-descr (props changed) head/graphics/sdl_image/pkg-descr (props changed) head/graphics/sdl_ttf/pkg-descr (props changed) head/graphics/seam-carving-gui/pkg-descr (props changed) head/graphics/seejpeg/pkg-descr (props changed) head/graphics/separate/pkg-descr (props changed) head/graphics/sharpconstruct/pkg-descr (props changed) head/graphics/shiva-collections/pkg-descr (props changed) head/graphics/shotwell/pkg-descr (props changed) head/graphics/show/pkg-descr (props changed) head/graphics/showimage/pkg-descr (props changed) head/graphics/silgraphite/pkg-descr (props changed) head/graphics/simage/pkg-descr (props changed) head/graphics/simpleviewer/pkg-descr (props changed) head/graphics/sk1libs/pkg-descr (props changed) head/graphics/skencil/pkg-descr (props changed) head/graphics/sketch/pkg-descr (props changed) head/graphics/sng/pkg-descr (props changed) head/graphics/sodipodi/pkg-descr (props changed) head/graphics/springgraph/pkg-descr (props changed) head/graphics/squish/pkg-descr (props changed) head/graphics/sswf/pkg-descr (props changed) head/graphics/stamp/pkg-descr (props changed) head/graphics/structuresynth/pkg-descr (props changed) head/graphics/svg2pdf/pkg-descr (props changed) head/graphics/svg2png/pkg-descr (props changed) head/graphics/svg2swf/pkg-descr (props changed) head/graphics/svgalib/pkg-descr (props changed) head/graphics/svgfig/pkg-descr (props changed) head/graphics/swfdec/pkg-descr (props changed) head/graphics/swftools/pkg-descr (props changed) head/graphics/synaesthesia/pkg-descr (props changed) head/graphics/synfigstudio/pkg-descr (props changed) head/graphics/telak/pkg-descr (props changed) head/graphics/tesseract/pkg-descr (props changed) head/graphics/tgif/pkg-descr (props changed) head/graphics/tif22pnm/pkg-descr (props changed) head/graphics/tiff/pkg-descr (props changed) head/graphics/tiff2png/pkg-descr (props changed) head/graphics/tifmerge/pkg-descr (props changed) head/graphics/tilecache/pkg-descr (props changed) head/graphics/tiled/pkg-descr (props changed) head/graphics/timeless/pkg-descr (props changed) head/graphics/tintfu/pkg-descr (props changed) head/graphics/tinyows/pkg-descr (props changed) head/graphics/tkpng/pkg-descr (props changed) head/graphics/togl/pkg-descr (props changed) head/graphics/truevision/pkg-descr (props changed) head/graphics/tulip/pkg-descr (props changed) head/graphics/tumble/pkg-descr (props changed) head/graphics/uDrawGraph/pkg-descr (props changed) head/graphics/ufraw/pkg-descr (props changed) head/graphics/uniconvertor/pkg-descr (props changed) head/graphics/uniconvw/pkg-descr (props changed) head/graphics/unpaper/pkg-descr (props changed) head/graphics/urt/pkg-descr (props changed) head/graphics/viewnior/pkg-descr (props changed) head/graphics/vigra/pkg-descr (props changed) head/graphics/vips/pkg-descr (props changed) head/graphics/visionworkbench/pkg-descr (props changed) head/graphics/visprint/pkg-descr (props changed) head/graphics/volpack/pkg-descr (props changed) head/graphics/vp/pkg-descr (props changed) head/graphics/webp/pkg-descr (props changed) head/graphics/whirlgif/pkg-descr (props changed) head/graphics/white_dune/pkg-descr (props changed) head/graphics/wings/pkg-descr (props changed) head/graphics/wmgrabimage/pkg-descr (props changed) head/graphics/wmicons/pkg-descr (props changed) head/graphics/wxsvg/pkg-descr (props changed) head/graphics/xaos/pkg-descr (props changed) head/graphics/xbmbrowser/pkg-descr (props changed) head/graphics/xd3d/pkg-descr (props changed) head/graphics/xdgagrab/pkg-descr (props changed) head/graphics/xface.el/pkg-descr (props changed) head/graphics/xfig/pkg-descr (props changed) head/graphics/xfpovray/pkg-descr (props changed) head/graphics/xfractint/pkg-descr (props changed) head/graphics/xglurbules/pkg-descr (props changed) head/graphics/xgrasp/pkg-descr (props changed) head/graphics/xli/pkg-descr (props changed) head/graphics/xmandel/pkg-descr (props changed) head/graphics/xmedcon/pkg-descr (props changed) head/graphics/xmfract/pkg-descr (props changed) head/graphics/xmlgraphics-commons/pkg-descr (props changed) head/graphics/xmms-blursk/pkg-descr (props changed) head/graphics/xmms-dancingparticles/pkg-descr (props changed) head/graphics/xmms-dflowers/pkg-descr (props changed) head/graphics/xmms-dscope/pkg-descr (props changed) head/graphics/xmms-dspectogram/pkg-descr (props changed) head/graphics/xmms-dspectral/pkg-descr (props changed) head/graphics/xmms-finespectrum/pkg-descr (props changed) head/graphics/xmms-fishmatic/pkg-descr (props changed) head/graphics/xmms-gdancer/pkg-descr (props changed) head/graphics/xmms-iris/pkg-descr (props changed) head/graphics/xmms-jess/pkg-descr (props changed) head/graphics/xmms-nebulus/pkg-descr (props changed) head/graphics/xmms-paranormal/pkg-descr (props changed) head/graphics/xmms-scivi/pkg-descr (props changed) head/graphics/xmms-vumeter/pkg-descr (props changed) head/graphics/xmms-waterfall/pkg-descr (props changed) head/graphics/xmorph/pkg-descr (props changed) head/graphics/xnview/pkg-descr (props changed) head/graphics/xoris/pkg-descr (props changed) head/graphics/xournal/pkg-descr (props changed) head/graphics/xpaint/pkg-descr (props changed) head/graphics/xpdf/pkg-descr (props changed) head/graphics/xpx/pkg-descr (props changed) head/graphics/xsvg/pkg-descr (props changed) head/graphics/xtexcad/pkg-descr (props changed) head/graphics/xv/files/pkg-descr (props changed) head/graphics/xv/pkg-descr (props changed) head/graphics/xwpick/pkg-descr (props changed) head/graphics/xzgv/pkg-descr (props changed) head/graphics/yafray/pkg-descr (props changed) head/graphics/yagf/pkg-descr (props changed) head/graphics/yed/pkg-descr (props changed) head/graphics/zathura-djvu/pkg-descr (props changed) head/graphics/zathura-pdf-poppler/pkg-descr (props changed) head/graphics/zathura/pkg-descr (props changed) head/graphics/zbar/pkg-descr (props changed) head/graphics/zgv/pkg-descr (props changed) head/graphics/zimg/pkg-descr (props changed) head/graphics/zint/pkg-descr (props changed) head/graphics/zphoto/pkg-descr (props changed) head/hebrew/aspell/pkg-descr (props changed) head/hebrew/culmus/pkg-descr (props changed) head/hebrew/elmar-fonts/pkg-descr (props changed) head/hebrew/he2/pkg-descr (props changed) head/hebrew/hspell/pkg-descr (props changed) head/hebrew/kde4-l10n/pkg-descr (props changed) head/hebrew/libreoffice/pkg-descr (props changed) head/hungarian/aspell/pkg-descr (props changed) head/hungarian/calligra-l10n/pkg-descr (props changed) head/hungarian/hu-phone/pkg-descr (props changed) head/hungarian/hu-zipcodes/pkg-descr (props changed) head/hungarian/hunspell/pkg-descr (props changed) head/hungarian/hyphen/pkg-descr (props changed) head/hungarian/ispell/pkg-descr (props changed) head/hungarian/jdictionary-eng-hun-expr/pkg-descr (props changed) head/hungarian/jdictionary-eng-hun/pkg-descr (props changed) head/hungarian/kde4-l10n/pkg-descr (props changed) head/hungarian/libreoffice/pkg-descr (props changed) head/hungarian/mythes/pkg-descr (props changed) head/irc/anope/pkg-descr (props changed) head/irc/bip/pkg-descr (props changed) head/irc/bitchx/pkg-descr (props changed) head/irc/bitlbee/pkg-descr (props changed) head/irc/bnc/pkg-descr (props changed) head/irc/bobot++/pkg-descr (props changed) head/irc/bopm/pkg-descr (props changed) head/irc/cgiirc/pkg-descr (props changed) head/irc/charybdis/pkg-descr (props changed) head/irc/ctrlproxy/pkg-descr (props changed) head/irc/cwirc/pkg-descr (props changed) head/irc/dancer/pkg-descr (props changed) head/irc/darkbot/pkg-descr (props changed) head/irc/dircproxy/pkg-descr (props changed) head/irc/eggdrop-devel/pkg-descr (props changed) head/irc/eggdrop/pkg-descr (props changed) head/irc/epic4/pkg-descr (props changed) head/irc/epic5/pkg-descr (props changed) head/irc/evangeline/pkg-descr (props changed) head/irc/ezbounce/pkg-descr (props changed) head/irc/fisg/pkg-descr (props changed) head/irc/gruftistats/pkg-descr (props changed) head/irc/gseen.mod/pkg-descr (props changed) head/irc/icbirc/pkg-descr (props changed) head/irc/infobot/pkg-descr (props changed) head/irc/inspircd/pkg-descr (props changed) head/irc/insub/pkg-descr (props changed) head/irc/irc/pkg-descr (props changed) head/irc/irc2dc/pkg-descr (props changed) head/irc/ircII/pkg-descr (props changed) head/irc/ircd-hybrid/pkg-descr (props changed) head/irc/ircd-ratbox-devel/pkg-descr (props changed) head/irc/ircd-ratbox/pkg-descr (props changed) head/irc/ircd-ru/pkg-descr (props changed) head/irc/irchat-pj-emacs21/pkg-descr (props changed) head/irc/ircproxy/pkg-descr (props changed) head/irc/ircservices/pkg-descr (props changed) head/irc/iroffer-dinoex/pkg-descr (props changed) head/irc/iroffer-lamm/pkg-descr (props changed) head/irc/iroffer/pkg-descr (props changed) head/irc/irssi-dcc_send_limiter/pkg-descr (props changed) head/irc/irssi-devel/pkg-descr (props changed) head/irc/irssi-fish/pkg-descr (props changed) head/irc/irssi-otr/pkg-descr (props changed) head/irc/irssi-scripts/pkg-descr (props changed) head/irc/irssi-xmpp/pkg-descr (props changed) head/irc/irssi/pkg-descr (props changed) head/irc/irssistats/pkg-descr (props changed) head/irc/keitairc2/pkg-descr (props changed) head/irc/konversation-kde4/pkg-descr (props changed) head/irc/kvirc/pkg-descr (props changed) head/irc/libircclient/pkg-descr (props changed) head/irc/lostirc/pkg-descr (props changed) head/irc/miau/pkg-descr (props changed) head/irc/minbif/pkg-descr (props changed) head/irc/muh/pkg-descr (props changed) head/irc/nefarious/pkg-descr (props changed) head/irc/nethirc/pkg-descr (props changed) head/irc/netwalker-ircc/pkg-descr (props changed) head/irc/ngircd/pkg-descr (props changed) head/irc/ninja/pkg-descr (props changed) head/irc/onis/pkg-descr (props changed) head/irc/p5-Bot-BasicBot/pkg-descr (props changed) head/irc/p5-IRC-Bot-Hangman/pkg-descr (props changed) head/irc/p5-IRC-Utils/pkg-descr (props changed) head/irc/p5-POE-Component-IRC-Object/pkg-descr (props changed) head/irc/p5-POE-Component-IRC-Plugin-Blowfish/pkg-descr (props changed) head/irc/p5-POE-Component-IRC-Plugin-Bollocks/pkg-descr (props changed) head/irc/p5-POE-Component-IRC-Plugin-CoreList/pkg-descr (props changed) head/irc/p5-POE-Component-IRC-Plugin-Karma/pkg-descr (props changed) head/irc/p5-POE-Component-IRC-Plugin-POE-Knee/pkg-descr (props changed) head/irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-descr (props changed) head/irc/p5-POE-Component-IRC-Plugin-QueryDNSBL/pkg-descr (props changed) head/irc/p5-POE-Component-IRC-Plugin-RSS-Headlines/pkg-descr (props changed) head/irc/p5-POE-Component-IRC/pkg-descr (props changed) head/irc/p5-POE-Component-Server-IRC/pkg-descr (props changed) head/irc/p5-POE-Filter-IRCD/pkg-descr (props changed) head/irc/p5-Parse-IRC/pkg-descr (props changed) head/irc/pear-Net_SmartIRC/pkg-descr (props changed) head/irc/pircbot/pkg-descr (props changed) head/irc/pisg/pkg-descr (props changed) head/irc/psybnc/pkg-descr (props changed) head/irc/py-fishcrypt/pkg-descr (props changed) head/irc/py-gozerbot/pkg-descr (props changed) head/irc/py-irc/pkg-descr (props changed) head/irc/py-supybot-plugins/pkg-descr (props changed) head/irc/py-supybot/pkg-descr (props changed) head/irc/quirc/pkg-descr (props changed) head/irc/qwebirc/pkg-descr (props changed) head/irc/ratbox-respond/pkg-descr (props changed) head/irc/ratbox-services/pkg-descr (props changed) head/irc/rbot/pkg-descr (props changed) head/irc/riece/pkg-descr (props changed) head/irc/roxirc/pkg-descr (props changed) head/irc/ruby-irc/pkg-descr (props changed) head/irc/rubygem-cinch/pkg-descr (props changed) head/irc/rubygem-net-irc/pkg-descr (props changed) head/irc/scrollz/pkg-descr (props changed) head/irc/sic/pkg-descr (props changed) head/irc/simpleirc/pkg-descr (props changed) head/irc/sirc/pkg-descr (props changed) head/irc/slirc/pkg-descr (props changed) head/irc/smartirc4net/pkg-descr (props changed) head/irc/solid-ircd/pkg-descr (props changed) head/irc/srvx/pkg-descr (props changed) head/irc/thales/pkg-descr (props changed) head/irc/tircd/pkg-descr (props changed) head/irc/tircproxy/pkg-descr (props changed) head/irc/trickyirc/pkg-descr (props changed) head/irc/undernet-ircu/pkg-descr (props changed) head/irc/unreal/pkg-descr (props changed) head/irc/weechat/pkg-descr (props changed) head/irc/xaric/pkg-descr (props changed) head/irc/xchat-fish/pkg-descr (props changed) head/irc/xchat-mircryption/pkg-descr (props changed) head/irc/xchat-ruby/pkg-descr (props changed) head/irc/xchat/pkg-descr (props changed) head/irc/znc/pkg-descr (props changed) head/japanese/ASCIIdates98-fpw/pkg-descr (props changed) head/japanese/CGdic-fpw/pkg-descr (props changed) head/japanese/FreeWnn-lib/pkg-descr (props changed) head/japanese/FreeWnn-server/pkg-descr (props changed) head/japanese/VTPSfont/pkg-descr (props changed) head/japanese/Wnn6-lib/pkg-descr (props changed) head/japanese/Wnn6/pkg-descr (props changed) head/japanese/Wnn7-lib/pkg-descr (props changed) head/japanese/a2ps/pkg-descr (props changed) head/japanese/ack/pkg-descr (props changed) head/japanese/ajaxzip2-core/pkg-descr (props changed) head/japanese/ajaxzip2-data/pkg-descr (props changed) head/japanese/alias-fonts/pkg-descr (props changed) head/japanese/another-htmllint/pkg-descr (props changed) head/japanese/anthy/pkg-descr (props changed) head/japanese/asterisk-sounds/pkg-descr (props changed) head/japanese/aterm/pkg-descr (props changed) head/japanese/bible_names-fpw/pkg-descr (props changed) head/japanese/bookview/pkg-descr (props changed) head/japanese/bugzilla40/pkg-descr (props changed) head/japanese/bugzilla42/pkg-descr (props changed) head/japanese/bugzilla44/pkg-descr (props changed) head/japanese/calligra-l10n/pkg-descr (props changed) head/japanese/canna-lib/pkg-descr (props changed) head/japanese/canna-server/pkg-descr (props changed) head/japanese/cannadic/pkg-descr (props changed) head/japanese/cdrom2/pkg-descr (props changed) head/japanese/celrw/pkg-descr (props changed) head/japanese/chasen-base/pkg-descr (props changed) head/japanese/chasen/pkg-descr (props changed) head/japanese/cmigemo-dict/pkg-descr (props changed) head/japanese/cmigemo/pkg-descr (props changed) head/japanese/dbskkd-cdb/pkg-descr (props changed) head/japanese/ddskk/pkg-descr (props changed) head/japanese/devil-fpw/pkg-descr (props changed) head/japanese/dvi2tty/pkg-descr (props changed) head/japanese/dvipsk/pkg-descr (props changed) head/japanese/e2ps/pkg-descr (props changed) head/japanese/eb/pkg-descr (props changed) head/japanese/ebd-fpw/pkg-descr (props changed) head/japanese/eblook/pkg-descr (props changed) head/japanese/ebnetd/pkg-descr (props changed) head/japanese/ebview-gtk2/pkg-descr (props changed) head/japanese/ebview/pkg-descr (props changed) head/japanese/edict-fpw/pkg-descr (props changed) head/japanese/edict-utf-8/pkg-descr (props changed) head/japanese/edict/pkg-descr (props changed) head/japanese/edyvalue/pkg-descr (props changed) head/japanese/egg-canna/pkg-descr (props changed) head/japanese/eijiro-fpw/pkg-descr (props changed) head/japanese/elisa8x8/pkg-descr (props changed) head/japanese/elvis/pkg-descr (props changed) head/japanese/emacs-emcws/pkg-descr (props changed) head/japanese/epwutil/pkg-descr (props changed) head/japanese/esecanna-module-vje25/pkg-descr (props changed) head/japanese/esecanna-module-vje30/pkg-descr (props changed) head/japanese/esecanna-module-wnn6/pkg-descr (props changed) head/japanese/esecanna/pkg-descr (props changed) head/japanese/eterm/pkg-descr (props changed) head/japanese/exmh2/pkg-descr (props changed) head/japanese/fcitx-anthy/pkg-descr (props changed) head/japanese/flex-sdk/pkg-descr (props changed) head/japanese/flower-fpw/pkg-descr (props changed) head/japanese/foldoc-fpw/pkg-descr (props changed) head/japanese/font-ipa-uigothic/pkg-descr (props changed) head/japanese/font-ipa/pkg-descr (props changed) head/japanese/font-ipaex/pkg-descr (props changed) head/japanese/font-jisx0213/pkg-descr (props changed) head/japanese/font-kochi/pkg-descr (props changed) head/japanese/font-migmix/pkg-descr (props changed) head/japanese/font-migu/pkg-descr (props changed) head/japanese/font-mona-ipa/pkg-descr (props changed) head/japanese/font-motoya-al/pkg-descr (props changed) head/japanese/font-mplus-ipa/pkg-descr (props changed) head/japanese/font-mplus/pkg-descr (props changed) head/japanese/font-ricty/pkg-descr (props changed) head/japanese/font-sazanami/pkg-descr (props changed) head/japanese/font-shinonome/pkg-descr (props changed) head/japanese/font-std/pkg-descr (props changed) head/japanese/font-takao/pkg-descr (props changed) head/japanese/font-ume/pkg-descr (props changed) head/japanese/font-vlgothic/pkg-descr (props changed) head/japanese/freepwing/pkg-descr (props changed) head/japanese/fumeikai-fpw/pkg-descr (props changed) head/japanese/gawk/pkg-descr (props changed) head/japanese/gedy/pkg-descr (props changed) head/japanese/gqmpeg/pkg-descr (props changed) head/japanese/grep/pkg-descr (props changed) head/japanese/groff/pkg-descr (props changed) head/japanese/gskk/pkg-descr (props changed) head/japanese/gsuica/pkg-descr (props changed) head/japanese/gtkicq/pkg-descr (props changed) head/japanese/guesswork-classic/pkg-descr (props changed) head/japanese/hns/pkg-descr (props changed) head/japanese/ibus-anthy/pkg-descr (props changed) head/japanese/ibus-skk/pkg-descr (props changed) head/japanese/icanna/pkg-descr (props changed) head/japanese/im-ja/pkg-descr (props changed) head/japanese/ipadic/pkg-descr (props changed) head/japanese/ja6/pkg-descr (props changed) head/japanese/jacode.pl/pkg-descr (props changed) head/japanese/jadetex-ptex/pkg-descr (props changed) head/japanese/japana/pkg-descr (props changed) head/japanese/japaneseAFM/pkg-descr (props changed) head/japanese/jargon-fpw/pkg-descr (props changed) head/japanese/jcode.pl/pkg-descr (props changed) head/japanese/jd/pkg-descr (props changed) head/japanese/jed/pkg-descr (props changed) head/japanese/jishyo/pkg-descr (props changed) head/japanese/jls/pkg-descr (props changed) head/japanese/jmode-skk/pkg-descr (props changed) head/japanese/jmode/pkg-descr (props changed) head/japanese/jstrings/pkg-descr (props changed) head/japanese/jvim3/pkg-descr (props changed) head/japanese/jyuroku/pkg-descr (props changed) head/japanese/k10/pkg-descr (props changed) head/japanese/k12/pkg-descr (props changed) head/japanese/kakasi/pkg-descr (props changed) head/japanese/kana-no-quiz/pkg-descr (props changed) head/japanese/kanji18/pkg-descr (props changed) head/japanese/kanji26/pkg-descr (props changed) head/japanese/kanjipad/pkg-descr (props changed) head/japanese/kappa20/pkg-descr (props changed) head/japanese/kasumi/pkg-descr (props changed) head/japanese/kbanner/pkg-descr (props changed) head/japanese/kcc/pkg-descr (props changed) head/japanese/kde4-l10n/pkg-descr (props changed) head/japanese/kdrill/pkg-descr (props changed) head/japanese/kinput2/pkg-descr (props changed) head/japanese/kiten/pkg-descr (props changed) head/japanese/kon2-16dot/pkg-descr (props changed) head/japanese/kpcal/pkg-descr (props changed) head/japanese/kterm/pkg-descr (props changed) head/japanese/lambdamoo/pkg-descr (props changed) head/japanese/latex2html/pkg-descr (props changed) head/japanese/leafrogue/pkg-descr (props changed) head/japanese/less/pkg-descr (props changed) head/japanese/libjcode/pkg-descr (props changed) head/japanese/libreoffice/pkg-descr (props changed) head/japanese/libskk/pkg-descr (props changed) head/japanese/libslang/pkg-descr (props changed) head/japanese/libtomoe-gtk/pkg-descr (props changed) head/japanese/lipsf/pkg-descr (props changed) head/japanese/lookup/pkg-descr (props changed) head/japanese/lsd-fpw/pkg-descr (props changed) head/japanese/lynx-current/pkg-descr (props changed) head/japanese/lynx/pkg-descr (props changed) head/japanese/mailman/pkg-descr (props changed) head/japanese/makejvf/pkg-descr (props changed) head/japanese/man-doc/pkg-descr (props changed) head/japanese/man/pkg-descr (props changed) head/japanese/marumoji-fonts/pkg-descr (props changed) head/japanese/mecab/pkg-descr (props changed) head/japanese/mell/pkg-descr (props changed) head/japanese/mendexk-euc/pkg-descr (props changed) head/japanese/mg/pkg-descr (props changed) head/japanese/mh/pkg-descr (props changed) head/japanese/migemo-emacs21/pkg-descr (props changed) head/japanese/migemo-emacs22/pkg-descr (props changed) head/japanese/migemo-emacs23/pkg-descr (props changed) head/japanese/migemo-xemacs-devel-mule/pkg-descr (props changed) head/japanese/migemo/pkg-descr (props changed) head/japanese/mikachan-ttfonts/pkg-descr (props changed) head/japanese/mime_pls/pkg-descr (props changed) head/japanese/ming/pkg-descr (props changed) head/japanese/monafonts-ttf/pkg-descr (props changed) head/japanese/monafonts/pkg-descr (props changed) head/japanese/mozc-additions/pkg-descr (props changed) head/japanese/mozc-server/pkg-descr (props changed) head/japanese/multiskkserv/pkg-descr (props changed) head/japanese/mutt-devel/pkg-descr (props changed) head/japanese/mypaedia-fpw-package/pkg-descr (props changed) head/japanese/mypaedia-fpw/pkg-descr (props changed) head/japanese/namazu/pkg-descr (props changed) head/japanese/namazu2/pkg-descr (props changed) head/japanese/navi2ch/pkg-descr (props changed) head/japanese/ne/pkg-descr (props changed) head/japanese/nethack34/pkg-descr (props changed) head/japanese/netype/pkg-descr (props changed) head/japanese/newosaka/pkg-descr (props changed) head/japanese/ng-canna/pkg-descr (props changed) head/japanese/ng-devel/pkg-descr (props changed) head/japanese/ng/pkg-descr (props changed) head/japanese/ngraph-fonts/pkg-descr (props changed) head/japanese/nhocr/pkg-descr (props changed) head/japanese/nkf/pkg-descr (props changed) head/japanese/ochusha/pkg-descr (props changed) head/japanese/onew/pkg-descr (props changed) head/japanese/p5-Acme-Lou/pkg-descr (props changed) head/japanese/p5-Date-Japanese-Era/pkg-descr (props changed) head/japanese/p5-Date-Japanese-Holiday/pkg-descr (props changed) head/japanese/p5-DateTime-Calendar-Japanese-Era/pkg-descr (props changed) head/japanese/p5-DateTime-Format-Japanese/pkg-descr (props changed) head/japanese/p5-Encode-EUCJPMS/pkg-descr (props changed) head/japanese/p5-Encode-JP-Emoji/pkg-descr (props changed) head/japanese/p5-Encode-JP-Mobile/pkg-descr (props changed) head/japanese/p5-HTML-MobileJp/pkg-descr (props changed) head/japanese/p5-Jcode/pkg-descr (props changed) head/japanese/p5-Lingua-JA-Kana/pkg-descr (props changed) head/japanese/p5-Lingua-JA-Numbers/pkg-descr (props changed) head/japanese/p5-Lingua-JA-Regular-Unicode/pkg-descr (props changed) head/japanese/p5-Lingua-JA-Summarize-Extract/pkg-descr (props changed) head/japanese/p5-MeCab/pkg-descr (props changed) head/japanese/p5-PDFJ/pkg-descr (props changed) head/japanese/p5-Text-ChaSen/pkg-descr (props changed) head/japanese/p5-Text-Kakasi/pkg-descr (props changed) head/japanese/p5-Text-MeCab/pkg-descr (props changed) head/japanese/p5-Unicode-Japanese/pkg-descr (props changed) head/japanese/p5-WWW-2ch/pkg-descr (props changed) head/japanese/p5-WWW-MobileCarrierJP/pkg-descr (props changed) head/japanese/p5-manual/pkg-descr (props changed) head/japanese/p5-nkf/pkg-descr (props changed) head/japanese/pejv-fpw/pkg-descr (props changed) head/japanese/php5-mecab/pkg-descr (props changed) head/japanese/plain2/pkg-descr (props changed) head/japanese/platex-japanese/pkg-descr (props changed) head/japanese/platex-jsclasses/pkg-descr (props changed) head/japanese/platex-otf/pkg-descr (props changed) head/japanese/platex209/pkg-descr (props changed) head/japanese/postgresql82-man/pkg-descr (props changed) head/japanese/prime-dict/pkg-descr (props changed) head/japanese/prime-el/pkg-descr (props changed) head/japanese/prime/pkg-descr (props changed) head/japanese/prn/pkg-descr (props changed) head/japanese/ptex/pkg-descr (props changed) head/japanese/py-mecab/pkg-descr (props changed) head/japanese/py-tegaki-gtk/pkg-descr (props changed) head/japanese/py-tegaki/pkg-descr (props changed) head/japanese/py-zinnia/pkg-descr (props changed) head/japanese/qkc/pkg-descr (props changed) head/japanese/roget-fpw/pkg-descr (props changed) head/japanese/rogue_s/pkg-descr (props changed) head/japanese/ruby-eb/pkg-descr (props changed) head/japanese/ruby-mecab/pkg-descr (props changed) head/japanese/ruby-ming/pkg-descr (props changed) head/japanese/rubygem-jpmobile-ipaddresses/pkg-descr (props changed) head/japanese/rubygem-jpmobile-terminfo/pkg-descr (props changed) head/japanese/rubygem-jpmobile/pkg-descr (props changed) head/japanese/rubygem-myrurema/pkg-descr (props changed) head/japanese/ryaku-fpw/pkg-descr (props changed) head/japanese/scim-anthy/pkg-descr (props changed) head/japanese/scim-canna/pkg-descr (props changed) head/japanese/scim-honoka-plugin-romkan/pkg-descr (props changed) head/japanese/scim-honoka-plugin-wnn/pkg-descr (props changed) head/japanese/scim-honoka/pkg-descr (props changed) head/japanese/scim-prime/pkg-descr (props changed) head/japanese/scim-skk/pkg-descr (props changed) head/japanese/scim-tables/pkg-descr (props changed) head/japanese/scim-tomoe/pkg-descr (props changed) head/japanese/scim-uim/pkg-descr (props changed) head/japanese/seaside/pkg-descr (props changed) head/japanese/sed/pkg-descr (props changed) head/japanese/sj3-lib/pkg-descr (props changed) head/japanese/sj3-server/pkg-descr (props changed) head/japanese/skk-jisyo-cdb/pkg-descr (props changed) head/japanese/skk-jisyo/pkg-descr (props changed) head/japanese/skk-tools/pkg-descr (props changed) head/japanese/skk/pkg-descr (props changed) head/japanese/skkinput/pkg-descr (props changed) head/japanese/skkinput3/pkg-descr (props changed) head/japanese/skkserv/pkg-descr (props changed) head/japanese/slimeforest/pkg-descr (props changed) head/japanese/slrn/pkg-descr (props changed) head/japanese/srd-fpw-package/pkg-descr (props changed) head/japanese/srd-fpw/pkg-descr (props changed) head/japanese/suicavalue/pkg-descr (props changed) head/japanese/suikyo/pkg-descr (props changed) head/japanese/t2ps/pkg-descr (props changed) head/japanese/tcl80/pkg-descr (props changed) head/japanese/teTeX/pkg-descr (props changed) head/japanese/tegaki-recognize/pkg-descr (props changed) head/japanese/tegaki-zinnia-japanese/pkg-descr (props changed) head/japanese/tex-ptex/pkg-descr (props changed) head/japanese/texinfo/pkg-descr (props changed) head/japanese/tgif/pkg-descr (props changed) head/japanese/tiarra/pkg-descr (props changed) head/japanese/timidity++-slang/pkg-descr (props changed) head/japanese/timidity++-tcltk/pkg-descr (props changed) head/japanese/tk80/pkg-descr (props changed) head/japanese/tkhonyaku/pkg-descr (props changed) head/japanese/today/pkg-descr (props changed) head/japanese/tomoe/pkg-descr (props changed) head/japanese/trac/pkg-descr (props changed) head/japanese/uim-anthy/pkg-descr (props changed) head/japanese/uim-tomoe-gtk/pkg-descr (props changed) head/japanese/vera-fpw/pkg-descr (props changed) head/japanese/vftool/pkg-descr (props changed) head/japanese/w3m-img/pkg-descr (props changed) head/japanese/w3m/pkg-descr (props changed) head/japanese/waeijiro-fpw/pkg-descr (props changed) head/japanese/wdic-fpw/pkg-descr (props changed) head/japanese/web1913-fpw/pkg-descr (props changed) head/japanese/wnn7egg/pkg-descr (props changed) head/japanese/wordnet-fpw/pkg-descr (props changed) head/japanese/wordpress/pkg-descr (props changed) head/japanese/wwasw-fpw/pkg-descr (props changed) head/japanese/xdtp/pkg-descr (props changed) head/japanese/xdvik/pkg-descr (props changed) head/japanese/xemacs21-canna/pkg-descr (props changed) head/japanese/xgate/pkg-descr (props changed) head/japanese/xjtext/pkg-descr (props changed) head/japanese/xpdf/pkg-descr (props changed) head/japanese/xshodou/pkg-descr (props changed) head/japanese/xtr/pkg-descr (props changed) head/japanese/xv/pkg-descr (props changed) head/japanese/xyaku/pkg-descr (props changed) head/japanese/yasou-fpw/pkg-descr (props changed) head/japanese/yc.el/pkg-descr (props changed) head/japanese/zangband/pkg-descr (props changed) head/japanese/zinnia-tomoe/pkg-descr (props changed) head/japanese/zinnia/pkg-descr (props changed) head/japanese/zipcodes/pkg-descr (props changed) head/java/avis/pkg-descr (props changed) head/java/berkeley-db/pkg-descr (props changed) head/java/bluej/pkg-descr (props changed) head/java/bouncycastle/pkg-descr (props changed) head/java/cacao/pkg-descr (props changed) head/java/castor/pkg-descr (props changed) head/java/classpath/pkg-descr (props changed) head/java/commonclipse/pkg-descr (props changed) head/java/cos/pkg-descr (props changed) head/java/cryptix-jce/pkg-descr (props changed) head/java/dbvis/pkg-descr (props changed) head/java/drexelsnmp/pkg-descr (props changed) head/java/eclipse-EPIC/pkg-descr (props changed) head/java/eclipse-RDT/pkg-descr (props changed) head/java/eclipse-aptana-radrails/pkg-descr (props changed) head/java/eclipse-aptana/pkg-descr (props changed) head/java/eclipse-aptana2/pkg-descr (props changed) head/java/eclipse-cdt/pkg-descr (props changed) head/java/eclipse-checkstyle/pkg-descr (props changed) head/java/eclipse-datatools/pkg-descr (props changed) head/java/eclipse-devel/pkg-descr (props changed) head/java/eclipse-drjava/pkg-descr (props changed) head/java/eclipse-ecj/pkg-descr (props changed) head/java/eclipse-emf/pkg-descr (props changed) head/java/eclipse-examples/pkg-descr (props changed) head/java/eclipse-findbugs/pkg-descr (props changed) head/java/eclipse-gef-examples/pkg-descr (props changed) head/java/eclipse-gef/pkg-descr (props changed) head/java/eclipse-hibernatetools/pkg-descr (props changed) head/java/eclipse-jad/pkg-descr (props changed) head/java/eclipse-langpack/pkg-descr (props changed) head/java/eclipse-log4e/pkg-descr (props changed) head/java/eclipse-lomboz/pkg-descr (props changed) head/java/eclipse-ocl/pkg-descr (props changed) head/java/eclipse-pmd/pkg-descr (props changed) head/java/eclipse-propedit/pkg-descr (props changed) head/java/eclipse-quantum/pkg-descr (props changed) head/java/eclipse-shelled/pkg-descr (props changed) head/java/eclipse-sqlexplorer/pkg-descr (props changed) head/java/eclipse-sysdeo-tomcat/pkg-descr (props changed) head/java/eclipse-uml/pkg-descr (props changed) head/java/eclipse-vep-examples/pkg-descr (props changed) head/java/eclipse-vep/pkg-descr (props changed) head/java/eclipse-viplugin/pkg-descr (props changed) head/java/eclipse-webtools/pkg-descr (props changed) head/java/eclipse-windowbuilder/pkg-descr (props changed) head/java/eclipse/pkg-descr (props changed) head/java/icedtea-web/pkg-descr (props changed) head/java/infobus/pkg-descr (props changed) head/java/j2sdkee13/pkg-descr (props changed) head/java/jad/pkg-descr (props changed) head/java/jaf/pkg-descr (props changed) head/java/jai-imageio/pkg-descr (props changed) head/java/jai/pkg-descr (props changed) head/java/jakarta-bcel/pkg-descr (props changed) head/java/jakarta-commons-beanutils/pkg-descr (props changed) head/java/jakarta-commons-cli/pkg-descr (props changed) head/java/jakarta-commons-codec/pkg-descr (props changed) head/java/jakarta-commons-collections/pkg-descr (props changed) head/java/jakarta-commons-dbcp/pkg-descr (props changed) head/java/jakarta-commons-discovery/pkg-descr (props changed) head/java/jakarta-commons-httpclient/pkg-descr (props changed) head/java/jakarta-commons-lang/pkg-descr (props changed) head/java/jakarta-commons-logging/pkg-descr (props changed) head/java/jakarta-commons-pool/pkg-descr (props changed) head/java/jakarta-commons-primitives/pkg-descr (props changed) head/java/jakarta-oro/pkg-descr (props changed) head/java/jakarta-regexp/pkg-descr (props changed) head/java/jakarta-struts/pkg-descr (props changed) head/java/jamvm/pkg-descr (props changed) head/java/jasmin/pkg-descr (props changed) head/java/java-checkstyle/pkg-descr (props changed) head/java/java-cup/pkg-descr (props changed) head/java/java-getopt/pkg-descr (props changed) head/java/java-subversion/pkg-descr (props changed) head/java/java-zoneinfo/pkg-descr (props changed) head/java/java3d/pkg-descr (props changed) head/java/javahelp/pkg-descr (props changed) head/java/javamail/pkg-descr (props changed) head/java/javavmwrapper/pkg-descr (props changed) head/java/jaxen/pkg-descr (props changed) head/java/jboss5/pkg-descr (props changed) head/java/jboss7/pkg-descr (props changed) head/java/jc/pkg-descr (props changed) head/java/jcalendar/pkg-descr (props changed) head/java/jcckit/pkg-descr (props changed) head/java/jcommon/pkg-descr (props changed) head/java/jdbcpool/pkg-descr (props changed) head/java/jdk16-doc/pkg-descr (props changed) head/java/jdom/pkg-descr (props changed) head/java/jflex/pkg-descr (props changed) head/java/jfreechart/pkg-descr (props changed) head/java/jgraph/pkg-descr (props changed) head/java/jgrapht/pkg-descr (props changed) head/java/jgraphx/pkg-descr (props changed) head/java/jikes/pkg-descr (props changed) head/java/jlex/pkg-descr (props changed) head/java/jlint/pkg-descr (props changed) head/java/jmf/pkg-descr (props changed) head/java/jode/pkg-descr (props changed) head/java/jomp/pkg-descr (props changed) head/java/jrosetta/pkg-descr (props changed) head/java/jta/pkg-descr (props changed) head/java/jtiger/pkg-descr (props changed) head/java/jump/pkg-descr (props changed) head/java/junit/pkg-descr (props changed) head/java/langspec/pkg-descr (props changed) head/java/linux-sun-jdk16/pkg-descr (props changed) head/java/linux-sun-jdk17/pkg-descr (props changed) head/java/linux-sun-jre16/pkg-descr (props changed) head/java/linux-sun-jre17/pkg-descr (props changed) head/java/mmake/pkg-descr (props changed) head/java/mx4j/pkg-descr (props changed) head/java/netbeans-devel/pkg-descr (props changed) head/java/netbeans/pkg-descr (props changed) head/java/netcomponents/pkg-descr (props changed) head/java/netrexx/pkg-descr (props changed) head/java/netty/pkg-descr (props changed) head/java/openjdk6/pkg-descr (props changed) head/java/openjdk7/pkg-descr (props changed) head/java/phpeclipse/pkg-descr (props changed) head/java/poseidon/pkg-descr (props changed) head/java/proguard/pkg-descr (props changed) head/java/rubygem-rjb/pkg-descr (props changed) head/java/sablevm-classpath/pkg-descr (props changed) head/java/sablevm/pkg-descr (props changed) head/java/servingxml/pkg-descr (props changed) head/java/springframework/pkg-descr (props changed) head/java/springframework31/pkg-descr (props changed) head/java/sqlitejdbc/pkg-descr (props changed) head/java/trove4j/pkg-descr (props changed) head/java/veditor/pkg-descr (props changed) head/java/visualvm/pkg-descr (props changed) head/java/xdoclet/pkg-descr (props changed) head/korean/FreeWnn-lib/pkg-descr (props changed) head/korean/FreeWnn-server/pkg-descr (props changed) head/korean/aleefonts-ttf/pkg-descr (props changed) head/korean/ami/pkg-descr (props changed) head/korean/baekmukfonts-bdf/pkg-descr (props changed) head/korean/baekmukfonts-ttf/pkg-descr (props changed) head/korean/engdic/pkg-descr (props changed) head/korean/eterm/pkg-descr (props changed) head/korean/fcitx-hangul/pkg-descr (props changed) head/korean/gtkcomm/pkg-descr (props changed) head/korean/h2ps/pkg-descr (props changed) head/korean/hanyangfonts/pkg-descr (props changed) head/korean/hcode/pkg-descr (props changed) head/korean/hmconv/pkg-descr (props changed) head/korean/hpscat/pkg-descr (props changed) head/korean/hunspell/pkg-descr (props changed) head/korean/ibus-hangul/pkg-descr (props changed) head/korean/imhangul/pkg-descr (props changed) head/korean/kaistfonts/pkg-descr (props changed) head/korean/kde4-l10n/pkg-descr (props changed) head/korean/ko.TeX-fonts-base/pkg-descr (props changed) head/korean/ko.TeX-fonts-extra/pkg-descr (props changed) head/korean/ko.TeX/pkg-descr (props changed) head/korean/libhangul/pkg-descr (props changed) head/korean/libreoffice/pkg-descr (props changed) head/korean/man-doc/pkg-descr (props changed) head/korean/munhwafonts-cid/pkg-descr (props changed) head/korean/nabi/pkg-descr (props changed) head/korean/nanumcoding-ttf/pkg-descr (props changed) head/korean/nanumfonts-otf/pkg-descr (props changed) head/korean/nhpf/pkg-descr (props changed) head/korean/scim-hangul/pkg-descr (props changed) head/korean/scim-tables/pkg-descr (props changed) head/korean/unfonts-core/pkg-descr (props changed) head/korean/uniksc/pkg-descr (props changed) head/korean/xpdf/pkg-descr (props changed) head/lang/Gofer/pkg-descr (props changed) head/lang/STk/pkg-descr (props changed) head/lang/Sather/pkg-descr (props changed) head/lang/abcl/pkg-descr (props changed) head/lang/afnix/pkg-descr (props changed) head/lang/algol68g/pkg-descr (props changed) head/lang/alisp/pkg-descr (props changed) head/lang/arena/pkg-descr (props changed) head/lang/asn1c/pkg-descr (props changed) head/lang/atlast/pkg-descr (props changed) head/lang/ats/pkg-descr (props changed) head/lang/awka/pkg-descr (props changed) head/lang/bas2tap/pkg-descr (props changed) head/lang/basic256/pkg-descr (props changed) head/lang/bsh/pkg-descr (props changed) head/lang/bwbasic/pkg-descr (props changed) head/lang/caml-light/pkg-descr (props changed) head/lang/ccl/pkg-descr (props changed) head/lang/cdent/pkg-descr (props changed) head/lang/cduce/pkg-descr (props changed) head/lang/cfortran/pkg-descr (props changed) head/lang/chicken/pkg-descr (props changed) head/lang/cint/pkg-descr (props changed) head/lang/clang-devel/pkg-descr (props changed) head/lang/clang31/pkg-descr (props changed) head/lang/clang32/pkg-descr (props changed) head/lang/clang33/pkg-descr (props changed) head/lang/clang34/pkg-descr (props changed) head/lang/clay/pkg-descr (props changed) head/lang/clisp/pkg-descr (props changed) head/lang/clojure-contrib/pkg-descr (props changed) head/lang/clojure-mode.el/pkg-descr (props changed) head/lang/clojure/pkg-descr (props changed) head/lang/cmucl-extra/pkg-descr (props changed) head/lang/cmucl/pkg-descr (props changed) head/lang/cocor/pkg-descr (props changed) head/lang/csharp-mode.el/pkg-descr (props changed) head/lang/cython/pkg-descr (props changed) head/lang/dice/pkg-descr (props changed) head/lang/dlv/pkg-descr (props changed) head/lang/dmd/pkg-descr (props changed) head/lang/dmd2/pkg-descr (props changed) head/lang/dragonegg-devel46/pkg-descr (props changed) head/lang/dragonegg46-33/pkg-descr (props changed) head/lang/ecl/pkg-descr (props changed) head/lang/elan/pkg-descr (props changed) head/lang/elk/pkg-descr (props changed) head/lang/emacs-lisp-intro/pkg-descr (props changed) head/lang/embryo/pkg-descr (props changed) head/lang/erlang-runtime15/pkg-descr (props changed) head/lang/erlang-runtime16/pkg-descr (props changed) head/lang/erlang/pkg-descr (props changed) head/lang/execline/pkg-descr (props changed) head/lang/expect-devel/pkg-descr (props changed) head/lang/expect/pkg-descr (props changed) head/lang/ezm3/pkg-descr (props changed) head/lang/f2c/pkg-descr (props changed) head/lang/f77/pkg-descr (props changed) head/lang/fasm/pkg-descr (props changed) head/lang/fbbi/pkg-descr (props changed) head/lang/ferite/pkg-descr (props changed) head/lang/ficl/pkg-descr (props changed) head/lang/fpc-base/pkg-descr (props changed) head/lang/fpc-docs/pkg-descr (props changed) head/lang/fpc-units/pkg-descr (props changed) head/lang/fpc/pkg-descr (props changed) head/lang/fsharp/pkg-descr (props changed) head/lang/g95/pkg-descr (props changed) head/lang/gambit-c/pkg-descr (props changed) head/lang/gauche/pkg-descr (props changed) head/lang/gawk/pkg-descr (props changed) head/lang/gcc-aux/pkg-descr (props changed) head/lang/gcc-ecj45/pkg-descr (props changed) head/lang/gcc/pkg-descr (props changed) head/lang/gcc34/pkg-descr (props changed) head/lang/gcc44/pkg-descr (props changed) head/lang/gcc46/pkg-descr (props changed) head/lang/gcc47/pkg-descr (props changed) head/lang/gcc48/pkg-descr (props changed) head/lang/gcc49/pkg-descr (props changed) head/lang/gcl/pkg-descr (props changed) head/lang/gforth/pkg-descr (props changed) head/lang/ghc/pkg-descr (props changed) head/lang/gjs/pkg-descr (props changed) head/lang/gnat-aux/pkg-descr (props changed) head/lang/gnat/pkg-descr (props changed) head/lang/gnatdroid-armv5/pkg-descr (props changed) head/lang/gnatdroid-armv7/pkg-descr (props changed) head/lang/gnatdroid-binutils/pkg-descr (props changed) head/lang/gnatdroid-sysroot/pkg-descr (props changed) head/lang/gnustep-base/pkg-descr (props changed) head/lang/gnustep-guile/pkg-descr (props changed) head/lang/go/pkg-descr (props changed) head/lang/gprolog/pkg-descr (props changed) head/lang/groovy/pkg-descr (props changed) head/lang/gscheme/pkg-descr (props changed) head/lang/guile/pkg-descr (props changed) head/lang/harbour/pkg-descr (props changed) head/lang/haskell-mode.el/pkg-descr (props changed) head/lang/hiphop-php/pkg-descr (props changed) head/lang/hla/pkg-descr (props changed) head/lang/hope/pkg-descr (props changed) head/lang/hs-brainfuck/pkg-descr (props changed) head/lang/hs-epic/pkg-descr (props changed) head/lang/hs-unlambda/pkg-descr (props changed) head/lang/huc/pkg-descr (props changed) head/lang/hugs/pkg-descr (props changed) head/lang/icc/pkg-descr (props changed) head/lang/ici/pkg-descr (props changed) head/lang/icon/pkg-descr (props changed) head/lang/ifc/pkg-descr (props changed) head/lang/ikarus/pkg-descr (props changed) head/lang/intel2gas/pkg-descr (props changed) head/lang/intercal/pkg-descr (props changed) head/lang/itcl/pkg-descr (props changed) head/lang/jakarta-commons-jelly/pkg-descr (props changed) head/lang/jython/pkg-descr (props changed) head/lang/kawa/pkg-descr (props changed) head/lang/klone/pkg-descr (props changed) head/lang/kroc/pkg-descr (props changed) head/lang/kturtle/pkg-descr (props changed) head/lang/lafontaine/pkg-descr (props changed) head/lang/libhx/pkg-descr (props changed) head/lang/libjit/pkg-descr (props changed) head/lang/libobjc2/pkg-descr (props changed) head/lang/libstdc++_stldoc_3.4.0/pkg-descr (props changed) head/lang/libstdc++_stldoc_4.2.2/pkg-descr (props changed) head/lang/linux-f10-libg2c/pkg-descr (props changed) head/lang/linux-j/pkg-descr (props changed) head/lang/logo/pkg-descr (props changed) head/lang/lua-mode.el/pkg-descr (props changed) head/lang/lua/pkg-descr (props changed) head/lang/luajit/pkg-descr (props changed) head/lang/lush/pkg-descr (props changed) head/lang/malbolge/pkg-descr (props changed) head/lang/maude/pkg-descr (props changed) head/lang/mawk/pkg-descr (props changed) head/lang/mdk/pkg-descr (props changed) head/lang/metaocaml/pkg-descr (props changed) head/lang/mit-scheme/pkg-descr (props changed) head/lang/mixal/pkg-descr (props changed) head/lang/ml-pnet/pkg-descr (props changed) head/lang/mlton/pkg-descr (props changed) head/lang/mmix/pkg-descr (props changed) head/lang/mono-basic/pkg-descr (props changed) head/lang/mono/pkg-descr (props changed) head/lang/moscow_ml/pkg-descr (props changed) head/lang/mosh/pkg-descr (props changed) head/lang/mpd/pkg-descr (props changed) head/lang/mtasc/pkg-descr (props changed) head/lang/munger/pkg-descr (props changed) head/lang/nawk/pkg-descr (props changed) head/lang/nbc/pkg-descr (props changed) head/lang/nbfc/pkg-descr (props changed) head/lang/neko/pkg-descr (props changed) head/lang/nesasm/pkg-descr (props changed) head/lang/newlisp-devel/pkg-descr (props changed) head/lang/newlisp/pkg-descr (props changed) head/lang/nhc98/pkg-descr (props changed) head/lang/nickle/pkg-descr (props changed) head/lang/nml/pkg-descr (props changed) head/lang/nqc/pkg-descr (props changed) head/lang/nwcc/pkg-descr (props changed) head/lang/ocaml-autoconf/pkg-descr (props changed) head/lang/ocaml-camlidl/pkg-descr (props changed) head/lang/ocaml-doc/pkg-descr (props changed) head/lang/ocaml-examples/pkg-descr (props changed) head/lang/ocaml-mode.el/pkg-descr (props changed) head/lang/ocaml/pkg-descr (props changed) head/lang/ocs/pkg-descr (props changed) head/lang/ofc/pkg-descr (props changed) head/lang/ohugs/pkg-descr (props changed) head/lang/onyx/pkg-descr (props changed) head/lang/oo2c/pkg-descr (props changed) head/lang/oorexx/pkg-descr (props changed) head/lang/opa/pkg-descr (props changed) head/lang/open-cobol/pkg-descr (props changed) head/lang/opendylan/pkg-descr (props changed) head/lang/otcl/pkg-descr (props changed) head/lang/p5-Data-JavaScript/pkg-descr (props changed) head/lang/p5-Error/pkg-descr (props changed) head/lang/p5-Expect/pkg-descr (props changed) head/lang/p5-ExtUtils-F77/pkg-descr (props changed) head/lang/p5-Interpolation/pkg-descr (props changed) head/lang/p5-JSAN/pkg-descr (props changed) head/lang/p5-JavaScript-SpiderMonkey/pkg-descr (props changed) head/lang/p5-JavaScript-Squish/pkg-descr (props changed) head/lang/p5-JavaScript-Value-Escape/pkg-descr (props changed) head/lang/p5-List-MoreUtils/pkg-descr (props changed) head/lang/p5-Marpa-PP/pkg-descr (props changed) head/lang/p5-Marpa-XS/pkg-descr (props changed) head/lang/p5-Marpa/pkg-descr (props changed) head/lang/p5-Modern-Perl/pkg-descr (props changed) head/lang/p5-Parse-Perl/pkg-descr (props changed) head/lang/p5-Perl6-Subs/pkg-descr (props changed) head/lang/p5-Pugs-Compiler-Rule/pkg-descr (props changed) head/lang/p5-Quantum-Superpositions/pkg-descr (props changed) head/lang/p5-Scalar-List-Utils/pkg-descr (props changed) head/lang/p5-Switch/pkg-descr (props changed) head/lang/p5-Tcl/pkg-descr (props changed) head/lang/p5-Test-XPath/pkg-descr (props changed) head/lang/p5-Try-Tiny/pkg-descr (props changed) head/lang/p5-ePerl/pkg-descr (props changed) head/lang/p5-signatures/pkg-descr (props changed) head/lang/p5-v6/pkg-descr (props changed) head/lang/parrot/pkg-descr (props changed) head/lang/pbasic/pkg-descr (props changed) head/lang/pcc/pkg-descr (props changed) head/lang/pecl-perl/pkg-descr (props changed) head/lang/perl5.12/pkg-descr (props changed) head/lang/perl5.14/pkg-descr (props changed) head/lang/perl5.16/pkg-descr (props changed) head/lang/perl5.18/pkg-descr (props changed) head/lang/petite-chez/pkg-descr (props changed) head/lang/pfe/pkg-descr (props changed) head/lang/phantomjs/pkg-descr (props changed) head/lang/pharo/pkg-descr (props changed) head/lang/phc/pkg-descr (props changed) head/lang/php-mode.el/pkg-descr (props changed) head/lang/php5-extensions/pkg-descr (props changed) head/lang/php5/pkg-descr (props changed) head/lang/php52-extensions/pkg-descr (props changed) head/lang/php52/pkg-descr (props changed) head/lang/php53-extensions/pkg-descr (props changed) head/lang/php53/pkg-descr (props changed) head/lang/php55-extensions/pkg-descr (props changed) head/lang/php55/pkg-descr (props changed) head/lang/php_doc/pkg-descr (props changed) head/lang/picoc/pkg-descr (props changed) head/lang/pike76/pkg-descr (props changed) head/lang/pike78/pkg-descr (props changed) head/lang/pnet-base/pkg-descr (props changed) head/lang/pnet/pkg-descr (props changed) head/lang/pnetlib/pkg-descr (props changed) head/lang/polyml/pkg-descr (props changed) head/lang/ptoc/pkg-descr (props changed) head/lang/pure/pkg-descr (props changed) head/lang/py-mx-base/pkg-descr (props changed) head/lang/py-prolog/pkg-descr (props changed) head/lang/pypy-devel/pkg-descr (props changed) head/lang/pypy/pkg-descr (props changed) head/lang/pypy3-devel/pkg-descr (props changed) head/lang/python-doc-html/pkg-descr (props changed) head/lang/python-mode.el/pkg-descr (props changed) head/lang/python27/pkg-descr (props changed) head/lang/python31/pkg-descr (props changed) head/lang/python32/pkg-descr (props changed) head/lang/python33/pkg-descr (props changed) head/lang/qore/pkg-descr (props changed) head/lang/qscheme/pkg-descr (props changed) head/lang/racket-textual/pkg-descr (props changed) head/lang/racket/pkg-descr (props changed) head/lang/rakudo/pkg-descr (props changed) head/lang/ratfor/pkg-descr (props changed) head/lang/rexx-regina/pkg-descr (props changed) head/lang/rexx-regutil/pkg-descr (props changed) head/lang/rexx-wrapper/pkg-descr (props changed) head/lang/rhino/pkg-descr (props changed) head/lang/rscheme/pkg-descr (props changed) head/lang/rubinius/pkg-descr (props changed) head/lang/ruby-programmingruby/pkg-descr (props changed) head/lang/runawk/pkg-descr (props changed) head/lang/rust/pkg-descr (props changed) head/lang/s9fes/pkg-descr (props changed) head/lang/sather-specification/pkg-descr (props changed) head/lang/sather-tutorial/pkg-descr (props changed) head/lang/sbcl/pkg-descr (props changed) head/lang/scala-docs/pkg-descr (props changed) head/lang/scala/pkg-descr (props changed) head/lang/scheme48/pkg-descr (props changed) head/lang/schemetoc/pkg-descr (props changed) head/lang/scm/pkg-descr (props changed) head/lang/scsh/pkg-descr (props changed) head/lang/sdcc/pkg-descr (props changed) head/lang/see-devel/pkg-descr (props changed) head/lang/see/pkg-descr (props changed) head/lang/seed7/pkg-descr (props changed) head/lang/siod/pkg-descr (props changed) head/lang/sisc/pkg-descr (props changed) head/lang/sketchy/pkg-descr (props changed) head/lang/slib-guile/pkg-descr (props changed) head/lang/slib/pkg-descr (props changed) head/lang/slisp/pkg-descr (props changed) head/lang/smalltalk/pkg-descr (props changed) head/lang/sml-mode.el/pkg-descr (props changed) head/lang/sml-nj-devel/pkg-descr (props changed) head/lang/sml-nj/pkg-descr (props changed) head/lang/snobol4/pkg-descr (props changed) head/lang/spidermonkey17/pkg-descr (props changed) head/lang/spl/pkg-descr (props changed) head/lang/squeak/pkg-descr (props changed) head/lang/squirrel/pkg-descr (props changed) head/lang/sr/pkg-descr (props changed) head/lang/stalin/pkg-descr (props changed) head/lang/starlogo/pkg-descr (props changed) head/lang/stklos/pkg-descr (props changed) head/lang/stldoc/pkg-descr (props changed) head/lang/swi-pl/pkg-descr (props changed) head/lang/sxm/pkg-descr (props changed) head/lang/t3x/pkg-descr (props changed) head/lang/tcc/pkg-descr (props changed) head/lang/tcl-manual/pkg-descr (props changed) head/lang/tcl-wrapper/pkg-descr (props changed) head/lang/tcl84/pkg-descr (props changed) head/lang/tcl85/pkg-descr (props changed) head/lang/tcl86/pkg-descr (props changed) head/lang/tclX/pkg-descr (props changed) head/lang/tcltutor/pkg-descr (props changed) head/lang/tinypy/pkg-descr (props changed) head/lang/tolua++/pkg-descr (props changed) head/lang/tolua/pkg-descr (props changed) head/lang/treecc/pkg-descr (props changed) head/lang/tuareg-mode.el/pkg-descr (props changed) head/lang/twelf/pkg-descr (props changed) head/lang/ucc/pkg-descr (props changed) head/lang/urweb/pkg-descr (props changed) head/lang/v8-devel/pkg-descr (props changed) head/lang/v8/pkg-descr (props changed) head/lang/vala-vapigen/pkg-descr (props changed) head/lang/vala/pkg-descr (props changed) head/lang/visualworks/pkg-descr (props changed) head/lang/whitespace/pkg-descr (props changed) head/lang/xds-c/pkg-descr (props changed) head/lang/xds/pkg-descr (props changed) head/lang/xotcl/pkg-descr (props changed) head/lang/yabasic/pkg-descr (props changed) head/lang/yorick/pkg-descr (props changed) head/lang/ypsilon/pkg-descr (props changed) head/mail/abook/pkg-descr (props changed) head/mail/adcomplain/pkg-descr (props changed) head/mail/addresses-goodies/pkg-descr (props changed) head/mail/addresses/pkg-descr (props changed) head/mail/akpop3d/pkg-descr (props changed) head/mail/alpine/pkg-descr (props changed) head/mail/altermime/pkg-descr (props changed) head/mail/althea/pkg-descr (props changed) head/mail/amavis-logwatch/pkg-descr (props changed) head/mail/anomy-sanitizer/pkg-descr (props changed) head/mail/antivirus-milter/pkg-descr (props changed) head/mail/anubis/pkg-descr (props changed) head/mail/archivemail/pkg-descr (props changed) head/mail/archiveopteryx/pkg-descr (props changed) head/mail/archivesmtp/pkg-descr (props changed) head/mail/archmbox/pkg-descr (props changed) head/mail/ask/pkg-descr (props changed) head/mail/asmail/pkg-descr (props changed) head/mail/assp/pkg-descr (props changed) head/mail/atmail/pkg-descr (props changed) head/mail/automx/pkg-descr (props changed) head/mail/autorespond/pkg-descr (props changed) head/mail/autosig/pkg-descr (props changed) head/mail/avenger/pkg-descr (props changed) head/mail/balsa/pkg-descr (props changed) head/mail/batv-milter/pkg-descr (props changed) head/mail/bayespam/pkg-descr (props changed) head/mail/bbmail/pkg-descr (props changed) head/mail/biabam/pkg-descr (props changed) head/mail/biffer/pkg-descr (props changed) head/mail/bmf/pkg-descr (props changed) head/mail/bogofilter/pkg-descr (props changed) head/mail/bsfilter/pkg-descr (props changed) head/mail/bsmtp/pkg-descr (props changed) head/mail/bulk_mailer/pkg-descr (props changed) head/mail/c-sig/pkg-descr (props changed) head/mail/cclient/pkg-descr (props changed) head/mail/chk4mail/pkg-descr (props changed) head/mail/clamfilter/pkg-descr (props changed) head/mail/claws-mail-address_keeper/pkg-descr (props changed) head/mail/claws-mail-archiver/pkg-descr (props changed) head/mail/claws-mail-att_remover/pkg-descr (props changed) head/mail/claws-mail-attach_warner/pkg-descr (props changed) head/mail/claws-mail-bogofilter/pkg-descr (props changed) head/mail/claws-mail-bsfilter/pkg-descr (props changed) head/mail/claws-mail-clamd/pkg-descr (props changed) head/mail/claws-mail-fancy/pkg-descr (props changed) head/mail/claws-mail-fetchinfo/pkg-descr (props changed) head/mail/claws-mail-gdata/pkg-descr (props changed) head/mail/claws-mail-mailmbox/pkg-descr (props changed) head/mail/claws-mail-newmail/pkg-descr (props changed) head/mail/claws-mail-notification/pkg-descr (props changed) head/mail/claws-mail-pdf_viewer/pkg-descr (props changed) head/mail/claws-mail-perl/pkg-descr (props changed) head/mail/claws-mail-pgp/pkg-descr (props changed) head/mail/claws-mail-python/pkg-descr (props changed) head/mail/claws-mail-rssyl/pkg-descr (props changed) head/mail/claws-mail-spamassassin/pkg-descr (props changed) head/mail/claws-mail-spamreport/pkg-descr (props changed) head/mail/claws-mail-tnef/pkg-descr (props changed) head/mail/claws-mail-vcalendar/pkg-descr (props changed) head/mail/claws-mail/pkg-descr (props changed) head/mail/cone/pkg-descr (props changed) head/mail/contact-lookup-applet/pkg-descr (props changed) head/mail/coolmail/pkg-descr (props changed) head/mail/courier-imap/pkg-descr (props changed) head/mail/courier-pythonfilter/pkg-descr (props changed) head/mail/courier/pkg-descr (props changed) head/mail/couriergraph/pkg-descr (props changed) head/mail/crm114/pkg-descr (props changed) head/mail/cucipop/pkg-descr (props changed) head/mail/cvsmail/pkg-descr (props changed) head/mail/cyrus-imapd2/pkg-descr (props changed) head/mail/cyrus-imapd22/pkg-descr (props changed) head/mail/cyrus-imapd23/pkg-descr (props changed) head/mail/cyrus-imapd24/pkg-descr (props changed) head/mail/cyrus2courier/pkg-descr (props changed) head/mail/cyrus2dovecot/pkg-descr (props changed) head/mail/davmail/pkg-descr (props changed) head/mail/dbmail/pkg-descr (props changed) head/mail/dbmail22/pkg-descr (props changed) head/mail/dcc-dccd/pkg-descr (props changed) head/mail/delatt/pkg-descr (props changed) head/mail/dk-milter/pkg-descr (props changed) head/mail/dkfilter/pkg-descr (props changed) head/mail/dkimproxy/pkg-descr (props changed) head/mail/dma/pkg-descr (props changed) head/mail/dovecot-antispam/pkg-descr (props changed) head/mail/dovecot-managesieve/pkg-descr (props changed) head/mail/dovecot-sieve/pkg-descr (props changed) head/mail/dovecot/pkg-descr (props changed) head/mail/dovecot2-antispam-plugin/pkg-descr (props changed) head/mail/dovecot2-pigeonhole/pkg-descr (props changed) head/mail/dovecot2/pkg-descr (props changed) head/mail/drac/pkg-descr (props changed) head/mail/dracmail/pkg-descr (props changed) head/mail/dsbl-testers/pkg-descr (props changed) head/mail/dspam-devel/pkg-descr (props changed) head/mail/dspam/pkg-descr (props changed) head/mail/ecartis/pkg-descr (props changed) head/mail/elm+ME/pkg-descr (props changed) head/mail/elm/pkg-descr (props changed) head/mail/elmo-devel/pkg-descr (props changed) head/mail/elmo/pkg-descr (props changed) head/mail/emh/pkg-descr (props changed) head/mail/emil/pkg-descr (props changed) head/mail/enma/pkg-descr (props changed) head/mail/eps/pkg-descr (props changed) head/mail/epstools/pkg-descr (props changed) head/mail/esmtp/pkg-descr (props changed) head/mail/evolution-exchange/pkg-descr (props changed) head/mail/evolution-mapi/pkg-descr (props changed) head/mail/evolution/pkg-descr (props changed) head/mail/exact/pkg-descr (props changed) head/mail/exilog/pkg-descr (props changed) head/mail/exim-doc-html/pkg-descr (props changed) head/mail/exim-monitor/pkg-descr (props changed) head/mail/exim/pkg-descr (props changed) head/mail/exipick/pkg-descr (props changed) head/mail/exmh2/pkg-descr (props changed) head/mail/extmail/pkg-descr (props changed) head/mail/extman/pkg-descr (props changed) head/mail/ez-pine-gpg/pkg-descr (props changed) head/mail/ezmlm-idx/pkg-descr (props changed) head/mail/ezmlm-web/pkg-descr (props changed) head/mail/ezmlm/pkg-descr (props changed) head/mail/faces/pkg-descr (props changed) head/mail/fdm/pkg-descr (props changed) head/mail/fetchmail/pkg-descr (props changed) head/mail/fetchyahoo/pkg-descr (props changed) head/mail/filtermail/pkg-descr (props changed) head/mail/findmaildirs/pkg-descr (props changed) head/mail/firemime/pkg-descr (props changed) head/mail/firepay/pkg-descr (props changed) head/mail/ftrack/pkg-descr (props changed) head/mail/gbuffy/pkg-descr (props changed) head/mail/gensig/pkg-descr (props changed) head/mail/getlive/pkg-descr (props changed) head/mail/getmail/pkg-descr (props changed) head/mail/gkrellmmailwatch2/pkg-descr (props changed) head/mail/gld/pkg-descr (props changed) head/mail/gmail-notify/pkg-descr (props changed) head/mail/gmime2-sharp/pkg-descr (props changed) head/mail/gmime2/pkg-descr (props changed) head/mail/gmime24-sharp/pkg-descr (props changed) head/mail/gmime24/pkg-descr (props changed) head/mail/gmime26-sharp/pkg-descr (props changed) head/mail/gmime26/pkg-descr (props changed) head/mail/gml/pkg-descr (props changed) head/mail/gnarwl/pkg-descr (props changed) head/mail/gnome-gmail-notifier/pkg-descr (props changed) head/mail/gnubiff/pkg-descr (props changed) head/mail/gnumail/pkg-descr (props changed) head/mail/gotmail/pkg-descr (props changed) head/mail/grepmail/pkg-descr (props changed) head/mail/greyfix/pkg-descr (props changed) head/mail/greylite/pkg-descr (props changed) head/mail/gubby/pkg-descr (props changed) head/mail/hashcash/pkg-descr (props changed) head/mail/hbiff/pkg-descr (props changed) head/mail/heirloom-mailx/pkg-descr (props changed) head/mail/horde-imp/pkg-descr (props changed) head/mail/horde-ingo/pkg-descr (props changed) head/mail/horde-turba/pkg-descr (props changed) head/mail/horde-webmail/pkg-descr (props changed) head/mail/horde3-dimp/pkg-descr (props changed) head/mail/horde3-forwards/pkg-descr (props changed) head/mail/horde3-imp/pkg-descr (props changed) head/mail/horde3-ingo/pkg-descr (props changed) head/mail/horde3-mimp/pkg-descr (props changed) head/mail/horde3-turba/pkg-descr (props changed) head/mail/horde3-vacation/pkg-descr (props changed) head/mail/hotwayd/pkg-descr (props changed) head/mail/hs-email-validate/pkg-descr (props changed) head/mail/hs-mime-mail/pkg-descr (props changed) head/mail/hs-mime/pkg-descr (props changed) head/mail/ifile/pkg-descr (props changed) head/mail/ilohamail-devel/pkg-descr (props changed) head/mail/ilohamail/pkg-descr (props changed) head/mail/im/pkg-descr (props changed) head/mail/imap-uw/pkg-descr (props changed) head/mail/imapfilter/pkg-descr (props changed) head/mail/imapsync/pkg-descr (props changed) head/mail/imaptools/pkg-descr (props changed) head/mail/imaputils/pkg-descr (props changed) head/mail/isbg/pkg-descr (props changed) head/mail/isoqlog/pkg-descr (props changed) head/mail/isync/pkg-descr (props changed) head/mail/james/pkg-descr (props changed) head/mail/jamlib/pkg-descr (props changed) head/mail/jmba/pkg-descr (props changed) head/mail/junkfilter/pkg-descr (props changed) head/mail/kbiff/pkg-descr (props changed) head/mail/kshowmail/pkg-descr (props changed) head/mail/lbdb/pkg-descr (props changed) head/mail/lens/pkg-descr (props changed) head/mail/libcmime/pkg-descr (props changed) head/mail/libdkim/pkg-descr (props changed) head/mail/libdomainkeys/pkg-descr (props changed) head/mail/libesmtp/pkg-descr (props changed) head/mail/libetpan/pkg-descr (props changed) head/mail/libmapi/pkg-descr (props changed) head/mail/libpst/pkg-descr (props changed) head/mail/librfc822/pkg-descr (props changed) head/mail/libsieve/pkg-descr (props changed) head/mail/libspamtest/pkg-descr (props changed) head/mail/libspf/pkg-descr (props changed) head/mail/libspf2/pkg-descr (props changed) head/mail/libsrs2/pkg-descr (props changed) head/mail/libsrs_alt/pkg-descr (props changed) head/mail/libvmime/pkg-descr (props changed) head/mail/linux-thunderbird/pkg-descr (props changed) head/mail/listadmin/pkg-descr (props changed) head/mail/lmtp2nntp/pkg-descr (props changed) head/mail/lookout/pkg-descr (props changed) head/mail/lurker/pkg-descr (props changed) head/mail/mahogany/pkg-descr (props changed) head/mail/mail-notification/pkg-descr (props changed) head/mail/mail2procmailrc/pkg-descr (props changed) head/mail/mail2sms/pkg-descr (props changed) head/mail/mailagent/pkg-descr (props changed) head/mail/mailcrypt/pkg-descr (props changed) head/mail/maildirsync/pkg-descr (props changed) head/mail/mailfmt/pkg-descr (props changed) head/mail/mailgraph/pkg-descr (props changed) head/mail/mailmgr/pkg-descr (props changed) head/mail/mailscanner/pkg-descr (props changed) head/mail/mailtray/pkg-descr (props changed) head/mail/mailutils/pkg-descr (props changed) head/mail/mailx/pkg-descr (props changed) head/mail/mairix/pkg-descr (props changed) head/mail/majordomo/pkg-descr (props changed) head/mail/masqmail/pkg-descr (props changed) head/mail/mb2md/pkg-descr (props changed) head/mail/mbox2imap/pkg-descr (props changed) head/mail/mbox2mdir/pkg-descr (props changed) head/mail/mboxcheck-applet/pkg-descr (props changed) head/mail/mboxgrep/pkg-descr (props changed) head/mail/mboxstats/pkg-descr (props changed) head/mail/mbx2mbox/pkg-descr (props changed) head/mail/mdpop3d/pkg-descr (props changed) head/mail/mess822/pkg-descr (props changed) head/mail/meta1/pkg-descr (props changed) head/mail/metamail/pkg-descr (props changed) head/mail/mew/pkg-descr (props changed) head/mail/milter-bogom/pkg-descr (props changed) head/mail/milter-callback/pkg-descr (props changed) head/mail/milter-greylist-devel/pkg-descr (props changed) head/mail/milter-greylist/pkg-descr (props changed) head/mail/milter-manager/pkg-descr (props changed) head/mail/milter-regex/pkg-descr (props changed) head/mail/milter-skem/pkg-descr (props changed) head/mail/mime-construct/pkg-descr (props changed) head/mail/mime4j/pkg-descr (props changed) head/mail/mimedefang/pkg-descr (props changed) head/mail/mini_sendmail/pkg-descr (props changed) head/mail/minimalist/pkg-descr (props changed) head/mail/missey/pkg-descr (props changed) head/mail/mixmaster/pkg-descr (props changed) head/mail/ml/pkg-descr (props changed) head/mail/mlmmj/pkg-descr (props changed) head/mail/mls/pkg-descr (props changed) head/mail/mmr/pkg-descr (props changed) head/mail/movemail/pkg-descr (props changed) head/mail/mpop/pkg-descr (props changed) head/mail/mreport/pkg-descr (props changed) head/mail/msgconvert/pkg-descr (props changed) head/mail/msmtp/pkg-descr (props changed) head/mail/mu/pkg-descr (props changed) head/mail/mulberry/pkg-descr (props changed) head/mail/mutt/pkg-descr (props changed) head/mail/mutt14/pkg-descr (props changed) head/mail/mutt_vc_query/pkg-descr (props changed) head/mail/muttils/pkg-descr (props changed) head/mail/muttzilla/pkg-descr (props changed) head/mail/nbsmtp/pkg-descr (props changed) head/mail/newmail/pkg-descr (props changed) head/mail/nmh/pkg-descr (props changed) head/mail/nmzmail/pkg-descr (props changed) head/mail/noattach/pkg-descr (props changed) head/mail/nocc/pkg-descr (props changed) head/mail/nohtml/pkg-descr (props changed) head/mail/normalizemime/pkg-descr (props changed) head/mail/notmuch/pkg-descr (props changed) head/mail/nullmailer/pkg-descr (props changed) head/mail/nullpop/pkg-descr (props changed) head/mail/offlineimap/pkg-descr (props changed) head/mail/opendkim/pkg-descr (props changed) head/mail/opensmtpd/pkg-descr (props changed) head/mail/openwebmail/pkg-descr (props changed) head/mail/osbf-lua/pkg-descr (props changed) head/mail/ovs/pkg-descr (props changed) head/mail/p3scan/pkg-descr (props changed) head/mail/p5-Dancer-Plugin-Email/pkg-descr (props changed) head/mail/p5-Email-Abstract/pkg-descr (props changed) head/mail/p5-Email-Address-Loose/pkg-descr (props changed) head/mail/p5-Email-Address/pkg-descr (props changed) head/mail/p5-Email-AddressParser/pkg-descr (props changed) head/mail/p5-Email-Delete/pkg-descr (props changed) head/mail/p5-Email-Find/pkg-descr (props changed) head/mail/p5-Email-Folder-IMAP/pkg-descr (props changed) head/mail/p5-Email-Folder-IMAPS/pkg-descr (props changed) head/mail/p5-Email-Folder-POP3/pkg-descr (props changed) head/mail/p5-Email-Folder/pkg-descr (props changed) head/mail/p5-Email-FolderType-Net/pkg-descr (props changed) head/mail/p5-Email-FolderType/pkg-descr (props changed) head/mail/p5-Email-LocalDelivery-Ezmlm/pkg-descr (props changed) head/mail/p5-Email-LocalDelivery/pkg-descr (props changed) head/mail/p5-Email-MIME-Attachment-Stripper/pkg-descr (props changed) head/mail/p5-Email-MIME-ContentType/pkg-descr (props changed) head/mail/p5-Email-MIME-CreateHTML/pkg-descr (props changed) head/mail/p5-Email-MIME-Creator-ISO_2022_JP/pkg-descr (props changed) head/mail/p5-Email-MIME-Encodings/pkg-descr (props changed) head/mail/p5-Email-MIME/pkg-descr (props changed) head/mail/p5-Email-MessageID/pkg-descr (props changed) head/mail/p5-Email-Reply/pkg-descr (props changed) head/mail/p5-Email-Send/pkg-descr (props changed) head/mail/p5-Email-Sender-Transport-SQLite/pkg-descr (props changed) head/mail/p5-Email-Sender/pkg-descr (props changed) head/mail/p5-Email-Simple/pkg-descr (props changed) head/mail/p5-Email-Stuff/pkg-descr (props changed) head/mail/p5-Email-Valid-Loose/pkg-descr (props changed) head/mail/p5-Email-Valid/pkg-descr (props changed) head/mail/p5-FuzzyOcr-devel/pkg-descr (props changed) head/mail/p5-FuzzyOcr/pkg-descr (props changed) head/mail/p5-GMail-IMAPD/pkg-descr (props changed) head/mail/p5-IMAP-Admin/pkg-descr (props changed) head/mail/p5-IMAP-Sieve/pkg-descr (props changed) head/mail/p5-LMAP-CID2SPF/pkg-descr (props changed) head/mail/p5-Log-Procmail/pkg-descr (props changed) head/mail/p5-MIME-AltWords/pkg-descr (props changed) head/mail/p5-MIME-Explode/pkg-descr (props changed) head/mail/p5-MIME-Fast/pkg-descr (props changed) head/mail/p5-MIME-Lite-HTML/pkg-descr (props changed) head/mail/p5-MIME-Lite-TT-HTML/pkg-descr (props changed) head/mail/p5-MIME-Lite-TT/pkg-descr (props changed) head/mail/p5-MIME-Lite/pkg-descr (props changed) head/mail/p5-MIME-Tools/pkg-descr (props changed) head/mail/p5-MIME-Types/pkg-descr (props changed) head/mail/p5-Mail-Address-MobileJp/pkg-descr (props changed) head/mail/p5-Mail-Alias/pkg-descr (props changed) head/mail/p5-Mail-Audit/pkg-descr (props changed) head/mail/p5-Mail-Box-Parser-C/pkg-descr (props changed) head/mail/p5-Mail-Box/pkg-descr (props changed) head/mail/p5-Mail-Bulkmail/pkg-descr (props changed) head/mail/p5-Mail-CheckUser/pkg-descr (props changed) head/mail/p5-Mail-DKIM/pkg-descr (props changed) head/mail/p5-Mail-DeliveryStatus-BounceParser/pkg-descr (props changed) head/mail/p5-Mail-DomainKeys/pkg-descr (props changed) head/mail/p5-Mail-Ezmlm/pkg-descr (props changed) head/mail/p5-Mail-Field-Received/pkg-descr (props changed) head/mail/p5-Mail-Folder/pkg-descr (props changed) head/mail/p5-Mail-IMAPClient/pkg-descr (props changed) head/mail/p5-Mail-IMAPTalk/pkg-descr (props changed) head/mail/p5-Mail-ListDetector/pkg-descr (props changed) head/mail/p5-Mail-MailStats/pkg-descr (props changed) head/mail/p5-Mail-MboxParser/pkg-descr (props changed) head/mail/p5-Mail-OpenDKIM/pkg-descr (props changed) head/mail/p5-Mail-OpenRelay-Simple/pkg-descr (props changed) head/mail/p5-Mail-Procmail/pkg-descr (props changed) head/mail/p5-Mail-Procmailrc/pkg-descr (props changed) head/mail/p5-Mail-RFC822-Address/pkg-descr (props changed) head/mail/p5-Mail-SRS/pkg-descr (props changed) head/mail/p5-Mail-Sender/pkg-descr (props changed) head/mail/p5-Mail-Sendmail/pkg-descr (props changed) head/mail/p5-Mail-SpamAssassin/pkg-descr (props changed) head/mail/p5-Mail-Tools/pkg-descr (props changed) head/mail/p5-Mail-Transport-Dbx/pkg-descr (props changed) head/mail/p5-Mail-Verify/pkg-descr (props changed) head/mail/p5-Mail-Webmail-Gmail/pkg-descr (props changed) head/mail/p5-Net-IMAP-Client/pkg-descr (props changed) head/mail/p5-Net-IMAP-Server/pkg-descr (props changed) head/mail/p5-Net-IMAP-Simple-SSL/pkg-descr (props changed) head/mail/p5-Net-IMAP-Simple/pkg-descr (props changed) head/mail/p5-Net-ManageSieve/pkg-descr (props changed) head/mail/p5-Net-QMTP/pkg-descr (props changed) head/mail/p5-Net-SMTP-SSL/pkg-descr (props changed) head/mail/p5-Net-SMTP-Server/pkg-descr (props changed) head/mail/p5-Net-SenderBase/pkg-descr (props changed) head/mail/p5-Net-Server-Mail/pkg-descr (props changed) head/mail/p5-POE-Component-Client-POP3/pkg-descr (props changed) head/mail/p5-POE-Component-Client-SMTP/pkg-descr (props changed) head/mail/p5-POE-Component-SMTP/pkg-descr (props changed) head/mail/p5-POE-Filter-Transparent-SMTP/pkg-descr (props changed) head/mail/p5-Parse-Syslog-Mail/pkg-descr (props changed) head/mail/p5-Qmail-Envelope/pkg-descr (props changed) head/mail/p5-SES/pkg-descr (props changed) head/mail/p5-Sendmail-AccessDB/pkg-descr (props changed) head/mail/p5-Sendmail-Milter/pkg-descr (props changed) head/mail/p5-URI-imap/pkg-descr (props changed) head/mail/p5-URI-imaps/pkg-descr (props changed) head/mail/p5-ZConf-Mail/pkg-descr (props changed) head/mail/p5-qpsmtpd/pkg-descr (props changed) head/mail/pantomime/pkg-descr (props changed) head/mail/pathalias/pkg-descr (props changed) head/mail/pear-Contact_Vcard_Build/pkg-descr (props changed) head/mail/pear-Contact_Vcard_Parse/pkg-descr (props changed) head/mail/pear-Horde_Imap_Client/pkg-descr (props changed) head/mail/pear-Horde_Kolab_Storage/pkg-descr (props changed) head/mail/pear-Horde_ListHeaders/pkg-descr (props changed) head/mail/pear-Horde_Mail/pkg-descr (props changed) head/mail/pear-Horde_Mime/pkg-descr (props changed) head/mail/pear-Horde_Mime_Viewer/pkg-descr (props changed) head/mail/pear-Horde_Smtp/pkg-descr (props changed) head/mail/pear-MIME_Type/pkg-descr (props changed) head/mail/pear-Mail/pkg-descr (props changed) head/mail/pear-Mail_Mbox/pkg-descr (props changed) head/mail/pear-Mail_Mime/pkg-descr (props changed) head/mail/pear-Mail_Queue/pkg-descr (props changed) head/mail/pear-Mail_mimeDecode/pkg-descr (props changed) head/mail/pear-Net_Cyrus/pkg-descr (props changed) head/mail/pear-Net_IMAP/pkg-descr (props changed) head/mail/pear-Net_LMTP/pkg-descr (props changed) head/mail/pecl-esmtp/pkg-descr (props changed) head/mail/pecl-mailparse/pkg-descr (props changed) head/mail/pecl-pop3/pkg-descr (props changed) head/mail/perdition/pkg-descr (props changed) head/mail/pflogstats/pkg-descr (props changed) head/mail/pflogsumm/pkg-descr (props changed) head/mail/pfqueue/pkg-descr (props changed) head/mail/phplist/pkg-descr (props changed) head/mail/phpmailer/pkg-descr (props changed) head/mail/phpmailer2/pkg-descr (props changed) head/mail/pine-pgp-filters/pkg-descr (props changed) head/mail/pm-lib/pkg-descr (props changed) head/mail/policyd2/pkg-descr (props changed) head/mail/pop-before-smtp/pkg-descr (props changed) head/mail/pop3gwd/pkg-descr (props changed) head/mail/pop3lite/pkg-descr (props changed) head/mail/pop3proxy/pkg-descr (props changed) head/mail/pop3vscan/pkg-descr (props changed) head/mail/popa3d/pkg-descr (props changed) head/mail/popcheck/pkg-descr (props changed) head/mail/popd/pkg-descr (props changed) head/mail/poppassd/pkg-descr (props changed) head/mail/popper/pkg-descr (props changed) head/mail/poppwd/pkg-descr (props changed) head/mail/poppy/pkg-descr (props changed) head/mail/popular/pkg-descr (props changed) head/mail/postfinger/pkg-descr (props changed) head/mail/postfix-current/pkg-descr (props changed) head/mail/postfix-gps/pkg-descr (props changed) head/mail/postfix-logwatch/pkg-descr (props changed) head/mail/postfix-policyd-sf/pkg-descr (props changed) head/mail/postfix-policyd-spf-perl/pkg-descr (props changed) head/mail/postfix-policyd-spf-python/pkg-descr (props changed) head/mail/postfix-policyd-weight/pkg-descr (props changed) head/mail/postfix-postfwd/pkg-descr (props changed) head/mail/postfix/pkg-descr (props changed) head/mail/postfix210/pkg-descr (props changed) head/mail/postfix27/pkg-descr (props changed) head/mail/postfix28/pkg-descr (props changed) head/mail/postfix29/pkg-descr (props changed) head/mail/postfixadmin/pkg-descr (props changed) head/mail/postpals/pkg-descr (props changed) head/mail/prayer/pkg-descr (props changed) head/mail/premail/pkg-descr (props changed) head/mail/prepflog/pkg-descr (props changed) head/mail/procmail/pkg-descr (props changed) head/mail/prom-wl/pkg-descr (props changed) head/mail/pronto/pkg-descr (props changed) head/mail/py-apolicy/pkg-descr (props changed) head/mail/py-authres/pkg-descr (props changed) head/mail/py-cyruslib/pkg-descr (props changed) head/mail/py-libgmail/pkg-descr (props changed) head/mail/py-milter/pkg-descr (props changed) head/mail/py-ppolicy/pkg-descr (props changed) head/mail/py-spambayes/pkg-descr (props changed) head/mail/py-twistedMail/pkg-descr (props changed) head/mail/pymsgauth/pkg-descr (props changed) head/mail/pysieved/pkg-descr (props changed) head/mail/pyzor/pkg-descr (props changed) head/mail/qar-bufo/pkg-descr (props changed) head/mail/qconfirm/pkg-descr (props changed) head/mail/qgmailnotifier/pkg-descr (props changed) head/mail/qmail-activedir/pkg-descr (props changed) head/mail/qmail-auditor/pkg-descr (props changed) head/mail/qmail-autoresponder/pkg-descr (props changed) head/mail/qmail-conf/pkg-descr (props changed) head/mail/qmail-contrib/pkg-descr (props changed) head/mail/qmail-dk/pkg-descr (props changed) head/mail/qmail-ldap/pkg-descr (props changed) head/mail/qmail-mysql/pkg-descr (props changed) head/mail/qmail-notify/pkg-descr (props changed) head/mail/qmail-qfilter/pkg-descr (props changed) head/mail/qmail-rblchk/pkg-descr (props changed) head/mail/qmail-remove/pkg-descr (props changed) head/mail/qmail-scanner/pkg-descr (props changed) head/mail/qmail-scanner1/pkg-descr (props changed) head/mail/qmail-spamcontrol/pkg-descr (props changed) head/mail/qmail-tls/pkg-descr (props changed) head/mail/qmail/pkg-descr (props changed) head/mail/qmailadmin/pkg-descr (props changed) head/mail/qmailanalog/pkg-descr (props changed) head/mail/qmailmrtg7/pkg-descr (props changed) head/mail/qmhandle/pkg-descr (props changed) head/mail/qmqtool/pkg-descr (props changed) head/mail/qpopper/pkg-descr (props changed) head/mail/qscan/pkg-descr (props changed) head/mail/qsf/pkg-descr (props changed) head/mail/qsheff/pkg-descr (props changed) head/mail/qtools/pkg-descr (props changed) head/mail/queue-fix/pkg-descr (props changed) head/mail/queue-repair/pkg-descr (props changed) head/mail/quickml/pkg-descr (props changed) head/mail/rabl_client/pkg-descr (props changed) head/mail/rabl_server/pkg-descr (props changed) head/mail/raysfilter/pkg-descr (props changed) head/mail/razor-agents/pkg-descr (props changed) head/mail/rbl-milter/pkg-descr (props changed) head/mail/rblcheck/pkg-descr (props changed) head/mail/relay-ctrl/pkg-descr (props changed) head/mail/relaydb/pkg-descr (props changed) head/mail/renattach/pkg-descr (props changed) head/mail/reply-o-matic/pkg-descr (props changed) head/mail/rftp/pkg-descr (props changed) head/mail/ripmime/pkg-descr (props changed) head/mail/rlytest/pkg-descr (props changed) head/mail/rmilter/pkg-descr (props changed) head/mail/roundcube-air/pkg-descr (props changed) head/mail/roundcube-contextmenu/pkg-descr (props changed) head/mail/roundcube-groupvice/pkg-descr (props changed) head/mail/roundcube-login_info/pkg-descr (props changed) head/mail/roundcube-mobilecube/pkg-descr (props changed) head/mail/roundcube-mvision2/pkg-descr (props changed) head/mail/roundcube-sauserprefs/pkg-descr (props changed) head/mail/roundcube-sieverules/pkg-descr (props changed) head/mail/roundcube-thunderbird_labels/pkg-descr (props changed) head/mail/roundcube-umich/pkg-descr (props changed) head/mail/roundcube-veximaccountadmin/pkg-descr (props changed) head/mail/roundcube/pkg-descr (props changed) head/mail/rspamd/pkg-descr (props changed) head/mail/rss2email/pkg-descr (props changed) head/mail/rubygem-actionmailer/pkg-descr (props changed) head/mail/rubygem-exception_notification/pkg-descr (props changed) head/mail/rubygem-larch/pkg-descr (props changed) head/mail/rubygem-mail/pkg-descr (props changed) head/mail/rubygem-mailfactory/pkg-descr (props changed) head/mail/rubygem-pony/pkg-descr (props changed) head/mail/rubygem-qmail/pkg-descr (props changed) head/mail/rubygem-rmail/pkg-descr (props changed) head/mail/rubygem-tmail/pkg-descr (props changed) head/mail/rubygem-vmail/pkg-descr (props changed) head/mail/sa-stats/pkg-descr (props changed) head/mail/sa-utils/pkg-descr (props changed) head/mail/sastatd/pkg-descr (props changed) head/mail/scam-backscatter/pkg-descr (props changed) head/mail/sccmilter/pkg-descr (props changed) head/mail/sendmail/pkg-descr (props changed) head/mail/sendok/pkg-descr (props changed) head/mail/sentinel/pkg-descr (props changed) head/mail/serialmail/pkg-descr (props changed) head/mail/sgwi/pkg-descr (props changed) head/mail/sid-milter/pkg-descr (props changed) head/mail/sieve-connect/pkg-descr (props changed) head/mail/sigit/pkg-descr (props changed) head/mail/sigrot/pkg-descr (props changed) head/mail/simscan/pkg-descr (props changed) head/mail/slapd-cyrus/pkg-descr (props changed) head/mail/sma/pkg-descr (props changed) head/mail/smail/pkg-descr (props changed) head/mail/smfsav/pkg-descr (props changed) head/mail/smtp-gated/pkg-descr (props changed) head/mail/smtpfeed/pkg-descr (props changed) head/mail/smtpmail/pkg-descr (props changed) head/mail/smtprc/pkg-descr (props changed) head/mail/smtptrapd/pkg-descr (props changed) head/mail/softfail/pkg-descr (props changed) head/mail/sortmail/pkg-descr (props changed) head/mail/spamass-ixhash/pkg-descr (props changed) head/mail/spamass-milter/pkg-descr (props changed) head/mail/spamass-rules/pkg-descr (props changed) head/mail/spambnc/pkg-descr (props changed) head/mail/spamcup/pkg-descr (props changed) head/mail/spamd/pkg-descr (props changed) head/mail/spamdb-curses/pkg-descr (props changed) head/mail/spamdyke/pkg-descr (props changed) head/mail/spamguard/pkg-descr (props changed) head/mail/spamilter/pkg-descr (props changed) head/mail/spamoracle/pkg-descr (props changed) head/mail/spampd/pkg-descr (props changed) head/mail/spamprobe/pkg-descr (props changed) head/mail/spamstats/pkg-descr (props changed) head/mail/spfval/pkg-descr (props changed) head/mail/spmfilter-clamav/pkg-descr (props changed) head/mail/spmfilter-spamassassin/pkg-descr (props changed) head/mail/spmfilter/pkg-descr (props changed) head/mail/sqlgrey/pkg-descr (props changed) head/mail/squirrelmail-abook_import_export-plugin/pkg-descr (props changed) head/mail/squirrelmail-askuserinfo-plugin/pkg-descr (props changed) head/mail/squirrelmail-avelsieve-plugin/pkg-descr (props changed) head/mail/squirrelmail-calendar_file_backend-plugin/pkg-descr (props changed) head/mail/squirrelmail-change_ldappass-plugin/pkg-descr (props changed) head/mail/squirrelmail-change_sqlpass-plugin/pkg-descr (props changed) head/mail/squirrelmail-check_quota-plugin/pkg-descr (props changed) head/mail/squirrelmail-compatibility-plugin/pkg-descr (props changed) head/mail/squirrelmail-email_footer-plugin/pkg-descr (props changed) head/mail/squirrelmail-login_auth-plugin/pkg-descr (props changed) head/mail/squirrelmail-login_notes-plugin/pkg-descr (props changed) head/mail/squirrelmail-mark_read-plugin/pkg-descr (props changed) head/mail/squirrelmail-multilogin-plugin/pkg-descr (props changed) head/mail/squirrelmail-notes-plugin/pkg-descr (props changed) head/mail/squirrelmail-notify-plugin/pkg-descr (props changed) head/mail/squirrelmail-password_forget-plugin/pkg-descr (props changed) head/mail/squirrelmail-plugins/pkg-descr (props changed) head/mail/squirrelmail-pupdate-plugin/pkg-descr (props changed) head/mail/squirrelmail-qmailadmin_login-plugin/pkg-descr (props changed) head/mail/squirrelmail-quota_usage-plugin/pkg-descr (props changed) head/mail/squirrelmail-sasql-plugin/pkg-descr (props changed) head/mail/squirrelmail-secure_login-plugin/pkg-descr (props changed) head/mail/squirrelmail-shared_calendars-plugin/pkg-descr (props changed) head/mail/squirrelmail-spam-buttons-plugin/pkg-descr (props changed) head/mail/squirrelmail-squirrel_logger-plugin/pkg-descr (props changed) head/mail/squirrelmail-timeout_user-plugin/pkg-descr (props changed) head/mail/squirrelmail-tmda-plugin/pkg-descr (props changed) head/mail/squirrelmail-translations/pkg-descr (props changed) head/mail/squirrelmail-unsafe_image_rules-plugin/pkg-descr (props changed) head/mail/squirrelmail-user_special_mailboxes-plugin/pkg-descr (props changed) head/mail/squirrelmail-vlogin-plugin/pkg-descr (props changed) head/mail/squirrelmail-websearch-plugin/pkg-descr (props changed) head/mail/squirrelmail-wetteronline-plugin/pkg-descr (props changed) head/mail/squirrelmail/pkg-descr (props changed) head/mail/sqwebmail/pkg-descr (props changed) head/mail/ssmtp/pkg-descr (props changed) head/mail/surblhost/pkg-descr (props changed) head/mail/svnmailer/pkg-descr (props changed) head/mail/swaks/pkg-descr (props changed) head/mail/sylpheed/pkg-descr (props changed) head/mail/sympa/pkg-descr (props changed) head/mail/synonym/pkg-descr (props changed) head/mail/t-prot/pkg-descr (props changed) head/mail/textmail/pkg-descr (props changed) head/mail/thunderbird-dictionaries/pkg-descr (props changed) head/mail/thunderbird-i18n/pkg-descr (props changed) head/mail/thunderbird/pkg-descr (props changed) head/mail/tkrat2/pkg-descr (props changed) head/mail/tlb/pkg-descr (props changed) head/mail/tmda/pkg-descr (props changed) head/mail/tpop3d/pkg-descr (props changed) head/mail/trojita/pkg-descr (props changed) head/mail/uebimiau/pkg-descr (props changed) head/mail/up-imapproxy/pkg-descr (props changed) head/mail/usendmail/pkg-descr (props changed) head/mail/vacation/pkg-descr (props changed) head/mail/vbsfilter/pkg-descr (props changed) head/mail/vexim/pkg-descr (props changed) head/mail/vm-pop3d/pkg-descr (props changed) head/mail/vm/pkg-descr (props changed) head/mail/vmailmgr/pkg-descr (props changed) head/mail/vpopmail/pkg-descr (props changed) head/mail/vqadmin/pkg-descr (props changed) head/mail/vqregister/pkg-descr (props changed) head/mail/vrfy/pkg-descr (props changed) head/mail/wanderlust-devel/pkg-descr (props changed) head/mail/wanderlust/pkg-descr (props changed) head/mail/websieve/pkg-descr (props changed) head/mail/whoson/pkg-descr (props changed) head/mail/wmbiff/pkg-descr (props changed) head/mail/wmmaiload/pkg-descr (props changed) head/mail/wmpop3/pkg-descr (props changed) head/mail/wmpop3lb/pkg-descr (props changed) head/mail/x-face-e21/pkg-descr (props changed) head/mail/xbuffy/pkg-descr (props changed) head/mail/xcite/pkg-descr (props changed) head/mail/xf-spf/pkg-descr (props changed) head/mail/xfaces/pkg-descr (props changed) head/mail/xfmail/pkg-descr (props changed) head/mail/xlbiff/pkg-descr (props changed) head/mail/xmail/pkg-descr (props changed) head/mail/xmailbox/pkg-descr (props changed) head/mail/xmailwatcher/pkg-descr (props changed) head/mail/xpbiff/pkg-descr (props changed) head/mail/xpi-displayquota/pkg-descr (props changed) head/mail/xpi-dispmua/pkg-descr (props changed) head/mail/zmailer/pkg-descr (props changed) head/math/GiNaC/pkg-descr (props changed) head/math/PDL/pkg-descr (props changed) head/math/R-cran-ChangeAnomalyDetection/pkg-descr (props changed) head/math/R-cran-Formula/pkg-descr (props changed) head/math/R-cran-KFAS/pkg-descr (props changed) head/math/R-cran-LearnBayes/pkg-descr (props changed) head/math/R-cran-MCMCpack/pkg-descr (props changed) head/math/R-cran-RHmm/pkg-descr (props changed) head/math/R-cran-RSvgDevice/pkg-descr (props changed) head/math/R-cran-RcppArmadillo/pkg-descr (props changed) head/math/R-cran-SuppDists/pkg-descr (props changed) head/math/R-cran-Zelig/pkg-descr (props changed) head/math/R-cran-bdsmatrix/pkg-descr (props changed) head/math/R-cran-car/pkg-descr (props changed) head/math/R-cran-coda/pkg-descr (props changed) head/math/R-cran-deldir/pkg-descr (props changed) head/math/R-cran-forecast/pkg-descr (props changed) head/math/R-cran-fracdiff/pkg-descr (props changed) head/math/R-cran-gpclib/pkg-descr (props changed) head/math/R-cran-gtable/pkg-descr (props changed) head/math/R-cran-igraph/pkg-descr (props changed) head/math/R-cran-inline/pkg-descr (props changed) head/math/R-cran-labeling/pkg-descr (props changed) head/math/R-cran-memisc/pkg-descr (props changed) head/math/R-cran-mvtnorm/pkg-descr (props changed) head/math/R-cran-outliers/pkg-descr (props changed) head/math/R-cran-psych/pkg-descr (props changed) head/math/R-cran-quadprog/pkg-descr (props changed) head/math/R-cran-sandwich/pkg-descr (props changed) head/math/R-cran-sm/pkg-descr (props changed) head/math/R-cran-sp/pkg-descr (props changed) head/math/R-cran-spdep/pkg-descr (props changed) head/math/R-cran-stabledist/pkg-descr (props changed) head/math/R-cran-xts/pkg-descr (props changed) head/math/R-cran-zoo/pkg-descr (props changed) head/math/R/pkg-descr (props changed) head/math/aamath/pkg-descr (props changed) head/math/abakus/pkg-descr (props changed) head/math/abs/pkg-descr (props changed) head/math/add/pkg-descr (props changed) head/math/algae/pkg-descr (props changed) head/math/algotutor/pkg-descr (props changed) head/math/analitza/pkg-descr (props changed) head/math/ann/pkg-descr (props changed) head/math/apc/pkg-descr (props changed) head/math/aribas/pkg-descr (props changed) head/math/armadillo/pkg-descr (props changed) head/math/arpack++/pkg-descr (props changed) head/math/arpack-ng/pkg-descr (props changed) head/math/arpack/pkg-descr (props changed) head/math/asir2000/pkg-descr (props changed) head/math/asymptote/pkg-descr (props changed) head/math/atlas-devel/pkg-descr (props changed) head/math/atlas/pkg-descr (props changed) head/math/bamg/pkg-descr (props changed) head/math/bargraph/pkg-descr (props changed) head/math/biggles/pkg-descr (props changed) head/math/bihar/pkg-descr (props changed) head/math/blacs/pkg-descr (props changed) head/math/blas/pkg-descr (props changed) head/math/blitz++/pkg-descr (props changed) head/math/blocksolve95/pkg-descr (props changed) head/math/bsdnt/pkg-descr (props changed) head/math/calc/pkg-descr (props changed) head/math/calcoo/pkg-descr (props changed) head/math/calctool/pkg-descr (props changed) head/math/cantor/pkg-descr (props changed) head/math/carve/pkg-descr (props changed) head/math/cblas/pkg-descr (props changed) head/math/ccmath/pkg-descr (props changed) head/math/cgal/pkg-descr (props changed) head/math/chaco/pkg-descr (props changed) head/math/clarence/pkg-descr (props changed) head/math/clipper/pkg-descr (props changed) head/math/cln/pkg-descr (props changed) head/math/clp/pkg-descr (props changed) head/math/coinmp/pkg-descr (props changed) head/math/concorde/pkg-descr (props changed) head/math/convertall/pkg-descr (props changed) head/math/coq/pkg-descr (props changed) head/math/crlibm/pkg-descr (props changed) head/math/cvc3/pkg-descr (props changed) head/math/dcdflib/pkg-descr (props changed) head/math/diehard/pkg-descr (props changed) head/math/dieharder/pkg-descr (props changed) head/math/djbfft/pkg-descr (props changed) head/math/drgeo/pkg-descr (props changed) head/math/dynare/pkg-descr (props changed) head/math/e/pkg-descr (props changed) head/math/edenmath/pkg-descr (props changed) head/math/eigen2/pkg-descr (props changed) head/math/eigen3/pkg-descr (props changed) head/math/eispack/pkg-descr (props changed) head/math/elmer-umfpack/pkg-descr (props changed) head/math/emacs-calc/pkg-descr (props changed) head/math/entropy/pkg-descr (props changed) head/math/ess/pkg-descr (props changed) head/math/eukleides/pkg-descr (props changed) head/math/eval/pkg-descr (props changed) head/math/facile/pkg-descr (props changed) head/math/fann/pkg-descr (props changed) head/math/fftw/pkg-descr (props changed) head/math/fityk/pkg-descr (props changed) head/math/freefem/pkg-descr (props changed) head/math/fricas/pkg-descr (props changed) head/math/fxt/pkg-descr (props changed) head/math/galculator/pkg-descr (props changed) head/math/gambit/pkg-descr (props changed) head/math/gap/pkg-descr (props changed) head/math/gcalctool/pkg-descr (props changed) head/math/gdcalc/pkg-descr (props changed) head/math/geg/pkg-descr (props changed) head/math/geonext/pkg-descr (props changed) head/math/gexpr/pkg-descr (props changed) head/math/ggobi/pkg-descr (props changed) head/math/giacxcas/pkg-descr (props changed) head/math/givaro/pkg-descr (props changed) head/math/gkmap/pkg-descr (props changed) head/math/glgraph/pkg-descr (props changed) head/math/glm/pkg-descr (props changed) head/math/glpk/pkg-descr (props changed) head/math/gmm++/pkg-descr (props changed) head/math/gmp-ecm/pkg-descr (props changed) head/math/gmp/pkg-descr (props changed) head/math/gnubc/pkg-descr (props changed) head/math/gnumeric/pkg-descr (props changed) head/math/goblin/pkg-descr (props changed) head/math/gotoblas/pkg-descr (props changed) head/math/grace/pkg-descr (props changed) head/math/gracetmpl/pkg-descr (props changed) head/math/graphthing/pkg-descr (props changed) head/math/gretl/pkg-descr (props changed) head/math/gri/pkg-descr (props changed) head/math/grpn/pkg-descr (props changed) head/math/gsl/pkg-descr (props changed) head/math/hs-Agda/pkg-descr (props changed) head/math/hs-NumInstances/pkg-descr (props changed) head/math/hs-categories/pkg-descr (props changed) head/math/hs-comonad-transformers/pkg-descr (props changed) head/math/hs-comonad/pkg-descr (props changed) head/math/hs-contravariant/pkg-descr (props changed) head/math/hs-data-lens-template/pkg-descr (props changed) head/math/hs-data-lens/pkg-descr (props changed) head/math/hs-distributive/pkg-descr (props changed) head/math/hs-erf/pkg-descr (props changed) head/math/hs-ieee754/pkg-descr (props changed) head/math/hs-math-functions/pkg-descr (props changed) head/math/hs-mwc-random/pkg-descr (props changed) head/math/hs-pointed/pkg-descr (props changed) head/math/hs-probability/pkg-descr (props changed) head/math/hs-semigroupoids/pkg-descr (props changed) head/math/hs-semigroups/pkg-descr (props changed) head/math/hs-statistics/pkg-descr (props changed) head/math/hs-vector-space/pkg-descr (props changed) head/math/igraph/pkg-descr (props changed) head/math/isabelle/pkg-descr (props changed) head/math/ised/pkg-descr (props changed) head/math/itl/pkg-descr (props changed) head/math/jacal/pkg-descr (props changed) head/math/jags/pkg-descr (props changed) head/math/jakarta-commons-math/pkg-descr (props changed) head/math/jakarta-commons-math3/pkg-descr (props changed) head/math/jama/pkg-descr (props changed) head/math/javanns/pkg-descr (props changed) head/math/javaview/pkg-descr (props changed) head/math/jeuclid/pkg-descr (props changed) head/math/jlatexmath/pkg-descr (props changed) head/math/jsmath-fonts-sprite/pkg-descr (props changed) head/math/jsmath-fonts/pkg-descr (props changed) head/math/jsmath/pkg-descr (props changed) head/math/jtransforms/pkg-descr (props changed) head/math/jts/pkg-descr (props changed) head/math/kalgebra/pkg-descr (props changed) head/math/kash3/pkg-descr (props changed) head/math/kbruch/pkg-descr (props changed) head/math/kcalc/pkg-descr (props changed) head/math/kig/pkg-descr (props changed) head/math/kktdirect/pkg-descr (props changed) head/math/kmplot/pkg-descr (props changed) head/math/lambda/pkg-descr (props changed) head/math/lapack++/pkg-descr (props changed) head/math/lapack/pkg-descr (props changed) head/math/lapack95/pkg-descr (props changed) head/math/lapacke/pkg-descr (props changed) head/math/laspack/pkg-descr (props changed) head/math/ldouble/pkg-descr (props changed) head/math/levmar/pkg-descr (props changed) head/math/libR/pkg-descr (props changed) head/math/libRmath/pkg-descr (props changed) head/math/libflame/pkg-descr (props changed) head/math/libjbigi/pkg-descr (props changed) head/math/liblbfgs/pkg-descr (props changed) head/math/libmissing/pkg-descr (props changed) head/math/libneural/pkg-descr (props changed) head/math/libocas/pkg-descr (props changed) head/math/libqalculate/pkg-descr (props changed) head/math/libranlip/pkg-descr (props changed) head/math/libtommath/pkg-descr (props changed) head/math/libtsnnls/pkg-descr (props changed) head/math/linpack/pkg-descr (props changed) head/math/lll_spect/pkg-descr (props changed) head/math/lp_solve/pkg-descr (props changed) head/math/ltl/pkg-descr (props changed) head/math/ltl2ba/pkg-descr (props changed) head/math/lybniz/pkg-descr (props changed) head/math/mate-calc/pkg-descr (props changed) head/math/mathomatic/pkg-descr (props changed) head/math/matio/pkg-descr (props changed) head/math/matlab-R2012a-installer/pkg-descr (props changed) head/math/matrix/pkg-descr (props changed) head/math/maxima/pkg-descr (props changed) head/math/mbasecalc/pkg-descr (props changed) head/math/metis-edf/pkg-descr (props changed) head/math/metis/pkg-descr (props changed) head/math/metis4/pkg-descr (props changed) head/math/mingw32-libgmp/pkg-descr (props changed) head/math/moo/pkg-descr (props changed) head/math/mpc/pkg-descr (props changed) head/math/mpexpr/pkg-descr (props changed) head/math/mpfr/pkg-descr (props changed) head/math/mprime/pkg-descr (props changed) head/math/msieve/pkg-descr (props changed) head/math/mtl/pkg-descr (props changed) head/math/mtrxmath/pkg-descr (props changed) head/math/mumps/pkg-descr (props changed) head/math/muparser/pkg-descr (props changed) head/math/naturalmath/pkg-descr (props changed) head/math/nauty/pkg-descr (props changed) head/math/ndiff/pkg-descr (props changed) head/math/newmat/pkg-descr (props changed) head/math/ngraph/pkg-descr (props changed) head/math/ntl/pkg-descr (props changed) head/math/numdiff/pkg-descr (props changed) head/math/nyh-hoc/pkg-descr (props changed) head/math/ocaml-ocamlgraph/pkg-descr (props changed) head/math/ocamlgsl/pkg-descr (props changed) head/math/octave-forge-actuarial/pkg-descr (props changed) head/math/octave-forge-ad/pkg-descr (props changed) head/math/octave-forge-audio/pkg-descr (props changed) head/math/octave-forge-base/pkg-descr (props changed) head/math/octave-forge-bim/pkg-descr (props changed) head/math/octave-forge-bioinfo/pkg-descr (props changed) head/math/octave-forge-cgi/pkg-descr (props changed) head/math/octave-forge-civil-engineering/pkg-descr (props changed) head/math/octave-forge-communications/pkg-descr (props changed) head/math/octave-forge-control/pkg-descr (props changed) head/math/octave-forge-data-smoothing/pkg-descr (props changed) head/math/octave-forge-database/pkg-descr (props changed) head/math/octave-forge-dataframe/pkg-descr (props changed) head/math/octave-forge-dicom/pkg-descr (props changed) head/math/octave-forge-econometrics/pkg-descr (props changed) head/math/octave-forge-engine/pkg-descr (props changed) head/math/octave-forge-fenv/pkg-descr (props changed) head/math/octave-forge-financial/pkg-descr (props changed) head/math/octave-forge-fits/pkg-descr (props changed) head/math/octave-forge-fl-core/pkg-descr (props changed) head/math/octave-forge-fpl/pkg-descr (props changed) head/math/octave-forge-fuzzy-logic-toolkit/pkg-descr (props changed) head/math/octave-forge-ga/pkg-descr (props changed) head/math/octave-forge-general/pkg-descr (props changed) head/math/octave-forge-generate_html/pkg-descr (props changed) head/math/octave-forge-geometry/pkg-descr (props changed) head/math/octave-forge-gnuplot/pkg-descr (props changed) head/math/octave-forge-gsl/pkg-descr (props changed) head/math/octave-forge-ident/pkg-descr (props changed) head/math/octave-forge-image/pkg-descr (props changed) head/math/octave-forge-informationtheory/pkg-descr (props changed) head/math/octave-forge-integration/pkg-descr (props changed) head/math/octave-forge-io/pkg-descr (props changed) head/math/octave-forge-irsa/pkg-descr (props changed) head/math/octave-forge-linear-algebra/pkg-descr (props changed) head/math/octave-forge-lssa/pkg-descr (props changed) head/math/octave-forge-ltfat/pkg-descr (props changed) head/math/octave-forge-mapping/pkg-descr (props changed) head/math/octave-forge-mechanics/pkg-descr (props changed) head/math/octave-forge-miscellaneous/pkg-descr (props changed) head/math/octave-forge-missing-functions/pkg-descr (props changed) head/math/octave-forge-msh/pkg-descr (props changed) head/math/octave-forge-multicore/pkg-descr (props changed) head/math/octave-forge-mvn/pkg-descr (props changed) head/math/octave-forge-nan/pkg-descr (props changed) head/math/octave-forge-ncarray/pkg-descr (props changed) head/math/octave-forge-netcdf/pkg-descr (props changed) head/math/octave-forge-nlwing2/pkg-descr (props changed) head/math/octave-forge-nnet/pkg-descr (props changed) head/math/octave-forge-nurbs/pkg-descr (props changed) head/math/octave-forge-ocs/pkg-descr (props changed) head/math/octave-forge-oct2mat/pkg-descr (props changed) head/math/octave-forge-octcdf/pkg-descr (props changed) head/math/octave-forge-octclip/pkg-descr (props changed) head/math/octave-forge-octgpr/pkg-descr (props changed) head/math/octave-forge-octproj/pkg-descr (props changed) head/math/octave-forge-odebvp/pkg-descr (props changed) head/math/octave-forge-odepkg/pkg-descr (props changed) head/math/octave-forge-optim/pkg-descr (props changed) head/math/octave-forge-optiminterp/pkg-descr (props changed) head/math/octave-forge-outliers/pkg-descr (props changed) head/math/octave-forge-parallel/pkg-descr (props changed) head/math/octave-forge-pdb/pkg-descr (props changed) head/math/octave-forge-plot/pkg-descr (props changed) head/math/octave-forge-pt_br/pkg-descr (props changed) head/math/octave-forge-quaternion/pkg-descr (props changed) head/math/octave-forge-queueing/pkg-descr (props changed) head/math/octave-forge-secs1d/pkg-descr (props changed) head/math/octave-forge-secs2d/pkg-descr (props changed) head/math/octave-forge-secs3d/pkg-descr (props changed) head/math/octave-forge-signal/pkg-descr (props changed) head/math/octave-forge-simp/pkg-descr (props changed) head/math/octave-forge-sockets/pkg-descr (props changed) head/math/octave-forge-specfun/pkg-descr (props changed) head/math/octave-forge-special-matrix/pkg-descr (props changed) head/math/octave-forge-spline-gcvspl/pkg-descr (props changed) head/math/octave-forge-splines/pkg-descr (props changed) head/math/octave-forge-statistics/pkg-descr (props changed) head/math/octave-forge-strings/pkg-descr (props changed) head/math/octave-forge-struct/pkg-descr (props changed) head/math/octave-forge-symband/pkg-descr (props changed) head/math/octave-forge-symbolic/pkg-descr (props changed) head/math/octave-forge-tcl-octave/pkg-descr (props changed) head/math/octave-forge-tsa/pkg-descr (props changed) head/math/octave-forge-video/pkg-descr (props changed) head/math/octave-forge-xraylib/pkg-descr (props changed) head/math/octave-forge-zenity/pkg-descr (props changed) head/math/octave-forge/pkg-descr (props changed) head/math/octave/pkg-descr (props changed) head/math/oleo/pkg-descr (props changed) head/math/open-axiom/pkg-descr (props changed) head/math/openblas/pkg-descr (props changed) head/math/openfst/pkg-descr (props changed) head/math/orpie/pkg-descr (props changed) head/math/p5-AI-Genetic/pkg-descr (props changed) head/math/p5-AI-NeuralNet-BackProp/pkg-descr (props changed) head/math/p5-AI-Perceptron/pkg-descr (props changed) head/math/p5-Algorithm-Combinatorics/pkg-descr (props changed) head/math/p5-Algorithm-KMeans/pkg-descr (props changed) head/math/p5-Algorithm-Munkres/pkg-descr (props changed) head/math/p5-Bit-ShiftReg/pkg-descr (props changed) head/math/p5-Bit-Vector-Minimal/pkg-descr (props changed) head/math/p5-Bit-Vector/pkg-descr (props changed) head/math/p5-CAD-Calc/pkg-descr (props changed) head/math/p5-Chart-Math-Axis/pkg-descr (props changed) head/math/p5-Date-Handler/pkg-descr (props changed) head/math/p5-GIS-Distance-Fast/pkg-descr (props changed) head/math/p5-GIS-Distance-Lite/pkg-descr (props changed) head/math/p5-Geo-Coordinates-UTM/pkg-descr (props changed) head/math/p5-Geo-Distance-XS/pkg-descr (props changed) head/math/p5-Geo-Distance/pkg-descr (props changed) head/math/p5-Graph/pkg-descr (props changed) head/math/p5-Math-Algebra-Symbols/pkg-descr (props changed) head/math/p5-Math-Base36/pkg-descr (props changed) head/math/p5-Math-Base85/pkg-descr (props changed) head/math/p5-Math-BaseCalc/pkg-descr (props changed) head/math/p5-Math-BaseCnv/pkg-descr (props changed) head/math/p5-Math-Bezier-Convert/pkg-descr (props changed) head/math/p5-Math-Bezier/pkg-descr (props changed) head/math/p5-Math-BigInt-GMP/pkg-descr (props changed) head/math/p5-Math-BigInt/pkg-descr (props changed) head/math/p5-Math-BigRat/pkg-descr (props changed) head/math/p5-Math-CDF/pkg-descr (props changed) head/math/p5-Math-Calc-Units/pkg-descr (props changed) head/math/p5-Math-Cephes/pkg-descr (props changed) head/math/p5-Math-Combinatorics/pkg-descr (props changed) head/math/p5-Math-ConvexHull/pkg-descr (props changed) head/math/p5-Math-Derivative/pkg-descr (props changed) head/math/p5-Math-Expr/pkg-descr (props changed) head/math/p5-Math-FFT/pkg-descr (props changed) head/math/p5-Math-GMP/pkg-descr (props changed) head/math/p5-Math-GMPf/pkg-descr (props changed) head/math/p5-Math-GMPq/pkg-descr (props changed) head/math/p5-Math-GMPz/pkg-descr (props changed) head/math/p5-Math-Geometry-Planar-GPC-Polygon/pkg-descr (props changed) head/math/p5-Math-Geometry-Planar-GPC/pkg-descr (props changed) head/math/p5-Math-Geometry-Planar-Offset/pkg-descr (props changed) head/math/p5-Math-Geometry-Planar/pkg-descr (props changed) head/math/p5-Math-Geometry/pkg-descr (props changed) head/math/p5-Math-Gradient/pkg-descr (props changed) head/math/p5-Math-Int128/pkg-descr (props changed) head/math/p5-Math-Int64/pkg-descr (props changed) head/math/p5-Math-Interpolate/pkg-descr (props changed) head/math/p5-Math-Intersection-StraightLine/pkg-descr (props changed) head/math/p5-Math-Logic/pkg-descr (props changed) head/math/p5-Math-Matrix/pkg-descr (props changed) head/math/p5-Math-NumberCruncher/pkg-descr (props changed) head/math/p5-Math-Pari/pkg-descr (props changed) head/math/p5-Math-Polygon-Tree/pkg-descr (props changed) head/math/p5-Math-Prime-XS/pkg-descr (props changed) head/math/p5-Math-RPN/pkg-descr (props changed) head/math/p5-Math-Random-ISAAC-XS/pkg-descr (props changed) head/math/p5-Math-Random-ISAAC/pkg-descr (props changed) head/math/p5-Math-Random-MT/pkg-descr (props changed) head/math/p5-Math-Random-OO/pkg-descr (props changed) head/math/p5-Math-Random-Secure/pkg-descr (props changed) head/math/p5-Math-Random/pkg-descr (props changed) head/math/p5-Math-RandomOrg/pkg-descr (props changed) head/math/p5-Math-Round-Var/pkg-descr (props changed) head/math/p5-Math-Round/pkg-descr (props changed) head/math/p5-Math-Sequence/pkg-descr (props changed) head/math/p5-Math-Series/pkg-descr (props changed) head/math/p5-Math-SigFigs/pkg-descr (props changed) head/math/p5-Math-SimpleVariable/pkg-descr (props changed) head/math/p5-Math-Spline/pkg-descr (props changed) head/math/p5-Math-Symbolic-Custom-CCompiler/pkg-descr (props changed) head/math/p5-Math-Symbolic-Custom-Contains/pkg-descr (props changed) head/math/p5-Math-Symbolic-Custom-ErrorPropagation/pkg-descr (props changed) head/math/p5-Math-Symbolic-Custom-LaTeXDumper/pkg-descr (props changed) head/math/p5-Math-Symbolic-Custom-Pattern/pkg-descr (props changed) head/math/p5-Math-Symbolic-Custom-Simplification/pkg-descr (props changed) head/math/p5-Math-SymbolicX-BigNum/pkg-descr (props changed) head/math/p5-Math-SymbolicX-Complex/pkg-descr (props changed) head/math/p5-Math-SymbolicX-NoSimplification/pkg-descr (props changed) head/math/p5-Math-SymbolicX-Statistics-Distributions/pkg-descr (props changed) head/math/p5-Math-TrulyRandom/pkg-descr (props changed) head/math/p5-Math-Vec/pkg-descr (props changed) head/math/p5-Math-VecStat/pkg-descr (props changed) head/math/p5-Math-VectorReal/pkg-descr (props changed) head/math/p5-NetCDF/pkg-descr (props changed) head/math/p5-Number-Compare/pkg-descr (props changed) head/math/p5-Number-Fraction/pkg-descr (props changed) head/math/p5-Number-Uncertainty/pkg-descr (props changed) head/math/p5-Number-WithError-LaTeX/pkg-descr (props changed) head/math/p5-Number-WithError/pkg-descr (props changed) head/math/p5-Parse-Range/pkg-descr (props changed) head/math/p5-Roman/pkg-descr (props changed) head/math/p5-Set-IntSpan-Fast-XS/pkg-descr (props changed) head/math/p5-Set-IntSpan-Fast/pkg-descr (props changed) head/math/p5-Set-IntSpan/pkg-descr (props changed) head/math/p5-Set-Partition/pkg-descr (props changed) head/math/p5-Set-Window/pkg-descr (props changed) head/math/p5-Statistics-Basic/pkg-descr (props changed) head/math/p5-Statistics-Benford/pkg-descr (props changed) head/math/p5-Statistics-ChiSquare/pkg-descr (props changed) head/math/p5-Statistics-Descriptive-Discrete/pkg-descr (props changed) head/math/p5-Statistics-Descriptive/pkg-descr (props changed) head/math/p5-Statistics-Distributions/pkg-descr (props changed) head/math/p5-Statistics-Frequency/pkg-descr (props changed) head/math/p5-Statistics-LTU/pkg-descr (props changed) head/math/p5-Statistics-Lite/pkg-descr (props changed) head/math/p5-Statistics-OLS/pkg-descr (props changed) head/math/p5-Statistics-R/pkg-descr (props changed) head/math/p5-Statistics-Regression/pkg-descr (props changed) head/math/p5-Task-Math-Symbolic/pkg-descr (props changed) head/math/p5-bignum/pkg-descr (props changed) head/math/pari/pkg-descr (props changed) head/math/parmetis/pkg-descr (props changed) head/math/parmgridgen/pkg-descr (props changed) head/math/pear-Math_BigInteger/pkg-descr (props changed) head/math/pear-Math_Combinatorics/pkg-descr (props changed) head/math/pecl-big_int/pkg-descr (props changed) head/math/pecl-bitset/pkg-descr (props changed) head/math/pecl-stats/pkg-descr (props changed) head/math/physcalc/pkg-descr (props changed) head/math/plman/pkg-descr (props changed) head/math/ploticus/pkg-descr (props changed) head/math/plplot/pkg-descr (props changed) head/math/polymake/pkg-descr (props changed) head/math/primegen/pkg-descr (props changed) head/math/prng/pkg-descr (props changed) head/math/proofgeneral/pkg-descr (props changed) head/math/pspp/pkg-descr (props changed) head/math/pure-mpfr/pkg-descr (props changed) head/math/pure-rational/pkg-descr (props changed) head/math/py-apgl/pkg-descr (props changed) head/math/py-basemap-data/pkg-descr (props changed) head/math/py-basemap/pkg-descr (props changed) head/math/py-bitvector/pkg-descr (props changed) head/math/py-ffc/pkg-descr (props changed) head/math/py-fiat/pkg-descr (props changed) head/math/py-gmpy/pkg-descr (props changed) head/math/py-gnuplot/pkg-descr (props changed) head/math/py-graphtool/pkg-descr (props changed) head/math/py-gsl/pkg-descr (props changed) head/math/py-igraph/pkg-descr (props changed) head/math/py-matplotlib/pkg-descr (props changed) head/math/py-mpmath/pkg-descr (props changed) head/math/py-munkres/pkg-descr (props changed) head/math/py-networkx/pkg-descr (props changed) head/math/py-numarray/pkg-descr (props changed) head/math/py-numeric/pkg-descr (props changed) head/math/py-numexpr/pkg-descr (props changed) head/math/py-numpy/pkg-descr (props changed) head/math/py-nzmath/pkg-descr (props changed) head/math/py-pandas/pkg-descr (props changed) head/math/py-plastex/pkg-descr (props changed) head/math/py-probstat/pkg-descr (props changed) head/math/py-pybloom/pkg-descr (props changed) head/math/py-scientific/pkg-descr (props changed) head/math/py-svgmath/pkg-descr (props changed) head/math/py-symeig/pkg-descr (props changed) head/math/py-sympy/pkg-descr (props changed) head/math/py-ufl/pkg-descr (props changed) head/math/py-viper/pkg-descr (props changed) head/math/qalculate/pkg-descr (props changed) head/math/qd/pkg-descr (props changed) head/math/qhull/pkg-descr (props changed) head/math/qhull5/pkg-descr (props changed) head/math/qrupdate/pkg-descr (props changed) head/math/qtiplot-doc/pkg-descr (props changed) head/math/qtiplot/pkg-descr (props changed) head/math/qtoctave/pkg-descr (props changed) head/math/qwtplot3d-qt4/pkg-descr (props changed) head/math/randlib/pkg-descr (props changed) head/math/rapid/pkg-descr (props changed) head/math/reed-solomon/pkg-descr (props changed) head/math/rkward-kde4/pkg-descr (props changed) head/math/rngstreams/pkg-descr (props changed) head/math/rocs/pkg-descr (props changed) head/math/ros-geometry/pkg-descr (props changed) head/math/rpcalc/pkg-descr (props changed) head/math/rpy/pkg-descr (props changed) head/math/rpy2/pkg-descr (props changed) head/math/ruby-algebra/pkg-descr (props changed) head/math/ruby-fftw3/pkg-descr (props changed) head/math/ruby-gsl/pkg-descr (props changed) head/math/ruby-narray_miss/pkg-descr (props changed) head/math/ruby-numru_misc/pkg-descr (props changed) head/math/ruby-numru_units/pkg-descr (props changed) head/math/saga/pkg-descr (props changed) head/math/sage/pkg-descr (props changed) head/math/sc/pkg-descr (props changed) head/math/scalapack/pkg-descr (props changed) head/math/scilab-toolbox-sivp/pkg-descr (props changed) head/math/scilab-toolbox-swt/pkg-descr (props changed) head/math/scilab/pkg-descr (props changed) head/math/sdpa-gmp/pkg-descr (props changed) head/math/sdpa/pkg-descr (props changed) head/math/sdpara/pkg-descr (props changed) head/math/sedumi/pkg-descr (props changed) head/math/sfft/pkg-descr (props changed) head/math/simd-viterbi/pkg-descr (props changed) head/math/slatec/pkg-descr (props changed) head/math/snns/pkg-descr (props changed) head/math/solitaire/pkg-descr (props changed) head/math/spar/pkg-descr (props changed) head/math/speedcrunch/pkg-descr (props changed) head/math/spooles/pkg-descr (props changed) head/math/stp/pkg-descr (props changed) head/math/suitesparse/pkg-descr (props changed) head/math/superlu/pkg-descr (props changed) head/math/superlu_mt/pkg-descr (props changed) head/math/surf/pkg-descr (props changed) head/math/tablix/pkg-descr (props changed) head/math/taucs/pkg-descr (props changed) head/math/testu01/pkg-descr (props changed) head/math/timbl/pkg-descr (props changed) head/math/tomsfastmath/pkg-descr (props changed) head/math/topaz/pkg-descr (props changed) head/math/triangle/pkg-descr (props changed) head/math/trlan/pkg-descr (props changed) head/math/truthtable/pkg-descr (props changed) head/math/tvmet/pkg-descr (props changed) head/math/ufc/pkg-descr (props changed) head/math/umatrix/pkg-descr (props changed) head/math/ump/pkg-descr (props changed) head/math/units/pkg-descr (props changed) head/math/unixstat/pkg-descr (props changed) head/math/unuran/pkg-descr (props changed) head/math/vtk5/pkg-descr (props changed) head/math/wcalc/pkg-descr (props changed) head/math/wfmath/pkg-descr (props changed) head/math/wingz/pkg-descr (props changed) head/math/wingz3/pkg-descr (props changed) head/math/wxMaxima/pkg-descr (props changed) head/math/x12arima/pkg-descr (props changed) head/math/xblas/pkg-descr (props changed) head/math/xgobi/pkg-descr (props changed) head/math/xgraph/pkg-descr (props changed) head/math/xldlas/pkg-descr (props changed) head/math/xplot/pkg-descr (props changed) head/math/xppaut/pkg-descr (props changed) head/math/xspread/pkg-descr (props changed) head/math/yacas/pkg-descr (props changed) head/misc/achievo/pkg-descr (props changed) head/misc/aclgen/pkg-descr (props changed) head/misc/amanda-perl-wrapper/pkg-descr (props changed) head/misc/amanda-server/pkg-descr (props changed) head/misc/amanda25-server/pkg-descr (props changed) head/misc/amanda26-server/pkg-descr (props changed) head/misc/amanda32-server/pkg-descr (props changed) head/misc/amfm/pkg-descr (props changed) head/misc/apparix/pkg-descr (props changed) head/misc/asbutton/pkg-descr (props changed) head/misc/asr-manpages/pkg-descr (props changed) head/misc/astrolog/pkg-descr (props changed) head/misc/bb/pkg-descr (props changed) head/misc/bbjd/pkg-descr (props changed) head/misc/bdelta/pkg-descr (props changed) head/misc/bestfit/pkg-descr (props changed) head/misc/bibletime/pkg-descr (props changed) head/misc/biblical-curse/pkg-descr (props changed) head/misc/bigboard/pkg-descr (props changed) head/misc/birthday/pkg-descr (props changed) head/misc/bogosort/pkg-descr (props changed) head/misc/bottlerocket/pkg-descr (props changed) head/misc/boxes/pkg-descr (props changed) head/misc/boxquote.el/pkg-descr (props changed) head/misc/brs/pkg-descr (props changed) head/misc/buffer/pkg-descr (props changed) head/misc/c-hey/pkg-descr (props changed) head/misc/callid/pkg-descr (props changed) head/misc/cave/pkg-descr (props changed) head/misc/cdcollect/pkg-descr (props changed) head/misc/chef/pkg-descr (props changed) head/misc/chmlib/pkg-descr (props changed) head/misc/chord2html/pkg-descr (props changed) head/misc/clex/pkg-descr (props changed) head/misc/cloc/pkg-descr (props changed) head/misc/clpbar/pkg-descr (props changed) head/misc/cmatrix/pkg-descr (props changed) head/misc/color-theme.el/pkg-descr (props changed) head/misc/compat4x/pkg-descr (props changed) head/misc/compat5x/pkg-descr (props changed) head/misc/compat6x/pkg-descr (props changed) head/misc/compat7x/pkg-descr (props changed) head/misc/compat8x/pkg-descr (props changed) head/misc/compat9x/pkg-descr (props changed) head/misc/countrycodes/pkg-descr (props changed) head/misc/cpuid/pkg-descr (props changed) head/misc/crosspad/pkg-descr (props changed) head/misc/cs/pkg-descr (props changed) head/misc/cstream/pkg-descr (props changed) head/misc/cuecat/pkg-descr (props changed) head/misc/cwish/pkg-descr (props changed) head/misc/dahdi-kmod/pkg-descr (props changed) head/misc/dahdi-kmod26/pkg-descr (props changed) head/misc/dahdi/pkg-descr (props changed) head/misc/ddate/pkg-descr (props changed) head/misc/deco/pkg-descr (props changed) head/misc/dejagnu/pkg-descr (props changed) head/misc/delay/pkg-descr (props changed) head/misc/detachtty/pkg-descr (props changed) head/misc/diary-hercules/pkg-descr (props changed) head/misc/diction/pkg-descr (props changed) head/misc/digitemp/pkg-descr (props changed) head/misc/display/pkg-descr (props changed) head/misc/dnetc/pkg-descr (props changed) head/misc/dotfile/pkg-descr (props changed) head/misc/dphys-config/pkg-descr (props changed) head/misc/dtach/pkg-descr (props changed) head/misc/dvorak7min/pkg-descr (props changed) head/misc/dvorakng/pkg-descr (props changed) head/misc/e2fsprogs-libblkid/pkg-descr (props changed) head/misc/e2fsprogs-libuuid/pkg-descr (props changed) head/misc/elscreen/pkg-descr (props changed) head/misc/estic/pkg-descr (props changed) head/misc/explosions/pkg-descr (props changed) head/misc/fbless/pkg-descr (props changed) head/misc/felis/pkg-descr (props changed) head/misc/figlet-fonts/pkg-descr (props changed) head/misc/figlet/pkg-descr (props changed) head/misc/findutils/pkg-descr (props changed) head/misc/firestring/pkg-descr (props changed) head/misc/floatator/pkg-descr (props changed) head/misc/fortune-mod-bible/pkg-descr (props changed) head/misc/fortune-mod-bofh/pkg-descr (props changed) head/misc/fortune-mod-culmea-culmilor/pkg-descr (props changed) head/misc/fortune-mod-ferengi_rules_of_acquisition/pkg-descr (props changed) head/misc/fortune-mod-futurama/pkg-descr (props changed) head/misc/fortuneit/pkg-descr (props changed) head/misc/freebsd-doc-all/pkg-descr (props changed) head/misc/freebsd-doc-en/pkg-descr (props changed) head/misc/freecode-submit/pkg-descr (props changed) head/misc/freeguide/pkg-descr (props changed) head/misc/freeswitch-pizzademo-devel/pkg-descr (props changed) head/misc/freeswitch-scripts-devel/pkg-descr (props changed) head/misc/ftdi-eeprom/pkg-descr (props changed) head/misc/fxload/pkg-descr (props changed) head/misc/gcstar/pkg-descr (props changed) head/misc/gctpc/pkg-descr (props changed) head/misc/geekcode/pkg-descr (props changed) head/misc/getopt/pkg-descr (props changed) head/misc/gimp-help-en/pkg-descr (props changed) head/misc/gkrellm-gamma/pkg-descr (props changed) head/misc/gkrellm-xkb/pkg-descr (props changed) head/misc/gkrellmbgchg2/pkg-descr (props changed) head/misc/gkrellmfmonitor/pkg-descr (props changed) head/misc/gkrellmlaunch/pkg-descr (props changed) head/misc/gkrellmlaunch2/pkg-descr (props changed) head/misc/gkrellshoot/pkg-descr (props changed) head/misc/gkrellshoot2/pkg-descr (props changed) head/misc/gkx86info2/pkg-descr (props changed) head/misc/gman/pkg-descr (props changed) head/misc/gnome-devel-docs/pkg-descr (props changed) head/misc/gnome-icon-theme-extras/pkg-descr (props changed) head/misc/gnome-icon-theme/pkg-descr (props changed) head/misc/gnome-mime-data/pkg-descr (props changed) head/misc/gnome-osd/pkg-descr (props changed) head/misc/gnome-user-docs/pkg-descr (props changed) head/misc/gnome2-reference/pkg-descr (props changed) head/misc/gnomehier/pkg-descr (props changed) head/misc/gnu-watch/pkg-descr (props changed) head/misc/gnuit/pkg-descr (props changed) head/misc/gnuls/pkg-descr (props changed) head/misc/gnustep-examples/pkg-descr (props changed) head/misc/gone/pkg-descr (props changed) head/misc/gonvert/pkg-descr (props changed) head/misc/gplink/pkg-descr (props changed) head/misc/granulate/pkg-descr (props changed) head/misc/grc/pkg-descr (props changed) head/misc/gregexp/pkg-descr (props changed) head/misc/grun/pkg-descr (props changed) head/misc/gtkfind/pkg-descr (props changed) head/misc/gwhich/pkg-descr (props changed) head/misc/hb/pkg-descr (props changed) head/misc/hello/pkg-descr (props changed) head/misc/help2man/pkg-descr (props changed) head/misc/heyu2/pkg-descr (props changed) head/misc/hicolor-icon-theme/pkg-descr (props changed) head/misc/histring/pkg-descr (props changed) head/misc/hotkeys/pkg-descr (props changed) head/misc/hulgalugha/pkg-descr (props changed) head/misc/imerge/pkg-descr (props changed) head/misc/inplace/pkg-descr (props changed) head/misc/ipa_conv/pkg-descr (props changed) head/misc/ipbt/pkg-descr (props changed) head/misc/iselect/pkg-descr (props changed) head/misc/iso-codes/pkg-descr (props changed) head/misc/jargon/pkg-descr (props changed) head/misc/jbidwatcher/pkg-descr (props changed) head/misc/jive/pkg-descr (props changed) head/misc/kbdscan/pkg-descr (props changed) head/misc/kcd/pkg-descr (props changed) head/misc/kde-xdg-env/pkg-descr (props changed) head/misc/kde4-l10n-bg/pkg-descr (props changed) head/misc/kde4-l10n-bs/pkg-descr (props changed) head/misc/kde4-l10n-ca/pkg-descr (props changed) head/misc/kde4-l10n-ca_valencia/pkg-descr (props changed) head/misc/kde4-l10n-cs/pkg-descr (props changed) head/misc/kde4-l10n-da/pkg-descr (props changed) head/misc/kde4-l10n-el/pkg-descr (props changed) head/misc/kde4-l10n-en_GB/pkg-descr (props changed) head/misc/kde4-l10n-es/pkg-descr (props changed) head/misc/kde4-l10n-et/pkg-descr (props changed) head/misc/kde4-l10n-eu/pkg-descr (props changed) head/misc/kde4-l10n-fa/pkg-descr (props changed) head/misc/kde4-l10n-fi/pkg-descr (props changed) head/misc/kde4-l10n-ga/pkg-descr (props changed) head/misc/kde4-l10n-gl/pkg-descr (props changed) head/misc/kde4-l10n-hi/pkg-descr (props changed) head/misc/kde4-l10n-hr/pkg-descr (props changed) head/misc/kde4-l10n-ia/pkg-descr (props changed) head/misc/kde4-l10n-is/pkg-descr (props changed) head/misc/kde4-l10n-it/pkg-descr (props changed) head/misc/kde4-l10n-kk/pkg-descr (props changed) head/misc/kde4-l10n-km/pkg-descr (props changed) head/misc/kde4-l10n-lt/pkg-descr (props changed) head/misc/kde4-l10n-lv/pkg-descr (props changed) head/misc/kde4-l10n-mr/pkg-descr (props changed) head/misc/kde4-l10n-nb/pkg-descr (props changed) head/misc/kde4-l10n-nds/pkg-descr (props changed) head/misc/kde4-l10n-nl/pkg-descr (props changed) head/misc/kde4-l10n-nn/pkg-descr (props changed) head/misc/kde4-l10n-pa/pkg-descr (props changed) head/misc/kde4-l10n-ro/pkg-descr (props changed) head/misc/kde4-l10n-si/pkg-descr (props changed) head/misc/kde4-l10n-sk/pkg-descr (props changed) head/misc/kde4-l10n-sl/pkg-descr (props changed) head/misc/kde4-l10n-sr/pkg-descr (props changed) head/misc/kde4-l10n-sv/pkg-descr (props changed) head/misc/kde4-l10n-tg/pkg-descr (props changed) head/misc/kde4-l10n-th/pkg-descr (props changed) head/misc/kde4-l10n-tr/pkg-descr (props changed) head/misc/kde4-l10n-ug/pkg-descr (props changed) head/misc/kde4-l10n-wa/pkg-descr (props changed) head/misc/kde4-l10n/pkg-descr (props changed) head/misc/kde4-shared-mime-info/pkg-descr (props changed) head/misc/kde4-xdg-env/pkg-descr (props changed) head/misc/kdeedu4/pkg-descr (props changed) head/misc/kdehier4/pkg-descr (props changed) head/misc/kdeutils4/pkg-descr (props changed) head/misc/kenny/pkg-descr (props changed) head/misc/kgeography/pkg-descr (props changed) head/misc/klettres/pkg-descr (props changed) head/misc/krecipes-kde4/pkg-descr (props changed) head/misc/ktouch/pkg-descr (props changed) head/misc/kwordquiz/pkg-descr (props changed) head/misc/latex-mk/pkg-descr (props changed) head/misc/lc/pkg-descr (props changed) head/misc/lesspipe/pkg-descr (props changed) head/misc/libeatmydata/pkg-descr (props changed) head/misc/libhome/pkg-descr (props changed) head/misc/libkdeedu/pkg-descr (props changed) head/misc/libmcal/pkg-descr (props changed) head/misc/libmetalink/pkg-descr (props changed) head/misc/libpri/pkg-descr (props changed) head/misc/libsupertone/pkg-descr (props changed) head/misc/libutf/pkg-descr (props changed) head/misc/lifelines/pkg-descr (props changed) head/misc/lingoteach/pkg-descr (props changed) head/misc/linm/pkg-descr (props changed) head/misc/localedata/pkg-descr (props changed) head/misc/logsurfer+/pkg-descr (props changed) head/misc/loop/pkg-descr (props changed) head/misc/lr/pkg-descr (props changed) head/misc/lv/pkg-descr (props changed) head/misc/lxde-common/pkg-descr (props changed) head/misc/magicpoint/pkg-descr (props changed) head/misc/man.el/pkg-descr (props changed) head/misc/mbuffer/pkg-descr (props changed) head/misc/mc-light/pkg-descr (props changed) head/misc/mc/pkg-descr (props changed) head/misc/metalink-checker/pkg-descr (props changed) head/misc/metalink-editor/pkg-descr (props changed) head/misc/metalink-tools/pkg-descr (props changed) head/misc/metromap/pkg-descr (props changed) head/misc/mime-support/pkg-descr (props changed) head/misc/mirmon/pkg-descr (props changed) head/misc/mmv/pkg-descr (props changed) head/misc/mshell/pkg-descr (props changed) head/misc/mtail/pkg-descr (props changed) head/misc/mtx/pkg-descr (props changed) head/misc/nagios-base-logos/pkg-descr (props changed) head/misc/najitool/pkg-descr (props changed) head/misc/newer/pkg-descr (props changed) head/misc/nsf/pkg-descr (props changed) head/misc/numchar/pkg-descr (props changed) head/misc/nut/pkg-descr (props changed) head/misc/ondir/pkg-descr (props changed) head/misc/opencyc/pkg-descr (props changed) head/misc/openr2/pkg-descr (props changed) head/misc/orville-write/pkg-descr (props changed) head/misc/ossp-uuid/pkg-descr (props changed) head/misc/otter/pkg-descr (props changed) head/misc/p5-Acme-ButFirst/pkg-descr (props changed) head/misc/p5-Array-Compare/pkg-descr (props changed) head/misc/p5-Array-Diff/pkg-descr (props changed) head/misc/p5-Array-IntSpan/pkg-descr (props changed) head/misc/p5-Array-PrintCols/pkg-descr (props changed) head/misc/p5-Array-RefElem/pkg-descr (props changed) head/misc/p5-Asterisk-FastAGI/pkg-descr (props changed) head/misc/p5-Asterisk/pkg-descr (props changed) head/misc/p5-Bot-Training-MegaHAL/pkg-descr (props changed) head/misc/p5-Bot-Training-StarCraft/pkg-descr (props changed) head/misc/p5-Bot-Training/pkg-descr (props changed) head/misc/p5-Business-EDI/pkg-descr (props changed) head/misc/p5-Business-Hours/pkg-descr (props changed) head/misc/p5-Business-ISBN-Data/pkg-descr (props changed) head/misc/p5-Business-ISIN/pkg-descr (props changed) head/misc/p5-Business-ISSN/pkg-descr (props changed) head/misc/p5-Business-UPS/pkg-descr (props changed) head/misc/p5-Chatbot-Eliza/pkg-descr (props changed) head/misc/p5-Data-Buffer/pkg-descr (props changed) head/misc/p5-File-CounterFile/pkg-descr (props changed) head/misc/p5-File-Sort/pkg-descr (props changed) head/misc/p5-Geo-Cache/pkg-descr (props changed) head/misc/p5-Geo-Coder-Bing/pkg-descr (props changed) head/misc/p5-Geo-Coder-Geocoder-US/pkg-descr (props changed) head/misc/p5-Geo-Coder-Google/pkg-descr (props changed) head/misc/p5-Geo-Coder-Googlev3/pkg-descr (props changed) head/misc/p5-Geo-Coder-Many/pkg-descr (props changed) head/misc/p5-Geo-Coder-Mapquest/pkg-descr (props changed) head/misc/p5-Geo-Coder-Multimap/pkg-descr (props changed) head/misc/p5-Geo-Coder-Multiple/pkg-descr (props changed) head/misc/p5-Geo-Coder-Navteq/pkg-descr (props changed) head/misc/p5-Geo-Coder-OSM/pkg-descr (props changed) head/misc/p5-Geo-Coder-Ovi/pkg-descr (props changed) head/misc/p5-Geo-Coder-PlaceFinder/pkg-descr (props changed) head/misc/p5-Geo-Coder-TomTom/pkg-descr (props changed) head/misc/p5-Geo-Weather/pkg-descr (props changed) head/misc/p5-Geography-Countries/pkg-descr (props changed) head/misc/p5-I18N-Charset/pkg-descr (props changed) head/misc/p5-I18N-LangTags/pkg-descr (props changed) head/misc/p5-LEGO-RCX/pkg-descr (props changed) head/misc/p5-List-Compare/pkg-descr (props changed) head/misc/p5-List-Util-WeightedRoundRobin/pkg-descr (props changed) head/misc/p5-Locale-Codes/pkg-descr (props changed) head/misc/p5-Locale-Geocode/pkg-descr (props changed) head/misc/p5-Locale-Msgcat/pkg-descr (props changed) head/misc/p5-Locale-SubCountry/pkg-descr (props changed) head/misc/p5-Net-vCard/pkg-descr (props changed) head/misc/p5-Norge/pkg-descr (props changed) head/misc/p5-Software-License/pkg-descr (props changed) head/misc/p5-Test-Dir/pkg-descr (props changed) head/misc/p5-Text-FIGlet/pkg-descr (props changed) head/misc/p5-Tie-DxHash/pkg-descr (props changed) head/misc/p5-Zen-Koans/pkg-descr (props changed) head/misc/pantry/pkg-descr (props changed) head/misc/parley/pkg-descr (props changed) head/misc/pastebinit/pkg-descr (props changed) head/misc/patchutils/pkg-descr (props changed) head/misc/pauker/pkg-descr (props changed) head/misc/pciids/pkg-descr (props changed) head/misc/pdfmap/pkg-descr (props changed) head/misc/pdmenu/pkg-descr (props changed) head/misc/pear-Services_Weather/pkg-descr (props changed) head/misc/pear-Text_Figlet/pkg-descr (props changed) head/misc/phraze/pkg-descr (props changed) head/misc/pinfo/pkg-descr (props changed) head/misc/pipe/pkg-descr (props changed) head/misc/podsleuth/pkg-descr (props changed) head/misc/posixtestsuite/pkg-descr (props changed) head/misc/projectionlib/pkg-descr (props changed) head/misc/proxyper/pkg-descr (props changed) head/misc/pspresent/pkg-descr (props changed) head/misc/py-osd/pkg-descr (props changed) head/misc/py-pexpect/pkg-descr (props changed) head/misc/pylize/pkg-descr (props changed) head/misc/pypanda/pkg-descr (props changed) head/misc/qbrew/pkg-descr (props changed) head/misc/qlas/pkg-descr (props changed) head/misc/quick-lounge-applet/pkg-descr (props changed) head/misc/quotes/pkg-descr (props changed) head/misc/quranref/pkg-descr (props changed) head/misc/ree/pkg-descr (props changed) head/misc/rfc/pkg-descr (props changed) head/misc/ringtonetools/pkg-descr (props changed) head/misc/rname/pkg-descr (props changed) head/misc/rpl/pkg-descr (props changed) head/misc/rtfm/pkg-descr (props changed) head/misc/ruby-progressbar/pkg-descr (props changed) head/misc/ruby-vpim/pkg-descr (props changed) head/misc/rubygem-dotenv/pkg-descr (props changed) head/misc/rubygem-mime-types/pkg-descr (props changed) head/misc/rubygem-rabbit/pkg-descr (props changed) head/misc/rubygem-vpim/pkg-descr (props changed) head/misc/salias/pkg-descr (props changed) head/misc/seq2/pkg-descr (props changed) head/misc/shc/pkg-descr (props changed) head/misc/shuffle-db/pkg-descr (props changed) head/misc/shuffle/pkg-descr (props changed) head/misc/skyutils/pkg-descr (props changed) head/misc/sloccount/pkg-descr (props changed) head/misc/sls/pkg-descr (props changed) head/misc/smssend/pkg-descr (props changed) head/misc/spamcalc/pkg-descr (props changed) head/misc/sshbuddy/pkg-descr (props changed) head/misc/sssnips/pkg-descr (props changed) head/misc/stan/pkg-descr (props changed) head/misc/susv2/pkg-descr (props changed) head/misc/susv3/pkg-descr (props changed) head/misc/sword/pkg-descr (props changed) head/misc/table.el/pkg-descr (props changed) head/misc/talkfilters/pkg-descr (props changed) head/misc/tcb/pkg-descr (props changed) head/misc/team/pkg-descr (props changed) head/misc/telbook/pkg-descr (props changed) head/misc/tellico-kde4/pkg-descr (props changed) head/misc/tempcontrol/pkg-descr (props changed) head/misc/termatrix/pkg-descr (props changed) head/misc/terraform/pkg-descr (props changed) head/misc/teseq/pkg-descr (props changed) head/misc/tet/pkg-descr (props changed) head/misc/tkcron/pkg-descr (props changed) head/misc/tkinfo/pkg-descr (props changed) head/misc/tkman/pkg-descr (props changed) head/misc/tkregexp/pkg-descr (props changed) head/misc/tkrunit/pkg-descr (props changed) head/misc/toilet/pkg-descr (props changed) head/misc/tpp/pkg-descr (props changed) head/misc/translate/pkg-descr (props changed) head/misc/ttyrec/pkg-descr (props changed) head/misc/txt2regex/pkg-descr (props changed) head/misc/typetrainer/pkg-descr (props changed) head/misc/uf-view/pkg-descr (props changed) head/misc/uk-phone/pkg-descr (props changed) head/misc/uk-postcodes/pkg-descr (props changed) head/misc/umodunpack/pkg-descr (props changed) head/misc/unclutter/pkg-descr (props changed) head/misc/upclient/pkg-descr (props changed) head/misc/us-zipcodes/pkg-descr (props changed) head/misc/usbrh-libusb/pkg-descr (props changed) head/misc/utftools/pkg-descr (props changed) head/misc/vera/pkg-descr (props changed) head/misc/vifm/pkg-descr (props changed) head/misc/viz/pkg-descr (props changed) head/misc/whichman/pkg-descr (props changed) head/misc/window/pkg-descr (props changed) head/misc/wmScoreBoard/pkg-descr (props changed) head/misc/wmcalendar/pkg-descr (props changed) head/misc/wmfirew/pkg-descr (props changed) head/misc/wminfo/pkg-descr (props changed) head/misc/wmjulia/pkg-descr (props changed) head/misc/wmpal/pkg-descr (props changed) head/misc/wmtunlo/pkg-descr (props changed) head/misc/wmwork/pkg-descr (props changed) head/misc/wotsap/pkg-descr (props changed) head/misc/xbiso/pkg-descr (props changed) head/misc/xd/pkg-descr (props changed) head/misc/xdelta/pkg-descr (props changed) head/misc/xdg-menu/pkg-descr (props changed) head/misc/xfce4-appfinder/pkg-descr (props changed) head/misc/xfce4-artwork/pkg-descr (props changed) head/misc/xfce4-wm-themes/pkg-descr (props changed) head/misc/xgas/pkg-descr (props changed) head/misc/xiphos/pkg-descr (props changed) head/misc/xless/pkg-descr (props changed) head/misc/xmonad-log-applet/pkg-descr (props changed) head/misc/xosd/pkg-descr (props changed) head/misc/xpns/pkg-descr (props changed) head/misc/xsw/pkg-descr (props changed) head/misc/xtail/pkg-descr (props changed) head/misc/xtar/pkg-descr (props changed) head/misc/xtypo/pkg-descr (props changed) head/misc/yaunc/pkg-descr (props changed) head/misc/ytree/pkg-descr (props changed) head/misc/zoneinfo/pkg-descr (props changed) head/multimedia/2mandvd/pkg-descr (props changed) head/multimedia/ab25/pkg-descr (props changed) head/multimedia/abby/pkg-descr (props changed) head/multimedia/acidrip/pkg-descr (props changed) head/multimedia/aegisub/pkg-descr (props changed) head/multimedia/arista/pkg-descr (props changed) head/multimedia/asdcplib/pkg-descr (props changed) head/multimedia/assimp/pkg-descr (props changed) head/multimedia/atomicparsley/pkg-descr (props changed) head/multimedia/audacious-plugins/pkg-descr (props changed) head/multimedia/audacious/pkg-descr (props changed) head/multimedia/audiopreview/pkg-descr (props changed) head/multimedia/avbin/pkg-descr (props changed) head/multimedia/avidemux2/pkg-descr (props changed) head/multimedia/avinfo/pkg-descr (props changed) head/multimedia/banshee/pkg-descr (props changed) head/multimedia/beep-media-player/pkg-descr (props changed) head/multimedia/bino/pkg-descr (props changed) head/multimedia/bombono/pkg-descr (props changed) head/multimedia/bsdbktr_tvtune/pkg-descr (props changed) head/multimedia/camserv/pkg-descr (props changed) head/multimedia/castpodder/pkg-descr (props changed) head/multimedia/cclive/pkg-descr (props changed) head/multimedia/cheese/pkg-descr (props changed) head/multimedia/clipgrab/pkg-descr (props changed) head/multimedia/clive/pkg-descr (props changed) head/multimedia/clive1/pkg-descr (props changed) head/multimedia/clutter-gst/pkg-descr (props changed) head/multimedia/cuse4bsd-kmod/pkg-descr (props changed) head/multimedia/cx88/pkg-descr (props changed) head/multimedia/devede/pkg-descr (props changed) head/multimedia/dirac/pkg-descr (props changed) head/multimedia/dtv/pkg-descr (props changed) head/multimedia/dumpmpeg/pkg-descr (props changed) head/multimedia/dv2jpg/pkg-descr (props changed) head/multimedia/dv2sub/pkg-descr (props changed) head/multimedia/dvbcut/pkg-descr (props changed) head/multimedia/dvbsnoop/pkg-descr (props changed) head/multimedia/dvdauthor/pkg-descr (props changed) head/multimedia/dvdid/pkg-descr (props changed) head/multimedia/dvdrip/pkg-descr (props changed) head/multimedia/dvts/pkg-descr (props changed) head/multimedia/emotion/pkg-descr (props changed) head/multimedia/emovix/pkg-descr (props changed) head/multimedia/ffmpeg/pkg-descr (props changed) head/multimedia/ffmpeg0/pkg-descr (props changed) head/multimedia/ffmpeg2theora/pkg-descr (props changed) head/multimedia/ffmpegthumbnailer/pkg-descr (props changed) head/multimedia/flvmeta/pkg-descr (props changed) head/multimedia/flvstreamer/pkg-descr (props changed) head/multimedia/flvtool++/pkg-descr (props changed) head/multimedia/freetuxtv/pkg-descr (props changed) head/multimedia/freevo/pkg-descr (props changed) head/multimedia/fxtv/pkg-descr (props changed) head/multimedia/gaupol/pkg-descr (props changed) head/multimedia/gavl/pkg-descr (props changed) head/multimedia/gcap/pkg-descr (props changed) head/multimedia/gcfilms/pkg-descr (props changed) head/multimedia/gdialog/pkg-descr (props changed) head/multimedia/gdvrecv/pkg-descr (props changed) head/multimedia/ggrab/pkg-descr (props changed) head/multimedia/gmencoder/pkg-descr (props changed) head/multimedia/gmerlin-avdecoder/pkg-descr (props changed) head/multimedia/gmerlin/pkg-descr (props changed) head/multimedia/gmimms/pkg-descr (props changed) head/multimedia/gnome-mplayer/pkg-descr (props changed) head/multimedia/gnome-subtitles/pkg-descr (props changed) head/multimedia/gopchop/pkg-descr (props changed) head/multimedia/gpac-libgpac/pkg-descr (props changed) head/multimedia/gpac-mp4box/pkg-descr (props changed) head/multimedia/gpodder/pkg-descr (props changed) head/multimedia/grake/pkg-descr (props changed) head/multimedia/gst123/pkg-descr (props changed) head/multimedia/gstreamer-ffmpeg/pkg-descr (props changed) head/multimedia/gstreamer-plugins-all/pkg-descr (props changed) head/multimedia/gstreamer-plugins-buzztard/pkg-descr (props changed) head/multimedia/gstreamer-plugins-core/pkg-descr (props changed) head/multimedia/gstreamer-plugins-fluendo-mpegdemux/pkg-descr (props changed) head/multimedia/gstreamer-plugins-gnonlin/pkg-descr (props changed) head/multimedia/gstreamer-plugins/pkg-descr (props changed) head/multimedia/gstreamer-qt4/pkg-descr (props changed) head/multimedia/gstreamer/pkg-descr (props changed) head/multimedia/gstreamer1-libav/pkg-descr (props changed) head/multimedia/gstreamer1-plugins-all/pkg-descr (props changed) head/multimedia/gstreamer1-plugins-core/pkg-descr (props changed) head/multimedia/gstreamermm/pkg-descr (props changed) head/multimedia/gtk-recordmydesktop/pkg-descr (props changed) head/multimedia/gxanim/pkg-descr (props changed) head/multimedia/gxine/pkg-descr (props changed) head/multimedia/gxmms/pkg-descr (props changed) head/multimedia/handbrake/pkg-descr (props changed) head/multimedia/hs-gstreamer/pkg-descr (props changed) head/multimedia/imagination/pkg-descr (props changed) head/multimedia/iriverter/pkg-descr (props changed) head/multimedia/iso2mkv/pkg-descr (props changed) head/multimedia/jmref/pkg-descr (props changed) head/multimedia/k9copy-kde4/pkg-descr (props changed) head/multimedia/kaffeine/pkg-descr (props changed) head/multimedia/kino/pkg-descr (props changed) head/multimedia/kissdx/pkg-descr (props changed) head/multimedia/kmplayer-kde4/pkg-descr (props changed) head/multimedia/kplayer-kde4/pkg-descr (props changed) head/multimedia/libaacs/pkg-descr (props changed) head/multimedia/libass/pkg-descr (props changed) head/multimedia/libbluray/pkg-descr (props changed) head/multimedia/libcec/pkg-descr (props changed) head/multimedia/libdc1394/pkg-descr (props changed) head/multimedia/libdca/pkg-descr (props changed) head/multimedia/libdv/pkg-descr (props changed) head/multimedia/libdvbpsi/pkg-descr (props changed) head/multimedia/libdvdcss/pkg-descr (props changed) head/multimedia/libdvdnav/pkg-descr (props changed) head/multimedia/libdvdread/pkg-descr (props changed) head/multimedia/libfame/pkg-descr (props changed) head/multimedia/libkate/pkg-descr (props changed) head/multimedia/libmatroska/pkg-descr (props changed) head/multimedia/libmovtar/pkg-descr (props changed) head/multimedia/libmpeg2/pkg-descr (props changed) head/multimedia/libmpeg3/pkg-descr (props changed) head/multimedia/libquicktime-lame/pkg-descr (props changed) head/multimedia/libquicktime/pkg-descr (props changed) head/multimedia/libquvi-scripts/pkg-descr (props changed) head/multimedia/libquvi/pkg-descr (props changed) head/multimedia/librtmp/pkg-descr (props changed) head/multimedia/libsmacker/pkg-descr (props changed) head/multimedia/libtheora/pkg-descr (props changed) head/multimedia/libtuner/pkg-descr (props changed) head/multimedia/libv4l/pkg-descr (props changed) head/multimedia/libva/pkg-descr (props changed) head/multimedia/libvpx/pkg-descr (props changed) head/multimedia/libxine/pkg-descr (props changed) head/multimedia/libxspf/pkg-descr (props changed) head/multimedia/linux-f10-libv4l/pkg-descr (props changed) head/multimedia/linux-huludesktop/pkg-descr (props changed) head/multimedia/linux-realplayer/pkg-descr (props changed) head/multimedia/linux-tsmuxer/pkg-descr (props changed) head/multimedia/linux-xmovie/pkg-descr (props changed) head/multimedia/linux_dvbwrapper-kmod/pkg-descr (props changed) head/multimedia/linux_v4l2wrapper-kmod/pkg-descr (props changed) head/multimedia/lives/pkg-descr (props changed) head/multimedia/lxdvdrip/pkg-descr (props changed) head/multimedia/m2tstoavi/pkg-descr (props changed) head/multimedia/m2vrequantiser/pkg-descr (props changed) head/multimedia/mediadownloader/pkg-descr (props changed) head/multimedia/mencoder/pkg-descr (props changed) head/multimedia/mimms/pkg-descr (props changed) head/multimedia/miro/pkg-descr (props changed) head/multimedia/mjpegtools/pkg-descr (props changed) head/multimedia/mkclean/pkg-descr (props changed) head/multimedia/mkvalidator/pkg-descr (props changed) head/multimedia/mkvtoolnix/pkg-descr (props changed) head/multimedia/mkxvcd/pkg-descr (props changed) head/multimedia/mlt/pkg-descr (props changed) head/multimedia/mmpython/pkg-descr (props changed) head/multimedia/mmsclient/pkg-descr (props changed) head/multimedia/mmsrip/pkg-descr (props changed) head/multimedia/motion/pkg-descr (props changed) head/multimedia/mp4v2/pkg-descr (props changed) head/multimedia/mpeg2codec/pkg-descr (props changed) head/multimedia/mpeg2play/pkg-descr (props changed) head/multimedia/mpeg4ip/pkg-descr (props changed) head/multimedia/mpeg_encode/pkg-descr (props changed) head/multimedia/mpeg_play/pkg-descr (props changed) head/multimedia/mpeg_stat/pkg-descr (props changed) head/multimedia/mpgtx/pkg-descr (props changed) head/multimedia/mplayer-fonts/pkg-descr (props changed) head/multimedia/mplayer-skins/pkg-descr (props changed) head/multimedia/mplayer/pkg-descr (props changed) head/multimedia/mplayer2/pkg-descr (props changed) head/multimedia/mplayerxp/pkg-descr (props changed) head/multimedia/mplex/pkg-descr (props changed) head/multimedia/msdl/pkg-descr (props changed) head/multimedia/mxflib/pkg-descr (props changed) head/multimedia/mythtv-frontend/pkg-descr (props changed) head/multimedia/mythtv/pkg-descr (props changed) head/multimedia/nxtvepg/pkg-descr (props changed) head/multimedia/ogmrip/pkg-descr (props changed) head/multimedia/ogmtools/pkg-descr (props changed) head/multimedia/opencinematools/pkg-descr (props changed) head/multimedia/openmovieeditor/pkg-descr (props changed) head/multimedia/openquicktime/pkg-descr (props changed) head/multimedia/openshot/pkg-descr (props changed) head/multimedia/oqtencoder/pkg-descr (props changed) head/multimedia/oqtplayer/pkg-descr (props changed) head/multimedia/p5-Audio-M4P/pkg-descr (props changed) head/multimedia/p5-File-Format-RIFF/pkg-descr (props changed) head/multimedia/p5-GStreamer/pkg-descr (props changed) head/multimedia/p5-Subtitles/pkg-descr (props changed) head/multimedia/p5-Umph-Prompt/pkg-descr (props changed) head/multimedia/p5-Video-OpenQuicktime/pkg-descr (props changed) head/multimedia/phonon-gstreamer/pkg-descr (props changed) head/multimedia/phonon-xine/pkg-descr (props changed) head/multimedia/phonon/pkg-descr (props changed) head/multimedia/photofilmstrip/pkg-descr (props changed) head/multimedia/pitivi/pkg-descr (props changed) head/multimedia/playd/pkg-descr (props changed) head/multimedia/plexmediaserver/pkg-descr (props changed) head/multimedia/podcatcher/pkg-descr (props changed) head/multimedia/poe/pkg-descr (props changed) head/multimedia/ppm2fli/pkg-descr (props changed) head/multimedia/projectx/pkg-descr (props changed) head/multimedia/ptx-kmod/pkg-descr (props changed) head/multimedia/pvr250/pkg-descr (props changed) head/multimedia/pvrxxx/pkg-descr (props changed) head/multimedia/pwcbsd/pkg-descr (props changed) head/multimedia/pwcview/pkg-descr (props changed) head/multimedia/py-gstreamer/pkg-descr (props changed) head/multimedia/py-guessit/pkg-descr (props changed) head/multimedia/py-kaa-base/pkg-descr (props changed) head/multimedia/py-kaa-imlib2/pkg-descr (props changed) head/multimedia/py-kaa-metadata/pkg-descr (props changed) head/multimedia/py-periscope/pkg-descr (props changed) head/multimedia/py-pybmp/pkg-descr (props changed) head/multimedia/py-subliminal/pkg-descr (props changed) head/multimedia/pyjama/pkg-descr (props changed) head/multimedia/qmmp-plugin-pack/pkg-descr (props changed) head/multimedia/qmmp/pkg-descr (props changed) head/multimedia/qt-faststart/pkg-descr (props changed) head/multimedia/quark/pkg-descr (props changed) head/multimedia/quodlibet/pkg-descr (props changed) head/multimedia/quvi/pkg-descr (props changed) head/multimedia/recmpeg/pkg-descr (props changed) head/multimedia/recordmydesktop/pkg-descr (props changed) head/multimedia/replex/pkg-descr (props changed) head/multimedia/rox-videothumbnail/pkg-descr (props changed) head/multimedia/rtmpdump/pkg-descr (props changed) head/multimedia/ruby-flvtool2/pkg-descr (props changed) head/multimedia/rubygem-clutter-gstreamer/pkg-descr (props changed) head/multimedia/rubygem-gstreamer/pkg-descr (props changed) head/multimedia/sabbu/pkg-descr (props changed) head/multimedia/shell-fm/pkg-descr (props changed) head/multimedia/smile/pkg-descr (props changed) head/multimedia/smpeg/pkg-descr (props changed) head/multimedia/smplayer-skins/pkg-descr (props changed) head/multimedia/smplayer-themes/pkg-descr (props changed) head/multimedia/smplayer/pkg-descr (props changed) head/multimedia/sms1xxx-kmod/pkg-descr (props changed) head/multimedia/smtube/pkg-descr (props changed) head/multimedia/spigot/pkg-descr (props changed) head/multimedia/spook/pkg-descr (props changed) head/multimedia/streamanalyze/pkg-descr (props changed) head/multimedia/subtitleeditor/pkg-descr (props changed) head/multimedia/subtitleoffsetmodifier/pkg-descr (props changed) head/multimedia/subtitleripper/pkg-descr (props changed) head/multimedia/subtools/pkg-descr (props changed) head/multimedia/swfdec-gnome/pkg-descr (props changed) head/multimedia/szap-s2/pkg-descr (props changed) head/multimedia/tcmplex-panteltje/pkg-descr (props changed) head/multimedia/tivodecode/pkg-descr (props changed) head/multimedia/totem-pl-parser/pkg-descr (props changed) head/multimedia/totem/pkg-descr (props changed) head/multimedia/transcode/pkg-descr (props changed) head/multimedia/tstools/pkg-descr (props changed) head/multimedia/tunapie/pkg-descr (props changed) head/multimedia/umph/pkg-descr (props changed) head/multimedia/umplayer/pkg-descr (props changed) head/multimedia/v4l-utils/pkg-descr (props changed) head/multimedia/v4l_compat/pkg-descr (props changed) head/multimedia/vamps/pkg-descr (props changed) head/multimedia/vcdgear/pkg-descr (props changed) head/multimedia/vcdimager/pkg-descr (props changed) head/multimedia/vcdpad/pkg-descr (props changed) head/multimedia/vdpauinfo/pkg-descr (props changed) head/multimedia/vdr-plugin-control/pkg-descr (props changed) head/multimedia/vdr-plugin-eepg/pkg-descr (props changed) head/multimedia/vdr-plugin-epgsearch/pkg-descr (props changed) head/multimedia/vdr-plugin-extrecmenu/pkg-descr (props changed) head/multimedia/vdr-plugin-femon/pkg-descr (props changed) head/multimedia/vdr-plugin-infosatepg/pkg-descr (props changed) head/multimedia/vdr-plugin-iptv/pkg-descr (props changed) head/multimedia/vdr-plugin-markad/pkg-descr (props changed) head/multimedia/vdr-plugin-osdpip/pkg-descr (props changed) head/multimedia/vdr-plugin-osdteletext/pkg-descr (props changed) head/multimedia/vdr-plugin-reelchannelscan/pkg-descr (props changed) head/multimedia/vdr-plugin-remote/pkg-descr (props changed) head/multimedia/vdr-plugin-skinenigmang/pkg-descr (props changed) head/multimedia/vdr-plugin-sleeptimer/pkg-descr (props changed) head/multimedia/vdr-plugin-softdevice/pkg-descr (props changed) head/multimedia/vdr-plugin-softhddevice/pkg-descr (props changed) head/multimedia/vdr-plugin-streamdev/pkg-descr (props changed) head/multimedia/vdr-plugin-ttxtsubs/pkg-descr (props changed) head/multimedia/vdr-plugin-upnp/pkg-descr (props changed) head/multimedia/vdr-plugin-vdrmanager/pkg-descr (props changed) head/multimedia/vdr-plugin-wirbelscan/pkg-descr (props changed) head/multimedia/vdr-plugin-xineliboutput/pkg-descr (props changed) head/multimedia/vdr-plugin-xvdr/pkg-descr (props changed) head/multimedia/vdr-plugins/pkg-descr (props changed) head/multimedia/vdr/pkg-descr (props changed) head/multimedia/vic/pkg-descr (props changed) head/multimedia/vlc/pkg-descr (props changed) head/multimedia/vodcatcher/pkg-descr (props changed) head/multimedia/vtkmpeg2encode/pkg-descr (props changed) head/multimedia/w_scan/pkg-descr (props changed) head/multimedia/webcamd/pkg-descr (props changed) head/multimedia/win32-codecs/pkg-descr (props changed) head/multimedia/xanim/pkg-descr (props changed) head/multimedia/xbmc-addon-xvdr/pkg-descr (props changed) head/multimedia/xbmc-pvr/pkg-descr (props changed) head/multimedia/xfce4-parole/pkg-descr (props changed) head/multimedia/xfce4-xmms-plugin/pkg-descr (props changed) head/multimedia/xine/pkg-descr (props changed) head/multimedia/xmms-skins-huge/pkg-descr (props changed) head/multimedia/xmms-skins/pkg-descr (props changed) head/multimedia/xmms-status-plugin/pkg-descr (props changed) head/multimedia/xmms-weasel/pkg-descr (props changed) head/multimedia/xporthdmv/pkg-descr (props changed) head/multimedia/xtheater/pkg-descr (props changed) head/multimedia/xvid/pkg-descr (props changed) head/multimedia/y4mscaler/pkg-descr (props changed) head/multimedia/yamdi/pkg-descr (props changed) head/multimedia/youtube-viewer/pkg-descr (props changed) head/multimedia/zoneminder/pkg-descr (props changed) head/net-im/ari-yahoo/pkg-descr (props changed) head/net-im/ayttm/pkg-descr (props changed) head/net-im/bsflite/pkg-descr (props changed) head/net-im/centericq/pkg-descr (props changed) head/net-im/centerim-devel/pkg-descr (props changed) head/net-im/centerim/pkg-descr (props changed) head/net-im/chattahoochie/pkg-descr (props changed) head/net-im/cicquin/pkg-descr (props changed) head/net-im/cjc/pkg-descr (props changed) head/net-im/climm/pkg-descr (props changed) head/net-im/coccinella/pkg-descr (props changed) head/net-im/convey/pkg-descr (props changed) head/net-im/echat/pkg-descr (props changed) head/net-im/ejabberd/pkg-descr (props changed) head/net-im/emesene/pkg-descr (props changed) head/net-im/empathy/pkg-descr (props changed) head/net-im/farsight2/pkg-descr (props changed) head/net-im/finch/pkg-descr (props changed) head/net-im/folks/pkg-descr (props changed) head/net-im/folks04/pkg-descr (props changed) head/net-im/freetalk/pkg-descr (props changed) head/net-im/fugu/pkg-descr (props changed) head/net-im/gajim/pkg-descr (props changed) head/net-im/gale/pkg-descr (props changed) head/net-im/gloox/pkg-descr (props changed) head/net-im/gtkyahoo/pkg-descr (props changed) head/net-im/gyach/pkg-descr (props changed) head/net-im/hotot/pkg-descr (props changed) head/net-im/icb/pkg-descr (props changed) head/net-im/icmpchat/pkg-descr (props changed) head/net-im/icqlib/pkg-descr (props changed) head/net-im/imspector/pkg-descr (props changed) head/net-im/iserverd/pkg-descr (props changed) head/net-im/jabber-pyaim/pkg-descr (props changed) head/net-im/jabber-pyicq/pkg-descr (props changed) head/net-im/jabber.el/pkg-descr (props changed) head/net-im/jabber/pkg-descr (props changed) head/net-im/jabberd/pkg-descr (props changed) head/net-im/jarl/pkg-descr (props changed) head/net-im/jggtrans/pkg-descr (props changed) head/net-im/jitsi/pkg-descr (props changed) head/net-im/kde-telepathy/pkg-descr (props changed) head/net-im/kmess-kde4/pkg-descr (props changed) head/net-im/komclean/pkg-descr (props changed) head/net-im/libjingle/pkg-descr (props changed) head/net-im/libnice/pkg-descr (props changed) head/net-im/libpurple/pkg-descr (props changed) head/net-im/libtelepathy/pkg-descr (props changed) head/net-im/libyahoo2/pkg-descr (props changed) head/net-im/licq-icq/pkg-descr (props changed) head/net-im/licq-jabber/pkg-descr (props changed) head/net-im/licq-msn/pkg-descr (props changed) head/net-im/licq-osd/pkg-descr (props changed) head/net-im/licq-qt-gui/pkg-descr (props changed) head/net-im/licq/pkg-descr (props changed) head/net-im/linpopup/pkg-descr (props changed) head/net-im/loudmouth/pkg-descr (props changed) head/net-im/mbpurple/pkg-descr (props changed) head/net-im/mcabber/pkg-descr (props changed) head/net-im/meanwhile/pkg-descr (props changed) head/net-im/mercury/pkg-descr (props changed) head/net-im/mikutter/pkg-descr (props changed) head/net-im/mu-conference/pkg-descr (props changed) head/net-im/naim/pkg-descr (props changed) head/net-im/openfire-devel/pkg-descr (props changed) head/net-im/openfire/pkg-descr (props changed) head/net-im/p5-DJabberd/pkg-descr (props changed) head/net-im/p5-Jabber-Connection/pkg-descr (props changed) head/net-im/p5-Jabber-Lite/pkg-descr (props changed) head/net-im/p5-Net-AIM/pkg-descr (props changed) head/net-im/p5-Net-AOLIM/pkg-descr (props changed) head/net-im/p5-Net-Async-XMPP/pkg-descr (props changed) head/net-im/p5-Net-ICQ2000/pkg-descr (props changed) head/net-im/p5-Net-Jabber/pkg-descr (props changed) head/net-im/p5-Net-NetSend/pkg-descr (props changed) head/net-im/p5-Net-Stomp/pkg-descr (props changed) head/net-im/p5-Net-XMPP/pkg-descr (props changed) head/net-im/p5-Net-XMPP2/pkg-descr (props changed) head/net-im/p5-Protocol-XMPP/pkg-descr (props changed) head/net-im/p5-SOAP-Transport-JABBER/pkg-descr (props changed) head/net-im/papyon/pkg-descr (props changed) head/net-im/pebrot/pkg-descr (props changed) head/net-im/pecl-stomp/pkg-descr (props changed) head/net-im/pidgin-audacious-remote/pkg-descr (props changed) head/net-im/pidgin-birthday-reminder/pkg-descr (props changed) head/net-im/pidgin-bs/pkg-descr (props changed) head/net-im/pidgin-facebookchat/pkg-descr (props changed) head/net-im/pidgin-fetion/pkg-descr (props changed) head/net-im/pidgin-guifications/pkg-descr (props changed) head/net-im/pidgin-latex/pkg-descr (props changed) head/net-im/pidgin-libnotify/pkg-descr (props changed) head/net-im/pidgin-manualsize/pkg-descr (props changed) head/net-im/pidgin-osd/pkg-descr (props changed) head/net-im/pidgin-pidgimpd/pkg-descr (props changed) head/net-im/pidgin-privacy-please/pkg-descr (props changed) head/net-im/pidgin-rhythmbox/pkg-descr (props changed) head/net-im/pidgin-sipe/pkg-descr (props changed) head/net-im/pidgin-skype/pkg-descr (props changed) head/net-im/pidgin-twitter/pkg-descr (props changed) head/net-im/pidgin/pkg-descr (props changed) head/net-im/pork/pkg-descr (props changed) head/net-im/prosody/pkg-descr (props changed) head/net-im/psi/pkg-descr (props changed) head/net-im/psimedia/pkg-descr (props changed) head/net-im/pwytter/pkg-descr (props changed) head/net-im/py-jabber/pkg-descr (props changed) head/net-im/py-jabberbot/pkg-descr (props changed) head/net-im/py-punjab/pkg-descr (props changed) head/net-im/py-pyxmpp/pkg-descr (props changed) head/net-im/py-skype4py/pkg-descr (props changed) head/net-im/py-twistedWords/pkg-descr (props changed) head/net-im/py-xmpppy-irc/pkg-descr (props changed) head/net-im/py-xmpppy-yahoo/pkg-descr (props changed) head/net-im/py-xmpppy/pkg-descr (props changed) head/net-im/qq/pkg-descr (props changed) head/net-im/qwit-devel/pkg-descr (props changed) head/net-im/qwit/pkg-descr (props changed) head/net-im/qxmpp-leechcraft/pkg-descr (props changed) head/net-im/qxmpp/pkg-descr (props changed) head/net-im/ramblercontacts/pkg-descr (props changed) head/net-im/rubygem-termtter/pkg-descr (props changed) head/net-im/rubygem-tinder/pkg-descr (props changed) head/net-im/sendxmpp/pkg-descr (props changed) head/net-im/skype-devel/pkg-descr (props changed) head/net-im/skype/pkg-descr (props changed) head/net-im/telepathy-butterfly/pkg-descr (props changed) head/net-im/telepathy-farsight/pkg-descr (props changed) head/net-im/telepathy-gabble/pkg-descr (props changed) head/net-im/telepathy-haze/pkg-descr (props changed) head/net-im/telepathy-idle/pkg-descr (props changed) head/net-im/telepathy-logger-qt4/pkg-descr (props changed) head/net-im/telepathy-logger/pkg-descr (props changed) head/net-im/telepathy-mission-control/pkg-descr (props changed) head/net-im/telepathy-python/pkg-descr (props changed) head/net-im/telepathy-salut/pkg-descr (props changed) head/net-im/tkabber-devel/pkg-descr (props changed) head/net-im/tkabber-plugins/pkg-descr (props changed) head/net-im/tkabber/pkg-descr (props changed) head/net-im/tkabbur/pkg-descr (props changed) head/net-im/ttytter/pkg-descr (props changed) head/net-im/twitmail/pkg-descr (props changed) head/net-im/vicq/pkg-descr (props changed) head/net-im/vqcc-gtk/pkg-descr (props changed) head/net-im/yoono/pkg-descr (props changed) head/net-im/ysm/pkg-descr (props changed) head/net-im/zephyr/pkg-descr (props changed) head/net-mgmt/2ping/pkg-descr (props changed) head/net-mgmt/TkTopNetFlows/pkg-descr (props changed) head/net-mgmt/aggregate/pkg-descr (props changed) head/net-mgmt/aircrack-ng/pkg-descr (props changed) head/net-mgmt/airport/pkg-descr (props changed) head/net-mgmt/angst/pkg-descr (props changed) head/net-mgmt/ap-utils/pkg-descr (props changed) head/net-mgmt/argus-monitor/pkg-descr (props changed) head/net-mgmt/argus3-clients/pkg-descr (props changed) head/net-mgmt/argus3/pkg-descr (props changed) head/net-mgmt/arpalert/pkg-descr (props changed) head/net-mgmt/arpscan/pkg-descr (props changed) head/net-mgmt/arpwatch/pkg-descr (props changed) head/net-mgmt/arts++/pkg-descr (props changed) head/net-mgmt/aspathtree/pkg-descr (props changed) head/net-mgmt/bandwidthd/pkg-descr (props changed) head/net-mgmt/bgpq/pkg-descr (props changed) head/net-mgmt/bgpq3/pkg-descr (props changed) head/net-mgmt/bigsister/pkg-descr (props changed) head/net-mgmt/bpft/pkg-descr (props changed) head/net-mgmt/braa/pkg-descr (props changed) head/net-mgmt/bsd-airtools/pkg-descr (props changed) head/net-mgmt/bsnmp-jails/pkg-descr (props changed) head/net-mgmt/bsnmp-ucd/pkg-descr (props changed) head/net-mgmt/bsnmptools/pkg-descr (props changed) head/net-mgmt/bwm-ng/pkg-descr (props changed) head/net-mgmt/cacti-spine/pkg-descr (props changed) head/net-mgmt/cacti/pkg-descr (props changed) head/net-mgmt/cdpd/pkg-descr (props changed) head/net-mgmt/cdpr/pkg-descr (props changed) head/net-mgmt/cflowd/pkg-descr (props changed) head/net-mgmt/check_logfiles/pkg-descr (props changed) head/net-mgmt/check_multi/pkg-descr (props changed) head/net-mgmt/check_mysql_health/pkg-descr (props changed) head/net-mgmt/check_snmp_pkgvuln/pkg-descr (props changed) head/net-mgmt/chillispot/pkg-descr (props changed) head/net-mgmt/choparp/pkg-descr (props changed) head/net-mgmt/cidr/pkg-descr (props changed) head/net-mgmt/circe/pkg-descr (props changed) head/net-mgmt/cisco_conf/pkg-descr (props changed) head/net-mgmt/ciscoconf/pkg-descr (props changed) head/net-mgmt/clog/pkg-descr (props changed) head/net-mgmt/cnagios/pkg-descr (props changed) head/net-mgmt/collectd/pkg-descr (props changed) head/net-mgmt/collectd5/pkg-descr (props changed) head/net-mgmt/confregdecode/pkg-descr (props changed) head/net-mgmt/coovachilli/pkg-descr (props changed) head/net-mgmt/cowpatty/pkg-descr (props changed) head/net-mgmt/cricket/pkg-descr (props changed) head/net-mgmt/darkstat/pkg-descr (props changed) head/net-mgmt/devmon-templates/pkg-descr (props changed) head/net-mgmt/devmon/pkg-descr (props changed) head/net-mgmt/disco/pkg-descr (props changed) head/net-mgmt/docsis/pkg-descr (props changed) head/net-mgmt/driftnet/pkg-descr (props changed) head/net-mgmt/ehnt/pkg-descr (props changed) head/net-mgmt/etherape/pkg-descr (props changed) head/net-mgmt/ezradius/pkg-descr (props changed) head/net-mgmt/fetchconfig/pkg-descr (props changed) head/net-mgmt/flow-extract/pkg-descr (props changed) head/net-mgmt/flow-tools-ng/pkg-descr (props changed) head/net-mgmt/flow-tools/pkg-descr (props changed) head/net-mgmt/flowd/pkg-descr (props changed) head/net-mgmt/flowviewer/pkg-descr (props changed) head/net-mgmt/fprobe/pkg-descr (props changed) head/net-mgmt/fruity/pkg-descr (props changed) head/net-mgmt/glpi-plugins-fusioninventory-server/pkg-descr (props changed) head/net-mgmt/glpi-plugins-tracker-agent/pkg-descr (props changed) head/net-mgmt/glpi-plugins-tracker-server/pkg-descr (props changed) head/net-mgmt/gps/pkg-descr (props changed) head/net-mgmt/grepip/pkg-descr (props changed) head/net-mgmt/gsnmp/pkg-descr (props changed) head/net-mgmt/hastmon/pkg-descr (props changed) head/net-mgmt/hawk/pkg-descr (props changed) head/net-mgmt/horde3-nic/pkg-descr (props changed) head/net-mgmt/icinga/pkg-descr (props changed) head/net-mgmt/icmpmonitor/pkg-descr (props changed) head/net-mgmt/icmpquery/pkg-descr (props changed) head/net-mgmt/ifgraph/pkg-descr (props changed) head/net-mgmt/iftop/pkg-descr (props changed) head/net-mgmt/iog/pkg-descr (props changed) head/net-mgmt/ipacco/pkg-descr (props changed) head/net-mgmt/ipacctd/pkg-descr (props changed) head/net-mgmt/ipaudit/pkg-descr (props changed) head/net-mgmt/ipcad/pkg-descr (props changed) head/net-mgmt/ipcalc/pkg-descr (props changed) head/net-mgmt/ipfm/pkg-descr (props changed) head/net-mgmt/ipplan/pkg-descr (props changed) head/net-mgmt/ipv6calc/pkg-descr (props changed) head/net-mgmt/ipv6gen/pkg-descr (props changed) head/net-mgmt/ipv6mon/pkg-descr (props changed) head/net-mgmt/irrtoolset/pkg-descr (props changed) head/net-mgmt/isic/pkg-descr (props changed) head/net-mgmt/jnettop/pkg-descr (props changed) head/net-mgmt/kismet/pkg-descr (props changed) head/net-mgmt/lanmap/pkg-descr (props changed) head/net-mgmt/libsmi/pkg-descr (props changed) head/net-mgmt/macroscope/pkg-descr (props changed) head/net-mgmt/mbrowse/pkg-descr (props changed) head/net-mgmt/mk-livestatus/pkg-descr (props changed) head/net-mgmt/mrtg-ping-probe/pkg-descr (props changed) head/net-mgmt/mrtg/pkg-descr (props changed) head/net-mgmt/mtrace/pkg-descr (props changed) head/net-mgmt/nagcon/pkg-descr (props changed) head/net-mgmt/nagios-certexp-plugin/pkg-descr (props changed) head/net-mgmt/nagios-check_clamav/pkg-descr (props changed) head/net-mgmt/nagios-check_cpu_usage/pkg-descr (props changed) head/net-mgmt/nagios-check_email_delivery/pkg-descr (props changed) head/net-mgmt/nagios-check_hdd_health/pkg-descr (props changed) head/net-mgmt/nagios-check_hp_bladechassis/pkg-descr (props changed) head/net-mgmt/nagios-check_kumofs/pkg-descr (props changed) head/net-mgmt/nagios-check_memcached_paranoid/pkg-descr (props changed) head/net-mgmt/nagios-check_mysql_slave/pkg-descr (props changed) head/net-mgmt/nagios-check_netsnmp/pkg-descr (props changed) head/net-mgmt/nagios-check_ports/pkg-descr (props changed) head/net-mgmt/nagios-check_puppet/pkg-descr (props changed) head/net-mgmt/nagios-check_smartmon/pkg-descr (props changed) head/net-mgmt/nagios-check_tftp/pkg-descr (props changed) head/net-mgmt/nagios-devel/pkg-descr (props changed) head/net-mgmt/nagios-geom/pkg-descr (props changed) head/net-mgmt/nagios-openldap-plugins/pkg-descr (props changed) head/net-mgmt/nagios-pf-plugin/pkg-descr (props changed) head/net-mgmt/nagios-portaudit/pkg-descr (props changed) head/net-mgmt/nagios-silfreed-plugins/pkg-descr (props changed) head/net-mgmt/nagios-snmp-plugins-extras/pkg-descr (props changed) head/net-mgmt/nagios-snmp-plugins/pkg-descr (props changed) head/net-mgmt/nagios-spamd-plugin/pkg-descr (props changed) head/net-mgmt/nagios/pkg-descr (props changed) head/net-mgmt/nagiosagent/pkg-descr (props changed) head/net-mgmt/nagiosgraph/pkg-descr (props changed) head/net-mgmt/nagiosql/pkg-descr (props changed) head/net-mgmt/nagiostat/pkg-descr (props changed) head/net-mgmt/nagircbot/pkg-descr (props changed) head/net-mgmt/nagstamon/pkg-descr (props changed) head/net-mgmt/nagtail/pkg-descr (props changed) head/net-mgmt/nagvis/pkg-descr (props changed) head/net-mgmt/nat/pkg-descr (props changed) head/net-mgmt/nbtscan/pkg-descr (props changed) head/net-mgmt/ndoutils/pkg-descr (props changed) head/net-mgmt/ndpmon/pkg-descr (props changed) head/net-mgmt/nedi/pkg-descr (props changed) head/net-mgmt/nefu/pkg-descr (props changed) head/net-mgmt/net-snmp/pkg-descr (props changed) head/net-mgmt/netams-front/pkg-descr (props changed) head/net-mgmt/netams/pkg-descr (props changed) head/net-mgmt/netdisco-mibs/pkg-descr (props changed) head/net-mgmt/netdisco/pkg-descr (props changed) head/net-mgmt/netdot/pkg-descr (props changed) head/net-mgmt/netleak/pkg-descr (props changed) head/net-mgmt/netmagis-common/pkg-descr (props changed) head/net-mgmt/netmask/pkg-descr (props changed) head/net-mgmt/netmond/pkg-descr (props changed) head/net-mgmt/netspoc/pkg-descr (props changed) head/net-mgmt/netustad/pkg-descr (props changed) head/net-mgmt/netwag/pkg-descr (props changed) head/net-mgmt/netwox/pkg-descr (props changed) head/net-mgmt/netxms/pkg-descr (props changed) head/net-mgmt/nfsen/pkg-descr (props changed) head/net-mgmt/ng_ipacct/pkg-descr (props changed) head/net-mgmt/nitpicker/pkg-descr (props changed) head/net-mgmt/nocol/pkg-descr (props changed) head/net-mgmt/nrpe/pkg-descr (props changed) head/net-mgmt/nsca/pkg-descr (props changed) head/net-mgmt/nsca27/pkg-descr (props changed) head/net-mgmt/nstreams/pkg-descr (props changed) head/net-mgmt/observium/pkg-descr (props changed) head/net-mgmt/ocsinventory-agent/pkg-descr (props changed) head/net-mgmt/ocsinventory-ng/pkg-descr (props changed) head/net-mgmt/openlldp/pkg-descr (props changed) head/net-mgmt/openvmps/pkg-descr (props changed) head/net-mgmt/ourmon/pkg-descr (props changed) head/net-mgmt/p0f/pkg-descr (props changed) head/net-mgmt/p0f2/pkg-descr (props changed) head/net-mgmt/p5-BigIP-iControl/pkg-descr (props changed) head/net-mgmt/p5-Data-Validate-IP/pkg-descr (props changed) head/net-mgmt/p5-FusionInventory-Agent-Task-NetDiscovery/pkg-descr (props changed) head/net-mgmt/p5-FusionInventory-Agent-Task-SNMPQuery/pkg-descr (props changed) head/net-mgmt/p5-FusionInventory-Agent/pkg-descr (props changed) head/net-mgmt/p5-GRNOC-TL1/pkg-descr (props changed) head/net-mgmt/p5-Mon/pkg-descr (props changed) head/net-mgmt/p5-NSNMP/pkg-descr (props changed) head/net-mgmt/p5-Nagios-Object/pkg-descr (props changed) head/net-mgmt/p5-Nagios-Plugin/pkg-descr (props changed) head/net-mgmt/p5-Nagios-Plugins-Memcached/pkg-descr (props changed) head/net-mgmt/p5-Net-CIDR/pkg-descr (props changed) head/net-mgmt/p5-Net-ILO/pkg-descr (props changed) head/net-mgmt/p5-Net-IP-Match-Regexp/pkg-descr (props changed) head/net-mgmt/p5-Net-IP-Match-XS/pkg-descr (props changed) head/net-mgmt/p5-Net-IP-Resolver/pkg-descr (props changed) head/net-mgmt/p5-Net-IP/pkg-descr (props changed) head/net-mgmt/p5-Net-Netmask/pkg-descr (props changed) head/net-mgmt/p5-Net-SNMP/pkg-descr (props changed) head/net-mgmt/p5-Net-Telnet-Cisco-IOS/pkg-descr (props changed) head/net-mgmt/p5-NetAddr-IP/pkg-descr (props changed) head/net-mgmt/p5-NetApp/pkg-descr (props changed) head/net-mgmt/p5-POE-Component-SNMP/pkg-descr (props changed) head/net-mgmt/p5-SNMP-MIB-Compiler/pkg-descr (props changed) head/net-mgmt/p5-SNMP-Simple/pkg-descr (props changed) head/net-mgmt/p5-SNMP-Trapinfo/pkg-descr (props changed) head/net-mgmt/p5-SNMP-Util/pkg-descr (props changed) head/net-mgmt/p5-SNMP_Session/pkg-descr (props changed) head/net-mgmt/p5-Telnet-Cisco/pkg-descr (props changed) head/net-mgmt/p5-Tie-NetAddr-IP/pkg-descr (props changed) head/net-mgmt/packit/pkg-descr (props changed) head/net-mgmt/pads/pkg-descr (props changed) head/net-mgmt/pancho/pkg-descr (props changed) head/net-mgmt/pandorafms_agent/pkg-descr (props changed) head/net-mgmt/pandorafms_console/pkg-descr (props changed) head/net-mgmt/pandorafms_server/pkg-descr (props changed) head/net-mgmt/percona-monitoring-plugins/pkg-descr (props changed) head/net-mgmt/pftabled/pkg-descr (props changed) head/net-mgmt/phpip/pkg-descr (props changed) head/net-mgmt/phpipam/pkg-descr (props changed) head/net-mgmt/phpweathermap/pkg-descr (props changed) head/net-mgmt/pixilate/pkg-descr (props changed) head/net-mgmt/pmacct/pkg-descr (props changed) head/net-mgmt/pnp/pkg-descr (props changed) head/net-mgmt/portmon/pkg-descr (props changed) head/net-mgmt/py-flowtools/pkg-descr (props changed) head/net-mgmt/py-pyang/pkg-descr (props changed) head/net-mgmt/py-snmp4-apps/pkg-descr (props changed) head/net-mgmt/py-snmp4-mibs/pkg-descr (props changed) head/net-mgmt/py-snmp4/pkg-descr (props changed) head/net-mgmt/py-yapsnmp/pkg-descr (props changed) head/net-mgmt/qkismet/pkg-descr (props changed) head/net-mgmt/rackmonkey/pkg-descr (props changed) head/net-mgmt/ramond/pkg-descr (props changed) head/net-mgmt/rancid-devel/pkg-descr (props changed) head/net-mgmt/rancid/pkg-descr (props changed) head/net-mgmt/rate/pkg-descr (props changed) head/net-mgmt/rcpd/pkg-descr (props changed) head/net-mgmt/remarp/pkg-descr (props changed) head/net-mgmt/rotorouter/pkg-descr (props changed) head/net-mgmt/routers2-extensions/pkg-descr (props changed) head/net-mgmt/routers2-extras/pkg-descr (props changed) head/net-mgmt/routers2/pkg-descr (props changed) head/net-mgmt/rrdbot/pkg-descr (props changed) head/net-mgmt/rubygem-snmp/pkg-descr (props changed) head/net-mgmt/rubygem-visage-app/pkg-descr (props changed) head/net-mgmt/satellite/pkg-descr (props changed) head/net-mgmt/sblim-wbemcli/pkg-descr (props changed) head/net-mgmt/scdp/pkg-descr (props changed) head/net-mgmt/scli/pkg-descr (props changed) head/net-mgmt/sdig/pkg-descr (props changed) head/net-mgmt/send/pkg-descr (props changed) head/net-mgmt/sendip/pkg-descr (props changed) head/net-mgmt/sing/pkg-descr (props changed) head/net-mgmt/sipcalc/pkg-descr (props changed) head/net-mgmt/sjitter/pkg-descr (props changed) head/net-mgmt/slate/pkg-descr (props changed) head/net-mgmt/smokeping/pkg-descr (props changed) head/net-mgmt/snmp++/pkg-descr (props changed) head/net-mgmt/snmp4nagios/pkg-descr (props changed) head/net-mgmt/snmptt/pkg-descr (props changed) head/net-mgmt/softflowd/pkg-descr (props changed) head/net-mgmt/spectools/pkg-descr (props changed) head/net-mgmt/ssgless/pkg-descr (props changed) head/net-mgmt/subcalc/pkg-descr (props changed) head/net-mgmt/sysmon/pkg-descr (props changed) head/net-mgmt/tcpreplay/pkg-descr (props changed) head/net-mgmt/tcptrack/pkg-descr (props changed) head/net-mgmt/torrus/pkg-descr (props changed) head/net-mgmt/vidalia/pkg-descr (props changed) head/net-mgmt/virt-viewer/pkg-descr (props changed) head/net-mgmt/virtinst/pkg-descr (props changed) head/net-mgmt/wdiag/pkg-descr (props changed) head/net-mgmt/weathermap/pkg-descr (props changed) head/net-mgmt/weplab/pkg-descr (props changed) head/net-mgmt/whatmask/pkg-descr (props changed) head/net-mgmt/wide-dhcp/pkg-descr (props changed) head/net-mgmt/wifimgr/pkg-descr (props changed) head/net-mgmt/wmi-client/pkg-descr (props changed) head/net-mgmt/xymon-client/pkg-descr (props changed) head/net-mgmt/xymon-server/pkg-descr (props changed) head/net-mgmt/yabm/pkg-descr (props changed) head/net-mgmt/yaf/pkg-descr (props changed) head/net-mgmt/zabbix2-server/pkg-descr (props changed) head/net-mgmt/zabbix22-server/pkg-descr (props changed) head/net-mgmt/zenoss/pkg-descr (props changed) head/net-mgmt/zenpack-checkping/pkg-descr (props changed) head/net-mgmt/zenpack-dellmon/pkg-descr (props changed) head/net-mgmt/zenpack-deviceadvdetail/pkg-descr (props changed) head/net-mgmt/zenpack-devicesearch/pkg-descr (props changed) head/net-mgmt/zenpack-graphportlet/pkg-descr (props changed) head/net-mgmt/zenpack-interfacegraphs/pkg-descr (props changed) head/net-mgmt/zenpack-libvirt/pkg-descr (props changed) head/net-mgmt/zenpack-macreport/pkg-descr (props changed) head/net-p2p/amule-devel/pkg-descr (props changed) head/net-p2p/amule/pkg-descr (props changed) head/net-p2p/azureus2/pkg-descr (props changed) head/net-p2p/bitcoin/pkg-descr (props changed) head/net-p2p/bitflu/pkg-descr (props changed) head/net-p2p/bitmessage/pkg-descr (props changed) head/net-p2p/bittyrant/pkg-descr (props changed) head/net-p2p/bnbt/pkg-descr (props changed) head/net-p2p/btpd/pkg-descr (props changed) head/net-p2p/btqueue/pkg-descr (props changed) head/net-p2p/cdonkey/pkg-descr (props changed) head/net-p2p/cpuminer/pkg-descr (props changed) head/net-p2p/createtorrent/pkg-descr (props changed) head/net-p2p/ctcs/pkg-descr (props changed) head/net-p2p/ctorrent/pkg-descr (props changed) head/net-p2p/dclib/pkg-descr (props changed) head/net-p2p/digitalcoin/pkg-descr (props changed) head/net-p2p/ed2k/pkg-descr (props changed) head/net-p2p/edonkey-tool-hash/pkg-descr (props changed) head/net-p2p/eiskaltdcpp-cli/pkg-descr (props changed) head/net-p2p/eiskaltdcpp-daemon/pkg-descr (props changed) head/net-p2p/eiskaltdcpp-data/pkg-descr (props changed) head/net-p2p/eiskaltdcpp-gtk/pkg-descr (props changed) head/net-p2p/eiskaltdcpp-lib/pkg-descr (props changed) head/net-p2p/eiskaltdcpp-qt/pkg-descr (props changed) head/net-p2p/frost/pkg-descr (props changed) head/net-p2p/gkremldk/pkg-descr (props changed) head/net-p2p/gnewtellium/pkg-descr (props changed) head/net-p2p/gnunet-gtk/pkg-descr (props changed) head/net-p2p/gnunet/pkg-descr (props changed) head/net-p2p/gtk-gnutella/pkg-descr (props changed) head/net-p2p/gtkhx/pkg-descr (props changed) head/net-p2p/gtorrentviewer/pkg-descr (props changed) head/net-p2p/i2p/pkg-descr (props changed) head/net-p2p/ktorrent/pkg-descr (props changed) head/net-p2p/libbt/pkg-descr (props changed) head/net-p2p/liberator/pkg-descr (props changed) head/net-p2p/libktorrent/pkg-descr (props changed) head/net-p2p/libpdtp/pkg-descr (props changed) head/net-p2p/libtorrent-rasterbar/pkg-descr (props changed) head/net-p2p/libtorrent/pkg-descr (props changed) head/net-p2p/linux-jigdo/pkg-descr (props changed) head/net-p2p/linuxdcpp/pkg-descr (props changed) head/net-p2p/litecoin/pkg-descr (props changed) head/net-p2p/lopster/pkg-descr (props changed) head/net-p2p/microdc2/pkg-descr (props changed) head/net-p2p/minder/pkg-descr (props changed) head/net-p2p/mktorrent/pkg-descr (props changed) head/net-p2p/mldonkey-perlreactor/pkg-descr (props changed) head/net-p2p/mldonkey-urlslave/pkg-descr (props changed) head/net-p2p/mldonkey/pkg-descr (props changed) head/net-p2p/napshare/pkg-descr (props changed) head/net-p2p/ncdc/pkg-descr (props changed) head/net-p2p/opendchub/pkg-descr (props changed) head/net-p2p/opennap/pkg-descr (props changed) head/net-p2p/p5-Net-BitTorrent-File/pkg-descr (props changed) head/net-p2p/p5-Net-DirectConnect-TigerHash/pkg-descr (props changed) head/net-p2p/p5-WWW-BitTorrent/pkg-descr (props changed) head/net-p2p/phex/pkg-descr (props changed) head/net-p2p/py-fngrab/pkg-descr (props changed) head/net-p2p/py-kenosis/pkg-descr (props changed) head/net-p2p/py-py2play/pkg-descr (props changed) head/net-p2p/py-vertex/pkg-descr (props changed) head/net-p2p/qbittorrent/pkg-descr (props changed) head/net-p2p/retroshare/pkg-descr (props changed) head/net-p2p/rtgui/pkg-descr (props changed) head/net-p2p/rtorrent/pkg-descr (props changed) head/net-p2p/solidcoin/pkg-descr (props changed) head/net-p2p/squall/pkg-descr (props changed) head/net-p2p/teknap/pkg-descr (props changed) head/net-p2p/torrentsniff/pkg-descr (props changed) head/net-p2p/transmission-cli/pkg-descr (props changed) head/net-p2p/transmission-daemon/pkg-descr (props changed) head/net-p2p/transmission-gtk/pkg-descr (props changed) head/net-p2p/transmission-qt4/pkg-descr (props changed) head/net-p2p/transmission-remote-gui/pkg-descr (props changed) head/net-p2p/transmission/pkg-descr (props changed) head/net-p2p/tribler/pkg-descr (props changed) head/net-p2p/uhub/pkg-descr (props changed) head/net-p2p/unworkable/pkg-descr (props changed) head/net-p2p/valknut/pkg-descr (props changed) head/net-p2p/verlihub-plugins-chatroom/pkg-descr (props changed) head/net-p2p/verlihub-plugins-floodprotect/pkg-descr (props changed) head/net-p2p/verlihub-plugins-forbid/pkg-descr (props changed) head/net-p2p/verlihub-plugins-iplog/pkg-descr (props changed) head/net-p2p/verlihub-plugins-isp/pkg-descr (props changed) head/net-p2p/verlihub-plugins-luascript/pkg-descr (props changed) head/net-p2p/verlihub-plugins-messanger/pkg-descr (props changed) head/net-p2p/verlihub-plugins-stats/pkg-descr (props changed) head/net-p2p/verlihub-plugins/pkg-descr (props changed) head/net-p2p/verlihub/pkg-descr (props changed) head/net-p2p/vhcp/pkg-descr (props changed) head/net-p2p/vuze/pkg-descr (props changed) head/net-p2p/xnap/pkg-descr (props changed) head/net-p2p/zetacoin/pkg-descr (props changed) head/net/3proxy/pkg-descr (props changed) head/net/44bsd-rdist/pkg-descr (props changed) head/net/6tunnel/pkg-descr (props changed) head/net/AquaGatekeeper/pkg-descr (props changed) head/net/DarwinStreamingServer/pkg-descr (props changed) head/net/GeoIP/pkg-descr (props changed) head/net/R-cran-twitteR/pkg-descr (props changed) head/net/Sockets/pkg-descr (props changed) head/net/abills/pkg-descr (props changed) head/net/activemq/pkg-descr (props changed) head/net/acx100/pkg-descr (props changed) head/net/afpfs-ng/pkg-descr (props changed) head/net/aget/pkg-descr (props changed) head/net/aoe/pkg-descr (props changed) head/net/apinger/pkg-descr (props changed) head/net/arp-scan/pkg-descr (props changed) head/net/arp-sk/pkg-descr (props changed) head/net/arpdig/pkg-descr (props changed) head/net/arping/pkg-descr (props changed) head/net/arprelease/pkg-descr (props changed) head/net/asfrecorder/pkg-descr (props changed) head/net/asio/pkg-descr (props changed) head/net/aslookup/pkg-descr (props changed) head/net/asterisk-oh323/pkg-descr (props changed) head/net/asterisk/pkg-descr (props changed) head/net/asterisk10/pkg-descr (props changed) head/net/asterisk11/pkg-descr (props changed) head/net/asterisk14-addons/pkg-descr (props changed) head/net/asterisk14/pkg-descr (props changed) head/net/avahi-app/pkg-descr (props changed) head/net/avahi-autoipd/pkg-descr (props changed) head/net/avahi-gtk/pkg-descr (props changed) head/net/avahi-gtk3/pkg-descr (props changed) head/net/avahi-header/pkg-descr (props changed) head/net/avahi-libdns/pkg-descr (props changed) head/net/avahi-qt4/pkg-descr (props changed) head/net/avahi-sharp/pkg-descr (props changed) head/net/avahi/pkg-descr (props changed) head/net/babeld/pkg-descr (props changed) head/net/balance/pkg-descr (props changed) head/net/bcusdk-eibd/pkg-descr (props changed) head/net/beacon/pkg-descr (props changed) head/net/beanstalkd/pkg-descr (props changed) head/net/bindtest/pkg-descr (props changed) head/net/binkd/pkg-descr (props changed) head/net/bird-devel/pkg-descr (props changed) head/net/bird/pkg-descr (props changed) head/net/bird6/pkg-descr (props changed) head/net/bittwist/pkg-descr (props changed) head/net/blam/pkg-descr (props changed) head/net/bld/pkg-descr (props changed) head/net/bmon/pkg-descr (props changed) head/net/boclient/pkg-descr (props changed) head/net/boinc-client/pkg-descr (props changed) head/net/boinc_curses/pkg-descr (props changed) head/net/bounce/pkg-descr (props changed) head/net/bsdproxy/pkg-descr (props changed) head/net/bwi-firmware-kmod/pkg-descr (props changed) head/net/bwn-firmware-kmod/pkg-descr (props changed) head/net/bwping/pkg-descr (props changed) head/net/c3270/pkg-descr (props changed) head/net/cagibi/pkg-descr (props changed) head/net/callweaver/pkg-descr (props changed) head/net/ccxstream/pkg-descr (props changed) head/net/clamz/pkg-descr (props changed) head/net/click/pkg-descr (props changed) head/net/clusterit/pkg-descr (props changed) head/net/cnd/pkg-descr (props changed) head/net/cnet/pkg-descr (props changed) head/net/cnupm/pkg-descr (props changed) head/net/coda6_client/pkg-descr (props changed) head/net/coda6_server/pkg-descr (props changed) head/net/corkscrew/pkg-descr (props changed) head/net/crtmpserver/pkg-descr (props changed) head/net/cryptcat/pkg-descr (props changed) head/net/csocks/pkg-descr (props changed) head/net/csync2/pkg-descr (props changed) head/net/ct/pkg-descr (props changed) head/net/ctrace/pkg-descr (props changed) head/net/cvsup-mirror/pkg-descr (props changed) head/net/cvsup/pkg-descr (props changed) head/net/cvsup/pkg-descr.nogui (props changed) head/net/cvsupchk/pkg-descr (props changed) head/net/cvsync/pkg-descr (props changed) head/net/cyphesis/pkg-descr (props changed) head/net/daemonlogger/pkg-descr (props changed) head/net/dante/pkg-descr (props changed) head/net/daq/pkg-descr (props changed) head/net/datapipe/pkg-descr (props changed) head/net/dbeacon/pkg-descr (props changed) head/net/delegate/pkg-descr (props changed) head/net/desktop-data-model/pkg-descr (props changed) head/net/despoof/pkg-descr (props changed) head/net/dgd-kernel/pkg-descr (props changed) head/net/dgd-lpmud/pkg-descr (props changed) head/net/dgd/pkg-descr (props changed) head/net/dhcp6/pkg-descr (props changed) head/net/dhcpcd/pkg-descr (props changed) head/net/dhcpd-pools/pkg-descr (props changed) head/net/dhcpdump/pkg-descr (props changed) head/net/dhcperf/pkg-descr (props changed) head/net/dhcping/pkg-descr (props changed) head/net/dhcprelay/pkg-descr (props changed) head/net/dhcprelya/pkg-descr (props changed) head/net/dictd-database/pkg-descr (props changed) head/net/dictd/pkg-descr (props changed) head/net/dimes/pkg-descr (props changed) head/net/dosdetector/pkg-descr (props changed) head/net/drawterm/pkg-descr (props changed) head/net/dropbox-api-command/pkg-descr (props changed) head/net/dropbox-uploader/pkg-descr (props changed) head/net/dtcp/pkg-descr (props changed) head/net/dtcpclient/pkg-descr (props changed) head/net/e169-stats/pkg-descr (props changed) head/net/easysoap/pkg-descr (props changed) head/net/echoping/pkg-descr (props changed) head/net/ecore-con/pkg-descr (props changed) head/net/empty/pkg-descr (props changed) head/net/enet/pkg-descr (props changed) head/net/entitymib/pkg-descr (props changed) head/net/erlang_xmlrpc/pkg-descr (props changed) head/net/etherboot/pkg-descr (props changed) head/net/etrace/pkg-descr (props changed) head/net/findmtu/pkg-descr (props changed) head/net/flowgrep/pkg-descr (props changed) head/net/fonulator/pkg-descr (props changed) head/net/forg/pkg-descr (props changed) head/net/fping/pkg-descr (props changed) head/net/freebsd-tftp/pkg-descr (props changed) head/net/freebsd-uucp/pkg-descr (props changed) head/net/freedbd/pkg-descr (props changed) head/net/freenet6/pkg-descr (props changed) head/net/freenx/pkg-descr (props changed) head/net/freeradius-client/pkg-descr (props changed) head/net/freeradius2/pkg-descr (props changed) head/net/freeradius3/pkg-descr (props changed) head/net/freeswitch-core-devel/pkg-descr (props changed) head/net/freeswitch-curl-devel/pkg-descr (props changed) head/net/freeswitch-devel/pkg-descr (props changed) head/net/freeswitch-insideout-devel/pkg-descr (props changed) head/net/freeswitch-sbc-devel/pkg-descr (props changed) head/net/freeswitch-vanilla-devel/pkg-descr (props changed) head/net/freevrrpd/pkg-descr (props changed) head/net/freewais-sf/pkg-descr (props changed) head/net/frickin/pkg-descr (props changed) head/net/fspclient/pkg-descr (props changed) head/net/fspd/pkg-descr (props changed) head/net/fsplib/pkg-descr (props changed) head/net/get_iplayer/pkg-descr (props changed) head/net/gini/pkg-descr (props changed) head/net/gkrellmqst/pkg-descr (props changed) head/net/gkrellmwireless2/pkg-descr (props changed) head/net/glflow/pkg-descr (props changed) head/net/gnet2/pkg-descr (props changed) head/net/gnetcat/pkg-descr (props changed) head/net/gnome-mud/pkg-descr (props changed) head/net/gnome-netstatus/pkg-descr (props changed) head/net/gnome-nettool/pkg-descr (props changed) head/net/gnu-dico/pkg-descr (props changed) head/net/gnu-radius/pkg-descr (props changed) head/net/go.net/pkg-descr (props changed) head/net/gofish/pkg-descr (props changed) head/net/gogoc/pkg-descr (props changed) head/net/googolplex/pkg-descr (props changed) head/net/gopher/pkg-descr (props changed) head/net/gotthard/pkg-descr (props changed) head/net/gpxe/pkg-descr (props changed) head/net/gq/pkg-descr (props changed) head/net/grdesktop/pkg-descr (props changed) head/net/grive/pkg-descr (props changed) head/net/gsk/pkg-descr (props changed) head/net/gspoof/pkg-descr (props changed) head/net/gssdp/pkg-descr (props changed) head/net/gtic/pkg-descr (props changed) head/net/gtk-vnc/pkg-descr (props changed) head/net/gtknetcat/pkg-descr (props changed) head/net/gupnp-av/pkg-descr (props changed) head/net/gupnp-igd/pkg-descr (props changed) head/net/gupnp-ui/pkg-descr (props changed) head/net/gupnp/pkg-descr (props changed) head/net/gutenfetch/pkg-descr (props changed) head/net/gwhois/pkg-descr (props changed) head/net/haproxy-devel/pkg-descr (props changed) head/net/haproxy/pkg-descr (props changed) head/net/hawknl-devel/pkg-descr (props changed) head/net/hawknl/pkg-descr (props changed) head/net/heybuddy/pkg-descr (props changed) head/net/hidentd/pkg-descr (props changed) head/net/hinfo/pkg-descr (props changed) head/net/hlmaster/pkg-descr (props changed) head/net/honeyd/pkg-descr (props changed) head/net/hostapd/pkg-descr (props changed) head/net/howl/pkg-descr (props changed) head/net/hping-devel/pkg-descr (props changed) head/net/hping/pkg-descr (props changed) head/net/hs-hostname/pkg-descr (props changed) head/net/hs-network-conduit/pkg-descr (props changed) head/net/hs-network/pkg-descr (props changed) head/net/hs-pcap/pkg-descr (props changed) head/net/hs-sendfile/pkg-descr (props changed) head/net/hs-simple-sendfile/pkg-descr (props changed) head/net/hs-socks/pkg-descr (props changed) head/net/http_ping/pkg-descr (props changed) head/net/httping/pkg-descr (props changed) head/net/httpry/pkg-descr (props changed) head/net/hupnp/pkg-descr (props changed) head/net/iaxmodem/pkg-descr (props changed) head/net/icmpinfo/pkg-descr (props changed) head/net/icpld/pkg-descr (props changed) head/net/iet/pkg-descr (props changed) head/net/ifdepd/pkg-descr (props changed) head/net/iffinder/pkg-descr (props changed) head/net/ifstat/pkg-descr (props changed) head/net/ifstated/pkg-descr (props changed) head/net/igmpproxy/pkg-descr (props changed) head/net/ilbc/pkg-descr (props changed) head/net/imapproxy/pkg-descr (props changed) head/net/iodine/pkg-descr (props changed) head/net/ip6_int/pkg-descr (props changed) head/net/ipa_ip6fw/pkg-descr (props changed) head/net/ipa_ipfw/pkg-descr (props changed) head/net/ipfw-graph/pkg-descr (props changed) head/net/ipgrab/pkg-descr (props changed) head/net/iplog/pkg-descr (props changed) head/net/ipsorc/pkg-descr (props changed) head/net/ipsumdump/pkg-descr (props changed) head/net/ipsvd/pkg-descr (props changed) head/net/irrd/pkg-descr (props changed) head/net/isc-dhcp41-client/pkg-descr (props changed) head/net/isc-dhcp41-relay/pkg-descr (props changed) head/net/isc-dhcp41-server/pkg-descr (props changed) head/net/isc-dhcp42-client/pkg-descr (props changed) head/net/isc-dhcp42-relay/pkg-descr (props changed) head/net/isc-dhcp42-server/pkg-descr (props changed) head/net/iscsi-target/pkg-descr (props changed) head/net/istgt/pkg-descr (props changed) head/net/jags/pkg-descr (props changed) head/net/jakarta-commons-net/pkg-descr (props changed) head/net/java-beepcore/pkg-descr (props changed) head/net/jcifs/pkg-descr (props changed) head/net/jgroups/pkg-descr (props changed) head/net/jicmp/pkg-descr (props changed) head/net/jpcap/pkg-descr (props changed) head/net/jrdesktop/pkg-descr (props changed) head/net/jsch/pkg-descr (props changed) head/net/jumpgate/pkg-descr (props changed) head/net/jwhois/pkg-descr (props changed) head/net/kdenetwork4/pkg-descr (props changed) head/net/kio-upnp-ms/pkg-descr (props changed) head/net/kissd/pkg-descr (props changed) head/net/knc/pkg-descr (props changed) head/net/knemo-kde4/pkg-descr (props changed) head/net/kojoney/pkg-descr (props changed) head/net/kwooty/pkg-descr (props changed) head/net/l2tpd/pkg-descr (props changed) head/net/l4ip/pkg-descr (props changed) head/net/ladvd/pkg-descr (props changed) head/net/lam/pkg-descr (props changed) head/net/lambdamoo/pkg-descr (props changed) head/net/latd/pkg-descr (props changed) head/net/ldap-stats/pkg-descr (props changed) head/net/ldap2dns/pkg-descr (props changed) head/net/ldapbrowser/pkg-descr (props changed) head/net/ldapdiff/pkg-descr (props changed) head/net/ldapscripts/pkg-descr (props changed) head/net/ldapsdk/pkg-descr (props changed) head/net/ldapsh/pkg-descr (props changed) head/net/lft/pkg-descr (props changed) head/net/libarms/pkg-descr (props changed) head/net/libbgpdump/pkg-descr (props changed) head/net/libcmis/pkg-descr (props changed) head/net/libdnet/pkg-descr (props changed) head/net/libexosip2/pkg-descr (props changed) head/net/libfb/pkg-descr (props changed) head/net/libfixbuf/pkg-descr (props changed) head/net/libgnetwork/pkg-descr (props changed) head/net/libgweather/pkg-descr (props changed) head/net/libkvkontakte/pkg-descr (props changed) head/net/libmateweather/pkg-descr (props changed) head/net/libmediawiki/pkg-descr (props changed) head/net/libmms/pkg-descr (props changed) head/net/libmxp/pkg-descr (props changed) head/net/libnatpmp/pkg-descr (props changed) head/net/libnet/pkg-descr (props changed) head/net/libnet10/pkg-descr (props changed) head/net/libnetdude/pkg-descr (props changed) head/net/libnfs/pkg-descr (props changed) head/net/libnids/pkg-descr (props changed) head/net/libnss-mysql/pkg-descr (props changed) head/net/liboauth/pkg-descr (props changed) head/net/libopennet/pkg-descr (props changed) head/net/liboping/pkg-descr (props changed) head/net/libosip/pkg-descr (props changed) head/net/libosip2/pkg-descr (props changed) head/net/libpcap/pkg-descr (props changed) head/net/libpcapnav/pkg-descr (props changed) head/net/libproxy-gnome/pkg-descr (props changed) head/net/libproxy-kde/pkg-descr (props changed) head/net/libproxy-perl/pkg-descr (props changed) head/net/libproxy-python/pkg-descr (props changed) head/net/libproxy-webkit/pkg-descr (props changed) head/net/libproxy/pkg-descr (props changed) head/net/librouteros/pkg-descr (props changed) head/net/librsync/pkg-descr (props changed) head/net/libsocket++/pkg-descr (props changed) head/net/libsocketcpp/pkg-descr (props changed) head/net/libsrtp/pkg-descr (props changed) head/net/libtcp4u/pkg-descr (props changed) head/net/libtnl/pkg-descr (props changed) head/net/libunp/pkg-descr (props changed) head/net/libutp/pkg-descr (props changed) head/net/libvncserver/pkg-descr (props changed) head/net/liferea/pkg-descr (props changed) head/net/linc-reference/pkg-descr (props changed) head/net/linc/pkg-descr (props changed) head/net/link-monitor-applet/pkg-descr (props changed) head/net/linknx/pkg-descr (props changed) head/net/linphone-base/pkg-descr (props changed) head/net/linphone-base/pkg-descr.gui (props changed) head/net/linux-f10-nss_ldap/pkg-descr (props changed) head/net/linux-nx-client/pkg-descr (props changed) head/net/linuxigd/pkg-descr (props changed) head/net/liveMedia/pkg-descr (props changed) head/net/lla/pkg-descr (props changed) head/net/ltm/pkg-descr (props changed) head/net/luasocket/pkg-descr (props changed) head/net/lvwimax/pkg-descr (props changed) head/net/mad_fcl/pkg-descr (props changed) head/net/mars_nwe/pkg-descr (props changed) head/net/mcast-tools/pkg-descr (props changed) head/net/mediaproxy/pkg-descr (props changed) head/net/mediatomb/pkg-descr (props changed) head/net/mgen/pkg-descr (props changed) head/net/micro_inetd/pkg-descr (props changed) head/net/micro_proxy/pkg-descr (props changed) head/net/minidlna/pkg-descr (props changed) head/net/minisapserver/pkg-descr (props changed) head/net/minissdpd/pkg-descr (props changed) head/net/miniupnpc/pkg-descr (props changed) head/net/miniupnpd/pkg-descr (props changed) head/net/miredo/pkg-descr (props changed) head/net/mknbi/pkg-descr (props changed) head/net/mmucl/pkg-descr (props changed) head/net/mono-zeroconf/pkg-descr (props changed) head/net/mopd/pkg-descr (props changed) head/net/morebalance/pkg-descr (props changed) head/net/mosh/pkg-descr (props changed) head/net/mpd-l2tp-ipv6pd-client/pkg-descr (props changed) head/net/mpd5/pkg-descr (props changed) head/net/mpich2/pkg-descr (props changed) head/net/mping/pkg-descr (props changed) head/net/mrouted/pkg-descr (props changed) head/net/msend/pkg-descr (props changed) head/net/nakenchat/pkg-descr (props changed) head/net/nam/pkg-descr (props changed) head/net/nast/pkg-descr (props changed) head/net/nbd-server/pkg-descr (props changed) head/net/nc/pkg-descr (props changed) head/net/nc6/pkg-descr (props changed) head/net/ncp/pkg-descr (props changed) head/net/ncplib/pkg-descr (props changed) head/net/ndisc6/pkg-descr (props changed) head/net/nemesis/pkg-descr (props changed) head/net/nepenthes/pkg-descr (props changed) head/net/nepim/pkg-descr (props changed) head/net/net-http/pkg-descr (props changed) head/net/net6/pkg-descr (props changed) head/net/netatalk/pkg-descr (props changed) head/net/netatalk3/pkg-descr (props changed) head/net/netcat/pkg-descr (props changed) head/net/netdude/pkg-descr (props changed) head/net/netembryo/pkg-descr (props changed) head/net/netmap/pkg-descr (props changed) head/net/netpipes/pkg-descr (props changed) head/net/netscript/pkg-descr (props changed) head/net/netsed/pkg-descr (props changed) head/net/netselect/pkg-descr (props changed) head/net/netspeed_applet/pkg-descr (props changed) head/net/netstrain/pkg-descr (props changed) head/net/nettest/pkg-descr (props changed) head/net/netwib/pkg-descr (props changed) head/net/neubot/pkg-descr (props changed) head/net/nfsshell/pkg-descr (props changed) head/net/ng_daphne/pkg-descr (props changed) head/net/ng_mikrotik_eoip/pkg-descr (props changed) head/net/ngrep/pkg-descr (props changed) head/net/nifmon/pkg-descr (props changed) head/net/nload/pkg-descr (props changed) head/net/nocatsplash/pkg-descr (props changed) head/net/nos-ttb/pkg-descr (props changed) head/net/nph/pkg-descr (props changed) head/net/ns/pkg-descr (props changed) head/net/nss-pam-ldapd/pkg-descr (props changed) head/net/nss_ldap/pkg-descr (props changed) head/net/nstxd/pkg-descr (props changed) head/net/ntlmaps/pkg-descr (props changed) head/net/ntop/pkg-descr (props changed) head/net/ntp-devel/pkg-descr (props changed) head/net/ntp-rc/pkg-descr (props changed) head/net/ntp/pkg-descr (props changed) head/net/ntraceroute/pkg-descr (props changed) head/net/nusoap/pkg-descr (props changed) head/net/nxserver/pkg-descr (props changed) head/net/nyancat/pkg-descr (props changed) head/net/nylon/pkg-descr (props changed) head/net/ohphone/pkg-descr (props changed) head/net/olsrd/pkg-descr (props changed) head/net/omcmd/pkg-descr (props changed) head/net/omnitty/pkg-descr (props changed) head/net/onenetd/pkg-descr (props changed) head/net/onioncat/pkg-descr (props changed) head/net/online-desktop/pkg-descr (props changed) head/net/opal/pkg-descr (props changed) head/net/openafs/pkg-descr (props changed) head/net/openam/pkg-descr (props changed) head/net/openbgpd/pkg-descr (props changed) head/net/opendpi/pkg-descr (props changed) head/net/openh323/pkg-descr (props changed) head/net/openistgt/pkg-descr (props changed) head/net/openldap24-server/pkg-descr (props changed) head/net/openldap24-server/pkg-descr.client (props changed) head/net/openmcu/pkg-descr (props changed) head/net/openmpi/pkg-descr (props changed) head/net/openmq/pkg-descr (props changed) head/net/openntpd/pkg-descr (props changed) head/net/opennx/pkg-descr (props changed) head/net/openospfd/pkg-descr (props changed) head/net/openpgm/pkg-descr (props changed) head/net/openradius/pkg-descr (props changed) head/net/openser/pkg-descr (props changed) head/net/openslp/pkg-descr (props changed) head/net/opentracker/pkg-descr (props changed) head/net/openvswitch/pkg-descr (props changed) head/net/ortp/pkg-descr (props changed) head/net/osrtspproxy/pkg-descr (props changed) head/net/ossp-sa/pkg-descr (props changed) head/net/owamp/pkg-descr (props changed) head/net/p5-AddressBook/pkg-descr (props changed) head/net/p5-Amazon-SQS-Simple/pkg-descr (props changed) head/net/p5-AnyEvent-MPRPC/pkg-descr (props changed) head/net/p5-AnyEvent-RabbitMQ/pkg-descr (props changed) head/net/p5-AnyEvent-Twitter-Stream/pkg-descr (props changed) head/net/p5-AnyEvent-Twitter/pkg-descr (props changed) head/net/p5-AnyMQ-AMQP/pkg-descr (props changed) head/net/p5-Beanstalk-Client/pkg-descr (props changed) head/net/p5-Crypt-DH-GMP/pkg-descr (props changed) head/net/p5-Daemon-Generic/pkg-descr (props changed) head/net/p5-EasyTCP/pkg-descr (props changed) head/net/p5-Event-tcp/pkg-descr (props changed) head/net/p5-File-Rsync/pkg-descr (props changed) head/net/p5-File-RsyncP/pkg-descr (props changed) head/net/p5-Filesys-SmbClient/pkg-descr (props changed) head/net/p5-Frontier-RPC/pkg-descr (props changed) head/net/p5-Geo-IP-PurePerl/pkg-descr (props changed) head/net/p5-Growl-GNTP/pkg-descr (props changed) head/net/p5-IO-Interface/pkg-descr (props changed) head/net/p5-IO-Socket-INET6/pkg-descr (props changed) head/net/p5-IO-Socket-IP/pkg-descr (props changed) head/net/p5-IO-Socket-Multicast/pkg-descr (props changed) head/net/p5-IO-Socket-Multicast6/pkg-descr (props changed) head/net/p5-IP-Country/pkg-descr (props changed) head/net/p5-JavaScript-RPC/pkg-descr (props changed) head/net/p5-Net-APNS/pkg-descr (props changed) head/net/p5-Net-APNs-Extended/pkg-descr (props changed) head/net/p5-Net-ARP/pkg-descr (props changed) head/net/p5-Net-Address-IPv4-Local/pkg-descr (props changed) head/net/p5-Net-Amazon-MechanicalTurk/pkg-descr (props changed) head/net/p5-Net-Amazon-Signature/pkg-descr (props changed) head/net/p5-Net-Amazon-Thumbnail/pkg-descr (props changed) head/net/p5-Net-Appliance-Phrasebook/pkg-descr (props changed) head/net/p5-Net-Appliance-Session/pkg-descr (props changed) head/net/p5-Net-BGP/pkg-descr (props changed) head/net/p5-Net-Blogger/pkg-descr (props changed) head/net/p5-Net-CIDR-Lite/pkg-descr (props changed) head/net/p5-Net-CIDR-MobileJP/pkg-descr (props changed) head/net/p5-Net-CIDR-Set/pkg-descr (props changed) head/net/p5-Net-CLI-Interact/pkg-descr (props changed) head/net/p5-Net-DHCP/pkg-descr (props changed) head/net/p5-Net-DHCPClient/pkg-descr (props changed) head/net/p5-Net-DLookup/pkg-descr (props changed) head/net/p5-Net-Daemon/pkg-descr (props changed) head/net/p5-Net-Delicious/pkg-descr (props changed) head/net/p5-Net-Dict/pkg-descr (props changed) head/net/p5-Net-Divert/pkg-descr (props changed) head/net/p5-Net-EPP-Proxy/pkg-descr (props changed) head/net/p5-Net-FS-Flickr/pkg-descr (props changed) head/net/p5-Net-FS-Gmail/pkg-descr (props changed) head/net/p5-Net-Finger/pkg-descr (props changed) head/net/p5-Net-Frame-Dump/pkg-descr (props changed) head/net/p5-Net-Frame-Layer-ICMPv6/pkg-descr (props changed) head/net/p5-Net-Frame-Layer-IPv6/pkg-descr (props changed) head/net/p5-Net-Frame/pkg-descr (props changed) head/net/p5-Net-GitHub/pkg-descr (props changed) head/net/p5-Net-Gnats/pkg-descr (props changed) head/net/p5-Net-Google-Analytics/pkg-descr (props changed) head/net/p5-Net-Google-Calendar/pkg-descr (props changed) head/net/p5-Net-Google-Code/pkg-descr (props changed) head/net/p5-Net-Google/pkg-descr (props changed) head/net/p5-Net-HL7/pkg-descr (props changed) head/net/p5-Net-HTTP/pkg-descr (props changed) head/net/p5-Net-HTTPS-Any/pkg-descr (props changed) head/net/p5-Net-HTTPS-NB/pkg-descr (props changed) head/net/p5-Net-INET6Glue/pkg-descr (props changed) head/net/p5-Net-IPTrie/pkg-descr (props changed) head/net/p5-Net-IRR/pkg-descr (props changed) head/net/p5-Net-Jaiku/pkg-descr (props changed) head/net/p5-Net-LDAP-AutoDNs/pkg-descr (props changed) head/net/p5-Net-LDAP-AutoServer/pkg-descr (props changed) head/net/p5-Net-LDAP-Express/pkg-descr (props changed) head/net/p5-Net-LDAP-LDAPhash/pkg-descr (props changed) head/net/p5-Net-LDAP-Makepath/pkg-descr (props changed) head/net/p5-Net-LDAP-Server/pkg-descr (props changed) head/net/p5-Net-LDAP-posixAccount/pkg-descr (props changed) head/net/p5-Net-LDAP-posixGroup/pkg-descr (props changed) head/net/p5-Net-Libdnet/pkg-descr (props changed) head/net/p5-Net-MAC/pkg-descr (props changed) head/net/p5-Net-Mosso-CloudFiles/pkg-descr (props changed) head/net/p5-Net-NBName/pkg-descr (props changed) head/net/p5-Net-OAuth-Simple/pkg-descr (props changed) head/net/p5-Net-OAuth/pkg-descr (props changed) head/net/p5-Net-OAuth2/pkg-descr (props changed) head/net/p5-Net-OpenSSH-Parallel/pkg-descr (props changed) head/net/p5-Net-OpenSSH/pkg-descr (props changed) head/net/p5-Net-OpenStack-Attack/pkg-descr (props changed) head/net/p5-Net-Packet-Target/pkg-descr (props changed) head/net/p5-Net-Packet/pkg-descr (props changed) head/net/p5-Net-ParseWhois/pkg-descr (props changed) head/net/p5-Net-Pcap/pkg-descr (props changed) head/net/p5-Net-PcapUtils/pkg-descr (props changed) head/net/p5-Net-Ping-External/pkg-descr (props changed) head/net/p5-Net-Proxy/pkg-descr (props changed) head/net/p5-Net-Random/pkg-descr (props changed) head/net/p5-Net-RawSock/pkg-descr (props changed) head/net/p5-Net-Rsh/pkg-descr (props changed) head/net/p5-Net-SCP/pkg-descr (props changed) head/net/p5-Net-SDP/pkg-descr (props changed) head/net/p5-Net-SFTP-Foreign/pkg-descr (props changed) head/net/p5-Net-SFTP/pkg-descr (props changed) head/net/p5-Net-SMS-Clickatell/pkg-descr (props changed) head/net/p5-Net-SNPP/pkg-descr (props changed) head/net/p5-Net-SSH-Mechanize/pkg-descr (props changed) head/net/p5-Net-SSH-Perl/pkg-descr (props changed) head/net/p5-Net-SSH/pkg-descr (props changed) head/net/p5-Net-SSH2/pkg-descr (props changed) head/net/p5-Net-STOMP-Client/pkg-descr (props changed) head/net/p5-Net-Server-Coro/pkg-descr (props changed) head/net/p5-Net-Server-SS-PreFork/pkg-descr (props changed) head/net/p5-Net-Server/pkg-descr (props changed) head/net/p5-Net-Subnet/pkg-descr (props changed) head/net/p5-Net-TCLink/pkg-descr (props changed) head/net/p5-Net-Telnet/pkg-descr (props changed) head/net/p5-Net-Traceroute-PurePerl/pkg-descr (props changed) head/net/p5-Net-Traceroute6/pkg-descr (props changed) head/net/p5-Net-Trackback/pkg-descr (props changed) head/net/p5-Net-Twitter-Lite/pkg-descr (props changed) head/net/p5-Net-WhitePages/pkg-descr (props changed) head/net/p5-Net-Whois-ARIN/pkg-descr (props changed) head/net/p5-Net-Whois-IP/pkg-descr (props changed) head/net/p5-Net-Whois-Raw/pkg-descr (props changed) head/net/p5-Net-Works/pkg-descr (props changed) head/net/p5-Net-XWhois/pkg-descr (props changed) head/net/p5-Net-Z3950-SimpleServer/pkg-descr (props changed) head/net/p5-Net-Z3950-ZOOM/pkg-descr (props changed) head/net/p5-Net-ext/pkg-descr (props changed) head/net/p5-Net/pkg-descr (props changed) head/net/p5-NetAddr-IP-Count/pkg-descr (props changed) head/net/p5-NetPacket/pkg-descr (props changed) head/net/p5-POE-Component-Client-Ident/pkg-descr (props changed) head/net/p5-POE-Component-Client-Keepalive/pkg-descr (props changed) head/net/p5-POE-Component-Client-Ping/pkg-descr (props changed) head/net/p5-POE-Component-Client-Traceroute/pkg-descr (props changed) head/net/p5-POE-Component-ControlPort/pkg-descr (props changed) head/net/p5-POE-Component-Jabber/pkg-descr (props changed) head/net/p5-POE-Component-Pcap/pkg-descr (props changed) head/net/p5-POE-Component-Server-Twirc/pkg-descr (props changed) head/net/p5-POE-Component-Spread/pkg-descr (props changed) head/net/p5-POEx-Role-TCPServer/pkg-descr (props changed) head/net/p5-POSIX-Socket/pkg-descr (props changed) head/net/p5-POSIX-getpeername/pkg-descr (props changed) head/net/p5-Parallel-Pvm/pkg-descr (props changed) head/net/p5-Phone-Info/pkg-descr (props changed) head/net/p5-PlRPC/pkg-descr (props changed) head/net/p5-Queue-Beanstalk/pkg-descr (props changed) head/net/p5-REST-Application/pkg-descr (props changed) head/net/p5-REST-Google/pkg-descr (props changed) head/net/p5-RPC-EPC-Service/pkg-descr (props changed) head/net/p5-RPC-XML/pkg-descr (props changed) head/net/p5-ResourcePool-Resource-Net-LDAP/pkg-descr (props changed) head/net/p5-ResourcePool-Resource-SOAP-Lite/pkg-descr (props changed) head/net/p5-Rose-URI/pkg-descr (props changed) head/net/p5-SOAP-Data-Builder/pkg-descr (props changed) head/net/p5-SOAP/pkg-descr (props changed) head/net/p5-Server-Starter/pkg-descr (props changed) head/net/p5-Socket-GetAddrInfo/pkg-descr (props changed) head/net/p5-Socket-Multicast6/pkg-descr (props changed) head/net/p5-Socket/pkg-descr (props changed) head/net/p5-Socket6/pkg-descr (props changed) head/net/p5-Socks/pkg-descr (props changed) head/net/p5-Sort-Key-IPv4/pkg-descr (props changed) head/net/p5-Spread-Session/pkg-descr (props changed) head/net/p5-URI-FromHash/pkg-descr (props changed) head/net/p5-URI-Match/pkg-descr (props changed) head/net/p5-URI-OpenURL/pkg-descr (props changed) head/net/p5-URI-Query/pkg-descr (props changed) head/net/p5-URI-Template-Restrict/pkg-descr (props changed) head/net/p5-URI-Template/pkg-descr (props changed) head/net/p5-URI/pkg-descr (props changed) head/net/p5-Validate-Net/pkg-descr (props changed) head/net/p5-WebService-Dropbox/pkg-descr (props changed) head/net/p5-WebService-Prowl/pkg-descr (props changed) head/net/p5-X500-DN/pkg-descr (props changed) head/net/p5-XML-Compile-SOAP-AnyEvent/pkg-descr (props changed) head/net/p5-XML-Compile-SOAP-Daemon/pkg-descr (props changed) head/net/p5-XML-Compile-SOAP-WSA/pkg-descr (props changed) head/net/p5-XML-Compile-SOAP/pkg-descr (props changed) head/net/p5-XML-RPC-Fast/pkg-descr (props changed) head/net/p5-XML-RPC/pkg-descr (props changed) head/net/p5-XPC/pkg-descr (props changed) head/net/p5-ZConf-Bookmarks/pkg-descr (props changed) head/net/p5-ZConf/pkg-descr (props changed) head/net/p5-ZeroMQ/pkg-descr (props changed) head/net/packetdrill/pkg-descr (props changed) head/net/panoptis/pkg-descr (props changed) head/net/paris-traceroute/pkg-descr (props changed) head/net/passlogd/pkg-descr (props changed) head/net/pathneck/pkg-descr (props changed) head/net/pbnc/pkg-descr (props changed) head/net/pchar/pkg-descr (props changed) head/net/pcnfsd/pkg-descr (props changed) head/net/pdb/pkg-descr (props changed) head/net/pear-Auth_RADIUS/pkg-descr (props changed) head/net/pear-File_Bittorrent2/pkg-descr (props changed) head/net/pear-Horde_Kolab_Server/pkg-descr (props changed) head/net/pear-Horde_Kolab_Session/pkg-descr (props changed) head/net/pear-Horde_Ldap/pkg-descr (props changed) head/net/pear-Horde_Rpc/pkg-descr (props changed) head/net/pear-Horde_Scribe/pkg-descr (props changed) head/net/pear-Horde_Socket_Client/pkg-descr (props changed) head/net/pear-Horde_Url/pkg-descr (props changed) head/net/pear-Net_CDDB/pkg-descr (props changed) head/net/pear-Net_CheckIP/pkg-descr (props changed) head/net/pear-Net_DIME/pkg-descr (props changed) head/net/pear-Net_DNSBL/pkg-descr (props changed) head/net/pear-Net_Dict/pkg-descr (props changed) head/net/pear-Net_Finger/pkg-descr (props changed) head/net/pear-Net_Geo/pkg-descr (props changed) head/net/pear-Net_GeoIP/pkg-descr (props changed) head/net/pear-Net_IDNA/pkg-descr (props changed) head/net/pear-Net_IPv4/pkg-descr (props changed) head/net/pear-Net_IPv6/pkg-descr (props changed) head/net/pear-Net_Ident/pkg-descr (props changed) head/net/pear-Net_LDAP/pkg-descr (props changed) head/net/pear-Net_LDAP2/pkg-descr (props changed) head/net/pear-Net_MAC/pkg-descr (props changed) head/net/pear-Net_NNTP/pkg-descr (props changed) head/net/pear-Net_Nmap/pkg-descr (props changed) head/net/pear-Net_POP3/pkg-descr (props changed) head/net/pear-Net_Ping/pkg-descr (props changed) head/net/pear-Net_SMS/pkg-descr (props changed) head/net/pear-Net_SMTP/pkg-descr (props changed) head/net/pear-Net_Server/pkg-descr (props changed) head/net/pear-Net_Sieve/pkg-descr (props changed) head/net/pear-Net_Socket/pkg-descr (props changed) head/net/pear-Net_Traceroute/pkg-descr (props changed) head/net/pear-Net_URL/pkg-descr (props changed) head/net/pear-Net_URL2/pkg-descr (props changed) head/net/pear-Net_URL_Mapper/pkg-descr (props changed) head/net/pear-Net_UserAgent_Detect/pkg-descr (props changed) head/net/pear-Net_UserAgent_Mobile/pkg-descr (props changed) head/net/pear-Net_Vpopmaild/pkg-descr (props changed) head/net/pear-Net_Whois/pkg-descr (props changed) head/net/pear-SOAP/pkg-descr (props changed) head/net/pear-Services_Pingback/pkg-descr (props changed) head/net/pear-Services_Twitter/pkg-descr (props changed) head/net/pear-URI_Template/pkg-descr (props changed) head/net/pear-XML_RPC/pkg-descr (props changed) head/net/pear-XML_RPC2/pkg-descr (props changed) head/net/pecl-amqp/pkg-descr (props changed) head/net/pecl-cvsclient/pkg-descr (props changed) head/net/pecl-geoip/pkg-descr (props changed) head/net/pecl-gupnp/pkg-descr (props changed) head/net/pecl-oauth/pkg-descr (props changed) head/net/pecl-radius/pkg-descr (props changed) head/net/pecl-yaz/pkg-descr (props changed) head/net/pen/pkg-descr (props changed) head/net/pfflowd/pkg-descr (props changed) head/net/pfinger/pkg-descr (props changed) head/net/phamm/pkg-descr (props changed) head/net/phpldapadmin/pkg-descr (props changed) head/net/pimdd/pkg-descr (props changed) head/net/pipsecd/pkg-descr (props changed) head/net/pktanon/pkg-descr (props changed) head/net/pload/pkg-descr (props changed) head/net/plugdaemon/pkg-descr (props changed) head/net/pmf/pkg-descr (props changed) head/net/poptop/pkg-descr (props changed) head/net/portfwd/pkg-descr (props changed) head/net/pppd23/pkg-descr (props changed) head/net/pppoa/pkg-descr (props changed) head/net/pptpclient/pkg-descr (props changed) head/net/proftpd-mod_ldap/pkg-descr (props changed) head/net/prosearch/pkg-descr (props changed) head/net/proxy-connect/pkg-descr (props changed) head/net/proxy-suite/pkg-descr (props changed) head/net/proxychains/pkg-descr (props changed) head/net/prtunnel/pkg-descr (props changed) head/net/ptpd2-devel/pkg-descr (props changed) head/net/ptpd2/pkg-descr (props changed) head/net/ptunnel/pkg-descr (props changed) head/net/pure-sockets/pkg-descr (props changed) head/net/pvm++/pkg-descr (props changed) head/net/pvm/pkg-descr (props changed) head/net/pxe-pdhcp/pkg-descr (props changed) head/net/pxe/pkg-descr (props changed) head/net/py-GeoIP/pkg-descr (props changed) head/net/py-amqp/pkg-descr (props changed) head/net/py-amqplib/pkg-descr (props changed) head/net/py-avahi/pkg-descr (props changed) head/net/py-cloudfiles/pkg-descr (props changed) head/net/py-dpkt/pkg-descr (props changed) head/net/py-ec2-cli-tools/pkg-descr (props changed) head/net/py-eventlet/pkg-descr (props changed) head/net/py-gntp/pkg-descr (props changed) head/net/py-google/pkg-descr (props changed) head/net/py-gspreadsheet/pkg-descr (props changed) head/net/py-impacket/pkg-descr (props changed) head/net/py-kombu/pkg-descr (props changed) head/net/py-ldap2/pkg-descr (props changed) head/net/py-ldaptor/pkg-descr (props changed) head/net/py-libcloud/pkg-descr (props changed) head/net/py-libdnet/pkg-descr (props changed) head/net/py-libnet/pkg-descr (props changed) head/net/py-msrplib/pkg-descr (props changed) head/net/py-netaddr/pkg-descr (props changed) head/net/py-netifaces/pkg-descr (props changed) head/net/py-netlib/pkg-descr (props changed) head/net/py-netstring/pkg-descr (props changed) head/net/py-oauth2/pkg-descr (props changed) head/net/py-pcap/pkg-descr (props changed) head/net/py-pcapy/pkg-descr (props changed) head/net/py-pcs/pkg-descr (props changed) head/net/py-port-for/pkg-descr (props changed) head/net/py-pypcap/pkg-descr (props changed) head/net/py-pysendfile/pkg-descr (props changed) head/net/py-radix/pkg-descr (props changed) head/net/py-s3cmd/pkg-descr (props changed) head/net/py-smb/pkg-descr (props changed) head/net/py-smbpasswd/pkg-descr (props changed) head/net/py-soappy/pkg-descr (props changed) head/net/py-soapy/pkg-descr (props changed) head/net/py-spreadmodule/pkg-descr (props changed) head/net/py-suds/pkg-descr (props changed) head/net/py-tofu/pkg-descr (props changed) head/net/py-tweepy/pkg-descr (props changed) head/net/py-twistedPair/pkg-descr (props changed) head/net/py-txamqp/pkg-descr (props changed) head/net/py-xmlrpc/pkg-descr (props changed) head/net/py-yadis/pkg-descr (props changed) head/net/py-zope.proxy/pkg-descr (props changed) head/net/pygopherd/pkg-descr (props changed) head/net/pynids/pkg-descr (props changed) head/net/pyrad/pkg-descr (props changed) head/net/pythondirector/pkg-descr (props changed) head/net/qadsl/pkg-descr (props changed) head/net/qoauth/pkg-descr (props changed) head/net/qtweetlib/pkg-descr (props changed) head/net/quagga-re/pkg-descr (props changed) head/net/quagga/pkg-descr (props changed) head/net/queso/pkg-descr (props changed) head/net/quoted/pkg-descr (props changed) head/net/rabbitmq-c-devel/pkg-descr (props changed) head/net/rabbitmq-c/pkg-descr (props changed) head/net/rabbitmq/pkg-descr (props changed) head/net/raddump/pkg-descr (props changed) head/net/radiator/pkg-descr (props changed) head/net/radiusclient/pkg-descr (props changed) head/net/radiusd-cistron/pkg-descr (props changed) head/net/radreport/pkg-descr (props changed) head/net/radsecproxy/pkg-descr (props changed) head/net/radvd/pkg-descr (props changed) head/net/raggle/pkg-descr (props changed) head/net/ranch/pkg-descr (props changed) head/net/rdesktop/pkg-descr (props changed) head/net/rdist6/pkg-descr (props changed) head/net/recvnet/pkg-descr (props changed) head/net/redir/pkg-descr (props changed) head/net/relayd/pkg-descr (props changed) head/net/remmina-applet/pkg-descr (props changed) head/net/remmina-plugins/pkg-descr (props changed) head/net/remmina/pkg-descr (props changed) head/net/remotedesk/pkg-descr (props changed) head/net/repeater/pkg-descr (props changed) head/net/reposado/pkg-descr (props changed) head/net/rexx-sock/pkg-descr (props changed) head/net/rfbproxy/pkg-descr (props changed) head/net/rinetd/pkg-descr (props changed) head/net/ripe-whois/pkg-descr (props changed) head/net/ris/pkg-descr (props changed) head/net/rmsg/pkg-descr (props changed) head/net/rp-pppoe/pkg-descr (props changed) head/net/rshell/pkg-descr (props changed) head/net/rsmb/pkg-descr (props changed) head/net/rsplib/pkg-descr (props changed) head/net/rsync/pkg-descr (props changed) head/net/rtg/pkg-descr (props changed) head/net/rtpbreak/pkg-descr (props changed) head/net/rtpproxy/pkg-descr (props changed) head/net/rtptools/pkg-descr (props changed) head/net/ruby-dict/pkg-descr (props changed) head/net/ruby-growl/pkg-descr (props changed) head/net/ruby-net-geoip/pkg-descr (props changed) head/net/rubygem-amazon-ec2/pkg-descr (props changed) head/net/rubygem-amq-client/pkg-descr (props changed) head/net/rubygem-amq-protocol/pkg-descr (props changed) head/net/rubygem-amqp-utils/pkg-descr (props changed) head/net/rubygem-amqp/pkg-descr (props changed) head/net/rubygem-amqp067/pkg-descr (props changed) head/net/rubygem-aws-s3/pkg-descr (props changed) head/net/rubygem-bunny/pkg-descr (props changed) head/net/rubygem-bunny060/pkg-descr (props changed) head/net/rubygem-connection_pool/pkg-descr (props changed) head/net/rubygem-domain_name/pkg-descr (props changed) head/net/rubygem-geoip/pkg-descr (props changed) head/net/rubygem-gitlab_omniauth-ldap/pkg-descr (props changed) head/net/rubygem-http_parser.rb/pkg-descr (props changed) head/net/rubygem-httpauth/pkg-descr (props changed) head/net/rubygem-ipaddress/pkg-descr (props changed) head/net/rubygem-iproto/pkg-descr (props changed) head/net/rubygem-macaddr/pkg-descr (props changed) head/net/rubygem-net-ldap/pkg-descr (props changed) head/net/rubygem-net-netrc/pkg-descr (props changed) head/net/rubygem-oauth2/pkg-descr (props changed) head/net/rubygem-omniauth-github/pkg-descr (props changed) head/net/rubygem-omniauth-google-oauth2/pkg-descr (props changed) head/net/rubygem-omniauth-oauth/pkg-descr (props changed) head/net/rubygem-omniauth-oauth2/pkg-descr (props changed) head/net/rubygem-omniauth-twitter/pkg-descr (props changed) head/net/rubygem-open-uri-cached/pkg-descr (props changed) head/net/rubygem-openid/pkg-descr (props changed) head/net/rubygem-rightaws/pkg-descr (props changed) head/net/rubygem-rightflexiscale/pkg-descr (props changed) head/net/rubygem-rightgogrid/pkg-descr (props changed) head/net/rubygem-righthttpconnection/pkg-descr (props changed) head/net/rubygem-rightslicehost/pkg-descr (props changed) head/net/rubygem-rubyntlm/pkg-descr (props changed) head/net/rubygem-rubytter/pkg-descr (props changed) head/net/rubygem-rudy/pkg-descr (props changed) head/net/rubygem-rye/pkg-descr (props changed) head/net/rubygem-simple_oauth/pkg-descr (props changed) head/net/rubygem-stompserver/pkg-descr (props changed) head/net/rubygem-tweetstream/pkg-descr (props changed) head/net/rubygem-twitter-stream/pkg-descr (props changed) head/net/rubygem-twitter/pkg-descr (props changed) head/net/rubygem-twitter4r/pkg-descr (props changed) head/net/rubygem-whois/pkg-descr (props changed) head/net/rude/pkg-descr (props changed) head/net/rwhoisd/pkg-descr (props changed) head/net/samba-libsmbclient/pkg-descr (props changed) head/net/samba-nmblookup/pkg-descr (props changed) head/net/samba-smbclient/pkg-descr (props changed) head/net/samba36/pkg-descr (props changed) head/net/samba4/pkg-descr (props changed) head/net/samba4wins/pkg-descr (props changed) head/net/sbd/pkg-descr (props changed) head/net/scamper/pkg-descr (props changed) head/net/scapy/pkg-descr (props changed) head/net/scnc/pkg-descr (props changed) head/net/scr_ipfm/pkg-descr (props changed) head/net/scribe/pkg-descr (props changed) head/net/sdl_net/pkg-descr (props changed) head/net/seda/pkg-descr (props changed) head/net/sendemail/pkg-descr (props changed) head/net/sendfile/pkg-descr (props changed) head/net/sendsms/pkg-descr (props changed) head/net/sendsnpp/pkg-descr (props changed) head/net/ser/pkg-descr (props changed) head/net/service-discovery-applet/pkg-descr (props changed) head/net/serviio/pkg-descr (props changed) head/net/sflowtool/pkg-descr (props changed) head/net/shadowsocks-libev/pkg-descr (props changed) head/net/shaperprobe/pkg-descr (props changed) head/net/sharity-light/pkg-descr (props changed) head/net/shmux/pkg-descr (props changed) head/net/silc-client/pkg-descr (props changed) head/net/silc-irssi-plugin/pkg-descr (props changed) head/net/silc-server/pkg-descr (props changed) head/net/simpleproxy/pkg-descr (props changed) head/net/sip_scenario/pkg-descr (props changed) head/net/sippy_b2bua/pkg-descr (props changed) head/net/siproxd/pkg-descr (props changed) head/net/sipsak/pkg-descr (props changed) head/net/sixxs-aiccu/pkg-descr (props changed) head/net/skstream/pkg-descr (props changed) head/net/skyfish/pkg-descr (props changed) head/net/skystar2/pkg-descr (props changed) head/net/sl2tps/pkg-descr (props changed) head/net/slirp/pkg-descr (props changed) head/net/slurm/pkg-descr (props changed) head/net/smb4k-kde4/pkg-descr (props changed) head/net/smbldap-tools/pkg-descr (props changed) head/net/smm++/pkg-descr (props changed) head/net/sniffit/pkg-descr (props changed) head/net/sntop/pkg-descr (props changed) head/net/sobby/pkg-descr (props changed) head/net/socat/pkg-descr (props changed) head/net/socketbind/pkg-descr (props changed) head/net/socketpipe/pkg-descr (props changed) head/net/spideroak/pkg-descr (props changed) head/net/splatd/pkg-descr (props changed) head/net/spoofer/pkg-descr (props changed) head/net/spread-j/pkg-descr (props changed) head/net/spread/pkg-descr (props changed) head/net/spread4/pkg-descr (props changed) head/net/sprinkle/pkg-descr (props changed) head/net/spserver/pkg-descr (props changed) head/net/sqtop/pkg-descr (props changed) head/net/ss5/pkg-descr (props changed) head/net/ssldump/pkg-descr (props changed) head/net/sslh/pkg-descr (props changed) head/net/ssltunnel-client/pkg-descr (props changed) head/net/ssltunnel-server/pkg-descr (props changed) head/net/ssmping/pkg-descr (props changed) head/net/ssspl/pkg-descr (props changed) head/net/ssvnc/pkg-descr (props changed) head/net/stf-6rd-kmod/pkg-descr (props changed) head/net/stone/pkg-descr (props changed) head/net/stund/pkg-descr (props changed) head/net/subnetcalc/pkg-descr (props changed) head/net/suckblow/pkg-descr (props changed) head/net/sup/pkg-descr (props changed) head/net/tableutil/pkg-descr (props changed) head/net/tac_plus-libradius/pkg-descr (props changed) head/net/tac_plus4/pkg-descr (props changed) head/net/tapidbus/pkg-descr (props changed) head/net/tcludp/pkg-descr (props changed) head/net/tcpcat/pkg-descr (props changed) head/net/tcpdstat/pkg-descr (props changed) head/net/tcpdump/pkg-descr (props changed) head/net/tcpdump398/pkg-descr (props changed) head/net/tcpflow/pkg-descr (props changed) head/net/tcpick/pkg-descr (props changed) head/net/tcpillust/pkg-descr (props changed) head/net/tcping/pkg-descr (props changed) head/net/tcpmssd/pkg-descr (props changed) head/net/tcpproxy/pkg-descr (props changed) head/net/tcpreen/pkg-descr (props changed) head/net/tcpsg/pkg-descr (props changed) head/net/tcpshow/pkg-descr (props changed) head/net/tcpslice/pkg-descr (props changed) head/net/tcpstat/pkg-descr (props changed) head/net/tcptrace/pkg-descr (props changed) head/net/tcptraceroute-devel/pkg-descr (props changed) head/net/tcpview/pkg-descr (props changed) head/net/tcpwatch/pkg-descr (props changed) head/net/tcpxd/pkg-descr (props changed) head/net/tcpxtract/pkg-descr (props changed) head/net/tdetect/pkg-descr (props changed) head/net/tftpgrab/pkg-descr (props changed) head/net/thcrut/pkg-descr (props changed) head/net/throttled/pkg-descr (props changed) head/net/tigervnc/pkg-descr (props changed) head/net/tightvnc/pkg-descr (props changed) head/net/tinyfugue/pkg-descr (props changed) head/net/tinyldap/pkg-descr (props changed) head/net/tn5250/pkg-descr (props changed) head/net/tn5250j/pkg-descr (props changed) head/net/toonel/pkg-descr (props changed) head/net/torsocks/pkg-descr (props changed) head/net/traceroute/pkg-descr (props changed) head/net/traff/pkg-descr (props changed) head/net/trafshow/pkg-descr (props changed) head/net/trafshow3/pkg-descr (props changed) head/net/tramp/pkg-descr (props changed) head/net/trickle/pkg-descr (props changed) head/net/tridiavnc/pkg-descr (props changed) head/net/tsclient/pkg-descr (props changed) head/net/tsocks/pkg-descr (props changed) head/net/ttbudget/pkg-descr (props changed) head/net/ttlscan/pkg-descr (props changed) head/net/tucan/pkg-descr (props changed) head/net/turnserver/pkg-descr (props changed) head/net/twitux/pkg-descr (props changed) head/net/ucarp/pkg-descr (props changed) head/net/udptunnel/pkg-descr (props changed) head/net/udpxy/pkg-descr (props changed) head/net/udt/pkg-descr (props changed) head/net/ulxmlrpcpp/pkg-descr (props changed) head/net/unfs3/pkg-descr (props changed) head/net/unison-devel/pkg-descr (props changed) head/net/unison/pkg-descr (props changed) head/net/unison232/pkg-descr (props changed) head/net/unix2tcp/pkg-descr (props changed) head/net/uplog/pkg-descr (props changed) head/net/urelay/pkg-descr (props changed) head/net/uriparser/pkg-descr (props changed) head/net/urlendec/pkg-descr (props changed) head/net/userfw/pkg-descr (props changed) head/net/ushare/pkg-descr (props changed) head/net/utftpd/pkg-descr (props changed) head/net/v6eval/pkg-descr (props changed) head/net/vblade/pkg-descr (props changed) head/net/vchat/pkg-descr (props changed) head/net/vde/pkg-descr (props changed) head/net/vde2/pkg-descr (props changed) head/net/vinagre/pkg-descr (props changed) head/net/vino/pkg-descr (props changed) head/net/vmware-vsphere-cli/pkg-descr (props changed) head/net/vnc/pkg-descr (props changed) head/net/vncreflector/pkg-descr (props changed) head/net/vnstat/pkg-descr (props changed) head/net/vserver/pkg-descr (props changed) head/net/vtun/pkg-descr (props changed) head/net/wackamole/pkg-descr (props changed) head/net/wackford-squeers/pkg-descr (props changed) head/net/wakeonlan/pkg-descr (props changed) head/net/whois/pkg-descr (props changed) head/net/wire/pkg-descr (props changed) head/net/wired-tracker/pkg-descr (props changed) head/net/wired/pkg-descr (props changed) head/net/wireshark/pkg-descr (props changed) head/net/wlan2eth/pkg-descr (props changed) head/net/wmlj/pkg-descr (props changed) head/net/wmnd/pkg-descr (props changed) head/net/wmnet/pkg-descr (props changed) head/net/wmnetload/pkg-descr (props changed) head/net/wmnetmon/pkg-descr (props changed) head/net/wmpiki/pkg-descr (props changed) head/net/wmping/pkg-descr (props changed) head/net/wmwave/pkg-descr (props changed) head/net/wmwifi/pkg-descr (props changed) head/net/wmwlmon/pkg-descr (props changed) head/net/wol/pkg-descr (props changed) head/net/wowzamediaserverpro/pkg-descr (props changed) head/net/wping/pkg-descr (props changed) head/net/x11vnc/pkg-descr (props changed) head/net/x2goclient-cli/pkg-descr (props changed) head/net/xbone/pkg-descr (props changed) head/net/xboxproxy/pkg-descr (props changed) head/net/xferstats/pkg-descr (props changed) head/net/xipdump/pkg-descr (props changed) head/net/xipmsg/pkg-descr (props changed) head/net/xisp/pkg-descr (props changed) head/net/xmlrpc-c-devel/pkg-descr (props changed) head/net/xmlrpc-c/pkg-descr (props changed) head/net/xmlrpc-epi/pkg-descr (props changed) head/net/xorp-devel/pkg-descr (props changed) head/net/xorp/pkg-descr (props changed) head/net/xprobe/pkg-descr (props changed) head/net/xpvm/pkg-descr (props changed) head/net/xrdesktop/pkg-descr (props changed) head/net/xrdp-devel/pkg-descr (props changed) head/net/xrdp/pkg-descr (props changed) head/net/yaph/pkg-descr (props changed) head/net/yate/pkg-descr (props changed) head/net/yaz++/pkg-descr (props changed) head/net/yaz/pkg-descr (props changed) head/net/yazproxy/pkg-descr (props changed) head/net/yconalyzer/pkg-descr (props changed) head/net/yptransitd/pkg-descr (props changed) head/net/zebra-server/pkg-descr (props changed) head/net/zebra/pkg-descr (props changed) head/net/zillion/pkg-descr (props changed) head/net/zsync/pkg-descr (props changed) head/news/atp/pkg-descr (props changed) head/news/aub/pkg-descr (props changed) head/news/brag/pkg-descr (props changed) head/news/c-nocem/pkg-descr (props changed) head/news/cg/pkg-descr (props changed) head/news/cleanfeed/pkg-descr (props changed) head/news/cnews/pkg-descr (props changed) head/news/crashmail/pkg-descr (props changed) head/news/diablo/pkg-descr (props changed) head/news/dnews/pkg-descr (props changed) head/news/fidogate-ds/pkg-descr (props changed) head/news/fidogate/pkg-descr (props changed) head/news/golded+/pkg-descr (props changed) head/news/gup/pkg-descr (props changed) head/news/hellanzb/pkg-descr (props changed) head/news/husky-base-devel/pkg-descr (props changed) head/news/husky-base/pkg-descr (props changed) head/news/husky-bsopack/pkg-descr (props changed) head/news/husky-fidoconf-devel/pkg-descr (props changed) head/news/husky-fidoconf/pkg-descr (props changed) head/news/husky-hpt-devel/pkg-descr (props changed) head/news/husky-hpt/pkg-descr (props changed) head/news/husky-hptkill/pkg-descr (props changed) head/news/husky-hptsqfix/pkg-descr (props changed) head/news/husky-hpucode/pkg-descr (props changed) head/news/husky-htick-devel/pkg-descr (props changed) head/news/husky-htick/pkg-descr (props changed) head/news/husky-msged/pkg-descr (props changed) head/news/husky-nltools/pkg-descr (props changed) head/news/husky-smapi-devel/pkg-descr (props changed) head/news/husky-smapi/pkg-descr (props changed) head/news/husky-sqpack/pkg-descr (props changed) head/news/ifmail/pkg-descr (props changed) head/news/inn/pkg-descr (props changed) head/news/knews/pkg-descr (props changed) head/news/leafnode/pkg-descr (props changed) head/news/lusernet/pkg-descr (props changed) head/news/mmail/pkg-descr (props changed) head/news/multisuck/pkg-descr (props changed) head/news/newscache/pkg-descr (props changed) head/news/newsfetch/pkg-descr (props changed) head/news/newsfish/pkg-descr (props changed) head/news/newsgrab/pkg-descr (props changed) head/news/newspost/pkg-descr (props changed) head/news/newsstar/pkg-descr (props changed) head/news/newsx/pkg-descr (props changed) head/news/nget/pkg-descr (props changed) head/news/nn/pkg-descr (props changed) head/news/nnap/pkg-descr (props changed) head/news/nntp/pkg-descr (props changed) head/news/nntpbtr/pkg-descr (props changed) head/news/nntpcache/pkg-descr (props changed) head/news/noffle/pkg-descr (props changed) head/news/nzbget/pkg-descr (props changed) head/news/nzbperl/pkg-descr (props changed) head/news/p5-NNML/pkg-descr (props changed) head/news/p5-NNTPClient/pkg-descr (props changed) head/news/p5-News-Article-NoCeM/pkg-descr (props changed) head/news/p5-News-Article/pkg-descr (props changed) head/news/p5-News-Newsrc/pkg-descr (props changed) head/news/p5-POE-Component-Client-NNTP/pkg-descr (props changed) head/news/pan/pkg-descr (props changed) head/news/papercut/pkg-descr (props changed) head/news/pgpmoose/pkg-descr (props changed) head/news/plor/pkg-descr (props changed) head/news/py-twistedNews/pkg-descr (props changed) head/news/py-yenc/pkg-descr (props changed) head/news/rawdog/pkg-descr (props changed) head/news/s-news/pkg-descr (props changed) head/news/sabnzbdplus/pkg-descr (props changed) head/news/slnr/pkg-descr (props changed) head/news/slrn/pkg-descr (props changed) head/news/slrnconf/pkg-descr (props changed) head/news/slrnface/pkg-descr (props changed) head/news/sn/pkg-descr (props changed) head/news/suck/pkg-descr (props changed) head/news/tin/pkg-descr (props changed) head/news/trn/pkg-descr (props changed) head/news/trn4/pkg-descr (props changed) head/news/ubh/pkg-descr (props changed) head/news/xpn/pkg-descr (props changed) head/news/xrn/pkg-descr (props changed) head/news/yencode/pkg-descr (props changed) head/news/yydecode/pkg-descr (props changed) head/palm/bibelot/pkg-descr (props changed) head/palm/gnome-pilot-conduits/pkg-descr (props changed) head/palm/gnome-pilot/pkg-descr (props changed) head/palm/iSiloXC/pkg-descr (props changed) head/palm/imgvtopgm/pkg-descr (props changed) head/palm/jpilot-db/pkg-descr (props changed) head/palm/jpilot-picsnvideos/pkg-descr (props changed) head/palm/jpilot/pkg-descr (props changed) head/palm/libmal/pkg-descr (props changed) head/palm/makeztxt/pkg-descr (props changed) head/palm/mdbconv/pkg-descr (props changed) head/palm/p5-Palm-PalmDoc/pkg-descr (props changed) head/palm/p5-Palm/pkg-descr (props changed) head/palm/palm-db-tools/pkg-descr (props changed) head/palm/palmos-sdk/pkg-descr (props changed) head/palm/pdbar/pkg-descr (props changed) head/palm/pilot-link/pkg-descr (props changed) head/palm/pilot_makedoc/pkg-descr (props changed) head/palm/pilrc/pkg-descr (props changed) head/palm/ppmtoTbmp/pkg-descr (props changed) head/palm/py-synce-librapi2/pkg-descr (props changed) head/palm/py-synce-librra/pkg-descr (props changed) head/palm/synce-gvfs/pkg-descr (props changed) head/palm/synce-hal/pkg-descr (props changed) head/palm/synce-librapi2/pkg-descr (props changed) head/palm/synce-librra/pkg-descr (props changed) head/palm/synce-libsynce/pkg-descr (props changed) head/palm/synce-serial/pkg-descr (props changed) head/palm/synce-sync-engine/pkg-descr (props changed) head/palm/synce-vdccm/pkg-descr (props changed) head/polish/aspell/pkg-descr (props changed) head/polish/calligra-l10n/pkg-descr (props changed) head/polish/ekg/pkg-descr (props changed) head/polish/ekg2/pkg-descr (props changed) head/polish/fortunepl/pkg-descr (props changed) head/polish/gnugadu2/pkg-descr (props changed) head/polish/hyphen/pkg-descr (props changed) head/polish/kadu/pkg-descr (props changed) head/polish/kde4-l10n/pkg-descr (props changed) head/polish/libgadu/pkg-descr (props changed) head/polish/libreoffice/pkg-descr (props changed) head/polish/libtlen/pkg-descr (props changed) head/polish/qfaktury/pkg-descr (props changed) head/polish/qnapi/pkg-descr (props changed) head/polish/sms2/pkg-descr (props changed) head/polish/tleenx2/pkg-descr (props changed) head/polish/trf/pkg-descr (props changed) head/ports-mgmt/bpkg/pkg-descr (props changed) head/ports-mgmt/bpm/pkg-descr (props changed) head/ports-mgmt/bxpkg/pkg-descr (props changed) head/ports-mgmt/distilator/pkg-descr (props changed) head/ports-mgmt/fastest_sites/pkg-descr (props changed) head/ports-mgmt/fbsdmon/pkg-descr (props changed) head/ports-mgmt/gnome-packagekit/pkg-descr (props changed) head/ports-mgmt/hs-porte/pkg-descr (props changed) head/ports-mgmt/jailaudit/pkg-descr (props changed) head/ports-mgmt/kpackagekit/pkg-descr (props changed) head/ports-mgmt/kports-qt4/pkg-descr (props changed) head/ports-mgmt/lsknobs/pkg-descr (props changed) head/ports-mgmt/managepkg/pkg-descr (props changed) head/ports-mgmt/mkreadmes/pkg-descr (props changed) head/ports-mgmt/p5-App-Pm2Port/pkg-descr (props changed) head/ports-mgmt/p5-FreeBSD-Pkgs-FindUpdates/pkg-descr (props changed) head/ports-mgmt/p5-FreeBSD-Pkgs/pkg-descr (props changed) head/ports-mgmt/p5-FreeBSD-Portindex/pkg-descr (props changed) head/ports-mgmt/p5-FreeBSD-Ports-INDEXhash/pkg-descr (props changed) head/ports-mgmt/p5-FreeBSD-Ports/pkg-descr (props changed) head/ports-mgmt/packagekit/pkg-descr (props changed) head/ports-mgmt/pchecker/pkg-descr (props changed) head/ports-mgmt/pib/pkg-descr (props changed) head/ports-mgmt/pkg-devel/pkg-descr (props changed) head/ports-mgmt/pkg-orphan/pkg-descr (props changed) head/ports-mgmt/pkg/pkg-descr (props changed) head/ports-mgmt/pkg_add_it/pkg-descr (props changed) head/ports-mgmt/pkg_cleanup/pkg-descr (props changed) head/ports-mgmt/pkg_cutleaves/pkg-descr (props changed) head/ports-mgmt/pkg_install/pkg-descr (props changed) head/ports-mgmt/pkg_jail/pkg-descr (props changed) head/ports-mgmt/pkg_replace/pkg-descr (props changed) head/ports-mgmt/pkg_rmleaves/pkg-descr (props changed) head/ports-mgmt/pkg_search/pkg-descr (props changed) head/ports-mgmt/pkg_trackinst/pkg-descr (props changed) head/ports-mgmt/pkg_tree/pkg-descr (props changed) head/ports-mgmt/pkgfe/pkg-descr (props changed) head/ports-mgmt/pkgsearch/pkg-descr (props changed) head/ports-mgmt/port-authoring-tools/pkg-descr (props changed) head/ports-mgmt/port-maintenance-tools/pkg-descr (props changed) head/ports-mgmt/portaudit-db/pkg-descr (props changed) head/ports-mgmt/portaudit/pkg-descr (props changed) head/ports-mgmt/portbuilder/pkg-descr (props changed) head/ports-mgmt/portcheckout/pkg-descr (props changed) head/ports-mgmt/portconf/pkg-descr (props changed) head/ports-mgmt/portdowngrade/pkg-descr (props changed) head/ports-mgmt/porteasy/pkg-descr (props changed) head/ports-mgmt/portell/pkg-descr (props changed) head/ports-mgmt/portless/pkg-descr (props changed) head/ports-mgmt/portlint/pkg-descr (props changed) head/ports-mgmt/portmaster/pkg-descr (props changed) head/ports-mgmt/portrac/pkg-descr (props changed) head/ports-mgmt/portscout/pkg-descr (props changed) head/ports-mgmt/portsearch/pkg-descr (props changed) head/ports-mgmt/portshaker-config/pkg-descr (props changed) head/ports-mgmt/portshaker/pkg-descr (props changed) head/ports-mgmt/portsopt/pkg-descr (props changed) head/ports-mgmt/porttools/pkg-descr (props changed) head/ports-mgmt/porttree/pkg-descr (props changed) head/ports-mgmt/portupdate-scan/pkg-descr (props changed) head/ports-mgmt/portupgrade-devel/pkg-descr (props changed) head/ports-mgmt/portupgrade/pkg-descr (props changed) head/ports-mgmt/poudriere-devel/pkg-descr (props changed) head/ports-mgmt/poudriere/pkg-descr (props changed) head/ports-mgmt/psearch/pkg-descr (props changed) head/ports-mgmt/pver/pkg-descr (props changed) head/ports-mgmt/symports/pkg-descr (props changed) head/ports-mgmt/tinderbox-devel/pkg-descr (props changed) head/ports-mgmt/tinderbox/pkg-descr (props changed) head/ports-mgmt/vulnerability-test-port/pkg-descr (props changed) head/ports-mgmt/wanted-ports/pkg-descr (props changed) head/portuguese/aspell-pt_BR/pkg-descr (props changed) head/portuguese/aspell-pt_PT/pkg-descr (props changed) head/portuguese/calligra-l10n-pt_BR/pkg-descr (props changed) head/portuguese/calligra-l10n/pkg-descr (props changed) head/portuguese/hyphen/pkg-descr (props changed) head/portuguese/irpf-pt_BR/pkg-descr (props changed) head/portuguese/ispell-pt_BR/pkg-descr (props changed) head/portuguese/kde4-l10n-pt_BR/pkg-descr (props changed) head/portuguese/kde4-l10n/pkg-descr (props changed) head/portuguese/libreoffice-pt_BR/pkg-descr (props changed) head/portuguese/libreoffice/pkg-descr (props changed) head/print/a2pdf/pkg-descr (props changed) head/print/a2ps/pkg-descr (props changed) head/print/abc2mtex/pkg-descr (props changed) head/print/abcm2ps/pkg-descr (props changed) head/print/abntex/pkg-descr (props changed) head/print/acrobatviewer/pkg-descr (props changed) head/print/acroread8/pkg-descr (props changed) head/print/acroread9/pkg-descr (props changed) head/print/acroreadwrapper/pkg-descr (props changed) head/print/adobe-cmaps/pkg-descr (props changed) head/print/afm/pkg-descr (props changed) head/print/alignmargins/pkg-descr (props changed) head/print/ansiprint/pkg-descr (props changed) head/print/apsfilter/pkg-descr (props changed) head/print/asprint/pkg-descr (props changed) head/print/auctex/pkg-descr (props changed) head/print/axpoint/pkg-descr (props changed) head/print/bibcursed/pkg-descr (props changed) head/print/biblio-py/pkg-descr (props changed) head/print/bibview/pkg-descr (props changed) head/print/bophook/pkg-descr (props changed) head/print/c2ps/pkg-descr (props changed) head/print/catdvi/pkg-descr (props changed) head/print/cdlabelgen/pkg-descr (props changed) head/print/cm-super/pkg-descr (props changed) head/print/cups-base/pkg-descr (props changed) head/print/cups-base/pkg-descr.client (props changed) head/print/cups-base/pkg-descr.image (props changed) head/print/cups-bjnp/pkg-descr (props changed) head/print/cups-pdf/pkg-descr (props changed) head/print/cups-pk-helper/pkg-descr (props changed) head/print/cups-pstoraster/pkg-descr (props changed) head/print/cups-samba/pkg-descr (props changed) head/print/cups-smb-backend/pkg-descr (props changed) head/print/cups/pkg-descr (props changed) head/print/detex/pkg-descr (props changed) head/print/dot2tex/pkg-descr (props changed) head/print/dvi2tty/pkg-descr (props changed) head/print/dvipdfmx/pkg-descr (props changed) head/print/dvips/pkg-descr (props changed) head/print/dvips2ascii/pkg-descr (props changed) head/print/dvipsk-tetex/pkg-descr (props changed) head/print/dviselect/pkg-descr (props changed) head/print/dvisvg/pkg-descr (props changed) head/print/easylatex/pkg-descr (props changed) head/print/enscript-letter/pkg-descr (props changed) head/print/enscriptfonts/pkg-descr (props changed) head/print/epsonepl/pkg-descr (props changed) head/print/examplep/pkg-descr (props changed) head/print/flpsed/pkg-descr (props changed) head/print/font-amsfonts/pkg-descr (props changed) head/print/font2svg/pkg-descr (props changed) head/print/fontforge/pkg-descr (props changed) head/print/foo2zjs/pkg-descr (props changed) head/print/foomatic-db-engine/pkg-descr (props changed) head/print/foomatic-db-hpijs/pkg-descr (props changed) head/print/foomatic-db/pkg-descr (props changed) head/print/foomatic-filters/pkg-descr (props changed) head/print/foxitreader/pkg-descr (props changed) head/print/fpdf/pkg-descr (props changed) head/print/freetype-tools/pkg-descr (props changed) head/print/freetype/pkg-descr (props changed) head/print/freetype2/pkg-descr (props changed) head/print/ft2demos/pkg-descr (props changed) head/print/ggv/pkg-descr (props changed) head/print/ghostscript7-commfont/pkg-descr (props changed) head/print/ghostscript7-jpnfont/pkg-descr (props changed) head/print/ghostscript7-korfont/pkg-descr (props changed) head/print/ghostscript7/pkg-descr (props changed) head/print/ghostscript8/pkg-descr (props changed) head/print/ghostscript9-agpl/pkg-descr (props changed) head/print/ghostscript9/pkg-descr (props changed) head/print/ghostview/pkg-descr (props changed) head/print/gl2ps/pkg-descr (props changed) head/print/gnome-cups-manager/pkg-descr (props changed) head/print/gnomephotoprinter/pkg-descr (props changed) head/print/gribouy/pkg-descr (props changed) head/print/gsfonts/pkg-descr (props changed) head/print/gspdf/pkg-descr (props changed) head/print/gsview/pkg-descr (props changed) head/print/gtklp/pkg-descr (props changed) head/print/guitartex/pkg-descr (props changed) head/print/gutenprint-base/pkg-descr (props changed) head/print/gutenprint/pkg-descr (props changed) head/print/gv/pkg-descr (props changed) head/print/hp2xx/pkg-descr (props changed) head/print/hpijs/pkg-descr (props changed) head/print/hplip/pkg-descr (props changed) head/print/hs-hscolour/pkg-descr (props changed) head/print/html2latex/pkg-descr (props changed) head/print/html2ps/pkg-descr (props changed) head/print/hyperlatex/pkg-descr (props changed) head/print/ifxetex/pkg-descr (props changed) head/print/jadetex/pkg-descr (props changed) head/print/kde_poster/pkg-descr (props changed) head/print/kover/pkg-descr (props changed) head/print/latex-aa/pkg-descr (props changed) head/print/latex-aastex/pkg-descr (props changed) head/print/latex-acm/pkg-descr (props changed) head/print/latex-arydshln/pkg-descr (props changed) head/print/latex-auto-greek/pkg-descr (props changed) head/print/latex-beamer/pkg-descr (props changed) head/print/latex-biblatex/pkg-descr (props changed) head/print/latex-biblist/pkg-descr (props changed) head/print/latex-bytefield/pkg-descr (props changed) head/print/latex-caption/pkg-descr (props changed) head/print/latex-chapterfolder/pkg-descr (props changed) head/print/latex-circ/pkg-descr (props changed) head/print/latex-cjk/pkg-descr (props changed) head/print/latex-csquotes/pkg-descr (props changed) head/print/latex-etoolbox/pkg-descr (props changed) head/print/latex-feynmf/pkg-descr (props changed) head/print/latex-keystroke/pkg-descr (props changed) head/print/latex-logpap/pkg-descr (props changed) head/print/latex-logreq/pkg-descr (props changed) head/print/latex-ltablex/pkg-descr (props changed) head/print/latex-mathabx/pkg-descr (props changed) head/print/latex-nomencl/pkg-descr (props changed) head/print/latex-pgf/pkg-descr (props changed) head/print/latex-prettyref/pkg-descr (props changed) head/print/latex-resume/pkg-descr (props changed) head/print/latex-subfloat/pkg-descr (props changed) head/print/latex-supertabular/pkg-descr (props changed) head/print/latex-svninfo/pkg-descr (props changed) head/print/latex-timing/pkg-descr (props changed) head/print/latex-tipa/pkg-descr (props changed) head/print/latex-ucs/pkg-descr (props changed) head/print/latex/pkg-descr (props changed) head/print/latex2rtf/pkg-descr (props changed) head/print/latex2slides/pkg-descr (props changed) head/print/latexdiff/pkg-descr (props changed) head/print/latexmk/pkg-descr (props changed) head/print/lgrind/pkg-descr (props changed) head/print/libgnomecups/pkg-descr (props changed) head/print/libgnomeprint-reference/pkg-descr (props changed) head/print/libgnomeprint/pkg-descr (props changed) head/print/libgnomeprintmm/pkg-descr (props changed) head/print/libharu/pkg-descr (props changed) head/print/libijs/pkg-descr (props changed) head/print/libpaper/pkg-descr (props changed) head/print/libppd/pkg-descr (props changed) head/print/libspectre/pkg-descr (props changed) head/print/lilypond/pkg-descr (props changed) head/print/lout/pkg-descr (props changed) head/print/lpr-wrapper/pkg-descr (props changed) head/print/lprps/pkg-descr (props changed) head/print/lyx/pkg-descr (props changed) head/print/magicfilter/pkg-descr (props changed) head/print/makeindex/pkg-descr (props changed) head/print/mftrace/pkg-descr (props changed) head/print/min12xxw/pkg-descr (props changed) head/print/mp-letter/pkg-descr (props changed) head/print/mpage/pkg-descr (props changed) head/print/mup/pkg-descr (props changed) head/print/musixtex/pkg-descr (props changed) head/print/muttprint/pkg-descr (props changed) head/print/nenscript/pkg-descr (props changed) head/print/openprinting/pkg-descr (props changed) head/print/p5-Font-FreeType/pkg-descr (props changed) head/print/p5-Net-CUPS/pkg-descr (props changed) head/print/p5-PDFLib/pkg-descr (props changed) head/print/p5-PostScript-PPD/pkg-descr (props changed) head/print/p5-Text-PDF/pkg-descr (props changed) head/print/panda/pkg-descr (props changed) head/print/papersize-default-a4/pkg-descr (props changed) head/print/papersize-default-letter/pkg-descr (props changed) head/print/paps/pkg-descr (props changed) head/print/passivetex/pkg-descr (props changed) head/print/pcal/pkg-descr (props changed) head/print/pdf-renderer/pkg-descr (props changed) head/print/pdfbox/pkg-descr (props changed) head/print/pdfcolorsplit/pkg-descr (props changed) head/print/pdfcube/pkg-descr (props changed) head/print/pdfjam/pkg-descr (props changed) head/print/pdflib/pkg-descr (props changed) head/print/pdfmod/pkg-descr (props changed) head/print/pdftk/pkg-descr (props changed) head/print/pdq/pkg-descr (props changed) head/print/pear-File_PDF/pkg-descr (props changed) head/print/pecl-haru/pkg-descr (props changed) head/print/pecl-pdflib/pkg-descr (props changed) head/print/pecl-ps/pkg-descr (props changed) head/print/pfbtopfa/pkg-descr (props changed) head/print/photoprint/pkg-descr (props changed) head/print/phppdflib/pkg-descr (props changed) head/print/pic2fig/pkg-descr (props changed) head/print/pkfonts300/pkg-descr (props changed) head/print/pkipplib/pkg-descr (props changed) head/print/pkpgcounter/pkg-descr (props changed) head/print/pmw/pkg-descr (props changed) head/print/pnm2ppa/pkg-descr (props changed) head/print/poster/pkg-descr (props changed) head/print/ps2eps/pkg-descr (props changed) head/print/pscal/pkg-descr (props changed) head/print/psdim/pkg-descr (props changed) head/print/pslib/pkg-descr (props changed) head/print/psutils/pkg-descr (props changed) head/print/pup/pkg-descr (props changed) head/print/py-pdf/pkg-descr (props changed) head/print/py-pollyreports/pkg-descr (props changed) head/print/py-pyscript/pkg-descr (props changed) head/print/py-relatorio/pkg-descr (props changed) head/print/py-reportlab/pkg-descr (props changed) head/print/py-reportlab2/pkg-descr (props changed) head/print/py-rtf/pkg-descr (props changed) head/print/py-trml2pdf/pkg-descr (props changed) head/print/qpdf/pkg-descr (props changed) head/print/rlpr/pkg-descr (props changed) head/print/rprint/pkg-descr (props changed) head/print/rtf2latex/pkg-descr (props changed) head/print/rtf2latex2e/pkg-descr (props changed) head/print/rubygem-afm/pkg-descr (props changed) head/print/rubygem-color/pkg-descr (props changed) head/print/rubygem-colortools/pkg-descr (props changed) head/print/rubygem-pdf-reader/pkg-descr (props changed) head/print/rubygem-pdfwriter/pkg-descr (props changed) head/print/rubygem-prawn-core/pkg-descr (props changed) head/print/rubygem-prawn-flexible-table/pkg-descr (props changed) head/print/rubygem-prawn-format/pkg-descr (props changed) head/print/rubygem-prawn-graph/pkg-descr (props changed) head/print/rubygem-prawn-js/pkg-descr (props changed) head/print/rubygem-prawn-layout/pkg-descr (props changed) head/print/rubygem-prawn-security/pkg-descr (props changed) head/print/rubygem-prawn-svg/pkg-descr (props changed) head/print/rubygem-prawn/pkg-descr (props changed) head/print/rubygem-ttfunk/pkg-descr (props changed) head/print/scribus-devel/pkg-descr (props changed) head/print/scribus/pkg-descr (props changed) head/print/sgf2tex/pkg-descr (props changed) head/print/splix/pkg-descr (props changed) head/print/system-config-printer/pkg-descr (props changed) head/print/t1utils/pkg-descr (props changed) head/print/teTeX-base/pkg-descr (props changed) head/print/teTeX-texmf/pkg-descr (props changed) head/print/teTeX/pkg-descr (props changed) head/print/tex-aleph/pkg-descr (props changed) head/print/tex-dvipdfmx/pkg-descr (props changed) head/print/tex-dvipsk/pkg-descr (props changed) head/print/tex-formats/pkg-descr (props changed) head/print/tex-jadetex/pkg-descr (props changed) head/print/tex-luatex/pkg-descr (props changed) head/print/tex-mfpic/pkg-descr (props changed) head/print/tex-omegaware-old/pkg-descr (props changed) head/print/tex-ptexenc/pkg-descr (props changed) head/print/tex-texmflocal/pkg-descr (props changed) head/print/tex-xdvik/pkg-descr (props changed) head/print/tex-xetex/pkg-descr (props changed) head/print/tex-xmltex/pkg-descr (props changed) head/print/tex/pkg-descr (props changed) head/print/texinfo/pkg-descr (props changed) head/print/texlive-base/pkg-descr (props changed) head/print/texlive-docs/pkg-descr (props changed) head/print/texlive-full/pkg-descr (props changed) head/print/texlive-infra/pkg-descr (props changed) head/print/texlive-texmf/pkg-descr (props changed) head/print/texpower/pkg-descr (props changed) head/print/texvc/pkg-descr (props changed) head/print/tgif2tex/pkg-descr (props changed) head/print/transfig/pkg-descr (props changed) head/print/trueprint/pkg-descr (props changed) head/print/ttf2pt1/pkg-descr (props changed) head/print/ttfquery/pkg-descr (props changed) head/print/ttftot42/pkg-descr (props changed) head/print/typetools/pkg-descr (props changed) head/print/utopia/pkg-descr (props changed) head/print/wprint/pkg-descr (props changed) head/print/xdvi/pkg-descr (props changed) head/print/xdvik/pkg-descr (props changed) head/print/xmbibtex/pkg-descr (props changed) head/print/xmltex/pkg-descr (props changed) head/print/xpp/pkg-descr (props changed) head/print/xtexsh/pkg-descr (props changed) head/print/yatex/pkg-descr (props changed) head/russian/MT/pkg-descr (props changed) head/russian/artwiz-ru/pkg-descr (props changed) head/russian/aspell/pkg-descr (props changed) head/russian/bugzilla40/pkg-descr (props changed) head/russian/bugzilla42/pkg-descr (props changed) head/russian/bugzilla44/pkg-descr (props changed) head/russian/calligra-l10n/pkg-descr (props changed) head/russian/d1489/pkg-descr (props changed) head/russian/fortune-bashorgru/pkg-descr (props changed) head/russian/fortuneru/pkg-descr (props changed) head/russian/hyphen/pkg-descr (props changed) head/russian/ircd-hybrid/pkg-descr (props changed) head/russian/kde4-l10n/pkg-descr (props changed) head/russian/koi2koi/pkg-descr (props changed) head/russian/libcyrillic/pkg-descr (props changed) head/russian/libreoffice/pkg-descr (props changed) head/russian/mueller-dic/pkg-descr (props changed) head/russian/mythes/pkg-descr (props changed) head/russian/p5-Convert-Cyrillic/pkg-descr (props changed) head/russian/p5-Lingua-DetectCyrillic/pkg-descr (props changed) head/russian/p5-Lingua-RU-Charset/pkg-descr (props changed) head/russian/p5-XML-Parser-encodings/pkg-descr (props changed) head/russian/p5-cyrillic/pkg-descr (props changed) head/russian/prawda/pkg-descr (props changed) head/russian/pscyr/pkg-descr (props changed) head/russian/rubygem-russian/pkg-descr (props changed) head/russian/rubygem-rutils/pkg-descr (props changed) head/russian/rus-ispell/pkg-descr (props changed) head/russian/rux/pkg-descr (props changed) head/russian/tac+ia/pkg-descr (props changed) head/russian/tidyup-mail/pkg-descr (props changed) head/russian/xcode/pkg-descr (props changed) head/russian/xpi-tabextensions/pkg-descr (props changed) head/russian/xruskb/pkg-descr (props changed) head/science/2d-rewriter/pkg-descr (props changed) head/science/2dhf/pkg-descr (props changed) head/science/InsightToolkit/pkg-descr (props changed) head/science/R-cran-AMORE/pkg-descr (props changed) head/science/R-cran-DCluster/pkg-descr (props changed) head/science/R-cran-Epi/pkg-descr (props changed) head/science/R-cran-bayesm/pkg-descr (props changed) head/science/R-cran-e1071/pkg-descr (props changed) head/science/R-cran-eco/pkg-descr (props changed) head/science/R-cran-epicalc/pkg-descr (props changed) head/science/R-cran-snow/pkg-descr (props changed) head/science/R-cran-som/pkg-descr (props changed) head/science/abinit/pkg-descr (props changed) head/science/afni/pkg-descr (props changed) head/science/avogadro/pkg-descr (props changed) head/science/bddsolve/pkg-descr (props changed) head/science/bft/pkg-descr (props changed) head/science/bodr/pkg-descr (props changed) head/science/brian/pkg-descr (props changed) head/science/buddy/pkg-descr (props changed) head/science/cdcl/pkg-descr (props changed) head/science/cdf/pkg-descr (props changed) head/science/cgnslib/pkg-descr (props changed) head/science/checkmol/pkg-descr (props changed) head/science/chemical-mime-data/pkg-descr (props changed) head/science/chemtool-devel/pkg-descr (props changed) head/science/chemtool/pkg-descr (props changed) head/science/clhep/pkg-descr (props changed) head/science/colt/pkg-descr (props changed) head/science/crf++/pkg-descr (props changed) head/science/dcl/pkg-descr (props changed) head/science/devisor/pkg-descr (props changed) head/science/dlpoly-classic/pkg-descr (props changed) head/science/dtiquery/pkg-descr (props changed) head/science/ecs/pkg-descr (props changed) head/science/elmer-eio/pkg-descr (props changed) head/science/elmer-hutiter/pkg-descr (props changed) head/science/elmer-matc/pkg-descr (props changed) head/science/elmer-meshgen2d/pkg-descr (props changed) head/science/elmergrid/pkg-descr (props changed) head/science/elmerpost/pkg-descr (props changed) head/science/epte/pkg-descr (props changed) head/science/euler/pkg-descr (props changed) head/science/fastcap/pkg-descr (props changed) head/science/fasthenry/pkg-descr (props changed) head/science/felt/pkg-descr (props changed) head/science/flounder/pkg-descr (props changed) head/science/fvm/pkg-descr (props changed) head/science/g3data/pkg-descr (props changed) head/science/gamess/pkg-descr (props changed) head/science/gchemutils/pkg-descr (props changed) head/science/gdis/pkg-descr (props changed) head/science/getdp/pkg-descr (props changed) head/science/ghemical/pkg-descr (props changed) head/science/ghmm/pkg-descr (props changed) head/science/gnudatalanguage/pkg-descr (props changed) head/science/gramps/pkg-descr (props changed) head/science/gromacs/pkg-descr (props changed) head/science/gsmc/pkg-descr (props changed) head/science/gtamsanalyzer/pkg-descr (props changed) head/science/h5utils/pkg-descr (props changed) head/science/harminv/pkg-descr (props changed) head/science/hdf-java/pkg-descr (props changed) head/science/hdf/pkg-descr (props changed) head/science/hdf5/pkg-descr (props changed) head/science/hs-bio/pkg-descr (props changed) head/science/isaac-cfd/pkg-descr (props changed) head/science/jstrack/pkg-descr (props changed) head/science/kalzium/pkg-descr (props changed) head/science/kst2/pkg-descr (props changed) head/science/lamprop/pkg-descr (props changed) head/science/libctl/pkg-descr (props changed) head/science/libghemical/pkg-descr (props changed) head/science/libint/pkg-descr (props changed) head/science/libkml/pkg-descr (props changed) head/science/liblinear/pkg-descr (props changed) head/science/liboglappth/pkg-descr (props changed) head/science/libquantum/pkg-descr (props changed) head/science/libsvm-python/pkg-descr (props changed) head/science/libsvm/pkg-descr (props changed) head/science/linsmith/pkg-descr (props changed) head/science/massxpert/pkg-descr (props changed) head/science/mbdyn/pkg-descr (props changed) head/science/mcstas/pkg-descr (props changed) head/science/medit/pkg-descr (props changed) head/science/meep/pkg-descr (props changed) head/science/mei/pkg-descr (props changed) head/science/minc/pkg-descr (props changed) head/science/minc2/pkg-descr (props changed) head/science/mol2ps/pkg-descr (props changed) head/science/mpb/pkg-descr (props changed) head/science/mpqc/pkg-descr (props changed) head/science/ncs/pkg-descr (props changed) head/science/netcdf/pkg-descr (props changed) head/science/netcdf4/pkg-descr (props changed) head/science/nifticlib/pkg-descr (props changed) head/science/openbabel/pkg-descr (props changed) head/science/p5-Chemistry-3DBuilder/pkg-descr (props changed) head/science/p5-Chemistry-Bond-Find/pkg-descr (props changed) head/science/p5-Chemistry-Canonicalize/pkg-descr (props changed) head/science/p5-Chemistry-Elements/pkg-descr (props changed) head/science/p5-Chemistry-File-MDLMol/pkg-descr (props changed) head/science/p5-Chemistry-File-Mopac/pkg-descr (props changed) head/science/p5-Chemistry-File-PDB/pkg-descr (props changed) head/science/p5-Chemistry-File-SLN/pkg-descr (props changed) head/science/p5-Chemistry-File-SMARTS/pkg-descr (props changed) head/science/p5-Chemistry-File-SMILES/pkg-descr (props changed) head/science/p5-Chemistry-File-VRML/pkg-descr (props changed) head/science/p5-Chemistry-File-XYZ/pkg-descr (props changed) head/science/p5-Chemistry-FormulaPattern/pkg-descr (props changed) head/science/p5-Chemistry-InternalCoords/pkg-descr (props changed) head/science/p5-Chemistry-Isotope/pkg-descr (props changed) head/science/p5-Chemistry-MacroMol/pkg-descr (props changed) head/science/p5-Chemistry-MidasPattern/pkg-descr (props changed) head/science/p5-Chemistry-Mok/pkg-descr (props changed) head/science/p5-Chemistry-Mol/pkg-descr (props changed) head/science/p5-Chemistry-Pattern/pkg-descr (props changed) head/science/p5-Chemistry-Reaction/pkg-descr (props changed) head/science/p5-Chemistry-Ring/pkg-descr (props changed) head/science/p5-Geo-BUFR/pkg-descr (props changed) head/science/p5-Geo-Coordinates-Converter-iArea/pkg-descr (props changed) head/science/p5-Geo-ReadGRIB/pkg-descr (props changed) head/science/p5-Geo-WebService-Elevation-USGS/pkg-descr (props changed) head/science/p5-PerlMol/pkg-descr (props changed) head/science/p5-Physics-Unit/pkg-descr (props changed) head/science/paje/pkg-descr (props changed) head/science/paraview/pkg-descr (props changed) head/science/peekabot/pkg-descr (props changed) head/science/pnetcdf/pkg-descr (props changed) head/science/psi3/pkg-descr (props changed) head/science/psychopy/pkg-descr (props changed) head/science/py-DendroPy/pkg-descr (props changed) head/science/py-hcluster/pkg-descr (props changed) head/science/py-mdp/pkg-descr (props changed) head/science/py-mlpy/pkg-descr (props changed) head/science/py-netCDF4/pkg-descr (props changed) head/science/py-obspy/pkg-descr (props changed) head/science/py-paida/pkg-descr (props changed) head/science/py-pydicom/pkg-descr (props changed) head/science/py-scikit-learn/pkg-descr (props changed) head/science/py-scipy/pkg-descr (props changed) head/science/py-ws2300/pkg-descr (props changed) head/science/pybrain/pkg-descr (props changed) head/science/pycdf/pkg-descr (props changed) head/science/pynn/pkg-descr (props changed) head/science/qcl/pkg-descr (props changed) head/science/qtresistors/pkg-descr (props changed) head/science/ruby-dcl/pkg-descr (props changed) head/science/ruby-gphys/pkg-descr (props changed) head/science/rubygem-ai4r/pkg-descr (props changed) head/science/sigrok-cli/pkg-descr (props changed) head/science/simlib/pkg-descr (props changed) head/science/step/pkg-descr (props changed) head/science/svmlight/pkg-descr (props changed) head/science/szip/pkg-descr (props changed) head/science/udunits/pkg-descr (props changed) head/science/v_sim/pkg-descr (props changed) head/science/veusz/pkg-descr (props changed) head/science/vmd/pkg-descr (props changed) head/science/x11iraf/pkg-descr (props changed) head/science/xmakemol/pkg-descr (props changed) head/science/xmds/pkg-descr (props changed) head/security/ADMsmb/pkg-descr (props changed) head/security/ADMsnmp/pkg-descr (props changed) head/security/R-cran-ROAuth/pkg-descr (props changed) head/security/R-cran-digest/pkg-descr (props changed) head/security/aescrypt/pkg-descr (props changed) head/security/aespipe/pkg-descr (props changed) head/security/aide/pkg-descr (props changed) head/security/aimsniff/pkg-descr (props changed) head/security/amap/pkg-descr (props changed) head/security/amavis-stats/pkg-descr (props changed) head/security/amavisd-milter/pkg-descr (props changed) head/security/amavisd-new/pkg-descr (props changed) head/security/aolserver-nsencrypt/pkg-descr (props changed) head/security/aolserver-nsmcrypt/pkg-descr (props changed) head/security/aolserver-nsmhash/pkg-descr (props changed) head/security/aolserver-nsopenssl/pkg-descr (props changed) head/security/aolserver-nssha1/pkg-descr (props changed) head/security/apache-xml-security-c/pkg-descr (props changed) head/security/apg/pkg-descr (props changed) head/security/arirang/pkg-descr (props changed) head/security/arm/pkg-descr (props changed) head/security/arpCounterattack/pkg-descr (props changed) head/security/authforce/pkg-descr (props changed) head/security/autossh/pkg-descr (props changed) head/security/avcheck/pkg-descr (props changed) head/security/barnyard2/pkg-descr (props changed) head/security/base/pkg-descr (props changed) head/security/bcrypt/pkg-descr (props changed) head/security/bcwipe/pkg-descr (props changed) head/security/bdc/pkg-descr (props changed) head/security/beecrypt/pkg-descr (props changed) head/security/belier/pkg-descr (props changed) head/security/bfbtester/pkg-descr (props changed) head/security/binwalk/pkg-descr (props changed) head/security/bioapi/pkg-descr (props changed) head/security/blindelephant/pkg-descr (props changed) head/security/botan/pkg-descr (props changed) head/security/botan110/pkg-descr (props changed) head/security/bro/pkg-descr (props changed) head/security/broccoli/pkg-descr (props changed) head/security/bruteblock/pkg-descr (props changed) head/security/bruteforceblocker/pkg-descr (props changed) head/security/bsdsfv/pkg-descr (props changed) head/security/bsmtrace/pkg-descr (props changed) head/security/bsp_upektfmess/pkg-descr (props changed) head/security/bugs/pkg-descr (props changed) head/security/ca_root_nss/pkg-descr (props changed) head/security/calife-devel/pkg-descr (props changed) head/security/calife/pkg-descr (props changed) head/security/ccrypt/pkg-descr (props changed) head/security/cfs/pkg-descr (props changed) head/security/cfv/pkg-descr (props changed) head/security/chaosreader/pkg-descr (props changed) head/security/checkpassword-pam/pkg-descr (props changed) head/security/checkpassword/pkg-descr (props changed) head/security/chkrootkit/pkg-descr (props changed) head/security/chntpw/pkg-descr (props changed) head/security/chroot_safe/pkg-descr (props changed) head/security/chrootuid/pkg-descr (props changed) head/security/cksfv/pkg-descr (props changed) head/security/cl-md5-clisp/pkg-descr (props changed) head/security/cl-md5-sbcl/pkg-descr (props changed) head/security/cl-md5/pkg-descr (props changed) head/security/clamassassin/pkg-descr (props changed) head/security/clamav-devel/pkg-descr (props changed) head/security/clamav-unofficial-sigs/pkg-descr (props changed) head/security/clamav/pkg-descr (props changed) head/security/clamcour/pkg-descr (props changed) head/security/clamd-stream-client/pkg-descr (props changed) head/security/clamsmtp/pkg-descr (props changed) head/security/clamtk/pkg-descr (props changed) head/security/clusterssh/pkg-descr (props changed) head/security/cmd5checkpw/pkg-descr (props changed) head/security/cops/pkg-descr (props changed) head/security/courier-authlib/pkg-descr (props changed) head/security/courier-authlib/pkg-descr-base (props changed) head/security/courier-authlib/pkg-descr-ldap (props changed) head/security/courier-authlib/pkg-descr-mysql (props changed) head/security/courier-authlib/pkg-descr-pgsql (props changed) head/security/courier-authlib/pkg-descr-userdb (props changed) head/security/courier-authlib/pkg-descr-usergdbm (props changed) head/security/courier-authlib/pkg-descr-vchkpw (props changed) head/security/courierpassd/pkg-descr (props changed) head/security/courierpasswd/pkg-descr (props changed) head/security/courieruserinfo/pkg-descr (props changed) head/security/cp2fwb/pkg-descr (props changed) head/security/crack/pkg-descr (props changed) head/security/crank/pkg-descr (props changed) head/security/create-cert/pkg-descr (props changed) head/security/cryptlib/pkg-descr (props changed) head/security/cryptopp/pkg-descr (props changed) head/security/cryptstring/pkg-descr (props changed) head/security/cvm/pkg-descr (props changed) head/security/cyrus-sasl2-ldapdb/pkg-descr (props changed) head/security/cyrus-sasl2-saslauthd/pkg-descr (props changed) head/security/cyrus-sasl2/pkg-descr (props changed) head/security/dcetest/pkg-descr (props changed) head/security/ddos_scan/pkg-descr (props changed) head/security/denyhosts/pkg-descr (props changed) head/security/destroy/pkg-descr (props changed) head/security/didentd/pkg-descr (props changed) head/security/digest/pkg-descr (props changed) head/security/dirbuster/pkg-descr (props changed) head/security/distcache-devel/pkg-descr (props changed) head/security/distcache/pkg-descr (props changed) head/security/dmitry/pkg-descr (props changed) head/security/doorman/pkg-descr (props changed) head/security/doscan/pkg-descr (props changed) head/security/dradis/pkg-descr (props changed) head/security/duo/pkg-descr (props changed) head/security/easypg/pkg-descr (props changed) head/security/engine_pkcs11/pkg-descr (props changed) head/security/expiretable/pkg-descr (props changed) head/security/f-prot/pkg-descr (props changed) head/security/fakebo/pkg-descr (props changed) head/security/fakeident/pkg-descr (props changed) head/security/fbopenssl/pkg-descr (props changed) head/security/fcheck/pkg-descr (props changed) head/security/fcrackzip/pkg-descr (props changed) head/security/fiked/pkg-descr (props changed) head/security/find-zlib/pkg-descr (props changed) head/security/firewalk/pkg-descr (props changed) head/security/fl0p/pkg-descr (props changed) head/security/flawfinder/pkg-descr (props changed) head/security/fpm2/pkg-descr (props changed) head/security/fprint_demo/pkg-descr (props changed) head/security/fragroute/pkg-descr (props changed) head/security/fragrouter/pkg-descr (props changed) head/security/fsh/pkg-descr (props changed) head/security/fswatch/pkg-descr (props changed) head/security/ftimes/pkg-descr (props changed) head/security/fuzz/pkg-descr (props changed) head/security/fuzzdb/pkg-descr (props changed) head/security/fwanalog/pkg-descr (props changed) head/security/fwbuilder/pkg-descr (props changed) head/security/fwipe/pkg-descr (props changed) head/security/fwlogwatch/pkg-descr (props changed) head/security/gag/pkg-descr (props changed) head/security/gcipher/pkg-descr (props changed) head/security/gnome-gpg/pkg-descr (props changed) head/security/gnome-keyring-sharp/pkg-descr (props changed) head/security/gnome-keyring/pkg-descr (props changed) head/security/gnome-password-generator/pkg-descr (props changed) head/security/gnome-ssh-askpass/pkg-descr (props changed) head/security/gnomint/pkg-descr (props changed) head/security/gnupg/pkg-descr (props changed) head/security/gnupg1/pkg-descr (props changed) head/security/gnutls-devel/pkg-descr (props changed) head/security/gnutls/pkg-descr (props changed) head/security/go.crypto/pkg-descr (props changed) head/security/gorilla/pkg-descr (props changed) head/security/gpa/pkg-descr (props changed) head/security/gpasman/pkg-descr (props changed) head/security/gpass/pkg-descr (props changed) head/security/gpgme/pkg-descr (props changed) head/security/gringotts/pkg-descr (props changed) head/security/gsasl/pkg-descr (props changed) head/security/gsfv/pkg-descr (props changed) head/security/gss/pkg-descr (props changed) head/security/gtk-knocker/pkg-descr (props changed) head/security/gtkpasman/pkg-descr (props changed) head/security/gtkportscan/pkg-descr (props changed) head/security/gwee/pkg-descr (props changed) head/security/hackbot/pkg-descr (props changed) head/security/hamachi/pkg-descr (props changed) head/security/heimdal/pkg-descr (props changed) head/security/hlfl/pkg-descr (props changed) head/security/hmap/pkg-descr (props changed) head/security/honggfuzz/pkg-descr (props changed) head/security/horde3-jeta/pkg-descr (props changed) head/security/hotssh/pkg-descr (props changed) head/security/hs-Crypto/pkg-descr (props changed) head/security/hs-HsOpenSSL/pkg-descr (props changed) head/security/hs-RSA/pkg-descr (props changed) head/security/hs-SHA/pkg-descr (props changed) head/security/hs-certificate/pkg-descr (props changed) head/security/hs-clientsession/pkg-descr (props changed) head/security/hs-cprng-aes/pkg-descr (props changed) head/security/hs-crypto-api/pkg-descr (props changed) head/security/hs-crypto-conduit/pkg-descr (props changed) head/security/hs-crypto-pubkey-types/pkg-descr (props changed) head/security/hs-cryptocipher/pkg-descr (props changed) head/security/hs-cryptohash/pkg-descr (props changed) head/security/hs-digest/pkg-descr (props changed) head/security/hs-entropy/pkg-descr (props changed) head/security/hs-monadcryptorandom/pkg-descr (props changed) head/security/hs-pem/pkg-descr (props changed) head/security/hs-pureMD5/pkg-descr (props changed) head/security/hs-pwstore-fast/pkg-descr (props changed) head/security/hs-skein/pkg-descr (props changed) head/security/hs-tls-extra/pkg-descr (props changed) head/security/hs-tls/pkg-descr (props changed) head/security/httprint/pkg-descr (props changed) head/security/hunch/pkg-descr (props changed) head/security/hydra/pkg-descr (props changed) head/security/iaikpkcs11wrapper/pkg-descr (props changed) head/security/idea/pkg-descr (props changed) head/security/identify/pkg-descr (props changed) head/security/ifd-slb_rf60/pkg-descr (props changed) head/security/ike-scan/pkg-descr (props changed) head/security/ike/pkg-descr (props changed) head/security/integrit/pkg-descr (props changed) head/security/ipfcount/pkg-descr (props changed) head/security/ipfilter2dshield/pkg-descr (props changed) head/security/ipfmeta/pkg-descr (props changed) head/security/ipfw2dshield/pkg-descr (props changed) head/security/ipfwcount/pkg-descr (props changed) head/security/ipguard/pkg-descr (props changed) head/security/ipsec-tools/pkg-descr (props changed) head/security/isakmpd/pkg-descr (props changed) head/security/isnprober/pkg-descr (props changed) head/security/jbrofuzz/pkg-descr (props changed) head/security/john/pkg-descr (props changed) head/security/kc/pkg-descr (props changed) head/security/kedpm/pkg-descr (props changed) head/security/keepassx/pkg-descr (props changed) head/security/keychain/pkg-descr (props changed) head/security/keynote/pkg-descr (props changed) head/security/keyprint/pkg-descr (props changed) head/security/kgpg-kde4/pkg-descr (props changed) head/security/knocker/pkg-descr (props changed) head/security/kpcli/pkg-descr (props changed) head/security/krb5-appl/pkg-descr (props changed) head/security/krb5-maint/pkg-descr (props changed) head/security/krb5/pkg-descr (props changed) head/security/kripp/pkg-descr (props changed) head/security/kwallet/pkg-descr (props changed) head/security/l0pht-watch/pkg-descr (props changed) head/security/l0phtcrack/pkg-descr (props changed) head/security/l5/pkg-descr (props changed) head/security/labrea/pkg-descr (props changed) head/security/lasso/pkg-descr (props changed) head/security/libbf/pkg-descr (props changed) head/security/libecc/pkg-descr (props changed) head/security/libfprint/pkg-descr (props changed) head/security/libgcrypt/pkg-descr (props changed) head/security/libgnome-keyring/pkg-descr (props changed) head/security/libgnomesu/pkg-descr (props changed) head/security/libgpg-error/pkg-descr (props changed) head/security/libgringotts/pkg-descr (props changed) head/security/libident/pkg-descr (props changed) head/security/libksba/pkg-descr (props changed) head/security/libmatekeyring/pkg-descr (props changed) head/security/libmcrypt/pkg-descr (props changed) head/security/libntlm/pkg-descr (props changed) head/security/libotr/pkg-descr (props changed) head/security/libotr3/pkg-descr (props changed) head/security/libp11/pkg-descr (props changed) head/security/libprelude/pkg-descr (props changed) head/security/libpreludedb/pkg-descr (props changed) head/security/libpwstor/pkg-descr (props changed) head/security/libscrypt/pkg-descr (props changed) head/security/libsectok/pkg-descr (props changed) head/security/libsodium/pkg-descr (props changed) head/security/libsparkcrypto/pkg-descr (props changed) head/security/libssh/pkg-descr (props changed) head/security/libssh2/pkg-descr (props changed) head/security/libtasn1/pkg-descr (props changed) head/security/libtomcrypt/pkg-descr (props changed) head/security/libwhisker/pkg-descr (props changed) head/security/lockdown/pkg-descr (props changed) head/security/log2timeline/pkg-descr (props changed) head/security/logcheck/pkg-descr (props changed) head/security/lsh/pkg-descr (props changed) head/security/luasec/pkg-descr (props changed) head/security/lynis/pkg-descr (props changed) head/security/mac-robber/pkg-descr (props changed) head/security/maia/pkg-descr (props changed) head/security/mailzu/pkg-descr (props changed) head/security/makepasswd/pkg-descr (props changed) head/security/manipulate_data/pkg-descr (props changed) head/security/massh/pkg-descr (props changed) head/security/mate-keyring/pkg-descr (props changed) head/security/matrixssl/pkg-descr (props changed) head/security/mcrypt/pkg-descr (props changed) head/security/md4coll/pkg-descr (props changed) head/security/md5coll/pkg-descr (props changed) head/security/md5deep/pkg-descr (props changed) head/security/mdcrack/pkg-descr (props changed) head/security/medusa/pkg-descr (props changed) head/security/metasploit/pkg-descr (props changed) head/security/mhash/pkg-descr (props changed) head/security/mindterm-binary/pkg-descr (props changed) head/security/monkeysphere/pkg-descr (props changed) head/security/mosref/pkg-descr (props changed) head/security/mussh/pkg-descr (props changed) head/security/nacl/pkg-descr (props changed) head/security/nbaudit/pkg-descr (props changed) head/security/ncrack/pkg-descr (props changed) head/security/ncrypt/pkg-descr (props changed) head/security/nessus-libraries/pkg-descr (props changed) head/security/nessus-plugins/pkg-descr (props changed) head/security/nessus/pkg-descr (props changed) head/security/netpgp/pkg-descr (props changed) head/security/nettle/pkg-descr (props changed) head/security/nikto/pkg-descr (props changed) head/security/nss/pkg-descr (props changed) head/security/oath-toolkit/pkg-descr (props changed) head/security/obfsproxy/pkg-descr (props changed) head/security/ocaml-cryptgps/pkg-descr (props changed) head/security/ocaml-cryptokit/pkg-descr (props changed) head/security/ocaml-ssl/pkg-descr (props changed) head/security/oidentd/pkg-descr (props changed) head/security/oinkmaster/pkg-descr (props changed) head/security/op/pkg-descr (props changed) head/security/openbsm-devel/pkg-descr (props changed) head/security/openbsm/pkg-descr (props changed) head/security/opencdk/pkg-descr (props changed) head/security/openconnect/pkg-descr (props changed) head/security/opencryptoki/pkg-descr (props changed) head/security/openct/pkg-descr (props changed) head/security/openfwtk/pkg-descr (props changed) head/security/openpgpsdk/pkg-descr (props changed) head/security/opensaml2/pkg-descr (props changed) head/security/opensc/pkg-descr (props changed) head/security/openscep/pkg-descr (props changed) head/security/openssh-askpass/pkg-descr (props changed) head/security/openssh-portable/pkg-descr (props changed) head/security/openssl/pkg-descr (props changed) head/security/openssl_tpm_engine/pkg-descr (props changed) head/security/openvas-client/pkg-descr (props changed) head/security/openvas-libnasl/pkg-descr (props changed) head/security/openvas-libraries/pkg-descr (props changed) head/security/openvas-plugins/pkg-descr (props changed) head/security/openvas-server/pkg-descr (props changed) head/security/openvpn-admin/pkg-descr (props changed) head/security/openvpn-auth-ldap/pkg-descr (props changed) head/security/openvpn-auth-radius/pkg-descr (props changed) head/security/openvpn-beta/pkg-descr (props changed) head/security/openvpn-devel/pkg-descr (props changed) head/security/openvpn/pkg-descr (props changed) head/security/ophcrack/pkg-descr (props changed) head/security/orthrus/pkg-descr (props changed) head/security/osiris/pkg-descr (props changed) head/security/ossec-hids-server/pkg-descr (props changed) head/security/osslsigncode/pkg-descr (props changed) head/security/p11-kit/pkg-descr (props changed) head/security/p5-App-Genpass/pkg-descr (props changed) head/security/p5-App-TLSMe/pkg-descr (props changed) head/security/p5-Auth-YubikeyDecrypter/pkg-descr (props changed) head/security/p5-AuthCAS/pkg-descr (props changed) head/security/p5-Authen-Bitcard/pkg-descr (props changed) head/security/p5-Authen-CyrusSASL/pkg-descr (props changed) head/security/p5-Authen-DecHpwd/pkg-descr (props changed) head/security/p5-Authen-Htpasswd/pkg-descr (props changed) head/security/p5-Authen-Libwrap/pkg-descr (props changed) head/security/p5-Authen-NTLM/pkg-descr (props changed) head/security/p5-Authen-OATH/pkg-descr (props changed) head/security/p5-Authen-PAAS/pkg-descr (props changed) head/security/p5-Authen-PAM/pkg-descr (props changed) head/security/p5-Authen-Passphrase/pkg-descr (props changed) head/security/p5-Authen-PluggableCaptcha/pkg-descr (props changed) head/security/p5-Authen-SASL-Cyrus/pkg-descr (props changed) head/security/p5-Authen-SASL/pkg-descr (props changed) head/security/p5-Authen-Simple-DBM/pkg-descr (props changed) head/security/p5-Authen-Simple-LDAP/pkg-descr (props changed) head/security/p5-Authen-Simple-Net/pkg-descr (props changed) head/security/p5-Authen-Simple-PAM/pkg-descr (props changed) head/security/p5-Authen-Simple-RADIUS/pkg-descr (props changed) head/security/p5-Authen-Simple-SMB/pkg-descr (props changed) head/security/p5-Authen-Simple/pkg-descr (props changed) head/security/p5-Authen-Smb/pkg-descr (props changed) head/security/p5-Authen-TacacsPlus/pkg-descr (props changed) head/security/p5-Authen-Ticket/pkg-descr (props changed) head/security/p5-Authen-TypeKey/pkg-descr (props changed) head/security/p5-Business-PayPal-EWP/pkg-descr (props changed) head/security/p5-CACertOrg-CA/pkg-descr (props changed) head/security/p5-CSP/pkg-descr (props changed) head/security/p5-Cisco-Hash/pkg-descr (props changed) head/security/p5-Crypt-Anubis/pkg-descr (props changed) head/security/p5-Crypt-AppleTwoFish/pkg-descr (props changed) head/security/p5-Crypt-Blowfish/pkg-descr (props changed) head/security/p5-Crypt-Blowfish_PP/pkg-descr (props changed) head/security/p5-Crypt-CAST5/pkg-descr (props changed) head/security/p5-Crypt-CAST5_PP/pkg-descr (props changed) head/security/p5-Crypt-CBC/pkg-descr (props changed) head/security/p5-Crypt-CBCeasy/pkg-descr (props changed) head/security/p5-Crypt-CFB/pkg-descr (props changed) head/security/p5-Crypt-Caesar/pkg-descr (props changed) head/security/p5-Crypt-Camellia_PP/pkg-descr (props changed) head/security/p5-Crypt-Chimera/pkg-descr (props changed) head/security/p5-Crypt-CipherSaber/pkg-descr (props changed) head/security/p5-Crypt-Cracklib/pkg-descr (props changed) head/security/p5-Crypt-Ctr/pkg-descr (props changed) head/security/p5-Crypt-DES/pkg-descr (props changed) head/security/p5-Crypt-DES_EDE3/pkg-descr (props changed) head/security/p5-Crypt-DES_PP/pkg-descr (props changed) head/security/p5-Crypt-DH/pkg-descr (props changed) head/security/p5-Crypt-DSA/pkg-descr (props changed) head/security/p5-Crypt-Dining/pkg-descr (props changed) head/security/p5-Crypt-ECB/pkg-descr (props changed) head/security/p5-Crypt-Eksblowfish/pkg-descr (props changed) head/security/p5-Crypt-Enigma/pkg-descr (props changed) head/security/p5-Crypt-GCrypt/pkg-descr (props changed) head/security/p5-Crypt-GOST/pkg-descr (props changed) head/security/p5-Crypt-GOST_PP/pkg-descr (props changed) head/security/p5-Crypt-GPG/pkg-descr (props changed) head/security/p5-Crypt-GeneratePassword/pkg-descr (props changed) head/security/p5-Crypt-HCE_MD5/pkg-descr (props changed) head/security/p5-Crypt-HCE_SHA/pkg-descr (props changed) head/security/p5-Crypt-IDEA/pkg-descr (props changed) head/security/p5-Crypt-Imail/pkg-descr (props changed) head/security/p5-Crypt-Juniper/pkg-descr (props changed) head/security/p5-Crypt-Khazad/pkg-descr (props changed) head/security/p5-Crypt-License/pkg-descr (props changed) head/security/p5-Crypt-Lite/pkg-descr (props changed) head/security/p5-Crypt-Loki97/pkg-descr (props changed) head/security/p5-Crypt-MySQL/pkg-descr (props changed) head/security/p5-Crypt-NULL/pkg-descr (props changed) head/security/p5-Crypt-OFB/pkg-descr (props changed) head/security/p5-Crypt-OICQ/pkg-descr (props changed) head/security/p5-Crypt-OTP/pkg-descr (props changed) head/security/p5-Crypt-OpenPGP/pkg-descr (props changed) head/security/p5-Crypt-OpenSSL-AES/pkg-descr (props changed) head/security/p5-Crypt-OpenSSL-Bignum/pkg-descr (props changed) head/security/p5-Crypt-OpenSSL-CA/pkg-descr (props changed) head/security/p5-Crypt-OpenSSL-DSA/pkg-descr (props changed) head/security/p5-Crypt-OpenSSL-RSA/pkg-descr (props changed) head/security/p5-Crypt-OpenSSL-Random/pkg-descr (props changed) head/security/p5-Crypt-OpenSSL-X509/pkg-descr (props changed) head/security/p5-Crypt-PGPSimple/pkg-descr (props changed) head/security/p5-Crypt-PassGen/pkg-descr (props changed) head/security/p5-Crypt-PasswdMD5/pkg-descr (props changed) head/security/p5-Crypt-Primes/pkg-descr (props changed) head/security/p5-Crypt-RC4/pkg-descr (props changed) head/security/p5-Crypt-RC5/pkg-descr (props changed) head/security/p5-Crypt-RC6/pkg-descr (props changed) head/security/p5-Crypt-RIPEMD160/pkg-descr (props changed) head/security/p5-Crypt-RSA-Yandex/pkg-descr (props changed) head/security/p5-Crypt-RSA/pkg-descr (props changed) head/security/p5-Crypt-Rabbit/pkg-descr (props changed) head/security/p5-Crypt-RandPasswd/pkg-descr (props changed) head/security/p5-Crypt-Random-Source/pkg-descr (props changed) head/security/p5-Crypt-Random/pkg-descr (props changed) head/security/p5-Crypt-Rijndael/pkg-descr (props changed) head/security/p5-Crypt-SKey/pkg-descr (props changed) head/security/p5-Crypt-SSLeay/pkg-descr (props changed) head/security/p5-Crypt-Salt/pkg-descr (props changed) head/security/p5-Crypt-SaltedHash/pkg-descr (props changed) head/security/p5-Crypt-Serpent/pkg-descr (props changed) head/security/p5-Crypt-Shark/pkg-descr (props changed) head/security/p5-Crypt-SmbHash/pkg-descr (props changed) head/security/p5-Crypt-Solitaire/pkg-descr (props changed) head/security/p5-Crypt-TEA/pkg-descr (props changed) head/security/p5-Crypt-T_e_a/pkg-descr (props changed) head/security/p5-Crypt-TripleDES/pkg-descr (props changed) head/security/p5-Crypt-Twofish/pkg-descr (props changed) head/security/p5-Crypt-Twofish2/pkg-descr (props changed) head/security/p5-Crypt-Twofish_PP/pkg-descr (props changed) head/security/p5-Crypt-URandom/pkg-descr (props changed) head/security/p5-Crypt-UnixCrypt/pkg-descr (props changed) head/security/p5-Crypt-UnixCrypt_XS/pkg-descr (props changed) head/security/p5-Crypt-X509/pkg-descr (props changed) head/security/p5-CryptX/pkg-descr (props changed) head/security/p5-Dancer-Plugin-Passphrase/pkg-descr (props changed) head/security/p5-Data-Password/pkg-descr (props changed) head/security/p5-Digest-Adler32/pkg-descr (props changed) head/security/p5-Digest-Bcrypt/pkg-descr (props changed) head/security/p5-Digest-CRC/pkg-descr (props changed) head/security/p5-Digest-Crc32/pkg-descr (props changed) head/security/p5-Digest-DJB/pkg-descr (props changed) head/security/p5-Digest-DMAC/pkg-descr (props changed) head/security/p5-Digest-EMAC/pkg-descr (props changed) head/security/p5-Digest-Elf/pkg-descr (props changed) head/security/p5-Digest-FNV/pkg-descr (props changed) head/security/p5-Digest-HMAC/pkg-descr (props changed) head/security/p5-Digest-Hashcash/pkg-descr (props changed) head/security/p5-Digest-Haval256/pkg-descr (props changed) head/security/p5-Digest-JHash/pkg-descr (props changed) head/security/p5-Digest-MD2/pkg-descr (props changed) head/security/p5-Digest-MD4/pkg-descr (props changed) head/security/p5-Digest-MD5-File/pkg-descr (props changed) head/security/p5-Digest-MD5-M4p/pkg-descr (props changed) head/security/p5-Digest-MD5-Reverse/pkg-descr (props changed) head/security/p5-Digest-MD5/pkg-descr (props changed) head/security/p5-Digest-ManberHash/pkg-descr (props changed) head/security/p5-Digest-MurmurHash/pkg-descr (props changed) head/security/p5-Digest-Nilsimsa/pkg-descr (props changed) head/security/p5-Digest-Pearson-PurePerl/pkg-descr (props changed) head/security/p5-Digest-Pearson/pkg-descr (props changed) head/security/p5-Digest-Perl-MD4/pkg-descr (props changed) head/security/p5-Digest-Perl-MD5/pkg-descr (props changed) head/security/p5-Digest-SHA-PurePerl/pkg-descr (props changed) head/security/p5-Digest-SHA/pkg-descr (props changed) head/security/p5-Digest-SHA1/pkg-descr (props changed) head/security/p5-Digest-SV1/pkg-descr (props changed) head/security/p5-Digest-Tiger/pkg-descr (props changed) head/security/p5-Digest-Whirlpool/pkg-descr (props changed) head/security/p5-Digest/pkg-descr (props changed) head/security/p5-File-Scan-ClamAV/pkg-descr (props changed) head/security/p5-File-Scan/pkg-descr (props changed) head/security/p5-Filter-CBC/pkg-descr (props changed) head/security/p5-Filter-Crypto/pkg-descr (props changed) head/security/p5-GD-SecurityImage/pkg-descr (props changed) head/security/p5-GSSAPI/pkg-descr (props changed) head/security/p5-GnuPG/pkg-descr (props changed) head/security/p5-HTML-Email-Obfuscate/pkg-descr (props changed) head/security/p5-IO-Socket-SSL/pkg-descr (props changed) head/security/p5-Jifty-Plugin-OpenID/pkg-descr (props changed) head/security/p5-MD5/pkg-descr (props changed) head/security/p5-Mcrypt/pkg-descr (props changed) head/security/p5-Module-Signature/pkg-descr (props changed) head/security/p5-Net-Daemon-SSL/pkg-descr (props changed) head/security/p5-Net-OpenID-Common/pkg-descr (props changed) head/security/p5-Net-OpenID-JanRain/pkg-descr (props changed) head/security/p5-Net-SSL-ExpireDate/pkg-descr (props changed) head/security/p5-Net-SSLeay/pkg-descr (props changed) head/security/p5-Net-Server-Mail-ESMTP-AUTH/pkg-descr (props changed) head/security/p5-Net-SinFP/pkg-descr (props changed) head/security/p5-Nmap-Parser/pkg-descr (props changed) head/security/p5-Nmap-Scanner/pkg-descr (props changed) head/security/p5-OpenCA-CRL/pkg-descr (props changed) head/security/p5-OpenCA-CRR/pkg-descr (props changed) head/security/p5-OpenCA-PKCS7/pkg-descr (props changed) head/security/p5-OpenCA-REQ/pkg-descr (props changed) head/security/p5-PGP-Sign/pkg-descr (props changed) head/security/p5-PGP/pkg-descr (props changed) head/security/p5-POE-Component-SSLify/pkg-descr (props changed) head/security/p5-POE-Filter-SSL/pkg-descr (props changed) head/security/p5-SAVI-Perl/pkg-descr (props changed) head/security/p5-SHA/pkg-descr (props changed) head/security/p5-Safe-Hole/pkg-descr (props changed) head/security/p5-Snort-Rule/pkg-descr (props changed) head/security/p5-String-MkPasswd/pkg-descr (props changed) head/security/p5-Text-Password-Pronounceable/pkg-descr (props changed) head/security/p5-Tie-EncryptedHash/pkg-descr (props changed) head/security/p5-Tree-Authz/pkg-descr (props changed) head/security/p5-Yahoo-BBAuth/pkg-descr (props changed) head/security/p5-dicewaregen/pkg-descr (props changed) head/security/p5-openxpki-client-html-mason/pkg-descr (props changed) head/security/p5-openxpki-client-scep/pkg-descr (props changed) head/security/p5-openxpki-client/pkg-descr (props changed) head/security/p5-openxpki-deployment/pkg-descr (props changed) head/security/p5-openxpki-i18n/pkg-descr (props changed) head/security/p5-openxpki/pkg-descr (props changed) head/security/pad/pkg-descr (props changed) head/security/pam-mysql/pkg-descr (props changed) head/security/pam-pgsql/pkg-descr (props changed) head/security/pam_abl/pkg-descr (props changed) head/security/pam_alreadyloggedin/pkg-descr (props changed) head/security/pam_bsdbioapi/pkg-descr (props changed) head/security/pam_fprint/pkg-descr (props changed) head/security/pam_google_authenticator/pkg-descr (props changed) head/security/pam_helper/pkg-descr (props changed) head/security/pam_jail/pkg-descr (props changed) head/security/pam_kde/pkg-descr (props changed) head/security/pam_krb5-rh/pkg-descr (props changed) head/security/pam_krb5/pkg-descr (props changed) head/security/pam_ldap/pkg-descr (props changed) head/security/pam_mkhomedir/pkg-descr (props changed) head/security/pam_p11/pkg-descr (props changed) head/security/pam_per_user/pkg-descr (props changed) head/security/pam_pgina/pkg-descr (props changed) head/security/pam_pseudo/pkg-descr (props changed) head/security/pam_pwdfile/pkg-descr (props changed) head/security/pam_require/pkg-descr (props changed) head/security/pam_search_list/pkg-descr (props changed) head/security/pam_smb/pkg-descr (props changed) head/security/pam_ssh_agent_auth/pkg-descr (props changed) head/security/pamtester/pkg-descr (props changed) head/security/paperkey/pkg-descr (props changed) head/security/parano/pkg-descr (props changed) head/security/pbc/pkg-descr (props changed) head/security/pbnj/pkg-descr (props changed) head/security/pcsc-tools/pkg-descr (props changed) head/security/pear-Auth/pkg-descr (props changed) head/security/pear-Auth_HTTP/pkg-descr (props changed) head/security/pear-Auth_OpenID/pkg-descr (props changed) head/security/pear-Auth_PrefManager/pkg-descr (props changed) head/security/pear-Crypt_Blowfish/pkg-descr (props changed) head/security/pear-Crypt_CBC/pkg-descr (props changed) head/security/pear-Crypt_CHAP/pkg-descr (props changed) head/security/pear-Crypt_DiffieHellman/pkg-descr (props changed) head/security/pear-Crypt_GPG/pkg-descr (props changed) head/security/pear-Crypt_HMAC2/pkg-descr (props changed) head/security/pear-Crypt_MicroID/pkg-descr (props changed) head/security/pear-Crypt_RC4/pkg-descr (props changed) head/security/pear-Crypt_RSA/pkg-descr (props changed) head/security/pear-Crypt_XXTEA/pkg-descr (props changed) head/security/pear-File_HtAccess/pkg-descr (props changed) head/security/pear-File_Passwd/pkg-descr (props changed) head/security/pear-File_SMBPasswd/pkg-descr (props changed) head/security/pear-HTML_Crypt/pkg-descr (props changed) head/security/pear-Horde_Auth/pkg-descr (props changed) head/security/pear-Horde_Crypt/pkg-descr (props changed) head/security/pear-Horde_Crypt_Blowfish/pkg-descr (props changed) head/security/pear-Horde_Group/pkg-descr (props changed) head/security/pear-Horde_Oauth/pkg-descr (props changed) head/security/pear-Horde_Perms/pkg-descr (props changed) head/security/pear-Horde_Secret/pkg-descr (props changed) head/security/pear-Horde_Share/pkg-descr (props changed) head/security/pear-LiveUser/pkg-descr (props changed) head/security/pear-LiveUser_Admin/pkg-descr (props changed) head/security/pear-Net_Portscan/pkg-descr (props changed) head/security/pear-Text_Password/pkg-descr (props changed) head/security/pecl-crack/pkg-descr (props changed) head/security/pecl-pam/pkg-descr (props changed) head/security/pecl-ssh2/pkg-descr (props changed) head/security/pecl-tcpwrap/pkg-descr (props changed) head/security/pft/pkg-descr (props changed) head/security/pgp/pkg-descr (props changed) head/security/pgpdump/pkg-descr (props changed) head/security/pgpgpg/pkg-descr (props changed) head/security/pgpin/pkg-descr (props changed) head/security/php-Auth_OpenID/pkg-descr (props changed) head/security/php-Auth_OpenID2/pkg-descr (props changed) head/security/php-openid-ldap/pkg-descr (props changed) head/security/php-suhosin/pkg-descr (props changed) head/security/phpdeadlock/pkg-descr (props changed) head/security/phpsecinfo/pkg-descr (props changed) head/security/pidentd/pkg-descr (props changed) head/security/pidgin-encryption/pkg-descr (props changed) head/security/pidgin-otr/pkg-descr (props changed) head/security/pinentry/pkg-descr (props changed) head/security/pkcrack/pkg-descr (props changed) head/security/pkcs11-dump/pkg-descr (props changed) head/security/pkcs11-gateway/pkg-descr (props changed) head/security/pkcs11-helper/pkg-descr (props changed) head/security/pks/pkg-descr (props changed) head/security/pktsuckers/pkg-descr (props changed) head/security/polarssl/pkg-descr (props changed) head/security/poly1305aes/pkg-descr (props changed) head/security/pond/pkg-descr (props changed) head/security/portsentry/pkg-descr (props changed) head/security/ppars/pkg-descr (props changed) head/security/prelude-lml/pkg-descr (props changed) head/security/prelude-manager/pkg-descr (props changed) head/security/prelude-pflogger/pkg-descr (props changed) head/security/proxycheck/pkg-descr (props changed) head/security/proxytunnel/pkg-descr (props changed) head/security/pscan/pkg-descr (props changed) head/security/pssh/pkg-descr (props changed) head/security/pulledpork/pkg-descr (props changed) head/security/pure-sfv/pkg-descr (props changed) head/security/putty/pkg-descr (props changed) head/security/pvk/pkg-descr (props changed) head/security/pwauth/pkg-descr (props changed) head/security/pwman/pkg-descr (props changed) head/security/pwman3/pkg-descr (props changed) head/security/pxytest/pkg-descr (props changed) head/security/py-AccessControl/pkg-descr (props changed) head/security/py-PF/pkg-descr (props changed) head/security/py-Products.PluggableAuthService/pkg-descr (props changed) head/security/py-RestrictedPython/pkg-descr (props changed) head/security/py-bcrypt/pkg-descr (props changed) head/security/py-borg.localrole/pkg-descr (props changed) head/security/py-cerealizer/pkg-descr (props changed) head/security/py-clamav/pkg-descr (props changed) head/security/py-cryptkit/pkg-descr (props changed) head/security/py-ecdsa/pkg-descr (props changed) head/security/py-ed25519ll/pkg-descr (props changed) head/security/py-fail2ban/pkg-descr (props changed) head/security/py-gnupg/pkg-descr (props changed) head/security/py-htpasswd/pkg-descr (props changed) head/security/py-kerberos/pkg-descr (props changed) head/security/py-keyczar/pkg-descr (props changed) head/security/py-m2crypto/pkg-descr (props changed) head/security/py-mcrypt/pkg-descr (props changed) head/security/py-mhash/pkg-descr (props changed) head/security/py-openid/pkg-descr (props changed) head/security/py-openssl/pkg-descr (props changed) head/security/py-otr/pkg-descr (props changed) head/security/py-paramiko/pkg-descr (props changed) head/security/py-passlib/pkg-descr (props changed) head/security/py-plone.app.openid/pkg-descr (props changed) head/security/py-plone.keyring/pkg-descr (props changed) head/security/py-plone.openid/pkg-descr (props changed) head/security/py-plone.protect/pkg-descr (props changed) head/security/py-plone.session/pkg-descr (props changed) head/security/py-posix1e/pkg-descr (props changed) head/security/py-potr/pkg-descr (props changed) head/security/py-pow/pkg-descr (props changed) head/security/py-pyclamd/pkg-descr (props changed) head/security/py-pycryptopp/pkg-descr (props changed) head/security/py-pylibacl/pkg-descr (props changed) head/security/py-pyme/pkg-descr (props changed) head/security/py-pyptlib/pkg-descr (props changed) head/security/py-pysha3/pkg-descr (props changed) head/security/py-python-registry/pkg-descr (props changed) head/security/py-slowaes/pkg-descr (props changed) head/security/py-sslstrip/pkg-descr (props changed) head/security/py-stem/pkg-descr (props changed) head/security/py-tlslite/pkg-descr (props changed) head/security/py-trustedpickle/pkg-descr (props changed) head/security/py-twistedConch/pkg-descr (props changed) head/security/py-twofish/pkg-descr (props changed) head/security/py-volatility/pkg-descr (props changed) head/security/py-xmlsec/pkg-descr (props changed) head/security/py-yara-editor/pkg-descr (props changed) head/security/py-yara/pkg-descr (props changed) head/security/py-zope.app.authentication/pkg-descr (props changed) head/security/py-zope.app.localpermission/pkg-descr (props changed) head/security/py-zope.app.principalannotation/pkg-descr (props changed) head/security/py-zope.app.security/pkg-descr (props changed) head/security/py-zope.app.securitypolicy/pkg-descr (props changed) head/security/py-zope.authentication/pkg-descr (props changed) head/security/py-zope.login/pkg-descr (props changed) head/security/py-zope.password/pkg-descr (props changed) head/security/py-zope.pluggableauth/pkg-descr (props changed) head/security/py-zope.principalannotation/pkg-descr (props changed) head/security/py-zope.principalregistry/pkg-descr (props changed) head/security/py-zope.security/pkg-descr (props changed) head/security/py-zope.securitypolicy/pkg-descr (props changed) head/security/py-zope.session/pkg-descr (props changed) head/security/qca-cyrus-sasl/pkg-descr (props changed) head/security/qca-gnupg/pkg-descr (props changed) head/security/qca-ossl/pkg-descr (props changed) head/security/quantis-kmod/pkg-descr (props changed) head/security/quantis/pkg-descr (props changed) head/security/racoon2/pkg-descr (props changed) head/security/radiusniff/pkg-descr (props changed) head/security/rainbowcrack/pkg-descr (props changed) head/security/ranpwd/pkg-descr (props changed) head/security/ratproxy/pkg-descr (props changed) head/security/rats/pkg-descr (props changed) head/security/razorback-api/pkg-descr (props changed) head/security/razorback-archiveInflate/pkg-descr (props changed) head/security/razorback-clamavNugget/pkg-descr (props changed) head/security/razorback-dispatcher/pkg-descr (props changed) head/security/razorback-fileInject/pkg-descr (props changed) head/security/razorback-fsMonitor/pkg-descr (props changed) head/security/razorback-fsWalk/pkg-descr (props changed) head/security/razorback-masterNugget/pkg-descr (props changed) head/security/razorback-officeCat/pkg-descr (props changed) head/security/razorback-pdfFox/pkg-descr (props changed) head/security/razorback-scriptNugget/pkg-descr (props changed) head/security/razorback-swfScanner/pkg-descr (props changed) head/security/razorback-syslogNugget/pkg-descr (props changed) head/security/razorback-virusTotal/pkg-descr (props changed) head/security/razorback-yaraNugget/pkg-descr (props changed) head/security/rdigest/pkg-descr (props changed) head/security/regripper/pkg-descr (props changed) head/security/regripperplugins/pkg-descr (props changed) head/security/revealrk/pkg-descr (props changed) head/security/rifiuti2/pkg-descr (props changed) head/security/ruby-camellia/pkg-descr (props changed) head/security/ruby-crypt/pkg-descr (props changed) head/security/rubygem-bcrypt-ruby/pkg-descr (props changed) head/security/rubygem-ezcrypto/pkg-descr (props changed) head/security/rubygem-gpgr/pkg-descr (props changed) head/security/rubygem-jugyo-twitter_oauth/pkg-descr (props changed) head/security/rubygem-net-scp/pkg-descr (props changed) head/security/rubygem-net-sftp/pkg-descr (props changed) head/security/rubygem-net-ssh-gateway/pkg-descr (props changed) head/security/rubygem-net-ssh-multi/pkg-descr (props changed) head/security/rubygem-net-ssh/pkg-descr (props changed) head/security/rubygem-nmap-parser/pkg-descr (props changed) head/security/rubygem-omniauth/pkg-descr (props changed) head/security/rubygem-pyu-ruby-sasl/pkg-descr (props changed) head/security/rubygem-razorback-scriptNugget/pkg-descr (props changed) head/security/rubygem-rc4/pkg-descr (props changed) head/security/rubygem-roauth/pkg-descr (props changed) head/security/rubygem-ruby-hmac/pkg-descr (props changed) head/security/rubygem-six/pkg-descr (props changed) head/security/rubygem-twitter_oauth/pkg-descr (props changed) head/security/safesh/pkg-descr (props changed) head/security/saint/pkg-descr (props changed) head/security/samba-virusfilter/pkg-descr (props changed) head/security/samhain/pkg-descr (props changed) head/security/sancp/pkg-descr (props changed) head/security/sasp/pkg-descr (props changed) head/security/scamp/pkg-descr (props changed) head/security/scanlogd/pkg-descr (props changed) head/security/scannedonly/pkg-descr (props changed) head/security/scanssh/pkg-descr (props changed) head/security/scrypt/pkg-descr (props changed) head/security/seahorse-plugins/pkg-descr (props changed) head/security/seahorse/pkg-descr (props changed) head/security/seccure/pkg-descr (props changed) head/security/secpanel/pkg-descr (props changed) head/security/sectok/pkg-descr (props changed) head/security/secure_delete/pkg-descr (props changed) head/security/sguil-server/pkg-descr (props changed) head/security/sha/pkg-descr (props changed) head/security/shibboleth2-sp/pkg-descr (props changed) head/security/shimmer/pkg-descr (props changed) head/security/shishi/pkg-descr (props changed) head/security/shttpscanner/pkg-descr (props changed) head/security/sig2dot/pkg-descr (props changed) head/security/signing-party/pkg-descr (props changed) head/security/silktools/pkg-descr (props changed) head/security/skipfish/pkg-descr (props changed) head/security/sks/pkg-descr (props changed) head/security/slurpie/pkg-descr (props changed) head/security/slush/pkg-descr (props changed) head/security/smap/pkg-descr (props changed) head/security/smtpscan/pkg-descr (props changed) head/security/smurflog/pkg-descr (props changed) head/security/sniff/pkg-descr (props changed) head/security/snort-rep/pkg-descr (props changed) head/security/snort/pkg-descr (props changed) head/security/snortreport/pkg-descr (props changed) head/security/snortsam/pkg-descr (props changed) head/security/snortsnarf/pkg-descr (props changed) head/security/softhsm/pkg-descr (props changed) head/security/spass/pkg-descr (props changed) head/security/spike-proxy/pkg-descr (props changed) head/security/spybye/pkg-descr (props changed) head/security/sqlmap/pkg-descr (props changed) head/security/sqlninja/pkg-descr (props changed) head/security/srp/pkg-descr (props changed) head/security/ssdeep/pkg-descr (props changed) head/security/ssh-copy-id/pkg-descr (props changed) head/security/ssh-gui/pkg-descr (props changed) head/security/ssh-multiadd/pkg-descr (props changed) head/security/ssh_askpass_gtk2/pkg-descr (props changed) head/security/sshblock/pkg-descr (props changed) head/security/sshguard/pkg-descr (props changed) head/security/sshit/pkg-descr (props changed) head/security/sshpass/pkg-descr (props changed) head/security/ssl-admin/pkg-descr (props changed) head/security/sslscan/pkg-descr (props changed) head/security/sslsniffer/pkg-descr (props changed) head/security/sslwrap/pkg-descr (props changed) head/security/sssd/pkg-descr (props changed) head/security/ssss/pkg-descr (props changed) head/security/sst/pkg-descr (props changed) head/security/starttls/pkg-descr (props changed) head/security/stegdetect/pkg-descr (props changed) head/security/steghide/pkg-descr (props changed) head/security/strobe/pkg-descr (props changed) head/security/strongswan/pkg-descr (props changed) head/security/subweb/pkg-descr (props changed) head/security/sud/pkg-descr (props changed) head/security/sudoscript/pkg-descr (props changed) head/security/sudosh/pkg-descr (props changed) head/security/sudosh2/pkg-descr (props changed) head/security/sudosh3/pkg-descr (props changed) head/security/super/pkg-descr (props changed) head/security/suricata/pkg-descr (props changed) head/security/swatch/pkg-descr (props changed) head/security/switzerland/pkg-descr (props changed) head/security/symbion-sslproxy/pkg-descr (props changed) head/security/tclsasl/pkg-descr (props changed) head/security/termlog/pkg-descr (props changed) head/security/tinc/pkg-descr (props changed) head/security/tinyca/pkg-descr (props changed) head/security/tinysu/pkg-descr (props changed) head/security/tlswrap/pkg-descr (props changed) head/security/tor-devel/pkg-descr (props changed) head/security/tor/pkg-descr (props changed) head/security/tpm-tools/pkg-descr (props changed) head/security/tpmmanager/pkg-descr (props changed) head/security/trinokiller/pkg-descr (props changed) head/security/tripwire-131/pkg-descr (props changed) head/security/tripwire/pkg-descr (props changed) head/security/tripwire12/pkg-descr (props changed) head/security/trousers/pkg-descr (props changed) head/security/truecrack/pkg-descr (props changed) head/security/truecrypt/pkg-descr (props changed) head/security/tsshbatch/pkg-descr (props changed) head/security/tthsum/pkg-descr (props changed) head/security/tuntun/pkg-descr (props changed) head/security/umit/pkg-descr (props changed) head/security/unicornscan/pkg-descr (props changed) head/security/unssh/pkg-descr (props changed) head/security/vida/pkg-descr (props changed) head/security/vinetto/pkg-descr (props changed) head/security/vlock/pkg-descr (props changed) head/security/vlog/pkg-descr (props changed) head/security/vnccrack/pkg-descr (props changed) head/security/vpnc/pkg-descr (props changed) head/security/vuxml/pkg-descr (props changed) head/security/vxquery/pkg-descr (props changed) head/security/w3af/pkg-descr (props changed) head/security/wapiti/pkg-descr (props changed) head/security/webfwlog/pkg-descr (props changed) head/security/webscarab/pkg-descr (props changed) head/security/whatweb/pkg-descr (props changed) head/security/wipe/pkg-descr (props changed) head/security/xinetd/pkg-descr (props changed) head/security/xml-security/pkg-descr (props changed) head/security/xmlsec1/pkg-descr (props changed) head/security/xorsearch/pkg-descr (props changed) head/security/xspy/pkg-descr (props changed) head/security/xyssl/pkg-descr (props changed) head/security/yafic/pkg-descr (props changed) head/security/yapet/pkg-descr (props changed) head/security/yara/pkg-descr (props changed) head/security/yassl/pkg-descr (props changed) head/security/yersinia/pkg-descr (props changed) head/security/zebedee/pkg-descr (props changed) head/security/zenmap/pkg-descr (props changed) head/security/zxid/pkg-descr (props changed) head/security/zzuf/pkg-descr (props changed) head/shells/44bsd-csh/pkg-descr (props changed) head/shells/ambit/pkg-descr (props changed) head/shells/bash-completion/pkg-descr (props changed) head/shells/bash-devel/pkg-descr (props changed) head/shells/bash/pkg-descr (props changed) head/shells/ch/pkg-descr (props changed) head/shells/dash/pkg-descr (props changed) head/shells/es/pkg-descr (props changed) head/shells/esh/pkg-descr (props changed) head/shells/fd/pkg-descr (props changed) head/shells/flash/pkg-descr (props changed) head/shells/heirloom-sh/pkg-descr (props changed) head/shells/ibsh/pkg-descr (props changed) head/shells/jailkit/pkg-descr (props changed) head/shells/ksh93/pkg-descr (props changed) head/shells/lshell/pkg-descr (props changed) head/shells/nologinmsg/pkg-descr (props changed) head/shells/osh/pkg-descr (props changed) head/shells/p5-Bash-Completion/pkg-descr (props changed) head/shells/p5-Shell-Perl/pkg-descr (props changed) head/shells/p5-Term-ShellUI/pkg-descr (props changed) head/shells/pdksh/pkg-descr (props changed) head/shells/pear-PHP_Shell/pkg-descr (props changed) head/shells/psh/pkg-descr (props changed) head/shells/rc/pkg-descr (props changed) head/shells/rssh/pkg-descr (props changed) head/shells/sash/pkg-descr (props changed) head/shells/scponly/pkg-descr (props changed) head/shells/shell-include/pkg-descr (props changed) head/shells/tcsh_nls/pkg-descr (props changed) head/shells/tcshrc/pkg-descr (props changed) head/shells/v7sh/pkg-descr (props changed) head/shells/viewglob/pkg-descr (props changed) head/shells/vshnu/pkg-descr (props changed) head/shells/wapsh/pkg-descr (props changed) head/shells/zoidberg/pkg-descr (props changed) head/shells/zsh/pkg-descr (props changed) head/sysutils/3dm/pkg-descr (props changed) head/sysutils/44bsd-more/pkg-descr (props changed) head/sysutils/915resolution/pkg-descr (props changed) head/sysutils/DTraceToolkit/pkg-descr (props changed) head/sysutils/LPRng/pkg-descr (props changed) head/sysutils/LPRngTool/pkg-descr (props changed) head/sysutils/abck/pkg-descr (props changed) head/sysutils/abgx360/pkg-descr (props changed) head/sysutils/abgx360gui/pkg-descr (props changed) head/sysutils/acpi_call/pkg-descr (props changed) head/sysutils/adtool/pkg-descr (props changed) head/sysutils/afbinit/pkg-descr (props changed) head/sysutils/afflib/pkg-descr (props changed) head/sysutils/afio/pkg-descr (props changed) head/sysutils/agedu/pkg-descr (props changed) head/sysutils/ah-tty/pkg-descr (props changed) head/sysutils/aimage/pkg-descr (props changed) head/sysutils/aird/pkg-descr (props changed) head/sysutils/am-utils/pkg-descr (props changed) head/sysutils/amrstat/pkg-descr (props changed) head/sysutils/anacron/pkg-descr (props changed) head/sysutils/and/pkg-descr (props changed) head/sysutils/anteater/pkg-descr (props changed) head/sysutils/apachetop/pkg-descr (props changed) head/sysutils/apcpwr/pkg-descr (props changed) head/sysutils/apcupsd/pkg-descr (props changed) head/sysutils/apt/pkg-descr (props changed) head/sysutils/arcconf/pkg-descr (props changed) head/sysutils/archivemount/pkg-descr (props changed) head/sysutils/areca-cli/pkg-descr (props changed) head/sysutils/asapm/pkg-descr (props changed) head/sysutils/ascpu/pkg-descr (props changed) head/sysutils/asfsm/pkg-descr (props changed) head/sysutils/asmem/pkg-descr (props changed) head/sysutils/asmon/pkg-descr (props changed) head/sysutils/asr-utils/pkg-descr (props changed) head/sysutils/asusoled/pkg-descr (props changed) head/sysutils/ataidle/pkg-descr (props changed) head/sysutils/atitvout/pkg-descr (props changed) head/sysutils/atop/pkg-descr (props changed) head/sysutils/autojump/pkg-descr (props changed) head/sysutils/automount/pkg-descr (props changed) head/sysutils/automounter/pkg-descr (props changed) head/sysutils/autopsy/pkg-descr (props changed) head/sysutils/b43-fwcutter/pkg-descr (props changed) head/sysutils/backupme/pkg-descr (props changed) head/sysutils/backuppc/pkg-descr (props changed) head/sysutils/bacula-bat/pkg-descr (props changed) head/sysutils/bacula-docs/pkg-descr (props changed) head/sysutils/bacula-server/pkg-descr (props changed) head/sysutils/bashburn/pkg-descr (props changed) head/sysutils/batmon/pkg-descr (props changed) head/sysutils/battfink/pkg-descr (props changed) head/sysutils/battmond/pkg-descr (props changed) head/sysutils/battray/pkg-descr (props changed) head/sysutils/bbapm/pkg-descr (props changed) head/sysutils/bbcp/pkg-descr (props changed) head/sysutils/bchunk/pkg-descr (props changed) head/sysutils/be_agent/pkg-descr (props changed) head/sysutils/beadm-devel/pkg-descr (props changed) head/sysutils/beadm/pkg-descr (props changed) head/sysutils/bkpupsd/pkg-descr (props changed) head/sysutils/bksh/pkg-descr (props changed) head/sysutils/blimitd/pkg-descr (props changed) head/sysutils/bontmia/pkg-descr (props changed) head/sysutils/boxbackup-devel/pkg-descr (props changed) head/sysutils/boxbackup/pkg-descr (props changed) head/sysutils/brasero/pkg-descr (props changed) head/sysutils/brebis/pkg-descr (props changed) head/sysutils/bsd-splash-changer/pkg-descr (props changed) head/sysutils/bsdadminscripts/pkg-descr (props changed) head/sysutils/bsdcrashtar/pkg-descr (props changed) head/sysutils/bsdhwmon/pkg-descr (props changed) head/sysutils/bsdinfo/pkg-descr (props changed) head/sysutils/bsdmoted/pkg-descr (props changed) head/sysutils/bsdstats/pkg-descr (props changed) head/sysutils/bubblemon-dockapp/pkg-descr (props changed) head/sysutils/bubblemon2/pkg-descr (props changed) head/sysutils/bulk_extractor/pkg-descr (props changed) head/sysutils/busybox-unstable/pkg-descr (props changed) head/sysutils/busybox/pkg-descr (props changed) head/sysutils/byobu/pkg-descr (props changed) head/sysutils/ccd2iso/pkg-descr (props changed) head/sysutils/cciss_vol_status/pkg-descr (props changed) head/sysutils/ccze/pkg-descr (props changed) head/sysutils/cdargs/pkg-descr (props changed) head/sysutils/cdbkup/pkg-descr (props changed) head/sysutils/cdeploy/pkg-descr (props changed) head/sysutils/cdf/pkg-descr (props changed) head/sysutils/cdircmp/pkg-descr (props changed) head/sysutils/cdls/pkg-descr (props changed) head/sysutils/cdrdao/pkg-descr (props changed) head/sysutils/cdrkit/pkg-descr (props changed) head/sysutils/cdroot/pkg-descr (props changed) head/sysutils/cdrtools-devel/pkg-descr (props changed) head/sysutils/cdrtools/pkg-descr (props changed) head/sysutils/cfengine-devel/pkg-descr (props changed) head/sysutils/cfengine22/pkg-descr (props changed) head/sysutils/cfengine32/pkg-descr (props changed) head/sysutils/cfengine33/pkg-descr (props changed) head/sysutils/cfengine34/pkg-descr (props changed) head/sysutils/cfengine35/pkg-descr (props changed) head/sysutils/chgrep/pkg-descr (props changed) head/sysutils/ciso/pkg-descr (props changed) head/sysutils/ck4up/pkg-descr (props changed) head/sysutils/ckl/pkg-descr (props changed) head/sysutils/clean/pkg-descr (props changed) head/sysutils/clockspeed-conf/pkg-descr (props changed) head/sysutils/clockspeed/pkg-descr (props changed) head/sysutils/clonehdd/pkg-descr (props changed) head/sysutils/cloop-utils/pkg-descr (props changed) head/sysutils/cmdwatch/pkg-descr (props changed) head/sysutils/cmospwd/pkg-descr (props changed) head/sysutils/cog/pkg-descr (props changed) head/sysutils/colorize/pkg-descr (props changed) head/sysutils/comconsole/pkg-descr (props changed) head/sysutils/comiccron/pkg-descr (props changed) head/sysutils/condor/pkg-descr (props changed) head/sysutils/confctl/pkg-descr (props changed) head/sysutils/confman/pkg-descr (props changed) head/sysutils/conky-awesome/pkg-descr (props changed) head/sysutils/conky/pkg-descr (props changed) head/sysutils/consolehm/pkg-descr (props changed) head/sysutils/consolekit/pkg-descr (props changed) head/sysutils/contool/pkg-descr (props changed) head/sysutils/copytape/pkg-descr (props changed) head/sysutils/coreutils/pkg-descr (props changed) head/sysutils/cotty/pkg-descr (props changed) head/sysutils/cpdup/pkg-descr (props changed) head/sysutils/cpu/pkg-descr (props changed) head/sysutils/cpuburn/pkg-descr (props changed) head/sysutils/cpulimit/pkg-descr (props changed) head/sysutils/cpupowerd/pkg-descr (props changed) head/sysutils/cramfs/pkg-descr (props changed) head/sysutils/crashme/pkg-descr (props changed) head/sysutils/createrepo/pkg-descr (props changed) head/sysutils/cromwell/pkg-descr (props changed) head/sysutils/cronolog-devel/pkg-descr (props changed) head/sysutils/cronolog/pkg-descr (props changed) head/sysutils/curly/pkg-descr (props changed) head/sysutils/cvsweb-converters/pkg-descr (props changed) head/sysutils/cw/pkg-descr (props changed) head/sysutils/daa2iso/pkg-descr (props changed) head/sysutils/dae/pkg-descr (props changed) head/sysutils/daedalus/pkg-descr (props changed) head/sysutils/daemontools/pkg-descr (props changed) head/sysutils/dar/pkg-descr (props changed) head/sysutils/dc3dd/pkg-descr (props changed) head/sysutils/dcfldd/pkg-descr (props changed) head/sysutils/dd_rescue/pkg-descr (props changed) head/sysutils/ddpt/pkg-descr (props changed) head/sysutils/ddrescue/pkg-descr (props changed) head/sysutils/debhelper/pkg-descr (props changed) head/sysutils/debootstrap/pkg-descr (props changed) head/sysutils/decomment/pkg-descr (props changed) head/sysutils/deltup/pkg-descr (props changed) head/sysutils/detach/pkg-descr (props changed) head/sysutils/detox/pkg-descr (props changed) head/sysutils/devcpu-data/pkg-descr (props changed) head/sysutils/devstat/pkg-descr (props changed) head/sysutils/dfc/pkg-descr (props changed) head/sysutils/di/pkg-descr (props changed) head/sysutils/dirdiff/pkg-descr (props changed) head/sysutils/dirvish/pkg-descr (props changed) head/sysutils/diskcheckd/pkg-descr (props changed) head/sysutils/diskimage-tools/pkg-descr (props changed) head/sysutils/diskscrub/pkg-descr (props changed) head/sysutils/disktool/pkg-descr (props changed) head/sysutils/disktype/pkg-descr (props changed) head/sysutils/djmount/pkg-descr (props changed) head/sysutils/dmidecode/pkg-descr (props changed) head/sysutils/doinkd/pkg-descr (props changed) head/sysutils/dolly/pkg-descr (props changed) head/sysutils/downtime/pkg-descr (props changed) head/sysutils/downtimed/pkg-descr (props changed) head/sysutils/dt/pkg-descr (props changed) head/sysutils/dtc/pkg-descr (props changed) head/sysutils/dtpstree/pkg-descr (props changed) head/sysutils/du2ps/pkg-descr (props changed) head/sysutils/duff/pkg-descr (props changed) head/sysutils/duplicity/pkg-descr (props changed) head/sysutils/duply/pkg-descr (props changed) head/sysutils/dupmerge/pkg-descr (props changed) head/sysutils/dvd+rw-tools/pkg-descr (props changed) head/sysutils/dvdbackup/pkg-descr (props changed) head/sysutils/dvdimagecmp/pkg-descr (props changed) head/sysutils/dvdvideo/pkg-descr (props changed) head/sysutils/dvtm/pkg-descr (props changed) head/sysutils/dwatch/pkg-descr (props changed) head/sysutils/e2fsprogs/pkg-descr (props changed) head/sysutils/ec2-scripts/pkg-descr (props changed) head/sysutils/edid-decode/pkg-descr (props changed) head/sysutils/eiciel/pkg-descr (props changed) head/sysutils/eject/pkg-descr (props changed) head/sysutils/endian/pkg-descr (props changed) head/sysutils/enteruser/pkg-descr (props changed) head/sysutils/env4801/pkg-descr (props changed) head/sysutils/epylog/pkg-descr (props changed) head/sysutils/eroaster/pkg-descr (props changed) head/sysutils/etcmerge/pkg-descr (props changed) head/sysutils/etcupdate/pkg-descr (props changed) head/sysutils/eventlog/pkg-descr (props changed) head/sysutils/evtviewer/pkg-descr (props changed) head/sysutils/exfat-utils/pkg-descr (props changed) head/sysutils/extipl/pkg-descr (props changed) head/sysutils/ezjail/pkg-descr (props changed) head/sysutils/fanout/pkg-descr (props changed) head/sysutils/farbot/pkg-descr (props changed) head/sysutils/fastest_cvsup/pkg-descr (props changed) head/sysutils/fatback/pkg-descr (props changed) head/sysutils/fconfig/pkg-descr (props changed) head/sysutils/fcron/pkg-descr (props changed) head/sysutils/fdupes/pkg-descr (props changed) head/sysutils/feather/pkg-descr (props changed) head/sysutils/fetchlog/pkg-descr (props changed) head/sysutils/ffs2recov/pkg-descr (props changed) head/sysutils/file/pkg-descr (props changed) head/sysutils/filedupe/pkg-descr (props changed) head/sysutils/filelight-kde4/pkg-descr (props changed) head/sysutils/fileprune/pkg-descr (props changed) head/sysutils/fileschanged/pkg-descr (props changed) head/sysutils/filetype/pkg-descr (props changed) head/sysutils/filewatcherd/pkg-descr (props changed) head/sysutils/finfo/pkg-descr (props changed) head/sysutils/firstboot-freebsd-update/pkg-descr (props changed) head/sysutils/flasher/pkg-descr (props changed) head/sysutils/flashrom/pkg-descr (props changed) head/sysutils/flexbackup/pkg-descr (props changed) head/sysutils/flock/pkg-descr (props changed) head/sysutils/flog/pkg-descr (props changed) head/sysutils/flyback/pkg-descr (props changed) head/sysutils/fonteditfs/pkg-descr (props changed) head/sysutils/foremost/pkg-descr (props changed) head/sysutils/fortunelock/pkg-descr (props changed) head/sysutils/fpkg/pkg-descr (props changed) head/sysutils/freebsd-snapshot/pkg-descr (props changed) head/sysutils/freecolor/pkg-descr (props changed) head/sysutils/freedt/pkg-descr (props changed) head/sysutils/freeipmi/pkg-descr (props changed) head/sysutils/freesbie/pkg-descr (props changed) head/sysutils/freqsdwn/pkg-descr (props changed) head/sysutils/froxlor/pkg-descr (props changed) head/sysutils/fsbackup/pkg-descr (props changed) head/sysutils/fsc/pkg-descr (props changed) head/sysutils/fstyp/pkg-descr (props changed) head/sysutils/ftwin/pkg-descr (props changed) head/sysutils/fusefs-afuse/pkg-descr (props changed) head/sysutils/fusefs-chironfs/pkg-descr (props changed) head/sysutils/fusefs-cryptofs/pkg-descr (props changed) head/sysutils/fusefs-curlftpfs/pkg-descr (props changed) head/sysutils/fusefs-encfs/pkg-descr (props changed) head/sysutils/fusefs-exfat/pkg-descr (props changed) head/sysutils/fusefs-ext4fuse/pkg-descr (props changed) head/sysutils/fusefs-funionfs/pkg-descr (props changed) head/sysutils/fusefs-fur/pkg-descr (props changed) head/sysutils/fusefs-fusepak/pkg-descr (props changed) head/sysutils/fusefs-fusexmp_fh/pkg-descr (props changed) head/sysutils/fusefs-gnome-vfs/pkg-descr (props changed) head/sysutils/fusefs-gstfs/pkg-descr (props changed) head/sysutils/fusefs-gunzip/pkg-descr (props changed) head/sysutils/fusefs-httpfs/pkg-descr (props changed) head/sysutils/fusefs-kmod/pkg-descr (props changed) head/sysutils/fusefs-libs/pkg-descr (props changed) head/sysutils/fusefs-mhddfs/pkg-descr (props changed) head/sysutils/fusefs-mp3fs/pkg-descr (props changed) head/sysutils/fusefs-ntfs/pkg-descr (props changed) head/sysutils/fusefs-pod/pkg-descr (props changed) head/sysutils/fusefs-rar2fs/pkg-descr (props changed) head/sysutils/fusefs-s3fs/pkg-descr (props changed) head/sysutils/fusefs-smbnetfs/pkg-descr (props changed) head/sysutils/fusefs-sqlfs/pkg-descr (props changed) head/sysutils/fusefs-sshfs/pkg-descr (props changed) head/sysutils/fusefs-unionfs/pkg-descr (props changed) head/sysutils/fusefs-wdfs/pkg-descr (props changed) head/sysutils/fusefs-wikipediafs/pkg-descr (props changed) head/sysutils/fusefs-zip/pkg-descr (props changed) head/sysutils/fvcool/pkg-descr (props changed) head/sysutils/gaffitter/pkg-descr (props changed) head/sysutils/gai-leds/pkg-descr (props changed) head/sysutils/ganglia-monitor-core/pkg-descr (props changed) head/sysutils/ganglia-webfrontend/pkg-descr (props changed) head/sysutils/gapcmon/pkg-descr (props changed) head/sysutils/garcon/pkg-descr (props changed) head/sysutils/gather/pkg-descr (props changed) head/sysutils/gcdmaster/pkg-descr (props changed) head/sysutils/gcombust/pkg-descr (props changed) head/sysutils/gconf-editor/pkg-descr (props changed) head/sysutils/gdisk/pkg-descr (props changed) head/sysutils/gdmap/pkg-descr (props changed) head/sysutils/geomWatch/pkg-descr (props changed) head/sysutils/getdelta/pkg-descr (props changed) head/sysutils/geteltorito/pkg-descr (props changed) head/sysutils/gkfreq/pkg-descr (props changed) head/sysutils/gkleds2/pkg-descr (props changed) head/sysutils/gkrellfire/pkg-descr (props changed) head/sysutils/gkrellflynn/pkg-descr (props changed) head/sysutils/gkrellm-trayicons/pkg-descr (props changed) head/sysutils/gkrellm/pkg-descr (props changed) head/sysutils/gkrellm2/pkg-descr (props changed) head/sysutils/gkrellmwho2/pkg-descr (props changed) head/sysutils/gksu/pkg-descr (props changed) head/sysutils/gnome-control-center/pkg-descr (props changed) head/sysutils/gnome-device-manager/pkg-descr (props changed) head/sysutils/gnome-mount/pkg-descr (props changed) head/sysutils/gnome-pkgview/pkg-descr (props changed) head/sysutils/gnome-power-manager/pkg-descr (props changed) head/sysutils/gnome-schedule/pkg-descr (props changed) head/sysutils/gnome-settings-daemon/pkg-descr (props changed) head/sysutils/gnome-system-monitor/pkg-descr (props changed) head/sysutils/gnome-system-tools/pkg-descr (props changed) head/sysutils/gnome_subr/pkg-descr (props changed) head/sysutils/gnomebaker/pkg-descr (props changed) head/sysutils/goaccess/pkg-descr (props changed) head/sysutils/gosa/pkg-descr (props changed) head/sysutils/gpart/pkg-descr (props changed) head/sysutils/gpkgdep/pkg-descr (props changed) head/sysutils/gpte/pkg-descr (props changed) head/sysutils/graid5/pkg-descr (props changed) head/sysutils/graphicboot/pkg-descr (props changed) head/sysutils/graveman/pkg-descr (props changed) head/sysutils/grok/pkg-descr (props changed) head/sysutils/grub2/pkg-descr (props changed) head/sysutils/gsmartcontrol/pkg-descr (props changed) head/sysutils/gstopd/pkg-descr (props changed) head/sysutils/gtk-imonc/pkg-descr (props changed) head/sysutils/gtk-send-pr/pkg-descr (props changed) head/sysutils/hachoir-metadata/pkg-descr (props changed) head/sysutils/hachoir-subfile/pkg-descr (props changed) head/sysutils/hachoir-urwid/pkg-descr (props changed) head/sysutils/hachoir-wx/pkg-descr (props changed) head/sysutils/hal-info/pkg-descr (props changed) head/sysutils/hal/pkg-descr (props changed) head/sysutils/hardlink/pkg-descr (props changed) head/sysutils/hatop/pkg-descr (props changed) head/sysutils/hdrecover/pkg-descr (props changed) head/sysutils/hdup/pkg-descr (props changed) head/sysutils/healthd/pkg-descr (props changed) head/sysutils/heartbeat/pkg-descr (props changed) head/sysutils/heirloom/pkg-descr (props changed) head/sysutils/hextools/pkg-descr (props changed) head/sysutils/hfsexplorer/pkg-descr (props changed) head/sysutils/hfsutils/pkg-descr (props changed) head/sysutils/hidesvn/pkg-descr (props changed) head/sysutils/highlnk/pkg-descr (props changed) head/sysutils/hilite/pkg-descr (props changed) head/sysutils/host-setup/pkg-descr (props changed) head/sysutils/hourglass/pkg-descr (props changed) head/sysutils/hoz/pkg-descr (props changed) head/sysutils/hpacucli/pkg-descr (props changed) head/sysutils/hploscripts/pkg-descr (props changed) head/sysutils/hs-angel/pkg-descr (props changed) head/sysutils/hs-cpu/pkg-descr (props changed) head/sysutils/htop/pkg-descr (props changed) head/sysutils/httplog/pkg-descr (props changed) head/sysutils/hwstat/pkg-descr (props changed) head/sysutils/hyperic-sigar/pkg-descr (props changed) head/sysutils/i2c-tools/pkg-descr (props changed) head/sysutils/i7z/pkg-descr (props changed) head/sysutils/iat/pkg-descr (props changed) head/sysutils/installwatch/pkg-descr (props changed) head/sysutils/iogen/pkg-descr (props changed) head/sysutils/iograph/pkg-descr (props changed) head/sysutils/ipa/pkg-descr (props changed) head/sysutils/ipad_charge/pkg-descr (props changed) head/sysutils/ipmitool/pkg-descr (props changed) head/sysutils/ipsc/pkg-descr (props changed) head/sysutils/isc-cron/pkg-descr (props changed) head/sysutils/isomd5sum/pkg-descr (props changed) head/sysutils/ispman/pkg-descr (props changed) head/sysutils/istatd/pkg-descr (props changed) head/sysutils/jail2/pkg-descr (props changed) head/sysutils/jailadmin/pkg-descr (props changed) head/sysutils/jailctl/pkg-descr (props changed) head/sysutils/jaildaemon/pkg-descr (props changed) head/sysutils/jailer/pkg-descr (props changed) head/sysutils/jailme/pkg-descr (props changed) head/sysutils/jailrc/pkg-descr (props changed) head/sysutils/jailuser/pkg-descr (props changed) head/sysutils/jailutils/pkg-descr (props changed) head/sysutils/javaservicewrapper/pkg-descr (props changed) head/sysutils/jdiskreport/pkg-descr (props changed) head/sysutils/jfbterm/pkg-descr (props changed) head/sysutils/jkill/pkg-descr (props changed) head/sysutils/jps/pkg-descr (props changed) head/sysutils/jtop/pkg-descr (props changed) head/sysutils/jtopen/pkg-descr (props changed) head/sysutils/jvmtop/pkg-descr (props changed) head/sysutils/jx/pkg-descr (props changed) head/sysutils/k3b-kde4/pkg-descr (props changed) head/sysutils/k8temp/pkg-descr (props changed) head/sysutils/kdeadmin4/pkg-descr (props changed) head/sysutils/kdf/pkg-descr (props changed) head/sysutils/keyboard-daemon/pkg-descr (props changed) head/sysutils/kfloppy/pkg-descr (props changed) head/sysutils/kiconvtool/pkg-descr (props changed) head/sysutils/kldfind/pkg-descr (props changed) head/sysutils/kldpatch/pkg-descr (props changed) head/sysutils/knutclient-kde4/pkg-descr (props changed) head/sysutils/krename-kde4/pkg-descr (props changed) head/sysutils/kshutdown-kde4/pkg-descr (props changed) head/sysutils/ksysguardd/pkg-descr (props changed) head/sysutils/lbl-cf/pkg-descr (props changed) head/sysutils/lbl-hf/pkg-descr (props changed) head/sysutils/lcdproc/pkg-descr (props changed) head/sysutils/ldap-account-manager/pkg-descr (props changed) head/sysutils/ldapenter/pkg-descr (props changed) head/sysutils/ldapvi/pkg-descr (props changed) head/sysutils/ledit/pkg-descr (props changed) head/sysutils/less/pkg-descr (props changed) head/sysutils/libcdio/pkg-descr (props changed) head/sysutils/libchk/pkg-descr (props changed) head/sysutils/libgksu/pkg-descr (props changed) head/sysutils/libieee1284/pkg-descr (props changed) head/sysutils/libretto-config/pkg-descr (props changed) head/sysutils/libsunacl/pkg-descr (props changed) head/sysutils/libutempter/pkg-descr (props changed) head/sysutils/lineak-defaultplugin/pkg-descr (props changed) head/sysutils/lineak-xosdplugin/pkg-descr (props changed) head/sysutils/lineakd/pkg-descr (props changed) head/sysutils/linrename/pkg-descr (props changed) head/sysutils/linux-afaapps/pkg-descr (props changed) head/sysutils/linux-f10-procps/pkg-descr (props changed) head/sysutils/linux-nero/pkg-descr (props changed) head/sysutils/linuxfdisk/pkg-descr (props changed) head/sysutils/lire/pkg-descr (props changed) head/sysutils/livecd/pkg-descr (props changed) head/sysutils/lmmon/pkg-descr (props changed) head/sysutils/lmon/pkg-descr (props changed) head/sysutils/log_analysis/pkg-descr (props changed) head/sysutils/loganalyzer/pkg-descr (props changed) head/sysutils/logmon/pkg-descr (props changed) head/sysutils/logrotate/pkg-descr (props changed) head/sysutils/logstalgia/pkg-descr (props changed) head/sysutils/logstash/pkg-descr (props changed) head/sysutils/logtool/pkg-descr (props changed) head/sysutils/logwatch/pkg-descr (props changed) head/sysutils/lookat/pkg-descr (props changed) head/sysutils/lookupd/pkg-descr (props changed) head/sysutils/lookupd_ldap/pkg-descr (props changed) head/sysutils/lsof/pkg-descr (props changed) head/sysutils/ltrace/pkg-descr (props changed) head/sysutils/luckybackup/pkg-descr (props changed) head/sysutils/lxsplit/pkg-descr (props changed) head/sysutils/magicrescue/pkg-descr (props changed) head/sysutils/manck/pkg-descr (props changed) head/sysutils/mapchan/pkg-descr (props changed) head/sysutils/massadmin/pkg-descr (props changed) head/sysutils/mate-control-center/pkg-descr (props changed) head/sysutils/mate-polkit/pkg-descr (props changed) head/sysutils/mate-power-manager/pkg-descr (props changed) head/sysutils/mate-settings-daemon/pkg-descr (props changed) head/sysutils/mate-system-monitor/pkg-descr (props changed) head/sysutils/mbmon/pkg-descr (props changed) head/sysutils/mcelog/pkg-descr (props changed) head/sysutils/mcollective/pkg-descr (props changed) head/sysutils/mcron/pkg-descr (props changed) head/sysutils/mcweject/pkg-descr (props changed) head/sysutils/mdcp/pkg-descr (props changed) head/sysutils/mdf2iso/pkg-descr (props changed) head/sysutils/megacli/pkg-descr (props changed) head/sysutils/megarc/pkg-descr (props changed) head/sysutils/memdump/pkg-descr (props changed) head/sysutils/memfetch/pkg-descr (props changed) head/sysutils/memtest/pkg-descr (props changed) head/sysutils/memtest86+/pkg-descr (props changed) head/sysutils/memtest86/pkg-descr (props changed) head/sysutils/metalog/pkg-descr (props changed) head/sysutils/mfid/pkg-descr (props changed) head/sysutils/mgeupsd/pkg-descr (props changed) head/sysutils/minirsyslogd/pkg-descr (props changed) head/sysutils/mixer/pkg-descr (props changed) head/sysutils/mkfile/pkg-descr (props changed) head/sysutils/mkfwimage/pkg-descr (props changed) head/sysutils/mkntpwd/pkg-descr (props changed) head/sysutils/mksunbootcd/pkg-descr (props changed) head/sysutils/mmore/pkg-descr (props changed) head/sysutils/modules/pkg-descr (props changed) head/sysutils/monit/pkg-descr (props changed) head/sysutils/monitord/pkg-descr (props changed) head/sysutils/monitorix/pkg-descr (props changed) head/sysutils/mono-kmod/pkg-descr (props changed) head/sysutils/moreutils-parallel/pkg-descr (props changed) head/sysutils/most/pkg-descr (props changed) head/sysutils/mount.app/pkg-descr (props changed) head/sysutils/mountsmb2/pkg-descr (props changed) head/sysutils/mpiexec/pkg-descr (props changed) head/sysutils/mptd/pkg-descr (props changed) head/sysutils/msyslog/pkg-descr (props changed) head/sysutils/mtpfs/pkg-descr (props changed) head/sysutils/mtxorbd/pkg-descr (props changed) head/sysutils/multitail/pkg-descr (props changed) head/sysutils/munin-common/pkg-descr (props changed) head/sysutils/munin-master/pkg-descr (props changed) head/sysutils/munin-node/pkg-descr (props changed) head/sysutils/muse/pkg-descr (props changed) head/sysutils/mybashburn/pkg-descr (props changed) head/sysutils/nagios-statd/pkg-descr (props changed) head/sysutils/namefix/pkg-descr (props changed) head/sysutils/nautilus-cd-burner/pkg-descr (props changed) head/sysutils/nbosd/pkg-descr (props changed) head/sysutils/netident/pkg-descr (props changed) head/sysutils/news/pkg-descr (props changed) head/sysutils/nitrogen/pkg-descr (props changed) head/sysutils/no-login/pkg-descr (props changed) head/sysutils/npadmin/pkg-descr (props changed) head/sysutils/nrg2iso/pkg-descr (props changed) head/sysutils/ntfsprogs/pkg-descr (props changed) head/sysutils/nut/pkg-descr (props changed) head/sysutils/nut22/pkg-descr (props changed) head/sysutils/nvclock/pkg-descr (props changed) head/sysutils/nvramtool/pkg-descr (props changed) head/sysutils/nvtv/pkg-descr (props changed) head/sysutils/oak/pkg-descr (props changed) head/sysutils/obliterate/pkg-descr (props changed) head/sysutils/ods2/pkg-descr (props changed) head/sysutils/open/pkg-descr (props changed) head/sysutils/openipmi/pkg-descr (props changed) head/sysutils/openupsd/pkg-descr (props changed) head/sysutils/ori/pkg-descr (props changed) head/sysutils/p5-BSD-Jail-Object/pkg-descr (props changed) head/sysutils/p5-BackupPC-XS/pkg-descr (props changed) head/sysutils/p5-Dir-Purge/pkg-descr (props changed) head/sysutils/p5-File-DirCompare/pkg-descr (props changed) head/sysutils/p5-File-Listing/pkg-descr (props changed) head/sysutils/p5-File-Log/pkg-descr (props changed) head/sysutils/p5-File-Next/pkg-descr (props changed) head/sysutils/p5-File-Signature/pkg-descr (props changed) head/sysutils/p5-File-Stat-Bits/pkg-descr (props changed) head/sysutils/p5-File-Stat-ModeString/pkg-descr (props changed) head/sysutils/p5-File-Which/pkg-descr (props changed) head/sysutils/p5-Filesys-DiskFree/pkg-descr (props changed) head/sysutils/p5-Filesys-DiskUsage/pkg-descr (props changed) head/sysutils/p5-Filesys-Statvfs/pkg-descr (props changed) head/sysutils/p5-Iterator-File/pkg-descr (props changed) head/sysutils/p5-Lchown/pkg-descr (props changed) head/sysutils/p5-MogileFS-Client/pkg-descr (props changed) head/sysutils/p5-MogileFS-Server/pkg-descr (props changed) head/sysutils/p5-MogileFS-Utils/pkg-descr (props changed) head/sysutils/p5-Monitor-Simple/pkg-descr (props changed) head/sysutils/p5-Plugtools-Plugins-HomeOU/pkg-descr (props changed) head/sysutils/p5-Plugtools/pkg-descr (props changed) head/sysutils/p5-Proclet/pkg-descr (props changed) head/sysutils/p5-Samba-SIDhelper/pkg-descr (props changed) head/sysutils/p5-Schedule-At/pkg-descr (props changed) head/sysutils/p5-Schedule-Load/pkg-descr (props changed) head/sysutils/p5-Schedule-Match/pkg-descr (props changed) head/sysutils/p5-Sys-CpuLoad/pkg-descr (props changed) head/sysutils/p5-Sys-Filesystem/pkg-descr (props changed) head/sysutils/p5-Sys-Gamin/pkg-descr (props changed) head/sysutils/p5-Sys-Group-GIDhelper/pkg-descr (props changed) head/sysutils/p5-Sys-Hostname-Long/pkg-descr (props changed) head/sysutils/p5-Sys-Load/pkg-descr (props changed) head/sysutils/p5-Sys-Syslog/pkg-descr (props changed) head/sysutils/p5-Sys-User-UIDhelper/pkg-descr (props changed) head/sysutils/p5-Sys-Utmp/pkg-descr (props changed) head/sysutils/p5-Sysadm-Install/pkg-descr (props changed) head/sysutils/p5-SyslogScan/pkg-descr (props changed) head/sysutils/p5-Tail-Stat/pkg-descr (props changed) head/sysutils/p5-Tie-Syslog/pkg-descr (props changed) head/sysutils/p5-Ubic/pkg-descr (props changed) head/sysutils/p5-Unix-ConfigFile/pkg-descr (props changed) head/sysutils/p5-Unix-Lsof/pkg-descr (props changed) head/sysutils/p5-Unix-Mknod/pkg-descr (props changed) head/sysutils/p5-Unix-Processors/pkg-descr (props changed) head/sysutils/p5-Unix-Syslog/pkg-descr (props changed) head/sysutils/p5-User/pkg-descr (props changed) head/sysutils/p5-ZConf-Cron/pkg-descr (props changed) head/sysutils/p5-arclog/pkg-descr (props changed) head/sysutils/p5-reslog/pkg-descr (props changed) head/sysutils/paicc/pkg-descr (props changed) head/sysutils/pam_mount/pkg-descr (props changed) head/sysutils/parallel/pkg-descr (props changed) head/sysutils/password-store/pkg-descr (props changed) head/sysutils/pax-utils/pkg-descr (props changed) head/sysutils/pbimaker/pkg-descr (props changed) head/sysutils/pc-sysinstall/pkg-descr (props changed) head/sysutils/pcfclock/pkg-descr (props changed) head/sysutils/pcpustat/pkg-descr (props changed) head/sysutils/pdixtract/pkg-descr (props changed) head/sysutils/pdsh/pkg-descr (props changed) head/sysutils/pdumpfs/pkg-descr (props changed) head/sysutils/pear-Cache/pkg-descr (props changed) head/sysutils/pear-Cache_Lite/pkg-descr (props changed) head/sysutils/pear-File/pkg-descr (props changed) head/sysutils/pear-File_Find/pkg-descr (props changed) head/sysutils/pear-File_Fstab/pkg-descr (props changed) head/sysutils/pear-File_Gettext/pkg-descr (props changed) head/sysutils/pear-Horde_Log/pkg-descr (props changed) head/sysutils/pear-Horde_Vfs/pkg-descr (props changed) head/sysutils/pear-I18Nv2/pkg-descr (props changed) head/sysutils/pear-Log/pkg-descr (props changed) head/sysutils/pear-Translation2/pkg-descr (props changed) head/sysutils/pecl-fileinfo/pkg-descr (props changed) head/sysutils/pecl-mogilefs/pkg-descr (props changed) head/sysutils/pecl-proctitle/pkg-descr (props changed) head/sysutils/pefs-kmod/pkg-descr (props changed) head/sysutils/penv/pkg-descr (props changed) head/sysutils/personality/pkg-descr (props changed) head/sysutils/pessulus/pkg-descr (props changed) head/sysutils/pflogx/pkg-descr (props changed) head/sysutils/pfstat/pkg-descr (props changed) head/sysutils/pftop/pkg-descr (props changed) head/sysutils/phantom/pkg-descr (props changed) head/sysutils/philesight/pkg-descr (props changed) head/sysutils/pidof/pkg-descr (props changed) head/sysutils/pipemeter/pkg-descr (props changed) head/sysutils/plasma-applet-apcups/pkg-descr (props changed) head/sysutils/plconfig/pkg-descr (props changed) head/sysutils/pmap/pkg-descr (props changed) head/sysutils/pmt/pkg-descr (props changed) head/sysutils/policykit-gnome/pkg-descr (props changed) head/sysutils/policykit-qt/pkg-descr (props changed) head/sysutils/policykit/pkg-descr (props changed) head/sysutils/polkit-gnome/pkg-descr (props changed) head/sysutils/polkit-qt/pkg-descr (props changed) head/sysutils/powerman/pkg-descr (props changed) head/sysutils/pp/pkg-descr (props changed) head/sysutils/pprotectd/pkg-descr (props changed) head/sysutils/prelink/pkg-descr (props changed) head/sysutils/prips/pkg-descr (props changed) head/sysutils/procmap/pkg-descr (props changed) head/sysutils/progsreiserfs/pkg-descr (props changed) head/sysutils/psgconf/pkg-descr (props changed) head/sysutils/pslist/pkg-descr (props changed) head/sysutils/psmisc/pkg-descr (props changed) head/sysutils/pstack/pkg-descr (props changed) head/sysutils/pstree/pkg-descr (props changed) head/sysutils/puppet-lint/pkg-descr (props changed) head/sysutils/puppet-mode.el/pkg-descr (props changed) head/sysutils/puppet/pkg-descr (props changed) head/sysutils/puppet27/pkg-descr (props changed) head/sysutils/pv/pkg-descr (props changed) head/sysutils/pwd_unmkdb/pkg-descr (props changed) head/sysutils/pwgen/pkg-descr (props changed) head/sysutils/pwsafe/pkg-descr (props changed) head/sysutils/py-XenAPI/pkg-descr (props changed) head/sysutils/py-bcfg2/pkg-descr (props changed) head/sysutils/py-drmaa/pkg-descr (props changed) head/sysutils/py-filelike/pkg-descr (props changed) head/sysutils/py-glances/pkg-descr (props changed) head/sysutils/py-iowait/pkg-descr (props changed) head/sysutils/py-nagiosplugin/pkg-descr (props changed) head/sysutils/py-psutil/pkg-descr (props changed) head/sysutils/py-ranger/pkg-descr (props changed) head/sysutils/py-salt-cloud/pkg-descr (props changed) head/sysutils/py-stdiff/pkg-descr (props changed) head/sysutils/py-supervisor/pkg-descr (props changed) head/sysutils/py-zfs/pkg-descr (props changed) head/sysutils/pydf/pkg-descr (props changed) head/sysutils/pyrenamer/pkg-descr (props changed) head/sysutils/qjail2/pkg-descr (props changed) head/sysutils/qlogtools/pkg-descr (props changed) head/sysutils/qpxtool/pkg-descr (props changed) head/sysutils/quicksynergy/pkg-descr (props changed) head/sysutils/qzeitgeist/pkg-descr (props changed) head/sysutils/radeontool/pkg-descr (props changed) head/sysutils/radmind/pkg-descr (props changed) head/sysutils/raincoat/pkg-descr (props changed) head/sysutils/rclean/pkg-descr (props changed) head/sysutils/rdate/pkg-descr (props changed) head/sysutils/rdiff-backup-devel/pkg-descr (props changed) head/sysutils/rdiff-backup/pkg-descr (props changed) head/sysutils/rdup/pkg-descr (props changed) head/sysutils/readlink/pkg-descr (props changed) head/sysutils/recoverdm/pkg-descr (props changed) head/sysutils/reed/pkg-descr (props changed) head/sysutils/rej/pkg-descr (props changed) head/sysutils/relaxconf/pkg-descr (props changed) head/sysutils/relpath/pkg-descr (props changed) head/sysutils/rename/pkg-descr (props changed) head/sysutils/reoback/pkg-descr (props changed) head/sysutils/respond/pkg-descr (props changed) head/sysutils/retail/pkg-descr (props changed) head/sysutils/rmonitor/pkg-descr (props changed) head/sysutils/roottail/pkg-descr (props changed) head/sysutils/rsnapshot/pkg-descr (props changed) head/sysutils/rsyncbackup/pkg-descr (props changed) head/sysutils/rsyncmanager/pkg-descr (props changed) head/sysutils/rsyslog7-devel/pkg-descr (props changed) head/sysutils/rsyslog7/pkg-descr (props changed) head/sysutils/rsyslog8-devel/pkg-descr (props changed) head/sysutils/rtty/pkg-descr (props changed) head/sysutils/rubygem-backup/pkg-descr (props changed) head/sysutils/rubygem-bundler/pkg-descr (props changed) head/sysutils/rubygem-capistrano/pkg-descr (props changed) head/sysutils/rubygem-chef-expander/pkg-descr (props changed) head/sysutils/rubygem-chef-server/pkg-descr (props changed) head/sysutils/rubygem-chef-solr/pkg-descr (props changed) head/sysutils/rubygem-chef/pkg-descr (props changed) head/sysutils/rubygem-facter/pkg-descr (props changed) head/sysutils/rubygem-fluent-mixin-plaintextformatter/pkg-descr (props changed) head/sysutils/rubygem-fluent-plugin-config-expander/pkg-descr (props changed) head/sysutils/rubygem-fluent-plugin-file-alternative/pkg-descr (props changed) head/sysutils/rubygem-fluent-plugin-tail-asis/pkg-descr (props changed) head/sysutils/rubygem-fluentd/pkg-descr (props changed) head/sysutils/rubygem-fssm/pkg-descr (props changed) head/sysutils/rubygem-god/pkg-descr (props changed) head/sysutils/rubygem-guard-livereload/pkg-descr (props changed) head/sysutils/rubygem-guard-rspec/pkg-descr (props changed) head/sysutils/rubygem-guard/pkg-descr (props changed) head/sysutils/rubygem-hiera-json/pkg-descr (props changed) head/sysutils/rubygem-hiera-puppet/pkg-descr (props changed) head/sysutils/rubygem-hiera/pkg-descr (props changed) head/sysutils/rubygem-log4r/pkg-descr (props changed) head/sysutils/rubygem-murder/pkg-descr (props changed) head/sysutils/rubygem-ohai/pkg-descr (props changed) head/sysutils/rubygem-rubyipmi/pkg-descr (props changed) head/sysutils/rubygem-sys-admin/pkg-descr (props changed) head/sysutils/rubygem-sys-cpu/pkg-descr (props changed) head/sysutils/rubygem-sys-filesystem/pkg-descr (props changed) head/sysutils/rubygem-sys-host/pkg-descr (props changed) head/sysutils/rubygem-sys-proctable/pkg-descr (props changed) head/sysutils/rubygem-sys-uname/pkg-descr (props changed) head/sysutils/rubygem-sys-uptime/pkg-descr (props changed) head/sysutils/rubygem-teamocil/pkg-descr (props changed) head/sysutils/runit/pkg-descr (props changed) head/sysutils/runwhen/pkg-descr (props changed) head/sysutils/safe-rm/pkg-descr (props changed) head/sysutils/safecat/pkg-descr (props changed) head/sysutils/samefile/pkg-descr (props changed) head/sysutils/samesame/pkg-descr (props changed) head/sysutils/savelogs/pkg-descr (props changed) head/sysutils/sb16config/pkg-descr (props changed) head/sysutils/sbniconfig/pkg-descr (props changed) head/sysutils/scalpel/pkg-descr (props changed) head/sysutils/scan_ffs/pkg-descr (props changed) head/sysutils/schedutils/pkg-descr (props changed) head/sysutils/scprotect/pkg-descr (props changed) head/sysutils/screen/pkg-descr (props changed) head/sysutils/screenie/pkg-descr (props changed) head/sysutils/sdd/pkg-descr (props changed) head/sysutils/sdparm/pkg-descr (props changed) head/sysutils/searchmonkey/pkg-descr (props changed) head/sysutils/seatools/pkg-descr (props changed) head/sysutils/sec/pkg-descr (props changed) head/sysutils/sensors-applet/pkg-descr (props changed) head/sysutils/serpentine/pkg-descr (props changed) head/sysutils/setcdboot/pkg-descr (props changed) head/sysutils/setquota/pkg-descr (props changed) head/sysutils/sformat/pkg-descr (props changed) head/sysutils/sg3_utils/pkg-descr (props changed) head/sysutils/shmcat/pkg-descr (props changed) head/sysutils/sievelog/pkg-descr (props changed) head/sysutils/skill/pkg-descr (props changed) head/sysutils/slack/pkg-descr (props changed) head/sysutils/sleuthkit/pkg-descr (props changed) head/sysutils/slmon/pkg-descr (props changed) head/sysutils/sloth/pkg-descr (props changed) head/sysutils/slst/pkg-descr (props changed) head/sysutils/slurm-hpc/pkg-descr (props changed) head/sysutils/smartmontools/pkg-descr (props changed) head/sysutils/smp_utils/pkg-descr (props changed) head/sysutils/snap/pkg-descr (props changed) head/sysutils/snowlog/pkg-descr (props changed) head/sysutils/socket/pkg-descr (props changed) head/sysutils/socklog/pkg-descr (props changed) head/sysutils/sortu/pkg-descr (props changed) head/sysutils/spindown/pkg-descr (props changed) head/sysutils/spinner/pkg-descr (props changed) head/sysutils/spiped/pkg-descr (props changed) head/sysutils/squashfs-tools/pkg-descr (props changed) head/sysutils/sshsudo/pkg-descr (props changed) head/sysutils/ssid/pkg-descr (props changed) head/sysutils/ssync/pkg-descr (props changed) head/sysutils/stalepid/pkg-descr (props changed) head/sysutils/stmpclean/pkg-descr (props changed) head/sysutils/stow/pkg-descr (props changed) head/sysutils/stowES/pkg-descr (props changed) head/sysutils/stress/pkg-descr (props changed) head/sysutils/su2/pkg-descr (props changed) head/sysutils/superiotool/pkg-descr (props changed) head/sysutils/swapd/pkg-descr (props changed) head/sysutils/swapexd/pkg-descr (props changed) head/sysutils/swapmon/pkg-descr (props changed) head/sysutils/sweeper/pkg-descr (props changed) head/sysutils/symlinks/pkg-descr (props changed) head/sysutils/symon/pkg-descr (props changed) head/sysutils/synergy-devel/pkg-descr (props changed) head/sysutils/synergy/pkg-descr (props changed) head/sysutils/sysgather/pkg-descr (props changed) head/sysutils/sysinfo/pkg-descr (props changed) head/sysutils/syslog-ng-devel/pkg-descr (props changed) head/sysutils/syslog-ng/pkg-descr (props changed) head/sysutils/syslog-ng2/pkg-descr (props changed) head/sysutils/syslog-ng33/pkg-descr (props changed) head/sysutils/syslogger/pkg-descr (props changed) head/sysutils/sysrc/pkg-descr (props changed) head/sysutils/system-tools-backends/pkg-descr (props changed) head/sysutils/sysupdate/pkg-descr (props changed) head/sysutils/tai64nfrac/pkg-descr (props changed) head/sysutils/tarsnap/pkg-descr (props changed) head/sysutils/tbku/pkg-descr (props changed) head/sysutils/tclsyslog/pkg-descr (props changed) head/sysutils/tcplist/pkg-descr (props changed) head/sysutils/tdir/pkg-descr (props changed) head/sysutils/tenshi/pkg-descr (props changed) head/sysutils/tentakel/pkg-descr (props changed) head/sysutils/testdisk/pkg-descr (props changed) head/sysutils/thefish/pkg-descr (props changed) head/sysutils/throttle/pkg-descr (props changed) head/sysutils/timelimit/pkg-descr (props changed) head/sysutils/timemon/pkg-descr (props changed) head/sysutils/titlefix/pkg-descr (props changed) head/sysutils/tkdvd/pkg-descr (props changed) head/sysutils/tm/pkg-descr (props changed) head/sysutils/tmpreaper/pkg-descr (props changed) head/sysutils/tmpwatch/pkg-descr (props changed) head/sysutils/tmux/pkg-descr (props changed) head/sysutils/topless/pkg-descr (props changed) head/sysutils/torsmo/pkg-descr (props changed) head/sysutils/toshctl/pkg-descr (props changed) head/sysutils/tracker-client/pkg-descr (props changed) head/sysutils/tracker-libtrackergtk/pkg-descr (props changed) head/sysutils/tracker/pkg-descr (props changed) head/sysutils/tree/pkg-descr (props changed) head/sysutils/tren/pkg-descr (props changed) head/sysutils/ts/pkg-descr (props changed) head/sysutils/tss/pkg-descr (props changed) head/sysutils/tty-clock/pkg-descr (props changed) head/sysutils/ttyload/pkg-descr (props changed) head/sysutils/tw_cli/pkg-descr (props changed) head/sysutils/tzdialog/pkg-descr (props changed) head/sysutils/u-boot-beaglebone-eabi/pkg-descr (props changed) head/sysutils/ua/pkg-descr (props changed) head/sysutils/ucspi-ipc/pkg-descr (props changed) head/sysutils/ucspi-proxy/pkg-descr (props changed) head/sysutils/ucspi-ssl/pkg-descr (props changed) head/sysutils/ucspi-tcp/pkg-descr (props changed) head/sysutils/ucspi-unix/pkg-descr (props changed) head/sysutils/udfclient/pkg-descr (props changed) head/sysutils/ufs_copy/pkg-descr (props changed) head/sysutils/uhidd/pkg-descr (props changed) head/sysutils/uif2iso/pkg-descr (props changed) head/sysutils/unieject/pkg-descr (props changed) head/sysutils/uniutils/pkg-descr (props changed) head/sysutils/unquote/pkg-descr (props changed) head/sysutils/unstow/pkg-descr (props changed) head/sysutils/upower/pkg-descr (props changed) head/sysutils/upsd/pkg-descr (props changed) head/sysutils/upsdaemon/pkg-descr (props changed) head/sysutils/uptimed/pkg-descr (props changed) head/sysutils/usb_modeswitch/pkg-descr (props changed) head/sysutils/usbhotkey/pkg-descr (props changed) head/sysutils/usbutils/pkg-descr (props changed) head/sysutils/uschedule/pkg-descr (props changed) head/sysutils/userinfo/pkg-descr (props changed) head/sysutils/userlist/pkg-descr (props changed) head/sysutils/usermatic/pkg-descr (props changed) head/sysutils/usermin/pkg-descr (props changed) head/sysutils/userneu-devel/pkg-descr (props changed) head/sysutils/userneu/pkg-descr (props changed) head/sysutils/usrinfo/pkg-descr (props changed) head/sysutils/utcount/pkg-descr (props changed) head/sysutils/vbetool/pkg-descr (props changed) head/sysutils/vcp/pkg-descr (props changed) head/sysutils/videogen/pkg-descr (props changed) head/sysutils/vii/pkg-descr (props changed) head/sysutils/vils/pkg-descr (props changed) head/sysutils/vimpager/pkg-descr (props changed) head/sysutils/virtualmin/pkg-descr (props changed) head/sysutils/vlogger/pkg-descr (props changed) head/sysutils/vmdktool/pkg-descr (props changed) head/sysutils/vobcopy/pkg-descr (props changed) head/sysutils/volman/pkg-descr (props changed) head/sysutils/vordog/pkg-descr (props changed) head/sysutils/vpnc-scripts/pkg-descr (props changed) head/sysutils/vstrip/pkg-descr (props changed) head/sysutils/vttest/pkg-descr (props changed) head/sysutils/wait_on/pkg-descr (props changed) head/sysutils/watchdog/pkg-descr (props changed) head/sysutils/watchfolder/pkg-descr (props changed) head/sysutils/webjob/pkg-descr (props changed) head/sysutils/webmin/pkg-descr (props changed) head/sysutils/weedit/pkg-descr (props changed) head/sysutils/wemux/pkg-descr (props changed) head/sysutils/whatpix/pkg-descr (props changed) head/sysutils/whowatch/pkg-descr (props changed) head/sysutils/wiimms/pkg-descr (props changed) head/sysutils/wmapm/pkg-descr (props changed) head/sysutils/wmapmload/pkg-descr (props changed) head/sysutils/wmbluecpu/pkg-descr (props changed) head/sysutils/wmbsdbatt/pkg-descr (props changed) head/sysutils/wmcpuload/pkg-descr (props changed) head/sysutils/wmcube-gdk/pkg-descr (props changed) head/sysutils/wmcube/pkg-descr (props changed) head/sysutils/wmdiskmon/pkg-descr (props changed) head/sysutils/wmfire/pkg-descr (props changed) head/sysutils/wmflame/pkg-descr (props changed) head/sysutils/wmmemfree/pkg-descr (props changed) head/sysutils/wmmemload/pkg-descr (props changed) head/sysutils/wmtop/pkg-descr (props changed) head/sysutils/wmupmon/pkg-descr (props changed) head/sysutils/worldtools/pkg-descr (props changed) head/sysutils/wtail/pkg-descr (props changed) head/sysutils/wuzzah/pkg-descr (props changed) head/sysutils/x86info/pkg-descr (props changed) head/sysutils/xacpim/pkg-descr (props changed) head/sysutils/xbatt/pkg-descr (props changed) head/sysutils/xbattbar/pkg-descr (props changed) head/sysutils/xcdroast/pkg-descr (props changed) head/sysutils/xcpustate/pkg-descr (props changed) head/sysutils/xdu/pkg-descr (props changed) head/sysutils/xe-guest-utilities/pkg-descr (props changed) head/sysutils/xen-tools/pkg-descr (props changed) head/sysutils/xfburn/pkg-descr (props changed) head/sysutils/xfce4-battery-plugin/pkg-descr (props changed) head/sysutils/xfce4-cpugraph-plugin/pkg-descr (props changed) head/sysutils/xfce4-fsguard-plugin/pkg-descr (props changed) head/sysutils/xfce4-genmon-plugin/pkg-descr (props changed) head/sysutils/xfce4-minicmd-plugin/pkg-descr (props changed) head/sysutils/xfce4-mount-plugin/pkg-descr (props changed) head/sysutils/xfce4-netload-plugin/pkg-descr (props changed) head/sysutils/xfce4-settings/pkg-descr (props changed) head/sysutils/xfce4-systemload-plugin/pkg-descr (props changed) head/sysutils/xfce4-wavelan-plugin/pkg-descr (props changed) head/sysutils/xfsm/pkg-descr (props changed) head/sysutils/xfsprogs/pkg-descr (props changed) head/sysutils/xin/pkg-descr (props changed) head/sysutils/xjobs/pkg-descr (props changed) head/sysutils/xlogmaster/pkg-descr (props changed) head/sysutils/xorriso/pkg-descr (props changed) head/sysutils/xosview/pkg-descr (props changed) head/sysutils/xsi/pkg-descr (props changed) head/sysutils/xstow/pkg-descr (props changed) head/sysutils/xsysstats/pkg-descr (props changed) head/sysutils/xvidcap/pkg-descr (props changed) head/sysutils/yawho/pkg-descr (props changed) head/sysutils/zeitgeist/pkg-descr (props changed) head/sysutils/zeroer/pkg-descr (props changed) head/sysutils/zetaback/pkg-descr (props changed) head/sysutils/zfs-periodic/pkg-descr (props changed) head/sysutils/zfs-replicate/pkg-descr (props changed) head/sysutils/zfs-snapshot-clean/pkg-descr (props changed) head/sysutils/zfs-snapshot-mgmt/pkg-descr (props changed) head/sysutils/zfs-stats/pkg-descr (props changed) head/sysutils/zfsnap/pkg-descr (props changed) head/sysutils/zfstools/pkg-descr (props changed) head/sysutils/zidrav/pkg-descr (props changed) head/sysutils/zisofs-tools/pkg-descr (props changed) head/sysutils/zogftw/pkg-descr (props changed) head/textproc/2bsd-diff/pkg-descr (props changed) head/textproc/R-cran-XML/pkg-descr (props changed) head/textproc/R-cran-stringr/pkg-descr (props changed) head/textproc/R-cran-xtable/pkg-descr (props changed) head/textproc/ack/pkg-descr (props changed) head/textproc/add-css-links/pkg-descr (props changed) head/textproc/af-aspell/pkg-descr (props changed) head/textproc/aft/pkg-descr (props changed) head/textproc/agrep/pkg-descr (props changed) head/textproc/aiksaurus-gtk/pkg-descr (props changed) head/textproc/aiksaurus/pkg-descr (props changed) head/textproc/align/pkg-descr (props changed) head/textproc/am-aspell/pkg-descr (props changed) head/textproc/amberfish/pkg-descr (props changed) head/textproc/ansifilter/pkg-descr (props changed) head/textproc/ant-xinclude-task/pkg-descr (props changed) head/textproc/antiword/pkg-descr (props changed) head/textproc/apache-poi/pkg-descr (props changed) head/textproc/apache-solr3/pkg-descr (props changed) head/textproc/apertium/pkg-descr (props changed) head/textproc/archmage/pkg-descr (props changed) head/textproc/artha/pkg-descr (props changed) head/textproc/asciidoc/pkg-descr (props changed) head/textproc/asm-xml/pkg-descr (props changed) head/textproc/aspell/pkg-descr (props changed) head/textproc/ast-aspell/pkg-descr (props changed) head/textproc/atom/pkg-descr (props changed) head/textproc/ats-contrib-parcomb/pkg-descr (props changed) head/textproc/az-aspell/pkg-descr (props changed) head/textproc/bar/pkg-descr (props changed) head/textproc/bbe/pkg-descr (props changed) head/textproc/be-aspell/pkg-descr (props changed) head/textproc/bedic-data/pkg-descr (props changed) head/textproc/beediff/pkg-descr (props changed) head/textproc/bg-aspell/pkg-descr (props changed) head/textproc/bib2html/pkg-descr (props changed) head/textproc/bibtex2html/pkg-descr (props changed) head/textproc/bibtool/pkg-descr (props changed) head/textproc/bn-aspell/pkg-descr (props changed) head/textproc/bomstrip/pkg-descr (props changed) head/textproc/br-aspell/pkg-descr (props changed) head/textproc/bsddiff/pkg-descr (props changed) head/textproc/bsdgrep/pkg-descr (props changed) head/textproc/bsdsort/pkg-descr (props changed) head/textproc/c2html/pkg-descr (props changed) head/textproc/ca-aspell/pkg-descr (props changed) head/textproc/catdoc/pkg-descr (props changed) head/textproc/cbedic/pkg-descr (props changed) head/textproc/cdif/pkg-descr (props changed) head/textproc/cdiff/pkg-descr (props changed) head/textproc/chm2pdf/pkg-descr (props changed) head/textproc/chpp/pkg-descr (props changed) head/textproc/cl-meta-clisp/pkg-descr (props changed) head/textproc/cl-meta-sbcl/pkg-descr (props changed) head/textproc/cl-meta/pkg-descr (props changed) head/textproc/cl-ppcre-clisp/pkg-descr (props changed) head/textproc/cl-ppcre-sbcl/pkg-descr (props changed) head/textproc/cl-ppcre/pkg-descr (props changed) head/textproc/clit/pkg-descr (props changed) head/textproc/clucene/pkg-descr (props changed) head/textproc/coccigrep/pkg-descr (props changed) head/textproc/coco/pkg-descr (props changed) head/textproc/code2html/pkg-descr (props changed) head/textproc/codespell/pkg-descr (props changed) head/textproc/colordiff/pkg-descr (props changed) head/textproc/confetti/pkg-descr (props changed) head/textproc/confget/pkg-descr (props changed) head/textproc/cost/pkg-descr (props changed) head/textproc/crimson/pkg-descr (props changed) head/textproc/cs-aspell/pkg-descr (props changed) head/textproc/cs-mythes/pkg-descr (props changed) head/textproc/csb-aspell/pkg-descr (props changed) head/textproc/csv2latex/pkg-descr (props changed) head/textproc/csv2xml/pkg-descr (props changed) head/textproc/csvdiff/pkg-descr (props changed) head/textproc/ctpp2/pkg-descr (props changed) head/textproc/cwtext/pkg-descr (props changed) head/textproc/cy-aspell/pkg-descr (props changed) head/textproc/da-aspell/pkg-descr (props changed) head/textproc/da-hyphen/pkg-descr (props changed) head/textproc/dadadodo/pkg-descr (props changed) head/textproc/db2latex/pkg-descr (props changed) head/textproc/dbacl/pkg-descr (props changed) head/textproc/dblatex/pkg-descr (props changed) head/textproc/denature/pkg-descr (props changed) head/textproc/dict/pkg-descr (props changed) head/textproc/dictem/pkg-descr (props changed) head/textproc/dictfmt/pkg-descr (props changed) head/textproc/dictionary/pkg-descr (props changed) head/textproc/diffmark/pkg-descr (props changed) head/textproc/diffstat/pkg-descr (props changed) head/textproc/diffutils/pkg-descr (props changed) head/textproc/dikt/pkg-descr (props changed) head/textproc/discount/pkg-descr (props changed) head/textproc/dixit/pkg-descr (props changed) head/textproc/doc-mode.el/pkg-descr (props changed) head/textproc/docbook-241/pkg-descr (props changed) head/textproc/docbook-300/pkg-descr (props changed) head/textproc/docbook-310/pkg-descr (props changed) head/textproc/docbook-400/pkg-descr (props changed) head/textproc/docbook-410/pkg-descr (props changed) head/textproc/docbook-420/pkg-descr (props changed) head/textproc/docbook-430/pkg-descr (props changed) head/textproc/docbook-440/pkg-descr (props changed) head/textproc/docbook-450/pkg-descr (props changed) head/textproc/docbook-500/pkg-descr (props changed) head/textproc/docbook-sk/pkg-descr (props changed) head/textproc/docbook-to-man/pkg-descr (props changed) head/textproc/docbook-utils/pkg-descr (props changed) head/textproc/docbook-xml-430/pkg-descr (props changed) head/textproc/docbook-xml-440/pkg-descr (props changed) head/textproc/docbook-xml-450/pkg-descr (props changed) head/textproc/docbook-xml/pkg-descr (props changed) head/textproc/docbook-xsd/pkg-descr (props changed) head/textproc/docbook-xsl-ns/pkg-descr (props changed) head/textproc/docbook-xsl/pkg-descr (props changed) head/textproc/docbook/pkg-descr (props changed) head/textproc/docbook2X/pkg-descr (props changed) head/textproc/docbook2odf/pkg-descr (props changed) head/textproc/docbookide.el/pkg-descr (props changed) head/textproc/docdiff/pkg-descr (props changed) head/textproc/doclifter/pkg-descr (props changed) head/textproc/docproj/pkg-descr (props changed) head/textproc/dom4j/pkg-descr (props changed) head/textproc/domc/pkg-descr (props changed) head/textproc/dsssl-docbook-modular/pkg-descr (props changed) head/textproc/dtd-catalogs/pkg-descr (props changed) head/textproc/dtd2relax/pkg-descr (props changed) head/textproc/dtdinst/pkg-descr (props changed) head/textproc/dtdparse/pkg-descr (props changed) head/textproc/duncan/pkg-descr (props changed) head/textproc/easydiff/pkg-descr (props changed) head/textproc/ecromedos/pkg-descr (props changed) head/textproc/ekhtml/pkg-descr (props changed) head/textproc/el-aspell/pkg-descr (props changed) head/textproc/el-hyphen/pkg-descr (props changed) head/textproc/emacs-wiki/pkg-descr (props changed) head/textproc/en-aspell/pkg-descr (props changed) head/textproc/en-mythes/pkg-descr (props changed) head/textproc/enchant/pkg-descr (props changed) head/textproc/eo-aspell/pkg-descr (props changed) head/textproc/eqe/pkg-descr (props changed) head/textproc/eruby/pkg-descr (props changed) head/textproc/es-aspell/pkg-descr (props changed) head/textproc/es-hyphen/pkg-descr (props changed) head/textproc/es-ispell/pkg-descr (props changed) head/textproc/estraier/pkg-descr (props changed) head/textproc/et-aspell/pkg-descr (props changed) head/textproc/exempi/pkg-descr (props changed) head/textproc/exmpp/pkg-descr (props changed) head/textproc/exslt/pkg-descr (props changed) head/textproc/extract_url/pkg-descr (props changed) head/textproc/ezxml/pkg-descr (props changed) head/textproc/fa-aspell/pkg-descr (props changed) head/textproc/fex/pkg-descr (props changed) head/textproc/ffe/pkg-descr (props changed) head/textproc/fi-aspell/pkg-descr (props changed) head/textproc/filepp/pkg-descr (props changed) head/textproc/fist/pkg-descr (props changed) head/textproc/fixrtf/pkg-descr (props changed) head/textproc/fldiff/pkg-descr (props changed) head/textproc/flex/pkg-descr (props changed) head/textproc/flip/pkg-descr (props changed) head/textproc/fo-aspell/pkg-descr (props changed) head/textproc/foiltex/pkg-descr (props changed) head/textproc/fop/pkg-descr (props changed) head/textproc/fy-aspell/pkg-descr (props changed) head/textproc/ga-aspell/pkg-descr (props changed) head/textproc/gastex/pkg-descr (props changed) head/textproc/gd-aspell/pkg-descr (props changed) head/textproc/gdict/pkg-descr (props changed) head/textproc/gdome2/pkg-descr (props changed) head/textproc/gl-aspell/pkg-descr (props changed) head/textproc/glark/pkg-descr (props changed) head/textproc/glimpse/pkg-descr (props changed) head/textproc/glpi-plugins-AdditionalReports/pkg-descr (props changed) head/textproc/glpi-plugins-DataInjection/pkg-descr (props changed) head/textproc/gmetadom/pkg-descr (props changed) head/textproc/gnome-doc-utils/pkg-descr (props changed) head/textproc/gnome-spell/pkg-descr (props changed) head/textproc/gnome-translate/pkg-descr (props changed) head/textproc/gnugrep/pkg-descr (props changed) head/textproc/go.text/pkg-descr (props changed) head/textproc/goldendict/pkg-descr (props changed) head/textproc/google-ctemplate/pkg-descr (props changed) head/textproc/gpp/pkg-descr (props changed) head/textproc/grap/pkg-descr (props changed) head/textproc/grc-aspell/pkg-descr (props changed) head/textproc/groff/pkg-descr (props changed) head/textproc/groonga/pkg-descr (props changed) head/textproc/gsed/pkg-descr (props changed) head/textproc/gtk-doc/pkg-descr (props changed) head/textproc/gtkspell-reference/pkg-descr (props changed) head/textproc/gtkspell/pkg-descr (props changed) head/textproc/gu-aspell/pkg-descr (props changed) head/textproc/gutenmark/pkg-descr (props changed) head/textproc/gv-aspell/pkg-descr (props changed) head/textproc/heirloom-doctools/pkg-descr (props changed) head/textproc/hevea/pkg-descr (props changed) head/textproc/hgrep/pkg-descr (props changed) head/textproc/hhm/pkg-descr (props changed) head/textproc/hi-aspell/pkg-descr (props changed) head/textproc/highlight/pkg-descr (props changed) head/textproc/hil-aspell/pkg-descr (props changed) head/textproc/hr-aspell/pkg-descr (props changed) head/textproc/hs-Diff/pkg-descr (props changed) head/textproc/hs-HStringTemplate/pkg-descr (props changed) head/textproc/hs-HaXml/pkg-descr (props changed) head/textproc/hs-attoparsec-conduit/pkg-descr (props changed) head/textproc/hs-attoparsec-enumerator/pkg-descr (props changed) head/textproc/hs-attoparsec/pkg-descr (props changed) head/textproc/hs-blaze-html/pkg-descr (props changed) head/textproc/hs-blaze-markup/pkg-descr (props changed) head/textproc/hs-bytestring-csv/pkg-descr (props changed) head/textproc/hs-case-insensitive/pkg-descr (props changed) head/textproc/hs-citeproc-hs/pkg-descr (props changed) head/textproc/hs-csv/pkg-descr (props changed) head/textproc/hs-double-conversion/pkg-descr (props changed) head/textproc/hs-feed/pkg-descr (props changed) head/textproc/hs-highlighting-kate/pkg-descr (props changed) head/textproc/hs-hs-bibutils/pkg-descr (props changed) head/textproc/hs-html-conduit/pkg-descr (props changed) head/textproc/hs-html/pkg-descr (props changed) head/textproc/hs-hxt-charproperties/pkg-descr (props changed) head/textproc/hs-hxt-regex-xmlschema/pkg-descr (props changed) head/textproc/hs-hxt-unicode/pkg-descr (props changed) head/textproc/hs-hxt/pkg-descr (props changed) head/textproc/hs-lhs2tex/pkg-descr (props changed) head/textproc/hs-libxml/pkg-descr (props changed) head/textproc/hs-pandoc-types/pkg-descr (props changed) head/textproc/hs-pandoc/pkg-descr (props changed) head/textproc/hs-parsec/pkg-descr (props changed) head/textproc/hs-polyparse/pkg-descr (props changed) head/textproc/hs-regex-base/pkg-descr (props changed) head/textproc/hs-regex-compat/pkg-descr (props changed) head/textproc/hs-regex-pcre-builtin/pkg-descr (props changed) head/textproc/hs-regex-posix/pkg-descr (props changed) head/textproc/hs-stringsearch/pkg-descr (props changed) head/textproc/hs-tagsoup/pkg-descr (props changed) head/textproc/hs-tagstream-conduit/pkg-descr (props changed) head/textproc/hs-texmath/pkg-descr (props changed) head/textproc/hs-xhtml/pkg-descr (props changed) head/textproc/hs-xml-conduit/pkg-descr (props changed) head/textproc/hs-xml-types/pkg-descr (props changed) head/textproc/hs-xml/pkg-descr (props changed) head/textproc/hs-xmlhtml/pkg-descr (props changed) head/textproc/hs-yaml/pkg-descr (props changed) head/textproc/hsb-aspell/pkg-descr (props changed) head/textproc/htdig/pkg-descr (props changed) head/textproc/html-pretty/pkg-descr (props changed) head/textproc/html/pkg-descr (props changed) head/textproc/html2fo/pkg-descr (props changed) head/textproc/html2tex/pkg-descr (props changed) head/textproc/html2text/pkg-descr (props changed) head/textproc/htmlc/pkg-descr (props changed) head/textproc/htmldoc/pkg-descr (props changed) head/textproc/htmlise/pkg-descr (props changed) head/textproc/htmlize.el/pkg-descr (props changed) head/textproc/htmlsection/pkg-descr (props changed) head/textproc/htmltolatex/pkg-descr (props changed) head/textproc/hunspell/pkg-descr (props changed) head/textproc/hy-aspell/pkg-descr (props changed) head/textproc/hyperestraier/pkg-descr (props changed) head/textproc/ia-aspell/pkg-descr (props changed) head/textproc/ibus-el/pkg-descr (props changed) head/textproc/ibus-kmfl/pkg-descr (props changed) head/textproc/ibus-m17n/pkg-descr (props changed) head/textproc/ibus-qt/pkg-descr (props changed) head/textproc/ibus-table/pkg-descr (props changed) head/textproc/ibus/pkg-descr (props changed) head/textproc/id-aspell/pkg-descr (props changed) head/textproc/id-hyphen/pkg-descr (props changed) head/textproc/igor/pkg-descr (props changed) head/textproc/iksemel/pkg-descr (props changed) head/textproc/info2html/pkg-descr (props changed) head/textproc/info2man/pkg-descr (props changed) head/textproc/info_to_html/pkg-descr (props changed) head/textproc/intltool/pkg-descr (props changed) head/textproc/ipdf/pkg-descr (props changed) head/textproc/irstlm/pkg-descr (props changed) head/textproc/is-aspell/pkg-descr (props changed) head/textproc/is-hyphen/pkg-descr (props changed) head/textproc/iso-schematron-xslt/pkg-descr (props changed) head/textproc/iso12083/pkg-descr (props changed) head/textproc/iso8879/pkg-descr (props changed) head/textproc/ispell/pkg-descr (props changed) head/textproc/it-aspell/pkg-descr (props changed) head/textproc/itstool/pkg-descr (props changed) head/textproc/jade/pkg-descr (props changed) head/textproc/jakarta-commons-digester/pkg-descr (props changed) head/textproc/jalingo/pkg-descr (props changed) head/textproc/jarnal/pkg-descr (props changed) head/textproc/java2html/pkg-descr (props changed) head/textproc/jaxup/pkg-descr (props changed) head/textproc/jdictionary-int-eng/pkg-descr (props changed) head/textproc/jdictionary/pkg-descr (props changed) head/textproc/jing/pkg-descr (props changed) head/textproc/jq/pkg-descr (props changed) head/textproc/jrefentry/pkg-descr (props changed) head/textproc/kdiff3/pkg-descr (props changed) head/textproc/kmfl-european-latin/pkg-descr (props changed) head/textproc/kmfl-khmer/pkg-descr (props changed) head/textproc/kmfl-sil-ezra/pkg-descr (props changed) head/textproc/kmfl-sil-galatia/pkg-descr (props changed) head/textproc/kmfl-sil-ipa-unicode/pkg-descr (props changed) head/textproc/kmfl-sil-panafrican-latin/pkg-descr (props changed) head/textproc/kmfl-sil-yi/pkg-descr (props changed) head/textproc/kmfl-varamozhi-malayalam/pkg-descr (props changed) head/textproc/kmflcomp/pkg-descr (props changed) head/textproc/kn-aspell/pkg-descr (props changed) head/textproc/ku-aspell/pkg-descr (props changed) head/textproc/ky-aspell/pkg-descr (props changed) head/textproc/l2a/pkg-descr (props changed) head/textproc/la-aspell/pkg-descr (props changed) head/textproc/lacheck/pkg-descr (props changed) head/textproc/latex-service/pkg-descr (props changed) head/textproc/latex2html/pkg-descr (props changed) head/textproc/lemmatizer2/pkg-descr (props changed) head/textproc/libcrm114/pkg-descr (props changed) head/textproc/libcroco/pkg-descr (props changed) head/textproc/libcsv/pkg-descr (props changed) head/textproc/libcue/pkg-descr (props changed) head/textproc/libebml/pkg-descr (props changed) head/textproc/libextractor/pkg-descr (props changed) head/textproc/libexttextcat/pkg-descr (props changed) head/textproc/libflate/pkg-descr (props changed) head/textproc/libguess/pkg-descr (props changed) head/textproc/libkmfl/pkg-descr (props changed) head/textproc/liblingoteach/pkg-descr (props changed) head/textproc/liblrdf/pkg-descr (props changed) head/textproc/libmrss/pkg-descr (props changed) head/textproc/libnxml/pkg-descr (props changed) head/textproc/libparsifal/pkg-descr (props changed) head/textproc/libroxml/pkg-descr (props changed) head/textproc/libsoldout/pkg-descr (props changed) head/textproc/libsphinxclient/pkg-descr (props changed) head/textproc/libstree/pkg-descr (props changed) head/textproc/libtext-charwidth-perl/pkg-descr (props changed) head/textproc/libtext-wrapi18n-perl/pkg-descr (props changed) head/textproc/libtextcat/pkg-descr (props changed) head/textproc/libtranslate/pkg-descr (props changed) head/textproc/libtre/pkg-descr (props changed) head/textproc/libunibreak/pkg-descr (props changed) head/textproc/libuninameslist/pkg-descr (props changed) head/textproc/libwpd/pkg-descr (props changed) head/textproc/libwps/pkg-descr (props changed) head/textproc/libxdiff/pkg-descr (props changed) head/textproc/libxml++26-reference/pkg-descr (props changed) head/textproc/libxml++26/pkg-descr (props changed) head/textproc/libxml2-reference/pkg-descr (props changed) head/textproc/libxml2/pkg-descr (props changed) head/textproc/libxode/pkg-descr (props changed) head/textproc/libxslt-reference/pkg-descr (props changed) head/textproc/libxslt/pkg-descr (props changed) head/textproc/libyaml/pkg-descr (props changed) head/textproc/link-grammar/pkg-descr (props changed) head/textproc/linux-f10-aspell/pkg-descr (props changed) head/textproc/linux-f10-scim-gtk/pkg-descr (props changed) head/textproc/linux-f10-scim-libs/pkg-descr (props changed) head/textproc/linuxdoc/pkg-descr (props changed) head/textproc/localize/pkg-descr (props changed) head/textproc/loook/pkg-descr (props changed) head/textproc/lt-aspell/pkg-descr (props changed) head/textproc/lt-hyphen/pkg-descr (props changed) head/textproc/lttoolbox/pkg-descr (props changed) head/textproc/ltxml/pkg-descr (props changed) head/textproc/luaexpat/pkg-descr (props changed) head/textproc/lucene/pkg-descr (props changed) head/textproc/lucene4/pkg-descr (props changed) head/textproc/lv-aspell/pkg-descr (props changed) head/textproc/m17n-im-config/pkg-descr (props changed) head/textproc/makefaq/pkg-descr (props changed) head/textproc/makepatch/pkg-descr (props changed) head/textproc/man2html/pkg-descr (props changed) head/textproc/manued.el/pkg-descr (props changed) head/textproc/markdown-mode.el/pkg-descr (props changed) head/textproc/markdown/pkg-descr (props changed) head/textproc/mate-doc-utils/pkg-descr (props changed) head/textproc/mathml-xsd/pkg-descr (props changed) head/textproc/mdocml/pkg-descr (props changed) head/textproc/metaf2xml/pkg-descr (props changed) head/textproc/metauml/pkg-descr (props changed) head/textproc/mgdiff/pkg-descr (props changed) head/textproc/mguesser/pkg-descr (props changed) head/textproc/mi-aspell/pkg-descr (props changed) head/textproc/mifluz/pkg-descr (props changed) head/textproc/minised/pkg-descr (props changed) head/textproc/mk-aspell/pkg-descr (props changed) head/textproc/mkcatalog/pkg-descr (props changed) head/textproc/ml-aspell/pkg-descr (props changed) head/textproc/ml1/pkg-descr (props changed) head/textproc/mn-aspell/pkg-descr (props changed) head/textproc/modlogan/pkg-descr (props changed) head/textproc/mr-aspell/pkg-descr (props changed) head/textproc/ms-aspell/pkg-descr (props changed) head/textproc/msort/pkg-descr (props changed) head/textproc/mt-aspell/pkg-descr (props changed) head/textproc/multimarkdown/pkg-descr (props changed) head/textproc/muse/pkg-descr (props changed) head/textproc/mysqlviz/pkg-descr (props changed) head/textproc/nb-aspell/pkg-descr (props changed) head/textproc/nds-aspell/pkg-descr (props changed) head/textproc/nl-aspell/pkg-descr (props changed) head/textproc/nl-hunspell/pkg-descr (props changed) head/textproc/nl-hyphen/pkg-descr (props changed) head/textproc/nltk/pkg-descr (props changed) head/textproc/nn-aspell/pkg-descr (props changed) head/textproc/nunnimcax/pkg-descr (props changed) head/textproc/nux/pkg-descr (props changed) head/textproc/ny-aspell/pkg-descr (props changed) head/textproc/ocaml-csv/pkg-descr (props changed) head/textproc/ocaml-expat/pkg-descr (props changed) head/textproc/ocaml-pxp/pkg-descr (props changed) head/textproc/ocaml-text/pkg-descr (props changed) head/textproc/ocaml-tyxml/pkg-descr (props changed) head/textproc/odt2txt/pkg-descr (props changed) head/textproc/openfts/pkg-descr (props changed) head/textproc/openjade/pkg-descr (props changed) head/textproc/opensched/pkg-descr (props changed) head/textproc/opensp/pkg-descr (props changed) head/textproc/openvanilla-framework/pkg-descr (props changed) head/textproc/openvanilla-modules/pkg-descr (props changed) head/textproc/or-aspell/pkg-descr (props changed) head/textproc/ots/pkg-descr (props changed) head/textproc/p5-AI-Categorizer/pkg-descr (props changed) head/textproc/p5-Algorithm-CheckDigits/pkg-descr (props changed) head/textproc/p5-Apache-ParseLog/pkg-descr (props changed) head/textproc/p5-BibTeX-Parser/pkg-descr (props changed) head/textproc/p5-Bloom-Filter/pkg-descr (props changed) head/textproc/p5-CSS-Compressor/pkg-descr (props changed) head/textproc/p5-CSS-Croco/pkg-descr (props changed) head/textproc/p5-CSS-Minifier/pkg-descr (props changed) head/textproc/p5-CSS-Packer/pkg-descr (props changed) head/textproc/p5-CSS-SAC/pkg-descr (props changed) head/textproc/p5-CSS-Simple/pkg-descr (props changed) head/textproc/p5-CSS-Tiny/pkg-descr (props changed) head/textproc/p5-CSS/pkg-descr (props changed) head/textproc/p5-Class-CSV/pkg-descr (props changed) head/textproc/p5-Data-FormValidator-Constraints-DateTime/pkg-descr (props changed) head/textproc/p5-Data-FormValidator/pkg-descr (props changed) head/textproc/p5-Data-Phrasebook-Loader-YAML/pkg-descr (props changed) head/textproc/p5-Data-Phrasebook/pkg-descr (props changed) head/textproc/p5-Data-Report/pkg-descr (props changed) head/textproc/p5-Data-SpreadPagination/pkg-descr (props changed) head/textproc/p5-DelimMatch/pkg-descr (props changed) head/textproc/p5-Devel-TraceSAX/pkg-descr (props changed) head/textproc/p5-DocSet/pkg-descr (props changed) head/textproc/p5-EBook-Tools/pkg-descr (props changed) head/textproc/p5-Excel-Template/pkg-descr (props changed) head/textproc/p5-Excel-Writer-XLSX/pkg-descr (props changed) head/textproc/p5-File-Inplace/pkg-descr (props changed) head/textproc/p5-Filter-Simple/pkg-descr (props changed) head/textproc/p5-FormValidator-Lite/pkg-descr (props changed) head/textproc/p5-Geo-Parse-OSM/pkg-descr (props changed) head/textproc/p5-Getopt-Lucid/pkg-descr (props changed) head/textproc/p5-Google-Data-JSON/pkg-descr (props changed) head/textproc/p5-HTML-CTPP2/pkg-descr (props changed) head/textproc/p5-HTML-Copy/pkg-descr (props changed) head/textproc/p5-HTML-Entities-ImodePictogram/pkg-descr (props changed) head/textproc/p5-HTML-Entities-Interpolate/pkg-descr (props changed) head/textproc/p5-HTML-Entities-Numbered/pkg-descr (props changed) head/textproc/p5-HTML-EscapeEvil/pkg-descr (props changed) head/textproc/p5-HTML-Format/pkg-descr (props changed) head/textproc/p5-HTML-FormatText-WithLinks/pkg-descr (props changed) head/textproc/p5-HTML-Fraction/pkg-descr (props changed) head/textproc/p5-HTML-HTML5-Entities/pkg-descr (props changed) head/textproc/p5-HTML-HTML5-Parser/pkg-descr (props changed) head/textproc/p5-HTML-HTMLDoc/pkg-descr (props changed) head/textproc/p5-HTML-Packer/pkg-descr (props changed) head/textproc/p5-HTML-QRCode/pkg-descr (props changed) head/textproc/p5-HTML-Quoted/pkg-descr (props changed) head/textproc/p5-HTML-RewriteAttributes/pkg-descr (props changed) head/textproc/p5-HTML-SBC/pkg-descr (props changed) head/textproc/p5-HTML-SuperForm/pkg-descr (props changed) head/textproc/p5-HTML-TagFilter/pkg-descr (props changed) head/textproc/p5-HTML-Tidy/pkg-descr (props changed) head/textproc/p5-HTML-Tiny/pkg-descr (props changed) head/textproc/p5-HTML-Truncate/pkg-descr (props changed) head/textproc/p5-Hailo/pkg-descr (props changed) head/textproc/p5-Hash-Merge/pkg-descr (props changed) head/textproc/p5-Hatena-Keyword/pkg-descr (props changed) head/textproc/p5-IDNA-Punycode/pkg-descr (props changed) head/textproc/p5-IO-CSVHeaderFile/pkg-descr (props changed) head/textproc/p5-JavaScript-Packer/pkg-descr (props changed) head/textproc/p5-KinoSearch1/pkg-descr (props changed) head/textproc/p5-Kwalify/pkg-descr (props changed) head/textproc/p5-LaTeX-Pod/pkg-descr (props changed) head/textproc/p5-LaTeX-ToUnicode/pkg-descr (props changed) head/textproc/p5-Lingua-Conjunction/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Fathom/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Gender/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Infinitive/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Inflect-Number/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Inflect-Phrase/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Inflect/pkg-descr (props changed) head/textproc/p5-Lingua-EN-MatchNames/pkg-descr (props changed) head/textproc/p5-Lingua-EN-NameCase/pkg-descr (props changed) head/textproc/p5-Lingua-EN-NameParse/pkg-descr (props changed) head/textproc/p5-Lingua-EN-NamedEntity/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Number-IsOrdinal/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Numbers-Easy/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Numbers-Ordinate/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Numbers/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Sentence/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Squeeze/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Summarize/pkg-descr (props changed) head/textproc/p5-Lingua-EN-Syllable/pkg-descr (props changed) head/textproc/p5-Lingua-Ident/pkg-descr (props changed) head/textproc/p5-Lingua-Identify/pkg-descr (props changed) head/textproc/p5-Lingua-Ispell/pkg-descr (props changed) head/textproc/p5-Lingua-PT-Stemmer/pkg-descr (props changed) head/textproc/p5-Lingua-Preferred/pkg-descr (props changed) head/textproc/p5-Lingua-Stem-Fr/pkg-descr (props changed) head/textproc/p5-Lingua-Stem-It/pkg-descr (props changed) head/textproc/p5-Lingua-Stem-Ru/pkg-descr (props changed) head/textproc/p5-Lingua-Stem-Snowball-Da/pkg-descr (props changed) head/textproc/p5-Lingua-Stem-Snowball-No/pkg-descr (props changed) head/textproc/p5-Lingua-Stem-Snowball-Se/pkg-descr (props changed) head/textproc/p5-Lingua-Stem-Snowball/pkg-descr (props changed) head/textproc/p5-Lingua-Stem/pkg-descr (props changed) head/textproc/p5-Lingua-StopWords/pkg-descr (props changed) head/textproc/p5-Lingua-Treebank/pkg-descr (props changed) head/textproc/p5-MARC-Lint/pkg-descr (props changed) head/textproc/p5-MARC-Record/pkg-descr (props changed) head/textproc/p5-MARC-XML/pkg-descr (props changed) head/textproc/p5-MARC/pkg-descr (props changed) head/textproc/p5-Makefile-DOM/pkg-descr (props changed) head/textproc/p5-Makefile-Parser/pkg-descr (props changed) head/textproc/p5-Markapl/pkg-descr (props changed) head/textproc/p5-Marpa-HTML/pkg-descr (props changed) head/textproc/p5-Net-IDN-Encode/pkg-descr (props changed) head/textproc/p5-Net-YASA/pkg-descr (props changed) head/textproc/p5-NetAddr-IP-Find/pkg-descr (props changed) head/textproc/p5-Number-Format/pkg-descr (props changed) head/textproc/p5-Number-Spell/pkg-descr (props changed) head/textproc/p5-ODF-lpOD/pkg-descr (props changed) head/textproc/p5-OpenOffice-OODoc/pkg-descr (props changed) head/textproc/p5-PDF-API2/pkg-descr (props changed) head/textproc/p5-PDF-API3/pkg-descr (props changed) head/textproc/p5-PDF-Create/pkg-descr (props changed) head/textproc/p5-PDF-Table/pkg-descr (props changed) head/textproc/p5-PDF-Writer/pkg-descr (props changed) head/textproc/p5-POD2-Base/pkg-descr (props changed) head/textproc/p5-POE-Filter-XML/pkg-descr (props changed) head/textproc/p5-POSIX-Regex/pkg-descr (props changed) head/textproc/p5-PPI-HTML/pkg-descr (props changed) head/textproc/p5-PPI-XS/pkg-descr (props changed) head/textproc/p5-PPI/pkg-descr (props changed) head/textproc/p5-PPIx-EditorTools/pkg-descr (props changed) head/textproc/p5-PPIx-Utilities/pkg-descr (props changed) head/textproc/p5-Parse-BooleanLogic/pkg-descr (props changed) head/textproc/p5-Parse-CSV/pkg-descr (props changed) head/textproc/p5-Parse-FixedLength/pkg-descr (props changed) head/textproc/p5-Parse-Flex/pkg-descr (props changed) head/textproc/p5-Parse-PhoneNumber/pkg-descr (props changed) head/textproc/p5-Parse-Syslog/pkg-descr (props changed) head/textproc/p5-Perl-Critic-Bangs/pkg-descr (props changed) head/textproc/p5-Perl-Critic/pkg-descr (props changed) head/textproc/p5-Perl-MinimumVersion/pkg-descr (props changed) head/textproc/p5-PerlPoint-Converters/pkg-descr (props changed) head/textproc/p5-PerlPoint-Package/pkg-descr (props changed) head/textproc/p5-Plagger/pkg-descr (props changed) head/textproc/p5-Plucene-Analysis-CJKAnalyzer/pkg-descr (props changed) head/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/pkg-descr (props changed) head/textproc/p5-Plucene-Simple/pkg-descr (props changed) head/textproc/p5-Plucene/pkg-descr (props changed) head/textproc/p5-Pod-Abstract/pkg-descr (props changed) head/textproc/p5-Pod-Autopod/pkg-descr (props changed) head/textproc/p5-Pod-Constants/pkg-descr (props changed) head/textproc/p5-Pod-DocBook/pkg-descr (props changed) head/textproc/p5-Pod-Elemental/pkg-descr (props changed) head/textproc/p5-Pod-Escapes/pkg-descr (props changed) head/textproc/p5-Pod-HtmlEasy/pkg-descr (props changed) head/textproc/p5-Pod-Markdown/pkg-descr (props changed) head/textproc/p5-Pod-POM-View-HTML-Filter/pkg-descr (props changed) head/textproc/p5-Pod-POM/pkg-descr (props changed) head/textproc/p5-Pod-Parser/pkg-descr (props changed) head/textproc/p5-Pod-Perldoc/pkg-descr (props changed) head/textproc/p5-Pod-ProjectDocs/pkg-descr (props changed) head/textproc/p5-Pod-Readme/pkg-descr (props changed) head/textproc/p5-Pod-Simple/pkg-descr (props changed) head/textproc/p5-Pod-Spell/pkg-descr (props changed) head/textproc/p5-Pod-Strip/pkg-descr (props changed) head/textproc/p5-Pod-Stripper/pkg-descr (props changed) head/textproc/p5-Pod-Tree/pkg-descr (props changed) head/textproc/p5-Pod-WSDL/pkg-descr (props changed) head/textproc/p5-Pod-WikiDoc/pkg-descr (props changed) head/textproc/p5-Pod-XML/pkg-descr (props changed) head/textproc/p5-RADIUS-UserFile/pkg-descr (props changed) head/textproc/p5-RDF-Core/pkg-descr (props changed) head/textproc/p5-RDF-Notation3/pkg-descr (props changed) head/textproc/p5-RDFStore/pkg-descr (props changed) head/textproc/p5-RTF-Parser/pkg-descr (props changed) head/textproc/p5-RTF-Tokenizer/pkg-descr (props changed) head/textproc/p5-RTF-Writer/pkg-descr (props changed) head/textproc/p5-Regexp-Common-Email-Address/pkg-descr (props changed) head/textproc/p5-Regexp-Common-net-CIDR/pkg-descr (props changed) head/textproc/p5-Regexp-Common-profanity_us/pkg-descr (props changed) head/textproc/p5-Regexp-Common/pkg-descr (props changed) head/textproc/p5-Regexp-Copy/pkg-descr (props changed) head/textproc/p5-Regexp-DefaultFlags/pkg-descr (props changed) head/textproc/p5-Regexp-IPv6/pkg-descr (props changed) head/textproc/p5-Regexp-Log-Common/pkg-descr (props changed) head/textproc/p5-Regexp-Log/pkg-descr (props changed) head/textproc/p5-SGML-DTDParse/pkg-descr (props changed) head/textproc/p5-SGML-Parser-OpenSP/pkg-descr (props changed) head/textproc/p5-SGMLSpm/pkg-descr (props changed) head/textproc/p5-SQL-Tokenizer/pkg-descr (props changed) head/textproc/p5-SVG-Parser/pkg-descr (props changed) head/textproc/p5-SVG/pkg-descr (props changed) head/textproc/p5-Senna/pkg-descr (props changed) head/textproc/p5-Solr/pkg-descr (props changed) head/textproc/p5-Sort-ArbBiLex/pkg-descr (props changed) head/textproc/p5-Sort-Fields/pkg-descr (props changed) head/textproc/p5-Sort-Naturally/pkg-descr (props changed) head/textproc/p5-Sphinx-Config/pkg-descr (props changed) head/textproc/p5-Sphinx-Manager/pkg-descr (props changed) head/textproc/p5-Sphinx-Search/pkg-descr (props changed) head/textproc/p5-Spreadsheet-ParseExcel/pkg-descr (props changed) head/textproc/p5-Spreadsheet-Read/pkg-descr (props changed) head/textproc/p5-Spreadsheet-ReadSXC/pkg-descr (props changed) head/textproc/p5-Spreadsheet-WriteExcel-FromXML/pkg-descr (props changed) head/textproc/p5-Spreadsheet-WriteExcel-Styler/pkg-descr (props changed) head/textproc/p5-Spreadsheet-WriteExcel/pkg-descr (props changed) head/textproc/p5-Spreadsheet-XLSX/pkg-descr (props changed) head/textproc/p5-String-BufferStack/pkg-descr (props changed) head/textproc/p5-String-CamelCase/pkg-descr (props changed) head/textproc/p5-String-Compare-ConstantTime/pkg-descr (props changed) head/textproc/p5-String-Divert/pkg-descr (props changed) head/textproc/p5-String-Escape/pkg-descr (props changed) head/textproc/p5-String-Flogger/pkg-descr (props changed) head/textproc/p5-String-Format/pkg-descr (props changed) head/textproc/p5-String-Fraction/pkg-descr (props changed) head/textproc/p5-String-Koremutake/pkg-descr (props changed) head/textproc/p5-String-RewritePrefix/pkg-descr (props changed) head/textproc/p5-String-Scanf/pkg-descr (props changed) head/textproc/p5-String-ShellQuote/pkg-descr (props changed) head/textproc/p5-String-ShowDiff/pkg-descr (props changed) head/textproc/p5-String-Strip/pkg-descr (props changed) head/textproc/p5-String-ToIdentifier-EN/pkg-descr (props changed) head/textproc/p5-String-Tokenizer/pkg-descr (props changed) head/textproc/p5-String-Truncate/pkg-descr (props changed) head/textproc/p5-String-Urandom/pkg-descr (props changed) head/textproc/p5-Syntax-Highlight-Perl-Improved/pkg-descr (props changed) head/textproc/p5-TeX-Hyphen/pkg-descr (props changed) head/textproc/p5-Template-Declare/pkg-descr (props changed) head/textproc/p5-Template-Extract/pkg-descr (props changed) head/textproc/p5-Template-Plugin-Autoformat/pkg-descr (props changed) head/textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/pkg-descr (props changed) head/textproc/p5-Template-Plugin-Filter-Minify-CSS/pkg-descr (props changed) head/textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/pkg-descr (props changed) head/textproc/p5-Template-Plugin-Filter-Minify-JavaScript/pkg-descr (props changed) head/textproc/p5-Template-Plugin-HTML-SuperForm/pkg-descr (props changed) head/textproc/p5-Template-Plugin-Lingua-EN-Inflect/pkg-descr (props changed) head/textproc/p5-Template-Plugin-XML-Escape/pkg-descr (props changed) head/textproc/p5-Template-Semantic/pkg-descr (props changed) head/textproc/p5-Template-Tiny/pkg-descr (props changed) head/textproc/p5-Term-QRCode/pkg-descr (props changed) head/textproc/p5-Test-Perl-Critic/pkg-descr (props changed) head/textproc/p5-Text-ASCIIMathML/pkg-descr (props changed) head/textproc/p5-Text-ASCIITable/pkg-descr (props changed) head/textproc/p5-Text-Affixes/pkg-descr (props changed) head/textproc/p5-Text-Aspell/pkg-descr (props changed) head/textproc/p5-Text-Autoformat/pkg-descr (props changed) head/textproc/p5-Text-Balanced/pkg-descr (props changed) head/textproc/p5-Text-Bastardize/pkg-descr (props changed) head/textproc/p5-Text-BibTeX/pkg-descr (props changed) head/textproc/p5-Text-Bind/pkg-descr (props changed) head/textproc/p5-Text-Brew/pkg-descr (props changed) head/textproc/p5-Text-CSV-Encoded/pkg-descr (props changed) head/textproc/p5-Text-CSV-Simple/pkg-descr (props changed) head/textproc/p5-Text-CSV/pkg-descr (props changed) head/textproc/p5-Text-CSV_XS/pkg-descr (props changed) head/textproc/p5-Text-Capitalize/pkg-descr (props changed) head/textproc/p5-Text-CharWidth/pkg-descr (props changed) head/textproc/p5-Text-Chomp/pkg-descr (props changed) head/textproc/p5-Text-ClearSilver/pkg-descr (props changed) head/textproc/p5-Text-Context-EitherSide/pkg-descr (props changed) head/textproc/p5-Text-Context/pkg-descr (props changed) head/textproc/p5-Text-DHCPLeases/pkg-descr (props changed) head/textproc/p5-Text-Decorator/pkg-descr (props changed) head/textproc/p5-Text-Delimited/pkg-descr (props changed) head/textproc/p5-Text-Diff-HTML/pkg-descr (props changed) head/textproc/p5-Text-Diff-Parser/pkg-descr (props changed) head/textproc/p5-Text-Diff/pkg-descr (props changed) head/textproc/p5-Text-DoubleMetaphone/pkg-descr (props changed) head/textproc/p5-Text-Emoticon/pkg-descr (props changed) head/textproc/p5-Text-EtText/pkg-descr (props changed) head/textproc/p5-Text-Extract-Word/pkg-descr (props changed) head/textproc/p5-Text-FillIn/pkg-descr (props changed) head/textproc/p5-Text-Filter-Chain/pkg-descr (props changed) head/textproc/p5-Text-Filter/pkg-descr (props changed) head/textproc/p5-Text-FindIndent/pkg-descr (props changed) head/textproc/p5-Text-FixEOL/pkg-descr (props changed) head/textproc/p5-Text-FixedLength-Extra/pkg-descr (props changed) head/textproc/p5-Text-FixedLength/pkg-descr (props changed) head/textproc/p5-Text-Flow/pkg-descr (props changed) head/textproc/p5-Text-Flowchart/pkg-descr (props changed) head/textproc/p5-Text-Flowed/pkg-descr (props changed) head/textproc/p5-Text-Format+NWrap/pkg-descr (props changed) head/textproc/p5-Text-Format/pkg-descr (props changed) head/textproc/p5-Text-FormatTable/pkg-descr (props changed) head/textproc/p5-Text-German/pkg-descr (props changed) head/textproc/p5-Text-Glob/pkg-descr (props changed) head/textproc/p5-Text-Graphics/pkg-descr (props changed) head/textproc/p5-Text-Greeking/pkg-descr (props changed) head/textproc/p5-Text-Haml/pkg-descr (props changed) head/textproc/p5-Text-Highlight/pkg-descr (props changed) head/textproc/p5-Text-HikiDoc/pkg-descr (props changed) head/textproc/p5-Text-LTSV/pkg-descr (props changed) head/textproc/p5-Text-Language-Guess/pkg-descr (props changed) head/textproc/p5-Text-Markdown/pkg-descr (props changed) head/textproc/p5-Text-Match-FastAlternatives/pkg-descr (props changed) head/textproc/p5-Text-Metaphone/pkg-descr (props changed) head/textproc/p5-Text-MicroMason/pkg-descr (props changed) head/textproc/p5-Text-MicroTemplate-Extended/pkg-descr (props changed) head/textproc/p5-Text-MicroTemplate/pkg-descr (props changed) head/textproc/p5-Text-MultiMarkdown/pkg-descr (props changed) head/textproc/p5-Text-NSP/pkg-descr (props changed) head/textproc/p5-Text-NeatTemplate/pkg-descr (props changed) head/textproc/p5-Text-Netstring/pkg-descr (props changed) head/textproc/p5-Text-Original/pkg-descr (props changed) head/textproc/p5-Text-Padding/pkg-descr (props changed) head/textproc/p5-Text-ParagraphDiff/pkg-descr (props changed) head/textproc/p5-Text-Patch/pkg-descr (props changed) head/textproc/p5-Text-Pipe/pkg-descr (props changed) head/textproc/p5-Text-Prefix-XS/pkg-descr (props changed) head/textproc/p5-Text-QRCode/pkg-descr (props changed) head/textproc/p5-Text-Query/pkg-descr (props changed) head/textproc/p5-Text-Quote/pkg-descr (props changed) head/textproc/p5-Text-Quoted/pkg-descr (props changed) head/textproc/p5-Text-RecordParser/pkg-descr (props changed) head/textproc/p5-Text-Reflow/pkg-descr (props changed) head/textproc/p5-Text-Reform/pkg-descr (props changed) head/textproc/p5-Text-Report/pkg-descr (props changed) head/textproc/p5-Text-Repository/pkg-descr (props changed) head/textproc/p5-Text-Sass/pkg-descr (props changed) head/textproc/p5-Text-Shellwords/pkg-descr (props changed) head/textproc/p5-Text-Similarity/pkg-descr (props changed) head/textproc/p5-Text-SimpleTable/pkg-descr (props changed) head/textproc/p5-Text-SimpleTemplate/pkg-descr (props changed) head/textproc/p5-Text-SpellChecker-GUI/pkg-descr (props changed) head/textproc/p5-Text-SpellChecker/pkg-descr (props changed) head/textproc/p5-Text-Striphigh/pkg-descr (props changed) head/textproc/p5-Text-Table/pkg-descr (props changed) head/textproc/p5-Text-Tabs+Wrap/pkg-descr (props changed) head/textproc/p5-Text-TabularDisplay/pkg-descr (props changed) head/textproc/p5-Text-Tags/pkg-descr (props changed) head/textproc/p5-Text-Template/pkg-descr (props changed) head/textproc/p5-Text-Textile/pkg-descr (props changed) head/textproc/p5-Text-Tmpl/pkg-descr (props changed) head/textproc/p5-Text-Truncate/pkg-descr (props changed) head/textproc/p5-Text-Unaccent/pkg-descr (props changed) head/textproc/p5-Text-WikiCreole/pkg-descr (props changed) head/textproc/p5-Text-WikiFormat/pkg-descr (props changed) head/textproc/p5-Text-WordDiff/pkg-descr (props changed) head/textproc/p5-Text-Wrapper/pkg-descr (props changed) head/textproc/p5-Text-Xslate-Bridge-TT2Like/pkg-descr (props changed) head/textproc/p5-Text-Xslate/pkg-descr (props changed) head/textproc/p5-Text-vCard/pkg-descr (props changed) head/textproc/p5-Tiffany/pkg-descr (props changed) head/textproc/p5-Time-Human/pkg-descr (props changed) head/textproc/p5-Tk-Pod/pkg-descr (props changed) head/textproc/p5-Tk-XMLViewer/pkg-descr (props changed) head/textproc/p5-Tree-Nary/pkg-descr (props changed) head/textproc/p5-Tree-Suffix/pkg-descr (props changed) head/textproc/p5-UML-Class-Simple/pkg-descr (props changed) head/textproc/p5-URI-Find/pkg-descr (props changed) head/textproc/p5-Unicode-CheckUTF8/pkg-descr (props changed) head/textproc/p5-Unicode-Collate/pkg-descr (props changed) head/textproc/p5-Unicode-EastAsianWidth/pkg-descr (props changed) head/textproc/p5-Unicode-Escape/pkg-descr (props changed) head/textproc/p5-Unicode-LineBreak/pkg-descr (props changed) head/textproc/p5-Unicode-Unihan/pkg-descr (props changed) head/textproc/p5-Version-Next/pkg-descr (props changed) head/textproc/p5-Vroom/pkg-descr (props changed) head/textproc/p5-WDDX/pkg-descr (props changed) head/textproc/p5-WWW-Google-SiteMap/pkg-descr (props changed) head/textproc/p5-WWW-Wordnik-API/pkg-descr (props changed) head/textproc/p5-WordNet-QueryData/pkg-descr (props changed) head/textproc/p5-WordNet-Similarity/pkg-descr (props changed) head/textproc/p5-XML-Atom-Ext-OpenSearch/pkg-descr (props changed) head/textproc/p5-XML-Atom-Filter/pkg-descr (props changed) head/textproc/p5-XML-Atom-SimpleFeed/pkg-descr (props changed) head/textproc/p5-XML-AutoWriter/pkg-descr (props changed) head/textproc/p5-XML-Bare/pkg-descr (props changed) head/textproc/p5-XML-Canonical/pkg-descr (props changed) head/textproc/p5-XML-CanonicalizeXML/pkg-descr (props changed) head/textproc/p5-XML-Catalog/pkg-descr (props changed) head/textproc/p5-XML-Clean/pkg-descr (props changed) head/textproc/p5-XML-Code/pkg-descr (props changed) head/textproc/p5-XML-Compile-Dumper/pkg-descr (props changed) head/textproc/p5-XML-DBMS/pkg-descr (props changed) head/textproc/p5-XML-DOM-XPath/pkg-descr (props changed) head/textproc/p5-XML-DOM/pkg-descr (props changed) head/textproc/p5-XML-DOMHandler/pkg-descr (props changed) head/textproc/p5-XML-DT/pkg-descr (props changed) head/textproc/p5-XML-DTDParser/pkg-descr (props changed) head/textproc/p5-XML-Descent/pkg-descr (props changed) head/textproc/p5-XML-DifferenceMarkup/pkg-descr (props changed) head/textproc/p5-XML-Directory/pkg-descr (props changed) head/textproc/p5-XML-DoubleEncodedEntities/pkg-descr (props changed) head/textproc/p5-XML-Driver-HTML/pkg-descr (props changed) head/textproc/p5-XML-Dumper/pkg-descr (props changed) head/textproc/p5-XML-Encoding/pkg-descr (props changed) head/textproc/p5-XML-Entities/pkg-descr (props changed) head/textproc/p5-XML-FOAF/pkg-descr (props changed) head/textproc/p5-XML-Feed-Deduper/pkg-descr (props changed) head/textproc/p5-XML-Feed/pkg-descr (props changed) head/textproc/p5-XML-FeedPP/pkg-descr (props changed) head/textproc/p5-XML-Filter-BufferText/pkg-descr (props changed) head/textproc/p5-XML-Filter-DOMFilter-LibXML/pkg-descr (props changed) head/textproc/p5-XML-Filter-DetectWS/pkg-descr (props changed) head/textproc/p5-XML-Filter-GenericChunk/pkg-descr (props changed) head/textproc/p5-XML-Filter-Reindent/pkg-descr (props changed) head/textproc/p5-XML-Filter-SAX1toSAX2/pkg-descr (props changed) head/textproc/p5-XML-Filter-SAXT/pkg-descr (props changed) head/textproc/p5-XML-Filter-XInclude/pkg-descr (props changed) head/textproc/p5-XML-Filter-XSLT/pkg-descr (props changed) head/textproc/p5-XML-GDOME/pkg-descr (props changed) head/textproc/p5-XML-Generator-DBI/pkg-descr (props changed) head/textproc/p5-XML-Generator-PerlData/pkg-descr (props changed) head/textproc/p5-XML-Generator/pkg-descr (props changed) head/textproc/p5-XML-Grove/pkg-descr (props changed) head/textproc/p5-XML-Handler-Dtd2DocBook/pkg-descr (props changed) head/textproc/p5-XML-Handler-Dtd2Html/pkg-descr (props changed) head/textproc/p5-XML-Handler-HTMLWriter/pkg-descr (props changed) head/textproc/p5-XML-Handler-Trees/pkg-descr (props changed) head/textproc/p5-XML-Handler-YAWriter/pkg-descr (props changed) head/textproc/p5-XML-Hash-LX/pkg-descr (props changed) head/textproc/p5-XML-LibXML-Cache/pkg-descr (props changed) head/textproc/p5-XML-LibXML-Iterator/pkg-descr (props changed) head/textproc/p5-XML-LibXML-PrettyPrint/pkg-descr (props changed) head/textproc/p5-XML-LibXML-SAX-ChunkParser/pkg-descr (props changed) head/textproc/p5-XML-LibXML-Simple/pkg-descr (props changed) head/textproc/p5-XML-LibXML/pkg-descr (props changed) head/textproc/p5-XML-LibXSLT/pkg-descr (props changed) head/textproc/p5-XML-Mini/pkg-descr (props changed) head/textproc/p5-XML-MyXML/pkg-descr (props changed) head/textproc/p5-XML-NamespaceSupport/pkg-descr (props changed) head/textproc/p5-XML-Node/pkg-descr (props changed) head/textproc/p5-XML-NodeFilter/pkg-descr (props changed) head/textproc/p5-XML-OPML-LibXML/pkg-descr (props changed) head/textproc/p5-XML-OPML/pkg-descr (props changed) head/textproc/p5-XML-Parsepp/pkg-descr (props changed) head/textproc/p5-XML-Parser-EasyTree/pkg-descr (props changed) head/textproc/p5-XML-Parser-Lite-Tree/pkg-descr (props changed) head/textproc/p5-XML-Parser-Style-EasyTree/pkg-descr (props changed) head/textproc/p5-XML-Parser-Style-Elemental/pkg-descr (props changed) head/textproc/p5-XML-Parser/pkg-descr (props changed) head/textproc/p5-XML-Quote/pkg-descr (props changed) head/textproc/p5-XML-RSS-Feed/pkg-descr (props changed) head/textproc/p5-XML-RSS-JavaScript/pkg-descr (props changed) head/textproc/p5-XML-RSS-Parser/pkg-descr (props changed) head/textproc/p5-XML-RSS-SimpleGen/pkg-descr (props changed) head/textproc/p5-XML-RSS/pkg-descr (props changed) head/textproc/p5-XML-RegExp/pkg-descr (props changed) head/textproc/p5-XML-Rewrite/pkg-descr (props changed) head/textproc/p5-XML-Rules/pkg-descr (props changed) head/textproc/p5-XML-SAX-Base/pkg-descr (props changed) head/textproc/p5-XML-SAX-Expat-Incremental/pkg-descr (props changed) head/textproc/p5-XML-SAX-Expat/pkg-descr (props changed) head/textproc/p5-XML-SAX-ExpatXS/pkg-descr (props changed) head/textproc/p5-XML-SAX-Machines/pkg-descr (props changed) head/textproc/p5-XML-SAX-Simple/pkg-descr (props changed) head/textproc/p5-XML-SAX-Writer/pkg-descr (props changed) head/textproc/p5-XML-SAX/pkg-descr (props changed) head/textproc/p5-XML-SAXDriver-CSV/pkg-descr (props changed) head/textproc/p5-XML-SAXDriver-Excel/pkg-descr (props changed) head/textproc/p5-XML-STX/pkg-descr (props changed) head/textproc/p5-XML-Schematron/pkg-descr (props changed) head/textproc/p5-XML-SemanticDiff/pkg-descr (props changed) head/textproc/p5-XML-Simple/pkg-descr (props changed) head/textproc/p5-XML-SimpleObject-LibXML/pkg-descr (props changed) head/textproc/p5-XML-SimpleObject/pkg-descr (props changed) head/textproc/p5-XML-Stream/pkg-descr (props changed) head/textproc/p5-XML-TinyXML/pkg-descr (props changed) head/textproc/p5-XML-TokeParser/pkg-descr (props changed) head/textproc/p5-XML-Toolkit/pkg-descr (props changed) head/textproc/p5-XML-TreeBuilder/pkg-descr (props changed) head/textproc/p5-XML-Twig/pkg-descr (props changed) head/textproc/p5-XML-Validate/pkg-descr (props changed) head/textproc/p5-XML-Validator-Schema/pkg-descr (props changed) head/textproc/p5-XML-Writer/pkg-descr (props changed) head/textproc/p5-XML-XBEL/pkg-descr (props changed) head/textproc/p5-XML-XML2JSON/pkg-descr (props changed) head/textproc/p5-XML-XPath/pkg-descr (props changed) head/textproc/p5-XML-XQL/pkg-descr (props changed) head/textproc/p5-XML-XSH/pkg-descr (props changed) head/textproc/p5-XML-XSLT/pkg-descr (props changed) head/textproc/p5-XML-XUpdate-LibXML/pkg-descr (props changed) head/textproc/p5-XML-Xerces/pkg-descr (props changed) head/textproc/p5-YAML-LibYAML/pkg-descr (props changed) head/textproc/p5-YAML-Shell/pkg-descr (props changed) head/textproc/p5-YAML-Syck/pkg-descr (props changed) head/textproc/p5-YAML-Tiny-Color/pkg-descr (props changed) head/textproc/p5-YAML-Tiny/pkg-descr (props changed) head/textproc/p5-YAML/pkg-descr (props changed) head/textproc/p5-YAPE-HTML/pkg-descr (props changed) head/textproc/p5-YAPE-Regex-Explain/pkg-descr (props changed) head/textproc/p5-YAPE-Regex/pkg-descr (props changed) head/textproc/p5-dTemplate/pkg-descr (props changed) head/textproc/p5-libsoldout/pkg-descr (props changed) head/textproc/p5-pod2pdf/pkg-descr (props changed) head/textproc/p5-podlators/pkg-descr (props changed) head/textproc/p5-xmltv/pkg-descr (props changed) head/textproc/pa-aspell/pkg-descr (props changed) head/textproc/par/pkg-descr (props changed) head/textproc/pardiff/pkg-descr (props changed) head/textproc/pcrs/pkg-descr (props changed) head/textproc/pdfgrep/pkg-descr (props changed) head/textproc/pdfoutline/pkg-descr (props changed) head/textproc/pdftohtml/pkg-descr (props changed) head/textproc/pear-File_Fortune/pkg-descr (props changed) head/textproc/pear-File_MARC/pkg-descr (props changed) head/textproc/pear-Horde_Kolab_Format/pkg-descr (props changed) head/textproc/pear-Horde_Pdf/pkg-descr (props changed) head/textproc/pear-Horde_SpellChecker/pkg-descr (props changed) head/textproc/pear-Horde_Text_Diff/pkg-descr (props changed) head/textproc/pear-Horde_Text_Filter/pkg-descr (props changed) head/textproc/pear-Horde_Text_Filter_Csstidy/pkg-descr (props changed) head/textproc/pear-Horde_Text_Flowed/pkg-descr (props changed) head/textproc/pear-Horde_Xml_Element/pkg-descr (props changed) head/textproc/pear-Horde_Xml_Wbxml/pkg-descr (props changed) head/textproc/pear-Numbers_Roman/pkg-descr (props changed) head/textproc/pear-Numbers_Words/pkg-descr (props changed) head/textproc/pear-Spreadsheet_Excel_Writer/pkg-descr (props changed) head/textproc/pear-Structures_DataGrid_DataSource_RSS/pkg-descr (props changed) head/textproc/pear-Structures_DataGrid_DataSource_XML/pkg-descr (props changed) head/textproc/pear-Structures_DataGrid_Renderer_CSV/pkg-descr (props changed) head/textproc/pear-Structures_DataGrid_Renderer_XLS/pkg-descr (props changed) head/textproc/pear-Structures_DataGrid_Renderer_XML/pkg-descr (props changed) head/textproc/pear-Symfony_Component_Yaml/pkg-descr (props changed) head/textproc/pear-Text_Highlighter/pkg-descr (props changed) head/textproc/pear-Text_Template/pkg-descr (props changed) head/textproc/pear-XML_Beautifier/pkg-descr (props changed) head/textproc/pear-XML_DTD/pkg-descr (props changed) head/textproc/pear-XML_Feed_Parser/pkg-descr (props changed) head/textproc/pear-XML_HTMLSax/pkg-descr (props changed) head/textproc/pear-XML_Wddx/pkg-descr (props changed) head/textproc/pear-YAML/pkg-descr (props changed) head/textproc/pecl-ctemplate/pkg-descr (props changed) head/textproc/pecl-doublemetaphone/pkg-descr (props changed) head/textproc/pecl-enchant/pkg-descr (props changed) head/textproc/pecl-html_parse/pkg-descr (props changed) head/textproc/pecl-stem/pkg-descr (props changed) head/textproc/pecl-syck/pkg-descr (props changed) head/textproc/pecl-wbxml/pkg-descr (props changed) head/textproc/pecl-xdiff/pkg-descr (props changed) head/textproc/pecl-xslcache/pkg-descr (props changed) head/textproc/pecl-yaml/pkg-descr (props changed) head/textproc/perl2html/pkg-descr (props changed) head/textproc/permute/pkg-descr (props changed) head/textproc/plover/pkg-descr (props changed) head/textproc/po4a/pkg-descr (props changed) head/textproc/pocketreader/pkg-descr (props changed) head/textproc/pootle/pkg-descr (props changed) head/textproc/popup-stacks/pkg-descr (props changed) head/textproc/popup/pkg-descr (props changed) head/textproc/ppower4/pkg-descr (props changed) head/textproc/print-n-times/pkg-descr (props changed) head/textproc/prosper/pkg-descr (props changed) head/textproc/publican/pkg-descr (props changed) head/textproc/pure-csv/pkg-descr (props changed) head/textproc/pure-xml/pkg-descr (props changed) head/textproc/py-4suite-xml/pkg-descr (props changed) head/textproc/py-4suite/pkg-descr (props changed) head/textproc/py-Chameleon/pkg-descr (props changed) head/textproc/py-Tempita/pkg-descr (props changed) head/textproc/py-chardet/pkg-descr (props changed) head/textproc/py-docutils/pkg-descr (props changed) head/textproc/py-dsv/pkg-descr (props changed) head/textproc/py-elib.intl/pkg-descr (props changed) head/textproc/py-empy/pkg-descr (props changed) head/textproc/py-enchant/pkg-descr (props changed) head/textproc/py-excelerator/pkg-descr (props changed) head/textproc/py-feedparser/pkg-descr (props changed) head/textproc/py-genshi-devel/pkg-descr (props changed) head/textproc/py-genshi/pkg-descr (props changed) head/textproc/py-html2text/pkg-descr (props changed) head/textproc/py-hyperestraier-python/pkg-descr (props changed) head/textproc/py-jaxml/pkg-descr (props changed) head/textproc/py-libtre/pkg-descr (props changed) head/textproc/py-libxml2/pkg-descr (props changed) head/textproc/py-libxslt/pkg-descr (props changed) head/textproc/py-ltxml/pkg-descr (props changed) head/textproc/py-lucene/pkg-descr (props changed) head/textproc/py-mako/pkg-descr (props changed) head/textproc/py-markdown/pkg-descr (props changed) head/textproc/py-markdown2/pkg-descr (props changed) head/textproc/py-paragrep/pkg-descr (props changed) head/textproc/py-pss/pkg-descr (props changed) head/textproc/py-pystache/pkg-descr (props changed) head/textproc/py-pyx12/pkg-descr (props changed) head/textproc/py-reverend/pkg-descr (props changed) head/textproc/py-rss2gen/pkg-descr (props changed) head/textproc/py-rstyoutube/pkg-descr (props changed) head/textproc/py-rxp/pkg-descr (props changed) head/textproc/py-sgrep/pkg-descr (props changed) head/textproc/py-sphinx/pkg-descr (props changed) head/textproc/py-sphinxcontrib-bitbucket/pkg-descr (props changed) head/textproc/py-sphinxcontrib-httpdomain/pkg-descr (props changed) head/textproc/py-stripogram/pkg-descr (props changed) head/textproc/py-syck/pkg-descr (props changed) head/textproc/py-tvgrab/pkg-descr (props changed) head/textproc/py-twistedLore/pkg-descr (props changed) head/textproc/py-whoosh/pkg-descr (props changed) head/textproc/py-wordnet/pkg-descr (props changed) head/textproc/py-wtforms/pkg-descr (props changed) head/textproc/py-xlrd/pkg-descr (props changed) head/textproc/py-xlwriter/pkg-descr (props changed) head/textproc/py-xlwt/pkg-descr (props changed) head/textproc/py-xml/pkg-descr (props changed) head/textproc/py-xmltools/pkg-descr (props changed) head/textproc/py-xmltv/pkg-descr (props changed) head/textproc/py-zope.app.i18n/pkg-descr (props changed) head/textproc/py-zope.app.locales/pkg-descr (props changed) head/textproc/py-zope.i18nmessageid/pkg-descr (props changed) head/textproc/py-zope.structuredtext/pkg-descr (props changed) head/textproc/py-zope.tal/pkg-descr (props changed) head/textproc/py-zpt/pkg-descr (props changed) head/textproc/py2html/pkg-descr (props changed) head/textproc/pybook/pkg-descr (props changed) head/textproc/pychm/pkg-descr (props changed) head/textproc/qprint/pkg-descr (props changed) head/textproc/qstardict/pkg-descr (props changed) head/textproc/qu-aspell/pkg-descr (props changed) head/textproc/queequeg/pkg-descr (props changed) head/textproc/rand/pkg-descr (props changed) head/textproc/raptor/pkg-descr (props changed) head/textproc/raptor2/pkg-descr (props changed) head/textproc/rarian/pkg-descr (props changed) head/textproc/rasqal/pkg-descr (props changed) head/textproc/rast/pkg-descr (props changed) head/textproc/re_graph/pkg-descr (props changed) head/textproc/redet/pkg-descr (props changed) head/textproc/redland-bindings/pkg-descr (props changed) head/textproc/redland/pkg-descr (props changed) head/textproc/refdb/pkg-descr (props changed) head/textproc/reflex/pkg-descr (props changed) head/textproc/replaceit/pkg-descr (props changed) head/textproc/resume-extensions/pkg-descr (props changed) head/textproc/resume/pkg-descr (props changed) head/textproc/rfcdiff/pkg-descr (props changed) head/textproc/ripole/pkg-descr (props changed) head/textproc/rl/pkg-descr (props changed) head/textproc/rman/pkg-descr (props changed) head/textproc/rnv/pkg-descr (props changed) head/textproc/ro-aspell/pkg-descr (props changed) head/textproc/roap/pkg-descr (props changed) head/textproc/rot/pkg-descr (props changed) head/textproc/rss2html/pkg-descr (props changed) head/textproc/rtf2html/pkg-descr (props changed) head/textproc/rtfreader/pkg-descr (props changed) head/textproc/rtfx/pkg-descr (props changed) head/textproc/rubber/pkg-descr (props changed) head/textproc/ruby-deplate/pkg-descr (props changed) head/textproc/ruby-diff/pkg-descr (props changed) head/textproc/ruby-escape/pkg-descr (props changed) head/textproc/ruby-hikidoc/pkg-descr (props changed) head/textproc/ruby-htree/pkg-descr (props changed) head/textproc/ruby-rdtool/pkg-descr (props changed) head/textproc/ruby-rttool/pkg-descr (props changed) head/textproc/ruby-sary/pkg-descr (props changed) head/textproc/ruby-xmlconfigfile/pkg-descr (props changed) head/textproc/ruby-xmlscan/pkg-descr (props changed) head/textproc/rubygem-albino/pkg-descr (props changed) head/textproc/rubygem-asciidoctor/pkg-descr (props changed) head/textproc/rubygem-augeas/pkg-descr (props changed) head/textproc/rubygem-charlock_holmes/pkg-descr (props changed) head/textproc/rubygem-coderay/pkg-descr (props changed) head/textproc/rubygem-colorator/pkg-descr (props changed) head/textproc/rubygem-colored/pkg-descr (props changed) head/textproc/rubygem-compass-rails/pkg-descr (props changed) head/textproc/rubygem-compass/pkg-descr (props changed) head/textproc/rubygem-cssmin/pkg-descr (props changed) head/textproc/rubygem-diff-lcs/pkg-descr (props changed) head/textproc/rubygem-escape_utils/pkg-descr (props changed) head/textproc/rubygem-ezamar/pkg-descr (props changed) head/textproc/rubygem-fast_xs/pkg-descr (props changed) head/textproc/rubygem-fast_xs073/pkg-descr (props changed) head/textproc/rubygem-ferret/pkg-descr (props changed) head/textproc/rubygem-gemoji/pkg-descr (props changed) head/textproc/rubygem-gherkin/pkg-descr (props changed) head/textproc/rubygem-github-linguist/pkg-descr (props changed) head/textproc/rubygem-github-markdown/pkg-descr (props changed) head/textproc/rubygem-github-markup/pkg-descr (props changed) head/textproc/rubygem-gitlab-grit/pkg-descr (props changed) head/textproc/rubygem-heredoc_unindent/pkg-descr (props changed) head/textproc/rubygem-hikidoc/pkg-descr (props changed) head/textproc/rubygem-htmlentities/pkg-descr (props changed) head/textproc/rubygem-ini/pkg-descr (props changed) head/textproc/rubygem-itextomml/pkg-descr (props changed) head/textproc/rubygem-jsmin/pkg-descr (props changed) head/textproc/rubygem-kwalify/pkg-descr (props changed) head/textproc/rubygem-libxml-ruby/pkg-descr (props changed) head/textproc/rubygem-linguistics/pkg-descr (props changed) head/textproc/rubygem-liquid/pkg-descr (props changed) head/textproc/rubygem-loggability/pkg-descr (props changed) head/textproc/rubygem-loofah/pkg-descr (props changed) head/textproc/rubygem-ltsv/pkg-descr (props changed) head/textproc/rubygem-markaby/pkg-descr (props changed) head/textproc/rubygem-multi_xml/pkg-descr (props changed) head/textproc/rubygem-nokogiri/pkg-descr (props changed) head/textproc/rubygem-opml/pkg-descr (props changed) head/textproc/rubygem-phone/pkg-descr (props changed) head/textproc/rubygem-rak/pkg-descr (props changed) head/textproc/rubygem-rchardet/pkg-descr (props changed) head/textproc/rubygem-rdiscount/pkg-descr (props changed) head/textproc/rubygem-rdtool/pkg-descr (props changed) head/textproc/rubygem-rttool/pkg-descr (props changed) head/textproc/rubygem-sass/pkg-descr (props changed) head/textproc/rubygem-sax-machine/pkg-descr (props changed) head/textproc/rubygem-simplecov-html/pkg-descr (props changed) head/textproc/rubygem-spreadsheet/pkg-descr (props changed) head/textproc/rubygem-stamp/pkg-descr (props changed) head/textproc/rubygem-syntax/pkg-descr (props changed) head/textproc/rubygem-termcolor/pkg-descr (props changed) head/textproc/rubygem-terminal-table/pkg-descr (props changed) head/textproc/rubygem-tidy/pkg-descr (props changed) head/textproc/rubygem-unf/pkg-descr (props changed) head/textproc/rubygem-unf_ext/pkg-descr (props changed) head/textproc/rubygem-xml-simple/pkg-descr (props changed) head/textproc/rubygem-yard/pkg-descr (props changed) head/textproc/rubygem-zmq/pkg-descr (props changed) head/textproc/rw-aspell/pkg-descr (props changed) head/textproc/s5/pkg-descr (props changed) head/textproc/sagasu/pkg-descr (props changed) head/textproc/sarep/pkg-descr (props changed) head/textproc/sary/pkg-descr (props changed) head/textproc/saxon-devel/pkg-descr (props changed) head/textproc/saxon-he/pkg-descr (props changed) head/textproc/saxon/pkg-descr (props changed) head/textproc/sc-aspell/pkg-descr (props changed) head/textproc/scew/pkg-descr (props changed) head/textproc/scim-bridge-qt4/pkg-descr (props changed) head/textproc/scim-bridge/pkg-descr (props changed) head/textproc/scim-input-pad/pkg-descr (props changed) head/textproc/scim-kmfl-imengine/pkg-descr (props changed) head/textproc/scim-m17n/pkg-descr (props changed) head/textproc/scim-openvanilla/pkg-descr (props changed) head/textproc/scim-table-imengine/pkg-descr (props changed) head/textproc/scr2txt/pkg-descr (props changed) head/textproc/scrollkeeper/pkg-descr (props changed) head/textproc/scss/pkg-descr (props changed) head/textproc/sdcv/pkg-descr (props changed) head/textproc/sdf/pkg-descr (props changed) head/textproc/sdocbook-xml/pkg-descr (props changed) head/textproc/sdom/pkg-descr (props changed) head/textproc/senna/pkg-descr (props changed) head/textproc/sgmlformat/pkg-descr (props changed) head/textproc/sgmls/pkg-descr (props changed) head/textproc/sgmltools-lite/pkg-descr (props changed) head/textproc/sgrep/pkg-descr (props changed) head/textproc/sgrep2/pkg-descr (props changed) head/textproc/sigil/pkg-descr (props changed) head/textproc/silvercity/pkg-descr (props changed) head/textproc/simplehtmldom/pkg-descr (props changed) head/textproc/simplexml/pkg-descr (props changed) head/textproc/sk-aspell/pkg-descr (props changed) head/textproc/sk-hyphen/pkg-descr (props changed) head/textproc/sl-aspell/pkg-descr (props changed) head/textproc/sl-hyphen/pkg-descr (props changed) head/textproc/slides/pkg-descr (props changed) head/textproc/sml-fxp/pkg-descr (props changed) head/textproc/smu/pkg-descr (props changed) head/textproc/soothsayer/pkg-descr (props changed) head/textproc/source-highlight/pkg-descr (props changed) head/textproc/spellutils/pkg-descr (props changed) head/textproc/sphinxsearch-devel/pkg-descr (props changed) head/textproc/sphinxsearch/pkg-descr (props changed) head/textproc/sr-aspell/pkg-descr (props changed) head/textproc/sr-hunspell/pkg-descr (props changed) head/textproc/srilm/pkg-descr (props changed) head/textproc/ssddiff/pkg-descr (props changed) head/textproc/stardict3/pkg-descr (props changed) head/textproc/supercat/pkg-descr (props changed) head/textproc/sv-aspell/pkg-descr (props changed) head/textproc/sv-hyphen/pkg-descr (props changed) head/textproc/sv-mythes/pkg-descr (props changed) head/textproc/svn2cl/pkg-descr (props changed) head/textproc/sw-aspell/pkg-descr (props changed) head/textproc/sxml/pkg-descr (props changed) head/textproc/syck/pkg-descr (props changed) head/textproc/ta-aspell/pkg-descr (props changed) head/textproc/tclExpat/pkg-descr (props changed) head/textproc/tdhkit/pkg-descr (props changed) head/textproc/te-aspell/pkg-descr (props changed) head/textproc/teckit/pkg-descr (props changed) head/textproc/tei-guidelines-p3/pkg-descr (props changed) head/textproc/tei-p3/pkg-descr (props changed) head/textproc/tet-aspell/pkg-descr (props changed) head/textproc/tex2im/pkg-descr (props changed) head/textproc/texi2db/pkg-descr (props changed) head/textproc/texi2html/pkg-descr (props changed) head/textproc/textogif/pkg-descr (props changed) head/textproc/tinyxml/pkg-descr (props changed) head/textproc/tinyxml2/pkg-descr (props changed) head/textproc/tk-aspell/pkg-descr (props changed) head/textproc/tkdiff/pkg-descr (props changed) head/textproc/tkxmlive/pkg-descr (props changed) head/textproc/tl-aspell/pkg-descr (props changed) head/textproc/tn-aspell/pkg-descr (props changed) head/textproc/tnef2txt/pkg-descr (props changed) head/textproc/tokyodystopia/pkg-descr (props changed) head/textproc/tr-aspell/pkg-descr (props changed) head/textproc/tralics/pkg-descr (props changed) head/textproc/trang/pkg-descr (props changed) head/textproc/translate-toolkit/pkg-descr (props changed) head/textproc/tth/pkg-descr (props changed) head/textproc/txt2html/pkg-descr (props changed) head/textproc/txt2man/pkg-descr (props changed) head/textproc/txt2tags/pkg-descr (props changed) head/textproc/uim-el-xemacs21-mule/pkg-descr (props changed) head/textproc/uim-el/pkg-descr (props changed) head/textproc/uim-gnome/pkg-descr (props changed) head/textproc/uim-gtk/pkg-descr (props changed) head/textproc/uim-gtk3/pkg-descr (props changed) head/textproc/uim-kde4/pkg-descr (props changed) head/textproc/uim-m17nlib/pkg-descr (props changed) head/textproc/uim-qt4/pkg-descr (props changed) head/textproc/uim/pkg-descr (props changed) head/textproc/uml2svg/pkg-descr (props changed) head/textproc/uncrustify/pkg-descr (props changed) head/textproc/uni2ascii/pkg-descr (props changed) head/textproc/unoconv/pkg-descr (props changed) head/textproc/unroff/pkg-descr (props changed) head/textproc/unrtf/pkg-descr (props changed) head/textproc/urlview/pkg-descr (props changed) head/textproc/utf8proc/pkg-descr (props changed) head/textproc/uz-aspell/pkg-descr (props changed) head/textproc/vbindiff/pkg-descr (props changed) head/textproc/wa-aspell/pkg-descr (props changed) head/textproc/wbxml2/pkg-descr (props changed) head/textproc/wdiff/pkg-descr (props changed) head/textproc/webcpp/pkg-descr (props changed) head/textproc/website/pkg-descr (props changed) head/textproc/weka/pkg-descr (props changed) head/textproc/word2x/pkg-descr (props changed) head/textproc/wordnet/pkg-descr (props changed) head/textproc/words/pkg-descr (props changed) head/textproc/wv/pkg-descr (props changed) head/textproc/wv2/pkg-descr (props changed) head/textproc/xalan-c/pkg-descr (props changed) head/textproc/xalan-j/pkg-descr (props changed) head/textproc/xerces-c2-devel/pkg-descr (props changed) head/textproc/xerces-c2/pkg-descr (props changed) head/textproc/xerces-c3/pkg-descr (props changed) head/textproc/xerces-j/pkg-descr (props changed) head/textproc/xhtml-11/pkg-descr (props changed) head/textproc/xhtml-basic/pkg-descr (props changed) head/textproc/xhtml-modularization/pkg-descr (props changed) head/textproc/xhtml/pkg-descr (props changed) head/textproc/xhtml1-xsd/pkg-descr (props changed) head/textproc/xincluder/pkg-descr (props changed) head/textproc/xlhtml/pkg-descr (props changed) head/textproc/xlreader/pkg-descr (props changed) head/textproc/xml-commons/pkg-descr (props changed) head/textproc/xml-format/pkg-descr (props changed) head/textproc/xml-i18n-tools/pkg-descr (props changed) head/textproc/xml-lite.el/pkg-descr (props changed) head/textproc/xml-parse.el/pkg-descr (props changed) head/textproc/xml2/pkg-descr (props changed) head/textproc/xml2rfc/pkg-descr (props changed) head/textproc/xmlada/pkg-descr (props changed) head/textproc/xmlcatmgr/pkg-descr (props changed) head/textproc/xmlcharent/pkg-descr (props changed) head/textproc/xmldiff/pkg-descr (props changed) head/textproc/xmlenc/pkg-descr (props changed) head/textproc/xmlformat/pkg-descr (props changed) head/textproc/xmlgen/pkg-descr (props changed) head/textproc/xmlindent/pkg-descr (props changed) head/textproc/xmlppm/pkg-descr (props changed) head/textproc/xmlprpr/pkg-descr (props changed) head/textproc/xmlroff/pkg-descr (props changed) head/textproc/xmlstarlet/pkg-descr (props changed) head/textproc/xmlto/pkg-descr (props changed) head/textproc/xmlwrapp/pkg-descr (props changed) head/textproc/xom/pkg-descr (props changed) head/textproc/xp/pkg-descr (props changed) head/textproc/xqilla/pkg-descr (props changed) head/textproc/xslide.el/pkg-descr (props changed) head/textproc/xslint/pkg-descr (props changed) head/textproc/xstream/pkg-descr (props changed) head/textproc/xt/pkg-descr (props changed) head/textproc/y2l/pkg-descr (props changed) head/textproc/yali/pkg-descr (props changed) head/textproc/yamcha/pkg-descr (props changed) head/textproc/yi-aspell/pkg-descr (props changed) head/textproc/yi-hunspell/pkg-descr (props changed) head/textproc/yodl/pkg-descr (props changed) head/textproc/yould/pkg-descr (props changed) head/textproc/zorba/pkg-descr (props changed) head/textproc/zu-aspell/pkg-descr (props changed) head/ukrainian/aspell/pkg-descr (props changed) head/ukrainian/calligra-l10n/pkg-descr (props changed) head/ukrainian/emacs-koi8u/pkg-descr (props changed) head/ukrainian/hyphen/pkg-descr (props changed) head/ukrainian/ispell/pkg-descr (props changed) head/ukrainian/kde4-l10n/pkg-descr (props changed) head/ukrainian/libreoffice/pkg-descr (props changed) head/ukrainian/monacofonts/pkg-descr (props changed) head/vietnamese/aspell/pkg-descr (props changed) head/vietnamese/kde4-l10n/pkg-descr (props changed) head/vietnamese/libreoffice/pkg-descr (props changed) head/vietnamese/libviet/pkg-descr (props changed) head/vietnamese/unicode-uhoai/pkg-descr (props changed) head/vietnamese/urwvn/pkg-descr (props changed) head/vietnamese/vietunicode-hannom/pkg-descr (props changed) head/vietnamese/vietunicode-trichlor/pkg-descr (props changed) head/vietnamese/vietunicode-web1/pkg-descr (props changed) head/vietnamese/vis2u/pkg-descr (props changed) head/vietnamese/vn7to8/pkg-descr (props changed) head/vietnamese/vnconvert/pkg-descr (props changed) head/vietnamese/vnless/pkg-descr (props changed) head/vietnamese/vnlpr/pkg-descr (props changed) head/vietnamese/vnpstext/pkg-descr (props changed) head/vietnamese/vnroff/pkg-descr (props changed) head/vietnamese/vntex/pkg-descr (props changed) head/vietnamese/vnxfonts/pkg-descr (props changed) head/vietnamese/x-unikey/pkg-descr (props changed) head/vietnamese/xvnkb/pkg-descr (props changed) head/www/MT/pkg-descr (props changed) head/www/R-cran-RgoogleMaps/pkg-descr (props changed) head/www/R-cran-Rpad/pkg-descr (props changed) head/www/R-cran-httpuv/pkg-descr (props changed) head/www/R-cran-scrapeR/pkg-descr (props changed) head/www/R-cran-shiny/pkg-descr (props changed) head/www/WebMagick/pkg-descr (props changed) head/www/abyssws/pkg-descr (props changed) head/www/ach/pkg-descr (props changed) head/www/admuser/pkg-descr (props changed) head/www/adzap/pkg-descr (props changed) head/www/ajaxplorer/pkg-descr (props changed) head/www/amphetadesk/pkg-descr (props changed) head/www/analog/pkg-descr (props changed) head/www/anyremote2html/pkg-descr (props changed) head/www/anyterm/pkg-descr (props changed) head/www/aolserver/pkg-descr (props changed) head/www/apache-forrest/pkg-descr (props changed) head/www/apache-mode.el/pkg-descr (props changed) head/www/apache22-event-mpm/pkg-descr (props changed) head/www/apache22-itk-mpm/pkg-descr (props changed) head/www/apache22-peruser-mpm/pkg-descr (props changed) head/www/apache22-worker-mpm/pkg-descr (props changed) head/www/apache22/pkg-descr (props changed) head/www/apercu/pkg-descr (props changed) head/www/aria/pkg-descr (props changed) head/www/aria2fe/pkg-descr (props changed) head/www/arora/pkg-descr (props changed) head/www/asp2php/pkg-descr (props changed) head/www/asql/pkg-descr (props changed) head/www/asterisk-stat/pkg-descr (props changed) head/www/aswedit/pkg-descr (props changed) head/www/atutor/pkg-descr (props changed) head/www/august/pkg-descr (props changed) head/www/autoindex2/pkg-descr (props changed) head/www/awffull/pkg-descr (props changed) head/www/aws-demos/pkg-descr (props changed) head/www/aws/pkg-descr (props changed) head/www/awstats/pkg-descr (props changed) head/www/axis/pkg-descr (props changed) head/www/axis2/pkg-descr (props changed) head/www/b2evolution/pkg-descr (props changed) head/www/bacula-web/pkg-descr (props changed) head/www/baikal/pkg-descr (props changed) head/www/bannerfilter/pkg-descr (props changed) head/www/bblog/pkg-descr (props changed) head/www/bigbluebutton/pkg-descr (props changed) head/www/bins/pkg-descr (props changed) head/www/bk2site/pkg-descr (props changed) head/www/bkmrkconv/pkg-descr (props changed) head/www/blogsum/pkg-descr (props changed) head/www/bluefish-devel/pkg-descr (props changed) head/www/bluefish/pkg-descr (props changed) head/www/boa/pkg-descr (props changed) head/www/bookmarkbridge/pkg-descr (props changed) head/www/bozohttpd/pkg-descr (props changed) head/www/bugmenot-firefox/pkg-descr (props changed) head/www/c-icap-modules/pkg-descr (props changed) head/www/c-icap/pkg-descr (props changed) head/www/cacheboy16/pkg-descr (props changed) head/www/cadaver/pkg-descr (props changed) head/www/cakephp11/pkg-descr (props changed) head/www/cakephp12/pkg-descr (props changed) head/www/cakephp13/pkg-descr (props changed) head/www/cakephp21/pkg-descr (props changed) head/www/cakephp22/pkg-descr (props changed) head/www/cakephp23/pkg-descr (props changed) head/www/calamaris/pkg-descr (props changed) head/www/cas/pkg-descr (props changed) head/www/castget/pkg-descr (props changed) head/www/caudium14/pkg-descr (props changed) head/www/cblog/pkg-descr (props changed) head/www/cgi-lib.pl/pkg-descr (props changed) head/www/cgi-lib/pkg-descr (props changed) head/www/cgic/pkg-descr (props changed) head/www/cgicc/pkg-descr (props changed) head/www/cgichk/pkg-descr (props changed) head/www/cgihtml/pkg-descr (props changed) head/www/cgiparse/pkg-descr (props changed) head/www/cgiwrap/pkg-descr (props changed) head/www/checkbot/pkg-descr (props changed) head/www/chems/pkg-descr (props changed) head/www/cherokee/pkg-descr (props changed) head/www/chimera/pkg-descr (props changed) head/www/choqok/pkg-descr (props changed) head/www/chpasswd/pkg-descr (props changed) head/www/chromium/pkg-descr (props changed) head/www/chtml/pkg-descr (props changed) head/www/ckeditor/pkg-descr (props changed) head/www/cl-lml-clisp/pkg-descr (props changed) head/www/cl-lml-sbcl/pkg-descr (props changed) head/www/cl-lml/pkg-descr (props changed) head/www/claroline/pkg-descr (props changed) head/www/clearsilver/pkg-descr (props changed) head/www/closure-compiler/pkg-descr (props changed) head/www/closure-linter/pkg-descr (props changed) head/www/cmsmadesimple/pkg-descr (props changed) head/www/cntlm/pkg-descr (props changed) head/www/cocoon/pkg-descr (props changed) head/www/codeigniter/pkg-descr (props changed) head/www/coppermine/pkg-descr (props changed) head/www/cowboy/pkg-descr (props changed) head/www/cplanet/pkg-descr (props changed) head/www/crawl/pkg-descr (props changed) head/www/crp/pkg-descr (props changed) head/www/css-mode.el/pkg-descr (props changed) head/www/cssed/pkg-descr (props changed) head/www/csso/pkg-descr (props changed) head/www/csstidy/pkg-descr (props changed) head/www/ctemplate/pkg-descr (props changed) head/www/cutycapt/pkg-descr (props changed) head/www/dalbum/pkg-descr (props changed) head/www/dansguardian-devel/pkg-descr (props changed) head/www/dansguardian/pkg-descr (props changed) head/www/davical/pkg-descr (props changed) head/www/decss/pkg-descr (props changed) head/www/demoroniser/pkg-descr (props changed) head/www/dhttpd/pkg-descr (props changed) head/www/diamanda/pkg-descr (props changed) head/www/dillo2/pkg-descr (props changed) head/www/docebo/pkg-descr (props changed) head/www/dojo-shrinksafe/pkg-descr (props changed) head/www/dojo/pkg-descr (props changed) head/www/dokeos/pkg-descr (props changed) head/www/dokuwiki/pkg-descr (props changed) head/www/dotclear/pkg-descr (props changed) head/www/dotproject/pkg-descr (props changed) head/www/download-gemist/pkg-descr (props changed) head/www/dpsearch/pkg-descr (props changed) head/www/drood/pkg-descr (props changed) head/www/drraw/pkg-descr (props changed) head/www/drupal6-advanced_help/pkg-descr (props changed) head/www/drupal6-cck/pkg-descr (props changed) head/www/drupal6-chaos/pkg-descr (props changed) head/www/drupal6-ckeditor/pkg-descr (props changed) head/www/drupal6-content_access/pkg-descr (props changed) head/www/drupal6-geshifilter/pkg-descr (props changed) head/www/drupal6-google_analytics/pkg-descr (props changed) head/www/drupal6-image/pkg-descr (props changed) head/www/drupal6-imce/pkg-descr (props changed) head/www/drupal6-menu_block/pkg-descr (props changed) head/www/drupal6-mimedetect/pkg-descr (props changed) head/www/drupal6-nice_menus/pkg-descr (props changed) head/www/drupal6-nodewords/pkg-descr (props changed) head/www/drupal6-page_title/pkg-descr (props changed) head/www/drupal6-panels/pkg-descr (props changed) head/www/drupal6-path_redirect/pkg-descr (props changed) head/www/drupal6-pathauto/pkg-descr (props changed) head/www/drupal6-print/pkg-descr (props changed) head/www/drupal6-seo_checklist/pkg-descr (props changed) head/www/drupal6-services/pkg-descr (props changed) head/www/drupal6-tagadelic/pkg-descr (props changed) head/www/drupal6-token/pkg-descr (props changed) head/www/drupal6-views/pkg-descr (props changed) head/www/drupal6-webform/pkg-descr (props changed) head/www/drupal6-wysiwyg/pkg-descr (props changed) head/www/drupal6-zeropoint/pkg-descr (props changed) head/www/drupal6/pkg-descr (props changed) head/www/drupal7-jailadmin/pkg-descr (props changed) head/www/drupal7-vulnscan/pkg-descr (props changed) head/www/drupal7-wysiwyg/pkg-descr (props changed) head/www/drupal7/pkg-descr (props changed) head/www/drush/pkg-descr (props changed) head/www/dtse/pkg-descr (props changed) head/www/dummyflash/pkg-descr (props changed) head/www/dwoo/pkg-descr (props changed) head/www/e107/pkg-descr (props changed) head/www/eaccelerator/pkg-descr (props changed) head/www/efront/pkg-descr (props changed) head/www/eldav.el/pkg-descr (props changed) head/www/elgg/pkg-descr (props changed) head/www/elinks/pkg-descr (props changed) head/www/elog/pkg-descr (props changed) head/www/emacs-w3m/pkg-descr (props changed) head/www/encode-explorer/pkg-descr (props changed) head/www/entrans/pkg-descr (props changed) head/www/ephemera/pkg-descr (props changed) head/www/epiphany-extensions/pkg-descr (props changed) head/www/epiphany/pkg-descr (props changed) head/www/erwn/pkg-descr (props changed) head/www/eventum/pkg-descr (props changed) head/www/evolution-webcal/pkg-descr (props changed) head/www/extsm/pkg-descr (props changed) head/www/eyeos-themes/pkg-descr (props changed) head/www/eyeos/pkg-descr (props changed) head/www/fancybox/pkg-descr (props changed) head/www/fcgi/pkg-descr (props changed) head/www/fcgiwrap/pkg-descr (props changed) head/www/feedjack/pkg-descr (props changed) head/www/feedonfeeds/pkg-descr (props changed) head/www/ffproxy/pkg-descr (props changed) head/www/fhttpd/pkg-descr (props changed) head/www/fira-webfont/pkg-descr (props changed) head/www/firefox-esr-i18n/pkg-descr (props changed) head/www/firefox-i18n/pkg-descr (props changed) head/www/firefox-remote/pkg-descr (props changed) head/www/firefox/pkg-descr (props changed) head/www/flat-frog/pkg-descr (props changed) head/www/flickcurl/pkg-descr (props changed) head/www/flood/pkg-descr (props changed) head/www/flot/pkg-descr (props changed) head/www/fluxbb/pkg-descr (props changed) head/www/fluxcms/pkg-descr (props changed) head/www/fnord/pkg-descr (props changed) head/www/formication/pkg-descr (props changed) head/www/foswiki-ModPerlEngineContrib/pkg-descr (props changed) head/www/foswiki/pkg-descr (props changed) head/www/free-sa-devel/pkg-descr (props changed) head/www/free-sa/pkg-descr (props changed) head/www/freeway/pkg-descr (props changed) head/www/fswiki/pkg-descr (props changed) head/www/ftasv/pkg-descr (props changed) head/www/fusionpbx/pkg-descr (props changed) head/www/g-cows/pkg-descr (props changed) head/www/g-gcl/pkg-descr (props changed) head/www/gaeutilities/pkg-descr (props changed) head/www/gallery/pkg-descr (props changed) head/www/gallery2/pkg-descr (props changed) head/www/gallery3/pkg-descr (props changed) head/www/gatling/pkg-descr (props changed) head/www/gecko-mediaplayer/pkg-descr (props changed) head/www/gecko-sharp20/pkg-descr (props changed) head/www/geeklog/pkg-descr (props changed) head/www/geronimo/pkg-descr (props changed) head/www/get_flash_videos/pkg-descr (props changed) head/www/getleft/pkg-descr (props changed) head/www/gist/pkg-descr (props changed) head/www/glpi/pkg-descr (props changed) head/www/gnome-user-share/pkg-descr (props changed) head/www/gnome-web-photo/pkg-descr (props changed) head/www/google-sitemapgen/pkg-descr (props changed) head/www/googlebook_dl/pkg-descr (props changed) head/www/goose/pkg-descr (props changed) head/www/grails/pkg-descr (props changed) head/www/gregarius/pkg-descr (props changed) head/www/groupoffice/pkg-descr (props changed) head/www/grr/pkg-descr (props changed) head/www/gtkhtml3/pkg-descr (props changed) head/www/guile-www/pkg-descr (props changed) head/www/gurlchecker/pkg-descr (props changed) head/www/habari/pkg-descr (props changed) head/www/harvest/pkg-descr (props changed) head/www/hastymail/pkg-descr (props changed) head/www/hastymail2-devel/pkg-descr (props changed) head/www/hastymail2/pkg-descr (props changed) head/www/havp/pkg-descr (props changed) head/www/helma/pkg-descr (props changed) head/www/hiawatha/pkg-descr (props changed) head/www/hinventory-client/pkg-descr (props changed) head/www/horde-ansel/pkg-descr (props changed) head/www/horde-base/pkg-descr (props changed) head/www/horde-passwd/pkg-descr (props changed) head/www/horde-trean/pkg-descr (props changed) head/www/horde-wicked/pkg-descr (props changed) head/www/horde3-ansel/pkg-descr (props changed) head/www/horde3-base/pkg-descr (props changed) head/www/horde3-meta/pkg-descr (props changed) head/www/horde3-passwd/pkg-descr (props changed) head/www/horde3-trean/pkg-descr (props changed) head/www/horde3-wicked/pkg-descr (props changed) head/www/hotcrp/pkg-descr (props changed) head/www/hs-HTTP/pkg-descr (props changed) head/www/hs-authenticate/pkg-descr (props changed) head/www/hs-cgi/pkg-descr (props changed) head/www/hs-cookie/pkg-descr (props changed) head/www/hs-css-text/pkg-descr (props changed) head/www/hs-fastcgi/pkg-descr (props changed) head/www/hs-gitit/pkg-descr (props changed) head/www/hs-hS3/pkg-descr (props changed) head/www/hs-hamlet/pkg-descr (props changed) head/www/hs-happstack-server/pkg-descr (props changed) head/www/hs-happstack/pkg-descr (props changed) head/www/hs-heist/pkg-descr (props changed) head/www/hs-hjsmin/pkg-descr (props changed) head/www/hs-http-conduit/pkg-descr (props changed) head/www/hs-http-date/pkg-descr (props changed) head/www/hs-http-server/pkg-descr (props changed) head/www/hs-http-types/pkg-descr (props changed) head/www/hs-oeis/pkg-descr (props changed) head/www/hs-path-pieces/pkg-descr (props changed) head/www/hs-recaptcha/pkg-descr (props changed) head/www/hs-scgi/pkg-descr (props changed) head/www/hs-shakespeare-css/pkg-descr (props changed) head/www/hs-shakespeare-i18n/pkg-descr (props changed) head/www/hs-shakespeare-js/pkg-descr (props changed) head/www/hs-shakespeare-text/pkg-descr (props changed) head/www/hs-shakespeare/pkg-descr (props changed) head/www/hs-snap-core/pkg-descr (props changed) head/www/hs-snap-server/pkg-descr (props changed) head/www/hs-snap/pkg-descr (props changed) head/www/hs-url/pkg-descr (props changed) head/www/hs-wai-app-static/pkg-descr (props changed) head/www/hs-wai-extra/pkg-descr (props changed) head/www/hs-wai-logger/pkg-descr (props changed) head/www/hs-wai-test/pkg-descr (props changed) head/www/hs-wai/pkg-descr (props changed) head/www/hs-warp/pkg-descr (props changed) head/www/hs-webkit/pkg-descr (props changed) head/www/hs-xss-sanitize/pkg-descr (props changed) head/www/hs-yesod-auth/pkg-descr (props changed) head/www/hs-yesod-core/pkg-descr (props changed) head/www/hs-yesod-form/pkg-descr (props changed) head/www/hs-yesod-persistent/pkg-descr (props changed) head/www/hs-yesod-platform/pkg-descr (props changed) head/www/hs-yesod-routes/pkg-descr (props changed) head/www/hs-yesod-static/pkg-descr (props changed) head/www/hs-yesod-test/pkg-descr (props changed) head/www/hs-yesod/pkg-descr (props changed) head/www/htdigest/pkg-descr (props changed) head/www/html2hdml/pkg-descr (props changed) head/www/html2wml/pkg-descr (props changed) head/www/htmlcompressor/pkg-descr (props changed) head/www/htmlcxx/pkg-descr (props changed) head/www/htmlobject/pkg-descr (props changed) head/www/htmlpp/pkg-descr (props changed) head/www/httest/pkg-descr (props changed) head/www/http-analyze/pkg-descr (props changed) head/www/http_get/pkg-descr (props changed) head/www/http_load/pkg-descr (props changed) head/www/http_post/pkg-descr (props changed) head/www/httpclient/pkg-descr (props changed) head/www/httpcore/pkg-descr (props changed) head/www/httpsqs/pkg-descr (props changed) head/www/httptunnel/pkg-descr (props changed) head/www/hudson/pkg-descr (props changed) head/www/hydra/pkg-descr (props changed) head/www/hypermail/pkg-descr (props changed) head/www/igal2/pkg-descr (props changed) head/www/ikiwiki/pkg-descr (props changed) head/www/ilias/pkg-descr (props changed) head/www/imgsizer/pkg-descr (props changed) head/www/impresscms/pkg-descr (props changed) head/www/interchange/pkg-descr (props changed) head/www/ismail/pkg-descr (props changed) head/www/iwebcal/pkg-descr (props changed) head/www/jawstats/pkg-descr (props changed) head/www/jdresolve/pkg-descr (props changed) head/www/jericho-html/pkg-descr (props changed) head/www/jesred/pkg-descr (props changed) head/www/jetty/pkg-descr (props changed) head/www/jinzora/pkg-descr (props changed) head/www/jmeter/pkg-descr (props changed) head/www/joomla15/pkg-descr (props changed) head/www/joomla25/pkg-descr (props changed) head/www/joomla31/pkg-descr (props changed) head/www/jspacker/pkg-descr (props changed) head/www/jspwiki/pkg-descr (props changed) head/www/jtoolkit/pkg-descr (props changed) head/www/junkbuster/pkg-descr (props changed) head/www/kannel/pkg-descr (props changed) head/www/kdewebdev4/pkg-descr (props changed) head/www/kpartsplugin/pkg-descr (props changed) head/www/kplaylist/pkg-descr (props changed) head/www/kwebkitpart/pkg-descr (props changed) head/www/larbin/pkg-descr (props changed) head/www/libapreq2/pkg-descr (props changed) head/www/libecap/pkg-descr (props changed) head/www/libepc/pkg-descr (props changed) head/www/libgtkhtml/pkg-descr (props changed) head/www/libhtp-suricata/pkg-descr (props changed) head/www/libmicrohttpd/pkg-descr (props changed) head/www/libwww/pkg-descr (props changed) head/www/libxul/pkg-descr (props changed) head/www/lifetype/pkg-descr (props changed) head/www/lightsquid/pkg-descr (props changed) head/www/lighttpd/files/pkg-descr.mod_geoip (props changed) head/www/lighttpd/files/pkg-descr.mod_h264_streaming (props changed) head/www/lighttpd/pkg-descr (props changed) head/www/lilurl/pkg-descr (props changed) head/www/limesurvey/pkg-descr (props changed) head/www/linkcheck/pkg-descr (props changed) head/www/linklint/pkg-descr (props changed) head/www/links-hacked/pkg-descr (props changed) head/www/links/pkg-descr (props changed) head/www/links1/pkg-descr (props changed) head/www/linux-f10-flashplugin11/pkg-descr (props changed) head/www/linux-firefox/pkg-descr (props changed) head/www/linux-libgtkembedmoz/pkg-descr (props changed) head/www/linux-mplayer-plugin/pkg-descr (props changed) head/www/linux-opera-devel/pkg-descr (props changed) head/www/linux-opera/pkg-descr (props changed) head/www/linux-seamonkey/pkg-descr (props changed) head/www/lionwiki/pkg-descr (props changed) head/www/ljdeps/pkg-descr (props changed) head/www/ljdump/pkg-descr (props changed) head/www/llgal/pkg-descr (props changed) head/www/logtools/pkg-descr (props changed) head/www/luakit/pkg-descr (props changed) head/www/lusca-head/pkg-descr (props changed) head/www/lynx-current/pkg-descr (props changed) head/www/lynx/pkg-descr (props changed) head/www/magento/pkg-descr (props changed) head/www/mahara/pkg-descr (props changed) head/www/mambo/pkg-descr (props changed) head/www/man2web/pkg-descr (props changed) head/www/mathjax/pkg-descr (props changed) head/www/mathopd/pkg-descr (props changed) head/www/mediawiki119/pkg-descr (props changed) head/www/mergelog/pkg-descr (props changed) head/www/metacafe_dl/pkg-descr (props changed) head/www/mgstat/pkg-descr (props changed) head/www/mhonarc/pkg-descr (props changed) head/www/micro_httpd/pkg-descr (props changed) head/www/middleman/pkg-descr (props changed) head/www/mini_httpd/pkg-descr (props changed) head/www/mkapachepw/pkg-descr (props changed) head/www/mknmz-wwwoffle/pkg-descr (props changed) head/www/mnogosearch/pkg-descr (props changed) head/www/mochiweb-basho/pkg-descr (props changed) head/www/mochiweb/pkg-descr (props changed) head/www/mod_amazon_proxy/pkg-descr (props changed) head/www/mod_antiloris/pkg-descr (props changed) head/www/mod_asn/pkg-descr (props changed) head/www/mod_auth_cas/pkg-descr (props changed) head/www/mod_auth_cookie_mysql2/pkg-descr (props changed) head/www/mod_auth_external2/pkg-descr (props changed) head/www/mod_auth_form/pkg-descr (props changed) head/www/mod_auth_imap2/pkg-descr (props changed) head/www/mod_auth_kerb2/pkg-descr (props changed) head/www/mod_auth_mellon/pkg-descr (props changed) head/www/mod_auth_mysql2/pkg-descr (props changed) head/www/mod_auth_mysql_another/pkg-descr (props changed) head/www/mod_auth_openid/pkg-descr (props changed) head/www/mod_auth_pam2/pkg-descr (props changed) head/www/mod_auth_pgsql2/pkg-descr (props changed) head/www/mod_auth_pubtkt/pkg-descr (props changed) head/www/mod_auth_tkt/pkg-descr (props changed) head/www/mod_auth_xradius/pkg-descr (props changed) head/www/mod_authn_otp/pkg-descr (props changed) head/www/mod_authn_sasl/pkg-descr (props changed) head/www/mod_authnz_external22/pkg-descr (props changed) head/www/mod_authnz_external24/pkg-descr (props changed) head/www/mod_authz_unixgroup/pkg-descr (props changed) head/www/mod_backtrace/pkg-descr (props changed) head/www/mod_bw/pkg-descr (props changed) head/www/mod_cband/pkg-descr (props changed) head/www/mod_cfg_ldap/pkg-descr (props changed) head/www/mod_chroot/pkg-descr (props changed) head/www/mod_clamav/pkg-descr (props changed) head/www/mod_cplusplus/pkg-descr (props changed) head/www/mod_cvs2/pkg-descr (props changed) head/www/mod_dnssd/pkg-descr (props changed) head/www/mod_domaintree/pkg-descr (props changed) head/www/mod_encoding/pkg-descr (props changed) head/www/mod_evasive/pkg-descr (props changed) head/www/mod_extract_forwarded/pkg-descr (props changed) head/www/mod_fastcgi/pkg-descr (props changed) head/www/mod_fcgid/pkg-descr (props changed) head/www/mod_fileiri/pkg-descr (props changed) head/www/mod_flickr/pkg-descr (props changed) head/www/mod_ftp/pkg-descr (props changed) head/www/mod_geoip2/pkg-descr (props changed) head/www/mod_gnutls/pkg-descr (props changed) head/www/mod_gzip2/pkg-descr (props changed) head/www/mod_h264_streaming/pkg-descr (props changed) head/www/mod_hosts_access/pkg-descr (props changed) head/www/mod_jail/pkg-descr (props changed) head/www/mod_jk/pkg-descr (props changed) head/www/mod_layout22/pkg-descr (props changed) head/www/mod_limitipconn2/pkg-descr (props changed) head/www/mod_line_edit/pkg-descr (props changed) head/www/mod_log_dbd/pkg-descr (props changed) head/www/mod_log_firstbyte/pkg-descr (props changed) head/www/mod_log_sql2-dtc/pkg-descr (props changed) head/www/mod_log_sql2/pkg-descr (props changed) head/www/mod_macro22/pkg-descr (props changed) head/www/mod_memcache/pkg-descr (props changed) head/www/mod_memcache_block/pkg-descr (props changed) head/www/mod_mono/pkg-descr (props changed) head/www/mod_musicindex/pkg-descr (props changed) head/www/mod_myvhost/pkg-descr (props changed) head/www/mod_ntlm2/pkg-descr (props changed) head/www/mod_pagespeed/pkg-descr (props changed) head/www/mod_perl2/pkg-descr (props changed) head/www/mod_proctitle/pkg-descr (props changed) head/www/mod_proxy_html/pkg-descr (props changed) head/www/mod_proxy_xml/pkg-descr (props changed) head/www/mod_python3/pkg-descr (props changed) head/www/mod_remoteip/pkg-descr (props changed) head/www/mod_reproxy/pkg-descr (props changed) head/www/mod_rivet/pkg-descr (props changed) head/www/mod_rpaf2/pkg-descr (props changed) head/www/mod_ruby/pkg-descr (props changed) head/www/mod_scgi/pkg-descr (props changed) head/www/mod_security/pkg-descr (props changed) head/www/mod_setenvifplus/pkg-descr (props changed) head/www/mod_tidy/pkg-descr (props changed) head/www/mod_tsa/pkg-descr (props changed) head/www/mod_uid/pkg-descr (props changed) head/www/mod_umask/pkg-descr (props changed) head/www/mod_vhost_ldap/pkg-descr (props changed) head/www/mod_vhs/pkg-descr (props changed) head/www/mod_webkit/pkg-descr (props changed) head/www/mod_whatkilledus/pkg-descr (props changed) head/www/mod_wsgi2/pkg-descr (props changed) head/www/mod_wsgi3/pkg-descr (props changed) head/www/mod_xml2enc/pkg-descr (props changed) head/www/mod_xmlns/pkg-descr (props changed) head/www/mod_xsendfile/pkg-descr (props changed) head/www/moinmoin/pkg-descr (props changed) head/www/monast/pkg-descr (props changed) head/www/mongrel2/pkg-descr (props changed) head/www/moodle/pkg-descr (props changed) head/www/multisort/pkg-descr (props changed) head/www/multiwatch/pkg-descr (props changed) head/www/mybb/pkg-descr (props changed) head/www/myfaces/pkg-descr (props changed) head/www/mysar/pkg-descr (props changed) head/www/mysqlphp2postgres/pkg-descr (props changed) head/www/mythplugin-mythweb/pkg-descr (props changed) head/www/nanoblogger-extra/pkg-descr (props changed) head/www/nanoblogger/pkg-descr (props changed) head/www/nd/pkg-descr (props changed) head/www/neon29/pkg-descr (props changed) head/www/netoffice/pkg-descr (props changed) head/www/netrik/pkg-descr (props changed) head/www/netstiff/pkg-descr (props changed) head/www/netsurf/pkg-descr (props changed) head/www/newsbeuter/pkg-descr (props changed) head/www/nginx-devel/pkg-descr (props changed) head/www/nginx/pkg-descr (props changed) head/www/nibbleblog/pkg-descr (props changed) head/www/node-devel/pkg-descr (props changed) head/www/node/pkg-descr (props changed) head/www/nostromo/pkg-descr (props changed) head/www/npapi-xine/pkg-descr (props changed) head/www/npc/pkg-descr (props changed) head/www/npm/pkg-descr (props changed) head/www/nscache/pkg-descr (props changed) head/www/nspluginwrapper/pkg-descr (props changed) head/www/ocaml-net/pkg-descr (props changed) head/www/ocsigen/pkg-descr (props changed) head/www/ojs2/pkg-descr (props changed) head/www/ompload/pkg-descr (props changed) head/www/oops/pkg-descr (props changed) head/www/openacs-dotlrn/pkg-descr (props changed) head/www/openacs/pkg-descr (props changed) head/www/opencart/pkg-descr (props changed) head/www/openvrml/pkg-descr (props changed) head/www/openx/pkg-descr (props changed) head/www/openxmldir/pkg-descr (props changed) head/www/opera-devel/pkg-descr (props changed) head/www/opera-linuxplugins/pkg-descr (props changed) head/www/opera/pkg-descr (props changed) head/www/orangehrm/pkg-descr (props changed) head/www/oscommerce/pkg-descr (props changed) head/www/owncloud/pkg-descr (props changed) head/www/p5-AMF-Perl/pkg-descr (props changed) head/www/p5-Acme-Monta/pkg-descr (props changed) head/www/p5-Amon2-Lite/pkg-descr (props changed) head/www/p5-Amon2-Plugin-LogDispatch/pkg-descr (props changed) head/www/p5-Amon2-Plugin-Web-MobileAgent/pkg-descr (props changed) head/www/p5-Amon2/pkg-descr (props changed) head/www/p5-AnyEvent-HTTP-LWP-UserAgent/pkg-descr (props changed) head/www/p5-AnyEvent-HTTP/pkg-descr (props changed) head/www/p5-AnyEvent-Mojo/pkg-descr (props changed) head/www/p5-AnyEvent-ReverseHTTP/pkg-descr (props changed) head/www/p5-AnyEvent-SCGI/pkg-descr (props changed) head/www/p5-Apache-ASP/pkg-descr (props changed) head/www/p5-Apache-AuthCookie/pkg-descr (props changed) head/www/p5-Apache-AuthTicket/pkg-descr (props changed) head/www/p5-Apache-Clean2/pkg-descr (props changed) head/www/p5-Apache-ConfigFile/pkg-descr (props changed) head/www/p5-Apache-DB/pkg-descr (props changed) head/www/p5-Apache-DBI/pkg-descr (props changed) head/www/p5-Apache-Gallery/pkg-descr (props changed) head/www/p5-Apache-Htgroup/pkg-descr (props changed) head/www/p5-Apache-LogFormat-Compiler/pkg-descr (props changed) head/www/p5-Apache-MP3/pkg-descr (props changed) head/www/p5-Apache-ParseFormData/pkg-descr (props changed) head/www/p5-Apache-Profiler/pkg-descr (props changed) head/www/p5-Apache-Session-PHP/pkg-descr (props changed) head/www/p5-Apache-Session-SQLite3/pkg-descr (props changed) head/www/p5-Apache-Session-SharedMem/pkg-descr (props changed) head/www/p5-Apache-Session-Wrapper/pkg-descr (props changed) head/www/p5-Apache-Session/pkg-descr (props changed) head/www/p5-Apache2-SiteControl/pkg-descr (props changed) head/www/p5-ApacheBench/pkg-descr (props changed) head/www/p5-Ark/pkg-descr (props changed) head/www/p5-Blog-Spam/pkg-descr (props changed) head/www/p5-Business-PayPal/pkg-descr (props changed) head/www/p5-CGI-Ajax/pkg-descr (props changed) head/www/p5-CGI-Application-Dispatch-Server/pkg-descr (props changed) head/www/p5-CGI-Application-Dispatch/pkg-descr (props changed) head/www/p5-CGI-Application-PSGI/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-AnyTemplate/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-Apache/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-Authentication/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-AutoRunmode/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-Config-YAML/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-ConfigAuto/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-DBH/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-DebugScreen/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-DevPopup/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-Forward/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-HTDot/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-HTMLPrototype/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-HtmlTidy/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-JSON/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-LinkIntegrity/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-LogDispatch/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-MessageStack/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-Redirect/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-Session/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-Stream/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-TT/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-ValidateRM/pkg-descr (props changed) head/www/p5-CGI-Application-Plugin-ViewCode/pkg-descr (props changed) head/www/p5-CGI-Application-Server/pkg-descr (props changed) head/www/p5-CGI-Application/pkg-descr (props changed) head/www/p5-CGI-ArgChecker/pkg-descr (props changed) head/www/p5-CGI-Builder-TT2/pkg-descr (props changed) head/www/p5-CGI-Builder/pkg-descr (props changed) head/www/p5-CGI-Cache/pkg-descr (props changed) head/www/p5-CGI-Compile/pkg-descr (props changed) head/www/p5-CGI-Compress-Gzip/pkg-descr (props changed) head/www/p5-CGI-Cookie-Splitter/pkg-descr (props changed) head/www/p5-CGI-Cookie-XS/pkg-descr (props changed) head/www/p5-CGI-Deurl-XS/pkg-descr (props changed) head/www/p5-CGI-Emulate-PSGI/pkg-descr (props changed) head/www/p5-CGI-Enurl/pkg-descr (props changed) head/www/p5-CGI-Ex/pkg-descr (props changed) head/www/p5-CGI-FCKeditor/pkg-descr (props changed) head/www/p5-CGI-FastTemplate/pkg-descr (props changed) head/www/p5-CGI-Framework/pkg-descr (props changed) head/www/p5-CGI-Kwiki/pkg-descr (props changed) head/www/p5-CGI-Minimal/pkg-descr (props changed) head/www/p5-CGI-PSGI/pkg-descr (props changed) head/www/p5-CGI-Pager/pkg-descr (props changed) head/www/p5-CGI-Prototype/pkg-descr (props changed) head/www/p5-CGI-Response/pkg-descr (props changed) head/www/p5-CGI-SSI/pkg-descr (props changed) head/www/p5-CGI-Session-ExpireSessions/pkg-descr (props changed) head/www/p5-CGI-Session/pkg-descr (props changed) head/www/p5-CGI-Simple/pkg-descr (props changed) head/www/p5-CGI-SpeedyCGI/pkg-descr (props changed) head/www/p5-CGI-Thin/pkg-descr (props changed) head/www/p5-CGI-Untaint-date/pkg-descr (props changed) head/www/p5-CGI-Untaint-email/pkg-descr (props changed) head/www/p5-CGI-Untaint/pkg-descr (props changed) head/www/p5-CGI-Upload/pkg-descr (props changed) head/www/p5-CGI-XMLApplication/pkg-descr (props changed) head/www/p5-CGI-modules/pkg-descr (props changed) head/www/p5-CGI.pm/pkg-descr (props changed) head/www/p5-CGI_Lite/pkg-descr (props changed) head/www/p5-CIF-Client/pkg-descr (props changed) head/www/p5-CSS-Inliner/pkg-descr (props changed) head/www/p5-Catalyst-Action-REST/pkg-descr (props changed) head/www/p5-Catalyst-Action-RenderView/pkg-descr (props changed) head/www/p5-Catalyst-Authentication-Credential-HTTP/pkg-descr (props changed) head/www/p5-Catalyst-Authentication-Credential-OpenID/pkg-descr (props changed) head/www/p5-Catalyst-Authentication-Store-LDAP/pkg-descr (props changed) head/www/p5-Catalyst-Component-ACCEPT_CONTEXT/pkg-descr (props changed) head/www/p5-Catalyst-Component-InstancePerContext/pkg-descr (props changed) head/www/p5-Catalyst-Controller-ActionRole/pkg-descr (props changed) head/www/p5-Catalyst-Controller-BindLex/pkg-descr (props changed) head/www/p5-Catalyst-Controller-FormBuilder/pkg-descr (props changed) head/www/p5-Catalyst-Controller-RateLimit/pkg-descr (props changed) head/www/p5-Catalyst-Controller-RequestToken/pkg-descr (props changed) head/www/p5-Catalyst-Devel/pkg-descr (props changed) head/www/p5-Catalyst-Engine-Apache/pkg-descr (props changed) head/www/p5-Catalyst-Engine-HTTP-Prefork/pkg-descr (props changed) head/www/p5-Catalyst-Engine-PSGI/pkg-descr (props changed) head/www/p5-Catalyst-Enzyme/pkg-descr (props changed) head/www/p5-Catalyst-Manual/pkg-descr (props changed) head/www/p5-Catalyst-Model-CDBI-Plain/pkg-descr (props changed) head/www/p5-Catalyst-Model-CDBI-Sweet/pkg-descr (props changed) head/www/p5-Catalyst-Model-CDBI/pkg-descr (props changed) head/www/p5-Catalyst-Model-DBIC-Plain/pkg-descr (props changed) head/www/p5-Catalyst-Model-DBIC-Schema/pkg-descr (props changed) head/www/p5-Catalyst-Model-Memcached/pkg-descr (props changed) head/www/p5-Catalyst-Model-Oryx/pkg-descr (props changed) head/www/p5-Catalyst-Model-XML-Feed/pkg-descr (props changed) head/www/p5-Catalyst-Model-Xapian/pkg-descr (props changed) head/www/p5-Catalyst-Model-Xapian10/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Authentication-OpenID/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Authentication-Store-Htpasswd/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Authentication/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Authorization-ACL/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Authorization-Roles/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-AutoCRUD/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-C3/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Cache-FastMmap/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Cache-Memcached-Fast/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Cache-Memcached/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Cache/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Captcha/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-ConfigLoader-Environment/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-ConfigLoader/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-CookiedSession/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-DateTime/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-DefaultEnd/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Email/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-ErrorCatcher/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-FillInForm/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-FormBuilder/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-FormValidator/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-I18N/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Log-Dispatch/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Log-Handler/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-LogWarnings/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-PageCache/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Pluggable/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Prototype/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Scheduler/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Server/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-FastMmap/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-State-Cookie/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-State-URI/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Cache/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-Store-DBI/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-Store-DBIC/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Delegate/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-Store-FastMmap/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-Store-File/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Memcached-Fast/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Memcached/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Session/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Setenv/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Singleton/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-SmartURI/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-StackTrace/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Static-Simple/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Static/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-Unicode/pkg-descr (props changed) head/www/p5-Catalyst-Plugin-XMLRPC/pkg-descr (props changed) head/www/p5-Catalyst-Runtime/pkg-descr (props changed) head/www/p5-Catalyst-TraitFor-Request-BrowserDetect/pkg-descr (props changed) head/www/p5-Catalyst-View-ClearSilver/pkg-descr (props changed) head/www/p5-Catalyst-View-GraphViz/pkg-descr (props changed) head/www/p5-Catalyst-View-HTML-Template-Compiled/pkg-descr (props changed) head/www/p5-Catalyst-View-HTML-Template/pkg-descr (props changed) head/www/p5-Catalyst-View-JSON/pkg-descr (props changed) head/www/p5-Catalyst-View-Jemplate/pkg-descr (props changed) head/www/p5-Catalyst-View-Mason/pkg-descr (props changed) head/www/p5-Catalyst-View-REST-XML/pkg-descr (props changed) head/www/p5-Catalyst-View-TT-ControllerLocal/pkg-descr (props changed) head/www/p5-Catalyst-View-TT/pkg-descr (props changed) head/www/p5-Catalyst-View-Templated/pkg-descr (props changed) head/www/p5-Catalyst-View-XML-Feed/pkg-descr (props changed) head/www/p5-Catalyst-View-XML-Simple/pkg-descr (props changed) head/www/p5-Catalyst-View-XSLT/pkg-descr (props changed) head/www/p5-CatalystX-Component-Traits/pkg-descr (props changed) head/www/p5-Class-DBI-FromForm/pkg-descr (props changed) head/www/p5-ClearSilver/pkg-descr (props changed) head/www/p5-Compress-LeadingBlankSpaces/pkg-descr (props changed) head/www/p5-Continuity/pkg-descr (props changed) head/www/p5-Cookie-Baker/pkg-descr (props changed) head/www/p5-Corona/pkg-descr (props changed) head/www/p5-Dancer-Plugin-Feed/pkg-descr (props changed) head/www/p5-Dancer-Plugin-SiteMap/pkg-descr (props changed) head/www/p5-Dancer-Plugin-ValidationClass/pkg-descr (props changed) head/www/p5-Dancer-Session-Cookie/pkg-descr (props changed) head/www/p5-Dancer-Template-Xslate/pkg-descr (props changed) head/www/p5-Dancer/pkg-descr (props changed) head/www/p5-Data-TreeDumper-Renderer-DHTML/pkg-descr (props changed) head/www/p5-Data-Validate-URI/pkg-descr (props changed) head/www/p5-FAQ-OMatic/pkg-descr (props changed) head/www/p5-FCGI-Client/pkg-descr (props changed) head/www/p5-FCGI-ProcManager/pkg-descr (props changed) head/www/p5-FCGI-Spawn/pkg-descr (props changed) head/www/p5-FCGI/pkg-descr (props changed) head/www/p5-FEAR-API/pkg-descr (props changed) head/www/p5-Facebook-Graph/pkg-descr (props changed) head/www/p5-Feed-Find/pkg-descr (props changed) head/www/p5-Feersum/pkg-descr (props changed) head/www/p5-File-Mork/pkg-descr (props changed) head/www/p5-Flea/pkg-descr (props changed) head/www/p5-Flickr-API/pkg-descr (props changed) head/www/p5-Flickr-Upload/pkg-descr (props changed) head/www/p5-Fliggy/pkg-descr (props changed) head/www/p5-Furl/pkg-descr (props changed) head/www/p5-FurlX-Coro/pkg-descr (props changed) head/www/p5-Geo-Caching/pkg-descr (props changed) head/www/p5-Google-Search/pkg-descr (props changed) head/www/p5-Gtk2-WebKit/pkg-descr (props changed) head/www/p5-GunghoX-FollowLinks/pkg-descr (props changed) head/www/p5-HTML-Breadcrumbs/pkg-descr (props changed) head/www/p5-HTML-CalendarMonthSimple/pkg-descr (props changed) head/www/p5-HTML-Chunks/pkg-descr (props changed) head/www/p5-HTML-Clean/pkg-descr (props changed) head/www/p5-HTML-ContentExtractor/pkg-descr (props changed) head/www/p5-HTML-DOM/pkg-descr (props changed) head/www/p5-HTML-Defaultify/pkg-descr (props changed) head/www/p5-HTML-Diff/pkg-descr (props changed) head/www/p5-HTML-Display/pkg-descr (props changed) head/www/p5-HTML-Element-Extended/pkg-descr (props changed) head/www/p5-HTML-Element-Library/pkg-descr (props changed) head/www/p5-HTML-Encoding/pkg-descr (props changed) head/www/p5-HTML-ExtractContent/pkg-descr (props changed) head/www/p5-HTML-ExtractMain/pkg-descr (props changed) head/www/p5-HTML-Field/pkg-descr (props changed) head/www/p5-HTML-FillInForm-Lite/pkg-descr (props changed) head/www/p5-HTML-FillInForm/pkg-descr (props changed) head/www/p5-HTML-Form/pkg-descr (props changed) head/www/p5-HTML-FormFu-Imager/pkg-descr (props changed) head/www/p5-HTML-FormHandler/pkg-descr (props changed) head/www/p5-HTML-FromText/pkg-descr (props changed) head/www/p5-HTML-GenToc/pkg-descr (props changed) head/www/p5-HTML-GenerateUtil/pkg-descr (props changed) head/www/p5-HTML-GoogleMaps/pkg-descr (props changed) head/www/p5-HTML-LinkExtractor/pkg-descr (props changed) head/www/p5-HTML-LinkList/pkg-descr (props changed) head/www/p5-HTML-Lint/pkg-descr (props changed) head/www/p5-HTML-Macro/pkg-descr (props changed) head/www/p5-HTML-Mason-PSGIHandler/pkg-descr (props changed) head/www/p5-HTML-MobileConverter/pkg-descr (props changed) head/www/p5-HTML-Pager/pkg-descr (props changed) head/www/p5-HTML-Parser-Simple/pkg-descr (props changed) head/www/p5-HTML-Parser/pkg-descr (props changed) head/www/p5-HTML-Perlinfo/pkg-descr (props changed) head/www/p5-HTML-PrettyPrinter/pkg-descr (props changed) head/www/p5-HTML-Prototype/pkg-descr (props changed) head/www/p5-HTML-Query/pkg-descr (props changed) head/www/p5-HTML-QuickCheck/pkg-descr (props changed) head/www/p5-HTML-RSSAutodiscovery/pkg-descr (props changed) head/www/p5-HTML-Scrubber/pkg-descr (props changed) head/www/p5-HTML-Seamstress/pkg-descr (props changed) head/www/p5-HTML-Selector-XPath/pkg-descr (props changed) head/www/p5-HTML-Shakan/pkg-descr (props changed) head/www/p5-HTML-SimpleLinkExtor/pkg-descr (props changed) head/www/p5-HTML-SimpleParse/pkg-descr (props changed) head/www/p5-HTML-StickyQuery-DoCoMoGUID/pkg-descr (props changed) head/www/p5-HTML-StickyQuery/pkg-descr (props changed) head/www/p5-HTML-Stream/pkg-descr (props changed) head/www/p5-HTML-Strip/pkg-descr (props changed) head/www/p5-HTML-StripScripts-Parser/pkg-descr (props changed) head/www/p5-HTML-StripScripts/pkg-descr (props changed) head/www/p5-HTML-Summary/pkg-descr (props changed) head/www/p5-HTML-TableContentParser/pkg-descr (props changed) head/www/p5-HTML-TableExtract/pkg-descr (props changed) head/www/p5-HTML-TableLayout/pkg-descr (props changed) head/www/p5-HTML-TableParser/pkg-descr (props changed) head/www/p5-HTML-TagCloud-Extended/pkg-descr (props changed) head/www/p5-HTML-TagCloud/pkg-descr (props changed) head/www/p5-HTML-TagParser/pkg-descr (props changed) head/www/p5-HTML-Tagset/pkg-descr (props changed) head/www/p5-HTML-Template-Associate/pkg-descr (props changed) head/www/p5-HTML-Template-Compiled/pkg-descr (props changed) head/www/p5-HTML-Template-Expr/pkg-descr (props changed) head/www/p5-HTML-Template-HashWrapper/pkg-descr (props changed) head/www/p5-HTML-Template-JIT/pkg-descr (props changed) head/www/p5-HTML-Template-Pro/pkg-descr (props changed) head/www/p5-HTML-Template/pkg-descr (props changed) head/www/p5-HTML-Toc/pkg-descr (props changed) head/www/p5-HTML-TokeParser-Simple/pkg-descr (props changed) head/www/p5-HTML-Tree/pkg-descr (props changed) head/www/p5-HTML-Widgets-SelectLayers/pkg-descr (props changed) head/www/p5-HTML-WikiConverter-GoogleCode/pkg-descr (props changed) head/www/p5-HTML-WikiConverter/pkg-descr (props changed) head/www/p5-HTTP-Async/pkg-descr (props changed) head/www/p5-HTTP-Body/pkg-descr (props changed) head/www/p5-HTTP-BrowserDetect/pkg-descr (props changed) head/www/p5-HTTP-Cache-Transparent/pkg-descr (props changed) head/www/p5-HTTP-Cookies/pkg-descr (props changed) head/www/p5-HTTP-DAV/pkg-descr (props changed) head/www/p5-HTTP-Daemon-SSL/pkg-descr (props changed) head/www/p5-HTTP-Daemon/pkg-descr (props changed) head/www/p5-HTTP-Date/pkg-descr (props changed) head/www/p5-HTTP-Engine-Middleware/pkg-descr (props changed) head/www/p5-HTTP-Engine/pkg-descr (props changed) head/www/p5-HTTP-Exception/pkg-descr (props changed) head/www/p5-HTTP-HeaderParser-XS/pkg-descr (props changed) head/www/p5-HTTP-Headers-Fast/pkg-descr (props changed) head/www/p5-HTTP-MHTTP/pkg-descr (props changed) head/www/p5-HTTP-Message/pkg-descr (props changed) head/www/p5-HTTP-MobileAgent-Plugin-Charset/pkg-descr (props changed) head/www/p5-HTTP-MobileAgent-Plugin-Locator/pkg-descr (props changed) head/www/p5-HTTP-Negotiate/pkg-descr (props changed) head/www/p5-HTTP-Parser-XS/pkg-descr (props changed) head/www/p5-HTTP-Parser/pkg-descr (props changed) head/www/p5-HTTP-Proxy/pkg-descr (props changed) head/www/p5-HTTP-Recorder/pkg-descr (props changed) head/www/p5-HTTP-Request-AsCGI/pkg-descr (props changed) head/www/p5-HTTP-Request-Params/pkg-descr (props changed) head/www/p5-HTTP-Router/pkg-descr (props changed) head/www/p5-HTTP-Server-Simple-Authen/pkg-descr (props changed) head/www/p5-HTTP-Server-Simple-Mason/pkg-descr (props changed) head/www/p5-HTTP-Server-Simple-PSGI/pkg-descr (props changed) head/www/p5-HTTP-Server-Simple-Recorder/pkg-descr (props changed) head/www/p5-HTTP-Server-Simple-Static/pkg-descr (props changed) head/www/p5-HTTP-Server-Simple/pkg-descr (props changed) head/www/p5-HTTP-Session-State-MobileAgentID/pkg-descr (props changed) head/www/p5-HTTP-Session-Store-DBI/pkg-descr (props changed) head/www/p5-HTTP-Session/pkg-descr (props changed) head/www/p5-HTTP-Session2/pkg-descr (props changed) head/www/p5-HTTP-Tiny/pkg-descr (props changed) head/www/p5-HTTP-WebTest/pkg-descr (props changed) head/www/p5-HTTPD-Log-Filter/pkg-descr (props changed) head/www/p5-HTTPD-User-Manage/pkg-descr (props changed) head/www/p5-I18N-AcceptLanguage/pkg-descr (props changed) head/www/p5-Image-Delivery/pkg-descr (props changed) head/www/p5-JE/pkg-descr (props changed) head/www/p5-Jemplate/pkg-descr (props changed) head/www/p5-Jifty/pkg-descr (props changed) head/www/p5-LWP-Authen-OAuth/pkg-descr (props changed) head/www/p5-LWP-Authen-Wsse/pkg-descr (props changed) head/www/p5-LWP-ConnCache-MaxKeepAliveRequests/pkg-descr (props changed) head/www/p5-LWP-MediaTypes/pkg-descr (props changed) head/www/p5-LWP-Online/pkg-descr (props changed) head/www/p5-LWP-Protocol-PSGI/pkg-descr (props changed) head/www/p5-LWP-Protocol-http10/pkg-descr (props changed) head/www/p5-LWP-Protocol-https/pkg-descr (props changed) head/www/p5-LWP-UserAgent-Determined/pkg-descr (props changed) head/www/p5-LWP-UserAgent-POE/pkg-descr (props changed) head/www/p5-LWPx-ParanoidAgent/pkg-descr (props changed) head/www/p5-LWPx-TimedHTTP/pkg-descr (props changed) head/www/p5-Markup-Perl/pkg-descr (props changed) head/www/p5-Mason/pkg-descr (props changed) head/www/p5-MasonX-Interp-WithCallbacks/pkg-descr (props changed) head/www/p5-MasonX-Profiler/pkg-descr (props changed) head/www/p5-MasonX-Request-WithApacheSession/pkg-descr (props changed) head/www/p5-Maypole-Authentication-UserSessionCookie/pkg-descr (props changed) head/www/p5-Maypole-Component/pkg-descr (props changed) head/www/p5-Maypole/pkg-descr (props changed) head/www/p5-MediaWiki-API/pkg-descr (props changed) head/www/p5-Mobile-UserAgent/pkg-descr (props changed) head/www/p5-ModPerl-VersionUtil/pkg-descr (props changed) head/www/p5-Mojo-Server-FastCGI/pkg-descr (props changed) head/www/p5-MojoMojo/pkg-descr (props changed) head/www/p5-Mojolicious-Plugin-Database/pkg-descr (props changed) head/www/p5-Mojolicious-Plugin-Mongodb/pkg-descr (props changed) head/www/p5-Mojolicious/pkg-descr (props changed) head/www/p5-Monoceros/pkg-descr (props changed) head/www/p5-Mozilla-CA/pkg-descr (props changed) head/www/p5-Net-Akismet/pkg-descr (props changed) head/www/p5-Net-FastCGI/pkg-descr (props changed) head/www/p5-Net-FireEagle/pkg-descr (props changed) head/www/p5-Net-Flickr-API/pkg-descr (props changed) head/www/p5-Net-GeoPlanet/pkg-descr (props changed) head/www/p5-Net-Plurk/pkg-descr (props changed) head/www/p5-Net-STF-Client/pkg-descr (props changed) head/www/p5-Net-eBay/pkg-descr (props changed) head/www/p5-Newsletter/pkg-descr (props changed) head/www/p5-Nginx-ReadBody/pkg-descr (props changed) head/www/p5-Nginx-Simple/pkg-descr (props changed) head/www/p5-PHP-Session/pkg-descr (props changed) head/www/p5-POE-Component-Client-HTTP/pkg-descr (props changed) head/www/p5-POE-Component-Client-UserAgent/pkg-descr (props changed) head/www/p5-POE-Component-Server-HTTP/pkg-descr (props changed) head/www/p5-POE-Component-Server-HTTPServer/pkg-descr (props changed) head/www/p5-POE-Component-Server-PSGI/pkg-descr (props changed) head/www/p5-POE-Component-Server-SOAP/pkg-descr (props changed) head/www/p5-POE-Component-Server-SimpleHTTP/pkg-descr (props changed) head/www/p5-POE-Filter-HTTP-Parser/pkg-descr (props changed) head/www/p5-POEx-Role-PSGIServer/pkg-descr (props changed) head/www/p5-PSGI/pkg-descr (props changed) head/www/p5-ParallelUA/pkg-descr (props changed) head/www/p5-Parse-HTTP-UserAgent/pkg-descr (props changed) head/www/p5-Path-Class-URI/pkg-descr (props changed) head/www/p5-Perlbal-Plugin-PSGI/pkg-descr (props changed) head/www/p5-Plack-App-Proxy/pkg-descr (props changed) head/www/p5-Plack-Builder-Conditionals/pkg-descr (props changed) head/www/p5-Plack-Handler-AnyEvent-HTTPD/pkg-descr (props changed) head/www/p5-Plack-Handler-AnyEvent-ReverseHTTP/pkg-descr (props changed) head/www/p5-Plack-Handler-AnyEvent-SCGI/pkg-descr (props changed) head/www/p5-Plack-Handler-CLI/pkg-descr (props changed) head/www/p5-Plack-Handler-SCGI/pkg-descr (props changed) head/www/p5-Plack-Middleware-AMF/pkg-descr (props changed) head/www/p5-Plack-Middleware-AddDefaultCharset/pkg-descr (props changed) head/www/p5-Plack-Middleware-Auth-Digest/pkg-descr (props changed) head/www/p5-Plack-Middleware-AutoRefresh/pkg-descr (props changed) head/www/p5-Plack-Middleware-ConsoleLogger/pkg-descr (props changed) head/www/p5-Plack-Middleware-Debug/pkg-descr (props changed) head/www/p5-Plack-Middleware-Deflater/pkg-descr (props changed) head/www/p5-Plack-Middleware-File-Sass/pkg-descr (props changed) head/www/p5-Plack-Middleware-ForceEnv/pkg-descr (props changed) head/www/p5-Plack-Middleware-Header/pkg-descr (props changed) head/www/p5-Plack-Middleware-IEnosniff/pkg-descr (props changed) head/www/p5-Plack-Middleware-InteractiveDebugger/pkg-descr (props changed) head/www/p5-Plack-Middleware-JSConcat/pkg-descr (props changed) head/www/p5-Plack-Middleware-MemoryUsage/pkg-descr (props changed) head/www/p5-Plack-Middleware-Precompressed/pkg-descr (props changed) head/www/p5-Plack-Middleware-Reproxy/pkg-descr (props changed) head/www/p5-Plack-Middleware-ReverseProxy/pkg-descr (props changed) head/www/p5-Plack-Middleware-ServerStatus-Lite/pkg-descr (props changed) head/www/p5-Plack-Middleware-Session/pkg-descr (props changed) head/www/p5-Plack-Middleware-SocketIO/pkg-descr (props changed) head/www/p5-Plack-Middleware-Status/pkg-descr (props changed) head/www/p5-Plack-Middleware-Test-StashWarnings/pkg-descr (props changed) head/www/p5-Plack-Middleware-Throttle/pkg-descr (props changed) head/www/p5-Plack-Server-Coro/pkg-descr (props changed) head/www/p5-Plack-Server-POE/pkg-descr (props changed) head/www/p5-Plack-Server-ReverseHTTP/pkg-descr (props changed) head/www/p5-Plack-Test-ExternalServer/pkg-descr (props changed) head/www/p5-Plack/pkg-descr (props changed) head/www/p5-PocketIO/pkg-descr (props changed) head/www/p5-Pod-Site/pkg-descr (props changed) head/www/p5-PodToHTML/pkg-descr (props changed) head/www/p5-Protocol-SocketIO/pkg-descr (props changed) head/www/p5-Protocol-WebSocket/pkg-descr (props changed) head/www/p5-Protocol-XMLRPC/pkg-descr (props changed) head/www/p5-REST-Client/pkg-descr (props changed) head/www/p5-RT-Authen-ExternalAuth/pkg-descr (props changed) head/www/p5-RT-Client-REST/pkg-descr (props changed) head/www/p5-RT-Extension-LDAPImport/pkg-descr (props changed) head/www/p5-RT-Extension-MandatoryOnTransition/pkg-descr (props changed) head/www/p5-RT-Extension-SLA/pkg-descr (props changed) head/www/p5-RTx-Calendar/pkg-descr (props changed) head/www/p5-Reaction/pkg-descr (props changed) head/www/p5-Reddit/pkg-descr (props changed) head/www/p5-Rose-HTML-Objects/pkg-descr (props changed) head/www/p5-Router-Boom/pkg-descr (props changed) head/www/p5-Router-Simple-Sinatraish/pkg-descr (props changed) head/www/p5-Router-Simple/pkg-descr (props changed) head/www/p5-SCGI/pkg-descr (props changed) head/www/p5-SOAP-Transport-HTTP-Plack/pkg-descr (props changed) head/www/p5-SRU/pkg-descr (props changed) head/www/p5-STF-Dispatcher-PSGI/pkg-descr (props changed) head/www/p5-Scrappy/pkg-descr (props changed) head/www/p5-Session-Storage-Secure/pkg-descr (props changed) head/www/p5-Squatting-On-PSGI/pkg-descr (props changed) head/www/p5-Squatting/pkg-descr (props changed) head/www/p5-Starlet/pkg-descr (props changed) head/www/p5-Starman/pkg-descr (props changed) head/www/p5-Syntax-Highlight-HTML/pkg-descr (props changed) head/www/p5-Syntax-Highlight-Shell/pkg-descr (props changed) head/www/p5-Task-Catalyst/pkg-descr (props changed) head/www/p5-Task-Plack/pkg-descr (props changed) head/www/p5-Template-Alloy/pkg-descr (props changed) head/www/p5-Template-GD/pkg-descr (props changed) head/www/p5-Template-Iterator-AlzaboWrapperCursor/pkg-descr (props changed) head/www/p5-Template-Multilingual/pkg-descr (props changed) head/www/p5-Template-Plugin-Class/pkg-descr (props changed) head/www/p5-Template-Plugin-Clickable-Email/pkg-descr (props changed) head/www/p5-Template-Plugin-Clickable/pkg-descr (props changed) head/www/p5-Template-Plugin-Comma/pkg-descr (props changed) head/www/p5-Template-Plugin-FillInForm/pkg-descr (props changed) head/www/p5-Template-Plugin-JSON/pkg-descr (props changed) head/www/p5-Template-Plugin-MP3/pkg-descr (props changed) head/www/p5-Template-Plugin-Markdown/pkg-descr (props changed) head/www/p5-Template-Plugin-Monta/pkg-descr (props changed) head/www/p5-Template-Plugin-Number-Format/pkg-descr (props changed) head/www/p5-Template-Plugin-Subst/pkg-descr (props changed) head/www/p5-Template-Plugin-VMethods/pkg-descr (props changed) head/www/p5-Template-Provider-Encoding/pkg-descr (props changed) head/www/p5-Template-Provider-FromDATA/pkg-descr (props changed) head/www/p5-Template-Simple/pkg-descr (props changed) head/www/p5-Template-Stash-AutoEscape/pkg-descr (props changed) head/www/p5-Template-Timer/pkg-descr (props changed) head/www/p5-Template-Toolkit-Simple/pkg-descr (props changed) head/www/p5-Template-Toolkit/pkg-descr (props changed) head/www/p5-Tenjin/pkg-descr (props changed) head/www/p5-Test-HTTP-Server-Simple/pkg-descr (props changed) head/www/p5-Test-HTTP/pkg-descr (props changed) head/www/p5-Test-Nginx/pkg-descr (props changed) head/www/p5-TestGen4Web-Runner/pkg-descr (props changed) head/www/p5-Tie-TinyURL/pkg-descr (props changed) head/www/p5-Toader/pkg-descr (props changed) head/www/p5-Twiggy-TLS/pkg-descr (props changed) head/www/p5-Twiggy/pkg-descr (props changed) head/www/p5-URI-Encode/pkg-descr (props changed) head/www/p5-URI-Escape-JavaScript/pkg-descr (props changed) head/www/p5-URI-Escape-XS/pkg-descr (props changed) head/www/p5-URI-Fetch/pkg-descr (props changed) head/www/p5-URI-ParseSearchString/pkg-descr (props changed) head/www/p5-URI-Sequin/pkg-descr (props changed) head/www/p5-URI-Title/pkg-descr (props changed) head/www/p5-URI-ToDisk/pkg-descr (props changed) head/www/p5-W3C-LinkChecker/pkg-descr (props changed) head/www/p5-W3C-LogValidator/pkg-descr (props changed) head/www/p5-WWW-AtMovies-TV/pkg-descr (props changed) head/www/p5-WWW-Babelfish/pkg-descr (props changed) head/www/p5-WWW-Baseball-NPB/pkg-descr (props changed) head/www/p5-WWW-Comic/pkg-descr (props changed) head/www/p5-WWW-Dilbert/pkg-descr (props changed) head/www/p5-WWW-FreeProxy/pkg-descr (props changed) head/www/p5-WWW-GitHub-Gist/pkg-descr (props changed) head/www/p5-WWW-HatenaDiary/pkg-descr (props changed) head/www/p5-WWW-IMDb/pkg-descr (props changed) head/www/p5-WWW-Instapaper-Client/pkg-descr (props changed) head/www/p5-WWW-Link/pkg-descr (props changed) head/www/p5-WWW-LongURL/pkg-descr (props changed) head/www/p5-WWW-Mechanize-CGI/pkg-descr (props changed) head/www/p5-WWW-Mechanize-Cached/pkg-descr (props changed) head/www/p5-WWW-Mechanize-DecodedContent/pkg-descr (props changed) head/www/p5-WWW-Mechanize-GZip/pkg-descr (props changed) head/www/p5-WWW-Mechanize-Plugin-phpBB/pkg-descr (props changed) head/www/p5-WWW-Mechanize-TreeBuilder/pkg-descr (props changed) head/www/p5-WWW-Mechanize/pkg-descr (props changed) head/www/p5-WWW-Mediawiki-Client/pkg-descr (props changed) head/www/p5-WWW-NioTV/pkg-descr (props changed) head/www/p5-WWW-OpenSVN/pkg-descr (props changed) head/www/p5-WWW-OpenSearch/pkg-descr (props changed) head/www/p5-WWW-Robot/pkg-descr (props changed) head/www/p5-WWW-RobotRules/pkg-descr (props changed) head/www/p5-WWW-Scraper-ISBN-Amazon_Driver/pkg-descr (props changed) head/www/p5-WWW-Scraper-ISBN-Driver/pkg-descr (props changed) head/www/p5-WWW-Scraper-ISBN-ORA_Driver/pkg-descr (props changed) head/www/p5-WWW-Scraper-ISBN-Record/pkg-descr (props changed) head/www/p5-WWW-Scraper-ISBN/pkg-descr (props changed) head/www/p5-WWW-Scripter-Plugin-Ajax/pkg-descr (props changed) head/www/p5-WWW-Scripter-Plugin-JavaScript/pkg-descr (props changed) head/www/p5-WWW-Scripter/pkg-descr (props changed) head/www/p5-WWW-Search-AltaVista/pkg-descr (props changed) head/www/p5-WWW-Search/pkg-descr (props changed) head/www/p5-WWW-Shorten-Bitly/pkg-descr (props changed) head/www/p5-WWW-Shorten-Googl/pkg-descr (props changed) head/www/p5-WWW-Shorten-NotLong/pkg-descr (props changed) head/www/p5-WWW-Shorten-Yourls/pkg-descr (props changed) head/www/p5-WWW-Shorten-isgd/pkg-descr (props changed) head/www/p5-WWW-Shorten/pkg-descr (props changed) head/www/p5-WWW-SourceForge/pkg-descr (props changed) head/www/p5-WWW-TV/pkg-descr (props changed) head/www/p5-WWW-TinySong/pkg-descr (props changed) head/www/p5-WWW-VenusEnvy/pkg-descr (props changed) head/www/p5-WWW-Wikipedia/pkg-descr (props changed) head/www/p5-WWW-Yandex-TIC/pkg-descr (props changed) head/www/p5-WWW-iTunesConnect/pkg-descr (props changed) head/www/p5-WebDAO/pkg-descr (props changed) head/www/p5-WebService-Bloglines/pkg-descr (props changed) head/www/p5-WebService-GData/pkg-descr (props changed) head/www/p5-WebService-Google-Reader/pkg-descr (props changed) head/www/p5-WebService-Google-Sets/pkg-descr (props changed) head/www/p5-WebService-IMDB/pkg-descr (props changed) head/www/p5-WebService-ISBNDB/pkg-descr (props changed) head/www/p5-WebService-MoviePosterDB/pkg-descr (props changed) head/www/p5-WebService-MusicBrainz/pkg-descr (props changed) head/www/p5-WebService-NoPaste/pkg-descr (props changed) head/www/p5-WebService-Pushover/pkg-descr (props changed) head/www/p5-WebService-Rakuten/pkg-descr (props changed) head/www/p5-WebService-Technorati/pkg-descr (props changed) head/www/p5-WebService-YouTube/pkg-descr (props changed) head/www/p5-Yahoo-Lifestyle/pkg-descr (props changed) head/www/p5-Yahoo-Search/pkg-descr (props changed) head/www/p5-ZConf-RSS-GUI-GTK/pkg-descr (props changed) head/www/p5-ZConf-RSS/pkg-descr (props changed) head/www/p5-chklinks/pkg-descr (props changed) head/www/p5-jQuery-File-Upload/pkg-descr (props changed) head/www/p5-libservlet/pkg-descr (props changed) head/www/p5-libwww/pkg-descr (props changed) head/www/p5-pQuery/pkg-descr (props changed) head/www/p5-webservice-validator-css-w3c/pkg-descr (props changed) head/www/p5-webservice-validator-html-w3c/pkg-descr (props changed) head/www/paros/pkg-descr (props changed) head/www/pear-HTML_AJAX/pkg-descr (props changed) head/www/pear-HTML_TagCloud/pkg-descr (props changed) head/www/pear-HTTP/pkg-descr (props changed) head/www/pear-HTTP_Client/pkg-descr (props changed) head/www/pear-HTTP_Download/pkg-descr (props changed) head/www/pear-HTTP_FloodControl/pkg-descr (props changed) head/www/pear-HTTP_Header/pkg-descr (props changed) head/www/pear-HTTP_Request/pkg-descr (props changed) head/www/pear-HTTP_Request2/pkg-descr (props changed) head/www/pear-HTTP_Server/pkg-descr (props changed) head/www/pear-HTTP_Session2/pkg-descr (props changed) head/www/pear-HTTP_Upload/pkg-descr (props changed) head/www/pear-HTTP_WebDAV_Client/pkg-descr (props changed) head/www/pear-HTTP_WebDAV_Server/pkg-descr (props changed) head/www/pear-Horde_Browser/pkg-descr (props changed) head/www/pear-Horde_Css_Parser/pkg-descr (props changed) head/www/pear-Horde_Dav/pkg-descr (props changed) head/www/pear-Horde_Editor/pkg-descr (props changed) head/www/pear-Horde_Feed/pkg-descr (props changed) head/www/pear-Horde_Form/pkg-descr (props changed) head/www/pear-Horde_Http/pkg-descr (props changed) head/www/pear-Horde_Routes/pkg-descr (props changed) head/www/pear-Horde_Service_Facebook/pkg-descr (props changed) head/www/pear-Horde_Service_Twitter/pkg-descr (props changed) head/www/pear-Horde_Service_UrlShortener/pkg-descr (props changed) head/www/pear-Horde_Service_Weather/pkg-descr (props changed) head/www/pear-Horde_SessionHandler/pkg-descr (props changed) head/www/pear-Horde_Template/pkg-descr (props changed) head/www/pear-Services_Amazon/pkg-descr (props changed) head/www/pear-Services_Amazon_S3/pkg-descr (props changed) head/www/pear-Services_Blogging/pkg-descr (props changed) head/www/pear-Services_Compete/pkg-descr (props changed) head/www/pear-Services_Delicious/pkg-descr (props changed) head/www/pear-Services_Digg/pkg-descr (props changed) head/www/pear-Services_Facebook/pkg-descr (props changed) head/www/pear-Services_GeoNames/pkg-descr (props changed) head/www/pear-Services_Google/pkg-descr (props changed) head/www/pear-Services_OpenSearch/pkg-descr (props changed) head/www/pear-Services_SharedBook/pkg-descr (props changed) head/www/pear-Services_ShortURL/pkg-descr (props changed) head/www/pear-Services_TinyURL/pkg-descr (props changed) head/www/pear-Services_TwitPic/pkg-descr (props changed) head/www/pear-Services_W3C_CSSValidator/pkg-descr (props changed) head/www/pear-Services_W3C_HTMLValidator/pkg-descr (props changed) head/www/pear-Services_Yadis/pkg-descr (props changed) head/www/pear-Services_Yahoo/pkg-descr (props changed) head/www/pear-Services_urlTea/pkg-descr (props changed) head/www/pear-Structures_DataGrid_Renderer_Flexy/pkg-descr (props changed) head/www/pear-Structures_DataGrid_Renderer_Pager/pkg-descr (props changed) head/www/pear-Structures_DataGrid_Renderer_Smarty/pkg-descr (props changed) head/www/pear-Text_Wiki/pkg-descr (props changed) head/www/pear-UDDI/pkg-descr (props changed) head/www/pear-XML_GRDDL/pkg-descr (props changed) head/www/pebble/pkg-descr (props changed) head/www/pecl-APC/pkg-descr (props changed) head/www/pecl-amfext/pkg-descr (props changed) head/www/pecl-http/pkg-descr (props changed) head/www/pecl-solr/pkg-descr (props changed) head/www/pecl-sphinx/pkg-descr (props changed) head/www/pecl-swish/pkg-descr (props changed) head/www/pecl-zendopcache/pkg-descr (props changed) head/www/perlbal/pkg-descr (props changed) head/www/pglogd/pkg-descr (props changed) head/www/phalcon/pkg-descr (props changed) head/www/photo_gallery/pkg-descr (props changed) head/www/php-plurk-api/pkg-descr (props changed) head/www/php-screw/pkg-descr (props changed) head/www/php-templates/pkg-descr (props changed) head/www/phpbb-devel/pkg-descr (props changed) head/www/phpbb3/pkg-descr (props changed) head/www/phpgedview/pkg-descr (props changed) head/www/phpgroupware/pkg-descr (props changed) head/www/phpmp/pkg-descr (props changed) head/www/phpmustache/pkg-descr (props changed) head/www/phprecipebook/pkg-descr (props changed) head/www/phproxy/pkg-descr (props changed) head/www/phpscheduleit/pkg-descr (props changed) head/www/phpsysinfo-dev/pkg-descr (props changed) head/www/phpsysinfo/pkg-descr (props changed) head/www/phpvirtualbox/pkg-descr (props changed) head/www/phpwebapp/pkg-descr (props changed) head/www/pivotx/pkg-descr (props changed) head/www/piwigo/pkg-descr (props changed) head/www/piwik/pkg-descr (props changed) head/www/planet/pkg-descr (props changed) head/www/pligg/pkg-descr (props changed) head/www/plone/pkg-descr (props changed) head/www/plugger-plugins-hubbe/pkg-descr (props changed) head/www/plugger/pkg-descr (props changed) head/www/pmwiki/pkg-descr (props changed) head/www/pnews/pkg-descr (props changed) head/www/podcastamatic/pkg-descr (props changed) head/www/polipo/pkg-descr (props changed) head/www/pound/pkg-descr (props changed) head/www/prado/pkg-descr (props changed) head/www/privoxy+ipv6/pkg-descr (props changed) head/www/protovis/pkg-descr (props changed) head/www/pserv/pkg-descr (props changed) head/www/publicfile/pkg-descr (props changed) head/www/punbb/pkg-descr (props changed) head/www/pwebstats/pkg-descr (props changed) head/www/py-GinGin/pkg-descr (props changed) head/www/py-HTMLgen/pkg-descr (props changed) head/www/py-Lightbox/pkg-descr (props changed) head/www/py-Products.CMFPlone/pkg-descr (props changed) head/www/py-Products.PloneLDAP/pkg-descr (props changed) head/www/py-WebFlash/pkg-descr (props changed) head/www/py-WebTest/pkg-descr (props changed) head/www/py-albatross/pkg-descr (props changed) head/www/py-amf/pkg-descr (props changed) head/www/py-apachelog/pkg-descr (props changed) head/www/py-beaker/pkg-descr (props changed) head/www/py-beautifulsoup/pkg-descr (props changed) head/www/py-beautifulsoup32/pkg-descr (props changed) head/www/py-blogofile/pkg-descr (props changed) head/www/py-bottle/pkg-descr (props changed) head/www/py-cherrypy-old/pkg-descr (props changed) head/www/py-cherrypy/pkg-descr (props changed) head/www/py-clientform/pkg-descr (props changed) head/www/py-cssmin/pkg-descr (props changed) head/www/py-cssselect/pkg-descr (props changed) head/www/py-django-annoying/pkg-descr (props changed) head/www/py-django-app-plugins/pkg-descr (props changed) head/www/py-django-appconf/pkg-descr (props changed) head/www/py-django-appmedia/pkg-descr (props changed) head/www/py-django-auth-ldap/pkg-descr (props changed) head/www/py-django-caching-app-plugins/pkg-descr (props changed) head/www/py-django-classy-tags/pkg-descr (props changed) head/www/py-django-cms/pkg-descr (props changed) head/www/py-django-devel/pkg-descr (props changed) head/www/py-django-evolution/pkg-descr (props changed) head/www/py-django-extensions/pkg-descr (props changed) head/www/py-django-haystack/pkg-descr (props changed) head/www/py-django-json-rpc/pkg-descr (props changed) head/www/py-django-keyedcache/pkg-descr (props changed) head/www/py-django-livesettings/pkg-descr (props changed) head/www/py-django-mptt/pkg-descr (props changed) head/www/py-django-openid-auth/pkg-descr (props changed) head/www/py-django-picklefield/pkg-descr (props changed) head/www/py-django-pipeline/pkg-descr (props changed) head/www/py-django-piston/pkg-descr (props changed) head/www/py-django-profiles/pkg-descr (props changed) head/www/py-django-registration/pkg-descr (props changed) head/www/py-django-sekizai/pkg-descr (props changed) head/www/py-django-signals-ahoy/pkg-descr (props changed) head/www/py-django-storages/pkg-descr (props changed) head/www/py-django-tables2/pkg-descr (props changed) head/www/py-django-tagging/pkg-descr (props changed) head/www/py-django-tastypie/pkg-descr (props changed) head/www/py-django-threaded-multihost/pkg-descr (props changed) head/www/py-django/pkg-descr (props changed) head/www/py-django14/pkg-descr (props changed) head/www/py-django15/pkg-descr (props changed) head/www/py-django_compressor/pkg-descr (props changed) head/www/py-djblets/pkg-descr (props changed) head/www/py-dojango/pkg-descr (props changed) head/www/py-dotcloud.cli/pkg-descr (props changed) head/www/py-dtflickr/pkg-descr (props changed) head/www/py-falcon/pkg-descr (props changed) head/www/py-fcgi/pkg-descr (props changed) head/www/py-feedfinder/pkg-descr (props changed) head/www/py-flask-cache/pkg-descr (props changed) head/www/py-flexget/pkg-descr (props changed) head/www/py-flup/pkg-descr (props changed) head/www/py-formalchemy/pkg-descr (props changed) head/www/py-formencode/pkg-descr (props changed) head/www/py-funkload/pkg-descr (props changed) head/www/py-google-api-python-client/pkg-descr (props changed) head/www/py-graphite-web/pkg-descr (props changed) head/www/py-gunicorn/pkg-descr (props changed) head/www/py-html5lib/pkg-descr (props changed) head/www/py-httplib2/pkg-descr (props changed) head/www/py-imdbpy/pkg-descr (props changed) head/www/py-jonpy/pkg-descr (props changed) head/www/py-jswebkit/pkg-descr (props changed) head/www/py-mechanize/pkg-descr (props changed) head/www/py-meld/pkg-descr (props changed) head/www/py-meld3/pkg-descr (props changed) head/www/py-mt/pkg-descr (props changed) head/www/py-nevow/pkg-descr (props changed) head/www/py-openssl-proxy/pkg-descr (props changed) head/www/py-paste/pkg-descr (props changed) head/www/py-pastedeploy/pkg-descr (props changed) head/www/py-pastescript/pkg-descr (props changed) head/www/py-plone.app.contentmenu/pkg-descr (props changed) head/www/py-plone.app.customerize/pkg-descr (props changed) head/www/py-plone.app.folder/pkg-descr (props changed) head/www/py-plone.app.i18n/pkg-descr (props changed) head/www/py-plone.app.ldap/pkg-descr (props changed) head/www/py-plone.app.testing/pkg-descr (props changed) head/www/py-plone.app.users/pkg-descr (props changed) head/www/py-plone.app.uuid/pkg-descr (props changed) head/www/py-plone.browserlayer/pkg-descr (props changed) head/www/py-plone.cachepurging/pkg-descr (props changed) head/www/py-plone.caching/pkg-descr (props changed) head/www/py-plone.fieldsets/pkg-descr (props changed) head/www/py-plone.folder/pkg-descr (props changed) head/www/py-plone.indexer/pkg-descr (props changed) head/www/py-plone.intelligenttext/pkg-descr (props changed) head/www/py-plone.locking/pkg-descr (props changed) head/www/py-plone.memoize/pkg-descr (props changed) head/www/py-plone.portlet.static/pkg-descr (props changed) head/www/py-plone.registry/pkg-descr (props changed) head/www/py-plone.resource/pkg-descr (props changed) head/www/py-plone.subrequest/pkg-descr (props changed) head/www/py-plone.testing/pkg-descr (props changed) head/www/py-plone.theme/pkg-descr (props changed) head/www/py-plone.transformchain/pkg-descr (props changed) head/www/py-plone.uuid/pkg-descr (props changed) head/www/py-plonetheme.sunburst/pkg-descr (props changed) head/www/py-poster/pkg-descr (props changed) head/www/py-postmarkup/pkg-descr (props changed) head/www/py-prewikka/pkg-descr (props changed) head/www/py-py-restclient/pkg-descr (props changed) head/www/py-pylons/pkg-descr (props changed) head/www/py-pyramid/pkg-descr (props changed) head/www/py-pysearch/pkg-descr (props changed) head/www/py-pywebdav/pkg-descr (props changed) head/www/py-requests-oauth-hook/pkg-descr (props changed) head/www/py-restclient/pkg-descr (props changed) head/www/py-rhodecode/pkg-descr (props changed) head/www/py-routes/pkg-descr (props changed) head/www/py-satchmo/pkg-descr (props changed) head/www/py-scgi/pkg-descr (props changed) head/www/py-scrapy/pkg-descr (props changed) head/www/py-selenium/pkg-descr (props changed) head/www/py-slimmer/pkg-descr (props changed) head/www/py-slumber/pkg-descr (props changed) head/www/py-surl/pkg-descr (props changed) head/www/py-textile/pkg-descr (props changed) head/www/py-tornado/pkg-descr (props changed) head/www/py-turbogears/pkg-descr (props changed) head/www/py-turbogears2/pkg-descr (props changed) head/www/py-twistedWeb/pkg-descr (props changed) head/www/py-twistedWeb2/pkg-descr (props changed) head/www/py-urljr/pkg-descr (props changed) head/www/py-utidy/pkg-descr (props changed) head/www/py-webhelpers/pkg-descr (props changed) head/www/py-webkitgtk/pkg-descr (props changed) head/www/py-webob/pkg-descr (props changed) head/www/py-webunit/pkg-descr (props changed) head/www/py-webware-component/pkg-descr (props changed) head/www/py-webware/pkg-descr (props changed) head/www/py-werkzeug/pkg-descr (props changed) head/www/py-wikitools/pkg-descr (props changed) head/www/pyblosxom/pkg-descr (props changed) head/www/pyjamas/pkg-descr (props changed) head/www/pylot/pkg-descr (props changed) head/www/pyweblib/pkg-descr (props changed) head/www/qdecoder/pkg-descr (props changed) head/www/quickie/pkg-descr (props changed) head/www/quixote/pkg-descr (props changed) head/www/qupzilla/pkg-descr (props changed) head/www/radicale/pkg-descr (props changed) head/www/red5/pkg-descr (props changed) head/www/redmine-backlogs/pkg-descr (props changed) head/www/redmine-basecamp/pkg-descr (props changed) head/www/redmine-http-auth/pkg-descr (props changed) head/www/redmine-sidebar_hide/pkg-descr (props changed) head/www/rejik/pkg-descr (props changed) head/www/rekonq/pkg-descr (props changed) head/www/repos-style/pkg-descr (props changed) head/www/resin3/pkg-descr (props changed) head/www/retawq/pkg-descr (props changed) head/www/reviewboard/pkg-descr (props changed) head/www/rnews/pkg-descr (props changed) head/www/rsskit/pkg-descr (props changed) head/www/rssowl/pkg-descr (props changed) head/www/rssroll/pkg-descr (props changed) head/www/rsstail/pkg-descr (props changed) head/www/rsstool/pkg-descr (props changed) head/www/rt38/pkg-descr (props changed) head/www/rt40/pkg-descr (props changed) head/www/ruboard/pkg-descr (props changed) head/www/ruby-aws/pkg-descr (props changed) head/www/ruby-fcgiwrap/pkg-descr (props changed) head/www/ruby-wgettsv/pkg-descr (props changed) head/www/rubygem-actionpack/pkg-descr (props changed) head/www/rubygem-actionpack4/pkg-descr (props changed) head/www/rubygem-activeresource/pkg-descr (props changed) head/www/rubygem-acts-as-taggable-on/pkg-descr (props changed) head/www/rubygem-addressable/pkg-descr (props changed) head/www/rubygem-amazon-ecs/pkg-descr (props changed) head/www/rubygem-anemone/pkg-descr (props changed) head/www/rubygem-async_sinatra/pkg-descr (props changed) head/www/rubygem-bluecloth/pkg-descr (props changed) head/www/rubygem-bootstrap-sass/pkg-descr (props changed) head/www/rubygem-carrierwave/pkg-descr (props changed) head/www/rubygem-cgi_multipart_eof_fix/pkg-descr (props changed) head/www/rubygem-chef-server-api/pkg-descr (props changed) head/www/rubygem-chef-server-webui/pkg-descr (props changed) head/www/rubygem-chosen-rails/pkg-descr (props changed) head/www/rubygem-cookiejar/pkg-descr (props changed) head/www/rubygem-cuba/pkg-descr (props changed) head/www/rubygem-d3_rails/pkg-descr (props changed) head/www/rubygem-davclient/pkg-descr (props changed) head/www/rubygem-domainatrix/pkg-descr (props changed) head/www/rubygem-em-http-request/pkg-descr (props changed) head/www/rubygem-em-socksify/pkg-descr (props changed) head/www/rubygem-em-twitter/pkg-descr (props changed) head/www/rubygem-em-websocket/pkg-descr (props changed) head/www/rubygem-emk-sinatra-url-for/pkg-descr (props changed) head/www/rubygem-erubis/pkg-descr (props changed) head/www/rubygem-ethon/pkg-descr (props changed) head/www/rubygem-eventmachine_httpserver/pkg-descr (props changed) head/www/rubygem-faraday/pkg-descr (props changed) head/www/rubygem-faraday_middleware/pkg-descr (props changed) head/www/rubygem-feed-normalizer/pkg-descr (props changed) head/www/rubygem-feedzirra/pkg-descr (props changed) head/www/rubygem-geminabox/pkg-descr (props changed) head/www/rubygem-gitlab-gollum-lib/pkg-descr (props changed) head/www/rubygem-gitlab-grack/pkg-descr (props changed) head/www/rubygem-gon/pkg-descr (props changed) head/www/rubygem-haml-coderay/pkg-descr (props changed) head/www/rubygem-haml-contrib/pkg-descr (props changed) head/www/rubygem-haml-rails/pkg-descr (props changed) head/www/rubygem-hpricot/pkg-descr (props changed) head/www/rubygem-html2haml/pkg-descr (props changed) head/www/rubygem-http-cookie/pkg-descr (props changed) head/www/rubygem-httpclient/pkg-descr (props changed) head/www/rubygem-innate/pkg-descr (props changed) head/www/rubygem-jekyll/pkg-descr (props changed) head/www/rubygem-journey/pkg-descr (props changed) head/www/rubygem-jquery-atwho-rails/pkg-descr (props changed) head/www/rubygem-jquery-rails/pkg-descr (props changed) head/www/rubygem-jquery-turbolinks/pkg-descr (props changed) head/www/rubygem-jquery-ui-rails/pkg-descr (props changed) head/www/rubygem-jruby-rack/pkg-descr (props changed) head/www/rubygem-jwt/pkg-descr (props changed) head/www/rubygem-kaminari/pkg-descr (props changed) head/www/rubygem-layout-yullio/pkg-descr (props changed) head/www/rubygem-less/pkg-descr (props changed) head/www/rubygem-lighthouse-api/pkg-descr (props changed) head/www/rubygem-maruku/pkg-descr (props changed) head/www/rubygem-mechanize/pkg-descr (props changed) head/www/rubygem-merb-assets/pkg-descr (props changed) head/www/rubygem-merb-core/pkg-descr (props changed) head/www/rubygem-merb-haml/pkg-descr (props changed) head/www/rubygem-merb-helpers/pkg-descr (props changed) head/www/rubygem-merb-param-protection/pkg-descr (props changed) head/www/rubygem-multipart-post/pkg-descr (props changed) head/www/rubygem-nanoc/pkg-descr (props changed) head/www/rubygem-net-http-digest_auth/pkg-descr (props changed) head/www/rubygem-net-http-persistent/pkg-descr (props changed) head/www/rubygem-nicovideo/pkg-descr (props changed) head/www/rubygem-ntlm-http/pkg-descr (props changed) head/www/rubygem-passenger/pkg-descr (props changed) head/www/rubygem-rack-accept/pkg-descr (props changed) head/www/rubygem-rack-attack/pkg-descr (props changed) head/www/rubygem-rack-cache/pkg-descr (props changed) head/www/rubygem-rack-mount/pkg-descr (props changed) head/www/rubygem-rack-openid/pkg-descr (props changed) head/www/rubygem-rack-protection/pkg-descr (props changed) head/www/rubygem-rack-test/pkg-descr (props changed) head/www/rubygem-rack/pkg-descr (props changed) head/www/rubygem-rack15/pkg-descr (props changed) head/www/rubygem-rails/pkg-descr (props changed) head/www/rubygem-railties/pkg-descr (props changed) head/www/rubygem-ramaze/pkg-descr (props changed) head/www/rubygem-raphael-rails/pkg-descr (props changed) head/www/rubygem-redcloth/pkg-descr (props changed) head/www/rubygem-redis-rails/pkg-descr (props changed) head/www/rubygem-rest-client/pkg-descr (props changed) head/www/rubygem-rfacebook/pkg-descr (props changed) head/www/rubygem-rfeedfinder/pkg-descr (props changed) head/www/rubygem-scrapi/pkg-descr (props changed) head/www/rubygem-scrubyt/pkg-descr (props changed) head/www/rubygem-select2-rails/pkg-descr (props changed) head/www/rubygem-selenium-webdriver/pkg-descr (props changed) head/www/rubygem-simple-rss/pkg-descr (props changed) head/www/rubygem-sinatra-respond_to/pkg-descr (props changed) head/www/rubygem-sinatra/pkg-descr (props changed) head/www/rubygem-taggable/pkg-descr (props changed) head/www/rubygem-thin/pkg-descr (props changed) head/www/rubygem-tinyatom/pkg-descr (props changed) head/www/rubygem-turbolinks/pkg-descr (props changed) head/www/rubygem-typhoeus/pkg-descr (props changed) head/www/rubygem-uglifier/pkg-descr (props changed) head/www/rubygem-underscore-rails/pkg-descr (props changed) head/www/rubygem-url-mount/pkg-descr (props changed) head/www/rubygem-url_escape/pkg-descr (props changed) head/www/rubygem-webkit-gtk/pkg-descr (props changed) head/www/rubygem-webkit-gtk2/pkg-descr (props changed) head/www/rubygem-webmock/pkg-descr (props changed) head/www/rubygem-webrobots/pkg-descr (props changed) head/www/rubygem-websocket/pkg-descr (props changed) head/www/rubygem-yapra/pkg-descr (props changed) head/www/runsomebrowser/pkg-descr (props changed) head/www/sahi/pkg-descr (props changed) head/www/sakai/pkg-descr (props changed) head/www/samidare/pkg-descr (props changed) head/www/sams/pkg-descr (props changed) head/www/sarg/pkg-descr (props changed) head/www/sbox-dtc/pkg-descr (props changed) head/www/scloader/pkg-descr (props changed) head/www/screem/pkg-descr (props changed) head/www/script4rss/pkg-descr (props changed) head/www/seamonkey-i18n/pkg-descr (props changed) head/www/seamonkey/pkg-descr (props changed) head/www/selenium/pkg-descr (props changed) head/www/serendipity/pkg-descr (props changed) head/www/serf/pkg-descr (props changed) head/www/servlet-api/pkg-descr (props changed) head/www/session2/pkg-descr (props changed) head/www/sfnt2woff/pkg-descr (props changed) head/www/shttpd/pkg-descr (props changed) head/www/simplog/pkg-descr (props changed) head/www/sit/pkg-descr (props changed) head/www/sitebar/pkg-descr (props changed) head/www/sitecopy/pkg-descr (props changed) head/www/siteframe/pkg-descr (props changed) head/www/skytemplate/pkg-descr (props changed) head/www/smarty2/pkg-descr (props changed) head/www/smarty3/pkg-descr (props changed) head/www/smb_auth/pkg-descr (props changed) head/www/snarf/pkg-descr (props changed) head/www/snownews/pkg-descr (props changed) head/www/spawn-fcgi/pkg-descr (props changed) head/www/speedtest-mini/pkg-descr (props changed) head/www/spreadlogd/pkg-descr (props changed) head/www/sqstat/pkg-descr (props changed) head/www/squid/pkg-descr (props changed) head/www/squid_radius_auth/pkg-descr (props changed) head/www/squidclamav/pkg-descr (props changed) head/www/squidguard/pkg-descr (props changed) head/www/squidpurge/pkg-descr (props changed) head/www/squidstats/pkg-descr (props changed) head/www/squidview/pkg-descr (props changed) head/www/squirm/pkg-descr (props changed) head/www/srg/pkg-descr (props changed) head/www/subsonic/pkg-descr (props changed) head/www/surf/pkg-descr (props changed) head/www/surfraw/pkg-descr (props changed) head/www/sventon/pkg-descr (props changed) head/www/swfdec-plugin/pkg-descr (props changed) head/www/swiggle/pkg-descr (props changed) head/www/swish++/pkg-descr (props changed) head/www/swish-e/pkg-descr (props changed) head/www/syndigator/pkg-descr (props changed) head/www/tclhttpd/pkg-descr (props changed) head/www/tclwebtest/pkg-descr (props changed) head/www/tdiary/pkg-descr (props changed) head/www/tdom/pkg-descr (props changed) head/www/template_/pkg-descr (props changed) head/www/templatelite/pkg-descr (props changed) head/www/testlink/pkg-descr (props changed) head/www/textpattern/pkg-descr (props changed) head/www/thttpd/pkg-descr (props changed) head/www/thumbnail_index/pkg-descr (props changed) head/www/thundercache/pkg-descr (props changed) head/www/thundersnarf/pkg-descr (props changed) head/www/tickr/pkg-descr (props changed) head/www/tidy-devel/pkg-descr (props changed) head/www/tidy-lib/pkg-descr (props changed) head/www/tidy/pkg-descr (props changed) head/www/tikiwiki/pkg-descr (props changed) head/www/tinymce3/pkg-descr (props changed) head/www/tinyproxy/pkg-descr (props changed) head/www/tinytinyhttpd/pkg-descr (props changed) head/www/tntnet/pkg-descr (props changed) head/www/tokyopromenade/pkg-descr (props changed) head/www/tomcat-native/pkg-descr (props changed) head/www/tomcat6/pkg-descr (props changed) head/www/tomcat7/pkg-descr (props changed) head/www/trac-OhlohWidgetsMacro/pkg-descr (props changed) head/www/trac-TracDuplicates/pkg-descr (props changed) head/www/trac-TracGoogleAnalytics/pkg-descr (props changed) head/www/trac-accountmanager/pkg-descr (props changed) head/www/trac-addcomment/pkg-descr (props changed) head/www/trac-advancedticketworkflow/pkg-descr (props changed) head/www/trac-announcer/pkg-descr (props changed) head/www/trac-attachmentpolicy/pkg-descr (props changed) head/www/trac-autocomplete/pkg-descr (props changed) head/www/trac-batchmodify/pkg-descr (props changed) head/www/trac-bzr/pkg-descr (props changed) head/www/trac-calendar/pkg-descr (props changed) head/www/trac-ccselector/pkg-descr (props changed) head/www/trac-childtickets/pkg-descr (props changed) head/www/trac-codetags/pkg-descr (props changed) head/www/trac-customfieldadmin/pkg-descr (props changed) head/www/trac-datefield/pkg-descr (props changed) head/www/trac-defaultcc/pkg-descr (props changed) head/www/trac-discussion/pkg-descr (props changed) head/www/trac-down/pkg-descr (props changed) head/www/trac-downloads/pkg-descr (props changed) head/www/trac-email2trac/pkg-descr (props changed) head/www/trac-estimator/pkg-descr (props changed) head/www/trac-fivestarvote/pkg-descr (props changed) head/www/trac-fullblog/pkg-descr (props changed) head/www/trac-fullblognotification/pkg-descr (props changed) head/www/trac-gantt/pkg-descr (props changed) head/www/trac-graphviz/pkg-descr (props changed) head/www/trac-hierwiki/pkg-descr (props changed) head/www/trac-iniadmin/pkg-descr (props changed) head/www/trac-keywords/pkg-descr (props changed) head/www/trac-ldap/pkg-descr (props changed) head/www/trac-macropost/pkg-descr (props changed) head/www/trac-mastertickets/pkg-descr (props changed) head/www/trac-math/pkg-descr (props changed) head/www/trac-mercurial/pkg-descr (props changed) head/www/trac-nav/pkg-descr (props changed) head/www/trac-navadd/pkg-descr (props changed) head/www/trac-pagelist/pkg-descr (props changed) head/www/trac-pagetopdf/pkg-descr (props changed) head/www/trac-pendingticket/pkg-descr (props changed) head/www/trac-permredirect/pkg-descr (props changed) head/www/trac-privatetickets/pkg-descr (props changed) head/www/trac-pydotorgtheme/pkg-descr (props changed) head/www/trac-remind/pkg-descr (props changed) head/www/trac-revtree/pkg-descr (props changed) head/www/trac-robotstxt/pkg-descr (props changed) head/www/trac-scrumburndown/pkg-descr (props changed) head/www/trac-simpleticket/pkg-descr (props changed) head/www/trac-spam-filter/pkg-descr (props changed) head/www/trac-subtickets/pkg-descr (props changed) head/www/trac-tags/pkg-descr (props changed) head/www/trac-themeengine/pkg-descr (props changed) head/www/trac-ticketimport/pkg-descr (props changed) head/www/trac-tickettemplate/pkg-descr (props changed) head/www/trac-timingandestimation/pkg-descr (props changed) head/www/trac-tocmacro/pkg-descr (props changed) head/www/trac-tracdragdrop/pkg-descr (props changed) head/www/trac-tweakui/pkg-descr (props changed) head/www/trac-vote/pkg-descr (props changed) head/www/trac-wantedpages/pkg-descr (props changed) head/www/trac-watchlist/pkg-descr (props changed) head/www/trac-wikigoodies/pkg-descr (props changed) head/www/trac-wikinegotiator/pkg-descr (props changed) head/www/trac-wikinotification/pkg-descr (props changed) head/www/trac-wikitemplates/pkg-descr (props changed) head/www/trac-wikitopdf/pkg-descr (props changed) head/www/trac-wysiwyg/pkg-descr (props changed) head/www/trac-xmlrpc/pkg-descr (props changed) head/www/trac/pkg-descr (props changed) head/www/transmission-web/pkg-descr (props changed) head/www/transproxy/pkg-descr (props changed) head/www/trytond28_google_maps/pkg-descr (props changed) head/www/trytond_google_maps/pkg-descr (props changed) head/www/tt-rss/pkg-descr (props changed) head/www/ttf2eot/pkg-descr (props changed) head/www/twig/pkg-descr (props changed) head/www/twiki-BehaviourContrib/pkg-descr (props changed) head/www/twiki-BlogAddOn/pkg-descr (props changed) head/www/twiki-BugzillaLinkPlugin/pkg-descr (props changed) head/www/twiki-ClassicSkin/pkg-descr (props changed) head/www/twiki-CommentPlugin/pkg-descr (props changed) head/www/twiki-EditTablePlugin/pkg-descr (props changed) head/www/twiki-EmptyPlugin/pkg-descr (props changed) head/www/twiki-GluePlugin/pkg-descr (props changed) head/www/twiki-InterwikiPlugin/pkg-descr (props changed) head/www/twiki-JSCalendarContrib/pkg-descr (props changed) head/www/twiki-LDAPPasswordChangerPlugin/pkg-descr (props changed) head/www/twiki-LdapContrib/pkg-descr (props changed) head/www/twiki-LdapNgPlugin/pkg-descr (props changed) head/www/twiki-MailerContrib/pkg-descr (props changed) head/www/twiki-MathModePlugin/pkg-descr (props changed) head/www/twiki-NewUserPlugin/pkg-descr (props changed) head/www/twiki-PatternSkin/pkg-descr (props changed) head/www/twiki-PreferencesPlugin/pkg-descr (props changed) head/www/twiki-RenderListPlugin/pkg-descr (props changed) head/www/twiki-SlideShowPlugin/pkg-descr (props changed) head/www/twiki-SmiliesPlugin/pkg-descr (props changed) head/www/twiki-SpreadSheetPlugin/pkg-descr (props changed) head/www/twiki-SubscribePlugin/pkg-descr (props changed) head/www/twiki-TWikiUserMappingContrib/pkg-descr (props changed) head/www/twiki-TablePlugin/pkg-descr (props changed) head/www/twiki-TagMePlugin/pkg-descr (props changed) head/www/twiki-TinyMCEPlugin/pkg-descr (props changed) head/www/twiki-TipsContrib/pkg-descr (props changed) head/www/twiki-TopicVarsPlugin/pkg-descr (props changed) head/www/twiki-TwistyContrib/pkg-descr (props changed) head/www/twiki-TwistyPlugin/pkg-descr (props changed) head/www/twiki-WysiwygPlugin/pkg-descr (props changed) head/www/twiki/pkg-descr (props changed) head/www/twill/pkg-descr (props changed) head/www/twms/pkg-descr (props changed) head/www/typo3/pkg-descr (props changed) head/www/typo345/pkg-descr (props changed) head/www/typo347/pkg-descr (props changed) head/www/typolight/pkg-descr (props changed) head/www/udmsearch/pkg-descr (props changed) head/www/ump/pkg-descr (props changed) head/www/usermanager/pkg-descr (props changed) head/www/uwsgi/pkg-descr (props changed) head/www/uwsgitop/pkg-descr (props changed) head/www/uzbl/pkg-descr (props changed) head/www/validator/pkg-descr (props changed) head/www/varnish-libvmod-header/pkg-descr (props changed) head/www/varnish-nagios/pkg-descr (props changed) head/www/varnish/pkg-descr (props changed) head/www/vdr-plugin-live/pkg-descr (props changed) head/www/vdradmin-am/pkg-descr (props changed) head/www/vee/pkg-descr (props changed) head/www/vertx/pkg-descr (props changed) head/www/videocache/pkg-descr (props changed) head/www/visitors/pkg-descr (props changed) head/www/volta/pkg-descr (props changed) head/www/vtiger-customerportal/pkg-descr (props changed) head/www/vtiger/pkg-descr (props changed) head/www/w3m-img/pkg-descr (props changed) head/www/w3m/pkg-descr (props changed) head/www/w3mir/pkg-descr (props changed) head/www/waccess/pkg-descr (props changed) head/www/wadcomblog/pkg-descr (props changed) head/www/web2ldap/pkg-descr (props changed) head/www/webalizer/pkg-descr (props changed) head/www/webcalendar-devel/pkg-descr (props changed) head/www/webcalendar/pkg-descr (props changed) head/www/webcheck/pkg-descr (props changed) head/www/webcopy/pkg-descr (props changed) head/www/webcrawl/pkg-descr (props changed) head/www/webfs/pkg-descr (props changed) head/www/webgo/pkg-descr (props changed) head/www/webinject/pkg-descr (props changed) head/www/webkit-gtk2/pkg-descr (props changed) head/www/webkit-gtk3/pkg-descr (props changed) head/www/webkit-sharp/pkg-descr (props changed) head/www/weblint++/pkg-descr (props changed) head/www/weblint/pkg-descr (props changed) head/www/webmachine/pkg-descr (props changed) head/www/webobjects/pkg-descr (props changed) head/www/webpy/pkg-descr (props changed) head/www/webreport/pkg-descr (props changed) head/www/webresolve/pkg-descr (props changed) head/www/websh/pkg-descr (props changed) head/www/webstats/pkg-descr (props changed) head/www/webstone-ssl/pkg-descr (props changed) head/www/webstone/pkg-descr (props changed) head/www/webtrees/pkg-descr (props changed) head/www/wgetpaste/pkg-descr (props changed) head/www/wikicalc/pkg-descr (props changed) head/www/wikindx/pkg-descr (props changed) head/www/wml/pkg-descr (props changed) head/www/woof/pkg-descr (props changed) head/www/wsdlpull/pkg-descr (props changed) head/www/wsmake/pkg-descr (props changed) head/www/www6to4/pkg-descr (props changed) head/www/wwwcount/pkg-descr (props changed) head/www/wwwstat/pkg-descr (props changed) head/www/xapian-omega10/pkg-descr (props changed) head/www/xaraya/pkg-descr (props changed) head/www/xcache/pkg-descr (props changed) head/www/xist/pkg-descr (props changed) head/www/xombrero/pkg-descr (props changed) head/www/xoops/pkg-descr (props changed) head/www/xpi-adblock/pkg-descr (props changed) head/www/xpi-adblock_plus/pkg-descr (props changed) head/www/xpi-bookmarkdd/pkg-descr (props changed) head/www/xpi-clear_cache_button/pkg-descr (props changed) head/www/xpi-clearfields/pkg-descr (props changed) head/www/xpi-close-all-tabs/pkg-descr (props changed) head/www/xpi-colorfultabs/pkg-descr (props changed) head/www/xpi-conkeror/pkg-descr (props changed) head/www/xpi-cookiesafe/pkg-descr (props changed) head/www/xpi-cssviewer/pkg-descr (props changed) head/www/xpi-cutemenus-crystalsvg/pkg-descr (props changed) head/www/xpi-deepestsender/pkg-descr (props changed) head/www/xpi-default_full_zoom_level/pkg-descr (props changed) head/www/xpi-delicious/pkg-descr (props changed) head/www/xpi-downthemall/pkg-descr (props changed) head/www/xpi-errorzilla/pkg-descr (props changed) head/www/xpi-fasterfox/pkg-descr (props changed) head/www/xpi-firebug/pkg-descr (props changed) head/www/xpi-firefox-showcase/pkg-descr (props changed) head/www/xpi-firemobilesimulator/pkg-descr (props changed) head/www/xpi-fission/pkg-descr (props changed) head/www/xpi-flashblock/pkg-descr (props changed) head/www/xpi-flashgot/pkg-descr (props changed) head/www/xpi-flatbmark/pkg-descr (props changed) head/www/xpi-forecastfox/pkg-descr (props changed) head/www/xpi-formfox/pkg-descr (props changed) head/www/xpi-foxmarks/pkg-descr (props changed) head/www/xpi-foxyproxy/pkg-descr (props changed) head/www/xpi-gbrain/pkg-descr (props changed) head/www/xpi-gdata_provider/pkg-descr (props changed) head/www/xpi-ghostery/pkg-descr (props changed) head/www/xpi-gmail-manager/pkg-descr (props changed) head/www/xpi-google-notebook/pkg-descr (props changed) head/www/xpi-google_shortcuts/pkg-descr (props changed) head/www/xpi-grab_and_drag/pkg-descr (props changed) head/www/xpi-greasemonkey/pkg-descr (props changed) head/www/xpi-httpfox/pkg-descr (props changed) head/www/xpi-imagezoom/pkg-descr (props changed) head/www/xpi-imdbpreview/pkg-descr (props changed) head/www/xpi-imglikeopera/pkg-descr (props changed) head/www/xpi-infolister/pkg-descr (props changed) head/www/xpi-informenter/pkg-descr (props changed) head/www/xpi-inline-google-definitions/pkg-descr (props changed) head/www/xpi-it_s_all_text/pkg-descr (props changed) head/www/xpi-jslib/pkg-descr (props changed) head/www/xpi-jsview/pkg-descr (props changed) head/www/xpi-jv/pkg-descr (props changed) head/www/xpi-leechblock/pkg-descr (props changed) head/www/xpi-linkification/pkg-descr (props changed) head/www/xpi-live_http_headers/pkg-descr (props changed) head/www/xpi-live_pagerank/pkg-descr (props changed) head/www/xpi-locale-switcher/pkg-descr (props changed) head/www/xpi-menueditor/pkg-descr (props changed) head/www/xpi-mldonkey/pkg-descr (props changed) head/www/xpi-modify_headers/pkg-descr (props changed) head/www/xpi-mrtech-local-install/pkg-descr (props changed) head/www/xpi-neo-diggler/pkg-descr (props changed) head/www/xpi-no-referrer/pkg-descr (props changed) head/www/xpi-noscript/pkg-descr (props changed) head/www/xpi-passwordmaker/pkg-descr (props changed) head/www/xpi-pdf_download/pkg-descr (props changed) head/www/xpi-pencil/pkg-descr (props changed) head/www/xpi-pentadactyl/pkg-descr (props changed) head/www/xpi-permatabs/pkg-descr (props changed) head/www/xpi-prism/pkg-descr (props changed) head/www/xpi-quick-locale-switcher/pkg-descr (props changed) head/www/xpi-quickproxy/pkg-descr (props changed) head/www/xpi-resurrectpages/pkg-descr (props changed) head/www/xpi-sameplace/pkg-descr (props changed) head/www/xpi-scrapbook/pkg-descr (props changed) head/www/xpi-searchstatus/pkg-descr (props changed) head/www/xpi-server_spy/pkg-descr (props changed) head/www/xpi-server_switcher/pkg-descr (props changed) head/www/xpi-sessionmanager/pkg-descr (props changed) head/www/xpi-showip/pkg-descr (props changed) head/www/xpi-speed-dial/pkg-descr (props changed) head/www/xpi-splash/pkg-descr (props changed) head/www/xpi-stumbleupon/pkg-descr (props changed) head/www/xpi-stylish/pkg-descr (props changed) head/www/xpi-table2clipboard/pkg-descr (props changed) head/www/xpi-tabletools/pkg-descr (props changed) head/www/xpi-tabmixplus/pkg-descr (props changed) head/www/xpi-tagzilla/pkg-descr (props changed) head/www/xpi-togglewordwrap/pkg-descr (props changed) head/www/xpi-torbutton/pkg-descr (props changed) head/www/xpi-twitterfox/pkg-descr (props changed) head/www/xpi-unplug/pkg-descr (props changed) head/www/xpi-urllink/pkg-descr (props changed) head/www/xpi-user_agent_switcher/pkg-descr (props changed) head/www/xpi-vimperator/pkg-descr (props changed) head/www/xpi-web_developer/pkg-descr (props changed) head/www/xpi-wmlbrowser/pkg-descr (props changed) head/www/xpi-xhtml-ruby-support/pkg-descr (props changed) head/www/xpi-xmpp4moz/pkg-descr (props changed) head/www/xpi-yslow/pkg-descr (props changed) head/www/xshttpd-devel/pkg-descr (props changed) head/www/xshttpd/pkg-descr (props changed) head/www/xsp/pkg-descr (props changed) head/www/yabb/pkg-descr (props changed) head/www/yahoo-ui/pkg-descr (props changed) head/www/yanopaste/pkg-descr (props changed) head/www/yaws/pkg-descr (props changed) head/www/yourls/pkg-descr (props changed) head/www/yuicompressor/pkg-descr (props changed) head/www/zen-cart/pkg-descr (props changed) head/www/zend-framework/pkg-descr (props changed) head/www/zend-framework1/pkg-descr (props changed) head/www/zerowait-httpd/pkg-descr (props changed) head/www/zope213/pkg-descr (props changed) head/x11-clocks/abclock/pkg-descr (props changed) head/x11-clocks/aclock/pkg-descr (props changed) head/x11-clocks/alarm-clock/pkg-descr (props changed) head/x11-clocks/alltraxclock/pkg-descr (props changed) head/x11-clocks/asclock-gtk/pkg-descr (props changed) head/x11-clocks/asclock-xlib/pkg-descr (props changed) head/x11-clocks/asclock/pkg-descr (props changed) head/x11-clocks/astime/pkg-descr (props changed) head/x11-clocks/astzclock/pkg-descr (props changed) head/x11-clocks/bbdate/pkg-descr (props changed) head/x11-clocks/bclock/pkg-descr (props changed) head/x11-clocks/buici-clock/pkg-descr (props changed) head/x11-clocks/cairo-clock/pkg-descr (props changed) head/x11-clocks/emiclock/pkg-descr (props changed) head/x11-clocks/eyeclock/pkg-descr (props changed) head/x11-clocks/gdesklets-clock/pkg-descr (props changed) head/x11-clocks/gdesklets-countdown/pkg-descr (props changed) head/x11-clocks/gdesklets-ebichuclock/pkg-descr (props changed) head/x11-clocks/glclock/pkg-descr (props changed) head/x11-clocks/gtubeclock/pkg-descr (props changed) head/x11-clocks/intclock/pkg-descr (props changed) head/x11-clocks/kdetoys4/pkg-descr (props changed) head/x11-clocks/ktimer/pkg-descr (props changed) head/x11-clocks/lmclock/pkg-descr (props changed) head/x11-clocks/mlclock/pkg-descr (props changed) head/x11-clocks/mouseclock/pkg-descr (props changed) head/x11-clocks/oclock/pkg-descr (props changed) head/x11-clocks/osdclock/pkg-descr (props changed) head/x11-clocks/pclock/pkg-descr (props changed) head/x11-clocks/plasma-applet-adjustableclock/pkg-descr (props changed) head/x11-clocks/plasma-applet-geekclock/pkg-descr (props changed) head/x11-clocks/rclock/pkg-descr (props changed) head/x11-clocks/sanduhr/pkg-descr (props changed) head/x11-clocks/stopwatch/pkg-descr (props changed) head/x11-clocks/swisswatch/pkg-descr (props changed) head/x11-clocks/tclock/pkg-descr (props changed) head/x11-clocks/tktz/pkg-descr (props changed) head/x11-clocks/wmbday/pkg-descr (props changed) head/x11-clocks/wmbinclock/pkg-descr (props changed) head/x11-clocks/wmblueclock/pkg-descr (props changed) head/x11-clocks/wmcalclock/pkg-descr (props changed) head/x11-clocks/wmclock/pkg-descr (props changed) head/x11-clocks/wmclockmon/pkg-descr (props changed) head/x11-clocks/wmfishtime/pkg-descr (props changed) head/x11-clocks/wmfuzzy/pkg-descr (props changed) head/x11-clocks/wmitime/pkg-descr (props changed) head/x11-clocks/wmtime/pkg-descr (props changed) head/x11-clocks/wmtimer/pkg-descr (props changed) head/x11-clocks/xalarm/pkg-descr (props changed) head/x11-clocks/xclock/pkg-descr (props changed) head/x11-clocks/xdaliclock/pkg-descr (props changed) head/x11-clocks/xfce4-datetime-plugin/pkg-descr (props changed) head/x11-clocks/xfce4-timer-out-plugin/pkg-descr (props changed) head/x11-clocks/xtimer/pkg-descr (props changed) head/x11-drivers/input-wacom/pkg-descr (props changed) head/x11-drivers/xf86-input-acecad/pkg-descr (props changed) head/x11-drivers/xf86-input-egalax/pkg-descr (props changed) head/x11-drivers/xf86-input-elographics/pkg-descr (props changed) head/x11-drivers/xf86-input-hyperpen/pkg-descr (props changed) head/x11-drivers/xf86-input-joystick/pkg-descr (props changed) head/x11-drivers/xf86-input-keyboard/pkg-descr (props changed) head/x11-drivers/xf86-input-magictouch/pkg-descr (props changed) head/x11-drivers/xf86-input-mouse/pkg-descr (props changed) head/x11-drivers/xf86-input-mutouch/pkg-descr (props changed) head/x11-drivers/xf86-input-penmount/pkg-descr (props changed) head/x11-drivers/xf86-input-synaptics/pkg-descr (props changed) head/x11-drivers/xf86-input-vmmouse/pkg-descr (props changed) head/x11-drivers/xf86-input-void/pkg-descr (props changed) head/x11-drivers/xf86-video-apm/pkg-descr (props changed) head/x11-drivers/xf86-video-ark/pkg-descr (props changed) head/x11-drivers/xf86-video-ati/pkg-descr (props changed) head/x11-drivers/xf86-video-chips/pkg-descr (props changed) head/x11-drivers/xf86-video-cirrus/pkg-descr (props changed) head/x11-drivers/xf86-video-cyrix/pkg-descr (props changed) head/x11-drivers/xf86-video-dummy/pkg-descr (props changed) head/x11-drivers/xf86-video-fbdev/pkg-descr (props changed) head/x11-drivers/xf86-video-glint/pkg-descr (props changed) head/x11-drivers/xf86-video-i128/pkg-descr (props changed) head/x11-drivers/xf86-video-i740/pkg-descr (props changed) head/x11-drivers/xf86-video-imstt/pkg-descr (props changed) head/x11-drivers/xf86-video-intel/pkg-descr (props changed) head/x11-drivers/xf86-video-mach64/pkg-descr (props changed) head/x11-drivers/xf86-video-mga/pkg-descr (props changed) head/x11-drivers/xf86-video-newport/pkg-descr (props changed) head/x11-drivers/xf86-video-nouveau/pkg-descr (props changed) head/x11-drivers/xf86-video-nv/pkg-descr (props changed) head/x11-drivers/xf86-video-openchrome/pkg-descr (props changed) head/x11-drivers/xf86-video-r128/pkg-descr (props changed) head/x11-drivers/xf86-video-radeonhd/pkg-descr (props changed) head/x11-drivers/xf86-video-rdc/pkg-descr (props changed) head/x11-drivers/xf86-video-rendition/pkg-descr (props changed) head/x11-drivers/xf86-video-s3/pkg-descr (props changed) head/x11-drivers/xf86-video-s3virge/pkg-descr (props changed) head/x11-drivers/xf86-video-savage/pkg-descr (props changed) head/x11-drivers/xf86-video-siliconmotion/pkg-descr (props changed) head/x11-drivers/xf86-video-sis-intel/pkg-descr (props changed) head/x11-drivers/xf86-video-sis/pkg-descr (props changed) head/x11-drivers/xf86-video-sunffb/pkg-descr (props changed) head/x11-drivers/xf86-video-tdfx/pkg-descr (props changed) head/x11-drivers/xf86-video-tga/pkg-descr (props changed) head/x11-drivers/xf86-video-trident/pkg-descr (props changed) head/x11-drivers/xf86-video-tseng/pkg-descr (props changed) head/x11-drivers/xf86-video-vesa/pkg-descr (props changed) head/x11-drivers/xf86-video-via/pkg-descr (props changed) head/x11-drivers/xf86-video-vmware/pkg-descr (props changed) head/x11-drivers/xf86-video-voodoo/pkg-descr (props changed) head/x11-drivers/xorg-drivers/pkg-descr (props changed) head/x11-fm/asfiles/pkg-descr (props changed) head/x11-fm/catseye-fm/pkg-descr (props changed) head/x11-fm/dfm/pkg-descr (props changed) head/x11-fm/doublecmd/pkg-descr (props changed) head/x11-fm/emelfm2/pkg-descr (props changed) head/x11-fm/ezfm/pkg-descr (props changed) head/x11-fm/filerunner/pkg-descr (props changed) head/x11-fm/gentoo/pkg-descr (props changed) head/x11-fm/gnome-commander2/pkg-descr (props changed) head/x11-fm/krusader2/pkg-descr (props changed) head/x11-fm/mate-file-manager/pkg-descr (props changed) head/x11-fm/mtoolsfm/pkg-descr (props changed) head/x11-fm/mucommander/pkg-descr (props changed) head/x11-fm/nautilus/pkg-descr (props changed) head/x11-fm/p5-PerlFM/pkg-descr (props changed) head/x11-fm/pbi-thumbnailer/pkg-descr (props changed) head/x11-fm/pcmanfm/pkg-descr (props changed) head/x11-fm/py-nautilus/pkg-descr (props changed) head/x11-fm/qtfm/pkg-descr (props changed) head/x11-fm/rodent/pkg-descr (props changed) head/x11-fm/rox-filer/pkg-descr (props changed) head/x11-fm/rox-mime-editor/pkg-descr (props changed) head/x11-fm/rox-session/pkg-descr (props changed) head/x11-fm/tdfsb/pkg-descr (props changed) head/x11-fm/thunar/pkg-descr (props changed) head/x11-fm/twander/pkg-descr (props changed) head/x11-fm/ultracopier/pkg-descr (props changed) head/x11-fm/worker/pkg-descr (props changed) head/x11-fm/xcruise/pkg-descr (props changed) head/x11-fm/xfe/pkg-descr (props changed) head/x11-fm/xfm/pkg-descr (props changed) head/x11-fm/xplore/pkg-descr (props changed) head/x11-fonts/andika/pkg-descr (props changed) head/x11-fonts/anonymous-pro/pkg-descr (props changed) head/x11-fonts/artwiz-aleczapka-de/pkg-descr (props changed) head/x11-fonts/artwiz-aleczapka-se/pkg-descr (props changed) head/x11-fonts/artwiz-aleczapka/pkg-descr (props changed) head/x11-fonts/artwiz-fonts/pkg-descr (props changed) head/x11-fonts/bdfresize/pkg-descr (props changed) head/x11-fonts/bitstream-vera/pkg-descr (props changed) head/x11-fonts/c64bdf/pkg-descr (props changed) head/x11-fonts/cantarell-fonts/pkg-descr (props changed) head/x11-fonts/charis-compact/pkg-descr (props changed) head/x11-fonts/charis/pkg-descr (props changed) head/x11-fonts/code2000/pkg-descr (props changed) head/x11-fonts/code2001/pkg-descr (props changed) head/x11-fonts/cyberbit-ttfonts/pkg-descr (props changed) head/x11-fonts/cyr-rfx/pkg-descr (props changed) head/x11-fonts/dejavu/pkg-descr (props changed) head/x11-fonts/doulos-compact/pkg-descr (props changed) head/x11-fonts/doulos/pkg-descr (props changed) head/x11-fonts/droid-fonts-ttf/pkg-descr (props changed) head/x11-fonts/ecofont/pkg-descr (props changed) head/x11-fonts/encodings/pkg-descr (props changed) head/x11-fonts/farsifonts/pkg-descr (props changed) head/x11-fonts/fira/pkg-descr (props changed) head/x11-fonts/fntsample/pkg-descr (props changed) head/x11-fonts/font-adobe-100dpi/pkg-descr (props changed) head/x11-fonts/font-adobe-75dpi/pkg-descr (props changed) head/x11-fonts/font-adobe-utopia-100dpi/pkg-descr (props changed) head/x11-fonts/font-adobe-utopia-75dpi/pkg-descr (props changed) head/x11-fonts/font-alias/pkg-descr (props changed) head/x11-fonts/font-arabic-misc/pkg-descr (props changed) head/x11-fonts/font-bh-100dpi/pkg-descr (props changed) head/x11-fonts/font-bh-75dpi/pkg-descr (props changed) head/x11-fonts/font-bh-lucidatypewriter-100dpi/pkg-descr (props changed) head/x11-fonts/font-bh-lucidatypewriter-75dpi/pkg-descr (props changed) head/x11-fonts/font-bh-ttf/pkg-descr (props changed) head/x11-fonts/font-bh-type1/pkg-descr (props changed) head/x11-fonts/font-bitstream-100dpi/pkg-descr (props changed) head/x11-fonts/font-bitstream-75dpi/pkg-descr (props changed) head/x11-fonts/font-bitstream-speedo/pkg-descr (props changed) head/x11-fonts/font-bitstream-type1/pkg-descr (props changed) head/x11-fonts/font-cronyx-cyrillic/pkg-descr (props changed) head/x11-fonts/font-cursor-misc/pkg-descr (props changed) head/x11-fonts/font-daewoo-misc/pkg-descr (props changed) head/x11-fonts/font-dec-misc/pkg-descr (props changed) head/x11-fonts/font-ibm-type1/pkg-descr (props changed) head/x11-fonts/font-isas-misc/pkg-descr (props changed) head/x11-fonts/font-jis-misc/pkg-descr (props changed) head/x11-fonts/font-manager/pkg-descr (props changed) head/x11-fonts/font-micro-misc/pkg-descr (props changed) head/x11-fonts/font-misc-cyrillic/pkg-descr (props changed) head/x11-fonts/font-misc-ethiopic/pkg-descr (props changed) head/x11-fonts/font-misc-meltho/pkg-descr (props changed) head/x11-fonts/font-mutt-misc/pkg-descr (props changed) head/x11-fonts/font-schumacher-misc/pkg-descr (props changed) head/x11-fonts/font-screen-cyrillic/pkg-descr (props changed) head/x11-fonts/font-sony-misc/pkg-descr (props changed) head/x11-fonts/font-sun-misc/pkg-descr (props changed) head/x11-fonts/font-util/pkg-descr (props changed) head/x11-fonts/font-winitzki-cyrillic/pkg-descr (props changed) head/x11-fonts/font-xfree86-type1/pkg-descr (props changed) head/x11-fonts/fontcacheproto/pkg-descr (props changed) head/x11-fonts/fontconfig-reference/pkg-descr (props changed) head/x11-fonts/fontmatrix/pkg-descr (props changed) head/x11-fonts/fonts-indic/pkg-descr (props changed) head/x11-fonts/fonts-te/pkg-descr (props changed) head/x11-fonts/fontsproto/pkg-descr (props changed) head/x11-fonts/fonttosfnt/pkg-descr (props changed) head/x11-fonts/freefont-ttf/pkg-descr (props changed) head/x11-fonts/freefonts/pkg-descr (props changed) head/x11-fonts/fslsfonts/pkg-descr (props changed) head/x11-fonts/gbdfed/pkg-descr (props changed) head/x11-fonts/geminifonts/pkg-descr (props changed) head/x11-fonts/gfe/pkg-descr (props changed) head/x11-fonts/gnu-unifont-ttf/pkg-descr (props changed) head/x11-fonts/gnu-unifont/pkg-descr (props changed) head/x11-fonts/hanazono-fonts-ttf/pkg-descr (props changed) head/x11-fonts/inconsolata-ttf/pkg-descr (props changed) head/x11-fonts/indic-ttf/pkg-descr (props changed) head/x11-fonts/intlfonts/pkg-descr (props changed) head/x11-fonts/isabella/pkg-descr (props changed) head/x11-fonts/jmk-x11-fonts/pkg-descr (props changed) head/x11-fonts/junicode/pkg-descr (props changed) head/x11-fonts/kaputa/pkg-descr (props changed) head/x11-fonts/khmeros/pkg-descr (props changed) head/x11-fonts/lfpfonts-fix/pkg-descr (props changed) head/x11-fonts/lfpfonts-var/pkg-descr (props changed) head/x11-fonts/libFS/pkg-descr (props changed) head/x11-fonts/libXfont/pkg-descr (props changed) head/x11-fonts/libXfontcache/pkg-descr (props changed) head/x11-fonts/libXft/pkg-descr (props changed) head/x11-fonts/liberation-fonts-ttf/pkg-descr (props changed) head/x11-fonts/libfontenc/pkg-descr (props changed) head/x11-fonts/linux-f10-fontconfig/pkg-descr (props changed) head/x11-fonts/linuxlibertine-g/pkg-descr (props changed) head/x11-fonts/linuxlibertine/pkg-descr (props changed) head/x11-fonts/lohit/pkg-descr (props changed) head/x11-fonts/manu-gothica/pkg-descr (props changed) head/x11-fonts/mkbold-mkitalic/pkg-descr (props changed) head/x11-fonts/mkbold/pkg-descr (props changed) head/x11-fonts/mkfontscale/pkg-descr (props changed) head/x11-fonts/mkitalic/pkg-descr (props changed) head/x11-fonts/mondulkiri/pkg-descr (props changed) head/x11-fonts/montecarlo_fonts/pkg-descr (props changed) head/x11-fonts/moveable-type-fonts/pkg-descr (props changed) head/x11-fonts/nexfontsel/pkg-descr (props changed) head/x11-fonts/nucleus/pkg-descr (props changed) head/x11-fonts/p5-Font-AFM/pkg-descr (props changed) head/x11-fonts/p5-Font-TTF/pkg-descr (props changed) head/x11-fonts/p5-Font-TTFMetrics/pkg-descr (props changed) head/x11-fonts/p5-type1inst/pkg-descr (props changed) head/x11-fonts/padauk/pkg-descr (props changed) head/x11-fonts/paratype/pkg-descr (props changed) head/x11-fonts/pingwi/pkg-descr (props changed) head/x11-fonts/profont/pkg-descr (props changed) head/x11-fonts/proggy_fonts-ttf/pkg-descr (props changed) head/x11-fonts/proggy_fonts/pkg-descr (props changed) head/x11-fonts/roboto-fonts-ttf/pkg-descr (props changed) head/x11-fonts/sharefonts/pkg-descr (props changed) head/x11-fonts/showfont/pkg-descr (props changed) head/x11-fonts/sourcecodepro-ttf/pkg-descr (props changed) head/x11-fonts/stix-fonts/pkg-descr (props changed) head/x11-fonts/suxus/pkg-descr (props changed) head/x11-fonts/terminus-font/pkg-descr (props changed) head/x11-fonts/texcm-ttf/pkg-descr (props changed) head/x11-fonts/tkfont/pkg-descr (props changed) head/x11-fonts/tmu/pkg-descr (props changed) head/x11-fonts/ttmkfdir/pkg-descr (props changed) head/x11-fonts/tv-fonts/pkg-descr (props changed) head/x11-fonts/ubuntu-font/pkg-descr (props changed) head/x11-fonts/urwfonts-ttf/pkg-descr (props changed) head/x11-fonts/urwfonts/pkg-descr (props changed) head/x11-fonts/webfonts/pkg-descr (props changed) head/x11-fonts/wqy/pkg-descr (props changed) head/x11-fonts/xf86bigfontproto/pkg-descr (props changed) head/x11-fonts/xfontsel/pkg-descr (props changed) head/x11-fonts/xfs/pkg-descr (props changed) head/x11-fonts/xfsinfo/pkg-descr (props changed) head/x11-fonts/xlsfonts/pkg-descr (props changed) head/x11-fonts/xorg-fonts-100dpi/pkg-descr (props changed) head/x11-fonts/xorg-fonts-75dpi/pkg-descr (props changed) head/x11-fonts/xorg-fonts-cyrillic/pkg-descr (props changed) head/x11-fonts/xorg-fonts-miscbitmaps/pkg-descr (props changed) head/x11-fonts/xorg-fonts-truetype/pkg-descr (props changed) head/x11-fonts/xorg-fonts-type1/pkg-descr (props changed) head/x11-fonts/xorg-fonts/pkg-descr (props changed) head/x11-servers/Xfstt/pkg-descr (props changed) head/x11-servers/mga_hal/pkg-descr (props changed) head/x11-servers/x2vnc/pkg-descr (props changed) head/x11-servers/x2x/pkg-descr (props changed) head/x11-servers/xephyr/pkg-descr (props changed) head/x11-servers/xorg-dmx/pkg-descr (props changed) head/x11-servers/xorg-nestserver/pkg-descr (props changed) head/x11-servers/xorg-server/pkg-descr (props changed) head/x11-servers/xorg-vfbserver/pkg-descr (props changed) head/x11-themes/audacious-skins/pkg-descr (props changed) head/x11-themes/beastie/pkg-descr (props changed) head/x11-themes/claws-mail-themes/pkg-descr (props changed) head/x11-themes/clearlooks-metacity/pkg-descr (props changed) head/x11-themes/clearlooks-themes-extras/pkg-descr (props changed) head/x11-themes/clearlooks/pkg-descr (props changed) head/x11-themes/cursor-bluecurve-theme/pkg-descr (props changed) head/x11-themes/cursor-crystal-theme/pkg-descr (props changed) head/x11-themes/cursor-dmz-aa-theme/pkg-descr (props changed) head/x11-themes/cursor-dmz-theme/pkg-descr (props changed) head/x11-themes/cursor-ecliz/pkg-descr (props changed) head/x11-themes/cursor-grounation-theme/pkg-descr (props changed) head/x11-themes/cursor-jimmac-theme/pkg-descr (props changed) head/x11-themes/cursor-neutral-theme/pkg-descr (props changed) head/x11-themes/cursor-neutral-white-theme/pkg-descr (props changed) head/x11-themes/cursor-polar-theme/pkg-descr (props changed) head/x11-themes/e16-themes/pkg-descr (props changed) head/x11-themes/emerald-themes/pkg-descr (props changed) head/x11-themes/fluxbox-tenr-styles-pack/pkg-descr (props changed) head/x11-themes/fvwm-themes/pkg-descr (props changed) head/x11-themes/gnome-backgrounds/pkg-descr (props changed) head/x11-themes/gnome-bluecurve-theme/pkg-descr (props changed) head/x11-themes/gnome-icons-aqua-fusion/pkg-descr (props changed) head/x11-themes/gnome-icons-crystal/pkg-descr (props changed) head/x11-themes/gnome-icons-dropline-neu/pkg-descr (props changed) head/x11-themes/gnome-icons-dropline-nou/pkg-descr (props changed) head/x11-themes/gnome-icons-elementary/pkg-descr (props changed) head/x11-themes/gnome-icons-faenza/pkg-descr (props changed) head/x11-themes/gnome-icons-gentoo-test/pkg-descr (props changed) head/x11-themes/gnome-icons-gion/pkg-descr (props changed) head/x11-themes/gnome-icons-iris/pkg-descr (props changed) head/x11-themes/gnome-icons-jini/pkg-descr (props changed) head/x11-themes/gnome-icons-lila/pkg-descr (props changed) head/x11-themes/gnome-icons-noia-full/pkg-descr (props changed) head/x11-themes/gnome-icons-noia-warm/pkg-descr (props changed) head/x11-themes/gnome-icons-refined/pkg-descr (props changed) head/x11-themes/gnome-icons-slick/pkg-descr (props changed) head/x11-themes/gnome-icons-snow-apple/pkg-descr (props changed) head/x11-themes/gnome-icons-snowish/pkg-descr (props changed) head/x11-themes/gnome-icons-stylish/pkg-descr (props changed) head/x11-themes/gnome-icons-ximian-south/pkg-descr (props changed) head/x11-themes/gnome-icons/pkg-descr (props changed) head/x11-themes/gnome-themes-extras/pkg-descr (props changed) head/x11-themes/gnome-themes/pkg-descr (props changed) head/x11-themes/gtk-aluminumalloy-volcanic-theme/pkg-descr (props changed) head/x11-themes/gtk-aquaextremesunken-theme/pkg-descr (props changed) head/x11-themes/gtk-aqualightblue-theme/pkg-descr (props changed) head/x11-themes/gtk-aurora-engine/pkg-descr (props changed) head/x11-themes/gtk-bluecurve-theme/pkg-descr (props changed) head/x11-themes/gtk-cleanice-engine/pkg-descr (props changed) head/x11-themes/gtk-digital-cream-theme/pkg-descr (props changed) head/x11-themes/gtk-digital-harmony-theme/pkg-descr (props changed) head/x11-themes/gtk-engines2/pkg-descr (props changed) head/x11-themes/gtk-envy-theme/pkg-descr (props changed) head/x11-themes/gtk-equinox-engine/pkg-descr (props changed) head/x11-themes/gtk-flat-theme2/pkg-descr (props changed) head/x11-themes/gtk-gray-theme/pkg-descr (props changed) head/x11-themes/gtk-lila-theme-extras/pkg-descr (props changed) head/x11-themes/gtk-lila-theme/pkg-descr (props changed) head/x11-themes/gtk-longhorninspirat-theme/pkg-descr (props changed) head/x11-themes/gtk-milk-theme/pkg-descr (props changed) head/x11-themes/gtk-nodoka-engine/pkg-descr (props changed) head/x11-themes/gtk-oxygen-engine/pkg-descr (props changed) head/x11-themes/gtk-qnxtheme/pkg-descr (props changed) head/x11-themes/gtk-xfce-engine/pkg-descr (props changed) head/x11-themes/gtk3-oxygen-engine/pkg-descr (props changed) head/x11-themes/icon-bluecurve-theme/pkg-descr (props changed) head/x11-themes/icon-naming-utils/pkg-descr (props changed) head/x11-themes/icons-buuf/pkg-descr (props changed) head/x11-themes/icons-human-azul/pkg-descr (props changed) head/x11-themes/icons-tango-extras/pkg-descr (props changed) head/x11-themes/icons-tango/pkg-descr (props changed) head/x11-themes/irssi-themes/pkg-descr (props changed) head/x11-themes/kde-icons-black-and-white/pkg-descr (props changed) head/x11-themes/kde-icons-cezanne/pkg-descr (props changed) head/x11-themes/kde-icons-crystal-project/pkg-descr (props changed) head/x11-themes/kde-icons-dark-glass/pkg-descr (props changed) head/x11-themes/kde-icons-gartoon-blue-svg/pkg-descr (props changed) head/x11-themes/kde-icons-gartoon-svg/pkg-descr (props changed) head/x11-themes/kde-icons-graphite-rade8/pkg-descr (props changed) head/x11-themes/kde-icons-icosx/pkg-descr (props changed) head/x11-themes/kde-icons-kool-gorilla/pkg-descr (props changed) head/x11-themes/kde-icons-lime-rade8/pkg-descr (props changed) head/x11-themes/kde-icons-lush/pkg-descr (props changed) head/x11-themes/kde-icons-noia/pkg-descr (props changed) head/x11-themes/kde-icons-nuovext/pkg-descr (props changed) head/x11-themes/kde-icons-nuovext2/pkg-descr (props changed) head/x11-themes/kde-icons-nuvola/pkg-descr (props changed) head/x11-themes/kde-icons-os-k/pkg-descr (props changed) head/x11-themes/kde-icons-sky/pkg-descr (props changed) head/x11-themes/kde-icons-umicons/pkg-descr (props changed) head/x11-themes/kde-icons-vista-inspirate/pkg-descr (props changed) head/x11-themes/kde4-icons-oxygen/pkg-descr (props changed) head/x11-themes/kde4-style-bespin/pkg-descr (props changed) head/x11-themes/kde4-style-nitrogen/pkg-descr (props changed) head/x11-themes/kde4-style-polyester/pkg-descr (props changed) head/x11-themes/kde4-style-skulpture/pkg-descr (props changed) head/x11-themes/kde4-wallpapers/pkg-descr (props changed) head/x11-themes/kde4-windeco-crystal/pkg-descr (props changed) head/x11-themes/kde4-windeco-dekorator/pkg-descr (props changed) head/x11-themes/kde4-windeco-nitrogen/pkg-descr (props changed) head/x11-themes/kdeartwork4/pkg-descr (props changed) head/x11-themes/linux-f10-hicolor-icon-theme/pkg-descr (props changed) head/x11-themes/linux-f10-qtcurve-gtk2/pkg-descr (props changed) head/x11-themes/linux-hicolor-icon-theme/pkg-descr (props changed) head/x11-themes/lxappearance/pkg-descr (props changed) head/x11-themes/lxde-icon-theme/pkg-descr (props changed) head/x11-themes/mate-backgrounds/pkg-descr (props changed) head/x11-themes/mate-icon-theme/pkg-descr (props changed) head/x11-themes/mate-themes/pkg-descr (props changed) head/x11-themes/metacity-bluecurve-theme/pkg-descr (props changed) head/x11-themes/metacity-theme-microgui/pkg-descr (props changed) head/x11-themes/metacity-themes/pkg-descr (props changed) head/x11-themes/nimbus/pkg-descr (props changed) head/x11-themes/openbox-themes/pkg-descr (props changed) head/x11-themes/qt4-style-float/pkg-descr (props changed) head/x11-themes/qt4-style-phase/pkg-descr (props changed) head/x11-themes/qt4-style-quantumstyle/pkg-descr (props changed) head/x11-themes/qtcurve-gtk2/pkg-descr (props changed) head/x11-themes/qtcurve-kde4/pkg-descr (props changed) head/x11-themes/qtcurve-qt4/pkg-descr (props changed) head/x11-themes/rezlooks/pkg-descr (props changed) head/x11-themes/sawfish-themes/pkg-descr (props changed) head/x11-themes/slim-themes/pkg-descr (props changed) head/x11-themes/thewidgetfactory/pkg-descr (props changed) head/x11-themes/ubuntulooks/pkg-descr (props changed) head/x11-themes/xcursor-themes/pkg-descr (props changed) head/x11-themes/xmms-bluecurve-theme/pkg-descr (props changed) head/x11-themes/xmms-eq-skins/pkg-descr (props changed) head/x11-themes/xmms-vumeter-skins/pkg-descr (props changed) head/x11-toolkits/SoXt/pkg-descr (props changed) head/x11-toolkits/Xaw3d/pkg-descr (props changed) head/x11-toolkits/attica/pkg-descr (props changed) head/x11-toolkits/bakery/pkg-descr (props changed) head/x11-toolkits/blt/pkg-descr (props changed) head/x11-toolkits/bwidget/pkg-descr (props changed) head/x11-toolkits/c++-gtk-utils/pkg-descr (props changed) head/x11-toolkits/eel/pkg-descr (props changed) head/x11-toolkits/elementary/pkg-descr (props changed) head/x11-toolkits/fl_editor/pkg-descr (props changed) head/x11-toolkits/flowcanvas/pkg-descr (props changed) head/x11-toolkits/fltk/pkg-descr (props changed) head/x11-toolkits/flvw/pkg-descr (props changed) head/x11-toolkits/fox14/pkg-descr (props changed) head/x11-toolkits/fox16/pkg-descr (props changed) head/x11-toolkits/fox17/pkg-descr (props changed) head/x11-toolkits/fxscintilla/pkg-descr (props changed) head/x11-toolkits/gai/pkg-descr (props changed) head/x11-toolkits/gal2-reference/pkg-descr (props changed) head/x11-toolkits/gal2/pkg-descr (props changed) head/x11-toolkits/gdl/pkg-descr (props changed) head/x11-toolkits/gigi/pkg-descr (props changed) head/x11-toolkits/girara/pkg-descr (props changed) head/x11-toolkits/gnocl/pkg-descr (props changed) head/x11-toolkits/gnome-desktop-sharp20/pkg-descr (props changed) head/x11-toolkits/gnome-pty-helper/pkg-descr (props changed) head/x11-toolkits/gnome-sharp20/pkg-descr (props changed) head/x11-toolkits/gnomemm/pkg-descr (props changed) head/x11-toolkits/gnustep-back/pkg-descr (props changed) head/x11-toolkits/gnustep-gui/pkg-descr (props changed) head/x11-toolkits/gtk-sharp-beans/pkg-descr (props changed) head/x11-toolkits/gtk-sharp10/pkg-descr (props changed) head/x11-toolkits/gtk-sharp20/pkg-descr (props changed) head/x11-toolkits/gtk12/pkg-descr (props changed) head/x11-toolkits/gtk20-reference/pkg-descr (props changed) head/x11-toolkits/gtk20/pkg-descr (props changed) head/x11-toolkits/gtk30-reference/pkg-descr (props changed) head/x11-toolkits/gtk30/pkg-descr (props changed) head/x11-toolkits/gtkada/pkg-descr (props changed) head/x11-toolkits/gtkdatabox/pkg-descr (props changed) head/x11-toolkits/gtkextra2/pkg-descr (props changed) head/x11-toolkits/gtkglarea2/pkg-descr (props changed) head/x11-toolkits/gtkglext/pkg-descr (props changed) head/x11-toolkits/gtkglextmm/pkg-descr (props changed) head/x11-toolkits/gtkimageview/pkg-descr (props changed) head/x11-toolkits/gtkmathview/pkg-descr (props changed) head/x11-toolkits/gtkmm20-reference/pkg-descr (props changed) head/x11-toolkits/gtkmm20/pkg-descr (props changed) head/x11-toolkits/gtkmm24-reference/pkg-descr (props changed) head/x11-toolkits/gtkmm30-reference/pkg-descr (props changed) head/x11-toolkits/gtkmm30/pkg-descr (props changed) head/x11-toolkits/gtksourceview-reference/pkg-descr (props changed) head/x11-toolkits/gtksourceview/pkg-descr (props changed) head/x11-toolkits/gtksourceview2-reference/pkg-descr (props changed) head/x11-toolkits/gtksourceview2/pkg-descr (props changed) head/x11-toolkits/gtksourceview3-reference/pkg-descr (props changed) head/x11-toolkits/gtksourceviewmm3/pkg-descr (props changed) head/x11-toolkits/gtkunique/pkg-descr (props changed) head/x11-toolkits/hippo-canvas/pkg-descr (props changed) head/x11-toolkits/hs-GLUT/pkg-descr (props changed) head/x11-toolkits/hs-OpenGL/pkg-descr (props changed) head/x11-toolkits/hs-gtk/pkg-descr (props changed) head/x11-toolkits/hs-gtk2hs/pkg-descr (props changed) head/x11-toolkits/hs-gtkglext/pkg-descr (props changed) head/x11-toolkits/hs-gtksourceview2/pkg-descr (props changed) head/x11-toolkits/hs-pango/pkg-descr (props changed) head/x11-toolkits/hs-vte/pkg-descr (props changed) head/x11-toolkits/hs-wx/pkg-descr (props changed) head/x11-toolkits/hs-wxc/pkg-descr (props changed) head/x11-toolkits/hs-wxcore/pkg-descr (props changed) head/x11-toolkits/hs-wxdirect/pkg-descr (props changed) head/x11-toolkits/irrlicht/pkg-descr (props changed) head/x11-toolkits/itk/pkg-descr (props changed) head/x11-toolkits/lesstif/pkg-descr (props changed) head/x11-toolkits/libXaw/pkg-descr (props changed) head/x11-toolkits/libXmu/pkg-descr (props changed) head/x11-toolkits/libXt/pkg-descr (props changed) head/x11-toolkits/libbonoboui-reference/pkg-descr (props changed) head/x11-toolkits/libbonoboui/pkg-descr (props changed) head/x11-toolkits/libgail-gnome/pkg-descr (props changed) head/x11-toolkits/libgdiplus/pkg-descr (props changed) head/x11-toolkits/libgnomeprintui/pkg-descr (props changed) head/x11-toolkits/libgnomeprintuimm/pkg-descr (props changed) head/x11-toolkits/libgnomeui-reference/pkg-descr (props changed) head/x11-toolkits/libgnomeui/pkg-descr (props changed) head/x11-toolkits/libgnomeuimm26/pkg-descr (props changed) head/x11-toolkits/libgtk-java/pkg-descr (props changed) head/x11-toolkits/libgtksourceviewmm/pkg-descr (props changed) head/x11-toolkits/libmatewnck/pkg-descr (props changed) head/x11-toolkits/libpanelappletmm/pkg-descr (props changed) head/x11-toolkits/libsexy/pkg-descr (props changed) head/x11-toolkits/libsexymm/pkg-descr (props changed) head/x11-toolkits/libunique3/pkg-descr (props changed) head/x11-toolkits/libwnck-reference/pkg-descr (props changed) head/x11-toolkits/libwnck/pkg-descr (props changed) head/x11-toolkits/libxaw3dxft/pkg-descr (props changed) head/x11-toolkits/libzvt/pkg-descr (props changed) head/x11-toolkits/linux-f10-blt/pkg-descr (props changed) head/x11-toolkits/linux-f10-openmotif/pkg-descr (props changed) head/x11-toolkits/movingmotif/pkg-descr (props changed) head/x11-toolkits/mowitz/pkg-descr (props changed) head/x11-toolkits/neXtaw/pkg-descr (props changed) head/x11-toolkits/nucleo/pkg-descr (props changed) head/x11-toolkits/ocaml-lablgtk2/pkg-descr (props changed) head/x11-toolkits/open-motif/pkg-descr (props changed) head/x11-toolkits/otk/pkg-descr (props changed) head/x11-toolkits/p5-Alien-wxWidgets/pkg-descr (props changed) head/x11-toolkits/p5-Gnome2-Canvas/pkg-descr (props changed) head/x11-toolkits/p5-Gnome2-VFS/pkg-descr (props changed) head/x11-toolkits/p5-Gnome2/pkg-descr (props changed) head/x11-toolkits/p5-Gtk/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2-Chmod/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2-Ex-Dialogs/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2-Ex-FormFactory/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2-Ex-Simple-List/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2-Ex-Utils/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2-GladeXML/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2-ImageView/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2-PathButtonBar/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2-TrayIcon/pkg-descr (props changed) head/x11-toolkits/p5-Gtk2/pkg-descr (props changed) head/x11-toolkits/p5-Pango/pkg-descr (props changed) head/x11-toolkits/p5-Prima/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Action/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Autoscroll/pkg-descr (props changed) head/x11-toolkits/p5-Tk-ColourChooser/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Contrib/pkg-descr (props changed) head/x11-toolkits/p5-Tk-CursorControl/pkg-descr (props changed) head/x11-toolkits/p5-Tk-DKW/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Date/pkg-descr (props changed) head/x11-toolkits/p5-Tk-DynaTabFrame/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Enscript/pkg-descr (props changed) head/x11-toolkits/p5-Tk-FileDialog/pkg-descr (props changed) head/x11-toolkits/p5-Tk-FontDialog/pkg-descr (props changed) head/x11-toolkits/p5-Tk-GBARR/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Getopt/pkg-descr (props changed) head/x11-toolkits/p5-Tk-HistEntry/pkg-descr (props changed) head/x11-toolkits/p5-Tk-JComboBox/pkg-descr (props changed) head/x11-toolkits/p5-Tk-ResizeButton/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Role-Dialog/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Role-HasWidgets/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Splashscreen/pkg-descr (props changed) head/x11-toolkits/p5-Tk-Sugar/pkg-descr (props changed) head/x11-toolkits/p5-Tk-TableMatrix/pkg-descr (props changed) head/x11-toolkits/p5-Tk-ToolBar/pkg-descr (props changed) head/x11-toolkits/p5-Tk/pkg-descr (props changed) head/x11-toolkits/p5-Wx-Perl-ProcessStream/pkg-descr (props changed) head/x11-toolkits/p5-Wx/pkg-descr (props changed) head/x11-toolkits/pango-reference/pkg-descr (props changed) head/x11-toolkits/pango/pkg-descr (props changed) head/x11-toolkits/pangomm/pkg-descr (props changed) head/x11-toolkits/pangoxsl/pkg-descr (props changed) head/x11-toolkits/paragui-devel/pkg-descr (props changed) head/x11-toolkits/phat/pkg-descr (props changed) head/x11-toolkits/pure-gtk/pkg-descr (props changed) head/x11-toolkits/py-Pmw/pkg-descr (props changed) head/x11-toolkits/py-fltk/pkg-descr (props changed) head/x11-toolkits/py-gnome-desktop/pkg-descr (props changed) head/x11-toolkits/py-gnome-extras/pkg-descr (props changed) head/x11-toolkits/py-gnome2/pkg-descr (props changed) head/x11-toolkits/py-gtk2/pkg-descr (props changed) head/x11-toolkits/py-gtkglext/pkg-descr (props changed) head/x11-toolkits/py-gtksourceview/pkg-descr (props changed) head/x11-toolkits/py-gui/pkg-descr (props changed) head/x11-toolkits/py-kiwi/pkg-descr (props changed) head/x11-toolkits/py-pyqwt/pkg-descr (props changed) head/x11-toolkits/py-tkinter/pkg-descr (props changed) head/x11-toolkits/py-tktreectrl/pkg-descr (props changed) head/x11-toolkits/py-traitsbackendwx/pkg-descr (props changed) head/x11-toolkits/py-traitsgui/pkg-descr (props changed) head/x11-toolkits/py-vte/pkg-descr (props changed) head/x11-toolkits/py-wax/pkg-descr (props changed) head/x11-toolkits/py-wmdockapps/pkg-descr (props changed) head/x11-toolkits/py-wxPython26/pkg-descr (props changed) head/x11-toolkits/py-wxPython28/pkg-descr (props changed) head/x11-toolkits/py-xlib/pkg-descr (props changed) head/x11-toolkits/qt4pas/pkg-descr (props changed) head/x11-toolkits/qwt5-designerplugin/pkg-descr (props changed) head/x11-toolkits/qwt6-designerplugin/pkg-descr (props changed) head/x11-toolkits/rep-gtk2/pkg-descr (props changed) head/x11-toolkits/ruby-fox16/pkg-descr (props changed) head/x11-toolkits/ruby-goocanvas/pkg-descr (props changed) head/x11-toolkits/ruby-gstreamer/pkg-descr (props changed) head/x11-toolkits/ruby-gtk2/pkg-descr (props changed) head/x11-toolkits/ruby-gtksourceview2/pkg-descr (props changed) head/x11-toolkits/ruby-pango/pkg-descr (props changed) head/x11-toolkits/ruby-poppler/pkg-descr (props changed) head/x11-toolkits/ruby-vte/pkg-descr (props changed) head/x11-toolkits/rubygem-gdk3/pkg-descr (props changed) head/x11-toolkits/rubygem-gtk2/pkg-descr (props changed) head/x11-toolkits/rubygem-gtk3/pkg-descr (props changed) head/x11-toolkits/rubygem-gtksourceview2/pkg-descr (props changed) head/x11-toolkits/rubygem-gtksourceview3/pkg-descr (props changed) head/x11-toolkits/rubygem-pango/pkg-descr (props changed) head/x11-toolkits/rubygem-poppler/pkg-descr (props changed) head/x11-toolkits/rubygem-vte/pkg-descr (props changed) head/x11-toolkits/sakura/pkg-descr (props changed) head/x11-toolkits/scintilla/pkg-descr (props changed) head/x11-toolkits/sdl_pango/pkg-descr (props changed) head/x11-toolkits/shared-desktop-ontologies/pkg-descr (props changed) head/x11-toolkits/skinlf/pkg-descr (props changed) head/x11-toolkits/slingshot/pkg-descr (props changed) head/x11-toolkits/soqt/pkg-descr (props changed) head/x11-toolkits/swt-devel/pkg-descr (props changed) head/x11-toolkits/swt/pkg-descr (props changed) head/x11-toolkits/termit/pkg-descr (props changed) head/x11-toolkits/tile/pkg-descr (props changed) head/x11-toolkits/tix/pkg-descr (props changed) head/x11-toolkits/tk-wrapper/pkg-descr (props changed) head/x11-toolkits/tk84/pkg-descr (props changed) head/x11-toolkits/tk85/pkg-descr (props changed) head/x11-toolkits/tk86/pkg-descr (props changed) head/x11-toolkits/tkdnd/pkg-descr (props changed) head/x11-toolkits/tkshape/pkg-descr (props changed) head/x11-toolkits/tktable/pkg-descr (props changed) head/x11-toolkits/tktray/pkg-descr (props changed) head/x11-toolkits/tktreectrl/pkg-descr (props changed) head/x11-toolkits/unique/pkg-descr (props changed) head/x11-toolkits/v/pkg-descr (props changed) head/x11-toolkits/vdk/pkg-descr (props changed) head/x11-toolkits/vdkbuilder/pkg-descr (props changed) head/x11-toolkits/viewklass/pkg-descr (props changed) head/x11-toolkits/vte-reference/pkg-descr (props changed) head/x11-toolkits/vte/pkg-descr (props changed) head/x11-toolkits/vte3/pkg-descr (props changed) head/x11-toolkits/vtkfox/pkg-descr (props changed) head/x11-toolkits/wmapp/pkg-descr (props changed) head/x11-toolkits/wxgtk26-docs/pkg-descr (props changed) head/x11-toolkits/wxgtk26/pkg-descr (props changed) head/x11-toolkits/wxgtk28/pkg-descr (props changed) head/x11-toolkits/wxgtk29/pkg-descr (props changed) head/x11-toolkits/xbae/pkg-descr (props changed) head/x11-toolkits/xforms/pkg-descr (props changed) head/x11-toolkits/xmhtml/pkg-descr (props changed) head/x11-toolkits/xscoop/pkg-descr (props changed) head/x11-toolkits/xview-clients/pkg-descr (props changed) head/x11-toolkits/xview/pkg-descr (props changed) head/x11-wm/aewm/pkg-descr (props changed) head/x11-wm/afterstep-i18n/pkg-descr (props changed) head/x11-wm/afterstep-stable/pkg-descr (props changed) head/x11-wm/afterstep/pkg-descr (props changed) head/x11-wm/amiwm/pkg-descr (props changed) head/x11-wm/antiwm/pkg-descr (props changed) head/x11-wm/awesome-vicious/pkg-descr (props changed) head/x11-wm/awesome/pkg-descr (props changed) head/x11-wm/awesome2/pkg-descr (props changed) head/x11-wm/bbkeys/pkg-descr (props changed) head/x11-wm/bbpager/pkg-descr (props changed) head/x11-wm/blackbox/pkg-descr (props changed) head/x11-wm/ccsm/pkg-descr (props changed) head/x11-wm/compiz-fusion/pkg-descr (props changed) head/x11-wm/compiz-plugins-extra/pkg-descr (props changed) head/x11-wm/compiz-plugins-main/pkg-descr (props changed) head/x11-wm/compiz-plugins-unsupported/pkg-descr (props changed) head/x11-wm/compiz/pkg-descr (props changed) head/x11-wm/compizconfig-backend-gconf/pkg-descr (props changed) head/x11-wm/compizconfig-python/pkg-descr (props changed) head/x11-wm/compton/pkg-descr (props changed) head/x11-wm/ctwm/pkg-descr (props changed) head/x11-wm/devilspie/pkg-descr (props changed) head/x11-wm/dwm/pkg-descr (props changed) head/x11-wm/e16utils/pkg-descr (props changed) head/x11-wm/e17-module-alarm/pkg-descr (props changed) head/x11-wm/e17-module-comp-scale/pkg-descr (props changed) head/x11-wm/e17-module-cpu/pkg-descr (props changed) head/x11-wm/e17-module-deskshow/pkg-descr (props changed) head/x11-wm/e17-module-diskio/pkg-descr (props changed) head/x11-wm/e17-module-elfe/pkg-descr (props changed) head/x11-wm/e17-module-empris/pkg-descr (props changed) head/x11-wm/e17-module-engage/pkg-descr (props changed) head/x11-wm/e17-module-eooorg/pkg-descr (props changed) head/x11-wm/e17-module-everything-aspell/pkg-descr (props changed) head/x11-wm/e17-module-everything-mpris/pkg-descr (props changed) head/x11-wm/e17-module-everything-pidgin/pkg-descr (props changed) head/x11-wm/e17-module-everything-places/pkg-descr (props changed) head/x11-wm/e17-module-everything-shotgun/pkg-descr (props changed) head/x11-wm/e17-module-everything-wallpaper/pkg-descr (props changed) head/x11-wm/e17-module-everything-websearch/pkg-descr (props changed) head/x11-wm/e17-module-exebuf/pkg-descr (props changed) head/x11-wm/e17-module-execwatch/pkg-descr (props changed) head/x11-wm/e17-module-flame/pkg-descr (props changed) head/x11-wm/e17-module-forecasts/pkg-descr (props changed) head/x11-wm/e17-module-iiirk/pkg-descr (props changed) head/x11-wm/e17-module-itask/pkg-descr (props changed) head/x11-wm/e17-module-mail/pkg-descr (props changed) head/x11-wm/e17-module-mem/pkg-descr (props changed) head/x11-wm/e17-module-moon/pkg-descr (props changed) head/x11-wm/e17-module-mpdule/pkg-descr (props changed) head/x11-wm/e17-module-net/pkg-descr (props changed) head/x11-wm/e17-module-news/pkg-descr (props changed) head/x11-wm/e17-module-penguins/pkg-descr (props changed) head/x11-wm/e17-module-photo/pkg-descr (props changed) head/x11-wm/e17-module-places/pkg-descr (props changed) head/x11-wm/e17-module-rain/pkg-descr (props changed) head/x11-wm/e17-module-screenshot/pkg-descr (props changed) head/x11-wm/e17-module-slideshow/pkg-descr (props changed) head/x11-wm/e17-module-snow/pkg-descr (props changed) head/x11-wm/e17-module-taskbar/pkg-descr (props changed) head/x11-wm/e17-module-tclock/pkg-descr (props changed) head/x11-wm/e17-module-uptime/pkg-descr (props changed) head/x11-wm/e17-module-weather/pkg-descr (props changed) head/x11-wm/e17-module-winlist-ng/pkg-descr (props changed) head/x11-wm/e17-module-winselector/pkg-descr (props changed) head/x11-wm/e17-module-wlan/pkg-descr (props changed) head/x11-wm/e17-modules/pkg-descr (props changed) head/x11-wm/echinus/pkg-descr (props changed) head/x11-wm/ede/pkg-descr (props changed) head/x11-wm/emerald/pkg-descr (props changed) head/x11-wm/enlightenment-docs/pkg-descr (props changed) head/x11-wm/enlightenment/pkg-descr (props changed) head/x11-wm/epplets/pkg-descr (props changed) head/x11-wm/evilwm/pkg-descr (props changed) head/x11-wm/fbcmd/pkg-descr (props changed) head/x11-wm/fluxbox/pkg-descr (props changed) head/x11-wm/fluxconf/pkg-descr (props changed) head/x11-wm/fluxter/pkg-descr (props changed) head/x11-wm/flwm/pkg-descr (props changed) head/x11-wm/fvwm-crystal/pkg-descr (props changed) head/x11-wm/fvwm/pkg-descr (props changed) head/x11-wm/fvwm2-i18n/pkg-descr (props changed) head/x11-wm/fvwm2/pkg-descr (props changed) head/x11-wm/gcompmgr/pkg-descr (props changed) head/x11-wm/genmenu/pkg-descr (props changed) head/x11-wm/golem/pkg-descr (props changed) head/x11-wm/hackedbox/pkg-descr (props changed) head/x11-wm/herbstluftwm/pkg-descr (props changed) head/x11-wm/hs-xmonad-contrib/pkg-descr (props changed) head/x11-wm/hs-xmonad/pkg-descr (props changed) head/x11-wm/i3/pkg-descr (props changed) head/x11-wm/icewm/pkg-descr (props changed) head/x11-wm/ion/pkg-descr (props changed) head/x11-wm/jewel/pkg-descr (props changed) head/x11-wm/jwm/pkg-descr (props changed) head/x11-wm/larswm/pkg-descr (props changed) head/x11-wm/libcompizconfig/pkg-descr (props changed) head/x11-wm/libdockapp/pkg-descr (props changed) head/x11-wm/libwraster/pkg-descr (props changed) head/x11-wm/lwm/pkg-descr (props changed) head/x11-wm/lxmed/pkg-descr (props changed) head/x11-wm/lxsession/pkg-descr (props changed) head/x11-wm/mate-window-manager/pkg-descr (props changed) head/x11-wm/matwm2/pkg-descr (props changed) head/x11-wm/mcwm/pkg-descr (props changed) head/x11-wm/metacity/pkg-descr (props changed) head/x11-wm/musca/pkg-descr (props changed) head/x11-wm/mutter/pkg-descr (props changed) head/x11-wm/nickleby/pkg-descr (props changed) head/x11-wm/obapps/pkg-descr (props changed) head/x11-wm/obconf/pkg-descr (props changed) head/x11-wm/obkey/pkg-descr (props changed) head/x11-wm/obmenu/pkg-descr (props changed) head/x11-wm/obpager/pkg-descr (props changed) head/x11-wm/olvwm/pkg-descr (props changed) head/x11-wm/openbox/pkg-descr (props changed) head/x11-wm/oroborus/pkg-descr (props changed) head/x11-wm/pager/pkg-descr (props changed) head/x11-wm/pawm/pkg-descr (props changed) head/x11-wm/peksystray/pkg-descr (props changed) head/x11-wm/pekwm/pkg-descr (props changed) head/x11-wm/phluid/pkg-descr (props changed) head/x11-wm/piewm/pkg-descr (props changed) head/x11-wm/plwm/pkg-descr (props changed) head/x11-wm/pwm/pkg-descr (props changed) head/x11-wm/ratmen/pkg-descr (props changed) head/x11-wm/ratmenu/pkg-descr (props changed) head/x11-wm/ratpoison/pkg-descr (props changed) head/x11-wm/sapphire/pkg-descr (props changed) head/x11-wm/sawfish/pkg-descr (props changed) head/x11-wm/selectwm/pkg-descr (props changed) head/x11-wm/simple-ccsm/pkg-descr (props changed) head/x11-wm/spectrwm/pkg-descr (props changed) head/x11-wm/stumpwm/pkg-descr (props changed) head/x11-wm/swm/pkg-descr (props changed) head/x11-wm/tinywm/pkg-descr (props changed) head/x11-wm/transset/pkg-descr (props changed) head/x11-wm/tvtwm/pkg-descr (props changed) head/x11-wm/twm/pkg-descr (props changed) head/x11-wm/vtwm/pkg-descr (props changed) head/x11-wm/w9wm/pkg-descr (props changed) head/x11-wm/weewm/pkg-descr (props changed) head/x11-wm/windowlab/pkg-descr (props changed) head/x11-wm/windowmaker/pkg-descr (props changed) head/x11-wm/wm2/pkg-descr (props changed) head/x11-wm/wmakerconf/pkg-descr (props changed) head/x11-wm/wmanager-addons/pkg-descr (props changed) head/x11-wm/wmanager/pkg-descr (props changed) head/x11-wm/wmconfig/pkg-descr (props changed) head/x11-wm/wmfs/pkg-descr (props changed) head/x11-wm/wmii/pkg-descr (props changed) head/x11-wm/wmname/pkg-descr (props changed) head/x11-wm/xcompmgr/pkg-descr (props changed) head/x11-wm/xfce4-desktop/pkg-descr (props changed) head/x11-wm/xfce4-panel/pkg-descr (props changed) head/x11-wm/xfce4-session/pkg-descr (props changed) head/x11-wm/xfce4-wm/pkg-descr (props changed) head/x11/3ddesktop/pkg-descr (props changed) head/x11/9box/pkg-descr (props changed) head/x11/9menu/pkg-descr (props changed) head/x11/alltray/pkg-descr (props changed) head/x11/appres/pkg-descr (props changed) head/x11/apwal/pkg-descr (props changed) head/x11/arandr/pkg-descr (props changed) head/x11/aterm/pkg-descr (props changed) head/x11/avant-window-navigator/pkg-descr (props changed) head/x11/babl/pkg-descr (props changed) head/x11/bbappconf/pkg-descr (props changed) head/x11/bbdock/pkg-descr (props changed) head/x11/bbrun/pkg-descr (props changed) head/x11/beforelight/pkg-descr (props changed) head/x11/bgrot/pkg-descr (props changed) head/x11/bgs/pkg-descr (props changed) head/x11/bigreqsproto/pkg-descr (props changed) head/x11/bitmap/pkg-descr (props changed) head/x11/blast/pkg-descr (props changed) head/x11/bmpanel2/pkg-descr (props changed) head/x11/brightside/pkg-descr (props changed) head/x11/cl-clx/pkg-descr (props changed) head/x11/compositeproto/pkg-descr (props changed) head/x11/damageproto/pkg-descr (props changed) head/x11/decurs/pkg-descr (props changed) head/x11/deskmenu/pkg-descr (props changed) head/x11/deskpaint/pkg-descr (props changed) head/x11/dgs/pkg-descr (props changed) head/x11/dmenu/pkg-descr (props changed) head/x11/dmxproto/pkg-descr (props changed) head/x11/docker/pkg-descr (props changed) head/x11/dri2proto/pkg-descr (props changed) head/x11/dxpc/pkg-descr (props changed) head/x11/dynamag/pkg-descr (props changed) head/x11/dzen2/pkg-descr (props changed) head/x11/eaglemode/pkg-descr (props changed) head/x11/ecore-imf/pkg-descr (props changed) head/x11/ecore-imf_evas/pkg-descr (props changed) head/x11/ecore-input/pkg-descr (props changed) head/x11/ecore-input_evas/pkg-descr (props changed) head/x11/ecore-x11/pkg-descr (props changed) head/x11/editres/pkg-descr (props changed) head/x11/efreet/pkg-descr (props changed) head/x11/emprint/pkg-descr (props changed) head/x11/emu/pkg-descr (props changed) head/x11/erun/pkg-descr (props changed) head/x11/eterm/pkg-descr (props changed) head/x11/evieext/pkg-descr (props changed) head/x11/evilvte/pkg-descr (props changed) head/x11/fbdesk/pkg-descr (props changed) head/x11/fbpanel/pkg-descr (props changed) head/x11/fireflies/pkg-descr (props changed) head/x11/fixesproto/pkg-descr (props changed) head/x11/florence/pkg-descr (props changed) head/x11/fluxbg/pkg-descr (props changed) head/x11/fstobdf/pkg-descr (props changed) head/x11/gcb/pkg-descr (props changed) head/x11/gdesklets-tasklist/pkg-descr (props changed) head/x11/gdkxft/pkg-descr (props changed) head/x11/gdm/pkg-descr (props changed) head/x11/glproto/pkg-descr (props changed) head/x11/gmessage/pkg-descr (props changed) head/x11/gmrun/pkg-descr (props changed) head/x11/gnome-applets/pkg-descr (props changed) head/x11/gnome-clipboard-daemon/pkg-descr (props changed) head/x11/gnome-desktop-reference/pkg-descr (props changed) head/x11/gnome-desktop/pkg-descr (props changed) head/x11/gnome-menus/pkg-descr (props changed) head/x11/gnome-panel-reference/pkg-descr (props changed) head/x11/gnome-panel/pkg-descr (props changed) head/x11/gnome-pie/pkg-descr (props changed) head/x11/gnome-screensaver/pkg-descr (props changed) head/x11/gnome-session/pkg-descr (props changed) head/x11/gnome-shell/pkg-descr (props changed) head/x11/gnome-swallow/pkg-descr (props changed) head/x11/gnome-terminal/pkg-descr (props changed) head/x11/gnome2-fifth-toe/pkg-descr (props changed) head/x11/gnome2-lite/pkg-descr (props changed) head/x11/gnome2-power-tools/pkg-descr (props changed) head/x11/gnome2/pkg-descr (props changed) head/x11/gnustep-app/pkg-descr (props changed) head/x11/gpctool/pkg-descr (props changed) head/x11/grabc/pkg-descr (props changed) head/x11/gromit/pkg-descr (props changed) head/x11/gskrab/pkg-descr (props changed) head/x11/gsynaptics/pkg-descr (props changed) head/x11/gtk-launch/pkg-descr (props changed) head/x11/gtk-theme-switch/pkg-descr (props changed) head/x11/gtk-theme-switch2/pkg-descr (props changed) head/x11/gtkchtheme/pkg-descr (props changed) head/x11/gtkterm2/pkg-descr (props changed) head/x11/gtstarter/pkg-descr (props changed) head/x11/hotwire-shell/pkg-descr (props changed) head/x11/hs-X11-xft/pkg-descr (props changed) head/x11/hs-X11/pkg-descr (props changed) head/x11/hs-xmobar/pkg-descr (props changed) head/x11/i3lock/pkg-descr (props changed) head/x11/i3status/pkg-descr (props changed) head/x11/iceauth/pkg-descr (props changed) head/x11/ico/pkg-descr (props changed) head/x11/idesk/pkg-descr (props changed) head/x11/imwheel/pkg-descr (props changed) head/x11/innerspace/pkg-descr (props changed) head/x11/inputproto/pkg-descr (props changed) head/x11/ipager/pkg-descr (props changed) head/x11/kactivities/pkg-descr (props changed) head/x11/kactivitymanagerd/pkg-descr (props changed) head/x11/kb2mb2/pkg-descr (props changed) head/x11/kbproto/pkg-descr (props changed) head/x11/kde4-baseapps/pkg-descr (props changed) head/x11/kde4-runtime/pkg-descr (props changed) head/x11/kde4-workspace/pkg-descr (props changed) head/x11/kde4/pkg-descr (props changed) head/x11/kdelibs4/pkg-descr (props changed) head/x11/keybinder/pkg-descr (props changed) head/x11/keyboardcast/pkg-descr (props changed) head/x11/keylaunch/pkg-descr (props changed) head/x11/keynav/pkg-descr (props changed) head/x11/kgamma/pkg-descr (props changed) head/x11/konsole/pkg-descr (props changed) head/x11/libICE/pkg-descr (props changed) head/x11/libSM/pkg-descr (props changed) head/x11/libX11/pkg-descr (props changed) head/x11/libXScrnSaver/pkg-descr (props changed) head/x11/libXTrap/pkg-descr (props changed) head/x11/libXau/pkg-descr (props changed) head/x11/libXcm/pkg-descr (props changed) head/x11/libXcomposite/pkg-descr (props changed) head/x11/libXcursor/pkg-descr (props changed) head/x11/libXdamage/pkg-descr (props changed) head/x11/libXdmcp/pkg-descr (props changed) head/x11/libXevie/pkg-descr (props changed) head/x11/libXext/pkg-descr (props changed) head/x11/libXfixes/pkg-descr (props changed) head/x11/libXi/pkg-descr (props changed) head/x11/libXinerama/pkg-descr (props changed) head/x11/libXp/pkg-descr (props changed) head/x11/libXpm/pkg-descr (props changed) head/x11/libXprintAppUtil/pkg-descr (props changed) head/x11/libXprintUtil/pkg-descr (props changed) head/x11/libXrandr/pkg-descr (props changed) head/x11/libXrender/pkg-descr (props changed) head/x11/libXres/pkg-descr (props changed) head/x11/libXtst/pkg-descr (props changed) head/x11/libXv/pkg-descr (props changed) head/x11/libXvMC/pkg-descr (props changed) head/x11/libXxf86dga/pkg-descr (props changed) head/x11/libXxf86misc/pkg-descr (props changed) head/x11/libXxf86vm/pkg-descr (props changed) head/x11/libdmx/pkg-descr (props changed) head/x11/libdnd/pkg-descr (props changed) head/x11/libexo/pkg-descr (props changed) head/x11/libfm/pkg-descr (props changed) head/x11/libgnome-java/pkg-descr (props changed) head/x11/libgnome-reference/pkg-descr (props changed) head/x11/libgnome/pkg-descr (props changed) head/x11/libgnomekbd/pkg-descr (props changed) head/x11/libgnomemm26/pkg-descr (props changed) head/x11/libkonq/pkg-descr (props changed) head/x11/libmatekbd/pkg-descr (props changed) head/x11/liboldX/pkg-descr (props changed) head/x11/libsx/pkg-descr (props changed) head/x11/libsynaptics/pkg-descr (props changed) head/x11/libxcb/pkg-descr (props changed) head/x11/libxdg-basedir/pkg-descr (props changed) head/x11/libxfce4menu/pkg-descr (props changed) head/x11/libxkbfile/pkg-descr (props changed) head/x11/libxkbui/pkg-descr (props changed) head/x11/libxklavier/pkg-descr (props changed) head/x11/linux-f10-xorg-libs/pkg-descr (props changed) head/x11/listres/pkg-descr (props changed) head/x11/lsw/pkg-descr (props changed) head/x11/luit/pkg-descr (props changed) head/x11/lxde-meta/pkg-descr (props changed) head/x11/lxmenu-data/pkg-descr (props changed) head/x11/mate-applets/pkg-descr (props changed) head/x11/mate-base/pkg-descr (props changed) head/x11/mate-desktop/pkg-descr (props changed) head/x11/mate-dialogs/pkg-descr (props changed) head/x11/mate-menus/pkg-descr (props changed) head/x11/mate-panel/pkg-descr (props changed) head/x11/mate-screensaver/pkg-descr (props changed) head/x11/mate-session-manager/pkg-descr (props changed) head/x11/mate-terminal/pkg-descr (props changed) head/x11/menu-cache/pkg-descr (props changed) head/x11/metalock/pkg-descr (props changed) head/x11/metisse/pkg-descr (props changed) head/x11/mgapdesk/pkg-descr (props changed) head/x11/mkcomposecache/pkg-descr (props changed) head/x11/mlterm/pkg-descr (props changed) head/x11/mrxvt-devel/pkg-descr (props changed) head/x11/mrxvt/pkg-descr (props changed) head/x11/multi-aterm/pkg-descr (props changed) head/x11/mxico/pkg-descr (props changed) head/x11/numlockx/pkg-descr (props changed) head/x11/nvidia-driver/pkg-descr (props changed) head/x11/nvidia-settings/pkg-descr (props changed) head/x11/nvidia-xconfig/pkg-descr (props changed) head/x11/ooxcb/pkg-descr (props changed) head/x11/p5-Clipboard/pkg-descr (props changed) head/x11/p5-X11-GUITest/pkg-descr (props changed) head/x11/p5-X11-IdleTime/pkg-descr (props changed) head/x11/p5-X11-Protocol/pkg-descr (props changed) head/x11/p5-X11-Resolution/pkg-descr (props changed) head/x11/peeper/pkg-descr (props changed) head/x11/pixman/pkg-descr (props changed) head/x11/plasma-scriptengine-python/pkg-descr (props changed) head/x11/plasma-scriptengine-ruby/pkg-descr (props changed) head/x11/printproto/pkg-descr (props changed) head/x11/printscreen/pkg-descr (props changed) head/x11/props/pkg-descr (props changed) head/x11/qimageblitz/pkg-descr (props changed) head/x11/qxkb/pkg-descr (props changed) head/x11/randrproto/pkg-descr (props changed) head/x11/recordproto/pkg-descr (props changed) head/x11/rendercheck/pkg-descr (props changed) head/x11/renderproto/pkg-descr (props changed) head/x11/resourceproto/pkg-descr (props changed) head/x11/rgb/pkg-descr (props changed) head/x11/rox-wallpaper/pkg-descr (props changed) head/x11/roxbg/pkg-descr (props changed) head/x11/roxterm/pkg-descr (props changed) head/x11/rsibreak-kde4/pkg-descr (props changed) head/x11/rstart/pkg-descr (props changed) head/x11/ruby-gnome2/pkg-descr (props changed) head/x11/rubygem-gnome2/pkg-descr (props changed) head/x11/rxvt-devel/pkg-descr (props changed) head/x11/rxvt-unicode/pkg-descr (props changed) head/x11/rxvt/pkg-descr (props changed) head/x11/sbxkb/pkg-descr (props changed) head/x11/scripts/pkg-descr (props changed) head/x11/scrnsaverproto/pkg-descr (props changed) head/x11/sessreg/pkg-descr (props changed) head/x11/setlayout/pkg-descr (props changed) head/x11/settitle/pkg-descr (props changed) head/x11/setxkbmap/pkg-descr (props changed) head/x11/simdock/pkg-descr (props changed) head/x11/sisctrl/pkg-descr (props changed) head/x11/slim/pkg-descr (props changed) head/x11/slock/pkg-descr (props changed) head/x11/smproxy/pkg-descr (props changed) head/x11/sselp/pkg-descr (props changed) head/x11/stalonetray/pkg-descr (props changed) head/x11/startup-notification/pkg-descr (props changed) head/x11/sterm/pkg-descr (props changed) head/x11/stjerm/pkg-descr (props changed) head/x11/swarp/pkg-descr (props changed) head/x11/sxpc/pkg-descr (props changed) head/x11/tabbed/pkg-descr (props changed) head/x11/temperature.app/pkg-descr (props changed) head/x11/terminal.app/pkg-descr (props changed) head/x11/terminator/pkg-descr (props changed) head/x11/thinglaunch/pkg-descr (props changed) head/x11/thingylaunch/pkg-descr (props changed) head/x11/tilda/pkg-descr (props changed) head/x11/tint/pkg-descr (props changed) head/x11/tkXwin/pkg-descr (props changed) head/x11/trapproto/pkg-descr (props changed) head/x11/trayer/pkg-descr (props changed) head/x11/videoproto/pkg-descr (props changed) head/x11/viewres/pkg-descr (props changed) head/x11/wbar/pkg-descr (props changed) head/x11/wbarconf/pkg-descr (props changed) head/x11/wdm/pkg-descr (props changed) head/x11/wmappl/pkg-descr (props changed) head/x11/wmblob/pkg-descr (props changed) head/x11/wmbutton/pkg-descr (props changed) head/x11/wmcliphist/pkg-descr (props changed) head/x11/wmctrl/pkg-descr (props changed) head/x11/wmdrawer/pkg-descr (props changed) head/x11/wmmatrix/pkg-descr (props changed) head/x11/wmxss/pkg-descr (props changed) head/x11/workrave/pkg-descr (props changed) head/x11/x11perf/pkg-descr (props changed) head/x11/x3270/pkg-descr (props changed) head/x11/xaniroc/pkg-descr (props changed) head/x11/xantfarm/pkg-descr (props changed) head/x11/xascii/pkg-descr (props changed) head/x11/xauth/pkg-descr (props changed) head/x11/xautolock/pkg-descr (props changed) head/x11/xbacklight/pkg-descr (props changed) head/x11/xballoon/pkg-descr (props changed) head/x11/xbanner/pkg-descr (props changed) head/x11/xbelld/pkg-descr (props changed) head/x11/xbiff/pkg-descr (props changed) head/x11/xbindkeys/pkg-descr (props changed) head/x11/xbitmaps/pkg-descr (props changed) head/x11/xbrightness/pkg-descr (props changed) head/x11/xcalc/pkg-descr (props changed) head/x11/xcalib/pkg-descr (props changed) head/x11/xcb-proto/pkg-descr (props changed) head/x11/xcb-util/pkg-descr (props changed) head/x11/xclick/pkg-descr (props changed) head/x11/xclip/pkg-descr (props changed) head/x11/xclipboard/pkg-descr (props changed) head/x11/xcm/pkg-descr (props changed) head/x11/xcmd/pkg-descr (props changed) head/x11/xcmiscproto/pkg-descr (props changed) head/x11/xcmsdb/pkg-descr (props changed) head/x11/xco/pkg-descr (props changed) head/x11/xcoloredit/pkg-descr (props changed) head/x11/xcolors/pkg-descr (props changed) head/x11/xcolorsel/pkg-descr (props changed) head/x11/xconsole/pkg-descr (props changed) head/x11/xcurs/pkg-descr (props changed) head/x11/xcursorgen/pkg-descr (props changed) head/x11/xcut/pkg-descr (props changed) head/x11/xdbedizzy/pkg-descr (props changed) head/x11/xditview/pkg-descr (props changed) head/x11/xdm/pkg-descr (props changed) head/x11/xdotool/pkg-descr (props changed) head/x11/xdpyinfo/pkg-descr (props changed) head/x11/xdriinfo/pkg-descr (props changed) head/x11/xedit/pkg-descr (props changed) head/x11/xev/pkg-descr (props changed) head/x11/xextproto/pkg-descr (props changed) head/x11/xeyes/pkg-descr (props changed) head/x11/xf86dga/pkg-descr (props changed) head/x11/xf86dgaproto/pkg-descr (props changed) head/x11/xf86driproto/pkg-descr (props changed) head/x11/xf86miscproto/pkg-descr (props changed) head/x11/xf86rushproto/pkg-descr (props changed) head/x11/xf86vidmodeproto/pkg-descr (props changed) head/x11/xfce4-clipman-plugin/pkg-descr (props changed) head/x11/xfce4-conf/pkg-descr (props changed) head/x11/xfce4-quicklauncher-plugin/pkg-descr (props changed) head/x11/xfce4-screenshooter-plugin/pkg-descr (props changed) head/x11/xfce4-verve-plugin/pkg-descr (props changed) head/x11/xfce4-wmdock-plugin/pkg-descr (props changed) head/x11/xfce4-xfapplet-plugin/pkg-descr (props changed) head/x11/xfd/pkg-descr (props changed) head/x11/xfindproxy/pkg-descr (props changed) head/x11/xfishtank/pkg-descr (props changed) head/x11/xforward/pkg-descr (props changed) head/x11/xfree86_xkb_xml/pkg-descr (props changed) head/x11/xfwp/pkg-descr (props changed) head/x11/xgamma/pkg-descr (props changed) head/x11/xgc/pkg-descr (props changed) head/x11/xgrab/pkg-descr (props changed) head/x11/xhost/pkg-descr (props changed) head/x11/xidle/pkg-descr (props changed) head/x11/xineramaproto/pkg-descr (props changed) head/x11/xinit/pkg-descr (props changed) head/x11/xinput/pkg-descr (props changed) head/x11/xkbcomp/pkg-descr (props changed) head/x11/xkbctrl/pkg-descr (props changed) head/x11/xkbevd/pkg-descr (props changed) head/x11/xkbprint/pkg-descr (props changed) head/x11/xkbset/pkg-descr (props changed) head/x11/xkbutils/pkg-descr (props changed) head/x11/xkeyboard-config/pkg-descr (props changed) head/x11/xkeycaps/pkg-descr (props changed) head/x11/xkeywrap/pkg-descr (props changed) head/x11/xkill/pkg-descr (props changed) head/x11/xload/pkg-descr (props changed) head/x11/xloadimage/pkg-descr (props changed) head/x11/xlockmore/pkg-descr (props changed) head/x11/xlogo/pkg-descr (props changed) head/x11/xlogout/pkg-descr (props changed) head/x11/xlsatoms/pkg-descr (props changed) head/x11/xlsclients/pkg-descr (props changed) head/x11/xlupe/pkg-descr (props changed) head/x11/xmag/pkg-descr (props changed) head/x11/xman/pkg-descr (props changed) head/x11/xmangekyou/pkg-descr (props changed) head/x11/xmascot/pkg-descr (props changed) head/x11/xmessage/pkg-descr (props changed) head/x11/xmh/pkg-descr (props changed) head/x11/xmodmap/pkg-descr (props changed) head/x11/xmon/pkg-descr (props changed) head/x11/xmore/pkg-descr (props changed) head/x11/xmotd/pkg-descr (props changed) head/x11/xmove/pkg-descr (props changed) head/x11/xmsg/pkg-descr (props changed) head/x11/xmx/pkg-descr (props changed) head/x11/xnee/pkg-descr (props changed) head/x11/xnodecor/pkg-descr (props changed) head/x11/xorg-apps/pkg-descr (props changed) head/x11/xorg-cf-files/pkg-descr (props changed) head/x11/xorg-docs/pkg-descr (props changed) head/x11/xorg-libraries/pkg-descr (props changed) head/x11/xorg-minimal/pkg-descr (props changed) head/x11/xorg/pkg-descr (props changed) head/x11/xplsprinters/pkg-descr (props changed) head/x11/xpr/pkg-descr (props changed) head/x11/xprehashprinterlist/pkg-descr (props changed) head/x11/xprompt/pkg-descr (props changed) head/x11/xprop/pkg-descr (props changed) head/x11/xproto/pkg-descr (props changed) head/x11/xproxymanagementprotocol/pkg-descr (props changed) head/x11/xpyb/pkg-descr (props changed) head/x11/xrandr/pkg-descr (props changed) head/x11/xrdb/pkg-descr (props changed) head/x11/xrefresh/pkg-descr (props changed) head/x11/xrestop/pkg-descr (props changed) head/x11/xrootconsole/pkg-descr (props changed) head/x11/xrsh/pkg-descr (props changed) head/x11/xrsi/pkg-descr (props changed) head/x11/xrx/pkg-descr (props changed) head/x11/xscreensaver-gnome-hacks/pkg-descr (props changed) head/x11/xscreensaver-gnome/pkg-descr (props changed) head/x11/xscreensaver.app/pkg-descr (props changed) head/x11/xscreensaver/pkg-descr (props changed) head/x11/xsel-conrad/pkg-descr (props changed) head/x11/xsel/pkg-descr (props changed) head/x11/xset/pkg-descr (props changed) head/x11/xsetmode/pkg-descr (props changed) head/x11/xsetpointer/pkg-descr (props changed) head/x11/xsetroot/pkg-descr (props changed) head/x11/xskyroot/pkg-descr (props changed) head/x11/xsm/pkg-descr (props changed) head/x11/xsnow/pkg-descr (props changed) head/x11/xstarroll/pkg-descr (props changed) head/x11/xstdcmap/pkg-descr (props changed) head/x11/xstroke/pkg-descr (props changed) head/x11/xtacy/pkg-descr (props changed) head/x11/xterm/pkg-descr (props changed) head/x11/xtermcontrol/pkg-descr (props changed) head/x11/xtermset/pkg-descr (props changed) head/x11/xtestpicture/pkg-descr (props changed) head/x11/xtoolwait/pkg-descr (props changed) head/x11/xtrans/pkg-descr (props changed) head/x11/xtrap/pkg-descr (props changed) head/x11/xtset/pkg-descr (props changed) head/x11/xvattr/pkg-descr (props changed) head/x11/xvidtune/pkg-descr (props changed) head/x11/xvinfo/pkg-descr (props changed) head/x11/xvmcinfo/pkg-descr (props changed) head/x11/xwatchwin/pkg-descr (props changed) head/x11/xwd/pkg-descr (props changed) head/x11/xwininfo/pkg-descr (props changed) head/x11/xwit/pkg-descr (props changed) head/x11/xwud/pkg-descr (props changed) head/x11/xxkb/pkg-descr (props changed) head/x11/xzoom/pkg-descr (props changed) head/x11/yakuake-kde4/pkg-descr (props changed) head/x11/yalias/pkg-descr (props changed) head/x11/yeahconsole/pkg-descr (props changed) head/x11/yelp/pkg-descr (props changed) head/x11/zenity/pkg-descr (props changed) Modified: head/benchmarks/raidtest/pkg-descr ============================================================================== --- head/benchmarks/raidtest/pkg-descr Wed Jan 22 15:30:13 2014 (r340717) +++ head/benchmarks/raidtest/pkg-descr Wed Jan 22 15:44:51 2014 (r340718) @@ -1,5 +1,3 @@ -$FreeBSD$ - This utility can be used to test performance of storage devices. First, one need to generate file with I/O operations: From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 15:52:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6BE60424; Wed, 22 Jan 2014 15:52:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 536391635; Wed, 22 Jan 2014 15:52:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MFqCIs007515; Wed, 22 Jan 2014 15:52:12 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MFqBK6007511; Wed, 22 Jan 2014 15:52:11 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221552.s0MFqBK6007511@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 15:52:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340719 - in head: Tools/scripts/pkg-stash accessibility/jovie accessibility/yasr/files arabic/ae_fonts_mono/files arabic/ae_fonts_ttf/files arabic/kacst_fonts/files arabic/khotot/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.17 Precedence: list List-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, 22 Jan 2014 15:52:12 -0000 Author: mat Date: Wed Jan 22 15:52:06 2014 New Revision: 340719 URL: http://svnweb.freebsd.org/changeset/ports/340719 QAT: https://qat.redports.org/buildarchive/r340719/ Log: Fixup props the rest of pkg-* With hat: portmgr Sponsored by: Absolight Modified: head/math/saga/pkg-message (contents, props changed) Directory Properties: head/Tools/scripts/pkg-stash/pkg-list.sh (props changed) head/Tools/scripts/pkg-stash/pkg-stash.pl (props changed) head/accessibility/jovie/pkg-message (props changed) head/accessibility/yasr/files/pkg-message.in (props changed) head/arabic/ae_fonts_mono/files/pkg-message.in (props changed) head/arabic/ae_fonts_ttf/files/pkg-message.in (props changed) head/arabic/kacst_fonts/files/pkg-message.in (props changed) head/arabic/khotot/files/pkg-message.in (props changed) head/archivers/dpkg/files/pkg-deinstall.in (props changed) head/archivers/dpkg/files/pkg-install.in (props changed) head/archivers/epkg/pkg-install (props changed) head/archivers/paq/files/pkg-message.in (props changed) head/archivers/rpm4/pkg-deinstall (props changed) head/archivers/rpm4/pkg-install (props changed) head/archivers/rpm5/pkg-deinstall (props changed) head/archivers/rpm5/pkg-install (props changed) head/astro/aa/files/pkg-message.in (props changed) head/astro/astrometry/files/pkg-message.in (props changed) head/astro/boinc-astropulse/files/pkg-deinstall.in (props changed) head/astro/boinc-astropulse/files/pkg-install.in (props changed) head/astro/gpsdrive/pkg-message (props changed) head/astro/gpsman/files/pkg-message.in (props changed) head/astro/roadmap/files/pkg-message.in (props changed) head/audio/abcmidi/pkg-message (props changed) head/audio/amarok-kde4/pkg-message (props changed) head/audio/ampache/files/pkg-deinstall.in (props changed) head/audio/ampache/files/pkg-message.in (props changed) head/audio/aureal-kmod/files/pkg-message.in (props changed) head/audio/baudline/pkg-message (props changed) head/audio/boodler/pkg-message (props changed) head/audio/cmus-post.fm/files/pkg-message.in (props changed) head/audio/cplay/pkg-message (props changed) head/audio/csound/files/pkg-message.in (props changed) head/audio/csound6/files/pkg-message.in (props changed) head/audio/darkice/files/pkg-message.in (props changed) head/audio/emu10kx/pkg-deinstall (props changed) head/audio/emu10kx/pkg-install (props changed) head/audio/emu10kx/pkg-message (props changed) head/audio/esound/pkg-message (props changed) head/audio/festalon/pkg-message (props changed) head/audio/festival/pkg-message (props changed) head/audio/gnuitar/pkg-message (props changed) head/audio/gsi/pkg-message (props changed) head/audio/gstreamer-plugins-moodbar/pkg-message (props changed) head/audio/icecast2/files/pkg-message.in (props changed) head/audio/icegenerator/pkg-message (props changed) head/audio/ifp-line/pkg-message (props changed) head/audio/juke/files/pkg-message.in (props changed) head/audio/last-cmus/files/pkg-message.in (props changed) head/audio/last.fm/files/pkg-deinstall.in (props changed) head/audio/last.fm/files/pkg-install.in (props changed) head/audio/last.fm/pkg-message (props changed) head/audio/libamrnb/files/pkg-message.in (props changed) head/audio/libamrwb/files/pkg-message.in (props changed) head/audio/linux-f10-alsa-plugins-oss/pkg-deinstall (props changed) head/audio/linux-f10-alsa-plugins-oss/pkg-install (props changed) head/audio/linux-laudio/pkg-message (props changed) head/audio/linux-musicipserver/files/pkg-deinstall.in (props changed) head/audio/linux-musicipserver/files/pkg-install.in (props changed) head/audio/madfufw/files/pkg-message.in (props changed) head/audio/mous/files/pkg-message.in (props changed) head/audio/mpdas/files/pkg-message.in (props changed) head/audio/mpg123.el/pkg-message (props changed) head/audio/musicpd/files/pkg-message.in (props changed) head/audio/nas/files/pkg-message.in (props changed) head/audio/ncmpcpp/pkg-message (props changed) head/audio/openal/pkg-message (props changed) head/audio/oss/files/pkg-deinstall.in (props changed) head/audio/oss/files/pkg-install.in (props changed) head/audio/oss/pkg-message (props changed) head/audio/penguinsap/pkg-message (props changed) head/audio/playgsf/pkg-message (props changed) head/audio/pytone/pkg-message (props changed) head/audio/ripit/pkg-message (props changed) head/audio/shairport/pkg-message (props changed) head/audio/shoutcast/files/pkg-message.in (props changed) head/audio/squeezeboxserver/files/pkg-install.in (props changed) head/audio/squeezeboxserver/pkg-message (props changed) head/audio/tclmidi/files/pkg-message.in (props changed) head/audio/teamspeak3-server/files/pkg-message.in (props changed) head/audio/teamspeak_server/pkg-install (props changed) head/audio/timidity++-emacs/pkg-message (props changed) head/audio/timidity++-xskin/pkg-message (props changed) head/audio/timidity++/pkg-install (props changed) head/audio/umurmur/pkg-deinstall (props changed) head/audio/umurmur/pkg-install (props changed) head/audio/ventrilo-server/files/pkg-message.in (props changed) head/audio/xhippo/pkg-message (props changed) head/audio/xmcd/files/pkg-message.in (props changed) head/audio/xmms-eq/pkg-message (props changed) head/audio/xmms-nsf/files/pkg-message.in (props changed) head/audio/xmms-sapplug/pkg-message (props changed) head/audio/xmms-sexypsf/pkg-message (props changed) head/audio/xmms-xymms/pkg-message (props changed) head/audio/xmms2-scrobbler/files/pkg-message.in (props changed) head/audio/xwave/pkg-message (props changed) head/benchmarks/scimark2/files/pkg-message.in (props changed) head/benchmarks/thrulay/pkg-message (props changed) head/benchmarks/unixbench/pkg-message (props changed) head/biology/blast/files/pkg-message.in (props changed) head/biology/blat/files/pkg-message.in (props changed) head/biology/emboss/files/pkg-message.in (props changed) head/biology/fasta/files/pkg-message.in (props changed) head/biology/fasta3/files/pkg-message.in (props changed) head/biology/finchtv/files/pkg-message.in (props changed) head/biology/hmmer/pkg-message (props changed) head/biology/lagan/files/pkg-message.in (props changed) head/biology/ncbi-toolkit/files/pkg-message.in (props changed) head/biology/seqan/files/pkg-message.in (props changed) head/biology/wise/files/pkg-message.in (props changed) head/cad/alliance/files/pkg-message.in (props changed) head/cad/astk-serveur/files.client/pkg-message.in (props changed) head/cad/astk-serveur/files/pkg-message.in (props changed) head/cad/brlcad/pkg-message (props changed) head/cad/dinotrace/pkg-message (props changed) head/cad/kicad-devel/pkg-message (props changed) head/cad/kicad-library/pkg-message (props changed) head/cad/kicad/pkg-message (props changed) head/cad/linux-eagle5/files/pkg-deinstall.in (props changed) head/cad/linux-eagle5/pkg-message (props changed) head/cad/netgen/files/pkg-message.in (props changed) head/cad/salome/files/pkg-message.in (props changed) head/cad/verilog-mode.el/pkg-message (props changed) head/chinese/auto-cn-l10n/files/pkg-message.in (props changed) head/chinese/auto-tw-l10n/files/pkg-message.in (props changed) head/chinese/bg5ps/files/pkg-message.in (props changed) head/chinese/big5con/pkg-message (props changed) head/chinese/big5width/pkg-message (props changed) head/chinese/cmexfonts/pkg-deinstall (props changed) head/chinese/cmexfonts/pkg-install (props changed) head/chinese/cwtex/pkg-deinstall (props changed) head/chinese/dictd-database/files/pkg-message.in (props changed) head/chinese/enscript/pkg-message (props changed) head/chinese/fcitx-sunpinyin/pkg-message (props changed) head/chinese/fcitx-ui-light/pkg-message (props changed) head/chinese/fcitx/files/pkg-message.in (props changed) head/chinese/fortune/files/pkg-message.in (props changed) head/chinese/fqterm/pkg-message (props changed) head/chinese/gcin/pkg-message (props changed) head/chinese/miniChinput/pkg-message (props changed) head/chinese/moefonts-cid/files/pkg-deinstall.in (props changed) head/chinese/moefonts-cid/files/pkg-install.in (props changed) head/chinese/msttf/pkg-deinstall (props changed) head/chinese/msttf/pkg-install (props changed) head/chinese/mutt/pkg-message (props changed) head/chinese/oxim/pkg-message (props changed) head/chinese/phpbb-tw/files/pkg-message.in (props changed) head/chinese/phpbb-tw/files/pkg-opts (props changed) head/chinese/phpbb3-tw/files/pkg-message.in (props changed) head/chinese/phpbb3-tw/files/pkg-opts (props changed) head/chinese/pine4/pkg-install (props changed) head/chinese/scim-fcitx/files/pkg-message.in (props changed) head/chinese/scim-pinyin/pkg-message (props changed) head/chinese/scim-tables/pkg-message (props changed) head/chinese/wordpress-zh_TW/files/pkg-message.in (props changed) head/chinese/xemacs21/pkg-message (props changed) head/chinese/xsim/files/pkg-message.in (props changed) head/chinese/zhcon/files/pkg-message.in (props changed) head/comms/aprsd/files/pkg-message.in (props changed) head/comms/aprsd/pkg-deinstall (props changed) head/comms/aprsd/pkg-install (props changed) head/comms/atslog/files/pkg-message.in (props changed) head/comms/bforce-kst/pkg-message (props changed) head/comms/bforce/files/pkg-message.in (props changed) head/comms/bluez-firmware/pkg-message (props changed) head/comms/efax-gtk/pkg-message (props changed) head/comms/efax/pkg-install (props changed) head/comms/gmfsk/pkg-message (props changed) head/comms/gnokii/files/pkg-message.in (props changed) head/comms/gnokii/pkg-install (props changed) head/comms/hylafax/files/pkg-message.in (props changed) head/comms/linrad/pkg-message (props changed) head/comms/lirc/files/pkg-message.in (props changed) head/comms/mgetty+sendfax/files/pkg-message.in (props changed) head/comms/ncid/files/pkg-message.in (props changed) head/comms/trustedqsl/files/pkg-message (props changed) head/comms/uarduno/pkg-message (props changed) head/comms/wsjt/pkg-message (props changed) head/comms/wspr/pkg-message (props changed) head/comms/xastir/files/pkg-message.in (props changed) head/comms/zmtx-zmrx/pkg-message (props changed) head/converters/mule-ucs/pkg-message (props changed) head/converters/osm2mp/files/pkg-message.in (props changed) head/converters/wkhtmltopdf/pkg-message (props changed) head/databases/adminer/files/pkg-message.in (props changed) head/databases/adodb/files/pkg-message.in (props changed) head/databases/adodb5/files/pkg-message.in (props changed) head/databases/cassandra/pkg-deinstall (props changed) head/databases/cassandra/pkg-install (props changed) head/databases/couchdb/files/pkg-message.in (props changed) head/databases/couchdb/pkg-deinstall (props changed) head/databases/couchdb/pkg-install (props changed) head/databases/cyrus-imspd/pkg-message (props changed) head/databases/dbXML/files/pkg-message.in (props changed) head/databases/dbXML/pkg-deinstall (props changed) head/databases/firebird20-server/files/pkg-message.in (props changed) head/databases/firebird20-server/pkg-install-server (props changed) head/databases/firebird21-server/files/pkg-message.in (props changed) head/databases/firebird21-server/pkg-install-server (props changed) head/databases/firebird25-server/files/pkg-message.in (props changed) head/databases/firebird25-server/pkg-install-server (props changed) head/databases/flamerobin/files/pkg-message.in (props changed) head/databases/flare/files/pkg-message.in (props changed) head/databases/frontbase-jdbc/files/pkg-message.in (props changed) head/databases/frontbase/files/pkg-message.in (props changed) head/databases/frontbase/pkg-install (props changed) head/databases/geoserver-mysql-plugin/files/pkg-message.in (props changed) head/databases/gnats4/pkg-install (props changed) head/databases/gnats4/pkg-message (props changed) head/databases/iplike/files/pkg-message.in (props changed) head/databases/isql-viewer/pkg-message (props changed) head/databases/jasperserver/files/pkg-message.in (props changed) head/databases/jasperserver/pkg-install (props changed) head/databases/mantis/files/pkg-message.in (props changed) head/databases/mariadb-server/files/pkg-message.in (props changed) head/databases/mysql-udf-preg/pkg-message (props changed) head/databases/mysql-udf-sys/pkg-message (props changed) head/databases/mysql-udf/pkg-message (props changed) head/databases/mysql-xql/pkg-message (props changed) head/databases/mysql51-server/pkg-message (props changed) head/databases/mysql55-server/pkg-message (props changed) head/databases/mysql56-server/pkg-message (props changed) head/databases/mysqlard/files/pkg-message.in (props changed) head/databases/mysqldumper/pkg-message (props changed) head/databases/mywwwatcher/files/pkg-message.in (props changed) head/databases/openbase-jdbc/files/pkg-message.in (props changed) head/databases/oracle7-client/pkg-install (props changed) head/databases/pecl-mongo/files/pkg-message.in (props changed) head/databases/percona56-server/pkg-message (props changed) head/databases/pgbouncer/files/pkg-deinstall.in (props changed) head/databases/pgbouncer/files/pkg-install.in (props changed) head/databases/pgbouncer/files/pkg-message.in (props changed) head/databases/php-adodb-ext/files/pkg-message.in (props changed) head/databases/postgresql-jdbc/files/pkg-message.in (props changed) head/databases/postgresql-pllua/files/pkg-message.in (props changed) head/databases/postgresql-relay/pkg-message (props changed) head/databases/postgresql84-server/files/pkg-message-client.in (props changed) head/databases/postgresql84-server/files/pkg-message-contrib.in (props changed) head/databases/postgresql84-server/files/pkg-message-plperl.in (props changed) head/databases/postgresql84-server/files/pkg-message-plpython.in (props changed) head/databases/postgresql84-server/files/pkg-message-pltcl.in (props changed) head/databases/postgresql84-server/files/pkg-message-server.in (props changed) head/databases/postgresql84-server/files/pkgIndex.tcl.in (props changed) head/databases/postgresql84-server/pkg-install-server (props changed) head/databases/postgresql90-server/files/pkg-message-client.in (props changed) head/databases/postgresql90-server/files/pkg-message-contrib.in (props changed) head/databases/postgresql90-server/files/pkg-message-plperl.in (props changed) head/databases/postgresql90-server/files/pkg-message-plpython.in (props changed) head/databases/postgresql90-server/files/pkg-message-pltcl.in (props changed) head/databases/postgresql90-server/files/pkg-message-server.in (props changed) head/databases/postgresql90-server/files/pkgIndex.tcl.in (props changed) head/databases/postgresql90-server/pkg-install-server (props changed) head/databases/postgresql91-server/files/pkg-message-client.in (props changed) head/databases/postgresql91-server/files/pkg-message-contrib.in (props changed) head/databases/postgresql91-server/files/pkg-message-plperl.in (props changed) head/databases/postgresql91-server/files/pkg-message-plpython.in (props changed) head/databases/postgresql91-server/files/pkg-message-pltcl.in (props changed) head/databases/postgresql91-server/files/pkg-message-server.in (props changed) head/databases/postgresql91-server/files/pkgIndex.tcl.in (props changed) head/databases/postgresql91-server/pkg-install-server (props changed) head/databases/postgresql92-server/files/pkg-message-client.in (props changed) head/databases/postgresql92-server/files/pkg-message-contrib.in (props changed) head/databases/postgresql92-server/files/pkg-message-plperl.in (props changed) head/databases/postgresql92-server/files/pkg-message-plpython.in (props changed) head/databases/postgresql92-server/files/pkg-message-pltcl.in (props changed) head/databases/postgresql92-server/files/pkg-message-server.in (props changed) head/databases/postgresql92-server/files/pkgIndex.tcl.in (props changed) head/databases/postgresql92-server/pkg-install-server (props changed) head/databases/postgresql93-server/files/pkg-message-client.in (props changed) head/databases/postgresql93-server/files/pkg-message-contrib.in (props changed) head/databases/postgresql93-server/files/pkg-message-plperl.in (props changed) head/databases/postgresql93-server/files/pkg-message-plpython.in (props changed) head/databases/postgresql93-server/files/pkg-message-pltcl.in (props changed) head/databases/postgresql93-server/files/pkg-message-server.in (props changed) head/databases/postgresql93-server/files/pkgIndex.tcl.in (props changed) head/databases/postgresql93-server/pkg-install-server (props changed) head/databases/py-carbon/files/pkg_message.in (props changed) head/databases/py-htsql/pkg-message (props changed) head/databases/redis-devel/files/pkg-message.in (props changed) head/databases/redis/files/pkg-message.in (props changed) head/databases/ruby-gdbm/pkg-message (props changed) head/databases/slony1/files/pkg-message.in (props changed) head/databases/slony1v2/files/pkg-message.in (props changed) head/databases/soci/files/pkg-message.in (props changed) head/databases/sqlbuddy/files/pkg-message.in (props changed) head/databases/sqldeveloper/pkg-message (props changed) head/databases/sqlite-ext-miscfuncs/pkg-message (props changed) head/databases/squirrel-sql/pkg-message (props changed) head/databases/unixODBC/files/pkg-message.in (props changed) head/databases/usogres/files/pkg-message.in (props changed) head/databases/virtuoso/pkg-install (props changed) head/databases/wfb2sql/pkg-message (props changed) head/databases/yasql/files/pkg-message.in (props changed) head/deskutils/adesklets/files/pkg-message.in (props changed) head/deskutils/babytrans/files/pkg-message.in (props changed) head/deskutils/calibre/pkg-message (props changed) head/deskutils/conkyforecast/files/pkg-message.in (props changed) head/deskutils/egroupware/files/pkg-message.in (props changed) head/deskutils/fengoffice/files/pkg-message.in (props changed) head/deskutils/gdesklets-recentlyused/files/pkg-message.in (props changed) head/deskutils/gdesklets-starterbar/files/pkg-message.in (props changed) head/deskutils/gdesklets/pkg-message (props changed) head/deskutils/global-menu/pkg-message (props changed) head/deskutils/horde3-klutz/files/pkg-message.in (props changed) head/deskutils/horde3-kronolith/files/pkg-message.in (props changed) head/deskutils/horde3-mnemo/files/pkg-message.in (props changed) head/deskutils/horde3-nag/files/pkg-message.in (props changed) head/deskutils/howm/pkg-message (props changed) head/deskutils/jlj/files/pkg-message.in (props changed) head/deskutils/ksshaskpass/files/pkg-message.in (props changed) head/deskutils/moregroupware/pkg-message (props changed) head/deskutils/myitcrm/files/pkg-message.in (props changed) head/deskutils/phpcollab/files/pkg-message.in (props changed) head/deskutils/phpicalendar/files/pkg-message.in (props changed) head/deskutils/plans/files/pkg-message.in (props changed) head/deskutils/simplegroupware/files/pkg-message.in (props changed) head/deskutils/sugarcrm/files/pkg-install.in (props changed) head/deskutils/sugarcrm/files/pkg-message.in (props changed) head/deskutils/surrealtodo/files/pkg-message.in (props changed) head/deskutils/thinkingrock/files/pkg-message.in (props changed) head/deskutils/tine20/files/pkg-message.in (props changed) head/deskutils/treeline/pkg-install (props changed) head/devel/9base/pkg-message (props changed) head/devel/aegis/pkg-message (props changed) head/devel/arduino/files/pkg-message.in (props changed) head/devel/aros-sdk/files/pkg-message.in (props changed) head/devel/boost-all/pkg-message.python (props changed) head/devel/boost_build/files/pkg-message.in (props changed) head/devel/bugzilla40/files/pkg-message.in (props changed) head/devel/bugzilla42/files/pkg-message.in (props changed) head/devel/bugzilla44/files/pkg-message.in (props changed) head/devel/cc65/files/pkg-message.in (props changed) head/devel/ccache/files/pkg-message-clang (props changed) head/devel/ccache/files/pkg-message.in (props changed) head/devel/cdash/files/pkg-message.in (props changed) head/devel/cedet/pkg-message (props changed) head/devel/cgit/files/pkg-message.in (props changed) head/devel/chruby/files/pkg-message.in (props changed) head/devel/cl-asdf/files/pkg-message.in (props changed) head/devel/colorgcc/files/pkg-message.in (props changed) head/devel/cons-test/pkg-message (props changed) head/devel/cons/pkg-message (props changed) head/devel/ctags/files/pkg-message.in (props changed) head/devel/cutter/pkg-message (props changed) head/devel/cvs2p4/files/pkg-message.in (props changed) head/devel/cvsd/pkg-message (props changed) head/devel/cvsgraph/files/pkg-message.in (props changed) head/devel/cvsmonitor/pkg-message (props changed) head/devel/cvstrac/pkg-message (props changed) head/devel/cvsweb/files/pkg-message.in (props changed) head/devel/cvsweb3/files/pkg-message.in (props changed) head/devel/cweb/pkg-message (props changed) head/devel/dbus/pkg-install (props changed) head/devel/desktop-file-utils/files/pkg-deinstall.in (props changed) head/devel/desktop-file-utils/files/pkg-install.in (props changed) head/devel/distcc/pkg-install (props changed) head/devel/distcc/pkg-message (props changed) head/devel/eiffelstudio/files/pkg-message.in (props changed) head/devel/elib/pkg-message.emacs19 (props changed) head/devel/fam/files/pkg-message.in (props changed) head/devel/fistgen/files/pkg-message.in (props changed) head/devel/flyspray/files/pkg-install.in (props changed) head/devel/flyspray/files/pkg-message.in (props changed) head/devel/flyspray/pkg-deinstall (props changed) head/devel/fossil/pkg-message (props changed) head/devel/gamin/pkg-message (props changed) head/devel/git-merge-changelog/pkg-message (props changed) head/devel/git/files/pkg-message.in (props changed) head/devel/gitolite/files/pkg-message.in (props changed) head/devel/gitolite2/files/pkg-message.in (props changed) head/devel/gitphp/files/pkg-message.in (props changed) head/devel/gittrac/pkg-message (props changed) head/devel/glib-java/pkg-message (props changed) head/devel/gnome-vfs/pkg-deinstall.in (props changed) head/devel/gnome-vfs/pkg-install.in (props changed) head/devel/gnustep/pkg-message (props changed) head/devel/hg-git/pkg-message (props changed) head/devel/ioncube/files/pkg-message.in (props changed) head/devel/jline/pkg-message (props changed) head/devel/kdesvn-kde4/pkg-message (props changed) head/devel/libburn/pkg-message (props changed) head/devel/libdlmalloc/pkg-message (props changed) head/devel/libgconf-java/pkg-message (props changed) head/devel/libglade-java/pkg-message (props changed) head/devel/libgtop/files/pkg-message (props changed) head/devel/libinotify/pkg-message (props changed) head/devel/libnxt/files/pkg-message.in (props changed) head/devel/libopensync/pkg-message (props changed) head/devel/libopensync022/pkg-message (props changed) head/devel/libpasori/pkg-message (props changed) head/devel/libreadline-java/files/pkg-message.in (props changed) head/devel/libsigsegv/pkg-message (props changed) head/devel/linux-kmod-compat/pkg-message (props changed) head/devel/lxr/files/pkg_message.in (props changed) head/devel/lxr/files/pkg_message.mysql.in (props changed) head/devel/lxr/files/pkg_message.postgresql.in (props changed) head/devel/monotone/files/pkg-message.in (props changed) head/devel/newt/files/pkgIndex.tcl.in (props changed) head/devel/noweb/pkg-install (props changed) head/devel/ocaml-equeue/pkg-install (props changed) head/devel/ocaml-sem/pkg-install (props changed) head/devel/openocd/pkg-message (props changed) head/devel/otrs/files/pkg-install.in (props changed) head/devel/p4d/pkg-message (props changed) head/devel/p4db/files/pkg-message.in (props changed) head/devel/p5-Heap-Simple/pkg-message (props changed) head/devel/p5-Moose/pkg-message (props changed) head/devel/p5-Mouse/pkg-message (props changed) head/devel/p5-ResourcePool/pkg-message (props changed) head/devel/p5-SVN-Web/pkg-message (props changed) head/devel/p5-perlqt/files/pkg-message.in (props changed) head/devel/papi/pkg-message (props changed) head/devel/pcsc-lite/files/pkg-message.in (props changed) head/devel/pecl-operator/pkg-message (props changed) head/devel/pecl-test_helpers/files/pkg-message.in (props changed) head/devel/php-xdebug/files/pkg-message.in (props changed) head/devel/phpbt/pkg-message (props changed) head/devel/phpsh/pkg-message (props changed) head/devel/pinba_engine/files/pkg-message.in (props changed) head/devel/plan9port/files/pkg-message.in (props changed) head/devel/pmk/pkg-install (props changed) head/devel/psvn/pkg-message (props changed) head/devel/ptmalloc/pkg-message (props changed) head/devel/py-aspects/files/pkg-message.in (props changed) head/devel/py-aspyct/pkg-message (props changed) head/devel/py-gitosis/pkg-message (props changed) head/devel/pymacs/pkg-message (props changed) head/devel/ri-emacs/files/pkg-message.in (props changed) head/devel/ros-nxt/pkg-message (props changed) head/devel/ros/files/pkg-message.in (props changed) head/devel/rpm-spec-mode.el/pkg-message (props changed) head/devel/rth/files/pkg-message.in (props changed) head/devel/ruby-qtruby/files/pkg-message.in (props changed) head/devel/sdl12/pkg-message (props changed) head/devel/sfslite/pkg-install (props changed) head/devel/statcvs/files/pkg-message.in (props changed) head/devel/statsvn/files/pkg-message.in (props changed) head/devel/subclipse/pkg-message (props changed) head/devel/subversion/files/pkg-install.in (props changed) head/devel/subversion16/files/pkg-install.in (props changed) head/devel/subversion17/files/pkg-install.in (props changed) head/devel/svntrac/pkg-message (props changed) head/devel/tclgetopts/files/pkgIndex.tcl (props changed) head/devel/tigcc/pkg-message (props changed) head/devel/tortoisehg2/files/pkg-message.in (props changed) head/devel/trac-bitten/files/pkg-message.in (props changed) head/devel/truc/files/pkg-message.in (props changed) head/devel/universalindentgui/pkg-message (props changed) head/devel/valgrind/pkg-message (props changed) head/devel/viewvc/files/pkg-message.in (props changed) head/devel/websvn/files/pkg-message.in (props changed) head/devel/xc3sprog/pkg-message (props changed) head/dns/adsuck/files/pkg-message.in (props changed) head/dns/adsuck/pkg-deinstall (props changed) head/dns/bind96/pkg-install (props changed) head/dns/bind96/pkg-message (props changed) head/dns/bind98/pkg-install (props changed) head/dns/bind98/pkg-message (props changed) head/dns/bind99/pkg-install (props changed) head/dns/bind99/pkg-message (props changed) head/dns/bindgraph/pkg-message (props changed) head/dns/checkdns/files/pkg-message.in (props changed) head/dns/credns/files/pkg-install.in (props changed) head/dns/credns/pkg-message (props changed) head/dns/curvedns/files/pkg-message.in (props changed) head/dns/ddclient/files/pkg-message.in (props changed) head/dns/dnrd/files/pkg-install.in (props changed) head/dns/dnrd/pkg-install (props changed) head/dns/dnscheckengine/files/pkg-deinstall.in (props changed) head/dns/dnscheckengine/files/pkg-install.in (props changed) head/dns/dnscheckengine/files/pkg-message.in (props changed) head/dns/dnscrypt-proxy/files/pkg-message.in (props changed) head/dns/dnsmasq-devel/files/pkg-message.in (props changed) head/dns/dnsmasq/files/pkg-message.in (props changed) head/dns/dnsmax-perl/pkg-message (props changed) head/dns/dnsproxy/files/pkg-message.in (props changed) head/dns/knot/files/pkg-message.in (props changed) head/dns/mdnsd/pkg-message (props changed) head/dns/mydns-ng/files/pkg-message.in (props changed) head/dns/mydns/files/pkg-message.in (props changed) head/dns/noip/files/pkg-message.in (props changed) head/dns/nsd/files/pkg-deinstall.in (props changed) head/dns/nsd/files/pkg-install.in (props changed) head/dns/nsd3/files/pkg-deinstall.in (props changed) head/dns/nsd3/files/pkg-install.in (props changed) head/dns/odsclient/pkg-message (props changed) head/dns/openresolv/files/pkg-deinstall.in (props changed) head/dns/openresolv/files/pkg-message.in (props changed) head/dns/pdnsd/pkg-install (props changed) head/dns/poweradmin/files/pkg-message.in (props changed) head/dns/powerdns-devel/files/pkg-message.in (props changed) head/dns/powerdns-recursor/files/pkg-message.in (props changed) head/dns/powerdns/files/pkg-message.in (props changed) head/dns/radns/files/pkg-message.in (props changed) head/dns/rbldnsd/files/pkg-message.in (props changed) head/dns/sleuth/pkg-message (props changed) head/dns/totd/pkg-deinstall (props changed) head/dns/totd/pkg-install (props changed) head/dns/unbound/files/pkg-message.in (props changed) head/editors/emacs21/pkg-message (props changed) head/editors/gnuserv/pkg-message (props changed) head/editors/lazarus/files/pkg-message.in (props changed) head/editors/led/pkg-message (props changed) head/editors/nxml/pkg-message (props changed) head/editors/openoffice-3/files/pkg-message.in (props changed) head/editors/openoffice-4/files/pkg-message.in (props changed) head/editors/openoffice-devel/files/pkg-message.in (props changed) head/editors/paredit-mode.el/pkg-message (props changed) head/editors/tamago/pkg-message (props changed) head/editors/teco/pkg-message (props changed) head/editors/tetradraw/pkg-message (props changed) head/editors/tpad/files/pkg-message.in (props changed) head/editors/treeform/pkg-message (props changed) head/editors/yasnippet/files/pkg-message.in (props changed) head/emulators/advancemess/pkg-message (props changed) head/emulators/bochs/files/pkg-message.in (props changed) head/emulators/doscmd/pkg-message (props changed) head/emulators/dtcyber/files/pkg-message.in (props changed) head/emulators/dynagen/pkg-deinstall (props changed) head/emulators/dynagen/pkg-install (props changed) head/emulators/fmsx/pkg-message (props changed) head/emulators/generator-cbiere/pkg-message (props changed) head/emulators/generator/pkg-message (props changed) head/emulators/gngeo/files/pkg-message.in (props changed) head/emulators/gns3/pkg-message (props changed) head/emulators/hercules/pkg-message (props changed) head/emulators/jzintv/files/pkg-message.in (props changed) head/emulators/klh10/pkg-message (props changed) head/emulators/kqemu-kmod-devel/pkg-message (props changed) head/emulators/kqemu-kmod/pkg-message (props changed) head/emulators/linux_base-c6/pkg-deinstall (props changed) head/emulators/linux_base-c6/pkg-message (props changed) head/emulators/linux_base-f10/pkg-deinstall (props changed) head/emulators/linux_base-f10/pkg-message (props changed) head/emulators/linux_dist-gentoo-stage3/files/pkg-deinstall.in (props changed) head/emulators/linux_dist-gentoo-stage3/files/pkg-install.in (props changed) head/emulators/linux_dist-gentoo-stage3/files/pkg-message.in (props changed) head/emulators/mame/files/pkg-message.in (props changed) head/emulators/mednafen/files/pkg-message.in (props changed) head/emulators/mess/files/pkg-message.in (props changed) head/emulators/minivmac/pkg-message (props changed) head/emulators/mtools/files/pkg-message.in (props changed) head/emulators/mupen64-rice/pkg-message (props changed) head/emulators/mupen64/files/pkg-message.in (props changed) head/emulators/mupen64plus/files/pkg-message.in (props changed) head/emulators/o2em/pkg-message (props changed) head/emulators/pearpc/files/pkg-message.in (props changed) head/emulators/qmc2/pkg-message (props changed) head/emulators/simh/files/pkg-message.in (props changed) head/emulators/snes9x/files/pkg-message.in (props changed) head/emulators/vMac/files/pkg-message.in (props changed) head/emulators/vba/files/pkg-message.in (props changed) head/emulators/vice/pkg-message (props changed) head/emulators/virtio-kmod/pkg-message (props changed) head/emulators/virtualbox-ose-additions/pkg-message (props changed) head/emulators/virtualbox-ose-legacy/pkg-message (props changed) head/emulators/wine-devel/files/pkg-message.in (props changed) head/emulators/wine/files/pkg-message.in (props changed) head/emulators/x49gp/pkg-message (props changed) head/emulators/xhomer/files/pkg-message.in (props changed) head/emulators/xmame/files/pkg-message.in (props changed) head/emulators/yabause/files/pkg-message.in (props changed) head/finance/frontaccounting/files/pkg-message.in (props changed) head/finance/ledger/pkg-message (props changed) head/finance/ledgersmb12/files/pkg-message.in (props changed) head/finance/openerp-server/files/pkg-message.in (props changed) head/finance/openerp-web/pkg-message (props changed) head/finance/prestashop/files/pkg-message.in (props changed) head/finance/sql-ledger/files/pkg-message.in (props changed) head/finance/trytond/files/pkg-message.in (props changed) head/finance/trytond28/files/pkg-message.in (props changed) head/finance/weberp/files/pkg-message.in (props changed) head/french/aster/files/pkg-message.in (props changed) head/french/aster/files/pkg-message.sans-astk.in (props changed) head/french/eficas/pkg-message (props changed) head/french/facturier/files/pkg-deinstall.in (props changed) head/french/facturier/files/pkg-message.in (props changed) head/french/fortune-mod-zarathoustra/files/pkg-message.in (props changed) head/french/homard/pkg-message (props changed) head/ftp/bsdftpd-ssl/files/pkg-message.in (props changed) head/ftp/frox/files/pkg-message.in (props changed) head/ftp/horde3-gollem/files/pkg-message.in (props changed) head/ftp/ncftpd/files/pkg-message.in (props changed) head/ftp/net2ftp/files/pkg-message.in (props changed) head/ftp/oftpd/pkg-message (props changed) head/ftp/p5-Net-FTPServer/files/pkg-message.in (props changed) head/ftp/pure-ftpd/files/pkg-message.in (props changed) head/ftp/tnftpd/files/pkg-message.in (props changed) head/ftp/vsftpd-ext/pkg-deinstall (props changed) head/ftp/vsftpd-ext/pkg-install (props changed) head/games/actx/pkg-message (props changed) head/games/airstrike/files/pkg-message.in (props changed) head/games/alephone-data/pkg-message (props changed) head/games/alephone-scenarios/pkg-message (props changed) head/games/alephone/pkg-message (props changed) head/games/alienarena/files/pkg-message.in (props changed) head/games/allacrost/pkg-message (props changed) head/games/arx-libertatis/files/pkg-message.in (props changed) head/games/asc/pkg-message (props changed) head/games/atitd/pkg-deinstall (props changed) head/games/atitd/pkg-install (props changed) head/games/atomix/pkg-install (props changed) head/games/avp-demo/pkg-message (props changed) head/games/banihstypos/files/pkg-message.in (props changed) head/games/bass/files/pkg-message.in (props changed) head/games/blackshadeselite/pkg-message (props changed) head/games/blockout/files/pkg-message.in (props changed) head/games/cake/pkg-message (props changed) head/games/conquest/pkg-install (props changed) head/games/conquest/pkg-message (props changed) head/games/crafty-tablebase-no-pawn/pkg-message (props changed) head/games/crafty-tablebase-pawn/pkg-message (props changed) head/games/crafty/pkg-message (props changed) head/games/d2x-xl/files/pkg-message.in (props changed) head/games/d2x/pkg-message (props changed) head/games/doom-data/files/pkg-message.in (props changed) head/games/drcreep/files/pkg-message.in (props changed) head/games/duke3d-data/files/pkg-message.in (props changed) head/games/eboard/pkg-message (props changed) head/games/egoboo/pkg-message (props changed) head/games/einstein/pkg-message (props changed) head/games/enigma/files/pkg-message.in (props changed) head/games/exhaust-ma/pkg-message (props changed) head/games/exhaust/pkg-message (props changed) head/games/exult/files/pkg-message.in (props changed) head/games/fgkicker/pkg-message (props changed) head/games/flightgear/pkg-message (props changed) head/games/freera/files/pkg-message.in (props changed) head/games/fretsonfire/files/pkg-message.in (props changed) head/games/fteqw/files/pkg-message.in (props changed) head/games/gemrb/pkg-message (props changed) head/games/glchess/pkg-message (props changed) head/games/glest/files/pkg-message.in (props changed) head/games/gnome-games/pkg-install (props changed) head/games/gnurobots/pkg-message (props changed) head/games/gweled/pkg-install (props changed) head/games/ioquake3-devel/pkg-message (props changed) head/games/ioquake3/pkg-message (props changed) head/games/iourbanterror/pkg-message (props changed) head/games/ivan/pkg-install (props changed) head/games/jaggedalliance2/files/pkg-message.in (props changed) head/games/jfk/files/pkg-message.in (props changed) head/games/jfsw/files/pkg-message.in (props changed) head/games/joequake/pkg-message (props changed) head/games/lbreakout2/pkg-install (props changed) head/games/lexter/pkg-install (props changed) head/games/libdungeonmaker/files/pkg-message.in (props changed) head/games/linux-darwinia-demo/pkg-message (props changed) head/games/linux-defcon/pkg-message (props changed) head/games/linux-doom3/files/pkg-message.in (props changed) head/games/linux-nerogame/files/pkg-message.in (props changed) head/games/linux-nwnclient/pkg-message (props changed) head/games/linux-quake4/files/pkg-message.in (props changed) head/games/linux-rtcw/pkg-message (props changed) head/games/linux-savage/files/pkg-message.in (props changed) head/games/linux-savage/pkg-install (props changed) head/games/linux-skulltag/files/pkg-message.in (props changed) head/games/linux-sof/files/pkg-message.in (props changed) head/games/linux-ssamtfe/files/pkg-message.in (props changed) head/games/linux-ssamtse/files/pkg-message.in (props changed) head/games/linux-steam/files/pkg-message.in (props changed) head/games/linux-unrealgold/files/pkg-message.in (props changed) head/games/linux-uplink-demo/pkg-message (props changed) head/games/linux-ut/pkg-message (props changed) head/games/marsnomercy/files/pkg-message.in (props changed) head/games/megaglest/files/pkg-message.in (props changed) head/games/minecraft-server/files/pkg-deinstall.in (props changed) head/games/minecraft-server/files/pkg-message.in (props changed) head/games/mkgichessclub/files/pkg-message.in (props changed) head/games/mtaserver/files/pkg-message.in (props changed) head/games/mvdsv/pkg-message (props changed) head/games/naev/files/pkg-message.in (props changed) head/games/nehquake/files/pkg-message.in (props changed) head/games/nethack32/files/pkg-deinstall.in (props changed) head/games/nethack33/files/pkg-deinstall.in (props changed) head/games/netrek-BRMH-bin/pkg-message (props changed) head/games/nighthawk/pkg-install (props changed) head/games/oolite/files/pkg-message.in (props changed) head/games/openarena/pkg-message (props changed) head/games/openastromenace/files/pkg-message.in (props changed) head/games/openjazz/files/pkg-message.in (props changed) head/games/openttd/files/pkg-message.in (props changed) head/games/outerspace/pkg-message (props changed) head/games/pachi/pkg-install (props changed) head/games/powermanga/pkg-install (props changed) head/games/pvpgn/pkg-deinstall (props changed) head/games/pvpgn/pkg-install (props changed) head/games/pydance/files/pkg-message.in (props changed) head/games/pysycache/files/pkg-message.in (props changed) head/games/qix/pkg-deinstall (props changed) head/games/qix/pkg-install (props changed) head/games/qix/pkg-req (props changed) head/games/quake2-3zb2/files/pkg-message.in (props changed) head/games/quake2-data/files/pkg-message.in (props changed) head/games/quake2-rogue/files/pkg-message.in (props changed) head/games/quake2-xatrix/files/pkg-message.in (props changed) head/games/quake2-zaero/files/pkg-message.in (props changed) head/games/quake3-data/files/pkg-message.in (props changed) head/games/quakeforge/files/pkg-message.in (props changed) head/games/reminiscence/files/pkg-message.in (props changed) head/games/rnd_jue/files/pkg-message.in (props changed) head/games/rocksndiamonds-data/files/pkg-deinstall.in (props changed) head/games/rottdc/pkg-message (props changed) head/games/sampsvr/files/pkg-message.in (props changed) head/games/sauerbraten/files/pkg-message.in (props changed) head/games/scourge/files/pkg-message.in (props changed) head/games/sdlquake2/pkg-message (props changed) head/games/sex/pkg-message (props changed) head/games/slashem-tty/files/pkg-deinstall.in (props changed) head/games/slashem-tty/pkg-message (props changed) head/games/sokoban/pkg-install (props changed) head/games/spring/pkg-message (props changed) head/games/stratagus/pkg-message (props changed) head/games/sudoku-sensei/files/pkg-message.in (props changed) head/games/tecnoballz/pkg-install (props changed) head/games/tenebrae/pkg-message (props changed) head/games/tetrinet/pkg-message (props changed) head/games/timeseal/pkg-message.aout (props changed) head/games/traingame/files/pkg-message.in (props changed) head/games/tremulous/pkg-message (props changed) head/games/trojka/files/pkg-message.in (props changed) head/games/typespeed/files/pkg-deinstall.in (props changed) head/games/typespeed/files/pkg-install.in (props changed) head/games/tyrquake/pkg-message (props changed) head/games/ufoai/files/pkg-message.in (props changed) head/games/uhexen2/files/pkg-message.in (props changed) head/games/umark/files/pkg-message.in (props changed) head/games/unnethack/files/pkg-deinstall.in (props changed) head/games/unnethack/pkg-message (props changed) head/games/utserver/files/pkg-message.in (props changed) head/games/vavoom/files/pkg-message.in (props changed) head/games/vdrift/files/pkg-message.in (props changed) head/games/vegastrike/pkg-message (props changed) head/games/wargus/files/pkg-message.in (props changed) head/games/wmquake/pkg-message (props changed) head/games/wolfpack/files/pkg-message.in (props changed) head/games/worldofpadman/pkg-message (props changed) head/games/xjewel/pkg-req (props changed) head/games/xjump/pkg-message (props changed) head/games/xjumpx/files/pkg-message.in (props changed) head/games/xrot/pkg-install (props changed) head/games/xsokoban/pkg-message (props changed) head/games/xye/files/pkg-message.in (props changed) head/games/zangband/files/pkg-message.in (props changed) head/german/BBBike/pkg-message (props changed) head/german/bugzilla40/pkg-message (props changed) head/german/bugzilla42/pkg-message (props changed) head/german/bugzilla44/pkg-message (props changed) head/german/vtiger/files/pkg-message.in (props changed) head/german/wordpress/files/pkg-install.in (props changed) head/german/wordpress/files/pkg-message.in (props changed) head/graphics/cairo-java/files/pkg-message.in (props changed) head/graphics/deegree-csw/files/pkg-message.in (props changed) head/graphics/deegree-igeoportal/files/pkg-message.in (props changed) head/graphics/deegree-wcs/files/pkg-message.in (props changed) head/graphics/deegree-wfs/files/pkg-message.in (props changed) head/graphics/deegree-wms/files/pkg-message.in (props changed) head/graphics/deegree-wps/files/pkg-message.in (props changed) head/graphics/deegree-wpvs/files/pkg-message.in (props changed) head/graphics/enfle/pkg-install (props changed) head/graphics/geoserver/files/pkg-message.in (props changed) head/graphics/giftool/pkg-message (props changed) head/graphics/gimp-resynthesizer/pkg-message (props changed) head/graphics/gracula/files/pkg-message.in (props changed) head/graphics/inventor/files/pkg-message.in (props changed) head/graphics/jumpgis-postgis/pkg-deinstall (props changed) head/graphics/jumpgis-postgis/pkg-install (props changed) head/graphics/kix-kmod/files/pkg-message.in (props changed) head/graphics/liblqr-1/files/pkg-message.in (props changed) head/graphics/mapyrus/files/pkg-message.in (props changed) head/graphics/mypaint/files/pkg-install.in (props changed) head/graphics/ocrfeeder/pkg-message (props changed) head/graphics/opendx/files/pkg-message.in (props changed) head/graphics/orca/pkg-message (props changed) head/graphics/php5-chartdirector/files/pkg-message.in (props changed) head/graphics/py-django-easy-thumbnails/pkg-message (props changed) head/graphics/py-gvgen/pkg-message (props changed) head/graphics/rubyphoto/files/pkg-message.in (props changed) head/graphics/sane-backends/files/pkg-message.in (props changed) head/graphics/sane-backends/pkg-deinstall (props changed) head/graphics/sane-frontends/files/pkg-message.in (props changed) head/graphics/separate/pkg-message (props changed) head/graphics/telak/pkg-message (props changed) head/graphics/xmms-gdancer/pkg-message (props changed) head/graphics/xoris/files/pkg-message.in (props changed) head/graphics/zphoto/pkg-message (props changed) head/hebrew/culmus/pkg-message (props changed) head/hebrew/elmar-fonts/pkg-message (props changed) head/hebrew/he2/pkg-message (props changed) head/hebrew/hspell/files/pkg-message.in (props changed) head/irc/bip/files/pkg-message.in (props changed) head/irc/bitlbee/files/pkg-message.in (props changed) head/irc/bopm/files/pkg-deinstall.in (props changed) head/irc/bopm/files/pkg-message.in (props changed) head/irc/dircproxy/files/pkg-message.in (props changed) head/irc/eggdrop-devel/files/pkg-message.in (props changed) head/irc/eggdrop/files/pkg-message.in (props changed) head/irc/epic4/files/pkg-message.in (props changed) head/irc/epic5/files/pkg-message.in (props changed) head/irc/ezbounce/files/pkg-message.in (props changed) head/irc/ircd-hybrid/files/pkg-message.in (props changed) head/irc/ircd-ratbox-devel/files/pkg-install.in (props changed) head/irc/ircd-ratbox-devel/files/pkg-message.in (props changed) head/irc/ircd-ratbox/files/pkg-install.in (props changed) head/irc/ircd-ratbox/files/pkg-message.in (props changed) head/irc/ircd-ru/files/pkg-message.in (props changed) head/irc/ircproxy/files/pkg-deinstall.in (props changed) head/irc/iroffer-dinoex/pkg-message (props changed) head/irc/iroffer-lamm/pkg-message (props changed) head/irc/iroffer/pkg-message (props changed) head/irc/minbif/files/pkg-message.in (props changed) head/irc/py-fishcrypt/files/pkg-message.in (props changed) head/irc/py-gozerbot/files/pkg-message.in (props changed) head/irc/py-supybot/pkg-message (props changed) head/irc/quassel/files/pkg-message.in (props changed) head/irc/ratbox-respond/files/pkg-message.in (props changed) head/irc/ratbox-services/files/pkg-install.in (props changed) head/irc/ratbox-services/files/pkg-message.in (props changed) head/irc/rbot/files/pkg-message.in (props changed) head/irc/riece/pkg-message (props changed) head/irc/sirc/files/pkg-message-socks (props changed) head/irc/slirc/files/pkg-message.in (props changed) head/irc/srvx/files/pkg-message.in (props changed) head/japanese/FreeWnn-server/files/pkg-install.in (props changed) head/japanese/Wnn6/pkg-install (props changed) head/japanese/alias-fonts/pkg-deinstall (props changed) head/japanese/alias-fonts/pkg-install (props changed) head/japanese/another-htmllint/pkg-message (props changed) head/japanese/asterisk-sounds/files/pkg-message.in (props changed) head/japanese/bugzilla40/pkg-message (props changed) head/japanese/bugzilla42/pkg-message (props changed) head/japanese/bugzilla44/pkg-message (props changed) head/japanese/canna-server/pkg-message (props changed) head/japanese/cannadic/files/pkg-message.in (props changed) head/japanese/cdrom2/files/pkg-message.in (props changed) head/japanese/ctags/files/pkg-message.in (props changed) head/japanese/dbskkd-cdb/files/pkg-message.in (props changed) head/japanese/dvipsk/pkg-message (props changed) head/japanese/ebnetd/files/pkg-message.in (props changed) head/japanese/ebnetd/pkg-install (props changed) head/japanese/edyvalue/pkg-message (props changed) head/japanese/elisa8x8/pkg-req (props changed) head/japanese/elvis/pkg-req (props changed) head/japanese/esecanna/pkg-message (props changed) head/japanese/fcitx-mozc/pkg-message (props changed) head/japanese/font-ipa-uigothic/files/pkg-install.in (props changed) head/japanese/font-ipa/files/pkg-install.in (props changed) head/japanese/font-ipaex/files/pkg-install.in (props changed) head/japanese/font-kochi/files/pkg-install.in (props changed) head/japanese/font-migmix/files/pkg-install.in (props changed) head/japanese/font-migu/files/pkg-install.in (props changed) head/japanese/font-mona-ipa/files/pkg-install.in (props changed) head/japanese/font-motoya-al/files/pkg-install.in (props changed) head/japanese/font-mplus-ipa/files/pkg-install.in (props changed) head/japanese/font-mplus/files/pkg-install.in (props changed) head/japanese/font-ricty/files/pkg-install.in (props changed) head/japanese/font-sazanami/files/pkg-install.in (props changed) head/japanese/font-shinonome/files/pkg-install.in (props changed) head/japanese/font-takao/files/pkg-install.in (props changed) head/japanese/font-ume/files/pkg-install.in (props changed) head/japanese/font-vlgothic/files/pkg-install.in (props changed) head/japanese/gskk/files/pkg-message.in (props changed) head/japanese/guesswork-classic/files/pkg-message.in (props changed) head/japanese/hns/pkg-message (props changed) head/japanese/ibus-anthy/pkg-message (props changed) head/japanese/ibus-mozc/pkg-message (props changed) head/japanese/ibus-skk/pkg-message (props changed) head/japanese/jadetex-ptex/files/pkg-message.in (props changed) head/japanese/jed/pkg-message (props changed) head/japanese/k10/pkg-req (props changed) head/japanese/k12/pkg-req (props changed) head/japanese/kanji18/pkg-req (props changed) head/japanese/kanji26/pkg-req (props changed) head/japanese/kappa20/pkg-req (props changed) head/japanese/kinput2/pkg-message (props changed) head/japanese/mailman/files/pkg-deinstall.in (props changed) head/japanese/mailman/files/pkg-install.in (props changed) head/japanese/mailman/files/pkg-message.in (props changed) head/japanese/man-doc/pkg-message (props changed) head/japanese/man/pkg-install (props changed) head/japanese/marumoji-fonts/pkg-req (props changed) head/japanese/mecab/pkg-message (props changed) head/japanese/migemo/pkg-message (props changed) head/japanese/mikachan-ttfonts/pkg-deinstall (props changed) head/japanese/mikachan-ttfonts/pkg-install (props changed) head/japanese/monafonts-ttf/pkg-deinstall (props changed) head/japanese/monafonts-ttf/pkg-install (props changed) head/japanese/monafonts/pkg-req (props changed) head/japanese/mozc-el/pkg-message (props changed) head/japanese/nhocr/pkg-message (props changed) head/japanese/p5-Encode-EUCJPMS/pkg-message (props changed) head/japanese/p5-Mail-SpamAssassin/pkg-message (props changed) head/japanese/platex-otf/files/pkg-message.in (props changed) head/japanese/prime-el/pkg-message (props changed) head/japanese/ptex/pkg-message (props changed) head/japanese/scim-anthy/pkg-message (props changed) head/japanese/scim-canna/pkg-message (props changed) head/japanese/scim-honoka/pkg-message (props changed) head/japanese/scim-prime/pkg-message (props changed) head/japanese/scim-skk/pkg-message (props changed) head/japanese/scim-tables/pkg-message (props changed) head/japanese/scim-tomoe/pkg-message (props changed) head/japanese/scim-uim/pkg-message (props changed) head/japanese/seaside/pkg-message (props changed) head/japanese/suicavalue/pkg-message (props changed) head/japanese/tcl80/pkg-message (props changed) head/japanese/tiarra/files/pkg-message.in (props changed) head/japanese/tk80/pkg-message (props changed) head/japanese/trac/pkg-message (props changed) head/japanese/wordpress/files/pkg-install.in (props changed) head/japanese/wordpress/files/pkg-message.in (props changed) head/japanese/xdvik/pkg-message (props changed) head/japanese/xjtext/files/pkg-message.in (props changed) head/japanese/yc.el/pkg-message (props changed) head/japanese/zangband/files/pkg-message.in (props changed) head/java/eclipse-pydev/files/pkg-install.in (props changed) head/java/eclipse-pydev/pkg-message (props changed) head/java/jai-imageio/files/pkg-message-jre.in (props changed) head/java/jai-imageio/files/pkg-message-libmap.in (props changed) head/java/jai/files/pkg-message.in (props changed) head/java/javavmwrapper/files/pkg-install.in (props changed) head/java/javavmwrapper/pkg-deinstall (props changed) head/java/jboss5/files/pkg-deinstall.in (props changed) head/java/jboss5/files/pkg-install.in (props changed) head/java/jboss5/files/pkg-message.in (props changed) head/java/jfreechart/pkg-message (props changed) head/java/jikes/pkg-message (props changed) head/java/jlex/files/pkg-message.in (props changed) head/java/linux-sun-jdk16/files/pkg-install.in (props changed) head/java/linux-sun-jdk16/pkg-message (props changed) head/java/linux-sun-jdk17/files/pkg-install.in (props changed) head/java/linux-sun-jdk17/pkg-message (props changed) head/java/linux-sun-jre16/files/pkg-install.in (props changed) head/java/linux-sun-jre16/pkg-message (props changed) head/java/linux-sun-jre17/files/pkg-install.in (props changed) head/java/linux-sun-jre17/pkg-message (props changed) head/java/openjdk6/pkg-message (props changed) head/java/phpeclipse/pkg-message (props changed) head/java/servingxml/pkg-message (props changed) head/java/sqlitejdbc/pkg-message (props changed) head/korean/hanyangfonts/files/pkg-message.in (props changed) head/korean/ibus-hangul/pkg-message (props changed) head/korean/kaistfonts/pkg-message (props changed) head/korean/scim-hangul/pkg-message (props changed) head/korean/scim-tables/pkg-message (props changed) head/lang/asn1c/files/pkg-message.in (props changed) head/lang/ccl/pkg-message (props changed) head/lang/cduce/pkg-install (props changed) head/lang/chicken/pkg-message (props changed) head/lang/clisp/files/pkg-message.in (props changed) head/lang/clojure-mode.el/pkg-message (props changed) head/lang/csharp-mode.el/pkg-message (props changed) head/lang/erlang-runtime15/files/pkg-message.in (props changed) head/lang/erlang-runtime16/files/pkg-message.in (props changed) head/lang/erlang/files/pkg-message.in (props changed) head/lang/fpc-docs/files/pkg-message.in (props changed) head/lang/fpc/files/pkg-message.in (props changed) head/lang/gambit-c/pkg-message (props changed) head/lang/haskell-mode.el/files/pkg-message.in (props changed) head/lang/huc/pkg-message (props changed) head/lang/linux-j/pkg-message (props changed) head/lang/lua-mode.el/pkg-message (props changed) head/lang/metaocaml/files/pkg-message.in (props changed) head/lang/mono/pkg-message (props changed) head/lang/moscow_ml/files/pkg-message.in (props changed) head/lang/onyx/pkg-message (props changed) head/lang/p5-ePerl/pkg-message (props changed) head/lang/php-mode.el/pkg-message (props changed) head/lang/php5/pkg-message.mod (props changed) head/lang/php52/pkg-message.mod (props changed) head/lang/php53/pkg-message.mod (props changed) head/lang/php55/pkg-message.mod (props changed) head/lang/pure/files/pkg-message.in (props changed) head/lang/python-mode.el/pkg-message (props changed) head/lang/python27/files/pkg-message.in (props changed) head/lang/python31/pkg-message (props changed) head/lang/python32/pkg-message (props changed) head/lang/python33/pkg-message (props changed) head/lang/rexx-regutil/files/pkg-message.in (props changed) head/lang/ruby19/pkg-message (props changed) head/lang/ruby20/pkg-message (props changed) head/lang/scsh/pkg-message (props changed) head/lang/sml-nj-devel/files/pkg-install.in (props changed) head/lang/sml-nj/files/pkg-install.in (props changed) head/lang/squeak/files/pkg-message.in (props changed) head/lang/tcl-wrapper/files/pkg-message.in (props changed) head/lang/xds-c/files/pkg-message.in (props changed) head/lang/xds/files/pkg-message.in (props changed) head/mail/alpine/pkg-install (props changed) head/mail/alpine/pkg-message (props changed) head/mail/archiveopteryx/files/pkg-message.in (props changed) head/mail/ask/files/pkg-message.in (props changed) head/mail/assp/files/pkg-install.in (props changed) head/mail/atmail/files/pkg-message.in (props changed) head/mail/avenger/files/pkg-message.in (props changed) head/mail/biffer/pkg-deinstall (props changed) head/mail/biffer/pkg-install (props changed) head/mail/bmf/pkg-message (props changed) head/mail/bogofilter/pkg-install (props changed) head/mail/bsfilter/pkg-message (props changed) head/mail/clamfilter/files/pkg-message.in (props changed) head/mail/claws-mail-clamd/pkg-message (props changed) head/mail/cone/pkg-deinstall (props changed) head/mail/cone/pkg-install (props changed) head/mail/courier/files/pkg-install.in (props changed) head/mail/courier/files/pkg-message.in (props changed) head/mail/couriergraph/files/pkg-message.in (props changed) head/mail/cyrus-imapd2/pkg-deinstall (props changed) head/mail/cyrus-imapd2/pkg-install (props changed) head/mail/cyrus-imapd2/pkg-message (props changed) head/mail/cyrus-imapd22/pkg-deinstall (props changed) head/mail/cyrus-imapd22/pkg-install (props changed) head/mail/cyrus-imapd22/pkg-message (props changed) head/mail/cyrus-imapd23/pkg-deinstall (props changed) head/mail/cyrus-imapd23/pkg-install (props changed) head/mail/cyrus-imapd23/pkg-message (props changed) head/mail/cyrus-imapd24/pkg-deinstall (props changed) head/mail/cyrus-imapd24/pkg-install (props changed) head/mail/cyrus-imapd24/pkg-message (props changed) head/mail/dbmail/pkg-message (props changed) head/mail/dbmail22/files/pkg-message.in (props changed) head/mail/dcc-dccd/files/pkg-install.in (props changed) head/mail/dcc-dccd/files/pkg-message.in (props changed) head/mail/dk-milter/pkg-message (props changed) head/mail/dk-milter/pkg-message.postfix (props changed) head/mail/dma/files/pkg-message.in (props changed) head/mail/dovecot-antispam/pkg-message (props changed) head/mail/dovecot-managesieve/pkg-message (props changed) head/mail/dovecot-sieve/files/pkg-message.in (props changed) head/mail/dovecot/files/pkg-deinstall.in (props changed) head/mail/dovecot/files/pkg-install.in (props changed) head/mail/dovecot/files/pkg-message.in (props changed) head/mail/dovecot2-antispam-plugin/pkg-message (props changed) head/mail/dovecot2-pigeonhole/pkg-message (props changed) head/mail/dovecot2/files/pkg-deinstall.in (props changed) head/mail/dovecot2/files/pkg-message.in (props changed) head/mail/dracmail/files/pkg-message.in (props changed) head/mail/dspam-devel/pkg-message (props changed) head/mail/dspam/pkg-message (props changed) head/mail/ecartis/pkg-install (props changed) head/mail/elmo-devel/pkg-message (props changed) head/mail/elmo/pkg-message (props changed) head/mail/eps/pkg-message (props changed) head/mail/epstools/files/pkg-message.in (props changed) head/mail/esmtp/files/pkg-message.in (props changed) head/mail/exim-monitor/pkg-message (props changed) head/mail/exim/pkg-install (props changed) head/mail/exim/pkg-message (props changed) head/mail/exipick/pkg-message (props changed) head/mail/ezmlm-idx/files/pkg-message.in (props changed) head/mail/faces/pkg-message (props changed) head/mail/fetchmail/files/pkg-message.in (props changed) head/mail/getmail/pkg-message (props changed) head/mail/gld/files/pkg-message.in (props changed) head/mail/greyfix/files/pkg-message.in (props changed) head/mail/greylite/pkg-message (props changed) head/mail/horde3-dimp/files/pkg-message.in (props changed) head/mail/horde3-imp/files/pkg-message.in (props changed) head/mail/horde3-mimp/files/pkg-message.in (props changed) head/mail/horde3-turba/files/pkg-message.in (props changed) head/mail/hotwayd/pkg-message (props changed) head/mail/ilohamail-devel/files/pkg-message.in (props changed) head/mail/ilohamail/files/pkg-message.in (props changed) head/mail/imap-uw/files/pkg-message.in (props changed) head/mail/imap-uw/pkg-req.rev (props changed) head/mail/imap-uw/pkg-req.ssl (props changed) head/mail/isoqlog/files/pkg-message.in (props changed) head/mail/mailgraph/pkg-message (props changed) head/mail/mailmgr/files/pkg-message.in (props changed) head/mail/mailscanner/files/pkg-deinstall.in (props changed) head/mail/mailscanner/files/pkg-install.in (props changed) head/mail/mailscanner/files/pkg-message.in (props changed) head/mail/majordomo/pkg-deinstall (props changed) head/mail/majordomo/pkg-install (props changed) head/mail/mew/files/pkg-message.in (props changed) head/mail/milter-bogom/files/pkg-message.in (props changed) head/mail/milter-bogom/pkg-req (props changed) head/mail/milter-callback/files/pkg-message.in (props changed) head/mail/milter-greylist-devel/files/pkg-message.in (props changed) head/mail/milter-greylist/files/pkg-message.in (props changed) head/mail/milter-regex/pkg-message (props changed) head/mail/milter-skem/pkg-message (props changed) head/mail/mimedefang/files/pkg-message.in (props changed) head/mail/mimedefang/pkg-install (props changed) head/mail/mulberry/pkg-message (props changed) head/mail/nmh/pkg-install (props changed) head/mail/nocc/files/pkg-message.in (props changed) head/mail/nullmailer/files/pkg-deinstall.in (props changed) head/mail/nullmailer/files/pkg-install.in (props changed) head/mail/nullmailer/files/pkg-message.in (props changed) head/mail/offlineimap/files/pkg-message.in (props changed) head/mail/opendkim/files/pkg-message.in (props changed) head/mail/opensmtpd-devel/files/pkg-deinstall.in (props changed) head/mail/opensmtpd-devel/files/pkg-install.in (props changed) head/mail/opensmtpd/files/pkg-deinstall.in (props changed) head/mail/opensmtpd/files/pkg-install.in (props changed) head/mail/openwebmail/pkg-deinstall (props changed) head/mail/openwebmail/pkg-install (props changed) head/mail/ovs/pkg-message (props changed) head/mail/p3scan/files/pkg-message.in (props changed) head/mail/p3scan/pkg-install (props changed) head/mail/p5-FuzzyOcr-devel/files/pkg-message.in (props changed) head/mail/p5-FuzzyOcr/files/pkg-message.in (props changed) head/mail/p5-Mail-ClamAV/pkg-message (props changed) head/mail/p5-Mail-SpamAssassin/files/pkg-install.in (props changed) head/mail/p5-Mail-SpamAssassin/pkg-deinstall (props changed) head/mail/p5-qpsmtpd/files/pkg-message.in (props changed) head/mail/pflogstats/pkg-message (props changed) head/mail/phplist/files/pkg-message.in (props changed) head/mail/phpmailer/files/pkg-message.in (props changed) head/mail/phpmailer2/files/pkg-message.in (props changed) head/mail/pine-pgp-filters/pkg-message (props changed) head/mail/pop-before-smtp/files/pkg-message.in (props changed) head/mail/pop3proxy/pkg-message (props changed) head/mail/pop3vscan/files/pkg-message.in (props changed) head/mail/pop3vscan/pkg-install (props changed) head/mail/popa3d/files/pkg-message.in (props changed) head/mail/popa3d/pkg-deinstall (props changed) head/mail/popa3d/pkg-install (props changed) head/mail/popper/pkg-install (props changed) head/mail/postfix-current/files/pkg-install.in (props changed) head/mail/postfix-current/files/pkg-message.in (props changed) head/mail/postfix-gps/files/pkg-message.in (props changed) head/mail/postfix-policyd-sf/pkg-message (props changed) head/mail/postfix-policyd-spf-perl/files/pkg-message.in (props changed) head/mail/postfix-policyd-spf-python/files/pkg-message.in (props changed) head/mail/postfix-policyd-weight/files/pkg-message.in (props changed) head/mail/postfix-postfwd/files/pkg-message.in (props changed) head/mail/postfix/files/pkg-install.in (props changed) head/mail/postfix/files/pkg-message.in (props changed) head/mail/postfix210/files/pkg-install.in (props changed) head/mail/postfix210/files/pkg-message.in (props changed) head/mail/postfix27/files/pkg-install.in (props changed) head/mail/postfix27/files/pkg-message.in (props changed) head/mail/postfix28/files/pkg-install.in (props changed) head/mail/postfix28/files/pkg-message.in (props changed) head/mail/postfix29/files/pkg-install.in (props changed) head/mail/postfix29/files/pkg-message.in (props changed) head/mail/postfixadmin/files/pkg-message.in (props changed) head/mail/postpals/files/pkg-message.in (props changed) head/mail/proxsmtp/files/pkg-message.in (props changed) head/mail/py-apolicy/files/pkg-message.in (props changed) head/mail/py-ppolicy/files/pkg-message.in (props changed) head/mail/pymsgauth/files/pkg-message.in (props changed) head/mail/qmail-activedir/files/pkg-message.in (props changed) head/mail/qmail-auditor/files/pkg-message.in (props changed) head/mail/qmail-scanner/files/pkg-deinstall.in (props changed) head/mail/qmail-scanner/files/pkg-install.in (props changed) head/mail/qmail-scanner/files/pkg-message.in (props changed) head/mail/qmail-scanner1/files/pkg-deinstall.in (props changed) head/mail/qmail-scanner1/pkg-install (props changed) head/mail/qmail-scanner1/pkg-message (props changed) head/mail/qmail/files/pkg-install.in (props changed) head/mail/qmail/files/pkg-message-ldap.in (props changed) head/mail/qmail/files/pkg-message-mysql.in (props changed) head/mail/qmail/files/pkg-message-tls.in (props changed) head/mail/qmail/files/pkg-message.in (props changed) head/mail/qpopper/files/pkg-message.in (props changed) head/mail/qpopper/pkg-install (props changed) head/mail/qpopper/pkg-req (props changed) head/mail/rbl-milter/pkg-message (props changed) head/mail/rblcheck/pkg-message (props changed) head/mail/relay-ctrl/files/pkg-install.in (props changed) head/mail/relay-ctrl/files/pkg-message.in (props changed) head/mail/ripmime/pkg-message (props changed) head/mail/roundcube-automatic_addressbook/files/pkg-message.in (props changed) head/mail/roundcube-groupvice/files/pkg-message.in (props changed) head/mail/roundcube-mvision2/files/pkg-message.in (props changed) head/mail/roundcube/pkg-message (props changed) head/mail/sastatd/files/pkg-deinstall.in (props changed) head/mail/sastatd/files/pkg-install.in (props changed) head/mail/scam-backscatter/files/pkg-message.in (props changed) head/mail/sccmilter/pkg-deinstall (props changed) head/mail/sccmilter/pkg-message (props changed) head/mail/sendmail/files/pkg-milter (props changed) head/mail/sendmail/pkg-message (props changed) head/mail/sentinel/pkg-message (props changed) head/mail/sgwi/files/pkg-install.in (props changed) head/mail/sgwi/files/pkg-message.in (props changed) head/mail/simscan/files/pkg-install.in (props changed) head/mail/simscan/files/pkg-message.in (props changed) head/mail/smfsav/files/pkg-message.in (props changed) head/mail/smfsav/pkg-deinstall (props changed) head/mail/smfsav/pkg-install (props changed) head/mail/smtpfeed/files/pkg-message.in (props changed) head/mail/smtptrapd/pkg-install (props changed) head/mail/softfail/files/pkg-message.in (props changed) head/mail/spamass-ixhash/files/pkg-message.in (props changed) head/mail/spamass-milter/files/pkg-message.in (props changed) head/mail/spamass-rules/files/pkg-message.in (props changed) head/mail/spambnc/files/pkg-message.in (props changed) head/mail/spamd/files/pkg-install.in (props changed) head/mail/spamd/files/pkg-message.in (props changed) head/mail/spamd/pkg-deinstall (props changed) head/mail/spamguard/files/pkg-message.in (props changed) head/mail/sqlgrey/files/pkg-install.in (props changed) head/mail/squirrelmail-abook_import_export-plugin/files/pkg-message.in (props changed) head/mail/squirrelmail-avelsieve-plugin/files/pkg-message.in (props changed) head/mail/squirrelmail-change_sqlpass-plugin/files/pkg-message.in (props changed) head/mail/squirrelmail-check_quota-plugin/files/pkg-message.in (props changed) head/mail/squirrelmail-mark_read-plugin/files/pkg-message.in (props changed) head/mail/squirrelmail-shared_calendars-plugin/files/pkg-message.in (props changed) head/mail/squirrelmail-spam-buttons-plugin/files/pkg-message.in (props changed) head/mail/squirrelmail-squirrel_logger-plugin/files/pkg-message.in (props changed) head/mail/squirrelmail-unsafe_image_rules-plugin/files/pkg-message.in (props changed) head/mail/squirrelmail/files/pkg-message.in (props changed) head/mail/ssmtp/files/pkg-message.in (props changed) head/mail/swaks/pkg-message (props changed) head/mail/sympa/files/pkg-install.in (props changed) head/mail/synonym/files/pkg-message.in (props changed) head/mail/tmda/files/pkg-message.in (props changed) head/mail/tumgreyspf/files/pkg-deinstall.in (props changed) head/mail/tumgreyspf/files/pkg-install.in (props changed) head/mail/tumgreyspf/files/pkg-message.in (props changed) head/mail/uebimiau/files/pkg-message.in (props changed) head/mail/up-imapproxy/files/pkg-message.in (props changed) head/mail/usendmail/files/pkg-message.in (props changed) head/mail/vexim/files/pkg-message.in (props changed) head/mail/wanderlust-devel/pkg-message (props changed) head/mail/wanderlust/pkg-message (props changed) head/mail/websieve/files/pkg-message.in (props changed) head/mail/xf-spf/files/pkg-message.in (props changed) head/mail/zmailer/files/pkg-install.in (props changed) head/mail/zmailer/pkg-deinstall (props changed) head/mail/zmailer/pkg-message (props changed) head/math/blacs/files/pkg-message.in (props changed) head/math/ess/pkg-message (props changed) head/math/gotoblas/files/pkg-message.in (props changed) head/math/jags/pkg-message (props changed) head/math/javaview/files/pkg-message.in (props changed) head/math/ltl/pkg-message (props changed) head/math/matlab-R2012a-installer/files/pkg-message.in (props changed) head/math/mprime/files/pkg-message.in (props changed) head/math/octave-forge-audio/pkg-message (props changed) head/math/octave-forge-fpl/pkg-message (props changed) head/math/petsc/files/pkg-message.in (props changed) head/math/proofgeneral/files/pkg-message.in (props changed) head/math/py-networkx/pkg-message (props changed) head/math/rapid/files/pkg-message.in (props changed) head/math/scalapack/files/pkg-message.in (props changed) head/math/snns/pkg-message (props changed) head/math/wingz/pkg-install (props changed) head/math/wingz3/pkg-install (props changed) head/math/wxMaxima/pkg-message (props changed) head/misc/achievo/pkg-message (props changed) head/misc/amanda-server/files/pkg-deinstall.in (props changed) head/misc/amanda-server/files/pkg-install.in (props changed) head/misc/amanda-server/files/pkg-message.in (props changed) head/misc/amanda32-server/files/pkg-deinstall.in (props changed) head/misc/amanda32-server/files/pkg-install.in (props changed) head/misc/amanda32-server/files/pkg-message.in (props changed) head/misc/astrolog/pkg-install (props changed) head/misc/bbjd/pkg-message (props changed) head/misc/boxquote.el/pkg-message (props changed) head/misc/compat4x/pkg-message (props changed) head/misc/compat5x/pkg-message (props changed) head/misc/compat6x/pkg-message (props changed) head/misc/compat7x/pkg-message (props changed) head/misc/digitemp/pkg-message (props changed) head/misc/dnetc/files/pkg-deinstall.in (props changed) head/misc/dnetc/files/pkg-install.in (props changed) head/misc/dnetc/files/pkg-message.in (props changed) head/misc/estic/pkg-message (props changed) head/misc/fortune-mod-bible/files/pkg-message.in (props changed) head/misc/fortune-mod-bofh/pkg-message (props changed) head/misc/fortune-mod-futurama/files/pkg-message.in (props changed) head/misc/fxload/files/pkg-message.in (props changed) head/misc/gman/pkg-message (props changed) head/misc/gnomehier/files/pkg-install.in (props changed) head/misc/hicolor-icon-theme/files/pkg-install.in (props changed) head/misc/hotkeys/pkg-message (props changed) head/misc/lesspipe/files/pkg-message.in (props changed) head/misc/libmcal/files/pkg-message.in (props changed) head/misc/localedata/pkg-deinstall (props changed) head/misc/localedata/pkg-install (props changed) head/misc/logsurfer+/files/pkg-message.in (props changed) head/misc/mirmon/files/pkg-message.in (props changed) head/misc/opencyc/pkg-message (props changed) head/misc/shared-mime-info/files/pkg-install.in (props changed) head/misc/table.el/pkg-message (props changed) head/misc/upclient/files/pkg-message.in (props changed) head/misc/zoneinfo/pkg-message (props changed) head/multimedia/bangarang/pkg-message (props changed) head/multimedia/beep-media-player/pkg-message (props changed) head/multimedia/freevo/files/pkg-deinstall.in (props changed) head/multimedia/freevo/files/pkg-install.in (props changed) head/multimedia/freevo/files/pkg-message.in (props changed) head/multimedia/kissdx/files/pkg-message.in (props changed) head/multimedia/lxdvdrip/files/pkg-message.in (props changed) head/multimedia/mplayer/files/pkg-message.in (props changed) head/multimedia/mplayer2/files/pkg-message.in (props changed) head/multimedia/mythtv/files/pkg-message.in (props changed) head/multimedia/ogmrip/pkg-message (props changed) head/multimedia/openquicktime/pkg-install (props changed) head/multimedia/phonon-gstreamer/files/pkg-message.in (props changed) head/multimedia/pvrxxx/pkg-message (props changed) head/multimedia/pwcbsd/pkg-message (props changed) head/multimedia/quark/pkg-message (props changed) head/multimedia/quodlibet/pkg-message (props changed) head/multimedia/sms1xxx-kmod/files/pkg-message.in (props changed) head/multimedia/spook/files/pkg-message.in (props changed) head/multimedia/totem/files/pkg-message.in (props changed) head/multimedia/vtkmpeg2encode/pkg-message (props changed) head/multimedia/xine/pkg-message (props changed) head/net-im/ejabberd/files/pkg-install.in (props changed) head/net-im/ejabberd/files/pkg-message.in (props changed) head/net-im/ejabberd/pkg-deinstall (props changed) head/net-im/gale/pkg-message (props changed) head/net-im/iserverd/pkg-install (props changed) head/net-im/jabber-pyicq/files/pkg-message.in (props changed) head/net-im/jabber/files/pkg-deinstall.in (props changed) head/net-im/jabber/files/pkg-install.in (props changed) head/net-im/jabber/files/pkg-message.in (props changed) head/net-im/jabberd/files/pkg-deinstall.in (props changed) head/net-im/jabberd/files/pkg-install.in (props changed) head/net-im/jggtrans/pkg-message (props changed) head/net-im/jitsi/pkg-message (props changed) head/net-im/libjingle/pkg-message (props changed) head/net-im/licq-osd/pkg-message (props changed) head/net-im/licq-qt-gui/pkg-message (props changed) head/net-im/licq/pkg-message (props changed) head/net-im/linpopup/files/pkg-message.in (props changed) head/net-im/linpopup/pkg-install (props changed) head/net-im/mu-conference/files/pkg-message.in (props changed) head/net-im/openfire-devel/files/pkg-message.in (props changed) head/net-im/openfire-devel/pkg-install (props changed) head/net-im/openfire/pkg-message (props changed) head/net-im/prosody/files/pkg-deinstall.in (props changed) head/net-im/prosody/files/pkg-install.in (props changed) head/net-im/py-punjab/files/pkg-message.in (props changed) head/net-im/skype-devel/pkg-message (props changed) head/net-im/tkabber-plugins/files/pkg-message.in (props changed) head/net-im/twirssi/files/pkg-message.in (props changed) head/net-im/yoono/files/pkg-message.in (props changed) head/net-mgmt/arpwatch/files/pkg-message.in (props changed) head/net-mgmt/aspathtree/files/pkg-message.in (props changed) head/net-mgmt/bigsister/pkg-install (props changed) head/net-mgmt/bpft/pkg-install (props changed) head/net-mgmt/cacti/files/pkg-install.in (props changed) head/net-mgmt/cacti/files/pkg-message.in (props changed) head/net-mgmt/chillispot/files/pkg-message.in (props changed) head/net-mgmt/coovachilli/pkg-message (props changed) head/net-mgmt/cowpatty/files/pkg-message.in (props changed) head/net-mgmt/cricket/files/pkg-message.in (props changed) head/net-mgmt/flow-tools-ng/files/pkg-deinstall.in (props changed) head/net-mgmt/flow-tools-ng/files/pkg-install.in (props changed) head/net-mgmt/flow-tools/files/pkg-deinstall.in (props changed) head/net-mgmt/flow-tools/files/pkg-install.in (props changed) head/net-mgmt/flowd/pkg-deinstall (props changed) head/net-mgmt/flowviewer/files/pkg-message.in (props changed) head/net-mgmt/fruity/files/pkg-message.in (props changed) head/net-mgmt/glpi-plugins-tracker-agent/pkg-message (props changed) head/net-mgmt/glpi-plugins-tracker-server/pkg-message (props changed) head/net-mgmt/ifgraph/files/pkg-deinstall.in (props changed) head/net-mgmt/ifgraph/files/pkg-install.in (props changed) head/net-mgmt/ifgraph/files/pkg-message.in (props changed) head/net-mgmt/iog/pkg-install (props changed) head/net-mgmt/ipacco/files/pkg-message.in (props changed) head/net-mgmt/ipaudit/pkg-message (props changed) head/net-mgmt/ipcad/files/pkg-message.in (props changed) head/net-mgmt/ipplan/files/pkg-message.in (props changed) head/net-mgmt/mk-livestatus/files/pkg-message.in (props changed) head/net-mgmt/mrtg/files/pkg-deinstall.in (props changed) head/net-mgmt/mrtg/files/pkg-install.in (props changed) head/net-mgmt/mrtg/files/pkg-message.in (props changed) head/net-mgmt/nagios-check_puppet/files/pkg-message.in (props changed) head/net-mgmt/nagios-devel/files/pkg-deinstall.in (props changed) head/net-mgmt/nagios-devel/files/pkg-install.in (props changed) head/net-mgmt/nagios-devel/files/pkg-message.in (props changed) head/net-mgmt/nagios-pf-plugin/files/pkg-message.in (props changed) head/net-mgmt/nagios/files/pkg-message.in (props changed) head/net-mgmt/nagvis/files/pkg-deinstall.in (props changed) head/net-mgmt/nagvis/files/pkg-install.in (props changed) head/net-mgmt/ndoutils/files/pkg-message.in (props changed) head/net-mgmt/nedi/files/pkg-message.in (props changed) head/net-mgmt/net-snmp/files/pkg-message.in (props changed) head/net-mgmt/netams-front/files/pkg-message.in (props changed) head/net-mgmt/netams/files/pkg-message.in (props changed) head/net-mgmt/netdisco/files/pkg-message.in (props changed) head/net-mgmt/netdisco/pkg-deinstall (props changed) head/net-mgmt/netdot/files/pkg-install.in (props changed) head/net-mgmt/netdot/files/pkg-message.in (props changed) head/net-mgmt/netmagis-common/pkg-message (props changed) head/net-mgmt/netmond/files/pkg-message.in (props changed) head/net-mgmt/netustad/pkg-message (props changed) head/net-mgmt/netxms/files/pkg-deinstall.in (props changed) head/net-mgmt/netxms/files/pkg-install.in (props changed) head/net-mgmt/ng_ipacct/files/pkg-message.in (props changed) head/net-mgmt/nrpe/files/pkg-message.in (props changed) head/net-mgmt/nsca/files/pkg-message.client.in (props changed) head/net-mgmt/nsca/files/pkg-message.in (props changed) head/net-mgmt/nsca27/files/pkg-message.client.in (props changed) head/net-mgmt/nsca27/files/pkg-message.in (props changed) head/net-mgmt/observium/files/pkg-message.in (props changed) head/net-mgmt/ocsinventory-agent/files/pkg-message.in (props changed) head/net-mgmt/ourmon/files/pkg-message.in (props changed) head/net-mgmt/ourmon/pkg-deinstall (props changed) head/net-mgmt/pancho/pkg-message (props changed) head/net-mgmt/pandorafms_agent/files/pkg-message.in (props changed) head/net-mgmt/pandorafms_server/files/pkg-message.in (props changed) head/net-mgmt/phpweathermap/files/pkg-message.in (props changed) head/net-mgmt/pmacct/files/pkg-message.in (props changed) head/net-mgmt/pnp/files/pkg-deinstall.in (props changed) head/net-mgmt/pnp/files/pkg-install.in (props changed) head/net-mgmt/pnp/files/pkg-message.in (props changed) head/net-mgmt/rackmonkey/files/pkg-message.in (props changed) head/net-mgmt/rackmonkey/pkg-deinstall (props changed) head/net-mgmt/rancid-devel/files/pkg-message.in (props changed) head/net-mgmt/rancid/files/pkg-message.in (props changed) head/net-mgmt/rotorouter/files/pkg-message.in (props changed) head/net-mgmt/rrdbot/files/pkg-message.in (props changed) head/net-mgmt/satellite/pkg-install (props changed) head/net-mgmt/satellite/pkg-message (props changed) head/net-mgmt/sdig/pkg-message (props changed) head/net-mgmt/send/files/pkg-message.in (props changed) head/net-mgmt/smokeping/files/pkg-deinstall.in (props changed) head/net-mgmt/smokeping/files/pkg-message.in (props changed) head/net-mgmt/snmp4nagios/pkg-message (props changed) head/net-mgmt/spectools/pkg-message (props changed) head/net-mgmt/ssgless/pkg-message (props changed) head/net-mgmt/torrus/pkg-message (props changed) head/net-mgmt/wdiag/pkg-message (props changed) head/net-mgmt/weathermap/files/pkg-message.in (props changed) head/net-mgmt/wide-dhcp/pkg-req (props changed) head/net-mgmt/yabm/files/pkg-message.in (props changed) head/net-mgmt/zabbix2-server/files/pkg-message.in (props changed) head/net-mgmt/zabbix22-server/files/pkg-message.in (props changed) head/net-mgmt/zenoss/files/pkg-install.in (props changed) head/net-mgmt/zenoss/pkg-message (props changed) head/net-mgmt/zenpack-checkping/files/pkg-deinstall.in (props changed) head/net-mgmt/zenpack-checkping/files/pkg-message.in (props changed) head/net-mgmt/zenpack-dellmon/files/pkg-deinstall.in (props changed) head/net-mgmt/zenpack-dellmon/files/pkg-message.in (props changed) head/net-mgmt/zenpack-deviceadvdetail/files/pkg-deinstall.in (props changed) head/net-mgmt/zenpack-deviceadvdetail/files/pkg-message.in (props changed) head/net-mgmt/zenpack-devicesearch/files/pkg-deinstall.in (props changed) head/net-mgmt/zenpack-devicesearch/files/pkg-message.in (props changed) head/net-mgmt/zenpack-graphportlet/files/pkg-deinstall.in (props changed) head/net-mgmt/zenpack-graphportlet/files/pkg-message.in (props changed) head/net-mgmt/zenpack-interfacegraphs/files/pkg-deinstall.in (props changed) head/net-mgmt/zenpack-interfacegraphs/files/pkg-message.in (props changed) head/net-mgmt/zenpack-libvirt/files/pkg-deinstall.in (props changed) head/net-mgmt/zenpack-libvirt/files/pkg-message.in (props changed) head/net-mgmt/zenpack-macreport/files/pkg-deinstall.in (props changed) head/net-mgmt/zenpack-macreport/files/pkg-message.in (props changed) head/net-p2p/azureus2/pkg-message (props changed) head/net-p2p/bitflu/files/pkg-message.in (props changed) head/net-p2p/bnbt/files/pkg-message.in (props changed) head/net-p2p/ctorrent/pkg-message (props changed) head/net-p2p/gnunet/files/pkg-message.in (props changed) head/net-p2p/mldonkey-perlreactor/pkg-message (props changed) head/net-p2p/mldonkey-urlslave/pkg-message (props changed) head/net-p2p/mldonkey/files/pkg-message.in (props changed) head/net-p2p/museekplus/pkg-message (props changed) head/net-p2p/opennap/files/pkg-message.in (props changed) head/net-p2p/rtgui/files/pkg-message.in (props changed) head/net-p2p/rtorrent/files/pkg-message.in (props changed) head/net-p2p/teknap/pkg-message (props changed) head/net-p2p/transmission-remote-gui/files/pkg-message.in (props changed) head/net-p2p/verlihub-plugins/pkg-message.plugins (props changed) head/net-p2p/verlihub/files/pkg-message.in (props changed) head/net-p2p/vhcp/files/pkg-message.in (props changed) head/net-p2p/zetacoin/files/pkg-message.in (props changed) head/net/AquaGatekeeper/files/pkg-message.in (props changed) head/net/AquaGatekeeper/pkg-deinstall (props changed) head/net/AquaGatekeeper/pkg-install (props changed) head/net/DarwinStreamingServer/pkg-install (props changed) head/net/DarwinStreamingServer/pkg-message (props changed) head/net/abills/files/pkg-message.in (props changed) head/net/acx100/pkg-message (props changed) head/net/aoe/pkg-message (props changed) head/net/apinger/files/pkg-message.in (props changed) head/net/asterisk-oh323/pkg-message (props changed) head/net/binkd/pkg-install (props changed) head/net/bld/pkg-install (props changed) head/net/ccxstream/pkg-message (props changed) head/net/clamz/pkg-message (props changed) head/net/cnupm/pkg-message (props changed) head/net/csync2/files/pkg-install.in (props changed) head/net/cvsup-mirror/pkg-deinstall (props changed) head/net/cvsup-mirror/pkg-install (props changed) head/net/delegate/files/pkg-message.in (props changed) head/net/dictd/files/pkg-message.in (props changed) head/net/entitymib/pkg-message (props changed) head/net/freebsd-uucp/pkg-message (props changed) head/net/freenet6/files/pkg-message.in (props changed) head/net/freenx/pkg-message (props changed) head/net/freeradius2/files/pkg-install.in (props changed) head/net/freeradius2/files/pkg-message.in (props changed) head/net/freeradius3/files/pkg-install.in (props changed) head/net/freeradius3/files/pkg-message.in (props changed) head/net/freeswitch-core-devel/files/pkg-install.in (props changed) head/net/freeswitch-core-devel/files/pkg-message.in (props changed) head/net/freevrrpd/pkg-message (props changed) head/net/frickin/files/pkg-message.in (props changed) head/net/get_iplayer/pkg-message (props changed) head/net/gnu-dico/files/pkg-message.in (props changed) head/net/gpxe/files/pkg-message.in (props changed) head/net/gutenfetch/files/pkg-message.in (props changed) head/net/haproxy-devel/files/pkg-message.in (props changed) head/net/haproxy/files/pkg-message.in (props changed) head/net/hornetq/pkg-deinstall (props changed) head/net/hornetq/pkg-install (props changed) head/net/iaxmodem/files/pkg-message.in (props changed) head/net/ifdepd/pkg-message (props changed) head/net/ifstated/files/pkg-message.in (props changed) head/net/iodine/pkg-deinstall (props changed) head/net/iodine/pkg-install (props changed) head/net/iodine/pkg-message (props changed) head/net/iplog/files/pkg-message.in (props changed) head/net/iplog/pkg-deinstall (props changed) head/net/isc-dhcp41-client/pkg-message (props changed) head/net/isc-dhcp41-relay/pkg-message (props changed) head/net/isc-dhcp41-server/pkg-message (props changed) head/net/isc-dhcp42-client/pkg-message (props changed) head/net/isc-dhcp42-relay/pkg-message (props changed) head/net/isc-dhcp42-server/pkg-message (props changed) head/net/iscsi-target/pkg-message (props changed) head/net/istgt/files/pkg-message.in (props changed) head/net/jpcap/files/pkg-message.in (props changed) head/net/ladvd/files/pkg-message.in (props changed) head/net/ldapdiff/pkg-message (props changed) head/net/ldapsh/files/pkg-message.in (props changed) head/net/libpcap/files/pkg-message-base (props changed) head/net/linux-f10-nss_ldap/pkg-message (props changed) head/net/liveMedia/pkg-message (props changed) head/net/lvwimax/pkg-message (props changed) head/net/mars_nwe/pkg-message (props changed) head/net/mediatomb/files/pkg-deinstall.in (props changed) head/net/mediatomb/files/pkg-install.in (props changed) head/net/micro_proxy/files/pkg-message.in (props changed) head/net/micro_proxy/pkg-deinstall (props changed) head/net/minidlna/files/pkg-message.in (props changed) head/net/minisapserver/files/pkg-message.in (props changed) head/net/miniupnpd/pkg-message (props changed) head/net/mosh/pkg-message (props changed) head/net/mpich2/files/pkg-message.in (props changed) head/net/netatalk/pkg-message (props changed) head/net/netatalk3/pkg-message (props changed) head/net/neubot/files/pkg_message.in (props changed) head/net/ng_daphne/files/pkg-message.in (props changed) head/net/nocatsplash/pkg-install (props changed) head/net/nph/pkg-install (props changed) head/net/nss_ldap/files/pkg-message.in (props changed) head/net/nstxd/pkg-message (props changed) head/net/ntop/files/pkg-deinstall.in (props changed) head/net/ntop/pkg-message (props changed) head/net/nxserver/pkg-message (props changed) head/net/nyancat/files/pkg-message.in (props changed) head/net/onioncat/pkg-message (props changed) head/net/openbgpd/files/pkg-message.in (props changed) head/net/openistgt/files/pkg-message.in (props changed) head/net/openldap24-server/files/pkg-deinstall.in (props changed) head/net/openldap24-server/files/pkg-message.client.in (props changed) head/net/openldap24-server/files/pkg-message.in (props changed) head/net/openmq/files/pkg-message.in (props changed) head/net/openmq/pkg-deinstall (props changed) head/net/openmq/pkg-install (props changed) head/net/openospfd/pkg-install (props changed) head/net/openradius/pkg-message (props changed) head/net/openser/files/pkg-deinstall.in (props changed) head/net/openser/files/pkg-install.in (props changed) head/net/opentracker/pkg-message (props changed) head/net/p5-Amazon-SQS-Simple/files/pkg-message.in (props changed) head/net/p5-Net-Amazon-EC2/pkg-message (props changed) head/net/p5-Net-Amazon-MechanicalTurk/files/pkg-message.in (props changed) head/net/p5-Net-Amazon-Thumbnail/pkg-message (props changed) head/net/p5-Net-Mosso-CloudFiles/pkg-message (props changed) head/net/phamm/files/pkg-message.in (props changed) head/net/phpldapadmin/files/pkg-install.in (props changed) head/net/phpldapadmin/files/pkg-message.in (props changed) head/net/pipsecd/pkg-message (props changed) head/net/prosearch/files/pkg-message.in (props changed) head/net/proxy-suite/files/pkg-message.in (props changed) head/net/pxe/files/pkg-message.in (props changed) head/net/py-google/pkg-message (props changed) head/net/qadsl/files/pkg-message.in (props changed) head/net/quagga-re/pkg-install (props changed) head/net/quagga/pkg-message (props changed) head/net/radiusd-cistron/pkg-message (props changed) head/net/remmina/files/pkg-message.in (props changed) head/net/repeater/files/pkg-install.in (props changed) head/net/repeater/files/pkg-message.in (props changed) head/net/reposado/files/pkg-message.in (props changed) head/net/rinetd/pkg-message (props changed) head/net/ris/files/pkg-message.in (props changed) head/net/rp-pppoe/pkg-message (props changed) head/net/samba36/files/pkg-deinstall.in (props changed) head/net/samba36/files/pkg-install.in (props changed) head/net/samba36/files/pkg-message.in (props changed) head/net/samba4/files/pkg-message.in (props changed) head/net/scr_ipfm/pkg-message (props changed) head/net/serviio/files/pkg-message.in (props changed) head/net/silc-server/files/pkg-deinstall.in (props changed) head/net/silc-server/files/pkg-message.in (props changed) head/net/siproxd/pkg-deinstall (props changed) head/net/siproxd/pkg-install (props changed) head/net/skystar2/pkg-message (props changed) head/net/smb4k-kde4/files/pkg-message.in (props changed) head/net/sntop/files/pkg-message.in (props changed) head/net/spideroak/pkg-message (props changed) head/net/ssltunnel-server/files/pkg-message.in (props changed) head/net/ssvnc/pkg-message (props changed) head/net/stf-6rd-kmod/pkg-message (props changed) head/net/torsocks/files/pkg-message.in (props changed) head/net/trafshow/pkg-message.nodevfs (props changed) head/net/tsocks/pkg-message (props changed) head/net/ttbudget/pkg-message (props changed) head/net/turnserver/files/pkg-message.in (props changed) head/net/unison-devel/pkg-message (props changed) head/net/unison-devel/pkg-message.nox11 (props changed) head/net/unison/pkg-message (props changed) head/net/unison/pkg-message.nox11 (props changed) head/net/v6eval/files/pkg-message.in (props changed) head/net/vmware-vsphere-cli/pkg-message (props changed) head/net/vnstat/files/pkg-message.in (props changed) head/net/vserver/files/pkg-deinstall.in (props changed) head/net/vserver/files/pkg-install.in (props changed) head/net/wired/pkg-deinstall (props changed) head/net/wired/pkg-install (props changed) head/net/wlan2eth/files/pkg-message.in (props changed) head/net/wmnd/pkg-message (props changed) head/net/wowzamediaserverpro/pkg-message (props changed) head/net/xorp-devel/pkg-deinstall (props changed) head/net/xorp-devel/pkg-install (props changed) head/net/xorp/pkg-deinstall (props changed) head/net/xorp/pkg-install (props changed) head/net/xpvm/files/pkg-message.in (props changed) head/net/xrdp-devel/files/pkg-message.in (props changed) head/net/xrdp/files/pkg-message.in (props changed) head/net/yate/files/pkg-message.in (props changed) head/net/yptransitd/pkg-message (props changed) head/net/zebra/files/pkg-message.in (props changed) head/news/atp/pkg-message (props changed) head/news/cleanfeed/pkg-install (props changed) head/news/diablo/pkg-install (props changed) head/news/diablo/pkg-message (props changed) head/news/fidogate-ds/pkg-install (props changed) head/news/golded+/files/pkg-message.in (props changed) head/news/husky-base-devel/pkg-install (props changed) head/news/inn/files/pkg-install.in (props changed) head/news/leafnode/files/pkg-message.in (props changed) head/news/nn/pkg-install (props changed) head/news/nntp/pkg-message (props changed) head/news/noffle/pkg-message (props changed) head/news/nzbperl/pkg-message (props changed) head/news/sabnzbdplus/files/pkg-message.in (props changed) head/news/slrnface/pkg-message (props changed) head/ports-mgmt/fbsdmon/files/pkg-message.in (props changed) head/ports-mgmt/kports-qt4/pkg-message.nokdebase (props changed) head/ports-mgmt/lsknobs/files/pkg-message.in (props changed) head/ports-mgmt/pkg-devel/pkg-message (props changed) head/ports-mgmt/pkg/pkg-message (props changed) head/ports-mgmt/pkg_add_it/pkg-message (props changed) head/ports-mgmt/pkg_cleanup/files/pkg_cleanup.1 (props changed) head/ports-mgmt/pkg_cleanup/files/pkg_cleanup.c (props changed) head/ports-mgmt/pkg_cutleaves/files/pkg_cutleaves (props changed) head/ports-mgmt/pkg_cutleaves/files/pkg_cutleaves.1 (props changed) head/ports-mgmt/pkg_jail/files/pkg_jail (props changed) head/ports-mgmt/pkg_jail/files/pkg_jail.1 (props changed) head/ports-mgmt/pkg_jail/files/pkg_update (props changed) head/ports-mgmt/pkg_jail/files/pkg_update.1 (props changed) head/ports-mgmt/pkg_remove/src/pkg_remove.txt (props changed) head/ports-mgmt/portaudit/pkg-deinstall (props changed) head/ports-mgmt/portconf/files/pkg-message.in (props changed) head/ports-mgmt/portconf/pkg-deinstall (props changed) head/ports-mgmt/portupgrade/pkg-message (props changed) head/ports-mgmt/pver/pkg-message (props changed) head/ports-mgmt/tinderbox-devel/files/pkg-message.in (props changed) head/ports-mgmt/tinderbox/files/pkg-message.in (props changed) head/print/acrobatviewer/pkg-message (props changed) head/print/acroread8/files/pkg-deinstall.in (props changed) head/print/acroread8/files/pkg-message.in (props changed) head/print/acroread9/files/pkg-deinstall.in (props changed) head/print/acroread9/files/pkg-message.in (props changed) head/print/apsfilter/files/pkg-message.in (props changed) head/print/auctex/pkg-message (props changed) head/print/cups-base/pkg-message (props changed) head/print/cups-samba/files/pkg-message.in (props changed) head/print/cups-smb-backend/files/pkg-message.in (props changed) head/print/cups/pkg-message (props changed) head/print/dvips/pkg-deinstall (props changed) head/print/dvips/pkg-install (props changed) head/print/dvipsk-tetex/files/pkg-install.in (props changed) head/print/enscriptfonts/files/pkg-message.in (props changed) head/print/epsonepl/pkg-message (props changed) head/print/foo2zjs/files/pkg-message.in (props changed) head/print/fpdf/files/pkg-message.in (props changed) head/print/ghostscript7-commfont/files/pkg-message.in (props changed) head/print/ghostscript7/pkg-message (props changed) head/print/ghostscript8/files/pkg-message.in (props changed) head/print/ghostscript9-agpl/files/pkg-message.in (props changed) head/print/ghostscript9/files/pkg-message.in (props changed) head/print/ghostview/pkg-install (props changed) head/print/gsview/files/pkg-message.in (props changed) head/print/guitartex/pkg-message (props changed) head/print/hpijs/pkg-message (props changed) head/print/hplip/files/pkg-message.in (props changed) head/print/latex-auto-greek/pkg-deinstall (props changed) head/print/latex-auto-greek/pkg-install (props changed) head/print/latex-cjk/files/pkg-deinstall.in (props changed) head/print/latex-cjk/files/pkg-install.in (props changed) head/print/latex-cjk/files/pkg-message.in (props changed) head/print/latexmk/pkg-message (props changed) head/print/lyx/pkg-message (props changed) head/print/openprinting/pkg-message (props changed) head/print/passivetex/files/pkg-message.in (props changed) head/print/pdq/pkg-message (props changed) head/print/pmw/files/pkg-message.in (props changed) head/print/pnm2ppa/pkg-install (props changed) head/print/pnm2ppa/pkg-message (props changed) head/print/py-reportlab/pkg-message (props changed) head/print/splix/pkg-message (props changed) head/print/teTeX-base/files/pkg-message.in (props changed) head/print/texinfo/pkg-install (props changed) head/print/xdvi/pkg-deinstall (props changed) head/print/xdvi/pkg-install (props changed) head/print/xdvik/files/pkg-install.in (props changed) head/print/yatex/files/pkg-message.in (props changed) head/russian/artwiz-ru/files/pkg-message.in (props changed) head/russian/bugzilla40/pkg-message (props changed) head/russian/bugzilla42/pkg-message (props changed) head/russian/bugzilla44/pkg-message (props changed) head/russian/fortune-bashorgru/files/pkg-message.in (props changed) head/russian/fortune-bashorgru/pkg-install (props changed) head/russian/fortuneru/files/pkg-message.in (props changed) head/russian/fortuneru/pkg-install (props changed) head/russian/ircd-hybrid/pkg-message (props changed) head/russian/koi8r-ps/pkg-deinstall (props changed) head/russian/koi8r-ps/pkg-message (props changed) head/russian/wordpress/files/pkg-message.in (props changed) head/science/InsightToolkit/files/pkg-message.in (props changed) head/science/afni/files/pkg-message.in (props changed) head/science/cdf/files/pkg-message.in (props changed) head/science/dlpoly-classic/pkg-message (props changed) head/science/dtiquery/files/pkg-message.in (props changed) head/science/gamess/pkg-message (props changed) head/science/gramps/pkg-message (props changed) head/science/libsvm/files/pkg-message.in (props changed) head/science/minc/pkg-message (props changed) head/science/minc2/pkg-message (props changed) head/science/psi3/pkg-message (props changed) head/science/py-DendroPy/pkg-message (props changed) head/security/aide/files/pkg-message.in (props changed) head/security/amap/files/pkg-deinstall.in (props changed) head/security/amap/files/pkg-install.in (props changed) head/security/amavis-stats/files/pkg-message.in (props changed) head/security/amavisd-milter/files/pkg-message.in (props changed) head/security/amavisd-new/files/pkg-deinstall.in (props changed) head/security/amavisd-new/files/pkg-install.in (props changed) head/security/amavisd-new/files/pkg-message.in (props changed) head/security/arpCounterattack/files/pkg-message.in (props changed) head/security/barnyard2/files/pkg-message.in (props changed) head/security/base/files/pkg-message.in (props changed) head/security/bdc/pkg-message (props changed) head/security/bruteblock/files/pkg-message.in (props changed) head/security/bruteforceblocker/files/pkg-message.in (props changed) head/security/bsmtrace/files/pkg-message.in (props changed) head/security/bsp_upektfmess/pkg-deinstall (props changed) head/security/bsp_upektfmess/pkg-req (props changed) head/security/calife-devel/pkg-message (props changed) head/security/cfs/files/pkg-message.in (props changed) head/security/clamav-devel/files/pkg-deinstall.in (props changed) head/security/clamav-devel/files/pkg-install.in (props changed) head/security/clamav-unofficial-sigs/files/pkg-message.in (props changed) head/security/clamav-unofficial-sigs/pkg-deinstall (props changed) head/security/clamav/files/pkg-deinstall.in (props changed) head/security/clamav/files/pkg-install.in (props changed) head/security/clamsmtp/files/pkg-message.in (props changed) head/security/courier-authlib/files/pkg-deinstall.in (props changed) head/security/courier-authlib/files/pkg-install.in (props changed) head/security/courierpassd/pkg-message (props changed) head/security/courierpasswd/pkg-message (props changed) head/security/courieruserinfo/pkg-message (props changed) head/security/cp2fwb/pkg-message (props changed) head/security/cyrus-sasl2-saslauthd/pkg-deinstall (props changed) head/security/cyrus-sasl2-saslauthd/pkg-install (props changed) head/security/cyrus-sasl2-saslauthd/pkg-message (props changed) head/security/cyrus-sasl2/pkg-deinstall (props changed) head/security/cyrus-sasl2/pkg-install (props changed) head/security/cyrus-sasl2/pkg-message (props changed) head/security/denyhosts/files/pkg-message.in (props changed) head/security/doorman/files/pkg-message.in (props changed) head/security/dradis/files/pkg-message.in (props changed) head/security/easypg/pkg-message (props changed) head/security/f-prot/pkg-message (props changed) head/security/fpm2/files/pkg-message.in (props changed) head/security/fprint_demo/pkg-message (props changed) head/security/fswatch/files/pkg-message.in (props changed) head/security/fuzz/pkg-message (props changed) head/security/gnupg/pkg-install (props changed) head/security/gnupg/pkg-message (props changed) head/security/gtkpasman/files/pkg-message.in (props changed) head/security/hunch/pkg-deinstall (props changed) head/security/hunch/pkg-install (props changed) head/security/hunch/pkg-message (props changed) head/security/ifd-slb_rf60/files/pkg-message.in (props changed) head/security/ipfcount/files/pkg-message.in (props changed) head/security/ipfilter2dshield/pkg-deinstall (props changed) head/security/ipfilter2dshield/pkg-message (props changed) head/security/ipfwcount/files/pkg-message.in (props changed) head/security/libgnomesu/pkg-message (props changed) head/security/logcheck/files/pkg-deinstall.in (props changed) head/security/logcheck/files/pkg-install.in (props changed) head/security/logcheck/files/pkg-message.in (props changed) head/security/maia/files/pkg-message.in (props changed) head/security/mailzu/files/pkg-message.in (props changed) head/security/md4coll/pkg-message (props changed) head/security/md5coll/pkg-message (props changed) head/security/monkeysphere/pkg-deinstall (props changed) head/security/obfsproxy/files/pkg-message.in (props changed) head/security/opencryptoki/files/pkg-message.in (props changed) head/security/openct/pkg-message (props changed) head/security/openfwtk/files/pkg-message.in (props changed) head/security/opensc/pkg-message (props changed) head/security/openscep/files/pkg-deinstall.in (props changed) head/security/openscep/files/pkg-install.in (props changed) head/security/openscep/files/pkg-message.in (props changed) head/security/openssh-portable/pkg-message (props changed) head/security/openssl_tpm_engine/files/pkg-message.in (props changed) head/security/openvpn-beta/files/pkg-message.in (props changed) head/security/openvpn-devel/files/pkg-message.in (props changed) head/security/openvpn/files/pkg-message.in (props changed) head/security/ophcrack/pkg-message (props changed) head/security/orthrus/pkg-message (props changed) head/security/osiris/pkg-install (props changed) head/security/osiris/pkg-message (props changed) head/security/ossec-hids-server/files/pkg-message.in (props changed) head/security/pam-mysql/files/pkg-message.in (props changed) head/security/pam-pgsql/pkg-message (props changed) head/security/pam_abl/files/pkg-deinstall.in (props changed) head/security/pam_abl/files/pkg-message.in (props changed) head/security/pam_bsdbioapi/files/pkg-message.in (props changed) head/security/pam_fprint/files/pkg-message.in (props changed) head/security/pam_jail/files/pkg-message.in (props changed) head/security/pam_ldap/pkg-message (props changed) head/security/pam_mkhomedir/files/pkg-message.in (props changed) head/security/pam_smb/pkg-message (props changed) head/security/pear-Crypt_CBC/pkg-deinstall (props changed) head/security/php-openid-ldap/files/pkg-message.in (props changed) head/security/phpdeadlock/files/pkg-message.in (props changed) head/security/pks/files/pkg-deinstall.in (props changed) head/security/pks/files/pkg-message.in (props changed) head/security/pks/pkg-install (props changed) head/security/pktsuckers/pkg-message (props changed) head/security/portsentry/pkg-message (props changed) head/security/ppars/files/pkg-message.in (props changed) head/security/pulledpork/files/pkg-message.in (props changed) head/security/py-PF/files/pkg-message.in (props changed) head/security/quantis-kmod/pkg-message (props changed) head/security/quantis/pkg-message (props changed) head/security/razorback-dispatcher/files/pkg-message.in (props changed) head/security/razorback-yaraNugget/pkg-message (props changed) head/security/rkhunter/pkg-message (props changed) head/security/samhain/files/pkg-install.in (props changed) head/security/samhain/pkg-message (props changed) head/security/sancp/files/pkg-message.in (props changed) head/security/sancp/pkg-deinstall (props changed) head/security/sancp/pkg-install (props changed) head/security/scamp/files/pkg-message.in (props changed) head/security/scanlogd/pkg-message (props changed) head/security/secure_delete/files/pkg-message.in (props changed) head/security/shishi/files/pkg-message.in (props changed) head/security/skipfish/files/pkg-message.in (props changed) head/security/snort/files/pkg-message.in (props changed) head/security/snortreport/files/pkg-message.in (props changed) head/security/snortsam/files/pkg-install.in (props changed) head/security/snortsam/files/pkg-message.in (props changed) head/security/sshblock/files/pkg-message.in (props changed) head/security/sshguard/files/pkg-message.in (props changed) head/security/sshguard/pkg-deinstall (props changed) head/security/sshguard/pkg-install (props changed) head/security/sshit/files/pkg-message.in (props changed) head/security/ssl-admin/files/pkg-message.in (props changed) head/security/sssd/files/pkg-message.in (props changed) head/security/suricata/files/pkg-message.in (props changed) head/security/symbion-sslproxy/files/pkg-message.in (props changed) head/security/tor-devel/files/pkg-message.in (props changed) head/security/tor/files/pkg-message.in (props changed) head/security/tripwire/files/pkg-deinstall.in (props changed) head/security/trousers/files/pkg-message.in (props changed) head/security/truecrypt/pkg-message (props changed) head/security/unicornscan/files/pkg-message.in (props changed) head/security/vnccrack/files/pkg-message.in (props changed) head/security/vxquery/files/pkg_check.sh (props changed) head/security/webfwlog/files/pkg-message.in (props changed) head/security/yafic/pkg-message (props changed) head/shells/bash-completion/files/pkg-message.in (props changed) head/shells/bash/pkg-deinstall (props changed) head/shells/bash/pkg-install (props changed) head/shells/bashc/pkg-deinstall (props changed) head/shells/bashc/pkg-install (props changed) head/shells/fd/pkg-message (props changed) head/shells/fish/pkg-deinstall (props changed) head/shells/flash/files/pkg-message.in (props changed) head/shells/heirloom-sh/pkg-deinstall (props changed) head/shells/heirloom-sh/pkg-install (props changed) head/shells/ibsh/files/pkg-message.in (props changed) head/shells/psh/files/pkg-deinstall.in (props changed) head/shells/psh/files/pkg-install.in (props changed) head/shells/wapsh/files/pkg-message.in (props changed) head/sysutils/3dm/pkg-install (props changed) head/sysutils/3dm/pkg-message (props changed) head/sysutils/DTraceToolkit/pkg-message (props changed) head/sysutils/LPRng/files/pkg-install.in (props changed) head/sysutils/LPRng/files/pkg-message.in (props changed) head/sysutils/LPRngTool/pkg-install (props changed) head/sysutils/afbinit/pkg-message (props changed) head/sysutils/anacron/files/pkg-message.in (props changed) head/sysutils/apcpwr/pkg-message (props changed) head/sysutils/apcupsd/files/pkg-message.in (props changed) head/sysutils/asusoled/files/pkg-message.in (props changed) head/sysutils/atop/files/pkg-message.in (props changed) head/sysutils/autojump/files/pkg-install.in (props changed) head/sysutils/autojump/pkg-deinstall (props changed) head/sysutils/autojump/pkg-message (props changed) head/sysutils/automount/pkg-install (props changed) head/sysutils/backupme/pkg-message (props changed) head/sysutils/bacula-server/files/pkg-deinstall.client.in (props changed) head/sysutils/bacula-server/files/pkg-deinstall.server.in (props changed) head/sysutils/bacula-server/files/pkg-install.client.in (props changed) head/sysutils/bacula-server/files/pkg-install.server.in (props changed) head/sysutils/bacula-server/files/pkg-message.client.in (props changed) head/sysutils/bashburn/pkg-message (props changed) head/sysutils/be_agent/files/pkg-message.in (props changed) head/sysutils/biosfont/pkg-message (props changed) head/sysutils/boxbackup-devel/files/pkg-message.client (props changed) head/sysutils/boxbackup-devel/files/pkg-message.server (props changed) head/sysutils/boxbackup/files/pkg-message.in (props changed) head/sysutils/bsd-splash-changer/files/pkg-message.in (props changed) head/sysutils/bsdstats/files/pkg-message.in (props changed) head/sysutils/bsdstats/pkg-install (props changed) head/sysutils/cdrtools-devel/files/pkg-message.in (props changed) head/sysutils/cdrtools-devel/pkg-install.rscsi (props changed) head/sysutils/cdrtools/files/pkg-message.in (props changed) head/sysutils/cdrtools/pkg-install.rscsi (props changed) head/sysutils/clockspeed/pkg-message (props changed) head/sysutils/colorize/files/pkg-message.in (props changed) head/sysutils/comconsole/pkg-deinstall (props changed) head/sysutils/comconsole/pkg-install (props changed) head/sysutils/condor/files/pkg-message.in (props changed) head/sysutils/contool/pkg-message (props changed) head/sysutils/cpupowerd/pkg-message (props changed) head/sysutils/cromwell/files/pkg-message.in (props changed) head/sysutils/cvsweb-converters/pkg-message (props changed) head/sysutils/daedalus/pkg-message (props changed) head/sysutils/debootstrap/pkg-message (props changed) head/sysutils/doinkd/pkg-message (props changed) head/sysutils/downtimed/pkg-message (props changed) head/sysutils/dtc/pkg-message (props changed) head/sysutils/e2fsprogs/pkg-install (props changed) head/sysutils/eiciel/pkg-message (props changed) head/sysutils/eject/pkg-message (props changed) head/sysutils/env4801/pkg-message (props changed) head/sysutils/epylog/files/pkg-deinstall.in (props changed) head/sysutils/epylog/files/pkg-install.in (props changed) head/sysutils/fcron/files/pkg-message.in (props changed) head/sysutils/fcron/pkg-deinstall (props changed) head/sysutils/fcron/pkg-install (props changed) head/sysutils/feather/files/pkg-message.in (props changed) head/sysutils/flexbackup/files/pkg-message.in (props changed) head/sysutils/freebsd-snapshot/files/pkg-deinstall.in (props changed) head/sysutils/freebsd-snapshot/files/pkg-message.in (props changed) head/sysutils/freqsdwn/pkg-message (props changed) head/sysutils/froxlor/files/pkg-deinstall.in (props changed) head/sysutils/froxlor/files/pkg-message.in (props changed) head/sysutils/fusefs-afuse/files/pkg-message.in (props changed) head/sysutils/fusefs-kmod/files/pkg-message.in (props changed) head/sysutils/fusefs-libs/pkg-message (props changed) head/sysutils/fusefs-ntfs/files/pkg-message.in (props changed) head/sysutils/fusefs-s3fs/pkg-message (props changed) head/sysutils/fusefs-smbnetfs/files/pkg-message.in (props changed) head/sysutils/fusefs-sqlfs/pkg-message (props changed) head/sysutils/fusefs-sshfs/pkg-message (props changed) head/sysutils/fvcool/files/pkg-message.in (props changed) head/sysutils/ganglia-monitor-core/files/pkg-install.in (props changed) head/sysutils/ganglia-webfrontend/files/pkg-install.in (props changed) head/sysutils/ganglia-webfrontend/files/pkg-message.in (props changed) head/sysutils/ganglia-webfrontend/files/pkg-opts (props changed) head/sysutils/gapcmon/files/pkg-message.in (props changed) head/sysutils/gather/files/pkg-message.in (props changed) head/sysutils/gdisk/pkg-message (props changed) head/sysutils/geomWatch/files/pkg-message.in (props changed) head/sysutils/getdelta/files/pkg-message.in (props changed) head/sysutils/gkrellm/pkg-message (props changed) head/sysutils/gkrelltop/pkg-message (props changed) head/sysutils/gosa/files/pkg-message.in (props changed) head/sysutils/graid5/files/pkg-deinstall.in (props changed) head/sysutils/graphicboot/pkg-message (props changed) head/sysutils/grok/files/pkg-message.in (props changed) head/sysutils/hal/files/pkg-deinstall.in (props changed) head/sysutils/hal/files/pkg-install.in (props changed) head/sysutils/heartbeat/files/pkg-install.in (props changed) head/sysutils/heartbeat/files/pkg-message.in (props changed) head/sysutils/hilite/pkg-message (props changed) head/sysutils/htop/pkg-message (props changed) head/sysutils/isc-cron/files/pkg-message.in (props changed) head/sysutils/ispman/pkg-deinstall (props changed) head/sysutils/ispman/pkg-install (props changed) head/sysutils/istatd/files/pkg-message.in (props changed) head/sysutils/jailuser/files/pkg-message.in (props changed) head/sysutils/k3b-kde4/pkg-message (props changed) head/sysutils/kfloppy/pkg-message (props changed) head/sysutils/lcdproc/files/pkg-message.in (props changed) head/sysutils/lire/pkg-message (props changed) head/sysutils/lmon/pkg-message (props changed) head/sysutils/logtool/pkg-message (props changed) head/sysutils/lookupd/files/pkg-message.in (props changed) head/sysutils/lookupd_ldap/pkg-message (props changed) head/sysutils/lxtask/pkg-message (props changed) head/sysutils/mcelog/pkg-message (props changed) head/sysutils/mcweject/files/pkg-message.in (props changed) head/sysutils/memfetch/pkg-message (props changed) head/sysutils/memtest86+/files/pkg-message.in (props changed) head/sysutils/memtest86/files/pkg-message.in (props changed) head/sysutils/mgeupsd/files/pkg-message.in (props changed) head/sysutils/monit/files/pkg-message.in (props changed) head/sysutils/monitord/pkg-message (props changed) head/sysutils/monitorix/files/pkg-message.in (props changed) head/sysutils/mono-kmod/files/pkg-message.in (props changed) head/sysutils/moosefs-chunkserver/files/pkg-message.in (props changed) head/sysutils/moosefs-master/files/pkg-deinstall.in (props changed) head/sysutils/moosefs-master/files/pkg-install.in (props changed) head/sysutils/moosefs-master/files/pkg-message.in (props changed) head/sysutils/mountsmb2/files/pkg-message.in (props changed) head/sysutils/msyslog/pkg-message (props changed) head/sysutils/munin-master/files/pkg-message.in (props changed) head/sysutils/munin-master/pkg-deinstall (props changed) head/sysutils/munin-master/pkg-install (props changed) head/sysutils/nautilus-cd-burner/pkg-message (props changed) head/sysutils/ntfsprogs/files/pkg-message.in (props changed) head/sysutils/open/files/pkg-message.in (props changed) head/sysutils/p5-Tail-Stat/pkg-deinstall (props changed) head/sysutils/p5-Tail-Stat/pkg-install (props changed) head/sysutils/p5-Ubic/pkg-message (props changed) head/sysutils/pcfclock/pkg-install (props changed) head/sysutils/personality/pkg-message (props changed) head/sysutils/pmap/pkg-message (props changed) head/sysutils/policykit/pkg-install (props changed) head/sysutils/polkit/pkg-install (props changed) head/sysutils/puppet-mode.el/pkg-message (props changed) head/sysutils/puppet/files/pkg-message.in (props changed) head/sysutils/puppet27/files/pkg-message.in (props changed) head/sysutils/pydf/files/pkg-message.in (props changed) head/sysutils/qjail/files/pkg-message.in (props changed) head/sysutils/qjail2/pkg-message (props changed) head/sysutils/qzeitgeist/pkg-message (props changed) head/sysutils/radmind/files/pkg-install.in (props changed) head/sysutils/radmind/files/pkg-message.in (props changed) head/sysutils/rsyncbackup/files/pkg-message.in (props changed) head/sysutils/rsyncmanager/pkg-message (props changed) head/sysutils/rsyslog7-devel/files/pkg-message.in (props changed) head/sysutils/rsyslog7/files/pkg-message.in (props changed) head/sysutils/rsyslog8-devel/files/pkg-message.in (props changed) head/sysutils/samesame/pkg-message (props changed) head/sysutils/scalpel/files/pkg-message.in (props changed) head/sysutils/scanbuttond/files/pkg-message.in (props changed) head/sysutils/scprotect/pkg-message (props changed) head/sysutils/sievelog/files/pkg-message.in (props changed) head/sysutils/smartmontools/files/pkg-message.in (props changed) head/sysutils/snowlog/pkg-message (props changed) head/sysutils/ssync/pkg-message (props changed) head/sysutils/symon/files/pkg-message.in (props changed) head/sysutils/syslog-ng-devel/files/pkg-message.in (props changed) head/sysutils/syslog-ng/files/pkg-message.in (props changed) head/sysutils/syslog-ng2/files/pkg-message.in (props changed) head/sysutils/syslog-ng33/files/pkg-message.in (props changed) head/sysutils/tarsnap/pkg-message (props changed) head/sysutils/ttyload/files/pkg-message.in (props changed) head/sysutils/upsdaemon/pkg-message (props changed) head/sysutils/uschedule/pkg-message (props changed) head/sysutils/usermin/files/pkg-message.in (props changed) head/sysutils/virtualmin/pkg-message (props changed) head/sysutils/webmin/files/pkg-message.in (props changed) head/sysutils/wmcube-gdk/files/pkg-message.in (props changed) head/sysutils/wmcube/files/pkg-message.in (props changed) head/sysutils/xcdroast/pkg-message (props changed) head/sysutils/xsi/pkg-install (props changed) head/sysutils/zfs-periodic/pkg-message (props changed) head/sysutils/zfs-snapshot-mgmt/files/pkg-message.in (props changed) head/sysutils/zfs-snapshot-mgmt/pkg-deinstall (props changed) head/sysutils/zfsnap/pkg-message (props changed) head/textproc/codespell/files/pkg-message.in (props changed) head/textproc/crimson/pkg-message (props changed) head/textproc/dictionary/pkg-message (props changed) head/textproc/docbook-xsl/files/pkg-deinstall.in (props changed) head/textproc/docbook-xsl/files/pkg-install.in (props changed) head/textproc/docbookide.el/pkg-message (props changed) head/textproc/dsssl-docbook-modular/pkg-message (props changed) head/textproc/extract_url/files/pkg-message.in (props changed) head/textproc/foiltex/pkg-deinstall (props changed) head/textproc/foiltex/pkg-install (props changed) head/textproc/hevea/pkg-message (props changed) head/textproc/htmlize.el/pkg-message (props changed) head/textproc/ibus-qt/pkg-message (props changed) head/textproc/ibus/pkg-message (props changed) head/textproc/kmfl-sil-ipa-unicode/files/pkg-message.in (props changed) head/textproc/kmflcomp/files/pkg-message.in (props changed) head/textproc/latex2html/files/pkg-message.in (props changed) head/textproc/manued.el/pkg-message (props changed) head/textproc/markdown-mode.el/pkg-message (props changed) head/textproc/mgdiff/pkg-message (props changed) head/textproc/mifluz/files/pkg-message.in (props changed) head/textproc/ml1/pkg-message (props changed) head/textproc/ocaml-expat/pkg-install (props changed) head/textproc/p5-Spork/pkg-message (props changed) head/textproc/p5-XML-LibXML/pkg-install (props changed) head/textproc/p5-XML-SAX-Expat/pkg-deinstall (props changed) head/textproc/p5-XML-SAX-Expat/pkg-install (props changed) head/textproc/p5-XML-SAX-ExpatXS/pkg-deinstall (props changed) head/textproc/p5-XML-SAX-ExpatXS/pkg-install (props changed) head/textproc/pootle/files/pkg-install.in (props changed) head/textproc/ppower4/pkg-deinstall (props changed) head/textproc/ppower4/pkg-install (props changed) head/textproc/py-4suite-xml/files/pkg-message.in (props changed) head/textproc/py-4suite/files/pkg-message.in (props changed) head/textproc/py-pyx12/files/pkg-deinstall.in (props changed) head/textproc/qstardict/pkg-message (props changed) head/textproc/resume/pkg-message (props changed) head/textproc/ruby-rd-mode.el/pkg-message (props changed) head/textproc/ruby-rdtool/pkg-message (props changed) head/textproc/rubygem-rdtool/pkg-message (props changed) head/textproc/scim-input-pad/pkg-message (props changed) head/textproc/scim-kmfl-imengine/files/pkg-message.in (props changed) head/textproc/scim-table-imengine/pkg-message (props changed) head/textproc/scrollkeeper/pkg-install (props changed) head/textproc/sdcv/files/pkg-message.in (props changed) head/textproc/sgmlformat/pkg-message (props changed) head/textproc/simplehtmldom/files/pkg-message.in (props changed) head/textproc/slides/files/pkg-deinstall.in (props changed) head/textproc/slides/files/pkg-install.in (props changed) head/textproc/spellutils/pkg-message (props changed) head/textproc/sphinxsearch-devel/files/pkg-deinstall.in (props changed) head/textproc/sphinxsearch/files/pkg-deinstall.in (props changed) head/textproc/srilm/pkg-message (props changed) head/textproc/stardict3/pkg-message (props changed) head/textproc/tclExpat/files/pkgIndex.tcl.in (props changed) head/textproc/tth/pkg-message (props changed) head/textproc/unoconv/files/pkg-message.in (props changed) head/textproc/website/files/pkg-deinstall.in (props changed) head/textproc/website/files/pkg-install.in (props changed) head/textproc/wordnet/files/pkg-message.in (props changed) head/textproc/wv/pkg-message (props changed) head/textproc/xml-lite.el/pkg-message (props changed) head/textproc/xml2rfc/pkg-message (props changed) head/textproc/xmlcatmgr/files/pkg-deinstall.in (props changed) head/textproc/xmlcatmgr/files/pkg-install.in (props changed) head/textproc/xmlcatmgr/files/pkg-message.in (props changed) head/textproc/xslide.el/pkg-message (props changed) head/textproc/yaml-mode.el/pkg-message (props changed) head/ukrainian/emacs-koi8u/pkg-message (props changed) head/ukrainian/monacofonts/pkg-message (props changed) head/vietnamese/unicode-uhoai/pkg-install (props changed) head/vietnamese/vntex/pkg-deinstall (props changed) head/vietnamese/vntex/pkg-install (props changed) head/vietnamese/vnxfonts/pkg-install (props changed) head/vietnamese/xvnkb/files/pkg-message.in (props changed) head/www/abyssws/pkg-deinstall (props changed) head/www/abyssws/pkg-install (props changed) head/www/ach/files/pkg-message.in (props changed) head/www/adzap/files/pkg-message.in (props changed) head/www/ajaxplorer/files/pkg-message.in (props changed) head/www/analog/files/pkg-message.in (props changed) head/www/aolserver/files/pkg-deinstall.in (props changed) head/www/aolserver/files/pkg-install.in (props changed) head/www/aolserver/files/pkg-message.in (props changed) head/www/apache-forrest/pkg-message (props changed) head/www/apache-mode.el/pkg-message (props changed) head/www/apache22/pkg-message (props changed) head/www/asterisk-stat/files/pkg-message.in (props changed) head/www/atutor/files/pkg-message.in (props changed) head/www/autoindex2/pkg-message (props changed) head/www/awstats/files/pkg-message.in (props changed) head/www/b2evolution/pkg-message (props changed) head/www/b2evolution/pkg-warning (props changed) head/www/bacula-web/files/pkg-message.in (props changed) head/www/baikal/files/pkg-message.in (props changed) head/www/bblog/files/pkg-message.in (props changed) head/www/bigbluebutton/files/pkg-message.in (props changed) head/www/bk2site/pkg-message (props changed) head/www/blogsum/files/pkg-message.in (props changed) head/www/bluefish/pkg-message (props changed) head/www/c-icap/files/pkg-deinstall.in (props changed) head/www/c-icap/files/pkg-install.in (props changed) head/www/cacheboy16/files/pkg-deinstall.in (props changed) head/www/cacheboy16/files/pkg-install.in (props changed) head/www/cacheboy16/files/pkg-message.in (props changed) head/www/cadaver/pkg-message (props changed) head/www/cakephp11/files/pkg-message.in (props changed) head/www/cakephp12/files/pkg-message-no-apache.in (props changed) head/www/cakephp12/files/pkg-message.in (props changed) head/www/cakephp13/files/pkg-message-no-apache.in (props changed) head/www/cakephp13/files/pkg-message.in (props changed) head/www/cakephp21/files/pkg-message-no-apache.in (props changed) head/www/cakephp21/files/pkg-message.in (props changed) head/www/cakephp22/files/pkg-message-no-apache.in (props changed) head/www/cakephp22/files/pkg-message.in (props changed) head/www/cakephp23/files/pkg-message-no-apache.in (props changed) head/www/cakephp23/files/pkg-message.in (props changed) head/www/caudium14/pkg-message (props changed) head/www/cgiwrap/pkg-message (props changed) head/www/chems/files/pkg-message.in (props changed) head/www/cherokee/files/pkg-install.in (props changed) head/www/cherokee/files/pkg-message.in (props changed) head/www/claroline/files/pkg-message.in (props changed) head/www/cmsmadesimple/files/pkg-message.in (props changed) head/www/cocoon/files/pkg-deinstall.in (props changed) head/www/cocoon/files/pkg-install.in (props changed) head/www/codeigniter/files/pkg-message-apache.in (props changed) head/www/codeigniter/files/pkg-message-noapache.in (props changed) head/www/coppermine/files/pkg-message.in (props changed) head/www/crp/pkg-message (props changed) head/www/dalbum/files/pkg-message.in (props changed) head/www/dansguardian-devel/pkg-message (props changed) head/www/dansguardian/pkg-message (props changed) head/www/diamanda/files/pkg-message.in (props changed) head/www/docebo/files/pkg-message.in (props changed) head/www/dojo-shrinksafe/pkg-message (props changed) head/www/dojo/files/pkg-message.in (props changed) head/www/dokeos/pkg-message (props changed) head/www/dokuwiki/files/pkg-message.in (props changed) head/www/dotclear/files/pkg-message.in (props changed) head/www/dotproject/files/pkg-message.in (props changed) head/www/dpsearch/files/pkg-message.in (props changed) head/www/dpsearch/pkg-deinstall (props changed) head/www/dpsearch/pkg-install (props changed) head/www/drupal6-geshifilter/files/pkg-message.in (props changed) head/www/drupal6/files/pkg-message.in (props changed) head/www/drupal7/files/pkg-message.in (props changed) head/www/dwoo/files/pkg-message.in (props changed) head/www/e107/files/pkg-message.in (props changed) head/www/eaccelerator/files/pkg-message.in (props changed) head/www/efront/files/pkg-message.in (props changed) head/www/eldav.el/pkg-message (props changed) head/www/elgg/files/pkg-message.in (props changed) head/www/elog/files/pkg-deinstall.in (props changed) head/www/elog/files/pkg-install.in (props changed) head/www/emacs-w3m/pkg-message (props changed) head/www/entrans/pkg-message (props changed) head/www/extjs/files/pkg-message.in (props changed) head/www/extsm/pkg-message (props changed) head/www/eyeos/files/pkg-message.in (props changed) head/www/fira-webfont/files/pkg-message.in (props changed) head/www/firefox-remote/pkg-message (props changed) head/www/fluxbb/files/pkg-message.in (props changed) head/www/fluxcms/files/pkg-deinstall.in (props changed) head/www/fluxcms/files/pkg-message.in (props changed) head/www/fnord/files/pkg-message.in (props changed) head/www/formication/files/pkg-message.in (props changed) head/www/foswiki/files/pkg-install.in (props changed) head/www/foswiki/files/pkg-message-apache.in (props changed) head/www/foswiki/files/pkg-message-noapache.in (props changed) head/www/freeway/files/pkg-message.in (props changed) head/www/ftasv/files/pkg-message.in (props changed) head/www/g-gcl/pkg-message (props changed) head/www/gallery/files/pkg-message.in (props changed) head/www/gallery2/files/pkg-message.in (props changed) head/www/gallery3/files/pkg-message.in (props changed) head/www/geeklog/files/pkg-message.in (props changed) head/www/geronimo/files/pkg-deinstall.in (props changed) head/www/glpi/pkg-message (props changed) head/www/gnome-user-share/pkg-message (props changed) head/www/grails/files/pkg-message.in (props changed) head/www/groupoffice/files/pkg-message.in (props changed) head/www/hastymail/files/pkg-message.in (props changed) head/www/hastymail2-devel/files/pkg-message.in (props changed) head/www/hastymail2/files/pkg-message.in (props changed) head/www/havp/files/pkg-deinstall.in (props changed) head/www/havp/files/pkg-install.in (props changed) head/www/hiawatha/files/pkg-message.in (props changed) head/www/horde3-base/files/pkg-deinstall.in (props changed) head/www/horde3-base/files/pkg-install.in (props changed) head/www/horde3-base/files/pkg-message.common.in (props changed) head/www/horde3-base/files/pkg-message.in (props changed) head/www/horde3-passwd/files/pkg-message.in (props changed) head/www/hotcrp/files/pkg-message.in (props changed) head/www/hs-http-server/files/pkg-message.in (props changed) head/www/httptunnel/pkg-deinstall (props changed) head/www/httptunnel/pkg-install (props changed) head/www/hydra/files/pkg-deinstall.in (props changed) head/www/ikiwiki/pkg-message (props changed) head/www/ilias/files/pkg-message.in (props changed) head/www/impresscms/files/pkg-message.in (props changed) head/www/interchange/pkg-deinstall (props changed) head/www/interchange/pkg-install (props changed) head/www/ismail/files/pkg-message.in (props changed) head/www/jawstats/files/pkg-message.in (props changed) head/www/jetty/files/pkg-deinstall.in (props changed) head/www/jetty/files/pkg-install.in (props changed) head/www/jinzora/files/pkg-message.in (props changed) head/www/joomla15/files/pkg-message.in (props changed) head/www/joomla25/files/pkg-message.in (props changed) head/www/joomla31/files/pkg-message.in (props changed) head/www/jspwiki/pkg-message (props changed) head/www/junkbuster/files/pkg-message.in (props changed) head/www/kwebkitpart/pkg-message (props changed) head/www/lifetype/pkg-message (props changed) head/www/lightsquid/files/pkg-message.in (props changed) head/www/lilurl/files/pkg-message.in (props changed) head/www/limesurvey/files/pkg-message.in (props changed) head/www/lionwiki/files/pkg-message.in (props changed) head/www/lusca-head/files/pkg-deinstall.in (props changed) head/www/lusca-head/files/pkg-install.in (props changed) head/www/lusca-head/files/pkg-message.in (props changed) head/www/lynx/files/pkg-message.in (props changed) head/www/magento/files/pkg-message.in (props changed) head/www/mahara/files/pkg-message.in (props changed) head/www/mambo/files/pkg-message.in (props changed) head/www/mathopd/pkg-message (props changed) head/www/mediawiki119/pkg-message (props changed) head/www/mnogosearch/files/pkg-message.in (props changed) head/www/mnogosearch/pkg-install (props changed) head/www/mod_antiloris/files/pkg-message.rules.in (props changed) head/www/mod_auth_cas/pkg-message (props changed) head/www/mod_auth_openid/pkg-deinstall (props changed) head/www/mod_clamav/pkg-message (props changed) head/www/mod_cplusplus/files/pkg-message.in (props changed) head/www/mod_cvs2/pkg-message (props changed) head/www/mod_extract_forwarded/pkg-message (props changed) head/www/mod_fcgid/files/pkg-message.in (props changed) head/www/mod_ftp/pkg-message (props changed) head/www/mod_geoip2/files/pkg-message.in (props changed) head/www/mod_gnutls/files/pkg-message.in (props changed) head/www/mod_jk/files/pkg-message.in (props changed) head/www/mod_musicindex/files/pkg-message.in (props changed) head/www/mod_pagespeed/pkg-message (props changed) head/www/mod_perl2/files/pkg-message.in (props changed) head/www/mod_proxy_html/files/pkg-message.in (props changed) head/www/mod_python3/pkg-message (props changed) head/www/mod_ruby/pkg-message (props changed) head/www/mod_scgi/pkg-message (props changed) head/www/mod_vhs/pkg-message (props changed) head/www/mod_wsgi2/files/pkg-message.in (props changed) head/www/mod_wsgi3/files/pkg-message.in (props changed) head/www/moinmoin/files/pkg-install.in (props changed) head/www/moodle/files/pkg-message.in (props changed) head/www/mozplugger/files/pkg-message.in (props changed) head/www/mybb/files/pkg-message.in (props changed) head/www/mysar/files/pkg-message.in (props changed) head/www/nanoblogger/files/pkg-message.in (props changed) head/www/nibbleblog/files/pkg-message.in (props changed) head/www/npc/pkg-message (props changed) head/www/nspluginwrapper/pkg-message (props changed) head/www/ojs2/files/pkg-deinstall.in (props changed) head/www/ojs2/pkg-message (props changed) head/www/oops/files/pkg-message.in (props changed) head/www/openacs/files/pkg-deinstall.in (props changed) head/www/openacs/files/pkg-install.in (props changed) head/www/openacs/files/pkg-message.in (props changed) head/www/opencart/files/pkg-message.in (props changed) head/www/openx/files/pkg-message.in (props changed) head/www/orangehrm/files/pkg-message.in (props changed) head/www/oscommerce/files/pkg-message.in (props changed) head/www/owncloud/files/pkg-message.in (props changed) head/www/p5-Apache-Gallery/files/pkg-message.in (props changed) head/www/p5-Apache-MP3/pkg-message (props changed) head/www/p5-CGI-Kwiki/pkg-message (props changed) head/www/p5-Catalyst-Runtime/pkg-message (props changed) head/www/p5-FCGI-Spawn/pkg-deinstall (props changed) head/www/p5-FCGI-Spawn/pkg-install (props changed) head/www/p5-FCGI-Spawn/pkg-message (props changed) head/www/p5-Kwiki/pkg-message (props changed) head/www/p5-Maypole/files/pkg-message.in (props changed) head/www/p5-Nginx-ReadBody/pkg-message (props changed) head/www/p5-RT-Extension-SLA/files/pkg-message.in (props changed) head/www/p5-RTx-Calendar/pkg-message (props changed) head/www/pebble/files/pkg-message.in (props changed) head/www/pecl-APC/files/pkg-message.in (props changed) head/www/pecl-sphinx/files/pkg-message.in (props changed) head/www/pglogd/pkg-message (props changed) head/www/php-plurk-api/files/pkg-message.in (props changed) head/www/php-screw/pkg-message (props changed) head/www/php-templates/files/pkg-message.in (props changed) head/www/phpbb-devel/files/pkg-message.in (props changed) head/www/phpbb-devel/files/pkg-opts (props changed) head/www/phpbb3/files/pkg-message.in (props changed) head/www/phpbb3/files/pkg-opts (props changed) head/www/phpgedview/files/pkg-deinstall.in (props changed) head/www/phpgedview/files/pkg-message.in (props changed) head/www/phpmp/pkg-message (props changed) head/www/phpmustache/files/pkg-message.in (props changed) head/www/phpmyfaq/pkg-message (props changed) head/www/phproxy/pkg-message (props changed) head/www/phpscheduleit/files/pkg-message.in (props changed) head/www/phpsysinfo-dev/files/pkg-message.in (props changed) head/www/phpsysinfo/files/pkg-message.in (props changed) head/www/pivotx/files/pkg-message.in (props changed) head/www/piwigo/files/pkg-deinstall.in (props changed) head/www/piwigo/files/pkg-message.in (props changed) head/www/piwik/files/pkg-message.in (props changed) head/www/planet/files/pkg-message.in (props changed) head/www/pligg/files/pkg-message.in (props changed) head/www/plugger/pkg-install (props changed) head/www/pmwiki/files/pkg-message.in (props changed) head/www/polipo/files/pkg-deinstall.in (props changed) head/www/polipo/files/pkg-install.in (props changed) head/www/polipo/files/pkg-message.in (props changed) head/www/prado/files/pkg-message.in (props changed) head/www/privoxy+ipv6/pkg-message.in (props changed) head/www/punbb/files/pkg-message.in (props changed) head/www/pwebstats/pkg-message (props changed) head/www/py-django-cms/pkg-message (props changed) head/www/py-django-filer/pkg-message (props changed) head/www/py-django-openid-auth/pkg-message (props changed) head/www/py-django-reversion/pkg-message (props changed) head/www/py-nevow/files/pkg-message.in (props changed) head/www/py-qp/files/pkg-message.in (props changed) head/www/py-rhodecode/files/pkg-message.in (props changed) head/www/py-webware/pkg-install (props changed) head/www/quickie/files/pkg-message.in (props changed) head/www/redmine/pkg-message (props changed) head/www/rejik/files/pkg-message.in (props changed) head/www/reportmagic/pkg-message (props changed) head/www/repos-style/files/pkg-message.in (props changed) head/www/resin3/files/pkg-message.in (props changed) head/www/rnews/files/pkg-message.in (props changed) head/www/rssowl/pkg-message (props changed) head/www/rt38/files/pkg-message.in (props changed) head/www/rt38/pkg-deinstall (props changed) head/www/rt38/pkg-install (props changed) head/www/rt40/files/pkg-message.in (props changed) head/www/rubygem-sinatra/pkg-message (props changed) head/www/sahi/pkg-message (props changed) head/www/sakai/pkg-message (props changed) head/www/sams/files/pkg-message.in (props changed) head/www/selenium/files/pkg-message.in (props changed) head/www/serendipity/files/pkg-message.in (props changed) head/www/shellinabox/files/pkg-deinstall.in (props changed) head/www/sit/files/pkg-message.in (props changed) head/www/siteframe/files/pkg-message.in (props changed) head/www/skytemplate/files/pkg-message.in (props changed) head/www/smarty2/files/pkg-message.in (props changed) head/www/smarty3/files/pkg-message.in (props changed) head/www/speedtest-mini/files/pkg-message.in (props changed) head/www/sqstat/files/pkg-message.in (props changed) head/www/squid/files/pkg-deinstall.in (props changed) head/www/squid/files/pkg-install.in (props changed) head/www/squid/files/pkg-message.in (props changed) head/www/squidstats/files/pkg-install.in (props changed) head/www/squidstats/files/pkg-message.in (props changed) head/www/subsonic/files/pkg-message.in (props changed) head/www/sventon/pkg-message (props changed) head/www/tclhttpd/files/pkgIndex.tcl (props changed) head/www/tdiary/files/pkg-message.in (props changed) head/www/template_/pkg-message (props changed) head/www/templatelite/files/pkg-message.in (props changed) head/www/textpattern/files/pkg-message.in (props changed) head/www/thttpd/files/pkg-message.in (props changed) head/www/thundercache/files/pkg-message.in (props changed) head/www/thundersnarf/files/pkg-message.in (props changed) head/www/tokyopromenade/files/pkg-message.in (props changed) head/www/tomcat6/files/pkg-install.in (props changed) head/www/trac-batchmodify/pkg-message (props changed) head/www/trac-bzr/pkg-message (props changed) head/www/trac-ccselector/pkg-message (props changed) head/www/trac-childtickets/files/pkg-message.in (props changed) head/www/trac-customfieldadmin/pkg-message (props changed) head/www/trac-estimator/pkg-message (props changed) head/www/trac-gantt/pkg-message (props changed) head/www/trac-math/files/pkg-message.in (props changed) head/www/trac-revtree/pkg-message (props changed) head/www/trac-scrumburndown/pkg-message (props changed) head/www/trac-timingandestimation/pkg-message (props changed) head/www/trac-tweakui/files/pkg-message.in (props changed) head/www/trac-wikinotification/pkg-message (props changed) head/www/trac-wysiwyg/pkg-message (props changed) head/www/trac/pkg-message (props changed) head/www/twiki/files/pkg-deinstall.in (props changed) head/www/twiki/files/pkg-install.in (props changed) head/www/twms/files/pkg-deinstall.in (props changed) head/www/twms/files/pkg-install.in (props changed) head/www/typolight/files/pkg-message.in (props changed) head/www/udmsearch/pkg-message (props changed) head/www/usermanager/files/pkg-message.in (props changed) head/www/validator/files/pkg-message.in (props changed) head/www/varnish-libvmod-header/pkg-message (props changed) head/www/varnish/files/pkg-message.in (props changed) head/www/vertx/pkg-message.jruby (props changed) head/www/videocache/files/pkg-message.in (props changed) head/www/volta/files/pkg-message.in (props changed) head/www/vtiger-customerportal/files/pkg-message.in (props changed) head/www/vtiger/files/pkg-message.in (props changed) head/www/w3m/pkg-message (props changed) head/www/web2ldap/files/pkg-message.in (props changed) head/www/web2ldap/pkg-install (props changed) head/www/webcalendar-devel/files/pkg-message.in (props changed) head/www/webcalendar/files/pkg-message.in (props changed) head/www/webobjects/files/pkg-deinstall.in (props changed) head/www/webobjects/files/pkg-install.in (props changed) head/www/webobjects/files/pkg-message.in (props changed) head/www/webreport/pkg-message (props changed) head/www/websh/files/pkg-message.in (props changed) head/www/websh/files/pkgIndex.tcl.in (props changed) head/www/webstats/pkg-message (props changed) head/www/webstone-ssl/pkg-message (props changed) head/www/webstone/pkg-message (props changed) head/www/webtrees/files/pkg-deinstall.in (props changed) head/www/webtrees/files/pkg-message.in (props changed) head/www/wml/pkg-message (props changed) head/www/xcache/files/pkg-message.in (props changed) head/www/xoops/files/pkg-message.in (props changed) head/www/xpi-clear_cache_button/files/pkg-message.in (props changed) head/www/yabb/files/pkg-message.in (props changed) head/www/yahoo-ui/files/pkg-message.in (props changed) head/www/yanopaste/files/pkg-message.in (props changed) head/www/yaws/files/pkg-message.in (props changed) head/www/yii/files/pkg-message.in (props changed) head/www/yourls/files/pkg-message.in (props changed) head/www/zen-cart/files/pkg-message.in (props changed) head/www/zend-framework/files/pkg-message.in (props changed) head/www/zend-framework1/files/pkg-message.in (props changed) head/www/zenphoto/files/pkg-deinstall.in (props changed) head/www/zenphoto/files/pkg-message.in (props changed) head/www/zope213/files/pkg-message.in (props changed) head/x11-clocks/gdesklets-clock/files/pkg-message.in (props changed) head/x11-clocks/gdesklets-countdown/files/pkg-message.in (props changed) head/x11-clocks/gdesklets-ebichuclock/files/pkg-message.in (props changed) head/x11-drivers/input-wacom/files/pkg-message-serial.in (props changed) head/x11-drivers/input-wacom/files/pkg-message-usb.in (props changed) head/x11-drivers/xf86-video-nouveau/pkg-message (props changed) head/x11-fm/asfiles/pkg-install (props changed) head/x11-fm/krusader2/pkg-message (props changed) head/x11-fm/rox-filer/pkg-message (props changed) head/x11-fm/xplore/pkg-install (props changed) head/x11-fonts/andika/files/pkg-message.in (props changed) head/x11-fonts/anonymous-pro/files/pkg-message.in (props changed) head/x11-fonts/artwiz-aleczapka-de/pkg-message (props changed) head/x11-fonts/artwiz-aleczapka-se/pkg-message (props changed) head/x11-fonts/bitstream-vera/pkg-message (props changed) head/x11-fonts/charis-compact/files/pkg-message.in (props changed) head/x11-fonts/charis/files/pkg-message.in (props changed) head/x11-fonts/code2000/files/pkg-message.in (props changed) head/x11-fonts/croscorefonts-fonts-ttf/files/pkg-message.in (props changed) head/x11-fonts/cyberbit-ttfonts/pkg-deinstall (props changed) head/x11-fonts/cyberbit-ttfonts/pkg-install (props changed) head/x11-fonts/cyr-rfx/pkg-message (props changed) head/x11-fonts/dejavu/files/pkg-message.in (props changed) head/x11-fonts/doulos-compact/files/pkg-message.in (props changed) head/x11-fonts/doulos/files/pkg-message.in (props changed) head/x11-fonts/droid-fonts-ttf/files/pkg-message.in (props changed) head/x11-fonts/ecofont/files/pkg-message.in (props changed) head/x11-fonts/fira/files/pkg-message.in (props changed) head/x11-fonts/font-gost/files/pkg-message.in (props changed) head/x11-fonts/fontconfig/files/pkg-install.in (props changed) head/x11-fonts/fonts-te/pkg-message (props changed) head/x11-fonts/freefonts/pkg-message (props changed) head/x11-fonts/geminifonts/pkg-message (props changed) head/x11-fonts/hanazono-fonts-ttf/files/pkg-message.in (props changed) head/x11-fonts/indic-ttf/files/pkg-message.in (props changed) head/x11-fonts/intlfonts/pkg-req (props changed) head/x11-fonts/jmk-x11-fonts/pkg-message (props changed) head/x11-fonts/lfpfonts-fix/pkg-message (props changed) head/x11-fonts/lfpfonts-var/pkg-message (props changed) head/x11-fonts/liberation-fonts-ttf/files/pkg-message.in (props changed) head/x11-fonts/linuxlibertine-g/files/pkg-message.in (props changed) head/x11-fonts/linuxlibertine/files/pkg-deinstall.in (props changed) head/x11-fonts/lohit/files/pkg-message.in (props changed) head/x11-fonts/mgopen/files/pkg-message.in (props changed) head/x11-fonts/paratype/files/pkg-message.in (props changed) head/x11-fonts/pingwi/files/pkg-message.in (props changed) head/x11-fonts/roboto-fonts-ttf/files/pkg-message.in (props changed) head/x11-fonts/sharefonts/pkg-message (props changed) head/x11-fonts/sourcecodepro-ttf/files/pkg-message.in (props changed) head/x11-fonts/stix-fonts/files/pkg-message.in (props changed) head/x11-fonts/suxus/files/pkg-message.in (props changed) head/x11-fonts/terminus-font/files/pkg-message.in (props changed) head/x11-fonts/texcm-ttf/files/pkg-message.in (props changed) head/x11-fonts/ubuntu-font/files/pkg-message.in (props changed) head/x11-fonts/urwfonts-ttf/pkg-message (props changed) head/x11-fonts/urwfonts/pkg-message (props changed) head/x11-fonts/webfonts/files/pkg-message.in (props changed) head/x11-fonts/wqy/files/pkg-message.in (props changed) head/x11-fonts/wqy/pkg-deinstall (props changed) head/x11-fonts/xfs/pkg-install (props changed) head/x11-servers/Xfstt/files/pkg-message.in (props changed) head/x11-themes/cursor-chameleon-white/pkg-message (props changed) head/x11-themes/kde-icons-black-and-white/pkg-message (props changed) head/x11-themes/kde-icons-cezanne/pkg-message (props changed) head/x11-themes/kde-icons-crystal-project/pkg-message (props changed) head/x11-themes/kde-icons-dark-glass/pkg-message (props changed) head/x11-themes/kde-icons-gartoon-blue-svg/pkg-message (props changed) head/x11-themes/kde-icons-gartoon-svg/pkg-message (props changed) head/x11-themes/kde-icons-graphite-rade8/pkg-message (props changed) head/x11-themes/kde-icons-icosx/pkg-message (props changed) head/x11-themes/kde-icons-kool-gorilla/pkg-message (props changed) head/x11-themes/kde-icons-lime-rade8/pkg-message (props changed) head/x11-themes/kde-icons-lush/pkg-message (props changed) head/x11-themes/kde-icons-noia/pkg-message (props changed) head/x11-themes/kde-icons-nuovext/pkg-message (props changed) head/x11-themes/kde-icons-nuovext2/pkg-message (props changed) head/x11-themes/kde-icons-nuvola/pkg-message (props changed) head/x11-themes/kde-icons-os-k/pkg-message (props changed) head/x11-themes/kde-icons-sky/pkg-message (props changed) head/x11-themes/kde-icons-umicons/pkg-message (props changed) head/x11-themes/kde-icons-vista-inspirate/pkg-message (props changed) head/x11-toolkits/Xaw3d/files/pkg-message.in (props changed) head/x11-toolkits/irrlicht/files/pkg-message.in (props changed) head/x11-toolkits/iwidgets/files/pkg-message.in (props changed) head/x11-toolkits/lesstif/pkg-message (props changed) head/x11-toolkits/libgtk-java/pkg-message (props changed) head/x11-toolkits/qt4-gui/pkg-message (props changed) head/x11-toolkits/tk86/files/pkgIndex.tcl.in (props changed) head/x11-toolkits/v/pkg-message (props changed) head/x11-toolkits/xview/files/pkg-message.in (props changed) head/x11-wm/compiz/pkg-message (props changed) head/x11-wm/dwm/pkg-message (props changed) head/x11-wm/echinus/files/pkg-message.in (props changed) head/x11-wm/enlightenment/files/pkg-message.in (props changed) head/x11-wm/icewm/pkg-message (props changed) head/x11-wm/mcwm/pkg-message (props changed) head/x11-wm/pager/pkg-message (props changed) head/x11-wm/wmanager/files/pkg-message.in (props changed) head/x11-wm/wmfs/files/pkg-message.in (props changed) head/x11-wm/xfce4-session/files/pkg-message.in (props changed) head/x11/gdesklets-tasklist/pkg-message (props changed) head/x11/gdm/pkg-install (props changed) head/x11/gdm/pkg-message (props changed) head/x11/gnome-pie/files/pkg-message.in (props changed) head/x11/gnome-shell/pkg-message (props changed) head/x11/gnome2-lite/pkg-message (props changed) head/x11/gnome2/pkg-message (props changed) head/x11/gtk-launch/pkg-message (props changed) head/x11/idesk/files/pkg-message.in (props changed) head/x11/kdelibs4/pkg-message (props changed) head/x11/keyboardcast/pkg-message (props changed) head/x11/keylaunch/files/pkg-message.in (props changed) head/x11/libgnome-java/pkg-message (props changed) head/x11/libgnome/files/pkg-deinstall.in (props changed) head/x11/mate-base/pkg-message (props changed) head/x11/mrxvt-devel/files/pkg-message.in (props changed) head/x11/nvidia-driver/files/pkg-message.in (props changed) head/x11/slim/files/pkg-message.in (props changed) head/x11/wmbutton/files/pkg-message.in (props changed) head/x11/wmdrawer/files/pkg-message.in (props changed) head/x11/xbelld/pkg-message (props changed) head/x11/xterm/pkg-message (props changed) Modified: head/math/saga/pkg-message ============================================================================== --- head/math/saga/pkg-message Wed Jan 22 15:44:51 2014 (r340718) +++ head/math/saga/pkg-message Wed Jan 22 15:52:06 2014 (r340719) @@ -17,15 +17,15 @@ e.g.: Now your system is prepared for using SAGA CMD to execute SAGA modules. - -###################################################################### - -Since version 2.1.0 it is not necessary any more, to use a leading -"lib" for module library names on Unix-like systems. Now you will have -to alter back your scripts by removing "lib" from the name (like it is -on MS Windows). - -e.g.: - saga_cmd ta_morphometry instead of saga_cmd libta_morphometry - -###################################################################### + +###################################################################### + +Since version 2.1.0 it is not necessary any more, to use a leading +"lib" for module library names on Unix-like systems. Now you will have +to alter back your scripts by removing "lib" from the name (like it is +on MS Windows). + +e.g.: + saga_cmd ta_morphometry instead of saga_cmd libta_morphometry + +###################################################################### From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 16:21:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C795B90; Wed, 22 Jan 2014 16:21:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 783B5188F; Wed, 22 Jan 2014 16:21:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MGLBpc019539; Wed, 22 Jan 2014 16:21:11 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MGLB5X019537; Wed, 22 Jan 2014 16:21:11 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201401221621.s0MGLB5X019537@svn.freebsd.org> From: Gerald Pfeifer Date: Wed, 22 Jan 2014 16:21:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340720 - head/lang/gcc47 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 16:21:11 -0000 Author: gerald Date: Wed Jan 22 16:21:10 2014 New Revision: 340720 URL: http://svnweb.freebsd.org/changeset/ports/340720 QAT: https://qat.redports.org/buildarchive/r340720/ Log: Update to the 20140118 snapshot of GCC 4.7.4. Modified: head/lang/gcc47/Makefile head/lang/gcc47/distinfo Modified: head/lang/gcc47/Makefile ============================================================================== --- head/lang/gcc47/Makefile Wed Jan 22 15:52:06 2014 (r340719) +++ head/lang/gcc47/Makefile Wed Jan 22 16:21:10 2014 (r340720) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc47 -PORTVERSION= 4.7.4.20131214 +PORTVERSION= 4.7.4.20140118 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc47/distinfo ============================================================================== --- head/lang/gcc47/distinfo Wed Jan 22 15:52:06 2014 (r340719) +++ head/lang/gcc47/distinfo Wed Jan 22 16:21:10 2014 (r340720) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.7-20131214.tar.bz2) = cc3e695d22801581d16d4e26eabb5a1ca5852d506e88488e721498c7e9828eda -SIZE (gcc-4.7-20131214.tar.bz2) = 78837681 +SHA256 (gcc-4.7-20140118.tar.bz2) = b0c93fc5149320ec6f25d10fe4f0ee87919023979406051375729e57aabf6906 +SIZE (gcc-4.7-20140118.tar.bz2) = 78851434 From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 16:23:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7AA4CA2; Wed, 22 Jan 2014 16:23:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9933018AF; Wed, 22 Jan 2014 16:23:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MGNEVl019974; Wed, 22 Jan 2014 16:23:14 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MGNEWe019972; Wed, 22 Jan 2014 16:23:14 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221623.s0MGNEWe019972@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 16:23:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340721 - in head/textproc/clit: . 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.17 Precedence: list List-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, 22 Jan 2014 16:23:14 -0000 Author: mat Date: Wed Jan 22 16:23:13 2014 New Revision: 340721 URL: http://svnweb.freebsd.org/changeset/ports/340721 QAT: https://qat.redports.org/buildarchive/r340721/ Log: * Support staging * Use dos2unix Sponsored by: Absolight Modified: head/textproc/clit/Makefile head/textproc/clit/files/patch-clit_Makefile Modified: head/textproc/clit/Makefile ============================================================================== --- head/textproc/clit/Makefile Wed Jan 22 16:21:10 2014 (r340720) +++ head/textproc/clit/Makefile Wed Jan 22 16:23:13 2014 (r340721) @@ -22,17 +22,13 @@ MIN_VER= 8 PLIST_FILES= bin/clit +USES= dos2unix gmake USE_ZIP= yes -USE_GMAKE= yes -NO_STAGE= yes post-extract: cd ${WRKDIR} && ${BZIP2_CMD} -dc "${DISTDIR}/ltm-0.33.tar.bz2" | \ ${TAR} -xf - -post-patch: - @${FIND} ${WRKDIR} -name *.c -or -name *.h | ${XARGS} ${REINPLACE_CMD} -e 's| ||' - do-build: cd ${WRKDIR}/libtommath-0.33 && \ ${SETENV} ${MAKE_ENV} ${MAKE} -f makefile libtommath.a @@ -42,6 +38,6 @@ do-build: do-install: @${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME}${MAJ_VER}${MIN_VER}/clit \ - ${LOCALBASE}/bin + ${STAGEDIR}${PREFIX}/bin .include Modified: head/textproc/clit/files/patch-clit_Makefile ============================================================================== --- head/textproc/clit/files/patch-clit_Makefile Wed Jan 22 16:21:10 2014 (r340720) +++ head/textproc/clit/files/patch-clit_Makefile Wed Jan 22 16:23:13 2014 (r340721) @@ -1,14 +1,14 @@ --- Makefile.orig Sun Jul 4 16:52:14 2004 +++ Makefile Fri Jan 14 21:56:45 2005 @@ -1,9 +1,9 @@ - all: clit - --CFLAGS=-funsigned-char -Wall -O2 -I ../libtommath-0.30/ -I ../lib -I ../lib/des -I . -+CFLAGS=-funsigned-char -Wall -O2 -I ../libtommath-0.33/ -I ../lib -I ../lib/des -I . - clean: - rm -f *.o clit - - clit: clit.o hexdump.o drm5.o explode.o transmute.o display.o utils.o manifest.o ../lib/openclit.a -- gcc -o clit $^ ../libtommath-0.30/libtommath.a -+ gcc -o clit $^ ../libtommath-0.33/libtommath.a - + all: clit + +-CFLAGS=-funsigned-char -Wall -O2 -I ../libtommath-0.30/ -I ../lib -I ../lib/des -I . ++CFLAGS=-funsigned-char -Wall -O2 -I ../libtommath-0.33/ -I ../lib -I ../lib/des -I . + clean: + rm -f *.o clit + + clit: clit.o hexdump.o drm5.o explode.o transmute.o display.o utils.o manifest.o ../lib/openclit.a +- gcc -o clit $^ ../libtommath-0.30/libtommath.a ++ ${CC} -o clit $^ ../libtommath-0.33/libtommath.a + From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 17:01:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F801F41; Wed, 22 Jan 2014 17:01:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 752851D3B; Wed, 22 Jan 2014 17:01:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MH1DIx059099; Wed, 22 Jan 2014 17:01:13 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MH1Aw6059089; Wed, 22 Jan 2014 17:01:10 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221701.s0MH1Aw6059089@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 17:01:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340722 - in head: Tools/scripts/release Tools/scripts/sunshar accessibility/at-spi-reference accessibility/atk-reference accessibility/eflite accessibility/gnome-speech accessibility/j... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 17:01:13 -0000 Author: mat Date: Wed Jan 22 17:00:46 2014 New Revision: 340722 URL: http://svnweb.freebsd.org/changeset/ports/340722 QAT: https://qat.redports.org/buildarchive/r340722/ Log: Fixup the props on Makefile* With hat: portmgr Sponsored by: Absolight Modified: head/databases/db42/Makefile.db (contents, props changed) head/dns/p5-Net-DRI/Makefile.man (contents, props changed) head/security/heimdal/Makefile.man (contents, props changed) head/www/rubygem-raphael-rails/Makefile (contents, props changed) Directory Properties: head/Tools/scripts/release/Makefile (props changed) head/Tools/scripts/sunshar/Makefile (props changed) head/accessibility/at-spi-reference/Makefile (props changed) head/accessibility/atk-reference/Makefile (props changed) head/accessibility/eflite/Makefile (props changed) head/accessibility/gnome-speech/Makefile (props changed) head/accessibility/java-access-bridge/Makefile (props changed) head/accessibility/linux-f10-atk/Makefile (props changed) head/arabic/Makefile.inc (props changed) head/arabic/ae_fonts_mono/Makefile (props changed) head/arabic/ae_fonts_ttf/Makefile (props changed) head/arabic/aspell/Makefile (props changed) head/arabic/kacst_fonts/Makefile (props changed) head/arabic/khotot/Makefile (props changed) head/arabic/libitl/Makefile (props changed) head/arabic/libreoffice/Makefile (props changed) head/archivers/amigadepacker/Makefile (props changed) head/archivers/aolserver-nszlib/Makefile (props changed) head/archivers/arc/Makefile (props changed) head/archivers/bicom/files/Makefile (props changed) head/archivers/bzip/Makefile (props changed) head/archivers/bzip2/Makefile (props changed) head/archivers/cabextract/Makefile (props changed) head/archivers/deb2targz/Makefile (props changed) head/archivers/deco/Makefile (props changed) head/archivers/deutex/Makefile (props changed) head/archivers/dzip/Makefile (props changed) head/archivers/ecm/Makefile (props changed) head/archivers/fastjar/Makefile (props changed) head/archivers/fpc-bzip2/Makefile (props changed) head/archivers/fpc-paszlib/Makefile (props changed) head/archivers/freetar/Makefile (props changed) head/archivers/freeze/Makefile (props changed) head/archivers/gzip/Makefile (props changed) head/archivers/gzrecover/Makefile (props changed) head/archivers/hffzip/Makefile (props changed) head/archivers/hpack.non-usa.only/Makefile (props changed) head/archivers/hs-tar/Makefile (props changed) head/archivers/hs-zip-archive/Makefile (props changed) head/archivers/hs-zlib-bindings/Makefile (props changed) head/archivers/hs-zlib-conduit/Makefile (props changed) head/archivers/hs-zlib-enum/Makefile (props changed) head/archivers/hs-zlib/Makefile (props changed) head/archivers/javatar/Makefile (props changed) head/archivers/jzip.org/Makefile (props changed) head/archivers/kzip/Makefile (props changed) head/archivers/lbrate/Makefile (props changed) head/archivers/lbzip2/Makefile (props changed) head/archivers/lcab/Makefile (props changed) head/archivers/lha-ac/Makefile (props changed) head/archivers/lha/Makefile (props changed) head/archivers/libcabinet/Makefile (props changed) head/archivers/liblzxcomp/Makefile (props changed) head/archivers/liblzxcomp/files/Makefile (props changed) head/archivers/libmspack/Makefile (props changed) head/archivers/libunrar/Makefile (props changed) head/archivers/linux-f10-ucl/Makefile (props changed) head/archivers/linux-f10-upx/Makefile (props changed) head/archivers/lrzip/Makefile (props changed) head/archivers/lzip/Makefile (props changed) head/archivers/lzlib/Makefile (props changed) head/archivers/lzma/Makefile (props changed) head/archivers/macutils/Makefile (props changed) head/archivers/mar/Makefile (props changed) head/archivers/mscompress/Makefile (props changed) head/archivers/mtf/Makefile (props changed) head/archivers/nomarch/Makefile (props changed) head/archivers/nulib/Makefile (props changed) head/archivers/nwreckdum/Makefile (props changed) head/archivers/ocaml-bz2/Makefile (props changed) head/archivers/ocaml-zip/Makefile (props changed) head/archivers/packddir/Makefile (props changed) head/archivers/par/Makefile (props changed) head/archivers/parchive/Makefile (props changed) head/archivers/parchive/files/Makefile (props changed) head/archivers/pear-File_Archive/Makefile (props changed) head/archivers/pear-Horde_Compress/Makefile (props changed) head/archivers/pear-Horde_Compress_Fast/Makefile (props changed) head/archivers/pecl-phk/Makefile (props changed) head/archivers/php-horde_lz4/Makefile (props changed) head/archivers/php5-bz2/Makefile (props changed) head/archivers/php5-phar/Makefile (props changed) head/archivers/php5-zip/Makefile (props changed) head/archivers/php5-zlib/Makefile (props changed) head/archivers/php52-bz2/Makefile (props changed) head/archivers/php52-zip/Makefile (props changed) head/archivers/php52-zlib/Makefile (props changed) head/archivers/php55-bz2/Makefile (props changed) head/archivers/php55-phar/Makefile (props changed) head/archivers/php55-zip/Makefile (props changed) head/archivers/php55-zlib/Makefile (props changed) head/archivers/pigz/Makefile (props changed) head/archivers/pixz/Makefile (props changed) head/archivers/pixz/files/Makefile.in (props changed) head/archivers/plzip/Makefile (props changed) head/archivers/ppmd/Makefile (props changed) head/archivers/ppunpack/Makefile (props changed) head/archivers/pxz/Makefile (props changed) head/archivers/py-liblzma/Makefile (props changed) head/archivers/qpress/Makefile (props changed) head/archivers/rar/Makefile (props changed) head/archivers/ruby-libarchive/Makefile (props changed) head/archivers/rubygem-archive-zip/Makefile (props changed) head/archivers/rubygem-rubyzip2/Makefile (props changed) head/archivers/rvm/Makefile (props changed) head/archivers/rzip/Makefile (props changed) head/archivers/sectar/Makefile (props changed) head/archivers/snappy-java/Makefile (props changed) head/archivers/squsq/files/Makefile (props changed) head/archivers/stuffit/Makefile (props changed) head/archivers/tardy/Makefile (props changed) head/archivers/tclmkziplib/Makefile (props changed) head/archivers/tclmkziplib/files/Makefile.bsd (props changed) head/archivers/torrentzip/Makefile (props changed) head/archivers/ucl/Makefile (props changed) head/archivers/unace/Makefile (props changed) head/archivers/undms/Makefile (props changed) head/archivers/unfoo/Makefile (props changed) head/archivers/unlzx/Makefile (props changed) head/archivers/unmakeself/Makefile (props changed) head/archivers/unmass/Makefile (props changed) head/archivers/unzip-iconv/Makefile (props changed) head/archivers/unzoo/Makefile (props changed) head/archivers/upx/Makefile (props changed) head/archivers/wzip/Makefile (props changed) head/archivers/xar/Makefile (props changed) head/archivers/xarchive/Makefile (props changed) head/archivers/xdms/Makefile (props changed) head/archivers/xmill/Makefile (props changed) head/archivers/xpk/Makefile (props changed) head/archivers/zipmix/files/Makefile (props changed) head/archivers/zoo/Makefile (props changed) head/archivers/zutils/Makefile (props changed) head/astro/aa/Makefile (props changed) head/astro/accrete/Makefile (props changed) head/astro/celestia-gnome/Makefile (props changed) head/astro/celestia-gtk/Makefile (props changed) head/astro/dgpsip/Makefile (props changed) head/astro/gkrellmoon2/Makefile (props changed) head/astro/gmapcatcher/Makefile (props changed) head/astro/gpsman/Makefile (props changed) head/astro/gpsprune/Makefile (props changed) head/astro/gpxloggerd/Makefile (props changed) head/astro/jday/Makefile (props changed) head/astro/josm/Makefile (props changed) head/astro/libgal/Makefile (props changed) head/astro/libnova/Makefile (props changed) head/astro/match/Makefile (props changed) head/astro/mkgmap-splitter/Makefile (props changed) head/astro/mkgmap/Makefile (props changed) head/astro/mymoon/Makefile (props changed) head/astro/openmap/Makefile (props changed) head/astro/osmosis/Makefile (props changed) head/astro/phoon/Makefile (props changed) head/astro/planets/Makefile (props changed) head/astro/pp3/Makefile (props changed) head/astro/py-RO/Makefile (props changed) head/astro/py-aipy/Makefile (props changed) head/astro/py-pyfits/Makefile (props changed) head/astro/pyephem/Makefile (props changed) head/astro/pyweather/Makefile (props changed) head/astro/roadmap/Makefile (props changed) head/astro/saoimage/Makefile (props changed) head/astro/sky2000/Makefile (props changed) head/astro/sscalc/Makefile (props changed) head/astro/stardates/Makefile (props changed) head/astro/stars/Makefile (props changed) head/astro/wmglobe/Makefile (props changed) head/astro/wmjupiter/Makefile (props changed) head/astro/wmmoonclock/Makefile (props changed) head/astro/wmsolar/Makefile (props changed) head/astro/wmspaceweather/Makefile (props changed) head/astro/wmsun/Makefile (props changed) head/astro/xeartk/Makefile (props changed) head/astro/xephem/Makefile (props changed) head/astro/xmoontool/Makefile (props changed) head/astro/xphoon/Makefile (props changed) head/astro/xplanet/Makefile (props changed) head/astro/xworld/Makefile (props changed) head/audio/Maaate/Makefile (props changed) head/audio/aacgain/Makefile (props changed) head/audio/aacplusenc/Makefile (props changed) head/audio/abcde/Makefile (props changed) head/audio/abcmidi/Makefile (props changed) head/audio/adplay/Makefile (props changed) head/audio/afsp/Makefile (props changed) head/audio/afsp/files/Makefile (props changed) head/audio/alac/Makefile (props changed) head/audio/amb-plugins/Makefile (props changed) head/audio/amp/Makefile (props changed) head/audio/ample/Makefile (props changed) head/audio/ascd/Makefile (props changed) head/audio/asmix/Makefile (props changed) head/audio/asmixer/Makefile (props changed) head/audio/aubio/Makefile (props changed) head/audio/audiere/Makefile (props changed) head/audio/aureal-kmod/Makefile (props changed) head/audio/autocd/Makefile (props changed) head/audio/autotalent/Makefile (props changed) head/audio/bebocd/Makefile (props changed) head/audio/bmp-faad/Makefile (props changed) head/audio/bmp-fc/Makefile (props changed) head/audio/bmp-festalon/Makefile (props changed) head/audio/bmp-flac/files/Makefile (props changed) head/audio/bmp-htmlplaylist/Makefile (props changed) head/audio/bmp-scrobbler/Makefile (props changed) head/audio/bmp-songchange/Makefile (props changed) head/audio/bmp-wma/Makefile (props changed) head/audio/bonk/Makefile (props changed) head/audio/btc/Makefile (props changed) head/audio/cam/Makefile (props changed) head/audio/caps-plugins/Makefile (props changed) head/audio/cd-console/Makefile (props changed) head/audio/cd-discid/Makefile (props changed) head/audio/cd2mp3/Makefile (props changed) head/audio/cddb-bundle/Makefile (props changed) head/audio/cdparanoia/Makefile (props changed) head/audio/cdplay/Makefile (props changed) head/audio/celt/Makefile (props changed) head/audio/checkmate/Makefile (props changed) head/audio/chordpack/Makefile (props changed) head/audio/cmp3/Makefile (props changed) head/audio/cmt/Makefile (props changed) head/audio/cuetools/Makefile (props changed) head/audio/cutmp3/Makefile (props changed) head/audio/cymbaline/Makefile (props changed) head/audio/dagrab/Makefile (props changed) head/audio/dekagen/Makefile (props changed) head/audio/dir2ogg/Makefile (props changed) head/audio/discid/Makefile (props changed) head/audio/drumpiler/Makefile (props changed) head/audio/dtmfdial/Makefile (props changed) head/audio/dumb-allegro/Makefile (props changed) head/audio/dumb/Makefile (props changed) head/audio/eawpats/Makefile (props changed) head/audio/emms/Makefile (props changed) head/audio/emu10kx/Makefile (props changed) head/audio/enscribe/Makefile (props changed) head/audio/espeak/Makefile (props changed) head/audio/etktab/Makefile (props changed) head/audio/extace/Makefile (props changed) head/audio/fapg/Makefile (props changed) head/audio/fcplay/Makefile (props changed) head/audio/festalon/Makefile (props changed) head/audio/festlex-czech/Makefile (props changed) head/audio/festvox-czech/Makefile (props changed) head/audio/festvox-us1-mbrola/Makefile (props changed) head/audio/festvox-us2-mbrola/Makefile (props changed) head/audio/festvox-us3-mbrola/Makefile (props changed) head/audio/flite/Makefile (props changed) head/audio/fluidsynth-dssi/Makefile (props changed) head/audio/freealut/Makefile (props changed) head/audio/freepats/Makefile (props changed) head/audio/funktrackergold/Makefile (props changed) head/audio/gbsplay/Makefile (props changed) head/audio/gervill/Makefile (props changed) head/audio/gkrellmms/Makefile (props changed) head/audio/gkrellmms2/Makefile (props changed) head/audio/gkrellmss2/Makefile (props changed) head/audio/gkrellmvolume/Makefile (props changed) head/audio/gkrellmvolume2/Makefile (props changed) head/audio/glurp/Makefile (props changed) head/audio/gmixer/Makefile (props changed) head/audio/gmpc-extraplaylist/Makefile (props changed) head/audio/gnome-audio/Makefile (props changed) head/audio/gnustep-cdplayer/Makefile (props changed) head/audio/gqradio/Makefile (props changed) head/audio/gstreamer-plugins-a52dec/Makefile (props changed) head/audio/gstreamer-plugins-amrnb/Makefile (props changed) head/audio/gstreamer-plugins-amrwbdec/Makefile (props changed) head/audio/gstreamer-plugins-cdaudio/Makefile (props changed) head/audio/gstreamer-plugins-cdparanoia/Makefile (props changed) head/audio/gstreamer-plugins-esound/Makefile (props changed) head/audio/gstreamer-plugins-faac/Makefile (props changed) head/audio/gstreamer-plugins-faad/Makefile (props changed) head/audio/gstreamer-plugins-flac/Makefile (props changed) head/audio/gstreamer-plugins-flite/Makefile (props changed) head/audio/gstreamer-plugins-fluendo-mp3/Makefile (props changed) head/audio/gstreamer-plugins-gme/Makefile (props changed) head/audio/gstreamer-plugins-gsm/Makefile (props changed) head/audio/gstreamer-plugins-jack/Makefile (props changed) head/audio/gstreamer-plugins-lame/Makefile (props changed) head/audio/gstreamer-plugins-mad/Makefile (props changed) head/audio/gstreamer-plugins-moodbar/Makefile (props changed) head/audio/gstreamer-plugins-mp3/Makefile (props changed) head/audio/gstreamer-plugins-musepack/Makefile (props changed) head/audio/gstreamer-plugins-nas/Makefile (props changed) head/audio/gstreamer-plugins-ogg/Makefile (props changed) head/audio/gstreamer-plugins-pulse/Makefile (props changed) head/audio/gstreamer-plugins-shout2/Makefile (props changed) head/audio/gstreamer-plugins-sidplay/Makefile (props changed) head/audio/gstreamer-plugins-sndfile/Makefile (props changed) head/audio/gstreamer-plugins-soundtouch/Makefile (props changed) head/audio/gstreamer-plugins-spc/Makefile (props changed) head/audio/gstreamer-plugins-speex/Makefile (props changed) head/audio/gstreamer-plugins-taglib/Makefile (props changed) head/audio/gstreamer-plugins-twolame/Makefile (props changed) head/audio/gstreamer-plugins-vorbis/Makefile (props changed) head/audio/gstreamer-plugins-wavpack/Makefile (props changed) head/audio/hawkvoice/Makefile (props changed) head/audio/hs-ALUT/Makefile (props changed) head/audio/hs-OpenAL/Makefile (props changed) head/audio/hs-libmpd/Makefile (props changed) head/audio/hydrogen/Makefile (props changed) head/audio/id3ed/Makefile (props changed) head/audio/id3el/Makefile (props changed) head/audio/id3mtag/Makefile (props changed) head/audio/id3ren/Makefile (props changed) head/audio/id3tool/Makefile (props changed) head/audio/ipod-sharp/Makefile (props changed) head/audio/jack-smf-utils/Makefile (props changed) head/audio/jack/Makefile (props changed) head/audio/jack_mixer/Makefile (props changed) head/audio/jamin/Makefile (props changed) head/audio/jid3lib/Makefile (props changed) head/audio/jokosher/Makefile (props changed) head/audio/juke/Makefile (props changed) head/audio/jxm/Makefile (props changed) head/audio/kexis/Makefile (props changed) head/audio/ksmp3play/Makefile (props changed) head/audio/last-cmus/Makefile (props changed) head/audio/libadplug/Makefile (props changed) head/audio/libaiff/Makefile (props changed) head/audio/libao/Makefile (props changed) head/audio/libbpm/Makefile (props changed) head/audio/libcanberra-gtk3/Makefile (props changed) head/audio/libcdaudio/Makefile (props changed) head/audio/libcddb-doc/Makefile (props changed) head/audio/libconvolve/Makefile (props changed) head/audio/libmikmod/Makefile (props changed) head/audio/libmodplug/Makefile (props changed) head/audio/libmpd/Makefile (props changed) head/audio/libmpdclient/Makefile (props changed) head/audio/libnoise/Makefile (props changed) head/audio/liboggz/Makefile (props changed) head/audio/libopenspc/Makefile (props changed) head/audio/libsamplerate/Makefile (props changed) head/audio/libshairport/Makefile (props changed) head/audio/libsidplay/Makefile (props changed) head/audio/libsidplay2/Makefile (props changed) head/audio/libtremor/Makefile (props changed) head/audio/linux-f10-alsa-lib/Makefile (props changed) head/audio/linux-f10-esound/Makefile (props changed) head/audio/linux-f10-freealut/Makefile (props changed) head/audio/linux-f10-libogg/Makefile (props changed) head/audio/linux-f10-libvorbis/Makefile (props changed) head/audio/linux-f10-mikmod/Makefile (props changed) head/audio/linux-f10-nas-libs/Makefile (props changed) head/audio/linux-f10-openal/Makefile (props changed) head/audio/linux-f10-pulseaudio-libs/Makefile (props changed) head/audio/linux-f10-sdl_mixer/Makefile (props changed) head/audio/linux-fmodapi/Makefile (props changed) head/audio/linux-genpuid/Makefile (props changed) head/audio/linux-laudio/Makefile (props changed) head/audio/linux-neroaaccodec/Makefile (props changed) head/audio/liquidsoap/Makefile (props changed) head/audio/listener/Makefile (props changed) head/audio/lpac/Makefile (props changed) head/audio/mac/Makefile (props changed) head/audio/mad/Makefile (props changed) head/audio/madfufw/Makefile (props changed) head/audio/malint/Makefile (props changed) head/audio/maplay/Makefile (props changed) head/audio/mctoolame-decoder/Makefile (props changed) head/audio/mctoolame-encoder/Makefile (props changed) head/audio/mhwaveedit/Makefile (props changed) head/audio/mikmod/Makefile (props changed) head/audio/milkytracker/Makefile (props changed) head/audio/mixer.app/Makefile (props changed) head/audio/mixmos/Makefile (props changed) head/audio/modplugplay/Makefile (props changed) head/audio/mp-player/Makefile (props changed) head/audio/mp3_check/Makefile (props changed) head/audio/mp3asm/Makefile (props changed) head/audio/mp3ck/Makefile (props changed) head/audio/mp3gain/Makefile (props changed) head/audio/mp3gain/files/Makefile.lib (props changed) head/audio/mp3gain/files/Makefile.main (props changed) head/audio/mp3guessenc/Makefile (props changed) head/audio/mp3info/Makefile (props changed) head/audio/mp3plot/Makefile (props changed) head/audio/mp3rename/Makefile (props changed) head/audio/mp3wrap/Makefile (props changed) head/audio/mpdcon/Makefile (props changed) head/audio/mpg123/Makefile (props changed) head/audio/mpg321/Makefile (props changed) head/audio/musepack/Makefile (props changed) head/audio/musica/Makefile (props changed) head/audio/musicbox-tag-editor/Makefile (props changed) head/audio/musiccontrol/Makefile (props changed) head/audio/napster/Makefile (props changed) head/audio/nas/Makefile (props changed) head/audio/nas/Makefile.man (props changed) head/audio/nosefart/Makefile (props changed) head/audio/nspmod/Makefile (props changed) head/audio/oggsplit/Makefile (props changed) head/audio/opencore-amr/Makefile (props changed) head/audio/openspc/Makefile (props changed) head/audio/optimfrog/Makefile (props changed) head/audio/osalp/Makefile (props changed) head/audio/p5-Audio/Makefile (props changed) head/audio/p5-MusicBrainz-DiscID/Makefile (props changed) head/audio/p5-Net-LibLO/Makefile (props changed) head/audio/padevchooser/Makefile (props changed) head/audio/paman/Makefile (props changed) head/audio/pavucontrol/Makefile (props changed) head/audio/pavumeter/Makefile (props changed) head/audio/pecl-id3/Makefile (props changed) head/audio/penguinsap/Makefile (props changed) head/audio/pithos/Makefile (props changed) head/audio/playgsf/Makefile (props changed) head/audio/playmidi/Makefile (props changed) head/audio/pure-audio/Makefile (props changed) head/audio/py-eyed3/Makefile (props changed) head/audio/py-fastaudio/Makefile (props changed) head/audio/py-mpd/Makefile (props changed) head/audio/py-openal/Makefile (props changed) head/audio/py-pyliblo/Makefile (props changed) head/audio/py-shout/Makefile (props changed) head/audio/py-speex/Makefile (props changed) head/audio/pytone/Makefile (props changed) head/audio/raop_play/Makefile (props changed) head/audio/raproxy/Makefile (props changed) head/audio/rawrec/Makefile (props changed) head/audio/rebot3/Makefile (props changed) head/audio/resid/Makefile (props changed) head/audio/rexima/Makefile (props changed) head/audio/rio500/Makefile (props changed) head/audio/rioutil/Makefile (props changed) head/audio/ripit/Makefile (props changed) head/audio/ripperx/Makefile (props changed) head/audio/rplay/Makefile (props changed) head/audio/rsynth/Makefile (props changed) head/audio/rubberband/Makefile (props changed) head/audio/ruby-audiofile/Makefile (props changed) head/audio/ruby-freedb/Makefile (props changed) head/audio/ruby-mp3info/Makefile (props changed) head/audio/ruby-mp3tag/Makefile (props changed) head/audio/ruby-smf/Makefile (props changed) head/audio/ruby-taglib/Makefile (props changed) head/audio/ruby-xmms2/Makefile (props changed) head/audio/s3mod/Makefile (props changed) head/audio/schism/Makefile (props changed) head/audio/sfront/Makefile (props changed) head/audio/shairport/Makefile (props changed) head/audio/shorten/Makefile (props changed) head/audio/shout/Makefile (props changed) head/audio/shoutcast/Makefile (props changed) head/audio/sidplay2/Makefile (props changed) head/audio/sidplayer/Makefile (props changed) head/audio/simplemod/Makefile (props changed) head/audio/sooperlooper/Makefile (props changed) head/audio/sphinx3/Makefile (props changed) head/audio/spiralsynthmodular/Makefile (props changed) head/audio/splay/Makefile (props changed) head/audio/squeezeboxserver-dynamicplaylist/Makefile (props changed) head/audio/squeezeboxserver-lazysearch/Makefile (props changed) head/audio/squeezeboxserver-sqlplaylist/Makefile (props changed) head/audio/squeezeboxserver-trackstat/Makefile (props changed) head/audio/stymulator/Makefile (props changed) head/audio/tagger/Makefile (props changed) head/audio/taglookup/Makefile (props changed) head/audio/tagutil/Makefile (props changed) head/audio/tap-plugins/Makefile (props changed) head/audio/tcd/Makefile (props changed) head/audio/teamspeak_server/Makefile (props changed) head/audio/tempest_for_eliza/Makefile (props changed) head/audio/timemachine/Makefile (props changed) head/audio/timidity++-emacs/Makefile (props changed) head/audio/timidity++-gtk/Makefile (props changed) head/audio/timidity++-motif/Makefile (props changed) head/audio/timidity++-tcltk/Makefile (props changed) head/audio/timidity++-xaw/Makefile (props changed) head/audio/timidity++-xskin/Makefile (props changed) head/audio/timidity++/Makefile.interface (props changed) head/audio/tosha/Makefile (props changed) head/audio/trommler/Makefile (props changed) head/audio/tse3/Makefile (props changed) head/audio/tta/Makefile (props changed) head/audio/tuneradio/Makefile (props changed) head/audio/twolame/Makefile (props changed) head/audio/umix/Makefile (props changed) head/audio/umodplayer/Makefile (props changed) head/audio/umurmur/Makefile (props changed) head/audio/vamp-plugin-sdk/Makefile (props changed) head/audio/ventrilo-server/Makefile (props changed) head/audio/vitunes/Makefile (props changed) head/audio/vo-aacenc/Makefile (props changed) head/audio/vo-amrwbenc/Makefile (props changed) head/audio/voipong/Makefile (props changed) head/audio/vorbisgain/Makefile (props changed) head/audio/vsound/Makefile (props changed) head/audio/waon/Makefile (props changed) head/audio/wav2cdr/Makefile (props changed) head/audio/waveplay/Makefile (props changed) head/audio/wavplay/Makefile (props changed) head/audio/whysynth/Makefile (props changed) head/audio/wmalbum/Makefile (props changed) head/audio/wmix/Makefile (props changed) head/audio/wmmp/Makefile (props changed) head/audio/wmrecord/Makefile (props changed) head/audio/wmsmixer/Makefile (props changed) head/audio/x11amp/Makefile (props changed) head/audio/ximp3/Makefile (props changed) head/audio/xmix/Makefile (props changed) head/audio/xmmix/Makefile (props changed) head/audio/xmms-a52dec/Makefile (props changed) head/audio/xmms-ahx/Makefile (props changed) head/audio/xmms-audiofile/Makefile (props changed) head/audio/xmms-cdread/Makefile (props changed) head/audio/xmms-crossfade/Makefile (props changed) head/audio/xmms-crystality/Makefile (props changed) head/audio/xmms-defx/Makefile (props changed) head/audio/xmms-efxmms/Makefile (props changed) head/audio/xmms-eq/Makefile (props changed) head/audio/xmms-faad/Makefile (props changed) head/audio/xmms-faad/Makefile.inc (props changed) head/audio/xmms-fc/Makefile (props changed) head/audio/xmms-festalon/Makefile (props changed) head/audio/xmms-flac/files/Makefile (props changed) head/audio/xmms-fxt/Makefile (props changed) head/audio/xmms-gbsplay/Makefile (props changed) head/audio/xmms-infopipe/Makefile (props changed) head/audio/xmms-jack/Makefile (props changed) head/audio/xmms-ladspa/Makefile (props changed) head/audio/xmms-liveice/Makefile (props changed) head/audio/xmms-mad/Makefile (props changed) head/audio/xmms-mailnotify/Makefile (props changed) head/audio/xmms-midi/Makefile (props changed) head/audio/xmms-mp3cue/Makefile (props changed) head/audio/xmms-nas/Makefile (props changed) head/audio/xmms-nsf/Makefile (props changed) head/audio/xmms-openspc/Makefile (props changed) head/audio/xmms-osssurround/Makefile (props changed) head/audio/xmms-quix3dn/Makefile (props changed) head/audio/xmms-sapplug/Makefile (props changed) head/audio/xmms-scrobbler/Makefile (props changed) head/audio/xmms-sexypsf/Makefile (props changed) head/audio/xmms-sexyspc/Makefile (props changed) head/audio/xmms-sndfile/Makefile (props changed) head/audio/xmms-tfmx/Makefile (props changed) head/audio/xmms-timidity/Makefile (props changed) head/audio/xmms-volnorm/Makefile (props changed) head/audio/xmms-xymms/Makefile (props changed) head/audio/xmp/Makefile (props changed) head/audio/xmradio/Makefile (props changed) head/audio/xpi-musicpm/Makefile (props changed) head/audio/xsynth-dssi/Makefile (props changed) head/audio/xvmixer/Makefile (props changed) head/audio/yell/Makefile (props changed) head/benchmarks/Makefile (props changed) head/benchmarks/bonnie/Makefile (props changed) head/benchmarks/cpipe/Makefile (props changed) head/benchmarks/dbench/Makefile (props changed) head/benchmarks/dkftpbench/Makefile (props changed) head/benchmarks/expedite/Makefile (props changed) head/benchmarks/fhourstones/Makefile (props changed) head/benchmarks/filebench/Makefile (props changed) head/benchmarks/fio/Makefile (props changed) head/benchmarks/forkbomb/Makefile (props changed) head/benchmarks/geekbench/Makefile (props changed) head/benchmarks/himenobench/Makefile (props changed) head/benchmarks/hs-criterion/Makefile (props changed) head/benchmarks/httperf/Makefile (props changed) head/benchmarks/imb/Makefile (props changed) head/benchmarks/interbench/Makefile (props changed) head/benchmarks/iorate/Makefile (props changed) head/benchmarks/iozone21/Makefile (props changed) head/benchmarks/lmbench/Makefile (props changed) head/benchmarks/lmbench/files/Makefile (props changed) head/benchmarks/nbench/Makefile (props changed) head/benchmarks/netio/Makefile (props changed) head/benchmarks/netpipe/Makefile (props changed) head/benchmarks/octave-forge-benchmark/Makefile (props changed) head/benchmarks/pathchirp/Makefile (props changed) head/benchmarks/pathload/Makefile (props changed) head/benchmarks/pathrate/Makefile (props changed) head/benchmarks/pear-Benchmark/Makefile (props changed) head/benchmarks/phoronix-test-suite/Makefile (props changed) head/benchmarks/pipebench/Makefile (props changed) head/benchmarks/pnetmark/Makefile (props changed) head/benchmarks/postmark/Makefile (props changed) head/benchmarks/pybench/Makefile (props changed) head/benchmarks/raidtest/Makefile (props changed) head/benchmarks/raidtest/files/Makefile (props changed) head/benchmarks/randomio/Makefile (props changed) head/benchmarks/scimark2/Makefile (props changed) head/benchmarks/scimark2c/Makefile (props changed) head/benchmarks/spp/Makefile (props changed) head/benchmarks/tcpblast/Makefile (props changed) head/benchmarks/tcpblast/src/Makefile (props changed) head/benchmarks/thrulay/Makefile (props changed) head/benchmarks/ubench/Makefile (props changed) head/benchmarks/webbench/Makefile (props changed) head/benchmarks/xdd/Makefile (props changed) head/biology/biococoa/Makefile (props changed) head/biology/biojava/Makefile (props changed) head/biology/chemeq/Makefile (props changed) head/biology/clustalw/Makefile (props changed) head/biology/crux/Makefile (props changed) head/biology/fasta/Makefile (props changed) head/biology/fastdnaml/Makefile (props changed) head/biology/fluctuate/Makefile (props changed) head/biology/garlic/Makefile (props changed) head/biology/genpak/Makefile (props changed) head/biology/gff2ps/Makefile (props changed) head/biology/gmap/Makefile (props changed) head/biology/libgenome/Makefile (props changed) head/biology/linux-foldingathome/Makefile (props changed) head/biology/mafft/Makefile (props changed) head/biology/migrate/Makefile (props changed) head/biology/mrbayes/Makefile (props changed) head/biology/mummer/Makefile (props changed) head/biology/muscle/Makefile (props changed) head/biology/njplot/Makefile (props changed) head/biology/ortep3/Makefile (props changed) head/biology/ortep3/files/Makefile.ortep3 (props changed) head/biology/paml/Makefile (props changed) head/biology/phd2fasta/Makefile (props changed) head/biology/phrap/Makefile (props changed) head/biology/phred/Makefile (props changed) head/biology/platon/Makefile (props changed) head/biology/platon/files/Makefile (props changed) head/biology/protomol/Makefile (props changed) head/biology/psi88/files/Makefile.top (props changed) head/biology/py-biopython/Makefile (props changed) head/biology/pycogent/Makefile (props changed) head/biology/pyfasta/Makefile (props changed) head/biology/pymol/Makefile (props changed) head/biology/python-nexus/Makefile (props changed) head/biology/rasmol/Makefile (props changed) head/biology/recombine/Makefile (props changed) head/biology/ruby-bio/Makefile (props changed) head/biology/seqio/Makefile (props changed) head/biology/sim4/Makefile (props changed) head/biology/treepuzzle/Makefile (props changed) head/cad/alliance/Makefile (props changed) head/cad/calculix/Makefile (props changed) head/cad/cascade/Makefile (props changed) head/cad/cider/Makefile (props changed) head/cad/cider/files/Makefile.cider (props changed) head/cad/cider/files/Makefile.spice (props changed) head/cad/dxf2fig/Makefile (props changed) head/cad/findhier/Makefile (props changed) head/cad/gdsreader/Makefile (props changed) head/cad/gdt/files/Makefile (props changed) head/cad/geda-docs/Makefile (props changed) head/cad/geda-examples/Makefile (props changed) head/cad/geda-netlist/Makefile (props changed) head/cad/geda-symbols/Makefile (props changed) head/cad/geda-symcheck/Makefile (props changed) head/cad/gmsh-occ/Makefile (props changed) head/cad/gplcver/Makefile (props changed) head/cad/gtkwave/Makefile (props changed) head/cad/iverilog/Makefile (props changed) head/cad/jspice3/Makefile (props changed) head/cad/kicad-devel/Makefile.bzr_rev (props changed) head/cad/kicad-library/Makefile (props changed) head/cad/klayout/Makefile (props changed) head/cad/logisim/Makefile (props changed) head/cad/meshdev/Makefile (props changed) head/cad/ngspice_rework/Makefile (props changed) head/cad/pythoncad/Makefile (props changed) head/cad/qcad-partslib/Makefile (props changed) head/cad/qmls/Makefile (props changed) head/cad/salome-kernel/Makefile (props changed) head/cad/sceptre/Makefile (props changed) head/cad/scotch/Makefile (props changed) head/cad/scv/Makefile (props changed) head/cad/slffea/Makefile (props changed) head/cad/spice/Makefile (props changed) head/cad/spice/files/Makefile (props changed) head/cad/systemc/Makefile (props changed) head/cad/transcalc/Makefile (props changed) head/cad/verilog-mode.el/Makefile (props changed) head/cad/z88/Makefile (props changed) head/chinese/CJKUnifonts/Makefile (props changed) head/chinese/FreeWnn-lib/Makefile (props changed) head/chinese/FreeWnn-server/Makefile (props changed) head/chinese/Makefile.inc (props changed) head/chinese/acroread8-zh_CN/Makefile (props changed) head/chinese/acroread8-zh_TW/Makefile (props changed) head/chinese/arphicttf/Makefile (props changed) head/chinese/bg5ps/Makefile (props changed) head/chinese/big5con/Makefile (props changed) head/chinese/big5width/Makefile (props changed) head/chinese/cce/Makefile (props changed) head/chinese/celvis/Makefile (props changed) head/chinese/cless/Makefile (props changed) head/chinese/cmexfonts/Makefile (props changed) head/chinese/cnprint/Makefile (props changed) head/chinese/cwtex/Makefile (props changed) head/chinese/cwtexttf/Makefile (props changed) head/chinese/docproj/src/Makefile (props changed) head/chinese/docproj/src/cjktexsty/Makefile (props changed) head/chinese/enscript/Makefile (props changed) head/chinese/font-std/Makefile (props changed) head/chinese/fortunetw/Makefile (props changed) head/chinese/gb2jis/Makefile (props changed) head/chinese/gcin/Makefile (props changed) head/chinese/gimp-help-zh_CN/Makefile (props changed) head/chinese/gugod-clean/Makefile (props changed) head/chinese/hanzim/Makefile (props changed) head/chinese/irssi/Makefile (props changed) head/chinese/jis2gb/Makefile (props changed) head/chinese/joe/Makefile (props changed) head/chinese/kcfonts/Makefile (props changed) head/chinese/kon2/Makefile (props changed) head/chinese/libchewing/Makefile (props changed) head/chinese/libreoffice-zh_CN/Makefile (props changed) head/chinese/libreoffice-zh_TW/Makefile (props changed) head/chinese/libtabe/Makefile (props changed) head/chinese/lunar/Makefile (props changed) head/chinese/moefonts-cid/Makefile (props changed) head/chinese/moettf/Makefile (props changed) head/chinese/msttf/Makefile (props changed) head/chinese/mutt/Makefile (props changed) head/chinese/opendesktop-fonts/Makefile (props changed) head/chinese/phpbb-tw/Makefile (props changed) head/chinese/phpbb3-tw/Makefile (props changed) head/chinese/pine4/Makefile (props changed) head/chinese/scim-fcitx/Makefile (props changed) head/chinese/scim-tables/Makefile (props changed) head/chinese/srecite/Makefile (props changed) head/chinese/tin/Makefile (props changed) head/chinese/ttf2pt1/Makefile (props changed) head/chinese/ttfm/Makefile (props changed) head/chinese/ttfm/Makefile.ttf (props changed) head/chinese/unzip/Makefile (props changed) head/chinese/ve/Makefile (props changed) head/chinese/xemacs21/Makefile (props changed) head/chinese/xpdf/Makefile (props changed) head/chinese/xsim/Makefile (props changed) head/comms/acfax/Makefile (props changed) head/comms/aldo/Makefile (props changed) head/comms/amtterm/Makefile (props changed) head/comms/bfhist/Makefile (props changed) head/comms/bforce-kst/Makefile (props changed) head/comms/bforce/Makefile (props changed) head/comms/birda/Makefile (props changed) head/comms/bluez-firmware/Makefile (props changed) head/comms/bpl+/Makefile (props changed) head/comms/callsign/Makefile (props changed) head/comms/cdr_read/Makefile (props changed) head/comms/comserv/Makefile (props changed) head/comms/conserver-com/Makefile (props changed) head/comms/conserver/Makefile (props changed) head/comms/conserver/files/Makefile (props changed) head/comms/ems-flasher/Makefile (props changed) head/comms/esmska/Makefile (props changed) head/comms/gkermit/Makefile (props changed) head/comms/gmfsk/Makefile (props changed) head/comms/gpsk31/Makefile (props changed) head/comms/gtkmmorse/Makefile (props changed) head/comms/hcidump/Makefile (props changed) head/comms/hylafax/Makefile (props changed) head/comms/java-commapi-freebsd/Makefile (props changed) head/comms/java-commapi/Makefile (props changed) head/comms/kb/files/Makefile (props changed) head/comms/kermit/Makefile (props changed) head/comms/libirman/Makefile (props changed) head/comms/linrad/Makefile (props changed) head/comms/lrzsz/Makefile (props changed) head/comms/mlan3/Makefile (props changed) head/comms/nokryptia/Makefile (props changed) head/comms/pear-Horde_ActiveSync/Makefile (props changed) head/comms/pear-Horde_SyncMl/Makefile (props changed) head/comms/picocom/Makefile (props changed) head/comms/pr/Makefile (props changed) head/comms/py-bulksms/Makefile (props changed) head/comms/py-lirc/Makefile (props changed) head/comms/py-serial/Makefile (props changed) head/comms/pyla/Makefile (props changed) head/comms/qico/Makefile (props changed) head/comms/qpage/Makefile (props changed) head/comms/remserial/Makefile (props changed) head/comms/rxtx/Makefile (props changed) head/comms/seyon/Makefile (props changed) head/comms/spandsp/Makefile (props changed) head/comms/sredird/Makefile (props changed) head/comms/syncterm/Makefile (props changed) head/comms/tits/Makefile (props changed) head/comms/tkscanfax/Makefile (props changed) head/comms/twpsk/Makefile (props changed) head/comms/viewfax/Makefile (props changed) head/comms/vrflash/Makefile (props changed) head/comms/wsjt/Makefile (props changed) head/comms/wsjt/Makefile.svn_rev (props changed) head/comms/wspr/Makefile (props changed) head/comms/wspr/Makefile.svn_rev (props changed) head/comms/wy60/Makefile (props changed) head/comms/xdx/Makefile (props changed) head/comms/xmorse/Makefile (props changed) head/comms/xnecview/Makefile (props changed) head/comms/yaps/Makefile (props changed) head/comms/zssh/Makefile (props changed) head/converters/aish/Makefile (props changed) head/converters/asr10/Makefile (props changed) head/converters/base64/Makefile (props changed) head/converters/btoa/Makefile (props changed) head/converters/chmview/files/Makefile (props changed) head/converters/cmios9/Makefile (props changed) head/converters/dosunix/Makefile (props changed) head/converters/drg2sbg/Makefile (props changed) head/converters/dumpasn1/Makefile (props changed) head/converters/fconv/Makefile (props changed) head/converters/fondu/Makefile (props changed) head/converters/fpc-iconvenc/Makefile (props changed) head/converters/gbase/Makefile (props changed) head/converters/hs-aeson/Makefile (props changed) head/converters/hs-dataenc/Makefile (props changed) head/converters/hs-json/Makefile (props changed) head/converters/iconv/Makefile (props changed) head/converters/igbinary/Makefile (props changed) head/converters/libb64/Makefile (props changed) head/converters/libutf-8/Makefile (props changed) head/converters/mimelib/Makefile (props changed) head/converters/mmencode/Makefile (props changed) head/converters/mpack/Makefile (props changed) head/converters/mule-ucs/Makefile (props changed) head/converters/o3read/Makefile (props changed) head/converters/p5-JSON/Makefile (props changed) head/converters/pecl-fribidi/Makefile (props changed) head/converters/php5-iconv/Makefile (props changed) head/converters/php5-mbstring/Makefile (props changed) head/converters/php5-recode/Makefile (props changed) head/converters/php52-iconv/Makefile (props changed) head/converters/php52-mbstring/Makefile (props changed) head/converters/php52-recode/Makefile (props changed) head/converters/php55-iconv/Makefile (props changed) head/converters/php55-mbstring/Makefile (props changed) head/converters/php55-recode/Makefile (props changed) head/converters/psiconv/Makefile (props changed) head/converters/py-pisa/Makefile (props changed) head/converters/py-zfec/Makefile (props changed) head/converters/rcctools/Makefile (props changed) head/converters/ruby-dump.rb/Makefile (props changed) head/converters/shftool/Makefile (props changed) head/converters/ta2as/Makefile (props changed) head/converters/trans/Makefile (props changed) head/converters/tuc/Makefile (props changed) head/converters/unix2dos/Makefile (props changed) head/converters/uudx/Makefile (props changed) head/converters/uudx/files/Makefile (props changed) head/converters/vda2fbd/Makefile (props changed) head/converters/zbase32/Makefile (props changed) head/databases/adminer/Makefile (props changed) head/databases/adodb/Makefile (props changed) head/databases/animenfo-client/Makefile (props changed) head/databases/aolserver-nsmysql/Makefile (props changed) head/databases/aolserver-nspostgres/Makefile (props changed) head/databases/autobackupmysql/Makefile (props changed) head/databases/bbdb/Makefile (props changed) head/databases/beansdb/Makefile (props changed) head/databases/buzhug/Makefile (props changed) head/databases/cdb/Makefile (props changed) head/databases/courier-authlib-mysql/Makefile (props changed) head/databases/courier-authlib-pgsql/Makefile (props changed) head/databases/courier-authlib-userdb/Makefile (props changed) head/databases/courier-authlib-usergdbm/Makefile (props changed) head/databases/credis/Makefile (props changed) head/databases/cyrus-imspd/Makefile (props changed) head/databases/datamodeler/Makefile (props changed) head/databases/db/Makefile (props changed) head/databases/db4/Makefile (props changed) head/databases/db41-nocrypto/Makefile (props changed) head/databases/db41/Makefile (props changed) head/databases/db42-nocrypto/Makefile (props changed) head/databases/db42/Makefile (props changed) head/databases/db43/Makefile (props changed) head/databases/db44/Makefile (props changed) head/databases/db4o-mono/Makefile (props changed) head/databases/dbXML/Makefile (props changed) head/databases/dbconnect/Makefile (props changed) head/databases/dbf2mysql/Makefile (props changed) head/databases/dbh/Makefile (props changed) head/databases/dbow/Makefile (props changed) head/databases/dbtool/Makefile (props changed) head/databases/emma/Makefile (props changed) head/databases/erlang-mysql/Makefile (props changed) head/databases/exist/Makefile (props changed) head/databases/fastdb/Makefile (props changed) head/databases/firebird20-client/Makefile (props changed) head/databases/firebird21-client/Makefile (props changed) head/databases/firebird25-client/Makefile (props changed) head/databases/firebird25-server/Makefile (props changed) head/databases/flamerobin/Makefile (props changed) head/databases/fortytwo-bdb/Makefile (props changed) head/databases/fpc-pxlib/Makefile (props changed) head/databases/freetds-msdblib/Makefile (props changed) head/databases/frontbase-jdbc/Makefile (props changed) head/databases/frontbase/Makefile (props changed) head/databases/gdbm/Makefile (props changed) head/databases/gigabase/Makefile (props changed) head/databases/gnats4/Makefile (props changed) head/databases/hamsterdb/Makefile (props changed) head/databases/hiredis/Makefile (props changed) head/databases/hs-mysql/Makefile (props changed) head/databases/hs-persistent-sqlite/Makefile (props changed) head/databases/hs-persistent-template/Makefile (props changed) head/databases/hs-persistent/Makefile (props changed) head/databases/ip4r/Makefile (props changed) head/databases/ipa_sdb/Makefile (props changed) head/databases/iplike/Makefile (props changed) head/databases/isql-viewer/Makefile (props changed) head/databases/jakarta-commons-dbutils/Makefile (props changed) head/databases/jasperreports/Makefile (props changed) head/databases/jasperserver/Makefile (props changed) head/databases/java-mybatis/Makefile (props changed) head/databases/jdbc-oracle10g/Makefile (props changed) head/databases/jdbc-oracle11g/Makefile (props changed) head/databases/jdbc-oracle8i/Makefile (props changed) head/databases/jdbc-oracle9i/Makefile (props changed) head/databases/jdbm2/Makefile (props changed) head/databases/jrobin/Makefile (props changed) head/databases/jrrd/Makefile (props changed) head/databases/kinterbasdb/Makefile (props changed) head/databases/kumofs/Makefile (props changed) head/databases/libdbi/Makefile (props changed) head/databases/libdrizzle/Makefile (props changed) head/databases/libgda2-reference/Makefile (props changed) head/databases/libgda3-firebird/Makefile (props changed) head/databases/libgda3-freetds/Makefile (props changed) head/databases/libgda3-ldap/Makefile (props changed) head/databases/libgda3-mdb/Makefile (props changed) head/databases/libgda3-mysql/Makefile (props changed) head/databases/libgda3-odbc/Makefile (props changed) head/databases/libgda3-postgresql/Makefile (props changed) head/databases/libgda3-reference/Makefile (props changed) head/databases/libgdamm/Makefile (props changed) head/databases/libgnomedb-reference/Makefile (props changed) head/databases/libhsclient/Makefile (props changed) head/databases/libiodbc/Makefile (props changed) head/databases/libmemcache/Makefile (props changed) head/databases/libmemcached/Makefile (props changed) head/databases/libodbc++/Makefile (props changed) head/databases/libsdb/Makefile (props changed) head/databases/linux-f10-sqlite3/Makefile (props changed) head/databases/liquibase/Makefile (props changed) head/databases/lmdb/Makefile (props changed) head/databases/lsdb/Makefile (props changed) head/databases/luasql-mysql/Makefile (props changed) head/databases/luasql-postgres/Makefile (props changed) head/databases/luasql-sqlite3/Makefile (props changed) head/databases/ludia/Makefile (props changed) head/databases/memcachedb/Makefile (props changed) head/databases/memcacheq/Makefile (props changed) head/databases/my2cego/Makefile (props changed) head/databases/mydbf2mysql/Makefile (props changed) head/databases/mysac/Makefile (props changed) head/databases/mysql++1/Makefile (props changed) head/databases/mysql++3/Makefile (props changed) head/databases/mysql-q4m/Makefile (props changed) head/databases/mysql-udf-preg/Makefile (props changed) head/databases/mysql-udf-sys/Makefile (props changed) head/databases/mysql-udf/Makefile (props changed) head/databases/mysql-xql/Makefile (props changed) head/databases/mysql2odbc/Makefile (props changed) head/databases/mysql51-client/Makefile (props changed) head/databases/mysqlard/Makefile (props changed) head/databases/mysqlcppapi/Makefile (props changed) head/databases/mysqlsniffer/Makefile (props changed) head/databases/nagios-check_postgres_replication/Makefile (props changed) head/databases/namazu2/Makefile.common (props changed) head/databases/ocaml-mysql/Makefile (props changed) head/databases/ocaml-pgocaml/Makefile (props changed) head/databases/ocaml-sqlite3/Makefile (props changed) head/databases/openbase-jdbc/Makefile (props changed) head/databases/oracle7-client/Makefile (props changed) head/databases/oracle8-client/Makefile (props changed) head/databases/oracle_odbc_driver/Makefile (props changed) head/databases/p5-Class-DBI-Plugin-Senna/Makefile (props changed) head/databases/p5-DBIx-Class-CustomPrefetch/Makefile (props changed) head/databases/p5-DBIx-Class-Fixtures/Makefile (props changed) head/databases/p5-DBIx-Class-Migration/Makefile (props changed) head/databases/p5-DBIx-Class-VirtualColumns/Makefile (props changed) head/databases/p5-DBIx-Inspector/Makefile (props changed) head/databases/p5-DBIx-QueryLog/Makefile (props changed) head/databases/p5-SQL-Maker/Makefile (props changed) head/databases/pear-DB_DataObject_FormBuilder/Makefile (props changed) head/databases/pear-Horde_Db/Makefile (props changed) head/databases/pear-Horde_HashTable/Makefile (props changed) head/databases/pear-Horde_Imsp/Makefile (props changed) head/databases/pear-Horde_Memcache/Makefile (props changed) head/databases/pecl-drizzle/Makefile (props changed) head/databases/pecl-handlersocket/Makefile (props changed) head/databases/pecl-mdbtools/Makefile (props changed) head/databases/pecl-memcached/Makefile (props changed) head/databases/pecl-pdo_user/Makefile (props changed) head/databases/pecl-tokyo_tyrant/Makefile (props changed) head/databases/pg_filedump/Makefile (props changed) head/databases/pg_reorg/Makefile (props changed) head/databases/pg_rman/Makefile (props changed) head/databases/pg_statsinfo/Makefile (props changed) head/databases/pgaccess/Makefile (props changed) head/databases/pgdbf/Makefile (props changed) head/databases/pgfouine/Makefile (props changed) head/databases/pglesslog/Makefile (props changed) head/databases/pgloader/Makefile (props changed) head/databases/pgpool-II-22/Makefile (props changed) head/databases/pgpool-II-23/Makefile (props changed) head/databases/pgpool-II-30/Makefile (props changed) head/databases/pgpool-II/Makefile (props changed) head/databases/pgpool/Makefile (props changed) head/databases/pgpoolAdmin/Makefile (props changed) head/databases/pgtcl/Makefile (props changed) head/databases/pgtune/Makefile (props changed) head/databases/php-adodb-ext/Makefile (props changed) head/databases/php-mdcached/Makefile (props changed) head/databases/php5-creole/Makefile (props changed) head/databases/php5-dba/Makefile (props changed) head/databases/php5-interbase/Makefile (props changed) head/databases/php5-mssql/Makefile (props changed) head/databases/php5-mysql/Makefile (props changed) head/databases/php5-mysqli/Makefile (props changed) head/databases/php5-odbc/Makefile (props changed) head/databases/php5-pdo/Makefile (props changed) head/databases/php5-pdo_dblib/Makefile (props changed) head/databases/php5-pdo_mysql/Makefile (props changed) head/databases/php5-pdo_odbc/Makefile (props changed) head/databases/php5-pdo_pgsql/Makefile (props changed) head/databases/php5-pdo_sqlite/Makefile (props changed) head/databases/php5-pgsql/Makefile (props changed) head/databases/php5-propel/Makefile (props changed) head/databases/php5-sqlite3/Makefile (props changed) head/databases/php5-sybase_ct/Makefile (props changed) head/databases/php52-dba/Makefile (props changed) head/databases/php52-dbase/Makefile (props changed) head/databases/php52-interbase/Makefile (props changed) head/databases/php52-mssql/Makefile (props changed) head/databases/php52-mysql/Makefile (props changed) head/databases/php52-mysqli/Makefile (props changed) head/databases/php52-oci8/Makefile (props changed) head/databases/php52-odbc/Makefile (props changed) head/databases/php52-pdo/Makefile (props changed) head/databases/php52-pdo_dblib/Makefile (props changed) head/databases/php52-pdo_firebird/Makefile (props changed) head/databases/php52-pdo_mysql/Makefile (props changed) head/databases/php52-pdo_oci/Makefile (props changed) head/databases/php52-pdo_odbc/Makefile (props changed) head/databases/php52-pdo_pgsql/Makefile (props changed) head/databases/php52-pdo_sqlite/Makefile (props changed) head/databases/php52-pgsql/Makefile (props changed) head/databases/php52-sqlite/Makefile (props changed) head/databases/php52-sybase_ct/Makefile (props changed) head/databases/php55-dba/Makefile (props changed) head/databases/php55-interbase/Makefile (props changed) head/databases/php55-mssql/Makefile (props changed) head/databases/php55-mysql/Makefile (props changed) head/databases/php55-mysqli/Makefile (props changed) head/databases/php55-odbc/Makefile (props changed) head/databases/php55-pdo/Makefile (props changed) head/databases/php55-pdo_dblib/Makefile (props changed) head/databases/php55-pdo_mysql/Makefile (props changed) head/databases/php55-pdo_odbc/Makefile (props changed) head/databases/php55-pdo_pgsql/Makefile (props changed) head/databases/php55-pdo_sqlite/Makefile (props changed) head/databases/php55-pgsql/Makefile (props changed) head/databases/php55-sqlite3/Makefile (props changed) head/databases/php55-sybase_ct/Makefile (props changed) head/databases/phpminiadmin/Makefile (props changed) head/databases/postgis-jdbc/Makefile (props changed) head/databases/postgresql-libpgeasy/Makefile (props changed) head/databases/postgresql-libpqxx/Makefile (props changed) head/databases/postgresql-pllua/Makefile (props changed) head/databases/postgresql84-docs/Makefile (props changed) head/databases/postgresql84-plperl/Makefile (props changed) head/databases/postgresql84-pltcl/Makefile (props changed) head/databases/postgresql90-docs/Makefile (props changed) head/databases/postgresql90-pltcl/Makefile (props changed) head/databases/postgresql91-docs/Makefile (props changed) head/databases/postgresql91-plperl/Makefile (props changed) head/databases/postgresql91-pltcl/Makefile (props changed) head/databases/postgresql92-docs/Makefile (props changed) head/databases/postgresql92-plperl/Makefile (props changed) head/databases/postgresql92-pltcl/Makefile (props changed) head/databases/postgresql93-docs/Makefile (props changed) head/databases/postgresql93-plperl/Makefile (props changed) head/databases/postgresql93-pltcl/Makefile (props changed) head/databases/powerarchitect/Makefile (props changed) head/databases/proftpd-mod_sql_mysql/Makefile (props changed) head/databases/proftpd-mod_sql_odbc/Makefile (props changed) head/databases/proftpd-mod_sql_postgres/Makefile (props changed) head/databases/proftpd-mod_sql_sqlite/Makefile (props changed) head/databases/proftpd-mod_sql_tds/Makefile (props changed) head/databases/pure-sql3/Makefile (props changed) head/databases/puredb/Makefile (props changed) head/databases/py-Elixir/Makefile (props changed) head/databases/py-MySQLdb51/Makefile (props changed) head/databases/py-MySQLdb55/Makefile (props changed) head/databases/py-bsddb3/Makefile (props changed) head/databases/py-cmemcache/Makefile (props changed) head/databases/py-couchdb/Makefile (props changed) head/databases/py-cql/Makefile (props changed) head/databases/py-dbf/Makefile (props changed) head/databases/py-dbutils/Makefile (props changed) head/databases/py-hiredis/Makefile (props changed) head/databases/py-odbc/Makefile (props changed) head/databases/py-pg8000/Makefile (props changed) head/databases/py-pg_pqueue/Makefile (props changed) head/databases/py-pickledb/Makefile (props changed) head/databases/py-postgresql/Makefile (props changed) head/databases/py-psycopg/Makefile (props changed) head/databases/py-pyPgSQL/Makefile (props changed) head/databases/py-pyhs/Makefile (props changed) head/databases/py-pymysql/Makefile (props changed) head/databases/py-pytc/Makefile (props changed) head/databases/py-simplecouchdb/Makefile (props changed) head/databases/py-south/Makefile (props changed) head/databases/py-sqlalchemy-migrate/Makefile (props changed) head/databases/py-sqlalchemy06/Makefile (props changed) head/databases/py-sqlite3dbm/Makefile (props changed) head/databases/py-sqlobject/Makefile (props changed) head/databases/py-sqlparse/Makefile (props changed) head/databases/py-sybase/Makefile (props changed) head/databases/py-whisper/Makefile (props changed) head/databases/pydbdesigner/Makefile (props changed) head/databases/pydbx/Makefile (props changed) head/databases/pymongo/Makefile (props changed) head/databases/qdbm-plus/Makefile (props changed) head/databases/qt4-ibase-plugin/files/Makefile.bsd (props changed) head/databases/qt4-odbc-plugin/files/Makefile.bsd (props changed) head/databases/qt4-pgsql-plugin/files/Makefile.bsd (props changed) head/databases/qt4-sqlite-plugin/files/Makefile.bsd (props changed) head/databases/qt4-sqlite3-plugin/files/Makefile.bsd (props changed) head/databases/rdfdb/Makefile (props changed) head/databases/redis-devel/Makefile (props changed) head/databases/redis/Makefile (props changed) head/databases/rrdmerge/Makefile (props changed) head/databases/ruby-cdb/Makefile (props changed) head/databases/ruby-dbd_mysql/Makefile (props changed) head/databases/ruby-dbd_odbc/Makefile (props changed) head/databases/ruby-dbd_pg/Makefile (props changed) head/databases/ruby-dbd_sqlite/Makefile (props changed) head/databases/ruby-dbd_sqlite3/Makefile (props changed) head/databases/ruby-frontbase/Makefile (props changed) head/databases/ruby-gdbm/Makefile (props changed) head/databases/ruby-msql/Makefile (props changed) head/databases/ruby-mysql/Makefile (props changed) head/databases/ruby-o_dbm/Makefile (props changed) head/databases/ruby-oci8/Makefile (props changed) head/databases/ruby-odbc/Makefile (props changed) head/databases/ruby-qdbm/Makefile (props changed) head/databases/ruby-rdbc1/Makefile (props changed) head/databases/ruby-tokyocabinet/Makefile (props changed) head/databases/rubygem-rubyrep/Makefile (props changed) head/databases/sharedance/Makefile (props changed) head/databases/slony1/Makefile (props changed) head/databases/sqlbuddy/Makefile (props changed) head/databases/sqlcached/Makefile (props changed) head/databases/sqlclient/Makefile (props changed) head/databases/sqldeveloper/Makefile (props changed) head/databases/sqlite-ext-miscfuncs/Makefile (props changed) head/databases/sqlite-ext-mobigroup/Makefile (props changed) head/databases/sqlitemanager/Makefile (props changed) head/databases/sybtcl/files/Makefile.bsd (props changed) head/databases/tablelog/Makefile (props changed) head/databases/tcl-Mysql/files/Makefile.bsd (props changed) head/databases/tokyotyrant/Makefile (props changed) head/databases/useracc/Makefile (props changed) head/databases/usogres/Makefile (props changed) head/databases/vfront/Makefile (props changed) head/databases/wmjsql/Makefile (props changed) head/databases/xapian-core10/Makefile (props changed) head/databases/zodb3/Makefile (props changed) head/deskutils/affiche/Makefile (props changed) head/deskutils/akamaru/Makefile (props changed) head/deskutils/appwrapper/Makefile (props changed) head/deskutils/autocutsel/Makefile (props changed) head/deskutils/bigyear/Makefile (props changed) head/deskutils/bitcollider/Makefile (props changed) head/deskutils/cal/Makefile (props changed) head/deskutils/cartotheque/Makefile (props changed) head/deskutils/charmap/Makefile (props changed) head/deskutils/checkrdf/Makefile (props changed) head/deskutils/cycle/Makefile (props changed) head/deskutils/devd-notifier/Makefile (props changed) head/deskutils/displaycalibrator/Makefile (props changed) head/deskutils/dlume/Makefile (props changed) head/deskutils/dosage/Makefile (props changed) head/deskutils/etask/Makefile (props changed) head/deskutils/fengoffice/Makefile (props changed) head/deskutils/freemind/Makefile (props changed) head/deskutils/fusenshi/Makefile (props changed) head/deskutils/ganttproject/Makefile (props changed) head/deskutils/gcalcli/Makefile (props changed) head/deskutils/gkrellm-reminder2/Makefile (props changed) head/deskutils/gmcal/Makefile (props changed) head/deskutils/gnustep-notebook/Makefile (props changed) head/deskutils/gnustep-wrapper/Makefile (props changed) head/deskutils/gruler/Makefile (props changed) head/deskutils/gtkjournal/Makefile (props changed) head/deskutils/gtweakui/Makefile (props changed) head/deskutils/gworkspace-gwmetadata/Makefile (props changed) head/deskutils/gworkspace/Makefile (props changed) head/deskutils/hebcal/Makefile (props changed) head/deskutils/helpviewer/Makefile (props changed) head/deskutils/horde-groupware/Makefile (props changed) head/deskutils/horde-kronolith/Makefile (props changed) head/deskutils/horde-mnemo/Makefile (props changed) head/deskutils/horde-nag/Makefile (props changed) head/deskutils/hot-babe/Makefile (props changed) head/deskutils/howm/Makefile (props changed) head/deskutils/ical/Makefile (props changed) head/deskutils/ithought/Makefile (props changed) head/deskutils/jjclient/Makefile (props changed) head/deskutils/libopensync-plugin-evolution2/Makefile (props changed) head/deskutils/libopensync-plugin-file/Makefile (props changed) head/deskutils/libopensync-plugin-python/Makefile (props changed) head/deskutils/ljcharm/Makefile (props changed) head/deskutils/mcal/Makefile (props changed) head/deskutils/menumaker/Makefile (props changed) head/deskutils/mrundlg/Makefile (props changed) head/deskutils/msynctool/Makefile (props changed) head/deskutils/multisync-backup/Makefile (props changed) head/deskutils/multisync-syncml/Makefile (props changed) head/deskutils/multisync/Makefile (props changed) head/deskutils/narval/Makefile (props changed) head/deskutils/nautilus-locked-folder/Makefile (props changed) head/deskutils/notify-osd/Makefile (props changed) head/deskutils/openproj/Makefile (props changed) head/deskutils/org-mode.el/Makefile (props changed) head/deskutils/phpcollab/Makefile (props changed) head/deskutils/phpicalendar/Makefile (props changed) head/deskutils/phprojekt/Makefile (props changed) head/deskutils/plan/Makefile (props changed) head/deskutils/planner.el/Makefile (props changed) head/deskutils/plopfolio/Makefile (props changed) head/deskutils/preferencepanes/Makefile (props changed) head/deskutils/preferences/Makefile (props changed) head/deskutils/py-vobject/Makefile (props changed) head/deskutils/pybookreader/Makefile (props changed) head/deskutils/remember.el/Makefile (props changed) head/deskutils/rolo/Makefile (props changed) head/deskutils/simplegroupware/Makefile (props changed) head/deskutils/sliderule/Makefile (props changed) head/deskutils/sugarcrm/Makefile (props changed) head/deskutils/surrealtodo/Makefile (props changed) head/deskutils/systempreferences/Makefile (props changed) head/deskutils/tagutils/Makefile (props changed) head/deskutils/taskcoach/Makefile (props changed) head/deskutils/thinkingrock/Makefile (props changed) head/deskutils/todo/Makefile (props changed) head/deskutils/tomboy-plugin-latex/Makefile (props changed) head/deskutils/tomboy-plugin-reminder/Makefile (props changed) head/deskutils/tomboy-plugin-todo/Makefile (props changed) head/deskutils/tomboy-plugin-wordcount/Makefile (props changed) head/deskutils/toolboxkit/Makefile (props changed) head/deskutils/wmpinboard/Makefile (props changed) head/deskutils/x026/Makefile (props changed) head/deskutils/xcalendar/Makefile (props changed) head/deskutils/xmaddressbook/Makefile (props changed) head/deskutils/xpostit/Makefile (props changed) head/deskutils/xpostitPlus/Makefile (props changed) head/deskutils/xrolo/Makefile (props changed) head/devel/ElectricFence/Makefile (props changed) head/devel/ORBit2-reference/Makefile (props changed) head/devel/aap/Makefile (props changed) head/devel/ace+tao-doc/Makefile (props changed) head/devel/acme/Makefile (props changed) head/devel/adabooch-doc-html/Makefile (props changed) head/devel/adabooch/Makefile (props changed) head/devel/adacurses/Makefile (props changed) head/devel/adasdl/Makefile (props changed) head/devel/adime/Makefile (props changed) head/devel/adime/Makefile.man (props changed) head/devel/afay/Makefile (props changed) head/devel/ald/Makefile (props changed) head/devel/alf/Makefile (props changed) head/devel/android-tools-adb/Makefile (props changed) head/devel/android-tools-adb/files/Makefile (props changed) head/devel/anjuta-extras/Makefile (props changed) head/devel/antlr/Makefile (props changed) head/devel/apache-ant/Makefile (props changed) head/devel/argtable/Makefile (props changed) head/devel/arm-eabi-binutils/Makefile (props changed) head/devel/arm-eabi-gcc/Makefile (props changed) head/devel/aros-sdk/Makefile (props changed) head/devel/as31/Makefile (props changed) head/devel/asdlgen/Makefile (props changed) head/devel/asl/Makefile (props changed) head/devel/asl/files/Makefile.def (props changed) head/devel/asmutils/Makefile (props changed) head/devel/astah-community/Makefile (props changed) head/devel/atlas/Makefile (props changed) head/devel/ats-contrib-testing/Makefile (props changed) head/devel/autobook/Makefile (props changed) head/devel/autoconf-archive/Makefile (props changed) head/devel/autodist/Makefile (props changed) head/devel/autogen/Makefile (props changed) head/devel/automake-wrapper/Makefile (props changed) head/devel/avalon-framework/Makefile (props changed) head/devel/avce00/Makefile (props changed) head/devel/avltree/Makefile (props changed) head/devel/avr-gdb/Makefile (props changed) head/devel/avra/Makefile (props changed) head/devel/bam/Makefile (props changed) head/devel/bcc/Makefile (props changed) head/devel/bcc/files/Makefile.bcc (props changed) head/devel/beautifyphp/Makefile (props changed) head/devel/bglibs/Makefile (props changed) head/devel/bicyclerepair/Makefile (props changed) head/devel/bisoncpp/Makefile (props changed) head/devel/blame/Makefile (props changed) head/devel/bmkdep/Makefile (props changed) head/devel/bnf/Makefile (props changed) head/devel/boehm-gc-redirect/Makefile (props changed) head/devel/boehm-gc-threaded/Makefile (props changed) head/devel/boehm-gc/Makefile (props changed) head/devel/boost-all/Makefile (props changed) head/devel/boost-all/common.mk (props changed) head/devel/boost-docs/Makefile (props changed) head/devel/boost-jam/Makefile (props changed) head/devel/boost_build/Makefile (props changed) head/devel/bouml-doc/Makefile (props changed) head/devel/bsdbuild/Makefile (props changed) head/devel/bsdlibdwarf/Makefile (props changed) head/devel/bufferpool/Makefile (props changed) head/devel/build/Makefile (props changed) head/devel/buildtool-doc/Makefile (props changed) head/devel/buildtool/Makefile (props changed) head/devel/bunny/Makefile (props changed) head/devel/byaccj/Makefile (props changed) head/devel/bzr-builder/Makefile (props changed) head/devel/bzr-colo/Makefile (props changed) head/devel/bzr-externals/Makefile (props changed) head/devel/bzr-git/Makefile (props changed) head/devel/bzr-grep/Makefile (props changed) head/devel/bzr-loom/Makefile (props changed) head/devel/bzr-pipeline/Makefile (props changed) head/devel/bzr-rewrite/Makefile (props changed) head/devel/bzr-scmproj/Makefile (props changed) head/devel/bzr-stats/Makefile (props changed) head/devel/bzr-svn/Makefile (props changed) head/devel/bzr-upload/Makefile (props changed) head/devel/bzrtools/Makefile (props changed) head/devel/c-unit/Makefile (props changed) head/devel/c4/Makefile (props changed) head/devel/calibrator/Makefile (props changed) head/devel/cbind/Makefile (props changed) head/devel/cbrowser/Makefile (props changed) head/devel/ccache/Makefile (props changed) head/devel/cdialog/Makefile (props changed) head/devel/cdk/Makefile (props changed) head/devel/cflow/Makefile (props changed) head/devel/cflow2vcg/Makefile (props changed) head/devel/cgilib/Makefile (props changed) head/devel/cgilib/files/Makefile.bsd (props changed) head/devel/cgprof/Makefile (props changed) head/devel/charva/Makefile (props changed) head/devel/checkheaders/Makefile (props changed) head/devel/cityhash/Makefile (props changed) head/devel/cl-asdf/bsd.cl-asdf.mk (props changed) head/devel/cld/Makefile (props changed) head/devel/clewn/Makefile (props changed) head/devel/cmph/Makefile (props changed) head/devel/cobf/Makefile (props changed) head/devel/colorgcc/Makefile (props changed) head/devel/compiler-rt/Makefile.svn_rev (props changed) head/devel/compiz-bcop/Makefile (props changed) head/devel/configkit/Makefile (props changed) head/devel/cppunit/Makefile (props changed) head/devel/cproto/Makefile (props changed) head/devel/cpuflags/Makefile (props changed) head/devel/cross-binutils/Makefile (props changed) head/devel/cross-gcc/Makefile (props changed) head/devel/cross-gdb/Makefile (props changed) head/devel/csmith/Makefile (props changed) head/devel/csoap/Makefile (props changed) head/devel/cstringbuffer/Makefile (props changed) head/devel/cunit/Makefile (props changed) head/devel/cut/Makefile (props changed) head/devel/cutils/Makefile (props changed) head/devel/cvs+ipv6/Makefile (props changed) head/devel/cvs-devel/Makefile (props changed) head/devel/cvs-syncmail/Makefile (props changed) head/devel/cvs2p4/Makefile (props changed) head/devel/cvsadmin/Makefile (props changed) head/devel/cvsbook/Makefile (props changed) head/devel/cvsdelta/Makefile (props changed) head/devel/cvsdiff2patch/Makefile (props changed) head/devel/cvsps-devel/Makefile (props changed) head/devel/cvsspam/Makefile (props changed) head/devel/cvstrac/Makefile (props changed) head/devel/cvswrap/Makefile (props changed) head/devel/cweb/Makefile (props changed) head/devel/cxmon/Makefile (props changed) head/devel/d-feet/Makefile (props changed) head/devel/dasm/Makefile (props changed) head/devel/datadraw/Makefile (props changed) head/devel/ddd/Makefile (props changed) head/devel/deheader/Makefile (props changed) head/devel/delta/Makefile (props changed) head/devel/dev86/Makefile (props changed) head/devel/devtodo/Makefile (props changed) head/devel/dfuife-curses/Makefile (props changed) head/devel/dissy/Makefile (props changed) head/devel/ditrack/Makefile (props changed) head/devel/djgpp-binutils/Makefile (props changed) head/devel/djgpp-crx/Makefile (props changed) head/devel/djgpp-crx/files/Makefile (props changed) head/devel/dmake/Makefile (props changed) head/devel/dmalloc/Makefile (props changed) head/devel/dmucs/Makefile (props changed) head/devel/doctorj/Makefile (props changed) head/devel/dotconf++/Makefile (props changed) head/devel/dotconf/Makefile (props changed) head/devel/dprog/Makefile (props changed) head/devel/dragon/Makefile (props changed) head/devel/dreampie/Makefile (props changed) head/devel/duplo/Makefile (props changed) head/devel/dwarfdump/Makefile (props changed) head/devel/dxa65/Makefile (props changed) head/devel/dyncall/Makefile (props changed) head/devel/e00compr/Makefile (props changed) head/devel/e4graph/Makefile (props changed) head/devel/e_dbus/Makefile (props changed) head/devel/ebnf2yacc/Makefile (props changed) head/devel/eclipse-eclemma/Makefile (props changed) head/devel/ecore-ipc/Makefile (props changed) head/devel/ecore-main/Makefile.inc (props changed) head/devel/ecore/Makefile (props changed) head/devel/eet/Makefile (props changed) head/devel/eieio/Makefile (props changed) head/devel/eiffelstudio/Makefile (props changed) head/devel/eio/Makefile (props changed) head/devel/elf/Makefile (props changed) head/devel/elfkickers/Makefile (props changed) head/devel/elfrc/Makefile (props changed) head/devel/elfsh/Makefile (props changed) head/devel/elftoaout/Makefile (props changed) head/devel/elib-emacs21/Makefile (props changed) head/devel/elib/Makefile (props changed) head/devel/epm/Makefile (props changed) head/devel/etl/Makefile (props changed) head/devel/eventxx/Makefile (props changed) head/devel/evolution-gconf-tools/Makefile (props changed) head/devel/exercisix/Makefile (props changed) head/devel/f77flow/Makefile (props changed) head/devel/fampp/Makefile (props changed) head/devel/fastcrc/Makefile (props changed) head/devel/fc++/Makefile (props changed) head/devel/ffcall/Makefile (props changed) head/devel/fib/Makefile (props changed) head/devel/firmware-utils/Makefile (props changed) head/devel/firmware-utils/files/Makefile (props changed) head/devel/fistgen/Makefile (props changed) head/devel/flex-sdk/Makefile (props changed) head/devel/flex-sdk2/Makefile (props changed) head/devel/flex-sdk35/Makefile (props changed) head/devel/flex_compiler_shell/Makefile (props changed) head/devel/flexdock/Makefile (props changed) head/devel/flexjson/Makefile (props changed) head/devel/flickrnet/Makefile (props changed) head/devel/flowdesigner/Makefile (props changed) head/devel/flyspray/Makefile (props changed) head/devel/fnorb/Makefile (props changed) head/devel/fortytwo-encore/Makefile (props changed) head/devel/fpc-fcl-async/Makefile (props changed) head/devel/fpc-fcl-base/Makefile (props changed) head/devel/fpc-fcl-db/Makefile (props changed) head/devel/fpc-fcl-fpcunit/Makefile (props changed) head/devel/fpc-fcl-image/Makefile (props changed) head/devel/fpc-fcl-json/Makefile (props changed) head/devel/fpc-fcl-net/Makefile (props changed) head/devel/fpc-fcl-passrc/Makefile (props changed) head/devel/fpc-fcl-process/Makefile (props changed) head/devel/fpc-fcl-registry/Makefile (props changed) head/devel/fpc-fcl-res/Makefile (props changed) head/devel/fpc-fcl-web/Makefile (props changed) head/devel/fpc-fcl-xml/Makefile (props changed) head/devel/fpc-fpmkunit/Makefile (props changed) head/devel/fpc-fppkg/Makefile (props changed) head/devel/fpc-fv/Makefile (props changed) head/devel/fpc-gdbint/Makefile (props changed) head/devel/fpc-pthreads/Makefile (props changed) head/devel/fpc-regexpr/Makefile (props changed) head/devel/fpc-symbolic/Makefile (props changed) head/devel/fpc-zlib/Makefile (props changed) head/devel/fpp/Makefile (props changed) head/devel/frink/Makefile (props changed) head/devel/frink/files/Makefile.bsd (props changed) head/devel/fsmgenerator/Makefile (props changed) head/devel/ftjam/Makefile (props changed) head/devel/fujaba/Makefile (props changed) head/devel/funnelweb/Makefile (props changed) head/devel/gaa/Makefile (props changed) head/devel/gauche-readline/Makefile (props changed) head/devel/gccmakedep/Makefile (props changed) head/devel/gconf2-reference/Makefile (props changed) head/devel/gconfmm26/Makefile (props changed) head/devel/gdbmods/Makefile (props changed) head/devel/generate/Makefile (props changed) head/devel/genproto/Makefile (props changed) head/devel/geoip-java/Makefile (props changed) head/devel/gettext-msghack/Makefile (props changed) head/devel/gio-sharp/Makefile (props changed) head/devel/gittrac/Makefile (props changed) head/devel/glademm/Makefile (props changed) head/devel/glog/Makefile (props changed) head/devel/glrparser/Makefile (props changed) head/devel/glui/Makefile (props changed) head/devel/gnatpython/Makefile (props changed) head/devel/gnome-vfs-reference/Makefile (props changed) head/devel/gnome-vfsmm/Makefile (props changed) head/devel/gnome2-hacker-tools/Makefile (props changed) head/devel/gnulibiberty/Makefile (props changed) head/devel/google-gdata/Makefile (props changed) head/devel/google-sparsehash/Makefile (props changed) head/devel/google-styleguide/Makefile (props changed) head/devel/googlemock/Makefile (props changed) head/devel/gorm/Makefile (props changed) head/devel/gperf/Makefile (props changed) head/devel/gprbuild/Makefile (props changed) head/devel/gps/Makefile (props changed) head/devel/gpsim/Makefile (props changed) head/devel/gsoap/Makefile (props changed) head/devel/gstreamer-plugins-gconf/Makefile (props changed) head/devel/gstreamer-plugins-gio/Makefile (props changed) head/devel/gstreamer-plugins-gnomevfs/Makefile (props changed) head/devel/gstreamer-plugins-sdl/Makefile (props changed) head/devel/gstreamer-plugins-soup/Makefile (props changed) head/devel/gtgt/Makefile (props changed) head/devel/gtkparasite/Makefile (props changed) head/devel/gzstream/Makefile (props changed) head/devel/hachoir-core/Makefile (props changed) head/devel/hachoir-parser/Makefile (props changed) head/devel/hachoir-regex/Makefile (props changed) head/devel/hapy/Makefile (props changed) head/devel/hcs12mem/Makefile (props changed) head/devel/hexcompare/Makefile (props changed) head/devel/hgsvn/Makefile (props changed) head/devel/highlighterkit/Makefile (props changed) head/devel/horde-content/Makefile (props changed) head/devel/horde-timeobjects/Makefile (props changed) head/devel/horde-whups/Makefile (props changed) head/devel/hp48cc/Makefile (props changed) head/devel/hp48xgcc/Makefile (props changed) head/devel/hs-BNFC/Makefile (props changed) head/devel/hs-Boolean/Makefile (props changed) head/devel/hs-ConfigFile/Makefile (props changed) head/devel/hs-HUnit/Makefile (props changed) head/devel/hs-IORefCAS/Makefile (props changed) head/devel/hs-IfElse/Makefile (props changed) head/devel/hs-MaybeT/Makefile (props changed) head/devel/hs-MemoTrie/Makefile (props changed) head/devel/hs-MissingH/Makefile (props changed) head/devel/hs-MonadCatchIO-mtl/Makefile (props changed) head/devel/hs-MonadCatchIO-transformers/Makefile (props changed) head/devel/hs-ObjectName/Makefile (props changed) head/devel/hs-PSQueue/Makefile (props changed) head/devel/hs-QuickCheck/Makefile (props changed) head/devel/hs-StateVar/Makefile (props changed) head/devel/hs-Stream/Makefile (props changed) head/devel/hs-Tensor/Makefile (props changed) head/devel/hs-TypeCompose/Makefile (props changed) head/devel/hs-abstract-deque/Makefile (props changed) head/devel/hs-abstract-par/Makefile (props changed) head/devel/hs-alex/Makefile (props changed) head/devel/hs-ansi-terminal/Makefile (props changed) head/devel/hs-ansi-wl-pprint/Makefile (props changed) head/devel/hs-arrows/Makefile (props changed) head/devel/hs-asn1-data/Makefile (props changed) head/devel/hs-attempt/Makefile (props changed) head/devel/hs-base-unicode-symbols/Makefile (props changed) head/devel/hs-base16-bytestring/Makefile (props changed) head/devel/hs-base64-bytestring/Makefile (props changed) head/devel/hs-bits-atomic/Makefile (props changed) head/devel/hs-blaze-builder-conduit/Makefile (props changed) head/devel/hs-blaze-builder-enumerator/Makefile (props changed) head/devel/hs-blaze-builder/Makefile (props changed) head/devel/hs-blaze-textual/Makefile (props changed) head/devel/hs-bloomfilter/Makefile (props changed) head/devel/hs-bsd-sysctl/Makefile (props changed) head/devel/hs-byteorder/Makefile (props changed) head/devel/hs-bytestring-nums/Makefile (props changed) head/devel/hs-c2hs/Makefile (props changed) head/devel/hs-cabal-install/Makefile (props changed) head/devel/hs-cereal/Makefile (props changed) head/devel/hs-checkers/Makefile (props changed) head/devel/hs-cmdargs/Makefile (props changed) head/devel/hs-conduit/Makefile (props changed) head/devel/hs-configurator/Makefile (props changed) head/devel/hs-convertible/Makefile (props changed) head/devel/hs-cpphs/Makefile (props changed) head/devel/hs-data-default/Makefile (props changed) head/devel/hs-datetime/Makefile (props changed) head/devel/hs-directory-tree/Makefile (props changed) head/devel/hs-dlist/Makefile (props changed) head/devel/hs-drift/Makefile (props changed) head/devel/hs-edit-distance/Makefile (props changed) head/devel/hs-enumerator/Makefile (props changed) head/devel/hs-failure/Makefile (props changed) head/devel/hs-fast-logger/Makefile (props changed) head/devel/hs-fgl/Makefile (props changed) head/devel/hs-file-embed/Makefile (props changed) head/devel/hs-filemanip/Makefile (props changed) head/devel/hs-filestore/Makefile (props changed) head/devel/hs-filesystem-conduit/Makefile (props changed) head/devel/hs-gconf/Makefile (props changed) head/devel/hs-ghc-events/Makefile (props changed) head/devel/hs-ghc-mtl/Makefile (props changed) head/devel/hs-ghc-paths/Makefile (props changed) head/devel/hs-glade/Makefile (props changed) head/devel/hs-gtk2hs-buildtools/Makefile (props changed) head/devel/hs-haddock/Makefile (props changed) head/devel/hs-happy/Makefile (props changed) head/devel/hs-hashable/Makefile (props changed) head/devel/hs-hashed-storage/Makefile (props changed) head/devel/hs-hashtables/Makefile (props changed) head/devel/hs-haskell-platform/Makefile (props changed) head/devel/hs-haskell-src-exts/Makefile (props changed) head/devel/hs-haskell-src/Makefile (props changed) head/devel/hs-hastache/Makefile (props changed) head/devel/hs-hint/Makefile (props changed) head/devel/hs-hlibev/Makefile (props changed) head/devel/hs-hoogle/Makefile (props changed) head/devel/hs-hslogger/Makefile (props changed) head/devel/hs-hspec/Makefile (props changed) head/devel/hs-language-c/Makefile (props changed) head/devel/hs-language-javascript/Makefile (props changed) head/devel/hs-largeword/Makefile (props changed) head/devel/hs-lazysmallcheck/Makefile (props changed) head/devel/hs-lifted-base/Makefile (props changed) head/devel/hs-logict/Makefile (props changed) head/devel/hs-mmap/Makefile (props changed) head/devel/hs-monad-control/Makefile (props changed) head/devel/hs-monad-par-extras/Makefile (props changed) head/devel/hs-monad-par/Makefile (props changed) head/devel/hs-mtl/Makefile (props changed) head/devel/hs-mueval/Makefile (props changed) head/devel/hs-murmur-hash/Makefile (props changed) head/devel/hs-parallel/Makefile (props changed) head/devel/hs-pcre-light/Makefile (props changed) head/devel/hs-pool-conduit/Makefile (props changed) head/devel/hs-primitive/Makefile (props changed) head/devel/hs-random/Makefile (props changed) head/devel/hs-ranges/Makefile (props changed) head/devel/hs-readline/Makefile (props changed) head/devel/hs-resource-pool/Makefile (props changed) head/devel/hs-resourcet/Makefile (props changed) head/devel/hs-safe/Makefile (props changed) head/devel/hs-show/Makefile (props changed) head/devel/hs-silently/Makefile (props changed) head/devel/hs-smallcheck/Makefile (props changed) head/devel/hs-split/Makefile (props changed) head/devel/hs-stm/Makefile (props changed) head/devel/hs-strict/Makefile (props changed) head/devel/hs-syb-with-class-instances-text/Makefile (props changed) head/devel/hs-syb-with-class/Makefile (props changed) head/devel/hs-syb/Makefile (props changed) head/devel/hs-system-fileio/Makefile (props changed) head/devel/hs-system-filepath/Makefile (props changed) head/devel/hs-tagged/Makefile (props changed) head/devel/hs-temporary/Makefile (props changed) head/devel/hs-terminfo/Makefile (props changed) head/devel/hs-test-framework-hunit/Makefile (props changed) head/devel/hs-test-framework-quickcheck2/Makefile (props changed) head/devel/hs-test-framework/Makefile (props changed) head/devel/hs-testpack/Makefile (props changed) head/devel/hs-text/Makefile (props changed) head/devel/hs-threadscope/Makefile (props changed) head/devel/hs-transformers-base/Makefile (props changed) head/devel/hs-transformers/Makefile (props changed) head/devel/hs-unamb/Makefile (props changed) head/devel/hs-uniplate/Makefile (props changed) head/devel/hs-unix-compat/Makefile (props changed) head/devel/hs-unordered-containers/Makefile (props changed) head/devel/hs-utf8-light/Makefile (props changed) head/devel/hs-utf8-string/Makefile (props changed) head/devel/hs-utility-ht/Makefile (props changed) head/devel/hs-uuagc-bootstrap/Makefile (props changed) head/devel/hs-uuagc-cabal/Makefile (props changed) head/devel/hs-uuagc/Makefile (props changed) head/devel/hs-uulib/Makefile (props changed) head/devel/hs-vault/Makefile (props changed) head/devel/hs-vector-algorithms/Makefile (props changed) head/devel/hs-vector/Makefile (props changed) head/devel/hs-void/Makefile (props changed) head/devel/htable/Makefile (props changed) head/devel/hyena/Makefile (props changed) head/devel/icmake/Makefile (props changed) head/devel/inilib/Makefile (props changed) head/devel/iniparser/Makefile (props changed) head/devel/initutil/Makefile (props changed) head/devel/ioncube/Makefile (props changed) head/devel/ireport/Makefile (props changed) head/devel/itext/Makefile (props changed) head/devel/jakarta-commons-configuration/Makefile (props changed) head/devel/jakarta-commons-daemon/Makefile (props changed) head/devel/jakarta-commons-io/Makefile (props changed) head/devel/jakarta-commons-jxpath/Makefile (props changed) head/devel/jakarta-commons-modeler/Makefile (props changed) head/devel/jam/Makefile (props changed) head/devel/jansson/Makefile (props changed) head/devel/java-findbugs/Makefile (props changed) head/devel/java-util-concurrent/Makefile (props changed) head/devel/javolution/Makefile (props changed) head/devel/jclassinfo/Makefile (props changed) head/devel/jcmdline/Makefile (props changed) head/devel/jenkins/Makefile (props changed) head/devel/jiic/Makefile (props changed) head/devel/jline/Makefile (props changed) head/devel/jsap/Makefile (props changed) head/devel/jsl/Makefile (props changed) head/devel/json-c/Makefile (props changed) head/devel/judy/Makefile (props changed) head/devel/kickassembler/Makefile (props changed) head/devel/kimwitu/Makefile (props changed) head/devel/lemon/Makefile (props changed) head/devel/lfcbase/Makefile (props changed) head/devel/lfcxml/Makefile (props changed) head/devel/libPropList/Makefile (props changed) head/devel/libafterbase/Makefile (props changed) head/devel/libassa/Makefile (props changed) head/devel/libatomic_ops/Makefile (props changed) head/devel/libaura/Makefile (props changed) head/devel/libavl/Makefile (props changed) head/devel/libbegemot/Makefile (props changed) head/devel/libbfd/Makefile (props changed) head/devel/libbinio/Makefile (props changed) head/devel/libbnr/Makefile (props changed) head/devel/libbonobo-reference/Makefile (props changed) head/devel/libcfg/Makefile (props changed) head/devel/libcidr/Makefile (props changed) head/devel/libcii/Makefile (props changed) head/devel/libconfig/Makefile (props changed) head/devel/libdaemon/Makefile (props changed) head/devel/libdasm/Makefile (props changed) head/devel/libdict/Makefile (props changed) head/devel/libdisasm/Makefile (props changed) head/devel/libdisorder/Makefile (props changed) head/devel/libdispatch/Makefile (props changed) head/devel/libdlmalloc/Makefile (props changed) head/devel/libdlmalloc/files/Makefile (props changed) head/devel/libdnsres/Makefile (props changed) head/devel/libdouble-conversion/Makefile (props changed) head/devel/libds/Makefile (props changed) head/devel/libdsp/Makefile (props changed) head/devel/libdwarf/Makefile (props changed) head/devel/libee/Makefile (props changed) head/devel/libestr/Makefile (props changed) head/devel/libev/Makefile (props changed) head/devel/libevent-hiphop/Makefile (props changed) head/devel/libevent/Makefile (props changed) head/devel/libfreefare/Makefile (props changed) head/devel/libg19/Makefile (props changed) head/devel/libgamepad/Makefile (props changed) head/devel/libgconf-java/Makefile (props changed) head/devel/libghthash/Makefile (props changed) head/devel/libglade-java/Makefile (props changed) head/devel/libglade2-reference/Makefile (props changed) head/devel/libglade2/Makefile (props changed) head/devel/libglademm24/Makefile (props changed) head/devel/libgpc/Makefile (props changed) head/devel/libhoard/Makefile (props changed) head/devel/libinotify/Makefile (props changed) head/devel/libixp/Makefile (props changed) head/devel/liblas/Makefile (props changed) head/devel/liblcfg/Makefile (props changed) head/devel/libleaftag/Makefile (props changed) head/devel/liblogging/Makefile (props changed) head/devel/liblouis/Makefile (props changed) head/devel/liblouisxml/Makefile (props changed) head/devel/libltdl/Makefile (props changed) head/devel/libmatheval/Makefile (props changed) head/devel/libmba/Makefile (props changed) head/devel/libmcs/Makefile (props changed) head/devel/libmimedir/Makefile (props changed) head/devel/libmonetra/Makefile (props changed) head/devel/libmowgli/Makefile (props changed) head/devel/libmsocket/Makefile (props changed) head/devel/libnaji/Makefile (props changed) head/devel/liboil/Makefile (props changed) head/devel/libol/Makefile (props changed) head/devel/libole2/Makefile (props changed) head/devel/liboobs/Makefile (props changed) head/devel/libopendaap/Makefile (props changed) head/devel/libpafe-ruby/Makefile (props changed) head/devel/libpasori/Makefile (props changed) head/devel/libpasori/files/Makefile (props changed) head/devel/libpasori/files/Makefile.lib (props changed) head/devel/libpasori/files/Makefile.lib.usb20 (props changed) head/devel/libpasori/files/Makefile.lpdump (props changed) head/devel/libpasori/files/Makefile.lptest (props changed) head/devel/libpciaccess/Makefile (props changed) head/devel/libpdel/Makefile (props changed) head/devel/libphish/Makefile (props changed) head/devel/libreadline-java/Makefile (props changed) head/devel/libruin/Makefile (props changed) head/devel/libs11n/Makefile (props changed) head/devel/libs11n/files/Makefile.bsd (props changed) head/devel/libshhmsg/Makefile (props changed) head/devel/libshhmsg/files/Makefile.lib (props changed) head/devel/libshhopt/Makefile (props changed) head/devel/libshhopt/files/Makefile (props changed) head/devel/libshhopt/files/Makefile.lib (props changed) head/devel/libsigc++12/Makefile (props changed) head/devel/libsigrokdecode/Makefile (props changed) head/devel/libsigsegv/Makefile (props changed) head/devel/libsoup-gnome/Makefile (props changed) head/devel/libsoup-reference/Makefile (props changed) head/devel/libstatgrab/Makefile (props changed) head/devel/libstrfunc/Makefile (props changed) head/devel/libsysinfo/Makefile (props changed) head/devel/libtai/Makefile (props changed) head/devel/libtar/Makefile (props changed) head/devel/libtecla/Makefile (props changed) head/devel/libtpl/Makefile (props changed) head/devel/libublio/files/Makefile (props changed) head/devel/libukcprog/Makefile (props changed) head/devel/libunicode/Makefile (props changed) head/devel/libuninum/Makefile (props changed) head/devel/libunwind/Makefile (props changed) head/devel/libvirt-java/Makefile (props changed) head/devel/libx86/Makefile (props changed) head/devel/libxalloc/Makefile (props changed) head/devel/libxalloc/files/Makefile.lib (props changed) head/devel/libytnef/Makefile (props changed) head/devel/linux-f10-allegro/Makefile (props changed) head/devel/linux-f10-dbus-glib/Makefile (props changed) head/devel/linux-f10-dbus-libs/Makefile (props changed) head/devel/linux-f10-libglade2/Makefile (props changed) head/devel/linux-f10-libsigc++20/Makefile (props changed) head/devel/linux-f10-nspr/Makefile (props changed) head/devel/linux-f10-sdl12/Makefile (props changed) head/devel/linux-kmod-compat/Makefile (props changed) head/devel/linux_kdump/Makefile (props changed) head/devel/lion/Makefile (props changed) head/devel/llvm-devel/Makefile.svn_rev (props changed) head/devel/lmdbg/Makefile (props changed) head/devel/lndir/Makefile (props changed) head/devel/log4cpp/Makefile.man (props changed) head/devel/log4j/Makefile (props changed) head/devel/log4net/Makefile (props changed) head/devel/log4sh/Makefile (props changed) head/devel/loki/Makefile (props changed) head/devel/looks/Makefile (props changed) head/devel/love/Makefile (props changed) head/devel/love07/Makefile (props changed) head/devel/love5/Makefile (props changed) head/devel/lrmi/Makefile (props changed) head/devel/lua-alien/Makefile (props changed) head/devel/lua-bitlib/Makefile (props changed) head/devel/lua-cjson/Makefile (props changed) head/devel/lua-gettext/files/Makefile (props changed) head/devel/lua-pty/Makefile (props changed) head/devel/lua-pty/files/Makefile (props changed) head/devel/lua-rds-parser/Makefile (props changed) head/devel/lua-redis-parser/Makefile (props changed) head/devel/luajava/Makefile (props changed) head/devel/m4/Makefile (props changed) head/devel/m6811-binutils/Makefile (props changed) head/devel/magit/Makefile (props changed) head/devel/makedepend/Makefile (props changed) head/devel/maven-ant-tasks/Makefile (props changed) head/devel/maven-wrapper/Makefile (props changed) head/devel/maven2/Makefile (props changed) head/devel/maven3/Makefile (props changed) head/devel/maven31/Makefile (props changed) head/devel/mcpp/Makefile (props changed) head/devel/memcheck/Makefile (props changed) head/devel/menhir/Makefile (props changed) head/devel/mercurialeclipse/Makefile (props changed) head/devel/mimir/Makefile (props changed) head/devel/mingw32-bin-msvcrt/Makefile (props changed) head/devel/mingw32-bin-msvcrt/files/Makefile (props changed) head/devel/mingw32-directx/Makefile (props changed) head/devel/mingw32-libffi/Makefile (props changed) head/devel/mingw32-libyaml/Makefile (props changed) head/devel/mingw32-pdcurses/Makefile (props changed) head/devel/mingw32-pthreads/Makefile (props changed) head/devel/mingw32-zlib/Makefile (props changed) head/devel/mingw64-binutils/Makefile (props changed) head/devel/mk-configure/Makefile (props changed) head/devel/mk/Makefile (props changed) head/devel/mkcmd/Makefile (props changed) head/devel/ml-doc/Makefile (props changed) head/devel/mono-addins/Makefile (props changed) head/devel/mph/Makefile (props changed) head/devel/mq4cpp/Makefile (props changed) head/devel/msgpack/Makefile (props changed) head/devel/msp430-gdb/Makefile (props changed) head/devel/msp430-libc/Makefile (props changed) head/devel/msp430mcu/Makefile (props changed) head/devel/msrc0/Makefile (props changed) head/devel/nana/Makefile (props changed) head/devel/ncc/Makefile (props changed) head/devel/ncnf/Makefile (props changed) head/devel/ncurses/Makefile (props changed) head/devel/netscape-java40/Makefile (props changed) head/devel/newfile/Makefile (props changed) head/devel/nini/Makefile (props changed) head/devel/notify-sharp/Makefile (props changed) head/devel/noweb/Makefile (props changed) head/devel/nxt-python/Makefile (props changed) head/devel/obfuscatejs/Makefile (props changed) head/devel/ocaml-annexlib/Makefile (props changed) head/devel/ocaml-camljava/Makefile (props changed) head/devel/ocaml-camomile-examples/Makefile (props changed) head/devel/ocaml-camomile/Makefile (props changed) head/devel/ocaml-classes/Makefile (props changed) head/devel/ocaml-deriving-ocsigen/Makefile (props changed) head/devel/ocaml-equeue/Makefile (props changed) head/devel/ocaml-event/Makefile (props changed) head/devel/ocaml-findlib/Makefile (props changed) head/devel/ocaml-lwt/Makefile (props changed) head/devel/ocaml-magic/Makefile (props changed) head/devel/ocaml-ounit/Makefile (props changed) head/devel/ocaml-pcre/Makefile (props changed) head/devel/ocaml-react/Makefile (props changed) head/devel/ocaml-sem/Makefile (props changed) head/devel/ocamlweb/Makefile (props changed) head/devel/ocfpcsc/Makefile (props changed) head/devel/ode-devel/Makefile (props changed) head/devel/oniguruma/Makefile (props changed) head/devel/open-beagle/Makefile (props changed) head/devel/open-usp-tukubai/Makefile (props changed) head/devel/opencvs/Makefile (props changed) head/devel/openwince-include/Makefile (props changed) head/devel/openzz/Makefile (props changed) head/devel/orc/Makefile (props changed) head/devel/ossp-al/Makefile (props changed) head/devel/ossp-al/files/manpages.mk (props changed) head/devel/ossp-cfg/Makefile (props changed) head/devel/ossp-ex/Makefile (props changed) head/devel/ossp-ex/files/manpages.mk (props changed) head/devel/ossp-l2/Makefile (props changed) head/devel/ossp-val/Makefile (props changed) head/devel/ossp-var/Makefile (props changed) head/devel/ossp-var/files/manpages.mk (props changed) head/devel/ossp-xds/Makefile (props changed) head/devel/p4.el/Makefile (props changed) head/devel/p4/Makefile (props changed) head/devel/p4/Makefile.inc (props changed) head/devel/p4api/Makefile (props changed) head/devel/p4d/Makefile (props changed) head/devel/p4delta/Makefile (props changed) head/devel/p4ftpd/Makefile (props changed) head/devel/p4p/Makefile (props changed) head/devel/p4web/Makefile (props changed) head/devel/p5-App-cpanminus/Makefile (props changed) head/devel/p5-CPAN-Meta-Check/Makefile (props changed) head/devel/p5-Class-Forward/Makefile (props changed) head/devel/p5-Data-Localize/Makefile (props changed) head/devel/p5-Date-Manip/extramanpages.mk (props changed) head/devel/p5-Devel-KYTProf/Makefile (props changed) head/devel/p5-Exporter-Declare/Makefile (props changed) head/devel/p5-File-ShareDir-ProjectDistDir/Makefile (props changed) head/devel/p5-Log-Contextual/Makefile (props changed) head/devel/p5-Module-Metadata/Makefile (props changed) head/devel/p5-MooseX-ConfigFromFile/Makefile (props changed) head/devel/p5-Net-DBus/Makefile (props changed) head/devel/p5-Ouch/Makefile (props changed) head/devel/p5-Term-Menus/Makefile (props changed) head/devel/p5-Test-Requires/Makefile (props changed) head/devel/p5-Test-TCP/Makefile (props changed) head/devel/p5-Unix-Statgrab/Makefile (props changed) head/devel/p5-Validation-Class/Makefile (props changed) head/devel/papi/Makefile (props changed) head/devel/pas2dox/Makefile (props changed) head/devel/patch/Makefile (props changed) head/devel/pcl/Makefile (props changed) head/devel/pdcurses-the/Makefile (props changed) head/devel/pdcurses/Makefile (props changed) head/devel/pear-Date_Holidays_Italy/Makefile (props changed) head/devel/pear-Date_Holidays_Japan/Makefile (props changed) head/devel/pear-Date_Holidays_Norway/Makefile (props changed) head/devel/pear-Date_Holidays_PHPdotNet/Makefile (props changed) head/devel/pear-Date_Holidays_Romania/Makefile (props changed) head/devel/pear-Date_Holidays_Slovenia/Makefile (props changed) head/devel/pear-Date_Holidays_Sweden/Makefile (props changed) head/devel/pear-Date_Holidays_UNO/Makefile (props changed) head/devel/pear-Date_Holidays_USA/Makefile (props changed) head/devel/pear-Date_Holidays_Ukraine/Makefile (props changed) head/devel/pear-File_Iterator/Makefile (props changed) head/devel/pear-HTML_Common2/Makefile (props changed) head/devel/pear-HTML_Page2/Makefile (props changed) head/devel/pear-HTML_QuickForm_Livesearch/Makefile (props changed) head/devel/pear-HTML_Template_Flexy/Makefile (props changed) head/devel/pear-HTML_Template_IT/Makefile (props changed) head/devel/pear-Horde_Alarm/Makefile (props changed) head/devel/pear-Horde_Argv/Makefile (props changed) head/devel/pear-Horde_Autoloader/Makefile (props changed) head/devel/pear-Horde_Autoloader_Cache/Makefile (props changed) head/devel/pear-Horde_Cache/Makefile (props changed) head/devel/pear-Horde_Cli/Makefile (props changed) head/devel/pear-Horde_Constraint/Makefile (props changed) head/devel/pear-Horde_Controller/Makefile (props changed) head/devel/pear-Horde_Core/Makefile (props changed) head/devel/pear-Horde_Data/Makefile (props changed) head/devel/pear-Horde_Date/Makefile (props changed) head/devel/pear-Horde_Date_Parser/Makefile (props changed) head/devel/pear-Horde_Exception/Makefile (props changed) head/devel/pear-Horde_History/Makefile (props changed) head/devel/pear-Horde_Icalendar/Makefile (props changed) head/devel/pear-Horde_Injector/Makefile (props changed) head/devel/pear-Horde_Itip/Makefile (props changed) head/devel/pear-Horde_Lock/Makefile (props changed) head/devel/pear-Horde_LoginTasks/Makefile (props changed) head/devel/pear-Horde_Nls/Makefile (props changed) head/devel/pear-Horde_Notification/Makefile (props changed) head/devel/pear-Horde_Prefs/Makefile (props changed) head/devel/pear-Horde_Queue/Makefile (props changed) head/devel/pear-Horde_Rdo/Makefile (props changed) head/devel/pear-Horde_Role/Makefile (props changed) head/devel/pear-Horde_Scheduler/Makefile (props changed) head/devel/pear-Horde_Serialize/Makefile (props changed) head/devel/pear-Horde_Stream/Makefile (props changed) head/devel/pear-Horde_Stream_Filter/Makefile (props changed) head/devel/pear-Horde_Stream_Wrapper/Makefile (props changed) head/devel/pear-Horde_Support/Makefile (props changed) head/devel/pear-Horde_Thrift/Makefile (props changed) head/devel/pear-Horde_Timezone/Makefile (props changed) head/devel/pear-Horde_Token/Makefile (props changed) head/devel/pear-Horde_Translation/Makefile (props changed) head/devel/pear-Horde_Tree/Makefile (props changed) head/devel/pear-Horde_Util/Makefile (props changed) head/devel/pear-Horde_View/Makefile (props changed) head/devel/pear-IO_Bit/Makefile (props changed) head/devel/pear-PHPUnit3/Makefile (props changed) head/devel/pear-PHP_UML/Makefile (props changed) head/devel/pear-PPW/Makefile (props changed) head/devel/pear-PhpDocumentor/Makefile (props changed) head/devel/pear-Structure_LinkedList/Makefile (props changed) head/devel/pear-Structures_DataGrid/Makefile (props changed) head/devel/pear-System_Command/Makefile (props changed) head/devel/pear-Testing_Selenium/Makefile (props changed) head/devel/pear-Validate_US/Makefile (props changed) head/devel/pear-XML_SVG/Makefile (props changed) head/devel/pear-XML_Transformer/Makefile (props changed) head/devel/pear-channel-horde/Makefile (props changed) head/devel/pear-channel-horde/bsd.horde.mk (props changed) head/devel/pear-channel-openpear/Makefile (props changed) head/devel/pear-channel-phing/Makefile (props changed) head/devel/pear-channel-phpdoc/Makefile (props changed) head/devel/pear-channel-phpunit/Makefile (props changed) head/devel/pear-channel-symfony/Makefile (props changed) head/devel/pear-phing/Makefile (props changed) head/devel/pear/bsd.pear.channel.mk (props changed) head/devel/pear/bsd.pear.mk (props changed) head/devel/pecl-bbcode/Makefile (props changed) head/devel/pecl-bcompiler/Makefile (props changed) head/devel/pecl-eio/Makefile (props changed) head/devel/pecl-htscanner/Makefile (props changed) head/devel/pecl-judy/Makefile (props changed) head/devel/pecl-mcve/Makefile (props changed) head/devel/pecl-ncurses/Makefile (props changed) head/devel/pecl-params/Makefile (props changed) head/devel/pecl-parsekit/Makefile (props changed) head/devel/pecl-runkit/Makefile (props changed) head/devel/pecl-scream/Makefile (props changed) head/devel/pecl-shape/Makefile (props changed) head/devel/pecl-spl_types/Makefile (props changed) head/devel/pecl-statgrab/Makefile (props changed) head/devel/pecl-svn/Makefile (props changed) head/devel/pecl-uuid/Makefile (props changed) head/devel/pecl-yac/Makefile (props changed) head/devel/pecl-zookeeper/Makefile (props changed) head/devel/performance/Makefile (props changed) head/devel/php-java-bridge/Makefile (props changed) head/devel/php5-blitz-devel/Makefile (props changed) head/devel/php5-blitz/Makefile (props changed) head/devel/php5-dav/Makefile (props changed) head/devel/php5-geshi/Makefile (props changed) head/devel/php5-gettext/Makefile (props changed) head/devel/php5-json/Makefile (props changed) head/devel/php5-msgpack/Makefile (props changed) head/devel/php5-pcntl/Makefile (props changed) head/devel/php5-pinba/Makefile (props changed) head/devel/php5-readline/Makefile (props changed) head/devel/php5-shmop/Makefile (props changed) head/devel/php5-sysvmsg/Makefile (props changed) head/devel/php5-sysvsem/Makefile (props changed) head/devel/php5-sysvshm/Makefile (props changed) head/devel/php5-tokenizer/Makefile (props changed) head/devel/php52-gettext/Makefile (props changed) head/devel/php52-json/Makefile (props changed) head/devel/php52-ncurses/Makefile (props changed) head/devel/php52-pcntl/Makefile (props changed) head/devel/php52-pcre/Makefile (props changed) head/devel/php52-readline/Makefile (props changed) head/devel/php52-shmop/Makefile (props changed) head/devel/php52-spl/Makefile (props changed) head/devel/php52-sysvmsg/Makefile (props changed) head/devel/php52-sysvsem/Makefile (props changed) head/devel/php52-sysvshm/Makefile (props changed) head/devel/php52-tokenizer/Makefile (props changed) head/devel/php55-gettext/Makefile (props changed) head/devel/php55-json/Makefile (props changed) head/devel/php55-pcntl/Makefile (props changed) head/devel/php55-readline/Makefile (props changed) head/devel/php55-shmop/Makefile (props changed) head/devel/php55-sysvmsg/Makefile (props changed) head/devel/php55-sysvsem/Makefile (props changed) head/devel/php55-sysvshm/Makefile (props changed) head/devel/php55-tokenizer/Makefile (props changed) head/devel/phpbt/Makefile (props changed) head/devel/phptags/Makefile (props changed) head/devel/picp/Makefile (props changed) head/devel/pipestatus/Makefile (props changed) head/devel/plan9port/Makefile (props changed) head/devel/pmd/Makefile (props changed) head/devel/poco-ssl/Makefile (props changed) head/devel/poco/Makefile (props changed) head/devel/premake/Makefile (props changed) head/devel/premake4/Makefile (props changed) head/devel/preps-gui/Makefile (props changed) head/devel/prepstools/Makefile (props changed) head/devel/projectcenter/Makefile (props changed) head/devel/protobuf-c/Makefile (props changed) head/devel/prototype/Makefile (props changed) head/devel/psptoolchain-gcc-stage2/Makefile (props changed) head/devel/psptoolchain-pspsdk-stage1/Makefile (props changed) head/devel/psptoolchain-pspsdk-stage2/Makefile (props changed) head/devel/psptoolchain/Makefile (props changed) head/devel/pth-hard/Makefile (props changed) head/devel/pth/Makefile (props changed) head/devel/pthsem/Makefile (props changed) head/devel/pty/Makefile (props changed) head/devel/publib/Makefile (props changed) head/devel/pure-ffi/Makefile (props changed) head/devel/pure-gen/Makefile (props changed) head/devel/pure-readline/Makefile (props changed) head/devel/pure-stldict/Makefile (props changed) head/devel/py-Acquisition/Makefile (props changed) head/devel/py-AddOns/Makefile (props changed) head/devel/py-Breve/Makefile (props changed) head/devel/py-BytecodeAssembler/Makefile (props changed) head/devel/py-DocumentTemplate/Makefile (props changed) head/devel/py-EnthoughtBase/Makefile (props changed) head/devel/py-ExtensionClass/Makefile (props changed) head/devel/py-InlineEgg/Makefile (props changed) head/devel/py-Jinja/Makefile (props changed) head/devel/py-Missing/Makefile (props changed) head/devel/py-MultiMapping/Makefile (props changed) head/devel/py-PEAK-Rules/Makefile (props changed) head/devel/py-Persistence/Makefile (props changed) head/devel/py-Products.ATReferenceBrowserWidget/Makefile (props changed) head/devel/py-Products.BTreeFolder2/Makefile (props changed) head/devel/py-Products.CMFCalendar/Makefile (props changed) head/devel/py-Products.CMFCore/Makefile (props changed) head/devel/py-Products.CMFEditions/Makefile (props changed) head/devel/py-Products.CMFFormController/Makefile (props changed) head/devel/py-Products.CMFPlacefulWorkflow/Makefile (props changed) head/devel/py-Products.CMFQuickInstallerTool/Makefile (props changed) head/devel/py-Products.CMFTestCase/Makefile (props changed) head/devel/py-Products.ExtendedPathIndex/Makefile (props changed) head/devel/py-Products.ExternalEditor/Makefile (props changed) head/devel/py-Products.ExternalMethod/Makefile (props changed) head/devel/py-Products.LDAPMultiPlugins/Makefile (props changed) head/devel/py-Products.LDAPUserFolder/Makefile (props changed) head/devel/py-Products.MIMETools/Makefile (props changed) head/devel/py-Products.Marshall/Makefile (props changed) head/devel/py-Products.OFSP/Makefile (props changed) head/devel/py-Products.PloneLanguageTool/Makefile (props changed) head/devel/py-Products.PluginRegistry/Makefile (props changed) head/devel/py-Products.PortalTransforms/Makefile (props changed) head/devel/py-Products.PythonScripts/Makefile (props changed) head/devel/py-Products.StandardCacheManagers/Makefile (props changed) head/devel/py-Products.ZCTextIndex/Makefile (props changed) head/devel/py-Products.ZCatalog/Makefile (props changed) head/devel/py-Products.ZSQLMethods/Makefile (props changed) head/devel/py-Products.ZopeVersionControl/Makefile (props changed) head/devel/py-Products.statusmessages/Makefile (props changed) head/devel/py-Products.validation/Makefile (props changed) head/devel/py-Record/Makefile (props changed) head/devel/py-SymbolType/Makefile (props changed) head/devel/py-TGScheduler/Makefile (props changed) head/devel/py-ToscaWidgets/Makefile (props changed) head/devel/py-TurboJinja/Makefile (props changed) head/devel/py-ZopeUndo/Makefile (props changed) head/devel/py-akismet/Makefile (props changed) head/devel/py-anonfunc/Makefile (props changed) head/devel/py-apipkg/Makefile (props changed) head/devel/py-application/Makefile (props changed) head/devel/py-archetypes.schemaextender/Makefile (props changed) head/devel/py-asn1-modules/Makefile (props changed) head/devel/py-asn1/Makefile (props changed) head/devel/py-aspects/Makefile (props changed) head/devel/py-aspyct/Makefile (props changed) head/devel/py-async/Makefile (props changed) head/devel/py-babel/Makefile (props changed) head/devel/py-cclib/Makefile (props changed) head/devel/py-celery/Makefile (props changed) head/devel/py-cfgparse/Makefile (props changed) head/devel/py-cheetah/Makefile (props changed) head/devel/py-ciphon/Makefile (props changed) head/devel/py-cjson/Makefile (props changed) head/devel/py-cld/Makefile (props changed) head/devel/py-cmdln/Makefile (props changed) head/devel/py-cog/Makefile (props changed) head/devel/py-coil/Makefile (props changed) head/devel/py-collective.monkeypatcher/Makefile (props changed) head/devel/py-configobj/Makefile (props changed) head/devel/py-construct/Makefile (props changed) head/devel/py-country/Makefile (props changed) head/devel/py-coverage/Makefile (props changed) head/devel/py-crcmod/Makefile (props changed) head/devel/py-ctags/Makefile (props changed) head/devel/py-cxx/Makefile (props changed) head/devel/py-daemon/Makefile (props changed) head/devel/py-dal/Makefile (props changed) head/devel/py-darcsver/Makefile (props changed) head/devel/py-deliciousapi/Makefile (props changed) head/devel/py-demjson/Makefile (props changed) head/devel/py-dexml/Makefile (props changed) head/devel/py-dialog/Makefile (props changed) head/devel/py-diazo/Makefile (props changed) head/devel/py-durus/Makefile (props changed) head/devel/py-epsilon/Makefile (props changed) head/devel/py-event/Makefile (props changed) head/devel/py-experimental.cssselect/Makefile (props changed) head/devel/py-extremes/Makefile (props changed) head/devel/py-ezpyinline/Makefile (props changed) head/devel/py-fam/Makefile (props changed) head/devel/py-fileutils/Makefile (props changed) head/devel/py-five.formlib/Makefile (props changed) head/devel/py-five.globalrequest/Makefile (props changed) head/devel/py-five.localsitemanager/Makefile (props changed) head/devel/py-flexmock/Makefile (props changed) head/devel/py-foolscap/Makefile (props changed) head/devel/py-fortran/Makefile (props changed) head/devel/py-freebsd/Makefile (props changed) head/devel/py-fs/Makefile (props changed) head/devel/py-fudge/Makefile (props changed) head/devel/py-funcparserlib/Makefile (props changed) head/devel/py-gearman/Makefile (props changed) head/devel/py-generate/Makefile (props changed) head/devel/py-geojson/Makefile (props changed) head/devel/py-geotypes/Makefile (props changed) head/devel/py-gflags/Makefile (props changed) head/devel/py-gitdb/Makefile (props changed) head/devel/py-gitpython/Makefile (props changed) head/devel/py-grizzled/Makefile (props changed) head/devel/py-grouch/Makefile (props changed) head/devel/py-gyp-devel/Makefile (props changed) head/devel/py-hashring/Makefile (props changed) head/devel/py-hghooks/Makefile (props changed) head/devel/py-hgsubversion/Makefile (props changed) head/devel/py-icu/Makefile (props changed) head/devel/py-iniparse/Makefile (props changed) head/devel/py-initgroups/Makefile (props changed) head/devel/py-interface/Makefile (props changed) head/devel/py-ipaddr/Makefile (props changed) head/devel/py-iterpipes/Makefile (props changed) head/devel/py-jcc/Makefile (props changed) head/devel/py-json-py/Makefile (props changed) head/devel/py-jsonlib/Makefile (props changed) head/devel/py-jsonlib2/Makefile (props changed) head/devel/py-jsonrpclib/Makefile (props changed) head/devel/py-kid/Makefile (props changed) head/devel/py-kjbuckets/Makefile (props changed) head/devel/py-levenshtein/Makefile (props changed) head/devel/py-liblarch/Makefile (props changed) head/devel/py-ll-core/Makefile (props changed) head/devel/py-lock_file/Makefile (props changed) head/devel/py-lockfile/Makefile (props changed) head/devel/py-log4py/Makefile (props changed) head/devel/py-magic/Makefile (props changed) head/devel/py-manuel/Makefile (props changed) head/devel/py-meliae/Makefile (props changed) head/devel/py-mez_xml/Makefile (props changed) head/devel/py-mimeparse/Makefile (props changed) head/devel/py-minimongo/Makefile (props changed) head/devel/py-mock/Makefile (props changed) head/devel/py-mongokit/Makefile (props changed) head/devel/py-mox/Makefile (props changed) head/devel/py-msgpack/Makefile (props changed) head/devel/py-mwlib.ext/Makefile (props changed) head/devel/py-mwlib/Makefile (props changed) head/devel/py-mx-experimental/Makefile (props changed) head/devel/py-mygpoclient/Makefile (props changed) head/devel/py-ncurses/Makefile (props changed) head/devel/py-notifier/Makefile (props changed) head/devel/py-ode/Makefile (props changed) head/devel/py-odfpy/Makefile (props changed) head/devel/py-optik/Makefile (props changed) head/devel/py-ordereddict/Makefile (props changed) head/devel/py-parsedatetime/Makefile (props changed) head/devel/py-parsing/Makefile (props changed) head/devel/py-pefile/Makefile (props changed) head/devel/py-period/Makefile (props changed) head/devel/py-phpserialize/Makefile (props changed) head/devel/py-pika/Makefile (props changed) head/devel/py-plex/Makefile (props changed) head/devel/py-polib/Makefile (props changed) head/devel/py-pp/Makefile (props changed) head/devel/py-pqueue/Makefile (props changed) head/devel/py-prettytable/Makefile (props changed) head/devel/py-prioritized_methods/Makefile (props changed) head/devel/py-protobuf/Makefile (props changed) head/devel/py-protocols-devel/Makefile (props changed) head/devel/py-protocols/Makefile (props changed) head/devel/py-pudb/Makefile (props changed) head/devel/py-px/Makefile (props changed) head/devel/py-pycalendar/Makefile (props changed) head/devel/py-pycallgraph/Makefile (props changed) head/devel/py-pydasm/Makefile (props changed) head/devel/py-pyev/Makefile (props changed) head/devel/py-pygpx/Makefile (props changed) head/devel/py-pyke/Makefile (props changed) head/devel/py-pymarc/Makefile (props changed) head/devel/py-pyro/Makefile (props changed) head/devel/py-pyshapelib/Makefile (props changed) head/devel/py-pytemplate/Makefile (props changed) head/devel/py-pytest/Makefile (props changed) head/devel/py-pythonbrew/Makefile (props changed) head/devel/py-pytz/Makefile (props changed) head/devel/py-pyutil/Makefile (props changed) head/devel/py-qserve/Makefile (props changed) head/devel/py-repoze.tm2/Makefile (props changed) head/devel/py-repoze.what-pylons/Makefile (props changed) head/devel/py-repoze.what/Makefile (props changed) head/devel/py-repoze.who-friendlyform/Makefile (props changed) head/devel/py-repoze.who-testutil/Makefile (props changed) head/devel/py-repoze.xmliter/Makefile (props changed) head/devel/py-resourcepackage/Makefile (props changed) head/devel/py-rtree/Makefile (props changed) head/devel/py-ruledispatch/Makefile (props changed) head/devel/py-setuptools_darcs/Makefile (props changed) head/devel/py-setuptools_hg/Makefile (props changed) head/devel/py-shapely/Makefile (props changed) head/devel/py-simpleparse/Makefile (props changed) head/devel/py-simpletal/Makefile (props changed) head/devel/py-simpy/Makefile (props changed) head/devel/py-six/Makefile (props changed) head/devel/py-smmap/Makefile (props changed) head/devel/py-spark/Makefile (props changed) head/devel/py-sqlcc/Makefile (props changed) head/devel/py-statgrab/Makefile (props changed) head/devel/py-subversion/Makefile (props changed) head/devel/py-subvertpy/Makefile (props changed) head/devel/py-sysv_ipc/Makefile (props changed) head/devel/py-tables/Makefile (props changed) head/devel/py-tempstorage/Makefile (props changed) head/devel/py-termcolor/Makefile (props changed) head/devel/py-testgears/Makefile (props changed) head/devel/py-testoob/Makefile (props changed) head/devel/py-testtools/Makefile (props changed) head/devel/py-tgMochiKit/Makefile (props changed) head/devel/py-timelib/Makefile (props changed) head/devel/py-trace2html/Makefile (props changed) head/devel/py-traits/Makefile (props changed) head/devel/py-transaction/Makefile (props changed) head/devel/py-turbocheetah/Makefile (props changed) head/devel/py-turbojson/Makefile (props changed) head/devel/py-turbojson11/Makefile (props changed) head/devel/py-turbokid/Makefile (props changed) head/devel/py-tw.forms/Makefile (props changed) head/devel/py-twistedFlow/Makefile (props changed) head/devel/py-ujson/Makefile (props changed) head/devel/py-unittest2/Makefile (props changed) head/devel/py-unittestplus/Makefile (props changed) head/devel/py-urlimport/Makefile (props changed) head/devel/py-utils/Makefile (props changed) head/devel/py-venusian/Makefile (props changed) head/devel/py-versiontools/Makefile (props changed) head/devel/py-virtualenv-clone/Makefile (props changed) head/devel/py-wsgi_xmlrpc/Makefile (props changed) head/devel/py-wsgitools/Makefile (props changed) head/devel/py-wsgiutils/Makefile (props changed) head/devel/py-xattr/Makefile (props changed) head/devel/py-xcaplib/Makefile (props changed) head/devel/py-xdg/Makefile (props changed) head/devel/py-xoltar-toolkit/Makefile (props changed) head/devel/py-yaml/Makefile (props changed) head/devel/py-yapps2/Makefile (props changed) head/devel/py-ydbf/Makefile (props changed) head/devel/py-yum-metadata-parser/Makefile (props changed) head/devel/py-z3c.autoinclude/Makefile (props changed) head/devel/py-z3c.batching/Makefile (props changed) head/devel/py-z3c.caching/Makefile (props changed) head/devel/py-z3c.formwidget.query/Makefile (props changed) head/devel/py-z3c.zcmlhook/Makefile (props changed) head/devel/py-zExceptions/Makefile (props changed) head/devel/py-zLOG/Makefile (props changed) head/devel/py-zc.buildout/Makefile (props changed) head/devel/py-zclockfile/Makefile (props changed) head/devel/py-zconfig/Makefile (props changed) head/devel/py-zope.annotation/Makefile (props changed) head/devel/py-zope.app.applicationcontrol/Makefile (props changed) head/devel/py-zope.app.appsetup/Makefile (props changed) head/devel/py-zope.app.basicskin/Makefile (props changed) head/devel/py-zope.app.broken/Makefile (props changed) head/devel/py-zope.app.cache/Makefile (props changed) head/devel/py-zope.app.component/Makefile (props changed) head/devel/py-zope.app.container/Makefile (props changed) head/devel/py-zope.app.content/Makefile (props changed) head/devel/py-zope.app.debug/Makefile (props changed) head/devel/py-zope.app.dependable/Makefile (props changed) head/devel/py-zope.app.error/Makefile (props changed) head/devel/py-zope.app.exception/Makefile (props changed) head/devel/py-zope.app.folder/Makefile (props changed) head/devel/py-zope.app.form/Makefile (props changed) head/devel/py-zope.app.generations/Makefile (props changed) head/devel/py-zope.app.http/Makefile (props changed) head/devel/py-zope.app.pagetemplate/Makefile (props changed) head/devel/py-zope.app.publication/Makefile (props changed) head/devel/py-zope.app.publisher/Makefile (props changed) head/devel/py-zope.app.renderer/Makefile (props changed) head/devel/py-zope.app.rotterdam/Makefile (props changed) head/devel/py-zope.app.schema/Makefile (props changed) head/devel/py-zope.app.testing/Makefile (props changed) head/devel/py-zope.app.zcmlfiles/Makefile (props changed) head/devel/py-zope.app.zopeappgenerations/Makefile (props changed) head/devel/py-zope.applicationcontrol/Makefile (props changed) head/devel/py-zope.broken/Makefile (props changed) head/devel/py-zope.browser/Makefile (props changed) head/devel/py-zope.browsermenu/Makefile (props changed) head/devel/py-zope.browserpage/Makefile (props changed) head/devel/py-zope.browserresource/Makefile (props changed) head/devel/py-zope.cachedescriptors/Makefile (props changed) head/devel/py-zope.component/Makefile (props changed) head/devel/py-zope.componentvocabulary/Makefile (props changed) head/devel/py-zope.configuration/Makefile (props changed) head/devel/py-zope.container/Makefile (props changed) head/devel/py-zope.contentprovider/Makefile (props changed) head/devel/py-zope.contenttype/Makefile (props changed) head/devel/py-zope.copy/Makefile (props changed) head/devel/py-zope.copypastemove/Makefile (props changed) head/devel/py-zope.datetime/Makefile (props changed) head/devel/py-zope.deferredimport/Makefile (props changed) head/devel/py-zope.deprecation/Makefile (props changed) head/devel/py-zope.dottedname/Makefile (props changed) head/devel/py-zope.dublincore/Makefile (props changed) head/devel/py-zope.error/Makefile (props changed) head/devel/py-zope.event/Makefile (props changed) head/devel/py-zope.exceptions/Makefile (props changed) head/devel/py-zope.filerepresentation/Makefile (props changed) head/devel/py-zope.formlib/Makefile (props changed) head/devel/py-zope.generations/Makefile (props changed) head/devel/py-zope.globalrequest/Makefile (props changed) head/devel/py-zope.interface/Makefile (props changed) head/devel/py-zope.lifecycleevent/Makefile (props changed) head/devel/py-zope.location/Makefile (props changed) head/devel/py-zope.minmax/Makefile (props changed) head/devel/py-zope.pagetemplate/Makefile (props changed) head/devel/py-zope.processlifetime/Makefile (props changed) head/devel/py-zope.ptresource/Makefile (props changed) head/devel/py-zope.publisher/Makefile (props changed) head/devel/py-zope.ramcache/Makefile (props changed) head/devel/py-zope.sequencesort/Makefile (props changed) head/devel/py-zope.site/Makefile (props changed) head/devel/py-zope.size/Makefile (props changed) head/devel/py-zope.tales/Makefile (props changed) head/devel/py-zope.testbrowser/Makefile (props changed) head/devel/py-zope.testing/Makefile (props changed) head/devel/py-zope.traversing/Makefile (props changed) head/devel/py-zope.viewlet/Makefile (props changed) head/devel/pybaz/Makefile (props changed) head/devel/pycount/Makefile (props changed) head/devel/pymacs/Makefile (props changed) head/devel/pyobfuscate/Makefile (props changed) head/devel/pyst/Makefile (props changed) head/devel/pysvn/Makefile (props changed) head/devel/pythk/Makefile (props changed) head/devel/pythontidy/Makefile (props changed) head/devel/qca/Makefile (props changed) head/devel/qconf/Makefile (props changed) head/devel/qmake/files/Makefile.bsd (props changed) head/devel/qt4/files/Makefile.options (props changed) head/devel/quickcheck++/Makefile (props changed) head/devel/rbtools/Makefile (props changed) head/devel/readline/Makefile (props changed) head/devel/rebar/Makefile (props changed) head/devel/replay/Makefile (props changed) head/devel/ri-emacs/Makefile (props changed) head/devel/rlwrap/Makefile (props changed) head/devel/robodoc/Makefile (props changed) head/devel/root-doc/Makefile (props changed) head/devel/ros-rx/Makefile (props changed) head/devel/ros_tutorials/Makefile (props changed) head/devel/rote/Makefile (props changed) head/devel/rpm-spec-mode.el/Makefile (props changed) head/devel/rth/Makefile (props changed) head/devel/ruby-amstd/Makefile (props changed) head/devel/ruby-aspectr/Makefile (props changed) head/devel/ruby-avl/Makefile (props changed) head/devel/ruby-bsearch/Makefile (props changed) head/devel/ruby-byaccr/Makefile (props changed) head/devel/ruby-byaccr/files/Makefile (props changed) head/devel/ruby-cache/Makefile (props changed) head/devel/ruby-calendar/Makefile (props changed) head/devel/ruby-date2/Makefile (props changed) head/devel/ruby-dialogs/Makefile (props changed) head/devel/ruby-event-loop/Makefile (props changed) head/devel/ruby-fastri/Makefile (props changed) head/devel/ruby-locale/Makefile (props changed) head/devel/ruby-locale2/Makefile (props changed) head/devel/ruby-memoize/Makefile (props changed) head/devel/ruby-multi/Makefile (props changed) head/devel/ruby-ncurses/Makefile (props changed) head/devel/ruby-property/Makefile (props changed) head/devel/ruby-rbison/Makefile (props changed) head/devel/ruby-rbprof/Makefile (props changed) head/devel/ruby-robjectteam/Makefile (props changed) head/devel/ruby-rreadline/Makefile (props changed) head/devel/ruby-setup.rb/Makefile (props changed) head/devel/ruby-statgrab/Makefile (props changed) head/devel/ruby-tzfile/Makefile (props changed) head/devel/ruby-wirble/Makefile (props changed) head/devel/rubygem-atoulme-antwrap/Makefile (props changed) head/devel/rubygem-bugspots/Makefile (props changed) head/devel/rubygem-clio/Makefile (props changed) head/devel/rubygem-cool.io/Makefile (props changed) head/devel/rubygem-daemon_controller/Makefile (props changed) head/devel/rubygem-ditz/Makefile (props changed) head/devel/rubygem-errand/Makefile (props changed) head/devel/rubygem-getopt/Makefile (props changed) head/devel/rubygem-gettext/Makefile (props changed) head/devel/rubygem-hashie/Makefile (props changed) head/devel/rubygem-iobuffer/Makefile (props changed) head/devel/rubygem-locale/Makefile (props changed) head/devel/rubygem-metaid/Makefile (props changed) head/devel/rubygem-mixlib-authentication/Makefile (props changed) head/devel/rubygem-mixlib-config/Makefile (props changed) head/devel/rubygem-mkrf/Makefile (props changed) head/devel/rubygem-mutter/Makefile (props changed) head/devel/rubygem-piston/Makefile (props changed) head/devel/rubygem-platform/Makefile (props changed) head/devel/rubygem-prototype-rails/Makefile (props changed) head/devel/rubygem-ptreloaded/Makefile (props changed) head/devel/rubygem-rainbow/Makefile (props changed) head/devel/rubygem-rash/Makefile (props changed) head/devel/rubygem-rcov/Makefile (props changed) head/devel/rubygem-rubyinlineaccel/Makefile (props changed) head/devel/rubygem-term-ansicolor/Makefile (props changed) head/devel/rubygem-trollop/Makefile (props changed) head/devel/rubygem-validatable/Makefile (props changed) head/devel/rubygem-webby/Makefile (props changed) head/devel/rudeconfig/Makefile (props changed) head/devel/runsnakerun/Makefile (props changed) head/devel/rvi/Makefile (props changed) head/devel/sabre/Makefile (props changed) head/devel/safe-iop/Makefile (props changed) head/devel/scalatest/Makefile (props changed) head/devel/scsh-install-lib/Makefile (props changed) head/devel/sdl_console/Makefile (props changed) head/devel/sdlmm/Makefile (props changed) head/devel/sedsed/Makefile (props changed) head/devel/semantic/Makefile (props changed) head/devel/serdisplib/Makefile (props changed) head/devel/sfio/Makefile (props changed) head/devel/sfslite-dbg/Makefile (props changed) head/devel/sfslite-noopt/Makefile (props changed) head/devel/sfslite/Makefile (props changed) head/devel/sgb/Makefile (props changed) head/devel/sgl/Makefile (props changed) head/devel/shflags/Makefile (props changed) head/devel/shmap/Makefile (props changed) head/devel/showgrammar/Makefile (props changed) head/devel/sigslot/Makefile (props changed) head/devel/simian/Makefile (props changed) head/devel/simpletest/Makefile (props changed) head/devel/skalibs/Makefile (props changed) head/devel/slf4j/Makefile (props changed) head/devel/smake/Makefile (props changed) head/devel/smc/Makefile (props changed) head/devel/sml_tk/Makefile (props changed) head/devel/smv/Makefile (props changed) head/devel/soapui/Makefile (props changed) head/devel/sourcenav/Makefile (props changed) head/devel/spatialindex/Makefile (props changed) head/devel/spdict/Makefile (props changed) head/devel/spin/Makefile (props changed) head/devel/splint/Makefile (props changed) head/devel/srecord/Makefile (props changed) head/devel/st/files/Makefile.examples (props changed) head/devel/statcvs/Makefile (props changed) head/devel/statsvn/Makefile (props changed) head/devel/str/Makefile (props changed) head/devel/subclipse/Makefile (props changed) head/devel/subversion/files/build-outputs.mk (props changed) head/devel/subversion16/Makefile (props changed) head/devel/subversion16/Makefile.inc (props changed) head/devel/subversion16/files/build-outputs.mk (props changed) head/devel/subversion17/files/build-outputs.mk (props changed) head/devel/subversive/Makefile (props changed) head/devel/sunterlib/Makefile (props changed) head/devel/svndelta/Makefile (props changed) head/devel/svnkit/Makefile (props changed) head/devel/svnmerge/Makefile (props changed) head/devel/svntrac/Makefile (props changed) head/devel/swig13/Makefile (props changed) head/devel/sysfsutils/Makefile (props changed) head/devel/ta-lib/Makefile (props changed) head/devel/tailor/Makefile (props changed) head/devel/tclgetopts/Makefile (props changed) head/devel/tcltls/files/Makefile.bsd (props changed) head/devel/tdl/Makefile (props changed) head/devel/terminality/Makefile (props changed) head/devel/tex-kpathsea/Makefile (props changed) head/devel/tide/Makefile (props changed) head/devel/tigcc/Makefile (props changed) head/devel/tijmp/Makefile (props changed) head/devel/tinylaf/Makefile (props changed) head/devel/tkinspect/Makefile (props changed) head/devel/tkp4/Makefile (props changed) head/devel/tla/Makefile (props changed) head/devel/tnt/Makefile (props changed) head/devel/toh/Makefile (props changed) head/devel/tokamak/Makefile (props changed) head/devel/trio/Makefile (props changed) head/devel/truc/Makefile (props changed) head/devel/uatraits/Makefile (props changed) head/devel/uclmmbase/files/Makefile.bsd (props changed) head/devel/ucpp/Makefile (props changed) head/devel/ultragetopt/Makefile (props changed) head/devel/umem/Makefile (props changed) head/devel/umlgraph/Makefile (props changed) head/devel/uppaal/Makefile (props changed) head/devel/upslug/Makefile (props changed) head/devel/violet/Makefile (props changed) head/devel/vstr/Makefile (props changed) head/devel/wand-libconfig/Makefile (props changed) head/devel/websvn/Makefile (props changed) head/devel/wininfo/Makefile (props changed) head/devel/wizardkit/Makefile (props changed) head/devel/xa65/Makefile (props changed) head/devel/xmake/Makefile (props changed) head/devel/xorg-macros/Makefile (props changed) head/devel/xtl/Makefile (props changed) head/devel/xtla/Makefile (props changed) head/devel/xwpe/Makefile (props changed) head/devel/xxgdb/Makefile (props changed) head/devel/z80asm/Makefile (props changed) head/devel/ztcl/Makefile (props changed) head/devel/zthread/Makefile (props changed) head/dns/ares/Makefile (props changed) head/dns/bind-tools/Makefile (props changed) head/dns/bind96/Makefile (props changed) head/dns/bind98/Makefile (props changed) head/dns/bind99/Makefile (props changed) head/dns/crossip/Makefile (props changed) head/dns/curvedns/Makefile (props changed) head/dns/ddclient/Makefile (props changed) head/dns/dhisd/Makefile (props changed) head/dns/djbdns-tools/Makefile (props changed) head/dns/djbdns/Makefile (props changed) head/dns/dns_balance/Makefile (props changed) head/dns/dnscap/Makefile (props changed) head/dns/dnscheckengine/Makefile (props changed) head/dns/dnshijacker/Makefile (props changed) head/dns/dnsproxy/Makefile (props changed) head/dns/dnsreflector/Makefile (props changed) head/dns/dnstop/Makefile (props changed) head/dns/dnstracer/Makefile (props changed) head/dns/dnsutl/Makefile (props changed) head/dns/dnswall/Makefile (props changed) head/dns/doc/Makefile (props changed) head/dns/ez-ipupdate/Makefile (props changed) head/dns/firedns/Makefile (props changed) head/dns/ghtool/Makefile (props changed) head/dns/inadyn/Makefile (props changed) head/dns/ipcheck/Makefile (props changed) head/dns/ldapdns/Makefile (props changed) head/dns/libbind/Makefile (props changed) head/dns/libdjbdns/Makefile (props changed) head/dns/libidn/Makefile.man (props changed) head/dns/linux-f10-libasyncns/Makefile (props changed) head/dns/mdnsd/Makefile (props changed) head/dns/noip/Makefile (props changed) head/dns/nslint/Makefile (props changed) head/dns/nsping/Makefile (props changed) head/dns/nss_mdns/Makefile (props changed) head/dns/nss_resinit/Makefile (props changed) head/dns/odsclient/Makefile (props changed) head/dns/p5-Net-RBLClient/Makefile (props changed) head/dns/posadis/Makefile (props changed) head/dns/poweradmin/Makefile (props changed) head/dns/powerdns-recursor/Makefile (props changed) head/dns/py-adns/Makefile (props changed) head/dns/py-dns/Makefile (props changed) head/dns/py-easyzone/Makefile (props changed) head/dns/py-namebench/Makefile (props changed) head/dns/py-publicsuffix/Makefile (props changed) head/dns/radns/Makefile (props changed) head/dns/rbldnsd/Makefile (props changed) head/dns/sheerdns/Makefile (props changed) head/dns/skadns/Makefile (props changed) head/dns/tinystats/Makefile (props changed) head/dns/totd/Makefile (props changed) head/dns/validns/Makefile (props changed) head/dns/zonenotify/Makefile (props changed) head/editors/2bsd-vi/Makefile (props changed) head/editors/aewan/Makefile (props changed) head/editors/apel-emacs21/Makefile (props changed) head/editors/apel-emacs22/Makefile (props changed) head/editors/axe/Makefile (props changed) head/editors/beav/Makefile (props changed) head/editors/bitedit/Makefile (props changed) head/editors/boiling-egg/Makefile (props changed) head/editors/bpatch/Makefile (props changed) head/editors/bvi/Makefile (props changed) head/editors/chexedit/Makefile (props changed) head/editors/conglomerate/Makefile (props changed) head/editors/dhex/Makefile (props changed) head/editors/drjava/Makefile (props changed) head/editors/e3/Makefile (props changed) head/editors/edith/Makefile (props changed) head/editors/emacs-nox11/Makefile (props changed) head/editors/emacs21/Makefile (props changed) head/editors/emacs22/Makefile (props changed) head/editors/fb/Makefile (props changed) head/editors/fb/files/Makefile.in (props changed) head/editors/flim-emacs21/Makefile (props changed) head/editors/flim-emacs22/Makefile (props changed) head/editors/flim-xemacs21-mule/Makefile (props changed) head/editors/fpc-ide/Makefile (props changed) head/editors/gate/Makefile (props changed) head/editors/gnome2-office/Makefile (props changed) head/editors/gwrite/Makefile (props changed) head/editors/heme/Makefile (props changed) head/editors/hexedit/Makefile (props changed) head/editors/hexpert/Makefile (props changed) head/editors/hnb/Makefile (props changed) head/editors/jext/Makefile (props changed) head/editors/jove/Makefile (props changed) head/editors/jupp/Makefile (props changed) head/editors/komodo-ide/Makefile (props changed) head/editors/lazarus-lcl-gtk/Makefile (props changed) head/editors/lazarus-lcl-gtk2/Makefile (props changed) head/editors/lazarus-lcl-nogui/Makefile (props changed) head/editors/lazarus-lcl-qt/Makefile (props changed) head/editors/lazarus-lcl-units/Makefile (props changed) head/editors/lazarus/Makefile.common (props changed) head/editors/libreoffice-af/Makefile (props changed) head/editors/libreoffice-as/Makefile (props changed) head/editors/libreoffice-be/Makefile (props changed) head/editors/libreoffice-bg/Makefile (props changed) head/editors/libreoffice-bn/Makefile (props changed) head/editors/libreoffice-br/Makefile (props changed) head/editors/libreoffice-brx/Makefile (props changed) head/editors/libreoffice-bs/Makefile (props changed) head/editors/libreoffice-ca/Makefile (props changed) head/editors/libreoffice-ca_XV/Makefile (props changed) head/editors/libreoffice-cs/Makefile (props changed) head/editors/libreoffice-cy/Makefile (props changed) head/editors/libreoffice-da/Makefile (props changed) head/editors/libreoffice-dgo/Makefile (props changed) head/editors/libreoffice-dz/Makefile (props changed) head/editors/libreoffice-el/Makefile (props changed) head/editors/libreoffice-en_GB/Makefile (props changed) head/editors/libreoffice-en_ZA/Makefile (props changed) head/editors/libreoffice-eo/Makefile (props changed) head/editors/libreoffice-es/Makefile (props changed) head/editors/libreoffice-et/Makefile (props changed) head/editors/libreoffice-eu/Makefile (props changed) head/editors/libreoffice-fa/Makefile (props changed) head/editors/libreoffice-fi/Makefile (props changed) head/editors/libreoffice-ga/Makefile (props changed) head/editors/libreoffice-gd/Makefile (props changed) head/editors/libreoffice-gl/Makefile (props changed) head/editors/libreoffice-gu/Makefile (props changed) head/editors/libreoffice-hi/Makefile (props changed) head/editors/libreoffice-hr/Makefile (props changed) head/editors/libreoffice-i18n/Makefile (props changed) head/editors/libreoffice-id/Makefile (props changed) head/editors/libreoffice-is/Makefile (props changed) head/editors/libreoffice-it/Makefile (props changed) head/editors/libreoffice-ka/Makefile (props changed) head/editors/libreoffice-kk/Makefile (props changed) head/editors/libreoffice-km/Makefile (props changed) head/editors/libreoffice-kok/Makefile (props changed) head/editors/libreoffice-ks/Makefile (props changed) head/editors/libreoffice-ku/Makefile (props changed) head/editors/libreoffice-lo/Makefile (props changed) head/editors/libreoffice-lt/Makefile (props changed) head/editors/libreoffice-lv/Makefile (props changed) head/editors/libreoffice-mai/Makefile (props changed) head/editors/libreoffice-mk/Makefile (props changed) head/editors/libreoffice-ml/Makefile (props changed) head/editors/libreoffice-mn/Makefile (props changed) head/editors/libreoffice-mni/Makefile (props changed) head/editors/libreoffice-mr/Makefile (props changed) head/editors/libreoffice-my/Makefile (props changed) head/editors/libreoffice-nb/Makefile (props changed) head/editors/libreoffice-ne/Makefile (props changed) head/editors/libreoffice-nl/Makefile (props changed) head/editors/libreoffice-nn/Makefile (props changed) head/editors/libreoffice-nr/Makefile (props changed) head/editors/libreoffice-nso/Makefile (props changed) head/editors/libreoffice-oc/Makefile (props changed) head/editors/libreoffice-om/Makefile (props changed) head/editors/libreoffice-or/Makefile (props changed) head/editors/libreoffice-pa_IN/Makefile (props changed) head/editors/libreoffice-ro/Makefile (props changed) head/editors/libreoffice-rw/Makefile (props changed) head/editors/libreoffice-sa_IN/Makefile (props changed) head/editors/libreoffice-sat/Makefile (props changed) head/editors/libreoffice-sd/Makefile (props changed) head/editors/libreoffice-sh/Makefile (props changed) head/editors/libreoffice-si/Makefile (props changed) head/editors/libreoffice-sk/Makefile (props changed) head/editors/libreoffice-sl/Makefile (props changed) head/editors/libreoffice-sq/Makefile (props changed) head/editors/libreoffice-sr/Makefile (props changed) head/editors/libreoffice-ss/Makefile (props changed) head/editors/libreoffice-st/Makefile (props changed) head/editors/libreoffice-sv/Makefile (props changed) head/editors/libreoffice-sw_TZ/Makefile (props changed) head/editors/libreoffice-ta/Makefile (props changed) head/editors/libreoffice-te/Makefile (props changed) head/editors/libreoffice-tg/Makefile (props changed) head/editors/libreoffice-th/Makefile (props changed) head/editors/libreoffice-tn/Makefile (props changed) head/editors/libreoffice-tr/Makefile (props changed) head/editors/libreoffice-ts/Makefile (props changed) head/editors/libreoffice-uz/Makefile (props changed) head/editors/libreoffice-ve/Makefile (props changed) head/editors/libreoffice-xh/Makefile (props changed) head/editors/libreoffice-zu/Makefile (props changed) head/editors/libreoffice/Makefile.common (props changed) head/editors/mg/Makefile (props changed) head/editors/nano/Makefile (props changed) head/editors/nedit/Makefile (props changed) head/editors/nvi-m17n/Makefile (props changed) head/editors/nxml/Makefile (props changed) head/editors/openoffice-3/files/Makefile.knobs (props changed) head/editors/openoffice-3/files/Makefile.localized (props changed) head/editors/openoffice-3/files/Makefile.others (props changed) head/editors/openoffice-4/files/Makefile.knobs (props changed) head/editors/openoffice-4/files/Makefile.localized (props changed) head/editors/openoffice-4/files/Makefile.others (props changed) head/editors/openoffice-devel/files/Makefile.knobs (props changed) head/editors/openoffice-devel/files/Makefile.localized (props changed) head/editors/openoffice-devel/files/Makefile.others (props changed) head/editors/pico-alpine/Makefile (props changed) head/editors/psgml/Makefile (props changed) head/editors/puff/Makefile (props changed) head/editors/se/Makefile (props changed) head/editors/semi-emacs21/Makefile (props changed) head/editors/semi-emacs22/Makefile (props changed) head/editors/semi-xemacs21-mule/Makefile (props changed) head/editors/semi/Makefile (props changed) head/editors/slime/Makefile (props changed) head/editors/softmaker-office/Makefile (props changed) head/editors/speedbar/Makefile (props changed) head/editors/ssam/Makefile (props changed) head/editors/sted/Makefile (props changed) head/editors/teco/Makefile (props changed) head/editors/tetradraw/Makefile (props changed) head/editors/textedit/Makefile (props changed) head/editors/the/Makefile (props changed) head/editors/thoteditor/Makefile (props changed) head/editors/tpad/Makefile (props changed) head/editors/tree-widget/Makefile (props changed) head/editors/treeform/Makefile (props changed) head/editors/tweak/files/Makefile.in (props changed) head/editors/uzap/Makefile (props changed) head/editors/ved/Makefile (props changed) head/editors/winefish/Makefile (props changed) head/editors/wordgrinder/Makefile (props changed) head/editors/xcoral/Makefile (props changed) head/editors/xed/Makefile (props changed) head/editors/xemacs-devel-mule/Makefile (props changed) head/editors/xemacs-devel/Makefile (props changed) head/editors/xemacs-mule-packages/Makefile (props changed) head/editors/xemacs-packages/Makefile (props changed) head/editors/yudit/Makefile (props changed) head/emulators/adamem/Makefile (props changed) head/emulators/advancemess/Makefile (props changed) head/emulators/aftp/Makefile (props changed) head/emulators/bfe/Makefile (props changed) head/emulators/cinc/Makefile (props changed) head/emulators/cygne-sdl/files/Makefile.bsd (props changed) head/emulators/darcnes/Makefile (props changed) head/emulators/doscmd/Makefile (props changed) head/emulators/dtcyber/Makefile (props changed) head/emulators/dynagen/Makefile (props changed) head/emulators/dynamips-community/Makefile (props changed) head/emulators/dynamips-devel/Makefile (props changed) head/emulators/extract-xiso/Makefile (props changed) head/emulators/extract-xiso/files/Makefile (props changed) head/emulators/frodo/Makefile (props changed) head/emulators/gbe/Makefile (props changed) head/emulators/generator/Makefile (props changed) head/emulators/gngb/Makefile (props changed) head/emulators/gngeo/Makefile (props changed) head/emulators/gxemul/Makefile (props changed) head/emulators/hfs/Makefile (props changed) head/emulators/ia64sim/Makefile (props changed) head/emulators/ines/Makefile (props changed) head/emulators/its/Makefile (props changed) head/emulators/klh10/Makefile (props changed) head/emulators/libdsk/Makefile (props changed) head/emulators/linux-geepee32/Makefile (props changed) head/emulators/linux-systemsimcell/Makefile (props changed) head/emulators/linux_base-gentoo-stage3/Makefile (props changed) head/emulators/mastergear/Makefile (props changed) head/emulators/mednafen/Makefile (props changed) head/emulators/minivmac/Makefile (props changed) head/emulators/mupen64-base/Makefile (props changed) head/emulators/mupen64-base/Makefile.common (props changed) head/emulators/mupen64-dummyaudio/Makefile (props changed) head/emulators/mupen64-glide/Makefile (props changed) head/emulators/mupen64-gln64/Makefile (props changed) head/emulators/mupen64-input/Makefile (props changed) head/emulators/mupen64-rice/Makefile (props changed) head/emulators/mupen64-rsp/Makefile (props changed) head/emulators/mupen64-sdlaudio/Makefile (props changed) head/emulators/mupen64-sdlinput/Makefile (props changed) head/emulators/mupen64-softgfx/Makefile (props changed) head/emulators/mupen64-sound/Makefile (props changed) head/emulators/mupen64-tr64/Makefile (props changed) head/emulators/mupen64/Makefile (props changed) head/emulators/mupen64plus-audio-sdl/Makefile (props changed) head/emulators/mupen64plus-core/Makefile (props changed) head/emulators/mupen64plus-core/Makefile.common (props changed) head/emulators/mupen64plus-input-sdl/Makefile (props changed) head/emulators/mupen64plus-plugins/Makefile (props changed) head/emulators/mupen64plus-rsp-hle/Makefile (props changed) head/emulators/mupen64plus-rsp-z64/Makefile (props changed) head/emulators/mupen64plus-ui-console/Makefile (props changed) head/emulators/mupen64plus-video-arachnoid/Makefile (props changed) head/emulators/mupen64plus-video-glide64/Makefile (props changed) head/emulators/mupen64plus-video-glide64mk2/Makefile (props changed) head/emulators/mupen64plus-video-rice/Makefile (props changed) head/emulators/mupen64plus-video-z64/Makefile (props changed) head/emulators/mupen64plus/Makefile (props changed) head/emulators/nonpareil/Makefile (props changed) head/emulators/o2em/Makefile (props changed) head/emulators/ods2reader/Makefile (props changed) head/emulators/openmsx/Makefile (props changed) head/emulators/parallels-tools/Makefile (props changed) head/emulators/pcemu/Makefile (props changed) head/emulators/pearpc/Makefile (props changed) head/emulators/psim-freebsd/Makefile (props changed) head/emulators/pyxmame/Makefile (props changed) head/emulators/qmc2/files/Makefile (props changed) head/emulators/quasi88/Makefile (props changed) head/emulators/raine/Makefile (props changed) head/emulators/rtc/Makefile (props changed) head/emulators/rtc/files/Makefile (props changed) head/emulators/ski/Makefile (props changed) head/emulators/skyeye/Makefile (props changed) head/emulators/snes9x/Makefile (props changed) head/emulators/spim/Makefile (props changed) head/emulators/stella/Makefile (props changed) head/emulators/stonx/Makefile (props changed) head/emulators/svr4_base/Makefile (props changed) head/emulators/uae/Makefile (props changed) head/emulators/vMac/Makefile (props changed) head/emulators/vboxtool/Makefile (props changed) head/emulators/vgb-bin/Makefile (props changed) head/emulators/vgba-bin/Makefile (props changed) head/emulators/virtio-kmod/Makefile (props changed) head/emulators/vmips/Makefile (props changed) head/emulators/vmsbackup/Makefile (props changed) head/emulators/vxtools/Makefile (props changed) head/emulators/wine-devel/Makefile (props changed) head/emulators/wine-doors/Makefile (props changed) head/emulators/wine-gecko-devel/Makefile (props changed) head/emulators/wine-gecko/Makefile (props changed) head/emulators/wine/Makefile (props changed) head/emulators/wxmupen64plus/Makefile (props changed) head/emulators/x48/Makefile (props changed) head/emulators/x49gp/Makefile (props changed) head/emulators/xhomer/Makefile (props changed) head/emulators/xmess/Makefile (props changed) head/finance/aqmoney/Makefile (props changed) head/finance/beanie/Makefile (props changed) head/finance/expense/Makefile (props changed) head/finance/gnucash-docs/Makefile (props changed) head/finance/ledger/Makefile (props changed) head/finance/libstocks/Makefile (props changed) head/finance/libstocks/files/Makefile.client (props changed) head/finance/libstocks/files/Makefile.lib (props changed) head/finance/moneymanagerex/Makefile (props changed) head/finance/mybudget/Makefile (props changed) head/finance/myphpmoney/Makefile (props changed) head/finance/openhbci/Makefile (props changed) head/finance/opentaxsolver/Makefile (props changed) head/finance/php-tclink/Makefile (props changed) head/finance/prestashop/Makefile (props changed) head/finance/py-vatnumber/Makefile (props changed) head/finance/sabernetdcs-client/Makefile (props changed) head/finance/trytond/Makefile (props changed) head/finance/trytond28/Makefile (props changed) head/finance/wmstock/Makefile (props changed) head/french/Makefile.inc (props changed) head/french/acroread8/Makefile (props changed) head/french/acroread9/Makefile (props changed) head/french/alphabet_sounds_fr/Makefile (props changed) head/french/aspell/Makefile (props changed) head/french/dico/Makefile (props changed) head/french/fortune-mod-zarathoustra/Makefile (props changed) head/french/geonext/Makefile (props changed) head/french/gfaim/Makefile (props changed) head/french/gimp-help/Makefile (props changed) head/french/ispell/Makefile (props changed) head/french/libreoffice/Makefile (props changed) head/french/php_doc/Makefile (props changed) head/ftp/atftp/Makefile (props changed) head/ftp/bftpd/Makefile (props changed) head/ftp/bsdftpd-ssl/Makefile (props changed) head/ftp/cftp/Makefile (props changed) head/ftp/curl-hiphop/Makefile (props changed) head/ftp/dmachine/Makefile (props changed) head/ftp/fget/Makefile (props changed) head/ftp/fmirror/Makefile (props changed) head/ftp/frox/Makefile (props changed) head/ftp/ftpcube/Makefile (props changed) head/ftp/ftpproxy/Makefile (props changed) head/ftp/ftpsesame/Makefile (props changed) head/ftp/gnusget/Makefile (props changed) head/ftp/gnustep-ftp/Makefile (props changed) head/ftp/horde-gollem/Makefile (props changed) head/ftp/jftp/Makefile (props changed) head/ftp/jftpgw/Makefile (props changed) head/ftp/linux-f10-curl/Makefile (props changed) head/ftp/llnlxdir/Makefile (props changed) head/ftp/llnlxftp/Makefile (props changed) head/ftp/ncftp1/Makefile (props changed) head/ftp/ncftp3/Makefile (props changed) head/ftp/ncftpd/Makefile (props changed) head/ftp/net2ftp/Makefile (props changed) head/ftp/oftpd/Makefile (props changed) head/ftp/omi/Makefile (props changed) head/ftp/pavuk/Makefile (props changed) head/ftp/php5-ftp/Makefile (props changed) head/ftp/php52-ftp/Makefile (props changed) head/ftp/php55-curl/Makefile (props changed) head/ftp/php55-ftp/Makefile (props changed) head/ftp/phpwebftp/Makefile (props changed) head/ftp/puf/Makefile (props changed) head/ftp/py-ftputil/Makefile (props changed) head/ftp/py-pyftpdlib/Makefile (props changed) head/ftp/spegla/Makefile (props changed) head/ftp/tftp-hpa/Makefile (props changed) head/ftp/tnftp/Makefile (props changed) head/ftp/vsftpd-ext/Makefile (props changed) head/ftp/vsftpd/Makefile (props changed) head/ftp/waiho/Makefile (props changed) head/ftp/weex/Makefile (props changed) head/games/0verkill/Makefile (props changed) head/games/4stattack/Makefile (props changed) head/games/CaribbeanStud/Makefile (props changed) head/games/KnightCap/Makefile (props changed) head/games/actx/Makefile (props changed) head/games/adgali/Makefile (props changed) head/games/adom/Makefile (props changed) head/games/aestats/Makefile (props changed) head/games/affenspiel/Makefile (props changed) head/games/alephone/Makefile (props changed) head/games/alienarena-data/Makefile (props changed) head/games/alienblaster/Makefile (props changed) head/games/amoebax/Makefile (props changed) head/games/an/Makefile (props changed) head/games/annelid/Makefile (props changed) head/games/antipolix/Makefile (props changed) head/games/apoolGL/Makefile (props changed) head/games/armagetron/Makefile (props changed) head/games/atanks/Makefile (props changed) head/games/atitd/Makefile (props changed) head/games/atris-sounds/Makefile (props changed) head/games/atris/Makefile (props changed) head/games/avp-demo/Makefile (props changed) head/games/biniax2/Makefile (props changed) head/games/biorythm/Makefile (props changed) head/games/blackshadeselite/Makefile (props changed) head/games/bloboats/Makefile (props changed) head/games/blobwars/Makefile (props changed) head/games/block/Makefile (props changed) head/games/blockout/Makefile (props changed) head/games/blokish/Makefile (props changed) head/games/bogged/Makefile (props changed) head/games/bomns/Makefile (props changed) head/games/braincurses/Makefile (props changed) head/games/brickshooter/Makefile (props changed) head/games/brutalchess/Makefile (props changed) head/games/bsdgames/Makefile (props changed) head/games/bsdrain/Makefile (props changed) head/games/bsdtris/Makefile (props changed) head/games/bsp/Makefile (props changed) head/games/bugsx/Makefile (props changed) head/games/bumprace/Makefile (props changed) head/games/bygfoot/Makefile (props changed) head/games/cake/Makefile (props changed) head/games/cardpics/Makefile (props changed) head/games/cave9/Makefile (props changed) head/games/ceferino/Makefile (props changed) head/games/cgoban/Makefile (props changed) head/games/chanta/Makefile (props changed) head/games/chapping/Makefile (props changed) head/games/childsplay_plugins/Makefile (props changed) head/games/circuslinux/Makefile (props changed) head/games/cleanq3/Makefile (props changed) head/games/columns/Makefile (props changed) head/games/concentration/Makefile (props changed) head/games/connectfive/Makefile (props changed) head/games/conquest/Makefile (props changed) head/games/construo/Makefile (props changed) head/games/corewars/Makefile (props changed) head/games/cosmo/Makefile (props changed) head/games/crafty-open-enormous/Makefile (props changed) head/games/crafty-open-large/Makefile (props changed) head/games/crafty-open-medium/Makefile (props changed) head/games/crafty-tablebase-no-pawn/Makefile (props changed) head/games/crafty-tablebase-pawn/Makefile (props changed) head/games/crafty/Makefile (props changed) head/games/cre/files/Makefile (props changed) head/games/criticalmass/Makefile (props changed) head/games/cryptoslam/Makefile (props changed) head/games/ctris/Makefile (props changed) head/games/cultivation/Makefile (props changed) head/games/cursive/Makefile (props changed) head/games/d2x/Makefile (props changed) head/games/dangerdeep-data/Makefile (props changed) head/games/dangerdeep/Makefile (props changed) head/games/deal/Makefile (props changed) head/games/diameter/Makefile (props changed) head/games/digger-vgl/Makefile (props changed) head/games/dmjava/Makefile (props changed) head/games/dodgindiamond2/Makefile (props changed) head/games/doom-data/Makefile.include (props changed) head/games/doom-freedoom/Makefile (props changed) head/games/doomlegacy/Makefile (props changed) head/games/drm/Makefile (props changed) head/games/dsnake/Makefile (props changed) head/games/duel/Makefile (props changed) head/games/duke3d-data/Makefile (props changed) head/games/duke3d-data/Makefile.include (props changed) head/games/dungeoncrawl/Makefile (props changed) head/games/editss/Makefile (props changed) head/games/eduke32/Makefile (props changed) head/games/egl/Makefile (props changed) head/games/egoboo/Makefile (props changed) head/games/eif/Makefile (props changed) head/games/eights/Makefile (props changed) head/games/einstein/Makefile (props changed) head/games/el-data/Makefile (props changed) head/games/el/Makefile (props changed) head/games/endgame-singularity-music/Makefile (props changed) head/games/endgame-singularity/Makefile (props changed) head/games/ensemblist/Makefile (props changed) head/games/enygma/Makefile (props changed) head/games/etracer/Makefile (props changed) head/games/exhaust-ma/Makefile (props changed) head/games/exmars/Makefile (props changed) head/games/exult/Makefile (props changed) head/games/fairymax/Makefile (props changed) head/games/farblazer/Makefile (props changed) head/games/fargoal/Makefile (props changed) head/games/fgkicker/Makefile (props changed) head/games/fkiss/Makefile (props changed) head/games/flyhard/Makefile (props changed) head/games/flying/Makefile (props changed) head/games/fmars/Makefile (props changed) head/games/fortunate/Makefile (props changed) head/games/freeciv-nox11/Makefile (props changed) head/games/freeciv-sounds/Makefile (props changed) head/games/freedink-data/Makefile (props changed) head/games/freedink-dfarc/Makefile (props changed) head/games/freedink-engine/Makefile (props changed) head/games/freedink/Makefile (props changed) head/games/freera/Makefile (props changed) head/games/fretsonfire-data/Makefile (props changed) head/games/fretsonfire/Makefile (props changed) head/games/frikqcc/files/Makefile (props changed) head/games/frogatto/Makefile (props changed) head/games/fteqw/Makefile (props changed) head/games/fuhquake/Makefile (props changed) head/games/fuhquake/files/Makefile (props changed) head/games/funnyboat/Makefile (props changed) head/games/garith/Makefile (props changed) head/games/gbottler/Makefile (props changed) head/games/gdado/Makefile (props changed) head/games/ggz-sdl-games/Makefile (props changed) head/games/glbsp/Makefile (props changed) head/games/glest-data/Makefile (props changed) head/games/glest/Makefile (props changed) head/games/glmaze/Makefile (props changed) head/games/glsfcave/Makefile (props changed) head/games/gmastermind/Makefile (props changed) head/games/gmines/Makefile (props changed) head/games/gnake/Makefile (props changed) head/games/gnarr/Makefile (props changed) head/games/gno3dtet/Makefile (props changed) head/games/gnome-games-extra-data/Makefile (props changed) head/games/gnomeattacks/Makefile (props changed) head/games/gnomebreakout/Makefile (props changed) head/games/gnomechess/Makefile (props changed) head/games/gnomekiss/Makefile (props changed) head/games/gnomesudoku/Makefile (props changed) head/games/gnuchess/Makefile (props changed) head/games/gnudoku/Makefile (props changed) head/games/gnugo/Makefile (props changed) head/games/gnurobbo/Makefile (props changed) head/games/gnurobots/Makefile (props changed) head/games/gnushogi/Makefile (props changed) head/games/gnushogi/Makefile.common (props changed) head/games/gnustep-ladder/Makefile (props changed) head/games/gnustep-sudoku/Makefile (props changed) head/games/gomoku/Makefile (props changed) head/games/gretools/Makefile (props changed) head/games/gru/Makefile (props changed) head/games/grubik/Makefile (props changed) head/games/gshisen/Makefile (props changed) head/games/gtkatlantic/Makefile (props changed) head/games/gunfudeadlands/Makefile (props changed) head/games/gweled/Makefile (props changed) head/games/hangman/Makefile (props changed) head/games/hex/Makefile (props changed) head/games/highmoon/Makefile (props changed) head/games/inform/Makefile (props changed) head/games/inform/files/Makefile.inform (props changed) head/games/ioquake3-devel-server/Makefile (props changed) head/games/ioquake3-server/Makefile (props changed) head/games/iourbanterror-server/Makefile (props changed) head/games/iourbanterror/Makefile (props changed) head/games/ishido/Makefile (props changed) head/games/ivan/Makefile (props changed) head/games/java-games-suite/Makefile (props changed) head/games/jigsaw/Makefile (props changed) head/games/jin/Makefile (props changed) head/games/joequake/Makefile (props changed) head/games/jools/Makefile (props changed) head/games/jtans/Makefile (props changed) head/games/kevedit/Makefile (props changed) head/games/klondike/Makefile (props changed) head/games/ladder/Makefile (props changed) head/games/lapispuzzle/Makefile (props changed) head/games/lbreakout/Makefile (props changed) head/games/legends/Makefile (props changed) head/games/libdungeonmaker/Makefile (props changed) head/games/libggz/Makefile (props changed) head/games/libggz/bsd.ggz.mk (props changed) head/games/libmaitretarot/Makefile (props changed) head/games/libmt_client/Makefile (props changed) head/games/libshhcards/Makefile (props changed) head/games/libshhcards/files/Makefile.lib (props changed) head/games/lincity-ng/Makefile (props changed) head/games/linux-americasarmy/Makefile (props changed) head/games/linux-doom3-demo/Makefile (props changed) head/games/linux-doom3/Makefile (props changed) head/games/linux-enemyterritory-etpro/Makefile (props changed) head/games/linux-enemyterritory-jaymod-21/Makefile (props changed) head/games/linux-enemyterritory-omni-bot-0660/Makefile (props changed) head/games/linux-enemyterritory-shrub/Makefile (props changed) head/games/linux-enemyterritory/Makefile (props changed) head/games/linux-etqw-demo-server/Makefile (props changed) head/games/linux-etqw-server/Makefile (props changed) head/games/linux-nerogame/Makefile (props changed) head/games/linux-nwnclient/Makefile (props changed) head/games/linux-nwserver/Makefile (props changed) head/games/linux-quake3-demo/Makefile (props changed) head/games/linux-quake3/Makefile (props changed) head/games/linux-quake4-demo/Makefile (props changed) head/games/linux-quake4/Makefile (props changed) head/games/linux-rtcw/Makefile (props changed) head/games/linux-savage/Makefile (props changed) head/games/linux-skulltag/Makefile (props changed) head/games/linux-spheresofchaos-demo/Makefile (props changed) head/games/linux-steam/Makefile (props changed) head/games/linux-ut/Makefile (props changed) head/games/linux-ut2003-demo/Makefile (props changed) head/games/linux-ut2004-demo/Makefile (props changed) head/games/linux-virtual-jay-peak/Makefile (props changed) head/games/linux-worldofgoo-demo/Makefile (props changed) head/games/lmpc/Makefile (props changed) head/games/lolcat/Makefile (props changed) head/games/ltris/Makefile (props changed) head/games/lucidlife/Makefile (props changed) head/games/luola/Makefile (props changed) head/games/magiccube4d/Makefile (props changed) head/games/maitretarot/Makefile (props changed) head/games/mangband/Makefile (props changed) head/games/marsnomercy/Makefile (props changed) head/games/masterserver/Makefile (props changed) head/games/megaglest-data/Makefile (props changed) head/games/meqcc/Makefile (props changed) head/games/mindfocus/Makefile (props changed) head/games/mindguard/Makefile (props changed) head/games/mirrormagic/Makefile (props changed) head/games/miscom/Makefile (props changed) head/games/mkgichessclub/Makefile (props changed) head/games/mkhexgrid/Makefile (props changed) head/games/moon-buggy/Makefile (props changed) head/games/moria/Makefile (props changed) head/games/motogt/Makefile (props changed) head/games/mt_dolphin_ia/Makefile (props changed) head/games/mvdsv/Makefile (props changed) head/games/nInvaders/Makefile (props changed) head/games/nadar/Makefile (props changed) head/games/naev-data/Makefile (props changed) head/games/naev/Makefile (props changed) head/games/nazghul/Makefile (props changed) head/games/nehquake/Makefile (props changed) head/games/nethack33-nox11/Makefile (props changed) head/games/nethack34-nox11/Makefile (props changed) head/games/netherearth/Makefile (props changed) head/games/netradiant/Makefile (props changed) head/games/netrek-BRMH-bin/Makefile (props changed) head/games/netris/Makefile (props changed) head/games/nettoe/Makefile (props changed) head/games/newvox/Makefile (props changed) head/games/nextgo/Makefile (props changed) head/games/nibbles/Makefile (props changed) head/games/nighthawk/Makefile (props changed) head/games/nimuh/Makefile (props changed) head/games/ninix-aya/Makefile (props changed) head/games/nonsense/Makefile (props changed) head/games/npush/Makefile (props changed) head/games/numptyphysics-npcomplete/Makefile (props changed) head/games/numptyphysics/Makefile (props changed) head/games/nwndata/Makefile (props changed) head/games/oldrunner/Makefile (props changed) head/games/omega/Makefile (props changed) head/games/oneko-sakura/Makefile (props changed) head/games/oneko/Makefile (props changed) head/games/oonsoo/Makefile (props changed) head/games/openarena-data/Makefile (props changed) head/games/openarena-oax/Makefile (props changed) head/games/openarena-server/Makefile (props changed) head/games/openarena/Makefile (props changed) head/games/openarena/Makefile.include (props changed) head/games/opencity/Makefile (props changed) head/games/openssn/Makefile (props changed) head/games/osgg/Makefile (props changed) head/games/outerspace/Makefile (props changed) head/games/p5-Games-Dice/Makefile (props changed) head/games/pcgen/Makefile (props changed) head/games/pengupop/Makefile (props changed) head/games/phalanx/Makefile (props changed) head/games/pinball/Makefile (props changed) head/games/pipenightdreams/Makefile (props changed) head/games/pipepanic/Makefile (props changed) head/games/plonx/Makefile (props changed) head/games/plutocracy/Makefile (props changed) head/games/pmars/Makefile (props changed) head/games/pongix/Makefile (props changed) head/games/powder/Makefile (props changed) head/games/powermanga/Makefile (props changed) head/games/primateplunge/Makefile (props changed) head/games/ptkei/Makefile (props changed) head/games/pvpgn/Makefile (props changed) head/games/py-sgflib/Makefile (props changed) head/games/pyching/Makefile (props changed) head/games/pydance/Makefile (props changed) head/games/pysol-cardsets/Makefile (props changed) head/games/pysol-music/Makefile (props changed) head/games/pysol/Makefile (props changed) head/games/pysycache-lang/Makefile (props changed) head/games/pysycache-themes/Makefile (props changed) head/games/pysycache/Makefile (props changed) head/games/pythonchess/Makefile (props changed) head/games/q2p/Makefile (props changed) head/games/q2pro/Makefile (props changed) head/games/q3cellshading/Makefile (props changed) head/games/qcc/Makefile (props changed) head/games/qccx/Makefile (props changed) head/games/qccx/files/Makefile (props changed) head/games/qix/Makefile (props changed) head/games/qmars/Makefile (props changed) head/games/qonk/Makefile (props changed) head/games/qtv/Makefile (props changed) head/games/quake-data/Makefile (props changed) head/games/quake-data/Makefile.include (props changed) head/games/quake-dpmod/Makefile (props changed) head/games/quake-extras/Makefile (props changed) head/games/quake-reaper/Makefile (props changed) head/games/quake-source/Makefile (props changed) head/games/quake-source/Makefile.include (props changed) head/games/quake2-3zb2/Makefile (props changed) head/games/quake2-3zb2/files/Makefile (props changed) head/games/quake2-ctf/Makefile (props changed) head/games/quake2-ctf/files/Makefile (props changed) head/games/quake2-data/Makefile (props changed) head/games/quake2-data/Makefile.include (props changed) head/games/quake2-data/files/Makefile (props changed) head/games/quake2-extras/Makefile (props changed) head/games/quake2-lights/Makefile (props changed) head/games/quake2-matrix/Makefile (props changed) head/games/quake2-psychomod/Makefile (props changed) head/games/quake2-relay/Makefile (props changed) head/games/quake2-rogue/Makefile (props changed) head/games/quake2-rogue/files/Makefile (props changed) head/games/quake2-source/Makefile (props changed) head/games/quake2-source/files/Makefile.ctf (props changed) head/games/quake2-source/files/Makefile.game (props changed) head/games/quake2-source/files/Makefile.rogue (props changed) head/games/quake2-source/files/Makefile.xatrix (props changed) head/games/quake2-xatrix/Makefile (props changed) head/games/quake2-xatrix/files/Makefile (props changed) head/games/quake2-zaero/Makefile (props changed) head/games/quake2-zaero/files/Makefile (props changed) head/games/quake2lnx/Makefile (props changed) head/games/quake2max/Makefile (props changed) head/games/quake3-data/Makefile (props changed) head/games/quake3-data/Makefile.include (props changed) head/games/quake3-excessive/Makefile (props changed) head/games/quake3-freezetag/Makefile (props changed) head/games/quake3-osp/Makefile (props changed) head/games/quake3-ra3/Makefile (props changed) head/games/quake3-ut/Makefile (props changed) head/games/quake3-wfa/Makefile (props changed) head/games/quake3/Makefile (props changed) head/games/quakeforge/Makefile (props changed) head/games/qudos/Makefile (props changed) head/games/quetoo/Makefile (props changed) head/games/quit/Makefile (props changed) head/games/qwdtools/Makefile (props changed) head/games/r1q2/Makefile (props changed) head/games/reminiscence/Makefile (props changed) head/games/rftg/Makefile (props changed) head/games/robotfindskitten/Makefile (props changed) head/games/rottdc/Makefile (props changed) head/games/rottdc/files/Makefile (props changed) head/games/rubix/Makefile (props changed) head/games/sarien/Makefile (props changed) head/games/scourge-data/Makefile (props changed) head/games/scourge/Makefile (props changed) head/games/scramble/Makefile (props changed) head/games/sdl-ball/Makefile (props changed) head/games/sdlCC/Makefile (props changed) head/games/sdlquake2/Makefile (props changed) head/games/sdlsand/Makefile (props changed) head/games/seabattle/Makefile (props changed) head/games/seahaven/Makefile (props changed) head/games/searchandrescue-data/Makefile (props changed) head/games/searchandrescue/Makefile (props changed) head/games/secretmaryochronicles-music/Makefile (props changed) head/games/senken/Makefile (props changed) head/games/sex/Makefile (props changed) head/games/shootingstar/Makefile (props changed) head/games/simplevaders/Makefile (props changed) head/games/sjeng/Makefile (props changed) head/games/sl/Makefile (props changed) head/games/slashem-tty/Makefile (props changed) head/games/smiley/Makefile (props changed) head/games/sokoban/Makefile (props changed) head/games/sol/Makefile (props changed) head/games/solarconquest/Makefile (props changed) head/games/solarwolf/Makefile (props changed) head/games/sopwith/Makefile (props changed) head/games/speak/Makefile (props changed) head/games/spellcast/Makefile (props changed) head/games/speyes/Makefile (props changed) head/games/spicetrade/Makefile (props changed) head/games/spider/Makefile (props changed) head/games/stormbaancoureur/Makefile (props changed) head/games/sudoku/Makefile (props changed) head/games/sudsol/Makefile (props changed) head/games/sxsame/Makefile (props changed) head/games/tads/Makefile (props changed) head/games/taipan/Makefile (props changed) head/games/tank/Makefile (props changed) head/games/tbclock/Makefile (props changed) head/games/tenebrae/Makefile (props changed) head/games/tetrinet-x/Makefile (props changed) head/games/tetrinet/Makefile (props changed) head/games/tetrons/Makefile (props changed) head/games/tileworld/Makefile (props changed) head/games/timeseal/Makefile (props changed) head/games/tkmoo/Makefile (props changed) head/games/tksol/Makefile (props changed) head/games/torrent/Makefile (props changed) head/games/tractorgen/Makefile (props changed) head/games/tremulous/Makefile (props changed) head/games/trimines/Makefile (props changed) head/games/trojka/Makefile (props changed) head/games/tsito/Makefile (props changed) head/games/tt/Makefile (props changed) head/games/tuxpaint-fonts/Makefile (props changed) head/games/tuxpaint-stamps/Makefile (props changed) head/games/twitch/Makefile (props changed) head/games/tycho/Makefile (props changed) head/games/uhexen2-extras/Makefile (props changed) head/games/uhexen2/Makefile (props changed) head/games/uhexen2/files/Makefile (props changed) head/games/umark/Makefile (props changed) head/games/umark/files/Makefile (props changed) head/games/unnethack/Makefile (props changed) head/games/untahris/Makefile (props changed) head/games/urbanterror-data/Makefile (props changed) head/games/vavoom-extras/Makefile (props changed) head/games/vdrift-data/Makefile (props changed) head/games/vdrift/Makefile (props changed) head/games/vegastrike-data/Makefile (props changed) head/games/vitetris/Makefile (props changed) head/games/wanderer/Makefile (props changed) head/games/wargus/Makefile (props changed) head/games/warsow-data/Makefile (props changed) head/games/wmeyes/Makefile (props changed) head/games/wmfortune/Makefile (props changed) head/games/wmquake/Makefile (props changed) head/games/wolfpack/Makefile (props changed) head/games/xarchon/Makefile (props changed) head/games/xbat/Makefile (props changed) head/games/xbattle/Makefile (props changed) head/games/xbl/Makefile (props changed) head/games/xblackjack/Makefile (props changed) head/games/xblood/Makefile (props changed) head/games/xboing/Makefile (props changed) head/games/xbomber/Makefile (props changed) head/games/xchadance/Makefile (props changed) head/games/xcheckers/Makefile (props changed) head/games/xdeblock/Makefile (props changed) head/games/xdemineur/Makefile (props changed) head/games/xdesktopwaves/Makefile (props changed) head/games/xeyesplus/Makefile (props changed) head/games/xflame/Makefile (props changed) head/games/xfrisk/Makefile (props changed) head/games/xgalaga/Makefile (props changed) head/games/xglk/Makefile (props changed) head/games/xgospel/Makefile (props changed) head/games/xhime/Makefile (props changed) head/games/xinfocom/Makefile (props changed) head/games/xinvaders3d/Makefile (props changed) head/games/xisola/Makefile (props changed) head/games/xjig/Makefile (props changed) head/games/xjump/Makefile (props changed) head/games/xjumpx/Makefile (props changed) head/games/xkoules/Makefile (props changed) head/games/xlaby/Makefile (props changed) head/games/xlogical/Makefile (props changed) head/games/xmahjongg/Makefile (props changed) head/games/xmball/Makefile (props changed) head/games/xmemory/Makefile (props changed) head/games/xmille/Makefile (props changed) head/games/xmine/Makefile (props changed) head/games/xmines/Makefile (props changed) head/games/xminesweep/Makefile (props changed) head/games/xmlink/Makefile (props changed) head/games/xmris/Makefile (props changed) head/games/xmulti/Makefile (props changed) head/games/xneko/Makefile (props changed) head/games/xoct/Makefile (props changed) head/games/xoids/Makefile (props changed) head/games/xoj/Makefile (props changed) head/games/xonix/Makefile (props changed) head/games/xosmulti/Makefile (props changed) head/games/xpacman/Makefile (props changed) head/games/xpanex/Makefile (props changed) head/games/xpenguins/Makefile (props changed) head/games/xpilot-ng-client/Makefile (props changed) head/games/xpipeman/Makefile (props changed) head/games/xpired/Makefile (props changed) head/games/xpuyopuyo/Makefile (props changed) head/games/xpuzzletama/Makefile (props changed) head/games/xpyraminx/Makefile (props changed) head/games/xrally/Makefile (props changed) head/games/xrick/Makefile (props changed) head/games/xrisk/Makefile (props changed) head/games/xroach/Makefile (props changed) head/games/xroads/Makefile (props changed) head/games/xrobots/Makefile (props changed) head/games/xrot/Makefile (props changed) head/games/xrubik/Makefile (props changed) head/games/xscavenger/Makefile (props changed) head/games/xscrabble/Makefile (props changed) head/games/xshisen/Makefile (props changed) head/games/xshogi/Makefile (props changed) head/games/xskat/Makefile (props changed) head/games/xskewb/Makefile (props changed) head/games/xsokoban/Makefile (props changed) head/games/xsoldier/Makefile (props changed) head/games/xspacewarp/Makefile (props changed) head/games/xtet42/Makefile (props changed) head/games/xtic/Makefile (props changed) head/games/xtriangles/Makefile (props changed) head/games/xtris/Makefile (props changed) head/games/xtrojka/Makefile (props changed) head/games/xtruco/Makefile (props changed) head/games/xtux/Makefile (props changed) head/games/xvier/Makefile (props changed) head/games/xwelltris/Makefile (props changed) head/games/xwordpy/Makefile (props changed) head/games/xworm/Makefile (props changed) head/games/xzip/Makefile (props changed) head/games/yadex/Makefile (props changed) head/games/yahtzee/Makefile (props changed) head/games/yamsweeper/Makefile (props changed) head/games/zoom/Makefile (props changed) head/games/ztrack/Makefile (props changed) head/german/Makefile.inc (props changed) head/german/acroread8/Makefile (props changed) head/german/acroread9/Makefile (props changed) head/german/alt-aspell/Makefile (props changed) head/german/aspell/Makefile (props changed) head/german/dict/Makefile (props changed) head/german/dtaus/Makefile (props changed) head/german/geonext/Makefile (props changed) head/german/gimp-help/Makefile (props changed) head/german/hyphen/Makefile (props changed) head/german/ispell-alt/Makefile (props changed) head/german/libreoffice/Makefile (props changed) head/german/manpages/Makefile (props changed) head/german/phone/Makefile (props changed) head/german/php_doc/Makefile (props changed) head/german/schwobifyer/Makefile (props changed) head/german/selfhtml/Makefile (props changed) head/german/steak/Makefile (props changed) head/german/unix-connect/Makefile (props changed) head/german/webalizer2/Makefile (props changed) head/graphics/4va/Makefile (props changed) head/graphics/Cgraph/Makefile (props changed) head/graphics/Cgraph/files/Makefile.lib (props changed) head/graphics/EZWGL/Makefile (props changed) head/graphics/ImageMagick-nox11/Makefile (props changed) head/graphics/a2png/Makefile (props changed) head/graphics/aalib/Makefile (props changed) head/graphics/agg/Makefile (props changed) head/graphics/alpng/Makefile (props changed) head/graphics/animorph/Makefile (props changed) head/graphics/aview/Makefile (props changed) head/graphics/backfract/Makefile (props changed) head/graphics/barcode/Makefile (props changed) head/graphics/bbrb/Makefile (props changed) head/graphics/blender-doc/Makefile (props changed) head/graphics/bmp-rootvis/Makefile (props changed) head/graphics/bmp2html/Makefile (props changed) head/graphics/bugle/Makefile (props changed) head/graphics/c-a-i-r/Makefile (props changed) head/graphics/cairo-java/Makefile (props changed) head/graphics/cairo-reference/Makefile (props changed) head/graphics/cairomm/Makefile (props changed) head/graphics/cal3d-devel/Makefile (props changed) head/graphics/camediaplay/Makefile (props changed) head/graphics/camera/Makefile (props changed) head/graphics/camerakit/Makefile (props changed) head/graphics/cenon/Makefile (props changed) head/graphics/cfdg/Makefile (props changed) head/graphics/clutter-box2d/Makefile (props changed) head/graphics/comical/Makefile (props changed) head/graphics/compupic/Makefile (props changed) head/graphics/corona/Makefile (props changed) head/graphics/cosmoplayer/Makefile (props changed) head/graphics/crw/Makefile (props changed) head/graphics/curator/Makefile (props changed) head/graphics/dc20ctrl/Makefile (props changed) head/graphics/dc20pack/Makefile (props changed) head/graphics/deegree-csw/Makefile (props changed) head/graphics/deegree-igeoportal/Makefile (props changed) head/graphics/deegree-wcs/Makefile (props changed) head/graphics/deegree-wfs/Makefile (props changed) head/graphics/deegree-wms/Makefile (props changed) head/graphics/deegree-wps/Makefile (props changed) head/graphics/deegree-wpvs/Makefile (props changed) head/graphics/delaboratory/Makefile (props changed) head/graphics/ditaa/Makefile (props changed) head/graphics/dmtx-utils/Makefile (props changed) head/graphics/duhdraw/Makefile (props changed) head/graphics/ecore-evas/Makefile (props changed) head/graphics/ecore-sdl/Makefile (props changed) head/graphics/edje/Makefile (props changed) head/graphics/edje_viewer/Makefile (props changed) head/graphics/entangle/Makefile (props changed) head/graphics/epeg/Makefile (props changed) head/graphics/eterm-bg/Makefile (props changed) head/graphics/evas-core/Makefile (props changed) head/graphics/evas-core/Makefile.inc (props changed) head/graphics/evas-engine-buffer/Makefile (props changed) head/graphics/evas-engine-opengl/Makefile (props changed) head/graphics/evas-engine-sdl/Makefile (props changed) head/graphics/evas-engine-x11/Makefile (props changed) head/graphics/evas-loader-bmp/Makefile (props changed) head/graphics/evas-loader-eet/Makefile (props changed) head/graphics/evas-loader-generic/Makefile (props changed) head/graphics/evas-loader-ico/Makefile (props changed) head/graphics/evas-loader-jpeg/Makefile (props changed) head/graphics/evas-loader-pmaps/Makefile (props changed) head/graphics/evas-loader-png/Makefile (props changed) head/graphics/evas-loader-psd/Makefile (props changed) head/graphics/evas-loader-svg/Makefile (props changed) head/graphics/evas-loader-tga/Makefile (props changed) head/graphics/evas-loader-tiff/Makefile (props changed) head/graphics/evas-loader-wbmp/Makefile (props changed) head/graphics/evas-loader-xpm/Makefile (props changed) head/graphics/evas/Makefile (props changed) head/graphics/evas_generic_loaders-gst/Makefile (props changed) head/graphics/evas_generic_loaders-ps/Makefile (props changed) head/graphics/evas_generic_loaders-raw/Makefile (props changed) head/graphics/evas_generic_loaders-xcf/Makefile (props changed) head/graphics/exiftags/Makefile (props changed) head/graphics/exiftran/files/Makefile (props changed) head/graphics/exiftran/files/Makefile.exiftran (props changed) head/graphics/exiftran/files/Makefile.thumbnail.cgi (props changed) head/graphics/fbm/Makefile (props changed) head/graphics/ffff/Makefile (props changed) head/graphics/fig2sxd/Makefile (props changed) head/graphics/figurine/Makefile (props changed) head/graphics/flam3/Makefile (props changed) head/graphics/flasm/Makefile (props changed) head/graphics/fly/Makefile (props changed) head/graphics/fortytwo/Makefile (props changed) head/graphics/fotoxx/Makefile (props changed) head/graphics/fpc-graph/Makefile (props changed) head/graphics/fpc-ncurses/Makefile (props changed) head/graphics/fpc-pasjpeg/Makefile (props changed) head/graphics/freeglut/Makefile (props changed) head/graphics/frei0r-plugins-gavl/Makefile (props changed) head/graphics/frei0r-plugins-opencv/Makefile (props changed) head/graphics/frei0r-plugins/Makefile (props changed) head/graphics/fujiplay/Makefile (props changed) head/graphics/g2/Makefile (props changed) head/graphics/gauche-gl/Makefile (props changed) head/graphics/gcolor/Makefile (props changed) head/graphics/gcolor2/Makefile (props changed) head/graphics/gdchart/Makefile (props changed) head/graphics/gdchart/files/Makefile (props changed) head/graphics/gdk-pixbuf/Makefile (props changed) head/graphics/gdtclft/Makefile (props changed) head/graphics/gdtclft/files/Makefile.bsd (props changed) head/graphics/geoapi/Makefile (props changed) head/graphics/geomview/Makefile (props changed) head/graphics/gif2png/Makefile (props changed) head/graphics/giflib/Makefile (props changed) head/graphics/gifmerge/Makefile (props changed) head/graphics/gifsicle/Makefile (props changed) head/graphics/giftool/Makefile (props changed) head/graphics/gimp-data-extras/Makefile (props changed) head/graphics/gimp-help/Makefile (props changed) head/graphics/gimp-manual-html/Makefile (props changed) head/graphics/gimpfx-foundry/Makefile (props changed) head/graphics/gkrellkam2/Makefile (props changed) head/graphics/gle-graphics/Makefile (props changed) head/graphics/gle/Makefile (props changed) head/graphics/glexcess/Makefile (props changed) head/graphics/glide3/Makefile (props changed) head/graphics/glpng/Makefile (props changed) head/graphics/gltt/Makefile (props changed) head/graphics/gmt/Makefile.man (props changed) head/graphics/gnofract4d/Makefile (props changed) head/graphics/gnustep-slideshow/Makefile (props changed) head/graphics/gnustep-slideshowkit/Makefile (props changed) head/graphics/gocr/Makefile (props changed) head/graphics/goocanvasmm/Makefile (props changed) head/graphics/gozer/Makefile (props changed) head/graphics/gpaint/Makefile (props changed) head/graphics/gpsmanshp/Makefile (props changed) head/graphics/gracula/Makefile (props changed) head/graphics/grads/Makefile (props changed) head/graphics/grafx2/Makefile (props changed) head/graphics/gstreamer-plugins-aalib/Makefile (props changed) head/graphics/gstreamer-plugins-cairo/Makefile (props changed) head/graphics/gstreamer-plugins-jpeg/Makefile (props changed) head/graphics/gstreamer-plugins-libcaca/Makefile (props changed) head/graphics/gstreamer-plugins-libpng/Makefile (props changed) head/graphics/gts/Makefile (props changed) head/graphics/guilib/Makefile (props changed) head/graphics/hobbes-icons-xpm/Makefile (props changed) head/graphics/hs-HGL/Makefile (props changed) head/graphics/hs-cairo/Makefile (props changed) head/graphics/hs-soegtk/Makefile (props changed) head/graphics/hs-svgcairo/Makefile (props changed) head/graphics/hsetroot/Makefile (props changed) head/graphics/icoconvert/Makefile (props changed) head/graphics/icontact/Makefile (props changed) head/graphics/iec16022/Makefile (props changed) head/graphics/iiview/Makefile (props changed) head/graphics/imageviewer/Makefile (props changed) head/graphics/imgtops/Makefile (props changed) head/graphics/imgv/Makefile (props changed) head/graphics/imlib/Makefile (props changed) head/graphics/imlib2/Makefile (props changed) head/graphics/imlib2_loaders/Makefile (props changed) head/graphics/ivtools/Makefile (props changed) head/graphics/jave6/Makefile (props changed) head/graphics/jbig2dec/Makefile (props changed) head/graphics/jbigkit/Makefile (props changed) head/graphics/jogamp-jogl/Makefile (props changed) head/graphics/jogl/Makefile (props changed) head/graphics/jpatch/Makefile (props changed) head/graphics/jpeg2ps/Makefile (props changed) head/graphics/jpeginfo/Makefile (props changed) head/graphics/jpegoptim/Makefile (props changed) head/graphics/jpg2pdf/Makefile (props changed) head/graphics/jpgtn/Makefile (props changed) head/graphics/jslice/Makefile (props changed) head/graphics/jumpgis-postgis/Makefile (props changed) head/graphics/jumpgis/Makefile (props changed) head/graphics/kix-kmod/Makefile (props changed) head/graphics/kludge3d/Makefile (props changed) head/graphics/laternamagica/Makefile (props changed) head/graphics/leafpak/Makefile (props changed) head/graphics/lfview/Makefile (props changed) head/graphics/libafterimage/Makefile (props changed) head/graphics/libaux/Makefile (props changed) head/graphics/libecwj2/Makefile (props changed) head/graphics/libemf/Makefile (props changed) head/graphics/libggi/Makefile (props changed) head/graphics/libgltext/Makefile (props changed) head/graphics/libgnomecanvas-reference/Makefile (props changed) head/graphics/libgnomecanvasmm26/Makefile (props changed) head/graphics/libimg/files/Makefile.bsd (props changed) head/graphics/libimg/files/Makefile.tkstep80 (props changed) head/graphics/liblug/Makefile (props changed) head/graphics/libmng/files/Makefile.bsd (props changed) head/graphics/libmorph/Makefile (props changed) head/graphics/libpano12/Makefile (props changed) head/graphics/libpano13/Makefile (props changed) head/graphics/libpcd/Makefile (props changed) head/graphics/libpuzzle/Makefile (props changed) head/graphics/libqrencode/Makefile (props changed) head/graphics/libraw/Makefile (props changed) head/graphics/libspiro/Makefile (props changed) head/graphics/libvisual/Makefile (props changed) head/graphics/libvisual04-plugins/Makefile (props changed) head/graphics/linux-XnViewMP/Makefile (props changed) head/graphics/linux-f10-cairo/Makefile (props changed) head/graphics/linux-f10-dri/Makefile (props changed) head/graphics/linux-f10-gdk-pixbuf/Makefile (props changed) head/graphics/linux-f10-glew/Makefile (props changed) head/graphics/linux-f10-jpeg/Makefile (props changed) head/graphics/linux-f10-libGLU/Makefile (props changed) head/graphics/linux-f10-libmng/Makefile (props changed) head/graphics/linux-f10-png/Makefile (props changed) head/graphics/linux-f10-sdl_image/Makefile (props changed) head/graphics/linux-f10-ungif/Makefile (props changed) head/graphics/linux-sdl_ttf/Makefile (props changed) head/graphics/makehuman/Makefile (props changed) head/graphics/megapov/Makefile (props changed) head/graphics/metacam/Makefile (props changed) head/graphics/mhgui/Makefile (props changed) head/graphics/mingplot/Makefile (props changed) head/graphics/mmrecover/Makefile (props changed) head/graphics/mscgen/Makefile (props changed) head/graphics/mxp/Makefile (props changed) head/graphics/netpbm/Makefile (props changed) head/graphics/netpbm/files/Makefile.config.FreeBSD (props changed) head/graphics/ocaml-images/Makefile (props changed) head/graphics/openclipart/Makefile (props changed) head/graphics/opendis/Makefile (props changed) head/graphics/opendx/Makefile (props changed) head/graphics/optar/Makefile (props changed) head/graphics/optipng/Makefile (props changed) head/graphics/panoglview/Makefile (props changed) head/graphics/passepartout/Makefile (props changed) head/graphics/pear-Horde_Image/Makefile (props changed) head/graphics/pear-Image_3D/Makefile (props changed) head/graphics/pear-Image_Barcode/Makefile (props changed) head/graphics/pear-Image_Transform/Makefile (props changed) head/graphics/pecl-gmagick/Makefile (props changed) head/graphics/pecl-imlib2/Makefile (props changed) head/graphics/pecl-qrencode/Makefile (props changed) head/graphics/pfstmo/Makefile (props changed) head/graphics/pgplot/files/Makefile.bin (props changed) head/graphics/pgplot/files/Makefile.clib (props changed) head/graphics/pgplot/files/Makefile.demo (props changed) head/graphics/pgplot/files/Makefile.doc (props changed) head/graphics/pgplot/files/Makefile.flib (props changed) head/graphics/pho/Makefile (props changed) head/graphics/php5-exif/Makefile (props changed) head/graphics/php5-ffmpeg/Makefile (props changed) head/graphics/php5-gd/Makefile (props changed) head/graphics/php52-exif/Makefile (props changed) head/graphics/php52-gd/Makefile (props changed) head/graphics/php52-ming/Makefile (props changed) head/graphics/php55-exif/Makefile (props changed) head/graphics/php55-gd/Makefile (props changed) head/graphics/picturebook/Makefile (props changed) head/graphics/pinpoint/Makefile (props changed) head/graphics/pixelize/Makefile (props changed) head/graphics/pixen/Makefile (props changed) head/graphics/plasma-kmod/Makefile (props changed) head/graphics/plotmtv/Makefile (props changed) head/graphics/plotutils/Makefile (props changed) head/graphics/png2html/Makefile (props changed) head/graphics/pngnq/Makefile (props changed) head/graphics/pngrewrite/Makefile (props changed) head/graphics/poppler-data/Makefile (props changed) head/graphics/ppmcaption/Makefile (props changed) head/graphics/ppminfo/Makefile (props changed) head/graphics/ppsei/Makefile (props changed) head/graphics/preview/Makefile (props changed) head/graphics/price/Makefile (props changed) head/graphics/processing/Makefile (props changed) head/graphics/pstoepsi/Makefile (props changed) head/graphics/pure-gl/Makefile (props changed) head/graphics/py-aafigure/Makefile (props changed) head/graphics/py-actdiag/Makefile (props changed) head/graphics/py-blockdiag/Makefile (props changed) head/graphics/py-blockdiagcontrib-cisco/Makefile (props changed) head/graphics/py-cairo/Makefile (props changed) head/graphics/py-chart/Makefile (props changed) head/graphics/py-django-easy-thumbnails/Makefile (props changed) head/graphics/py-editobj/Makefile (props changed) head/graphics/py-exif/Makefile (props changed) head/graphics/py-freeimagepy/Makefile (props changed) head/graphics/py-gchartwrapper/Makefile (props changed) head/graphics/py-glewpy/Makefile (props changed) head/graphics/py-goocanvas/Makefile (props changed) head/graphics/py-graph-core/Makefile (props changed) head/graphics/py-graph-dot/Makefile (props changed) head/graphics/py-graph/Makefile (props changed) head/graphics/py-graphviz/Makefile (props changed) head/graphics/py-graphy/Makefile (props changed) head/graphics/py-gvgen/Makefile (props changed) head/graphics/py-imaging/Makefile (props changed) head/graphics/py-nwdiag/Makefile (props changed) head/graphics/py-opengl/Makefile (props changed) head/graphics/py-paint/Makefile (props changed) head/graphics/py-png/Makefile (props changed) head/graphics/py-poppler/Makefile (props changed) head/graphics/py-pycha/Makefile (props changed) head/graphics/py-pydot/Makefile (props changed) head/graphics/py-pyglet/Makefile (props changed) head/graphics/py-pygooglechart/Makefile (props changed) head/graphics/py-pyproj/Makefile (props changed) head/graphics/py-rabbyt/Makefile (props changed) head/graphics/py-sane/Makefile (props changed) head/graphics/py-seqdiag/Makefile (props changed) head/graphics/py-sorl-thumbnail/Makefile (props changed) head/graphics/py-soya3d/Makefile (props changed) head/graphics/py-webcolors/Makefile (props changed) head/graphics/py3-cairo/Makefile (props changed) head/graphics/pygts/Makefile (props changed) head/graphics/pymorph/Makefile (props changed) head/graphics/pyro/Makefile (props changed) head/graphics/pysvg/Makefile (props changed) head/graphics/quesa/Makefile (props changed) head/graphics/quesoglc/Makefile (props changed) head/graphics/recoverjpeg/Makefile (props changed) head/graphics/repng2jpeg/Makefile (props changed) head/graphics/ruby-gd/Makefile (props changed) head/graphics/ruby-image_size/Makefile (props changed) head/graphics/ruby-imlib2/Makefile (props changed) head/graphics/ruby-ming/Makefile (props changed) head/graphics/ruby-svg/Makefile (props changed) head/graphics/rubygem-gd2/Makefile (props changed) head/graphics/rubygem-scruffy/Makefile (props changed) head/graphics/rubyphoto/Makefile (props changed) head/graphics/sage/Makefile (props changed) head/graphics/sampleicc/Makefile (props changed) head/graphics/scr2png/Makefile (props changed) head/graphics/scwm-icons/Makefile (props changed) head/graphics/seejpeg/Makefile (props changed) head/graphics/sharpconstruct/Makefile (props changed) head/graphics/show/Makefile (props changed) head/graphics/show/files/Makefile (props changed) head/graphics/simage/Makefile (props changed) head/graphics/simpleviewer/Makefile (props changed) head/graphics/sk1libs/Makefile (props changed) head/graphics/sketch/Makefile (props changed) head/graphics/sng/Makefile (props changed) head/graphics/stamp/Makefile (props changed) head/graphics/svg2pdf/Makefile (props changed) head/graphics/svg2png/Makefile (props changed) head/graphics/svg2swf/Makefile (props changed) head/graphics/swfdec/Makefile (props changed) head/graphics/tiff/Makefile (props changed) head/graphics/tiff2png/Makefile (props changed) head/graphics/tilecache/Makefile (props changed) head/graphics/timeless/Makefile (props changed) head/graphics/tintfu/Makefile (props changed) head/graphics/tinyows/Makefile (props changed) head/graphics/uDrawGraph/Makefile (props changed) head/graphics/uniconvertor/Makefile (props changed) head/graphics/uniconvw/Makefile (props changed) head/graphics/unpaper/Makefile (props changed) head/graphics/vips/Makefile.man (props changed) head/graphics/visprint/Makefile (props changed) head/graphics/whirlgif/Makefile (props changed) head/graphics/white_dune/Makefile (props changed) head/graphics/wmgrabimage/Makefile (props changed) head/graphics/wmicons/Makefile (props changed) head/graphics/xbmbrowser/Makefile (props changed) head/graphics/xd3d/Makefile (props changed) head/graphics/xdgagrab/Makefile (props changed) head/graphics/xface.el/Makefile (props changed) head/graphics/xfpovray/Makefile (props changed) head/graphics/xglurbules/Makefile (props changed) head/graphics/xli/Makefile (props changed) head/graphics/xmms-dflowers/Makefile (props changed) head/graphics/xmms-dscope/Makefile (props changed) head/graphics/xmms-dspectogram/Makefile (props changed) head/graphics/xmms-dspectral/Makefile (props changed) head/graphics/xmms-finespectrum/Makefile (props changed) head/graphics/xmms-iris/Makefile (props changed) head/graphics/xmms-jess/Makefile (props changed) head/graphics/xmms-nebulus/Makefile (props changed) head/graphics/xmms-paranormal/Makefile (props changed) head/graphics/xmms-scivi/Makefile (props changed) head/graphics/xmms-waterfall/Makefile (props changed) head/graphics/xmorph/Makefile (props changed) head/graphics/xnview/Makefile (props changed) head/graphics/xoris/Makefile (props changed) head/graphics/xpaint/Makefile (props changed) head/graphics/xpx/Makefile (props changed) head/graphics/xsvg/Makefile (props changed) head/graphics/xv-m17n/Makefile (props changed) head/graphics/xv/Makefile (props changed) head/graphics/xwpick/Makefile (props changed) head/graphics/xzgv/Makefile (props changed) head/graphics/yafray/Makefile (props changed) head/graphics/zimg/Makefile (props changed) head/hebrew/Makefile.inc (props changed) head/hebrew/aspell/Makefile (props changed) head/hebrew/culmus/Makefile (props changed) head/hebrew/elmar-fonts/Makefile (props changed) head/hebrew/he2/Makefile (props changed) head/hebrew/libreoffice/Makefile (props changed) head/hungarian/Makefile.inc (props changed) head/hungarian/aspell/Makefile (props changed) head/hungarian/hyphen/Makefile (props changed) head/hungarian/libreoffice/Makefile (props changed) head/hungarian/mythes/Makefile (props changed) head/irc/bitlbee/Makefile (props changed) head/irc/bnc/Makefile (props changed) head/irc/bobot++/Makefile (props changed) head/irc/bopm/Makefile (props changed) head/irc/charybdis/Makefile (props changed) head/irc/ctrlproxy/Makefile (props changed) head/irc/ezbounce/Makefile (props changed) head/irc/fisg/Makefile (props changed) head/irc/gruftistats/Makefile (props changed) head/irc/icbirc/Makefile (props changed) head/irc/insub/Makefile (props changed) head/irc/irc/Makefile (props changed) head/irc/irc2dc/Makefile (props changed) head/irc/ircII/Makefile (props changed) head/irc/ircd-ru/Makefile (props changed) head/irc/irchat-pj-xemacs21-mule/Makefile (props changed) head/irc/iroffer-lamm/Makefile (props changed) head/irc/iroffer/Makefile (props changed) head/irc/irssi-dcc_send_limiter/Makefile (props changed) head/irc/irssi-fish/Makefile (props changed) head/irc/libircclient/Makefile (props changed) head/irc/muh/Makefile (props changed) head/irc/nefarious/Makefile (props changed) head/irc/netwalker-ircc/Makefile (props changed) head/irc/pircbot/Makefile (props changed) head/irc/pure-xemacs21-mule/Makefile (props changed) head/irc/py-gozerbot/Makefile (props changed) head/irc/py-irc/Makefile (props changed) head/irc/py-supybot-plugins/Makefile (props changed) head/irc/py-supybot/Makefile (props changed) head/irc/qwebirc/Makefile (props changed) head/irc/ratbox-respond/Makefile (props changed) head/irc/rbot/Makefile (props changed) head/irc/riece-emacs21/Makefile (props changed) head/irc/riece/Makefile (props changed) head/irc/ruby-irc/Makefile (props changed) head/irc/ruby-rica/Makefile (props changed) head/irc/ruby-rice/Makefile (props changed) head/irc/rubygem-net-irc/Makefile (props changed) head/irc/sic/Makefile (props changed) head/irc/simpleirc/Makefile (props changed) head/irc/slirc/Makefile (props changed) head/irc/solid-ircd/Makefile (props changed) head/irc/srvx/Makefile (props changed) head/irc/thales/Makefile (props changed) head/irc/tircproxy/Makefile (props changed) head/irc/trickyirc/Makefile (props changed) head/irc/undernet-ircu/Makefile (props changed) head/irc/xaric/Makefile (props changed) head/irc/xchat-fish/Makefile (props changed) head/irc/xchat-fish/files/Makefile (props changed) head/irc/xchat-mircryption/Makefile (props changed) head/irc/xchat-ruby/Makefile (props changed) head/japanese/ASCIIdates98-fpw/Makefile (props changed) head/japanese/CGdic-fpw/Makefile (props changed) head/japanese/FreeWnn-lib/Makefile (props changed) head/japanese/FreeWnn-server/Makefile (props changed) head/japanese/Makefile.inc (props changed) head/japanese/VTPSfont/Makefile (props changed) head/japanese/Wnn6-lib/Makefile (props changed) head/japanese/Wnn6/Makefile (props changed) head/japanese/Wnn7-lib/Makefile (props changed) head/japanese/a2ps/Makefile (props changed) head/japanese/ack/Makefile (props changed) head/japanese/acroread8/Makefile (props changed) head/japanese/acroread9/Makefile (props changed) head/japanese/ajaxzip2-core/Makefile (props changed) head/japanese/alias-fonts/Makefile (props changed) head/japanese/asterisk-sounds/Makefile (props changed) head/japanese/aterm/Makefile (props changed) head/japanese/bible_names-fpw/Makefile (props changed) head/japanese/bookview/Makefile (props changed) head/japanese/bugzilla40/Makefile (props changed) head/japanese/bugzilla42/Makefile (props changed) head/japanese/bugzilla44/Makefile (props changed) head/japanese/canna-lib/Makefile (props changed) head/japanese/cannadic/Makefile (props changed) head/japanese/cdrom2/Makefile (props changed) head/japanese/cdrom2/files/Makefile (props changed) head/japanese/celrw/Makefile (props changed) head/japanese/chasen/Makefile (props changed) head/japanese/ctags/Makefile (props changed) head/japanese/dbskkd-cdb/Makefile (props changed) head/japanese/devil-fpw/Makefile (props changed) head/japanese/dvi2tty/Makefile (props changed) head/japanese/dvipsk/Makefile (props changed) head/japanese/e2ps/Makefile (props changed) head/japanese/ebd-fpw/Makefile (props changed) head/japanese/eblook/Makefile (props changed) head/japanese/edict-fpw/Makefile (props changed) head/japanese/edict/Makefile (props changed) head/japanese/edyvalue/Makefile (props changed) head/japanese/edyvalue/files/Makefile (props changed) head/japanese/egg-canna/Makefile (props changed) head/japanese/elisa8x8/Makefile (props changed) head/japanese/elvis/Makefile (props changed) head/japanese/epwutil/Makefile (props changed) head/japanese/esecanna-module-vje25/Makefile (props changed) head/japanese/esecanna-module-wnn6/Makefile (props changed) head/japanese/esecanna/Makefile (props changed) head/japanese/eterm/Makefile (props changed) head/japanese/exmh2/Makefile (props changed) head/japanese/fcitx-mozc/Makefile (props changed) head/japanese/flex-sdk/Makefile (props changed) head/japanese/flower-fpw/Makefile (props changed) head/japanese/foldoc-fpw/Makefile (props changed) head/japanese/font-ipa-uigothic/Makefile (props changed) head/japanese/font-ipa/Makefile (props changed) head/japanese/font-ipaex/Makefile (props changed) head/japanese/font-jisx0213/files/Makefile.in (props changed) head/japanese/font-kochi/Makefile (props changed) head/japanese/font-migmix/Makefile (props changed) head/japanese/font-migu/Makefile (props changed) head/japanese/font-mona-ipa/Makefile (props changed) head/japanese/font-motoya-al/Makefile (props changed) head/japanese/font-mplus-ipa/Makefile (props changed) head/japanese/font-mplus/Makefile (props changed) head/japanese/font-sazanami/Makefile (props changed) head/japanese/font-shinonome/Makefile (props changed) head/japanese/font-std/Makefile (props changed) head/japanese/font-takao/Makefile (props changed) head/japanese/font-ume/Makefile (props changed) head/japanese/font-vlgothic/Makefile (props changed) head/japanese/fumeikai-fpw/Makefile (props changed) head/japanese/gawk/Makefile (props changed) head/japanese/gd/Makefile (props changed) head/japanese/gimp-help/Makefile (props changed) head/japanese/gqmpeg/Makefile (props changed) head/japanese/grep/Makefile (props changed) head/japanese/gskk/Makefile (props changed) head/japanese/guesswork-classic/Makefile (props changed) head/japanese/ibus-mozc/Makefile (props changed) head/japanese/icanna/Makefile (props changed) head/japanese/ipadic/Makefile (props changed) head/japanese/ja6/Makefile (props changed) head/japanese/jadetex-ptex/Makefile (props changed) head/japanese/japaneseAFM/Makefile (props changed) head/japanese/jargon-fpw/Makefile (props changed) head/japanese/jed/Makefile (props changed) head/japanese/jishyo/Makefile (props changed) head/japanese/jls/Makefile (props changed) head/japanese/jmode-skk/Makefile (props changed) head/japanese/jmode/Makefile (props changed) head/japanese/jpilot/Makefile (props changed) head/japanese/jstrings/Makefile (props changed) head/japanese/jyuroku/Makefile (props changed) head/japanese/k10/files/Makefile.in (props changed) head/japanese/kakasi/Makefile (props changed) head/japanese/kanji18/Makefile (props changed) head/japanese/kanji18/files/Makefile.in (props changed) head/japanese/kanji26/Makefile (props changed) head/japanese/kanji26/files/Makefile.in (props changed) head/japanese/kappa20/files/Makefile.in (props changed) head/japanese/kbanner/Makefile (props changed) head/japanese/kcc/Makefile (props changed) head/japanese/kdrill/Makefile (props changed) head/japanese/kinput2/Makefile (props changed) head/japanese/kon2-14dot/Makefile (props changed) head/japanese/kon2-16dot/Makefile (props changed) head/japanese/lambdamoo/Makefile (props changed) head/japanese/leafrogue/Makefile (props changed) head/japanese/libreoffice/Makefile (props changed) head/japanese/libslang/Makefile (props changed) head/japanese/libtomoe-gtk/Makefile (props changed) head/japanese/lipsf/Makefile (props changed) head/japanese/lookup-emacs21/Makefile (props changed) head/japanese/lookup/Makefile (props changed) head/japanese/lsd-fpw/Makefile (props changed) head/japanese/makejvf/Makefile (props changed) head/japanese/man-doc/Makefile (props changed) head/japanese/man/Makefile (props changed) head/japanese/marumoji-fonts/files/Makefile.in (props changed) head/japanese/mell/Makefile (props changed) head/japanese/mendexk-euc/Makefile (props changed) head/japanese/mh/Makefile (props changed) head/japanese/migemo-emacs21/Makefile (props changed) head/japanese/migemo-emacs22/Makefile (props changed) head/japanese/migemo-emacs23/Makefile (props changed) head/japanese/migemo-xemacs-devel-mule/Makefile (props changed) head/japanese/ming/Makefile (props changed) head/japanese/ming/files/Makefile (props changed) head/japanese/monafonts-ttf/Makefile (props changed) head/japanese/mozc-additions/Makefile (props changed) head/japanese/mozc-el/Makefile (props changed) head/japanese/mozc-tool/Makefile (props changed) head/japanese/mtools/Makefile (props changed) head/japanese/multiskkserv/Makefile (props changed) head/japanese/mypaedia-fpw-package/Makefile (props changed) head/japanese/navi2ch/Makefile (props changed) head/japanese/ne/Makefile (props changed) head/japanese/netype/Makefile (props changed) head/japanese/newosaka/Makefile (props changed) head/japanese/ng-canna/Makefile (props changed) head/japanese/ng-devel/Makefile (props changed) head/japanese/ng/Makefile (props changed) head/japanese/ngraph-fonts/Makefile (props changed) head/japanese/onew/Makefile (props changed) head/japanese/p5-manual/Makefile (props changed) head/japanese/pejv-fpw/Makefile (props changed) head/japanese/php5-mecab/Makefile (props changed) head/japanese/php_doc/Makefile (props changed) head/japanese/plain2/Makefile (props changed) head/japanese/plan/Makefile (props changed) head/japanese/platex-japanese/Makefile (props changed) head/japanese/platex-jsclasses/Makefile (props changed) head/japanese/platex-otf/Makefile (props changed) head/japanese/platex209/Makefile (props changed) head/japanese/prime-dict/Makefile (props changed) head/japanese/prime-el/Makefile (props changed) head/japanese/prime/Makefile (props changed) head/japanese/ptex/Makefile (props changed) head/japanese/py-mecab/Makefile (props changed) head/japanese/py-tegaki-gtk/Makefile (props changed) head/japanese/py-tegaki/Makefile (props changed) head/japanese/py-zinnia/Makefile (props changed) head/japanese/qkc/Makefile (props changed) head/japanese/rbnamazu/Makefile (props changed) head/japanese/roget-fpw/Makefile (props changed) head/japanese/rogue_s/Makefile (props changed) head/japanese/ruby-man/Makefile (props changed) head/japanese/ruby-mecab/Makefile (props changed) head/japanese/ruby-romkan/Makefile (props changed) head/japanese/ruby-uconv/Makefile (props changed) head/japanese/ruby-usersguide/Makefile (props changed) head/japanese/rubygem-jpmobile-ipaddresses/Makefile (props changed) head/japanese/rubygem-jpmobile-terminfo/Makefile (props changed) head/japanese/rubygem-jpmobile/Makefile (props changed) head/japanese/ryaku-fpw/Makefile (props changed) head/japanese/scim-tables/Makefile (props changed) head/japanese/seaside/Makefile (props changed) head/japanese/sed/Makefile (props changed) head/japanese/sj3-lib/Makefile (props changed) head/japanese/sj3-server/Makefile (props changed) head/japanese/skk/Makefile (props changed) head/japanese/skkinput/Makefile (props changed) head/japanese/skkinput3/Makefile (props changed) head/japanese/skkserv/Makefile (props changed) head/japanese/slimeforest/Makefile (props changed) head/japanese/slrn/Makefile (props changed) head/japanese/suicavalue/Makefile (props changed) head/japanese/suicavalue/files/Makefile (props changed) head/japanese/suikyo/Makefile (props changed) head/japanese/t2ps/Makefile (props changed) head/japanese/tcl80/Makefile (props changed) head/japanese/tdiary/Makefile (props changed) head/japanese/teTeX/Makefile (props changed) head/japanese/tegaki-recognize/Makefile (props changed) head/japanese/tegaki-zinnia-japanese/Makefile (props changed) head/japanese/tex-ptex/Makefile (props changed) head/japanese/texinfo/Makefile (props changed) head/japanese/tgif/Makefile (props changed) head/japanese/timidity++-tcltk/Makefile (props changed) head/japanese/tk80/Makefile (props changed) head/japanese/today/Makefile (props changed) head/japanese/today/files/Makefile (props changed) head/japanese/vera-fpw/Makefile (props changed) head/japanese/vftool/Makefile (props changed) head/japanese/wdic-fpw/Makefile (props changed) head/japanese/web1913-fpw/Makefile (props changed) head/japanese/webalizer/Makefile (props changed) head/japanese/wnn7egg/Makefile (props changed) head/japanese/wordnet-fpw/Makefile (props changed) head/japanese/wwasw-fpw/Makefile (props changed) head/japanese/xdtp/Makefile (props changed) head/japanese/xdvik/Makefile (props changed) head/japanese/xemacs21-canna/Makefile (props changed) head/japanese/xlockmore/Makefile (props changed) head/japanese/xpdf/Makefile (props changed) head/japanese/xshodou/Makefile (props changed) head/japanese/xtr/Makefile (props changed) head/japanese/xv/Makefile (props changed) head/japanese/xyaku/Makefile (props changed) head/japanese/yasou-fpw/Makefile (props changed) head/japanese/yc.el/Makefile (props changed) head/japanese/zangband/Makefile (props changed) head/japanese/zangband/files/Makefile.in (props changed) head/japanese/zinnia-tomoe/Makefile (props changed) head/japanese/zinnia/Makefile (props changed) head/japanese/zipcodes/files/Makefile (props changed) head/java/avis/Makefile (props changed) head/java/berkeley-db/Makefile (props changed) head/java/bouncycastle/Makefile (props changed) head/java/cacao/Makefile (props changed) head/java/castor/Makefile (props changed) head/java/commonclipse/Makefile (props changed) head/java/cos/Makefile (props changed) head/java/cryptix-jce/Makefile (props changed) head/java/dbvis/Makefile (props changed) head/java/drexelsnmp/Makefile (props changed) head/java/eclipse-EPIC/Makefile (props changed) head/java/eclipse-RDT/Makefile (props changed) head/java/eclipse-aptana/Makefile (props changed) head/java/eclipse-aptana2/Makefile (props changed) head/java/eclipse-checkstyle/Makefile (props changed) head/java/eclipse-datatools/Makefile (props changed) head/java/eclipse-drjava/Makefile (props changed) head/java/eclipse-emf/Makefile (props changed) head/java/eclipse-examples/Makefile (props changed) head/java/eclipse-findbugs/Makefile (props changed) head/java/eclipse-gef-examples/Makefile (props changed) head/java/eclipse-gef/Makefile (props changed) head/java/eclipse-hibernatetools/Makefile (props changed) head/java/eclipse-jad/Makefile (props changed) head/java/eclipse-langpack/Makefile (props changed) head/java/eclipse-log4e/Makefile (props changed) head/java/eclipse-lomboz/Makefile (props changed) head/java/eclipse-ocl/Makefile (props changed) head/java/eclipse-pmd/Makefile (props changed) head/java/eclipse-propedit/Makefile (props changed) head/java/eclipse-quantum/Makefile (props changed) head/java/eclipse-shelled/Makefile (props changed) head/java/eclipse-sqlexplorer/Makefile (props changed) head/java/eclipse-sysdeo-tomcat/Makefile (props changed) head/java/eclipse-uml/Makefile (props changed) head/java/eclipse-vep-examples/Makefile (props changed) head/java/eclipse-vep/Makefile (props changed) head/java/eclipse-viplugin/Makefile (props changed) head/java/eclipse-webtools/Makefile (props changed) head/java/eclipse-windowbuilder/Makefile (props changed) head/java/eclipse/Makefile.plugins (props changed) head/java/infobus/Makefile (props changed) head/java/j2sdkee13/Makefile (props changed) head/java/jad/Makefile (props changed) head/java/jaf/Makefile (props changed) head/java/jai-imageio/Makefile (props changed) head/java/jai/Makefile (props changed) head/java/jakarta-bcel/Makefile (props changed) head/java/jakarta-commons-beanutils/Makefile (props changed) head/java/jakarta-commons-cli/Makefile (props changed) head/java/jakarta-commons-codec/Makefile (props changed) head/java/jakarta-commons-collections/Makefile (props changed) head/java/jakarta-commons-dbcp/Makefile (props changed) head/java/jakarta-commons-discovery/Makefile (props changed) head/java/jakarta-commons-httpclient/Makefile (props changed) head/java/jakarta-commons-lang/Makefile (props changed) head/java/jakarta-commons-logging/Makefile (props changed) head/java/jakarta-commons-pool/Makefile (props changed) head/java/jakarta-commons-primitives/Makefile (props changed) head/java/jakarta-oro/Makefile (props changed) head/java/jakarta-regexp/Makefile (props changed) head/java/jamvm/Makefile (props changed) head/java/jasmin/Makefile (props changed) head/java/java-checkstyle/Makefile (props changed) head/java/java-cup/Makefile (props changed) head/java/java-getopt/Makefile (props changed) head/java/java-subversion/Makefile (props changed) head/java/java3d/Makefile (props changed) head/java/javahelp/Makefile (props changed) head/java/javavmwrapper/Makefile (props changed) head/java/jaxen/Makefile (props changed) head/java/jboss5/Makefile (props changed) head/java/jc/Makefile (props changed) head/java/jcalendar/Makefile (props changed) head/java/jcckit/Makefile (props changed) head/java/jdbcpool/Makefile (props changed) head/java/jdom/Makefile (props changed) head/java/jflex/Makefile (props changed) head/java/jgraph/Makefile (props changed) head/java/jgrapht/Makefile (props changed) head/java/jlex/Makefile (props changed) head/java/jlint/Makefile (props changed) head/java/jmf/Makefile (props changed) head/java/jode/Makefile (props changed) head/java/jomp/Makefile (props changed) head/java/jrosetta/Makefile (props changed) head/java/jta/Makefile (props changed) head/java/jtiger/Makefile (props changed) head/java/jump/Makefile (props changed) head/java/langspec/Makefile (props changed) head/java/mx4j/Makefile (props changed) head/java/netrexx/Makefile (props changed) head/java/netty/Makefile (props changed) head/java/openjdk6/files/Makefile.test.in (props changed) head/java/phpeclipse/Makefile (props changed) head/java/poseidon/Makefile (props changed) head/java/proguard/Makefile (props changed) head/java/rubygem-rjb/Makefile (props changed) head/java/sablevm-classpath/Makefile (props changed) head/java/servingxml/Makefile (props changed) head/java/sqlitejdbc/Makefile (props changed) head/java/trove4j/Makefile (props changed) head/java/veditor/Makefile (props changed) head/java/xdoclet/Makefile (props changed) head/korean/FreeWnn-lib/Makefile (props changed) head/korean/Makefile.inc (props changed) head/korean/acroread8/Makefile (props changed) head/korean/aleefonts-ttf/Makefile (props changed) head/korean/baekmukfonts-ttf/Makefile (props changed) head/korean/engdic/Makefile (props changed) head/korean/gimp-help/Makefile (props changed) head/korean/h2ps/Makefile (props changed) head/korean/hanyangfonts/Makefile (props changed) head/korean/hcode/Makefile (props changed) head/korean/hmconv/Makefile (props changed) head/korean/hunspell/Makefile (props changed) head/korean/kaistfonts/Makefile (props changed) head/korean/ko.TeX-fonts-base/Makefile (props changed) head/korean/ko.TeX-fonts-extra/Makefile (props changed) head/korean/ko.TeX/Makefile (props changed) head/korean/libreoffice/Makefile (props changed) head/korean/man-doc/Makefile (props changed) head/korean/munhwafonts-cid/Makefile (props changed) head/korean/nanumfonts-ttf/Makefile (props changed) head/korean/nhpf/Makefile (props changed) head/korean/scim-tables/Makefile (props changed) head/korean/unfonts-core/Makefile (props changed) head/korean/unfonts-extra/Makefile (props changed) head/korean/uniksc/Makefile (props changed) head/korean/unzip/Makefile (props changed) head/korean/xpdf/Makefile (props changed) head/lang/Gofer/Makefile (props changed) head/lang/STk/Makefile (props changed) head/lang/Sather/Makefile (props changed) head/lang/afnix/Makefile (props changed) head/lang/alisp/Makefile (props changed) head/lang/arena/Makefile (props changed) head/lang/atlast/Makefile (props changed) head/lang/awka/Makefile (props changed) head/lang/bsh/Makefile (props changed) head/lang/bwbasic/Makefile (props changed) head/lang/caml-light/Makefile (props changed) head/lang/cdent/Makefile (props changed) head/lang/cduce/Makefile (props changed) head/lang/cfortran/Makefile (props changed) head/lang/cint/Makefile (props changed) head/lang/clojure-mode.el/Makefile (props changed) head/lang/cmucl-extra/Makefile (props changed) head/lang/dice/Makefile (props changed) head/lang/diveintopython/Makefile (props changed) head/lang/dlv/Makefile (props changed) head/lang/dmd2/Makefile (props changed) head/lang/elan/Makefile (props changed) head/lang/elk/Makefile (props changed) head/lang/emacs-lisp-intro/Makefile (props changed) head/lang/embryo/Makefile (props changed) head/lang/execline/Makefile (props changed) head/lang/ezm3/Makefile (props changed) head/lang/f2c/Makefile (props changed) head/lang/f77/Makefile (props changed) head/lang/fasm/Makefile (props changed) head/lang/ferite/Makefile (props changed) head/lang/ficl/Makefile (props changed) head/lang/fpc-base/Makefile (props changed) head/lang/fpc-docs/Makefile (props changed) head/lang/fpc-utils/Makefile (props changed) head/lang/fsharp/Makefile (props changed) head/lang/g95/Makefile (props changed) head/lang/gcc-aux/Makefile.version (props changed) head/lang/gcc-ecj45/Makefile (props changed) head/lang/gnat-aux/Makefile (props changed) head/lang/gnatdroid-armv5/Makefile (props changed) head/lang/gnatdroid-armv7/Makefile (props changed) head/lang/gnatdroid-sysroot/Makefile (props changed) head/lang/gnustep-guile/Makefile (props changed) head/lang/groovy/Makefile (props changed) head/lang/gscheme/Makefile (props changed) head/lang/haskell-mode.el/Makefile (props changed) head/lang/hla/Makefile (props changed) head/lang/hope/Makefile (props changed) head/lang/hs-brainfuck/Makefile (props changed) head/lang/hs-epic/Makefile (props changed) head/lang/hs-unlambda/Makefile (props changed) head/lang/hugs/Makefile (props changed) head/lang/icc/Makefile (props changed) head/lang/icon/Makefile (props changed) head/lang/ifc/Makefile (props changed) head/lang/ikarus/Makefile (props changed) head/lang/intel2gas/Makefile (props changed) head/lang/intercal/Makefile (props changed) head/lang/jakarta-commons-jelly/Makefile (props changed) head/lang/libobjc2/Makefile (props changed) head/lang/libstdc++_stldoc_3.4.0/Makefile (props changed) head/lang/libstdc++_stldoc_4.2.2/Makefile (props changed) head/lang/linux-f10-libg2c/Makefile (props changed) head/lang/linux-f10-tcl85/Makefile (props changed) head/lang/linux-j/Makefile (props changed) head/lang/logo/Makefile (props changed) head/lang/lua-mode.el/Makefile (props changed) head/lang/luajit/Makefile (props changed) head/lang/mawk/Makefile (props changed) head/lang/metaocaml/Makefile (props changed) head/lang/mixal/Makefile (props changed) head/lang/ml-pnet/Makefile (props changed) head/lang/mlton/Makefile (props changed) head/lang/mmix/Makefile (props changed) head/lang/mono-basic/Makefile (props changed) head/lang/mono/bsd.mono.mk (props changed) head/lang/mpd/Makefile (props changed) head/lang/mtasc/Makefile (props changed) head/lang/nawk/Makefile (props changed) head/lang/nbfc/Makefile (props changed) head/lang/nesasm/Makefile (props changed) head/lang/nhc98/Makefile (props changed) head/lang/nqc/Makefile (props changed) head/lang/nwcc/Makefile (props changed) head/lang/ocaml-autoconf/Makefile (props changed) head/lang/ocaml-camlidl/Makefile (props changed) head/lang/ocaml-doc/Makefile (props changed) head/lang/ocaml-examples/Makefile (props changed) head/lang/ocaml-mode.el/Makefile (props changed) head/lang/ocaml-nox11/Makefile (props changed) head/lang/ofc/Makefile (props changed) head/lang/ohugs/Makefile (props changed) head/lang/onyx/Makefile (props changed) head/lang/oo2c/Makefile (props changed) head/lang/oorexx/Makefile (props changed) head/lang/pbasic/Makefile (props changed) head/lang/pcc/Makefile (props changed) head/lang/pfe/Makefile (props changed) head/lang/phantomjs/Makefile (props changed) head/lang/pharo/Makefile (props changed) head/lang/phc/Makefile (props changed) head/lang/php-mode.el/Makefile (props changed) head/lang/php5-extensions/Makefile (props changed) head/lang/php52-extensions/Makefile (props changed) head/lang/php55-extensions/Makefile (props changed) head/lang/php_doc/Makefile (props changed) head/lang/picoc/Makefile (props changed) head/lang/pnet-base/Makefile (props changed) head/lang/pnet/Makefile (props changed) head/lang/pnet/Makefile.pnet (props changed) head/lang/pnetlib/Makefile (props changed) head/lang/ptoc/Makefile (props changed) head/lang/pure/bsd.pure.mk (props changed) head/lang/py-mx-base/Makefile (props changed) head/lang/py-prolog/Makefile (props changed) head/lang/python-doc-pdf-a4/Makefile (props changed) head/lang/python-doc-pdf-letter/Makefile (props changed) head/lang/python-doc-text/Makefile (props changed) head/lang/qscheme/Makefile (props changed) head/lang/rexx-regina/Makefile (props changed) head/lang/rexx-regutil/Makefile (props changed) head/lang/rexx-wrapper/Makefile (props changed) head/lang/rhino/Makefile (props changed) head/lang/rscheme/Makefile (props changed) head/lang/ruby-man/Makefile (props changed) head/lang/ruby-programmingruby/Makefile (props changed) head/lang/ruby-usersguide/Makefile (props changed) head/lang/sather-specification/Makefile (props changed) head/lang/sather-tutorial/Makefile (props changed) head/lang/scheme48/Makefile (props changed) head/lang/schemetoc/Makefile (props changed) head/lang/schemetoc/files/Makefile (props changed) head/lang/scsh/Makefile (props changed) head/lang/see-devel/Makefile (props changed) head/lang/see/Makefile (props changed) head/lang/siod/Makefile (props changed) head/lang/sisc/Makefile (props changed) head/lang/sketchy/Makefile (props changed) head/lang/slisp/Makefile (props changed) head/lang/sml-mode.el/Makefile (props changed) head/lang/sml-nj-devel/Makefile (props changed) head/lang/sml-nj/Makefile (props changed) head/lang/snobol4/Makefile (props changed) head/lang/spl/Makefile (props changed) head/lang/squirrel/Makefile (props changed) head/lang/sr/Makefile (props changed) head/lang/stalin/Makefile (props changed) head/lang/starlogo/Makefile (props changed) head/lang/stklos/Makefile (props changed) head/lang/stldoc/Makefile (props changed) head/lang/swi-pl/Makefile (props changed) head/lang/sxm/Makefile (props changed) head/lang/t3x/Makefile (props changed) head/lang/tcltutor/Makefile (props changed) head/lang/tinypy/Makefile (props changed) head/lang/tolua++/Makefile (props changed) head/lang/tolua/Makefile (props changed) head/lang/treecc/Makefile (props changed) head/lang/tuareg-mode.el/Makefile (props changed) head/lang/twelf/Makefile (props changed) head/lang/ucc/Makefile (props changed) head/lang/urweb/Makefile (props changed) head/lang/visualworks/Makefile (props changed) head/lang/xds-c/Makefile (props changed) head/lang/xds/Makefile (props changed) head/lang/yabasic/Makefile (props changed) head/lang/yorick/Makefile (props changed) head/mail/addresses-goodies/Makefile (props changed) head/mail/addresses/Makefile (props changed) head/mail/akpop3d/Makefile (props changed) head/mail/alpine/Makefile (props changed) head/mail/altermime/Makefile (props changed) head/mail/althea/files/Makefile.bsd (props changed) head/mail/antivirus-milter/Makefile (props changed) head/mail/archivesmtp/Makefile (props changed) head/mail/archmbox/Makefile (props changed) head/mail/ask/Makefile (props changed) head/mail/asmail/Makefile (props changed) head/mail/atmail/Makefile (props changed) head/mail/autorespond/Makefile (props changed) head/mail/autosig/Makefile (props changed) head/mail/batv-milter/Makefile (props changed) head/mail/biabam/Makefile (props changed) head/mail/c-sig-emacs21/Makefile (props changed) head/mail/cclient/Makefile (props changed) head/mail/chk4mail/Makefile (props changed) head/mail/clamfilter/Makefile (props changed) head/mail/coolmail/Makefile (props changed) head/mail/courier-authlib-vchkpw/Makefile (props changed) head/mail/courier-pythonfilter/Makefile (props changed) head/mail/courier/Makefile.doc (props changed) head/mail/courier/Makefile.man (props changed) head/mail/courier/Makefile.own (props changed) head/mail/cvsmail/Makefile (props changed) head/mail/cyrus2courier/Makefile (props changed) head/mail/davmail/Makefile (props changed) head/mail/dcc-dccd/Makefile (props changed) head/mail/dk-milter/Makefile (props changed) head/mail/dk-milter/Makefile.features (props changed) head/mail/dovecot-antispam/Makefile (props changed) head/mail/dovecot-managesieve/Makefile (props changed) head/mail/dovecot-sieve/Makefile (props changed) head/mail/drac/Makefile (props changed) head/mail/dracmail/Makefile (props changed) head/mail/dsbl-testers/Makefile (props changed) head/mail/ecartis/Makefile (props changed) head/mail/emh-xemacs21-mule/Makefile (props changed) head/mail/emh/Makefile (props changed) head/mail/emil/Makefile (props changed) head/mail/eps/Makefile (props changed) head/mail/epstools/Makefile (props changed) head/mail/esmtp/Makefile (props changed) head/mail/exact/Makefile (props changed) head/mail/exim-doc-html/Makefile (props changed) head/mail/exim-doc-info/Makefile (props changed) head/mail/exim-doc-pdf/Makefile (props changed) head/mail/exim-doc-postscript/Makefile (props changed) head/mail/exim-ldap2/Makefile (props changed) head/mail/exim-monitor/Makefile (props changed) head/mail/exim-mysql/Makefile (props changed) head/mail/exim-postgresql/Makefile (props changed) head/mail/exim-sa-exim/Makefile (props changed) head/mail/exim-sqlite/Makefile (props changed) head/mail/exmh2/Makefile (props changed) head/mail/ez-pine-gpg/Makefile (props changed) head/mail/ezmlm-idx/Makefile (props changed) head/mail/faces/Makefile (props changed) head/mail/faces/files/Makefile.compface (props changed) head/mail/fdm/Makefile (props changed) head/mail/filtermail/Makefile (props changed) head/mail/findmaildirs/Makefile (props changed) head/mail/firemime/Makefile (props changed) head/mail/firepay/Makefile (props changed) head/mail/gbuffy/Makefile (props changed) head/mail/gensig/Makefile (props changed) head/mail/gld/Makefile (props changed) head/mail/gmail-notify/Makefile (props changed) head/mail/gmail-notify/files/Makefile.in (props changed) head/mail/gmime2-sharp/Makefile (props changed) head/mail/gmime24-sharp/Makefile (props changed) head/mail/gnumail/Makefile (props changed) head/mail/greyfix/Makefile (props changed) head/mail/greylite/Makefile (props changed) head/mail/gubby/Makefile (props changed) head/mail/hashcash/Makefile (props changed) head/mail/hbiff/Makefile (props changed) head/mail/horde-imp/Makefile (props changed) head/mail/horde-ingo/Makefile (props changed) head/mail/horde-turba/Makefile (props changed) head/mail/horde-webmail/Makefile (props changed) head/mail/hs-email-validate/Makefile (props changed) head/mail/hs-mime-mail/Makefile (props changed) head/mail/hs-mime/Makefile (props changed) head/mail/ifile/Makefile (props changed) head/mail/ilohamail-devel/Makefile (props changed) head/mail/ilohamail/Makefile (props changed) head/mail/imapfilter/Makefile (props changed) head/mail/imapsync/Makefile (props changed) head/mail/isbg/Makefile (props changed) head/mail/isoqlog/Makefile (props changed) head/mail/isync/Makefile (props changed) head/mail/james/Makefile (props changed) head/mail/jamlib/Makefile (props changed) head/mail/jmba/Makefile (props changed) head/mail/junkfilter/Makefile (props changed) head/mail/lens/Makefile (props changed) head/mail/libdkim/Makefile (props changed) head/mail/libdkim/files/Makefile (props changed) head/mail/libdomainkeys/Makefile (props changed) head/mail/libdomainkeys/files/Makefile (props changed) head/mail/librfc822/Makefile (props changed) head/mail/libsieve/Makefile (props changed) head/mail/libspamtest/Makefile (props changed) head/mail/libspf/Makefile (props changed) head/mail/libsrs2/Makefile (props changed) head/mail/libsrs_alt/Makefile (props changed) head/mail/lmtp2nntp/Makefile (props changed) head/mail/mahogany/Makefile (props changed) head/mail/mail2sms/Makefile (props changed) head/mail/mailcrypt/Makefile (props changed) head/mail/mailfmt/Makefile (props changed) head/mail/mailmgr/Makefile (props changed) head/mail/mailsync/Makefile (props changed) head/mail/mailtray/Makefile (props changed) head/mail/mairix/Makefile (props changed) head/mail/mbox2imap/Makefile (props changed) head/mail/mboxcheck-applet/Makefile (props changed) head/mail/mboxgrep/Makefile (props changed) head/mail/mboxstats/Makefile (props changed) head/mail/mess822/Makefile (props changed) head/mail/meta1/Makefile (props changed) head/mail/metamail/Makefile (props changed) head/mail/milter-bogom/Makefile (props changed) head/mail/milter-callback/Makefile (props changed) head/mail/milter-skem/Makefile (props changed) head/mail/mime4j/Makefile (props changed) head/mail/mini_sendmail/Makefile (props changed) head/mail/missey/Makefile (props changed) head/mail/missey/files/Makefile (props changed) head/mail/mixmaster/files/Makefile.in (props changed) head/mail/ml/Makefile (props changed) head/mail/movemail/Makefile (props changed) head/mail/mreport/Makefile (props changed) head/mail/mulberry/Makefile (props changed) head/mail/mutt-lite/Makefile (props changed) head/mail/mutt14-lite/Makefile (props changed) head/mail/mutt_vc_query/Makefile (props changed) head/mail/muttzilla/Makefile (props changed) head/mail/nbsmtp/Makefile (props changed) head/mail/nmh/Makefile (props changed) head/mail/noattach/Makefile (props changed) head/mail/nocc/Makefile (props changed) head/mail/nohtml/Makefile (props changed) head/mail/nullmailer/Makefile (props changed) head/mail/nullpop/Makefile (props changed) head/mail/offlineimap/Makefile (props changed) head/mail/opensmtpd/Makefile (props changed) head/mail/osbf-lua/Makefile (props changed) head/mail/p3scan/Makefile (props changed) head/mail/p5-Mail-Box/Makefile.man (props changed) head/mail/p5-Mail-SpamAssassin-Alt/Makefile (props changed) head/mail/pantomime/Makefile (props changed) head/mail/pathalias/Makefile (props changed) head/mail/pear-Horde_Imap_Client/Makefile (props changed) head/mail/pear-Horde_Kolab_Storage/Makefile (props changed) head/mail/pear-Horde_ListHeaders/Makefile (props changed) head/mail/pear-Horde_Mail/Makefile (props changed) head/mail/pear-Horde_Mime/Makefile (props changed) head/mail/pear-Horde_Mime_Viewer/Makefile (props changed) head/mail/pear-Horde_Smtp/Makefile (props changed) head/mail/pear-Mail_Queue/Makefile (props changed) head/mail/pecl-esmtp/Makefile (props changed) head/mail/pecl-mailparse/Makefile (props changed) head/mail/pecl-pop3/Makefile (props changed) head/mail/pfqueue/Makefile (props changed) head/mail/php5-imap/Makefile (props changed) head/mail/php52-imap/Makefile (props changed) head/mail/php55-imap/Makefile (props changed) head/mail/phpmailer2/Makefile (props changed) head/mail/pine-pgp-filters/Makefile (props changed) head/mail/pm-lib/Makefile (props changed) head/mail/pop3gwd/Makefile (props changed) head/mail/pop3lite/Makefile (props changed) head/mail/pop3proxy/Makefile (props changed) head/mail/pop3vscan/Makefile (props changed) head/mail/popa3d-before-sendmail/Makefile (props changed) head/mail/popa3d/Makefile (props changed) head/mail/popcheck/Makefile (props changed) head/mail/popd/Makefile (props changed) head/mail/poppassd/Makefile (props changed) head/mail/poppwd/Makefile (props changed) head/mail/poppy/Makefile (props changed) head/mail/postfinger/Makefile (props changed) head/mail/postfix-gps/Makefile (props changed) head/mail/postfix-policyd-sf/Makefile (props changed) head/mail/postfix-policyd-spf-python/Makefile (props changed) head/mail/prom-wl/Makefile (props changed) head/mail/py-Products.MailHost/Makefile (props changed) head/mail/py-Products.SecureMailHost/Makefile (props changed) head/mail/py-apolicy/Makefile (props changed) head/mail/py-authres/Makefile (props changed) head/mail/py-cyruslib/Makefile (props changed) head/mail/py-libgmail/Makefile (props changed) head/mail/py-ppolicy/Makefile (props changed) head/mail/py-spambayes/Makefile (props changed) head/mail/py-turbomail/Makefile (props changed) head/mail/py-zope.sendmail/Makefile (props changed) head/mail/pymsgauth/Makefile (props changed) head/mail/pysieved/Makefile (props changed) head/mail/pyzor/Makefile (props changed) head/mail/qconfirm/Makefile (props changed) head/mail/qmail-activedir/Makefile (props changed) head/mail/qmail-auditor/Makefile (props changed) head/mail/qmail-autoresponder/Makefile (props changed) head/mail/qmail-conf/Makefile (props changed) head/mail/qmail-ldap/Makefile (props changed) head/mail/qmail-mysql/Makefile (props changed) head/mail/qmail-notify/Makefile (props changed) head/mail/qmail-qfilter/Makefile (props changed) head/mail/qmail-remove/Makefile (props changed) head/mail/qmail-spamcontrol/Makefile (props changed) head/mail/qmail-tls/Makefile (props changed) head/mail/qmailadmin/Makefile (props changed) head/mail/qmailmrtg7/Makefile (props changed) head/mail/qpopper/Makefile (props changed) head/mail/qscan/Makefile (props changed) head/mail/qsf/Makefile (props changed) head/mail/qsheff/Makefile (props changed) head/mail/qtools/Makefile (props changed) head/mail/queue-repair/Makefile (props changed) head/mail/rabl_client/Makefile (props changed) head/mail/rabl_server/Makefile (props changed) head/mail/raysfilter/Makefile (props changed) head/mail/rbl-milter/Makefile (props changed) head/mail/rblcheck/Makefile (props changed) head/mail/relay-ctrl/Makefile (props changed) head/mail/relaydb/Makefile (props changed) head/mail/reply-o-matic/Makefile (props changed) head/mail/rftp/Makefile (props changed) head/mail/ripmime/Makefile (props changed) head/mail/rmilter/Makefile (props changed) head/mail/roundcube-air/Makefile (props changed) head/mail/roundcube-contextmenu/Makefile (props changed) head/mail/roundcube-groupvice/Makefile (props changed) head/mail/roundcube-mobilecube/Makefile (props changed) head/mail/roundcube-mvision2/Makefile (props changed) head/mail/roundcube-thunderbird_labels/Makefile (props changed) head/mail/roundcube-umich/Makefile (props changed) head/mail/rss2email/Makefile (props changed) head/mail/ruby-rfilter/Makefile (props changed) head/mail/ruby-rmail/Makefile (props changed) head/mail/rubygem-qmail/Makefile (props changed) head/mail/rubygem-tmail/Makefile (props changed) head/mail/scam-backscatter/Makefile (props changed) head/mail/sccmilter/Makefile (props changed) head/mail/sendmail-sasl/Makefile (props changed) head/mail/sendmail/Makefile (props changed) head/mail/sendmail/bsd.milter.mk (props changed) head/mail/sendok/Makefile (props changed) head/mail/sentinel/Makefile (props changed) head/mail/serialmail/Makefile (props changed) head/mail/sid-milter/Makefile (props changed) head/mail/sigrot/Makefile (props changed) head/mail/simscan/Makefile (props changed) head/mail/sma/Makefile (props changed) head/mail/smail/Makefile (props changed) head/mail/smfsav/Makefile (props changed) head/mail/smtpfeed/Makefile (props changed) head/mail/smtpmail/Makefile (props changed) head/mail/smtprc/Makefile (props changed) head/mail/smtptrapd/Makefile (props changed) head/mail/softfail/Makefile (props changed) head/mail/sortmail/Makefile (props changed) head/mail/spamass-ixhash/Makefile (props changed) head/mail/spamass-rules/Makefile (props changed) head/mail/spambnc/Makefile (props changed) head/mail/spamdb-curses/Makefile (props changed) head/mail/spamdyke/Makefile (props changed) head/mail/spamguard/Makefile (props changed) head/mail/spamilter/Makefile (props changed) head/mail/spamoracle/Makefile (props changed) head/mail/spamprobe/Makefile (props changed) head/mail/spfval/Makefile (props changed) head/mail/squirrelmail-abook_import_export-plugin/Makefile (props changed) head/mail/squirrelmail-calendar_file_backend-plugin/Makefile (props changed) head/mail/squirrelmail-change_sqlpass-plugin/Makefile (props changed) head/mail/squirrelmail-check_quota-plugin/Makefile (props changed) head/mail/squirrelmail-login_auth-plugin/Makefile (props changed) head/mail/squirrelmail-plugins/Makefile (props changed) head/mail/squirrelmail-qmailadmin_login-plugin/Makefile (props changed) head/mail/squirrelmail-squirrel_logger-plugin/Makefile (props changed) head/mail/squirrelmail-translations/Makefile (props changed) head/mail/squirrelmail/bsd.squirrelmail.mk (props changed) head/mail/surblhost/Makefile (props changed) head/mail/svnmailer/Makefile (props changed) head/mail/teapop/Makefile (props changed) head/mail/tkrat2/Makefile (props changed) head/mail/tmda/Makefile (props changed) head/mail/uebimiau/Makefile (props changed) head/mail/usendmail/Makefile (props changed) head/mail/vacation/Makefile (props changed) head/mail/vbsfilter/Makefile (props changed) head/mail/vm-pop3d/Makefile (props changed) head/mail/vm/Makefile (props changed) head/mail/vpopmail/Makefile (props changed) head/mail/vpopmail/files/Makefile.in-noportdocs.patch (props changed) head/mail/vqadmin/Makefile (props changed) head/mail/vqregister/Makefile (props changed) head/mail/wanderlust-devel/Makefile (props changed) head/mail/wanderlust-emacs21/Makefile (props changed) head/mail/wanderlust-emacs22/Makefile (props changed) head/mail/wanderlust-xemacs21-mule/Makefile (props changed) head/mail/wanderlust/Makefile (props changed) head/mail/whoson/Makefile (props changed) head/mail/wmpop3/Makefile (props changed) head/mail/wmpop3lb/Makefile (props changed) head/mail/x-face-e21/Makefile (props changed) head/mail/xbuffy/Makefile (props changed) head/mail/xcite/Makefile (props changed) head/mail/xf-spf/Makefile (props changed) head/mail/xfaces/Makefile (props changed) head/mail/xfmail/Makefile (props changed) head/mail/xlbiff/Makefile (props changed) head/mail/xmail/Makefile (props changed) head/mail/xmailbox/Makefile (props changed) head/mail/xmailwatcher/Makefile (props changed) head/mail/xpbiff/Makefile (props changed) head/mail/xpi-dispmua/Makefile (props changed) head/math/GiNaC/Makefile (props changed) head/math/abs/Makefile (props changed) head/math/ann/Makefile (props changed) head/math/apc/Makefile (props changed) head/math/armadillo/Makefile (props changed) head/math/arpack++/Makefile (props changed) head/math/arpack/Makefile (props changed) head/math/atlas-devel/Makefile (props changed) head/math/atlas-devel/files/Makefile.test (props changed) head/math/bamg/Makefile (props changed) head/math/bargraph/Makefile (props changed) head/math/bihar/Makefile (props changed) head/math/blacs/Makefile (props changed) head/math/blas/Makefile (props changed) head/math/blitz++/Makefile (props changed) head/math/blocksolve95/Makefile (props changed) head/math/calc/Makefile (props changed) head/math/calcoo/Makefile (props changed) head/math/calctool/Makefile (props changed) head/math/cblas/Makefile (props changed) head/math/chaco/Makefile (props changed) head/math/clarence/Makefile (props changed) head/math/cln/Makefile (props changed) head/math/clp/Makefile (props changed) head/math/coinmp/Makefile (props changed) head/math/concorde/Makefile (props changed) head/math/crlibm/Makefile (props changed) head/math/cvc3/Makefile (props changed) head/math/dcdflib/Makefile (props changed) head/math/dcdflib/files/Makefile.lib (props changed) head/math/diehard/Makefile (props changed) head/math/e/Makefile (props changed) head/math/edenmath/Makefile (props changed) head/math/eispack/files/Makefile.lib (props changed) head/math/elmer-umfpack/Makefile (props changed) head/math/emacs-calc/Makefile (props changed) head/math/emc2/Makefile (props changed) head/math/entropy/Makefile (props changed) head/math/eval/Makefile (props changed) head/math/facile/Makefile (props changed) head/math/fftw-float/Makefile (props changed) head/math/fftw3-float/Makefile (props changed) head/math/fftw3-long/Makefile (props changed) head/math/fftw3-quad/Makefile (props changed) head/math/fpc-numlib/Makefile (props changed) head/math/freefem/Makefile (props changed) head/math/fxt/Makefile (props changed) head/math/gap/Makefile (props changed) head/math/gdcalc/Makefile (props changed) head/math/geonext/Makefile (props changed) head/math/gexpr/Makefile (props changed) head/math/ggobi/Makefile (props changed) head/math/givaro/Makefile (props changed) head/math/glm/Makefile (props changed) head/math/gmm++/Makefile (props changed) head/math/gmp-ecm/Makefile (props changed) head/math/gnubc/Makefile (props changed) head/math/gotoblas/Makefile (props changed) head/math/gracetmpl/Makefile (props changed) head/math/hs-NumInstances/Makefile (props changed) head/math/hs-categories/Makefile (props changed) head/math/hs-comonad-transformers/Makefile (props changed) head/math/hs-comonad/Makefile (props changed) head/math/hs-contravariant/Makefile (props changed) head/math/hs-data-lens-template/Makefile (props changed) head/math/hs-data-lens/Makefile (props changed) head/math/hs-distributive/Makefile (props changed) head/math/hs-erf/Makefile (props changed) head/math/hs-ieee754/Makefile (props changed) head/math/hs-math-functions/Makefile (props changed) head/math/hs-mwc-random/Makefile (props changed) head/math/hs-pointed/Makefile (props changed) head/math/hs-probability/Makefile (props changed) head/math/hs-semigroupoids/Makefile (props changed) head/math/hs-semigroups/Makefile (props changed) head/math/hs-statistics/Makefile (props changed) head/math/hs-vector-space/Makefile (props changed) head/math/igraph/Makefile (props changed) head/math/isabelle/Makefile (props changed) head/math/isabelle/files/Makefile (props changed) head/math/ised/Makefile (props changed) head/math/itl/Makefile (props changed) head/math/jakarta-commons-math/Makefile (props changed) head/math/jakarta-commons-math3/Makefile (props changed) head/math/jama/Makefile (props changed) head/math/javanns/Makefile (props changed) head/math/javaview/Makefile (props changed) head/math/jeuclid/Makefile (props changed) head/math/jlatexmath/Makefile (props changed) head/math/jsmath-fonts-sprite/Makefile (props changed) head/math/jsmath-fonts/Makefile (props changed) head/math/jsmath/Makefile (props changed) head/math/jts/Makefile (props changed) head/math/kktdirect/Makefile (props changed) head/math/lapack++/Makefile (props changed) head/math/lapack95/Makefile (props changed) head/math/lapacke/files/Makefile (props changed) head/math/lapacke/files/Makefile.lib (props changed) head/math/lapacke/files/Makefile.libtmg (props changed) head/math/laspack/Makefile (props changed) head/math/ldouble/Makefile (props changed) head/math/levmar/files/Makefile.demo (props changed) head/math/levmar/files/Makefile.lib (props changed) head/math/libR/Makefile (props changed) head/math/libRmath/Makefile (props changed) head/math/libflame/Makefile (props changed) head/math/libjbigi/Makefile (props changed) head/math/liblbfgs/Makefile (props changed) head/math/libneural/Makefile (props changed) head/math/libranlip/Makefile (props changed) head/math/libtsnnls/Makefile (props changed) head/math/linpack/Makefile (props changed) head/math/linpack/files/Makefile.lib (props changed) head/math/lll_spect/Makefile (props changed) head/math/lp_solve/Makefile (props changed) head/math/ltl/Makefile (props changed) head/math/ltl2ba/Makefile (props changed) head/math/lybniz/Makefile (props changed) head/math/mathomatic/Makefile (props changed) head/math/matrix/Makefile (props changed) head/math/moo/Makefile (props changed) head/math/mpc/Makefile (props changed) head/math/mpfr/Makefile (props changed) head/math/mprime/Makefile (props changed) head/math/mtl/Makefile (props changed) head/math/mtrxmath/Makefile (props changed) head/math/mumps-mpich/Makefile (props changed) head/math/mumps/Makefile (props changed) head/math/muparser/Makefile (props changed) head/math/nauty/Makefile (props changed) head/math/ndiff/Makefile (props changed) head/math/newmat/Makefile (props changed) head/math/ngraph/Makefile (props changed) head/math/numdiff/Makefile (props changed) head/math/nyh-hoc/Makefile (props changed) head/math/octave-forge-actuarial/Makefile (props changed) head/math/octave-forge-ad/Makefile (props changed) head/math/octave-forge-audio/Makefile (props changed) head/math/octave-forge-bim/Makefile (props changed) head/math/octave-forge-bioinfo/Makefile (props changed) head/math/octave-forge-civil-engineering/Makefile (props changed) head/math/octave-forge-communications/Makefile (props changed) head/math/octave-forge-control/Makefile (props changed) head/math/octave-forge-data-smoothing/Makefile (props changed) head/math/octave-forge-dataframe/Makefile (props changed) head/math/octave-forge-dicom/Makefile (props changed) head/math/octave-forge-econometrics/Makefile (props changed) head/math/octave-forge-engine/Makefile (props changed) head/math/octave-forge-fenv/Makefile (props changed) head/math/octave-forge-financial/Makefile (props changed) head/math/octave-forge-fits/Makefile (props changed) head/math/octave-forge-fl-core/Makefile (props changed) head/math/octave-forge-fpl/Makefile (props changed) head/math/octave-forge-fuzzy-logic-toolkit/Makefile (props changed) head/math/octave-forge-ga/Makefile (props changed) head/math/octave-forge-general/Makefile (props changed) head/math/octave-forge-generate_html/Makefile (props changed) head/math/octave-forge-geometry/Makefile (props changed) head/math/octave-forge-gnuplot/Makefile (props changed) head/math/octave-forge-ident/Makefile (props changed) head/math/octave-forge-image/Makefile (props changed) head/math/octave-forge-informationtheory/Makefile (props changed) head/math/octave-forge-integration/Makefile (props changed) head/math/octave-forge-io/Makefile (props changed) head/math/octave-forge-irsa/Makefile (props changed) head/math/octave-forge-linear-algebra/Makefile (props changed) head/math/octave-forge-mapping/Makefile (props changed) head/math/octave-forge-mechanics/Makefile (props changed) head/math/octave-forge-miscellaneous/Makefile (props changed) head/math/octave-forge-missing-functions/Makefile (props changed) head/math/octave-forge-msh/Makefile (props changed) head/math/octave-forge-multicore/Makefile (props changed) head/math/octave-forge-nan/Makefile (props changed) head/math/octave-forge-nlwing2/Makefile (props changed) head/math/octave-forge-nnet/Makefile (props changed) head/math/octave-forge-nurbs/Makefile (props changed) head/math/octave-forge-ocs/Makefile (props changed) head/math/octave-forge-oct2mat/Makefile (props changed) head/math/octave-forge-octcdf/Makefile (props changed) head/math/octave-forge-octclip/Makefile (props changed) head/math/octave-forge-octgpr/Makefile (props changed) head/math/octave-forge-octproj/Makefile (props changed) head/math/octave-forge-odebvp/Makefile (props changed) head/math/octave-forge-odepkg/Makefile (props changed) head/math/octave-forge-optim/Makefile (props changed) head/math/octave-forge-optiminterp/Makefile (props changed) head/math/octave-forge-outliers/Makefile (props changed) head/math/octave-forge-parallel/Makefile (props changed) head/math/octave-forge-pdb/Makefile (props changed) head/math/octave-forge-plot/Makefile (props changed) head/math/octave-forge-pt_br/Makefile (props changed) head/math/octave-forge-quaternion/Makefile (props changed) head/math/octave-forge-queueing/Makefile (props changed) head/math/octave-forge-secs1d/Makefile (props changed) head/math/octave-forge-secs2d/Makefile (props changed) head/math/octave-forge-secs3d/Makefile (props changed) head/math/octave-forge-signal/Makefile (props changed) head/math/octave-forge-simp/Makefile (props changed) head/math/octave-forge-sockets/Makefile (props changed) head/math/octave-forge-specfun/Makefile (props changed) head/math/octave-forge-special-matrix/Makefile (props changed) head/math/octave-forge-spline-gcvspl/Makefile (props changed) head/math/octave-forge-splines/Makefile (props changed) head/math/octave-forge-statistics/Makefile (props changed) head/math/octave-forge-strings/Makefile (props changed) head/math/octave-forge-struct/Makefile (props changed) head/math/octave-forge-symband/Makefile (props changed) head/math/octave-forge-symbolic/Makefile (props changed) head/math/octave-forge-tcl-octave/Makefile (props changed) head/math/octave-forge-tsa/Makefile (props changed) head/math/octave-forge-video/Makefile (props changed) head/math/octave-forge-xraylib/Makefile (props changed) head/math/octave-forge-zenity/Makefile (props changed) head/math/octave-forge/Makefile (props changed) head/math/pari/Makefile (props changed) head/math/parmgridgen/Makefile (props changed) head/math/pecl-big_int/Makefile (props changed) head/math/pecl-bitset/Makefile (props changed) head/math/php5-bcmath/Makefile (props changed) head/math/php5-gmp/Makefile (props changed) head/math/php52-bcmath/Makefile (props changed) head/math/php52-gmp/Makefile (props changed) head/math/php55-bcmath/Makefile (props changed) head/math/php55-gmp/Makefile (props changed) head/math/physcalc/Makefile (props changed) head/math/plman/Makefile (props changed) head/math/ploticus-nox11/Makefile (props changed) head/math/ploticus/Makefile (props changed) head/math/prng/Makefile (props changed) head/math/proofgeneral/Makefile (props changed) head/math/pure-mpfr/Makefile (props changed) head/math/pure-rational/Makefile (props changed) head/math/py-apgl/Makefile (props changed) head/math/py-basemap-data/Makefile (props changed) head/math/py-basemap/Makefile (props changed) head/math/py-bitvector/Makefile (props changed) head/math/py-fpconst/Makefile (props changed) head/math/py-gato/Makefile (props changed) head/math/py-gmpy/Makefile (props changed) head/math/py-gnuplot/Makefile (props changed) head/math/py-igraph/Makefile (props changed) head/math/py-mathdom/Makefile (props changed) head/math/py-mpmath/Makefile (props changed) head/math/py-networkx/Makefile (props changed) head/math/py-numarray/Makefile (props changed) head/math/py-numeric/Makefile (props changed) head/math/py-nzmath/Makefile (props changed) head/math/py-plastex/Makefile (props changed) head/math/py-probstat/Makefile (props changed) head/math/py-pybloom/Makefile (props changed) head/math/py-pymc/Makefile (props changed) head/math/py-roman/Makefile (props changed) head/math/py-scientific/Makefile (props changed) head/math/py-svgmath/Makefile (props changed) head/math/py-sympy/Makefile (props changed) head/math/qd/Makefile (props changed) head/math/qhull5/Makefile (props changed) head/math/randlib/Makefile (props changed) head/math/randlib/files/Makefile.lib (props changed) head/math/rapid/Makefile (props changed) head/math/reed-solomon/Makefile (props changed) head/math/rngstreams/Makefile (props changed) head/math/ruby-algebra/Makefile (props changed) head/math/ruby-fftw3/Makefile (props changed) head/math/ruby-gnuplot/Makefile (props changed) head/math/ruby-narray/Makefile (props changed) head/math/ruby-numru_misc/Makefile (props changed) head/math/ruby-numru_units/Makefile (props changed) head/math/sc/Makefile (props changed) head/math/scalapack/Makefile (props changed) head/math/scalapack/files/Makefile (props changed) head/math/sdpa-gmp/Makefile (props changed) head/math/sdpa/Makefile (props changed) head/math/sdpara/Makefile (props changed) head/math/sedumi/Makefile (props changed) head/math/sfft/Makefile (props changed) head/math/simd-viterbi/Makefile (props changed) head/math/solitaire/Makefile (props changed) head/math/spar/Makefile (props changed) head/math/spooles-mpich/Makefile (props changed) head/math/spooles/Makefile (props changed) head/math/stp/Makefile (props changed) head/math/suitesparse/Makefile (props changed) head/math/superlu/Makefile (props changed) head/math/superlu_mt/Makefile (props changed) head/math/surf/Makefile (props changed) head/math/taucs/Makefile (props changed) head/math/testu01/Makefile (props changed) head/math/timbl/Makefile (props changed) head/math/topaz/Makefile (props changed) head/math/triangle/Makefile (props changed) head/math/trlan/Makefile (props changed) head/math/truthtable/Makefile (props changed) head/math/tvmet/Makefile (props changed) head/math/umatrix/Makefile (props changed) head/math/unixstat/Makefile (props changed) head/math/unuran/Makefile (props changed) head/math/wcalc/Makefile (props changed) head/math/wingz/Makefile (props changed) head/math/wingz3/Makefile (props changed) head/math/x12arima/Makefile (props changed) head/math/xblas/Makefile (props changed) head/math/xgobi/Makefile (props changed) head/math/xgraph/Makefile (props changed) head/math/xlapack/Makefile (props changed) head/math/xldlas/Makefile (props changed) head/math/xppaut/Makefile (props changed) head/misc/achievo/Makefile (props changed) head/misc/amanda-client/Makefile (props changed) head/misc/amanda25-client/Makefile (props changed) head/misc/amanda26-client/Makefile (props changed) head/misc/amanda32-client/Makefile (props changed) head/misc/amfm/Makefile (props changed) head/misc/asbutton/Makefile (props changed) head/misc/asr-manpages/Makefile (props changed) head/misc/bb/Makefile (props changed) head/misc/bbjd/Makefile (props changed) head/misc/bdelta/Makefile (props changed) head/misc/bestfit/Makefile (props changed) head/misc/birthday/Makefile (props changed) head/misc/bogosort/Makefile (props changed) head/misc/bottlerocket/Makefile (props changed) head/misc/boxquote.el/Makefile (props changed) head/misc/brs/Makefile (props changed) head/misc/buffer/Makefile (props changed) head/misc/c-hey/Makefile (props changed) head/misc/cave/Makefile (props changed) head/misc/chef/Makefile (props changed) head/misc/clex/Makefile (props changed) head/misc/cmatrix/Makefile (props changed) head/misc/color-theme.el/Makefile (props changed) head/misc/compat4x/Makefile (props changed) head/misc/compat5x/Makefile (props changed) head/misc/compat6x/Makefile (props changed) head/misc/countrycodes/Makefile (props changed) head/misc/cpuid/Makefile (props changed) head/misc/cpuid/files/Makefile.bsd (props changed) head/misc/crosspad/Makefile (props changed) head/misc/cuecat/Makefile (props changed) head/misc/cwish/Makefile (props changed) head/misc/dahdi-kmod/Makefile (props changed) head/misc/dahdi-kmod26/Makefile (props changed) head/misc/dahdi/Makefile (props changed) head/misc/ddate/Makefile (props changed) head/misc/deco/Makefile (props changed) head/misc/delay/Makefile (props changed) head/misc/detachtty/Makefile (props changed) head/misc/digitemp/Makefile (props changed) head/misc/display/Makefile (props changed) head/misc/dnetc/Makefile (props changed) head/misc/dphys-config/Makefile (props changed) head/misc/dtach/Makefile (props changed) head/misc/dvorakng/Makefile (props changed) head/misc/elscreen/Makefile (props changed) head/misc/estic/Makefile (props changed) head/misc/felis/Makefile (props changed) head/misc/figlet/Makefile (props changed) head/misc/firestring/Makefile (props changed) head/misc/floatator/Makefile (props changed) head/misc/fortune-mod-bible/Makefile (props changed) head/misc/fortune-mod-bofh/Makefile (props changed) head/misc/fortune-mod-culmea-culmilor/Makefile (props changed) head/misc/fortune-mod-culmea-culmilor/Makefile.fortune (props changed) head/misc/fortune-mod-ferengi_rules_of_acquisition/Makefile (props changed) head/misc/fortuneit/Makefile (props changed) head/misc/fpc-chm/Makefile (props changed) head/misc/freebsd-doc-all/Makefile (props changed) head/misc/freebsd-doc-bn/Makefile (props changed) head/misc/freebsd-doc-da/Makefile (props changed) head/misc/freebsd-doc-de/Makefile (props changed) head/misc/freebsd-doc-el/Makefile (props changed) head/misc/freebsd-doc-en/Makefile (props changed) head/misc/freebsd-doc-es/Makefile (props changed) head/misc/freebsd-doc-fr/Makefile (props changed) head/misc/freebsd-doc-hu/Makefile (props changed) head/misc/freebsd-doc-it/Makefile (props changed) head/misc/freebsd-doc-ja/Makefile (props changed) head/misc/freebsd-doc-mn/Makefile (props changed) head/misc/freebsd-doc-nl/Makefile (props changed) head/misc/freebsd-doc-pl/Makefile (props changed) head/misc/freebsd-doc-pt/Makefile (props changed) head/misc/freebsd-doc-ru/Makefile (props changed) head/misc/freebsd-doc-sr/Makefile (props changed) head/misc/freebsd-doc-tr/Makefile (props changed) head/misc/freebsd-doc-zh_cn/Makefile (props changed) head/misc/freebsd-doc-zh_tw/Makefile (props changed) head/misc/freecode-submit/Makefile (props changed) head/misc/freeguide/Makefile (props changed) head/misc/ftdi-eeprom/Makefile (props changed) head/misc/fxload/Makefile (props changed) head/misc/geekcode/Makefile (props changed) head/misc/getopt/Makefile (props changed) head/misc/gimp-help-en/Makefile (props changed) head/misc/gimp-help-es/Makefile (props changed) head/misc/gimp-help-it/Makefile (props changed) head/misc/gimp-help-nl/Makefile (props changed) head/misc/gimp-help-nn/Makefile (props changed) head/misc/gimp-help-sv/Makefile (props changed) head/misc/gkrellm-gamma/Makefile (props changed) head/misc/gkrellm-xkb/Makefile (props changed) head/misc/gkrellmbgchg2/Makefile (props changed) head/misc/gkrellmfmonitor/Makefile (props changed) head/misc/gkrellmlaunch/Makefile (props changed) head/misc/gkrellmlaunch2/Makefile (props changed) head/misc/gkrellshoot2/Makefile (props changed) head/misc/gkx86info2/Makefile (props changed) head/misc/gnome-devel-docs/Makefile (props changed) head/misc/gnome-icon-theme-extras/Makefile (props changed) head/misc/gnome-osd/Makefile (props changed) head/misc/gnome-user-docs/Makefile (props changed) head/misc/gnome2-reference/Makefile (props changed) head/misc/gnome2-reference/Makefile.inc (props changed) head/misc/gnu-watch/Makefile (props changed) head/misc/gnuit/Makefile (props changed) head/misc/gnustep-examples/Makefile (props changed) head/misc/gone/Makefile (props changed) head/misc/granulate/Makefile (props changed) head/misc/gregexp/Makefile (props changed) head/misc/gtkfind/Makefile (props changed) head/misc/gwhich/Makefile (props changed) head/misc/hb/Makefile (props changed) head/misc/heyu2/Makefile (props changed) head/misc/hicolor-icon-theme/Makefile (props changed) head/misc/histring/Makefile (props changed) head/misc/hotkeys/Makefile (props changed) head/misc/hulgalugha/Makefile (props changed) head/misc/imerge/Makefile (props changed) head/misc/inplace/Makefile (props changed) head/misc/ipa_conv/Makefile (props changed) head/misc/iselect/Makefile (props changed) head/misc/jargon/Makefile (props changed) head/misc/jbidwatcher/Makefile (props changed) head/misc/jive/Makefile (props changed) head/misc/kbdscan/Makefile (props changed) head/misc/kde-xdg-env/Makefile (props changed) head/misc/kde4-l10n-da/Makefile.man (props changed) head/misc/kde4-l10n-el/Makefile.man (props changed) head/misc/kde4-l10n-lt/Makefile.man (props changed) head/misc/latex-mk/Makefile (props changed) head/misc/lc/Makefile (props changed) head/misc/libhome/Makefile (props changed) head/misc/libpri/Makefile (props changed) head/misc/libsupertone/Makefile (props changed) head/misc/libutf/Makefile (props changed) head/misc/localedata/Makefile (props changed) head/misc/logsurfer+/Makefile (props changed) head/misc/loop/Makefile (props changed) head/misc/lr/Makefile (props changed) head/misc/lv/Makefile (props changed) head/misc/magicpoint/Makefile (props changed) head/misc/man.el/Makefile (props changed) head/misc/mbuffer/Makefile (props changed) head/misc/metalink-checker/Makefile (props changed) head/misc/mmv/Makefile (props changed) head/misc/mshell/Makefile (props changed) head/misc/mtail/Makefile (props changed) head/misc/mtx/Makefile (props changed) head/misc/nagios-base-logos/Makefile (props changed) head/misc/najitool/Makefile (props changed) head/misc/newer/Makefile (props changed) head/misc/nsf/Makefile (props changed) head/misc/numchar/Makefile (props changed) head/misc/opencyc/Makefile (props changed) head/misc/openr2/Makefile (props changed) head/misc/orville-write/Makefile (props changed) head/misc/otter/Makefile (props changed) head/misc/pantry/Makefile (props changed) head/misc/pastebinit/Makefile (props changed) head/misc/pauker/Makefile (props changed) head/misc/pdfmap/Makefile (props changed) head/misc/php5-calendar/Makefile (props changed) head/misc/php52-calendar/Makefile (props changed) head/misc/php55-calendar/Makefile (props changed) head/misc/phraze/Makefile (props changed) head/misc/pipe/Makefile (props changed) head/misc/posixtestsuite/Makefile (props changed) head/misc/projectionlib/Makefile (props changed) head/misc/projectionlib/files/Makefile (props changed) head/misc/proxyper/Makefile (props changed) head/misc/py-YABT/Makefile (props changed) head/misc/py-osd/Makefile (props changed) head/misc/py-pexpect/Makefile (props changed) head/misc/py-progressbar/Makefile (props changed) head/misc/pylize/Makefile (props changed) head/misc/pypanda/Makefile (props changed) head/misc/quick-lounge-applet/Makefile (props changed) head/misc/quranref/Makefile (props changed) head/misc/ree/Makefile (props changed) head/misc/rfc/Makefile (props changed) head/misc/ringtonetools/Makefile (props changed) head/misc/rname/Makefile (props changed) head/misc/rpl/Makefile (props changed) head/misc/rtfm/Makefile (props changed) head/misc/ruby-progressbar/Makefile (props changed) head/misc/ruby-vpim/Makefile (props changed) head/misc/seq2/Makefile (props changed) head/misc/shc/Makefile (props changed) head/misc/shuffle-db/Makefile (props changed) head/misc/shuffle/Makefile (props changed) head/misc/skyutils/Makefile (props changed) head/misc/sls/Makefile (props changed) head/misc/smssend/Makefile (props changed) head/misc/stan/Makefile (props changed) head/misc/susv2/Makefile (props changed) head/misc/susv3/Makefile (props changed) head/misc/table.el/Makefile (props changed) head/misc/talkfilters/Makefile (props changed) head/misc/tcb/Makefile (props changed) head/misc/team/Makefile (props changed) head/misc/telbook/Makefile (props changed) head/misc/tempcontrol/Makefile (props changed) head/misc/termatrix/Makefile (props changed) head/misc/teseq/Makefile (props changed) head/misc/tet/Makefile (props changed) head/misc/toilet/Makefile (props changed) head/misc/tpp/Makefile (props changed) head/misc/ttyrec/Makefile (props changed) head/misc/txt2regex/Makefile (props changed) head/misc/typetrainer/Makefile (props changed) head/misc/uf-view/Makefile (props changed) head/misc/uk-phone/Makefile (props changed) head/misc/uk-postcodes/Makefile (props changed) head/misc/unclutter/Makefile (props changed) head/misc/us-zipcodes/Makefile (props changed) head/misc/usbrh-libusb/Makefile (props changed) head/misc/utftools/Makefile (props changed) head/misc/vera/Makefile (props changed) head/misc/viz/Makefile (props changed) head/misc/whichman/Makefile (props changed) head/misc/window/Makefile (props changed) head/misc/wminfo/Makefile (props changed) head/misc/wmjulia/Makefile (props changed) head/misc/wmpal/Makefile (props changed) head/misc/wmtunlo/Makefile (props changed) head/misc/wmwork/Makefile (props changed) head/misc/wotsap/Makefile (props changed) head/misc/xbiso/Makefile (props changed) head/misc/xfce4-artwork/Makefile (props changed) head/misc/xgas/Makefile (props changed) head/misc/xless/Makefile (props changed) head/misc/xmonad-log-applet/Makefile (props changed) head/misc/xosd/Makefile (props changed) head/misc/xsw/Makefile (props changed) head/misc/xtail/Makefile (props changed) head/misc/xtar/Makefile (props changed) head/misc/xtypo/Makefile (props changed) head/misc/zoneinfo/Makefile (props changed) head/multimedia/ab25/Makefile (props changed) head/multimedia/atomicparsley/Makefile (props changed) head/multimedia/audiopreview/Makefile (props changed) head/multimedia/avbin/Makefile (props changed) head/multimedia/avinfo/Makefile (props changed) head/multimedia/bsdbktr_tvtune/Makefile (props changed) head/multimedia/camserv/Makefile (props changed) head/multimedia/castpodder/Makefile (props changed) head/multimedia/clive1/Makefile (props changed) head/multimedia/clutter-gst/Makefile (props changed) head/multimedia/dtv/Makefile (props changed) head/multimedia/dumpmpeg/Makefile (props changed) head/multimedia/dv2jpg/Makefile (props changed) head/multimedia/dv2sub/Makefile (props changed) head/multimedia/dvbsnoop/Makefile (props changed) head/multimedia/dvts/Makefile (props changed) head/multimedia/emotion/Makefile (props changed) head/multimedia/flvmeta/Makefile (props changed) head/multimedia/flvstreamer/Makefile (props changed) head/multimedia/flvtool++/Makefile (props changed) head/multimedia/fxtv/Makefile (props changed) head/multimedia/gcfilms/Makefile (props changed) head/multimedia/gdialog/Makefile (props changed) head/multimedia/ggrab/Makefile (props changed) head/multimedia/gpac-mp4box/Makefile (props changed) head/multimedia/gst123/Makefile (props changed) head/multimedia/gstreamer-ffmpeg/Makefile (props changed) head/multimedia/gstreamer-plugins-annodex/Makefile (props changed) head/multimedia/gstreamer-plugins-buzztard/Makefile (props changed) head/multimedia/gstreamer-plugins-bz2/Makefile (props changed) head/multimedia/gstreamer-plugins-core/Makefile (props changed) head/multimedia/gstreamer-plugins-dts/Makefile (props changed) head/multimedia/gstreamer-plugins-dv/Makefile (props changed) head/multimedia/gstreamer-plugins-dvd/Makefile (props changed) head/multimedia/gstreamer-plugins-fluendo-mpegdemux/Makefile (props changed) head/multimedia/gstreamer-plugins-gnonlin/Makefile (props changed) head/multimedia/gstreamer-plugins-good/Makefile (props changed) head/multimedia/gstreamer-plugins-mpeg2dec/Makefile (props changed) head/multimedia/gstreamer-plugins-mpeg2enc/Makefile (props changed) head/multimedia/gstreamer-plugins-resindvd/Makefile (props changed) head/multimedia/gstreamer-plugins-schroedinger/Makefile (props changed) head/multimedia/gstreamer-plugins-theora/Makefile (props changed) head/multimedia/gstreamer-plugins-ugly/Makefile (props changed) head/multimedia/gstreamer-plugins-v4l2/Makefile (props changed) head/multimedia/gstreamer-plugins-vdpau/Makefile (props changed) head/multimedia/gstreamer-plugins-vp8/Makefile (props changed) head/multimedia/gstreamer-plugins-xvid/Makefile (props changed) head/multimedia/gstreamermm/Makefile (props changed) head/multimedia/gxanim/Makefile (props changed) head/multimedia/handbrake/Makefile (props changed) head/multimedia/hs-gstreamer/Makefile (props changed) head/multimedia/imagination/Makefile (props changed) head/multimedia/iriverter/Makefile (props changed) head/multimedia/iso2mkv/Makefile (props changed) head/multimedia/libass/Makefile (props changed) head/multimedia/libdc1394/Makefile (props changed) head/multimedia/libdv/Makefile (props changed) head/multimedia/libdvbpsi/Makefile (props changed) head/multimedia/libdvdcss/Makefile (props changed) head/multimedia/libfame/Makefile (props changed) head/multimedia/libkate/Makefile (props changed) head/multimedia/libmovtar/Makefile (props changed) head/multimedia/libmpeg3/Makefile (props changed) head/multimedia/libquicktime-lame/Makefile (props changed) head/multimedia/librtmp/Makefile (props changed) head/multimedia/libsmacker/Makefile (props changed) head/multimedia/libtuner/Makefile (props changed) head/multimedia/libxspf/Makefile (props changed) head/multimedia/linux-f10-libtheora/Makefile (props changed) head/multimedia/linux-f10-libv4l/Makefile (props changed) head/multimedia/linux-huludesktop/Makefile (props changed) head/multimedia/linux-realplayer/Makefile (props changed) head/multimedia/linux-xmovie/Makefile (props changed) head/multimedia/linux_dvbwrapper-kmod/files/Makefile (props changed) head/multimedia/linux_v4l2wrapper-kmod/Makefile (props changed) head/multimedia/linux_v4l2wrapper-kmod/Makefile.sub (props changed) head/multimedia/lsdvd/Makefile (props changed) head/multimedia/lxdvdrip/Makefile (props changed) head/multimedia/m2tstoavi/Makefile (props changed) head/multimedia/m2vrequantiser/Makefile (props changed) head/multimedia/mimms/Makefile (props changed) head/multimedia/mkxvcd/Makefile (props changed) head/multimedia/mmpython/Makefile (props changed) head/multimedia/mmsclient/Makefile (props changed) head/multimedia/mp4v2/Makefile (props changed) head/multimedia/mpeg2play/Makefile (props changed) head/multimedia/mpeg_encode/Makefile (props changed) head/multimedia/mpeg_play/Makefile (props changed) head/multimedia/mpeg_stat/Makefile (props changed) head/multimedia/mpgtx/Makefile (props changed) head/multimedia/mplayer-fonts/Makefile (props changed) head/multimedia/mplayer-skins/Makefile (props changed) head/multimedia/mplayer-skins/Makefile.options (props changed) head/multimedia/mplayer-skins/Makefile.skins (props changed) head/multimedia/mplex/Makefile (props changed) head/multimedia/msdl/Makefile (props changed) head/multimedia/nxtvepg/Makefile (props changed) head/multimedia/openmovieeditor/Makefile (props changed) head/multimedia/openquicktime/Makefile (props changed) head/multimedia/oqtencoder/Makefile (props changed) head/multimedia/oqtplayer/Makefile (props changed) head/multimedia/p5-GStreamer/Makefile (props changed) head/multimedia/pitivi/Makefile (props changed) head/multimedia/playd/Makefile (props changed) head/multimedia/poe/Makefile (props changed) head/multimedia/ppm2fli/Makefile (props changed) head/multimedia/ptx-kmod/Makefile (props changed) head/multimedia/pvr250/Makefile (props changed) head/multimedia/pvrxxx/Makefile (props changed) head/multimedia/pwcview/Makefile (props changed) head/multimedia/py-gstreamer/Makefile (props changed) head/multimedia/py-kaa-base/Makefile (props changed) head/multimedia/py-kaa-imlib2/Makefile (props changed) head/multimedia/py-kaa-metadata/Makefile (props changed) head/multimedia/py-periscope/Makefile (props changed) head/multimedia/py-pybmp/Makefile (props changed) head/multimedia/py-tvnamer/Makefile (props changed) head/multimedia/qt-faststart/Makefile (props changed) head/multimedia/recmpeg/Makefile (props changed) head/multimedia/recordmydesktop/Makefile (props changed) head/multimedia/replex/Makefile (props changed) head/multimedia/rtmpdump/Makefile (props changed) head/multimedia/shell-fm/Makefile (props changed) head/multimedia/smpeg/Makefile (props changed) head/multimedia/smplayer-themes/Makefile (props changed) head/multimedia/spigot/Makefile (props changed) head/multimedia/spook/Makefile (props changed) head/multimedia/streamanalyze/Makefile (props changed) head/multimedia/subtitleeditor/Makefile (props changed) head/multimedia/subtools/Makefile (props changed) head/multimedia/szap-s2/Makefile (props changed) head/multimedia/tcmplex-panteltje/Makefile (props changed) head/multimedia/tivodecode/Makefile (props changed) head/multimedia/tunapie/Makefile (props changed) head/multimedia/v4l_compat/Makefile (props changed) head/multimedia/vcdgear/Makefile (props changed) head/multimedia/vcdimager/Makefile (props changed) head/multimedia/vcdpad/Makefile (props changed) head/multimedia/vodcatcher/Makefile (props changed) head/multimedia/win32-codecs/Makefile (props changed) head/multimedia/xanim/Makefile (props changed) head/multimedia/xmms-skins-huge/Makefile (props changed) head/multimedia/xmms-skins/Makefile (props changed) head/multimedia/xmms-weasel/Makefile (props changed) head/multimedia/xporthdmv/Makefile (props changed) head/multimedia/xtheater/Makefile (props changed) head/multimedia/xvid/Makefile (props changed) head/multimedia/y4mscaler/Makefile (props changed) head/net-im/ari-yahoo/Makefile (props changed) head/net-im/bsflite/Makefile (props changed) head/net-im/cicquin/Makefile (props changed) head/net-im/cjc/Makefile (props changed) head/net-im/convey/Makefile (props changed) head/net-im/echat/Makefile (props changed) head/net-im/finch/Makefile (props changed) head/net-im/fugu/Makefile (props changed) head/net-im/gtkyahoo/Makefile (props changed) head/net-im/gyach/Makefile (props changed) head/net-im/icmpchat/Makefile (props changed) head/net-im/icqlib/Makefile (props changed) head/net-im/iserverd/Makefile (props changed) head/net-im/jabber-pyaim/Makefile (props changed) head/net-im/jabber-pyicq/Makefile (props changed) head/net-im/jabber.el/Makefile (props changed) head/net-im/kde-telepathy/Makefile (props changed) head/net-im/libyahoo2/Makefile (props changed) head/net-im/licq/Makefile.inc (props changed) head/net-im/linpopup/Makefile (props changed) head/net-im/mbpurple/Makefile (props changed) head/net-im/mu-conference/Makefile (props changed) head/net-im/naim/Makefile (props changed) head/net-im/papyon/Makefile (props changed) head/net-im/pebrot/Makefile (props changed) head/net-im/pidgin-facebookchat/Makefile (props changed) head/net-im/pidgin-latex/Makefile (props changed) head/net-im/pidgin-manualsize/Makefile (props changed) head/net-im/pidgin-osd/Makefile (props changed) head/net-im/pidgin-privacy-please/Makefile (props changed) head/net-im/pidgin-rhythmbox/Makefile (props changed) head/net-im/pidgin-twitter/Makefile (props changed) head/net-im/pidgin/Makefile (props changed) head/net-im/prosody/Makefile (props changed) head/net-im/py-jabber/Makefile (props changed) head/net-im/py-jabberbot/Makefile (props changed) head/net-im/py-pyxmpp/Makefile (props changed) head/net-im/py-xmpppy-irc/Makefile (props changed) head/net-im/py-xmpppy-yahoo/Makefile (props changed) head/net-im/py-xmpppy/Makefile (props changed) head/net-im/qq/Makefile (props changed) head/net-im/skype-devel/Makefile (props changed) head/net-im/skype/Makefile (props changed) head/net-im/telepathy-butterfly/Makefile (props changed) head/net-im/telepathy-python/Makefile (props changed) head/net-im/tkabber-plugins/Makefile (props changed) head/net-im/vqcc-gtk/Makefile (props changed) head/net-mgmt/aggregate/Makefile (props changed) head/net-mgmt/airport/Makefile (props changed) head/net-mgmt/angst/Makefile (props changed) head/net-mgmt/arpalert/Makefile (props changed) head/net-mgmt/arts++/Makefile (props changed) head/net-mgmt/bgpq/Makefile (props changed) head/net-mgmt/braa/Makefile (props changed) head/net-mgmt/bsd-airtools/Makefile (props changed) head/net-mgmt/bsnmp-jails/Makefile (props changed) head/net-mgmt/bsnmp-ucd/Makefile (props changed) head/net-mgmt/bsnmptools/Makefile (props changed) head/net-mgmt/bwm-ng/Makefile (props changed) head/net-mgmt/cacti-spine/Makefile (props changed) head/net-mgmt/cdpd/Makefile (props changed) head/net-mgmt/cdpr/Makefile (props changed) head/net-mgmt/cflowd/Makefile (props changed) head/net-mgmt/check_snmp_pkgvuln/Makefile (props changed) head/net-mgmt/chillispot/Makefile (props changed) head/net-mgmt/cidr/Makefile (props changed) head/net-mgmt/cisco_conf/Makefile (props changed) head/net-mgmt/ciscoconf/Makefile (props changed) head/net-mgmt/confregdecode/Makefile (props changed) head/net-mgmt/cowpatty/Makefile (props changed) head/net-mgmt/darkstat/Makefile (props changed) head/net-mgmt/docsis/Makefile (props changed) head/net-mgmt/driftnet/Makefile (props changed) head/net-mgmt/ehnt/Makefile (props changed) head/net-mgmt/ezradius/Makefile (props changed) head/net-mgmt/fprobe/Makefile (props changed) head/net-mgmt/glpi-plugins-fusioninventory-server/Makefile (props changed) head/net-mgmt/glpi-plugins-tracker-server/Makefile (props changed) head/net-mgmt/gps/Makefile (props changed) head/net-mgmt/grepip/Makefile (props changed) head/net-mgmt/hastmon/Makefile (props changed) head/net-mgmt/icmpmonitor/Makefile (props changed) head/net-mgmt/icmpquery/Makefile (props changed) head/net-mgmt/icmpquery/files/Makefile (props changed) head/net-mgmt/iftop/Makefile (props changed) head/net-mgmt/ipacctd/Makefile (props changed) head/net-mgmt/ipaudit/Makefile (props changed) head/net-mgmt/ipcad/Makefile (props changed) head/net-mgmt/ipfm/Makefile (props changed) head/net-mgmt/ipv6mon/Makefile (props changed) head/net-mgmt/lanmap/Makefile (props changed) head/net-mgmt/libsmi/Makefile (props changed) head/net-mgmt/mbrowse/Makefile (props changed) head/net-mgmt/mk-livestatus/Makefile (props changed) head/net-mgmt/mtrace/Makefile (props changed) head/net-mgmt/nagcon/Makefile (props changed) head/net-mgmt/nagios-check_cpu_usage/Makefile (props changed) head/net-mgmt/nagios-check_hdd_health/Makefile (props changed) head/net-mgmt/nagios-check_kumofs/Makefile (props changed) head/net-mgmt/nagios-check_memcached_paranoid/Makefile (props changed) head/net-mgmt/nagios-check_ports/Makefile (props changed) head/net-mgmt/nagios-check_smartmon/Makefile (props changed) head/net-mgmt/nagios-check_tftp/Makefile (props changed) head/net-mgmt/nagstamon/Makefile (props changed) head/net-mgmt/nagtail/Makefile (props changed) head/net-mgmt/nat/Makefile (props changed) head/net-mgmt/nefu/Makefile (props changed) head/net-mgmt/netams-front/Makefile (props changed) head/net-mgmt/netmask/Makefile (props changed) head/net-mgmt/netmond/Makefile (props changed) head/net-mgmt/ng_ipacct/Makefile (props changed) head/net-mgmt/nitpicker/Makefile (props changed) head/net-mgmt/nocol/Makefile (props changed) head/net-mgmt/nsca-client/Makefile (props changed) head/net-mgmt/nsca27-client/Makefile (props changed) head/net-mgmt/openlldp/Makefile (props changed) head/net-mgmt/packit/Makefile (props changed) head/net-mgmt/pads/Makefile (props changed) head/net-mgmt/pandorafms_console/Makefile (props changed) head/net-mgmt/pandorafms_server/bsd.pandora.mk (props changed) head/net-mgmt/percona-monitoring-plugins/Makefile (props changed) head/net-mgmt/php5-snmp/Makefile (props changed) head/net-mgmt/php52-snmp/Makefile (props changed) head/net-mgmt/php55-snmp/Makefile (props changed) head/net-mgmt/phpip/Makefile (props changed) head/net-mgmt/phpweathermap/Makefile (props changed) head/net-mgmt/pixilate/Makefile (props changed) head/net-mgmt/portmon/Makefile (props changed) head/net-mgmt/py-flowtools/Makefile (props changed) head/net-mgmt/py-ipy/Makefile (props changed) head/net-mgmt/py-snmp4-apps/Makefile (props changed) head/net-mgmt/py-snmp4-mibs/Makefile (props changed) head/net-mgmt/py-snmp4/Makefile (props changed) head/net-mgmt/py-yapsnmp/Makefile (props changed) head/net-mgmt/rate/Makefile (props changed) head/net-mgmt/rcpd/Makefile (props changed) head/net-mgmt/rotorouter/Makefile (props changed) head/net-mgmt/rrdbot/Makefile (props changed) head/net-mgmt/satellite/Makefile (props changed) head/net-mgmt/scdp/Makefile (props changed) head/net-mgmt/scli/Makefile (props changed) head/net-mgmt/sdig/Makefile (props changed) head/net-mgmt/send/Makefile (props changed) head/net-mgmt/sing/Makefile (props changed) head/net-mgmt/sjitter/Makefile (props changed) head/net-mgmt/slate/Makefile (props changed) head/net-mgmt/snmp++/Makefile (props changed) head/net-mgmt/snmp++/files/Makefile.FreeBSD (props changed) head/net-mgmt/snmp4nagios/Makefile (props changed) head/net-mgmt/ssgless/Makefile (props changed) head/net-mgmt/subcalc/Makefile (props changed) head/net-mgmt/sysmon/Makefile (props changed) head/net-mgmt/tcpreplay/Makefile (props changed) head/net-mgmt/tcptrack/Makefile (props changed) head/net-mgmt/wdiag/Makefile (props changed) head/net-mgmt/weplab/Makefile (props changed) head/net-mgmt/whatmask/Makefile (props changed) head/net-mgmt/xymon-client/files/Makefile (props changed) head/net-mgmt/xymon-server/files/Makefile (props changed) head/net-mgmt/yabm/Makefile (props changed) head/net-mgmt/zenoss/Makefile (props changed) head/net-mgmt/zenoss/Makefile.man (props changed) head/net-mgmt/zenpack-checkping/Makefile (props changed) head/net-mgmt/zenpack-dellmon/Makefile (props changed) head/net-mgmt/zenpack-deviceadvdetail/Makefile (props changed) head/net-mgmt/zenpack-devicesearch/Makefile (props changed) head/net-mgmt/zenpack-graphportlet/Makefile (props changed) head/net-mgmt/zenpack-interfacegraphs/Makefile (props changed) head/net-mgmt/zenpack-libvirt/Makefile (props changed) head/net-mgmt/zenpack-macreport/Makefile (props changed) head/net-p2p/azureus2/Makefile (props changed) head/net-p2p/bittyrant/Makefile (props changed) head/net-p2p/bnbt/Makefile (props changed) head/net-p2p/btpd/Makefile (props changed) head/net-p2p/btqueue/Makefile (props changed) head/net-p2p/createtorrent/Makefile (props changed) head/net-p2p/ctorrent/Makefile (props changed) head/net-p2p/ed2k/Makefile (props changed) head/net-p2p/eiskaltdcpp-data/Makefile (props changed) head/net-p2p/gnewtellium/Makefile (props changed) head/net-p2p/gtkhx/Makefile (props changed) head/net-p2p/i2p/Makefile (props changed) head/net-p2p/liberator/Makefile (props changed) head/net-p2p/libpdtp/Makefile (props changed) head/net-p2p/linux-jigdo/Makefile (props changed) head/net-p2p/minder/Makefile (props changed) head/net-p2p/mktorrent/Makefile (props changed) head/net-p2p/napshare/Makefile (props changed) head/net-p2p/opennap/Makefile (props changed) head/net-p2p/p5-Net-DirectConnect-TigerHash/Makefile (props changed) head/net-p2p/phex/Makefile (props changed) head/net-p2p/py-fngrab/Makefile (props changed) head/net-p2p/py-kenosis/Makefile (props changed) head/net-p2p/py-py2play/Makefile (props changed) head/net-p2p/py-vertex/Makefile (props changed) head/net-p2p/squall/Makefile (props changed) head/net-p2p/teknap/Makefile (props changed) head/net-p2p/tribler/Makefile (props changed) head/net-p2p/uhub/Makefile (props changed) head/net-p2p/unworkable/Makefile (props changed) head/net-p2p/valknut/Makefile (props changed) head/net-p2p/verlihub-plugins-chatroom/Makefile (props changed) head/net-p2p/verlihub-plugins-floodprotect/Makefile (props changed) head/net-p2p/verlihub-plugins-forbid/Makefile (props changed) head/net-p2p/verlihub-plugins-iplog/Makefile (props changed) head/net-p2p/verlihub-plugins-isp/Makefile (props changed) head/net-p2p/verlihub-plugins-luascript/Makefile (props changed) head/net-p2p/verlihub-plugins-messanger/Makefile (props changed) head/net-p2p/verlihub-plugins-stats/Makefile (props changed) head/net-p2p/verlihub-plugins/Makefile (props changed) head/net-p2p/verlihub-plugins/Makefile.plugins (props changed) head/net-p2p/verlihub/Makefile (props changed) head/net-p2p/vhcp/Makefile (props changed) head/net-p2p/xnap/Makefile (props changed) head/net/3proxy/Makefile (props changed) head/net/44bsd-rdist/Makefile (props changed) head/net/6tunnel/Makefile (props changed) head/net/AquaGatekeeper/Makefile (props changed) head/net/GeoIP/Makefile (props changed) head/net/Sockets/files/Makefile.Defines.freebsd (props changed) head/net/activemq/Makefile (props changed) head/net/acx100/Makefile (props changed) head/net/aget/Makefile (props changed) head/net/aoe/Makefile (props changed) head/net/arp-scan/Makefile (props changed) head/net/arp-sk/Makefile (props changed) head/net/arping/Makefile (props changed) head/net/arprelease/Makefile (props changed) head/net/asfrecorder/Makefile (props changed) head/net/asio/Makefile (props changed) head/net/asterisk-oh323/Makefile (props changed) head/net/asterisk14-addons/Makefile (props changed) head/net/avahi-autoipd/Makefile (props changed) head/net/avahi-header/Makefile (props changed) head/net/avahi-libdns/Makefile (props changed) head/net/avahi-qt4/Makefile (props changed) head/net/avahi-sharp/Makefile (props changed) head/net/avahi/Makefile (props changed) head/net/balance/Makefile (props changed) head/net/bcusdk-eibd/Makefile (props changed) head/net/binkd/Makefile (props changed) head/net/bird-devel/Makefile (props changed) head/net/bird/Makefile (props changed) head/net/bird6/Makefile (props changed) head/net/bld/Makefile (props changed) head/net/boclient/Makefile (props changed) head/net/bounce/Makefile (props changed) head/net/bsdproxy/Makefile (props changed) head/net/bwi-firmware-kmod/Makefile (props changed) head/net/bwn-firmware-kmod/Makefile (props changed) head/net/callweaver/Makefile (props changed) head/net/ccxstream/Makefile (props changed) head/net/clusterit/Makefile (props changed) head/net/cnd/Makefile (props changed) head/net/cnet/Makefile (props changed) head/net/coda6_client/Makefile (props changed) head/net/coda6_server/Makefile (props changed) head/net/corkscrew/Makefile (props changed) head/net/courier-authlib-ldap/Makefile (props changed) head/net/cryptcat/Makefile (props changed) head/net/csocks/Makefile (props changed) head/net/csync2/Makefile (props changed) head/net/cvsup-without-gui/Makefile (props changed) head/net/cvsup/Makefile (props changed) head/net/cvsupchk/Makefile (props changed) head/net/dante/Makefile (props changed) head/net/datapipe/Makefile (props changed) head/net/dbeacon/Makefile (props changed) head/net/delegate/Makefile (props changed) head/net/despoof/Makefile (props changed) head/net/dgd-kernel/Makefile (props changed) head/net/dgd-lpmud/Makefile (props changed) head/net/dgd-lpmud/files/Makefile.bin (props changed) head/net/dhcpcd/Makefile (props changed) head/net/dhcperf/Makefile (props changed) head/net/dhcping/Makefile (props changed) head/net/dhcprelay/Makefile (props changed) head/net/dhcprelya/Makefile (props changed) head/net/dictd-database/Makefile (props changed) head/net/dictd/Makefile (props changed) head/net/dimes/Makefile (props changed) head/net/dosdetector/Makefile (props changed) head/net/drawterm/Makefile (props changed) head/net/dropbox-api-command/Makefile (props changed) head/net/dtcp/Makefile (props changed) head/net/dtcpclient/Makefile (props changed) head/net/e169-stats/Makefile (props changed) head/net/easysoap/Makefile (props changed) head/net/empty/Makefile (props changed) head/net/etherboot/Makefile (props changed) head/net/etrace/Makefile (props changed) head/net/flowgrep/Makefile (props changed) head/net/fonulator/Makefile (props changed) head/net/forg/Makefile (props changed) head/net/freebsd-tftp/Makefile (props changed) head/net/freebsd-uucp/Makefile (props changed) head/net/freenet6/Makefile (props changed) head/net/freeradius-client/Makefile (props changed) head/net/freeswitch-curl-devel/Makefile (props changed) head/net/freeswitch-insideout-devel/Makefile (props changed) head/net/freeswitch-sbc-devel/Makefile (props changed) head/net/freevrrpd/Makefile (props changed) head/net/frickin/Makefile (props changed) head/net/fspclient/Makefile (props changed) head/net/fsplib/Makefile (props changed) head/net/gini/Makefile (props changed) head/net/gkrellmqst/Makefile (props changed) head/net/gkrellmwireless2/Makefile (props changed) head/net/glflow/Makefile (props changed) head/net/gofish/Makefile (props changed) head/net/gogoc/Makefile (props changed) head/net/googolplex/Makefile (props changed) head/net/gopher/Makefile (props changed) head/net/gotthard/Makefile (props changed) head/net/grdesktop/Makefile (props changed) head/net/gstreamer-plugins-libmms/Makefile (props changed) head/net/gtic/Makefile (props changed) head/net/gutenfetch/Makefile (props changed) head/net/hawknl-devel/Makefile (props changed) head/net/hawknl/Makefile (props changed) head/net/hidentd/Makefile (props changed) head/net/hlmaster/Makefile (props changed) head/net/hornetq/Makefile (props changed) head/net/howl/Makefile (props changed) head/net/hs-hostname/Makefile (props changed) head/net/hs-network-conduit/Makefile (props changed) head/net/hs-network/Makefile (props changed) head/net/hs-pcap/Makefile (props changed) head/net/hs-sendfile/Makefile (props changed) head/net/hs-simple-sendfile/Makefile (props changed) head/net/hs-socks/Makefile (props changed) head/net/http_ping/Makefile (props changed) head/net/httping/Makefile (props changed) head/net/iaxmodem/Makefile (props changed) head/net/icmpinfo/Makefile (props changed) head/net/iet/Makefile (props changed) head/net/ifdepd/Makefile (props changed) head/net/iffinder/Makefile (props changed) head/net/ifstated/Makefile (props changed) head/net/igmpproxy/Makefile (props changed) head/net/imapproxy/Makefile (props changed) head/net/iodine/Makefile (props changed) head/net/ipa_ip6fw/Makefile (props changed) head/net/ipa_ipfw/Makefile (props changed) head/net/ipfw-graph/Makefile (props changed) head/net/ipgrab/Makefile (props changed) head/net/iplog/Makefile (props changed) head/net/ipsumdump/Makefile (props changed) head/net/ipsvd/Makefile (props changed) head/net/irrd/Makefile (props changed) head/net/isc-dhcp42-client/Makefile (props changed) head/net/isc-dhcp42-relay/Makefile (props changed) head/net/iscsi-target/Makefile (props changed) head/net/jakarta-commons-net/Makefile (props changed) head/net/java-beepcore/Makefile (props changed) head/net/jcifs/Makefile (props changed) head/net/jgroups/Makefile (props changed) head/net/jicmp/Makefile (props changed) head/net/jpcap/Makefile (props changed) head/net/jrdesktop/Makefile (props changed) head/net/jsch/Makefile (props changed) head/net/jumpgate/Makefile (props changed) head/net/kissd/Makefile (props changed) head/net/l2tpd/Makefile (props changed) head/net/l4ip/Makefile (props changed) head/net/ladvd/Makefile (props changed) head/net/lambdamoo/Makefile (props changed) head/net/ldapbrowser/Makefile (props changed) head/net/lft/Makefile (props changed) head/net/libarms/Makefile (props changed) head/net/libbgpdump/Makefile (props changed) head/net/libdnet/Makefile (props changed) head/net/libexosip2/Makefile (props changed) head/net/libfb/Makefile (props changed) head/net/libnatpmp/Makefile (props changed) head/net/libnet10/Makefile (props changed) head/net/libnetdude/Makefile (props changed) head/net/libnss-mysql/Makefile (props changed) head/net/libopennet/Makefile (props changed) head/net/liboping/Makefile (props changed) head/net/libosip/Makefile (props changed) head/net/libpcapnav/Makefile (props changed) head/net/libproxy-gnome/Makefile (props changed) head/net/libproxy-kde/Makefile (props changed) head/net/libproxy-python/Makefile (props changed) head/net/libproxy-webkit/Makefile (props changed) head/net/librouteros/Makefile (props changed) head/net/librsync/Makefile (props changed) head/net/libsocket++/Makefile (props changed) head/net/libsrtp/Makefile (props changed) head/net/libtcp4u/Makefile (props changed) head/net/libtnl/Makefile (props changed) head/net/libtnl/files/Makefile.bsd (props changed) head/net/libunp/Makefile (props changed) head/net/libvncserver/Makefile (props changed) head/net/linc-reference/Makefile (props changed) head/net/linphone-base/Makefile (props changed) head/net/linphone/Makefile (props changed) head/net/linux-f10-nss_ldap/Makefile (props changed) head/net/linux-f10-openldap/Makefile (props changed) head/net/linux-nx-client/Makefile (props changed) head/net/linuxigd/Makefile (props changed) head/net/ltm/Makefile (props changed) head/net/luasocket/Makefile (props changed) head/net/lvwimax/Makefile (props changed) head/net/mars_nwe/Makefile (props changed) head/net/mcast-tools/Makefile (props changed) head/net/mediaproxy/Makefile (props changed) head/net/micro_inetd/Makefile (props changed) head/net/micro_proxy/Makefile (props changed) head/net/minissdpd/Makefile (props changed) head/net/miniupnpd/Makefile (props changed) head/net/mmucl/Makefile (props changed) head/net/mono-zeroconf/Makefile (props changed) head/net/mopd/Makefile (props changed) head/net/mpd-l2tp-ipv6pd-client/Makefile (props changed) head/net/mpd5/Makefile (props changed) head/net/mpich2/Makefile (props changed) head/net/mping/Makefile (props changed) head/net/mrouted/Makefile (props changed) head/net/nakenchat/Makefile (props changed) head/net/nc/Makefile (props changed) head/net/ncp/Makefile (props changed) head/net/ncplib/Makefile (props changed) head/net/ndisc6/Makefile (props changed) head/net/nemesis/Makefile (props changed) head/net/nepim/Makefile (props changed) head/net/net-http/Makefile (props changed) head/net/netpipes/Makefile (props changed) head/net/netsed/Makefile (props changed) head/net/netselect/Makefile (props changed) head/net/nettest/Makefile (props changed) head/net/nfsshell/Makefile (props changed) head/net/ng_daphne/Makefile (props changed) head/net/ngrep/Makefile (props changed) head/net/nifmon/Makefile (props changed) head/net/nload/Makefile (props changed) head/net/nocatsplash/Makefile (props changed) head/net/nos-ttb/Makefile (props changed) head/net/nph/Makefile (props changed) head/net/nss-pam-ldapd-sasl/Makefile (props changed) head/net/nstxd/Makefile (props changed) head/net/ntlmaps/Makefile (props changed) head/net/ntp-devel/Makefile.inc (props changed) head/net/ntp-rc/Makefile (props changed) head/net/ntp-rc/Makefile.inc (props changed) head/net/ntp/Makefile (props changed) head/net/ntp/Makefile.inc (props changed) head/net/ntraceroute/Makefile (props changed) head/net/nusoap/Makefile (props changed) head/net/nxproxy/Makefile (props changed) head/net/nyancat/Makefile (props changed) head/net/nylon/Makefile (props changed) head/net/ohphone/Makefile (props changed) head/net/omcmd/Makefile (props changed) head/net/omnitty/Makefile (props changed) head/net/onenetd/Makefile (props changed) head/net/openafs/Makefile.man (props changed) head/net/openam/Makefile (props changed) head/net/openbgpd/Makefile (props changed) head/net/opendpi/Makefile (props changed) head/net/openh323/Makefile (props changed) head/net/openistgt/Makefile (props changed) head/net/openldap24-client/Makefile (props changed) head/net/openldap24-sasl-client/Makefile (props changed) head/net/openmcu/Makefile (props changed) head/net/openmq-client/Makefile (props changed) head/net/openmq/Makefile (props changed) head/net/openntpd/Makefile (props changed) head/net/openospfd/Makefile (props changed) head/net/openradius/Makefile (props changed) head/net/openser/Makefile (props changed) head/net/openslp/Makefile (props changed) head/net/opentracker/Makefile (props changed) head/net/openvswitch/Makefile (props changed) head/net/ortp/Makefile (props changed) head/net/osrtspproxy/Makefile (props changed) head/net/ossp-sa/Makefile (props changed) head/net/owamp/Makefile (props changed) head/net/p5-Net-Whois-IP/Makefile (props changed) head/net/p5-POSIX-getpeername/Makefile (props changed) head/net/p5-Server-Starter/Makefile (props changed) head/net/p5-WebService-Dropbox/Makefile (props changed) head/net/packetdrill/files/Makefile (props changed) head/net/packetdrill/files/Makefile.checksum_test (props changed) head/net/packetdrill/files/Makefile.inc (props changed) head/net/packetdrill/files/Makefile.libpd (props changed) head/net/packetdrill/files/Makefile.packet_parser_test (props changed) head/net/packetdrill/files/Makefile.packet_to_string_test (props changed) head/net/packetdrill/files/Makefile.packetdrill (props changed) head/net/panoptis/Makefile (props changed) head/net/paris-traceroute/Makefile (props changed) head/net/passlogd/Makefile (props changed) head/net/pathneck/Makefile (props changed) head/net/pcnfsd/Makefile (props changed) head/net/pcnfsd/files/Makefile.inc (props changed) head/net/pdb/Makefile (props changed) head/net/pear-Horde_Kolab_Server/Makefile (props changed) head/net/pear-Horde_Kolab_Session/Makefile (props changed) head/net/pear-Horde_Ldap/Makefile (props changed) head/net/pear-Horde_Rpc/Makefile (props changed) head/net/pear-Horde_Scribe/Makefile (props changed) head/net/pear-Horde_Url/Makefile (props changed) head/net/pear-Net_DNSBL/Makefile (props changed) head/net/pear-Net_IPv6/Makefile (props changed) head/net/pear-Net_LDAP2/Makefile (props changed) head/net/pear-Net_Nmap/Makefile (props changed) head/net/pear-Net_SMS/Makefile (props changed) head/net/pear-Net_Whois/Makefile (props changed) head/net/pear-SOAP/Makefile (props changed) head/net/pear-XML_RPC/Makefile (props changed) head/net/pear-XML_RPC2/Makefile (props changed) head/net/pecl-cvsclient/Makefile (props changed) head/net/pecl-geoip/Makefile (props changed) head/net/pecl-radius/Makefile (props changed) head/net/pen/Makefile (props changed) head/net/pfflowd/Makefile (props changed) head/net/pfinger/Makefile (props changed) head/net/php5-ldap/Makefile (props changed) head/net/php5-soap/Makefile (props changed) head/net/php5-sockets/Makefile (props changed) head/net/php5-xmlrpc/Makefile (props changed) head/net/php52-ldap/Makefile (props changed) head/net/php52-soap/Makefile (props changed) head/net/php52-sockets/Makefile (props changed) head/net/php52-xmlrpc/Makefile (props changed) head/net/php55-ldap/Makefile (props changed) head/net/php55-soap/Makefile (props changed) head/net/php55-sockets/Makefile (props changed) head/net/php55-xmlrpc/Makefile (props changed) head/net/pipsecd/Makefile (props changed) head/net/pload/Makefile (props changed) head/net/plugdaemon/Makefile (props changed) head/net/pmf/Makefile (props changed) head/net/poptop/Makefile (props changed) head/net/portfwd/Makefile (props changed) head/net/pppd23/Makefile (props changed) head/net/pppoa/Makefile (props changed) head/net/proftpd-mod_ldap/Makefile (props changed) head/net/proxy-connect/Makefile (props changed) head/net/proxy-suite/Makefile (props changed) head/net/prtunnel/Makefile (props changed) head/net/ptpd2-devel/Makefile (props changed) head/net/ptpd2/Makefile (props changed) head/net/ptunnel/Makefile (props changed) head/net/pure-sockets/Makefile (props changed) head/net/pvm++/Makefile (props changed) head/net/pxe-pdhcp/files/Makefile.in (props changed) head/net/pxe/Makefile (props changed) head/net/py-GeoIP/Makefile (props changed) head/net/py-amqplib/Makefile (props changed) head/net/py-cloudfiles/Makefile (props changed) head/net/py-eventlet/Makefile (props changed) head/net/py-google/Makefile (props changed) head/net/py-impacket/Makefile (props changed) head/net/py-iplib/Makefile (props changed) head/net/py-kombu/Makefile (props changed) head/net/py-ldap2/Makefile (props changed) head/net/py-libcloud/Makefile (props changed) head/net/py-libnet/Makefile (props changed) head/net/py-miniupnpc/Makefile (props changed) head/net/py-netifaces/Makefile (props changed) head/net/py-netstring/Makefile (props changed) head/net/py-novaclient/Makefile (props changed) head/net/py-oauth/Makefile (props changed) head/net/py-oauth2/Makefile (props changed) head/net/py-pcap/Makefile (props changed) head/net/py-pcs/Makefile (props changed) head/net/py-port-for/Makefile (props changed) head/net/py-pypcap/Makefile (props changed) head/net/py-pysendfile/Makefile (props changed) head/net/py-radix/Makefile (props changed) head/net/py-s3cmd/Makefile (props changed) head/net/py-smb/Makefile (props changed) head/net/py-smbpasswd/Makefile (props changed) head/net/py-soappy-devel/Makefile (props changed) head/net/py-soappy/Makefile (props changed) head/net/py-soapy/Makefile (props changed) head/net/py-spreadmodule/Makefile (props changed) head/net/py-suds/Makefile (props changed) head/net/py-tofu/Makefile (props changed) head/net/py-txamqp/Makefile (props changed) head/net/py-xmlrpc/Makefile (props changed) head/net/py-xmlrpclib/Makefile (props changed) head/net/py-yadis/Makefile (props changed) head/net/py-zsi/Makefile (props changed) head/net/pygopherd/Makefile (props changed) head/net/pynids/Makefile (props changed) head/net/pyrad/Makefile (props changed) head/net/pythondirector/Makefile (props changed) head/net/quoted/Makefile (props changed) head/net/rabbitmq-c-devel/Makefile (props changed) head/net/rabbitmq-c/Makefile (props changed) head/net/raddump/Makefile (props changed) head/net/radiusclient/Makefile (props changed) head/net/radiusd-cistron/Makefile (props changed) head/net/radreport/Makefile (props changed) head/net/radsecproxy/Makefile (props changed) head/net/radvd/Makefile (props changed) head/net/rdist6/Makefile (props changed) head/net/recvnet/Makefile (props changed) head/net/redir/Makefile (props changed) head/net/remotedesk/Makefile (props changed) head/net/repeater/Makefile (props changed) head/net/rexx-sock/Makefile (props changed) head/net/rfbproxy/Makefile (props changed) head/net/ris/Makefile (props changed) head/net/rshell/Makefile (props changed) head/net/rsmb/Makefile (props changed) head/net/rtg/Makefile (props changed) head/net/rtpbreak/Makefile (props changed) head/net/rtpproxy/Makefile (props changed) head/net/rtptools/Makefile (props changed) head/net/ruby-dict/Makefile (props changed) head/net/ruby-growl/Makefile (props changed) head/net/ruby-icmp/Makefile (props changed) head/net/ruby-ldap/Makefile (props changed) head/net/ruby-tcpsocketpipe/Makefile (props changed) head/net/ruby-tserver/Makefile (props changed) head/net/rubygem-http_parser.rb/Makefile (props changed) head/net/rubygem-net-netrc/Makefile (props changed) head/net/rubygem-rubytter/Makefile (props changed) head/net/rwhoisd/Makefile (props changed) head/net/samba-libsmbclient/Makefile (props changed) head/net/samba-nmblookup/Makefile (props changed) head/net/samba-smbclient/Makefile (props changed) head/net/sbd/Makefile (props changed) head/net/scamper/Makefile (props changed) head/net/scapy/Makefile (props changed) head/net/scnc/Makefile (props changed) head/net/scr_ipfm/Makefile (props changed) head/net/seda/Makefile (props changed) head/net/sendfile/Makefile (props changed) head/net/ser/Makefile (props changed) head/net/serviio/Makefile (props changed) head/net/sflowtool/Makefile (props changed) head/net/shaperprobe/Makefile (props changed) head/net/sharity-light/Makefile (props changed) head/net/sharity-light/files/Makefile.unshlight (props changed) head/net/simpleproxy/Makefile (props changed) head/net/sippy_b2bua/Makefile (props changed) head/net/siproxd/Makefile (props changed) head/net/sipsak/Makefile (props changed) head/net/sixxs-aiccu/Makefile (props changed) head/net/skyfish/Makefile (props changed) head/net/skystar2/Makefile (props changed) head/net/sl2tps/Makefile (props changed) head/net/slurm/Makefile (props changed) head/net/sniffit/Makefile (props changed) head/net/socat/Makefile (props changed) head/net/socketbind/Makefile (props changed) head/net/socketbind/files/Makefile (props changed) head/net/socketpipe/Makefile (props changed) head/net/splatd/Makefile (props changed) head/net/spread-j/Makefile (props changed) head/net/sprinkle/Makefile (props changed) head/net/spserver/Makefile (props changed) head/net/ss5/Makefile (props changed) head/net/ssldump/Makefile (props changed) head/net/ssltunnel-server/Makefile (props changed) head/net/ssmping/Makefile (props changed) head/net/ssspl/Makefile (props changed) head/net/stf-6rd-kmod/Makefile (props changed) head/net/stone/Makefile (props changed) head/net/stund/Makefile (props changed) head/net/suckblow/Makefile (props changed) head/net/sup/Makefile (props changed) head/net/tableutil/Makefile (props changed) head/net/tac_plus-libradius/Makefile (props changed) head/net/tapidbus/Makefile (props changed) head/net/tcpcat/Makefile (props changed) head/net/tcpdstat/Makefile (props changed) head/net/tcpdump398/Makefile (props changed) head/net/tcpflow/Makefile (props changed) head/net/tcpick/Makefile (props changed) head/net/tcping/Makefile (props changed) head/net/tcpmssd/Makefile (props changed) head/net/tcpproxy/Makefile (props changed) head/net/tcpsg/Makefile (props changed) head/net/tcpshow/Makefile (props changed) head/net/tcpslice/Makefile (props changed) head/net/tcpstat/Makefile (props changed) head/net/tcptraceroute-devel/Makefile (props changed) head/net/tcpview/Makefile (props changed) head/net/tcpxtract/Makefile (props changed) head/net/tdetect/Makefile (props changed) head/net/thcrut/Makefile (props changed) head/net/tinyfugue/Makefile (props changed) head/net/tinyldap/Makefile (props changed) head/net/tn5250/Makefile (props changed) head/net/tn5250j/Makefile (props changed) head/net/toonel/Makefile (props changed) head/net/traceroute/Makefile (props changed) head/net/trafshow3/Makefile (props changed) head/net/tramp/Makefile (props changed) head/net/trickle/Makefile (props changed) head/net/tshark-lite/Makefile (props changed) head/net/tshark/Makefile (props changed) head/net/tsocks/Makefile (props changed) head/net/ttbudget/Makefile (props changed) head/net/ttlscan/Makefile (props changed) head/net/udptunnel/Makefile (props changed) head/net/unfs3/Makefile (props changed) head/net/unix2tcp/Makefile (props changed) head/net/urelay/Makefile (props changed) head/net/urlendec/Makefile (props changed) head/net/utftpd/Makefile (props changed) head/net/vblade/Makefile (props changed) head/net/vchat/Makefile (props changed) head/net/vde2/Makefile (props changed) head/net/vncreflector/Makefile (props changed) head/net/vserver/Makefile (props changed) head/net/vtun/Makefile (props changed) head/net/wackamole/Makefile (props changed) head/net/wired-tracker/Makefile (props changed) head/net/wired/Makefile (props changed) head/net/wireshark-lite/Makefile (props changed) head/net/wmnet/Makefile (props changed) head/net/wmnetmon/Makefile (props changed) head/net/wmpiki/Makefile (props changed) head/net/wmping/Makefile (props changed) head/net/wmwave/Makefile (props changed) head/net/wmwifi/Makefile (props changed) head/net/wmwlmon/Makefile (props changed) head/net/wowzamediaserverpro/Makefile (props changed) head/net/xferstats/Makefile (props changed) head/net/xipdump/Makefile (props changed) head/net/xipmsg/Makefile (props changed) head/net/xisp/Makefile (props changed) head/net/xorp/Makefile (props changed) head/net/xpvm/Makefile (props changed) head/net/yaph/Makefile (props changed) head/net/yptransitd/Makefile (props changed) head/net/zillion/Makefile (props changed) head/net/zsync/Makefile (props changed) head/news/atp/Makefile (props changed) head/news/aub/Makefile (props changed) head/news/brag/Makefile (props changed) head/news/cg/Makefile (props changed) head/news/cnews/Makefile (props changed) head/news/crashmail/Makefile (props changed) head/news/diablo/Makefile (props changed) head/news/dnews/Makefile (props changed) head/news/golded+/Makefile (props changed) head/news/gup/Makefile (props changed) head/news/hellanzb/Makefile (props changed) head/news/husky-base-devel/Makefile (props changed) head/news/husky-base-devel/Makefile.inc (props changed) head/news/husky-base/Makefile (props changed) head/news/husky-base/Makefile.inc (props changed) head/news/husky-bsopack/Makefile (props changed) head/news/husky-fidoconf-devel/Makefile (props changed) head/news/husky-fidoconf/Makefile (props changed) head/news/husky-hptkill/Makefile (props changed) head/news/husky-hptsqfix/Makefile (props changed) head/news/husky-hpucode/Makefile (props changed) head/news/husky-htick-devel/Makefile (props changed) head/news/husky-htick/Makefile (props changed) head/news/husky-msged/Makefile (props changed) head/news/husky-nltools/Makefile (props changed) head/news/husky-smapi-devel/Makefile (props changed) head/news/husky-smapi/Makefile (props changed) head/news/husky-sqpack/Makefile (props changed) head/news/ifmail/Makefile (props changed) head/news/knews/Makefile (props changed) head/news/lusernet/Makefile (props changed) head/news/mmail/Makefile (props changed) head/news/multisuck/Makefile (props changed) head/news/newscache/Makefile (props changed) head/news/newsfetch/Makefile (props changed) head/news/newsfish/Makefile (props changed) head/news/newspost/Makefile (props changed) head/news/nget/Makefile (props changed) head/news/nn/Makefile (props changed) head/news/nnap/Makefile (props changed) head/news/nntp/Makefile (props changed) head/news/nntpbtr/Makefile (props changed) head/news/nntpcache/Makefile (props changed) head/news/noffle/Makefile (props changed) head/news/papercut/Makefile (props changed) head/news/pgpmoose/Makefile (props changed) head/news/py-pynzb/Makefile (props changed) head/news/py-yenc/Makefile (props changed) head/news/rawdog/Makefile (props changed) head/news/slrnface/Makefile (props changed) head/news/sn/Makefile (props changed) head/news/suck-cnews/Makefile (props changed) head/news/suck/Makefile (props changed) head/news/trn/Makefile (props changed) head/news/trn4/Makefile (props changed) head/news/xrn/Makefile (props changed) head/news/yydecode/Makefile (props changed) head/palm/Makefile (props changed) head/palm/iSiloXC/Makefile (props changed) head/palm/imgvtopgm/Makefile (props changed) head/palm/jpilot-db/Makefile (props changed) head/palm/makeztxt/Makefile (props changed) head/palm/mdbconv/Makefile (props changed) head/palm/mdbconv/files/Makefile (props changed) head/palm/palmos-sdk/Makefile (props changed) head/palm/pdbar/Makefile (props changed) head/palm/pilot_makedoc/Makefile (props changed) head/palm/pilot_makedoc/files/Makefile (props changed) head/palm/pilrc/Makefile (props changed) head/palm/ppmtoTbmp/Makefile (props changed) head/palm/py-synce-librapi2/Makefile (props changed) head/palm/py-synce-librra/Makefile (props changed) head/polish/Makefile.inc (props changed) head/polish/aspell/Makefile (props changed) head/polish/fortunepl/Makefile (props changed) head/polish/gimp-help/Makefile (props changed) head/polish/hyphen/Makefile (props changed) head/polish/kde4-l10n/Makefile.man (props changed) head/polish/libgadu/Makefile (props changed) head/polish/libreoffice/Makefile (props changed) head/polish/libtlen/Makefile (props changed) head/polish/mythes/Makefile (props changed) head/polish/php_doc/Makefile (props changed) head/polish/webalizer2/Makefile (props changed) head/ports-mgmt/bpkg/Makefile (props changed) head/ports-mgmt/bxpkg/Makefile (props changed) head/ports-mgmt/hs-porte/Makefile (props changed) head/ports-mgmt/jailaudit/Makefile (props changed) head/ports-mgmt/lsknobs/Makefile (props changed) head/ports-mgmt/managepkg/Makefile (props changed) head/ports-mgmt/mkreadmes/Makefile (props changed) head/ports-mgmt/packagekit-qt4/Makefile (props changed) head/ports-mgmt/pib/Makefile (props changed) head/ports-mgmt/pkg_add_it/Makefile (props changed) head/ports-mgmt/pkg_cleanup/Makefile (props changed) head/ports-mgmt/pkg_cleanup/files/Makefile (props changed) head/ports-mgmt/pkg_install/Makefile (props changed) head/ports-mgmt/pkg_install/files/Makefile.inc (props changed) head/ports-mgmt/pkg_jail/Makefile (props changed) head/ports-mgmt/pkg_rmleaves/Makefile (props changed) head/ports-mgmt/pkg_search/Makefile (props changed) head/ports-mgmt/pkgfe/Makefile (props changed) head/ports-mgmt/pkgsearch/Makefile (props changed) head/ports-mgmt/portaudit-db/Makefile (props changed) head/ports-mgmt/portaudit/Makefile (props changed) head/ports-mgmt/portdowngrade/Makefile (props changed) head/ports-mgmt/portell/Makefile (props changed) head/ports-mgmt/portless/Makefile (props changed) head/ports-mgmt/portmaster/Makefile (props changed) head/ports-mgmt/portsearch/Makefile (props changed) head/ports-mgmt/portshaker-config/Makefile (props changed) head/ports-mgmt/portshaker/Makefile (props changed) head/ports-mgmt/portsopt/Makefile (props changed) head/ports-mgmt/porttools/Makefile (props changed) head/ports-mgmt/porttree/Makefile (props changed) head/ports-mgmt/portupgrade-devel/Makefile (props changed) head/ports-mgmt/psearch/Makefile (props changed) head/ports-mgmt/symports/Makefile (props changed) head/ports-mgmt/vulnerability-test-port/Makefile (props changed) head/portuguese/Makefile.inc (props changed) head/portuguese/acroread8/Makefile (props changed) head/portuguese/aspell-pt_BR/Makefile (props changed) head/portuguese/aspell-pt_PT/Makefile (props changed) head/portuguese/hyphen/Makefile (props changed) head/portuguese/ispell-pt_BR/Makefile (props changed) head/portuguese/libreoffice-pt_BR/Makefile (props changed) head/portuguese/libreoffice/Makefile (props changed) head/portuguese/mythes/Makefile (props changed) head/portuguese/php_doc-br/Makefile (props changed) head/portuguese/webalizer-pt_BR/Makefile (props changed) head/portuguese/webalizer-pt_PT/Makefile (props changed) head/print/abc2mtex/Makefile (props changed) head/print/abntex/Makefile (props changed) head/print/acrobatviewer/Makefile (props changed) head/print/acroread8/Makefile (props changed) head/print/acroread9/Makefile (props changed) head/print/acroreadwrapper/Makefile (props changed) head/print/adobe-cmaps/Makefile (props changed) head/print/ansiprint/Makefile (props changed) head/print/apsfilter/Makefile (props changed) head/print/asprint/Makefile (props changed) head/print/auctex/Makefile (props changed) head/print/bibcursed/Makefile (props changed) head/print/biblio-py/Makefile (props changed) head/print/bophook/Makefile (props changed) head/print/c2ps/Makefile (props changed) head/print/catdvi/Makefile (props changed) head/print/cm-super/Makefile (props changed) head/print/cups-pdf/Makefile (props changed) head/print/cups-pstoraster/Makefile (props changed) head/print/cups-samba/Makefile (props changed) head/print/dk-acroread8/Makefile (props changed) head/print/dot2tex/Makefile (props changed) head/print/dvi2tty/Makefile (props changed) head/print/dvips/Makefile (props changed) head/print/dvips2ascii/Makefile (props changed) head/print/dvipsk-tetex/Makefile (props changed) head/print/dviselect/Makefile (props changed) head/print/dvisvg/Makefile (props changed) head/print/enscript-a4/Makefile (props changed) head/print/enscript-letter/Makefile (props changed) head/print/enscript-letterdj/Makefile (props changed) head/print/enscriptfonts/Makefile (props changed) head/print/epsonepl/Makefile (props changed) head/print/epsonepl/files/Makefile (props changed) head/print/es-acroread8/Makefile (props changed) head/print/examplep/Makefile (props changed) head/print/fi-acroread8/Makefile (props changed) head/print/flpsed/Makefile (props changed) head/print/font-amsfonts/Makefile (props changed) head/print/font2svg/Makefile (props changed) head/print/foo2zjs/Makefile (props changed) head/print/foomatic-db-hpijs/Makefile (props changed) head/print/fpdf/Makefile (props changed) head/print/freetype-tools/Makefile (props changed) head/print/freetype/Makefile (props changed) head/print/ghostscript7-commfont/Makefile (props changed) head/print/ghostscript7-commfont/files/Makefile.in (props changed) head/print/ghostscript7-jpnfont/Makefile (props changed) head/print/ghostscript7-korfont/Makefile (props changed) head/print/ghostscript7-nox11/Makefile (props changed) head/print/ghostscript7/Makefile.drivers (props changed) head/print/ghostscript7/files/Makefile.alps (props changed) head/print/ghostscript7/files/Makefile.bj10v (props changed) head/print/ghostscript7/files/Makefile.bjc250 (props changed) head/print/ghostscript7/files/Makefile.cdj880 (props changed) head/print/ghostscript7/files/Makefile.cdj970 (props changed) head/print/ghostscript7/files/Makefile.cpca (props changed) head/print/ghostscript7/files/Makefile.dmprt (props changed) head/print/ghostscript7/files/Makefile.drivers_post (props changed) head/print/ghostscript7/files/Makefile.epag (props changed) head/print/ghostscript7/files/Makefile.eplaser (props changed) head/print/ghostscript7/files/Makefile.gdi (props changed) head/print/ghostscript7/files/Makefile.gprint (props changed) head/print/ghostscript7/files/Makefile.lex7000 (props changed) head/print/ghostscript7/files/Makefile.lips (props changed) head/print/ghostscript7/files/Makefile.lx5000 (props changed) head/print/ghostscript7/files/Makefile.lxm3200 (props changed) head/print/ghostscript7/files/Makefile.md2k (props changed) head/print/ghostscript7/files/Makefile.mjc (props changed) head/print/ghostscript7/files/Makefile.pcl3 (props changed) head/print/ghostscript8-nox11/Makefile (props changed) head/print/ghostscript8/Makefile (props changed) head/print/ghostscript8/Makefile.drivers (props changed) head/print/ghostscript8/files/Makefile.dmprt (props changed) head/print/ghostscript8/files/Makefile.drivers_post (props changed) head/print/ghostscript8/files/Makefile.epag (props changed) head/print/ghostscript8/files/Makefile.pcl3 (props changed) head/print/ghostscript9-agpl-nox11/Makefile (props changed) head/print/ghostscript9-agpl/Makefile.drivers (props changed) head/print/ghostscript9-agpl/files/Makefile.dmprt (props changed) head/print/ghostscript9-agpl/files/Makefile.drivers_post (props changed) head/print/ghostscript9-agpl/files/Makefile.epag (props changed) head/print/ghostscript9-agpl/files/Makefile.pcl3 (props changed) head/print/ghostscript9-nox11/Makefile (props changed) head/print/ghostscript9/Makefile (props changed) head/print/ghostscript9/Makefile.drivers (props changed) head/print/ghostscript9/files/Makefile.dmprt (props changed) head/print/ghostscript9/files/Makefile.drivers_post (props changed) head/print/ghostscript9/files/Makefile.epag (props changed) head/print/ghostscript9/files/Makefile.pcl3 (props changed) head/print/gimp-gutenprint/Makefile (props changed) head/print/gl2ps/files/Makefile.ex (props changed) head/print/gl2ps/files/Makefile.lib (props changed) head/print/gribouy/Makefile (props changed) head/print/gsfonts/Makefile (props changed) head/print/gspdf/Makefile (props changed) head/print/gutenprint-cups/Makefile (props changed) head/print/gutenprint-foomatic/Makefile (props changed) head/print/gutenprint-ijs/Makefile (props changed) head/print/gutenprint/Makefile (props changed) head/print/hp2xx/Makefile (props changed) head/print/hs-hscolour/Makefile (props changed) head/print/html2latex/Makefile (props changed) head/print/hyperlatex/Makefile (props changed) head/print/ifxetex/Makefile (props changed) head/print/it-acroread8/Makefile (props changed) head/print/jadetex/Makefile (props changed) head/print/kde_poster/Makefile (props changed) head/print/latex-aa/Makefile (props changed) head/print/latex-aastex/Makefile (props changed) head/print/latex-acm/Makefile (props changed) head/print/latex-arydshln/Makefile (props changed) head/print/latex-auto-greek/Makefile (props changed) head/print/latex-beamer/Makefile (props changed) head/print/latex-biblatex/Makefile (props changed) head/print/latex-biblist/Makefile (props changed) head/print/latex-bytefield/Makefile (props changed) head/print/latex-caption/Makefile (props changed) head/print/latex-chapterfolder/Makefile (props changed) head/print/latex-circ/Makefile (props changed) head/print/latex-cjk/Makefile (props changed) head/print/latex-cjk/Makefile.common (props changed) head/print/latex-csquotes/Makefile (props changed) head/print/latex-etoolbox/Makefile (props changed) head/print/latex-feynmf/Makefile (props changed) head/print/latex-keystroke/Makefile (props changed) head/print/latex-logpap/Makefile (props changed) head/print/latex-logreq/Makefile (props changed) head/print/latex-ltablex/Makefile (props changed) head/print/latex-mathabx/Makefile (props changed) head/print/latex-nomencl/Makefile (props changed) head/print/latex-pgf/Makefile (props changed) head/print/latex-prettyref/Makefile (props changed) head/print/latex-resume/Makefile (props changed) head/print/latex-subfloat/Makefile (props changed) head/print/latex-supertabular/Makefile (props changed) head/print/latex-svninfo/Makefile (props changed) head/print/latex-timing/Makefile (props changed) head/print/latex-tipa/Makefile (props changed) head/print/latex/Makefile (props changed) head/print/latex2slides/Makefile (props changed) head/print/lgrind/Makefile (props changed) head/print/libgnomeprint-reference/Makefile (props changed) head/print/libgnomeprintmm/Makefile (props changed) head/print/libharu/Makefile (props changed) head/print/libijs/Makefile (props changed) head/print/libpaper/Makefile (props changed) head/print/libppd/Makefile (props changed) head/print/libspectre/Makefile (props changed) head/print/linux-f10-cups-libs/Makefile (props changed) head/print/lpr-wrapper/Makefile (props changed) head/print/lprps/Makefile (props changed) head/print/magicfilter/Makefile (props changed) head/print/makeindex/Makefile (props changed) head/print/mftrace/Makefile (props changed) head/print/min12xxw/Makefile (props changed) head/print/mp-a4/Makefile (props changed) head/print/mp-letter/Makefile (props changed) head/print/mpage/Makefile (props changed) head/print/mup/Makefile (props changed) head/print/mup/files/Makefile (props changed) head/print/mup/files/Makefile.disp (props changed) head/print/mup/files/Makefile.fnt (props changed) head/print/mup/files/Makefile.mup (props changed) head/print/musixtex/Makefile (props changed) head/print/nenscript/Makefile (props changed) head/print/nl-acroread8/Makefile (props changed) head/print/no-acroread8/Makefile (props changed) head/print/panda/Makefile.man (props changed) head/print/papersize-default-a4/Makefile (props changed) head/print/papersize-default-letter/Makefile (props changed) head/print/paps/Makefile (props changed) head/print/passivetex/Makefile (props changed) head/print/pcal/Makefile (props changed) head/print/pdf-renderer/Makefile (props changed) head/print/pdfbox/Makefile (props changed) head/print/pdfcolorsplit/Makefile (props changed) head/print/pdfjam/Makefile (props changed) head/print/pdflib-perl/Makefile (props changed) head/print/pdq/Makefile (props changed) head/print/pecl-pdflib/Makefile (props changed) head/print/pecl-ps/Makefile (props changed) head/print/pfbtopfa/Makefile (props changed) head/print/phppdflib/Makefile (props changed) head/print/pic2fig/Makefile (props changed) head/print/pkfonts118/Makefile (props changed) head/print/pkfonts240/Makefile (props changed) head/print/pkfonts300/Makefile (props changed) head/print/pkfonts360/Makefile (props changed) head/print/pkfonts400/Makefile (props changed) head/print/pkfonts600/Makefile (props changed) head/print/pkipplib/Makefile (props changed) head/print/pkpgcounter/Makefile (props changed) head/print/pnm2ppa/Makefile (props changed) head/print/poster/Makefile (props changed) head/print/pscal/Makefile (props changed) head/print/psdim/Makefile (props changed) head/print/py-pdf/Makefile (props changed) head/print/py-relatorio/Makefile (props changed) head/print/py-reportlab/Makefile (props changed) head/print/py-reportlab2/Makefile (props changed) head/print/py-rtf/Makefile (props changed) head/print/py-trml2pdf/Makefile (props changed) head/print/rlpr/Makefile (props changed) head/print/rprint/Makefile (props changed) head/print/rtf2latex/Makefile (props changed) head/print/rtf2latex/files/Makefile (props changed) head/print/rtf2latex2e/Makefile (props changed) head/print/ruby-panda/Makefile (props changed) head/print/sgf2tex/Makefile (props changed) head/print/sv-acroread8/Makefile (props changed) head/print/t1utils/Makefile (props changed) head/print/teTeX-base/Makefile (props changed) head/print/teTeX-texmf/Makefile (props changed) head/print/teTeX/Makefile (props changed) head/print/tex-aleph/Makefile (props changed) head/print/tex-formats/Makefile (props changed) head/print/tex-jadetex/Makefile (props changed) head/print/tex-luatex/Makefile (props changed) head/print/tex-mfpic/Makefile (props changed) head/print/tex-omegaware-old/files/Makefile.tex-omegaware-old (props changed) head/print/tex-texmflocal/Makefile (props changed) head/print/tex-xetex/Makefile (props changed) head/print/tex-xmltex/Makefile (props changed) head/print/tex/Makefile (props changed) head/print/texlive-docs/Makefile (props changed) head/print/texlive-full/Makefile (props changed) head/print/texlive-infra/Makefile (props changed) head/print/texlive-texmf/Makefile (props changed) head/print/texpower/Makefile (props changed) head/print/ttftot42/Makefile (props changed) head/print/utopia/Makefile (props changed) head/print/xdvi/Makefile (props changed) head/print/xdvik/Makefile (props changed) head/print/xmbibtex/Makefile (props changed) head/print/xmltex/Makefile (props changed) head/print/xmltex/files/Makefile (props changed) head/print/xpp/Makefile (props changed) head/print/xtexsh/Makefile (props changed) head/print/yatex/Makefile (props changed) head/russian/Makefile.inc (props changed) head/russian/artwiz-ru/Makefile (props changed) head/russian/aspell/Makefile (props changed) head/russian/bugzilla40/Makefile (props changed) head/russian/bugzilla42/Makefile (props changed) head/russian/bugzilla44/Makefile (props changed) head/russian/d1489/Makefile (props changed) head/russian/fortune-bashorgru/Makefile (props changed) head/russian/fortuneru/Makefile (props changed) head/russian/gd/Makefile (props changed) head/russian/gimp-help/Makefile (props changed) head/russian/hyphen/Makefile (props changed) head/russian/ircd-hybrid/Makefile (props changed) head/russian/kde4-l10n/Makefile.man (props changed) head/russian/koi2koi/Makefile (props changed) head/russian/koi2koi/src/Makefile (props changed) head/russian/libcyrillic/Makefile (props changed) head/russian/libcyrillic/files/Makefile.bsd (props changed) head/russian/libreoffice/Makefile (props changed) head/russian/muttprint/Makefile (props changed) head/russian/mythes/Makefile (props changed) head/russian/napster/Makefile (props changed) head/russian/prawda/Makefile (props changed) head/russian/pscyr/Makefile (props changed) head/russian/rux/Makefile (props changed) head/russian/tac+ia/Makefile (props changed) head/russian/tidyup-mail/Makefile (props changed) head/russian/xcode/Makefile (props changed) head/russian/xpi-tabextensions/Makefile (props changed) head/russian/xruskb/Makefile (props changed) head/science/2d-rewriter/Makefile (props changed) head/science/2dhf/Makefile (props changed) head/science/afni/files/Makefile.FreeBSD_PORT (props changed) head/science/bddsolve/Makefile (props changed) head/science/bft/Makefile (props changed) head/science/brian/Makefile (props changed) head/science/cdcl/Makefile (props changed) head/science/cdf/Makefile (props changed) head/science/chemtool/Makefile (props changed) head/science/colt/Makefile (props changed) head/science/crf++/Makefile (props changed) head/science/devisor/Makefile (props changed) head/science/dlpoly-classic/Makefile (props changed) head/science/dtiquery/Makefile (props changed) head/science/elmer-eio/Makefile (props changed) head/science/elmer-hutiter/Makefile (props changed) head/science/elmer-matc/Makefile (props changed) head/science/elmer-meshgen2d/Makefile (props changed) head/science/elmergrid/Makefile (props changed) head/science/elmerpost/Makefile (props changed) head/science/epte/Makefile (props changed) head/science/euler/Makefile (props changed) head/science/fastcap/Makefile (props changed) head/science/g3data/Makefile (props changed) head/science/gamess/Makefile (props changed) head/science/gamess/files/Makefile.tools (props changed) head/science/gamess/files/Makefile.top (props changed) head/science/ghmm/Makefile (props changed) head/science/gtamsanalyzer/Makefile (props changed) head/science/h5utils/Makefile (props changed) head/science/harminv/Makefile (props changed) head/science/hdf-java/Makefile (props changed) head/science/hdf5/Makefile (props changed) head/science/hs-bio/Makefile (props changed) head/science/libctl/Makefile (props changed) head/science/liblinear/Makefile (props changed) head/science/liboglappth/Makefile (props changed) head/science/libquantum/Makefile (props changed) head/science/libsvm-python/Makefile (props changed) head/science/libsvm/Makefile (props changed) head/science/mbdyn/Makefile (props changed) head/science/minc/Makefile (props changed) head/science/mpqc-mpich/Makefile (props changed) head/science/nifticlib/Makefile (props changed) head/science/paje/Makefile (props changed) head/science/psi3/Makefile (props changed) head/science/psychopy/Makefile (props changed) head/science/py-DendroPy/Makefile (props changed) head/science/py-hcluster/Makefile (props changed) head/science/py-obspy/Makefile (props changed) head/science/py-paida/Makefile (props changed) head/science/py-pydicom/Makefile (props changed) head/science/py-scikit-learn/Makefile (props changed) head/science/py-scimath/Makefile (props changed) head/science/py-ws2300/Makefile (props changed) head/science/pybrain/Makefile (props changed) head/science/pycdf/Makefile (props changed) head/science/ruby-netcdf/Makefile (props changed) head/science/simlib/Makefile (props changed) head/science/svmlight/Makefile (props changed) head/science/szip/Makefile (props changed) head/science/x11iraf/Makefile (props changed) head/science/xmakemol/Makefile (props changed) head/science/xmds/Makefile (props changed) head/security/ADMsmb/Makefile (props changed) head/security/ADMsnmp/Makefile (props changed) head/security/aescrypt/Makefile (props changed) head/security/aespipe/Makefile (props changed) head/security/aide/Makefile (props changed) head/security/amap/Makefile (props changed) head/security/aolserver-nsencrypt/Makefile (props changed) head/security/aolserver-nsmcrypt/Makefile (props changed) head/security/aolserver-nsmhash/Makefile (props changed) head/security/aolserver-nsopenssl/Makefile (props changed) head/security/aolserver-nssha1/Makefile (props changed) head/security/arm/Makefile (props changed) head/security/arpCounterattack/Makefile (props changed) head/security/autossh/Makefile (props changed) head/security/avcheck/Makefile (props changed) head/security/base/Makefile (props changed) head/security/bcrypt/Makefile (props changed) head/security/bcwipe/Makefile (props changed) head/security/bdc/Makefile (props changed) head/security/beecrypt/Makefile (props changed) head/security/belier/Makefile (props changed) head/security/bfbtester/Makefile (props changed) head/security/bioapi/Makefile (props changed) head/security/blindelephant/Makefile (props changed) head/security/bsdsfv/Makefile (props changed) head/security/bsmtrace/Makefile (props changed) head/security/bugs/Makefile (props changed) head/security/calife/Makefile (props changed) head/security/cfs/Makefile (props changed) head/security/cfv/Makefile (props changed) head/security/checkpassword-pam/Makefile (props changed) head/security/chkrootkit/Makefile (props changed) head/security/chroot_safe/Makefile (props changed) head/security/chrootuid/Makefile (props changed) head/security/cksfv/Makefile (props changed) head/security/clamav-milter/Makefile (props changed) head/security/clamav-unofficial-sigs/Makefile (props changed) head/security/clamcour/Makefile (props changed) head/security/clamd-stream-client/Makefile (props changed) head/security/clamsmtp/Makefile (props changed) head/security/cops/Makefile (props changed) head/security/courier-authlib-base/Makefile (props changed) head/security/courier-authlib/Makefile.dep (props changed) head/security/courier-authlib/Makefile.opt (props changed) head/security/courierpassd/Makefile (props changed) head/security/courierpasswd/Makefile (props changed) head/security/courieruserinfo/Makefile (props changed) head/security/crack/Makefile (props changed) head/security/crank/Makefile (props changed) head/security/create-cert/Makefile (props changed) head/security/cryptlib/Makefile (props changed) head/security/cryptstring/Makefile (props changed) head/security/dcetest/Makefile (props changed) head/security/ddos_scan/Makefile (props changed) head/security/didentd/Makefile (props changed) head/security/dirbuster/Makefile (props changed) head/security/distcache-devel/Makefile (props changed) head/security/distcache/Makefile (props changed) head/security/dmitry/Makefile (props changed) head/security/doorman/Makefile (props changed) head/security/dradis/Makefile (props changed) head/security/easypg/Makefile (props changed) head/security/expiretable/Makefile (props changed) head/security/f-prot/Makefile (props changed) head/security/fakeident/Makefile (props changed) head/security/fcheck/Makefile (props changed) head/security/fiked/Makefile (props changed) head/security/firewalk/Makefile (props changed) head/security/flawfinder/Makefile (props changed) head/security/fpc-hash/Makefile (props changed) head/security/fprint_demo/Makefile (props changed) head/security/fragroute/Makefile (props changed) head/security/fragrouter/Makefile (props changed) head/security/fsh/Makefile (props changed) head/security/fswatch/Makefile (props changed) head/security/ftimes/Makefile (props changed) head/security/fuzz/Makefile (props changed) head/security/fwanalog/Makefile (props changed) head/security/fwbuilder/Makefile (props changed) head/security/fwipe/Makefile (props changed) head/security/gag/Makefile (props changed) head/security/gcipher/Makefile (props changed) head/security/gnome-gpg/Makefile (props changed) head/security/gnome-keyring-sharp/Makefile (props changed) head/security/gnome-password-generator/Makefile (props changed) head/security/gnome-ssh-askpass/Makefile (props changed) head/security/gnutls-devel/Makefile.man (props changed) head/security/gorilla/Makefile (props changed) head/security/gringotts/Makefile (props changed) head/security/gtk-knocker/Makefile (props changed) head/security/hamachi/Makefile (props changed) head/security/hlfl/Makefile (props changed) head/security/hmap/Makefile (props changed) head/security/honggfuzz/Makefile (props changed) head/security/hs-Crypto/Makefile (props changed) head/security/hs-HsOpenSSL/Makefile (props changed) head/security/hs-RSA/Makefile (props changed) head/security/hs-SHA/Makefile (props changed) head/security/hs-certificate/Makefile (props changed) head/security/hs-clientsession/Makefile (props changed) head/security/hs-cprng-aes/Makefile (props changed) head/security/hs-crypto-api/Makefile (props changed) head/security/hs-crypto-conduit/Makefile (props changed) head/security/hs-crypto-pubkey-types/Makefile (props changed) head/security/hs-cryptocipher/Makefile (props changed) head/security/hs-cryptohash/Makefile (props changed) head/security/hs-digest/Makefile (props changed) head/security/hs-entropy/Makefile (props changed) head/security/hs-monadcryptorandom/Makefile (props changed) head/security/hs-pem/Makefile (props changed) head/security/hs-pureMD5/Makefile (props changed) head/security/hs-pwstore-fast/Makefile (props changed) head/security/hs-skein/Makefile (props changed) head/security/hs-tls-extra/Makefile (props changed) head/security/hs-tls/Makefile (props changed) head/security/iaikpkcs11wrapper/Makefile (props changed) head/security/idea/Makefile (props changed) head/security/ifd-slb_rf60/Makefile (props changed) head/security/ike-scan/Makefile (props changed) head/security/integrit/Makefile (props changed) head/security/ipfw2dshield/Makefile (props changed) head/security/ipguard/Makefile (props changed) head/security/ipv6toolkit/files/Makefile.in (props changed) head/security/ipv6toolkit/files/Makefile.lib.in (props changed) head/security/isakmpd/Makefile (props changed) head/security/jbrofuzz/Makefile (props changed) head/security/keynote/Makefile (props changed) head/security/keyprint/Makefile (props changed) head/security/knocker/Makefile (props changed) head/security/krb5-appl/Makefile (props changed) head/security/l0pht-watch/Makefile (props changed) head/security/labrea/Makefile (props changed) head/security/libbf/Makefile (props changed) head/security/libecc/Makefile (props changed) head/security/libfprint/Makefile (props changed) head/security/libgnomesu/Makefile (props changed) head/security/libgringotts/Makefile (props changed) head/security/libident/Makefile (props changed) head/security/libpwstor/Makefile (props changed) head/security/linux-f10-cyrus-sasl2/Makefile (props changed) head/security/linux-f10-gnutls/Makefile (props changed) head/security/linux-f10-libgcrypt/Makefile (props changed) head/security/linux-f10-libgpg-error/Makefile (props changed) head/security/linux-f10-libssh2/Makefile (props changed) head/security/linux-f10-libtasn1/Makefile (props changed) head/security/linux-f10-nss/Makefile (props changed) head/security/linux-f10-openssl/Makefile (props changed) head/security/lockdown/Makefile (props changed) head/security/logcheck/Makefile (props changed) head/security/lsh/Makefile (props changed) head/security/mac-robber/Makefile (props changed) head/security/maia/Makefile (props changed) head/security/mailzu/Makefile (props changed) head/security/makepasswd/Makefile (props changed) head/security/massh/Makefile (props changed) head/security/md4coll/Makefile (props changed) head/security/md5coll/Makefile (props changed) head/security/mdcrack/Makefile (props changed) head/security/medusa/Makefile (props changed) head/security/mhash/Makefile (props changed) head/security/mindterm-binary/Makefile (props changed) head/security/monkeysphere/Makefile (props changed) head/security/mosref/Makefile (props changed) head/security/mussh/Makefile (props changed) head/security/nacl/Makefile (props changed) head/security/nbaudit/Makefile (props changed) head/security/ncrack/Makefile (props changed) head/security/ncrypt/Makefile (props changed) head/security/nessus-plugins/Makefile (props changed) head/security/netpgp/Makefile (props changed) head/security/nettle/Makefile (props changed) head/security/nikto/Makefile (props changed) head/security/oath-toolkit/Makefile (props changed) head/security/obfsproxy/Makefile (props changed) head/security/ocaml-cryptgps/Makefile (props changed) head/security/ocaml-ssl/Makefile (props changed) head/security/op/Makefile (props changed) head/security/openbsm/Makefile (props changed) head/security/opencdk/Makefile (props changed) head/security/openct/Makefile (props changed) head/security/openfwtk/Makefile.man (props changed) head/security/openpgpsdk/Makefile (props changed) head/security/opensc/Makefile (props changed) head/security/openssh-askpass/Makefile (props changed) head/security/openssh-askpass/files/Makefile.in (props changed) head/security/openssl/Makefile (props changed) head/security/openvas-client/Makefile (props changed) head/security/openvas-libraries/Makefile (props changed) head/security/openvas-libraries/Makefile.common (props changed) head/security/openvas-plugins/Makefile (props changed) head/security/openvpn-admin/Makefile (props changed) head/security/openvpn-auth-radius/Makefile (props changed) head/security/ophcrack/Makefile (props changed) head/security/orthrus/Makefile (props changed) head/security/ossec-hids-client/Makefile (props changed) head/security/ossec-hids-local/Makefile (props changed) head/security/ossec-hids-server/Makefile (props changed) head/security/p11-kit/Makefile (props changed) head/security/p5-Crypt-RC6/Makefile (props changed) head/security/p5-Crypt-RIPEMD160/Makefile (props changed) head/security/p5-Crypt-RSA/Makefile (props changed) head/security/p5-Crypt-Random/Makefile (props changed) head/security/p5-Crypt-Rijndael_PP/Makefile (props changed) head/security/p5-Crypt-Serpent/Makefile (props changed) head/security/p5-Crypt-Twofish/Makefile (props changed) head/security/p5-Crypt-Twofish2/Makefile (props changed) head/security/p5-Crypt-xDBM_File/Makefile (props changed) head/security/p5-Digest-BubbleBabble/Makefile (props changed) head/security/p5-Digest-HMAC/Makefile (props changed) head/security/p5-Digest-MD2/Makefile (props changed) head/security/p5-Digest-MD5/Makefile (props changed) head/security/p5-Digest-SHA-PurePerl/Makefile (props changed) head/security/p5-Digest/Makefile (props changed) head/security/p5-File-Scan-ClamAV/Makefile (props changed) head/security/p5-Filter-CBC/Makefile (props changed) head/security/p5-GD-SecurityImage/Makefile (props changed) head/security/p5-GSSAPI/Makefile (props changed) head/security/p5-HTML-Email-Obfuscate/Makefile (props changed) head/security/p5-MD5/Makefile (props changed) head/security/p5-Net-OpenID-JanRain/Makefile (props changed) head/security/p5-Net-Radius-Server/Makefile (props changed) head/security/p5-Net-SSL-ExpireDate/Makefile (props changed) head/security/p5-Nmap-Scanner/Makefile (props changed) head/security/p5-OpenCA-CRR/Makefile (props changed) head/security/p5-OpenCA-OpenSSL/Makefile (props changed) head/security/p5-OpenCA-REQ/Makefile (props changed) head/security/p5-OpenCA-X509/Makefile (props changed) head/security/p5-PerlCryptLib/Makefile (props changed) head/security/p5-SHA/Makefile (props changed) head/security/p5-Sudo/Makefile (props changed) head/security/p5-Text-Password-Pronounceable/Makefile (props changed) head/security/p5-Tie-EncryptedHash/Makefile (props changed) head/security/pam-mysql/Makefile (props changed) head/security/pam-pgsql/Makefile (props changed) head/security/pam_abl/Makefile (props changed) head/security/pam_bsdbioapi/Makefile (props changed) head/security/pam_fprint/Makefile (props changed) head/security/pam_google_authenticator/Makefile (props changed) head/security/pam_helper/Makefile (props changed) head/security/pam_jail/Makefile (props changed) head/security/pam_mkhomedir/Makefile (props changed) head/security/pam_p11/Makefile (props changed) head/security/pam_per_user/Makefile (props changed) head/security/pam_pseudo/Makefile (props changed) head/security/pam_pwdfile/Makefile (props changed) head/security/pam_pwdfile/files/Makefile.bsd (props changed) head/security/pam_require/Makefile (props changed) head/security/pamtester/Makefile (props changed) head/security/pcsc-tools/Makefile (props changed) head/security/pear-Auth/Makefile (props changed) head/security/pear-Crypt_CBC/Makefile (props changed) head/security/pear-Crypt_DiffieHellman/Makefile (props changed) head/security/pear-Crypt_GPG/Makefile (props changed) head/security/pear-Horde_Auth/Makefile (props changed) head/security/pear-Horde_Crypt/Makefile (props changed) head/security/pear-Horde_Crypt_Blowfish/Makefile (props changed) head/security/pear-Horde_Group/Makefile (props changed) head/security/pear-Horde_Oauth/Makefile (props changed) head/security/pear-Horde_Perms/Makefile (props changed) head/security/pear-Horde_Secret/Makefile (props changed) head/security/pear-Horde_Share/Makefile (props changed) head/security/pear-LiveUser/Makefile (props changed) head/security/pear-LiveUser_Admin/Makefile (props changed) head/security/pecl-pam/Makefile (props changed) head/security/pecl-tcpwrap/Makefile (props changed) head/security/pft/Makefile (props changed) head/security/pgp/Makefile (props changed) head/security/pgpdump/Makefile (props changed) head/security/pgpgpg/Makefile (props changed) head/security/pgpin/Makefile (props changed) head/security/php-Auth_OpenID/Makefile (props changed) head/security/php-Auth_OpenID2/Makefile (props changed) head/security/php-openid-ldap/Makefile (props changed) head/security/php-suhosin/Makefile (props changed) head/security/php5-filter/Makefile (props changed) head/security/php5-hash/Makefile (props changed) head/security/php5-mcrypt/Makefile (props changed) head/security/php5-openssl/Makefile (props changed) head/security/php52-filter/Makefile (props changed) head/security/php52-hash/Makefile (props changed) head/security/php52-mcrypt/Makefile (props changed) head/security/php52-mhash/Makefile (props changed) head/security/php52-openssl/Makefile (props changed) head/security/php55-filter/Makefile (props changed) head/security/php55-hash/Makefile (props changed) head/security/php55-mcrypt/Makefile (props changed) head/security/php55-openssl/Makefile (props changed) head/security/phpdeadlock/Makefile (props changed) head/security/phpsecinfo/Makefile (props changed) head/security/pidentd/Makefile (props changed) head/security/pkcrack/Makefile (props changed) head/security/pkcs11-dump/Makefile (props changed) head/security/pkcs11-gateway/Makefile (props changed) head/security/pks/Makefile (props changed) head/security/portsentry/Makefile (props changed) head/security/prelude-pflogger/Makefile (props changed) head/security/proxycheck/Makefile (props changed) head/security/proxytunnel/Makefile (props changed) head/security/pscan/Makefile (props changed) head/security/pssh/Makefile (props changed) head/security/pulledpork/Makefile (props changed) head/security/pure-sfv/Makefile (props changed) head/security/pvk/Makefile (props changed) head/security/pwauth/Makefile (props changed) head/security/pwman/Makefile (props changed) head/security/pwman3/Makefile (props changed) head/security/py-PF/Makefile (props changed) head/security/py-Products.PluggableAuthService/Makefile (props changed) head/security/py-RestrictedPython/Makefile (props changed) head/security/py-borg.localrole/Makefile (props changed) head/security/py-cerealizer/Makefile (props changed) head/security/py-certify/Makefile (props changed) head/security/py-clamav/Makefile (props changed) head/security/py-cryptkit/Makefile (props changed) head/security/py-gnupg/Makefile (props changed) head/security/py-gnutls/Makefile (props changed) head/security/py-htpasswd/Makefile (props changed) head/security/py-kerberos/Makefile (props changed) head/security/py-mcrypt/Makefile (props changed) head/security/py-mhash/Makefile (props changed) head/security/py-openid/Makefile (props changed) head/security/py-openssl/Makefile (props changed) head/security/py-otr/Makefile (props changed) head/security/py-passlib/Makefile (props changed) head/security/py-plone.app.openid/Makefile (props changed) head/security/py-plone.keyring/Makefile (props changed) head/security/py-plone.openid/Makefile (props changed) head/security/py-plone.protect/Makefile (props changed) head/security/py-plone.session/Makefile (props changed) head/security/py-posix1e/Makefile (props changed) head/security/py-pow/Makefile (props changed) head/security/py-pyclamd/Makefile (props changed) head/security/py-pycryptopp/Makefile (props changed) head/security/py-pylibacl/Makefile (props changed) head/security/py-ssh/Makefile (props changed) head/security/py-sslstrip/Makefile (props changed) head/security/py-tlslite/Makefile (props changed) head/security/py-trustedpickle/Makefile (props changed) head/security/py-twofish/Makefile (props changed) head/security/py-volatility/Makefile (props changed) head/security/py-xmlsec/Makefile (props changed) head/security/py-yara-editor/Makefile (props changed) head/security/py-zope.app.authentication/Makefile (props changed) head/security/py-zope.app.localpermission/Makefile (props changed) head/security/py-zope.app.principalannotation/Makefile (props changed) head/security/py-zope.app.security/Makefile (props changed) head/security/py-zope.app.securitypolicy/Makefile (props changed) head/security/py-zope.authentication/Makefile (props changed) head/security/py-zope.login/Makefile (props changed) head/security/py-zope.password/Makefile (props changed) head/security/py-zope.pluggableauth/Makefile (props changed) head/security/py-zope.principalannotation/Makefile (props changed) head/security/py-zope.principalregistry/Makefile (props changed) head/security/py-zope.security/Makefile (props changed) head/security/py-zope.securitypolicy/Makefile (props changed) head/security/py-zope.session/Makefile (props changed) head/security/qca-cyrus-sasl/Makefile (props changed) head/security/qca-gnupg/Makefile (props changed) head/security/qca-ossl/Makefile (props changed) head/security/quantis-kmod/Makefile (props changed) head/security/racoon2/Makefile (props changed) head/security/radiusniff/Makefile (props changed) head/security/rainbowcrack/Makefile (props changed) head/security/ratproxy/Makefile (props changed) head/security/rats/Makefile (props changed) head/security/razorback-archiveInflate/Makefile (props changed) head/security/razorback-clamavNugget/Makefile (props changed) head/security/razorback-fileInject/Makefile (props changed) head/security/razorback-fsMonitor/Makefile (props changed) head/security/razorback-fsWalk/Makefile (props changed) head/security/razorback-masterNugget/Makefile (props changed) head/security/razorback-officeCat/Makefile (props changed) head/security/razorback-pdfFox/Makefile (props changed) head/security/razorback-scriptNugget/Makefile (props changed) head/security/razorback-swfScanner/Makefile (props changed) head/security/razorback-syslogNugget/Makefile (props changed) head/security/razorback-virusTotal/Makefile (props changed) head/security/razorback-yaraNugget/Makefile (props changed) head/security/rdigest/Makefile (props changed) head/security/ruby-camellia/Makefile (props changed) head/security/ruby-crypt/Makefile (props changed) head/security/ruby-hmac/Makefile (props changed) head/security/rubygem-ezcrypto/Makefile (props changed) head/security/rubygem-net-ssh-multi/Makefile (props changed) head/security/rubygem-razorback-scriptNugget/Makefile (props changed) head/security/rubygem-roauth/Makefile (props changed) head/security/safesh/Makefile (props changed) head/security/samba-virusfilter/Makefile (props changed) head/security/samhain-client/Makefile (props changed) head/security/samhain-server/Makefile (props changed) head/security/samhain/Makefile (props changed) head/security/sasp/Makefile (props changed) head/security/scamp/Makefile (props changed) head/security/scanlogd/Makefile (props changed) head/security/scrypt/Makefile (props changed) head/security/seccure/Makefile (props changed) head/security/sha/Makefile (props changed) head/security/shttpscanner/Makefile (props changed) head/security/sinfp/Makefile (props changed) head/security/sks/Makefile (props changed) head/security/slurpie/Makefile (props changed) head/security/slush/Makefile (props changed) head/security/smap/Makefile (props changed) head/security/smurflog/Makefile (props changed) head/security/snortreport/Makefile (props changed) head/security/snortsam/Makefile (props changed) head/security/softhsm/Makefile (props changed) head/security/spike-proxy/Makefile (props changed) head/security/spybye/Makefile (props changed) head/security/sqlmap/Makefile (props changed) head/security/srp/Makefile (props changed) head/security/ssh-copy-id/Makefile (props changed) head/security/ssh-gui/Makefile (props changed) head/security/ssh-multiadd/Makefile (props changed) head/security/sshguard-ipfilter/Makefile (props changed) head/security/sshguard-ipfw/Makefile (props changed) head/security/sshguard-pf/Makefile (props changed) head/security/sshguard/Makefile (props changed) head/security/sshpass/Makefile (props changed) head/security/sslscan/Makefile (props changed) head/security/sslsniffer/Makefile (props changed) head/security/sslwrap/Makefile (props changed) head/security/ssss/Makefile (props changed) head/security/sst/Makefile (props changed) head/security/sst/files/Makefile (props changed) head/security/starttls/Makefile (props changed) head/security/stegdetect/Makefile (props changed) head/security/strobe/Makefile (props changed) head/security/sud/Makefile (props changed) head/security/sudosh/Makefile (props changed) head/security/sudosh2/Makefile (props changed) head/security/switzerland/Makefile (props changed) head/security/termlog/Makefile (props changed) head/security/tinc/Makefile (props changed) head/security/tinysu/Makefile (props changed) head/security/tlswrap/Makefile (props changed) head/security/trinokiller/Makefile (props changed) head/security/tripwire-131/Makefile (props changed) head/security/truecrack/Makefile (props changed) head/security/tsshbatch/Makefile (props changed) head/security/tthsum/Makefile (props changed) head/security/tuntun/Makefile (props changed) head/security/umit/Makefile (props changed) head/security/unicornscan/Makefile (props changed) head/security/unssh/Makefile (props changed) head/security/vida/Makefile (props changed) head/security/vinetto/Makefile (props changed) head/security/vnccrack/Makefile (props changed) head/security/vpnc/Makefile (props changed) head/security/vuxml/Makefile (props changed) head/security/vxquery/Makefile (props changed) head/security/wapiti/Makefile (props changed) head/security/webscarab/Makefile (props changed) head/security/whatweb/Makefile (props changed) head/security/wipe/Makefile (props changed) head/security/xinetd/Makefile (props changed) head/security/xml-security/Makefile (props changed) head/security/xmlsec1/Makefile (props changed) head/security/xorsearch/Makefile (props changed) head/security/xspy/Makefile (props changed) head/security/yafic/Makefile (props changed) head/security/yapet/Makefile (props changed) head/security/yassl/Makefile (props changed) head/security/yersinia/Makefile (props changed) head/security/zzuf/Makefile (props changed) head/shells/44bsd-csh/Makefile (props changed) head/shells/Makefile (props changed) head/shells/ambit/Makefile (props changed) head/shells/bash-completion/Makefile (props changed) head/shells/bash-static/Makefile (props changed) head/shells/ch/Makefile (props changed) head/shells/dash/Makefile (props changed) head/shells/es/Makefile (props changed) head/shells/flash/Makefile (props changed) head/shells/heirloom-sh/Makefile (props changed) head/shells/ibsh/Makefile (props changed) head/shells/jailkit/Makefile (props changed) head/shells/lshell/Makefile (props changed) head/shells/nologinmsg/Makefile (props changed) head/shells/nologinmsg/files/Makefile (props changed) head/shells/pdksh/Makefile (props changed) head/shells/pear-PHP_Shell/Makefile (props changed) head/shells/rc/Makefile (props changed) head/shells/sash/Makefile (props changed) head/shells/scponly/Makefile (props changed) head/shells/tcshrc/Makefile (props changed) head/shells/v7sh/Makefile (props changed) head/shells/v7sh/files/Makefile (props changed) head/shells/viewglob/Makefile (props changed) head/shells/wapsh/Makefile (props changed) head/sysutils/3dm/Makefile (props changed) head/sysutils/44bsd-more/Makefile (props changed) head/sysutils/DTraceToolkit/Makefile (props changed) head/sysutils/LPRng/Makefile (props changed) head/sysutils/abck/Makefile (props changed) head/sysutils/abgx360/Makefile (props changed) head/sysutils/acpi_call/Makefile (props changed) head/sysutils/adtool/Makefile (props changed) head/sysutils/afbinit/Makefile (props changed) head/sysutils/afio/Makefile (props changed) head/sysutils/ah-tty/Makefile (props changed) head/sysutils/aimage/Makefile (props changed) head/sysutils/aird/Makefile (props changed) head/sysutils/amrstat/Makefile (props changed) head/sysutils/anacron/Makefile (props changed) head/sysutils/and/Makefile (props changed) head/sysutils/anteater/Makefile (props changed) head/sysutils/apcpwr/Makefile (props changed) head/sysutils/arcconf/Makefile (props changed) head/sysutils/areca-cli/Makefile (props changed) head/sysutils/asapm/Makefile (props changed) head/sysutils/ascpu/Makefile (props changed) head/sysutils/asfsm/Makefile (props changed) head/sysutils/asmem/Makefile (props changed) head/sysutils/asmon/Makefile (props changed) head/sysutils/asr-utils/Makefile (props changed) head/sysutils/ataidle/Makefile (props changed) head/sysutils/atitvout/Makefile (props changed) head/sysutils/automount/Makefile (props changed) head/sysutils/b43-fwcutter/Makefile (props changed) head/sysutils/bashburn/Makefile (props changed) head/sysutils/batmon/Makefile (props changed) head/sysutils/battmond/Makefile (props changed) head/sysutils/battray/Makefile (props changed) head/sysutils/bbapm/Makefile (props changed) head/sysutils/bchunk/Makefile (props changed) head/sysutils/be_agent/Makefile (props changed) head/sysutils/beadm-devel/Makefile (props changed) head/sysutils/beadm/Makefile (props changed) head/sysutils/bkpupsd/Makefile (props changed) head/sysutils/bksh/Makefile (props changed) head/sysutils/blimitd/Makefile (props changed) head/sysutils/bsd-splash-changer/Makefile (props changed) head/sysutils/bsdadminscripts/Makefile (props changed) head/sysutils/bsdcrashtar/Makefile (props changed) head/sysutils/bsdhwmon/Makefile (props changed) head/sysutils/bsdinfo/Makefile (props changed) head/sysutils/bsdmoted/Makefile (props changed) head/sysutils/bubblemon-dockapp/Makefile (props changed) head/sysutils/bubblemon2/Makefile (props changed) head/sysutils/byobu/Makefile (props changed) head/sysutils/ccd2iso/Makefile (props changed) head/sysutils/cdeploy/Makefile (props changed) head/sysutils/cdf/Makefile (props changed) head/sysutils/cdircmp/Makefile (props changed) head/sysutils/cdls/Makefile (props changed) head/sysutils/cdrdao/Makefile (props changed) head/sysutils/cdroot/Makefile (props changed) head/sysutils/cfengine/Makefile (props changed) head/sysutils/cfengine22/Makefile (props changed) head/sysutils/cfengine33/Makefile (props changed) head/sysutils/chgrep/Makefile (props changed) head/sysutils/ciso/Makefile (props changed) head/sysutils/ck4up/Makefile (props changed) head/sysutils/clean/Makefile (props changed) head/sysutils/clockspeed-conf/Makefile (props changed) head/sysutils/clockspeed/Makefile (props changed) head/sysutils/cloop-utils/Makefile (props changed) head/sysutils/cmdwatch/Makefile (props changed) head/sysutils/cmospwd/Makefile (props changed) head/sysutils/comconsole/Makefile (props changed) head/sysutils/confctl/Makefile (props changed) head/sysutils/confman/Makefile (props changed) head/sysutils/consolehm/Makefile (props changed) head/sysutils/contool/Makefile (props changed) head/sysutils/cotty/Makefile (props changed) head/sysutils/cpu/Makefile (props changed) head/sysutils/cpuburn/Makefile (props changed) head/sysutils/cpulimit/Makefile (props changed) head/sysutils/cpupowerd/Makefile (props changed) head/sysutils/cramfs/Makefile (props changed) head/sysutils/cronolog-devel/Makefile (props changed) head/sysutils/cronolog/Makefile (props changed) head/sysutils/curly/Makefile (props changed) head/sysutils/daa2iso/Makefile (props changed) head/sysutils/dae/Makefile (props changed) head/sysutils/daedalus/Makefile (props changed) head/sysutils/daemontools/Makefile (props changed) head/sysutils/dcfldd/Makefile (props changed) head/sysutils/ddpt/Makefile (props changed) head/sysutils/debootstrap/Makefile (props changed) head/sysutils/deltup/Makefile (props changed) head/sysutils/detach/Makefile (props changed) head/sysutils/detox/Makefile (props changed) head/sysutils/devstat/Makefile (props changed) head/sysutils/diskcheckd/Makefile (props changed) head/sysutils/disktool/Makefile (props changed) head/sysutils/disktype/Makefile (props changed) head/sysutils/dmidecode/Makefile (props changed) head/sysutils/doinkd/Makefile (props changed) head/sysutils/dolly/Makefile (props changed) head/sysutils/downtime/Makefile (props changed) head/sysutils/dt/Makefile (props changed) head/sysutils/du2ps/Makefile (props changed) head/sysutils/dupmerge/Makefile (props changed) head/sysutils/dvdbackup/Makefile (props changed) head/sysutils/dvdimagecmp/Makefile (props changed) head/sysutils/dvtm/Makefile (props changed) head/sysutils/dwatch/Makefile (props changed) head/sysutils/edid-decode/Makefile (props changed) head/sysutils/eject/Makefile (props changed) head/sysutils/endian/Makefile (props changed) head/sysutils/env4801/Makefile (props changed) head/sysutils/eroaster/Makefile (props changed) head/sysutils/etcmerge/Makefile (props changed) head/sysutils/etcupdate/Makefile (props changed) head/sysutils/eventlog/Makefile (props changed) head/sysutils/exfat-utils/Makefile (props changed) head/sysutils/extipl/Makefile (props changed) head/sysutils/ezjail/Makefile (props changed) head/sysutils/farbot/Makefile (props changed) head/sysutils/fatback/Makefile (props changed) head/sysutils/fconfig/Makefile (props changed) head/sysutils/fdupes/Makefile (props changed) head/sysutils/feather/Makefile (props changed) head/sysutils/fetchlog/Makefile (props changed) head/sysutils/ffs2recov/Makefile (props changed) head/sysutils/filedupe/Makefile (props changed) head/sysutils/fileprune/Makefile (props changed) head/sysutils/fileschanged/Makefile (props changed) head/sysutils/filetype/Makefile (props changed) head/sysutils/finfo/Makefile (props changed) head/sysutils/flasher/Makefile (props changed) head/sysutils/flog/Makefile (props changed) head/sysutils/flyback/Makefile (props changed) head/sysutils/fonteditfs/Makefile (props changed) head/sysutils/foremost/Makefile (props changed) head/sysutils/fortunelock/Makefile (props changed) head/sysutils/fpc-syslog/Makefile (props changed) head/sysutils/fpc-users/Makefile (props changed) head/sysutils/fpc-utmp/Makefile (props changed) head/sysutils/fpc-uuid/Makefile (props changed) head/sysutils/freebsd-snapshot/Makefile (props changed) head/sysutils/freecolor/Makefile (props changed) head/sysutils/freedt/Makefile (props changed) head/sysutils/freesbie/Makefile (props changed) head/sysutils/freqsdwn/files/Makefile.daemon (props changed) head/sysutils/freqsdwn/files/Makefile.subdir (props changed) head/sysutils/freqsdwn/files/Makefile.upsdown (props changed) head/sysutils/fsc/Makefile (props changed) head/sysutils/fstyp/Makefile (props changed) head/sysutils/fusefs-fusepak/Makefile (props changed) head/sysutils/fvcool/Makefile (props changed) head/sysutils/gaffitter/Makefile (props changed) head/sysutils/ganglia-webfrontend/Makefile (props changed) head/sysutils/gcdmaster/Makefile (props changed) head/sysutils/gdmap/Makefile (props changed) head/sysutils/geomWatch/Makefile (props changed) head/sysutils/getdelta/Makefile (props changed) head/sysutils/gkfreq/Makefile (props changed) head/sysutils/gkleds2/Makefile (props changed) head/sysutils/gkrellfire/Makefile (props changed) head/sysutils/gkrellflynn/Makefile (props changed) head/sysutils/gkrellm-trayicons/Makefile (props changed) head/sysutils/gksu/Makefile (props changed) head/sysutils/gnome-device-manager/Makefile (props changed) head/sysutils/gnome_subr/Makefile (props changed) head/sysutils/gpart/Makefile (props changed) head/sysutils/gpkgdep/Makefile (props changed) head/sysutils/gpte/Makefile (props changed) head/sysutils/graid5/Makefile (props changed) head/sysutils/graphicboot/Makefile (props changed) head/sysutils/gstopd/Makefile (props changed) head/sysutils/gstreamer-plugins-cdio/Makefile (props changed) head/sysutils/gstreamer-plugins-hal/Makefile (props changed) head/sysutils/hachoir-metadata/Makefile (props changed) head/sysutils/hachoir-subfile/Makefile (props changed) head/sysutils/hachoir-urwid/Makefile (props changed) head/sysutils/hachoir-wx/Makefile (props changed) head/sysutils/hal-info/Makefile (props changed) head/sysutils/hatop/Makefile (props changed) head/sysutils/hdrecover/Makefile (props changed) head/sysutils/healthd/Makefile (props changed) head/sysutils/heirloom/Makefile (props changed) head/sysutils/hextools/Makefile (props changed) head/sysutils/hfsutils/Makefile (props changed) head/sysutils/hidesvn/Makefile (props changed) head/sysutils/highlnk/Makefile (props changed) head/sysutils/hilite/Makefile (props changed) head/sysutils/host-setup/Makefile (props changed) head/sysutils/hoz/Makefile (props changed) head/sysutils/hpacucli/Makefile (props changed) head/sysutils/hs-angel/Makefile (props changed) head/sysutils/hs-cpu/Makefile (props changed) head/sysutils/httplog/Makefile (props changed) head/sysutils/hwstat/Makefile (props changed) head/sysutils/installwatch/Makefile (props changed) head/sysutils/iogen/Makefile (props changed) head/sysutils/iograph/Makefile (props changed) head/sysutils/ipa/Makefile (props changed) head/sysutils/ipad_charge/Makefile (props changed) head/sysutils/ipsc/Makefile (props changed) head/sysutils/isc-cron/Makefile (props changed) head/sysutils/istatd/Makefile (props changed) head/sysutils/jail2/Makefile (props changed) head/sysutils/jailctl/Makefile (props changed) head/sysutils/jailer/Makefile (props changed) head/sysutils/jailme/Makefile (props changed) head/sysutils/jailrc/Makefile (props changed) head/sysutils/jailutils/Makefile (props changed) head/sysutils/javaservicewrapper/Makefile (props changed) head/sysutils/jtopen/Makefile (props changed) head/sysutils/jvmtop/Makefile (props changed) head/sysutils/k8temp/Makefile (props changed) head/sysutils/kldfind/Makefile (props changed) head/sysutils/kldpatch/Makefile (props changed) head/sysutils/lbl-cf/Makefile (props changed) head/sysutils/lbl-hf/Makefile (props changed) head/sysutils/ldapenter/Makefile (props changed) head/sysutils/ledit/Makefile (props changed) head/sysutils/libchk/Makefile (props changed) head/sysutils/libgksu/Makefile (props changed) head/sysutils/libieee1284/Makefile (props changed) head/sysutils/libretto-config/Makefile (props changed) head/sysutils/libsunacl/Makefile (props changed) head/sysutils/libutempter/Makefile (props changed) head/sysutils/lineak-defaultplugin/Makefile (props changed) head/sysutils/lineakd/Makefile (props changed) head/sysutils/linux-afaapps/Makefile (props changed) head/sysutils/linux-nero/Makefile (props changed) head/sysutils/linuxfdisk/Makefile (props changed) head/sysutils/livecd/Makefile (props changed) head/sysutils/lmmon/Makefile (props changed) head/sysutils/logstalgia/Makefile (props changed) head/sysutils/logtool/Makefile (props changed) head/sysutils/logwatch/files/Makefile (props changed) head/sysutils/lookupd/Makefile (props changed) head/sysutils/lookupd_ldap/Makefile (props changed) head/sysutils/lxsplit/Makefile (props changed) head/sysutils/manck/Makefile (props changed) head/sysutils/mcelog/Makefile (props changed) head/sysutils/mcron/Makefile (props changed) head/sysutils/mcweject/Makefile (props changed) head/sysutils/mdcp/Makefile (props changed) head/sysutils/mdf2iso/Makefile (props changed) head/sysutils/megarc/Makefile (props changed) head/sysutils/memdump/Makefile (props changed) head/sysutils/memtest/Makefile (props changed) head/sysutils/memtest86+/Makefile (props changed) head/sysutils/memtest86/Makefile (props changed) head/sysutils/mgeupsd/Makefile (props changed) head/sysutils/minirsyslogd/Makefile (props changed) head/sysutils/mixer/Makefile (props changed) head/sysutils/mkfile/Makefile (props changed) head/sysutils/mkfwimage/Makefile (props changed) head/sysutils/mkntpwd/Makefile (props changed) head/sysutils/mksunbootcd/Makefile (props changed) head/sysutils/mmore/Makefile (props changed) head/sysutils/modules/Makefile (props changed) head/sysutils/monitord/Makefile (props changed) head/sysutils/mono-kmod/Makefile (props changed) head/sysutils/most/Makefile (props changed) head/sysutils/mountsmb2/Makefile (props changed) head/sysutils/mpiexec/Makefile (props changed) head/sysutils/msyslog/Makefile (props changed) head/sysutils/mtxorbd/Makefile (props changed) head/sysutils/multitail/Makefile (props changed) head/sysutils/muse/Makefile (props changed) head/sysutils/mybashburn/Makefile (props changed) head/sysutils/nagios-statd/Makefile (props changed) head/sysutils/nbosd/Makefile (props changed) head/sysutils/news/Makefile (props changed) head/sysutils/no-login/Makefile (props changed) head/sysutils/npadmin/Makefile (props changed) head/sysutils/nrg2iso/Makefile (props changed) head/sysutils/nut22/Makefile (props changed) head/sysutils/nvtv/Makefile (props changed) head/sysutils/oak/Makefile (props changed) head/sysutils/obliterate/Makefile (props changed) head/sysutils/ods2/Makefile (props changed) head/sysutils/open/Makefile (props changed) head/sysutils/openupsd/Makefile (props changed) head/sysutils/ori/Makefile (props changed) head/sysutils/p5-File-DirCompare/Makefile (props changed) head/sysutils/p5-File-Listing/Makefile (props changed) head/sysutils/p5-File-Next/Makefile (props changed) head/sysutils/p5-Iterator-File/Makefile (props changed) head/sysutils/p5-Proclet/Makefile (props changed) head/sysutils/p5-Schedule-Load/Makefile (props changed) head/sysutils/p5-Shell-Command/Makefile (props changed) head/sysutils/p5-Unix-Syslog/Makefile (props changed) head/sysutils/p5-User/Makefile (props changed) head/sysutils/paicc/Makefile (props changed) head/sysutils/pbimaker/Makefile (props changed) head/sysutils/pc-sysinstall/Makefile (props changed) head/sysutils/pcfclock/Makefile (props changed) head/sysutils/pcpustat/Makefile (props changed) head/sysutils/pdixtract/Makefile (props changed) head/sysutils/pdumpfs/Makefile (props changed) head/sysutils/pear-Cache_Lite/Makefile (props changed) head/sysutils/pear-File/Makefile (props changed) head/sysutils/pear-File_Fstab/Makefile (props changed) head/sysutils/pear-File_Gettext/Makefile (props changed) head/sysutils/pear-Horde_Log/Makefile (props changed) head/sysutils/pear-Horde_Vfs/Makefile (props changed) head/sysutils/pecl-fileinfo/Makefile (props changed) head/sysutils/pecl-proctitle/Makefile (props changed) head/sysutils/pefs-kmod/Makefile (props changed) head/sysutils/penv/Makefile (props changed) head/sysutils/personality/Makefile (props changed) head/sysutils/pflogx/Makefile (props changed) head/sysutils/phantom/Makefile (props changed) head/sysutils/php5-fileinfo/Makefile (props changed) head/sysutils/php5-posix/Makefile (props changed) head/sysutils/php52-posix/Makefile (props changed) head/sysutils/php55-fileinfo/Makefile (props changed) head/sysutils/php55-posix/Makefile (props changed) head/sysutils/pidof/Makefile (props changed) head/sysutils/pipemeter/Makefile (props changed) head/sysutils/plconfig/Makefile (props changed) head/sysutils/pmap/Makefile (props changed) head/sysutils/pmt/Makefile (props changed) head/sysutils/policykit/Makefile (props changed) head/sysutils/pp/Makefile (props changed) head/sysutils/prelink/Makefile (props changed) head/sysutils/prips/Makefile (props changed) head/sysutils/procmap/Makefile (props changed) head/sysutils/pstack/Makefile (props changed) head/sysutils/pwsafe/Makefile (props changed) head/sysutils/py-XenAPI/Makefile (props changed) head/sysutils/py-bcfg2/Makefile (props changed) head/sysutils/py-drmaa/Makefile (props changed) head/sysutils/py-filelike/Makefile (props changed) head/sysutils/py-stdiff/Makefile (props changed) head/sysutils/py-zdaemon/Makefile (props changed) head/sysutils/py-zfs/Makefile (props changed) head/sysutils/py-zfs/files/Makefile.lib (props changed) head/sysutils/py-zfs/files/Makefile.lib.v28 (props changed) head/sysutils/pydf/Makefile (props changed) head/sysutils/qjail2/Makefile (props changed) head/sysutils/qlogtools/Makefile (props changed) head/sysutils/radeontool/Makefile (props changed) head/sysutils/radmind/Makefile (props changed) head/sysutils/raincoat/Makefile (props changed) head/sysutils/rclean/Makefile (props changed) head/sysutils/rdiff-backup-devel/Makefile (props changed) head/sysutils/rdiff-backup/Makefile (props changed) head/sysutils/readlink/Makefile (props changed) head/sysutils/recoverdm/Makefile (props changed) head/sysutils/rename/Makefile (props changed) head/sysutils/respond/Makefile (props changed) head/sysutils/retail/Makefile (props changed) head/sysutils/rmonitor/Makefile (props changed) head/sysutils/roottail/Makefile (props changed) head/sysutils/rsyncmanager/Makefile (props changed) head/sysutils/rsyslog7-devel/Makefile (props changed) head/sysutils/rsyslog7/Makefile (props changed) head/sysutils/rsyslog8-devel/Makefile (props changed) head/sysutils/rtty/Makefile (props changed) head/sysutils/ruby-quota/Makefile (props changed) head/sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile (props changed) head/sysutils/rubygem-fluent-plugin-config-expander/Makefile (props changed) head/sysutils/rubygem-fluent-plugin-file-alternative/Makefile (props changed) head/sysutils/rubygem-fluent-plugin-tail-asis/Makefile (props changed) head/sysutils/rubygem-hiera-json/Makefile (props changed) head/sysutils/rubygem-hiera-puppet/Makefile (props changed) head/sysutils/rubygem-teamocil/Makefile (props changed) head/sysutils/runit/Makefile (props changed) head/sysutils/runwhen/Makefile (props changed) head/sysutils/safecat/Makefile (props changed) head/sysutils/samefile/Makefile (props changed) head/sysutils/samesame/Makefile (props changed) head/sysutils/sb16config/Makefile (props changed) head/sysutils/sb16config/files/Makefile (props changed) head/sysutils/sbniconfig/Makefile (props changed) head/sysutils/sbniconfig/files/Makefile (props changed) head/sysutils/scalpel/Makefile (props changed) head/sysutils/scan_ffs/Makefile (props changed) head/sysutils/schedutils/Makefile (props changed) head/sysutils/scprotect/Makefile (props changed) head/sysutils/screen/Makefile (props changed) head/sysutils/screenie/Makefile (props changed) head/sysutils/sdparm/Makefile (props changed) head/sysutils/seatools/Makefile (props changed) head/sysutils/sensors-applet/Makefile (props changed) head/sysutils/serpentine/Makefile (props changed) head/sysutils/setcdboot/Makefile (props changed) head/sysutils/setquota/Makefile (props changed) head/sysutils/sformat/Makefile (props changed) head/sysutils/sievelog/Makefile (props changed) head/sysutils/skill/Makefile (props changed) head/sysutils/sloth/Makefile (props changed) head/sysutils/slst/Makefile (props changed) head/sysutils/smp_utils/Makefile (props changed) head/sysutils/snowlog/Makefile (props changed) head/sysutils/socket/Makefile (props changed) head/sysutils/socklog/Makefile (props changed) head/sysutils/sortu/Makefile (props changed) head/sysutils/spindown/Makefile (props changed) head/sysutils/spinner/Makefile (props changed) head/sysutils/spiped/Makefile (props changed) head/sysutils/sshsudo/Makefile (props changed) head/sysutils/ssid/Makefile (props changed) head/sysutils/ssync/Makefile (props changed) head/sysutils/stmpclean/Makefile (props changed) head/sysutils/stress/Makefile (props changed) head/sysutils/superiotool/Makefile (props changed) head/sysutils/swapd/Makefile (props changed) head/sysutils/swapexd/Makefile (props changed) head/sysutils/swapmon/Makefile (props changed) head/sysutils/sysinfo/Makefile (props changed) head/sysutils/syslog-ng2/Makefile (props changed) head/sysutils/syslog-ng33/Makefile (props changed) head/sysutils/syslogger/Makefile (props changed) head/sysutils/system-tools-backends/Makefile (props changed) head/sysutils/sysupdate/Makefile (props changed) head/sysutils/tarsnap/Makefile (props changed) head/sysutils/tbku/Makefile (props changed) head/sysutils/tcplist/Makefile (props changed) head/sysutils/tdir/Makefile (props changed) head/sysutils/tentakel/Makefile (props changed) head/sysutils/throttle/Makefile (props changed) head/sysutils/timelimit/Makefile (props changed) head/sysutils/timemon/Makefile (props changed) head/sysutils/tm/Makefile (props changed) head/sysutils/tmpreaper/Makefile (props changed) head/sysutils/tmpwatch/Makefile (props changed) head/sysutils/torsmo/Makefile (props changed) head/sysutils/toshctl/Makefile (props changed) head/sysutils/tracker-gnome/Makefile (props changed) head/sysutils/tracker-libtrackergtk/Makefile (props changed) head/sysutils/tracker/Makefile (props changed) head/sysutils/tren/Makefile (props changed) head/sysutils/tss/Makefile (props changed) head/sysutils/ttyload/Makefile (props changed) head/sysutils/tzdialog/Makefile (props changed) head/sysutils/u-boot-beaglebone-eabi/Makefile (props changed) head/sysutils/ua/Makefile (props changed) head/sysutils/ucspi-proxy/Makefile (props changed) head/sysutils/ucspi-ssl-tls/Makefile (props changed) head/sysutils/ucspi-unix/Makefile (props changed) head/sysutils/ufs_copy/Makefile (props changed) head/sysutils/uif2iso/Makefile (props changed) head/sysutils/unquote/Makefile (props changed) head/sysutils/unstow/Makefile (props changed) head/sysutils/upsd/Makefile (props changed) head/sysutils/upsdaemon/Makefile (props changed) head/sysutils/usb_modeswitch/Makefile (props changed) head/sysutils/uschedule/Makefile (props changed) head/sysutils/userinfo/Makefile (props changed) head/sysutils/userlist/Makefile (props changed) head/sysutils/usrinfo/Makefile (props changed) head/sysutils/utcount/Makefile (props changed) head/sysutils/vbetool/Makefile (props changed) head/sysutils/vcp/Makefile (props changed) head/sysutils/videogen/Makefile (props changed) head/sysutils/vii/Makefile (props changed) head/sysutils/vils/Makefile (props changed) head/sysutils/vimpager/Makefile (props changed) head/sysutils/vmdktool/Makefile (props changed) head/sysutils/vobcopy/Makefile (props changed) head/sysutils/vordog/Makefile (props changed) head/sysutils/wait_on/Makefile (props changed) head/sysutils/watchdog/Makefile (props changed) head/sysutils/watchfolder/Makefile (props changed) head/sysutils/weedit/Makefile (props changed) head/sysutils/whowatch/Makefile (props changed) head/sysutils/wiimms/Makefile (props changed) head/sysutils/wmapm/Makefile (props changed) head/sysutils/wmapmload/Makefile (props changed) head/sysutils/wmbluecpu/Makefile (props changed) head/sysutils/wmbsdbatt/Makefile (props changed) head/sysutils/wmcpuload/Makefile (props changed) head/sysutils/wmdiskmon/Makefile (props changed) head/sysutils/wmfire/Makefile (props changed) head/sysutils/wmmemfree/Makefile (props changed) head/sysutils/wmmemload/Makefile (props changed) head/sysutils/wmtop/Makefile (props changed) head/sysutils/wmupmon/Makefile (props changed) head/sysutils/wtail/Makefile (props changed) head/sysutils/wuzzah/Makefile (props changed) head/sysutils/x86info/Makefile (props changed) head/sysutils/xacpim/Makefile (props changed) head/sysutils/xbatt/Makefile (props changed) head/sysutils/xbattbar/Makefile (props changed) head/sysutils/xcpustate/Makefile (props changed) head/sysutils/xfsm/Makefile (props changed) head/sysutils/xin/Makefile (props changed) head/sysutils/xjobs/Makefile (props changed) head/sysutils/xosview/Makefile (props changed) head/sysutils/xsi/Makefile (props changed) head/sysutils/yawho/Makefile (props changed) head/sysutils/zeroer/Makefile (props changed) head/sysutils/zfs-periodic/Makefile (props changed) head/sysutils/zfs-replicate/Makefile (props changed) head/sysutils/zfs-snapshot-clean/Makefile (props changed) head/sysutils/zfstools/Makefile (props changed) head/sysutils/zidrav/Makefile (props changed) head/textproc/2bsd-diff/Makefile (props changed) head/textproc/add-css-links/Makefile (props changed) head/textproc/af-aspell/Makefile (props changed) head/textproc/agrep/Makefile (props changed) head/textproc/am-aspell/Makefile (props changed) head/textproc/amberfish/Makefile (props changed) head/textproc/ansifilter/Makefile (props changed) head/textproc/ant-xinclude-task/Makefile (props changed) head/textproc/antiword/Makefile (props changed) head/textproc/apache-poi/Makefile (props changed) head/textproc/apache-solr3/Makefile (props changed) head/textproc/apertium/Makefile (props changed) head/textproc/archmage/Makefile (props changed) head/textproc/artha/Makefile (props changed) head/textproc/asm-xml/Makefile (props changed) head/textproc/asm-xml/files/Makefile (props changed) head/textproc/aspell/Makefile.inc (props changed) head/textproc/ast-aspell/Makefile (props changed) head/textproc/atom/Makefile (props changed) head/textproc/ats-contrib-parcomb/Makefile (props changed) head/textproc/az-aspell/Makefile (props changed) head/textproc/bar/Makefile (props changed) head/textproc/be-aspell/Makefile (props changed) head/textproc/bedic-data/Makefile (props changed) head/textproc/bg-aspell/Makefile (props changed) head/textproc/bg-hyphen/Makefile (props changed) head/textproc/bg-mythes/Makefile (props changed) head/textproc/bibtex2html/Makefile (props changed) head/textproc/bibtool/Makefile (props changed) head/textproc/bn-aspell/Makefile (props changed) head/textproc/bomstrip/Makefile (props changed) head/textproc/br-aspell/Makefile (props changed) head/textproc/british-ispell/Makefile (props changed) head/textproc/bsddiff/Makefile (props changed) head/textproc/bsdgrep/Makefile (props changed) head/textproc/bsdsort/Makefile (props changed) head/textproc/c2html/Makefile (props changed) head/textproc/ca-aspell/Makefile (props changed) head/textproc/cbedic/Makefile (props changed) head/textproc/cdiff/Makefile (props changed) head/textproc/chm2pdf/Makefile (props changed) head/textproc/clit/Makefile (props changed) head/textproc/coco/Makefile (props changed) head/textproc/codespell/Makefile (props changed) head/textproc/crimson/Makefile (props changed) head/textproc/cs-aspell/Makefile (props changed) head/textproc/cs-mythes/Makefile (props changed) head/textproc/csb-aspell/Makefile (props changed) head/textproc/csv2latex/Makefile (props changed) head/textproc/csv2xml/Makefile (props changed) head/textproc/cy-aspell/Makefile (props changed) head/textproc/da-aspell/Makefile (props changed) head/textproc/da-hyphen/Makefile (props changed) head/textproc/dadadodo/Makefile (props changed) head/textproc/dbacl/Makefile (props changed) head/textproc/dblatex/Makefile (props changed) head/textproc/dict/Makefile (props changed) head/textproc/dictem-xemacs21-mule/Makefile (props changed) head/textproc/dictem/Makefile (props changed) head/textproc/dictfmt/Makefile (props changed) head/textproc/dictionary/Makefile (props changed) head/textproc/doc-mode.el/Makefile (props changed) head/textproc/docbook-241/Makefile (props changed) head/textproc/docbook-300/Makefile (props changed) head/textproc/docbook-310/Makefile (props changed) head/textproc/docbook-400/Makefile (props changed) head/textproc/docbook-410/Makefile (props changed) head/textproc/docbook-420/Makefile (props changed) head/textproc/docbook-430/Makefile (props changed) head/textproc/docbook-440/Makefile (props changed) head/textproc/docbook-450/Makefile (props changed) head/textproc/docbook-500/Makefile (props changed) head/textproc/docbook-sk/Makefile (props changed) head/textproc/docbook-tdg/Makefile (props changed) head/textproc/docbook-to-man/Makefile (props changed) head/textproc/docbook-xml-430/Makefile (props changed) head/textproc/docbook-xml-440/Makefile (props changed) head/textproc/docbook-xml-450/Makefile (props changed) head/textproc/docbook-xml/Makefile (props changed) head/textproc/docbook-xsd/Makefile (props changed) head/textproc/docbook-xsl-ns/Makefile (props changed) head/textproc/docbook-xsl/Makefile (props changed) head/textproc/docbook/Makefile (props changed) head/textproc/docbookide.el/Makefile (props changed) head/textproc/docproj/Makefile (props changed) head/textproc/dom4j/Makefile (props changed) head/textproc/domc/Makefile (props changed) head/textproc/dsssl-docbook-modular/Makefile (props changed) head/textproc/dtd-catalogs/Makefile (props changed) head/textproc/dtd2relax/Makefile (props changed) head/textproc/duncan/Makefile (props changed) head/textproc/easydiff/Makefile (props changed) head/textproc/ecromedos/Makefile (props changed) head/textproc/ekhtml/Makefile (props changed) head/textproc/el-aspell/Makefile (props changed) head/textproc/el-hyphen/Makefile (props changed) head/textproc/emacs-wiki/Makefile (props changed) head/textproc/en-aspell/Makefile (props changed) head/textproc/en-hunspell/Makefile (props changed) head/textproc/en-mythes/Makefile (props changed) head/textproc/eo-aspell/Makefile (props changed) head/textproc/es-aspell/Makefile (props changed) head/textproc/es-hyphen/Makefile (props changed) head/textproc/es-ispell/Makefile (props changed) head/textproc/et-aspell/Makefile (props changed) head/textproc/exmpp/Makefile (props changed) head/textproc/exslt/Makefile (props changed) head/textproc/ezxml/Makefile (props changed) head/textproc/fa-aspell/Makefile (props changed) head/textproc/fex/Makefile (props changed) head/textproc/fi-aspell/Makefile (props changed) head/textproc/fist/Makefile (props changed) head/textproc/fixrtf/Makefile (props changed) head/textproc/fixrtf/src/Makefile (props changed) head/textproc/fldiff/Makefile (props changed) head/textproc/flip/Makefile (props changed) head/textproc/fo-aspell/Makefile (props changed) head/textproc/foiltex/Makefile (props changed) head/textproc/fop/Makefile (props changed) head/textproc/fy-aspell/Makefile (props changed) head/textproc/ga-aspell/Makefile (props changed) head/textproc/gastex/Makefile (props changed) head/textproc/gd-aspell/Makefile (props changed) head/textproc/gdome2/Makefile (props changed) head/textproc/gl-aspell/Makefile (props changed) head/textproc/glark/Makefile (props changed) head/textproc/glimpse/Makefile (props changed) head/textproc/glpi-plugins-AdditionalReports/Makefile (props changed) head/textproc/glpi-plugins-DataInjection/Makefile (props changed) head/textproc/gnome-translate/Makefile (props changed) head/textproc/goldendict/Makefile (props changed) head/textproc/google-ctemplate/Makefile (props changed) head/textproc/gpp/Makefile (props changed) head/textproc/grap/Makefile (props changed) head/textproc/grc-aspell/Makefile (props changed) head/textproc/groff/Makefile (props changed) head/textproc/gtkspell-reference/Makefile (props changed) head/textproc/gu-aspell/Makefile (props changed) head/textproc/gutenmark/Makefile (props changed) head/textproc/gv-aspell/Makefile (props changed) head/textproc/heirloom-doctools/Makefile (props changed) head/textproc/hgrep/Makefile (props changed) head/textproc/hhm/Makefile (props changed) head/textproc/hhm/files/Makefile (props changed) head/textproc/hi-aspell/Makefile (props changed) head/textproc/highlight/Makefile (props changed) head/textproc/hil-aspell/Makefile (props changed) head/textproc/hr-aspell/Makefile (props changed) head/textproc/hs-Diff/Makefile (props changed) head/textproc/hs-HStringTemplate/Makefile (props changed) head/textproc/hs-HaXml/Makefile (props changed) head/textproc/hs-attoparsec-conduit/Makefile (props changed) head/textproc/hs-attoparsec-enumerator/Makefile (props changed) head/textproc/hs-attoparsec/Makefile (props changed) head/textproc/hs-blaze-html/Makefile (props changed) head/textproc/hs-blaze-markup/Makefile (props changed) head/textproc/hs-bytestring-csv/Makefile (props changed) head/textproc/hs-case-insensitive/Makefile (props changed) head/textproc/hs-citeproc-hs/Makefile (props changed) head/textproc/hs-csv/Makefile (props changed) head/textproc/hs-double-conversion/Makefile (props changed) head/textproc/hs-feed/Makefile (props changed) head/textproc/hs-highlighting-kate/Makefile (props changed) head/textproc/hs-hs-bibutils/Makefile (props changed) head/textproc/hs-html-conduit/Makefile (props changed) head/textproc/hs-html/Makefile (props changed) head/textproc/hs-hxt-charproperties/Makefile (props changed) head/textproc/hs-hxt-regex-xmlschema/Makefile (props changed) head/textproc/hs-hxt-unicode/Makefile (props changed) head/textproc/hs-hxt/Makefile (props changed) head/textproc/hs-lhs2tex/Makefile (props changed) head/textproc/hs-libxml/Makefile (props changed) head/textproc/hs-pandoc-types/Makefile (props changed) head/textproc/hs-pandoc/Makefile (props changed) head/textproc/hs-parsec/Makefile (props changed) head/textproc/hs-polyparse/Makefile (props changed) head/textproc/hs-regex-base/Makefile (props changed) head/textproc/hs-regex-compat/Makefile (props changed) head/textproc/hs-regex-pcre-builtin/Makefile (props changed) head/textproc/hs-regex-posix/Makefile (props changed) head/textproc/hs-stringsearch/Makefile (props changed) head/textproc/hs-tagsoup/Makefile (props changed) head/textproc/hs-tagstream-conduit/Makefile (props changed) head/textproc/hs-texmath/Makefile (props changed) head/textproc/hs-xhtml/Makefile (props changed) head/textproc/hs-xml-conduit/Makefile (props changed) head/textproc/hs-xml-types/Makefile (props changed) head/textproc/hs-xml/Makefile (props changed) head/textproc/hs-xmlhtml/Makefile (props changed) head/textproc/hs-yaml/Makefile (props changed) head/textproc/hsb-aspell/Makefile (props changed) head/textproc/html-pretty/Makefile (props changed) head/textproc/html/Makefile (props changed) head/textproc/html2fo/Makefile (props changed) head/textproc/html2tex/Makefile (props changed) head/textproc/html2text/Makefile (props changed) head/textproc/htmlc/Makefile (props changed) head/textproc/htmldoc/Makefile (props changed) head/textproc/htmlise/Makefile (props changed) head/textproc/htmlize.el/Makefile (props changed) head/textproc/hy-aspell/Makefile (props changed) head/textproc/ia-aspell/Makefile (props changed) head/textproc/ibus-el/Makefile (props changed) head/textproc/id-aspell/Makefile (props changed) head/textproc/id-hyphen/Makefile (props changed) head/textproc/info2html/Makefile (props changed) head/textproc/ipdf/Makefile (props changed) head/textproc/is-aspell/Makefile (props changed) head/textproc/is-hyphen/Makefile (props changed) head/textproc/iso12083/Makefile (props changed) head/textproc/iso8879/Makefile (props changed) head/textproc/ispell/Makefile (props changed) head/textproc/it-aspell/Makefile (props changed) head/textproc/it-hunspell/Makefile (props changed) head/textproc/it-hyphen/Makefile (props changed) head/textproc/it-ispell/Makefile (props changed) head/textproc/it-mythes/Makefile (props changed) head/textproc/itstool/Makefile (props changed) head/textproc/jade/Makefile (props changed) head/textproc/jakarta-commons-digester/Makefile (props changed) head/textproc/jalingo/Makefile (props changed) head/textproc/jarnal/Makefile (props changed) head/textproc/java2html/Makefile (props changed) head/textproc/jaxup/Makefile (props changed) head/textproc/jdictionary/Makefile.plugin (props changed) head/textproc/jing/Makefile (props changed) head/textproc/jrefentry/Makefile (props changed) head/textproc/kmfl-european-latin/Makefile (props changed) head/textproc/kmfl-khmer/Makefile (props changed) head/textproc/kmfl-sil-ezra/Makefile (props changed) head/textproc/kmfl-sil-galatia/Makefile (props changed) head/textproc/kmfl-sil-ipa-unicode/Makefile (props changed) head/textproc/kmfl-sil-panafrican-latin/Makefile (props changed) head/textproc/kmfl-sil-yi/Makefile (props changed) head/textproc/kmfl-varamozhi-malayalam/Makefile (props changed) head/textproc/kn-aspell/Makefile (props changed) head/textproc/ku-aspell/Makefile (props changed) head/textproc/ky-aspell/Makefile (props changed) head/textproc/l2a/Makefile (props changed) head/textproc/la-aspell/Makefile (props changed) head/textproc/latex-service/Makefile (props changed) head/textproc/latex2html/Makefile (props changed) head/textproc/libcsv/files/Makefile (props changed) head/textproc/libexttextcat/Makefile (props changed) head/textproc/libguess/Makefile (props changed) head/textproc/libkmfl/Makefile (props changed) head/textproc/libsphinxclient/Makefile (props changed) head/textproc/libstree/Makefile (props changed) head/textproc/libtextcat/Makefile (props changed) head/textproc/libtre/Makefile (props changed) head/textproc/libuninameslist/Makefile (props changed) head/textproc/libwps/Makefile (props changed) head/textproc/libxml++26-reference/Makefile (props changed) head/textproc/libxml++26/Makefile (props changed) head/textproc/libxml2-reference/Makefile (props changed) head/textproc/libxode/Makefile (props changed) head/textproc/libxslt-reference/Makefile (props changed) head/textproc/libyaml/Makefile (props changed) head/textproc/linux-f10-aspell/Makefile (props changed) head/textproc/linux-f10-expat/Makefile (props changed) head/textproc/linux-f10-libxml2/Makefile (props changed) head/textproc/linux-f10-scim-gtk/Makefile (props changed) head/textproc/linux-f10-scim-libs/Makefile (props changed) head/textproc/linuxdoc/Makefile (props changed) head/textproc/localize/Makefile (props changed) head/textproc/lt-aspell/Makefile (props changed) head/textproc/lt-hyphen/Makefile (props changed) head/textproc/lttoolbox/Makefile (props changed) head/textproc/luaexpat/Makefile (props changed) head/textproc/lv-aspell/Makefile (props changed) head/textproc/makefaq/Makefile (props changed) head/textproc/manued.el/Makefile (props changed) head/textproc/mathml-xsd/Makefile (props changed) head/textproc/mdocml/Makefile (props changed) head/textproc/metauml/Makefile (props changed) head/textproc/mgdiff/Makefile (props changed) head/textproc/mguesser/Makefile (props changed) head/textproc/mi-aspell/Makefile (props changed) head/textproc/minised/Makefile (props changed) head/textproc/mk-aspell/Makefile (props changed) head/textproc/mkcatalog/Makefile (props changed) head/textproc/ml-aspell/Makefile (props changed) head/textproc/ml1/Makefile (props changed) head/textproc/mn-aspell/Makefile (props changed) head/textproc/mr-aspell/Makefile (props changed) head/textproc/ms-aspell/Makefile (props changed) head/textproc/mt-aspell/Makefile (props changed) head/textproc/multimarkdown/Makefile (props changed) head/textproc/muse/Makefile (props changed) head/textproc/mythes/Makefile (props changed) head/textproc/nb-aspell/Makefile (props changed) head/textproc/nds-aspell/Makefile (props changed) head/textproc/nl-aspell/Makefile (props changed) head/textproc/nl-hunspell/Makefile (props changed) head/textproc/nl-hyphen/Makefile (props changed) head/textproc/nl-ispell/Makefile (props changed) head/textproc/nltk/Makefile (props changed) head/textproc/nn-aspell/Makefile (props changed) head/textproc/no-hunspell/Makefile (props changed) head/textproc/nunnimcax/Makefile (props changed) head/textproc/nunnimcax/files/Makefile (props changed) head/textproc/nux/Makefile (props changed) head/textproc/ny-aspell/Makefile (props changed) head/textproc/ocaml-csv/Makefile (props changed) head/textproc/ocaml-expat/Makefile (props changed) head/textproc/ocaml-pxp/Makefile (props changed) head/textproc/ocaml-text/Makefile (props changed) head/textproc/ocaml-tyxml/Makefile (props changed) head/textproc/openfts/Makefile (props changed) head/textproc/openvanilla-framework/Makefile (props changed) head/textproc/or-aspell/Makefile (props changed) head/textproc/p5-Algorithm-RabinKarp/Makefile (props changed) head/textproc/p5-Apache-ParseLog/Makefile (props changed) head/textproc/p5-BibTeX-Parser/Makefile (props changed) head/textproc/p5-Bloom-Filter/Makefile (props changed) head/textproc/p5-CSS-Croco/Makefile (props changed) head/textproc/p5-CSS-Squish/Makefile (props changed) head/textproc/p5-CSS-Tiny/Makefile (props changed) head/textproc/p5-CSS/Makefile (props changed) head/textproc/p5-Chess-PGN-Parse/Makefile (props changed) head/textproc/p5-Class-CSV/Makefile (props changed) head/textproc/p5-Data-FormValidator-Constraints-DateTime/Makefile (props changed) head/textproc/p5-Dev-Bollocks/Makefile (props changed) head/textproc/p5-DocSet/Makefile (props changed) head/textproc/p5-Filter-Simple/Makefile (props changed) head/textproc/p5-Games-Dissociate/Makefile (props changed) head/textproc/p5-HTML-Copy/Makefile (props changed) head/textproc/p5-HTML-EscapeEvil/Makefile (props changed) head/textproc/p5-HTML-RewriteAttributes/Makefile (props changed) head/textproc/p5-HTML-SuperForm/Makefile (props changed) head/textproc/p5-HTML-TagFilter/Makefile (props changed) head/textproc/p5-HTML-Tiny/Makefile (props changed) head/textproc/p5-HTML-Truncate/Makefile (props changed) head/textproc/p5-IDNA-Punycode/Makefile (props changed) head/textproc/p5-LaTeX-TOM/Makefile (props changed) head/textproc/p5-Lingua-Conjunction/Makefile (props changed) head/textproc/p5-Lingua-EN-Gender/Makefile (props changed) head/textproc/p5-Lingua-EN-Infinitive/Makefile (props changed) head/textproc/p5-Lingua-EN-Inflect/Makefile (props changed) head/textproc/p5-Lingua-EN-NameCase/Makefile (props changed) head/textproc/p5-Lingua-EN-Numbers-Ordinate/Makefile (props changed) head/textproc/p5-Lingua-EN-Sentence/Makefile (props changed) head/textproc/p5-Lingua-EN-Squeeze/Makefile (props changed) head/textproc/p5-Lingua-EN-Tagger/Makefile (props changed) head/textproc/p5-Lingua-Preferred/Makefile (props changed) head/textproc/p5-Lingua-Stem-Snowball-No/Makefile (props changed) head/textproc/p5-Lingua-Stem-Snowball-Se/Makefile (props changed) head/textproc/p5-Lingua-Stem/Makefile (props changed) head/textproc/p5-Lingua-StopWords/Makefile (props changed) head/textproc/p5-Lingua-Treebank/Makefile (props changed) head/textproc/p5-MKDoc-XML/Makefile (props changed) head/textproc/p5-Makefile-Parser/Makefile (props changed) head/textproc/p5-MathML-Entities/Makefile (props changed) head/textproc/p5-Net-YASA/Makefile (props changed) head/textproc/p5-Number-Spell/Makefile (props changed) head/textproc/p5-ODF-lpOD/Makefile (props changed) head/textproc/p5-PDF-API3/Makefile (props changed) head/textproc/p5-PDF-FromHTML/Makefile (props changed) head/textproc/p5-POE-Filter-XML/Makefile (props changed) head/textproc/p5-POSIX-Regex/Makefile (props changed) head/textproc/p5-PPIx-Utilities/Makefile (props changed) head/textproc/p5-Parse-Syslog/Makefile (props changed) head/textproc/p5-Petal-CodePerl/Makefile (props changed) head/textproc/p5-Petal-Mail/Makefile (props changed) head/textproc/p5-Petal-Utils/Makefile (props changed) head/textproc/p5-Plucene-Simple/Makefile (props changed) head/textproc/p5-Pod-Autopod/Makefile (props changed) head/textproc/p5-Pod-Constants/Makefile (props changed) head/textproc/p5-Pod-DocBook/Makefile (props changed) head/textproc/p5-Pod-Escapes/Makefile (props changed) head/textproc/p5-Pod-POM-View-HTML-Filter/Makefile (props changed) head/textproc/p5-Pod-Parser/Makefile (props changed) head/textproc/p5-Pod-XML/Makefile (props changed) head/textproc/p5-Pod-Xhtml/Makefile (props changed) head/textproc/p5-RDF-Simple/Makefile (props changed) head/textproc/p5-RDFStore/Makefile (props changed) head/textproc/p5-RTF-Parser/Makefile (props changed) head/textproc/p5-RTF-Tokenizer/Makefile (props changed) head/textproc/p5-RTF-Writer/Makefile (props changed) head/textproc/p5-Regex-PreSuf/Makefile (props changed) head/textproc/p5-Regexp-Common-Email-Address/Makefile (props changed) head/textproc/p5-Regexp-Copy/Makefile (props changed) head/textproc/p5-Regexp-Log-Common/Makefile (props changed) head/textproc/p5-Regexp-Log/Makefile (props changed) head/textproc/p5-SGML-DTDParse/Makefile (props changed) head/textproc/p5-Search-Estraier/Makefile (props changed) head/textproc/p5-Search-Saryer/Makefile (props changed) head/textproc/p5-Search-VectorSpace/Makefile (props changed) head/textproc/p5-Sort-ArbBiLex/Makefile (props changed) head/textproc/p5-Spork/Makefile (props changed) head/textproc/p5-Spreadsheet-WriteExcelXML/Makefile (props changed) head/textproc/p5-String-Compare-ConstantTime/Makefile (props changed) head/textproc/p5-String-Scanf/Makefile (props changed) head/textproc/p5-String-ShowDiff/Makefile (props changed) head/textproc/p5-Syntax-Highlight-Engine-Kate/Makefile (props changed) head/textproc/p5-TeX-Encode/Makefile (props changed) head/textproc/p5-Template-Extract/Makefile (props changed) head/textproc/p5-Template-Magic/Makefile (props changed) head/textproc/p5-Template-Plugin-HTML-SuperForm/Makefile (props changed) head/textproc/p5-Test-Perl-Critic/Makefile (props changed) head/textproc/p5-Text-Affixes/Makefile (props changed) head/textproc/p5-Text-Aspell/Makefile (props changed) head/textproc/p5-Text-Balanced/Makefile (props changed) head/textproc/p5-Text-BibTeX/Makefile (props changed) head/textproc/p5-Text-CSV/Makefile (props changed) head/textproc/p5-Text-CSV_XS/Makefile (props changed) head/textproc/p5-Text-CharWidth/Makefile (props changed) head/textproc/p5-Text-Chomp/Makefile (props changed) head/textproc/p5-Text-Context/Makefile (props changed) head/textproc/p5-Text-Diff3/Makefile (props changed) head/textproc/p5-Text-Emoticon-GoogleTalk/Makefile (props changed) head/textproc/p5-Text-ExtractWords/Makefile (props changed) head/textproc/p5-Text-Flow/Makefile (props changed) head/textproc/p5-Text-FormatTable/Makefile (props changed) head/textproc/p5-Text-German/Makefile (props changed) head/textproc/p5-Text-Glob/Makefile (props changed) head/textproc/p5-Text-Greeking/Makefile (props changed) head/textproc/p5-Text-Haml/Makefile (props changed) head/textproc/p5-Text-Hatena/Makefile (props changed) head/textproc/p5-Text-Highlight/Makefile (props changed) head/textproc/p5-Text-Lorem/Makefile (props changed) head/textproc/p5-Text-Metaphone/Makefile (props changed) head/textproc/p5-Text-MicroTemplate/Makefile (props changed) head/textproc/p5-Text-MultiMarkdown/Makefile (props changed) head/textproc/p5-Text-NeatTemplate/Makefile (props changed) head/textproc/p5-Text-Ngram/Makefile (props changed) head/textproc/p5-Text-Ngrams/Makefile (props changed) head/textproc/p5-Text-Original/Makefile (props changed) head/textproc/p5-Text-ParseWords/Makefile (props changed) head/textproc/p5-Text-Quoted/Makefile (props changed) head/textproc/p5-Text-Reflow/Makefile (props changed) head/textproc/p5-Text-Reform/Makefile (props changed) head/textproc/p5-Text-Similarity/Makefile (props changed) head/textproc/p5-Text-SimpleTable/Makefile (props changed) head/textproc/p5-Text-Tabs+Wrap/Makefile (props changed) head/textproc/p5-Text-Template/Makefile (props changed) head/textproc/p5-Text-Trac/Makefile (props changed) head/textproc/p5-Text-WordDiff/Makefile (props changed) head/textproc/p5-Tree-Nary/Makefile (props changed) head/textproc/p5-UML-Sequence/Makefile (props changed) head/textproc/p5-UML-State/Makefile (props changed) head/textproc/p5-Unicode-EastAsianWidth/Makefile (props changed) head/textproc/p5-WordNet-QueryData/Makefile (props changed) head/textproc/p5-WordNet-Similarity/Makefile (props changed) head/textproc/p5-XML-Atom-Filter/Makefile (props changed) head/textproc/p5-XML-Atom-Stream/Makefile (props changed) head/textproc/p5-XML-Atom-Syndication/Makefile (props changed) head/textproc/p5-XML-Atom/Makefile (props changed) head/textproc/p5-XML-DOM-Lite/Makefile (props changed) head/textproc/p5-XML-DOM2/Makefile (props changed) head/textproc/p5-XML-DifferenceMarkup/Makefile (props changed) head/textproc/p5-XML-Directory/Makefile (props changed) head/textproc/p5-XML-Driver-HTML/Makefile (props changed) head/textproc/p5-XML-Dumper/Makefile (props changed) head/textproc/p5-XML-Elemental/Makefile (props changed) head/textproc/p5-XML-Encoding/Makefile (props changed) head/textproc/p5-XML-Feed-Deduper/Makefile (props changed) head/textproc/p5-XML-Feed/Makefile (props changed) head/textproc/p5-XML-Filter-BufferText/Makefile (props changed) head/textproc/p5-XML-Filter-DetectWS/Makefile (props changed) head/textproc/p5-XML-Filter-Reindent/Makefile (props changed) head/textproc/p5-XML-Filter-SAX1toSAX2/Makefile (props changed) head/textproc/p5-XML-Filter-SAXT/Makefile (props changed) head/textproc/p5-XML-Filter-XInclude/Makefile (props changed) head/textproc/p5-XML-Filter-XSLT/Makefile (props changed) head/textproc/p5-XML-Flow/Makefile (props changed) head/textproc/p5-XML-Generator-DBI/Makefile (props changed) head/textproc/p5-XML-Handler-Dtd2DocBook/Makefile (props changed) head/textproc/p5-XML-Handler-HTMLWriter/Makefile (props changed) head/textproc/p5-XML-Handler-YAWriter/Makefile (props changed) head/textproc/p5-XML-LibXML-Iterator/Makefile (props changed) head/textproc/p5-XML-Liberal/Makefile (props changed) head/textproc/p5-XML-Literal/Makefile (props changed) head/textproc/p5-XML-NamespaceSupport/Makefile (props changed) head/textproc/p5-XML-NodeFilter/Makefile (props changed) head/textproc/p5-XML-Quote/Makefile (props changed) head/textproc/p5-XML-RAI/Makefile (props changed) head/textproc/p5-XML-RSS-Liberal/Makefile (props changed) head/textproc/p5-XML-RSS-SimpleGen/Makefile (props changed) head/textproc/p5-XML-RSSLite/Makefile (props changed) head/textproc/p5-XML-RegExp/Makefile (props changed) head/textproc/p5-XML-SAX-ExpatXS/Makefile (props changed) head/textproc/p5-XML-SAX-Machines/Makefile (props changed) head/textproc/p5-XML-SAX-Simple/Makefile (props changed) head/textproc/p5-XML-SAX/Makefile (props changed) head/textproc/p5-XML-SAXDriver-CSV/Makefile (props changed) head/textproc/p5-XML-SAXDriver-Excel/Makefile (props changed) head/textproc/p5-XML-Schematron/Makefile (props changed) head/textproc/p5-XML-Simple/Makefile (props changed) head/textproc/p5-XML-SimpleObject-LibXML/Makefile (props changed) head/textproc/p5-XML-Tiny/Makefile (props changed) head/textproc/p5-XML-Twig/Makefile (props changed) head/textproc/p5-XML-XPath/Makefile (props changed) head/textproc/p5-XML-XPathEngine/Makefile (props changed) head/textproc/p5-XML-XSH/Makefile (props changed) head/textproc/p5-YAPE-HTML/Makefile (props changed) head/textproc/p5-YAPE-Regex-Explain/Makefile (props changed) head/textproc/p5-YAPE-Regex/Makefile (props changed) head/textproc/p5-dTemplate/Makefile (props changed) head/textproc/p5-xmltv/Makefile (props changed) head/textproc/pa-aspell/Makefile (props changed) head/textproc/par/Makefile (props changed) head/textproc/pardiff/Makefile (props changed) head/textproc/pcrs/Makefile (props changed) head/textproc/pdftohtml/Makefile (props changed) head/textproc/pear-Horde_Kolab_Format/Makefile (props changed) head/textproc/pear-Horde_Pdf/Makefile (props changed) head/textproc/pear-Horde_SpellChecker/Makefile (props changed) head/textproc/pear-Horde_Text_Diff/Makefile (props changed) head/textproc/pear-Horde_Text_Filter/Makefile (props changed) head/textproc/pear-Horde_Text_Filter_Csstidy/Makefile (props changed) head/textproc/pear-Horde_Text_Flowed/Makefile (props changed) head/textproc/pear-Horde_Xml_Element/Makefile (props changed) head/textproc/pear-Horde_Xml_Wbxml/Makefile (props changed) head/textproc/pecl-doublemetaphone/Makefile (props changed) head/textproc/pecl-enchant/Makefile (props changed) head/textproc/pecl-html_parse/Makefile (props changed) head/textproc/pecl-stem/Makefile (props changed) head/textproc/pecl-wbxml/Makefile (props changed) head/textproc/perl2html/Makefile (props changed) head/textproc/permute/Makefile (props changed) head/textproc/php5-ctype/Makefile (props changed) head/textproc/php5-dom/Makefile (props changed) head/textproc/php5-pspell/Makefile (props changed) head/textproc/php5-simplexml/Makefile (props changed) head/textproc/php5-wddx/Makefile (props changed) head/textproc/php5-xml/Makefile (props changed) head/textproc/php5-xmlreader/Makefile (props changed) head/textproc/php5-xmlwriter/Makefile (props changed) head/textproc/php5-xsl/Makefile (props changed) head/textproc/php52-ctype/Makefile (props changed) head/textproc/php52-dom/Makefile (props changed) head/textproc/php52-pspell/Makefile (props changed) head/textproc/php52-simplexml/Makefile (props changed) head/textproc/php52-wddx/Makefile (props changed) head/textproc/php52-xml/Makefile (props changed) head/textproc/php52-xmlreader/Makefile (props changed) head/textproc/php52-xmlwriter/Makefile (props changed) head/textproc/php52-xsl/Makefile (props changed) head/textproc/php55-ctype/Makefile (props changed) head/textproc/php55-dom/Makefile (props changed) head/textproc/php55-pspell/Makefile (props changed) head/textproc/php55-simplexml/Makefile (props changed) head/textproc/php55-wddx/Makefile (props changed) head/textproc/php55-xml/Makefile (props changed) head/textproc/php55-xmlreader/Makefile (props changed) head/textproc/php55-xmlwriter/Makefile (props changed) head/textproc/php55-xsl/Makefile (props changed) head/textproc/pocketreader/Makefile (props changed) head/textproc/popup-stacks/Makefile (props changed) head/textproc/popup/Makefile (props changed) head/textproc/ppower4/Makefile (props changed) head/textproc/print-n-times/Makefile (props changed) head/textproc/prosper/Makefile (props changed) head/textproc/pure-csv/Makefile (props changed) head/textproc/pure-xml/Makefile (props changed) head/textproc/py-4suite-xml/Makefile (props changed) head/textproc/py-Chameleon/Makefile (props changed) head/textproc/py-Tempita/Makefile (props changed) head/textproc/py-asv/Makefile (props changed) head/textproc/py-chardet/Makefile (props changed) head/textproc/py-creole/Makefile (props changed) head/textproc/py-dsv/Makefile (props changed) head/textproc/py-empy/Makefile (props changed) head/textproc/py-enchant/Makefile (props changed) head/textproc/py-errorhandler/Makefile (props changed) head/textproc/py-excelerator/Makefile (props changed) head/textproc/py-genshi-devel/Makefile (props changed) head/textproc/py-genshi/Makefile (props changed) head/textproc/py-gettext/Makefile (props changed) head/textproc/py-html2text/Makefile (props changed) head/textproc/py-hyperestraier-python/Makefile (props changed) head/textproc/py-jaxml/Makefile (props changed) head/textproc/py-libtre/Makefile (props changed) head/textproc/py-libxslt/Makefile (props changed) head/textproc/py-ltxml/Makefile (props changed) head/textproc/py-mako/Makefile (props changed) head/textproc/py-markdown2/Makefile (props changed) head/textproc/py-paragrep/Makefile (props changed) head/textproc/py-pss/Makefile (props changed) head/textproc/py-pyctpp2/Makefile (props changed) head/textproc/py-pystache/Makefile (props changed) head/textproc/py-pyx12/Makefile (props changed) head/textproc/py-reverend/Makefile (props changed) head/textproc/py-rss2gen/Makefile (props changed) head/textproc/py-rstyoutube/Makefile (props changed) head/textproc/py-rxp/Makefile (props changed) head/textproc/py-sgrep/Makefile (props changed) head/textproc/py-sphinx/Makefile (props changed) head/textproc/py-stripogram/Makefile (props changed) head/textproc/py-syck/Makefile (props changed) head/textproc/py-texttable/Makefile (props changed) head/textproc/py-translationstring/Makefile (props changed) head/textproc/py-tvgrab/Makefile (props changed) head/textproc/py-whoosh/Makefile (props changed) head/textproc/py-wicked/Makefile (props changed) head/textproc/py-wordnet/Makefile (props changed) head/textproc/py-wtforms/Makefile (props changed) head/textproc/py-xlrd/Makefile (props changed) head/textproc/py-xlwriter/Makefile (props changed) head/textproc/py-xlwt/Makefile (props changed) head/textproc/py-xml/Makefile (props changed) head/textproc/py-xmltools/Makefile (props changed) head/textproc/py-xmltv/Makefile (props changed) head/textproc/py-zope.app.i18n/Makefile (props changed) head/textproc/py-zope.app.locales/Makefile (props changed) head/textproc/py-zope.i18nmessageid/Makefile (props changed) head/textproc/py-zope.structuredtext/Makefile (props changed) head/textproc/py-zope.tal/Makefile (props changed) head/textproc/py-zpt/Makefile (props changed) head/textproc/py2html/Makefile (props changed) head/textproc/pybook/Makefile (props changed) head/textproc/pychm/Makefile (props changed) head/textproc/pystemmer/Makefile (props changed) head/textproc/qu-aspell/Makefile (props changed) head/textproc/queequeg/Makefile (props changed) head/textproc/rarian/Makefile (props changed) head/textproc/reflex/Makefile (props changed) head/textproc/replaceit/Makefile (props changed) head/textproc/resume-extensions/Makefile (props changed) head/textproc/resume/Makefile (props changed) head/textproc/rfcdiff/Makefile (props changed) head/textproc/rman/Makefile (props changed) head/textproc/ro-aspell/Makefile (props changed) head/textproc/ro-mythes/Makefile (props changed) head/textproc/roap/Makefile (props changed) head/textproc/rot/Makefile (props changed) head/textproc/rtf2html/Makefile (props changed) head/textproc/rtfreader/Makefile (props changed) head/textproc/rtfx/Makefile (props changed) head/textproc/rubber/Makefile (props changed) head/textproc/ruby-deplate/Makefile (props changed) head/textproc/ruby-escape/Makefile (props changed) head/textproc/ruby-format/Makefile (props changed) head/textproc/ruby-hikidoc/Makefile (props changed) head/textproc/ruby-html-fillinform/Makefile (props changed) head/textproc/ruby-html-template/Makefile (props changed) head/textproc/ruby-htmlrepair/Makefile (props changed) head/textproc/ruby-htmlsplit/Makefile (props changed) head/textproc/ruby-htree/Makefile (props changed) head/textproc/ruby-liquid/Makefile (props changed) head/textproc/ruby-rd-mode.el/Makefile (props changed) head/textproc/ruby-rdtool/Makefile (props changed) head/textproc/ruby-rss/Makefile (props changed) head/textproc/ruby-rttool/Makefile (props changed) head/textproc/ruby-sary/Makefile (props changed) head/textproc/ruby-xmlconfigfile/Makefile (props changed) head/textproc/ruby-xmlscan/Makefile (props changed) head/textproc/rubygem-charlock_holmes/Makefile (props changed) head/textproc/rubygem-ezamar/Makefile (props changed) head/textproc/rubygem-heredoc_unindent/Makefile (props changed) head/textproc/rubygem-htmlentities/Makefile (props changed) head/textproc/rubygem-ltsv/Makefile (props changed) head/textproc/rubygem-opml/Makefile (props changed) head/textproc/rubygem-termcolor/Makefile (props changed) head/textproc/rubygem-tidy/Makefile (props changed) head/textproc/rw-aspell/Makefile (props changed) head/textproc/rxp/Makefile (props changed) head/textproc/s5/Makefile (props changed) head/textproc/saxon-devel/Makefile (props changed) head/textproc/saxon-he/Makefile (props changed) head/textproc/saxon/Makefile (props changed) head/textproc/sc-aspell/Makefile (props changed) head/textproc/scim-m17n/Makefile (props changed) head/textproc/scr2txt/Makefile (props changed) head/textproc/scss/Makefile (props changed) head/textproc/sdocbook-xml/Makefile (props changed) head/textproc/sdom/Makefile (props changed) head/textproc/senna/Makefile (props changed) head/textproc/sgmlformat/Makefile (props changed) head/textproc/sgmls/Makefile (props changed) head/textproc/sgmltools-lite/Makefile (props changed) head/textproc/sgrep/Makefile (props changed) head/textproc/sgrep2/Makefile (props changed) head/textproc/silvercity/Makefile (props changed) head/textproc/sk-aspell/Makefile (props changed) head/textproc/sk-hunspell/Makefile (props changed) head/textproc/sk-hyphen/Makefile (props changed) head/textproc/sk-ispell/Makefile (props changed) head/textproc/sl-aspell/Makefile (props changed) head/textproc/sl-hyphen/Makefile (props changed) head/textproc/slides/Makefile (props changed) head/textproc/sml-fxp/Makefile (props changed) head/textproc/smu/Makefile (props changed) head/textproc/so-hunspell/Makefile (props changed) head/textproc/soothsayer/Makefile (props changed) head/textproc/source-highlight/Makefile (props changed) head/textproc/sq-hunspell/Makefile (props changed) head/textproc/sr-aspell/Makefile (props changed) head/textproc/sr-hunspell/Makefile (props changed) head/textproc/srilm/Makefile (props changed) head/textproc/ss-hunspell/Makefile (props changed) head/textproc/ssddiff/Makefile (props changed) head/textproc/supercat/Makefile (props changed) head/textproc/sv-aspell/Makefile (props changed) head/textproc/sv-hyphen/Makefile (props changed) head/textproc/sv-mythes/Makefile (props changed) head/textproc/sw-aspell/Makefile (props changed) head/textproc/sxml/Makefile (props changed) head/textproc/ta-aspell/Makefile (props changed) head/textproc/te-aspell/Makefile (props changed) head/textproc/te-hunspell/Makefile (props changed) head/textproc/teckit/Makefile (props changed) head/textproc/tei-guidelines-p3/Makefile (props changed) head/textproc/tei-p3/Makefile (props changed) head/textproc/tet-aspell/Makefile (props changed) head/textproc/tex2im/Makefile (props changed) head/textproc/ti-hunspell/Makefile (props changed) head/textproc/tinyxml/Makefile (props changed) head/textproc/tinyxml/files/Makefile (props changed) head/textproc/tk-aspell/Makefile (props changed) head/textproc/tk-hunspell/Makefile (props changed) head/textproc/tkdiff/Makefile (props changed) head/textproc/tl-aspell/Makefile (props changed) head/textproc/tn-aspell/Makefile (props changed) head/textproc/tn-hunspell/Makefile (props changed) head/textproc/tnef2txt/Makefile (props changed) head/textproc/tokyodystopia/Makefile (props changed) head/textproc/tr-aspell/Makefile (props changed) head/textproc/trang/Makefile (props changed) head/textproc/ts-hunspell/Makefile (props changed) head/textproc/tth/Makefile (props changed) head/textproc/txt2man/Makefile (props changed) head/textproc/uim-el-emacs21/Makefile (props changed) head/textproc/uim-el-emacs22/Makefile (props changed) head/textproc/uim-el-xemacs21-mule/Makefile (props changed) head/textproc/uml2svg/Makefile (props changed) head/textproc/uncrustify/Makefile (props changed) head/textproc/uni2ascii/Makefile (props changed) head/textproc/unroff/Makefile (props changed) head/textproc/utf8proc/Makefile (props changed) head/textproc/uz-aspell/Makefile (props changed) head/textproc/uz-hunspell/Makefile (props changed) head/textproc/vbindiff/Makefile (props changed) head/textproc/ve-hunspell/Makefile (props changed) head/textproc/wa-aspell/Makefile (props changed) head/textproc/wa-hunspell/Makefile (props changed) head/textproc/webcpp/Makefile (props changed) head/textproc/website/Makefile (props changed) head/textproc/weka/Makefile (props changed) head/textproc/word2x/Makefile (props changed) head/textproc/wordnet/Makefile (props changed) head/textproc/wordnet/files/Makefile (props changed) head/textproc/wv/Makefile (props changed) head/textproc/xalan-c/Makefile.inc-sample-src (props changed) head/textproc/xalan-j/Makefile (props changed) head/textproc/xerces-j/Makefile (props changed) head/textproc/xh-hunspell/Makefile (props changed) head/textproc/xhtml-11/Makefile (props changed) head/textproc/xhtml-basic/Makefile (props changed) head/textproc/xhtml-modularization/Makefile (props changed) head/textproc/xhtml/Makefile (props changed) head/textproc/xhtml1-xsd/Makefile (props changed) head/textproc/xincluder/Makefile (props changed) head/textproc/xlhtml/Makefile (props changed) head/textproc/xlreader/Makefile (props changed) head/textproc/xml-commons/Makefile (props changed) head/textproc/xml-format/Makefile (props changed) head/textproc/xml-lite.el/Makefile (props changed) head/textproc/xml-parse.el/Makefile (props changed) head/textproc/xml2/Makefile (props changed) head/textproc/xml2rfc/Makefile (props changed) head/textproc/xmlada/Makefile (props changed) head/textproc/xmlcatmgr/Makefile (props changed) head/textproc/xmlcharent/Makefile (props changed) head/textproc/xmlenc/Makefile (props changed) head/textproc/xmlindent/Makefile (props changed) head/textproc/xom/Makefile (props changed) head/textproc/xp/Makefile (props changed) head/textproc/xslide.el/Makefile (props changed) head/textproc/xstream/Makefile (props changed) head/textproc/xt/Makefile (props changed) head/textproc/y2l/Makefile (props changed) head/textproc/yaml-mode.el-emacs21/Makefile (props changed) head/textproc/yi-aspell/Makefile (props changed) head/textproc/yi-hunspell/Makefile (props changed) head/textproc/yould/Makefile (props changed) head/textproc/zu-aspell/Makefile (props changed) head/textproc/zu-hunspell/Makefile (props changed) head/ukrainian/Makefile.inc (props changed) head/ukrainian/aspell/Makefile (props changed) head/ukrainian/emacs-koi8u/Makefile (props changed) head/ukrainian/gd/Makefile (props changed) head/ukrainian/hyphen/Makefile (props changed) head/ukrainian/ispell/Makefile (props changed) head/ukrainian/libreoffice/Makefile (props changed) head/ukrainian/monacofonts/Makefile (props changed) head/ukrainian/monacofonts/files/Makefile (props changed) head/ukrainian/webalizer/Makefile (props changed) head/vietnamese/Makefile.inc (props changed) head/vietnamese/aspell/Makefile (props changed) head/vietnamese/hunspell/Makefile (props changed) head/vietnamese/libreoffice/Makefile (props changed) head/vietnamese/libviet/Makefile (props changed) head/vietnamese/unicode-uhoai/Makefile (props changed) head/vietnamese/urwvn/Makefile (props changed) head/vietnamese/vietunicode-hannom/Makefile (props changed) head/vietnamese/vietunicode-trichlor/Makefile (props changed) head/vietnamese/vietunicode-web1/Makefile (props changed) head/vietnamese/vis2u/Makefile (props changed) head/vietnamese/vn7to8/Makefile (props changed) head/vietnamese/vnconvert/Makefile (props changed) head/vietnamese/vnless/Makefile (props changed) head/vietnamese/vnlpr/Makefile (props changed) head/vietnamese/vnpstext/Makefile (props changed) head/vietnamese/vnroff/Makefile (props changed) head/vietnamese/vntex/Makefile (props changed) head/vietnamese/vnxfonts/Makefile (props changed) head/vietnamese/x-unikey/Makefile (props changed) head/vietnamese/xvnkb/Makefile (props changed) head/www/abyssws/Makefile (props changed) head/www/admuser/Makefile (props changed) head/www/aolserver-xotcl/Makefile (props changed) head/www/aolserver/Makefile (props changed) head/www/apache-forrest/Makefile (props changed) head/www/apache-mode.el/Makefile (props changed) head/www/apercu/Makefile (props changed) head/www/asp2php/Makefile (props changed) head/www/asterisk-stat/Makefile (props changed) head/www/aswedit/Makefile (props changed) head/www/autoindex2/Makefile (props changed) head/www/aws-demos/Makefile (props changed) head/www/axis/Makefile (props changed) head/www/b2evolution/Makefile (props changed) head/www/bblog/Makefile (props changed) head/www/bk2site/Makefile (props changed) head/www/bluefish-devel/Makefile (props changed) head/www/bluefish/Makefile (props changed) head/www/boa/Makefile (props changed) head/www/bugmenot-firefox/Makefile (props changed) head/www/caudium14/Makefile (props changed) head/www/cblog/Makefile (props changed) head/www/cgi-lib/Makefile (props changed) head/www/cgic/Makefile (props changed) head/www/cgic/files/Makefile.lib (props changed) head/www/cgichk/Makefile (props changed) head/www/cgihtml/Makefile (props changed) head/www/cgihtml/files/Makefile (props changed) head/www/cgiparse/Makefile (props changed) head/www/chems/Makefile (props changed) head/www/chimera/Makefile (props changed) head/www/ckeditor/Makefile (props changed) head/www/claroline/Makefile (props changed) head/www/clearsilver-python/Makefile (props changed) head/www/clearsilver/Makefile (props changed) head/www/closure-compiler/Makefile (props changed) head/www/closure-linter/Makefile (props changed) head/www/cmsmadesimple/Makefile (props changed) head/www/cocoon/Makefile (props changed) head/www/cocoon/Makefile.options (props changed) head/www/cocoon/Makefile.test-options (props changed) head/www/crawl/Makefile (props changed) head/www/crp/Makefile (props changed) head/www/css-mode.el/Makefile (props changed) head/www/csstidy/Makefile (props changed) head/www/ctemplate/Makefile (props changed) head/www/dalbum/Makefile (props changed) head/www/demoroniser/Makefile (props changed) head/www/dhttpd/Makefile (props changed) head/www/docebo/Makefile (props changed) head/www/dojo-shrinksafe/Makefile (props changed) head/www/dojo/Makefile (props changed) head/www/dokeos/Makefile (props changed) head/www/dokuwiki/Makefile (props changed) head/www/dotclear/Makefile (props changed) head/www/download-gemist/Makefile (props changed) head/www/drupal6-advanced_help/Makefile (props changed) head/www/drupal6-cck/Makefile (props changed) head/www/drupal6-chaos/Makefile (props changed) head/www/drupal6-ckeditor/Makefile (props changed) head/www/drupal6-content_access/Makefile (props changed) head/www/drupal6-geshifilter/Makefile (props changed) head/www/drupal6-image/Makefile (props changed) head/www/drupal6-imce/Makefile (props changed) head/www/drupal6-mimedetect/Makefile (props changed) head/www/drupal6-panels/Makefile (props changed) head/www/drupal6-print/Makefile (props changed) head/www/drupal6-tagadelic/Makefile (props changed) head/www/drupal6-views/Makefile (props changed) head/www/drupal7-vulnscan/Makefile (props changed) head/www/dummyflash/Makefile (props changed) head/www/dwoo/Makefile (props changed) head/www/e107/Makefile (props changed) head/www/eaccelerator/Makefile (props changed) head/www/efront/Makefile (props changed) head/www/eldav.el/Makefile (props changed) head/www/elog/Makefile (props changed) head/www/emacs-w3m-emacs21/Makefile (props changed) head/www/emacs-w3m-emacs22/Makefile (props changed) head/www/emacs-w3m-xemacs21-mule/Makefile (props changed) head/www/encode-explorer/Makefile (props changed) head/www/ephemera/Makefile (props changed) head/www/erwn/Makefile (props changed) head/www/eventum/Makefile (props changed) head/www/extsm/Makefile (props changed) head/www/eyeos-themes/Makefile (props changed) head/www/eyeos/Makefile (props changed) head/www/fcgi/Makefile (props changed) head/www/fcgiwrap/Makefile (props changed) head/www/feedonfeeds/Makefile (props changed) head/www/fhttpd/Makefile (props changed) head/www/flat-frog/Makefile (props changed) head/www/flot/Makefile (props changed) head/www/fnord/Makefile (props changed) head/www/foswiki-ModPerlEngineContrib/Makefile (props changed) head/www/foswiki/bsd.foswiki.mk (props changed) head/www/fpc-fastcgi/Makefile (props changed) head/www/freeway/Makefile (props changed) head/www/ftasv/Makefile (props changed) head/www/g-cows/Makefile (props changed) head/www/g-gcl/Makefile (props changed) head/www/gaeo/Makefile (props changed) head/www/geeklog/Makefile (props changed) head/www/geolizer/Makefile (props changed) head/www/geronimo/Makefile (props changed) head/www/google-sitemapgen/Makefile (props changed) head/www/grails/Makefile (props changed) head/www/gregarius/Makefile (props changed) head/www/grr/Makefile (props changed) head/www/gstreamer-plugins-neon/Makefile (props changed) head/www/guile-www/Makefile (props changed) head/www/gurlchecker/Makefile (props changed) head/www/hastymail/Makefile (props changed) head/www/hastymail2-devel/Makefile (props changed) head/www/helma/Makefile (props changed) head/www/hinventory-client/Makefile (props changed) head/www/horde-ansel/Makefile (props changed) head/www/horde-base/Makefile (props changed) head/www/horde-passwd/Makefile (props changed) head/www/horde-trean/Makefile (props changed) head/www/horde-wicked/Makefile (props changed) head/www/horde3-base/bsd.horde.mk (props changed) head/www/horde3-meta/Makefile (props changed) head/www/hotcrp/Makefile (props changed) head/www/hs-HTTP/Makefile (props changed) head/www/hs-authenticate/Makefile (props changed) head/www/hs-cgi/Makefile (props changed) head/www/hs-cookie/Makefile (props changed) head/www/hs-css-text/Makefile (props changed) head/www/hs-fastcgi/Makefile (props changed) head/www/hs-gitit/Makefile (props changed) head/www/hs-hS3/Makefile (props changed) head/www/hs-hamlet/Makefile (props changed) head/www/hs-happstack-server/Makefile (props changed) head/www/hs-happstack/Makefile (props changed) head/www/hs-heist/Makefile (props changed) head/www/hs-hjsmin/Makefile (props changed) head/www/hs-http-conduit/Makefile (props changed) head/www/hs-http-date/Makefile (props changed) head/www/hs-http-server/Makefile (props changed) head/www/hs-http-types/Makefile (props changed) head/www/hs-oeis/Makefile (props changed) head/www/hs-path-pieces/Makefile (props changed) head/www/hs-recaptcha/Makefile (props changed) head/www/hs-scgi/Makefile (props changed) head/www/hs-shakespeare-css/Makefile (props changed) head/www/hs-shakespeare-i18n/Makefile (props changed) head/www/hs-shakespeare-js/Makefile (props changed) head/www/hs-shakespeare-text/Makefile (props changed) head/www/hs-shakespeare/Makefile (props changed) head/www/hs-snap-core/Makefile (props changed) head/www/hs-snap-server/Makefile (props changed) head/www/hs-snap/Makefile (props changed) head/www/hs-url/Makefile (props changed) head/www/hs-wai-app-static/Makefile (props changed) head/www/hs-wai-extra/Makefile (props changed) head/www/hs-wai-logger/Makefile (props changed) head/www/hs-wai-test/Makefile (props changed) head/www/hs-wai/Makefile (props changed) head/www/hs-warp/Makefile (props changed) head/www/hs-webkit/Makefile (props changed) head/www/hs-xss-sanitize/Makefile (props changed) head/www/hs-yesod-auth/Makefile (props changed) head/www/hs-yesod-core/Makefile (props changed) head/www/hs-yesod-form/Makefile (props changed) head/www/hs-yesod-persistent/Makefile (props changed) head/www/hs-yesod-platform/Makefile (props changed) head/www/hs-yesod-routes/Makefile (props changed) head/www/hs-yesod-static/Makefile (props changed) head/www/hs-yesod-test/Makefile (props changed) head/www/hs-yesod/Makefile (props changed) head/www/html2hdml/Makefile (props changed) head/www/http_load/Makefile (props changed) head/www/http_load/files/Makefile.bsd (props changed) head/www/httpclient/Makefile (props changed) head/www/httpcore/Makefile (props changed) head/www/httpsqs/files/Makefile (props changed) head/www/httptunnel/Makefile (props changed) head/www/hudson/Makefile (props changed) head/www/hypermail/Makefile (props changed) head/www/ilias/Makefile (props changed) head/www/imgsizer/Makefile (props changed) head/www/impresscms/Makefile (props changed) head/www/ismail/Makefile (props changed) head/www/iwebcal/Makefile (props changed) head/www/jawstats/Makefile (props changed) head/www/jericho-html/Makefile (props changed) head/www/jesred/Makefile (props changed) head/www/jinzora/Makefile (props changed) head/www/jmeter/Makefile (props changed) head/www/joomla15/Makefile (props changed) head/www/jspwiki/Makefile (props changed) head/www/jtoolkit/Makefile (props changed) head/www/junkbuster/Makefile (props changed) head/www/kplaylist/Makefile (props changed) head/www/libgtkhtml/Makefile (props changed) head/www/lifetype/Makefile (props changed) head/www/lighttpd-mod_geoip/Makefile (props changed) head/www/lighttpd-mod_h264_streaming/Makefile (props changed) head/www/lilurl/Makefile (props changed) head/www/linkcheck/Makefile (props changed) head/www/links1/Makefile (props changed) head/www/linux-libgtkembedmoz/Makefile (props changed) head/www/linux-mplayer-plugin/Makefile (props changed) head/www/linux-opera-devel/Makefile (props changed) head/www/linux-opera/Makefile (props changed) head/www/lionwiki/Makefile (props changed) head/www/ljdump/Makefile (props changed) head/www/logtools/Makefile (props changed) head/www/luakit/Makefile (props changed) head/www/magento/Makefile (props changed) head/www/mahara/Makefile (props changed) head/www/mambo/Makefile (props changed) head/www/mathopd/Makefile (props changed) head/www/mediawiki119/Makefile (props changed) head/www/mergelog/Makefile (props changed) head/www/mgstat/Makefile (props changed) head/www/micro_httpd/Makefile (props changed) head/www/mini_httpd/Makefile (props changed) head/www/mkapachepw/Makefile (props changed) head/www/mod_amazon_proxy/Makefile (props changed) head/www/mod_asn/Makefile (props changed) head/www/mod_auth_mysql_another/files/Makefile (props changed) head/www/mod_auth_tkt/Makefile (props changed) head/www/mod_gnutls/Makefile (props changed) head/www/mod_mono/Makefile (props changed) head/www/mod_reproxy/Makefile (props changed) head/www/mod_setenvifplus/Makefile (props changed) head/www/moinmoin/Makefile (props changed) head/www/monast/Makefile (props changed) head/www/moodle/Makefile (props changed) head/www/multisort/Makefile (props changed) head/www/myfaces/Makefile (props changed) head/www/nanoblogger-extra/Makefile (props changed) head/www/nanoblogger/Makefile (props changed) head/www/nd/Makefile (props changed) head/www/netoffice/Makefile (props changed) head/www/netrik/Makefile (props changed) head/www/npapi-xine/Makefile (props changed) head/www/npc/Makefile (props changed) head/www/ocaml-net/Makefile (props changed) head/www/ocsigen/Makefile (props changed) head/www/ojs2/Makefile (props changed) head/www/ompload/Makefile (props changed) head/www/openacs-dotlrn/Makefile (props changed) head/www/opencart/Makefile (props changed) head/www/openx/Makefile (props changed) head/www/openxmldir/Makefile (props changed) head/www/opera-devel/Makefile (props changed) head/www/opera-linuxplugins/Makefile (props changed) head/www/opera/Makefile (props changed) head/www/orangehrm/Makefile (props changed) head/www/oscommerce/Makefile (props changed) head/www/p5-Amon2/Makefile (props changed) head/www/p5-Apache-ConfigFile/Makefile (props changed) head/www/p5-Apache-ConfigParser/Makefile (props changed) head/www/p5-Apache-DB/Makefile (props changed) head/www/p5-Apache-Profiler/Makefile (props changed) head/www/p5-Apache-Session-PHP/Makefile (props changed) head/www/p5-Apache-Session/Makefile (props changed) head/www/p5-Apache-SessionX/Makefile (props changed) head/www/p5-Bigtop/Makefile (props changed) head/www/p5-CGI-Application-Plugin-Apache/Makefile (props changed) head/www/p5-CGI-Builder-TT2/Makefile (props changed) head/www/p5-CGI-Kwiki/Makefile (props changed) head/www/p5-CGI-Untaint-date/Makefile (props changed) head/www/p5-CGI-XMLApplication/Makefile (props changed) head/www/p5-CSS-DOM/Makefile (props changed) head/www/p5-Catalyst-Controller-RateLimit/Makefile (props changed) head/www/p5-Catalyst-Engine-HTTP-Prefork/Makefile (props changed) head/www/p5-Catalyst-Enzyme/Makefile (props changed) head/www/p5-Catalyst-Manual/Makefile (props changed) head/www/p5-Catalyst-Model-CDBI-Sweet/Makefile (props changed) head/www/p5-Catalyst-Model-CDBI/Makefile (props changed) head/www/p5-Catalyst-Model-DBIC-Plain/Makefile (props changed) head/www/p5-Catalyst-Model-DynamicAdaptor/Makefile (props changed) head/www/p5-Catalyst-Model-LDAP/Makefile (props changed) head/www/p5-Catalyst-Model-Oryx/Makefile (props changed) head/www/p5-Catalyst-Model-XML-Feed/Makefile (props changed) head/www/p5-Catalyst-Model-Xapian/Makefile (props changed) head/www/p5-Catalyst-Model-Xapian10/Makefile (props changed) head/www/p5-Catalyst-Plugin-Authentication-CDBI/Makefile (props changed) head/www/p5-Catalyst-Plugin-Authentication-Store-Htpasswd/Makefile (props changed) head/www/p5-Catalyst-Plugin-Authorization-Roles/Makefile (props changed) head/www/p5-Catalyst-Plugin-Browser/Makefile (props changed) head/www/p5-Catalyst-Plugin-Cache-FastMmap/Makefile (props changed) head/www/p5-Catalyst-Plugin-Cache-Memcached/Makefile (props changed) head/www/p5-Catalyst-Plugin-Captcha/Makefile (props changed) head/www/p5-Catalyst-Plugin-ConfigLoader/Makefile (props changed) head/www/p5-Catalyst-Plugin-DefaultEnd/Makefile (props changed) head/www/p5-Catalyst-Plugin-Email/Makefile (props changed) head/www/p5-Catalyst-Plugin-FillInForm/Makefile (props changed) head/www/p5-Catalyst-Plugin-I18N/Makefile (props changed) head/www/p5-Catalyst-Plugin-Log-Handler/Makefile (props changed) head/www/p5-Catalyst-Plugin-LogWarnings/Makefile (props changed) head/www/p5-Catalyst-Plugin-PageCache/Makefile (props changed) head/www/p5-Catalyst-Plugin-Prototype/Makefile (props changed) head/www/p5-Catalyst-Plugin-RunAfterRequest/Makefile (props changed) head/www/p5-Catalyst-Plugin-Session-State-URI/Makefile (props changed) head/www/p5-Catalyst-Plugin-Session-Store-Cache/Makefile (props changed) head/www/p5-Catalyst-Plugin-Session-Store-DBI/Makefile (props changed) head/www/p5-Catalyst-Plugin-Setenv/Makefile (props changed) head/www/p5-Catalyst-Plugin-Singleton/Makefile (props changed) head/www/p5-Catalyst-Plugin-Textile/Makefile (props changed) head/www/p5-Catalyst-Plugin-Unicode/Makefile (props changed) head/www/p5-Catalyst-TraitFor-Request-BrowserDetect/Makefile (props changed) head/www/p5-Catalyst-View-GraphViz/Makefile (props changed) head/www/p5-Catalyst-View-HTML-Template-Compiled/Makefile (props changed) head/www/p5-Catalyst-View-RRDGraph/Makefile (props changed) head/www/p5-Catalyst-View-TT/Makefile (props changed) head/www/p5-Catalyst-View-Template-Declare/Makefile (props changed) head/www/p5-Catalyst-View-Templated/Makefile (props changed) head/www/p5-Catalyst-View-XSLT/Makefile (props changed) head/www/p5-CatalystX-LeakChecker/Makefile (props changed) head/www/p5-CatalystX-RoleApplicator/Makefile (props changed) head/www/p5-ClearSilver/Makefile (props changed) head/www/p5-FCGI/Makefile (props changed) head/www/p5-Flickr-Upload/Makefile (props changed) head/www/p5-Furl/Makefile (props changed) head/www/p5-Gantry/Makefile (props changed) head/www/p5-Gungho/Makefile (props changed) head/www/p5-HTML-Element-Extended/Makefile (props changed) head/www/p5-HTML-Element-Library/Makefile (props changed) head/www/p5-HTML-Element-Replacer/Makefile (props changed) head/www/p5-HTML-Encoding/Makefile (props changed) head/www/p5-HTML-FillInForm-ForceUTF8/Makefile (props changed) head/www/p5-HTML-FillInForm/Makefile (props changed) head/www/p5-HTML-Form/Makefile (props changed) head/www/p5-HTML-FromANSI/Makefile (props changed) head/www/p5-HTML-GenToc/Makefile (props changed) head/www/p5-HTML-GenerateUtil/Makefile (props changed) head/www/p5-HTML-Highlight/Makefile (props changed) head/www/p5-HTML-LinkList/Makefile (props changed) head/www/p5-HTML-Prototype/Makefile (props changed) head/www/p5-HTML-Seamstress/Makefile (props changed) head/www/p5-HTML-Shakan/Makefile (props changed) head/www/p5-HTML-SimpleLinkExtor/Makefile (props changed) head/www/p5-HTML-Stream/Makefile (props changed) head/www/p5-HTML-Strip/Makefile (props changed) head/www/p5-HTML-TableTiler/Makefile (props changed) head/www/p5-HTML-TagParser/Makefile (props changed) head/www/p5-HTML-Tagset/Makefile (props changed) head/www/p5-HTML-Template-HashWrapper/Makefile (props changed) head/www/p5-HTML-TokeParser-Simple/Makefile (props changed) head/www/p5-HTML-Tree/Makefile (props changed) head/www/p5-HTML-TreeBuilder-XPath/Makefile (props changed) head/www/p5-HTML-WikiConverter-Kwiki/Makefile (props changed) head/www/p5-HTML-WikiConverter-MediaWiki/Makefile (props changed) head/www/p5-HTML-WikiConverter-Oddmuse/Makefile (props changed) head/www/p5-HTML-WikiConverter-PhpWiki/Makefile (props changed) head/www/p5-HTML-WikiConverter-Socialtext/Makefile (props changed) head/www/p5-HTML-WikiConverter-WakkaWiki/Makefile (props changed) head/www/p5-HTML-WikiConverter/Makefile (props changed) head/www/p5-HTTP-Cookies-Mozilla/Makefile (props changed) head/www/p5-HTTP-Cookies-iCab/Makefile (props changed) head/www/p5-HTTP-DAV/Makefile (props changed) head/www/p5-HTTP-Date/Makefile (props changed) head/www/p5-HTTP-HeaderParser-XS/Makefile (props changed) head/www/p5-HTTP-Negotiate/Makefile (props changed) head/www/p5-HTTP-Proxy/Makefile (props changed) head/www/p5-HTTP-SimpleLinkChecker/Makefile (props changed) head/www/p5-HTTP-Size/Makefile (props changed) head/www/p5-IMDB-Film/Makefile (props changed) head/www/p5-Kwiki/Makefile (props changed) head/www/p5-LWP-MediaTypes/Makefile (props changed) head/www/p5-MasonX-Interp-WithCallbacks/Makefile (props changed) head/www/p5-MasonX-Request-WithApacheSession/Makefile (props changed) head/www/p5-MasonX-WebApp/Makefile (props changed) head/www/p5-MediaWiki/Makefile (props changed) head/www/p5-Monoceros/Makefile (props changed) head/www/p5-POE-Component-Client-HTTP/Makefile (props changed) head/www/p5-POE-Component-Server-HTTP/Makefile (props changed) head/www/p5-Plack-Middleware-Deflater/Makefile (props changed) head/www/p5-Plack-Middleware-ServerStatus-Lite/Makefile (props changed) head/www/p5-Plack/Makefile (props changed) head/www/p5-STF-Dispatcher-PSGI/Makefile (props changed) head/www/p5-Starlet/Makefile (props changed) head/www/p5-Syntax-Highlight-Shell/Makefile (props changed) head/www/p5-Template-Plugin-MP3/Makefile (props changed) head/www/p5-Tie-TinyURL/Makefile (props changed) head/www/p5-Twiggy/Makefile (props changed) head/www/p5-WWW-Comic/Makefile (props changed) head/www/p5-WWW-DHL/Makefile (props changed) head/www/p5-WWW-Dilbert/Makefile (props changed) head/www/p5-WWW-Mechanize-Plugin-phpBB/Makefile (props changed) head/www/p5-WWW-Mediawiki-Client/Makefile (props changed) head/www/p5-WWW-Myspace/Makefile (props changed) head/www/p5-WWW-NioTV/Makefile (props changed) head/www/p5-WWW-Pastebin-PastebinCom-Create/Makefile (props changed) head/www/p5-WWW-Robot/Makefile (props changed) head/www/p5-WWW-RobotRules/Makefile (props changed) head/www/p5-WWW-Search-AltaVista/Makefile (props changed) head/www/p5-WWW-Search-Google/Makefile (props changed) head/www/p5-WWW-Search-MSN/Makefile (props changed) head/www/p5-WWW-Spinn3r/Makefile (props changed) head/www/p5-WWW-VenusEnvy/Makefile (props changed) head/www/p5-WWW-Wikipedia/Makefile (props changed) head/www/p5-WebService-CIA/Makefile (props changed) head/www/p5-WebService-ISBNDB/Makefile (props changed) head/www/p5-WebService-Rakuten/Makefile (props changed) head/www/p5-WordPress-XMLRPC/Makefile (props changed) head/www/p5-chklinks/Makefile (props changed) head/www/p5-libapreq2/Makefile (props changed) head/www/pear-HTTP_Request2/Makefile (props changed) head/www/pear-Horde_Css_Parser/Makefile (props changed) head/www/pear-Horde_Dav/Makefile (props changed) head/www/pear-Horde_Editor/Makefile (props changed) head/www/pear-Horde_Feed/Makefile (props changed) head/www/pear-Horde_Form/Makefile (props changed) head/www/pear-Horde_Http/Makefile (props changed) head/www/pear-Horde_Routes/Makefile (props changed) head/www/pear-Horde_Service_Facebook/Makefile (props changed) head/www/pear-Horde_Service_Twitter/Makefile (props changed) head/www/pear-Horde_Service_UrlShortener/Makefile (props changed) head/www/pear-Horde_Service_Weather/Makefile (props changed) head/www/pear-Horde_SessionHandler/Makefile (props changed) head/www/pear-Horde_Template/Makefile (props changed) head/www/pebble/Makefile (props changed) head/www/pecl-amfext/Makefile (props changed) head/www/pecl-swish/Makefile (props changed) head/www/pecl-zendopcache/Makefile (props changed) head/www/pglogd/Makefile (props changed) head/www/php-plurk-api/Makefile (props changed) head/www/php-screw/Makefile (props changed) head/www/php-templates/Makefile (props changed) head/www/php5-session/Makefile (props changed) head/www/php5-tidy/Makefile (props changed) head/www/php52-session/Makefile (props changed) head/www/php52-tidy/Makefile (props changed) head/www/php55-opcache/Makefile (props changed) head/www/php55-session/Makefile (props changed) head/www/php55-tidy/Makefile (props changed) head/www/phpbb-devel/Makefile (props changed) head/www/phpbb3/Makefile (props changed) head/www/phpgedview/Makefile (props changed) head/www/phpmp/Makefile (props changed) head/www/phpmustache/Makefile (props changed) head/www/phproxy/Makefile (props changed) head/www/phpscheduleit/Makefile (props changed) head/www/phpsysinfo-dev/Makefile (props changed) head/www/phpsysinfo/Makefile (props changed) head/www/piwigo/Makefile (props changed) head/www/planet/Makefile (props changed) head/www/pligg/Makefile (props changed) head/www/pnews/Makefile (props changed) head/www/pound/Makefile (props changed) head/www/privoxy+ipv6/Makefile (props changed) head/www/pserv/Makefile (props changed) head/www/publicfile/Makefile (props changed) head/www/py-GinGin/Makefile (props changed) head/www/py-Lightbox/Makefile (props changed) head/www/py-Products.PloneLDAP/Makefile (props changed) head/www/py-WebError/Makefile (props changed) head/www/py-WebFlash/Makefile (props changed) head/www/py-WebTest/Makefile (props changed) head/www/py-albatross/Makefile (props changed) head/www/py-amf/Makefile (props changed) head/www/py-apachelog/Makefile (props changed) head/www/py-beaker/Makefile (props changed) head/www/py-blogofile/Makefile (props changed) head/www/py-cherrypy-old/Makefile (props changed) head/www/py-cherrypy/Makefile (props changed) head/www/py-clientform/Makefile (props changed) head/www/py-django-annoying/Makefile (props changed) head/www/py-django-app-plugins/Makefile (props changed) head/www/py-django-appconf/Makefile (props changed) head/www/py-django-appmedia/Makefile (props changed) head/www/py-django-caching-app-plugins/Makefile (props changed) head/www/py-django-filer/Makefile (props changed) head/www/py-django-haystack/Makefile (props changed) head/www/py-django-json-rpc/Makefile (props changed) head/www/py-django-keyedcache/Makefile (props changed) head/www/py-django-livesettings/Makefile (props changed) head/www/py-django-openid-auth/Makefile (props changed) head/www/py-django-piston/Makefile (props changed) head/www/py-django-profiles/Makefile (props changed) head/www/py-django-reversion/Makefile (props changed) head/www/py-django-sekizai/Makefile (props changed) head/www/py-django-signals-ahoy/Makefile (props changed) head/www/py-django-storages/Makefile (props changed) head/www/py-django-tagging/Makefile (props changed) head/www/py-django-threaded-multihost/Makefile (props changed) head/www/py-django_compressor/Makefile (props changed) head/www/py-dojango/Makefile (props changed) head/www/py-dotcloud.cli/Makefile (props changed) head/www/py-fcgi/Makefile (props changed) head/www/py-feedfinder/Makefile (props changed) head/www/py-flask-cache/Makefile (props changed) head/www/py-flask-uploads/Makefile (props changed) head/www/py-flup/Makefile (props changed) head/www/py-formalchemy/Makefile (props changed) head/www/py-funkload/Makefile (props changed) head/www/py-html5lib/Makefile (props changed) head/www/py-httplib2/Makefile (props changed) head/www/py-imdbpy/Makefile (props changed) head/www/py-jonpy/Makefile (props changed) head/www/py-jswebkit/Makefile (props changed) head/www/py-mechanize/Makefile (props changed) head/www/py-meld/Makefile (props changed) head/www/py-meld3/Makefile (props changed) head/www/py-mt/Makefile (props changed) head/www/py-openssl-proxy/Makefile (props changed) head/www/py-paste/Makefile (props changed) head/www/py-pastedeploy/Makefile (props changed) head/www/py-pastescript/Makefile (props changed) head/www/py-plone.app.contentmenu/Makefile (props changed) head/www/py-plone.app.customerize/Makefile (props changed) head/www/py-plone.app.folder/Makefile (props changed) head/www/py-plone.app.i18n/Makefile (props changed) head/www/py-plone.app.ldap/Makefile (props changed) head/www/py-plone.app.testing/Makefile (props changed) head/www/py-plone.app.users/Makefile (props changed) head/www/py-plone.app.uuid/Makefile (props changed) head/www/py-plone.browserlayer/Makefile (props changed) head/www/py-plone.cachepurging/Makefile (props changed) head/www/py-plone.caching/Makefile (props changed) head/www/py-plone.fieldsets/Makefile (props changed) head/www/py-plone.folder/Makefile (props changed) head/www/py-plone.indexer/Makefile (props changed) head/www/py-plone.intelligenttext/Makefile (props changed) head/www/py-plone.locking/Makefile (props changed) head/www/py-plone.memoize/Makefile (props changed) head/www/py-plone.portlet.static/Makefile (props changed) head/www/py-plone.registry/Makefile (props changed) head/www/py-plone.resource/Makefile (props changed) head/www/py-plone.subrequest/Makefile (props changed) head/www/py-plone.testing/Makefile (props changed) head/www/py-plone.theme/Makefile (props changed) head/www/py-plone.transformchain/Makefile (props changed) head/www/py-plone.uuid/Makefile (props changed) head/www/py-poster/Makefile (props changed) head/www/py-postmarkup/Makefile (props changed) head/www/py-py-restclient/Makefile (props changed) head/www/py-pylons/Makefile (props changed) head/www/py-pyramid/Makefile (props changed) head/www/py-pyramid_rpc/Makefile (props changed) head/www/py-pysearch/Makefile (props changed) head/www/py-pywebdav/Makefile (props changed) head/www/py-recaptcha/Makefile (props changed) head/www/py-requests-oauth-hook/Makefile (props changed) head/www/py-restclient/Makefile (props changed) head/www/py-routes/Makefile (props changed) head/www/py-scgi/Makefile (props changed) head/www/py-scrapy/Makefile (props changed) head/www/py-scriptaculous/Makefile (props changed) head/www/py-slimmer/Makefile (props changed) head/www/py-surl/Makefile (props changed) head/www/py-textile/Makefile (props changed) head/www/py-tgwebservices/Makefile (props changed) head/www/py-turbogears2/Makefile (props changed) head/www/py-tvdb_api/Makefile (props changed) head/www/py-twistedWeb2/Makefile (props changed) head/www/py-urljr/Makefile (props changed) head/www/py-utidy/Makefile (props changed) head/www/py-webhelpers/Makefile (props changed) head/www/py-webkitgtk/Makefile (props changed) head/www/py-webunit/Makefile (props changed) head/www/py-webware-component/Makefile (props changed) head/www/py-wikitools/Makefile (props changed) head/www/py-wsgiauth/Makefile (props changed) head/www/py-zope.app.wsgi/Makefile (props changed) head/www/pyblosxom/Makefile (props changed) head/www/pyjamas/Makefile (props changed) head/www/pylot/Makefile (props changed) head/www/pyweblib/Makefile (props changed) head/www/qdecoder/Makefile (props changed) head/www/quixote/Makefile (props changed) head/www/red5/Makefile (props changed) head/www/redmine-basecamp/Makefile (props changed) head/www/redmine-http-auth/Makefile (props changed) head/www/repos-style/Makefile (props changed) head/www/reviewboard/Makefile (props changed) head/www/rsskit/Makefile (props changed) head/www/rsstail/Makefile (props changed) head/www/rt38/Makefile.cpan (props changed) head/www/ruby-amazon/Makefile (props changed) head/www/ruby-aws/Makefile (props changed) head/www/ruby-borges/Makefile (props changed) head/www/ruby-div/Makefile (props changed) head/www/ruby-fcgi/Makefile (props changed) head/www/ruby-fcgiwrap/Makefile (props changed) head/www/ruby-google/Makefile (props changed) head/www/ruby-wgettsv/Makefile (props changed) head/www/rubygem-acts-as-taggable-on/Makefile (props changed) head/www/rubygem-amazon-ecs/Makefile (props changed) head/www/rubygem-cookiejar/Makefile (props changed) head/www/rubygem-faraday/Makefile (props changed) head/www/rubygem-faraday_middleware/Makefile (props changed) head/www/rubygem-feed-normalizer/Makefile (props changed) head/www/rubygem-less/Makefile (props changed) head/www/rubygem-multipart-post/Makefile (props changed) head/www/rubygem-nicovideo/Makefile (props changed) head/www/rubygem-rfeedfinder/Makefile (props changed) head/www/rubygem-scrapi/Makefile (props changed) head/www/rubygem-scrubyt/Makefile (props changed) head/www/rubygem-url-mount/Makefile (props changed) head/www/runsomebrowser/Makefile (props changed) head/www/sakai/Makefile (props changed) head/www/samidare/Makefile (props changed) head/www/sams/Makefile (props changed) head/www/scloader/Makefile (props changed) head/www/selenium/Makefile (props changed) head/www/servlet-api/Makefile (props changed) head/www/session2/Makefile (props changed) head/www/sfnt2woff/Makefile (props changed) head/www/shttpd/Makefile (props changed) head/www/simplog/Makefile (props changed) head/www/sit/Makefile (props changed) head/www/sitebar/Makefile (props changed) head/www/skytemplate/Makefile (props changed) head/www/smarty2/Makefile (props changed) head/www/smb_auth/Makefile (props changed) head/www/snarf/Makefile (props changed) head/www/spawn-fcgi/Makefile (props changed) head/www/speedtest-mini/Makefile (props changed) head/www/spreadlogd/Makefile (props changed) head/www/sqstat/Makefile (props changed) head/www/squid_radius_auth/Makefile (props changed) head/www/squidclamav/Makefile (props changed) head/www/squidpurge/Makefile (props changed) head/www/squirm/Makefile (props changed) head/www/subsonic/Makefile (props changed) head/www/sventon/Makefile (props changed) head/www/swfdec-plugin/Makefile (props changed) head/www/swish-e/Makefile (props changed) head/www/tclhttpd/files/Makefile.lib (props changed) head/www/tclwebtest/Makefile (props changed) head/www/templatelite/Makefile (props changed) head/www/testlink/Makefile (props changed) head/www/textpattern/Makefile (props changed) head/www/thttpd/Makefile (props changed) head/www/thumbnail_index/Makefile (props changed) head/www/tidy-devel/Makefile (props changed) head/www/tidy-lib/Makefile (props changed) head/www/tidy/Makefile (props changed) head/www/tinytinyhttpd/Makefile (props changed) head/www/tokyopromenade/Makefile (props changed) head/www/tomcat-native/Makefile (props changed) head/www/tomcat6/Makefile (props changed) head/www/tomcat7/Makefile (props changed) head/www/trac-OhlohWidgetsMacro/Makefile (props changed) head/www/trac-TracDuplicates/Makefile (props changed) head/www/trac-accountmanager/Makefile (props changed) head/www/trac-addcomment/Makefile (props changed) head/www/trac-attachmentpolicy/Makefile (props changed) head/www/trac-autocomplete/Makefile (props changed) head/www/trac-bzr/Makefile (props changed) head/www/trac-calendar/Makefile (props changed) head/www/trac-codetags/Makefile (props changed) head/www/trac-datefield/Makefile (props changed) head/www/trac-defaultcc/Makefile (props changed) head/www/trac-discussion/Makefile (props changed) head/www/trac-down/Makefile (props changed) head/www/trac-downloads/Makefile (props changed) head/www/trac-email2trac-postfix/Makefile (props changed) head/www/trac-estimator/Makefile (props changed) head/www/trac-fivestarvote/Makefile (props changed) head/www/trac-fullblog/Makefile (props changed) head/www/trac-fullblognotification/Makefile (props changed) head/www/trac-gantt/Makefile (props changed) head/www/trac-graphviz/Makefile (props changed) head/www/trac-hierwiki/Makefile (props changed) head/www/trac-keywords/Makefile (props changed) head/www/trac-ldap/Makefile (props changed) head/www/trac-macropost/Makefile (props changed) head/www/trac-math/Makefile (props changed) head/www/trac-mercurial/Makefile (props changed) head/www/trac-nav/Makefile (props changed) head/www/trac-navadd/Makefile (props changed) head/www/trac-pagelist/Makefile (props changed) head/www/trac-pagetopdf/Makefile (props changed) head/www/trac-pendingticket/Makefile (props changed) head/www/trac-permredirect/Makefile (props changed) head/www/trac-privatetickets/Makefile (props changed) head/www/trac-pydotorgtheme/Makefile (props changed) head/www/trac-remind/Makefile (props changed) head/www/trac-robotstxt/Makefile (props changed) head/www/trac-scrumburndown/Makefile (props changed) head/www/trac-simpleticket/Makefile (props changed) head/www/trac-spam-filter/Makefile (props changed) head/www/trac-subtickets/Makefile (props changed) head/www/trac-tags/Makefile (props changed) head/www/trac-tags/Makefile.svn_rev (props changed) head/www/trac-ticketimport/Makefile (props changed) head/www/trac-tickettemplate/Makefile (props changed) head/www/trac-timingandestimation/Makefile (props changed) head/www/trac-tracdragdrop/Makefile (props changed) head/www/trac-vote/Makefile (props changed) head/www/trac-wantedpages/Makefile (props changed) head/www/trac-wikinegotiator/Makefile (props changed) head/www/trac-wikinotification/Makefile (props changed) head/www/trac-wikitopdf/Makefile (props changed) head/www/trac-wysiwyg/Makefile (props changed) head/www/trac-wysiwyg/Makefile.svn_rev (props changed) head/www/transproxy/Makefile (props changed) head/www/ttf2eot/Makefile (props changed) head/www/twig/Makefile (props changed) head/www/twiki-BehaviourContrib/Makefile (props changed) head/www/twiki-BlogAddOn/Makefile (props changed) head/www/twiki-BugzillaLinkPlugin/Makefile (props changed) head/www/twiki-ClassicSkin/Makefile (props changed) head/www/twiki-CommentPlugin/Makefile (props changed) head/www/twiki-EditTablePlugin/Makefile (props changed) head/www/twiki-EmptyPlugin/Makefile (props changed) head/www/twiki-GluePlugin/Makefile (props changed) head/www/twiki-InterwikiPlugin/Makefile (props changed) head/www/twiki-JSCalendarContrib/Makefile (props changed) head/www/twiki-LDAPPasswordChangerPlugin/Makefile (props changed) head/www/twiki-LdapContrib/Makefile (props changed) head/www/twiki-LdapNgPlugin/Makefile (props changed) head/www/twiki-MailerContrib/Makefile (props changed) head/www/twiki-MathModePlugin/Makefile (props changed) head/www/twiki-NewUserPlugin/Makefile (props changed) head/www/twiki-PatternSkin/Makefile (props changed) head/www/twiki-PreferencesPlugin/Makefile (props changed) head/www/twiki-RenderListPlugin/Makefile (props changed) head/www/twiki-SlideShowPlugin/Makefile (props changed) head/www/twiki-SmiliesPlugin/Makefile (props changed) head/www/twiki-SpreadSheetPlugin/Makefile (props changed) head/www/twiki-SubscribePlugin/Makefile (props changed) head/www/twiki-TWikiUserMappingContrib/Makefile (props changed) head/www/twiki-TablePlugin/Makefile (props changed) head/www/twiki-TagMePlugin/Makefile (props changed) head/www/twiki-TinyMCEPlugin/Makefile (props changed) head/www/twiki-TipsContrib/Makefile (props changed) head/www/twiki-TopicVarsPlugin/Makefile (props changed) head/www/twiki-TwistyContrib/Makefile (props changed) head/www/twiki-TwistyPlugin/Makefile (props changed) head/www/twiki-WysiwygPlugin/Makefile (props changed) head/www/twill/Makefile (props changed) head/www/twms/Makefile (props changed) head/www/typolight/Makefile (props changed) head/www/udmsearch/Makefile (props changed) head/www/usermanager/Makefile (props changed) head/www/uwsgitop/Makefile (props changed) head/www/varnish-libvmod-header/Makefile (props changed) head/www/varnish-nagios/Makefile (props changed) head/www/vdradmin-am/Makefile (props changed) head/www/vee/Makefile (props changed) head/www/videocache/Makefile (props changed) head/www/visitors/Makefile (props changed) head/www/waccess/Makefile (props changed) head/www/wadcomblog/Makefile (props changed) head/www/webcalendar-devel/Makefile (props changed) head/www/webcalendar/Makefile (props changed) head/www/webcheck/Makefile (props changed) head/www/webcopy/Makefile (props changed) head/www/webcrawl/Makefile (props changed) head/www/webfs/Makefile (props changed) head/www/webkit-sharp/Makefile (props changed) head/www/weblint++/Makefile (props changed) head/www/weblint/Makefile (props changed) head/www/webobjects/Makefile (props changed) head/www/webobjects/Makefile.plist (props changed) head/www/webpy/Makefile (props changed) head/www/webreport/Makefile (props changed) head/www/webresolve/Makefile (props changed) head/www/webstone/Makefile (props changed) head/www/webtrees/Makefile (props changed) head/www/wikindx/Makefile (props changed) head/www/woof/Makefile (props changed) head/www/wwwcount/Makefile (props changed) head/www/xaraya/Makefile (props changed) head/www/xcache/Makefile (props changed) head/www/xist/Makefile (props changed) head/www/xoops/Makefile (props changed) head/www/xpi-adblock/Makefile (props changed) head/www/xpi-adblock_plus/Makefile (props changed) head/www/xpi-bookmarkdd/Makefile (props changed) head/www/xpi-clear_cache_button/Makefile (props changed) head/www/xpi-clearfields/Makefile (props changed) head/www/xpi-cssviewer/Makefile (props changed) head/www/xpi-cutemenus-crystalsvg/Makefile (props changed) head/www/xpi-deepestsender/Makefile (props changed) head/www/xpi-delicious/Makefile (props changed) head/www/xpi-errorzilla/Makefile (props changed) head/www/xpi-fasterfox/Makefile (props changed) head/www/xpi-firefox-showcase/Makefile (props changed) head/www/xpi-fission/Makefile (props changed) head/www/xpi-flashblock/Makefile (props changed) head/www/xpi-flashgot/Makefile (props changed) head/www/xpi-flatbmark/Makefile (props changed) head/www/xpi-forecastfox/Makefile (props changed) head/www/xpi-formfox/Makefile (props changed) head/www/xpi-foxmarks/Makefile (props changed) head/www/xpi-foxyproxy/Makefile (props changed) head/www/xpi-gbrain/Makefile (props changed) head/www/xpi-gdata_provider/Makefile (props changed) head/www/xpi-gmail-manager/Makefile (props changed) head/www/xpi-google-notebook/Makefile (props changed) head/www/xpi-google_shortcuts/Makefile (props changed) head/www/xpi-httpfox/Makefile (props changed) head/www/xpi-imagezoom/Makefile (props changed) head/www/xpi-imdbpreview/Makefile (props changed) head/www/xpi-imglikeopera/Makefile (props changed) head/www/xpi-infolister/Makefile (props changed) head/www/xpi-informenter/Makefile (props changed) head/www/xpi-inline-google-definitions/Makefile (props changed) head/www/xpi-jslib/Makefile (props changed) head/www/xpi-jsview/Makefile (props changed) head/www/xpi-leechblock/Makefile (props changed) head/www/xpi-linkification/Makefile (props changed) head/www/xpi-live_http_headers/Makefile (props changed) head/www/xpi-locale-switcher/Makefile (props changed) head/www/xpi-menueditor/Makefile (props changed) head/www/xpi-mldonkey/Makefile (props changed) head/www/xpi-modify_headers/Makefile (props changed) head/www/xpi-mrtech-local-install/Makefile (props changed) head/www/xpi-neo-diggler/Makefile (props changed) head/www/xpi-no-referrer/Makefile (props changed) head/www/xpi-passwordmaker/Makefile (props changed) head/www/xpi-pdf_download/Makefile (props changed) head/www/xpi-pencil/Makefile (props changed) head/www/xpi-permatabs/Makefile (props changed) head/www/xpi-prism/Makefile (props changed) head/www/xpi-quickproxy/Makefile (props changed) head/www/xpi-resurrectpages/Makefile (props changed) head/www/xpi-sameplace/Makefile (props changed) head/www/xpi-scrapbook/Makefile (props changed) head/www/xpi-searchstatus/Makefile (props changed) head/www/xpi-server_spy/Makefile (props changed) head/www/xpi-server_switcher/Makefile (props changed) head/www/xpi-sessionmanager/Makefile (props changed) head/www/xpi-speed-dial/Makefile (props changed) head/www/xpi-stumbleupon/Makefile (props changed) head/www/xpi-stylish/Makefile (props changed) head/www/xpi-tabletools/Makefile (props changed) head/www/xpi-tagzilla/Makefile (props changed) head/www/xpi-togglewordwrap/Makefile (props changed) head/www/xpi-twitterfox/Makefile (props changed) head/www/xpi-urllink/Makefile (props changed) head/www/xpi-wmlbrowser/Makefile (props changed) head/www/xpi-xhtml-ruby-support/Makefile (props changed) head/www/xpi-xmpp4moz/Makefile (props changed) head/www/xpi-yslow/Makefile (props changed) head/www/yourls/Makefile (props changed) head/www/zerowait-httpd/Makefile (props changed) head/www/zope213/Makefile (props changed) head/x11-clocks/abclock/Makefile (props changed) head/x11-clocks/aclock/Makefile (props changed) head/x11-clocks/alltraxclock/Makefile (props changed) head/x11-clocks/asclock-gtk/Makefile (props changed) head/x11-clocks/asclock-xlib/Makefile (props changed) head/x11-clocks/asclock/Makefile (props changed) head/x11-clocks/astime/Makefile (props changed) head/x11-clocks/astzclock/Makefile (props changed) head/x11-clocks/bbdate/Makefile (props changed) head/x11-clocks/bclock/Makefile (props changed) head/x11-clocks/buici-clock/Makefile (props changed) head/x11-clocks/emiclock/Makefile (props changed) head/x11-clocks/eyeclock/Makefile (props changed) head/x11-clocks/gdesklets-countdown/Makefile (props changed) head/x11-clocks/gdesklets-ebichuclock/Makefile (props changed) head/x11-clocks/glclock/Makefile (props changed) head/x11-clocks/gtubeclock/Makefile (props changed) head/x11-clocks/lmclock/Makefile (props changed) head/x11-clocks/oclock/Makefile (props changed) head/x11-clocks/osdclock/Makefile (props changed) head/x11-clocks/pclock/Makefile (props changed) head/x11-clocks/rclock/Makefile (props changed) head/x11-clocks/sanduhr/Makefile (props changed) head/x11-clocks/tclock/Makefile (props changed) head/x11-clocks/tktz/Makefile (props changed) head/x11-clocks/wmbday/Makefile (props changed) head/x11-clocks/wmbinclock/Makefile (props changed) head/x11-clocks/wmblueclock/Makefile (props changed) head/x11-clocks/wmcalclock/Makefile (props changed) head/x11-clocks/wmclockmon/Makefile (props changed) head/x11-clocks/wmfishtime/Makefile (props changed) head/x11-clocks/wmfuzzy/Makefile (props changed) head/x11-clocks/wmitime/Makefile (props changed) head/x11-clocks/wmtime/Makefile (props changed) head/x11-clocks/wmtimer/Makefile (props changed) head/x11-clocks/xalarm/Makefile (props changed) head/x11-clocks/xclock/Makefile (props changed) head/x11-clocks/xtimer/Makefile (props changed) head/x11-drivers/Makefile (props changed) head/x11-drivers/input-wacom/Makefile (props changed) head/x11-drivers/xf86-input-acecad/Makefile (props changed) head/x11-drivers/xf86-input-egalax/Makefile (props changed) head/x11-drivers/xf86-input-elographics/Makefile (props changed) head/x11-drivers/xf86-input-hyperpen/Makefile (props changed) head/x11-drivers/xf86-input-joystick/Makefile (props changed) head/x11-drivers/xf86-input-keyboard/Makefile (props changed) head/x11-drivers/xf86-input-magictouch/Makefile (props changed) head/x11-drivers/xf86-input-mouse/Makefile (props changed) head/x11-drivers/xf86-input-mutouch/Makefile (props changed) head/x11-drivers/xf86-input-penmount/Makefile (props changed) head/x11-drivers/xf86-input-synaptics/Makefile (props changed) head/x11-drivers/xf86-input-vmmouse/Makefile (props changed) head/x11-drivers/xf86-input-void/Makefile (props changed) head/x11-drivers/xf86-video-apm/Makefile (props changed) head/x11-drivers/xf86-video-ark/Makefile (props changed) head/x11-drivers/xf86-video-ati/Makefile (props changed) head/x11-drivers/xf86-video-chips/Makefile (props changed) head/x11-drivers/xf86-video-cirrus/Makefile (props changed) head/x11-drivers/xf86-video-cyrix/Makefile (props changed) head/x11-drivers/xf86-video-dummy/Makefile (props changed) head/x11-drivers/xf86-video-fbdev/Makefile (props changed) head/x11-drivers/xf86-video-glint/Makefile (props changed) head/x11-drivers/xf86-video-i128/Makefile (props changed) head/x11-drivers/xf86-video-i740/Makefile (props changed) head/x11-drivers/xf86-video-imstt/Makefile (props changed) head/x11-drivers/xf86-video-intel/Makefile (props changed) head/x11-drivers/xf86-video-mach64/Makefile (props changed) head/x11-drivers/xf86-video-mga/Makefile (props changed) head/x11-drivers/xf86-video-neomagic/Makefile (props changed) head/x11-drivers/xf86-video-newport/Makefile (props changed) head/x11-drivers/xf86-video-nouveau/Makefile.rev (props changed) head/x11-drivers/xf86-video-nv/Makefile (props changed) head/x11-drivers/xf86-video-openchrome/Makefile (props changed) head/x11-drivers/xf86-video-r128/Makefile (props changed) head/x11-drivers/xf86-video-radeonhd/Makefile (props changed) head/x11-drivers/xf86-video-rdc/Makefile (props changed) head/x11-drivers/xf86-video-rendition/Makefile (props changed) head/x11-drivers/xf86-video-s3/Makefile (props changed) head/x11-drivers/xf86-video-s3virge/Makefile (props changed) head/x11-drivers/xf86-video-savage/Makefile (props changed) head/x11-drivers/xf86-video-siliconmotion/Makefile (props changed) head/x11-drivers/xf86-video-sis-intel/Makefile (props changed) head/x11-drivers/xf86-video-sis/Makefile (props changed) head/x11-drivers/xf86-video-sunffb/Makefile (props changed) head/x11-drivers/xf86-video-tdfx/Makefile (props changed) head/x11-drivers/xf86-video-tga/Makefile (props changed) head/x11-drivers/xf86-video-trident/Makefile (props changed) head/x11-drivers/xf86-video-tseng/Makefile (props changed) head/x11-drivers/xf86-video-vesa/Makefile (props changed) head/x11-drivers/xf86-video-via/Makefile (props changed) head/x11-drivers/xf86-video-vmware/Makefile (props changed) head/x11-drivers/xf86-video-voodoo/Makefile (props changed) head/x11-fm/catseye-fm/Makefile (props changed) head/x11-fm/dfm/Makefile (props changed) head/x11-fm/ezfm/Makefile (props changed) head/x11-fm/pbi-thumbnailer/Makefile (props changed) head/x11-fm/tdfsb/Makefile (props changed) head/x11-fm/twander/Makefile (props changed) head/x11-fm/worker/Makefile (props changed) head/x11-fm/xcruise/Makefile (props changed) head/x11-fm/xfm/Makefile (props changed) head/x11-fm/xplore/Makefile (props changed) head/x11-fonts/artwiz-aleczapka-de/Makefile (props changed) head/x11-fonts/artwiz-aleczapka-se/Makefile (props changed) head/x11-fonts/bdfresize/Makefile (props changed) head/x11-fonts/bdftopcf/Makefile (props changed) head/x11-fonts/bitstream-vera/Makefile (props changed) head/x11-fonts/c64bdf/Makefile (props changed) head/x11-fonts/code2001/Makefile (props changed) head/x11-fonts/cyberbit-ttfonts/Makefile (props changed) head/x11-fonts/cyr-rfx/Makefile (props changed) head/x11-fonts/cyr-rfx/files/Makefile.bdf2pcf (props changed) head/x11-fonts/ecofont/Makefile (props changed) head/x11-fonts/encodings/Makefile (props changed) head/x11-fonts/font-adobe-100dpi/Makefile (props changed) head/x11-fonts/font-adobe-75dpi/Makefile (props changed) head/x11-fonts/font-adobe-utopia-100dpi/Makefile (props changed) head/x11-fonts/font-adobe-utopia-75dpi/Makefile (props changed) head/x11-fonts/font-adobe-utopia-type1/Makefile (props changed) head/x11-fonts/font-alias/Makefile (props changed) head/x11-fonts/font-arabic-misc/Makefile (props changed) head/x11-fonts/font-bh-100dpi/Makefile (props changed) head/x11-fonts/font-bh-75dpi/Makefile (props changed) head/x11-fonts/font-bh-lucidatypewriter-100dpi/Makefile (props changed) head/x11-fonts/font-bh-lucidatypewriter-75dpi/Makefile (props changed) head/x11-fonts/font-bh-ttf/Makefile (props changed) head/x11-fonts/font-bh-type1/Makefile (props changed) head/x11-fonts/font-bitstream-100dpi/Makefile (props changed) head/x11-fonts/font-bitstream-75dpi/Makefile (props changed) head/x11-fonts/font-bitstream-speedo/Makefile (props changed) head/x11-fonts/font-bitstream-type1/Makefile (props changed) head/x11-fonts/font-cronyx-cyrillic/Makefile (props changed) head/x11-fonts/font-cursor-misc/Makefile (props changed) head/x11-fonts/font-daewoo-misc/Makefile (props changed) head/x11-fonts/font-dec-misc/Makefile (props changed) head/x11-fonts/font-ibm-type1/Makefile (props changed) head/x11-fonts/font-isas-misc/Makefile (props changed) head/x11-fonts/font-jis-misc/Makefile (props changed) head/x11-fonts/font-micro-misc/Makefile (props changed) head/x11-fonts/font-misc-cyrillic/Makefile (props changed) head/x11-fonts/font-misc-ethiopic/Makefile (props changed) head/x11-fonts/font-misc-meltho/Makefile (props changed) head/x11-fonts/font-misc-misc/Makefile (props changed) head/x11-fonts/font-mutt-misc/Makefile (props changed) head/x11-fonts/font-schumacher-misc/Makefile (props changed) head/x11-fonts/font-screen-cyrillic/Makefile (props changed) head/x11-fonts/font-sony-misc/Makefile (props changed) head/x11-fonts/font-sun-misc/Makefile (props changed) head/x11-fonts/font-util/Makefile (props changed) head/x11-fonts/font-winitzki-cyrillic/Makefile (props changed) head/x11-fonts/font-xfree86-type1/Makefile (props changed) head/x11-fonts/fontcacheproto/Makefile (props changed) head/x11-fonts/fontconfig-reference/Makefile (props changed) head/x11-fonts/fonts-indic/Makefile (props changed) head/x11-fonts/fonts-te/Makefile (props changed) head/x11-fonts/fontsproto/Makefile (props changed) head/x11-fonts/fonttosfnt/Makefile (props changed) head/x11-fonts/fslsfonts/Makefile (props changed) head/x11-fonts/gfe/Makefile (props changed) head/x11-fonts/gnu-unifont-ttf/Makefile (props changed) head/x11-fonts/gnu-unifont/Makefile (props changed) head/x11-fonts/inconsolata-ttf/Makefile (props changed) head/x11-fonts/indic-ttf/Makefile (props changed) head/x11-fonts/intlfonts/Makefile (props changed) head/x11-fonts/isabella/Makefile (props changed) head/x11-fonts/junicode/Makefile (props changed) head/x11-fonts/kaputa/Makefile (props changed) head/x11-fonts/khmeros/Makefile (props changed) head/x11-fonts/libFS/Makefile (props changed) head/x11-fonts/libXfont/Makefile (props changed) head/x11-fonts/libXfontcache/Makefile (props changed) head/x11-fonts/libfontenc/Makefile (props changed) head/x11-fonts/linux-f10-fontconfig/Makefile (props changed) head/x11-fonts/linuxlibertine-g/Makefile (props changed) head/x11-fonts/manu-gothica/Makefile (props changed) head/x11-fonts/mkbold-mkitalic/Makefile (props changed) head/x11-fonts/mkfontdir/Makefile (props changed) head/x11-fonts/mkfontscale/Makefile (props changed) head/x11-fonts/mondulkiri/Makefile (props changed) head/x11-fonts/montecarlo_fonts/Makefile (props changed) head/x11-fonts/nexfontsel/Makefile (props changed) head/x11-fonts/padauk/Makefile (props changed) head/x11-fonts/pingwi/Makefile (props changed) head/x11-fonts/profont/Makefile (props changed) head/x11-fonts/proggy_fonts-ttf/Makefile (props changed) head/x11-fonts/roboto-fonts-ttf/Makefile (props changed) head/x11-fonts/showfont/Makefile (props changed) head/x11-fonts/terminus-font/Makefile (props changed) head/x11-fonts/texcm-ttf/Makefile (props changed) head/x11-fonts/tmu/Makefile (props changed) head/x11-fonts/tv-fonts/Makefile (props changed) head/x11-fonts/ubuntu-font/Makefile (props changed) head/x11-fonts/webfonts/Makefile (props changed) head/x11-fonts/wqy/Makefile (props changed) head/x11-fonts/xf86bigfontproto/Makefile (props changed) head/x11-fonts/xfontsel/Makefile (props changed) head/x11-fonts/xfs/Makefile (props changed) head/x11-fonts/xfsinfo/Makefile (props changed) head/x11-fonts/xlsfonts/Makefile (props changed) head/x11-fonts/xorg-fonts-100dpi/Makefile (props changed) head/x11-fonts/xorg-fonts-75dpi/Makefile (props changed) head/x11-fonts/xorg-fonts-cyrillic/Makefile (props changed) head/x11-fonts/xorg-fonts-miscbitmaps/Makefile (props changed) head/x11-fonts/xorg-fonts-truetype/Makefile (props changed) head/x11-fonts/xorg-fonts-type1/Makefile (props changed) head/x11-fonts/xorg-fonts/Makefile (props changed) head/x11-servers/Makefile (props changed) head/x11-servers/Xfstt/Makefile (props changed) head/x11-servers/mga_hal/Makefile (props changed) head/x11-servers/x2vnc/Makefile (props changed) head/x11-servers/xephyr/Makefile (props changed) head/x11-servers/xorg-dmx/Makefile (props changed) head/x11-servers/xorg-nestserver/Makefile (props changed) head/x11-servers/xorg-vfbserver/Makefile (props changed) head/x11-themes/audacious-skins/Makefile (props changed) head/x11-themes/beastie/Makefile (props changed) head/x11-themes/bluecurve-themes/bsd.bluecurve.mk (props changed) head/x11-themes/claws-mail-themes/Makefile (props changed) head/x11-themes/clearlooks-metacity/Makefile (props changed) head/x11-themes/clearlooks-themes/Makefile (props changed) head/x11-themes/clearlooks/Makefile (props changed) head/x11-themes/cursor-bluecurve-theme/Makefile (props changed) head/x11-themes/cursor-crystal-theme/Makefile (props changed) head/x11-themes/cursor-dmz-aa-theme/Makefile (props changed) head/x11-themes/cursor-dmz-theme/Makefile (props changed) head/x11-themes/cursor-ecliz/Makefile (props changed) head/x11-themes/cursor-grounation-theme/Makefile (props changed) head/x11-themes/cursor-jimmac-theme/Makefile (props changed) head/x11-themes/cursor-neutral-theme/Makefile (props changed) head/x11-themes/cursor-neutral-white-theme/Makefile (props changed) head/x11-themes/cursor-polar-theme/Makefile (props changed) head/x11-themes/e16-themes/Makefile (props changed) head/x11-themes/emerald-themes/Makefile (props changed) head/x11-themes/fluxbox-tenr-styles-pack/Makefile (props changed) head/x11-themes/gnome-bluecurve-theme/Makefile (props changed) head/x11-themes/gnome-icons-aqua-fusion/Makefile (props changed) head/x11-themes/gnome-icons-crystal/Makefile (props changed) head/x11-themes/gnome-icons-elementary/Makefile (props changed) head/x11-themes/gnome-icons-gentoo-test/Makefile (props changed) head/x11-themes/gnome-icons-iris/Makefile (props changed) head/x11-themes/gnome-icons-lila/Makefile (props changed) head/x11-themes/gnome-icons-noia-full/Makefile (props changed) head/x11-themes/gnome-icons-noia-warm/Makefile (props changed) head/x11-themes/gnome-icons-refined/Makefile (props changed) head/x11-themes/gnome-icons-slick/Makefile (props changed) head/x11-themes/gnome-icons-snow-apple/Makefile (props changed) head/x11-themes/gnome-icons-snowish/Makefile (props changed) head/x11-themes/gnome-icons-stylish/Makefile (props changed) head/x11-themes/gnome-icons-ximian-south/Makefile (props changed) head/x11-themes/gnome-icons/Makefile (props changed) head/x11-themes/gnome-icons/bsd.gnome-icons.mk (props changed) head/x11-themes/gtk-aluminumalloy-cryogenic-theme/Makefile (props changed) head/x11-themes/gtk-aluminumalloy-smog-theme/Makefile (props changed) head/x11-themes/gtk-aluminumalloy-toxic-theme/Makefile (props changed) head/x11-themes/gtk-aluminumalloy-volcanic-theme/Makefile (props changed) head/x11-themes/gtk-aquaextremesunken-theme/Makefile (props changed) head/x11-themes/gtk-aqualightblue-theme/Makefile (props changed) head/x11-themes/gtk-aurora-engine/Makefile (props changed) head/x11-themes/gtk-bluecurve-theme/Makefile (props changed) head/x11-themes/gtk-cleanice-engine/Makefile (props changed) head/x11-themes/gtk-digital-cream-theme/Makefile (props changed) head/x11-themes/gtk-digital-harmony-theme/Makefile (props changed) head/x11-themes/gtk-envy-theme/Makefile (props changed) head/x11-themes/gtk-flat-theme2/Makefile (props changed) head/x11-themes/gtk-gray-theme/Makefile (props changed) head/x11-themes/gtk-lila-theme-extras/Makefile (props changed) head/x11-themes/gtk-lila-theme/Makefile (props changed) head/x11-themes/gtk-longhorninspirat-theme/Makefile (props changed) head/x11-themes/gtk-milk-theme/Makefile (props changed) head/x11-themes/gtk-nodoka-engine/Makefile (props changed) head/x11-themes/gtk-qnxtheme/Makefile (props changed) head/x11-themes/icon-bluecurve-theme/Makefile (props changed) head/x11-themes/icons-buuf/Makefile (props changed) head/x11-themes/icons-human-azul/Makefile (props changed) head/x11-themes/icons-tango-extras/Makefile (props changed) head/x11-themes/irssi-themes/Makefile (props changed) head/x11-themes/irssi-themes/Makefile.inc (props changed) head/x11-themes/kde-icons-black-and-white/Makefile (props changed) head/x11-themes/kde-icons-cezanne/Makefile (props changed) head/x11-themes/kde-icons-crystal-project/Makefile (props changed) head/x11-themes/kde-icons-dark-glass/Makefile (props changed) head/x11-themes/kde-icons-gartoon-blue-svg/Makefile (props changed) head/x11-themes/kde-icons-gartoon-svg/Makefile (props changed) head/x11-themes/kde-icons-graphite-rade8/Makefile (props changed) head/x11-themes/kde-icons-icosx/Makefile (props changed) head/x11-themes/kde-icons-kool-gorilla/Makefile (props changed) head/x11-themes/kde-icons-lime-rade8/Makefile (props changed) head/x11-themes/kde-icons-lush/Makefile (props changed) head/x11-themes/kde-icons-noia/Makefile (props changed) head/x11-themes/kde-icons-noia/Makefile.icons (props changed) head/x11-themes/kde-icons-nuovext/Makefile (props changed) head/x11-themes/kde-icons-nuovext2/Makefile (props changed) head/x11-themes/kde-icons-nuvola/Makefile (props changed) head/x11-themes/kde-icons-os-k/Makefile (props changed) head/x11-themes/kde-icons-sky/Makefile (props changed) head/x11-themes/kde-icons-umicons/Makefile (props changed) head/x11-themes/kde-icons-vista-inspirate/Makefile (props changed) head/x11-themes/linux-f10-hicolor-icon-theme/Makefile (props changed) head/x11-themes/linux-hicolor-icon-theme/Makefile (props changed) head/x11-themes/metacity-aluminumalloy-cryogenic-theme/Makefile (props changed) head/x11-themes/metacity-aluminumalloy-smog-theme/Makefile (props changed) head/x11-themes/metacity-aluminumalloy-toxic-theme/Makefile (props changed) head/x11-themes/metacity-aluminumalloy-volcanic-theme/Makefile (props changed) head/x11-themes/metacity-aquaextremesunken-theme/Makefile (props changed) head/x11-themes/metacity-bluecurve-theme/Makefile (props changed) head/x11-themes/metacity-digital-cream-theme/Makefile (props changed) head/x11-themes/metacity-digital-harmony-theme/Makefile (props changed) head/x11-themes/metacity-longhorninspirat-theme/Makefile (props changed) head/x11-themes/metacity-milk-theme/Makefile (props changed) head/x11-themes/nimbus/Makefile (props changed) head/x11-themes/openbox-themes/Makefile (props changed) head/x11-themes/rezlooks/Makefile (props changed) head/x11-themes/sawfish-themes/Makefile (props changed) head/x11-themes/slim-themes/Makefile (props changed) head/x11-themes/ubuntulooks/Makefile (props changed) head/x11-themes/xcursor-themes/Makefile (props changed) head/x11-themes/xmms-bluecurve-theme/Makefile (props changed) head/x11-themes/xmms-eq-skins/Makefile (props changed) head/x11-themes/xmms-vumeter-skins/Makefile (props changed) head/x11-toolkits/Xaw3d/Makefile (props changed) head/x11-toolkits/fl_editor/Makefile (props changed) head/x11-toolkits/flvw/Makefile (props changed) head/x11-toolkits/fpc-gnome1/Makefile (props changed) head/x11-toolkits/gai/Makefile (props changed) head/x11-toolkits/gal2-reference/Makefile (props changed) head/x11-toolkits/gnomemm/Makefile (props changed) head/x11-toolkits/gnustep-back/Makefile (props changed) head/x11-toolkits/gnustep-gui/Makefile (props changed) head/x11-toolkits/gstreamer-plugins-pango/Makefile (props changed) head/x11-toolkits/gtkglarea2/Makefile (props changed) head/x11-toolkits/gtkimageview/Makefile (props changed) head/x11-toolkits/gtkmathview/Makefile (props changed) head/x11-toolkits/gtkmm20-reference/Makefile (props changed) head/x11-toolkits/gtkmm24-reference/Makefile (props changed) head/x11-toolkits/gtkmm30-reference/Makefile (props changed) head/x11-toolkits/gtksourceview-reference/Makefile (props changed) head/x11-toolkits/gtksourceview2-reference/Makefile (props changed) head/x11-toolkits/hippo-canvas/Makefile (props changed) head/x11-toolkits/hs-GLUT/Makefile (props changed) head/x11-toolkits/hs-OpenGL/Makefile (props changed) head/x11-toolkits/hs-gtk/Makefile (props changed) head/x11-toolkits/hs-gtk2hs/Makefile (props changed) head/x11-toolkits/hs-gtksourceview2/Makefile (props changed) head/x11-toolkits/hs-pango/Makefile (props changed) head/x11-toolkits/hs-vte/Makefile (props changed) head/x11-toolkits/hs-wx/Makefile (props changed) head/x11-toolkits/hs-wxc/Makefile (props changed) head/x11-toolkits/hs-wxcore/Makefile (props changed) head/x11-toolkits/hs-wxdirect/Makefile (props changed) head/x11-toolkits/irrlicht/Makefile (props changed) head/x11-toolkits/lesstif/Makefile (props changed) head/x11-toolkits/libXaw/Makefile (props changed) head/x11-toolkits/libXmu/Makefile (props changed) head/x11-toolkits/libXt/Makefile (props changed) head/x11-toolkits/libbonoboui-reference/Makefile (props changed) head/x11-toolkits/libgail-gnome/Makefile (props changed) head/x11-toolkits/libgdiplus/Makefile (props changed) head/x11-toolkits/libgnomeprintuimm/Makefile (props changed) head/x11-toolkits/libgnomeui-reference/Makefile (props changed) head/x11-toolkits/libgnomeuimm26/Makefile (props changed) head/x11-toolkits/libpanelappletmm/Makefile (props changed) head/x11-toolkits/libwnck-reference/Makefile (props changed) head/x11-toolkits/libxaw3dxft/Makefile (props changed) head/x11-toolkits/libzvt/Makefile (props changed) head/x11-toolkits/linux-f10-blt/Makefile (props changed) head/x11-toolkits/linux-f10-gtk2/Makefile (props changed) head/x11-toolkits/linux-f10-openmotif/Makefile (props changed) head/x11-toolkits/linux-f10-pango/Makefile (props changed) head/x11-toolkits/linux-f10-tk85/Makefile (props changed) head/x11-toolkits/movingmotif/Makefile (props changed) head/x11-toolkits/mowitz/Makefile (props changed) head/x11-toolkits/neXtaw/Makefile (props changed) head/x11-toolkits/open-motif/Makefile.man (props changed) head/x11-toolkits/otk/Makefile (props changed) head/x11-toolkits/p5-Tk/Makefile (props changed) head/x11-toolkits/pango-reference/Makefile (props changed) head/x11-toolkits/pangoxsl/Makefile (props changed) head/x11-toolkits/paragui-devel/Makefile (props changed) head/x11-toolkits/pure-gtk/Makefile (props changed) head/x11-toolkits/py-Pmw/Makefile (props changed) head/x11-toolkits/py-SquareMap/Makefile (props changed) head/x11-toolkits/py-fltk/Makefile (props changed) head/x11-toolkits/py-gnome-extras/Makefile (props changed) head/x11-toolkits/py-gtkglext/Makefile (props changed) head/x11-toolkits/py-gui/Makefile (props changed) head/x11-toolkits/py-traitsbackendwx/Makefile (props changed) head/x11-toolkits/py-traitsgui/Makefile (props changed) head/x11-toolkits/py-vte/Makefile (props changed) head/x11-toolkits/py-wmdockapps/Makefile (props changed) head/x11-toolkits/py-wxPython26-common/Makefile (props changed) head/x11-toolkits/py-wxPython26-unicode/Makefile (props changed) head/x11-toolkits/py-wxPython26/Makefile (props changed) head/x11-toolkits/py-wxPython28-common/Makefile (props changed) head/x11-toolkits/py-wxPython28-unicode/Makefile (props changed) head/x11-toolkits/py-xlib/Makefile (props changed) head/x11-toolkits/py31-tkinter/Makefile (props changed) head/x11-toolkits/sdl_pango/Makefile (props changed) head/x11-toolkits/skinlf/Makefile (props changed) head/x11-toolkits/slingshot/Makefile (props changed) head/x11-toolkits/soqt/Makefile (props changed) head/x11-toolkits/v/Makefile (props changed) head/x11-toolkits/vdk/Makefile (props changed) head/x11-toolkits/vdkbuilder/Makefile (props changed) head/x11-toolkits/vte-reference/Makefile (props changed) head/x11-toolkits/wmapp/Makefile (props changed) head/x11-toolkits/wxgtk26-common/Makefile (props changed) head/x11-toolkits/wxgtk26-contrib-common/Makefile (props changed) head/x11-toolkits/wxgtk26-contrib/Makefile (props changed) head/x11-toolkits/wxgtk26-docs/Makefile (props changed) head/x11-toolkits/wxgtk26-unicode-contrib/Makefile (props changed) head/x11-toolkits/wxgtk26-unicode/Makefile (props changed) head/x11-toolkits/wxgtk28-common/Makefile (props changed) head/x11-toolkits/wxgtk28-contrib-common/Makefile (props changed) head/x11-toolkits/wxgtk28-contrib/Makefile (props changed) head/x11-toolkits/wxgtk28-unicode-contrib/Makefile (props changed) head/x11-toolkits/wxgtk28-unicode/Makefile (props changed) head/x11-toolkits/xbae/Makefile (props changed) head/x11-toolkits/xmhtml/Makefile (props changed) head/x11-toolkits/xscoop/Makefile (props changed) head/x11-toolkits/xview-clients/Makefile (props changed) head/x11-toolkits/xview/Makefile (props changed) head/x11-wm/afterstep-i18n/Makefile (props changed) head/x11-wm/afterstep/Makefile (props changed) head/x11-wm/amiwm/Makefile (props changed) head/x11-wm/antiwm/Makefile (props changed) head/x11-wm/awesome-vicious/Makefile (props changed) head/x11-wm/bbkeys/Makefile (props changed) head/x11-wm/bbpager/Makefile (props changed) head/x11-wm/compiz-fusion/Makefile (props changed) head/x11-wm/compizconfig-backend-gconf/Makefile (props changed) head/x11-wm/compizconfig-python/Makefile (props changed) head/x11-wm/compton/Makefile (props changed) head/x11-wm/ctwm/Makefile (props changed) head/x11-wm/dwm/Makefile (props changed) head/x11-wm/e16utils/Makefile (props changed) head/x11-wm/e17-module-deskshow/Makefile (props changed) head/x11-wm/e17-module-elfe/Makefile (props changed) head/x11-wm/e17-module-empris/Makefile (props changed) head/x11-wm/e17-module-everything-shotgun/Makefile (props changed) head/x11-wm/e17-module-exebuf/Makefile (props changed) head/x11-wm/e17-module-execwatch/Makefile (props changed) head/x11-wm/e17-module-itask/Makefile (props changed) head/x11-wm/e17-module-winselector/Makefile (props changed) head/x11-wm/e17-modules/Makefile (props changed) head/x11-wm/echinus/Makefile (props changed) head/x11-wm/enlightenment-docs/Makefile (props changed) head/x11-wm/fbcmd/Makefile (props changed) head/x11-wm/fluxconf/Makefile (props changed) head/x11-wm/fluxter/Makefile (props changed) head/x11-wm/fvwm/Makefile (props changed) head/x11-wm/fvwm2-i18n/Makefile (props changed) head/x11-wm/genmenu/Makefile (props changed) head/x11-wm/herbstluftwm/Makefile (props changed) head/x11-wm/hs-xmonad-contrib/Makefile (props changed) head/x11-wm/hs-xmonad/Makefile (props changed) head/x11-wm/icewm/Makefile (props changed) head/x11-wm/ion/Makefile (props changed) head/x11-wm/jwm/Makefile (props changed) head/x11-wm/larswm/Makefile (props changed) head/x11-wm/libcompizconfig/Makefile (props changed) head/x11-wm/matwm2/Makefile (props changed) head/x11-wm/nickleby/Makefile (props changed) head/x11-wm/obpager/Makefile (props changed) head/x11-wm/olvwm/Makefile (props changed) head/x11-wm/oroborus/Makefile (props changed) head/x11-wm/pager/Makefile (props changed) head/x11-wm/peksystray/Makefile (props changed) head/x11-wm/phluid/Makefile (props changed) head/x11-wm/plwm/Makefile (props changed) head/x11-wm/pwm/Makefile (props changed) head/x11-wm/ratmenu/Makefile (props changed) head/x11-wm/ratpoison/Makefile (props changed) head/x11-wm/spectrwm/Makefile (props changed) head/x11-wm/tinywm/Makefile (props changed) head/x11-wm/tvtwm/Makefile (props changed) head/x11-wm/twm/Makefile (props changed) head/x11-wm/w9wm/Makefile (props changed) head/x11-wm/wm2/Makefile (props changed) head/x11-wm/wmfs/Makefile (props changed) head/x11-wm/wmname/Makefile (props changed) head/x11-wm/xcompmgr/Makefile (props changed) head/x11/9box/Makefile (props changed) head/x11/9menu/Makefile (props changed) head/x11/alltray/Makefile (props changed) head/x11/appres/Makefile (props changed) head/x11/apwal/Makefile (props changed) head/x11/arandr/Makefile (props changed) head/x11/avant-window-navigator-gnome/Makefile (props changed) head/x11/bbappconf/Makefile (props changed) head/x11/bbdock/Makefile (props changed) head/x11/bbrun/Makefile (props changed) head/x11/beforelight/Makefile (props changed) head/x11/bgs/Makefile (props changed) head/x11/bigreqsproto/Makefile (props changed) head/x11/bitmap/Makefile (props changed) head/x11/blast/Makefile (props changed) head/x11/brightside/Makefile (props changed) head/x11/cl-clx/Makefile (props changed) head/x11/compositeproto/Makefile (props changed) head/x11/damageproto/Makefile (props changed) head/x11/decurs/Makefile (props changed) head/x11/deskmenu/Makefile (props changed) head/x11/deskpaint/Makefile (props changed) head/x11/dgs/Makefile (props changed) head/x11/dmenu/Makefile (props changed) head/x11/dmxproto/Makefile (props changed) head/x11/dri2proto/Makefile (props changed) head/x11/dzen2/Makefile (props changed) head/x11/eaglemode/Makefile (props changed) head/x11/ecore-imf/Makefile (props changed) head/x11/ecore-imf_evas/Makefile (props changed) head/x11/ecore-input/Makefile (props changed) head/x11/ecore-input_evas/Makefile (props changed) head/x11/ecore-x11/Makefile (props changed) head/x11/editres/Makefile (props changed) head/x11/efreet/Makefile (props changed) head/x11/emprint/Makefile (props changed) head/x11/emu/Makefile (props changed) head/x11/erun/Makefile (props changed) head/x11/evieext/Makefile (props changed) head/x11/evilvte/Makefile (props changed) head/x11/fixesproto/Makefile (props changed) head/x11/fstobdf/Makefile (props changed) head/x11/gcb/Makefile (props changed) head/x11/gdesklets-tasklist/Makefile (props changed) head/x11/glproto/Makefile (props changed) head/x11/gnome-desktop-reference/Makefile (props changed) head/x11/gnome-panel-reference/Makefile (props changed) head/x11/gnome-swallow/Makefile (props changed) head/x11/gnome2-fifth-toe/Makefile (props changed) head/x11/gnome2-lite/Makefile (props changed) head/x11/gnome2-power-tools/Makefile (props changed) head/x11/gnome2/Makefile (props changed) head/x11/gnustep-app/Makefile (props changed) head/x11/gpctool/Makefile (props changed) head/x11/grabc/Makefile (props changed) head/x11/gromit/Makefile (props changed) head/x11/gskrab/Makefile (props changed) head/x11/gtk-launch/Makefile (props changed) head/x11/gtk-theme-switch/Makefile (props changed) head/x11/gtk-theme-switch2/Makefile (props changed) head/x11/gtkterm2/Makefile (props changed) head/x11/hotwire-shell/Makefile (props changed) head/x11/hs-X11-xft/Makefile (props changed) head/x11/hs-X11/Makefile (props changed) head/x11/hs-xmobar/Makefile (props changed) head/x11/iceauth/Makefile (props changed) head/x11/ico/Makefile (props changed) head/x11/idesk/Makefile (props changed) head/x11/imwheel/Makefile (props changed) head/x11/innerspace/Makefile (props changed) head/x11/inputproto/Makefile (props changed) head/x11/kb2mb2/Makefile (props changed) head/x11/kbproto/Makefile (props changed) head/x11/keyboardcast/Makefile (props changed) head/x11/libICE/Makefile (props changed) head/x11/libSM/Makefile (props changed) head/x11/libXScrnSaver/Makefile (props changed) head/x11/libXTrap/Makefile (props changed) head/x11/libXau/Makefile (props changed) head/x11/libXcomposite/Makefile (props changed) head/x11/libXcursor/Makefile (props changed) head/x11/libXdamage/Makefile (props changed) head/x11/libXdmcp/Makefile (props changed) head/x11/libXevie/Makefile (props changed) head/x11/libXext/Makefile (props changed) head/x11/libXfixes/Makefile (props changed) head/x11/libXi/Makefile (props changed) head/x11/libXinerama/Makefile (props changed) head/x11/libXp/Makefile (props changed) head/x11/libXpm/Makefile (props changed) head/x11/libXprintAppUtil/Makefile (props changed) head/x11/libXprintUtil/Makefile (props changed) head/x11/libXrandr/Makefile (props changed) head/x11/libXrender/Makefile (props changed) head/x11/libXres/Makefile (props changed) head/x11/libXtst/Makefile (props changed) head/x11/libXv/Makefile (props changed) head/x11/libXvMC/Makefile (props changed) head/x11/libXxf86dga/Makefile (props changed) head/x11/libXxf86misc/Makefile (props changed) head/x11/libXxf86vm/Makefile (props changed) head/x11/libdmx/Makefile (props changed) head/x11/libdnd/Makefile (props changed) head/x11/libgnome-java/Makefile (props changed) head/x11/libgnome-reference/Makefile (props changed) head/x11/libgnomemm26/Makefile (props changed) head/x11/liboldX/Makefile (props changed) head/x11/libsx/Makefile (props changed) head/x11/libsynaptics/Makefile (props changed) head/x11/libxcb/Makefile (props changed) head/x11/libxdg-basedir/Makefile (props changed) head/x11/libxkbfile/Makefile (props changed) head/x11/libxkbui/Makefile (props changed) head/x11/linux-f10-xorg-libs/Makefile (props changed) head/x11/listres/Makefile (props changed) head/x11/luit/Makefile (props changed) head/x11/mate-base/Makefile (props changed) head/x11/metalock/Makefile (props changed) head/x11/mgapdesk/Makefile (props changed) head/x11/mkcomposecache/Makefile (props changed) head/x11/mrxvt/Makefile (props changed) head/x11/multi-aterm/Makefile (props changed) head/x11/mxico/Makefile (props changed) head/x11/numlockx/Makefile (props changed) head/x11/nvidia-driver-173/Makefile (props changed) head/x11/nvidia-driver-304/Makefile (props changed) head/x11/nvidia-driver-71/Makefile (props changed) head/x11/nvidia-driver-96/Makefile (props changed) head/x11/nvidia-settings/Makefile (props changed) head/x11/nvidia-xconfig/Makefile (props changed) head/x11/ooxcb/Makefile (props changed) head/x11/peeper/Makefile (props changed) head/x11/printproto/Makefile (props changed) head/x11/props/Makefile (props changed) head/x11/randrproto/Makefile (props changed) head/x11/recordproto/Makefile (props changed) head/x11/rendercheck/Makefile (props changed) head/x11/renderproto/Makefile (props changed) head/x11/resourceproto/Makefile (props changed) head/x11/rgb/Makefile (props changed) head/x11/roxbg/Makefile (props changed) head/x11/rstart/Makefile (props changed) head/x11/ruby-X11/Makefile (props changed) head/x11/ruby-gnome2/Makefile (props changed) head/x11/sbxkb/Makefile (props changed) head/x11/scripts/Makefile (props changed) head/x11/scrnsaverproto/Makefile (props changed) head/x11/sessreg/Makefile (props changed) head/x11/setlayout/Makefile (props changed) head/x11/setxkbmap/Makefile (props changed) head/x11/simdock/Makefile (props changed) head/x11/sisctrl/Makefile (props changed) head/x11/smproxy/Makefile (props changed) head/x11/sselp/Makefile (props changed) head/x11/stalonetray/Makefile (props changed) head/x11/swarp/Makefile (props changed) head/x11/sxpc/Makefile (props changed) head/x11/tabbed/Makefile (props changed) head/x11/terminal.app/Makefile (props changed) head/x11/thinglaunch/Makefile (props changed) head/x11/trapproto/Makefile (props changed) head/x11/videoproto/Makefile (props changed) head/x11/viewres/Makefile (props changed) head/x11/wdm/Makefile (props changed) head/x11/wmappl/Makefile (props changed) head/x11/wmblob/Makefile (props changed) head/x11/wmbutton/Makefile (props changed) head/x11/wmcliphist/Makefile (props changed) head/x11/wmctrl/Makefile (props changed) head/x11/wmdrawer/Makefile (props changed) head/x11/wmmatrix/Makefile (props changed) head/x11/wmxss/Makefile (props changed) head/x11/x11perf/Makefile (props changed) head/x11/xaniroc/Makefile (props changed) head/x11/xantfarm/Makefile (props changed) head/x11/xascii/Makefile (props changed) head/x11/xauth/Makefile (props changed) head/x11/xautolock/Makefile (props changed) head/x11/xbacklight/Makefile (props changed) head/x11/xballoon/Makefile (props changed) head/x11/xbanner/Makefile (props changed) head/x11/xbiff/Makefile (props changed) head/x11/xbindkeys/Makefile (props changed) head/x11/xbitmaps/Makefile (props changed) head/x11/xbrightness/Makefile (props changed) head/x11/xcalc/Makefile (props changed) head/x11/xcb-proto/Makefile (props changed) head/x11/xclip/Makefile (props changed) head/x11/xclipboard/Makefile (props changed) head/x11/xcmd/Makefile (props changed) head/x11/xcmiscproto/Makefile (props changed) head/x11/xcmsdb/Makefile (props changed) head/x11/xco/Makefile (props changed) head/x11/xcolors/Makefile (props changed) head/x11/xcolorsel/Makefile (props changed) head/x11/xconsole/Makefile (props changed) head/x11/xcurs/Makefile (props changed) head/x11/xcursorgen/Makefile (props changed) head/x11/xcut/Makefile (props changed) head/x11/xdbedizzy/Makefile (props changed) head/x11/xditview/Makefile (props changed) head/x11/xdpyinfo/Makefile (props changed) head/x11/xdriinfo/Makefile (props changed) head/x11/xedit/Makefile (props changed) head/x11/xev/Makefile (props changed) head/x11/xextproto/Makefile (props changed) head/x11/xeyes/Makefile (props changed) head/x11/xf86dga/Makefile (props changed) head/x11/xf86dgaproto/Makefile (props changed) head/x11/xf86driproto/Makefile (props changed) head/x11/xf86miscproto/Makefile (props changed) head/x11/xf86rushproto/Makefile (props changed) head/x11/xf86vidmodeproto/Makefile (props changed) head/x11/xfd/Makefile (props changed) head/x11/xfindproxy/Makefile (props changed) head/x11/xfishtank/Makefile (props changed) head/x11/xforward/Makefile (props changed) head/x11/xfwp/Makefile (props changed) head/x11/xgamma/Makefile (props changed) head/x11/xgc/Makefile (props changed) head/x11/xgrab/Makefile (props changed) head/x11/xhost/Makefile (props changed) head/x11/xidle/Makefile (props changed) head/x11/xineramaproto/Makefile (props changed) head/x11/xinit/Makefile (props changed) head/x11/xinput/Makefile (props changed) head/x11/xkbcomp/Makefile (props changed) head/x11/xkbctrl/Makefile (props changed) head/x11/xkbevd/Makefile (props changed) head/x11/xkbprint/Makefile (props changed) head/x11/xkbset/Makefile (props changed) head/x11/xkbutils/Makefile (props changed) head/x11/xkeycaps/Makefile (props changed) head/x11/xkeywrap/Makefile (props changed) head/x11/xkill/Makefile (props changed) head/x11/xload/Makefile (props changed) head/x11/xlogo/Makefile (props changed) head/x11/xlogout/Makefile (props changed) head/x11/xlsatoms/Makefile (props changed) head/x11/xlsclients/Makefile (props changed) head/x11/xlupe/Makefile (props changed) head/x11/xmag/Makefile (props changed) head/x11/xman/Makefile (props changed) head/x11/xmangekyou/Makefile (props changed) head/x11/xmascot/Makefile (props changed) head/x11/xmessage/Makefile (props changed) head/x11/xmh/Makefile (props changed) head/x11/xmodmap/Makefile (props changed) head/x11/xmon/Makefile (props changed) head/x11/xmore/Makefile (props changed) head/x11/xmotd/Makefile (props changed) head/x11/xmsg/Makefile (props changed) head/x11/xmx/Makefile (props changed) head/x11/xnodecor/Makefile (props changed) head/x11/xnodecor/files/Makefile (props changed) head/x11/xorg-apps/Makefile (props changed) head/x11/xorg-cf-files/Makefile (props changed) head/x11/xorg-docs/Makefile (props changed) head/x11/xorg-libraries/Makefile (props changed) head/x11/xorg-minimal/Makefile (props changed) head/x11/xorg/Makefile (props changed) head/x11/xplsprinters/Makefile (props changed) head/x11/xpr/Makefile (props changed) head/x11/xprehashprinterlist/Makefile (props changed) head/x11/xprompt/Makefile (props changed) head/x11/xprop/Makefile (props changed) head/x11/xproto/Makefile (props changed) head/x11/xproxymanagementprotocol/Makefile (props changed) head/x11/xpyb/Makefile (props changed) head/x11/xrandr/Makefile (props changed) head/x11/xrdb/Makefile (props changed) head/x11/xrefresh/Makefile (props changed) head/x11/xrestop/Makefile (props changed) head/x11/xrootconsole/Makefile (props changed) head/x11/xrsh/Makefile (props changed) head/x11/xrsi/Makefile (props changed) head/x11/xrx/Makefile (props changed) head/x11/xscreensaver-gnome-hacks/Makefile (props changed) head/x11/xsel/Makefile (props changed) head/x11/xset/Makefile (props changed) head/x11/xsetmode/Makefile (props changed) head/x11/xsetpointer/Makefile (props changed) head/x11/xsetroot/Makefile (props changed) head/x11/xskyroot/Makefile (props changed) head/x11/xsm/Makefile (props changed) head/x11/xsnow/Makefile (props changed) head/x11/xstarroll/Makefile (props changed) head/x11/xstdcmap/Makefile (props changed) head/x11/xstroke/Makefile (props changed) head/x11/xtacy/Makefile (props changed) head/x11/xterm/Makefile (props changed) head/x11/xtermset/Makefile (props changed) head/x11/xtestpicture/Makefile (props changed) head/x11/xtoolwait/Makefile (props changed) head/x11/xtrans/Makefile (props changed) head/x11/xtrap/Makefile (props changed) head/x11/xtset/Makefile (props changed) head/x11/xvattr/Makefile (props changed) head/x11/xvidtune/Makefile (props changed) head/x11/xvinfo/Makefile (props changed) head/x11/xvmcinfo/Makefile (props changed) head/x11/xwatchwin/Makefile (props changed) head/x11/xwd/Makefile (props changed) head/x11/xwininfo/Makefile (props changed) head/x11/xwit/Makefile (props changed) head/x11/xwud/Makefile (props changed) head/x11/xxkb/Makefile (props changed) head/x11/xzoom/Makefile (props changed) head/x11/yalias/Makefile (props changed) Modified: head/databases/db42/Makefile.db ============================================================================== --- head/databases/db42/Makefile.db Wed Jan 22 16:23:13 2014 (r340721) +++ head/databases/db42/Makefile.db Wed Jan 22 17:00:46 2014 (r340722) @@ -1,3 +1,5 @@ +# $FreeBSD$ + MASTER_SITES= http://download.oracle.com/berkeley-db/ DISTNAME?= db-${PORTVERSION} DIST_SUBDIR= bdb Modified: head/dns/p5-Net-DRI/Makefile.man ============================================================================== --- head/dns/p5-Net-DRI/Makefile.man Wed Jan 22 16:23:13 2014 (r340721) +++ head/dns/p5-Net-DRI/Makefile.man Wed Jan 22 17:00:46 2014 (r340722) @@ -1,3 +1,4 @@ +# $FreeBSD$ MAN3= Net::DRI::BaseClass.3 MAN3+= Net::DRI::Cache.3 MAN3+= Net::DRI::DRD.3 Modified: head/security/heimdal/Makefile.man ============================================================================== --- head/security/heimdal/Makefile.man Wed Jan 22 16:23:13 2014 (r340721) +++ head/security/heimdal/Makefile.man Wed Jan 22 17:00:46 2014 (r340722) @@ -1,3 +1,4 @@ +# $FreeBSD$ MAN1+= afslog.1 MAN1+= ftp.1 MAN1+= kdestroy.1 Modified: head/www/rubygem-raphael-rails/Makefile ============================================================================== --- head/www/rubygem-raphael-rails/Makefile Wed Jan 22 16:23:13 2014 (r340721) +++ head/www/rubygem-raphael-rails/Makefile Wed Jan 22 17:00:46 2014 (r340722) @@ -1,4 +1,4 @@ -# $FreeBSDd$ +# $FreeBSD$ PORTNAME= raphael-rails PORTVERSION= 2.1.2 From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 17:22:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C96B4A9A; Wed, 22 Jan 2014 17:22:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B57DE1EDC; Wed, 22 Jan 2014 17:22:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MHMenq068109; Wed, 22 Jan 2014 17:22:40 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MHMe3O068108; Wed, 22 Jan 2014 17:22:40 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201401221722.s0MHMe3O068108@svn.freebsd.org> From: Koop Mast Date: Wed, 22 Jan 2014 17:22:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340723 - head/x11/libgnome-java X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 17:22:40 -0000 Author: kwm Date: Wed Jan 22 17:22:40 2014 New Revision: 340723 URL: http://svnweb.freebsd.org/changeset/ports/340723 QAT: https://qat.redports.org/buildarchive/r340723/ Log: Use USES=dos2unix instead of manualy 's|^M||g' [1] While here switch to USES=pathfix shebangfix. Stagify the port and use INSTALL_LIB for the library so it get auto stripped. Submitted by: mat [1] Modified: head/x11/libgnome-java/Makefile Modified: head/x11/libgnome-java/Makefile ============================================================================== --- head/x11/libgnome-java/Makefile Wed Jan 22 17:00:46 2014 (r340722) +++ head/x11/libgnome-java/Makefile Wed Jan 22 17:22:40 2014 (r340723) @@ -15,19 +15,21 @@ COMMENT= Java wrapper for GNOME 2 BUILD_DEPENDS= ${JAVALIBDIR}/gtk${GTK_API_VERSION}.jar:${PORTSDIR}/x11-toolkits/libgtk-java RUN_DEPENDS= ${JAVALIBDIR}/gtk${GTK_API_VERSION}.jar:${PORTSDIR}/x11-toolkits/libgtk-java -USES= gmake pkgconfig +USES= dos2unix gmake pathfix pkgconfig shebangfix USE_BZIP2= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes USE_JAVA= yes JAVA_VERSION= 1.6+ JAVA_OS= native -USE_GNOME= gnomehack libgnomeui +USE_GNOME= libgnomeui CONFIGURE_ARGS= --without-gcj-compile --with-jardir=${JAVAJARDIR} CONFIGURE_ENV= ac_cv_path_DB1="nocommand" \ ac_cv_path_DB2="nocommand" CPPFLAGS+= -I${JAVA_HOME}/include -I${JAVA_HOME}/include/freebsd MAKE_JOBS_UNSAFE= yes +DOS2UNIX_FILES= gnome2-java.pc.in +SHEBANG_FILES= doc/examples/runExample.sh.in # jikes related CONFIGURE_ENV+= BOOTCLASSPATH=${JAVA_CLASSES} @@ -39,45 +41,41 @@ PLIST_SUB= GNOME_API_VERSION=${GNOME_AP PKGMESSAGE= ${WRKDIR}/pkg-message -NO_STAGE= yes post-extract: - @${REINPLACE_CMD} -e 's| ||g' \ - ${WRKSRC}/gnome2-java.pc.in @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ ${WRKSRC}/configure do-install: - ${MKDIR} ${PREFIX}/lib - ${INSTALL_DATA} ${WRKSRC}/.libs/libgnomejni-${GNOME_API_VERSION}.so \ - ${PREFIX}/lib/libgnomejni-${GNOME_API_VERSION}.so.1 - ${LN} -sf ${PREFIX}/lib/libgnomejni-${GNOME_API_VERSION}.so.1 \ - ${PREFIX}/lib/libgnomejni-${GNOME_API_VERSION}.so - ${MKDIR} ${PREFIX}/libdata/pkgconfig - ${INSTALL_DATA} ${WRKSRC}/gnome2-java.pc ${PREFIX}/libdata/pkgconfig - ${MKDIR} ${JAVAJARDIR} - ${INSTALL_DATA} ${WRKSRC}/gnome${GNOME_API_VERSION}.jar ${JAVAJARDIR} + ${MKDIR} ${STAGEDIR}${PREFIX}/lib + ${INSTALL_LIB} ${WRKSRC}/.libs/libgnomejni-${GNOME_API_VERSION}.so \ + ${STAGEDIR}${PREFIX}/lib/libgnomejni-${GNOME_API_VERSION}.so.1 + ${LN} -sf libgnomejni-${GNOME_API_VERSION}.so.1 \ + ${STAGEDIR}${PREFIX}/lib/libgnomejni-${GNOME_API_VERSION}.so + ${MKDIR} ${STAGEDIR}${PREFIX}/libdata/pkgconfig + ${INSTALL_DATA} ${WRKSRC}/gnome2-java.pc \ + ${STAGEDIR}${PREFIX}/libdata/pkgconfig + ${MKDIR} ${STAGEDIR}${JAVAJARDIR} + ${INSTALL_DATA} ${WRKSRC}/gnome${GNOME_API_VERSION}.jar ${STAGEDIR}${JAVAJARDIR} post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/COPYING ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/NEWS ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/TODO ${DOCSDIR} - ${MKDIR} ${PREFIX}/share/${PORTNAME}/tutorial - ${INSTALL_DATA} ${WRKSRC}/doc/tutorial/* ${PREFIX}/share/${PORTNAME}/tutorial - ${MKDIR} ${DOCSDIR}/api - cd ${WRKSRC}/doc/api && ${FIND} . | ${CPIO} -pdmu ${DOCSDIR}/api - ${TOUCH} ${DOCSDIR}/api/packages.html - ${MKDIR} ${DOCSDIR}/examples + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/COPYING ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/TODO ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${PREFIX}/share/${PORTNAME}/tutorial + ${INSTALL_DATA} ${WRKSRC}/doc/tutorial/* \ + ${STAGEDIR}${PREFIX}/share/${PORTNAME}/tutorial + ${MKDIR} ${STAGEDIR}${DOCSDIR}/api + cd ${WRKSRC}/doc/api && ${FIND} . | ${CPIO} -pdmu ${STAGEDIR}${DOCSDIR}/api + ${TOUCH} ${STAGEDIR}${DOCSDIR}/api/packages.html + ${MKDIR} ${STAGEDIR}${DOCSDIR}/examples cd ${WRKSRC}/doc/examples && ${FIND} . \ - | ${CPIO} -pdmu ${DOCSDIR}/examples -.endif + | ${CPIO} -pdmu ${STAGEDIR}${DOCSDIR}/examples @${SED} -e 's|%%JAVAJARDIR%%|${JAVAJARDIR}|g ; \ s|%%PREFIX%%|${PREFIX}|g ; \ s|%%GNOME_API_VERSION%%|${GNOME_API_VERSION}|g' \ < ${PKGDIR}/pkg-message > ${PKGMESSAGE} - @${CAT} ${PKGMESSAGE} .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 17:25:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE0AEC10; Wed, 22 Jan 2014 17:25:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 80D5A1F0A; Wed, 22 Jan 2014 17:25:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MHPkgX068553; Wed, 22 Jan 2014 17:25:46 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MHPkqN068552; Wed, 22 Jan 2014 17:25:46 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221725.s0MHPkqN068552@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 17:25:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340724 - head/x11/libgnome-java X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 17:25:46 -0000 Author: mat Date: Wed Jan 22 17:25:46 2014 New Revision: 340724 URL: http://svnweb.freebsd.org/changeset/ports/340724 QAT: https://qat.redports.org/buildarchive/r340724/ Log: Fix prop. With hat: portmgr Sponsored by: Absolight Modified: Directory Properties: head/x11/libgnome-java/Makefile (props changed) From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 17:41:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9705CF3C; Wed, 22 Jan 2014 17:41:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 751E4109A; Wed, 22 Jan 2014 17:41:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MHfECX087287; Wed, 22 Jan 2014 17:41:14 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MHf8x2087281; Wed, 22 Jan 2014 17:41:08 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401221741.s0MHf8x2087281@svn.freebsd.org> From: Mathieu Arnold Date: Wed, 22 Jan 2014 17:41:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340725 - in head: accessibility/at-poke/files accessibility/at-spi/files accessibility/dasher/files accessibility/eflite/files accessibility/gnome-mag/files accessibility/gnome-speech/... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 17:41:14 -0000 Author: mat Date: Wed Jan 22 17:40:44 2014 New Revision: 340725 URL: http://svnweb.freebsd.org/changeset/ports/340725 QAT: https://qat.redports.org/buildarchive/r340725/ Log: Fixup props on patches. With hat: portmgr Sponsored by: Absolight Modified: head/devel/p5-Sys-Cpu/files/patch-CPU.xs (contents, props changed) head/editors/emacs-devel/files/patch-sources.el (contents, props changed) head/editors/nano-devel/files/patch-doc_man_Makefile.in (contents, props changed) head/editors/nano-devel/files/patch-doc_man_fr_Makefile.in (contents, props changed) Directory Properties: head/accessibility/at-poke/files/patch-configure (props changed) head/accessibility/at-spi/files/patch-registryd_registry-main.c (props changed) head/accessibility/dasher/files/patch-clang (props changed) head/accessibility/eflite/files/patch-Makefile.in (props changed) head/accessibility/gnome-mag/files/patch-docs_reference_Makefile.in (props changed) head/accessibility/gnome-speech/files/patch-configure (props changed) head/accessibility/gnopernicus/files/patch-configure (props changed) head/accessibility/gnopernicus/files/patch-srcore_srspc.c (props changed) head/accessibility/gnopernicus/files/patch-srlow_libsrlow_SRLow.c (props changed) head/accessibility/orca/files/patch-configure (props changed) head/accessibility/orca/files/patch-src_orca_orca.in (props changed) head/archivers/9e/files/patch-ab (props changed) head/archivers/advancecomp/files/patch-Portable.h (props changed) head/archivers/arc/files/patch-aa (props changed) head/archivers/arc/files/patch-ab (props changed) head/archivers/arc/files/patch-ad (props changed) head/archivers/arc/files/patch-ae (props changed) head/archivers/arc/files/patch-af (props changed) head/archivers/arc/files/patch-ag (props changed) head/archivers/arc/files/patch-ah (props changed) head/archivers/arc/files/patch-ai (props changed) head/archivers/arc/files/patch-aj (props changed) head/archivers/arc/files/patch-ak (props changed) head/archivers/arc/files/patch-al (props changed) head/archivers/arc/files/patch-am (props changed) head/archivers/arj/files/patch-arj_arcv.c (props changed) head/archivers/arj/files/patch-arj_proc.c (props changed) head/archivers/arj/files/patch-arj_proc.h (props changed) head/archivers/arj/files/patch-environ.c (props changed) head/archivers/arj/files/patch-fardata.c (props changed) head/archivers/bzip/files/patch-aa (props changed) head/archivers/bzip/files/patch-ab (props changed) head/archivers/bzip/files/patch-ac (props changed) head/archivers/bzip2/files/patch-aa (props changed) head/archivers/deutex/files/patch-src-deutex.h (props changed) head/archivers/epkg/files/patch-doc_Makefile.in (props changed) head/archivers/epkg/files/patch-lib_platform.c (props changed) head/archivers/file-roller/files/patch-src_fr-command-lrzip.c (props changed) head/archivers/file-roller/files/patch-src_fr-command-tar.c (props changed) head/archivers/file-roller/files/patch-src_fr-command-zip.c (props changed) head/archivers/freeze/files/patch-freeze.c (props changed) head/archivers/freeze/files/patch-freeze.h (props changed) head/archivers/gcpio/files/patch-doc_Makefile.in (props changed) head/archivers/gcpio/files/patch-doc_cpio.1 (props changed) head/archivers/gcpio/files/patch-gnu_Makefile.in (props changed) head/archivers/gcpio/files/patch-src_filetypes.h (props changed) head/archivers/gzip/files/extra-patch-gzip-rsyncable.diff (props changed) head/archivers/ha/files/patch-aa (props changed) head/archivers/hffzip/files/patch-Makefile (props changed) head/archivers/hpack.non-usa.only/files/patch-ab (props changed) head/archivers/hpack.non-usa.only/files/patch-ac (props changed) head/archivers/hpack.non-usa.only/files/patch-ad (props changed) head/archivers/hpack.non-usa.only/files/patch-ae (props changed) head/archivers/hpack.non-usa.only/files/patch-af (props changed) head/archivers/hpack.non-usa.only/files/patch-ag (props changed) head/archivers/hpack.non-usa.only/files/patch-ah (props changed) head/archivers/hpack.non-usa.only/files/patch-ai (props changed) head/archivers/hpack.non-usa.only/files/patch-aj (props changed) head/archivers/hpack.non-usa.only/files/patch-ak (props changed) head/archivers/hpack.non-usa.only/files/patch-al (props changed) head/archivers/lbzip2/files/patch-Makefile (props changed) head/archivers/lha-ac/files/patch-lha.h (props changed) head/archivers/lha/files/patch-aa (props changed) head/archivers/lha/files/patch-ad (props changed) head/archivers/lha/files/patch-ae (props changed) head/archivers/lha/files/patch-af (props changed) head/archivers/lha/files/patch-command_buffer (props changed) head/archivers/lha/files/patch-dir_length_bounds_check (props changed) head/archivers/lha/files/patch-symlink (props changed) head/archivers/lha/files/patch-traversal (props changed) head/archivers/libarc/files/patch-aa (props changed) head/archivers/libcabinet/files/patch-Makefile (props changed) head/archivers/libcabinet/files/patch-ab (props changed) head/archivers/libcabinet/files/patch-bstring.cpp (props changed) head/archivers/libcabinet/files/patch-bstring.h (props changed) head/archivers/libcabinet/files/patch-cfcreate.cpp (props changed) head/archivers/libcabinet/files/patch-cfcreate.h (props changed) head/archivers/libcabinet/files/patch-cfdblock.cpp (props changed) head/archivers/libcabinet/files/patch-cffile.h (props changed) head/archivers/libcabinet/files/patch-cffolder.cpp (props changed) head/archivers/libcabinet/files/patch-cffolder.h (props changed) head/archivers/libcabinet/files/patch-cfheader.cpp (props changed) head/archivers/libcabinet/files/patch-cfreader.cpp (props changed) head/archivers/libcabinet/files/patch-cftypes.cpp (props changed) head/archivers/libcabinet/files/patch-cftypes.h (props changed) head/archivers/libcabinet/files/patch-darray.h (props changed) head/archivers/libcabinet/files/patch-listcap.cpp (props changed) head/archivers/libcomprex/files/patch-configure (props changed) head/archivers/libcomprex/files/patch-header.c (props changed) head/archivers/libcomprex/files/patch-tests::extractarchive.c (props changed) head/archivers/liblzxcomp/files/patch-lz_nonslide.c (props changed) head/archivers/liborange/files/patch-inno.h (props changed) head/archivers/libunrar/files/patch-dll.cpp (props changed) head/archivers/libunrar/files/patch-dll.hpp (props changed) head/archivers/libunrar/files/patch-extract.cpp (props changed) head/archivers/libunrar/files/patch-makefile.unix (props changed) head/archivers/libzip/files/patch-lib__Makefile.in (props changed) head/archivers/libzip/files/patch-man_Makefile.in (props changed) head/archivers/lz4/files/patch-Makefile (props changed) head/archivers/lzo2/files/patch-lzotest__lzotest.c (props changed) head/archivers/lzo2/files/patch-util__check.sh (props changed) head/archivers/macutils/files/patch-aa (props changed) head/archivers/macutils/files/patch-ab (props changed) head/archivers/macutils/files/patch-ac (props changed) head/archivers/macutils/files/patch-ad (props changed) head/archivers/macutils/files/patch-ae (props changed) head/archivers/macutils/files/patch-af (props changed) head/archivers/macutils/files/patch-ag (props changed) head/archivers/macutils/files/patch-ah (props changed) head/archivers/macutils/files/patch-ai (props changed) head/archivers/macutils/files/patch-aj (props changed) head/archivers/macutils/files/patch-ak (props changed) head/archivers/macutils/files/patch-al (props changed) head/archivers/macutils/files/patch-am (props changed) head/archivers/macutils/files/patch-an (props changed) head/archivers/macutils/files/patch-ao (props changed) head/archivers/macutils/files/patch-lzh.c (props changed) head/archivers/mate-file-archiver/files/patch-src_fr-command-lrzip.c (props changed) head/archivers/mate-file-archiver/files/patch-src_fr-command-tar.c (props changed) head/archivers/mate-file-archiver/files/patch-src_fr-command-zip.c (props changed) head/archivers/mscompress/files/patch-mscompress.c (props changed) head/archivers/mscompress/files/patch-msexpand.c (props changed) head/archivers/mtf/files/patch-mtfread.c (props changed) head/archivers/ocaml-zip/files/patch-Makefile (props changed) head/archivers/p5-Compress-LZO/files/patch-Makefile.PL (props changed) head/archivers/p5-IO-Zlib/files/patch-Zlib.pm (props changed) head/archivers/p7zip/files/patch-CPP-Windows-System.cpp (props changed) head/archivers/packddir/files/patch-upackddir.c (props changed) head/archivers/par2cmdline-tbb/files/patch-configure (props changed) head/archivers/par2cmdline-tbb/files/patch-par2cmdline.h (props changed) head/archivers/par2cmdline/files/patch-par2creatorsourcefile.cpp (props changed) head/archivers/par2cmdline/files/patch-par2fileformat.h (props changed) head/archivers/par2cmdline/files/patch-reedsolomon.cpp (props changed) head/archivers/php5-phar/files/patch-config.m4 (props changed) head/archivers/php5-phar/files/patch-phar.c (props changed) head/archivers/php5-zip/files/patch-config.m4 (props changed) head/archivers/php5-zlib/files/patch-zlib.c (props changed) head/archivers/php53-phar/files/patch-config.m4 (props changed) head/archivers/php53-phar/files/patch-phar.c (props changed) head/archivers/php53-zip/files/patch-config.m4 (props changed) head/archivers/php55-phar/files/patch-config.m4 (props changed) head/archivers/php55-phar/files/patch-phar.c (props changed) head/archivers/php55-zip/files/patch-config.m4 (props changed) head/archivers/php55-zlib/files/patch-zlib.c (props changed) head/archivers/pigz/files/patch-Makefile (props changed) head/archivers/ppunpack/files/patch-aa (props changed) head/archivers/pxz/files/patch-pxz.c (props changed) head/archivers/py-liblzma/files/patch-setup.py (props changed) head/archivers/py-lzma/files/patch-setup.py (props changed) head/archivers/py-lzma/files/patch-src__compat__LzmaCompatDecode.h (props changed) head/archivers/rpm/files/patch-av (props changed) head/archivers/rpm/files/patch-aw (props changed) head/archivers/rpm/files/patch-ax (props changed) head/archivers/rpm/files/patch-ay (props changed) head/archivers/rpm/files/patch-ba (props changed) head/archivers/rpm/files/patch-bb (props changed) head/archivers/rpm/files/patch-bc (props changed) head/archivers/rpm/files/patch-bd (props changed) head/archivers/rpm/files/patch-be (props changed) head/archivers/rpm/files/patch-bf (props changed) head/archivers/rpm/files/patch-bg (props changed) head/archivers/rpm/files/patch-bh (props changed) head/archivers/rpm/files/patch-bi (props changed) head/archivers/rpm/files/patch-bj (props changed) head/archivers/rpm/files/patch-misc::glob.h (props changed) head/archivers/rpm/files/patch-rpmrc.in (props changed) head/archivers/rpm4/files/patch-lib_backend_db3.c (props changed) head/archivers/rpm4/files/patch-misc_fts.c (props changed) head/archivers/rpm4/files/patch-system.h (props changed) head/archivers/rpm5/files/patch-configure (props changed) head/archivers/rpm5/files/patch-tools-rpmdigest.c (props changed) head/archivers/rvm/files/patch-reporter.cc (props changed) head/archivers/rvm/files/patch-vaulter.cpp (props changed) head/archivers/sharutils/files/patch-lib__Makefile.in (props changed) head/archivers/snappy-java/files/patch-likelinux (props changed) head/archivers/squsq/files/patch-aa (props changed) head/archivers/star/files/patch-rmt_Makefile (props changed) head/archivers/star/files/patch-rmt_Makefile.man (props changed) head/archivers/star/files/patch-star::Makefile (props changed) head/archivers/star/files/patch-star::star.1 (props changed) head/archivers/torrentzip/files/patch-src-trrntzip.c (props changed) head/archivers/ucl/files/patch-configure (props changed) head/archivers/unace/files/patch-uac__crt.c (props changed) head/archivers/unace/files/patch-unace.c (props changed) head/archivers/unadf/files/patch-Makefile.am (props changed) head/archivers/unadf/files/patch-configure.ac (props changed) head/archivers/unadf/files/patch-examples-Makefile.am (props changed) head/archivers/unarj/files/patch-00-over-unarj.c (props changed) head/archivers/unarj/files/patch-01-path-Makefile (props changed) head/archivers/unarj/files/patch-01-path-unarj.c (props changed) head/archivers/unarj/files/patch-aa (props changed) head/archivers/unarj/files/patch-ab (props changed) head/archivers/unarj/files/patch-ac (props changed) head/archivers/unrar-iconv/files/patch-iconv (props changed) head/archivers/unrar/files/patch-os.hpp (props changed) head/archivers/unrar/files/patch-rijndael.cpp (props changed) head/archivers/unrar/files/patch-rijndael.hpp (props changed) head/archivers/unshield/files/patch-unshield-v2-format (props changed) head/archivers/untar/files/patch-untar.c (props changed) head/archivers/unzip/files/patch-aa (props changed) head/archivers/unzip/files/patch-ab (props changed) head/archivers/unzip/files/patch-contsts.h (props changed) head/archivers/unzip/files/patch-process.c (props changed) head/archivers/unzoo/files/patch-unzoo.c (props changed) head/archivers/upx/files/patch-src-Makefile (props changed) head/archivers/upx/files/patch-src-packer.h (props changed) head/archivers/xarchive/files/patch-doc-Makefile.in (props changed) head/archivers/xarchive/files/patch-src-main.c (props changed) head/archivers/xarchive/files/patch-src-widgets_gtk.c (props changed) head/archivers/xmill/files/patch-XMill+BZlib.cpp (props changed) head/archivers/xmill/files/patch-XMill-CompressMan.cpp (props changed) head/archivers/xmill/files/patch-XMill-PPMDI.cpp (props changed) head/archivers/xmill/files/patch-makefile (props changed) head/archivers/xpk/files/patch-shell_xQuery.c (props changed) head/archivers/zip/files/patch-aa (props changed) head/archivers/zip/files/patch-ab (props changed) head/archivers/zipmix/files/patch-zipmix.c (props changed) head/archivers/zoo/files/patch-ar.h (props changed) head/archivers/zoo/files/patch-bsd.c (props changed) head/archivers/zoo/files/patch-makefile (props changed) head/archivers/zoo/files/patch-misc.c (props changed) head/archivers/zoo/files/patch-misc2.c (props changed) head/archivers/zoo/files/patch-nixtime.i (props changed) head/archivers/zoo/files/patch-options.h (props changed) head/archivers/zoo/files/patch-zooadd2.c (props changed) head/archivers/zoo/files/patch-zooext.c (props changed) head/archivers/zoo/files/patch-zoofns.h (props changed) head/archivers/zoo/files/patch-zoolist.c (props changed) head/astro/aa/files/patch-aa.c (props changed) head/astro/aa/files/patch-dms.c (props changed) head/astro/aa/files/patch-gplan.c (props changed) head/astro/aa/files/patch-kfiles.c (props changed) head/astro/astrometry/files/patch-cairoutils.c (props changed) head/astro/boinc-astropulse/files/patch-client__Makefile.am (props changed) head/astro/boinc-astropulse/files/patch-client__ap_remove_radar.cpp (props changed) head/astro/boinc-astropulse/files/patch-client__m4__sah_check_boinc.m4 (props changed) head/astro/boinc-setiathome-v7/files/patch-client__Makefile.am (props changed) head/astro/boinc-setiathome-v7/files/patch-m4__sah_check_boinc.m4 (props changed) head/astro/celestia/files/patch-src_celestia_Makefile.in (props changed) head/astro/celestia/files/patch-src_celestia_glutmain.cpp (props changed) head/astro/celestia/files/patch-src_celestia_imagecapture.cpp (props changed) head/astro/celestia/files/patch-src_celestia_kde_kdeapp.cpp (props changed) head/astro/celestia/files/patch-src_celestia_kde_kdeglwidget.cpp (props changed) head/astro/celestia/files/patch-src_celmath_intersect.h (props changed) head/astro/ephem/files/patch-aa (props changed) head/astro/ephem/files/patch-aa_hadec.c (props changed) head/astro/ephem/files/patch-ab (props changed) head/astro/ephem/files/patch-ac (props changed) head/astro/ephem/files/patch-ad (props changed) head/astro/ephem/files/patch-ae (props changed) head/astro/ephem/files/patch-af (props changed) head/astro/ephem/files/patch-ag (props changed) head/astro/ephem/files/patch-ah (props changed) head/astro/ephem/files/patch-ai (props changed) head/astro/ephem/files/patch-aj (props changed) head/astro/ephem/files/patch-altj.c (props changed) head/astro/ephem/files/patch-altmenus.c (props changed) head/astro/ephem/files/patch-circum.c (props changed) head/astro/ephem/files/patch-compiler.c (props changed) head/astro/ephem/files/patch-constel.c (props changed) head/astro/ephem/files/patch-eq_ecl.c (props changed) head/astro/ephem/files/patch-mainmenu.c (props changed) head/astro/ephem/files/patch-moonnf.c (props changed) head/astro/ephem/files/patch-plans.c (props changed) head/astro/ephem/files/patch-riset_c.c (props changed) head/astro/ephem/files/patch-sel_fld.c (props changed) head/astro/ephem/files/patch-srch.c (props changed) head/astro/ephem/files/patch-utc_gst.c (props changed) head/astro/ephem/files/patch-watch.c (props changed) head/astro/fowsr/files/patch-fowsr-c (props changed) head/astro/foxtrotgps/files/patch-src-main (props changed) head/astro/gkrellmoon2/files/patch-CalcEphem.c (props changed) head/astro/gkrellmoon2/files/patch-Makefile (props changed) head/astro/gmapcatcher/files/patch-gmapcatcher_mapArgs.py (props changed) head/astro/gmapcatcher/files/patch-setup.py (props changed) head/astro/google-earth/files/patch-bin-googleearth (props changed) head/astro/gpsbabel/files/extra-patch-libusb (props changed) head/astro/gpscorrelate/files/patch-unixtime.h (props changed) head/astro/gpsd/files/patch-SConstruct (props changed) head/astro/gpsdrive/files/patch-ltmain.sh (props changed) head/astro/gpsdrive/files/patch-src::gpsserial.c (props changed) head/astro/gpsdrive/files/patch-src::splash.c (props changed) head/astro/gpsman/files/patch-gpsman.tcl (props changed) head/astro/gpstk/files/patch-Jamrules (props changed) head/astro/libnova/files/patch-src__utility.c (props changed) head/astro/libnova/files/patch-src_hyperbolic_motion.c (props changed) head/astro/libnova/files/patch-src_precession.c (props changed) head/astro/libroadnav/files/patch-src-Makefile.in (props changed) head/astro/luna/files/patch-ac (props changed) head/astro/luna/files/patch-ae (props changed) head/astro/luna/files/patch-af (props changed) head/astro/luna/files/patch-ag (props changed) head/astro/luna/files/patch-ah (props changed) head/astro/luna/files/patch-iprintf-iprintf.c (props changed) head/astro/luna/files/patch-iprintf-isprintf.c (props changed) head/astro/marble/files/patch-src__CMakeLists.txt (props changed) head/astro/marble/files/patch-src__plugins__CMakeLists.txt (props changed) head/astro/marble/files/patch-src__plugins__declarative__CMakeLists.txt (props changed) head/astro/mymoon/files/patch-configure (props changed) head/astro/mymoon/files/patch-grapher.h (props changed) head/astro/mymoon/files/patch-mymoon.c (props changed) head/astro/nightfall/files/patch-Light.c (props changed) head/astro/nightfall/files/patch-Light.h (props changed) head/astro/nightfall/files/patch-LightGLAnimate.c (props changed) head/astro/nightfall/files/patch-LightGnome.c (props changed) head/astro/openuniverse/files/patch-a (props changed) head/astro/openuniverse/files/patch-b (props changed) head/astro/openuniverse/files/patch-src_comet.cpp (props changed) head/astro/openuniverse/files/patch-src_ou.h (props changed) head/astro/p5-Astro-FITS-CFITSIO/files/patch-Makefile.PL (props changed) head/astro/phoon/files/patch-astro.h (props changed) head/astro/phoon/files/patch-phoon.c (props changed) head/astro/qlandkartegt/files/patch-cmake-Modules-DefineInstallationPaths.cmake (props changed) head/astro/rmap/files/patch-aa (props changed) head/astro/roadnav/files/patch-src-SerialIO-POSIX.cpp (props changed) head/astro/saoimage/files/patch-aa (props changed) head/astro/saoimage/files/patch-ab (props changed) head/astro/saoimage/files/patch-ad (props changed) head/astro/saoimage/files/patch-ae (props changed) head/astro/saoimage/files/patch-gcc4 (props changed) head/astro/stars/files/patch-aa (props changed) head/astro/sunclock/files/patch-readpng.c (props changed) head/astro/sunclock/files/patch-sunclock.h (props changed) head/astro/sunclock/files/patch-tildepath.c (props changed) head/astro/wcslib/files/patch-GNUmakefile (props changed) head/astro/wmglobe/files/patch-aa (props changed) head/astro/wmjupiter/files/patch-Makefile (props changed) head/astro/wmmoonclock/files/patch-aa (props changed) head/astro/wmmoonclock/files/patch-wmMoonClock.c (props changed) head/astro/wmsolar/files/patch-Makefile (props changed) head/astro/wmsolar/files/patch-Vsop.h (props changed) head/astro/wmspaceweather/files/patch-aa (props changed) head/astro/wmspaceweather/files/patch-ab (props changed) head/astro/wmspaceweather/files/patch-wmSpaceWeather.c (props changed) head/astro/wmsun/files/patch-aa (props changed) head/astro/wmsun/files/patch-wmSun.c (props changed) head/astro/xephem/files/patch-Makefile (props changed) head/astro/xglobe/files/patch-desktopwidget.cpp (props changed) head/astro/xglobe/files/patch-desktopwidget.h (props changed) head/astro/xglobe/files/patch-earthapp.cpp (props changed) head/astro/xglobe/files/patch-earthapp.h (props changed) head/astro/xglobe/files/patch-main.cpp (props changed) head/astro/xglobe/files/patch-marker.xpm (props changed) head/astro/xglobe/files/patch-markerlist.cpp (props changed) head/astro/xglobe/files/patch-markerlist.h (props changed) head/astro/xglobe/files/patch-renderer.cpp (props changed) head/astro/xglobe/files/patch-sunpos.cpp (props changed) head/astro/xmoontool/files/patch-Makefile (props changed) head/astro/xphoon/files/patch-aa (props changed) head/astro/xphoon/files/patch-ab (props changed) head/astro/xphoon/files/patch-ac (props changed) head/astro/xplanet/files/patch-aa (props changed) head/astro/xplanet/files/patch-src-libprojection-ProjectionIcosagnomonic.cpp (props changed) head/astro/xplanet/files/patch-src:readConfig.cpp (props changed) head/astro/xtide/files/patch-Global.cc (props changed) head/astro/xworld/files/patch-compile_world.c (props changed) head/astro/xworld/files/patch-pad.c (props changed) head/astro/xworld/files/patch-xworld_c (props changed) head/audio/Maaate/files/patch-configure (props changed) head/audio/aacgain/files/patch-faad2_libfaad_common.h (props changed) head/audio/abcde/files/patch-abcde (props changed) head/audio/abcde/files/patch-abcde.conf (props changed) head/audio/abraca/files/patch-SConstruct (props changed) head/audio/abraca/files/patch-data_SConscript (props changed) head/audio/abraca/files/patch-data_ui_SConscript (props changed) head/audio/abraca/files/patch-src-medialib.vala (props changed) head/audio/aften/files/patch-libaften__cpu_caps.h (props changed) head/audio/alsa-plugins/files/patch-arcam-av-arcam_av.c (props changed) head/audio/alsa-plugins/files/patch-configure (props changed) head/audio/alsa-plugins/files/patch-jack-pcm_jack.c (props changed) head/audio/alsa-plugins/files/patch-oss-pcm_oss.c (props changed) head/audio/alsa-utils/files/patch-alsa-utils (props changed) head/audio/amp/files/patch-audio.c (props changed) head/audio/amp/files/patch-audio.h (props changed) head/audio/amp/files/patch-audioIO_Linux.c (props changed) head/audio/amp/files/patch-dump.c (props changed) head/audio/amp/files/patch-formats.c (props changed) head/audio/amp/files/patch-getbits.c (props changed) head/audio/amp/files/patch-guicontrol.c (props changed) head/audio/amp/files/patch-layer2.c (props changed) head/audio/amp/files/patch-layer3.c (props changed) head/audio/amp/files/patch-position.c (props changed) head/audio/amp/files/patch-rtbuf.c (props changed) head/audio/ample/files/patch-src::base64.c (props changed) head/audio/aqualung/files/patch-configure (props changed) head/audio/aqualung/files/patch-src__playlist.c (props changed) head/audio/ardour/files/patch-SConstruct (props changed) head/audio/ardour/files/patch-gtk2_ardour-ardour_ui.cc (props changed) head/audio/ardour/files/patch-gtk2_ardour-engine_dialog.cc (props changed) head/audio/ardour/files/patch-gtk2_ardour-new_session_dialog.cc (props changed) head/audio/ardour/files/patch-libs-fst-jackvst.h (props changed) head/audio/ardour/files/patch-libs-fst-vsti.c (props changed) head/audio/ardour/files/patch-libs-midi++2-SConscript (props changed) head/audio/ardour/files/patch-libs-pbd-stacktrace.cc (props changed) head/audio/ardour/files/patch-vst-SConscript (props changed) head/audio/ario/files/patch-src_ario-avahi.c (props changed) head/audio/ascd/files/patch-aa (props changed) head/audio/ascd/files/patch-ab (props changed) head/audio/ascd/files/patch-ae (props changed) head/audio/ascd/files/patch-ag (props changed) head/audio/asmixer/files/patch-asmixer.c (props changed) head/audio/audacity/files/patch-Makefile.in (props changed) head/audio/audacity/files/patch-cext.h (props changed) head/audio/audacity/files/patch-lib-src__libnyquist__nyquist__nyqstk__include__FileRead.h (props changed) head/audio/audacity/files/patch-xlisp.h (props changed) head/audio/audex/files/patch-CMakeLists.txt (props changed) head/audio/audex/files/patch-utils__encoderassistant.cpp (props changed) head/audio/audiere/files/patch-src-speexfile-speexfile.cpp (props changed) head/audio/aureal-kmod/files/patch-10_Makefile (props changed) head/audio/aureal-kmod/files/patch-20_Makefile (props changed) head/audio/aureal-kmod/files/patch-30_Makefile (props changed) head/audio/aureal-kmod/files/patch-Makefile (props changed) head/audio/aureal-kmod/files/patch-Makefile.inc (props changed) head/audio/aureal-kmod/files/patch-au88x0.c (props changed) head/audio/beast/files/patch-birnet_birnetcpu.c (props changed) head/audio/blop/files/patch-configure (props changed) head/audio/bmp-flac/files/patch-configure (props changed) head/audio/bmp-flac/files/patch-src_plugin_bmp (props changed) head/audio/bmp-flac/files/patch-src_plugin_bmp_plugin.c (props changed) head/audio/bmp-flac/files/patch-src_share_grabbag_replaygain.c (props changed) head/audio/bmp-wma/files/patch-src-libffwma-common.h (props changed) head/audio/bmp-wma/files/patch-src-libffwma-dsputil.h (props changed) head/audio/boodler/files/patch-ab (props changed) head/audio/bristol/files/patch-bin_startBristol.in (props changed) head/audio/bristol/files/patch-bristol-bristol.c (props changed) head/audio/bristol/files/patch-libbristolaudio-audioEngine.c (props changed) head/audio/bristol/files/patch-libbristolaudio-audioGUIOSS.c (props changed) head/audio/btc/files/patch-aa (props changed) head/audio/cam/files/patch-ac (props changed) head/audio/cantus_3/files/patch-src::libs::lib_charset.c (props changed) head/audio/cantus_3/files/patch-src::plugins::cantushashvalue.c (props changed) head/audio/cantus_3/files/patch-src::ui_gtk2::gui_preferences.cc (props changed) head/audio/ccaudio2/files/patch-CMakeLists.txt (props changed) head/audio/ccaudio2/files/patch-src_audiofile.cpp (props changed) head/audio/ccaudio2/files/patch-src_oss.cpp (props changed) head/audio/cd-console/files/patch-aa (props changed) head/audio/cd-console/files/patch-ab (props changed) head/audio/cd-console/files/patch-ac (props changed) head/audio/cd-discid/files/patch-Makefile (props changed) head/audio/cdparanoia/files/patch-Makefile.in (props changed) head/audio/cdparanoia/files/patch-configure (props changed) head/audio/cdparanoia/files/patch-interface-Makefile.in (props changed) head/audio/cdparanoia/files/patch-interface-cdda_interface.h (props changed) head/audio/cdparanoia/files/patch-interface-common_interface.c (props changed) head/audio/cdparanoia/files/patch-interface-cooked_interface.c (props changed) head/audio/cdparanoia/files/patch-interface-interface.c (props changed) head/audio/cdparanoia/files/patch-interface-low_interface.h (props changed) head/audio/cdparanoia/files/patch-interface-scan_devices.c (props changed) head/audio/cdparanoia/files/patch-interface-utils.h (props changed) head/audio/cdparanoia/files/patch-paranoia-Makefile.in (props changed) head/audio/cdparanoia/files/patch-paranoia-cdda_paranoia.h (props changed) head/audio/cdparanoia/files/patch-utils.h (props changed) head/audio/cdparanoia/files/patch-version.h (props changed) head/audio/cdplay/files/patch-ab (props changed) head/audio/cdplay/files/patch-ac (props changed) head/audio/cdplay/files/patch-ad (props changed) head/audio/cdplay/files/patch-ae (props changed) head/audio/chordpack/files/patch-chordpack (props changed) head/audio/cmp3/files/patch-Makefile.in (props changed) head/audio/cmp3/files/patch-cmp3listfiles.c (props changed) head/audio/cmp3/files/patch-cmp3main.c (props changed) head/audio/cmp3/files/patch-cmp3volume.c (props changed) head/audio/cmp3/files/patch-nevlib_Makefile.in (props changed) head/audio/cmp3/files/patch-rnmp3.c (props changed) head/audio/cpige/files/patch-gui__Makefile.in (props changed) head/audio/cpige/files/patch-gui__configure (props changed) head/audio/cpige/files/patch-mynet.c (props changed) head/audio/cplay/files/patch-aa (props changed) head/audio/cplay/files/patch-cplay (props changed) head/audio/cripple/files/patch-cripple.h (props changed) head/audio/csound/files/patch-InOut-rtalsa.c (props changed) head/audio/csound/files/patch-Opcodes-urandom.c (props changed) head/audio/csound/files/patch-Top-csound.c (props changed) head/audio/csound6/files/patch-Opcodes-urandom.c (props changed) head/audio/ctronome/files/patch-Makefile (props changed) head/audio/cuberok/files/patch-src-player_ffmpeg.h (props changed) head/audio/cuetools/files/patch-extras_cuetag.sh (props changed) head/audio/cutmp3/files/patch-Makefile (props changed) head/audio/cymbaline/files/patch-cypack_conf.py (props changed) head/audio/cymbaline/files/patch-cypack_player.py (props changed) head/audio/dagrab/files/patch-aa (props changed) head/audio/dagrab/files/patch-ab (props changed) head/audio/dcd/files/patch-Makefile (props changed) head/audio/dcd/files/patch-libcdplay.c (props changed) head/audio/dcd/files/patch-libcdplay.h (props changed) head/audio/decibel-audio-player/files/patch-Makefile (props changed) head/audio/dekagen/files/patch-dekagen (props changed) head/audio/denemo/files/patch-src__pitchentry.c (props changed) head/audio/dtmfdial/files/patch-dial.c (props changed) head/audio/dumb/files/patch-Makefile (props changed) head/audio/dvda-author/files/patch-configure (props changed) head/audio/dvda-author/files/patch-libsoxconvert.c (props changed) head/audio/emms/files/patch-Makefile (props changed) head/audio/emu10kx/files/patch-emu10kx-pcm.c (props changed) head/audio/emu10kx/files/patch-emu10kx.c (props changed) head/audio/epos-devel/files/patch-configure (props changed) head/audio/epos-devel/files/patch-src_epos.h (props changed) head/audio/esound/files/patch-aa (props changed) head/audio/esound/files/patch-ac (props changed) head/audio/esound/files/patch-ad (props changed) head/audio/esound/files/patch-audio_oss.c (props changed) head/audio/esound/files/patch-esddsp.c (props changed) head/audio/esound/files/patch-esddsp.in (props changed) head/audio/espeak/files/patch-src__Makefile (props changed) head/audio/espeak/files/patch-src__speech.h (props changed) head/audio/extace/files/patch-src::color_win.c (props changed) head/audio/faac/files/patch-configure.in (props changed) head/audio/faac/files/patch-frontend_Makefile.am (props changed) head/audio/faad/files/patch-frontend_main.c (props changed) head/audio/faad/files/patch-libfaad_cfft.c (props changed) head/audio/fapg/files/patch-fapg.c (props changed) head/audio/fcplay/files/patch-Dump.h (props changed) head/audio/fcplay/files/patch-Main.cpp (props changed) head/audio/fcplay/files/patch-SmartPtr.h (props changed) head/audio/fcplay/files/patch-aa (props changed) head/audio/fcplay/files/patch-ab (props changed) head/audio/fcplay/files/patch-ac (props changed) head/audio/festalon/files/patch-src__cputest.c (props changed) head/audio/festalon/files/patch-src__filter.h (props changed) head/audio/festdoc/files/patch-aa (props changed) head/audio/festival/files/patch-ae (props changed) head/audio/festival/files/patch-ag (props changed) head/audio/festival/files/patch-ah (props changed) head/audio/festival/files/patch-ap (props changed) head/audio/festival/files/patch-speech_tools_install.mak (props changed) head/audio/festlex-czech/files/patch-Makefile (props changed) head/audio/festlex-czech/files/patch-czech-lexicon.out (props changed) head/audio/festlex-czech/files/patch-czech-lexicon.scm (props changed) head/audio/festlex-czech/files/patch-czech.scm.in (props changed) head/audio/festvox-czech/files/patch-czech_ph.scm.in (props changed) head/audio/firefly/files/extra-patch-src_scan-mp3.c (props changed) head/audio/firefly/files/patch-contrib_Makefile.in (props changed) head/audio/firefly/files/patch-mt-daapd.conf.templ (props changed) head/audio/firefly/files/patch-plugins_out-daap.c (props changed) head/audio/flite/files/patch-configure (props changed) head/audio/flite/files/patch-include::cst_sts.h (props changed) head/audio/flite/files/patch-lang-cmulex-make_cmulex (props changed) head/audio/flite/files/patch-src-audio-au_sun.c (props changed) head/audio/flite/files/patch-tools-funds_sts_main.c (props changed) head/audio/fluidsynth-dssi/files/patch-src-Makefile.in (props changed) head/audio/fluidsynth/files/patch-src__bindings__fluid_rtkit.c (props changed) head/audio/fmit/files/patch-libs__CppAddons__CMakeLists.txt (props changed) head/audio/fmit/files/patch-libs__Music__CMakeLists.txt (props changed) head/audio/fmit/files/patch-libs__Music__Music.h (props changed) head/audio/fmit/files/patch-src__CMakeLists.txt (props changed) head/audio/fmit/files/patch-src__modules__CMakeLists.txt (props changed) head/audio/freealut/files/patch-src_alutInit.c (props changed) head/audio/freealut/files/patch-src_alutInternal.h (props changed) head/audio/freealut/files/patch-src_alutLoader.c (props changed) head/audio/freealut/files/patch-src_alutUtil.c (props changed) head/audio/funktrackergold/files/patch-Makefile (props changed) head/audio/funktrackergold/files/patch-dsp_mixxer.c (props changed) head/audio/funktrackergold/files/patch-funkgold__misc.c (props changed) head/audio/funktrackergold/files/patch-headers (props changed) head/audio/ghostess/files/patch-configure (props changed) head/audio/ghostess/files/patch-src-Makefile.in (props changed) head/audio/ghostess/files/patch-src-ghostess.c (props changed) head/audio/gkrellmms/files/patch-aa (props changed) head/audio/gkrellmms2/files/patch-aa (props changed) head/audio/gkrellmvolume/files/patch-aa (props changed) head/audio/gkrellmvolume/files/patch-ab (props changed) head/audio/gkrellmvolume2/files/patch-aa (props changed) head/audio/gkrellmvolume2/files/patch-oss_mixer.c (props changed) head/audio/glame/files/patch-Makefile.in (props changed) head/audio/glame/files/patch-src::plugins::audio_io_oss.c (props changed) head/audio/glame/files/patch-src_glmid_glconfig.c (props changed) head/audio/glame/files/patch-src_glmid_glscript.h (props changed) head/audio/glame/files/patch-src_glmid_glscript_swapfile.c (props changed) head/audio/glame/files/patch-src_gui_glame_console.c (props changed) head/audio/glame/files/patch-src_include_glame_guile_compat.h (props changed) head/audio/glame/files/patch-swapfile.c (props changed) head/audio/gmixer/files/patch-aa (props changed) head/audio/gmixer/files/patch-gmixer.c (props changed) head/audio/gnaural/files/patch-Makefile.in (props changed) head/audio/gnomoradio/files/patch-gnomoradio_browser-link.cc (props changed) head/audio/gnomoradio/files/patch-rainbow::license.cc (props changed) head/audio/gnomoradio/files/patch-rainbow::rdf-resource.cc (props changed) head/audio/gnomoradio/files/patch-rainbow_sha1.h (props changed) head/audio/gnomoradio/files/patch-roboradio-audio_prober.cc (props changed) head/audio/gnomoradio/files/patch-roboradio_audio_ogg.cc (props changed) head/audio/gnormalize/files/patch-Makefile (props changed) head/audio/gnuitar/files/patch-src_main.c (props changed) head/audio/gogglesmm/files/patch-Makefile (props changed) head/audio/gogglesmm/files/patch-build__functions (props changed) head/audio/gogglesmm/files/patch-configure (props changed) head/audio/goobox/files/patch-port_to_libmusicbrainz3 (props changed) head/audio/goobox/files/patch-port_to_libnotify07 (props changed) head/audio/gqmpeg/files/patch-aclocal.m4 (props changed) head/audio/gqmpeg/files/patch-configure.in (props changed) head/audio/gqmpeg/files/patch-po_Makefile.in.in (props changed) head/audio/gqmpeg/files/patch-ui_pixbuf_save.c (props changed) head/audio/gramofile/files/patch-20-warning-fixes (props changed) head/audio/grip/files/patch-src::main.c (props changed) head/audio/grip/files/patch-src_tray.c (props changed) head/audio/gsi/files/patch-aa (props changed) head/audio/gsi/files/patch-ac (props changed) head/audio/gsi/files/patch-ad (props changed) head/audio/gsi/files/patch-ae (props changed) head/audio/gsi/files/patch-af (props changed) head/audio/gsi/files/patch-ag (props changed) head/audio/gsi/files/patch-ah (props changed) head/audio/gsi/files/patch-ai (props changed) head/audio/gsi/files/patch-aj (props changed) head/audio/gsi/files/patch-al (props changed) head/audio/gsi/files/patch-am (props changed) head/audio/gsi/files/patch-an (props changed) head/audio/gsi/files/patch-ap (props changed) head/audio/gsi/files/patch-aq (props changed) head/audio/gsi/files/patch-ar (props changed) head/audio/gsi/files/patch-as (props changed) head/audio/gsi/files/patch-au (props changed) head/audio/gsi/files/patch-av (props changed) head/audio/gsi/files/patch-aw (props changed) head/audio/gsi/files/patch-lib-gsif-sample_convert_block.c (props changed) head/audio/gsi/files/patch-lib::gsif::io.c (props changed) head/audio/gsi/files/patch-lib::gsimidi_pcm::midi_parse.c (props changed) head/audio/gsm/files/patch-aa (props changed) head/audio/gsm/files/patch-ab (props changed) head/audio/gstreamer-plugins-moodbar/files/patch-main.c (props changed) head/audio/gvolwheel/files/patch-src_oss.c (props changed) head/audio/hawkvoice/files/patch-src_makefile.linux (props changed) head/audio/herrie/files/patch-libxspf (props changed) head/audio/hexter/files/patch-configure (props changed) head/audio/hydrogen/files/patch-Sconstruct (props changed) head/audio/id3lib/files/patch-CVE-2007-4460 (props changed) head/audio/id3lib/files/patch-Makefile.in (props changed) head/audio/id3lib/files/patch-configure (props changed) head/audio/id3lib/files/patch-examples-Makefile.in (props changed) head/audio/id3lib/files/patch-globals.h (props changed) head/audio/id3lib/files/patch-io_helpers.cpp (props changed) head/audio/id3lib/files/patch-src-Makefile.in (props changed) head/audio/id3ren/files/patch-Makefile (props changed) head/audio/id3ren/files/patch-aa (props changed) head/audio/id3ren/files/patch-ab (props changed) head/audio/id3ren/files/patch-man::Makefile (props changed) head/audio/jack-rack/files/patch-fix_with_gtk-2.12 (props changed) head/audio/jack-rack/files/patch-src_plugin_slot_callbacks.c (props changed) head/audio/jack/files/patch-drivers-alsa-midi-alsa_rawmidi.c (props changed) head/audio/jack/files/patch-drivers-alsa_memops.c (props changed) head/audio/jack/files/patch-drivers-dummy-dummy_driver.c (props changed) head/audio/jack/files/patch-drivers-dummy-dummy_driver.h (props changed) head/audio/jack/files/patch-drivers-oss-oss_driver.c (props changed) head/audio/jack/files/patch-jack.pc.in (props changed) head/audio/jack/files/patch-jackd_engine.c (props changed) head/audio/jamin/files/patch-configure (props changed) head/audio/juke/files/extra-patch-vi (props changed) head/audio/juke/files/patch-aa (props changed) head/audio/juke/files/patch-ab (props changed) head/audio/kexis/files/patch-Makefile (props changed) head/audio/ksmp3play/files/patch-configure (props changed) head/audio/ksmp3play/files/patch-ksmp3play.c (props changed) head/audio/ksmp3play/files/patch-ksmp3play.h (props changed) head/audio/ksmp3play/files/patch-windows.c (props changed) head/audio/ladspa/files/patch-applyplugin.c (props changed) head/audio/lash/files/patch-lashd-client_event.c (props changed) head/audio/lash/files/patch-lashd-conn_mgr.c (props changed) head/audio/lash/files/patch-lashd-store.c (props changed) head/audio/lash/files/patch-liblash-lash.c (props changed) head/audio/last.fm/files/patch-src-AudioController.cpp (props changed) head/audio/last.fm/files/patch-src-libUnicorn-Settings.h (props changed) head/audio/last.fm/files/patch-src_rtaudioplayback-rtaudioplayback.cpp (props changed) head/audio/last.fm/files/patch-src_rtaudioplayback-rtaudioplayback.pro (props changed) head/audio/last.fm/files/patch-src_rtaudioplayback_rtaudio-RtAudio.cpp (props changed) head/audio/lastfm-desktop/files/patch-app_client_MediaDevices_IpodDevice_linux.cpp (props changed) head/audio/libaacplus/files/patch-configure.ac (props changed) head/audio/libaacplus/files/patch-include-aacplus.h (props changed) head/audio/libaacplus/files/patch-src_Makefile.am (props changed) head/audio/libaiff/files/patch-Makefile.in (props changed) head/audio/libao/files/patch-configure (props changed) head/audio/libao/files/patch-doc_Makefile.in (props changed) head/audio/libao/files/patch-src_plugins_Makefile.in (props changed) head/audio/libcanberra/files/patch-configure (props changed) head/audio/libcanberra/files/patch-src_oss.c (props changed) head/audio/libcdaudio/files/patch-CVE-2008-5030.2005-0706 (props changed) head/audio/libconvolve/files/patch-Makefile (props changed) head/audio/libconvolve/files/patch-convolution_init.c (props changed) head/audio/libconvolve/files/patch-convolution_process.c (props changed) head/audio/libechonest/files/patch-CMakeLists.txt (props changed) head/audio/libid3tag/files/patch-id3tag.pc.in (props changed) head/audio/libid3tag/files/patch-ltmain.sh (props changed) head/audio/liblo/files/patch-src-lo_types_internal.h (props changed) head/audio/libmikmod/files/patch-64bit-fix (props changed) head/audio/libmikmod/files/patch-CVE-2009-0179 (props changed) head/audio/libmikmod/files/patch-exitcrash (props changed) head/audio/libmikmod/files/patch-md_sngchn (props changed) head/audio/libmikmod/files/patch-ngvolume (props changed) head/audio/libmp3splt/files/patch-src-oformat_parser.c (props changed) head/audio/libmp3splt/files/patch-src-socket_manager.c (props changed) head/audio/libnoise/files/patch-src_Makefile (props changed) head/audio/libofa/files/patch-configure (props changed) head/audio/libofa/files/patch-examples__example.cpp (props changed) head/audio/libofa/files/patch-examples__protocol.cpp (props changed) head/audio/libofa/files/patch-lib__JAMA__tnt_math_utils.h (props changed) head/audio/libofa/files/patch-lib__signal_op.cpp (props changed) head/audio/libogg/files/patch-configure (props changed) head/audio/libshairport/files/patch-configure.in (props changed) head/audio/libshairport/files/patch-src-Makefile.am (props changed) head/audio/libshairport/files/patch-src-alac.c (props changed) head/audio/libshairport/files/patch-src-ao.h (props changed) head/audio/libshairport/files/patch-src-hairtunes.c (props changed) head/audio/libshairport/files/patch-src-hairtunes.h (props changed) head/audio/libshairport/files/patch-src-shairport.c (props changed) head/audio/libshairport/files/patch-src-shairport.h (props changed) head/audio/libshairport/files/patch-src-socketlib.c (props changed) head/audio/libshout/files/patch-aa (props changed) head/audio/libshout/files/patch-ab (props changed) head/audio/libsidplay/files/patch-libtool (props changed) head/audio/libsidplay2/files/patch-libsidplay::include::sidplay::SmartPtr.h (props changed) head/audio/libsidplay2/files/patch-libsidutils_include_sidplay_utils_SidUsage.h (props changed) head/audio/libvorbis/files/patch-configure (props changed) head/audio/libvorbis/files/patch-doc_Makefile.in (props changed) head/audio/libvorbis/files/patch-doc_libvorbis_Makefile.in (props changed) head/audio/libvorbis/files/patch-doc_vorbisenc_Makefile.in (props changed) head/audio/libvorbis/files/patch-doc_vorbisfile_Makefile.in (props changed) head/audio/libxmp/files/patch-Makefile.in (props changed) head/audio/linux-f10-alsa-plugins-oss/files/patch-pcm-oss.conf (props changed) head/audio/linux-f10-pulseaudio-libs/files/patch-etc_pulse_client.conf-dist (props changed) head/audio/linux-fmodapi/files/patch-Makefile (props changed) head/audio/linuxsampler/files/patch-src-common-Mutex.cpp (props changed) head/audio/linuxsampler/files/patch-src-common-atomic.h (props changed) head/audio/linuxsampler/files/patch-src-drivers-audio-AudioChannel.cpp (props changed) head/audio/liquidsoap/files/patch-liquidsoap-1.0.0__Makefile (props changed) head/audio/liquidsoap/files/patch-liquidsoap-1.0.0__Makefile.defs.in (props changed) head/audio/liquidsoap/files/patch-ocaml-aacplus-0.2.0__src__Makefile.in (props changed) head/audio/liquidsoap/files/patch-ocaml-lame-0.3.1__src__Makefile.in (props changed) head/audio/liquidsoap/files/patch-ocaml-soundtouch-0.1.7__configure (props changed) head/audio/listener/files/patch-Makefile (props changed) head/audio/lmms/files/patch-CMakeLists.txt (props changed) head/audio/lmms/files/patch-_plugins_zynaddsubfx_src_Samples_Sample.cpp (props changed) head/audio/lmms/files/patch-include_AudioPortAudio.h (props changed) head/audio/lmms/files/patch-plugins_midi_import_portsmf_allegrord.cpp (props changed) head/audio/lmms/files/patch-plugins_midi_import_portsmf_allegrosmfrd.cpp (props changed) head/audio/lmms/files/patch-plugins_midi_import_portsmf_allegrowr.cpp (props changed) head/audio/lmms/files/patch-plugins_midi_import_portsmf_mfmidi.cpp (props changed) head/audio/lmms/files/patch-plugins_organic_organic.cpp (props changed) head/audio/lmms/files/patch-plugins_sf2_player_sf2_player.cpp (props changed) head/audio/lmms/files/patch-plugins_zynaddsubfx_CMakeList.txt (props changed) head/audio/lmms/files/patch-plugins_zynaddsubfx_fltk_configh.cmake.in (props changed) head/audio/lmms/files/patch-plugins_zynaddsubfx_fltk_src_numericsort.c (props changed) head/audio/lmms/files/patch-plugins_zynaddsubfx_fltk_src_scandir.c (props changed) head/audio/lmms/files/patch-plugins_zynaddsubfx_src_Misc_Util.cpp (props changed) head/audio/lmms/files/patch-plugins_zynaddsubfx_src_Output_PAaudiooutput.h (props changed) head/audio/lmms/files/patch-plugins_zynaddsubfx_src_Params_PresetsStore.cpp (props changed) head/audio/lmms/files/patch-plugins_zynaddsubfx_src_UI_PresetsUI.cc (props changed) head/audio/maplay/files/patch-ab (props changed) head/audio/maplay/files/patch-ad (props changed) head/audio/maplay/files/patch-af (props changed) head/audio/maplay/files/patch-ah (props changed) head/audio/maplay/files/patch-ak (props changed) head/audio/maplay/files/patch-am (props changed) head/audio/maplay/files/patch-an (props changed) head/audio/maplay/files/patch-ao (props changed) head/audio/maplay/files/patch-ap (props changed) head/audio/maplay/files/patch-crc.cc (props changed) head/audio/maplay/files/patch-header.cc (props changed) head/audio/maplay/files/patch-ibitstream.cc (props changed) head/audio/maplay/files/patch-maplay.cc (props changed) head/audio/maplay/files/patch-obuffer.cc (props changed) head/audio/maplay/files/patch-obuffer.h (props changed) head/audio/maplay/files/patch-subband_layer_1.cc (props changed) head/audio/maplay/files/patch-synthesis_filter.h (props changed) head/audio/mcplay/files/patch-config.h (props changed) head/audio/mcplay/files/patch-mixer.c (props changed) head/audio/mcplay/files/patch-screen.c (props changed) head/audio/minitunes/files/patch-src-collectionscanner.h (props changed) head/audio/mixer.app/files/patch-Mixer.cc (props changed) head/audio/mixmos/files/patch-src::mixer.h (props changed) head/audio/mixmos/files/patch-src::prefs.h (props changed) head/audio/mixxx/files/patch-src__sounddeviceportaudio.cpp (props changed) head/audio/mixxx/files/patch-src__soundmanager.cpp (props changed) head/audio/mixxx/files/patch-src__soundmanagerconfig.cpp (props changed) head/audio/mixxx/files/patch-src__soundsourceoggvorbis.cpp (props changed) head/audio/mma/files/patch-mma.py (props changed) head/audio/modplugplay/files/patch-modplugplay.c (props changed) head/audio/mous/files/patch-CMakeLists.txt (props changed) head/audio/mp-player/files/patch-mp.c (props changed) head/audio/mp32ogg/files/patch-mp32ogg (props changed) head/audio/mp3_check/files/patch-aa (props changed) head/audio/mp3_check/files/patch-ab (props changed) head/audio/mp3_check/files/patch-mp3_check_misc.c (props changed) head/audio/mp3asm/files/patch-utils.c (props changed) head/audio/mp3blaster/files/patch-src::main.cc (props changed) head/audio/mp3plot/files/patch-src__macros.h (props changed) head/audio/mp3stat/files/patch-input_mp3_mp3stat.cpp (props changed) head/audio/mp3stat/files/patch-input_vorbis_oggstat.h (props changed) head/audio/mp3stat/files/patch-ui.cpp (props changed) head/audio/mp3stat/files/patch-ui_gtk_gtk2-ui.cpp (props changed) head/audio/mp3unicode/files/patch-Makefile.in (props changed) head/audio/mp3unicode/files/patch-mp3unicode.cpp (props changed) head/audio/mp3wrap/files/patch-aa (props changed) head/audio/mpdbrowser/files/patch-setup.py (props changed) head/audio/mpg321/files/patch-ao.c (props changed) head/audio/mpg321/files/patch-mpg321.c (props changed) head/audio/mpg321/files/patch-network.c (props changed) head/audio/mpiosh/files/extra-patch-configure.in (props changed) head/audio/mpiosh/files/patch-Makefile.am (props changed) head/audio/mpiosh/files/patch-configure.in (props changed) head/audio/mpiosh/files/patch-libmpio-debug.h (props changed) head/audio/mpiosh/files/patch-libmpio_Makefile.am (props changed) head/audio/mpiosh/files/patch-mpiosh-callback.c (props changed) head/audio/mpiosh/files/patch-mpiosh-mpiosh.c (props changed) head/audio/mpiosh/files/patch-mpiosh-readline.c (props changed) head/audio/muine/files/patch-libmuine-db.c (props changed) head/audio/muine/files/patch-libmuine_Makefile.in (props changed) head/audio/muine/files/patch-libmuine_rb-cell-renderer-pixbuf.c (props changed) head/audio/muine/files/patch-src-CoverGetter.cs (props changed) head/audio/muine/files/patch-src-muine.exe.config.in (props changed) head/audio/mumble/files/patch-compiler.pri (props changed) head/audio/mumble/files/patch-overlay-overlay.h (props changed) head/audio/mumble/files/patch-overlay_gl-overlay.c (props changed) head/audio/mumble/files/patch-src-Net.cpp (props changed) head/audio/murmur/files/patch-compiler.pri (props changed) head/audio/muse/files/patch-Makefile.in (props changed) head/audio/muse/files/patch-configure (props changed) head/audio/muse/files/patch-src::Makefile.in (props changed) head/audio/muse/files/patch-src::jmixer.cpp (props changed) head/audio/muse/files/patch-src::libmpeg::mpegtoraw.cc (props changed) head/audio/muse/files/patch-src::outchannels.cpp (props changed) head/audio/muse/files/patch-src::pipe.cpp (props changed) head/audio/muse/files/patch-src::shout::sock.c (props changed) head/audio/muse/files/patch-src_linklist.h (props changed) head/audio/musepack/files/patch-Makefile.am (props changed) head/audio/musepack/files/patch-encode_sv7.c (props changed) head/audio/musepack/files/patch-huffman-bcl.c (props changed) head/audio/musescore/files/patch-mscore-mscore-CMakeLists.txt (props changed) head/audio/musescore/files/patch-mscore__awl__denomspinbox.cpp (props changed) head/audio/musescore/files/patch-mscore__mscore__measure.cpp (props changed) head/audio/musica/files/patch-src_channel2device.cc (props changed) head/audio/musica/files/patch-src_dnd.cc (props changed) head/audio/musica/files/patch-src_events.cc (props changed) head/audio/musica/files/patch-src_gui.cc (props changed) head/audio/musica/files/patch-src_help.cc (props changed) head/audio/musica/files/patch-src_main.cc (props changed) head/audio/musica/files/patch-src_ossmidi.cc (props changed) head/audio/musica/files/patch-src_program2device.cc (props changed) head/audio/musica/files/patch-src_readmidi.cc (props changed) head/audio/musica/files/patch-src_sequence.cc (props changed) head/audio/napster/files/patch-doc::Makefile.in (props changed) head/audio/nas/files/patch-aa (props changed) head/audio/nas/files/patch-ab (props changed) head/audio/nas/files/patch-af (props changed) head/audio/nas/files/patch-clients_audio_audemo_audemo.c (props changed) head/audio/nas/files/patch-clients_audio_auedit_Graph.c (props changed) head/audio/nas/files/patch-clients_audio_auedit_auedit.c (props changed) head/audio/nas/files/patch-clients_audio_aupanel_aupanel.c (props changed) head/audio/nas/files/patch-clients_audio_auphone_auphone.c (props changed) head/audio/nas/files/patch-clients_audio_autool_audiotool.c (props changed) head/audio/nas/files/patch-clients_audio_auwave_auwave.c (props changed) head/audio/nas/files/patch-server_dda_voxware_config.c (props changed) head/audio/nas/files/patch-server_dia_gram.y (props changed) head/audio/nas/files/patch-server_dia_lex.l (props changed) head/audio/nas/files/patch-tmpl (props changed) head/audio/nas/files/patch-useXt (props changed) head/audio/nosefart/files/patch-aa (props changed) head/audio/nosefart/files/patch-src-sndhrdw-nes_apu.c (props changed) head/audio/nspmod/files/patch-aa (props changed) head/audio/nspmod/files/patch-ab (props changed) head/audio/nspmod/files/patch-ac (props changed) head/audio/nspmod/files/patch-ad (props changed) head/audio/nspmod/files/patch-ae (props changed) head/audio/ocp/files/patch-Makefile.in (props changed) head/audio/ocp/files/patch-doc-texi-Makefile.in (props changed) head/audio/ogg2mp3/files/patch-ogg2mp3 (props changed) head/audio/oggsplit/files/patch-system.h (props changed) head/audio/oggsplit/files/patch-xmalloc.c (props changed) head/audio/openal-soft/files/patch-CMakeLists.txt (props changed) head/audio/openal/files/patch-common__include__AL__alc.h (props changed) head/audio/openal/files/patch-src-arch-i386-memcpy_mmx_prk.nasm (props changed) head/audio/openal/files/patch-src-arch-i386-x86_cpu_caps_detect_prk.nasm (props changed) head/audio/openal/files/patch-src-arch-i386-x86_floatmul.c (props changed) head/audio/openal/files/patch-src-backends-alc_backend_bsd.c (props changed) head/audio/openal/files/patch-src-backends-alc_backend_esd.c (props changed) head/audio/oss/files/patch-cmd-ossplay-ossplay_parser.c (props changed) head/audio/oss/files/patch-configure (props changed) head/audio/oss/files/patch-os_cmd-FreeBSD-ossdetect-ossdetect.c (props changed) head/audio/oss/files/patch-setup-FreeBSD-build.sh (props changed) head/audio/oss/files/patch-setup-FreeBSD-make.local (props changed) head/audio/oss/files/patch-setup-FreeBSD-oss-build-install.sh (props changed) head/audio/oss/files/patch-setup-FreeBSD-oss-build-module.inc (props changed) head/audio/oss/files/patch-setup-FreeBSD-oss-build-osscore.c (props changed) head/audio/oss/files/patch-setup-FreeBSD-sbin-soundoff (props changed) head/audio/oss/files/patch-setup-FreeBSD-sbin-soundon (props changed) head/audio/p5-Audio-Ecasound/files/patch-Makefile.PL (props changed) head/audio/p5-Audio-Mixer/files/patch-Mix.c (props changed) head/audio/p5-Ogg-Vorbis-Header/files/patch-Header.pm (props changed) head/audio/p5-Xmms/files/patch-Makefile.PL (props changed) head/audio/p5-libvorbis/files/patch-Makefile.PL (props changed) head/audio/pacpl/files/patch-pacpl (props changed) head/audio/padevchooser/files/patch-src_padevchooser.c (props changed) head/audio/patchage/files/patch-src-Patchage.cpp (props changed) head/audio/pd/files/patch-src_s_audio_alsa.c (props changed) head/audio/pianobar/files/patch-Makefile (props changed) head/audio/pithos/files/patch-setup.py (props changed) head/audio/playmidi/files/patch-Configure (props changed) head/audio/playmidi/files/patch-Makefile (props changed) head/audio/playmidi/files/patch-emumidi.h (props changed) head/audio/playmidi/files/patch-patchload.c (props changed) head/audio/playmidi/files/patch-playmidi_h-dist (props changed) head/audio/pms/files/patch-src_pms.cpp (props changed) head/audio/portaudio/files/patch-Makefile.in (props changed) head/audio/portaudio/files/patch-configure (props changed) head/audio/portaudio/files/patch-pa_tests-patest__record.c (props changed) head/audio/portaudio/files/patch-pa_tests-patest__wire.c (props changed) head/audio/puddletag/files/patch-setup.py (props changed) head/audio/pulseaudio/files/patch-configure (props changed) head/audio/pulseaudio/files/patch-src_Makefile.in (props changed) head/audio/pulseaudio/files/patch-src_daemon_default.pa.in (props changed) head/audio/pulseaudio/files/patch-src_modules_module-cli.c (props changed) head/audio/pulseaudio/files/patch-src_modules_module-detect.c (props changed) head/audio/pulseaudio/files/patch-src_modules_oss_module-oss.c (props changed) head/audio/pulseaudio/files/patch-src_modules_oss_oss-util.c (props changed) head/audio/pulseaudio/files/patch-src_modules_rtp_rtsp_client.c (props changed) head/audio/pulseaudio/files/patch-src_pulse_introspect.c (props changed) head/audio/pulseaudio/files/patch-src_pulse_thread-mainloop.c (props changed) head/audio/pulseaudio/files/patch-src_pulse_util.c (props changed) head/audio/pulseaudio/files/patch-src_pulsecore_atomic.h (props changed) head/audio/pulseaudio/files/patch-src_pulsecore_pstream.c (props changed) head/audio/pulseaudio/files/patch-src_pulsecore_shm.c (props changed) head/audio/pulseaudio/files/patch-src_tests_rtpoll-test.c (props changed) head/audio/pulseaudio/files/patch-src_tests_rtstutter.c (props changed) head/audio/py-ao/files/patch-src_aomodule.c (props changed) head/audio/py-ao/files/patch-src_aomodule.h (props changed) head/audio/py-fastaudio/files/patch-fastaudio.pyx (props changed) head/audio/py-fastaudio/files/patch-mysndfile.h (props changed) head/audio/py-fastaudio/files/patch-setup.py (props changed) head/audio/py-karaoke/files/patch-setup.cfg (props changed) head/audio/py-mutagen/files/patch-setup.py (props changed) head/audio/py-openal/files/patch-py_openal.c (props changed) head/audio/py-openal/files/patch-setup.py (props changed) head/audio/py-pyaudio/files/patch-setup.py (props changed) head/audio/py-pyliblo/files/patch-setup.py (props changed) head/audio/py-speex/files/patch-setup.py (props changed) head/audio/py-speex/files/patch-speex.pyx (props changed) head/audio/py-xmms/files/patch-setup.py (props changed) head/audio/pysol-sound-server/files/patch-aa (props changed) head/audio/qjackctl/files/patch-src-qjackctlSetup.cpp (props changed) head/audio/qmpdclient/files/patch-qmpdclient.desktop (props changed) head/audio/qmpdclient/files/patch-qmpdclient.pro (props changed) head/audio/qsynth/files/patch-src-qsynthOptions.cpp (props changed) head/audio/raop_play/files/patch-Makefile (props changed) head/audio/raop_play/files/patch-aexcl-Makefile.in (props changed) head/audio/raop_play/files/patch-aexcl-aexcl_play.c (props changed) head/audio/raop_play/files/patch-raop_play-Makefile.in (props changed) head/audio/raop_play/files/patch-raop_play-aac_stream.c (props changed) head/audio/raop_play/files/patch-raop_play-aexcl_lib.h (props changed) head/audio/raop_play/files/patch-raop_play-audio_stream.c (props changed) head/audio/raop_play/files/patch-raop_play-audio_stream.h (props changed) head/audio/raop_play/files/patch-raop_play-flac_streams.c (props changed) head/audio/raop_play/files/patch-raop_play-m4a_stream.c (props changed) head/audio/raop_play/files/patch-raop_play-mp3_stream.c (props changed) head/audio/raop_play/files/patch-raop_play-ogg_stream.c (props changed) head/audio/raop_play/files/patch-raop_play-pcm_streams.c (props changed) head/audio/raop_play/files/patch-raop_play-pls_stream.c (props changed) head/audio/raop_play/files/patch-raop_play-raop_client.c (props changed) head/audio/raop_play/files/patch-raop_play-wav_stream.c (props changed) head/audio/raop_play/files/patch-rendezvous-Client.c (props changed) head/audio/raop_play/files/patch-rendezvous-Makefile.in (props changed) head/audio/raop_play/files/patch-rendezvous-mDNS.c (props changed) head/audio/rawrec/files/patch-main.c (props changed) head/audio/rawrec/files/patch-play.c (props changed) head/audio/rawrec/files/patch-record.c (props changed) head/audio/rawrec/files/patch-sleep_on_motion.c (props changed) head/audio/resid/files/patch-configure (props changed) head/audio/rexima/files/patch-Makefile (props changed) head/audio/rezound/files/patch-64bit-fixes (props changed) head/audio/rezound/files/patch-fix-raw-save (props changed) head/audio/rezound/files/patch-src_backend_AStatusComm.cpp (props changed) head/audio/rezound/files/patch-src_backend_CFLACSoundTranslator.cpp (props changed) head/audio/rezound/files/patch-src_backend_CSound_defs.h (props changed) head/audio/rhythmbox/files/patch-configure (props changed) head/audio/rhythmbox/files/patch-plugins_status-icon_rb-status-icon-plugin.c (props changed) head/audio/rhythmbox/files/patch-plugins_status-icon_rb-tray-icon-gtk.c (props changed) head/audio/rhythmbox/files/patch-plugins_status-icon_rb-tray-icon-gtk.h (props changed) head/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h (props changed) head/audio/rhythmbox/files/patch-python (props changed) head/audio/rhythmbox/files/patch-remote_dbus_rb-client.c (props changed) head/audio/rio500/files/patch-include-libfon.h (props changed) head/audio/rio500/files/patch-src_rio__add__song.c (props changed) head/audio/rioutil/files/extra-patch-configure.ac (props changed) head/audio/rioutil/files/patch-src::Makefile.in (props changed) head/audio/ripperx/files/patch-plugins-ripperX_plugin-oggenc.c (props changed) head/audio/ripperx/files/patch-src-config_rw.c (props changed) head/audio/ripperx/files/patch-src-ripper_encoder_manipulation.c (props changed) head/audio/rosegarden/files/patch-configure (props changed) head/audio/rplay/files/extra-patch-ao (props changed) head/audio/rplay/files/patch-ab (props changed) head/audio/rplay/files/patch-ac (props changed) head/audio/rplay/files/patch-ad (props changed) head/audio/rplay/files/patch-ae (props changed) head/audio/rplay/files/patch-af (props changed) head/audio/rplay/files/patch-ag (props changed) head/audio/rplay/files/patch-ah (props changed) head/audio/rplay/files/patch-ai (props changed) head/audio/rplay/files/patch-aj (props changed) head/audio/rplay/files/patch-ak (props changed) head/audio/rplay/files/patch-al (props changed) head/audio/rplay/files/patch-am (props changed) head/audio/rplay/files/patch-an (props changed) head/audio/rplay/files/patch-rplayd::rplayd.c (props changed) head/audio/rplay/files/patch-rplayd_rplayd.h (props changed) head/audio/rsynth/files/patch-aa (props changed) head/audio/rsynth/files/patch-ac (props changed) head/audio/rsynth/files/patch-configure.in (props changed) head/audio/rubberband/files/patch-Makefile (props changed) head/audio/rubberband/files/patch-StrecherProcess.cpp (props changed) head/audio/rubberband/files/patch-StretcherImpl.cpp (props changed) head/audio/rubberband/files/patch-system-sysutils.h (props changed) head/audio/ruby-audiofile/files/patch-audiofile.c (props changed) head/audio/rubyripper/files/patch-rr_lib.rb (props changed) head/audio/rubyripper/files/patch-rubyripper_gtk2.rb (props changed) head/audio/s3mod/files/patch-ab (props changed) head/audio/s3mod/files/patch-ac (props changed) head/audio/s3mod/files/patch-ae (props changed) head/audio/s3mod/files/patch-af (props changed) head/audio/s3mod/files/patch-ag (props changed) head/audio/s3mod/files/patch-ah (props changed) head/audio/s3mod/files/patch-ai (props changed) head/audio/s3mod/files/patch-aj (props changed) head/audio/s3mod/files/patch-ak (props changed) head/audio/s3mod/files/patch-dsp.c (props changed) head/audio/s3mod/files/patch-dsp.h (props changed) head/audio/schism/files/extrapatch-modplug__snd_gm.c (props changed) head/audio/scrobbler/files/patch-Makefile.in (props changed) head/audio/scrobbler/files/patch-config.h.in (props changed) head/audio/scrobbler/files/patch-configure (props changed) head/audio/scrobbler/files/patch-scrobbler.c (props changed) head/audio/scrobbler/files/patch-tags__include__tags.h (props changed) head/audio/scrobbler/files/patch-tags__tags.c (props changed) head/audio/sdl_mixer/files/patch-SDL_mixer.h (props changed) head/audio/sdl_mixer/files/patch-mixer.c (props changed) head/audio/sdl_sound/files/patch-Makefile.in (props changed) head/audio/sdl_sound/files/patch-decoders-timidity-options.h (props changed) head/audio/shairport/files/patch-shairport.pl (props changed) head/audio/shout/files/patch-aa (props changed) head/audio/shout/files/patch-ab (props changed) head/audio/shout/files/patch-ac (props changed) head/audio/shout/files/patch-shout.c (props changed) head/audio/sidplay/files/patch-audio_oss_audiodrv.h (props changed) head/audio/sidplay/files/patch-configure (props changed) head/audio/sidplay2/files/patch-src_audio_oss_audiodrv.h (props changed) head/audio/snack/files/patch-configure (props changed) head/audio/snack/files/patch-generic-jkFormatMP3.c (props changed) head/audio/sonata/files/patch-setup.py (props changed) head/audio/sonata/files/patch-sonata.py (props changed) head/audio/sooperlooper/files/patch-configure (props changed) head/audio/sooperlooper/files/patch-libs-midi-configure (props changed) head/audio/sooperlooper/files/patch-libs-pbd-ftw.cc (props changed) head/audio/sooperlooper/files/patch-src-plugin.cc (props changed) head/audio/sound-juicer/files/patch-src_sj-main.c (props changed) head/audio/soundconverter/files/patch-src_soundconverter.py (props changed) head/audio/soundtracker/files/patch-app::Makefile.in (props changed) head/audio/soundtracker/files/patch-app__sample-editor.c (props changed) head/audio/soundtracker/files/patch-app__tracer.c (props changed) head/audio/soundtracker/files/patch-app__track-editor.c (props changed) head/audio/soundtracker/files/patch-po::ja.po (props changed) head/audio/sox/files/patch-ffmpeg (props changed) head/audio/specimen/files/patch-configure (props changed) head/audio/specimen/files/patch-src-Makefile.in (props changed) head/audio/specimen/files/patch-src-driver.c (props changed) head/audio/specimen/files/patch-src-jackdriver.c (props changed) head/audio/specimen/files/patch-src-specimen.c (props changed) head/audio/speex/files/patch-speex.pc.in (props changed) head/audio/sphinx/files/patch-src-examples_clicore.c (props changed) head/audio/sphinx/files/patch-src-examples_srvcore.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2-include_pconf.h (props changed) head/audio/sphinx/files/patch-src-libsphinx2_blk_cdcn_norm.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2_cdcn_norm.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2_eht_quit.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2_err.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2_linklist.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2_prime.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2_r_agc_noise.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2_sc_vq.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2_search.c (props changed) head/audio/sphinx/files/patch-src-libsphinx2fe_fe_sigproc.c (props changed) head/audio/sphinx/files/patch-src_examples_tty-continuous.c (props changed) head/audio/sphinx/files/patch-src_libsphinx2_cdcn_update.c (props changed) head/audio/sphinx/files/patch-src_libsphinx2ad_ad_oss_bsd.c (props changed) head/audio/spiralloops/files/patch-Fl_Knob.H (props changed) head/audio/spiralloops/files/patch-Fl_LED_Button.H (props changed) head/audio/spiralloops/files/patch-Fl_LED_Button.cxx (props changed) head/audio/spiralloops/files/patch-GUI-OutputGUI.C (props changed) head/audio/spiralloops/files/patch-GUI-ScopeGUI.C (props changed) head/audio/spiralloops/files/patch-GUI-Widgets-Fl_Knob.cxx (props changed) head/audio/spiralloops/files/patch-GUI-Widgets-Fl_Loop.C (props changed) head/audio/spiralloops/files/patch-GUI-Widgets-Fl_Loop.h (props changed) head/audio/spiralloops/files/patch-GUI-Widgets-Fl_Trigger.C (props changed) head/audio/spiralloops/files/patch-Output.h (props changed) head/audio/spiralloops/files/patch-SpiralLoops.C (props changed) head/audio/spiralloops/files/patch-SpiralSound-Output.C (props changed) head/audio/spiralloops/files/patch-SpiralSound-RiffWav.C (props changed) head/audio/spiralloops/files/patch-SpiralSound-Sample.C (props changed) head/audio/spiralloops/files/patch-SpiralSound-Sample.h (props changed) head/audio/spiralloops/files/patch-SpiralSound-SpiralInfo.C (props changed) head/audio/spiralloops/files/patch-SpiralSound-SpiralInfo.h (props changed) head/audio/spiralsynth/files/patch-Fl_Knob.H (props changed) head/audio/spiralsynth/files/patch-GUI_MixerGUI.C (props changed) head/audio/spiralsynth/files/patch-GUI_OutputGUI.C (props changed) head/audio/spiralsynth/files/patch-GUI_ScopeGUI.C (props changed) head/audio/spiralsynth/files/patch-GUI_Widgets_Fl_Knob.cxx (props changed) head/audio/spiralsynth/files/patch-SpiralInfo.C (props changed) head/audio/spiralsynth/files/patch-SpiralSound-Sequencer.h (props changed) head/audio/spiralsynth/files/patch-SpiralSoundMidi_C (props changed) head/audio/spiralsynth/files/patch-SpiralSound_Oscillator.C (props changed) head/audio/spiralsynth/files/patch-SpiralSound_RiffWav.h (props changed) head/audio/spiralsynth/files/patch-SpiralSound_SpiralInfo.h (props changed) head/audio/spiralsynthmodular/files/patch-SpiralSound::PluginManager.C (props changed) head/audio/spiralsynthmodular/files/patch-SpiralSound::Plugins::OutputPlugin::OutputPlugin.C (props changed) head/audio/spiralsynthmodular/files/patch-gcc46 (props changed) head/audio/splay/files/patch-apps_Makefile_in (props changed) head/audio/splay/files/patch-configure (props changed) head/audio/splaytk/files/patch-aa (props changed) head/audio/squash/files/patch-FIXLOCK-src_global_squash.c (props changed) head/audio/squash/files/patch-include__global.h (props changed) head/audio/squash/files/patch-include__play_flac.h (props changed) head/audio/squash/files/patch-src__display.c (props changed) head/audio/squash/files/patch-src__play_flac.c (props changed) head/audio/squash/files/patch-src__player.c (props changed) head/audio/squeezeboxserver/files/patch-convert.conf (props changed) head/audio/squeezeboxserver/files/patch-dbix-class-bug.diff (props changed) head/audio/squeezeboxserver/files/patch-modules.conf (props changed) head/audio/streamtuner/files/patch-src_plugins_live365_live365.c (props changed) head/audio/streamtuner/files/patch-src_plugins_python_pst-main.c (props changed) head/audio/stymulator/files/patch-Makefile (props changed) head/audio/stymulator/files/patch-sound.cpp (props changed) head/audio/stymulator/files/patch-sound.h (props changed) head/audio/stymulator/files/patch-stsoundlib__Makefile (props changed) head/audio/stymulator/files/patch-stsoundlib__YmMusic.cpp (props changed) head/audio/stymulator/files/patch-stsoundlib__YmMusic.h (props changed) head/audio/stymulator/files/patch-stsoundlib__YmTypes.h (props changed) head/audio/stymulator/files/patch-stsoundlib__Ymload.cpp (props changed) head/audio/stymulator/files/patch-stsoundlib__digidrum.cpp (props changed) head/audio/stymulator/files/patch-stsoundlib__digidrum.h (props changed) head/audio/stymulator/files/patch-stsoundlib__lzh__Makefile (props changed) head/audio/stymulator/files/patch-stsoundlib__lzh__lzhlib.cpp (props changed) head/audio/stymulator/files/patch-ui.c (props changed) head/audio/stymulator/files/patch-ui.h (props changed) head/audio/stymulator/files/patch-ym2wav.cpp (props changed) head/audio/stymulator/files/patch-ymplayer.cpp (props changed) head/audio/tagger/files/patch-configure (props changed) head/audio/taglookup/files/patch-Makefile (props changed) head/audio/taglookup/files/patch-tag.cpp (props changed) head/audio/tagtool/files/patch-configure (props changed) head/audio/tagtool/files/patch-src__main.c (props changed) head/audio/tcd/files/patch-cddb.c (props changed) head/audio/tcd/files/patch-cddb.h (props changed) head/audio/tcd/files/patch-tcd.c (props changed) head/audio/tcd/files/patch-user-interface.c (props changed) head/audio/tclmidi/files/patch-aa (props changed) head/audio/tclmidi/files/patch-ab (props changed) head/audio/tclmidi/files/patch-ac (props changed) head/audio/tclmidi/files/patch-rb (props changed) head/audio/tclmidi/files/patch-smf__Makefile.in (props changed) head/audio/tclmidi/files/patch-song__Makefile.in (props changed) head/audio/tempest_for_eliza/files/patch-configure (props changed) head/audio/tepsonic/files/patch-player-3rdparty-CMakeLists.txt (props changed) head/audio/tepsonic/files/patch-player-3rdparty-qxt-CMakeLists.txt (props changed) head/audio/tepsonic/files/patch-player-CMakeLists.txt (props changed) head/audio/tepsonic/files/patch-player-collections-collectionbuilder.cpp (props changed) head/audio/tepsonic/files/patch-player-player.cpp (props changed) head/audio/tepsonic/files/patch-player-playlist-playlistpopulator.cpp (props changed) head/audio/terminatorx/files/patch-configure.in (props changed) head/audio/timidity++/files/patch-Makefile.in (props changed) head/audio/timidity++/files/patch-configure (props changed) head/audio/timidity++/files/patch-dynamic (props changed) head/audio/timidity++/files/patch-playmidi (props changed) head/audio/timidity++/files/patch-x_sherry.c (props changed) head/audio/timidity++/files/patch-xaw_i.c (props changed) head/audio/timidity/files/patch-aa (props changed) head/audio/timidity/files/patch-ab (props changed) head/audio/timidity/files/patch-ac (props changed) head/audio/timidity/files/patch-ae (props changed) head/audio/timidity/files/patch-af (props changed) head/audio/timidity/files/patch-ag (props changed) head/audio/timidity/files/patch-dumb_c.c (props changed) head/audio/toolame/files/patch-psycho_3.c (props changed) head/audio/toolame/files/patch-psycho_4.c (props changed) head/audio/tosha/files/patch-aa (props changed) head/audio/tosha/files/patch-pcmplay.c (props changed) head/audio/tosha/files/patch-utils.c (props changed) head/audio/tosha/files/patch-utils.h (props changed) head/audio/trommler/files/patch-gui.c (props changed) head/audio/tse3/files/patch-OSS.cpp (props changed) head/audio/tse3/files/patch-src__examples__recording__recording.cpp (props changed) head/audio/tse3/files/patch-src__tse3__MidiFile.cpp (props changed) head/audio/tse3/files/patch-src__tse3__Serializable.h (props changed) head/audio/tse3/files/patch-src__tse3__TSE2MDL.cpp (props changed) head/audio/tse3/files/patch-src__tse3__cmd__Phrase.h (props changed) head/audio/tse3/files/patch-src__tse3__file__MidiFilter.cpp (props changed) head/audio/tse3/files/patch-src__tse3__file__XML.cpp (props changed) head/audio/tse3/files/patch-src__tse3__file__XML.h (props changed) head/audio/tse3/files/patch-src__tse3play__tse3play.cpp (props changed) head/audio/tuneradio/files/patch-tuneradio.c (props changed) head/audio/tuxguitar/files/patch-build.properties (props changed) head/audio/umix/files/patch-src::driver_oss.c (props changed) head/audio/umodplayer/files/patch-coresound.c (props changed) head/audio/umurmur/files/patch-src-conf.c (props changed) head/audio/umurmur/files/patch-src-conf.h (props changed) head/audio/vamp-plugin-sdk/files/patch-Makefile (props changed) head/audio/voipong/files/patch-Makefile.bsd (props changed) head/audio/vorbis-tools/files/patch-configure (props changed) head/audio/vorbis-tools/files/patch-ogg123_Makefile.in (props changed) head/audio/vorbis-tools/files/patch-ogg123_vorbis_comments.c (props changed) head/audio/vorbis-tools/files/patch-oggenc_lyrics.c (props changed) head/audio/vorbisgain/files/patch-configure (props changed) head/audio/vsound/files/patch-configure (props changed) head/audio/vsound/files/patch-vsound.c (props changed) head/audio/waon/files/patch-ao-wrapper.c (props changed) head/audio/wavbreaker/files/patch-src_toc.c (props changed) head/audio/wavegain/files/patch-audio.c (props changed) head/audio/wavegain/files/patch-wavegain.c (props changed) head/audio/waveplay/files/patch-waveplay.c (props changed) head/audio/wavplay/files/patch-Makefile (props changed) head/audio/wavplay/files/patch-client.c (props changed) head/audio/wavplay/files/patch-file.c (props changed) head/audio/wavplay/files/patch-main.c (props changed) head/audio/wavplay/files/patch-msg.c (props changed) head/audio/wavplay/files/patch-recplay.c (props changed) head/audio/wavplay/files/patch-server.c (props changed) head/audio/wavplay/files/patch-wavplay.h (props changed) head/audio/wavplay/files/patch-xltwavplay.c (props changed) head/audio/whysynth/files/patch-src-Makefile.in (props changed) head/audio/wildmidi/files/patch-wildmidi.c--typecasting (props changed) head/audio/wmix/files/patch-mixer-oss.c (props changed) head/audio/wmix/files/patch-wmix.c (props changed) head/audio/wmrecord/files/patch-wmrecord.c (props changed) head/audio/wmsmixer/files/patch-Imakefile (props changed) head/audio/wmsmixer/files/patch-mixctl.h (props changed) head/audio/wmsmixer/files/patch-wmsmixer.cc (props changed) head/audio/workman/files/patch-Imakefile (props changed) head/audio/x11amp/files/patch-Effect::test::Makefile.in (props changed) head/audio/x11amp/files/patch-Effect::voice::Makefile.in (props changed) head/audio/x11amp/files/patch-Effect::voice::about.c (props changed) head/audio/x11amp/files/patch-General::ir::Makefile.in (props changed) head/audio/x11amp/files/patch-General::ir::about.c (props changed) head/audio/x11amp/files/patch-Input::cdaudio::Makefile.in (props changed) head/audio/x11amp/files/patch-Input::mikmod::Makefile.in (props changed) head/audio/x11amp/files/patch-Input::mpg123::Makefile.in (props changed) head/audio/x11amp/files/patch-Input::wav::Makefile.in (props changed) head/audio/x11amp/files/patch-Output::OSS::Makefile.in (props changed) head/audio/x11amp/files/patch-Output::OSS::OSS.h (props changed) head/audio/x11amp/files/patch-Output::esd::Makefile.in (props changed) head/audio/x11amp/files/patch-configure (props changed) head/audio/x11amp/files/patch-libx11amp::Makefile.in (props changed) head/audio/x11amp/files/patch-libx11amp::configure (props changed) head/audio/x11amp/files/patch-wmx11amp::Makefile.in (props changed) head/audio/x11amp/files/patch-x11amp-input.c (props changed) head/audio/x11amp/files/patch-x11amp::Makefile.in (props changed) head/audio/x11amp/files/patch-x11amp::main.c (props changed) head/audio/xanalyser/files/patch-src-pcm-wav.cc (props changed) head/audio/xanalyser/files/patch-src_Makefile.in (props changed) head/audio/xanalyser/files/patch-src_pcm-cdr.cc (props changed) head/audio/xanalyser/files/patch-src_pcm.cc (props changed) head/audio/xanalyser/files/patch-xanalyser.spec.in (props changed) head/audio/xcdplayer/files/patch-Imakefile (props changed) head/audio/xcdplayer/files/patch-XCdplayer.ad (props changed) head/audio/xcdplayer/files/patch-button__setup.c (props changed) head/audio/xcdplayer/files/patch-cdrom__callb.c (props changed) head/audio/xcdplayer/files/patch-cdrom__globs.h (props changed) head/audio/xcdplayer/files/patch-debug.c (props changed) head/audio/xcdplayer/files/patch-logo__setup.c (props changed) head/audio/xcdplayer/files/patch-main.c (props changed) head/audio/xcdplayer/files/patch-program.c (props changed) head/audio/xcdplayer/files/patch-shuffle.c (props changed) head/audio/xcdplayer/files/patch-top__setup.c (props changed) head/audio/ximp3/files/patch-lib::L3.h (props changed) head/audio/xmcd/files/patch-aa (props changed) head/audio/xmcd/files/patch-ab (props changed) head/audio/xmcd/files/patch-ac (props changed) head/audio/xmcd/files/patch-ad (props changed) head/audio/xmcd/files/patch-af (props changed) head/audio/xmcd/files/patch-ag (props changed) head/audio/xmcd/files/patch-ah (props changed) head/audio/xmcd/files/patch-ai (props changed) head/audio/xmcd/files/patch-aj (props changed) head/audio/xmcd/files/patch-ak (props changed) head/audio/xmix/files/patch-aa (props changed) head/audio/xmix/files/patch-ab (props changed) head/audio/xmixer/files/patch-Xw::Base.c (props changed) head/audio/xmixer/files/patch-af (props changed) head/audio/xmixer/files/patch-scf.c (props changed) head/audio/xmmix/files/patch-Imakefile (props changed) head/audio/xmmix/files/patch-XMmix.ad (props changed) head/audio/xmmix/files/patch-main.c (props changed) head/audio/xmmix/files/patch-mixer.c (props changed) head/audio/xmms-audiofile/files/patch-audiofile.c (props changed) head/audio/xmms-audiofile/files/patch-ltmain.sh (props changed) head/audio/xmms-bonk/files/patch-Makefile (props changed) head/audio/xmms-cdread/files/patch-cdrombsd.h (props changed) head/audio/xmms-cdread/files/patch-playlist.c (props changed) head/audio/xmms-cdread/files/patch-server.c (props changed) head/audio/xmms-crossfade/files/patch-configure (props changed) head/audio/xmms-crystality/files/patch-Makefile (props changed) head/audio/xmms-crystality/files/patch-crystality.c (props changed) head/audio/xmms-crystality/files/patch-crystality.h (props changed) head/audio/xmms-crystality/files/patch-gui.c (props changed) head/audio/xmms-eq/files/patch-configure (props changed) head/audio/xmms-faad/files/patch-mp4_utils.c (props changed) head/audio/xmms-ladspa/files/patch-Makefile (props changed) head/audio/xmms-liveice/files/patch-aa (props changed) head/audio/xmms-mac/files/patch-configure.in (props changed) head/audio/xmms-mailnotify/files/patch-Makefile.in (props changed) head/audio/xmms-mailnotify/files/patch-aa (props changed) head/audio/xmms-mailnotify/files/patch-ab (props changed) head/audio/xmms-mailnotify/files/patch-ac (props changed) head/audio/xmms-midi/files/patch-config.h (props changed) head/audio/xmms-midi/files/patch-mix.c (props changed) head/audio/xmms-midi/files/patch-resample.c (props changed) head/audio/xmms-midi/files/patch-xmms__a.c (props changed) head/audio/xmms-mp3cue/files/patch-configure (props changed) head/audio/xmms-nas/files/patch-Makefile.in (props changed) head/audio/xmms-nas/files/patch-configure (props changed) head/audio/xmms-nas/files/patch-nas.h (props changed) head/audio/xmms-nsf/files/patch-src__nes__audiosys.c (props changed) head/audio/xmms-nsf/files/patch-src__nes__audiosys.h (props changed) head/audio/xmms-nsf/files/patch-src__nes__handler.c (props changed) head/audio/xmms-nsf/files/patch-src__nes__km6502__km6502cd.h (props changed) head/audio/xmms-nsf/files/patch-src__nes__km6502__km6502ot.h (props changed) head/audio/xmms-nsf/files/patch-src__xmms__callbacks.c (props changed) head/audio/xmms-nsf/files/patch-src__xmms__interface.c (props changed) head/audio/xmms-nsf/files/patch-src__xmms__nsf.c (props changed) head/audio/xmms-nsf/files/patch-src__xmms__nsf.h (props changed) head/audio/xmms-nsf/files/patch-src__xmms__nsflib.h (props changed) head/audio/xmms-openspc/files/patch-src_id666.c (props changed) head/audio/xmms-osssurround/files/patch-OSSSurround-0.1_configure.c (props changed) head/audio/xmms-sapplug/files/patch-Makefile (props changed) head/audio/xmms-sexyspc/files/patch-src_SNESAPU_Makefile (props changed) head/audio/xmms-sexyspc/files/patch-src_SNESAPU_SPC700.Asm (props changed) head/audio/xmms-sexyspc/files/patch-src_SNESAPU_SPC700.Inc (props changed) head/audio/xmms-sid/files/patch-ltmain.sh (props changed) head/audio/xmms-timidity/files/patch-xmms-timidity.cpp (props changed) head/audio/xmms-wavpack/files/patch-configure (props changed) head/audio/xmms-wavpack/files/patch-src_libwavpack.cpp (props changed) head/audio/xmms-wavpack/files/patch-src_ui.cpp (props changed) head/audio/xmms-wma/files/patch-Makefile (props changed) head/audio/xmms-wma/files/patch-ffmpeg-strip-wma::Makefile (props changed) head/audio/xmms-wma/files/patch-ffmpeg-strip-wma::asf.c (props changed) head/audio/xmms-wma/files/patch-ffmpeg-strip-wma::mem.c (props changed) head/audio/xmms-wma/files/patch-ffmpeg-strip-wma::wmadec.c (props changed) head/audio/xmms-wma/files/patch-xmms-wma.c (props changed) head/audio/xmms-xf86audio/files/patch-xf86audio.c (props changed) head/audio/xmms2/files/extra-patch-src-clients-vistest-wscript (props changed) head/audio/xmms2/files/patch-patch-src-plugins-musepack-wscript (props changed) head/audio/xmms2/files/patch-src-plugins-airplay-wscript (props changed) head/audio/xmms2/files/patch-src-plugins-file-wscript (props changed) head/audio/xmms2/files/patch-src_plugins_ao_ao.c (props changed) head/audio/xmmsctrl/files/patch-Makefile (props changed) head/audio/xmmsctrl/files/patch-removefile.c (props changed) head/audio/xmradio/files/patch-aa (props changed) head/audio/xmradio/files/patch-ab (props changed) head/audio/xmradio/files/patch-ac (props changed) head/audio/xmradio/files/patch-ad (props changed) head/audio/xoscope/files/patch-gtkdatabox-0.6.0_gtk_Makefile.am (props changed) head/audio/xoscope/files/patch-gtkdatabox-0.6.0_gtk_Makefile.in (props changed) head/audio/xoscope/files/patch-ser_unix.c (props changed) head/audio/xsynth-dssi/files/patch-configure (props changed) head/audio/xwave/files/patch-aa (props changed) head/audio/xwave/files/patch-ab (props changed) head/audio/xwave/files/patch-ac (props changed) head/audio/xwave/files/patch-ad (props changed) head/audio/xwave/files/patch-ae (props changed) head/audio/xwave/files/patch-af (props changed) head/audio/xwave/files/patch-ag (props changed) head/audio/xwave/files/patch-ah (props changed) head/audio/xwave/files/patch-ai (props changed) head/audio/xwave/files/patch-aj (props changed) head/audio/xwave/files/patch-al (props changed) head/audio/xwave/files/patch-ap (props changed) head/audio/xwave/files/patch-aq (props changed) head/audio/xwave/files/patch-ar (props changed) head/audio/xwave/files/patch-as (props changed) head/audio/xwave/files/patch-at (props changed) head/audio/zinf/files/patch-base-Makefile.in (props changed) head/audio/zinf/files/patch-base-include-event.h (props changed) head/audio/zinf/files/patch-base-include-facontext.h (props changed) head/audio/zinf/files/patch-base-include-preferences.h (props changed) head/audio/zinf/files/patch-base-include-queue.h (props changed) head/audio/zinf/files/patch-base-include-swab.h (props changed) head/audio/zinf/files/patch-base-include-thread.h (props changed) head/audio/zinf/files/patch-base-src-properties.cpp (props changed) head/audio/zinf/files/patch-base-src-registrar.cpp (props changed) head/audio/zinf/files/patch-base-src-utility.cpp (props changed) head/audio/zinf/files/patch-base-unix-include-win32impl.h (props changed) head/audio/zinf/files/patch-configure (props changed) head/audio/zinf/files/patch-io-obs-obsinput.cpp (props changed) head/audio/zinf/files/patch-io-src-pullbuffer.cpp (props changed) head/audio/zinf/files/patch-io-wavout-src-wavoutpmo.cpp (props changed) head/audio/zinf/files/patch-lib-xml-include-Parse.h (props changed) head/audio/zinf/files/patch-plm-metadata-vorbis-vorbis.cpp (props changed) head/audio/zinf/files/patch-ui-zinf-include-DialControl.h (props changed) head/audio/zinf/files/patch-ui-zinf-include-PixFontControl.h (props changed) head/audio/zinf/files/patch-ui-zinf-src-ThemeZip.cpp (props changed) head/audio/zinf/files/patch-ui-zinf-tools-Makefile.in (props changed) head/audio/zinf/files/patch-ui-zinf-unix-src-GTKFileSelector.cpp (props changed) head/benchmarks/autobench/files/patch-Makefile (props changed) head/benchmarks/bonnie++/files/patch-bonnie++.cpp (props changed) head/benchmarks/bonnie++/files/patch-port.h.in (props changed) head/benchmarks/bonnie++/files/patch-zcav.8 (props changed) head/benchmarks/bonnie++/files/patch-zcav.cpp (props changed) head/benchmarks/bonnie++/files/patch-zcav_io.cpp (props changed) head/benchmarks/bonnie/files/patch-ab (props changed) head/benchmarks/dbench/files/patch-dbench.c (props changed) head/benchmarks/dbs/files/patch-aa (props changed) head/benchmarks/dbs/files/patch-ab (props changed) head/benchmarks/dbs/files/patch-ac (props changed) head/benchmarks/dbs/files/patch-ad (props changed) head/benchmarks/dbs/files/patch-ae (props changed) head/benchmarks/dbs/files/patch-ag (props changed) head/benchmarks/dbs/files/patch-src__record.h (props changed) head/benchmarks/dkftpbench/files/patch-Makefile.am (props changed) head/benchmarks/dkftpbench/files/patch-Platoon.cc (props changed) head/benchmarks/fhourstones/files/patch-Makefile (props changed) head/benchmarks/fhourstones/files/patch-fhourstones (props changed) head/benchmarks/himenobench/files/patch-himenobmtxp_l.f (props changed) head/benchmarks/himenobench/files/patch-himenobmtxp_m.f (props changed) head/benchmarks/himenobench/files/patch-himenobmtxp_s.f (props changed) head/benchmarks/himenobench/files/patch-himenobmtxp_xl.f (props changed) head/benchmarks/himenobench/files/patch-himenobmtxps.c (props changed) head/benchmarks/httperf/files/patch-httperf.c (props changed) head/benchmarks/imb/files/patch-src-IMB_declare.h (props changed) head/benchmarks/imb/files/patch-src-make_mpich (props changed) head/benchmarks/interbench/files/patch-interbench.c (props changed) head/benchmarks/iorate/files/patch-ior_mach.c (props changed) head/benchmarks/iorate/files/patch-ior_mach.h (props changed) head/benchmarks/iozone/files/patch-libasync.c (props changed) head/benchmarks/iozone/files/patch-libbif.c (props changed) head/benchmarks/iozone21/files/patch-aa (props changed) head/benchmarks/iperf/files/patch-src__Client.cpp (props changed) head/benchmarks/libmicro/files/patch-Makefile (props changed) head/benchmarks/libmicro/files/patch-Makefile.FreeBSD (props changed) head/benchmarks/libmicro/files/patch-Makefile.com (props changed) head/benchmarks/libmicro/files/patch-bench.sh (props changed) head/benchmarks/libmicro/files/patch-cascade_cond.c (props changed) head/benchmarks/libmicro/files/patch-cascade_mutex.c (props changed) head/benchmarks/libmicro/files/patch-getcontext.c (props changed) head/benchmarks/libmicro/files/patch-getrusage.c (props changed) head/benchmarks/libmicro/files/patch-libmicro.c (props changed) head/benchmarks/libmicro/files/patch-longjmp.c (props changed) head/benchmarks/libmicro/files/patch-mmpa.c (props changed) head/benchmarks/libmicro/files/patch-msync.c (props changed) head/benchmarks/libmicro/files/patch-mutex.c (props changed) head/benchmarks/libmicro/files/patch-setcontext.c (props changed) head/benchmarks/libmicro/files/patch-siglongjmp.c (props changed) head/benchmarks/libmicro/files/patch-writev.c (props changed) head/benchmarks/lmbench/files/patch-results__Makefile (props changed) head/benchmarks/lmbench/files/patch-scripts__config-run (props changed) head/benchmarks/lmbench/files/patch-scripts__getpercent (props changed) head/benchmarks/lmbench/files/patch-src__Makefile (props changed) head/benchmarks/nbench/files/patch-aa (props changed) head/benchmarks/nbench/files/patch-ab (props changed) head/benchmarks/nbench/files/patch-ac (props changed) head/benchmarks/nbench/files/patch-ad (props changed) head/benchmarks/netio/files/patch-Makefile (props changed) head/benchmarks/netio/files/patch-netio.c (props changed) head/benchmarks/netperf/files/patch-arr_script (props changed) head/benchmarks/netperf/files/patch-configure (props changed) head/benchmarks/netperf/files/patch-packet_byte_script (props changed) head/benchmarks/netperf/files/patch-sctp_stream_script (props changed) head/benchmarks/netperf/files/patch-snapshot_script (props changed) head/benchmarks/netperf/files/patch-tcp_range_script (props changed) head/benchmarks/netperf/files/patch-tcp_rr_script (props changed) head/benchmarks/netperf/files/patch-tcp_stream_script (props changed) head/benchmarks/netperf/files/patch-udp_rr_script (props changed) head/benchmarks/netperf/files/patch-udp_stream_script (props changed) head/benchmarks/netpipe/files/patch-dox-netpipe.1 (props changed) head/benchmarks/nttcp/files/patch-Makefile (props changed) head/benchmarks/phoronix-test-suite/files/patch-install-sh (props changed) head/benchmarks/postal/files/patch-Makefile.in (props changed) head/benchmarks/postal/files/patch-bhm.cpp (props changed) head/benchmarks/postal/files/patch-configure (props changed) head/benchmarks/randomio/files/patch-Makefile (props changed) head/benchmarks/scimark2c/files/patch-Makefile (props changed) head/benchmarks/scimark2c/files/patch-scimark2.c (props changed) head/benchmarks/siege/files/patch-src-sock.c (props changed) head/benchmarks/super-smack/files/patch-query.cc (props changed) head/benchmarks/ttcp/files/patch-aa (props changed) head/benchmarks/ubench/files/patch-Makefile (props changed) head/benchmarks/ubench/files/patch-timeout-cpubench.c (props changed) head/benchmarks/ubench/files/patch-timeout-diskbench.c (props changed) head/benchmarks/ubench/files/patch-timeout-membench.c (props changed) head/benchmarks/ubench/files/patch-timeout-netbench.c (props changed) head/benchmarks/ubench/files/patch-timeout-ubench.c (props changed) head/benchmarks/unixbench/files/patch-Makefile (props changed) head/benchmarks/unixbench/files/patch-Run (props changed) head/benchmarks/unixbench/files/patch-execl.c (props changed) head/benchmarks/unixbench/files/patch-pgms:cleanup.sh (props changed) head/benchmarks/unixbench/files/patch-pgms:multi.sh (props changed) head/benchmarks/unixbench/files/patch-pgms:tst.sh (props changed) head/benchmarks/unixbench/files/patch-src:dhry_1.c (props changed) head/benchmarks/wrk/files/patch-Makefile (props changed) head/benchmarks/xdd/files/patch-global_time.c (props changed) head/benchmarks/xdd/files/patch-initialization.c (props changed) head/benchmarks/xdd/files/patch-misc.h (props changed) head/benchmarks/xdd/files/patch-parse.c (props changed) head/benchmarks/xdd/files/patch-ticker.c (props changed) head/benchmarks/xdd/files/patch-ticker.h (props changed) head/benchmarks/xdd/files/patch-timeserver.c (props changed) head/benchmarks/xdd/files/patch-xdd.c (props changed) head/benchmarks/xdd/files/patch-xdd.h (props changed) head/biology/babel/files/patch-ab (props changed) head/biology/babel/files/patch-block.c (props changed) head/biology/babel/files/patch-convert.c (props changed) head/biology/babel/files/patch-wrmm3.c (props changed) head/biology/consed/files/patch-misc_mktrace.c (props changed) head/biology/consed/files/patch-scripts_addReads2Consed.perl (props changed) head/biology/consed/files/patch-scripts_determineReadTypes.perl (props changed) head/biology/consed/files/patch-scripts_phredPhrap (props changed) head/biology/emboss/files/patch-emboss.default.template (props changed) head/biology/fasta/files/patch-Makefile (props changed) head/biology/fasta3/files/patch-Makefile.pcom (props changed) head/biology/fluctuate/files/patch-Makefile (props changed) head/biology/garlic/files/patch-Makefile (props changed) head/biology/genpak/files/patch-Makefile (props changed) head/biology/genpak/files/patch-src::Makefile (props changed) head/biology/gmap/files/patch-configure (props changed) head/biology/jalview/files/patch-build.xml (props changed) head/biology/lamarc/files/patch-src__control__defaults.h (props changed) head/biology/libgenome/files/patch-configure (props changed) head/biology/libsbml/files/patch-Makefile.in (props changed) head/biology/mapm3/files/patch-lib-iolib.c (props changed) head/biology/mapm3/files/patch-lib-iolib.h (props changed) head/biology/mapm3/files/patch-lib-makehelp.c (props changed) head/biology/mapm3/files/patch-lib-shell.c (props changed) head/biology/mapm3/files/patch-lib-syscode.c (props changed) head/biology/mapm3/files/patch-lib-system.h (props changed) head/biology/mapm3/files/patch-mapm-chroms.c (props changed) head/biology/mapm3/files/patch-mapm-database.c (props changed) head/biology/mapm3/files/patch-mapm-info.c (props changed) head/biology/mapm3/files/patch-mapm-map_info.h (props changed) head/biology/mapm3/files/patch-mapm-mapm.h (props changed) head/biology/mapm3/files/patch-mapm-maps.c (props changed) head/biology/mapm3/files/patch-mapm-npt_cmds.c (props changed) head/biology/mapm3/files/patch-mapm-print.c (props changed) head/biology/mapm3/files/patch-mapm-reader.c (props changed) head/biology/mapm3/files/patch-mapm-state.c (props changed) head/biology/mapm3/files/patch-mapm-sys_cmds.c (props changed) head/biology/mapm3/files/patch-mapm-two_cmds.c (props changed) head/biology/mapm3/files/patch-quant-qcmds.c (props changed) head/biology/mapm3/files/patch-quant-qraw.c (props changed) head/biology/mapm3/files/patch-sun-xmapmaker (props changed) head/biology/mapm3/files/patch-sun-xqtl (props changed) head/biology/migrate/files/patch-Makefile.in (props changed) head/biology/molden/files/patch-ambfor-makefile (props changed) head/biology/molden/files/patch-surf-makefile (props changed) head/biology/mopac/files/patch-libmopac7.pc.in (props changed) head/biology/mopac/files/patch-src__Makefile.am (props changed) head/biology/mrbayes/files/patch-Makefile (props changed) head/biology/muscle/files/patch-Makefile (props changed) head/biology/muscle/files/patch-globalslinux.cpp (props changed) head/biology/muscle/files/patch-intmath.cpp (props changed) head/biology/njplot/files/patch-makefile (props changed) head/biology/ortep3/files/extra-patch-aa (props changed) head/biology/p5-AcePerl/files/patch-aa (props changed) head/biology/p5-AcePerl/files/patch-ab (props changed) head/biology/p5-AcePerl/files/patch-ac (props changed) head/biology/p5-bioperl/files/patch-Bio-Root-Build.pm (props changed) head/biology/p5-bioperl/files/patch-Build.PL (props changed) head/biology/phd2fasta/files/patch-Makefile (props changed) head/biology/phrap/files/patch-makefile (props changed) head/biology/phred/files/patch-Makefile (props changed) head/biology/povchem/files/patch-ac (props changed) head/biology/protomol/files/patch-framework-frontend_OutputDihedrals.cpp (props changed) head/biology/psi88/files/patch-ba (props changed) head/biology/psi88/files/patch-bb (props changed) head/biology/psi88/files/patch-psi2.f (props changed) head/biology/pymol/files/patch-setup.py (props changed) head/biology/rasmol/files/patch-aa (props changed) head/biology/recombine/files/patch-Makefile (props changed) head/biology/seqan/files/patch-cmake-CMakeLists.txt (props changed) head/biology/seqan/files/patch-cmake-apps-CMakeLists.txt (props changed) head/biology/seqio/files/patch-Makefile (props changed) head/biology/seqio/files/patch-fmtseq (props changed) head/biology/seqio/files/patch-grepseq (props changed) head/biology/seqio/files/patch-seqio (props changed) head/biology/ssaha/files/patch-GlobalDefinitions.cpp (props changed) head/biology/ssaha/files/patch-GlobalDefinitions.h (props changed) head/biology/ssaha/files/patch-HashTable.cpp (props changed) head/biology/ssaha/files/patch-HashTableGeneric.cpp (props changed) head/biology/ssaha/files/patch-HashTablePacked.cpp (props changed) head/biology/ssaha/files/patch-HashTablePacked.h (props changed) head/biology/ssaha/files/patch-HashTableTranslated.cpp (props changed) head/biology/ssaha/files/patch-MatchAligner.cpp (props changed) head/biology/ssaha/files/patch-MatchAligner.h (props changed) head/biology/ssaha/files/patch-MatchStore.h (props changed) head/biology/ssaha/files/patch-MatchStoreGapped.h (props changed) head/biology/ssaha/files/patch-MatchStoreUngapped.h (props changed) head/biology/ssaha/files/patch-QueryManager.cpp (props changed) head/biology/ssaha/files/patch-QueryManager.h (props changed) head/biology/ssaha/files/patch-README (props changed) head/biology/ssaha/files/patch-SSAHAMain.cpp (props changed) head/biology/ssaha/files/patch-SSAHAMain.h (props changed) head/biology/ssaha/files/patch-SequenceEncoder.cpp (props changed) head/biology/ssaha/files/patch-SequenceReader.cpp (props changed) head/biology/ssaha/files/patch-SequenceReader.h (props changed) head/biology/ssaha/files/patch-SequenceReaderFasta.cpp (props changed) head/biology/ssaha/files/patch-SequenceReaderFasta.h (props changed) head/biology/ssaha/files/patch-SequenceReaderFilter.h (props changed) head/biology/ssaha/files/patch-SequenceReaderLocal.cpp (props changed) head/biology/ssaha/files/patch-SequenceReaderMulti.cpp (props changed) head/biology/ssaha/files/patch-SequenceReaderMulti.h (props changed) head/biology/ssaha/files/patch-SequenceReaderString.h (props changed) head/biology/ssaha/files/patch-makefile (props changed) head/biology/ssaha/files/patch-testHashTableNoOverlap.cpp (props changed) head/biology/ssaha/files/patch-testQueryManager.cpp (props changed) head/biology/ssaha/files/patch-testSequenceReaderFasta.cpp (props changed) head/biology/velvet/files/patch-Makefile (props changed) head/cad/adms/files/patch-configure (props changed) head/cad/alliance/files/patch-all_src_XMX_motif.c (props changed) head/cad/alliance/files/patch-distrib-etc-Makefile.am (props changed) head/cad/alliance/files/patch-exp::src::ht.c (props changed) head/cad/alliance/files/patch-sea::src::sea.sh (props changed) head/cad/alliance/files/patch-sea::src::seplace.sh (props changed) head/cad/alliance/files/patch-sea::src::seroute.sh (props changed) head/cad/alliance/files/patch-xgra-src-XSB_parse.c (props changed) head/cad/astk-serveur/files.client/patch-bin_astk (props changed) head/cad/astk-serveur/files.client/patch-bin_bsf (props changed) head/cad/astk-serveur/files.client/patch-lib_init.tcl (props changed) head/cad/astk-serveur/files.client/patch-lib_tkselecteur.tcl (props changed) head/cad/astk-serveur/files/patch-asrun_common_sysutils.py (props changed) head/cad/astk-serveur/files/patch-asrun_installation.py (props changed) head/cad/astk-serveur/files/patch-asrun_system.py (props changed) head/cad/astk-serveur/files/patch-asrun_system_command.py (props changed) head/cad/astk-serveur/files/patch-bin_as_run (props changed) head/cad/astk-serveur/files/patch-bin_parallel_cp (props changed) head/cad/astk-serveur/files/patch-etc_asrun (props changed) head/cad/astk-serveur/files/patch-etc_profile.csh (props changed) head/cad/astk-serveur/files/patch-etc_profile.sh (props changed) head/cad/basicdsp/files/patch-Makefile (props changed) head/cad/calculix/files/patch-ccx_VER+src+CalculiX.h (props changed) head/cad/calculix/files/patch-ccx_VER+src+Makefile (props changed) head/cad/calculix/files/patch-cgx_VER+src+Makefile (props changed) head/cad/calculix/files/patch-cgx_VER+src+cgx.h (props changed) head/cad/calculix/files/patch-libSNL+makefile (props changed) head/cad/chipmunk/files/patch-ab (props changed) head/cad/chipmunk/files/patch-ac (props changed) head/cad/chipmunk/files/patch-ad (props changed) head/cad/chipmunk/files/patch-ae (props changed) head/cad/chipmunk/files/patch-af (props changed) head/cad/chipmunk/files/patch-ag (props changed) head/cad/chipmunk/files/patch-ah (props changed) head/cad/chipmunk/files/patch-ai (props changed) head/cad/chipmunk/files/patch-aj (props changed) head/cad/chipmunk/files/patch-ak (props changed) head/cad/chipmunk/files/patch-al (props changed) head/cad/chipmunk/files/patch-am (props changed) head/cad/chipmunk/files/patch-an (props changed) head/cad/chipmunk/files/patch-ao (props changed) head/cad/chipmunk/files/patch-ap (props changed) head/cad/chipmunk/files/patch-aq (props changed) head/cad/chipmunk/files/patch-ar (props changed) head/cad/chipmunk/files/patch-as (props changed) head/cad/chipmunk/files/patch-at (props changed) head/cad/chipmunk/files/patch-au (props changed) head/cad/chipmunk/files/patch-aw (props changed) head/cad/chipmunk/files/patch-ax (props changed) head/cad/chipmunk/files/patch-ay (props changed) head/cad/chipmunk/files/patch-az (props changed) head/cad/chipmunk/files/patch-ba (props changed) head/cad/chipmunk/files/patch-bb (props changed) head/cad/chipmunk/files/patch-netcmp-main.c (props changed) head/cad/cider/files/patch-aa (props changed) head/cad/cider/files/patch-ab (props changed) head/cad/cider/files/patch-ac (props changed) head/cad/cider/files/patch-ad (props changed) head/cad/cider/files/patch-aj (props changed) head/cad/cider/files/patch-ak (props changed) head/cad/cider/files/patch-al (props changed) head/cad/cider/files/patch-am (props changed) head/cad/cider/files/patch-an (props changed) head/cad/cider/files/patch-ao (props changed) head/cad/cider/files/patch-ap (props changed) head/cad/cider/files/patch-aq (props changed) head/cad/cider/files/patch-ar (props changed) head/cad/cider/files/patch-as (props changed) head/cad/cider/files/patch-at (props changed) head/cad/cider/files/patch-ba (props changed) head/cad/cider/files/patch-bb (props changed) head/cad/cider/files/patch-bc (props changed) head/cad/cider/files/patch-be (props changed) head/cad/cider/files/patch-bf (props changed) head/cad/cider/files/patch-bg (props changed) head/cad/cider/files/patch-bj (props changed) head/cad/cider/files/patch-bk (props changed) head/cad/cider/files/patch-bl (props changed) head/cad/cider/files/patch-bm (props changed) head/cad/cider/files/patch-cider-common-src-lib-input-meshset.c (props changed) head/cad/cider/files/patch-spice-common-src-lib-cp-complete.c (props changed) head/cad/cider/files/patch-spice-common-src-lib-fte-graf.c (props changed) head/cad/cider/files/patch-spice-common-src-lib-fte-grid.c (props changed) head/cad/cider/files/patch-spice-common-src-lib-fte-x11.c (props changed) head/cad/cider/files/patch-spice-common-src-lib-hlp-readhelp.c (props changed) head/cad/cider/files/patch-spice-common-src-lib-mfb-mfbcaps.c (props changed) head/cad/electric/files/patch-Makefile.in (props changed) head/cad/electric/files/patch-src_graph_graphqtdlg.h (props changed) head/cad/electric/files/patch-src_graph_graphunixx11.c (props changed) head/cad/electric/files/patch-src_include_global.h (props changed) head/cad/findhier/files/patch-Makefile (props changed) head/cad/findhier/files/patch-findhier.h (props changed) head/cad/findhier/files/patch-fnames.c (props changed) head/cad/findhier/files/patch-magic.c (props changed) head/cad/findhier/files/patch-menu.c (props changed) head/cad/findhier/files/patch-names.c (props changed) head/cad/findhier/files/patch-reverse.c (props changed) head/cad/freehdl/files/patch-freehdl_kernel-db.hh (props changed) head/cad/freehdl/files/patch-freehdl_kernel-sig-info.hh (props changed) head/cad/freehdl/files/patch-freehdl_kernel-util.hh (props changed) head/cad/freehdl/files/patch-freehdl_std-vhdl-types.hh (props changed) head/cad/gdsreader/files/patch-Makefile (props changed) head/cad/gdt/files/patch-Examples-gdsinfo (props changed) head/cad/gdt/files/patch-Examples-scalegds (props changed) head/cad/gdt/files/patch-gdsStream.h (props changed) head/cad/geda-gattrib/files/patch-icon-theme-installer (props changed) head/cad/geda-gattrib/files/patch-src_gtkitementry_2_2.c (props changed) head/cad/geda-gschem/files/patch-icon-theme-installer (props changed) head/cad/geda-gschem/files/patch-src_x_menus.c (props changed) head/cad/gmsh/files/patch-CMakeLists.txt (props changed) head/cad/gmsh/files/patch-Geo__CustomContainer.h (props changed) head/cad/gplcver/files/patch-src-v.h (props changed) head/cad/gplcver/files/patch-src-v_dbg2.c (props changed) head/cad/gplcver/files/patch-src-v_ex2.c (props changed) head/cad/gplcver/files/patch-src-v_ms.c (props changed) head/cad/gplcver/files/patch-src-v_src3.c (props changed) head/cad/gtkwave/files/patch-Makefile.in (props changed) head/cad/gtkwave/files/patch-configure (props changed) head/cad/gtkwave/files/patch-doc__Makefile.in (props changed) head/cad/gtkwave/files/patch-examples__Makefile.in (props changed) head/cad/iverilog/files/patch-load_module.cc (props changed) head/cad/jspice3/files/patch-build (props changed) head/cad/jspice3/files/patch-conf+unixconf+mkheader.0 (props changed) head/cad/jspice3/files/patch-src+bin+help.c (props changed) head/cad/jspice3/files/patch-src+lib+dev+ltra+ltramisc.c (props changed) head/cad/jspice3/files/patch-src+lib+fte+misccoms.c (props changed) head/cad/jspice3/files/patch-src+lib+plot+x11.c (props changed) head/cad/jspice3/files/patch-src_lib_fte_resource.c (props changed) head/cad/kicad/files/patch-CMakeModules_FindwxWidgets.cmake (props changed) head/cad/kicad/files/patch-CMakeModules_config.h.cmake (props changed) head/cad/klayout/files/patch-build.sh (props changed) head/cad/klayout/files/patch-config-Makefile.conf (props changed) head/cad/klayout/files/patch-src-Makefile.rules (props changed) head/cad/layouteditor/files/patch-src-src.pro (props changed) head/cad/layouteditor/files/patch-src__fileformats__oasis.cpp (props changed) head/cad/libgeda/files/patch-icon-theme-installer (props changed) head/cad/magic/files/patch-Makefile (props changed) head/cad/magic/files/patch-commands__Makefile (props changed) head/cad/magic/files/patch-textio__textioInt.h (props changed) head/cad/magic/files/patch-textio__txInput.c (props changed) head/cad/magic/files/patch-utils__magsgtty.h (props changed) head/cad/mars/files/patch-01 (props changed) head/cad/mars/files/patch-02 (props changed) head/cad/mars/files/patch-03 (props changed) head/cad/mars/files/patch-04 (props changed) head/cad/mars/files/patch-05 (props changed) head/cad/mars/files/patch-06 (props changed) head/cad/mars/files/patch-07 (props changed) head/cad/mars/files/patch-08 (props changed) head/cad/mars/files/patch-09 (props changed) head/cad/mars/files/patch-10 (props changed) head/cad/mars/files/patch-XMotif_edit.c (props changed) head/cad/mars/files/patch-XMotif_info_w.c (props changed) head/cad/mars/files/patch-XMotif_io.c (props changed) head/cad/mars/files/patch-XMotif_lines.c (props changed) head/cad/mars/files/patch-XMotif_main_w.c (props changed) head/cad/mars/files/patch-XMotif_meters.c (props changed) head/cad/mars/files/patch-XMotif_mfile.c (props changed) head/cad/mars/files/patch-XMotif_options.c (props changed) head/cad/mars/files/patch-XMotif_param_w.c (props changed) head/cad/mars/files/patch-XMotif_view.c (props changed) head/cad/mars/files/patch-XMotif_xinit.c (props changed) head/cad/mars/files/patch-aa (props changed) head/cad/mars/files/patch-comps_ftp.c (props changed) head/cad/mars/files/patch-comps_node.c (props changed) head/cad/mars/files/patch-comps_telnet.c (props changed) head/cad/mars/files/patch-include_lcostfcn.h (props changed) head/cad/mars/files/patch-include_perf.h (props changed) head/cad/mars/files/patch-include_sim.h (props changed) head/cad/mars/files/patch-include_stopper.h (props changed) head/cad/mars/files/patch-sim_compfiles.c (props changed) head/cad/mars/files/patch-sim_event.c (props changed) head/cad/mars/files/patch-sim_file.c (props changed) head/cad/mars/files/patch-sim_mempool.c (props changed) head/cad/mars/files/patch-sim_q.c (props changed) head/cad/meshdev/files/patch-build_Makefile.release.gcc (props changed) head/cad/meshdev/files/patch-src_FileSTL.cpp (props changed) head/cad/meshdev/files/patch-src_FileSTL.h (props changed) head/cad/meshdev/files/patch-src_Mesh.cpp (props changed) head/cad/meshdev/files/patch-src_Mesh.h (props changed) head/cad/netgen/files/patch-libsrc_occ_Makefile.am (props changed) head/cad/netgen/files/patch-ng_Makefile.am (props changed) head/cad/netgen/files/patch-ng_Makefile.in (props changed) head/cad/netgen/files/patch-ng_ng.tcl (props changed) head/cad/netgen/files/patch-ng_ngappinit.cpp (props changed) head/cad/openscad/files/patch-aa (props changed) head/cad/pcb/files/patch-Makefile.in (props changed) head/cad/pcb/files/patch-configure.ac (props changed) head/cad/pcb/files/patch-doc-Makefile.in (props changed) head/cad/pcb/files/patch-src-main.c (props changed) head/cad/pythoncad/files/patch-PythonCAD_Generic_preferences.py (props changed) head/cad/pythoncad/files/patch-PythonCAD_Interface_Gtk_gtkimage.py (props changed) head/cad/qfsm/files/patch-CMakeLists.txt (props changed) head/cad/qmls/files/patch-mccluskey.cpp (props changed) head/cad/qmls/files/patch-quinegroup.cpp (props changed) head/cad/salome-geom/files/patch-Makefile.am (props changed) head/cad/salome-geom/files/patch-admlocal_unix_config_files_Makefile.am (props changed) head/cad/salome-geom/files/patch-bin_Makefile.am (props changed) head/cad/salome-geom/files/patch-check_GEOM.m4 (props changed) head/cad/salome-geom/files/patch-configure.ac (props changed) head/cad/salome-gui/files/patch-GUI_CASCatch_CatchSignals.cxx (props changed) head/cad/salome-gui/files/patch-GUI_DDS_DDS_DicGroup.cxx (props changed) head/cad/salome-gui/files/patch-GUI_DDS_DDS_DicItem.cxx (props changed) head/cad/salome-gui/files/patch-GUI_LightApp_Driver.cxx (props changed) head/cad/salome-gui/files/patch-GUI_Makefile.am (props changed) head/cad/salome-gui/files/patch-GUI_QDS_QDS_Datum.cxx (props changed) head/cad/salome-gui/files/patch-GUI_QxGraph_CanvasView.cxx (props changed) head/cad/salome-gui/files/patch-GUI_ResourceExporter.cxx (props changed) head/cad/salome-gui/files/patch-GUI_SUIT_ResourceMgr.cxx (props changed) head/cad/salome-gui/files/patch-GUI_VTKViewer_ConvexTool.cxx (props changed) head/cad/salome-gui/files/patch-GUI_bin_Makefile.am (props changed) head/cad/salome-gui/files/patch-GUI_check_msg2qm.m4 (props changed) head/cad/salome-gui/files/patch-GUI_check_pyqt.m4 (props changed) head/cad/salome-gui/files/patch-GUI_check_qt.m4 (props changed) head/cad/salome-gui/files/patch-GUI_check_sip.m4 (props changed) head/cad/salome-gui/files/patch-GUI_check_vtk.m4 (props changed) head/cad/salome-jobmanager/files/patch-configure.ac (props changed) head/cad/salome-kernel/files/patch-KERNEL-MPIObject_i.hxx (props changed) head/cad/salome-kernel/files/patch-KERNEL-Makefile.am (props changed) head/cad/salome-kernel/files/patch-KERNEL-ReceiverFactory.cxx (props changed) head/cad/salome-kernel/files/patch-KERNEL-Receivers.cxx (props changed) head/cad/salome-kernel/files/patch-KERNEL-ac_cxx_depend.flag.m4 (props changed) head/cad/salome-kernel/files/patch-KERNEL-bin_Makefile.am (props changed) head/cad/salome-kernel/files/patch-KERNEL-configure.ac (props changed) head/cad/salome-kernel/files/patch-KERNEL-fortoc.h (props changed) head/cad/salome-kernel/files/patch-KERNEL-salome_adm_check_cas.m4 (props changed) head/cad/salome-kernel/files/patch-KERNEL-salome_adm_check_html.m4 (props changed) head/cad/salome-kernel/files/patch-SALOME_Comm_i.cxx (props changed) head/cad/salome-kernel/files/patch-salome_adm__unix__config_files__check_mpich.m4 (props changed) head/cad/salome-light/files/patch-bin_Makefile.am (props changed) head/cad/salome-med/files/patch-MEDMEM_MEDMEM_GibiMeshDriver.cxx (props changed) head/cad/salome-med/files/patch-MEDSPLITTER_SCOTCHGraph.cxx (props changed) head/cad/salome-med/files/patch-MED_MEDMEM_define.hxx (props changed) head/cad/salome-med/files/patch-MED_MED_Common.hxx (props changed) head/cad/salome-med/files/patch-MED_MEDunvCr.cxx (props changed) head/cad/salome-med/files/patch-MED_Makefile.am (props changed) head/cad/salome-med/files/patch-MED_V2_2_Wrapper.cxx (props changed) head/cad/salome-med/files/patch-MED_check_Med2.m4 (props changed) head/cad/salome-med/files/patch-MED_check_metis.m4 (props changed) head/cad/salome-med/files/patch-MED_check_scotch.m4 (props changed) head/cad/salome-med/files/patch-MED_med_outils.hxx (props changed) head/cad/salome-med/files/patch-MULTIPR_DecimationAccel.cxx (props changed) head/cad/salome-med/files/patch-MULTIPR_Elements.hxx (props changed) head/cad/salome-med/files/patch-MULTIPR_Field.cxx (props changed) head/cad/salome-med/files/patch-MULTIPR_Mesh.cxx (props changed) head/cad/salome-med/files/patch-MULTIPR_MeshDis.cxx (props changed) head/cad/salome-med/files/patch-MULTIPR_Nodes.cxx (props changed) head/cad/salome-med/files/patch-MULTIPR_Obj.cxx (props changed) head/cad/salome-med/files/patch-MULTIPR_PointOfField.hxx (props changed) head/cad/salome-med/files/patch-MULTIPR_Profil.cxx (props changed) head/cad/salome-med/files/patch-MULTIPR_Profil.hxx (props changed) head/cad/salome-med/files/patch-ParaMEDMEM_ElementLocator.hxx (props changed) head/cad/salome-med/files/patch-ParaMEDMEM_MPIAccessDEC.hxx (props changed) head/cad/salome-med/files/patch-bin_Makefile.am (props changed) head/cad/salome-med/files/patch-check_Med.m4 (props changed) head/cad/salome-med/files/patch-test_grid.cxx (props changed) head/cad/salome-multipr/files/patch-bin_Makefile.am (props changed) head/cad/salome-multipr/files/patch-configure.ac (props changed) head/cad/salome-netgenplugin/files/patch-check_NETGEN.m4 (props changed) head/cad/salome-netgenplugin/files/patch-check_NETGENPLUGIN.m4 (props changed) head/cad/salome-randomizer/files/patch-bin_Makefile.am (props changed) head/cad/salome-randomizer/files/patch-check_RANDOMIZER.m4 (props changed) head/cad/salome-sierpinsky/files/patch-bin_Makefile.am (props changed) head/cad/salome-smesh/files/patch-DriverMED_Makefile.am (props changed) head/cad/salome-smesh/files/patch-DriverSTL_R_SMDS_Mesh.cxx (props changed) head/cad/salome-smesh/files/patch-Makefile.am (props changed) head/cad/salome-smesh/files/patch-SMDS_MemoryLimit.cxx (props changed) head/cad/salome-smesh/files/patch-SMESH_Makefile.am (props changed) head/cad/salome-smesh/files/patch-SMESH_Mesh_i.cxx (props changed) head/cad/salome-smesh/files/patch-SMESH_SMDS_Mesh.cxx (props changed) head/cad/salome-smesh/files/patch-bin_Makefile.am (props changed) head/cad/salome-smesh/files/patch-check_Platform.m4 (props changed) head/cad/salome-smesh/files/patch-configure.ac (props changed) head/cad/salome-visu/files/patch-Makefile.am (props changed) head/cad/salome-visu/files/patch-VisuGUI.h (props changed) head/cad/salome-visu/files/patch-VisuGUI_DeformedShapeAndScalarMapDlg.h (props changed) head/cad/salome-visu/files/patch-bin_Makefile.am (props changed) head/cad/salome-visu/files/patch-check_VISU.m4 (props changed) head/cad/salome-yacs/files/patch-GenericGui.cxx (props changed) head/cad/salome-yacs/files/patch-Makefile.am (props changed) head/cad/salome-yacs/files/patch-adm_unix_check_htmlgen.m4 (props changed) head/cad/salome-yacs/files/patch-adm_unix_config_check_sphinx.m4 (props changed) head/cad/salome-yacs/files/patch-adm_unix_make_begin.am (props changed) head/cad/salome-yacs/files/patch-bases_Test_Makefile.am (props changed) head/cad/salome-yacs/files/patch-configure.in.base (props changed) head/cad/salome-yacs/files/patch-engine_Dispatcher.hxx (props changed) head/cad/salome-yacs/files/patch-engine_Makefile.am (props changed) head/cad/salome-yacs/files/patch-engine_Test_Makefile.am (props changed) head/cad/salome-yacs/files/patch-i2_check_qt4.m4 (props changed) head/cad/salome-yacs/files/patch-runtime_DistributedPythonNode.cxx (props changed) head/cad/salome-yacs/files/patch-runtime_Test_Makefile.am (props changed) head/cad/salome-yacs/files/patch-src_bases_YacsTrace.cxx (props changed) head/cad/salome-yacs/files/patch-src_engine_swig_Makefile.am (props changed) head/cad/salome-yacs/files/patch-src_runtime_SalomeOptimizerLoop.cxx (props changed) head/cad/salome-yacs/files/patch-src_runtime_swig_Makefile.am (props changed) head/cad/salome-yacs/files/patch-src_salomegui_swig_Makefile.am (props changed) head/cad/salome-yacs/files/patch-src_yacsloader_swig_Makefile.am (props changed) head/cad/salome-yacs/files/patch-thread.m4 (props changed) head/cad/salome-yacs/files/patch-yacsloader_Test_Makefile.am (props changed) head/cad/scotch/files/patch-src_Make.inc_Makefile.inc.x86-64_pc_freebsd (props changed) head/cad/scv/files/patch-Makefile.in (props changed) head/cad/scv/files/patch-configure (props changed) head/cad/scv/files/patch-scripts-Makefile.in (props changed) head/cad/scv/files/patch-scripts-copyExamples.sh (props changed) head/cad/scv/files/patch-scripts-copyFiles.sh.in (props changed) head/cad/scv/files/patch-src-scv-scv_init_seed.cpp (props changed) head/cad/spice/files/patch-conf_defaults (props changed) head/cad/spice/files/patch-level1 (props changed) head/cad/spice/files/patch-level2 (props changed) head/cad/spice/files/patch-psmodel (props changed) head/cad/spice/files/patch-src_bin_help.c (props changed) head/cad/spice/files/patch-src_bin_main.c (props changed) head/cad/spice/files/patch-src_bin_procmod.c (props changed) head/cad/spice/files/patch-src_bin_sconvert_c (props changed) head/cad/spice/files/patch-src_include_cpstd_h (props changed) head/cad/spice/files/patch-src_include_fteext.h (props changed) head/cad/spice/files/patch-src_include_misc_h (props changed) head/cad/spice/files/patch-src_include_os_bsd_h (props changed) head/cad/spice/files/patch-src_include_patchlev_h (props changed) head/cad/spice/files/patch-src_lib_ckt_dctrcurv_c (props changed) head/cad/spice/files/patch-src_lib_ckt_noisean_c (props changed) head/cad/spice/files/patch-src_lib_ckt_traninit_c (props changed) head/cad/spice/files/patch-src_lib_cp_complete.c (props changed) head/cad/spice/files/patch-src_lib_cp_lexical.c (props changed) head/cad/spice/files/patch-src_lib_cp_unixcom.c (props changed) head/cad/spice/files/patch-src_lib_dev_bjt_makedefs (props changed) head/cad/spice/files/patch-src_lib_dev_bsim1_bimpar_c (props changed) head/cad/spice/files/patch-src_lib_dev_mos6_mos6load_c (props changed) head/cad/spice/files/patch-src_lib_fte_aspice_c (props changed) head/cad/spice/files/patch-src_lib_fte_cpitf_c (props changed) head/cad/spice/files/patch-src_lib_fte_device_c (props changed) head/cad/spice/files/patch-src_lib_fte_dimens_c (props changed) head/cad/spice/files/patch-src_lib_fte_doplot_c (props changed) head/cad/spice/files/patch-src_lib_fte_dotcards.c (props changed) head/cad/spice/files/patch-src_lib_fte_graf_c (props changed) head/cad/spice/files/patch-src_lib_fte_grid_c (props changed) head/cad/spice/files/patch-src_lib_fte_inp_c (props changed) head/cad/spice/files/patch-src_lib_fte_misccoms_c (props changed) head/cad/spice/files/patch-src_lib_fte_outitf_c (props changed) head/cad/spice/files/patch-src_lib_fte_postcoms_c (props changed) head/cad/spice/files/patch-src_lib_fte_resource_c (props changed) head/cad/spice/files/patch-src_lib_fte_subckt_c (props changed) head/cad/spice/files/patch-src_lib_fte_vectors_c (props changed) head/cad/spice/files/patch-src_lib_fte_where_c (props changed) head/cad/spice/files/patch-src_lib_fte_x11_c (props changed) head/cad/spice/files/patch-src_lib_hlp_readhelp_c (props changed) head/cad/spice/files/patch-src_lib_inp_inpfindl_c (props changed) head/cad/spice/files/patch-src_lib_inp_inpgtok_c (props changed) head/cad/spice/files/patch-src_lib_inp_inpptree_c (props changed) head/cad/spice/files/patch-src_lib_mfb_mfbcaps.c (props changed) head/cad/spice/files/patch-src_lib_mfb_mfbgnc_c (props changed) head/cad/spice/files/patch-src_lib_misc_string.c (props changed) head/cad/spice/files/patch-util_build (props changed) head/cad/systemc/files/patch-configure (props changed) head/cad/tochnog/files/patch--test (props changed) head/cad/tochnog/files/patch--tools+aba2tn.c (props changed) head/cad/tochnog/files/patch-so_petsc.c (props changed) head/cad/tochnog/files/patch-tn.cc (props changed) head/cad/tochnog/files/patch-tnhypo.h (props changed) head/cad/tochnog/files/patch-tnsuplu.h (props changed) head/cad/tochnog/files/patch-tochnog.h (props changed) head/cad/xcircuit/files/patch-Makefile.in (props changed) head/cad/xcircuit/files/patch-svg.c (props changed) head/cad/z88/files/patch-cb88o.c (props changed) head/cad/z88/files/patch-dyn88v.c (props changed) head/cad/z88/files/patch-z88.fcd (props changed) head/cad/z88/files/patch-z88.mk.gtk.gcc32 (props changed) head/cad/z88/files/patch-z88.mk.kernel.gcc32 (props changed) head/cad/z88/files/patch-z88.mk.other.gcc32 (props changed) head/chinese/autoconvert/files/patch-Makefile (props changed) head/chinese/autoconvert/files/patch-hzconvert-Makefile (props changed) head/chinese/bg5pdf/files/patch-gbpdf (props changed) head/chinese/bg5ps/files/patch-aa (props changed) head/chinese/bg5ps/files/patch-ab (props changed) head/chinese/bg5ps/files/patch-ac (props changed) head/chinese/bg5ps/files/patch-ae (props changed) head/chinese/big5con/files/patch-src-fnld.c (props changed) head/chinese/big5con/files/patch-src-vc.c (props changed) head/chinese/big5width/files/patch-zh_TW.UTF-8 (props changed) head/chinese/bitchx/files/patch-include::config.h (props changed) head/chinese/bitchx/files/patch-source::input.c (props changed) head/chinese/bitchx/files/patch-source::screen.c (props changed) head/chinese/c2t/files/patch-01 (props changed) head/chinese/c2t/files/patch-02 (props changed) head/chinese/cce/files/extra-patch-src::Makefile.am (props changed) head/chinese/cce/files/patch-inputs::all::Makefile.in (props changed) head/chinese/cce/files/patch-src::cce.cfg (props changed) head/chinese/cce/files/patch-src::term::term.c (props changed) head/chinese/celvis/files/patch-aa (props changed) head/chinese/celvis/files/patch-ab (props changed) head/chinese/celvis/files/patch-ac (props changed) head/chinese/celvis/files/patch-ad (props changed) head/chinese/celvis/files/patch-ae (props changed) head/chinese/celvis/files/patch-af (props changed) head/chinese/celvis/files/patch-ag (props changed) head/chinese/celvis/files/patch-curses.c (props changed) head/chinese/celvis/files/patch-cut.c (props changed) head/chinese/cless/files/patch-aa (props changed) head/chinese/cless/files/patch-ab (props changed) head/chinese/cless/files/patch-ac (props changed) head/chinese/cless/files/patch-ad (props changed) head/chinese/cmexfonts/files/patch-aa (props changed) head/chinese/cmexfonts/files/patch-ab (props changed) head/chinese/cmexfonts/files/patch-ac (props changed) head/chinese/enscript/files/patch-aa (props changed) head/chinese/enscript/files/patch-ab (props changed) head/chinese/eterm/files/extra-patch-configure (props changed) head/chinese/fcitx-configtool/files/patch-gtk3_CMakeLists.txt (props changed) head/chinese/fcitx-configtool/files/patch-gtk_CMakeLists.txt (props changed) head/chinese/fcitx-googlepinyin/files/patch-src_eim.cpp (props changed) head/chinese/fcitx/files/patch-CMakeLists.txt (props changed) head/chinese/fcitx/files/patch-doc_man_CMakeLists.txt (props changed) head/chinese/fcitx/files/patch-src_lib_fcitx-config_CMakeLists.txt (props changed) head/chinese/fcitx/files/patch-src_lib_fcitx-gclient_CMakeLists.txt (props changed) head/chinese/fcitx/files/patch-src_lib_fcitx-utils_CMakeLists.txt (props changed) head/chinese/fcitx/files/patch-src_lib_fcitx_CMakeLists.txt (props changed) head/chinese/fortune/files/patch-src-fortune-zh (props changed) head/chinese/fqterm/files/patch-CMakeLists.txt.linux (props changed) head/chinese/fqterm/files/patch-cmake_FindQt4.cmake (props changed) head/chinese/fqterm/files/patch-src_ui-fqterm_tool_button.h (props changed) head/chinese/fqterm/files/patch-src_ui-popwidget.cpp (props changed) head/chinese/gb2jis/files/patch-Makefile (props changed) head/chinese/gb2ps/files/patch-01 (props changed) head/chinese/gcin/files/patch-Makefile (props changed) head/chinese/gcin/files/patch-modules_Makefile (props changed) head/chinese/gcin/files/patch-qt4-im-Makefile (props changed) head/chinese/hanzim/files/patch-Makefile (props changed) head/chinese/hanzim/files/patch-hanzim.c (props changed) head/chinese/hc/files/patch-01 (props changed) head/chinese/hc/files/patch-hc.c (props changed) head/chinese/hc/files/patch-hclib.c (props changed) head/chinese/hc/files/patch-hclib.h (props changed) head/chinese/hztty/files/patch-aa (props changed) head/chinese/hztty/files/patch-ab (props changed) head/chinese/hztty/files/patch-main.c (props changed) head/chinese/irssi/files/patch-irssi.conf (props changed) head/chinese/irssi/files/patch-utf8_break (props changed) head/chinese/jis2gb/files/patch-Makefile (props changed) head/chinese/kcfonts/files/patch-aa (props changed) head/chinese/kcfonts/files/patch-ab (props changed) head/chinese/kcfonts/files/patch-ac (props changed) head/chinese/kcfonts/files/patch-ad (props changed) head/chinese/kcfonts/files/patch-kca2et.c (props changed) head/chinese/kon2/files/patch-kon.cfg.FreeBSD (props changed) head/chinese/kon2/files/patch-lib::coding.c (props changed) head/chinese/libgooglepinyin/files/patch-data_CMakeLists.txt (props changed) head/chinese/libpinyin/files/patch-configure (props changed) head/chinese/libpinyin/files/patch-src_pinyin_internal.h (props changed) head/chinese/libtabe/files/patch-configure (props changed) head/chinese/libtabe/files/patch-src::tabe_tsidbint.c (props changed) head/chinese/libtabe/files/patch-src::tabe_tsiyindbint.c (props changed) head/chinese/libtabe/files/patch-util-tsipackdb.in (props changed) head/chinese/lunar/files/patch-01 (props changed) head/chinese/lunar/files/patch-02 (props changed) head/chinese/lunar/files/patch-03 (props changed) head/chinese/lunar/files/patch-04 (props changed) head/chinese/miniChinput/files/patch-keyboard.c (props changed) head/chinese/muni/files/patch-Makefile (props changed) head/chinese/muni/files/patch-m7773.c (props changed) head/chinese/muni/files/patch-muni.c (props changed) head/chinese/mutt/files/patch-zh-mutt (props changed) head/chinese/opencc/files/patch-CMakeLists.txt (props changed) head/chinese/opencc/files/patch-doc_CMakeLists.txt (props changed) head/chinese/opencc/files/patch-src_tools_CMakeLists.txt (props changed) head/chinese/oxim/files/patch-Makefile.in (props changed) head/chinese/oxim/files/patch-configure (props changed) head/chinese/oxim/files/patch-gtk-immodule-gtkintl.h (props changed) head/chinese/pcmanx/files/patch-src-pcmanx_gtk2.cpp (props changed) head/chinese/pine4/files/patch-pine::strings.c (props changed) head/chinese/scim-tables/files/patch-Makefile.in (props changed) head/chinese/scim-tables/files/patch-configure (props changed) head/chinese/scim-tables/files/patch-icons-Makefile.in (props changed) head/chinese/scim-tables/files/patch-tables-Makefile.in (props changed) head/chinese/scim-tables/files/patch-tables-zh-Makefile.in (props changed) head/chinese/srecite/files/patch-minidict.c (props changed) head/chinese/srecite/files/patch-readword.c (props changed) head/chinese/srecite/files/patch-sentencewin.c (props changed) head/chinese/srecite/files/patch-testgame.c (props changed) head/chinese/srecite/files/patch-wordfile.c (props changed) head/chinese/sunpinyin/files/patch-raw_Makefile (props changed) head/chinese/sunpinyin/files/patch-src_ime-core_imi__winHandler.cpp (props changed) head/chinese/sunpinyin/files/patch-xdg (props changed) head/chinese/telnet/files/patch-aa (props changed) head/chinese/tin/files/patch-attrib.c (props changed) head/chinese/tin/files/patch-cook.c (props changed) head/chinese/tin/files/patch-init.c (props changed) head/chinese/tin/files/patch-mail.c (props changed) head/chinese/ttfm/files/patch-modules::gscjk.ttfm (props changed) head/chinese/ttfm/files/patch-modules_xttfm.ttfm (props changed) head/chinese/ttfm/files/patch-ttfm.sh (props changed) head/chinese/unrar/files/patch-arcread.cpp (props changed) head/chinese/unrar/files/patch-unicode.cpp (props changed) head/chinese/unzip/files/patch-fileio.c (props changed) head/chinese/wenju/files/patch-tests::Makefile.in (props changed) head/chinese/wenju/files/patch-tests::wenju.c (props changed) head/chinese/xemacs21/files/patch-Makefile.in.in (props changed) head/chinese/xsim/files/patch-ic.cpp (props changed) head/chinese/xsim/files/patch-ic.h (props changed) head/chinese/xsim/files/patch-im.cpp (props changed) head/chinese/xsim/files/patch-pyphraser.cpp (props changed) head/chinese/xsim/files/patch-simpleim.cpp (props changed) head/chinese/xsim/files/patch-simpleimc.h (props changed) head/chinese/xsim/files/patch-tableimc.h (props changed) head/chinese/xsim/files/patch-wubiim.cpp (props changed) head/chinese/zhcon/files/patch-doc-zhcon.1.in (props changed) head/chinese/zhcon/files/patch-src-winime.cpp (props changed) head/chinese/zhcon/files/patch-src-winime.h (props changed) head/comms/acfax/files/patch-RegExp.c (props changed) head/comms/acfax/files/patch-acfax.c (props changed) head/comms/acfax/files/patch-fax_funcs.c (props changed) head/comms/acfax/files/patch-mod_demod.c (props changed) head/comms/aldo/files/patch-src_audioworkspace.cc (props changed) head/comms/amtterm/files/patch-redir-c (props changed) head/comms/anyremote/files/patch-src_pr_frontend.c (props changed) head/comms/anyremote/files/patch-src_pr_web.c (props changed) head/comms/anyremote/files/patch-src_sys_util.c (props changed) head/comms/aprsd/files/patch-admin_aprsd.conf (props changed) head/comms/aprsd/files/patch-src_aprsString.h (props changed) head/comms/aprsd/files/patch-src_aprsd.cpp (props changed) head/comms/aprsd/files/patch-src_osdep.h (props changed) head/comms/aprsd/files/patch-src_queryResp.cpp (props changed) head/comms/aprsd/files/patch-src_servers.cpp (props changed) head/comms/aprsd/files/patch-src_servers.h (props changed) head/comms/aprsd/files/patch-src_utils.cpp (props changed) head/comms/aprsd/files/patch-src_validate.cpp (props changed) head/comms/atslog/files/patch-bp-250.lib (props changed) head/comms/atslog/files/patch-kx-td1232.lib (props changed) head/comms/atslog/files/patch-ldk-300.lib (props changed) head/comms/bforce-kst/files/patch-bforce.c (props changed) head/comms/bforce-kst/files/patch-bfstat.c (props changed) head/comms/bforce-kst/files/patch-config.h.in (props changed) head/comms/bforce-kst/files/patch-daemon.c (props changed) head/comms/bforce-kst/files/patch-expression.y (props changed) head/comms/bforce-kst/files/patch-nlookup.c (props changed) head/comms/bforce-kst/files/patch-prot_binkp.c (props changed) head/comms/bforce-kst/files/patch-prot_emsi.c (props changed) head/comms/bforce-kst/files/patch-prot_yoohoo.c (props changed) head/comms/bforce-kst/files/patch-prot_zmrecv.c (props changed) head/comms/bforce-kst/files/patch-prot_zmsend.c (props changed) head/comms/bforce-kst/files/patch-sess_call.c (props changed) head/comms/bforce-kst/files/patch-sess_stat.c (props changed) head/comms/bforce/files/patch-aa (props changed) head/comms/bforce/files/patch-ab (props changed) head/comms/birda/files/patch-Makefile.inc (props changed) head/comms/birda/files/patch-lib-Makefile (props changed) head/comms/birda/files/patch-options.c (props changed) head/comms/bluegps/files/patch-aa (props changed) head/comms/bluegps/files/patch-ab (props changed) head/comms/bpl+/files/patch-Makefile (props changed) head/comms/bpl+/files/patch-aa (props changed) head/comms/bpl+/files/patch-ab (props changed) head/comms/bpl+/files/patch-bplexec.c (props changed) head/comms/bpl+/files/patch-config.sh (props changed) head/comms/cdr_read/files/patch-cdr_read.c (props changed) head/comms/chirp/files/patch-chirp_platform.py (props changed) head/comms/chirp/files/patch-chirpui_mainapp.py (props changed) head/comms/chirp/files/patch-setup.py (props changed) head/comms/chu/files/patch-chu.c (props changed) head/comms/conserver-com/files/patch-Makefile.in (props changed) head/comms/conserver-com/files/patch-cutil.c (props changed) head/comms/conserver/files/patch-ac (props changed) head/comms/conserver/files/patch-ad (props changed) head/comms/conserver/files/patch-af (props changed) head/comms/conserver/files/patch-autologin-Make.host (props changed) head/comms/conserver/files/patch-conserver-Make.host (props changed) head/comms/conserver/files/patch-console-Make.host (props changed) head/comms/conserver/files/patch-etc-autologin-autologin.c (props changed) head/comms/conserver/files/patch-etc-autologin-machine.h (props changed) head/comms/conserver/files/patch-etc_conserver_group.c (props changed) head/comms/conserver/files/patch-group.h (props changed) head/comms/conserver/files/patch-machine.h (props changed) head/comms/conserver/files/patch-readcfg.c (props changed) head/comms/cutecom/files/patch-CMakeLists.txt (props changed) head/comms/cutecom/files/patch-cutecommdlg.ui (props changed) head/comms/cutecom/files/patch-qcppdialogimpl.cpp (props changed) head/comms/cutecom/files/patch-qcppdialogimpl.h (props changed) head/comms/cwdaemon/files/patch-cwdaemon.c (props changed) head/comms/dfu-programmer/files/patch-src-commands.c (props changed) head/comms/ebook2cw/files/patch-Makefile (props changed) head/comms/echolinux/files/patch-echogui_servercode.c (props changed) head/comms/echolinux/files/patch-echogui_testgui.c (props changed) head/comms/echolinux/files/patch-echogui_testgui_cb.c (props changed) head/comms/echolinux/files/patch-echogui_testgui_main.c (props changed) head/comms/echolinux/files/patch-echolinux_rtpacket.c (props changed) head/comms/efax-gtk/files/patch-rc (props changed) head/comms/efax/files/patch-src:Makefile (props changed) head/comms/efax/files/patch-src:fax (props changed) head/comms/ems-flasher/files/patch-Makefile (props changed) head/comms/fl_moxgen/files/patch-Makefile (props changed) head/comms/fldigi/files/patch-Makefile.in (props changed) head/comms/fldigi/files/patch-doc-Makefile.in (props changed) head/comms/fldigi/files/patch-misc_newinstall.cxx (props changed) head/comms/fldigi/files/patch-misc_re.cxx (props changed) head/comms/fldigi/files/patch-src_dialogs_fl_digi.cxx (props changed) head/comms/fldigi/files/patch-src_dominoex_dominoex.cxx (props changed) head/comms/fldigi/files/patch-src_include_qrunner.h (props changed) head/comms/fldigi/files/patch-src_logbook_logsupport.cxx (props changed) head/comms/fldigi/files/patch-src_logbook_lookupcall.cxx (props changed) head/comms/fldigi/files/patch-src_misc_dxcc.cxx (props changed) head/comms/fldigi/files/patch-src_navtex_navtex.cxx (props changed) head/comms/fldigi/files/patch-src_qrunner_qrunner.cxx (props changed) head/comms/fldigi/files/patch-src_spot_notify.cxx (props changed) head/comms/fldigi/files/patch-src_spot_pskrep.cxx (props changed) head/comms/fldigi/files/patch-src_spot_spot.cxx (props changed) head/comms/fldigi/files/patch-src_thor_thor.cxx (props changed) head/comms/fldigi/files/patch-src_wefax_wefax.cxx (props changed) head/comms/fldigi/files/patch-src_widgets_FTextRXTX.cxx (props changed) head/comms/fldigi/files/patch-src_widgets_FTextView.cxx (props changed) head/comms/fldigi/files/patch-src_widgets_flmisc.cxx (props changed) head/comms/fldigi/files/patch-src_xmlrpcpp_XmlRpcClient.cpp (props changed) head/comms/fldigi/files/patch-src_xmlrpcpp_XmlRpcServer.cpp (props changed) head/comms/fldigi/files/patch-src_xmlrpcpp_base64.h (props changed) head/comms/gammu-devel/files/patch-CMakeLists.txt (props changed) head/comms/gammu-devel/files/patch-bluetooth (props changed) head/comms/gammu-devel/files/patch-common.device.devfunc.c (props changed) head/comms/gammu-devel/files/patch-common.service.gsmmisc.c (props changed) head/comms/gammu-devel/files/patch-contrib.sqlreply.c.Makefile (props changed) head/comms/gammu-devel/files/patch-docs.man.CMakeLists.txt (props changed) head/comms/gammu/files/extra-patch-contrib_CMakeLists.txt (props changed) head/comms/gammu/files/patch-CMakeLists.txt (props changed) head/comms/gammu/files/patch-bluetooth (props changed) head/comms/gammu/files/patch-common.device.devfunc.c (props changed) head/comms/gammu/files/patch-common.service.gsmmisc.c (props changed) head/comms/geoid/files/patch-country.pos (props changed) head/comms/geoid/files/patch-geoid.cxx (props changed) head/comms/geoid/files/patch-makefile (props changed) head/comms/gkermit/files/patch-aa (props changed) head/comms/gmfsk/files/extra-patch-misc_misc.c (props changed) head/comms/gmfsk/files/extra-patch-misc_misc.h (props changed) head/comms/gmfsk/files/patch-mt63_dsp.h (props changed) head/comms/gnokii/files/patch-Docs-man-Makefile.in (props changed) head/comms/gnokii/files/patch-Makefile.in (props changed) head/comms/gnokii/files/patch-common-Makefile.in (props changed) head/comms/gnokii/files/patch-common-devices-unixbluetooth.c (props changed) head/comms/gnokii/files/patch-configure (props changed) head/comms/gnokii/files/patch-gnokii-Makefile.in (props changed) head/comms/gnokii/files/patch-gnokiid-Makefile.in (props changed) head/comms/gnokii/files/patch-smsd-Makefile.in (props changed) head/comms/gnokii/files/patch-xgnokii-Makefile.in (props changed) head/comms/gnuradio/files/patch-CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-cmake_Modules_FindPortaudio.cmake (props changed) head/comms/gnuradio/files/patch-cmake_Modules_FindUSB.cmake (props changed) head/comms/gnuradio/files/patch-cmake_Modules_GrMiscUtils.cmake (props changed) head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in (props changed) head/comms/gnuradio/files/patch-gnuradio-core_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-audio_doc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-audio_lib_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-audio_lib_alsa_audio_alsa_sink.cc (props changed) head/comms/gnuradio/files/patch-gr-audio_lib_alsa_audio_alsa_source.cc (props changed) head/comms/gnuradio/files/patch-gr-audio_lib_oss_audio_oss_sink.cc (props changed) head/comms/gnuradio/files/patch-gr-audio_lib_oss_audio_oss_source.cc (props changed) head/comms/gnuradio/files/patch-gr-digital_doc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-fcd_doc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-fcd_lib_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-fcd_lib_hid_hid-libusb.c (props changed) head/comms/gnuradio/files/patch-gr-fft_doc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-filter_doc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-qtgui_doc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-trellis_doc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-uhd_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-uhd_doc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-utils_src_python_modtool_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-vocoder_doc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gr-wxgui_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-grc_CMakeLists.txt (props changed) head/comms/gnuradio/files/patch-gruel_src_lib_thread.cc (props changed) head/comms/gnuradio/files/patch-volk_CMakeLists.txt (props changed) head/comms/gpsk31/files/patch-src_server-main.C (props changed) head/comms/gr-osmosdr/files/patch-CMakeLists.txt (props changed) head/comms/gsmlib/files/patch-gsmlib::gsm_map_key.h (props changed) head/comms/gsmlib/files/patch-gsmlib::gsm_me_ta.h (props changed) head/comms/gsmlib/files/patch-gsmlib::gsm_unix_serial.cc (props changed) head/comms/gtkmmorse/files/patch-astream.cc (props changed) head/comms/hamfax/files/patch-Makefile.in (props changed) head/comms/hamfax/files/patch-sound.hpp (props changed) head/comms/hamlib/files/patch-bindings_Makefile.in (props changed) head/comms/hamlib/files/patch-src_Makefile.in (props changed) head/comms/hcidump/files/patch-hcidump-Makefile (props changed) head/comms/hcidump/files/patch-parser-Makefile (props changed) head/comms/hcidump/files/patch-parser.c (props changed) head/comms/hf/files/patch-Makefile.in (props changed) head/comms/hf/files/patch-dcf77_dcfdemod.c (props changed) head/comms/hf/files/patch-dcf77_dcfdemodpn.c (props changed) head/comms/hf/files/patch-dcf77_hbgdemod.c (props changed) head/comms/hf/files/patch-hfkernel_Makefile.in (props changed) head/comms/hf/files/patch-hfkernel_cw.c (props changed) head/comms/hf/files/patch-hfkernel_cw_elbug.c (props changed) head/comms/hf/files/patch-hfkernel_elbug.c (props changed) head/comms/hf/files/patch-hfkernel_fsk_fskinlines.h (props changed) head/comms/hf/files/patch-hfkernel_fsk_fskl1.c (props changed) head/comms/hf/files/patch-hfkernel_fsk_gtor.c (props changed) head/comms/hf/files/patch-hfkernel_fsk_pactor.c (props changed) head/comms/hf/files/patch-hfkernel_l1_refclock.c (props changed) head/comms/hf/files/patch-scripts_Makefile.in (props changed) head/comms/hf/files/patch-util_channel.c (props changed) head/comms/hf/files/patch-util_testgaussgen.c (props changed) head/comms/hylafax/files/patch-FileTransfer.c++ (props changed) head/comms/hylafax/files/patch-GettySysV.c++ (props changed) head/comms/hylafax/files/patch-Makefile.in (props changed) head/comms/hylafax/files/patch-configure (props changed) head/comms/hylafax/files/patch-hylafax.in (props changed) head/comms/hylafax/files/patch-nls.mk (props changed) head/comms/java-commapi-freebsd/files/patch-Makefile (props changed) head/comms/kb/files/patch-init.c (props changed) head/comms/kb/files/patch-support.c (props changed) head/comms/libfec/files/patch-dotprod.c (props changed) head/comms/libfec/files/patch-fec.c (props changed) head/comms/libfec/files/patch-fec.h (props changed) head/comms/libirman/files/patch-Makefile.in (props changed) head/comms/libirman/files/patch-irio.c (props changed) head/comms/libirman/files/patch-irman.conf-location (props changed) head/comms/libirman/files/patch-no-flock-of-serial-ports (props changed) head/comms/linrad/files/patch-Makefile.in (props changed) head/comms/linrad/files/patch-help.c (props changed) head/comms/lirc/files/patch-configure.ac (props changed) head/comms/lirc/files/patch-daemons-Makefile.am (props changed) head/comms/lirc/files/patch-daemons::Makefile.in (props changed) head/comms/lirc/files/patch-daemons::dump_config.c (props changed) head/comms/lirc/files/patch-daemons::hw-types.c (props changed) head/comms/lirc/files/patch-daemons::hw_default.c (props changed) head/comms/lirc/files/patch-daemons::hw_devinput.c (props changed) head/comms/lirc/files/patch-daemons::hw_hiddev.c (props changed) head/comms/lirc/files/patch-daemons::hw_srm7500libusb.c (props changed) head/comms/lirc/files/patch-daemons::ir_remote.c (props changed) head/comms/lirc/files/patch-daemons::lircd.c (props changed) head/comms/lirc/files/patch-daemons::lircmd.c (props changed) head/comms/lirc/files/patch-drivers::lirc.h (props changed) head/comms/lirc/files/patch-tools::irsend.c (props changed) head/comms/locator/files/patch-Makefile (props changed) head/comms/locator/files/patch-conv_fn.cc (props changed) head/comms/locator/files/patch-locator.cc (props changed) head/comms/lrzsz/files/patch-lrz.c (props changed) head/comms/lrzsz/files/patch-rbsb.c (props changed) head/comms/mgetty+sendfax/files/patch-CVE-2008-4936 (props changed) head/comms/mgetty+sendfax/files/patch-aa (props changed) head/comms/mgetty+sendfax/files/patch-ab (props changed) head/comms/mgetty+sendfax/files/patch-ac (props changed) head/comms/mgetty+sendfax/files/patch-ad (props changed) head/comms/mgetty+sendfax/files/patch-g3_Makefile (props changed) head/comms/mgetty+sendfax/files/patch-mg__utmp.h (props changed) head/comms/mgetty+sendfax/files/patch-mg_m_init.c (props changed) head/comms/mgetty+sendfax/files/patch-utmp.c (props changed) head/comms/mgetty+sendfax/files/patch-v (props changed) head/comms/minicom/files/patch-ac (props changed) head/comms/minicom/files/patch-af (props changed) head/comms/minicom/files/patch-minirc.dfl (props changed) head/comms/minicom/files/patch-src-minicom.h (props changed) head/comms/minicom/files/patch-src-script.c (props changed) head/comms/minicom/files/patch-sysdep1.c (props changed) head/comms/mlan3/files/patch-aa (props changed) head/comms/morse/files/patch-Makefile (props changed) head/comms/morse/files/patch-QSO.1 (props changed) head/comms/morse/files/patch-morse.1 (props changed) head/comms/morse/files/patch-morse.d-Makefile (props changed) head/comms/morse/files/patch-qso.d-Makefile (props changed) head/comms/nec2c/files/patch-Makefile (props changed) head/comms/nec2c/files/patch-misc.c (props changed) head/comms/nec2c/files/patch-nec2c.h (props changed) head/comms/obexapp/files/patch-Makefile (props changed) head/comms/p5-Device-SerialPort/files/patch-aa (props changed) head/comms/predict/files/patch-predict.c (props changed) head/comms/qpage/files/patch-config.c (props changed) head/comms/qpage/files/patch-config.h.in (props changed) head/comms/qpage/files/patch-config.input (props changed) head/comms/qpage/files/patch-ixo.c (props changed) head/comms/qpage/files/patch-qpage.man (props changed) head/comms/qpage/files/patch-srvrsnpp.c (props changed) head/comms/qpage/files/patch-util.c (props changed) head/comms/qrq/files/patch-Makefile (props changed) head/comms/qsstv/files/patch-no_designer (props changed) head/comms/qsstv/files/patch-src_camcontrol.ui (props changed) head/comms/qsstv/files/patch-src_configdialog.cpp (props changed) head/comms/qsstv/files/patch-src_configform.ui (props changed) head/comms/qsstv/files/patch-src_documentation_html_gettingstarted.html (props changed) head/comms/qsstv/files/patch-src_freqform.ui (props changed) head/comms/qsstv/files/patch-src_soundcontrol.ui (props changed) head/comms/qsstv/files/patch-src_sweepform.ui (props changed) head/comms/remserial/files/patch-define.h (props changed) head/comms/remserial/files/patch-remserial.c (props changed) head/comms/remserial/files/patch-stty.c (props changed) head/comms/rtl-sdr/files/extra-patch-Makefile.am (props changed) head/comms/rtl-sdr/files/patch-configure.ac (props changed) head/comms/rxtx/files/patch-Makefile.in (props changed) head/comms/rxtx/files/patch-Makefile.in-libtool (props changed) head/comms/rxtx/files/patch-src-ParallelImp.c (props changed) head/comms/rxtx/files/patch-src-gnu-io-RXTXCommDriver.java (props changed) head/comms/ser2net/files/patch-utils.c (props changed) head/comms/serialoverip/files/patch-serialoverip.c (props changed) head/comms/seyon/files/patch-SeParse.y (props changed) head/comms/seyon/files/patch-SeScan.c (props changed) head/comms/seyon/files/patch-aa (props changed) head/comms/seyon/files/patch-ab (props changed) head/comms/seyon/files/patch-ac (props changed) head/comms/seyon/files/patch-ad (props changed) head/comms/smstools3/files/patch-src-Makefile (props changed) head/comms/soundmodem/files/patch-configapp_src_Makefile.in (props changed) head/comms/soundmodem/files/patch-configapp_src_diag.c (props changed) head/comms/soundmodem/files/patch-configapp_src_main.c (props changed) head/comms/soundmodem/files/patch-configapp_src_soundmodemconfig.8 (props changed) head/comms/soundmodem/files/patch-configure (props changed) head/comms/soundmodem/files/patch-fsk_gendf9icfilt.cc (props changed) head/comms/soundmodem/files/patch-matlib_mat.hh (props changed) head/comms/soundmodem/files/patch-newqpsk_complex.h (props changed) head/comms/soundmodem/files/patch-newqpsk_fec.h (props changed) head/comms/soundmodem/files/patch-newqpsk_filter-i386.h (props changed) head/comms/soundmodem/files/patch-newqpsk_filter.h (props changed) head/comms/soundmodem/files/patch-newqpsk_misc.h (props changed) head/comms/soundmodem/files/patch-p3dmodem_genp3dtbl.c (props changed) head/comms/soundmodem/files/patch-pammodem_genpamtbl.c (props changed) head/comms/soundmodem/files/patch-pskmodem_genpsktbl.c (props changed) head/comms/soundmodem/files/patch-pskmodem_pskmodem.c (props changed) head/comms/soundmodem/files/patch-soundcard_main.c (props changed) head/comms/soundmodem/files/patch-soundcard_modem.h (props changed) head/comms/soundmodem/files/patch-soundcard_ptt.c (props changed) head/comms/soundmodem/files/patch-soundcard_simd.h (props changed) head/comms/soundmodem/files/patch-soundcard_soundmodem.8 (props changed) head/comms/soundmodem/files/patch-soundcard_winlog.c (props changed) head/comms/spandsp-devel/files/patch-configure.ac (props changed) head/comms/spandsp/files/patch-configure.ac (props changed) head/comms/splat/files/patch-utils_fontdata.c (props changed) head/comms/splat/files/patch-utils_postdownload (props changed) head/comms/sredird/files/patch-aa (props changed) head/comms/sredird/files/patch-ab (props changed) head/comms/thebridge/files/patch-Makefile.in (props changed) head/comms/thebridge/files/patch-addons_usermgmt.cgi (props changed) head/comms/thebridge/files/patch-configure.in (props changed) head/comms/thebridge/files/patch-src_Makefile.in (props changed) head/comms/thebridge/files/patch-src_conference.c (props changed) head/comms/thebridge/files/patch-src_dirclient.c (props changed) head/comms/thebridge/files/patch-tbdcmd_Makefile.in (props changed) head/comms/tits/files/patch-Makefile (props changed) head/comms/tits/files/patch-dispatcher.c (props changed) head/comms/tits/files/patch-listener.c (props changed) head/comms/tits/files/patch-tty.c (props changed) head/comms/tkhylafax/files/patch-ab (props changed) head/comms/tlf/files/patch-configure.in (props changed) head/comms/tlf/files/patch-share_logcfg.dat (props changed) head/comms/tlf/files/patch-src_audio.c (props changed) head/comms/tlf/files/patch-src_readcalls.c (props changed) head/comms/trustedqsl/files/patch-apps_CMakeLists.txt (props changed) head/comms/trustedqsl/files/patch-apps_tqsl.cpp (props changed) head/comms/trustedqsl/files/patch-cmakemodules_FindBDB.cmake (props changed) head/comms/trustedqsl/files/patch-src_tqslconvert.cpp (props changed) head/comms/trustedqsl/files/patch-src_xml.h (props changed) head/comms/twpsk/files/patch-GUI.h (props changed) head/comms/twpsk/files/patch-Makefile (props changed) head/comms/twpsk/files/patch-psk31-transmitter.C (props changed) head/comms/twpsk/files/patch-server-main.C (props changed) head/comms/twpsk/files/patch-twpsk.C (props changed) head/comms/twpsk/files/patch-twpskDiags.C (props changed) head/comms/uartlirc/files/patch-uartlirc_tty.c (props changed) head/comms/unixcw/files/patch-src_libcw_Makefile.am (props changed) head/comms/unixcw/files/patch-src_libcw_Makefile.in (props changed) head/comms/unixcw/files/patch-src_libcw_libcw_oss.c (props changed) head/comms/unixcw/files/patch-src_xcwcp_Makefile.am (props changed) head/comms/unixcw/files/patch-src_xcwcp_Makefile.in (props changed) head/comms/usbmuxd/files/patch-Modules__FindInotify.cmake (props changed) head/comms/usbmuxd/files/patch-libusbmuxd__CMakeLists.txt (props changed) head/comms/usrp/files/patch-firmware_fx2_CMakeLists.txt (props changed) head/comms/usrp/files/patch-firmware_fx2_b100_CMakeLists.txt (props changed) head/comms/usrp/files/patch-firmware_fx2_b100_board_specific.c (props changed) head/comms/usrp/files/patch-firmware_fx2_b100_eeprom_io.c (props changed) head/comms/usrp/files/patch-firmware_fx2_b100_eeprom_io.h (props changed) head/comms/usrp/files/patch-firmware_fx2_b100_fpga_load.c (props changed) head/comms/usrp/files/patch-firmware_fx2_b100_fpga_rev2.c (props changed) head/comms/usrp/files/patch-firmware_fx2_b100_gpif.c (props changed) head/comms/usrp/files/patch-firmware_fx2_b100_usrp_main.c (props changed) head/comms/usrp/files/patch-firmware_fx2_b100_usrp_regs.h (props changed) head/comms/usrp/files/patch-firmware_fx2_common_delay.c (props changed) head/comms/usrp/files/patch-firmware_fx2_common_eeprom_init.c (props changed) head/comms/usrp/files/patch-firmware_fx2_common_fpga_load.h (props changed) head/comms/usrp/files/patch-firmware_fx2_common_fx2regs.h (props changed) head/comms/usrp/files/patch-firmware_fx2_common_fx2utils.c (props changed) head/comms/usrp/files/patch-firmware_fx2_common_i2c.c (props changed) head/comms/usrp/files/patch-firmware_fx2_common_i2c.h (props changed) head/comms/usrp/files/patch-firmware_fx2_common_isr.c (props changed) head/comms/usrp/files/patch-firmware_fx2_common_spi.c (props changed) head/comms/usrp/files/patch-firmware_fx2_common_spi.h (props changed) head/comms/usrp/files/patch-firmware_fx2_common_syncdelay.h (props changed) head/comms/usrp/files/patch-firmware_fx2_common_usb_common.c (props changed) head/comms/usrp/files/patch-firmware_fx2_common_usb_common.h (props changed) head/comms/usrp/files/patch-firmware_fx2_common_usb_descriptors.h (props changed) head/comms/usrp/files/patch-firmware_fx2_config_CMakeDetermineASM_SDCCCompiler.cmake (props changed) head/comms/usrp/files/patch-firmware_fx2_config_Toolchain-sdcc.cmake (props changed) head/comms/usrp/files/patch-firmware_fx2_usrp1_board_specific.c (props changed) head/comms/usrp/files/patch-firmware_fx2_usrp1_eeprom_io.c (props changed) head/comms/usrp/files/patch-firmware_fx2_usrp1_eeprom_io.h (props changed) head/comms/usrp/files/patch-firmware_fx2_usrp1_fpga_load.c (props changed) head/comms/usrp/files/patch-firmware_fx2_usrp1_fpga_rev2.c (props changed) head/comms/usrp/files/patch-firmware_fx2_usrp1_gpif.c (props changed) head/comms/usrp/files/patch-firmware_fx2_usrp1_usrp_main.c (props changed) head/comms/usrp/files/patch-firmware_fx2_usrp1_usrp_regs.h (props changed) head/comms/usrp/files/patch-host_CMakeLists.txt (props changed) head/comms/usrp/files/patch-images_Makefile (props changed) head/comms/xastir/files/patch-Makefile.in (props changed) head/comms/xmorse/files/patch-Makefile (props changed) head/comms/xmorse/files/patch-m.fl (props changed) head/comms/xnecview/files/patch-Makefile (props changed) head/comms/xnecview/files/patch-draw.c (props changed) head/comms/xnecview/files/patch-parse_input.c (props changed) head/comms/xnecview/files/patch-xwin.c (props changed) head/comms/xwota/files/patch-Makefile.in (props changed) head/comms/xwota/files/patch-src_stuff.c (props changed) head/comms/yagiuda/files/patch-src_gain.c (props changed) head/comms/yagiuda/files/patch-src_genetic_algorithm_lib.c (props changed) head/comms/yagiuda/files/patch-src_input.c (props changed) head/comms/yagiuda/files/patch-src_output.c (props changed) head/comms/yagiuda/files/patch-src_random.c (props changed) head/comms/yagiuda/files/patch-src_string.c (props changed) head/comms/yagiuda/files/patch-src_yagi.c (props changed) head/comms/yaps/files/patch-aa (props changed) head/comms/yaps/files/patch-ab (props changed) head/comms/yaps/files/patch-ac (props changed) head/comms/yaps/files/patch-ad (props changed) head/comms/yaps/files/patch-ae (props changed) head/comms/yfklog/files/patch-yfk (props changed) head/comms/zmtx-zmrx/files/patch-makefile (props changed) head/comms/zmtx-zmrx/files/patch-zmdm.c (props changed) head/comms/zmtx-zmrx/files/patch-zmrx.c (props changed) head/comms/zmtx-zmrx/files/patch-zmtx.c (props changed) head/comms/zssh/files/patch-aa (props changed) head/converters/aish/files/patch-aa (props changed) head/converters/aish/files/patch-ai_unix.c (props changed) head/converters/ascii2binary/files/patch-Makefile.in (props changed) head/converters/base64/files/patch-base64.c (props changed) head/converters/btoa/files/patch-aa (props changed) head/converters/btoa/files/patch-ab (props changed) head/converters/convmv/files/patch-Makefile (props changed) head/converters/dumpasn1/files/patch-dumpasn1.c (props changed) head/converters/enca/files/patch-Makefile.in (props changed) head/converters/enca/files/patch-configure (props changed) head/converters/fribidi/files/patch-fribidi.pc.in (props changed) head/converters/i18ntools/files/patch-aa (props changed) head/converters/i18ntools/files/patch-ab (props changed) head/converters/i18ntools/files/patch-ac (props changed) head/converters/i18ntools/files/patch-ad (props changed) head/converters/ical2html/files/patch-Makefile.in (props changed) head/converters/iconv-extra/files/patch-ces::Makefile (props changed) head/converters/iconv-extra/files/patch-ces::iso-2022-cn.c (props changed) head/converters/iconv-extra/files/patch-ces::iso-2022-jp-2.c (props changed) head/converters/iconv-extra/files/patch-ces::iso-2022-jp.c (props changed) head/converters/iconv-extra/files/patch-ces::iso-2022-kr.c (props changed) head/converters/iconv-extra/files/patch-ces::unicode-1-1-utf-7.c (props changed) head/converters/iconv-extra/files/patch-gcc41 (props changed) head/converters/iconv/files/extra-patch-ccs_Makefile (props changed) head/converters/iconv/files/patch-ah (props changed) head/converters/iconv/files/patch-ai (props changed) head/converters/iconv/files/patch-ces::Makefile (props changed) head/converters/iconv/files/patch-gcc41 (props changed) head/converters/iconv/files/patch-lib::converter.c (props changed) head/converters/iconv/files/patch-util::Makefile (props changed) head/converters/ish/files/patch-ab (props changed) head/converters/ish/files/patch-decode.c (props changed) head/converters/konwert/files/patch-Makefile (props changed) head/converters/konwert/files/patch-filterm.cc (props changed) head/converters/libutf-8/files/patch-aa (props changed) head/converters/mimelib/files/patch-mimelib-mimelib-string.h (props changed) head/converters/mimelib/files/patch-mimelib-mimelib-token.h (props changed) head/converters/mimelib/files/patch-mimelib-msgcmp.cpp (props changed) head/converters/mimelib/files/patch-mimelib-string.cpp (props changed) head/converters/mimelib/files/patch-mimelib-token.cpp (props changed) head/converters/mmencode/files/patch-aa (props changed) head/converters/mpack/files/patch-README.unix (props changed) head/converters/mpack/files/patch-codes.c (props changed) head/converters/mpack/files/patch-decode.c (props changed) head/converters/mpack/files/patch-encode.c (props changed) head/converters/mpack/files/patch-magic.c (props changed) head/converters/mpack/files/patch-mkreadme.pl (props changed) head/converters/mpack/files/patch-part.c (props changed) head/converters/mpack/files/patch-unixos.c (props changed) head/converters/mpack/files/patch-unixpk.c (props changed) head/converters/mpack/files/patch-unixpk.man (props changed) head/converters/mpack/files/patch-unixunpk.c (props changed) head/converters/mpack/files/patch-unixunpk.man (props changed) head/converters/mpack/files/patch-uudecode.c (props changed) head/converters/mpack/files/patch-xmalloc.c (props changed) head/converters/o3read/files/patch-Makefile (props changed) head/converters/p5-Unicode-String/files/patch-String.pm (props changed) head/converters/p5-XML-WBXML/files/patch-Makefile.PL (props changed) head/converters/php5-mbstring/files/patch-config.m4 (props changed) head/converters/php52-mbstring/files/patch-config.m4 (props changed) head/converters/php52-mbstring/files/patch-oniguruma_regerror.c (props changed) head/converters/php53-mbstring/files/patch-config.m4 (props changed) head/converters/php55-mbstring/files/patch-config.m4 (props changed) head/converters/py-iconv/files/patch-iconvcodec.py (props changed) head/converters/recode/files/patch-configure (props changed) head/converters/recode/files/patch-i18n::el.po (props changed) head/converters/recode/files/patch-lib-error.c (props changed) head/converters/recode/files/patch-libiconv-Makefile.in (props changed) head/converters/recode/files/patch-src::names.c (props changed) head/converters/recode/files/patch-src::outer.c (props changed) head/converters/tnef/files/patch-src__tnef.c (props changed) head/converters/trans/files/patch-aa (props changed) head/converters/trans/files/patch-ac (props changed) head/converters/tuc/files/patch-aa (props changed) head/converters/uudeview/files/patch-aa (props changed) head/converters/uudeview/files/patch-ab (props changed) head/converters/uudeview/files/patch-ac (props changed) head/converters/uudeview/files/patch-ad (props changed) head/converters/uudx/files/patch-aa (props changed) head/converters/uulib/files/patch-aa (props changed) head/converters/uulib/files/patch-ab (props changed) head/converters/uulib/files/patch-ac (props changed) head/converters/uulib/files/patch-ad (props changed) head/converters/uulib/files/patch-uulib_uuscan.c (props changed) head/converters/xdeview/files/patch-aa (props changed) head/converters/xdeview/files/patch-ab (props changed) head/converters/xdeview/files/patch-ad (props changed) head/databases/akonadi/files/patch-server__src__storage__dbconfigmysql.cpp (props changed) head/databases/animenfo-client-gtk/files/patch-socket.c (props changed) head/databases/animenfo-client/files/patch-Makefile (props changed) head/databases/animenfo-client/files/patch-socket.c (props changed) head/databases/autobackupmysql/files/patch-autobackupmysql.sh (props changed) head/databases/cassandra/files/patch-env (props changed) head/databases/credis/files/patch-Makefile (props changed) head/databases/credis/files/patch-credis.c (props changed) head/databases/cyrus-imspd/files/patch-ah (props changed) head/databases/cyrus-imspd/files/patch-ai (props changed) head/databases/cyrus-imspd/files/patch-aj (props changed) head/databases/cyrus-imspd/files/patch-imsp::dispatch.h (props changed) head/databases/db/files/patch-db.1 (props changed) head/databases/db/files/patch-db.c (props changed) head/databases/db4/files/patch-dist::Makefile.in (props changed) head/databases/db4/files/patch-dist::configure (props changed) head/databases/db4/files/patch-dist::ltmain.sh (props changed) head/databases/db4/files/patch-objformat (props changed) head/databases/db41/files/patch-dist::Makefile.in (props changed) head/databases/db41/files/patch-dist::configure (props changed) head/databases/db41/files/patch-dist::ltmain.sh (props changed) head/databases/db41/files/patch-objformat (props changed) head/databases/db41/files/patch-upstream.4.1.25.1 (props changed) head/databases/db41/files/patch-upstream.4.1.25.3 (props changed) head/databases/db42/files/patch-dist::configure (props changed) head/databases/db43/files/patch-dist::configure (props changed) head/databases/db43/files/patch-upstream.4.3.29.1 (props changed) head/databases/db44/files/patch-dist::configure (props changed) head/databases/db44/files/patch-upstream.4.4.20.1 (props changed) head/databases/db44/files/patch-upstream.4.4.20.2 (props changed) head/databases/db44/files/patch-upstream.4.4.20.3 (props changed) head/databases/db44/files/patch-upstream.4.4.20.4 (props changed) head/databases/db46/files/patch-dist::configure (props changed) head/databases/db47/files/patch-dist::configure (props changed) head/databases/db48/files/patch-dbinc_atomic.h (props changed) head/databases/db48/files/patch-dist::configure (props changed) head/databases/db5/files/patch-dist_configure (props changed) head/databases/dbXML/files/patch-bin-dbxml (props changed) head/databases/dbXML/files/patch-bin-dbxml-gui (props changed) head/databases/dbXML/files/patch-install-create-db (props changed) head/databases/dbXML/files/patch-startup (props changed) head/databases/dbconnect/files/patch-configure.in (props changed) head/databases/dbconnect/files/patch-src-base-baseValue.cpp (props changed) head/databases/dbconnect/files/patch-src::dbconnect::dbconnect.cpp (props changed) head/databases/dbconnect/files/patch-src::driver_mysql::mysqlBindParam.cpp (props changed) head/databases/dbconnect/files/patch-src::driver_pgsql-7::pgsqlBindParam.cpp (props changed) head/databases/dbf2mysql/files/patch-aa (props changed) head/databases/dbf2mysql/files/patch-ab (props changed) head/databases/dbf2mysql/files/patch-mysql2dbf.c (props changed) head/databases/dbh/files/patch-ltmain.sh (props changed) head/databases/dbtool/files/patch-samples_locate_locate (props changed) head/databases/dbtool/files/patch-samples_locate_updatedb (props changed) head/databases/dbview/files/patch-db_dump.c (props changed) head/databases/dbview/files/patch-version.c (props changed) head/databases/evolution-data-server/files/patch-calendar_libedata-cal_e-cal-backend-intervaltree.c (props changed) head/databases/evolution-data-server/files/patch-camel_camel-block-file.h (props changed) head/databases/evolution-data-server/files/patch-camel_camel-net-utils.c (props changed) head/databases/evolution-data-server/files/patch-camel_providers_imapx_Makefile.in (props changed) head/databases/evolution-data-server/files/patch-camel_providers_imapx_camel-imapx-tokens.txt (props changed) head/databases/evolution-data-server/files/patch-configure (props changed) head/databases/evolution-data-server/files/patch-docs_reference_camel_Makefile.in (props changed) head/databases/fastdb/files/patch-makefile (props changed) head/databases/firebird20-server/files/patch-builds%install%misc%firebird.conf (props changed) head/databases/firebird20-server/files/patch-builds%posix%Makefile.in.firebird (props changed) head/databases/firebird20-server/files/patch-builds%posix%make.defaults (props changed) head/databases/firebird20-server/files/patch-builds%posix%make.rules (props changed) head/databases/firebird20-server/files/patch-src%common%config%config.cpp (props changed) head/databases/firebird20-server/files/patch-src%jrd%db_alias.cpp (props changed) head/databases/firebird20-server/files/patch-src%jrd%gds.cpp (props changed) head/databases/firebird20-server/files/patch-src%jrd%os%config_root.h (props changed) head/databases/firebird20-server/files/patch-src%jrd%plugin_manager.cpp (props changed) head/databases/firebird20-server/files/patch-src%jrd%svc.cpp (props changed) head/databases/firebird20-server/files/patch-src%lock%lock.cpp (props changed) head/databases/firebird20-server/files/patch-src+jrd+IntlManager.cpp (props changed) head/databases/firebird21-server/files/patch-autogen.sh (props changed) head/databases/firebird21-server/files/patch-builds%install%misc%firebird.conf (props changed) head/databases/firebird21-server/files/patch-builds%posix%Makefile.in.firebird (props changed) head/databases/firebird21-server/files/patch-builds%posix%make.defaults (props changed) head/databases/firebird21-server/files/patch-builds%posix%make.rules (props changed) head/databases/firebird21-server/files/patch-configure.in (props changed) head/databases/firebird21-server/files/patch-src%common%config%config.cpp (props changed) head/databases/firebird21-server/files/patch-src%jrd%db_alias.cpp (props changed) head/databases/firebird21-server/files/patch-src%jrd%gds.cpp (props changed) head/databases/firebird21-server/files/patch-src%jrd%os%config_root.h (props changed) head/databases/firebird21-server/files/patch-src%jrd%plugin_manager.cpp (props changed) head/databases/firebird21-server/files/patch-src%jrd%svc.cpp (props changed) head/databases/firebird21-server/files/patch-src%lock%lock.cpp (props changed) head/databases/firebird21-server/files/patch-src+jrd+IntlManager.cpp (props changed) head/databases/firebird25-server/files/patch-builds-install-misc_firebird.conf.in (props changed) head/databases/firebird25-server/files/patch-builds-posix_make.defaults (props changed) head/databases/firebird25-server/files/patch-src-jrd_isc_sync.cpp (props changed) head/databases/flare/files/patch-etc-flared.conf (props changed) head/databases/flare/files/patch-etc-flarei.conf (props changed) head/databases/flare/files/patch-flared-flared.cc (props changed) head/databases/flare/files/patch-flared-ini_option.cc (props changed) head/databases/flare/files/patch-flared-ini_option.h (props changed) head/databases/flare/files/patch-flarei-flarei.cc (props changed) head/databases/flare/files/patch-flarei-ini_option.cc (props changed) head/databases/flare/files/patch-flarei-ini_option.h (props changed) head/databases/flare/files/patch-kqueue-server.cc (props changed) head/databases/flare/files/patch-kqueue-server.h (props changed) head/databases/flare/files/patch-lib-logger.cc (props changed) head/databases/flare/files/patch-lib-server.h (props changed) head/databases/fortytwo-bdb/files/patch-GNUmakefile (props changed) head/databases/freetds-devel/files/patch-doc_Makefile.in (props changed) head/databases/freetds/files/patch-configure (props changed) head/databases/freetds/files/patch-doc_Makefile.in (props changed) head/databases/freetds/files/patch-src_tds_iconv.c (props changed) head/databases/gadfly/files/patch-bindngs (props changed) head/databases/gadfly/files/patch-gfplus (props changed) head/databases/gadfly/files/patch-gfserver (props changed) head/databases/gigabase/files/patch-Makefile.in (props changed) head/databases/glom/files/patch-glom_libglom_connectionpool.cc (props changed) head/databases/glom/files/patch-glom_main.cc (props changed) head/databases/gnats4/files/extrapatch-gnats::edit-pr.sh (props changed) head/databases/gnats4/files/patch-Makefile.in (props changed) head/databases/gnats4/files/patch-gnats::Makefile.in (props changed) head/databases/gnats4/files/patch-gnats__dbconfig.in (props changed) head/databases/gnats4/files/patch-gnats__edit-pr.sh (props changed) head/databases/gnats4/files/patch-gnats__gnats.h (props changed) head/databases/gnats4/files/patch-send-pr::Makefile.in (props changed) head/databases/gnats4/files/patch-send-pr_install-sid.sh (props changed) head/databases/gtksql/files/patch-po__Makefile.in.in (props changed) head/databases/hamsterdb/files/patch-bfc-testsuite.cpp (props changed) head/databases/hk_classes/files/patch-configure (props changed) head/databases/hk_classes/files/patch-hk_classes_hk_database.h (props changed) head/databases/hk_classes/files/patch-utilities_Makefile.in (props changed) head/databases/iplike/files/patch-install_iplike.sh.in (props changed) head/databases/jakarta-commons-dbutils/files/patch-build.xml (props changed) head/databases/jasperserver/files/patch-jasperserver__buildomatic__bin__dev.xml (props changed) head/databases/jasperserver/files/patch-jasperserver__buildomatic__conf_source__db__mysql__db.template.properties (props changed) head/databases/jasperserver/files/patch-jasperserver__buildomatic__install_resources__sql__postgresql__js-create.ddl (props changed) head/databases/jasperserver/files/patch-jasperserver__common__shared-config__applicationContext-themes.xml (props changed) head/databases/jasperserver/files/patch-jasperserver__jasperserver-war__src__main__webappAdditions__WEB-INF__web.xml (props changed) head/databases/jdb/files/patch-ab (props changed) head/databases/jrrd/files/patch-Makefile.in (props changed) head/databases/kbibtex/files/patch-src__libkbibtexio__iconvlatex.cpp (props changed) head/databases/libdbi-drivers/files/patch-drivers__freetds__dbd_freetds.c (props changed) head/databases/libdbi-drivers/files/patch-drivers__pgsql__dbd_pgsql.c (props changed) head/databases/libdbi/files/patch-Makefile.in (props changed) head/databases/libdrizzle/files/patch-Makefile.in (props changed) head/databases/libgda2/files/patch-aa (props changed) head/databases/libgda2/files/patch-configure (props changed) head/databases/libgda2/files/patch-doc::libgda-C.omf.in (props changed) head/databases/libgda2/files/patch-doc_C_Makefile.in (props changed) head/databases/libgda2/files/patch-libgda.pc.in (props changed) head/databases/libgda2/files/patch-po_Makefile.in.in (props changed) head/databases/libgda2/files/patch-providers_freetds_0.64 (props changed) head/databases/libgda2/files/patch-providers_mdb_gda-mdb-provider.c (props changed) head/databases/libgda2/files/patch-providers_mysql_gda-mysql-recordset.c (props changed) head/databases/libgda2/files/patch-providers_postgres_utils.c (props changed) head/databases/libgda2/files/patch-tools_gda-config-tool.c (props changed) head/databases/libgda3/files/patch-configure (props changed) head/databases/libgda4/files/patch-configure (props changed) head/databases/libgda5/files/patch-configure (props changed) head/databases/libmemcache/files/patch-fix-inline (props changed) head/databases/libodbc++/files/patch-Makefile.in (props changed) head/databases/libodbc++/files/patch-configure (props changed) head/databases/libodbc++/files/patch-isql++-isql++.h (props changed) head/databases/libpbl/files/patch-pbl.h (props changed) head/databases/libpbl/files/patch-pblMapTest.c (props changed) head/databases/libpbl/files/patch-pblttst.c (props changed) head/databases/libsdb/files/patch-Makefiles_Other (props changed) head/databases/libsdb/files/patch-config.in (props changed) head/databases/liquibase/files/patch-liquibase (props changed) head/databases/lmdb/files/patch-Makefile (props changed) head/databases/ludia/files/patch-pgsenna2.c (props changed) head/databases/mariadb-client/files/patch-scripts__Makefile.in (props changed) head/databases/mariadb-scripts/files/patch-scripts__Makefile.in (props changed) head/databases/mariadb-server/files/patch-Makefile.in (props changed) head/databases/mariadb-server/files/patch-man__Makefile.in (props changed) head/databases/mdbtools/files/patch-src__sql__Makefile.am (props changed) head/databases/memcacheq/files/patch-bdb.c (props changed) head/databases/memcacheq/files/patch-configure (props changed) head/databases/metakit/files/patch-Makefile.in (props changed) head/databases/metakit/files/patch-configure (props changed) head/databases/mrtg-mysql-load/files/patch-mrtg-mysql-load (props changed) head/databases/msql/files/patch-aa (props changed) head/databases/msql/files/patch-ab (props changed) head/databases/msql/files/patch-ac (props changed) head/databases/msql/files/patch-ad (props changed) head/databases/msql/files/patch-ae (props changed) head/databases/msql/files/patch-af (props changed) head/databases/msql/files/patch-ag (props changed) head/databases/msql/files/patch-ah (props changed) head/databases/msql/files/patch-ai (props changed) head/databases/msql/files/patch-aj (props changed) head/databases/msql/files/patch-ak (props changed) head/databases/msql/files/patch-al (props changed) head/databases/msql/files/patch-am (props changed) head/databases/msql/files/patch-an (props changed) head/databases/msql/files/patch-ao (props changed) head/databases/msql/files/patch-ap (props changed) head/databases/msql/files/patch-aq (props changed) head/databases/msql/files/patch-ar (props changed) head/databases/msql/files/patch-as (props changed) head/databases/msql/files/patch-at (props changed) head/databases/msql/files/patch-au (props changed) head/databases/msql/files/patch-av (props changed) head/databases/msql/files/patch-aw (props changed) head/databases/msql/files/patch-ax (props changed) head/databases/msql/files/patch-ay (props changed) head/databases/msql/files/patch-az (props changed) head/databases/msql/files/patch-ba (props changed) head/databases/msql/files/patch-bb (props changed) head/databases/msql/files/patch-bc (props changed) head/databases/msql3/files/patch-Makefile.tmpl (props changed) head/databases/msql3/files/patch-acl.c (props changed) head/databases/msql3/files/patch-config.c (props changed) head/databases/msql3/files/patch-libmsql::Makefile.tmpl (props changed) head/databases/msql3/files/patch-main.c (props changed) head/databases/msql3/files/patch-main_broker.c (props changed) head/databases/msql3/files/patch-make-install (props changed) head/databases/msql3/files/patch-msql.conf (props changed) head/databases/msql3/files/patch-msqladmin.c (props changed) head/databases/msql3/files/patch-msqld::main::Makefile.tmpl (props changed) head/databases/msql3/files/patch-msqld::regexp::Makefile.tmpl (props changed) head/databases/msql3/files/patch-run-daemon (props changed) head/databases/msql3/files/patch-setup (props changed) head/databases/msql3/files/patch-site.mm.in (props changed) head/databases/mtop/files/patch-mtop.PL (props changed) head/databases/mysac/files/patch-Makefile (props changed) head/databases/mysac/files/patch-mysac.c (props changed) head/databases/mysac/files/patch-mysac_decode_field.c (props changed) head/databases/mysql++1/files/patch-configure (props changed) head/databases/mysql++3/files/patch-Makefile.in (props changed) head/databases/mysql++3/files/patch-lib__tcp_connection.cpp (props changed) head/databases/mysql++3/files/patch-lib_refcounted.h (props changed) head/databases/mysql-connector-c++/files/patch-CMakeLists.txt (props changed) head/databases/mysql-connector-c++/files/patch-cppconn_CMakeLists.txt (props changed) head/databases/mysql-connector-odbc/files/patch-CMakeLists.txt (props changed) head/databases/mysql-connector-odbc/files/patch-driver::execute.c (props changed) head/databases/mysql-proxy/files/patch-Makefile.in (props changed) head/databases/mysql-proxy/files/patch-examples-Makefile.in (props changed) head/databases/mysql-proxy/files/patch-lib-Makefile.in (props changed) head/databases/mysql-proxy/files/patch-lib-admin.lua (props changed) head/databases/mysql-proxy/files/patch-lib-reporter.lua (props changed) head/databases/mysql-udf-sys/files/patch-Makefile (props changed) head/databases/mysql-udf/files/patch-mysql_4.1 (props changed) head/databases/mysql-workbench51/files/patch-configure.in (props changed) head/databases/mysql-workbench51/files/patch-ext__yassl__Makefile.am (props changed) head/databases/mysql-workbench51/files/patch-ext__yassl__configure.in (props changed) head/databases/mysql-workbench51/files/patch-ext__yassl__taocrypt__Makefile.am (props changed) head/databases/mysql-workbench51/files/patch-ext__yassl__taocrypt__configure.in (props changed) head/databases/mysql-workbench51/files/patch-frontend__linux__workbench__mysql-workbench.in (props changed) head/databases/mysql-workbench51/files/patch-frontend__linux__workbench__toolbar_manager.cpp (props changed) head/databases/mysql-xql/files/patch-Makefile.in (props changed) head/databases/mysql-xql/files/patch-configure (props changed) head/databases/mysql2odbc/files/patch-configure (props changed) head/databases/mysql2odbc/files/patch-libfakesql.c (props changed) head/databases/mysql2odbc/files/patch-libfakesql.h (props changed) head/databases/mysql2odbc/files/patch-mtest.c (props changed) head/databases/mysql51-server/files/patch-Docs::Makefile.in (props changed) head/databases/mysql51-server/files/patch-Makefile.in (props changed) head/databases/mysql51-server/files/patch-configure (props changed) head/databases/mysql51-server/files/patch-extra_yassl_Makefile.in (props changed) head/databases/mysql51-server/files/patch-extra_yassl_taocrypt_Makefile.in (props changed) head/databases/mysql51-server/files/patch-include_my_libwrap.h (props changed) head/databases/mysql51-server/files/patch-include_my_tcpd.h (props changed) head/databases/mysql51-server/files/patch-include_myisam.h (props changed) head/databases/mysql51-server/files/patch-man::Makefile.in (props changed) head/databases/mysql51-server/files/patch-mysys_default.c (props changed) head/databases/mysql51-server/files/patch-scripts::Makefile.in (props changed) head/databases/mysql51-server/files/patch-scripts_mysqld_safe.sh (props changed) head/databases/mysql51-server/files/patch-sql::mysqld.cc (props changed) head/databases/mysql51-server/files/patch-support-files_Makefile.in (props changed) head/databases/mysql55-client/files/patch-CMakeLists.txt (props changed) head/databases/mysql55-client/files/patch-client_CMakeLists.txt (props changed) head/databases/mysql55-client/files/patch-extra_CMakeLists.txt (props changed) head/databases/mysql55-client/files/patch-extra_yassl_taocrypt_src_integer.cpp (props changed) head/databases/mysql55-client/files/patch-include_CMakeLists.txt (props changed) head/databases/mysql55-client/files/patch-include_my_compare.h (props changed) head/databases/mysql55-client/files/patch-include_myisam.h (props changed) head/databases/mysql55-client/files/patch-man_CMakeLists.txt (props changed) head/databases/mysql55-client/files/patch-mysys_default.c (props changed) head/databases/mysql55-client/files/patch-scripts_CMakeLists.txt (props changed) head/databases/mysql55-client/files/patch-support-files_CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-client_CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-cmake_plugin.cmake (props changed) head/databases/mysql55-server/files/patch-extra_CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-extra_yassl_taocrypt_src_integer.cpp (props changed) head/databases/mysql55-server/files/patch-include_CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-include_my_compare.h (props changed) head/databases/mysql55-server/files/patch-include_myisam.h (props changed) head/databases/mysql55-server/files/patch-libmysql_CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-libservices_CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-man_CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-mysys_default.c (props changed) head/databases/mysql55-server/files/patch-scripts_CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-scripts_mysqld_safe.sh (props changed) head/databases/mysql55-server/files/patch-sql_CMakeLists.txt (props changed) head/databases/mysql55-server/files/patch-sql_sql_trigger.cc (props changed) head/databases/mysql55-server/files/patch-sql_sql_view.cc (props changed) head/databases/mysql55-server/files/patch-sql_sys_vars.cc (props changed) head/databases/mysql55-server/files/patch-support-files_CMakeLists.txt (props changed) head/databases/mysql56-client/files/patch-CMakeLists.txt (props changed) head/databases/mysql56-client/files/patch-client_CMakeLists.txt (props changed) head/databases/mysql56-client/files/patch-extra_CMakeLists.txt (props changed) head/databases/mysql56-client/files/patch-extra_yassl_taocrypt_src_integer.cpp (props changed) head/databases/mysql56-client/files/patch-include_my_compare.h (props changed) head/databases/mysql56-client/files/patch-include_myisam.h (props changed) head/databases/mysql56-client/files/patch-man_CMakeLists.txt (props changed) head/databases/mysql56-client/files/patch-mysys_ssl_my_default.cc (props changed) head/databases/mysql56-client/files/patch-scripts_CMakeLists.txt (props changed) head/databases/mysql56-client/files/patch-support-files_CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-client_CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-cmake_plugin.cmake (props changed) head/databases/mysql56-server/files/patch-extra_CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-extra_yassl_taocrypt_src_integer.cpp (props changed) head/databases/mysql56-server/files/patch-include_CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-include_my_compare.h (props changed) head/databases/mysql56-server/files/patch-include_myisam.h (props changed) head/databases/mysql56-server/files/patch-libmysql_CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-libservices_CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-man_CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-mysys_ssl_my_default.cc (props changed) head/databases/mysql56-server/files/patch-scripts_CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-scripts_mysqld_safe.sh (props changed) head/databases/mysql56-server/files/patch-sql_CMakeLists.txt (props changed) head/databases/mysql56-server/files/patch-sql_sql_trigger.cc (props changed) head/databases/mysql56-server/files/patch-sql_sql_view.cc (props changed) head/databases/mysql56-server/files/patch-sql_sys_vars.cc (props changed) head/databases/mysql56-server/files/patch-support-files_CMakeLists.txt (props changed) head/databases/mysqlard/files/patch-aa (props changed) head/databases/mysqlard/files/patch-ab (props changed) head/databases/mysqlard/files/patch-ac (props changed) head/databases/mysqlard/files/patch-ad (props changed) head/databases/mysqlard/files/patch-ae (props changed) head/databases/mysqlard/files/patch-af (props changed) head/databases/mysqlard/files/patch-ag (props changed) head/databases/mysqlcppapi/files/patch-configure (props changed) head/databases/mysqlcppapi/files/patch-mysqlcppapi-2.0.pc.in (props changed) head/databases/mysqlcppapi/files/patch-mysqlcppapi-Connection.cc (props changed) head/databases/mysqlsniffer/files/patch-misc.c (props changed) head/databases/mysqlsniffer/files/patch-mysqlsniffer.c (props changed) head/databases/mysqlsniffer/files/patch-packet_handlers.c (props changed) head/databases/namazu2/files/patch-pl::conf.pl.in (props changed) head/databases/ocaml-sqlite3/files/patch-configure.ac (props changed) head/databases/opendbx/files/patch-Makefile.in (props changed) head/databases/oracle8-client/files/patch-freebsd-Makefile (props changed) head/databases/oracle8-client/files/patch-freebsd-oci8stub.c (props changed) head/databases/oracle8-client/files/patch-freebsd-redefine-syms.lst (props changed) head/databases/oracle_odbc_driver/files/patch-configure (props changed) head/databases/oracle_odbc_driver/files/patch-odbc (props changed) head/databases/oracle_odbc_driver/files/patch-src-oracle_functions.c (props changed) head/databases/oracle_odbc_driver/files/patch-src-string_functions.c (props changed) head/databases/p5-AnyEvent-Memcached/files/patch-lib__AnyEvent__Memcached.pm (props changed) head/databases/p5-DBD-FrontBase/files/patch-Makefile.PL (props changed) head/databases/p5-DBD-Pg/files/patch-Makefile.PL (props changed) head/databases/p5-DBD-SQLite/files/patch-dbdimp.h (props changed) head/databases/p5-DBD-cego/files/patch-CegoXS.h (props changed) head/databases/p5-DBIx-Class-ResultSet-HashRef/files/patch-Makefile.PL (props changed) head/databases/p5-DBIx-Password/files/patch-batch (props changed) head/databases/p5-DBIx-Recordset/files/patch-Makefile.PL (props changed) head/databases/p5-DBIx-SearchBuilder/files/patch-Makefile.PL (props changed) head/databases/p5-GDBM/files/patch-GDBM_File.pm (props changed) head/databases/p5-POE-Component-LaDBI/files/patch-Makefile.PL (props changed) head/databases/p5-Pg/files/patch-Pg.pm (props changed) head/databases/p5-Search-Namazu/files/patch-Makefile.PL (props changed) head/databases/p5-Tangram/files/patch-Makefile.PL (props changed) head/databases/percona-toolkit/files/patch-Makefile.PL (props changed) head/databases/percona56-client/files/patch-client_CMakeLists.txt (props changed) head/databases/percona56-client/files/patch-extra_CMakeLists.txt (props changed) head/databases/percona56-client/files/patch-extra_yassl_taocrypt_src_integer.cpp (props changed) head/databases/percona56-client/files/patch-include_my_compare.h (props changed) head/databases/percona56-client/files/patch-include_myisam.h (props changed) head/databases/percona56-client/files/patch-man_CMakeLists.txt (props changed) head/databases/percona56-client/files/patch-mysys_ssl_my_default.cc (props changed) head/databases/percona56-client/files/patch-scripts_CMakeLists.txt (props changed) head/databases/percona56-client/files/patch-support-files_CMakeLists.txt (props changed) head/databases/percona56-server/files/patch-CMakeLists.txt (props changed) head/databases/percona56-server/files/patch-cmake_plugin.cmake (props changed) head/databases/percona56-server/files/patch-extra_CMakeLists.txt (props changed) head/databases/percona56-server/files/patch-extra_yassl_taocrypt_src_integer.cpp (props changed) head/databases/percona56-server/files/patch-include_CMakeLists.txt (props changed) head/databases/percona56-server/files/patch-include_my_compare.h (props changed) head/databases/percona56-server/files/patch-include_myisam.h (props changed) head/databases/percona56-server/files/patch-libservices_CMakeLists.txt (props changed) head/databases/percona56-server/files/patch-man_CMakeLists.txt (props changed) head/databases/percona56-server/files/patch-mysys_ssl_my_default.cc (props changed) head/databases/percona56-server/files/patch-scripts_CMakeLists.txt (props changed) head/databases/percona56-server/files/patch-scripts_mysqld_safe.sh (props changed) head/databases/percona56-server/files/patch-sql_sys_vars.cc (props changed) head/databases/percona56-server/files/patch-support-files_CMakeLists.txt (props changed) head/databases/pg_filedump/files/patch-Makefile (props changed) head/databases/pg_statsinfo/files/patch-archive_pglog.sh (props changed) head/databases/pg_statsinfo/files/patch-libstatsinfo.c (props changed) head/databases/pg_statsinfo/files/patch-port.c (props changed) head/databases/pgadmin3/files/patch-plugins.d-plugins.ini (props changed) head/databases/pgagent/files/patch-CMakeLists.txt (props changed) head/databases/pgbouncer/files/patch-keepalive (props changed) head/databases/pgfouine/files/patch-pgfouine.php (props changed) head/databases/pgfouine/files/patch-pgfouine_vacuum.php (props changed) head/databases/pgpool-II-22/files/patch-recovery.c (props changed) head/databases/pgpool-II-23/files/patch-recovery.c (props changed) head/databases/pgpool-II-30/files/patch-recovery.c (props changed) head/databases/pgpool-II/files/patch-recovery.c (props changed) head/databases/pgpoolAdmin/files/patch-status.tpl (props changed) head/databases/pgtop/files/patch-pgtop (props changed) head/databases/pgtune/files/patch-pgtune (props changed) head/databases/php-adodb-ext/files/extra-patch-adodb.c (props changed) head/databases/php5-dba/files/patch-config.m4 (props changed) head/databases/php5-mysqli/files/patch-php_mysqli_structs.h (props changed) head/databases/php5-odbc/files/patch-config.m4 (props changed) head/databases/php5-pgsql/files/patch-pgsql.c (props changed) head/databases/php52-dba/files/patch-config.m4 (props changed) head/databases/php52-oci8/files/patch-config.m4 (props changed) head/databases/php52-odbc/files/patch-config.m4 (props changed) head/databases/php52-pdo_oci/files/patch-config.m4 (props changed) head/databases/php52-pdo_sqlite/files/patch-sqlite_statement.c (props changed) head/databases/php52-pgsql/files/patch-pgsql.c (props changed) head/databases/php52-sqlite/files/patch-config.m4 (props changed) head/databases/php53-dba/files/patch-config.m4 (props changed) head/databases/php53-mysqli/files/patch-php_mysqli_structs.h (props changed) head/databases/php53-odbc/files/patch-config.m4 (props changed) head/databases/php53-pgsql/files/patch-pgsql.c (props changed) head/databases/php53-redis/files/patch-echo-nothrow (props changed) head/databases/php53-sqlite/files/patch-config.m4 (props changed) head/databases/php55-dba/files/patch-config.m4 (props changed) head/databases/php55-mysqli/files/patch-php_mysqli_structs.h (props changed) head/databases/php55-odbc/files/patch-config.m4 (props changed) head/databases/php55-pgsql/files/patch-pgsql.c (props changed) head/databases/postgresql-jdbc/files/patch-build-xml (props changed) head/databases/postgresql-libpqxx/files/patch-Makefile.in (props changed) head/databases/postgresql-libpqxx3/files/patch-Makefile.in (props changed) head/databases/postgresql-pllua/files/patch-Makefile (props changed) head/databases/postgresql-plv8js/files/patch-Makefile (props changed) head/databases/postgresql84-server/files/extra-patch-icu4 (props changed) head/databases/postgresql84-server/files/patch-doc-Makefile (props changed) head/databases/postgresql84-server/files/patch-plpython-Makefile (props changed) head/databases/postgresql84-server/files/patch-src-backend-Makefile (props changed) head/databases/postgresql84-server/files/patch-src:backend:utils:misc:postgresql.conf.sample (props changed) head/databases/postgresql90-server/files/extra-patch-icu4 (props changed) head/databases/postgresql90-server/files/patch-doc-Makefile (props changed) head/databases/postgresql90-server/files/patch-doc-src-sgml-Makefile (props changed) head/databases/postgresql90-server/files/patch-plpython-Makefile (props changed) head/databases/postgresql90-server/files/patch-src-backend-Makefile (props changed) head/databases/postgresql90-server/files/patch-src:backend:utils:misc:postgresql.conf.sample (props changed) head/databases/postgresql91-server/files/patch-doc-Makefile (props changed) head/databases/postgresql91-server/files/patch-doc-src-sgml-Makefile (props changed) head/databases/postgresql91-server/files/patch-plpython-Makefile (props changed) head/databases/postgresql91-server/files/patch-src-backend-Makefile (props changed) head/databases/postgresql91-server/files/patch-src:backend:utils:misc:postgresql.conf.sample (props changed) head/databases/postgresql92-server/files/patch-doc-Makefile (props changed) head/databases/postgresql92-server/files/patch-doc-src-sgml-Makefile (props changed) head/databases/postgresql92-server/files/patch-plpython-Makefile (props changed) head/databases/postgresql92-server/files/patch-src-backend-Makefile (props changed) head/databases/postgresql92-server/files/patch-src:backend:utils:misc:postgresql.conf.sample (props changed) head/databases/postgresql93-server/files/patch-doc-Makefile (props changed) head/databases/postgresql93-server/files/patch-doc-src-sgml-Makefile (props changed) head/databases/postgresql93-server/files/patch-plpython-Makefile (props changed) head/databases/postgresql93-server/files/patch-src-backend-Makefile (props changed) head/databases/postgresql93-server/files/patch-src:backend:utils:misc:postgresql.conf.sample (props changed) head/databases/postgresql_autodoc/files/patch-Makefile (props changed) head/databases/puredb/files/patch-example_read.c (props changed) head/databases/pxlib/files/patch-Makefile.in (props changed) head/databases/pxtools/files/patch-pxconvert.c (props changed) head/databases/py-bsddb/files/extra-patch-py26-_bsddb.c (props changed) head/databases/py-bsddb/files/extra-patch-py27-_bsddb.c (props changed) head/databases/py-bsddb3/files/patch-setup2.py (props changed) head/databases/py-bsddb3/files/patch-setup3.py (props changed) head/databases/py-carbon/files/patch-setup.cfg (props changed) head/databases/py-forgetsql/files/patch-lib-forgetSQL.py (props changed) head/databases/py-odbc/files/patch-setup-libs (props changed) head/databases/py-pytc/files/patch-setyp.py (props changed) head/databases/pyspatialite/files/patch-src-connection.h (props changed) head/databases/qdbm/files/patch-Makefile.in (props changed) head/databases/rdb/files/patch-aa (props changed) head/databases/rdfdb/files/patch-librdf::db.c (props changed) head/databases/rdfdb/files/patch-librdf::rdflib.c (props changed) head/databases/rdfdb/files/patch-makefile (props changed) head/databases/rdfdb/files/patch-query-processQuery.c (props changed) head/databases/redis-devel/files/patch-redis.conf (props changed) head/databases/redis/files/patch-deps-hiredis-Makefile (props changed) head/databases/redis/files/patch-redis.conf (props changed) head/databases/redis/files/patch-src-Makefile (props changed) head/databases/redis/files/patch-src-config.h (props changed) head/databases/redis/files/patch-src-mkreleasehdr.sh (props changed) head/databases/riak/files/patch-deps-eleveldb-c_src-leveldb-db-version_set.cc (props changed) head/databases/riak/files/patch-deps-erlang_js-c_src-patches-js-src-config-FreeBSD.mk.patch (props changed) head/databases/riak/files/patch-deps-node_package-priv-base-env.sh (props changed) head/databases/riak/files/patch-rel-reltool.config (props changed) head/databases/riak/files/patch-rel-vars.config (props changed) head/databases/rrdtool/files/patch-bindings-Makefile.in (props changed) head/databases/rrdtool/files/patch-doc-Makefile.in (props changed) head/databases/rrdtool/files/patch-examples-Makefile.in (props changed) head/databases/rrdtool/files/patch-src-rrd_open.c (props changed) head/databases/rrdtool10/files/patch-aa (props changed) head/databases/rrdtool10/files/patch-ac (props changed) head/databases/rrdtool10/files/patch-ae (props changed) head/databases/rrdtool10/files/patch-af (props changed) head/databases/rrdtool10/files/patch-ag (props changed) head/databases/rrdtool10/files/patch-ak (props changed) head/databases/rrdtool12/files/patch-bindings-Makefile.in (props changed) head/databases/rrdtool12/files/patch-configure (props changed) head/databases/rrdtool12/files/patch-doc-Makefile.in (props changed) head/databases/rrdtool12/files/patch-examples-Makefile.in (props changed) head/databases/ruby-dbi/files/patch-lib+dbi.rb (props changed) head/databases/ruby-frontbase/files/patch-extconf.rb (props changed) head/databases/ruby-frontbase/files/patch-frontbase.c (props changed) head/databases/ruby-o_dbm/files/patch-test-o_dbm.rb (props changed) head/databases/ruby-oci8/files/patch-ext_oci8_oraconf.rb (props changed) head/databases/ruby-qdbm/files/patch-Makefile.in (props changed) head/databases/ruby-qdbm/files/patch-curia-mod_curia.c (props changed) head/databases/ruby-qdbm/files/patch-depot-mod_depot.c (props changed) head/databases/ruby-qdbm/files/patch-villa-mod_villa.c (props changed) head/databases/ruby-rdbc1/files/patch-pg_rdbc1.rb (props changed) head/databases/sharedance/files/patch-src-sharedanced.c (props changed) head/databases/sqlite2/files/patch-Makefile.in (props changed) head/databases/sqlrelay/files/patch-Makefile (props changed) head/databases/sqlrelay/files/patch-configure.in (props changed) head/databases/sqsh/files/patch-configure (props changed) head/databases/sqsh/files/patch-doc::global.sqshrc (props changed) head/databases/sqsh/files/patch-src::Makefile.in (props changed) head/databases/sqsh/files/patch-src_var_date_c (props changed) head/databases/sybtcl/files/patch-aa (props changed) head/databases/sybtcl/files/patch-man (props changed) head/databases/sybtcl/files/patch-sign_on (props changed) head/databases/sybtcl/files/patch-sp_who (props changed) head/databases/tcl-Mysql/files/patch-aa (props changed) head/databases/tcl-Mysql/files/patch-ab (props changed) head/databases/tcl-Mysql/files/patch-const-error (props changed) head/databases/tcl-Mysql/files/patch-real_connect (props changed) head/databases/tcl-Mysql/files/patch-redundant-defaults (props changed) head/databases/tdb/files/patch-buildtools__wafsamba__samba_install.py (props changed) head/databases/tdb/files/patch-wscript (props changed) head/databases/tokyocabinet/files/extra-patch-Makefile.in (props changed) head/databases/tora/files/patch-config_m4_oracle.m4 (props changed) head/databases/tora/files/patch-configure (props changed) head/databases/tora/files/patch-configure.ac (props changed) head/databases/tora/files/patch-doc_Makefile.am (props changed) head/databases/tora/files/patch-doc_help_tora.texi (props changed) head/databases/tora/files/patch-src_Makefile.am (props changed) head/databases/tora/files/patch-src_tooracleconnection.cpp (props changed) head/databases/typhoon/files/patch-aa (props changed) head/databases/typhoon/files/patch-ac (props changed) head/databases/typhoon/files/patch-ad (props changed) head/databases/typhoon/files/patch-ae (props changed) head/databases/typhoon/files/patch-af (props changed) head/databases/typhoon/files/patch-ag (props changed) head/databases/typhoon/files/patch-ah (props changed) head/databases/useracc/files/patch-src::useracc.c (props changed) head/databases/usogres/files/patch-Makefile.in (props changed) head/databases/usogres/files/patch-SysLog.cc (props changed) head/databases/usogres/files/patch-exception.cc (props changed) head/databases/usogres/files/patch-exception.h (props changed) head/databases/usogres/files/patch-lock.cc (props changed) head/databases/usogres/files/patch-protocol.cc (props changed) head/databases/usogres/files/patch-protocol.h (props changed) head/databases/usogres/files/patch-rc.h (props changed) head/databases/virtuoso/files/patch-binsrc-tests-Makefile.in (props changed) head/databases/virtuoso/files/patch-binsrc-tests-biftest-thook.sh (props changed) head/databases/virtuoso/files/patch-configure (props changed) head/databases/xapian-core/files/patch-Makefile.in (props changed) head/databases/xapian-core10/files/patch-Makefile.in (props changed) head/databases/xtrabackup/files/patch-build.sh (props changed) head/databases/yasql/files/patch-yasql.in (props changed) head/deskutils/adesklets/files/patch-configure (props changed) head/deskutils/adesklets/files/patch-scripting-python-Makefile.in (props changed) head/deskutils/akamaru/files/patch-Makefile (props changed) head/deskutils/akamaru/files/patch-populate-dock.sh (props changed) head/deskutils/alacarte/files/patch-Alacarte_util.py (props changed) head/deskutils/aspostit/files/patch-aa (props changed) head/deskutils/autocutsel/files/patch-Makefile.in (props changed) head/deskutils/babytrans/files/patch-it.po (props changed) head/deskutils/babytrans/files/patch-src::main.cc (props changed) head/deskutils/cal/files/patch-aa (props changed) head/deskutils/cal/files/patch-ab (props changed) head/deskutils/cal/files/patch-ac (props changed) head/deskutils/cartotheque/files/patch-CardView.m (props changed) head/deskutils/charmtimetracker/files/patch-CMakeLists.txt (props changed) head/deskutils/checkrdf/files/patch-CheckRDF.hs (props changed) head/deskutils/checkrdf/files/patch-Main.hs (props changed) head/deskutils/conkyemail/files/patch-conkyEmail (props changed) head/deskutils/conkyemail/files/patch-conkyEmail.py (props changed) head/deskutils/conkyforecast/files/patch-conkyForecast (props changed) head/deskutils/conkyforecast/files/patch-conkyForecast-SunsetSunriseCountdown (props changed) head/deskutils/conkyforecast/files/patch-conkyForecast.py (props changed) head/deskutils/conkyforecast/files/patch-setup.py (props changed) head/deskutils/cycle/files/patch-cal_year.py (props changed) head/deskutils/cycle/files/patch-cycle.py (props changed) head/deskutils/deskbar-applet/files/patch-deskbar_core_Utils.py (props changed) head/deskutils/deskbar-applet/files/patch-deskbar_deskbar-applet.py (props changed) head/deskutils/devd-notifier/files/patch-config.mk (props changed) head/deskutils/easystroke/files/patch-Makefile (props changed) head/deskutils/everygui/files/patch-setup.py (props changed) head/deskutils/fbreader/files/patch-zlibrary__src__unix__time__ZLUnixTime.cpp (props changed) head/deskutils/fusenshi/files/patch-src-fio_filemanager.cpp (props changed) head/deskutils/fusenshi/files/patch-src_wnd_fusenshieditdialog.cpp (props changed) head/deskutils/fusenshi/files/patch-src_wnd_propertydialog.cpp (props changed) head/deskutils/gaddr/files/patch-aa (props changed) head/deskutils/gaddr/files/patch-ab (props changed) head/deskutils/gdesklets/files/patch-Controls::ArrayBuffer::__init__.py (props changed) head/deskutils/gdesklets/files/patch-libdesklets-system-gtop.c (props changed) head/deskutils/gimmie/files/patch-configure (props changed) head/deskutils/gimmie/files/patch-gimmie-gimmie_computer.py (props changed) head/deskutils/gimmie/files/patch-gimmie-gimmie_util.py (props changed) head/deskutils/gkrellm-reminder2/files/patch-Makefile (props changed) head/deskutils/glipper/files/patch-glipper__glipper.py (props changed) head/deskutils/glipper/files/patch-po__Makefile.in.in (props changed) head/deskutils/global-menu/files/patch-makefile.am (props changed) head/deskutils/global-menu/files/patch-makefile.in (props changed) head/deskutils/global-menu/files/patch-menuitem.c (props changed) head/deskutils/gmcal/files/patch-aa (props changed) head/deskutils/gmcal/files/patch-ab (props changed) head/deskutils/gnome-blog/files/patch-Makefile.in (props changed) head/deskutils/gnome-main-menu/files/patch-application-browser_src_application-browser.c (props changed) head/deskutils/gnome-main-menu/files/patch-configure (props changed) head/deskutils/gnome-main-menu/files/patch-libslab_directory-tile.c (props changed) head/deskutils/gnome-main-menu/files/patch-main-menu_src_Makefile.in (props changed) head/deskutils/gnome-main-menu/files/patch-main-menu_src_main-menu-ui.c (props changed) head/deskutils/gnome-main-menu/files/patch-main-menu_src_main-menu.c (props changed) head/deskutils/gnome-utils/files/patch-gsearchtool_gsearchtool-support.c (props changed) head/deskutils/gnome-utils/files/patch-logview_logview-manager.c (props changed) head/deskutils/gnome-utils/files/patch-logview_logview-utils.c (props changed) head/deskutils/gnote/files/patch-configure (props changed) head/deskutils/growl-for-linux/files/patch-configure.ac (props changed) head/deskutils/gruler/files/patch-Makefile.in (props changed) head/deskutils/gruler/files/patch-gruler.desktop.in (props changed) head/deskutils/gruler/files/patch-src::Makefile.in (props changed) head/deskutils/gtkjournal/files/patch-bfcryptfile.cpp (props changed) head/deskutils/gtodo/files/patch-libgtodo-libgtodo.c (props changed) head/deskutils/gxmessage/files/patch-po-Makefile.in.in (props changed) head/deskutils/hamster-applet/files/patch-data_wscript_build (props changed) head/deskutils/hamster-applet/files/patch-src_hamster-service (props changed) head/deskutils/hamster-applet/files/patch-src_hamster_i18n.py (props changed) head/deskutils/helpviewer/files/patch-mainWindowController.m (props changed) head/deskutils/hot-babe/files/patch-Makefile (props changed) head/deskutils/howm/files/patch-howm-vars.el (props changed) head/deskutils/ical/files/patch-aa (props changed) head/deskutils/ical/files/patch-ab (props changed) head/deskutils/ical/files/patch-ac (props changed) head/deskutils/ical/files/patch-ad (props changed) head/deskutils/ical/files/patch-ae (props changed) head/deskutils/ical/files/patch-af (props changed) head/deskutils/ical/files/patch-config.h.in (props changed) head/deskutils/ical/files/patch-configure (props changed) head/deskutils/ical/files/patch-dateeditor.C (props changed) head/deskutils/ical/files/patch-dispatch.C (props changed) head/deskutils/ical/files/patch-ical.h (props changed) head/deskutils/ical/files/patch-main.C (props changed) head/deskutils/ical/files/patch-object.C (props changed) head/deskutils/ical/files/patch-pref.tcl (props changed) head/deskutils/ithought/files/patch-src::Makefile.in (props changed) head/deskutils/jjclient/files/patch-Makefile (props changed) head/deskutils/kchmviewer-kde4/files/patch-packages__CMakeLists.txt (props changed) head/deskutils/kchmviewer-kde4/files/patch-src__CMakeLists.txt (props changed) head/deskutils/kdepim4-runtime/files/patch-CMakeLists.txt (props changed) head/deskutils/kdepim44-runtime/files/patch-CMakeLists.txt (props changed) head/deskutils/kdepim44-runtime/files/patch-resources__kolabproxy__CMakeLists.txt (props changed) head/deskutils/kdepim44-runtime/files/patch-xml__CMakeLists.txt (props changed) head/deskutils/kdepim44/files/patch-kmail__CMakeLists.txt (props changed) head/deskutils/kdepim44/files/patch-kmail__avscripts__kmail_clamav.sh (props changed) head/deskutils/kdepimlibs4/files/patch-cmake-modules_FindLibical.cmake (props changed) head/deskutils/kdepimlibs4/files/patch-kcalcore__ConfigureChecks.cmake (props changed) head/deskutils/kdeplasma-addons/files/patch-CMakeLists.txt (props changed) head/deskutils/kupfer/files/patch-wscript (props changed) head/deskutils/libgcal/files/patch-CMakeLists-txt (props changed) head/deskutils/libgcal/files/patch-src_atom_parser.c (props changed) head/deskutils/libopensync-plugin-evolution2/files/patch-src_Makefile.in (props changed) head/deskutils/libopensync-plugin-synce-legacy/files/patch-src_synce_file.c (props changed) head/deskutils/ljcharm/files/patch-setup.py (props changed) head/deskutils/ljit/files/patch-src+callbacks.c (props changed) head/deskutils/ljit/files/patch-src+config_dialog.c (props changed) head/deskutils/ljit/files/patch-src+interface.c (props changed) head/deskutils/logjam/files/patch-src-get_cmd_out.c (props changed) head/deskutils/logjam/files/patch-src-menu.c (props changed) head/deskutils/mate-utils/files/patch-gsearchtool_gsearchtool-support.c (props changed) head/deskutils/mate-utils/files/patch-logview_logview-manager.c (props changed) head/deskutils/mate-utils/files/patch-logview_logview-utils.c (props changed) head/deskutils/mcal/files/patch-aa (props changed) head/deskutils/mcal/files/patch-ab (props changed) head/deskutils/mdh/files/patch-lib-gini-gini.c (props changed) head/deskutils/mencal/files/patch-mencal (props changed) head/deskutils/mrundlg/files/patch-mrundlg.c (props changed) head/deskutils/multisync/files/patch-src-syncengine.c (props changed) head/deskutils/myitcrm/files/patch-bug263 (props changed) head/deskutils/narval/files/patch-apycot.py (props changed) head/deskutils/nautilus-locked-folder/files/patch-configure (props changed) head/deskutils/nautilus-locked-folder/files/patch-src_Makefile.in (props changed) head/deskutils/nautilus-locked-folder/files/patch-src_lockedfolder.h (props changed) head/deskutils/nautilus-sendto/files/patch-configure (props changed) head/deskutils/notify-osd/files/patch-tests_test-synchronous.c (props changed) head/deskutils/notify-osd/files/patch-tests_test-withlib.c (props changed) head/deskutils/ontv/files/patch-bin_ontv (props changed) head/deskutils/ontv/files/patch-ontv__init__.py.in (props changed) head/deskutils/ontv/files/patch-ontv_dialogs.py (props changed) head/deskutils/orage/files/extra-patch-configure (props changed) head/deskutils/org-mode.el/files/patch-Makefile (props changed) head/deskutils/osmo/files/patch-src__check_events.c (props changed) head/deskutils/plan/files/patch-Makefile (props changed) head/deskutils/plan/files/patch-servmenu.c (props changed) head/deskutils/plan/files/patch-sublist.c (props changed) head/deskutils/plasma-applet-panelspacer/files/patch-CMakeLists.txt (props changed) head/deskutils/plasma-applet-playwolf/files/patch-infomanager.cpp (props changed) head/deskutils/plasma-applet-teacooker/files/patch-CMakeLists.txt (props changed) head/deskutils/plasma-applet-teacooker/files/patch-plasma-teacooker.cpp (props changed) head/deskutils/preferences/files/patch-Keyboard.m (props changed) head/deskutils/pybookreader/files/patch-setup.py (props changed) head/deskutils/pypanel/files/patch-pypanel (props changed) head/deskutils/pypanel/files/patch-pypanelrc (props changed) head/deskutils/qorganizer/files/patch-qOrganizer-qt-4.5.0 (props changed) head/deskutils/qrfcview/files/patch-src-mainwindow.cpp (props changed) head/deskutils/remember.el/files/patch-Makefile (props changed) head/deskutils/remember.el/files/patch-Makefile.defs (props changed) head/deskutils/remind/files/patch-src_Makefile (props changed) head/deskutils/splashsetter/files/patch-splashsetter.desktop (props changed) head/deskutils/steadyflow/files/patch-install.cmake (props changed) head/deskutils/superswitcher/files/patch-src__xinerama.c (props changed) head/deskutils/taskcoach/files/patch-setup.py (props changed) head/deskutils/teapot/files/patch-CMakeLists.txt (props changed) head/deskutils/thinkingrock/files/patch-bin_tr (props changed) head/deskutils/tpb/files/patch-Makefile.in (props changed) head/deskutils/tpb/files/patch-man-tpb.1 (props changed) head/deskutils/tpb/files/patch-src-Makefile.in (props changed) head/deskutils/tpb/files/patch-src-cfg.c (props changed) head/deskutils/tpb/files/patch-src-cfg.h (props changed) head/deskutils/tpb/files/patch-src-tpb.c (props changed) head/deskutils/tpb/files/patch-src-tpb.h (props changed) head/deskutils/vboxgtk/files/patch-bin_vboxgtk (props changed) head/deskutils/vboxgtk/files/patch-vboxgtk___init__.py (props changed) head/deskutils/vnc2flv/files/patch-rfb.py (props changed) head/deskutils/vym/files/patch-vym.pro (props changed) head/deskutils/wammu/files/patch-setup.py (props changed) head/deskutils/wmpinboard/files/patch-configure (props changed) head/deskutils/wmpinboard/files/patch-src::misc.c (props changed) head/deskutils/wmpinboard/files/patch-src::wmpinboard.c (props changed) head/deskutils/wmpinboard/files/patch-src::xmisc.c (props changed) head/deskutils/wmpinboard/files/patch-xmisc.c (props changed) head/deskutils/wyrd/files/patch-curses_configure (props changed) head/deskutils/x-tile/files/patch-x-tile (props changed) head/deskutils/xcalendar/files/patch-aa (props changed) head/deskutils/xcalendar/files/patch-ab (props changed) head/deskutils/xcalendar/files/patch-ac (props changed) head/deskutils/xcalendar/files/patch-ad (props changed) head/deskutils/xcalendar/files/patch-af (props changed) head/deskutils/xcalendar/files/patch-ag (props changed) head/deskutils/xfce4-notification-daemon/files/patch-src__daemon__daemon.c (props changed) head/deskutils/xfce4-notification-daemon/files/patch-src__daemon__stack.c (props changed) head/deskutils/xfce4-notification-daemon/files/patch-src__settings__main.c (props changed) head/deskutils/xmaddressbook/files/patch-aa (props changed) head/deskutils/xmdiary/files/patch-SigHandler.c (props changed) head/deskutils/xmdiary/files/patch-aa (props changed) head/deskutils/xmdiary/files/patch-ab (props changed) head/deskutils/xmdiary/files/patch-ac (props changed) head/deskutils/xneur/files/patch-etc-Makefile.in (props changed) head/deskutils/xneur/files/patch-lib__config__xnconfig_memory.c (props changed) head/deskutils/xpad/files/patch-src-xpad-pad.c (props changed) head/deskutils/xpostit/files/patch-aa (props changed) head/deskutils/xpostitPlus/files/patch-aa (props changed) head/deskutils/xpostitPlus/files/patch-notes.c (props changed) head/deskutils/xrolo/files/patch-aa (props changed) head/deskutils/xrolo/files/patch-ab (props changed) head/deskutils/xrolo/files/patch-ac (props changed) head/deskutils/xrolo/files/patch-ad (props changed) head/deskutils/xrolo/files/patch-ae (props changed) head/deskutils/xrolo/files/patch-af (props changed) head/devel/ElectricFence/files/patch-aa (props changed) head/devel/ElectricFence/files/patch-ab (props changed) head/devel/ElectricFence/files/patch-ef.sh (props changed) head/devel/ElectricFence/files/patch-efence.c (props changed) head/devel/ElectricFence/files/patch-longjmp (props changed) head/devel/ElectricFence/files/patch-mmap-size (props changed) head/devel/ElectricFence/files/patch-vaarg (props changed) head/devel/ORBit2/files/patch-ab (props changed) head/devel/ORBit2/files/patch-src::orb::util::Makefile.in (props changed) head/devel/ORBit2/files/patch-src_orb_orb-core_orbit-typelib.c (props changed) head/devel/ace/files/patch-ace-os_include-os_pthread.h (props changed) head/devel/ace/files/patch-ace__OS_NS_Thread.h (props changed) head/devel/ace/files/patch-ace__OS_NS_netdb.inl (props changed) head/devel/ace/files/patch-ace__OS_NS_signal.h (props changed) head/devel/adabooch/files/patch-demo-makefile (props changed) head/devel/adabooch/files/patch-test-makefile (props changed) head/devel/adasdl/files/patch-AdaGL-make.conf_x11 (props changed) head/devel/adasdl/files/patch-AdaSDL-make.conf_x11 (props changed) head/devel/adasdl/files/patch-AdaSDL_framebuff-make.conf_x11 (props changed) head/devel/adasdl/files/patch-AdaSDL_framebuff-sdltests-Makefile (props changed) head/devel/adasdl/files/patch-AdaSDL_image-make.conf_x11 (props changed) head/devel/adasdl/files/patch-AdaSDL_mixer-make.conf_x11 (props changed) head/devel/adime/files/patch-misc-makefile.all (props changed) head/devel/adime/files/patch-misc-makefile.uni (props changed) head/devel/afay/files/patch-afay_aflex_src_gnat_unix_tognat (props changed) head/devel/afay/files/patch-afay_ayacc_src_gnat_unix_tognat (props changed) head/devel/android-tools-adb/files/patch-get_my_path_freebsd.c (props changed) head/devel/android-tools-adb/files/patch-usb_libusb.c (props changed) head/devel/anjuta/files/patch-Makefile.in (props changed) head/devel/anjuta/files/patch-doc::Makefile.in (props changed) head/devel/anjuta/files/patch-libanjuta_anjuta-launcher.c (props changed) head/devel/anjuta/files/patch-plugins_gdb_debugger.c (props changed) head/devel/anjuta/files/patch-plugins_symbol-db_symbol-db-engine-core.c (props changed) head/devel/anjuta/files/patch-plugins_symbol-db_symbol-db-prefs.h (props changed) head/devel/antlr/files/patch-configure (props changed) head/devel/antlr/files/patch-lib::cpp::antlr::ANTLRException.hpp (props changed) head/devel/antlr/files/patch-lib::cpp::antlr::CharBuffer.hpp (props changed) head/devel/antlr/files/patch-lib::cpp::src::ASTFactory.cpp (props changed) head/devel/apiextractor/files/patch-CMakeLists.txt (props changed) head/devel/apiextractor/files/patch-data__CMakeLists.txt (props changed) head/devel/apr2/files/patch-build__apr_hints.m4 (props changed) head/devel/apr2/files/patch-build__iconv.m4 (props changed) head/devel/apr2/files/patch-buildconf (props changed) head/devel/argp-standalone/files/patch-Makefile.am (props changed) head/devel/argp-standalone/files/patch-configure.ac (props changed) head/devel/argp-standalone/files/patch-testsuite_Makefile.am (props changed) head/devel/arm-eabi-binutils/files/patch-binutils_readelf.c (props changed) head/devel/as31/files/patch-Makefile (props changed) head/devel/asdlgen/files/patch-Makefile.in (props changed) head/devel/asdlgen/files/patch-README.sgml (props changed) head/devel/asdlgen/files/patch-configure (props changed) head/devel/asdlgen/files/patch-src_haskell_SexpLex.hs (props changed) head/devel/asdlgen/files/patch-src_haskell_StdPkl.hs (props changed) head/devel/asdlgen/files/patch-src_haskell_StdPrimsUtil.hs (props changed) head/devel/asdlgen/files/patch-src_icon_libasdl.icn (props changed) head/devel/asdlgen/files/patch-src_java_asts_stdpkl_PklJava.java (props changed) head/devel/asdlgen/files/patch-src_java_asts_stdpkl_g.java (props changed) head/devel/asdlgen/files/patch-src_java_asts_stdprims_g.java (props changed) head/devel/asdlgen/files/patch-src_java_asts_stdprims_identifier.java (props changed) head/devel/asdlgen/files/patch-src_java_asts_stdtypes_g.java (props changed) head/devel/asdlgen/files/patch-src_misc_sml-batch.in (props changed) head/devel/asdlgen/files/patch-src_sml_main_export.sml (props changed) head/devel/asdlgen/files/patch-src_sml_main_lib-files.sml (props changed) head/devel/asdlgen/files/patch-src_sml_test_harness.sml (props changed) head/devel/asdlgen/files/patch-src_sml_translate_oo_java-pp.sml (props changed) head/devel/asdlgen/files/patch-src_sml_translate_support_idmaps.sml (props changed) head/devel/asdlgen/files/patch-src_sml_translate_support_mk-file-set.sml (props changed) head/devel/asdlgen/files/patch-src_sml_util_misc_file-set.sml (props changed) head/devel/asl/files/patch-ac (props changed) head/devel/asl/files/patch-ad (props changed) head/devel/asmutils/files/patch-lib_testm.c (props changed) head/devel/astah-community/files/patch-astah (props changed) head/devel/astah-community/files/patch-astah-command.sh (props changed) head/devel/autoconf/files/patch-autoconf.texi (props changed) head/devel/autoconf/files/patch-doc-Makefile.in (props changed) head/devel/autoconf213/files/patch-Makefile.in (props changed) head/devel/autoconf213/files/patch-acspecific.m4 (props changed) head/devel/autoconf213/files/patch-autoconf.sh (props changed) head/devel/autoconf213/files/patch-autoconf.texi (props changed) head/devel/autoconf213/files/patch-autohader.sh (props changed) head/devel/autoconf213/files/patch-autoupdate.sh (props changed) head/devel/autogen/files/patch-autoopts-Makefile.in (props changed) head/devel/automake/files/patch-doc::automake.texi (props changed) head/devel/automake14/files/patch-Makefile.in (props changed) head/devel/automake14/files/patch-automake.texi (props changed) head/devel/automoc4/files/patch-Automoc4Config.cmake (props changed) head/devel/automoc4/files/patch-CMakeLists.txt (props changed) head/devel/avltree/files/patch-aa (props changed) head/devel/avr-binutils/files/patch-300-binutils-2.20.1-avr-size (props changed) head/devel/avr-binutils/files/patch-301-binutils-2.20.1-avr-coff (props changed) head/devel/avr-binutils/files/patch-302-binutils-2.20.1-new-sections (props changed) head/devel/avr-binutils/files/patch-303-binutils-2.20.1-as-dwarf (props changed) head/devel/avr-binutils/files/patch-304-binutils-2.20.1-dwarf2-AVRStudio-workaround (props changed) head/devel/avr-binutils/files/patch-305-binutils-2.20.1-assembler-options (props changed) head/devel/avr-binutils/files/patch-400-binutils-2.20.1-xmega (props changed) head/devel/avr-binutils/files/patch-401-binutils-2.20.1-new-devices (props changed) head/devel/avr-binutils/files/patch-402-binutils-2.20.1-avrtiny10 (props changed) head/devel/avr-binutils/files/patch-403-binutils-2.20.1-xmega128a1u-64a1u (props changed) head/devel/avr-binutils/files/patch-404-binutils-2.20.1-atxmega16x1-32x1 (props changed) head/devel/avr-binutils/files/patch-405-binutils-2.20.1-atxmega128b1 (props changed) head/devel/avr-binutils/files/patch-406-binutils-2.20.1-atxmega256a3bu (props changed) head/devel/avr-binutils/files/patch-407-binutils-2.20.1-at90pwm161 (props changed) head/devel/avr-binutils/files/patch-408-binutils-2.20.1-atmega16hvb-32hvb (props changed) head/devel/avr-binutils/files/patch-409-binutils-2.20.1-atmega32_5_50_90_pa (props changed) head/devel/avr-binutils/files/patch-410-binutils-2.20.1-attiny1634 (props changed) head/devel/avr-binutils/files/patch-411-binutils-2.20.1-atmega48pa (props changed) head/devel/avr-binutils/files/patch-500-binutils-2.20.1-bug13789 (props changed) head/devel/avr-binutils/files/patch-Makefile.in (props changed) head/devel/avr-gcc/files/patch-200-gcc-4.5.1-libiberty-Makefile.in (props changed) head/devel/avr-gcc/files/patch-300-gcc-4.5.1-fixedpoint-3-4-2010 (props changed) head/devel/avr-gcc/files/patch-301-gcc-4.5.1-xmega-v14 (props changed) head/devel/avr-gcc/files/patch-302-gcc-4.5.1-avrtiny10 (props changed) head/devel/avr-gcc/files/patch-303-gcc-4.5.1-osmain (props changed) head/devel/avr-gcc/files/patch-304-gcc-4.5.1-builtins-v6 (props changed) head/devel/avr-gcc/files/patch-305-gcc-4.5.1-avrtiny10-non-fixedpoint (props changed) head/devel/avr-gcc/files/patch-306-gcc-4.5.1-option-list-devices (props changed) head/devel/avr-gcc/files/patch-400-gcc-4.5.1-new-devices (props changed) head/devel/avr-gcc/files/patch-401-gcc-4.5.1-atmega32_5_50_90_pa (props changed) head/devel/avr-gcc/files/patch-402-gcc-4.5.1-attiny1634 (props changed) head/devel/avr-gcc/files/patch-403-gcc-4.5.1-atmega48pa (props changed) head/devel/avr-gcc/files/patch-500-gcc-4.5.1-bug13473 (props changed) head/devel/avr-gcc/files/patch-501-gcc-4.5.1-bug13579 (props changed) head/devel/avr-gcc/files/patch-502-gcc-4.5.1-bug-18145-v4 (props changed) head/devel/avr-gcc/files/patch-503-gcc-4.5.1-avrtiny10-bug-12510 (props changed) head/devel/avr-gcc/files/patch-504-gcc-4.5.1-bug12915 (props changed) head/devel/avr-gcc/files/patch-505-gcc-4.5.1-bug13932 (props changed) head/devel/avr-gcc/files/patch-506-gcc-4.5.1-bug13789 (props changed) head/devel/avr-gcc/files/patch-599-gcc-4.5.1-bug46779 (props changed) head/devel/avr-gcc/files/patch-plugins (props changed) head/devel/avr-gdb/files/patch-bug13519 (props changed) head/devel/avro-c/files/patch-src_CMakeLists.txt (props changed) head/devel/avro-cpp/files/patch-lang_c++_CMakeLists.txt (props changed) head/devel/baz/files/patch-pfs-sftp.c (props changed) head/devel/baz/files/patch-pfs-signatures.c (props changed) head/devel/baz/files/patch-pfs.c (props changed) head/devel/baz/files/patch-unit-sftp.c (props changed) head/devel/bcc/files/patch-aa (props changed) head/devel/bcc/files/patch-ab (props changed) head/devel/bcc/files/patch-ac (props changed) head/devel/bcpp/files/patch-code__makefile.unx (props changed) head/devel/beautifyphp/files/patch-beautify_php (props changed) head/devel/bennugd-core/files/patch-bgdrtm-src-dirs.c (props changed) head/devel/bennugd-core/files/patch-configure (props changed) head/devel/bennugd-modules/files/patch-configure (props changed) head/devel/bennugd-modules/files/patch-mod__mem-mod__mem.c (props changed) head/devel/bglibs/files/patch-Makefile (props changed) head/devel/bicyclerepair/files/patch-bike_query_getPackageDependencies.py (props changed) head/devel/bicyclerepair/files/patch-ide-integration_BicycleRepairMan_Idle.py (props changed) head/devel/bin86/files/patch-Makefile (props changed) head/devel/bin86/files/patch-ld_catimage.c (props changed) head/devel/bin86/files/patch-ld_ld_c (props changed) head/devel/bin86/files/patch-ld_x86_aout_h (props changed) head/devel/bin86/files/patch-man_as86_1 (props changed) head/devel/binutils/files/patch-gold_Makefile.in (props changed) head/devel/bisoncpp/files/patch-build (props changed) head/devel/bisoncpp/files/patch-documentation-manual-conditions-gpl.yo (props changed) head/devel/bisoncpp/files/patch-icmake-manpage (props changed) head/devel/bncsutil-ghost++/files/patch-Makefile (props changed) head/devel/boehm-gc/files/patch-ab (props changed) head/devel/boost_build/files/patch-tools__gcc.jam (props changed) head/devel/bsdlibdwarf/files/patch-libdwarf__libdwarf_reloc.c (props changed) head/devel/bug-buddy/files/patch-src_bug-buddy.c (props changed) head/devel/bug-buddy/files/patch-src_elf.c (props changed) head/devel/bug-buddy/files/patch-src_gdb-buddy.c (props changed) head/devel/buildtool/files/patch-bt_sh-Makefile.in (props changed) head/devel/bullet/files/patch-CMakeLists.txt (props changed) head/devel/byaccj/files/patch-Makefile (props changed) head/devel/c-unit/files/patch-c-unit-Sources-Automated-Automated.c (props changed) head/devel/c-unit/files/patch-c-unit-Sources-Framework-MyMem.c (props changed) head/devel/c4/files/patch-Makefile (props changed) head/devel/c4/files/patch-main.c (props changed) head/devel/calibrator/files/patch-Makefile (props changed) head/devel/cbind/files/patch-Makefile (props changed) head/devel/cbind/files/patch-allocate.c (props changed) head/devel/cbind/files/patch-buffer.c (props changed) head/devel/cbind/files/patch-cbind.c (props changed) head/devel/cbind/files/patch-cdep.c (props changed) head/devel/cbind/files/patch-errors.c (props changed) head/devel/cbind/files/patch-files.c (props changed) head/devel/cbind/files/patch-hostinfo (props changed) head/devel/cbind/files/patch-htype.c (props changed) head/devel/cbind/files/patch-nodeop.c (props changed) head/devel/cbind/files/patch-units.c (props changed) head/devel/cccc/files/patch-cccc__cccc_tbl.cc (props changed) head/devel/ccdoc/files/patch-mkopt_gcc.mk (props changed) head/devel/ccrtp/files/patch-Makefile (props changed) head/devel/cdash/files/patch-CMakeLists.txt (props changed) head/devel/cedet/files/patch-ede-Makefile (props changed) head/devel/cedet/files/patch-ede-ede.info (props changed) head/devel/cedet/files/patch-eieio-Makefile (props changed) head/devel/cedet/files/patch-eieio-eieio.info (props changed) head/devel/cedet/files/patch-semantic-doc-Makefile (props changed) head/devel/cedet/files/patch-semantic-doc-bovine.info (props changed) head/devel/cedet/files/patch-semantic-doc-semantic.info (props changed) head/devel/cedet/files/patch-semantic-doc-wisent.info (props changed) head/devel/cedet/files/patch-speedbar-Makefile (props changed) head/devel/cedet/files/patch-speedbar-speedbar.info (props changed) head/devel/cedet/files/patch-srecode-Makefile (props changed) head/devel/cedet/files/patch-srecode-srecode.info (props changed) head/devel/cflow/files/patch-aa (props changed) head/devel/cflow/files/patch-ab (props changed) head/devel/cflow/files/patch-ac (props changed) head/devel/cflow/files/patch-ad (props changed) head/devel/cflow/files/patch-prcc.c (props changed) head/devel/cflow/files/patch-prcg.c (props changed) head/devel/cflow/files/patch-prcg.prototypes.h (props changed) head/devel/cflow2vcg/files/patch-Makefile.in (props changed) head/devel/cgilib/files/patch-cgi.c (props changed) head/devel/charva/files/patch-build.xml (props changed) head/devel/charva/files/patch-c_src_Toolkit.c (props changed) head/devel/charva/files/patch-java_src_charva_awt_CardLayout.java (props changed) head/devel/charva/files/patch-java_src_charva_awt_Component.java (props changed) head/devel/charva/files/patch-java_src_charva_awt_Container.java (props changed) head/devel/charva/files/patch-java_src_charva_awt_Toolkit.java (props changed) head/devel/charva/files/patch-java_src_charva_awt_VerticalFlowLayout.java (props changed) head/devel/charva/files/patch-java_src_charva_awt_Window.java (props changed) head/devel/charva/files/patch-java_src_charva_awt_event_FocusAdapter.java (props changed) head/devel/charva/files/patch-java_src_charvax_swing_AbstractButton.java (props changed) head/devel/charva/files/patch-java_src_charvax_swing_ButtonGroup.java (props changed) head/devel/charva/files/patch-java_src_charvax_swing_JLabel.java (props changed) head/devel/charva/files/patch-java_src_charvax_swing_JPasswordField.java (props changed) head/devel/charva/files/patch-java_src_charvax_swing_JTextArea.java (props changed) head/devel/charva/files/patch-java_src_charvax_swing_JTextField.java (props changed) head/devel/charva/files/patch-java_src_charvax_swing_text_JTextComponent.java (props changed) head/devel/chrpath/files/patch-Makefile.in (props changed) head/devel/chrpath/files/patch-elf.c (props changed) head/devel/cityhash/files/patch-src_city.cc (props changed) head/devel/cl-infix/files/patch-infix.asd (props changed) head/devel/cl-infix/files/patch-infix.system (props changed) head/devel/cl-port/files/patch-clocc-port.asd (props changed) head/devel/cl-port/files/patch-path.lisp (props changed) head/devel/cld/files/patch-Makefile.in (props changed) head/devel/clint/files/patch-doc-clint.texinfo (props changed) head/devel/clint/files/patch-lib-python-mapbase.cc (props changed) head/devel/clint/files/patch-lib-python-mapref.cc (props changed) head/devel/clint/files/patch-lib-python-python.cc (props changed) head/devel/clint/files/patch-lib-python-python.h (props changed) head/devel/clint/files/patch-lib-python-seqbase_const_iter.cc (props changed) head/devel/clint/files/patch-lib-python-seqbase_iter.cc (props changed) head/devel/clint/files/patch-plugins-python-python_plugin.cc (props changed) head/devel/clint/files/patch-src-clint.cc (props changed) head/devel/clint/files/patch-src-input.cc (props changed) head/devel/clint/files/patch-src-utility.cc (props changed) head/devel/cmake/files/patch-Modules_FindDCMTK.cmake (props changed) head/devel/cmunge/files/patch-src_ctran.c (props changed) head/devel/cmunge/files/patch-src_proc-incl.c (props changed) head/devel/cobf/files/patch-makefile (props changed) head/devel/commoncpp/files/patch-include-cc++_address.h (props changed) head/devel/commoncpp/files/patch-src_mutex.cpp (props changed) head/devel/commoncpp/files/patch-src_thread.cpp (props changed) head/devel/commoncpp/files/patch-src_timer.cpp (props changed) head/devel/configkit/files/patch-lexer.l (props changed) head/devel/cook/files/patch-common_ac_time.h (props changed) head/devel/covtool/files/patch-cov++ (props changed) head/devel/covtool/files/patch-gen_html (props changed) head/devel/covtool/files/patch-makefile (props changed) head/devel/covtool/files/patch-rules.FreeBSD (props changed) head/devel/cppunit/files/patch-config::ltmain.sh (props changed) head/devel/cppunit/files/patch-doc::Makefile.in (props changed) head/devel/cproto/files/patch-system.h (props changed) head/devel/cpuflags/files/patch-Makefile (props changed) head/devel/cross-gcc/files/patch-configure (props changed) head/devel/ctags/files/patch-Makefile.in (props changed) head/devel/ctags/files/patch-aa (props changed) head/devel/cunit/files/patch-CUnit-Sources-Automated-Automated.c (props changed) head/devel/cunit/files/patch-CUnit-Sources-Framework-MyMem.c (props changed) head/devel/cutils/files/patch-doc::Makefile.in (props changed) head/devel/cutils/files/patch-doc::cutils.texi (props changed) head/devel/cutter/files/patch-test_run-test.sh (props changed) head/devel/cvs-devel/files/patch-64bit_crashfix (props changed) head/devel/cvs-devel/files/patch-DSA_external_passwd_file (props changed) head/devel/cvs-devel/files/patch-PAM_support (props changed) head/devel/cvs-devel/files/patch-PATH_MAX_check (props changed) head/devel/cvs-devel/files/patch-check_method_crash (props changed) head/devel/cvs-devel/files/patch-copyright (props changed) head/devel/cvs-devel/files/patch-cvs-repouid-0.1 (props changed) head/devel/cvs-devel/files/patch-cvs.info.typo (props changed) head/devel/cvs-devel/files/patch-cvsbug_tmpfix (props changed) head/devel/cvs-devel/files/patch-cvsrc_whitespace (props changed) head/devel/cvs-devel/files/patch-date_format_option (props changed) head/devel/cvs-devel/files/patch-ext_expansion (props changed) head/devel/cvs-devel/files/patch-extra_tags (props changed) head/devel/cvs-devel/files/patch-fix_-l (props changed) head/devel/cvs-devel/files/patch-fix_sparc_sigbus (props changed) head/devel/cvs-devel/files/patch-flag_conflicted_copies (props changed) head/devel/cvs-devel/files/patch-history_val-tag_world_writeable (props changed) head/devel/cvs-devel/files/patch-homedir (props changed) head/devel/cvs-devel/files/patch-import-n-X (props changed) head/devel/cvs-devel/files/patch-keyword_alphanumerics (props changed) head/devel/cvs-devel/files/patch-login_cvspass_message (props changed) head/devel/cvs-devel/files/patch-newlines_in_commit_template (props changed) head/devel/cvs-devel/files/patch-normalize_correct_roots (props changed) head/devel/cvs-devel/files/patch-parseopts (props changed) head/devel/cvs-devel/files/patch-rcs2log_POSIX_sort (props changed) head/devel/cvs-devel/files/patch-remove_-R_warning (props changed) head/devel/cvs-devel/files/patch-rsc2log_fix (props changed) head/devel/cvs-devel/files/patch-server_wrapper (props changed) head/devel/cvs-devel/files/patch-src-myndbm.c (props changed) head/devel/cvs-devel/files/patch-zlib-read-compressed (props changed) head/devel/cvsadmin/files/patch-src-backend.c (props changed) head/devel/cvsgraph/files/patch-cvsgraph.c (props changed) head/devel/cvslines/files/patch-CONFIG (props changed) head/devel/cvslines/files/patch-INSTALL (props changed) head/devel/cvsps-devel/files/patch-cvsps.c (props changed) head/devel/cvsps/files/patch-Makefile (props changed) head/devel/cvsps/files/patch-cvsps.1 (props changed) head/devel/cvsps/files/patch-cvsps.c (props changed) head/devel/cvstrac/files/patch-cgi.c (props changed) head/devel/cvstrac/files/patch-db.c (props changed) head/devel/cvstrac/files/patch-format.c (props changed) head/devel/cvstrac/files/patch-search.c (props changed) head/devel/cvstrac/files/patch-view.c (props changed) head/devel/cvsweb/files/patch-cvsweb.cgi (props changed) head/devel/cvsweb/files/patch-cvsweb.conf (props changed) head/devel/cvsweb3/files/patch-cvsweb.cgi (props changed) head/devel/cvsweb3/files/patch-cvsweb.conf (props changed) head/devel/cvswrap/files/patch-cvswrap.c (props changed) head/devel/cweb/files/patch-Makefile (props changed) head/devel/cweb/files/patch-ab (props changed) head/devel/cxref/files/patch-ad (props changed) head/devel/cxref/files/patch-ae (props changed) head/devel/cxxtools/files/patch-src-tcpsocketimpl.h (props changed) head/devel/d-feet/files/patch-d-feet (props changed) head/devel/d-feet/files/patch-setup.py (props changed) head/devel/datadraw/files/patch-configure (props changed) head/devel/datadraw/files/patch-util_configure (props changed) head/devel/dbus/files/patch-bus__session.conf.in (props changed) head/devel/dbus/files/patch-bus__system.conf.in (props changed) head/devel/dbus/files/patch-dbus-1.pc.in (props changed) head/devel/dbus/files/patch-dbus_Makefile.in (props changed) head/devel/dbus/files/patch-dbus_dbus-connection.c (props changed) head/devel/dbus/files/patch-dbus_dbus-sysdeps-util-unix.c (props changed) head/devel/dbus/files/patch-doc_Makefile.in (props changed) head/devel/dcmtk/files/patch-BuildLibrary (props changed) head/devel/dcmtk/files/patch-clang (props changed) head/devel/dcmtk/files/patch-cmake-CMakeLists.txt (props changed) head/devel/dcmtk/files/patch-id2 (props changed) head/devel/ddd/files/patch-configure (props changed) head/devel/ddd/files/patch-ddd-LiterateA.C (props changed) head/devel/ddd/files/patch-ddd-Makefile.in (props changed) head/devel/ddd/files/patch-ddd-TTYAgent.C (props changed) head/devel/dev86/files/patch-Makefile (props changed) head/devel/devhelp/files/patch-src_dh-book-manager.c (props changed) head/devel/devtodo/files/patch-util-XML.cc (props changed) head/devel/dfuife-curses/files/patch-Makefile (props changed) head/devel/directfb/files/patch-configure (props changed) head/devel/directfb/files/patch-doc_Makefile.in (props changed) head/devel/directfb/files/patch-gfxdrivers-davinci-davinci_c64x.c (props changed) head/devel/directfb/files/patch-interfaces-IDirectFBImageProvider-idirectfbimageprovider_png.c (props changed) head/devel/directfb/files/patch-lib-direct-conf.c (props changed) head/devel/directfb/files/patch-lib-direct-interface.c (props changed) head/devel/directfb/files/patch-lib-direct-log.c (props changed) head/devel/directfb/files/patch-lib-direct-stream.c (props changed) head/devel/directfb/files/patch-lib-direct-trace.c (props changed) head/devel/directfb/files/patch-lib-fusion-call.c (props changed) head/devel/directfb/files/patch-lib-fusion-lock.c (props changed) head/devel/directfb/files/patch-lib-fusion-shm-shm.c (props changed) head/devel/directfb/files/patch-lib-fusion-shmalloc.c (props changed) head/devel/directfb/files/patch-lib-voodoo-client.c (props changed) head/devel/directfb/files/patch-lib-voodoo-manager.c (props changed) head/devel/directfb/files/patch-src-gfx-generic-generic.c (props changed) head/devel/directfb/files/patch-src__gfx__generic__generic_stretch_blit.c (props changed) head/devel/directfb/files/patch-tests-dfbtest_window.c (props changed) head/devel/directfb/files/patch-tests__voodoo__voodoo_test.h (props changed) head/devel/directfb/files/patch-tools-dfbdump.c (props changed) head/devel/directfb/files/patch-tools-dfbmaster.c (props changed) head/devel/directfb/files/patch-tools-directfb-csource.c (props changed) head/devel/directfb/files/patch-tools-mkdfiff.c (props changed) head/devel/directfb/files/patch-tools-mkdgifft.cpp (props changed) head/devel/dissy/files/patch-setup.py (props changed) head/devel/distcc/files/patch-configure.ac (props changed) head/devel/distcc/files/patch-src-dparent.c.diff (props changed) head/devel/distel/files/patch-elisp_erl-service.el (props changed) head/devel/distorm/files/patch-src__config.h (props changed) head/devel/djgpp-binutils/files/patch-Makefile.in (props changed) head/devel/djgpp-binutils/files/patch-binutils-objcopy.c (props changed) head/devel/djgpp-binutils/files/patch-configure (props changed) head/devel/djgpp-binutils/files/patch-ld-elf.sc (props changed) head/devel/djgpp-binutils/files/patch-ld-ldlang.c (props changed) head/devel/dmalloc/files/patch-Makefile.in (props changed) head/devel/dmalloc/files/patch-configure (props changed) head/devel/dmucs/files/patch-COSMIC-error.c (props changed) head/devel/dmucs/files/patch-dmucs_db.cc (props changed) head/devel/dmucs/files/patch-dmucs_db.h (props changed) head/devel/dmucs/files/patch-dmucs_msg.cc (props changed) head/devel/dmucs/files/patch-main.cc (props changed) head/devel/dotconf++/files/patch-src-Makefile.in (props changed) head/devel/doxygen/files/patch-addon-doxywizard-Makefile.in (props changed) head/devel/doxygen/files/patch-ah (props changed) head/devel/doxygen/files/patch-configure (props changed) head/devel/doxygen/files/patch-doc-Makefile.in (props changed) head/devel/doxygen/files/patch-doc-Makefile.latex (props changed) head/devel/doxygen/files/patch-examples-Makefile.in (props changed) head/devel/doxygen/files/patch-md5 (props changed) head/devel/doxygen/files/patch-warnings (props changed) head/devel/dparser/files/patch-arg.c (props changed) head/devel/dprog/files/patch-Makefile.in (props changed) head/devel/dprog/files/patch-ast.cc (props changed) head/devel/dprog/files/patch-ast_test.cc (props changed) head/devel/dprog/files/patch-codegen_test.cc (props changed) head/devel/dprog/files/patch-cxx_codegen.cc (props changed) head/devel/dprog/files/patch-cxx_dprog.hh (props changed) head/devel/dprog/files/patch-functions.cc (props changed) head/devel/dprog/files/patch-pprint.cc (props changed) head/devel/dprog/files/patch-range_checking.cc (props changed) head/devel/dprog/files/patch-range_checking_test.cc (props changed) head/devel/dprog/files/patch-type_checking.hh (props changed) head/devel/drpython/files/patch-setup.py (props changed) head/devel/dwarfdump/files/patch-Makefile.in (props changed) head/devel/dwarfdump/files/patch-configure (props changed) head/devel/dxa65/files/patch-label.c (props changed) head/devel/e4graph/files/patch-all_configure (props changed) head/devel/e4graph/files/patch-all_makefile.include.in (props changed) head/devel/e4graph/files/patch-main_unix_makefile (props changed) head/devel/eggdbus/files/patch-src_eggbus_Makefile.in (props changed) head/devel/eieio/files/patch-aa (props changed) head/devel/elfio/files/patch-ELFIO_Makefile.am (props changed) head/devel/elfio/files/patch-configure.in (props changed) head/devel/elfkickers/files/patch-elfrw__elfrw.h (props changed) head/devel/elfkickers/files/patch-elftoc__mknames.c (props changed) head/devel/elfkickers/files/patch-elftoc__outbase.h (props changed) head/devel/elfkickers/files/patch-elftoc__pieces.c (props changed) head/devel/elfkickers/files/patch-elftoc__readelf.h (props changed) head/devel/elfsh/files/patch-Makefile (props changed) head/devel/elfsh/files/patch-libelfsh::Makefile (props changed) head/devel/elfsh/files/patch-libelfsh::include::libelfsh.h (props changed) head/devel/elfsh/files/patch-libhash::Makefile (props changed) head/devel/elfsh/files/patch-modules-modflow::Makefile (props changed) head/devel/elfsh/files/patch-modules::Makefile (props changed) head/devel/elfsh/files/patch-vm::Makefile (props changed) head/devel/elfsh/files/patch-vm::readln.c (props changed) head/devel/elftoaout/files/patch-aa (props changed) head/devel/elib/files/patch-aa (props changed) head/devel/elib/files/patch-ab (props changed) head/devel/entity/files/patch-libentitynjs_iostream.c (props changed) head/devel/entity/files/patch-renders-csink-resolve.c (props changed) head/devel/eris/files/patch-Eris-Metaserver.h (props changed) head/devel/eris/files/patch-bindings-Makefile.in (props changed) head/devel/esdl/files/patch-c__src_Makefile (props changed) head/devel/f77flow/files/patch-aa (props changed) head/devel/f77flow/files/patch-ab (props changed) head/devel/fb303/files/patch-cpp__FacebookBase.cpp (props changed) head/devel/ffcall/files/patch-avcall_avcall-sparc64.S (props changed) head/devel/fga/files/patch-graph_gen.cpp (props changed) head/devel/fhist/files/patch-common_ac_time.h (props changed) head/devel/firmware-utils/files/patch-freebsd.h (props changed) head/devel/firmware-utils/files/patch-mkcasfw.c (props changed) head/devel/firmware-utils/files/patch-mkcsysimg.c (props changed) head/devel/firmware-utils/files/patch-mkedimaximg.c (props changed) head/devel/firmware-utils/files/patch-mkmylofw.c (props changed) head/devel/firmware-utils/files/patch-mkzcfw.c (props changed) head/devel/firmware-utils/files/patch-mkzynfw.c (props changed) head/devel/firmware-utils/files/patch-ptgen.c (props changed) head/devel/firmware-utils/files/patch-trx.c (props changed) head/devel/firmware-utils/files/patch-trx2edips.c (props changed) head/devel/firmware-utils/files/patch-wrt400n.c (props changed) head/devel/flatzebra/files/patch-Makefile.in (props changed) head/devel/flick/files/patch-aa (props changed) head/devel/flick/files/patch-ab (props changed) head/devel/flick/files/patch-ac (props changed) head/devel/flick/files/patch-ad (props changed) head/devel/flick/files/patch-ae (props changed) head/devel/flick/files/patch-af (props changed) head/devel/flick/files/patch-ag (props changed) head/devel/flick/files/patch-ah (props changed) head/devel/flick/files/patch-ai (props changed) head/devel/flick/files/patch-aj (props changed) head/devel/flick/files/patch-ak (props changed) head/devel/flick/files/patch-al (props changed) head/devel/flickrnet/files/patch-AssemblyInfo.cs (props changed) head/devel/flickrnet/files/patch-flickrnet.pc.in (props changed) head/devel/flowdesigner/files/patch-SocketStream.h (props changed) head/devel/fortytwo-encore/files/patch-Encore.h (props changed) head/devel/fpc-fcl-db/files/patch-packages-fcl-db_Makefile (props changed) head/devel/fpc-fcl-web/files/patch-packages-fcl-web_Makefile (props changed) head/devel/fpp/files/patch-Makefile (props changed) head/devel/fpp/files/patch-sparc-Makefile (props changed) head/devel/fpp/files/patch-src-Makefile.common (props changed) head/devel/freeocl/files/patch-CMakeLists.txt (props changed) head/devel/freeocl/files/patch-src_icd_icd_loader.cpp (props changed) head/devel/frink/files/patch-indent (props changed) head/devel/frink/files/patch-strdup (props changed) head/devel/g-wrap/files/patch-configure (props changed) head/devel/g-wrap/files/patch-guile_g-wrap-2.0-guile.pc.in (props changed) head/devel/g-wrap/files/patch-libffi_configure (props changed) head/devel/gaa/files/patch-configure (props changed) head/devel/gamin/files/patch-python_Makefile.in (props changed) head/devel/gamin/files/patch-server_gam_channel.c (props changed) head/devel/gamin/files/patch-server_gam_eq.c (props changed) head/devel/gamin/files/patch-server_gam_fs.c (props changed) head/devel/gamin/files/patch-server_gam_kqueue.c (props changed) head/devel/gamin/files/patch-server_gam_poll_basic.c (props changed) head/devel/gamin/files/patch-server_gam_server.c (props changed) head/devel/gamin/files/patch-tests_testing.c (props changed) head/devel/gaul/files/patch-Makefile.in (props changed) head/devel/gazpacho/files/patch-setup.py (props changed) head/devel/gconf2/files/patch-gconf_default.path.in (props changed) head/devel/gconf2/files/patch-gsettings_gconfsettingsbackend.c (props changed) head/devel/gcvs/files/patch-common-UCvsFiles.cpp (props changed) head/devel/gcvs/files/patch-common-UCvsFolders.cpp (props changed) head/devel/gcvs/files/patch-common_AboutDlg.cpp (props changed) head/devel/gcvs/files/patch-common_AppGlue.h (props changed) head/devel/gcvs/files/patch-common_ImportDlg.cpp (props changed) head/devel/gcvs/files/patch-common_ImportFilterDlg.cpp (props changed) head/devel/gcvs/files/patch-common_LineCmd.cpp (props changed) head/devel/gcvs/files/patch-common_LogDlg.cpp (props changed) head/devel/gcvs/files/patch-common_MultiString.cpp (props changed) head/devel/gcvs/files/patch-common_MultiString.h (props changed) head/devel/gcvs/files/patch-common_Persistent.h (props changed) head/devel/gcvs/files/patch-common_UCvsApp.cpp (props changed) head/devel/gcvs/files/patch-common_UpdateDlg.cpp (props changed) head/devel/gcvs/files/patch-common_cvsgui_process.cpp (props changed) head/devel/gcvs/files/patch-rf_uevent.cpp (props changed) head/devel/gcvs/files/patch-rf_umain.h (props changed) head/devel/gcvs/files/patch-rf_ustr.cpp (props changed) head/devel/gcvs/files/patch-rf_ustr.h (props changed) head/devel/gcvs/files/patch-rf_utoolbar.cpp (props changed) head/devel/gcvs/files/patch-rf_utoolbar.h (props changed) head/devel/gcvs/files/patch-rf_uwidget.h (props changed) head/devel/gdb/files/patch-gdb-amd64fbsd-nat.c (props changed) head/devel/gdb/files/patch-gdb-amd64fbsd-tdep.c (props changed) head/devel/gdb/files/patch-gdb-i386bsd-nat.c (props changed) head/devel/gdb/files/patch-gdb-i386bsd-nat.h (props changed) head/devel/gdb/files/patch-gdb-i386fbsd-nat.c (props changed) head/devel/gdb/files/patch-gdb-i386fbsd-tdep.c (props changed) head/devel/gdb/files/patch-opcodes-rl78-dis.c (props changed) head/devel/gdb/files/patch-unified (props changed) head/devel/gdb66/files/patch-gdb-amd64fbsd-nat.c (props changed) head/devel/gdb66/files/patch-unified (props changed) head/devel/gdcm/files/patch-CMakeLists.txt (props changed) head/devel/gdcm/files/patch-Source-DataDictionary_gdcmGlobal.cxx (props changed) head/devel/gearmand-devel/files/patch-configure (props changed) head/devel/gearmand-devel/files/patch-libgearman-server__log.cc (props changed) head/devel/gearmand-devel/files/patch-libtest__lite.h (props changed) head/devel/gearmand/files/patch-configure (props changed) head/devel/generatorrunner/files/patch-CMakeLists.txt (props changed) head/devel/generatorrunner/files/patch-data__CMakeLists.txt (props changed) head/devel/gettext/files/extra-patch-nodocs (props changed) head/devel/gettext/files/patch-gettext-runtime_man_Makefile.in (props changed) head/devel/gettext/files/patch-gettext-tools_Makefile.in (props changed) head/devel/gettext/files/patch-gettext-tools_man_Makefile.in (props changed) head/devel/gettext/files/patch-gettext-tools_src_x-glade.c (props changed) head/devel/gindent/files/patch-args.c (props changed) head/devel/gindent/files/patch-doc:Makefile.in (props changed) head/devel/gindent/files/patch-indent.h (props changed) head/devel/gindent/files/patch-output.c (props changed) head/devel/gitolite2/files/patch-gl-setup (props changed) head/devel/glade3/files/patch-configure (props changed) head/devel/glademm/files/patch-src__Configuration.hh (props changed) head/devel/glademm/files/patch-src__writers__gnome_app.hh (props changed) head/devel/glib-java/files/patch-configure (props changed) head/devel/glib-java/files/patch-glib-java.pc.in (props changed) head/devel/glib12/files/patch-ab (props changed) head/devel/glib12/files/patch-ac (props changed) head/devel/glib12/files/patch-af (props changed) head/devel/glib12/files/patch-glib.m4 (props changed) head/devel/glib12/files/patch-glib.pc.in (props changed) head/devel/glib12/files/patch-gmodule.pc.in (props changed) head/devel/glib12/files/patch-gmodule::gmodule-dl.c (props changed) head/devel/glib12/files/patch-gstrfuncs.c (props changed) head/devel/glib12/files/patch-gthread.pc.in (props changed) head/devel/glib12/files/patch-gutils.c (props changed) head/devel/glib20/files/patch-ah (props changed) head/devel/glib20/files/patch-config.h.in (props changed) head/devel/glib20/files/patch-gio_gunixvolume.c (props changed) head/devel/glib20/files/patch-gio_tests_gdbus-peer.c (props changed) head/devel/glib20/files/patch-gio_xdgmime_xdgmime.c (props changed) head/devel/glib20/files/patch-gio_xdgmime_xdgmimecache.h (props changed) head/devel/glib20/files/patch-glib_gutils.c (props changed) head/devel/glib20/files/patch-gmodule::gmodule-dl.c (props changed) head/devel/glrparser/files/patch-Makefile.in (props changed) head/devel/glrparser/files/patch-glr-glrParser.h (props changed) head/devel/glui/files/patch-glui_list.cpp (props changed) head/devel/glui/files/patch-makefile (props changed) head/devel/gmake/files/patch-ab (props changed) head/devel/gmake/files/patch-read.c (props changed) head/devel/gnatpython/files/patch-src__mod_term__terminals.c (props changed) head/devel/gnome-vfs/files/patch-Makefile.in (props changed) head/devel/gnome-vfs/files/patch-config.h.in (props changed) head/devel/gnome-vfs/files/patch-configure (props changed) head/devel/gnome-vfs/files/patch-libgnomevfs::Makefile.in (props changed) head/devel/gnome-vfs/files/patch-libgnomevfs::gnome-vfs-application-registry.c (props changed) head/devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-filesystem-type.c (props changed) head/devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-hal-mounts.c (props changed) head/devel/gnome-vfs/files/patch-libgnomevfs_xdgmime.c (props changed) head/devel/gnome-vfs/files/patch-libgnomevfs_xdgmimecache.h (props changed) head/devel/gnome-vfs/files/patch-modules_file-method-acl.c (props changed) head/devel/gnome-vfs/files/patch-modules_gzip-method.c (props changed) head/devel/gnulibiberty/files/patch-Makefile.in (props changed) head/devel/gnulibiberty/files/patch-configure (props changed) head/devel/gob2/files/patch-src_out.c (props changed) head/devel/gobject-introspection/files/patch-tests_Makefile.in (props changed) head/devel/google-gdata/files/patch-.._zlib-1.2.3_configure (props changed) head/devel/google-gdata/files/patch-Makefile (props changed) head/devel/google-gdata/files/patch-misc_gdata-sharp-core.pc.in (props changed) head/devel/google-perftools/files/patch-Makefile.in (props changed) head/devel/gprbuild/files/patch-Makefile.in (props changed) head/devel/gprbuild/files/patch-gprbuild.gpr (props changed) head/devel/gprbuild/files/patch-share_gprconfig_compilers.xml (props changed) head/devel/gprbuild/files/patch-share_gprconfig_gnat.xml (props changed) head/devel/gprbuild/files/patch-share_gprconfig_linker.xml (props changed) head/devel/gprbuild/files/patch-share_gprconfig_targetset.xml (props changed) head/devel/gprbuild/files/patch-src_gprlib.adb (props changed) head/devel/gps/files/patch-Makefile.in (props changed) head/devel/gps/files/patch-common_tty_terminals.c (props changed) head/devel/gps/files/patch-gnatlib-gnat_src-mlib-utl.adb (props changed) head/devel/gps/files/patch-gnatlib-gnatcoll_shared.gpr.in (props changed) head/devel/gps/files/patch-gnatlib_aclocal.m4 (props changed) head/devel/gps/files/patch-gnatlib_configure (props changed) head/devel/gps/files/patch-gps_gps.gpr (props changed) head/devel/gtkparasite/files/patch-USAGE (props changed) head/devel/gtranslator/files/patch-configure (props changed) head/devel/gtranslator/files/patch-man_Makefile.in (props changed) head/devel/gtranslator/files/patch-src::find.c (props changed) head/devel/gtranslator/files/patch-src::message.c (props changed) head/devel/guichan/files/patch-src__Makefile.in (props changed) head/devel/guichan/files/patch-src__allegro__Makefile.in (props changed) head/devel/guichan/files/patch-src__opengl__Makefile.in (props changed) head/devel/guichan/files/patch-src__sdl__Makefile.in (props changed) head/devel/gvfs/files/patch-Makefile.in (props changed) head/devel/gvfs/files/patch-config.h.in (props changed) head/devel/gvfs/files/patch-configure (props changed) head/devel/gvfs/files/patch-daemon_gvfswritechannel.c (props changed) head/devel/gvfs/files/patch-monitor_gphoto2_ggphoto2volume.c (props changed) head/devel/gwenhywfar/files/patch-configure (props changed) head/devel/horde3-chora/files/patch-config::sourceroots.php.dist (props changed) head/devel/hp48xgcc/files/patch-Makefile (props changed) head/devel/hp48xgcc/files/patch-class+LKV+AVLTree.h (props changed) head/devel/hp48xgcc/files/patch-class+LKV+AllocBuf.h (props changed) head/devel/hp48xgcc/files/patch-class+LKV+Bstream.cc (props changed) head/devel/hp48xgcc/files/patch-class+LKV+Bstream.h (props changed) head/devel/hp48xgcc/files/patch-class+LKV+List.h (props changed) head/devel/hp48xgcc/files/patch-class+LKV+Str.cc (props changed) head/devel/hp48xgcc/files/patch-class+LKV+Str.h (props changed) head/devel/hp48xgcc/files/patch-class+LKV+assert_lkv.h (props changed) head/devel/hp48xgcc/files/patch-class+LKV+ext_compare.h (props changed) head/devel/hp48xgcc/files/patch-class+NibStr.cc (props changed) head/devel/hp48xgcc/files/patch-class+NibStr.h (props changed) head/devel/hp48xgcc/files/patch-class+SourceLine.h (props changed) head/devel/hp48xgcc/files/patch-class+class.cc (props changed) head/devel/hp48xgcc/files/patch-class+clld.cc (props changed) head/devel/hp48xgcc/files/patch-class+clld.h (props changed) head/devel/hp48xgcc/files/patch-class+object.h (props changed) head/devel/hp48xgcc/files/patch-lib-source+libgcc+libgcc1.S (props changed) head/devel/hs-darcs/files/patch-Setup.lhs (props changed) head/devel/hs-drift/files/patch-src__ChaseImports.hs (props changed) head/devel/hs-drift/files/patch-src__DrIFT.hs (props changed) head/devel/hs-drift/files/patch-src__GenUtil.hs (props changed) head/devel/hs-drift/files/patch-src__Makefile.in (props changed) head/devel/hs-happy/files/patch-doc_configure.ac (props changed) head/devel/hs-readline/files/patch-Setup.hs (props changed) head/devel/hs-threadscope/files/patch-GUI__Main.hs (props changed) head/devel/hs-threadscope/files/patch-GUI__Timeline__Render.hs (props changed) head/devel/hwloc/files/patch-utils+Makefile.in (props changed) head/devel/ice/files/patch-cpp-src-Ice-ProxyFactory.cpp (props changed) head/devel/ice/files/patch-cpp-test-Ice-info-AllTests.cpp (props changed) head/devel/ice/files/patch-cpp-test-include-TestCommon.h (props changed) head/devel/icmake/files/patch-comp-lexer.c (props changed) head/devel/icmake/files/patch-icm_install (props changed) head/devel/icu/files/patch-config__mh-bsd-gcc (props changed) head/devel/icu/files/patch-install (props changed) head/devel/icu/files/patch-layout_LookupProcessor.cpp (props changed) head/devel/idutils/files/patch-configure (props changed) head/devel/ifd-test/files/patch-Makefile (props changed) head/devel/ifd-test/files/patch-commands.c (props changed) head/devel/ifd-test/files/patch-ifdtest.c (props changed) head/devel/ifd-test/files/patch-pcsc1.4.0 (props changed) head/devel/ifd-test/files/patch-testA.c (props changed) head/devel/ifd-test/files/patch-testAMMI.c (props changed) head/devel/ifd-test/files/patch-testB.c (props changed) head/devel/ifd-test/files/patch-testBULL.c (props changed) head/devel/ifd-test/files/patch-testC.c (props changed) head/devel/ifd-test/files/patch-testGD.c (props changed) head/devel/ifd-test/files/patch-testIBM.c (props changed) head/devel/ifd-test/files/patch-testSCHL.c (props changed) head/devel/ifd-test/files/patch-testSIEMENS.c (props changed) head/devel/imake/files/patch-imake.c (props changed) head/devel/iniparser/files/patch-dictionary.c (props changed) head/devel/iniparser/files/patch-iniparser.h (props changed) head/devel/itext/files/patch-ant_.ant.properties (props changed) head/devel/itext/files/patch-ant_compile.xml (props changed) head/devel/itext/files/patch-core_com_lowagie_text_pdf_PRTokeniser.java (props changed) head/devel/itext/files/patch-core_com_lowagie_text_pdf_PdfReader.java (props changed) head/devel/itext/files/patch-core_com_lowagie_text_pdf_PdfStamperImp.java (props changed) head/devel/itext/files/patch-core_com_lowagie_text_xml_xmp_XmpReader.java (props changed) head/devel/ixlib/files/patch-src::ixlib_base.hh (props changed) head/devel/ixlib/files/patch-src::ixlib_garbage.hh (props changed) head/devel/ixlib/files/patch-src::ixlib_javascript.hh (props changed) head/devel/ixlib/files/patch-src::ixlib_numeric.hh (props changed) head/devel/ixlib/files/patch-src::ixlib_re.hh (props changed) head/devel/ixlib/files/patch-src::ixlib_re_impl.hh (props changed) head/devel/ixlib/files/patch-src::js_interpreter.cc (props changed) head/devel/ixlib/files/patch-src::lex.xml.cc (props changed) head/devel/ixlib/files/patch-src::re.cc (props changed) head/devel/ixlib/files/patch-test::javascript.cc (props changed) head/devel/jakarta-commons-daemon/files/patch-man_jsvc.1.xml (props changed) head/devel/jakarta-commons-daemon/files/patch-native_arguments.c (props changed) head/devel/jakarta-commons-daemon/files/patch-native_jsvc-unix.c (props changed) head/devel/jam/files/patch-Jamfile (props changed) head/devel/jam/files/patch-Makefile (props changed) head/devel/jansson/files/patch-src_hashtable.c (props changed) head/devel/jansson/files/patch-src_jansson.h (props changed) head/devel/jansson/files/patch-src_utf.h (props changed) head/devel/jansson/files/patch-src_value.c (props changed) head/devel/java-findbugs/files/patch-findbugs2 (props changed) head/devel/jclassinfo/files/patch-jclass:Makefile.in (props changed) head/devel/jech-dht/files/patch-warns (props changed) head/devel/jline/files/patch-src-src-main-java-jline-ConsoleRunner.java (props changed) head/devel/jna/files/patch-native_Makefile (props changed) head/devel/jna/files/patch-src__com__sun__jna__NativeLibrary.java (props changed) head/devel/jrtplib/files/patch-src-rtperrors.h (props changed) head/devel/jtag/files/patch-configure (props changed) head/devel/jtag/files/patch-libbrux_cmd_cmd_detectflash.c (props changed) head/devel/jtag/files/patch-libbrux_flash_detectflash.c (props changed) head/devel/jtag/files/patch-libbrux_flash_jedec.c (props changed) head/devel/jtag/files/patch-src_tap_parport_direct.c (props changed) head/devel/jzmq/files/patch-configure.in (props changed) head/devel/jzmq/files/patch-src_Makefile.am (props changed) head/devel/kBuild/files/patch-Config.mk (props changed) head/devel/kdesvn-kde4/files/patch-doc-man-CMakeLists.txt (props changed) head/devel/kdevelop-pg-qt/files/patch-CMakeLists.txt (props changed) head/devel/kimwitu/files/patch-Makefile (props changed) head/devel/kyra/files/patch-engine_encoder.h (props changed) head/devel/kyra/files/patch-engine_namefield.h (props changed) head/devel/kyra/files/patch-guiExtended_progress.h (props changed) head/devel/kyua/files/patch-utils-config-nodes.cpp (props changed) head/devel/kyua/files/patch-utils-config-nodes.ipp (props changed) head/devel/kyua/files/patch-utils-config-tree.cpp (props changed) head/devel/kyua/files/patch-utils-config-tree.ipp (props changed) head/devel/lasi/files/extra-patch-cmake+modules+lasi.cmake (props changed) head/devel/lasi/files/patch-cmake+modules+instdirs.cmake (props changed) head/devel/lasi/files/patch-cmake+modules+pkg-config.cmake (props changed) head/devel/leaktracer/files/patch-LeakCheck (props changed) head/devel/libPropList/files/patch-ab (props changed) head/devel/libPropList/files/patch-configure (props changed) head/devel/libafterbase/files/patch-Makefile.in (props changed) head/devel/libafterbase/files/patch-audit.c (props changed) head/devel/libassa/files/patch-assa:Address.h (props changed) head/devel/libassa/files/patch-assa:INETAddress.cpp (props changed) head/devel/libassa/files/patch-assa:Logger_Impl.cpp (props changed) head/devel/libassa/files/patch-assa:Logger_Impl.h (props changed) head/devel/libassa/files/patch-examples:logserver:server:MonitorConn.cpp (props changed) head/devel/libassa/files/patch-tests:semaphore_test.cpp (props changed) head/devel/libassa/files/patch-tests:ttcp_assa.cpp (props changed) head/devel/libassa/files/patch-tests_charinbuffer_test.cpp (props changed) head/devel/libast/files/patch-configure (props changed) head/devel/libast/files/patch-libast.h (props changed) head/devel/libaura/files/patch-Makefile (props changed) head/devel/libbegemot/files/patch-Makefile.in (props changed) head/devel/libbegemot/files/patch-configure.ac (props changed) head/devel/libbobcat/files/patch-icmake-man (props changed) head/devel/libbobcat/files/patch-readlinehistory-readlinehistory (props changed) head/devel/libbonobo/files/patch-Makefile.in (props changed) head/devel/libbonobo/files/patch-server::Makefile.in (props changed) head/devel/libbonobo/files/patch-server::activation-server-main.c (props changed) head/devel/libbonobo/files/patch-utils::bonobo-slay.in (props changed) head/devel/libcfg/files/patch-Rules.make.in (props changed) head/devel/libcfg/files/patch-configure.in (props changed) head/devel/libcheck/files/patch-check.m4 (props changed) head/devel/libchipcard/files/patch-configure (props changed) head/devel/libcii/files/patch-aa (props changed) head/devel/libcii/files/patch-ab (props changed) head/devel/libcli/files/patch-Makefile (props changed) head/devel/libdbusmenu-qt/files/patch-CMakeLists.txt (props changed) head/devel/libdbusmenu-qt/files/patch-src__CMakeLists.txt (props changed) head/devel/libdfui/files/patch-Makefile (props changed) head/devel/libdict/files/patch-GNUmakefile (props changed) head/devel/libdisorder/files/extra-patch-disorder.c (props changed) head/devel/libdisorder/files/patch-Makefile (props changed) head/devel/libdispatch/files/patch-configure.ac (props changed) head/devel/libdispatch/files/patch-src_shims_time.h (props changed) head/devel/libdlmalloc/files/patch-aa (props changed) head/devel/libdnsres/files/patch-dnsres.3 (props changed) head/devel/libdnsres/files/patch-dnsres.h (props changed) head/devel/libdnsres/files/patch-test-simple_test.c (props changed) head/devel/libds/files/patch-Makefile (props changed) head/devel/libdsp/files/patch-Makefile.BSD (props changed) head/devel/libdwarf/files/patch-configure (props changed) head/devel/libedit/files/patch-common.c (props changed) head/devel/libedit/files/patch-configure (props changed) head/devel/libedit/files/patch-readline.c (props changed) head/devel/libedit/files/patch-terminal (props changed) head/devel/libedit/files/patch-vi.c (props changed) head/devel/libee/files/patch-Makefile.in (props changed) head/devel/libee/files/patch-include_libee_timestamp.h (props changed) head/devel/libelf/files/patch-Makefile.in (props changed) head/devel/libelf/files/patch-configure (props changed) head/devel/libelf/files/patch-lib::sys_elf.h.in (props changed) head/devel/libestr/files/patch-Makefile.in (props changed) head/devel/libev/files/patch-Makefile.in (props changed) head/devel/libev/files/patch-configure (props changed) head/devel/libev/files/patch-ev.c (props changed) head/devel/libevent-hiphop/files/extra-patch-hiphop (props changed) head/devel/libevent/files/patch-evdns.c (props changed) head/devel/libevent/files/patch-event.c (props changed) head/devel/libevent/files/patch-evutil.c (props changed) head/devel/libevent/files/patch-http.c (props changed) head/devel/libevent/files/patch-signal.c (props changed) head/devel/libevent2/files/patch-Makefile.in (props changed) head/devel/libevent2/files/patch-libevent.pc.in (props changed) head/devel/libevent2/files/patch-libevent_openssl.pc.in (props changed) head/devel/libexecinfo/files/patch-execinfo.c (props changed) head/devel/libftdi/files/extra-patch-configure.in (props changed) head/devel/libftdi/files/patch-examples_baud_test.c (props changed) head/devel/libftdi/files/patch-examples_bitbang.c (props changed) head/devel/libftdi/files/patch-examples_bitbang2.c (props changed) head/devel/libftdi/files/patch-examples_bitbang_ft2232.c (props changed) head/devel/libftdi/files/patch-examples_find_all.c (props changed) head/devel/libftdi/files/patch-examples_simple.c (props changed) head/devel/libftdi/files/patch-src_ftdi.c (props changed) head/devel/libg19/files/patch-configure (props changed) head/devel/libg19/files/patch-libg19.c (props changed) head/devel/libg19/files/patch-libg19.h (props changed) head/devel/libg19draw/files/patch-configure (props changed) head/devel/libg19draw/files/patch-libg19draw.c (props changed) head/devel/libg19draw/files/patch-libg19draw.h (props changed) head/devel/libgamepad/files/extra-patch-gamepad_usbhid.c (props changed) head/devel/libgconf-java/files/patch-configure (props changed) head/devel/libgconf-java/files/patch-gconf-java.pc.in (props changed) head/devel/libgetline/files/patch-aa (props changed) head/devel/libglade-java/files/patch-configure (props changed) head/devel/libglade-java/files/patch-glade-java.pc.in (props changed) head/devel/libgpc/files/patch-alloca (props changed) head/devel/libgtop/files/patch-config.h.in (props changed) head/devel/libgtop/files/patch-libgtop-sysdeps.m4 (props changed) head/devel/libgtop/files/patch-src_daemon_server.c (props changed) head/devel/libgutenfetch/files/patch-src-libgutenfetch_detail.c (props changed) head/devel/libhid/files/extra-patch-usb (props changed) head/devel/libhid/files/patch-Makefile.in (props changed) head/devel/libhid/files/patch-configure (props changed) head/devel/libhid/files/patch-hidparser-hidtypes.h (props changed) head/devel/libhid/files/patch-src_hid_initialisation.c (props changed) head/devel/libhid/files/patch-src_hid_opening.c (props changed) head/devel/libhid/files/patch-src_hid_parsing.c (props changed) head/devel/libhid/files/patch-test_lshid.c (props changed) head/devel/libhid/files/patch-test_test_libhid.c (props changed) head/devel/libical/files/patch-configure (props changed) head/devel/libiqxmlrpc/files/patch-libiqxmlrpc-except.h (props changed) head/devel/libiqxmlrpc/files/patch-libiqxmlrpc-net_except.h (props changed) head/devel/libk8055/files/patch-Makefile (props changed) head/devel/libk8055/files/patch-libk8055.c (props changed) head/devel/liblcfg/files/patch-src__lcfgx_tree.c (props changed) head/devel/libmaa/files/patch-strtol.c (props changed) head/devel/libmatheval/files/patch-config-ltmain.sh (props changed) head/devel/libmatheval/files/patch-doc-libmatheval.texi (props changed) head/devel/libmpcbdm/files/patch-examples_main.c (props changed) head/devel/libmpcbdm/files/patch-libmpc8xx_mpc8xxflash.c (props changed) head/devel/libmsocket/files/patch-file.c (props changed) head/devel/libnotify/files/patch-Makefile (props changed) head/devel/libnxt/files/patch-SConstruct (props changed) head/devel/libnxt/files/patch-lowlevel.c (props changed) head/devel/liboil/files/patch-vec_memcpy.diff (props changed) head/devel/liboil/files/patch-vec_memset.diff (props changed) head/devel/libol/files/patch-aa (props changed) head/devel/libole2/files/patch-aa (props changed) head/devel/libole2/files/patch-ab (props changed) head/devel/libole2/files/patch-libole2_ms-ole.h (props changed) head/devel/libole2/files/patch-ltmain.sh (props changed) head/devel/liboobs/files/patch-src_oobs-group.c (props changed) head/devel/liboobs/files/patch-src_oobs-user.c (props changed) head/devel/liboop/files/patch-configure (props changed) head/devel/liboop/files/patch-liboop.pc.in (props changed) head/devel/libopendaap/files/patch-client.c (props changed) head/devel/libopendaap/files/patch-http_client.c (props changed) head/devel/libopendaap/files/patch-ioloop.c (props changed) head/devel/libopendaap/files/patch-threadpool.c (props changed) head/devel/libowfat/files/patch-GNUmakefile (props changed) head/devel/libowfat/files/patch-buffer-errmsg_puts.c (props changed) head/devel/libparserutils/files/patch-Makefile (props changed) head/devel/libpasori/files/patch-libpasori_com_bsdugen.c (props changed) head/devel/libpasori/files/patch-libpasori_com_libusb.c (props changed) head/devel/libpasori/files/patch-libpasori_command.c (props changed) head/devel/libpasori/files/patch-libpasori_command.h (props changed) head/devel/libpasori/files/patch-libpasori_polling.c (props changed) head/devel/libpasori/files/patch-lpdump.c (props changed) head/devel/libpasori/files/patch-lptest.c (props changed) head/devel/libpciaccess/files/patch-src-common_init.c (props changed) head/devel/libpciaccess/files/patch-src-freebsd_pci.c (props changed) head/devel/libpciaccess/files/patch-src-pciaccess_private.h (props changed) head/devel/libpdel/files/patch-arp (props changed) head/devel/libpdel/files/patch-http_servlet_cookieauth.c (props changed) head/devel/libpdel/files/patch-len (props changed) head/devel/libpdel/files/patch-ppp_auth_radius.c (props changed) head/devel/libpdel/files/patch-rsa_util.c (props changed) head/devel/libpdel/files/patch-util_paction.c (props changed) head/devel/libpdel/files/patch-util_pevent.c (props changed) head/devel/libphish/files/patch-src-phish_opdb_server.c (props changed) head/devel/libphish/files/patch-src-phish_util_net.c (props changed) head/devel/libphk/files/patch-phk__expr.c (props changed) head/devel/libpthread-stubs/files/patch-Makefile.in (props changed) head/devel/libpthread-stubs/files/patch-stubs.c (props changed) head/devel/libreadline-java/files/patch-Makefile (props changed) head/devel/libreadline-java/files/patch-src-Makefile (props changed) head/devel/libreadline-java/files/patch-src-native-Makefile (props changed) head/devel/libreadline-java/files/patch-src-native-getline.c (props changed) head/devel/libreadline-java/files/patch-src-native-org_gnu_readline_Readline.c (props changed) head/devel/libreadline-java/files/patch-src-org-gnu-readline-Readline.java (props changed) head/devel/libruin/files/patch-ltmain.sh (props changed) head/devel/libshbuf/files/patch-configure (props changed) head/devel/libshbuf/files/patch-internal.h (props changed) head/devel/libsigrok/files/patch-hardware-lascar-el-usb-protocol.c (props changed) head/devel/libsigrok/files/patch-hardware-victor-dmm-api.c (props changed) head/devel/libsoup/files/patch-libsoup_Makefile.in (props changed) head/devel/libstatgrab/files/patch-configure (props changed) head/devel/libtai/files/patch-aa (props changed) head/devel/libtai/files/patch-ab (props changed) head/devel/libtai/files/patch-ac (props changed) head/devel/libtai/files/patch-ad (props changed) head/devel/libtai/files/patch-ae (props changed) head/devel/libtai/files/patch-af (props changed) head/devel/libtai/files/patch-ag (props changed) head/devel/libtai/files/patch-yearcal.c (props changed) head/devel/libtar/files/patch-lib_Makefile.in (props changed) head/devel/libtecla/files/patch-demo3.c (props changed) head/devel/libtecla/files/patch-getline.c (props changed) head/devel/libtool/files/patch-libltdl-Makefile.in (props changed) head/devel/libunicode/files/patch-aa (props changed) head/devel/libunicode/files/patch-iso8859.c (props changed) head/devel/libunicode/files/patch-latin1.c (props changed) head/devel/libuninum/files/patch-ltmain.sh (props changed) head/devel/libx86/files/patch-thunk.c (props changed) head/devel/libytnef/files/patch-ytnef.c (props changed) head/devel/libzrtpcpp/files/patch-src-libzrtpcpp_ZrtpPacketBase.h (props changed) head/devel/linux_kdump/files/patch-Makefile (props changed) head/devel/linux_kdump/files/patch-mkioctls.linux (props changed) head/devel/llvm-devel/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/devel/llvm31/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/devel/llvm32/files/patch-svn-r170353 (props changed) head/devel/llvm32/files/patch-svn-r175057 (props changed) head/devel/llvm32/files/patch-svn-r175360 (props changed) head/devel/llvm32/files/patch-svn-r175962 (props changed) head/devel/llvm32/files/patch-svn-r178240 (props changed) head/devel/llvm32/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/devel/llvm33/files/patch-svn-182446 (props changed) head/devel/llvm33/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/devel/llvm34/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/devel/log4cpp/files/patch-doc_Makefile.in (props changed) head/devel/loki/files/patch-Makefile.common (props changed) head/devel/loki/files/patch-src-Makefile (props changed) head/devel/loki/files/patch-test_SingletonDll_Makefile (props changed) head/devel/love/files/patch-src-modules-graphics-opengl-GLee.h (props changed) head/devel/love07/files/patch-src-modules-graphics-opengl-GLee.h (props changed) head/devel/love5/files/patch-src-opengl-GLee.h (props changed) head/devel/love5/files/patch-src-system-love__system.cpp (props changed) head/devel/lrmi/files/patch-Makefile.bsd (props changed) head/devel/lua-alien/files/patch-Makefile (props changed) head/devel/lua-alien/files/patch-src-alien-core.c (props changed) head/devel/lua-pty/files/patch-pty.c (props changed) head/devel/lua-pty/files/patch-pty.lua (props changed) head/devel/lua-rds-parser/files/patch-Makefile (props changed) head/devel/lua-redis-parser/files/patch-Makefile (props changed) head/devel/luajava/files/patch-config (props changed) head/devel/lxr/files/patch-use-strict-syntax (props changed) head/devel/m17n-db/files/patch-configure (props changed) head/devel/m17n-lib/files/patch-configure.ac (props changed) head/devel/m4/files/patch-doc_m4.texi (props changed) head/devel/m4/files/patch-lib_Makefile.in (props changed) head/devel/m6811-binutils/files/patch-etc-Makefile.in (props changed) head/devel/m6811-binutils/files/patch-gas-as.h (props changed) head/devel/m6811-binutils/files/patch-libiberty-Makefile.in (props changed) head/devel/magit/files/patch-Makefile (props changed) head/devel/matreshka/files/patch-Makefile.build (props changed) head/devel/matreshka/files/patch-Makefile.install (props changed) head/devel/mcpp/files/patch-src__internal.H (props changed) head/devel/mcpp/files/patch-src__main.c (props changed) head/devel/mcpp/files/patch-src__support.c (props changed) head/devel/mcpp/files/patch-src__system.c (props changed) head/devel/menhir/files/patch-Makefile (props changed) head/devel/mercator/files/patch-Merecator-iround.h (props changed) head/devel/mico/files/patch-include::mico::os-math.h (props changed) head/devel/mico/files/patch-include::mico::util.h (props changed) head/devel/mico/files/patch-orb-ssl.cc (props changed) head/devel/mico/files/patch-src::Makefile (props changed) head/devel/mico/files/patch-src::aclocal.m4 (props changed) head/devel/mime/files/patch-header.c (props changed) head/devel/mime/files/patch-message.c (props changed) head/devel/mime/files/patch-util.c (props changed) head/devel/mime/files/patch-util.h (props changed) head/devel/mingw32-binutils/files/patch-Makefile.in (props changed) head/devel/mingw32-binutils/files/patch-configure (props changed) head/devel/mingw32-gcc/files/patch-Makefile.in (props changed) head/devel/mingw32-gcc/files/patch-gcc-Makefile.in (props changed) head/devel/mingw32-libyaml/files/patch-include+yaml.h (props changed) head/devel/mk/files/patch-src::Posix.c (props changed) head/devel/mk/files/patch-src::main.c (props changed) head/devel/mkcmd/files/patch-aa (props changed) head/devel/mkcmd/files/patch-ab (props changed) head/devel/mkcmd/files/patch-ac (props changed) head/devel/mkcmd/files/patch-ad (props changed) head/devel/mkcmd/files/patch-ae (props changed) head/devel/ml-doc/files/patch-Makefile.in (props changed) head/devel/ml-doc/files/patch-config-install-sml-wrapper_sh.in (props changed) head/devel/ml-doc/files/patch-configure (props changed) head/devel/ml-doc/files/patch-tools-html-gen-do_spec.sml (props changed) head/devel/ml-doc/files/patch-tools-lib-code_style-sml_token_scanner.sml (props changed) head/devel/ml-doc/files/patch-tools-lib-latex-text_to_latex.sml (props changed) head/devel/monodevelop-database/files/patch-MonoDevelop.Database.Sql_Makefile.in (props changed) head/devel/monodevelop/files/patch-monodevelop-core-addins.pc.in (props changed) head/devel/monodevelop/files/patch-src_addins_MonoDevelop.Autotools_SolutionDeployer.cs (props changed) head/devel/monodevelop/files/patch-theme-icons_icon-theme-installer (props changed) head/devel/monotone-viz/files/patch-Makefile (props changed) head/devel/monotone-viz/files/patch-agraph.ml (props changed) head/devel/monotone-viz/files/patch-automate.ml (props changed) head/devel/motor/files/patch-clang (props changed) head/devel/motor/files/patch-gcc4 (props changed) head/devel/motor/files/patch-kksystr_include_kkiproc.h (props changed) head/devel/motor/files/patch-src::Makefile.in (props changed) head/devel/motor/files/patch-src::configuration::Makefile.in (props changed) head/devel/motor/files/patch-src::debugger::motordebugger.cc (props changed) head/devel/motor/files/patch-src::manager::Makefile.in (props changed) head/devel/mpatrol/files/patch-..::..::src::mpatrol.h (props changed) head/devel/mpatrol/files/patch-..::..::src::mptrace.c (props changed) head/devel/mpatrol/files/patch-..::..::src::symbol.c (props changed) head/devel/mpatrol/files/patch-..::..::tools::dbmalloc.c (props changed) head/devel/mq4cpp/files/patch-Makefile.in (props changed) head/devel/mq4cpp/files/patch-include_Trace.h (props changed) head/devel/msp430-binutils/files/patch-Makefile.in (props changed) head/devel/msp430-binutils/files/patch-libiberty::strerror.c (props changed) head/devel/msp430-binutils/files/patch-libiberty::strsignal.c (props changed) head/devel/msp430-gcc/files/patch-Makefile.in (props changed) head/devel/msp430-gcc/files/patch-gcc-Makefile.in (props changed) head/devel/msp430-gcc/files/patch-libgcc-Makefile.in (props changed) head/devel/msp430-gcc3/files/patch-Makefile.in (props changed) head/devel/msp430-gcc3/files/patch-gcc-Makefile.in (props changed) head/devel/msp430-gcc3/files/patch-gcc-config-msp430-msp430.c (props changed) head/devel/mspdebug/files/patch-Makefile (props changed) head/devel/msrc0/files/patch-aa (props changed) head/devel/nasm/files/patch-output+outelf32.c (props changed) head/devel/nasm/files/patch-output+outelf64.c (props changed) head/devel/newfile/files/patch-data_projects_port_Makefile (props changed) head/devel/newfile/files/patch-data_projects_port_pkg-descr (props changed) head/devel/newt/files/patch-newt.c (props changed) head/devel/nglogc/files/patch-src_nglogc_Makefile.am (props changed) head/devel/nglogc/files/patch-src_nglogc_Makefile.in (props changed) head/devel/noweb/files/patch-Makefile (props changed) head/devel/noweb/files/patch-c_modules.c (props changed) head/devel/noweb/files/patch-c_modules.nw (props changed) head/devel/nspr/files/patch-..::config::autoconf.mk.in (props changed) head/devel/nspr/files/patch-bug301986 (props changed) head/devel/nspr/files/patch-bug782109 (props changed) head/devel/nspr/files/patch-bug782111 (props changed) head/devel/nspr/files/patch-bug782113 (props changed) head/devel/nspr/files/patch-bug782124 (props changed) head/devel/nspr/files/patch-config-nsprc.pc.in (props changed) head/devel/nspr/files/patch-libtests (props changed) head/devel/nspr/files/patch-tests (props changed) head/devel/nspr/files/patch-warnings (props changed) head/devel/ocaml-camomile/files/patch-Makefile.in (props changed) head/devel/ocaml-classes/files/patch-Makefile (props changed) head/devel/ocaml-event/files/patch-Makefile (props changed) head/devel/ocaml-findlib/files/patch-src_findlib_Makefile (props changed) head/devel/ocaml-react/files/patch-src_META (props changed) head/devel/ocamlweb/files/patch-Makefile.in (props changed) head/devel/ocamlweb/files/patch-ocaml-parser::terminfo.ml (props changed) head/devel/ocamlweb/files/patch-ocaml-parser::terminfo.mli (props changed) head/devel/ocfpcsc/files/patch-OCFPCSC1.cpp (props changed) head/devel/ocfpcsc/files/patch-PcscExceptions.cpp (props changed) head/devel/ocfpcsc/files/patch-fieldIO.cpp (props changed) head/devel/ocfpcsc/files/patch-fieldIO.h (props changed) head/devel/ode-devel/files/patch-Makefile (props changed) head/devel/ode-devel/files/patch-configurator.c (props changed) head/devel/ode/files/patch-Makefile.in (props changed) head/devel/ois/files/patch-src-Makefile.am (props changed) head/devel/ois/files/patch-src-linux-LinuxInputManager.cpp (props changed) head/devel/ois/files/patch-src-linux-LinuxMouse.cpp (props changed) head/devel/omake/files/patch-doc_info_omake-doc.info (props changed) head/devel/omniNotify/files/patch-configure (props changed) head/devel/omniORB/files/patch-ak (props changed) head/devel/omniORB/files/patch-configure (props changed) head/devel/omniORB/files/patch-contrib::pkgconfig::GNUmakefile.in (props changed) head/devel/omniORB/files/patch-idl::COS::Gnumakefile.in (props changed) head/devel/omniORB/files/patch-idl::Gnumakefile.in (props changed) head/devel/omniORB/files/patch-undef_minor_macro (props changed) head/devel/oniguruma/files/patch-Makefile.in (props changed) head/devel/opencvs/files/patch-Makefile (props changed) head/devel/opencvs/files/patch-cvs.h (props changed) head/devel/opencvs/files/patch-date.y (props changed) head/devel/opencvs/files/patch-log.h (props changed) head/devel/opencvs/files/patch-rcsparse.h (props changed) head/devel/opencvs/files/patch-util.c (props changed) head/devel/opencvs/files/patch-xmalloc.c (props changed) head/devel/opencvs/files/patch-xmalloc.h (props changed) head/devel/openzz/files/patch-configure (props changed) head/devel/openzz/files/patch-zlex.c (props changed) head/devel/orc/files/patch-orc-Makefile.in (props changed) head/devel/orc/files/patch-orc-orccpu_powerpc.c (props changed) head/devel/orc/files/patch-orc-test-Makefile.in (props changed) head/devel/ossp-l2/files/patch-va.diff (props changed) head/devel/ossp-xds/files/patch-xds.c (props changed) head/devel/otrs/files/patch-Kernel-System-Loader.pm (props changed) head/devel/otrs/files/patch-bin-otrs.CheckModules.pl (props changed) head/devel/otrs/files/patch-scripts::apache2-httpd-new.include.conf (props changed) head/devel/p4db/files/patch-P4CGI.pm (props changed) head/devel/p4db/files/patch-P4DB.conf.sample (props changed) head/devel/p5-Alias/files/patch-Alias.xs (props changed) head/devel/p5-Alzabo-GUI-Mason/files/patch-Build.PL (props changed) head/devel/p5-Alzabo-GUI-Mason/files/patch-inc-Alzabo-GUI-Mason-Build.pm (props changed) head/devel/p5-Alzabo/files/patch-Build.PL (props changed) head/devel/p5-BSD-devstat/files/patch-devstat.xs (props changed) head/devel/p5-Cdk/files/patch-ad (props changed) head/devel/p5-Config-Auto/files/patch-Makefile.PL (props changed) head/devel/p5-Config-Objective/files/patch-grammar.yp (props changed) head/devel/p5-Config-Objective/files/patch-lib-Config-Objective.pm (props changed) head/devel/p5-Coro/files/patch-Coro-State.xs (props changed) head/devel/p5-Coro/files/patch-coro.c (props changed) head/devel/p5-Event-Lib/files/patch-Makefile.PL (props changed) head/devel/p5-File-Pid/files/patch-lib-File-Pid.pm (props changed) head/devel/p5-File-Tail/files/patch-tail.pm (props changed) head/devel/p5-Getopt-Long/files/patch-Makefile.PL (props changed) head/devel/p5-Glib2/files/patch-threadstest (props changed) head/devel/p5-Gtk2-Notify/files/patch-t-notification.t (props changed) head/devel/p5-Gtk2-Notify/files/patch-xs-Notify.xs (props changed) head/devel/p5-IO-KQueue/files/patch-KQueue.xs (props changed) head/devel/p5-Inline-CPP/files/patch-Makefile.PL (props changed) head/devel/p5-Inline/files/patch-C__Makefile.PL (props changed) head/devel/p5-Java/files/patch-MANIFEST (props changed) head/devel/p5-Java/files/patch-Makefile.PL (props changed) head/devel/p5-Locale-PGetText/files/patch-aa (props changed) head/devel/p5-Locale-gettext/files/patch-Makefile.PL (props changed) head/devel/p5-Locale-gettext/files/patch-gettext.pm (props changed) head/devel/p5-Module-Reload-Sel/files/patch-Selective.pm (props changed) head/devel/p5-POE-Component-Child/files/patch-test.pl (props changed) head/devel/p5-POE-Component-Hailo/files/patch-Makefile.PL.in (props changed) head/devel/p5-POE-Quickie/files/patch-lib_POE-Quickie.pm (props changed) head/devel/p5-PPerl/files/patch-Makefile.PL (props changed) head/devel/p5-PPerl/files/patch-main.c (props changed) head/devel/p5-PPerl/files/patch-pass_fd.c (props changed) head/devel/p5-Parse-PerlConfig/files/patch-Makefile.PL (props changed) head/devel/p5-Perl-Metrics-Simple/files/patch-File.pm (props changed) head/devel/p5-Perl-Metrics-Simple/files/patch-TestData.pm (props changed) head/devel/p5-Set-Object/files/patch-Object.xs (props changed) head/devel/p5-Shape/files/patch-Shape.xs (props changed) head/devel/p5-String-Ediff/files/patch-st_wrap.c (props changed) head/devel/p5-Sys-Syscall/files/patch-lib__Sys__Syscall.pm (props changed) head/devel/p5-Term-ANSIColor/files/patch-Makefile.PL (props changed) head/devel/p5-Test-Manifest/files/patch-Makefile.PL (props changed) head/devel/p5-Test-Unit/files/patch-Makefile.PL (props changed) head/devel/p5-Time-Object/files/patch-Object.xs (props changed) head/devel/p5-TraceFuncs/files/patch-aa (props changed) head/devel/p5-VCP-autrijus/files/patch-Makefile.PL (props changed) head/devel/p5-YAML-AppConfig/files/patch-AppConfig.pm (props changed) head/devel/p5-libalarm/files/patch-lib__Alarm__Concurrent.pm (props changed) head/devel/p5-local-lib/files/patch-Makefile.PL (props changed) head/devel/pccts/files/patch-ac (props changed) head/devel/pccts/files/patch-ad (props changed) head/devel/pccts/files/patch-ae (props changed) head/devel/pccts/files/patch-af (props changed) head/devel/pccts/files/patch-ag (props changed) head/devel/pccts/files/patch-ah (props changed) head/devel/pccts/files/patch-ai (props changed) head/devel/pccts/files/patch-aj (props changed) head/devel/pccts/files/patch-ak (props changed) head/devel/pccts/files/patch-al (props changed) head/devel/pccts/files/patch-am (props changed) head/devel/pccts/files/patch-an (props changed) head/devel/pccts/files/patch-ao (props changed) head/devel/pccts/files/patch-ap (props changed) head/devel/pccts/files/patch-aq (props changed) head/devel/pccts/files/patch-makefile (props changed) head/devel/pcsc-lite/files/patch-ltmain.sh (props changed) head/devel/pear-Horde_Role/files/patch-package.xml (props changed) head/devel/pear-PHPDoc/files/patch-phpdoc (props changed) head/devel/pear/files/extra-patch-PEAR-Config.php (props changed) head/devel/pear/files/patch-go-pear (props changed) head/devel/pecl-params/files/patch-php_params.c (props changed) head/devel/pecl-parsekit/files/patch-parsekit.c (props changed) head/devel/pecl-runkit/files/patch-php_runkit.h (props changed) head/devel/pecl-runkit/files/patch-runkit.c (props changed) head/devel/pecl-runkit/files/patch-runkit_constants.c (props changed) head/devel/pecl-runkit/files/patch-runkit_import.c (props changed) head/devel/pecl-runkit/files/patch-runkit_props.c (props changed) head/devel/pecl-runkit/files/patch-runkit_sandbox.c (props changed) head/devel/pecl-spl_types/files/patch-spl_type.c (props changed) head/devel/pecl-spread/files/patch-php_spread.c (props changed) head/devel/pecl-test_helpers/files/patch-test_helpers.c (props changed) head/devel/php5-gettext/files/patch-config.m4 (props changed) head/devel/php5-readline/files/patch-config.m4 (props changed) head/devel/php5-readline/files/patch-readline_cli.c (props changed) head/devel/php52-gettext/files/patch-config.m4 (props changed) head/devel/php52-pcre/files/patch-php_pcre.c (props changed) head/devel/php52-readline/files/patch-config.m4 (props changed) head/devel/php52-spl/files/patch-config.m4 (props changed) head/devel/php53-gettext/files/patch-config.m4 (props changed) head/devel/php53-readline/files/patch-config.m4 (props changed) head/devel/php55-gettext/files/patch-config.m4 (props changed) head/devel/php55-readline/files/patch-config.m4 (props changed) head/devel/php55-readline/files/patch-readline_cli.c (props changed) head/devel/phpsh/files/patch-README.md (props changed) head/devel/phpsh/files/patch-setup.py (props changed) head/devel/phpsh/files/patch-src_doc_phpsh.1 (props changed) head/devel/phpsh/files/patch-src_doc_phpsh.1.html (props changed) head/devel/phpsh/files/patch-src_doc_phpsh.1.txt (props changed) head/devel/phpsh/files/patch-src_manual.py (props changed) head/devel/phpsh/files/patch-src_phpsh (props changed) head/devel/phpsh/files/patch-src_phpsh.php (props changed) head/devel/phpsh/files/patch-src_phpsh.py (props changed) head/devel/picp/files/patch-Makefile (props changed) head/devel/picprog/files/patch-picport.cc (props changed) head/devel/piklab/files/patch-src_common__global__process.cpp (props changed) head/devel/piklab/files/patch-src_common__port__hid_port.cpp (props changed) head/devel/piklab/files/patch-src_common__port__port.cpp (props changed) head/devel/piklab/files/patch-src_common__port__usb_port.cpp (props changed) head/devel/pinba_engine/files/patch-src__ha_pinba.cc (props changed) head/devel/poco-ssl/files/patch-Data-ODBC-Makefile.in (props changed) head/devel/poco-ssl/files/patch-Data-ODBC-testsuite-Makefile.in (props changed) head/devel/popt/files/patch-Makefile.in (props changed) head/devel/popt/files/patch-configure (props changed) head/devel/popt/files/patch-popt.3 (props changed) head/devel/popt/files/patch-popt.c (props changed) head/devel/premake/files/patch-Makefile (props changed) head/devel/premake4/files/patch-src-base-os.lua (props changed) head/devel/premake4/files/patch-src-host-scripts.c (props changed) head/devel/psptoolchain-binutils/files/patch-bfd-archures.c (props changed) head/devel/psptoolchain-binutils/files/patch-bfd-bfd-in2.h (props changed) head/devel/psptoolchain-binutils/files/patch-bfd-cpu-mips.c (props changed) head/devel/psptoolchain-binutils/files/patch-bfd-elfxx-mips.c (props changed) head/devel/psptoolchain-binutils/files/patch-bfd-version.h (props changed) head/devel/psptoolchain-binutils/files/patch-binutils-readelf.c (props changed) head/devel/psptoolchain-binutils/files/patch-config.sub (props changed) head/devel/psptoolchain-binutils/files/patch-configure (props changed) head/devel/psptoolchain-binutils/files/patch-gas-config-tc-mips.c (props changed) head/devel/psptoolchain-binutils/files/patch-gas-configure (props changed) head/devel/psptoolchain-binutils/files/patch-gas-configure.in (props changed) head/devel/psptoolchain-binutils/files/patch-gas-testsuite-gas-mips-mips.exp (props changed) head/devel/psptoolchain-binutils/files/patch-include-elf-common.h (props changed) head/devel/psptoolchain-binutils/files/patch-include-elf-mips.h (props changed) head/devel/psptoolchain-binutils/files/patch-include-opcode-mips.h (props changed) head/devel/psptoolchain-binutils/files/patch-include-opcode-vfpu.h (props changed) head/devel/psptoolchain-binutils/files/patch-ld-Makefile.am (props changed) head/devel/psptoolchain-binutils/files/patch-ld-Makefile.in (props changed) head/devel/psptoolchain-binutils/files/patch-ld-configure.tgt (props changed) head/devel/psptoolchain-binutils/files/patch-ld-emulparams-elf_mipsallegrexel_psp.sh (props changed) head/devel/psptoolchain-binutils/files/patch-ld-scripttempl-elf_psp.sc (props changed) head/devel/psptoolchain-binutils/files/patch-opcodes-mips-dis.c (props changed) head/devel/psptoolchain-binutils/files/patch-opcodes-mips-opc.c (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-config.sub (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-gcc-config-mips-allegrex.md (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-gcc-config-mips-mips-ftypes.def (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-gcc-config-mips-mips.c (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-gcc-config-mips-mips.h (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-gcc-config-mips-mips.md (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-gcc-config-mips-mips.opt (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-gcc-config-mips-psp.h (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-gcc-config-mips-t-allegrex (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-gcc-config.gcc (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-libgcc-config.host (props changed) head/devel/psptoolchain-gcc-stage1/files/patch-libobjc-Makefile.in (props changed) head/devel/psptoolchain-gdb/files/patch-bfd-archures.c (props changed) head/devel/psptoolchain-gdb/files/patch-bfd-bfd-in2.h (props changed) head/devel/psptoolchain-gdb/files/patch-bfd-cpu-mips.c (props changed) head/devel/psptoolchain-gdb/files/patch-bfd-elfxx-mips.c (props changed) head/devel/psptoolchain-gdb/files/patch-bfd-sysdep.h (props changed) head/devel/psptoolchain-gdb/files/patch-config.sub (props changed) head/devel/psptoolchain-gdb/files/patch-include-elf-common.h (props changed) head/devel/psptoolchain-gdb/files/patch-include-elf-mips.h (props changed) head/devel/psptoolchain-gdb/files/patch-include-opcode-mips.h (props changed) head/devel/psptoolchain-gdb/files/patch-opcodes-mips-dis.c (props changed) head/devel/psptoolchain-gdb/files/patch-opcodes-mips-opc.c (props changed) head/devel/psptoolchain-gdb/files/patch-sim-common-sim-signal.c (props changed) head/devel/psptoolchain-newlib/files/patch-config.sub (props changed) head/devel/psptoolchain-newlib/files/patch-configure (props changed) head/devel/psptoolchain-newlib/files/patch-configure.ac (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-Makefile.am (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-Makefile.in (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-configure.host (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-include-machine-time.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-include-stdint.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-include-sys-config.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-include-sys-types.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-include-sys-unistd.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-configure (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-configure.in (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-Makefile.am (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-Makefile.in (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-README (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-aclocal.m4 (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-arpa-inet.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-confdefs.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-configure (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-configure.in (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-crt0.c (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-fdman.c (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-fdman.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-include-netdb.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-interrupt.S (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-libcglue.c (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-netdb.c (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-netinet-in.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-netinet-tcp.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-pipe.c (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-pspcwd.c (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-select.c (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-socket.c (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-sys-dirent.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-sys-errno.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-sys-fd_set.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-sys-ioctl.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-sys-select.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-sys-socket.h (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-syscalls.c (props changed) head/devel/psptoolchain-newlib/files/patch-newlib-libc-sys-psp-xprintf.c (props changed) head/devel/psptoolchain-pspsdk-stage1/files/patch-tools-PrxEncrypter-kirk_engine.c (props changed) head/devel/pth/files/patch-ltmain.sh (props changed) head/devel/pth/files/patch-pth_p.h.in (props changed) head/devel/ptmalloc/files/patch-Makefile (props changed) head/devel/ptmalloc2/files/patch-Makefile (props changed) head/devel/ptypes/files/patch-src-Makefile.common (props changed) head/devel/ptypes/files/patch-wshare-Makefile.common (props changed) head/devel/publib/files/patch-framework::Generic.mk (props changed) head/devel/publib/files/patch-liw::publibdoc::Makefile (props changed) head/devel/pure-gen/files/patch-dump-ast.hs (props changed) head/devel/pure-stldict/files/patch-Makefile (props changed) head/devel/pwlib/files/patch-Makefile.in (props changed) head/devel/pwlib/files/patch-include-ptclib-dtmf-h (props changed) head/devel/pwlib/files/patch-include-ptlib-array.h (props changed) head/devel/pwlib/files/patch-include_ptclib_vsdl.h (props changed) head/devel/pwlib/files/patch-make::lib.mak (props changed) head/devel/pwlib/files/patch-plugins-Makefile.in (props changed) head/devel/pwlib/files/patch-plugins-configure (props changed) head/devel/pwlib/files/patch-plugins-sound_oss-sound_oss_cxx (props changed) head/devel/pwlib/files/patch-plugins-vidinput_v4l-vidinput_v4l.cxx (props changed) head/devel/pwlib/files/patch-src-ptclib-pssl.cxx (props changed) head/devel/pwlib/files/patch-src-ptlib-unix-svcproc.cxx (props changed) head/devel/pwlib/files/patch-src-ptlib-unix-tlib-cxx (props changed) head/devel/pwlib/files/patch-src_ptclib_dtmf_cxx (props changed) head/devel/pwlib/files/patch-src_ptclib_vsdl.cxx (props changed) head/devel/pwlib/files/patch-src_ptlib_common_jidctflt.cxx (props changed) head/devel/pwlib/files/patch-src_ptlib_common_osutils.cxx (props changed) head/devel/pwlib/files/patch-src_ptlib_unix_socket.cxx (props changed) head/devel/pwlib/files/patch-src_ptlib_unix_tlibthrd.cxx (props changed) head/devel/pwlib/files/patch-unixmak (props changed) head/devel/py-Jinja/files/patch-setup.py (props changed) head/devel/py-Products.LDAPUserFolder/files/extra-patch-posixgroup (props changed) head/devel/py-bison/files/patch-setup.py (props changed) head/devel/py-cxx/files/patch-setup.py (props changed) head/devel/py-daemon/files/patch-daemon-pidlockfile.py (props changed) head/devel/py-dal/files/patch-dal_dbapi_db__row.py (props changed) head/devel/py-dialog/files/patch-demo.py (props changed) head/devel/py-dialog/files/patch-dialog.py (props changed) head/devel/py-event/files/patch-event.c (props changed) head/devel/py-event/files/patch-event.pyx (props changed) head/devel/py-extremes/files/patch-setup.py (props changed) head/devel/py-foolscap/files/patch-setup.py (props changed) head/devel/py-fortran/files/patch-fortran_compiler.py (props changed) head/devel/py-freebsd/files/patch-setup.py (props changed) head/devel/py-freebsd/files/patch-src-netstat.c (props changed) head/devel/py-freebsd/files/patch-src-process.c (props changed) head/devel/py-game/files/patch-setup.py (props changed) head/devel/py-gdata/files/patch-src_atom-mock_service.py (props changed) head/devel/py-gdata/files/patch-src_gdata_tlslite-TLSRecordLayer.py (props changed) head/devel/py-gdata/files/patch-src_gdata_tlslite-mathls.py (props changed) head/devel/py-gdata/files/patch-src_gdata_tlslite-messages.py (props changed) head/devel/py-gdata/files/patch-src_gdata_tlslite_utils-jython_compat.py (props changed) head/devel/py-gitdb/files/patch-setup.py (props changed) head/devel/py-gobject/files/patch-docs_Makefile.in (props changed) head/devel/py-gobject/files/patch-pygobject-2.0.pc.in (props changed) head/devel/py-grizzled/files/patch-setup.py (props changed) head/devel/py-gyp-devel/files/patch-pylib_gyp_generator_make.py (props changed) head/devel/py-iniparse/files/patch-setup.py (props changed) head/devel/py-jira/files/patch-tlslite_requirement (props changed) head/devel/py-jsonlib/files/patch-_jsonlib.c (props changed) head/devel/py-kqueue/files/patch-kqsyscallmodule.c (props changed) head/devel/py-lxml/files/patch-src-lxml_lxml.etree.c (props changed) head/devel/py-mercurialserver/files/patch-setup.py (props changed) head/devel/py-mercurialserver/files/patch-src__init__hginit (props changed) head/devel/py-ncurses/files/patch-ncurses::_curses_wrap.c (props changed) head/devel/py-ncurses/files/patch-ncurses::_panel_wrap.c (props changed) head/devel/py-ncurses/files/patch-setup.py (props changed) head/devel/py-nose/files/patch-setup.py (props changed) head/devel/py-notify/files/patch-src_pynotify.defs (props changed) head/devel/py-omniorb/files/patch-omniidl_be-dir.mk (props changed) head/devel/py-omniorb/files/patch-python-dir.mk (props changed) head/devel/py-pathtools/files/patch-docs__source__conf.py (props changed) head/devel/py-pykde4/files/patch-__init__.py (props changed) head/devel/py-pykde4/files/patch-kpythonpluginfactory__kpythonpluginfactory.cpp (props changed) head/devel/py-pykdeuic4/files/patch-CMakeLists.txt (props changed) head/devel/py-rope/files/patch-setup.py (props changed) head/devel/py-ruledispatch/files/patch-src-dispatch___init__.py (props changed) head/devel/py-ruledispatch/files/patch-src-dispatch_predicates.py (props changed) head/devel/py-sanetime/files/patch-setup.py (props changed) head/devel/py-tables/files/patch-setup.py (props changed) head/devel/py-tox/files/patch-setup.py (props changed) head/devel/py-virtualenvwrapper/files/patch-setup.py (props changed) head/devel/py-watchdog/files/patch-docs__source__conf.py (props changed) head/devel/py-xdg/files/patch-xdg::BaseDirectory.py (props changed) head/devel/pychecker/files/patch-setup.py (props changed) head/devel/pyside-tools/files/patch-CMakeLists.txt (props changed) head/devel/pyside-tools/files/patch-pylupdate__CMakeLists.txt (props changed) head/devel/pyside-tools/files/patch-pyrcc__CMakeLists.txt (props changed) head/devel/pyside/files/patch-PySide__QtOpenGL__CMakeLists.txt (props changed) head/devel/pyside/files/patch-libpyside__CMakeLists.txt (props changed) head/devel/qca/files/patch-configure (props changed) head/devel/qca/files/patch-r1273508 (props changed) head/devel/qca/files/patch-src__src.pro (props changed) head/devel/qct/files/patch-qctlib_vcs_svn.py (props changed) head/devel/qct/files/patch-setup.py (props changed) head/devel/qdevelop/files/patch-QDevelop.pro (props changed) head/devel/qdevelop/files/patch-fix_qt47 (props changed) head/devel/qsvn/files/patch-CMakeLists.txt (props changed) head/devel/qsvn/files/patch-svnqt__CMakeLists.txt (props changed) head/devel/qsvn/files/patch-svnqt__commititem.cpp (props changed) head/devel/qt4-assistant-adp/files/patch-compat.pro (props changed) head/devel/qt4-linguist/files/patch-tools__linguist__lrelease__main.cpp (props changed) head/devel/qtscriptgenerator/files/extra-patch-no_phonon (props changed) head/devel/qtscriptgenerator/files/patch-generator-parser-rpp-preprocessor.cpp (props changed) head/devel/qtscriptgenerator/files/patch-generator_memory_alignment (props changed) head/devel/qtscriptgenerator/files/patch-qtscript_masterinclude.h (props changed) head/devel/quilt/files/extra-patch-Makefile.in (props changed) head/devel/raknet/files/patch-CMakeLists.txt (props changed) head/devel/raknet/files/patch-Samples-Tests-PacketAndLowLevelTestsTest.cpp (props changed) head/devel/readline/files/patch-support-shlib-install (props changed) head/devel/readline/files/patch-support-shobj-conf (props changed) head/devel/regexx/files/patch-examples::simple.cc (props changed) head/devel/regexx/files/patch-src::regex.hh (props changed) head/devel/regexx/files/patch-src::regexx.cc (props changed) head/devel/rhtvision/files/patch-conflib.pl (props changed) head/devel/rlwrap/files/patch-src::ptytty.c (props changed) head/devel/ros-nxt/files/patch-nxt__python_build_nxt-python-1.1.2_nxt_usbsock.py (props changed) head/devel/ros-nxt/files/patch-nxt_description__CMakeLists.txt (props changed) head/devel/ros-nxt/files/patch-rosdep.yaml (props changed) head/devel/ros-nxt/files/patch-stack.xml (props changed) head/devel/ros/files/patch-tools__rosdep__src__rosdep__freebsd.py (props changed) head/devel/ros_comm/files/patch-clients__cpp__roscpp__src__libros__CMakeLists.txt (props changed) head/devel/ros_comm/files/patch-clients__cpp__roscpp__src__libros__network.cpp (props changed) head/devel/rote/files/patch-inject.c (props changed) head/devel/rote/files/patch-inject_csi.c (props changed) head/devel/rote/files/patch-rote.c (props changed) head/devel/rpc2/files/patch-stest.c (props changed) head/devel/ruby-dialogs/files/patch-dialogs.rb (props changed) head/devel/ruby-fastri/files/patch-lib_fastri_util.rb (props changed) head/devel/ruby-intl/files/patch-extconf.rb (props changed) head/devel/ruby-locale/files/patch-ab (props changed) head/devel/ruby-ncurses/files/patch-form_wrap.h (props changed) head/devel/ruby-rbbr/files/patch-pre-setup_rb (props changed) head/devel/ruby-rbprof/files/patch-aspects::profiler::lib::rbprof.rb (props changed) head/devel/ruby-robjectteam/files/patch-install.rb (props changed) head/devel/ruby-statgrab/files/patch-extconf.rb (props changed) head/devel/rubygem-debugger/files/patch-debugger-1.6.2.gemspec (props changed) head/devel/rubygem-debugger/files/patch-ext-ruby_debug-extconf.rb (props changed) head/devel/rubygem-gitlab_git/files/patch-gemspec (props changed) head/devel/runsnakerun/files/patch-setup.py (props changed) head/devel/sabre/files/patch-build.xml (props changed) head/devel/sabre/files/patch-src_java_de_tu_darmstadt_informatik_rbg_bstickler_udflib_UDFImageBuilderFile.java (props changed) head/devel/sbt/files/patch-bin_sbt (props changed) head/devel/scons/files/patch-engine-SCons-compat-_scons_subprocess.py (props changed) head/devel/sdl12/files/patch-sdl-config.in (props changed) head/devel/sdl12/files/patch-sdl.pc.in (props changed) head/devel/sdl12/files/patch-src_cdrom_freebsd_SDL_syscdrom.c (props changed) head/devel/sdl12/files/patch-src_joystick_bsd_SDL_sysjoystick.c (props changed) head/devel/sdl_sge/files/patch-Makefile (props changed) head/devel/sdl_sge/files/patch-Makefile.conf (props changed) head/devel/sdl_sge/files/patch-sge030809-sge_tt_text.cpp (props changed) head/devel/sdlmm/files/patch-configure (props changed) head/devel/sdlmm/files/patch-src::Makefile.in (props changed) head/devel/sdts++/files/patch-aa (props changed) head/devel/sdts++/files/patch-ab (props changed) head/devel/seed/files/patch-libseed_seed-importer.c (props changed) head/devel/seed/files/patch-modules_gettext_seed-gettext.c (props changed) head/devel/seed/files/patch-modules_os_seed-os.c (props changed) head/devel/seed3/files/patch-modules_gettext_seed-gettext.c (props changed) head/devel/semantic/files/patch-aa (props changed) head/devel/sfio/files/patch-aa (props changed) head/devel/sfio/files/patch-ab (props changed) head/devel/sfio/files/patch-ac (props changed) head/devel/sfio/files/patch-ad (props changed) head/devel/sfio/files/patch-ae (props changed) head/devel/sfio/files/patch-af (props changed) head/devel/sfio/files/patch-ag (props changed) head/devel/sfslite-dbg/files/patch-async_arena.h (props changed) head/devel/sfslite-dbg/files/patch-async_sysconf.h (props changed) head/devel/sgb/files/patch-Makefile (props changed) head/devel/sgl/files/patch-makefile (props changed) head/devel/shapelib/files/patch-shapefil.h (props changed) head/devel/shiboken/files/patch-data__CMakeLists.txt (props changed) head/devel/shiboken/files/patch-doc__CMakeLists.txt (props changed) head/devel/shiboken/files/patch-libshiboken__CMakeLists.txt (props changed) head/devel/shmap/files/patch-Makefile.in (props changed) head/devel/shmap/files/patch-shmap_Makefile.in (props changed) head/devel/shmap/files/patch-shmap_internals.h (props changed) head/devel/shmap/files/patch-shmap_shmap.c (props changed) head/devel/silentbob/files/patch-src-Sblib.cxx (props changed) head/devel/simgear/files/patch-simgear-timing-timestamp.cxx (props changed) head/devel/sml_tk/files/patch-Makefile (props changed) head/devel/sml_tk/files/patch-README (props changed) head/devel/sml_tk/files/patch-src-Makefile (props changed) head/devel/sml_tk/files/patch-src-ann_texts.sml (props changed) head/devel/sml_tk/files/patch-src-basic_util.sml (props changed) head/devel/sml_tk/files/patch-src-com_state_pipe.sml (props changed) head/devel/sml_tk/files/patch-src-config.sig (props changed) head/devel/sml_tk/files/patch-src-config.sml (props changed) head/devel/sml_tk/files/patch-src-export.sml (props changed) head/devel/sml_tk/files/patch-src-fonts.sml (props changed) head/devel/sml_tk/files/patch-src-njml.sml (props changed) head/devel/sml_tk/files/patch-src-paths.sml (props changed) head/devel/sml_tk/files/patch-src-poly.sml (props changed) head/devel/sml_tk/files/patch-src-smltk.cm (props changed) head/devel/sml_tk/files/patch-src-sources.cm (props changed) head/devel/sml_tk/files/patch-src-std_lib-sources.cm (props changed) head/devel/sml_tk/files/patch-src-tests+examples-sources.cm (props changed) head/devel/sml_tk/files/patch-src-toolkit-icons.sml (props changed) head/devel/sml_tk/files/patch-src-toolkit-markup.sml (props changed) head/devel/sml_tk/files/patch-src-toolkit-njfiler.sml (props changed) head/devel/sml_tk/files/patch-src-toolkit-regExp-sources.cm (props changed) head/devel/sml_tk/files/patch-src-toolkit-sources.cm (props changed) head/devel/sml_tk/files/patch-src-toolkit-tests+examples-simpleinst.sml (props changed) head/devel/sml_tk/files/patch-src-toolkit-tests+examples-sources.cm (props changed) head/devel/sml_tk/files/patch-src-toolkit-tests+examples-tsimpleinst.sml (props changed) head/devel/sml_tk/files/patch-src-widget_tree.sig (props changed) head/devel/sml_tk/files/patch-src-widget_tree.sml (props changed) head/devel/smokegen/files/patch-cmake__CMakeLists.txt (props changed) head/devel/smokeqt/files/patch-qtopengl__CMakeLists.txt (props changed) head/devel/smv/files/patch-bdd.c (props changed) head/devel/smv/files/patch-hash.c (props changed) head/devel/smv/files/patch-node.c (props changed) head/devel/smv/files/patch-storage.c (props changed) head/devel/smv/files/patch-storage.h (props changed) head/devel/smv/files/patch-string.c (props changed) head/devel/sourcenav/files/patch-snavigator-snavigator-unix-snavigator.in (props changed) head/devel/sourcenav/files/patch-snavigator-snavigator-unix-snscenario.in (props changed) head/devel/sourcenav/files/patch-tix-unix_Makefile.in (props changed) head/devel/sourcenav/files/patch-tk-library_listbox.tcl (props changed) head/devel/sourcenav/files/patch-tk-library_text.tcl (props changed) head/devel/spdict/files/patch-Makefile (props changed) head/devel/spin/files/patch-xspin (props changed) head/devel/splint/files/patch-src::Headers::constants.h (props changed) head/devel/splint/files/patch-src::lcllib.c (props changed) head/devel/stlport/files/extra-patch-boost-support-user_config.h.diff (props changed) head/devel/stlport/files/extra-patch-no-short-string-optim-user_config.h.diff (props changed) head/devel/stlport/files/extra-patch-ptr_spec-user_config.h.diff (props changed) head/devel/stlport/files/extra-patch-templ-expr-user_config.h.diff (props changed) head/devel/stlport/files/patch-stlport_stl_config_features.h (props changed) head/devel/stlport/files/patch-stlport_stl_config_host.h (props changed) head/devel/stormlib-ghost++/files/patch-Makefile (props changed) head/devel/stormlib-ghost++/files/patch-StormPortLinux.cpp (props changed) head/devel/strace/files/patch-configure (props changed) head/devel/strace/files/patch-file.c (props changed) head/devel/strace/files/patch-net.c (props changed) head/devel/strace/files/patch-sock.c (props changed) head/devel/strace/files/patch-strace.c (props changed) head/devel/strace/files/patch-syscall.c (props changed) head/devel/strace/files/patch-time.c (props changed) head/devel/stringencoders/files/patch-speedtest_ascii.c (props changed) head/devel/stringencoders/files/patch-speedtest_numtoa.c (props changed) head/devel/styx/files/patch-Makefile.in (props changed) head/devel/styx/files/patch-configure (props changed) head/devel/styx/files/patch-inc::sysbase1.h (props changed) head/devel/styx/files/patch-libbase::gstream.c (props changed) head/devel/subcommander2/files/patch-svn-Property.h (props changed) head/devel/subversion/files/extra-patch-3way-conflict-markers (props changed) head/devel/subversion/files/extra-patch-Makefile.in (props changed) head/devel/subversion/files/extra-patch-fbsd-template (props changed) head/devel/subversion/files/extra-patch-svnserve-wrapper (props changed) head/devel/subversion/files/patch-Makefile.in (props changed) head/devel/subversion/files/patch-build--ltmain.sh (props changed) head/devel/subversion/files/patch-build-outputs.mk (props changed) head/devel/subversion/files/patch-configure (props changed) head/devel/subversion/files/patch-configure.ac (props changed) head/devel/subversion/files/patch-subversion--bindings--swig--perl--native--Base.pm (props changed) head/devel/subversion/files/patch-subversion--bindings--swig--perl--native--Makefile.PL.in (props changed) head/devel/subversion16/files/extra-patch-3way-conflict-markers (props changed) head/devel/subversion16/files/extra-patch-enhanced-keyword (props changed) head/devel/subversion16/files/extra-patch-fbsd-template (props changed) head/devel/subversion16/files/extra-patch-svnserve-wrapper (props changed) head/devel/subversion16/files/patch-Makefile.in (props changed) head/devel/subversion16/files/patch-build--ltmain.sh (props changed) head/devel/subversion16/files/patch-contrib--client-side--asvn (props changed) head/devel/subversion16/files/patch-subversion--bindings--swig--perl--natives--Base.pm (props changed) head/devel/subversion16/files/patch-subversion--bindings--swig--perl--natives--Makefle.PL.in (props changed) head/devel/subversion17/files/extra-patch-3way-conflict-markers (props changed) head/devel/subversion17/files/extra-patch-enhanced-keyword (props changed) head/devel/subversion17/files/extra-patch-fbsd-template (props changed) head/devel/subversion17/files/extra-patch-svnserve-wrapper (props changed) head/devel/subversion17/files/patch-build--ltmain.sh (props changed) head/devel/subversion17/files/patch-configure (props changed) head/devel/subversion17/files/patch-configure.ac (props changed) head/devel/subversion17/files/patch-subversion--bindings--swig--perl--native--Base.pm (props changed) head/devel/subversion17/files/patch-subversion--bindings--swig--perl--native--Makefile.PL.in (props changed) head/devel/ta-lib/files/patch-ta-lib-config.in (props changed) head/devel/talloc/files/patch-buildtools__wafsamba__samba_install.py (props changed) head/devel/talloc/files/patch-wscript (props changed) head/devel/tcl-trf/files/patch-Makefile (props changed) head/devel/tcl-trf/files/patch-bz2 (props changed) head/devel/tcl-trf/files/patch-configure (props changed) head/devel/tcl-trf/files/patch-crc (props changed) head/devel/tcl-trf/files/patch-crypt (props changed) head/devel/tcl-trf/files/patch-digest (props changed) head/devel/tcl-trf/files/patch-haval (props changed) head/devel/tcl-trf/files/patch-md2 (props changed) head/devel/tcl-trf/files/patch-md5dig (props changed) head/devel/tcl-trf/files/patch-rmd128 (props changed) head/devel/tcl-trf/files/patch-rmd160 (props changed) head/devel/tcl-trf/files/patch-sha (props changed) head/devel/tcl-trf/files/patch-sha1 (props changed) head/devel/tcl-trf/files/patch-transform (props changed) head/devel/tcl-trf/files/patch-warnings (props changed) head/devel/tcl-trf/files/patch-zlib (props changed) head/devel/tclgetopts/files/patch-aa (props changed) head/devel/tclgetopts/files/patch-ab (props changed) head/devel/tcllib/files/patch-wget (props changed) head/devel/tclmore/files/patch-Makefile.in (props changed) head/devel/tcltls/files/patch-warnings (props changed) head/devel/terminality/files/patch-Makefile (props changed) head/devel/terminality/files/patch-demo::Makefile (props changed) head/devel/terminality/files/patch-dlgc::Makefile (props changed) head/devel/tex-kpathsea/files/patch-Makefile.in (props changed) head/devel/tex-kpathsea/files/patch-texmf.cnf (props changed) head/devel/tigcc/files/patch-gnu-gcc-4.1-20060728-gcc-Makefile.in (props changed) head/devel/tigcc/files/patch-tigcc-sources-gcc-gas-2.16-tigcc-patch.diff (props changed) head/devel/tinyq/files/patch-include-qvaluestack.h (props changed) head/devel/tkinspect/files/patch-aa (props changed) head/devel/tkinspect/files/patch-ab (props changed) head/devel/tkp4/files/patch-docs (props changed) head/devel/tla/files/patch-linkopenssl (props changed) head/devel/tla/files/patch-neonssl (props changed) head/devel/tmake/files/patch-bin-tmake (props changed) head/devel/tokamak/files/patch-build-gnu-tokamak.make (props changed) head/devel/tortoisehg2/files/patch-contrib-thg.desktop (props changed) head/devel/tortoisehg2/files/patch-setup.py (props changed) head/devel/tortoisehg2/files/patch-thg (props changed) head/devel/tpasm/files/patch-Makefile (props changed) head/devel/trac-bitten/files/patch-git (props changed) head/devel/uatraits/files/patch-python-dict_wrapper.hpp (props changed) head/devel/uclmmbase/files/patch-af (props changed) head/devel/uclmmbase/files/patch-net_udp (props changed) head/devel/uclmmbase/files/patch-test (props changed) head/devel/uclmmbase/files/patch-word (props changed) head/devel/ucommon/files/patch-ucommon.pc.in (props changed) head/devel/ucpp/files/patch-Makefile (props changed) head/devel/ucpp/files/patch-cpp.c (props changed) head/devel/umlgraph/files/patch-umlgraph (props changed) head/devel/universalindentgui/files/patch-gnuindent (props changed) head/devel/vstr/files/patch-Documentation_Makefile.in (props changed) head/devel/vstr/files/patch-ltmain.sh (props changed) head/devel/vstr/files/patch-tst_tst-main.c (props changed) head/devel/vtcl/files/patch-configure (props changed) head/devel/wininfo/files/patch-src::wininfo.c (props changed) head/devel/xdg-user-dirs/files/patch-xdg-user-dirs-update.c (props changed) head/devel/xdg-utils/files/patch-scripts_xdg-desktop-menu (props changed) head/devel/xdg-utils/files/patch-scripts_xdg-email (props changed) head/devel/xdg-utils/files/patch-scripts_xdg-icon-resource (props changed) head/devel/xdg-utils/files/patch-scripts_xdg-mime (props changed) head/devel/xdg-utils/files/patch-scripts_xdg-open (props changed) head/devel/xdg-utils/files/patch-scripts_xdg-screensaver (props changed) head/devel/xmltooling/files/patch-Makefile.in (props changed) head/devel/xmltooling/files/patch-doc_Makefile.in (props changed) head/devel/xparam/files/patch-Makefile.in (props changed) head/devel/xparam/files/patch-examples::calculator::Makefile.in (props changed) head/devel/xparam/files/patch-examples::involved::Makefile.in (props changed) head/devel/xparam/files/patch-lib::Makefile.in (props changed) head/devel/xparam/files/patch-lib::sources::xpv_dynamic_loader.cpp (props changed) head/devel/xwpe/files/patch-02 (props changed) head/devel/xwpe/files/patch-05 (props changed) head/devel/xwpe/files/patch-09 (props changed) head/devel/xwpe/files/patch-we_xterm.c (props changed) head/devel/xxgdb/files/patch-ab (props changed) head/devel/xxgdb/files/patch-ac (props changed) head/devel/xxgdb/files/patch-ad (props changed) head/devel/xxgdb/files/patch-ae (props changed) head/devel/xxgdb/files/patch-af (props changed) head/devel/xxgdb/files/patch-ag (props changed) head/devel/xxgdb/files/patch-ah (props changed) head/devel/xxgdb/files/patch-ai (props changed) head/devel/xxgdb/files/patch-dialog.c (props changed) head/devel/z80asm/files/patch-Makefile (props changed) head/devel/zookeeper/files/patch-src-c-src-zookeeper.c (props changed) head/devel/zpu-binutils/files/patch-binutils_Makefile.in (props changed) head/devel/zpu-binutils/files/patch-binutils_ld_emulparams_zpuelf.sh (props changed) head/devel/zpu-binutils/files/patch-build.sh (props changed) head/devel/zpu-gcc/files/patch-binutils_Makefile.in (props changed) head/devel/zpu-gcc/files/patch-binutils_ld_emulparams_zpuelf.sh (props changed) head/devel/zpu-gcc/files/patch-build.sh (props changed) head/devel/zpu-gcc/files/patch-gcc_Makefile.in (props changed) head/devel/zpu-gcc/files/patch-gcc_gcc_Makefile.in (props changed) head/devel/zpu-gcc/files/patch-gcc_libgloss_zpu_Makefile.in (props changed) head/devel/ztcl/files/patch-Makefile.in (props changed) head/devel/ztcl/files/patch-configure (props changed) head/devel/zthread/files/patch-include__zthread__Barrier.h (props changed) head/devel/zthread/files/patch-include__zthread__BlockingQueue.h (props changed) head/devel/zthread/files/patch-include__zthread__Guard.h (props changed) head/devel/zthread/files/patch-src__MutexImpl.h (props changed) head/devel/zziplib/files/patch-configure (props changed) head/devel/zziplib/files/patch-docs_Makefile.in (props changed) head/devel/zziplib/files/patch-zzip_Makefile.in (props changed) head/dns/adns/files/patch-cname-chains (props changed) head/dns/adns/files/patch-configure (props changed) head/dns/adns/files/patch-configure.in (props changed) head/dns/adsuck/files/patch-adsuck.c (props changed) head/dns/adsuck/files/patch-log.c (props changed) head/dns/bindgraph/files/patch-bindgraph.cgi (props changed) head/dns/c-ares/files/patch-Makefile.in (props changed) head/dns/checkdns/files/patch-Makefile (props changed) head/dns/checkdns/files/patch-dns.c (props changed) head/dns/checkdns/files/patch-html.c (props changed) head/dns/ddclient/files/patch-ddclient (props changed) head/dns/dhisd/files/patch-INSTALL (props changed) head/dns/dhisd/files/patch-MODULES (props changed) head/dns/dhisd/files/patch-Makefile (props changed) head/dns/dhisd/files/patch-README (props changed) head/dns/dhisd/files/patch-dhisd.h (props changed) head/dns/djbdns/files/patch-aa (props changed) head/dns/djbdns/files/patch-ab (props changed) head/dns/djbdns/files/patch-dnsroots.global (props changed) head/dns/djbdns/files/patch-response.c (props changed) head/dns/dns_balance/files/patch-dns_balance.rb (props changed) head/dns/dns_mre/files/patch-dns_mre.c (props changed) head/dns/dns_mre/files/patch-dns_mre.h (props changed) head/dns/dnscap/files/patch-dump_dns.c (props changed) head/dns/dnscheckengine/files/patch-apps-dnscheck-dispatcher.pl (props changed) head/dns/dnscheckengine/files/patch-contrib_dnscheck-dispatcher.sh (props changed) head/dns/dnshijacker/files/patch-dnshijacker.c (props changed) head/dns/dnsperf/files/patch-Makefile.in (props changed) head/dns/dnsreflector/files/patch-Makefile (props changed) head/dns/dnsreflector/files/patch-dnsreflector.c (props changed) head/dns/dnsutl/files/patch-Makefile.in (props changed) head/dns/dnswall/files/patch-Makefile.am (props changed) head/dns/doc/files/patch-aa (props changed) head/dns/ez-ipupdate/files/patch-ez-ipupdate.c (props changed) head/dns/fastresolve/files/patch-configure.in (props changed) head/dns/fastresolve/files/patch-dns-terror::DatedStringDb.cc (props changed) head/dns/fastresolve/files/patch-dns-terror::dns-terror.cc (props changed) head/dns/fastresolve/files/patch-dns-terror_getline.c (props changed) head/dns/firedns/files/patch-firemake_libraries (props changed) head/dns/firedns/files/patch-firemake_makefiletop (props changed) head/dns/geta/files/patch-Makefile.in (props changed) head/dns/geta/files/patch-geta_geta.c (props changed) head/dns/idnkit/files/patch-configure (props changed) head/dns/idnkit/files/patch-libtool22 (props changed) head/dns/idnkit/files/patch-tools::runidn::resolver.c (props changed) head/dns/inadyn/files/patch-man::inadyn.8 (props changed) head/dns/inadyn/files/patch-readme.html (props changed) head/dns/inadyn/files/patch-src::dyndns.h (props changed) head/dns/ldapdns/files/patch-ldapdns.c (props changed) head/dns/libbind/files/patch-doc-Makefile.in (props changed) head/dns/libdjbdns/files/patch-Makefile (props changed) head/dns/libidn/files/patch-doc::libidn.texi (props changed) head/dns/libidn/files/patch-po_LINGUAS (props changed) head/dns/maradns/files/patch-MaraDns.h (props changed) head/dns/maradns/files/patch-build_Makefile.freebsd (props changed) head/dns/maradns/files/patch-example_full_mararc (props changed) head/dns/maradns/files/patch-tools_Makefile.recursive (props changed) head/dns/maradns/files/patch-tools_duende.c (props changed) head/dns/mdnsd/files/patch-1035.c (props changed) head/dns/mdnsd/files/patch-Makefile (props changed) head/dns/mdnsd/files/patch-mdnsd.c (props changed) head/dns/mdnsd/files/patch-mhttp.c (props changed) head/dns/mdnsd/files/patch-mquery.c (props changed) head/dns/mdnsd/files/patch-sdtxt.c (props changed) head/dns/mdnsd/files/patch-xht.c (props changed) head/dns/mydns-ng/files/patch-Makefile.in (props changed) head/dns/mydns-ng/files/patch-config.h.in (props changed) head/dns/mydns/files/patch-Makefile.in (props changed) head/dns/mydns/files/patch-src_mydns_listen.c (props changed) head/dns/mydns/files/patch-src_mydns_recursive.c (props changed) head/dns/noip/files/patch-Makefile (props changed) head/dns/noip/files/patch-noip2.c (props changed) head/dns/nsping/files/patch-aa (props changed) head/dns/nsping/files/patch-ab (props changed) head/dns/nsping/files/patch-dns-rr.c (props changed) head/dns/nsping/files/patch-nsping.h (props changed) head/dns/nss_mdns/files/patch-aclocal.m4 (props changed) head/dns/nss_mdns/files/patch-src__Makefile.am (props changed) head/dns/nss_mdns/files/patch-src__bsdnss.c (props changed) head/dns/nss_mdns/files/patch-src__nss.c (props changed) head/dns/nss_mdns/files/patch-src__nss_gethostname_select.h (props changed) head/dns/nss_resinit/files/patch-nss_resinit.c (props changed) head/dns/opendd/files/patch-Makefile (props changed) head/dns/p5-pgeodns/files/patch-version.t (props changed) head/dns/posadis/files/patch-Makefile.in (props changed) head/dns/posadis/files/patch-configure.in (props changed) head/dns/powerdns-recursor/files/extrapatch-setuid (props changed) head/dns/powerdns-recursor/files/patch-makefile (props changed) head/dns/powerdns-recursor/files/patch-manpages (props changed) head/dns/py-dns/files/patch-DNS-Lib.py (props changed) head/dns/py-dns/files/patch-DNS-Type.py (props changed) head/dns/py-idnkit2/files/patch-setup.py (props changed) head/dns/py-namebench/files/patch-libnamebench-util-py (props changed) head/dns/rbllookup-ng/files/patch-rbllookup.conf (props changed) head/dns/rbllookup-ng/files/patch-rbllookup.pl (props changed) head/dns/sheerdns/files/patch-Makefile (props changed) head/dns/totd/files/extra-patch-ne_mesg.c (props changed) head/dns/totd/files/extra-patch-tcp_response.c (props changed) head/dns/totd/files/patch-Makefile.in (props changed) head/dns/totd/files/patch-totd.c (props changed) head/dns/unbound/files/patch-Makefile.in (props changed) head/dns/unbound/files/patch-configure (props changed) head/dns/updatedd/files/extrapatch-disable-portdocs (props changed) head/dns/updatedd/files/patch-include-dprintf.h (props changed) head/dns/updatedd/files/patch-updatedd-wrapper-Makefile.in (props changed) head/editors/2bsd-vi/files/patch-Makefile (props changed) head/editors/abiword/files/patch-Makefile.in (props changed) head/editors/abiword/files/patch-abiword.desktop (props changed) head/editors/abiword/files/patch-default-font (props changed) head/editors/abiword/files/patch-src_af_util_xp_ut_iconv.cpp (props changed) head/editors/abiword/files/patch-src_af_util_xp_ut_png.cpp (props changed) head/editors/abiword/files/patch-src_wp_impexp_gtk_ie_impGraphic_GdkPixbuf.cpp (props changed) head/editors/aee/files/patch-Makefile (props changed) head/editors/aee/files/patch-create.mk.aee (props changed) head/editors/aewan/files/patch-aeff.c (props changed) head/editors/apel/files/patch-ac (props changed) head/editors/apel/files/patch-broken.el (props changed) head/editors/apel/files/patch-filename.el (props changed) head/editors/apel/files/patch-pccl.el (props changed) head/editors/apel/files/patch-poe.el (props changed) head/editors/apel/files/patch-product.el (props changed) head/editors/apel/files/patch-pym.el (props changed) head/editors/asedit/files/patch-asedit.c (props changed) head/editors/axe/files/patch-Help::axinfo.c (props changed) head/editors/axe/files/patch-ab (props changed) head/editors/axe/files/patch-ac (props changed) head/editors/axe/files/patch-ad (props changed) head/editors/axe/files/patch-ae (props changed) head/editors/axe/files/patch-af (props changed) head/editors/axe/files/patch-ag (props changed) head/editors/axe/files/patch-coaxe.c (props changed) head/editors/beav/files/patch-tcap.c (props changed) head/editors/beav/files/patch-termio.c (props changed) head/editors/biew/files/patch-configure (props changed) head/editors/bpatch/files/patch-aa (props changed) head/editors/bvi/files/patch-Makefile.in (props changed) head/editors/bvi/files/patch-ab (props changed) head/editors/calligra/files/patch-cmake__modules__FindWPG.cmake (props changed) head/editors/chexedit/files/patch-docs-hexedit.1 (props changed) head/editors/chexedit/files/patch-misc.c (props changed) head/editors/chexedit/files/patch-src-file.c (props changed) head/editors/chexedit/files/patch-src-init.c (props changed) head/editors/codelite/files/patch-Runtime_codelite_xterm (props changed) head/editors/cooledit/files/patch-rxvt::_rxvtlib.h (props changed) head/editors/cooledit/files/patch-widget-coollocal.h (props changed) head/editors/cooledit/files/patch-widget::widechar.c (props changed) head/editors/dhex/files/patch-Makefile (props changed) head/editors/e3/files/patch-Makefile (props changed) head/editors/e3/files/patch-e3.asm (props changed) head/editors/emacs21/files/patch-Makefile.in (props changed) head/editors/emacs21/files/patch-configure.in (props changed) head/editors/emacs21/files/patch-lib-src:Makefile.in (props changed) head/editors/emacs21/files/patch-lib-src:movemail.c (props changed) head/editors/emacs21/files/patch-lisp:vc-hooks.el (props changed) head/editors/emacs21/files/patch-lisp_dired.el (props changed) head/editors/emacs21/files/patch-man:Makefile.in (props changed) head/editors/emacs21/files/patch-src-xfns.c (props changed) head/editors/emacs21/files/patch-src:Makefile.in (props changed) head/editors/emacs21/files/patch-src:m:alpha.h (props changed) head/editors/emacs21/files/patch-src:m:amd64.h (props changed) head/editors/emacs21/files/patch-src:m:ia64.h (props changed) head/editors/emacs21/files/patch-src:m:sparc.h (props changed) head/editors/emacs21/files/patch-src:mem-limits.h (props changed) head/editors/emacs21/files/patch-src:process.c (props changed) head/editors/emacs21/files/patch-src:s:freebsd.h (props changed) head/editors/emacs21/files/patch-src:utmpx.c (props changed) head/editors/emacs21/files/patch-src:xterm.c (props changed) head/editors/emacs21/files/patch-src:xterm.h (props changed) head/editors/emacs22/files/patch-Makefile.in (props changed) head/editors/emacs22/files/patch-lispintro-Makefile.in (props changed) head/editors/emacs22/files/patch-lispref-Makefile.in (props changed) head/editors/emacs22/files/patch-man-Makefile.in (props changed) head/editors/emacs22/files/patch-src-filelock.c (props changed) head/editors/emacs22/files/patch-src-image.c (props changed) head/editors/emacs22/files/patch-src__alloc.c (props changed) head/editors/emacs23/files/patch-Makefile.in (props changed) head/editors/emacs23/files/patch-configure (props changed) head/editors/emacs23/files/patch-doc-emacs-Makefile.in (props changed) head/editors/emacs23/files/patch-doc-lispintro-Makefile.in (props changed) head/editors/emacs23/files/patch-doc-lispref-Makefile.in (props changed) head/editors/emacs23/files/patch-doc-misc-Makefile.in (props changed) head/editors/emacs23/files/patch-lisp-vc-svn.el (props changed) head/editors/emacs23/files/patch-sources.el (props changed) head/editors/emacs23/files/patch-src_coding.c (props changed) head/editors/emacs23/files/patch-src_config.in (props changed) head/editors/flim/files/patch-aa (props changed) head/editors/flim/files/patch-ac (props changed) head/editors/flim/files/patch-ad (props changed) head/editors/flim/files/patch-eword-encode.el (props changed) head/editors/flim/files/patch-hex-util.el (props changed) head/editors/flim/files/patch-hmac-def.el (props changed) head/editors/flim/files/patch-md4.el (props changed) head/editors/flim/files/patch-md5-el.el (props changed) head/editors/fte/files/patch-aa (props changed) head/editors/fte/files/patch-ba (props changed) head/editors/gate/files/patch-spel.c (props changed) head/editors/gate/files/patch-subs.c (props changed) head/editors/gnotepad+/files/patch-aa (props changed) head/editors/gnuserv/files/patch-aa (props changed) head/editors/gnuserv/files/patch-gnuserv.el (props changed) head/editors/hexcurse/files/patch-getopt.c (props changed) head/editors/hexedit/files/patch--search.c (props changed) head/editors/hexpert/files/patch-Makefile (props changed) head/editors/jed/files/extra-patch-src__userinfo.c (props changed) head/editors/jed/files/patch-src_misc.c (props changed) head/editors/jed/files/patch-src_unix.c (props changed) head/editors/joe/files/patch-tty.c (props changed) head/editors/joe2/files/patch-configure (props changed) head/editors/joe2/files/patch-tty.c (props changed) head/editors/jove/files/patch-aa (props changed) head/editors/jove/files/patch-ab (props changed) head/editors/jove/files/patch-ac (props changed) head/editors/jove/files/patch-ad (props changed) head/editors/jove/files/patch-ae (props changed) head/editors/jove/files/patch-af (props changed) head/editors/jove/files/patch-ag (props changed) head/editors/lazarus/files/patch-Makefile (props changed) head/editors/led/files/patch-src-modules-perlapi-Makefile (props changed) head/editors/led/files/patch-src::file.c (props changed) head/editors/led/files/patch-src_color.c (props changed) head/editors/led/files/patch-src_complete.c (props changed) head/editors/lfhex/files/patch-expr.h (props changed) head/editors/lfhex/files/patch-mappings.h (props changed) head/editors/libreoffice/files/patch-bin__distro-install-desktop-integration (props changed) head/editors/libreoffice/files/patch-sysui__desktop__share__create_tree.sh (props changed) head/editors/libreoffice/files/patch-vcl__unx__gtk__gdi__salnativewidgets-gtk.cxx (props changed) head/editors/madedit/files/patch-charset-detector__src__entry__impl.cpp (props changed) head/editors/madedit/files/patch-charset-detector__src__prmem.h (props changed) head/editors/madedit/files/patch-src__MadEdit__MadEdit.cpp (props changed) head/editors/mined/files/patch-src::makefile.bsd (props changed) head/editors/mined/files/patch-src::mkinclud.gcc (props changed) head/editors/mined/files/patch-src::mkinclud.mak (props changed) head/editors/mlview/files/patch-configure.in (props changed) head/editors/mlview/files/patch-desktop.in (props changed) head/editors/mlview/files/patch-src_mlview-app-context.c (props changed) head/editors/mlview/files/patch-src_mlview-editor-dbc.c (props changed) head/editors/mlview/files/patch-src_mlview-editor-dbo.c (props changed) head/editors/mlview/files/patch-src_mlview-ping-dbc.c (props changed) head/editors/mlview/files/patch-src_mlview-ping-dbo.c (props changed) head/editors/mlview/files/patch-src_mlview-service.c (props changed) head/editors/mlview/files/patch-src_mlview-source-view.c (props changed) head/editors/mlview/files/patch-src_mlview-tree-view.c (props changed) head/editors/mlview/files/patch-src_mlview-view-adapter.c (props changed) head/editors/morla/files/patch-src__query.c (props changed) head/editors/nano-devel/files/patch-doc_man_nano.1 (props changed) head/editors/nano-devel/files/patch-doc_man_nanorc.5 (props changed) head/editors/nano/files/patch-doc_man_Makefile.in (props changed) head/editors/nano/files/patch-doc_man_fr_Makefile.in (props changed) head/editors/nedit/files/patch-aa (props changed) head/editors/nedit/files/patch-ab (props changed) head/editors/nedit/files/patch-ac (props changed) head/editors/nedit/files/patch-ad (props changed) head/editors/nedit/files/patch-util-misc.c (props changed) head/editors/nvi-devel/files/patch-config.h.in (props changed) head/editors/nvi-devel/files/patch-configure (props changed) head/editors/nvi-m17n/files/patch-ac (props changed) head/editors/nvi-m17n/files/patch-config.h.in (props changed) head/editors/openoffice-3/files/extra-patch-libexttextcat-lingucomponent (props changed) head/editors/openoffice-3/files/patch-bridges (props changed) head/editors/openoffice-3/files/patch-configure (props changed) head/editors/openoffice-3/files/patch-freebsd.mk (props changed) head/editors/openoffice-3/files/patch-gperf (props changed) head/editors/openoffice-3/files/patch-graphite (props changed) head/editors/openoffice-3/files/patch-i118574 (props changed) head/editors/openoffice-3/files/patch-jdk7-hsqldb-debian (props changed) head/editors/openoffice-3/files/patch-jdk7-hsqldb-debian-x (props changed) head/editors/openoffice-3/files/patch-jdk7-httpclient-apache-pfg (props changed) head/editors/openoffice-3/files/patch-jdk7-httpclient-r1358967 (props changed) head/editors/openoffice-3/files/patch-jdk7-httpclient-r1359681 (props changed) head/editors/openoffice-3/files/patch-moz (props changed) head/editors/openoffice-3/files/patch-unxfbsd.mk (props changed) head/editors/openoffice-3/files/patch-vcl (props changed) head/editors/openoffice-4/files/extra-patch-libexttextcat-lingucomponent (props changed) head/editors/openoffice-4/files/patch-freebsd.mk (props changed) head/editors/openoffice-4/files/patch-i118574 (props changed) head/editors/openoffice-4/files/patch-unxfbsd.mk (props changed) head/editors/openoffice-devel/files/patch-freebsd.mk (props changed) head/editors/openoffice-devel/files/patch-i118574 (props changed) head/editors/openoffice-devel/files/patch-unxfbsd.mk (props changed) head/editors/p5-Padre/files/patch-lib_Padre_Wx.pm (props changed) head/editors/psgml/files/patch-ac (props changed) head/editors/psgml/files/patch-ad (props changed) head/editors/psgml/files/patch-ae (props changed) head/editors/psgml/files/patch-af (props changed) head/editors/psgml/files/patch-ai (props changed) head/editors/psgml/files/patch-psgml-dtd.el (props changed) head/editors/psgml/files/patch-psgml-edit.el (props changed) head/editors/psgml/files/patch-psgml-parse.el (props changed) head/editors/py-room/files/patch-PyRoom-gui.py (props changed) head/editors/py-room/files/patch-PyRoom-preferences.py (props changed) head/editors/py-room/files/patch-pyroom.desktop (props changed) head/editors/py-room/files/patch-setup.py (props changed) head/editors/scite/files/patch-src__FilePath.h (props changed) head/editors/scribes/files/patch-gettext (props changed) head/editors/semi/files/patch-aa (props changed) head/editors/semi/files/patch-ab (props changed) head/editors/semi/files/patch-ac (props changed) head/editors/setedit/files/patch-Makefile (props changed) head/editors/setedit/files/patch-config.pl (props changed) head/editors/setedit/files/patch-conflib.pl (props changed) head/editors/setedit/files/patch-editmain.cc (props changed) head/editors/speedbar/files/patch-aa (props changed) head/editors/speedbar/files/patch-ab (props changed) head/editors/ssed/files/patch-Makefile.in (props changed) head/editors/ssed/files/patch-configure (props changed) head/editors/sted/files/patch-sted.c (props changed) head/editors/tamago/files/patch-egg-Makefile (props changed) head/editors/tamago/files/patch-egg-com.el (props changed) head/editors/tamago/files/patch-egg-wnn.el (props changed) head/editors/tamago/files/patch-egg-wnnrpc.el (props changed) head/editors/tamago/files/patch-egg.el (props changed) head/editors/tamago/files/patch-its.el (props changed) head/editors/tamago/files/patch-menudiag.el (props changed) head/editors/teco/files/patch-makefile (props changed) head/editors/teco/files/patch-zlinux (props changed) head/editors/ted/files/patch-bitmap-bmpng.c (props changed) head/editors/texmacs/files/patch-plugins__r__src__tm_r.c (props changed) head/editors/texmacs/files/patch-plugins__shell__src__tm_shell.cpp (props changed) head/editors/texmacs/files/patch-src__Kernel__Abstractions__basic.hpp (props changed) head/editors/texmacs/files/patch-src__System__Link__pipe_link.cpp (props changed) head/editors/texmakerx/files/patch-texmaker.qrc (props changed) head/editors/the/files/patch-aa (props changed) head/editors/thoteditor/files/patch-UIcss.c (props changed) head/editors/thoteditor/files/patch-aa (props changed) head/editors/thoteditor/files/patch-ab (props changed) head/editors/thoteditor/files/patch-ac (props changed) head/editors/thoteditor/files/patch-ad (props changed) head/editors/thoteditor/files/patch-ae (props changed) head/editors/thoteditor/files/patch-af (props changed) head/editors/thoteditor/files/patch-ag (props changed) head/editors/uemacs/files/patch-aa (props changed) head/editors/uemacs/files/patch-ab (props changed) head/editors/uemacs/files/patch-ac (props changed) head/editors/uemacs/files/patch-ad (props changed) head/editors/uemacs/files/patch-ae (props changed) head/editors/uemacs/files/patch-af (props changed) head/editors/uemacs/files/patch-ag (props changed) head/editors/uemacs/files/patch-src_eval.c (props changed) head/editors/uzap/files/patch-a (props changed) head/editors/uzap/files/patch-b (props changed) head/editors/ved/files/patch-aa (props changed) head/editors/ved/files/patch-ab (props changed) head/editors/vigor/files/patch-aa (props changed) head/editors/vile/files/patch-filec.c (props changed) head/editors/vim/files/patch-01 (props changed) head/editors/vim/files/patch-installml.sh (props changed) head/editors/xemacs-devel-mule/files/patch-aa (props changed) head/editors/xemacs-devel-mule/files/patch-al (props changed) head/editors/xemacs-devel-mule/files/patch-am (props changed) head/editors/xemacs-devel-mule/files/patch-configure.ac (props changed) head/editors/xemacs-devel-mule/files/patch-cyrillic.el (props changed) head/editors/xemacs-devel-mule/files/patch-emacs.c (props changed) head/editors/xemacs-devel-mule/files/patch-glyphs-eimage.c (props changed) head/editors/xemacs-devel-mule/files/patch-malloc.c (props changed) head/editors/xemacs-devel-mule/files/patch-mem-limits.h (props changed) head/editors/xemacs-devel-mule/files/patch-regex.c (props changed) head/editors/xemacs-devel-mule/files/patch-src__font-mgr.c (props changed) head/editors/xemacs-devel/files/patch-aa (props changed) head/editors/xemacs-devel/files/patch-al (props changed) head/editors/xemacs-devel/files/patch-configure.ac (props changed) head/editors/xemacs-devel/files/patch-glyphs-eimage.c (props changed) head/editors/xemacs-devel/files/patch-lisp__cus-edit.el (props changed) head/editors/xemacs-devel/files/patch-regex.c (props changed) head/editors/xemacs-packages/files/patch-gnus.el (props changed) head/editors/xemacs/files/patch-Makefile.in.in (props changed) head/editors/xemacs/files/patch-aa (props changed) head/editors/xemacs/files/patch-af (props changed) head/editors/xemacs/files/patch-al (props changed) head/editors/xemacs/files/patch-src__glyphs-eimage.c (props changed) head/editors/xemacs/files/patch-src__regex.c (props changed) head/editors/xemacs21-mule/files/patch-Makefile.in.in (props changed) head/editors/xemacs21-mule/files/patch-aa (props changed) head/editors/xemacs21-mule/files/patch-af (props changed) head/editors/xemacs21-mule/files/patch-glyphs-eimage.c (props changed) head/editors/xmlcopyeditor/files/patch-src_Makefile.in.diff (props changed) head/editors/xvile/files/patch-filec.c (props changed) head/editors/yzis/files/patch-CMakeLists.txt (props changed) head/editors/yzis/files/patch-cmake__modules__FindLibLua51.cmake (props changed) head/editors/yzis/files/patch-kpart_yzis-CMakeLists.txt (props changed) head/editors/yzis/files/patch-kyzis-CMakeLists.txt (props changed) head/editors/yzis/files/patch-libyzis-CMakeLists.txt (props changed) head/editors/yzis/files/patch-nyzis.CMakeLists.txt (props changed) head/editors/yzis/files/patch-qyzis.CMakeLists.txt (props changed) head/editors/zoinks/files/patch-fw-TApplication.cpp (props changed) head/editors/zoinks/files/patch-fw-TInputContext.cpp (props changed) head/editors/zoinks/files/patch-fw-TTextView.cpp (props changed) head/editors/zoinks/files/patch-fw-TTopLevelWindow.cpp (props changed) head/editors/zoinks/files/patch-fw-TWindow.cpp (props changed) head/editors/zoinks/files/patch-ide-TLogDocument.cpp (props changed) head/editors/zoinks/files/patch-ide-TProjectDocument.cpp (props changed) head/emulators/adamem/files/patch-Coleco.c (props changed) head/emulators/adamem/files/patch-DSP.c (props changed) head/emulators/adamem/files/patch-Makefile.X (props changed) head/emulators/adamem/files/patch-X.c (props changed) head/emulators/advancemess/files/patch-advance__advance.mak (props changed) head/emulators/aftp/files/patch-aa (props changed) head/emulators/aftp/files/patch-ab (props changed) head/emulators/aqemu/files/patch-CMakeLists.txt (props changed) head/emulators/aqemu/files/patch-Embedded_Display__vncview.cpp (props changed) head/emulators/bsvc/files/patch-ag (props changed) head/emulators/bsvc/files/patch-ah (props changed) head/emulators/bsvc/files/patch-ai (props changed) head/emulators/bsvc/files/patch-src-Framework-Tools.hxx (props changed) head/emulators/bsvc/files/patch-src-Makefile (props changed) head/emulators/bsvc/files/patch-src-sim68360-loader-Loader.cxx (props changed) head/emulators/cpmemu/files/patch-ac (props changed) head/emulators/cpmemu/files/patch-ad (props changed) head/emulators/cpmemu/files/patch-ae (props changed) head/emulators/cpmtools/files/patch-aa (props changed) head/emulators/cpmtools2/files/patch-Makefile.in (props changed) head/emulators/cpmtools2/files/patch-configure (props changed) head/emulators/cygne-sdl/files/patch-src-Usage.h (props changed) head/emulators/cygne-sdl/files/patch-src-ddrawsdl.cpp (props changed) head/emulators/darcnes/files/patch-aa (props changed) head/emulators/darcnes/files/patch-ab (props changed) head/emulators/darcnes/files/patch-cd_unix.c (props changed) head/emulators/darcnes/files/patch-mtypes.h (props changed) head/emulators/darcnes/files/patch-tool.c (props changed) head/emulators/darcnes/files/patch-types.h (props changed) head/emulators/darcnes/files/patch-ui_gtk.c (props changed) head/emulators/darcnes/files/patch-ui_x.c (props changed) head/emulators/darcnes/files/patch-video__x.c (props changed) head/emulators/dboxfe/files/patch-src__dboxfe.cpp (props changed) head/emulators/dosbox/files/patch-include-dos_inc.h (props changed) head/emulators/dosbox/files/patch-include-setup.h (props changed) head/emulators/dosbox/files/patch-src-cpu_core_dynrec_risc_x64.h (props changed) head/emulators/dtcyber/files/patch-types.h (props changed) head/emulators/dtcyber/files/patch-window_x11.c (props changed) head/emulators/dynagen/files/patch-confConsole.py (props changed) head/emulators/dynagen/files/patch-console.py (props changed) head/emulators/dynagen/files/patch-dynagen (props changed) head/emulators/dynagen/files/patch-dynamips_lib.py (props changed) head/emulators/dynagen/files/patch-pemu_lib.py (props changed) head/emulators/dynagen/files/patch-setup.py (props changed) head/emulators/dynagui/files/patch-dynagui.py (props changed) head/emulators/dynagui/files/patch-libs_canvas.py (props changed) head/emulators/dynagui/files/patch-libs_gui_c7200.py (props changed) head/emulators/dynagui/files/patch-setup.py (props changed) head/emulators/dynamips-community/files/patch-common-gen_eth.c (props changed) head/emulators/dynamips-community/files/patch-nvram_export.1 (props changed) head/emulators/dynamips-community/files/patch-stable-Makefile (props changed) head/emulators/dynamips-community/files/patch-unstable-Makefile (props changed) head/emulators/dynamips-devel/files/patch-Makefile (props changed) head/emulators/dynamips-devel/files/patch-README (props changed) head/emulators/dynamips-devel/files/patch-dev_vtty.c (props changed) head/emulators/dynamips-devel/files/patch-dynamips.1 (props changed) head/emulators/dynamips-devel/files/patch-dynamips.c (props changed) head/emulators/dynamips-devel/files/patch-gen_eth.c (props changed) head/emulators/dynamips-devel/files/patch-hypervisor_mode.7 (props changed) head/emulators/dynamips-devel/files/patch-net.c (props changed) head/emulators/dynamips-devel/files/patch-nvram_export.1 (props changed) head/emulators/dynamips/files/patch-Makefile (props changed) head/emulators/dynamips/files/patch-README (props changed) head/emulators/dynamips/files/patch-README.hypervisor (props changed) head/emulators/dynamips/files/patch-dev_vtty.c (props changed) head/emulators/dynamips/files/patch-dynamips.1 (props changed) head/emulators/dynamips/files/patch-dynamips.c (props changed) head/emulators/dynamips/files/patch-gen_eth.c (props changed) head/emulators/dynamips/files/patch-hypervisor.c (props changed) head/emulators/dynamips/files/patch-hypervisor.h (props changed) head/emulators/dynamips/files/patch-hypervisor_mode.7 (props changed) head/emulators/dynamips/files/patch-net.c (props changed) head/emulators/dynamips/files/patch-net.h (props changed) head/emulators/dynamips/files/patch-nvram_export.1 (props changed) head/emulators/dynamips/files/patch-utils.c (props changed) head/emulators/dynamips/files/patch-utils.h (props changed) head/emulators/extract-xiso/files/patch-extract-xiso.c (props changed) head/emulators/extract-xiso/files/patch-libftp-5.0.1.modified.by.in__Ftpfopen.c (props changed) head/emulators/extract-xiso/files/patch-libftp-5.0.1.modified.by.in__Makefile (props changed) head/emulators/fmsx/files/patch-EMULib_NetUnix.c (props changed) head/emulators/fmsx/files/patch-EMULib_Rules.Unix (props changed) head/emulators/fmsx/files/patch-fMSX_Unix_Makefile (props changed) head/emulators/frodo/files/patch-C64_x.i (props changed) head/emulators/frodo/files/patch-CmdPipe.cpp (props changed) head/emulators/frodo/files/patch-Display.h (props changed) head/emulators/frodo/files/patch-Display_SDL.i (props changed) head/emulators/frodo/files/patch-Display__x.i (props changed) head/emulators/frodo/files/patch-SAM.cpp (props changed) head/emulators/frodo/files/patch-SID.cpp (props changed) head/emulators/frodo/files/patch-SID_linux.i (props changed) head/emulators/frodo/files/patch-TkGui.tcl (props changed) head/emulators/frodo/files/patch-configure (props changed) head/emulators/frodo/files/patch-sysdeps.h (props changed) head/emulators/gbe/files/patch-aa (props changed) head/emulators/gbe/files/patch-ab (props changed) head/emulators/gbe/files/patch-debug.c (props changed) head/emulators/generator/files/patch-cmz80__z80.c (props changed) head/emulators/generator/files/patch-configure (props changed) head/emulators/generator/files/patch-cpu68k__def68k.c (props changed) head/emulators/generator/files/patch-hdr::generator.h (props changed) head/emulators/generator/files/patch-main::ui-gtk.c (props changed) head/emulators/gngb/files/patch-memory.c (props changed) head/emulators/gngb/files/patch-save.c (props changed) head/emulators/gngeo/files/extra-patch-src__emu.h (props changed) head/emulators/gngeo/files/patch-configure (props changed) head/emulators/gngeo/files/patch-src-streams.c (props changed) head/emulators/gnuboy/files/patch-configure.in (props changed) head/emulators/hercules/files/patch-hercifc.h (props changed) head/emulators/hercules/files/patch-tuntap (props changed) head/emulators/hfs/files/patch-a (props changed) head/emulators/hugo/files/patch-osd_freebsd_cd.c (props changed) head/emulators/hugo/files/patch-pce.c (props changed) head/emulators/ia64sim/files/patch-ia64.h (props changed) head/emulators/ia64sim/files/patch-ia64sim.c (props changed) head/emulators/ia64sim/files/patch-makefile.unx (props changed) head/emulators/klh10/files/patch-aa (props changed) head/emulators/klh10/files/patch-ab (props changed) head/emulators/klh10/files/patch-src-Makefile.mk (props changed) head/emulators/klh10/files/patch-src-kn10ops.c (props changed) head/emulators/kqemu-kmod-devel/files/patch-common-Makefile (props changed) head/emulators/kqemu-kmod-devel/files/patch-common-kqemu_int.h (props changed) head/emulators/kqemu-kmod-devel/files/patch-fpucontext (props changed) head/emulators/kqemu-kmod-devel/files/patch-kqemu-freebsd.c (props changed) head/emulators/kqemu-kmod-devel/files/patch-kqemu-timeout (props changed) head/emulators/kqemu-kmod-devel/files/patch-unit2minorfix (props changed) head/emulators/kqemu-kmod/files/patch-common-Makefile (props changed) head/emulators/kqemu-kmod/files/patch-common-kqemu_int.h (props changed) head/emulators/kqemu-kmod/files/patch-fpucontext (props changed) head/emulators/kqemu-kmod/files/patch-kqemu-freebsd.c (props changed) head/emulators/kqemu-kmod/files/patch-unit2minorfix (props changed) head/emulators/loemu/files/patch-setup.py (props changed) head/emulators/m2000/files/patch-Makefile.X (props changed) head/emulators/m2000/files/patch-X.c (props changed) head/emulators/minivmac/files/patch-Makefile (props changed) head/emulators/mtools/files/patch-2 (props changed) head/emulators/mtools/files/patch-a (props changed) head/emulators/mtools/files/patch-c (props changed) head/emulators/mtools/files/patch-f (props changed) head/emulators/mtools/files/patch-g (props changed) head/emulators/mupen64-base/files/patch-Makefile (props changed) head/emulators/mupen64-base/files/patch-main_main.c (props changed) head/emulators/mupen64-glide/files/patch-Makefile (props changed) head/emulators/mupen64-glide/files/patch-glidesys.h (props changed) head/emulators/mupen64-gln64/files/patch-glN64_Config_linux.cpp (props changed) head/emulators/mupen64-rice/files/patch-DecodedMux.cpp (props changed) head/emulators/mupen64-rice/files/patch-Makefile (props changed) head/emulators/mupen64-rice/files/patch-OGLCombinerTNT2.cpp (props changed) head/emulators/mupen64-rice/files/patch-OGLExtCombiner.cpp (props changed) head/emulators/mupen64-rice/files/patch-unique.h (props changed) head/emulators/mupen64-sdlinput/files/patch-blight_input_SDL_ttf.c (props changed) head/emulators/mupen64-sound/files/patch-mupen64_audio_main.c (props changed) head/emulators/mupen64-tr64/files/patch-Makefile (props changed) head/emulators/mupen64-tr64/files/patch-texture.c (props changed) head/emulators/mupen64plus-core/files/patch-source_mupen64plus-core_projects_unix_Makefile (props changed) head/emulators/mupen64plus-core/files/patch-source_mupen64plus-core_src_main_zip_ioapi.h (props changed) head/emulators/nonpareil/files/patch-src_SConscript (props changed) head/emulators/nonpareil/files/patch-src_printer.c (props changed) head/emulators/nonpareil/files/patch-src_proc.c (props changed) head/emulators/nonpareil/files/patch-src_util.c (props changed) head/emulators/nonpareil/files/patch-src_util.h (props changed) head/emulators/o2em/files/patch-Makefile.debug (props changed) head/emulators/o2em/files/patch-Makefile.freebsd (props changed) head/emulators/o2em/files/patch-audio.c (props changed) head/emulators/o2em/files/patch-main.c (props changed) head/emulators/o2em/files/patch-timefunc.c (props changed) head/emulators/o2em/files/patch-vdc.c (props changed) head/emulators/o2em/files/patch-voice.c (props changed) head/emulators/pcemu/files/patch-aa (props changed) head/emulators/pcemu/files/patch-ab (props changed) head/emulators/pcemu/files/patch-ac (props changed) head/emulators/pcemu/files/patch-ad (props changed) head/emulators/pcemu/files/patch-ae (props changed) head/emulators/pcemu/files/patch-af (props changed) head/emulators/pcemu/files/patch-b1-cpule (props changed) head/emulators/pcemu/files/patch-b2-panic (props changed) head/emulators/pcemu/files/patch-c1-h (props changed) head/emulators/pcemu/files/patch-c2-rom8x16 (props changed) head/emulators/pcemu/files/patch-c3-hdemul (props changed) head/emulators/pcemu/files/patch-d1-dyndisks (props changed) head/emulators/pcemu/files/patch-e1-gcc3 (props changed) head/emulators/pcsxr/files/patch-gui-LnxMain.c (props changed) head/emulators/pcsxr/files/patch-libpcsxcore-socket.c (props changed) head/emulators/pcsxr/files/patch-pixmaps-Makefile.am (props changed) head/emulators/pcsxr/files/patch-plugins-dfcdrom-cdr.h (props changed) head/emulators/pcsxr/files/patch-plugins-dfxvideo-gpu.c (props changed) head/emulators/pcsxr/files/patch-plugins-peopsxgl-gpu.c (props changed) head/emulators/pearpc/files/patch-src-system-osapi-posix-types.h (props changed) head/emulators/pearpc/files/patch-src-tools-crc32.cc (props changed) head/emulators/pearpc/files/patch-src::io::prom::fs::hfsplus::unicode.c (props changed) head/emulators/prodosemu/files/patch-aa (props changed) head/emulators/prodosemu/files/patch-ab (props changed) head/emulators/psim-freebsd/files/patch-emul_chirp.c (props changed) head/emulators/psim-freebsd/files/patch-hw_cpu.c (props changed) head/emulators/psim-freebsd/files/patch-hw_init.c (props changed) head/emulators/pyxmame/files/patch-pyxmame_Config.py (props changed) head/emulators/pyxmame/files/patch-setup.py (props changed) head/emulators/qemu-devel/files/patch-bf (props changed) head/emulators/qemu-devel/files/patch-qemu-doc.texi (props changed) head/emulators/qemu-devel/files/patch-vl.c-serial (props changed) head/emulators/qemu-devel/files/patch-x_keymap.c (props changed) head/emulators/qemu-launcher/files/patch-Makefile (props changed) head/emulators/qemu/files/patch-0001-qcow2-Bring-synchronous-read-write-back-to-life (props changed) head/emulators/qemu/files/patch-90_security (props changed) head/emulators/qemu/files/patch-Makefile (props changed) head/emulators/qemu/files/patch-ac (props changed) head/emulators/qemu/files/patch-bd (props changed) head/emulators/qemu/files/patch-bf (props changed) head/emulators/qemu/files/patch-bg (props changed) head/emulators/qemu/files/patch-bt (props changed) head/emulators/qemu/files/patch-configure (props changed) head/emulators/qemu/files/patch-fbsd (props changed) head/emulators/qemu/files/patch-hw-eepro100.c (props changed) head/emulators/qemu/files/patch-hw-vmware_vga.c (props changed) head/emulators/qemu/files/patch-iopl-workaround (props changed) head/emulators/qemu/files/patch-libmath (props changed) head/emulators/qemu/files/patch-libmath2 (props changed) head/emulators/qemu/files/patch-libmath_FreeBSD-version (props changed) head/emulators/qemu/files/patch-osdep.c (props changed) head/emulators/qemu/files/patch-pc-bios-optionrom-multiboot.S (props changed) head/emulators/qemu/files/patch-qemu-doc.texi (props changed) head/emulators/qemu/files/patch-smc-fix (props changed) head/emulators/qemu/files/patch-tapclose (props changed) head/emulators/qemu/files/patch-vl.c (props changed) head/emulators/qemu/files/patch-vl.c-serial (props changed) head/emulators/qemu/files/patch-x_keymap.c (props changed) head/emulators/qemu/files/patch-z-bandaid-usb-current (props changed) head/emulators/qtemu/files/patch-helpwindow.cpp (props changed) head/emulators/qtemu/files/patch-main.cpp (props changed) head/emulators/qtemu/files/patch-qtemu.pro (props changed) head/emulators/raine/files/patch-makefile (props changed) head/emulators/raine/files/patch-patch-source_png_savepng.c (props changed) head/emulators/raine/files/patch-source::alleg::blit.c (props changed) head/emulators/raine/files/patch-source::emumain.c (props changed) head/emulators/raine/files/patch-source::gui::rgui.c (props changed) head/emulators/raine/files/patch-source_bezel.c (props changed) head/emulators/raine/files/patch-source_png_loadpng.c (props changed) head/emulators/sim6811/files/patch-ab (props changed) head/emulators/sim6811/files/patch-ac (props changed) head/emulators/simh/files/patch-VAX-vax_sysdev.c (props changed) head/emulators/skyeye/files/patch-Makefile (props changed) head/emulators/skyeye/files/patch-arch_coldfire_Makefile (props changed) head/emulators/snes9x-gtk/files/patch-screenshot.cpp (props changed) head/emulators/snes9x/files/patch-2XSAI.CPP (props changed) head/emulators/snes9x/files/patch-3d.h (props changed) head/emulators/snes9x/files/patch-Makefile.in (props changed) head/emulators/snes9x/files/patch-ad (props changed) head/emulators/snes9x/files/patch-ae (props changed) head/emulators/snes9x/files/patch-af (props changed) head/emulators/snes9x/files/patch-ag (props changed) head/emulators/snes9x/files/patch-ah (props changed) head/emulators/snes9x/files/patch-configure (props changed) head/emulators/spim/files/patch-spim_Configure (props changed) head/emulators/spim/files/patch-spim_Makefile (props changed) head/emulators/spim/files/patch-spim_spim.c (props changed) head/emulators/spim/files/patch-xspim_Configure (props changed) head/emulators/spim/files/patch-xspim_Imakefile (props changed) head/emulators/stonx/files/patch-audio.c (props changed) head/emulators/stonx/files/patch-configure (props changed) head/emulators/stonx/files/patch-di_dis.c (props changed) head/emulators/stonx/files/patch-makefonts.sh (props changed) head/emulators/stonx/files/patch-mint_stonxfs_fs.c (props changed) head/emulators/tiemu3/files/patch-man_Makefile.in (props changed) head/emulators/tme/files/patch-libtme-module.c (props changed) head/emulators/tpm-emulator/files/patch-tpmd-CMakeLists.txt (props changed) head/emulators/tuxnes/files/patch-emu.c (props changed) head/emulators/uae/files/patch-configure.in (props changed) head/emulators/vMac/files/patch-aa (props changed) head/emulators/vba/files/patch-Makefile.in (props changed) head/emulators/vba/files/patch-deprecatedsigc++ (props changed) head/emulators/vba/files/patch-src-System.h (props changed) head/emulators/vba/files/patch-src-Util.cpp (props changed) head/emulators/vba/files/patch-src-getopt.h (props changed) head/emulators/vba/files/patch-src-prof_gmon.h (props changed) head/emulators/vba/files/patch-src-prof_prof.cpp (props changed) head/emulators/vba/files/patch-src-remote.cpp (props changed) head/emulators/vba/files/patch-src-sdl-SDL.cpp (props changed) head/emulators/vba/files/patch-src-sdl_debugger.cpp (props changed) head/emulators/vice/files/patch-ab (props changed) head/emulators/vice/files/patch-ac (props changed) head/emulators/vice/files/patch-dynlib.c (props changed) head/emulators/vice/files/patch-sound.c (props changed) head/emulators/vice/files/patch-sounduss.c (props changed) head/emulators/vice/files/patch-x11video.c (props changed) head/emulators/virtio-kmod/files/extra-patch-virtio.h (props changed) head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Additions-common-VBoxGuestLib-Makefile.kmk (props changed) head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Additions-x11-Installer-98vboxadd-xclient (props changed) head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Additions-x11-Installer-vboxclient.desktop (props changed) head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd_VM_OBJECT_RENAME.c (props changed) head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-the-freebsd-kernel.h (props changed) head/emulators/virtualbox-ose-legacy/files/extrapatch-src-VBox-Devices-PC-vbox.dsl (props changed) head/emulators/virtualbox-ose-legacy/files/patch-src-VBox-Installer-Makefile.kmk (props changed) head/emulators/virtualbox-ose/files/extrapatch-src-VBox-Devices-PC-vbox.dsl (props changed) head/emulators/virtualbox-ose/files/patch-src-VBox-Devices-PC-vbox.dsl (props changed) head/emulators/virtualbox-ose/files/patch-src-VBox-Installer-Makefile.kmk (props changed) head/emulators/virtualbox-ose/files/patch-src-VBox-Installer-freebsd-virtualbox.desktop (props changed) head/emulators/virtualbox-ose/files/patch-src-recompiler-Sun-testmath.c (props changed) head/emulators/visualboyadvance-m/files/patch-CMakeLists.txt (props changed) head/emulators/visualboyadvance-m/files/patch-src-common-Patch.cpp (props changed) head/emulators/visualboyadvance-m/files/patch-src-gtk-filters.cpp (props changed) head/emulators/visualboyadvance-m/files/patch-src-gtk-filters.h (props changed) head/emulators/visualboyadvance-m/files/patch-src-gtk-gvbam.desktop (props changed) head/emulators/vxtools/files/patch-dir.c (props changed) head/emulators/vxtools/files/patch-olt.c (props changed) head/emulators/wine-devel/files/patch-partial-reservation (props changed) head/emulators/wine-doors/files/patch-setup.py (props changed) head/emulators/wine/files/patch-libinotify (props changed) head/emulators/wine/files/patch-partial-reservation (props changed) head/emulators/wxmupen64plus/files/patch-wscript (props changed) head/emulators/x48/files/patch-src+serial.c (props changed) head/emulators/x49gp/files/patch-Makefile (props changed) head/emulators/x49gp/files/patch-main.c (props changed) head/emulators/x49gp/files/patch-module.c (props changed) head/emulators/x49gp/files/patch-ui.c (props changed) head/emulators/xhomer/files/patch-Makefile (props changed) head/emulators/xmame/files/patch-src-unix-osinline.h (props changed) head/emulators/xmame/files/patch-src-unix-video-drivers-xf86_dga1.c (props changed) head/emulators/xmame/files/patch-src-unix-video-drivers-xf86_dga2.c (props changed) head/emulators/xsystem35/files/patch-configure.in (props changed) head/emulators/xsystem35/files/patch-soundcard.h (props changed) head/emulators/xsystem35/files/patch-src_cmd2F.c (props changed) head/emulators/xsystem35/files/patch-src_cmdf.c (props changed) head/emulators/xsystem35/files/patch-src_font_freetype2.c (props changed) head/emulators/xsystem35/files/patch-src_tempname.c (props changed) head/emulators/xzx/files/patch-doc::Makefile.in (props changed) head/emulators/yabause/files/patch-autogen.sh (props changed) head/emulators/yape/files/patch-Makefile (props changed) head/emulators/yape/files/patch-README.SDL (props changed) head/emulators/yape/files/patch-archdep.cpp (props changed) head/emulators/yape/files/patch-interface.cpp (props changed) head/emulators/yape/files/patch-serial.h (props changed) head/emulators/yape/files/patch-sound.h (props changed) head/emulators/zsnes/files/patch-configure (props changed) head/emulators/zsnes/files/patch-linux_audio.c (props changed) head/emulators/zsnes/files/patch-zpng.c (props changed) head/finance/electrum/files/patch-lib__util.py (props changed) head/finance/electrum/files/patch-setup.py (props changed) head/finance/gnucash/files/patch-src_app-utils_guile-util.c (props changed) head/finance/grisbi/files/patch-pixmaps::Makefile.in (props changed) head/finance/grisbi/files/patch-pixmaps_flags_Makefile.in (props changed) head/finance/grisbi/files/patch-src::Makefile.in (props changed) head/finance/grisbi/files/patch-src_include.h (props changed) head/finance/kmymoney-kde4/files/patch-CMakeLists.txt (props changed) head/finance/libofx/files/patch-Makefile.am (props changed) head/finance/libofx/files/patch-lib__ofx__utilities.cpp (props changed) head/finance/libstocks/files/patch-aa (props changed) head/finance/openerp-server/files/patch-setup.py (props changed) head/finance/openhbci/files/patch-configure (props changed) head/finance/openhbci/files/patch-pointer.h (props changed) head/finance/openhbci/files/patch-transaction.cpp (props changed) head/finance/opentaxsolver/files/patch-Build_taxsolve_packages_LINUX.sh (props changed) head/finance/opentaxsolver/files/patch-src-GUI-Makefile.linux (props changed) head/finance/opentaxsolver/files/patch-src-GUI-otk_lib-otk_lib.c (props changed) head/finance/opentaxsolver/files/patch-src-GUI-ots_gui.c (props changed) head/finance/p5-Business-OnlinePayment-SurePay/files/patch-SurePay.pm (props changed) head/finance/p5-Business-WorldPay-Junior/files/patch-Makefile.PL (props changed) head/finance/php-tclink/files/patch-php_tclink.c (props changed) head/finance/sabernetdcs-client/files/extra-patch-setup.py (props changed) head/finance/sabernetdcs-client/files/patch-setup.py (props changed) head/finance/wmstock/files/patch-aa (props changed) head/finance/wmstock/files/patch-ab (props changed) head/finance/xtrader/files/patch-Makefile.linux (props changed) head/finance/xtrader/files/patch-util_fl_Fl_Table.cpp (props changed) head/finance/xtrader/files/patch-util_fl_Fl_Table.h (props changed) head/finance/xtrader/files/patch-xtrader_src_dlg_DownloadDlg.cpp (props changed) head/finance/xtrader/files/patch-xtrader_src_dlg_DownloadDlg.h (props changed) head/finance/xtrader/files/patch-xtrader_src_dlg_ExportDlg.cpp (props changed) head/finance/xtrader/files/patch-xtrader_src_dlg_ExportDlg.h (props changed) head/finance/xtrader/files/patch-xtrader_src_gui_ReportView.cpp (props changed) head/finance/xtrader/files/patch-xtrader_src_gui_XTrader.cpp (props changed) head/french/alphabet_sounds_fr/files/patch-Makefile (props changed) head/french/alphabet_sounds_fr/files/patch-install.sh (props changed) head/french/aster/files/patch-as_setup.py (props changed) head/french/aster/files/patch-setup.cfg (props changed) head/french/dico/files/patch-Makefile.am (props changed) head/french/dico/files/patch-configure.in (props changed) head/french/dico/files/patch-lexique-Makefile.am (props changed) head/french/dico/files/patch-lexique-version.dic (props changed) head/french/dico/files/patch-manuel-Makefile.am (props changed) head/french/dico/files/patch-sources-Makefile.am (props changed) head/french/dico/files/patch-sources-dico.c (props changed) head/french/eficas/files/patch-convert::Parserv5::Translate.py (props changed) head/french/facturier/files/patch-lib_Conf.pm.in (props changed) head/french/facturier/files/patch-lib_Util.pm.in (props changed) head/french/gfaim/files/patch-Makefile (props changed) head/french/gfaim/files/patch-gfaim.c (props changed) head/french/med/files/patch-config_ltmain.sh (props changed) head/french/med/files/patch-include::med_outils.h (props changed) head/french/med/files/patch-include_2.3.6_med_outils.h (props changed) head/french/med/files/patch-src::cfi::Makefile.in (props changed) head/french/med/files/patch-src::ci::Makefile.in (props changed) head/french/med/files/patch-src::hdfi::Makefile.in (props changed) head/french/med/files/patch-src::misc::Makefile.in (props changed) head/french/med/files/patch-src_2.3.6_ci_MEDunvCr.c (props changed) head/french/med/files/patch-tests::c::Makefile.in (props changed) head/french/med/files/patch-tools::mdump::Makefile.in (props changed) head/french/med/files/patch-tools::medconforme::Makefile.in (props changed) head/french/med/files/patch-tools::medimport::Makefile.in (props changed) head/french/tvdownloader/files/patch-Makefile (props changed) head/french/tvdownloader/files/patch-tvdownloader.sh (props changed) head/french/verbiste/files/patch-Makefile.in (props changed) head/ftp/atftp/files/patch-Makefile.in (props changed) head/ftp/atftp/files/patch-argz.h (props changed) head/ftp/atftp/files/patch-logger.c (props changed) head/ftp/atftp/files/patch-options.c (props changed) head/ftp/atftp/files/patch-options.h (props changed) head/ftp/atftp/files/patch-stats.c (props changed) head/ftp/atftp/files/patch-tftp.c (props changed) head/ftp/atftp/files/patch-tftp_def.c (props changed) head/ftp/atftp/files/patch-tftp_def.h (props changed) head/ftp/atftp/files/patch-tftp_file.c (props changed) head/ftp/atftp/files/patch-tftp_io.c (props changed) head/ftp/atftp/files/patch-tftp_mtftp.c (props changed) head/ftp/atftp/files/patch-tftpd.c (props changed) head/ftp/atftp/files/patch-tftpd.h (props changed) head/ftp/atftp/files/patch-tftpd_file.c (props changed) head/ftp/atftp/files/patch-tftpd_list.c (props changed) head/ftp/atftp/files/patch-tftpd_mtftp.c (props changed) head/ftp/atftp/files/patch-tftpd_pcre.c (props changed) head/ftp/axel/files/patch-configure (props changed) head/ftp/bareftp/files/patch-configure (props changed) head/ftp/bareftp/files/patch-po-LINGUAS (props changed) head/ftp/bftpd/files/patch-commands.c (props changed) head/ftp/bsdftpd-ssl/files/patch-contrib-libedit-makelist (props changed) head/ftp/bsdftpd-ssl/files/patch-ftpd-logwtmp.c (props changed) head/ftp/bsdftpd-ssl/files/patch-gcc4 (props changed) head/ftp/cftp/files/patch-ftp.c (props changed) head/ftp/cftp/files/patch-mkbind_c (props changed) head/ftp/cftp/files/patch-readrc.c (props changed) head/ftp/fget/files/patch-doc-Makefile.in (props changed) head/ftp/fmirror/files/patch-fmirror.1 (props changed) head/ftp/fmirror/files/patch-fmirror.c (props changed) head/ftp/fmirror/files/patch-fmirror.c-ipv6 (props changed) head/ftp/frox/files/patch-aa (props changed) head/ftp/frox/files/patch-lib-sstrlib-sstr_io.c (props changed) head/ftp/frox/files/patch-src-bsd.c (props changed) head/ftp/frox/files/patch-src-cache.c (props changed) head/ftp/ftpcopy/files/patch-aa (props changed) head/ftp/ftpcube/files/patch-libftpcube_connectwin.py (props changed) head/ftp/ftpmirror/files/patch-FTP.pm (props changed) head/ftp/ftpmirror/files/patch-Fan__Fan.pm (props changed) head/ftp/ftpmirror/files/patch-TCP.pm (props changed) head/ftp/ftpsesame/files/patch-Makefile (props changed) head/ftp/ftpsesame/files/patch-ftpsesame.c (props changed) head/ftp/gwget/files/patch-configure (props changed) head/ftp/gwget/files/patch-src_systray.c (props changed) head/ftp/hsftp/files/patch-aa (props changed) head/ftp/jftpgw/files/patch-std_cmds.h (props changed) head/ftp/lftp/files/patch-lib-Makefile.in (props changed) head/ftp/lftp/files/patch-src-Makefile.in (props changed) head/ftp/llnlxdir/files/patch-aa (props changed) head/ftp/llnlxdir/files/patch-ab (props changed) head/ftp/llnlxdir/files/patch-local.c (props changed) head/ftp/llnlxftp/files/patch-aa (props changed) head/ftp/llnlxftp/files/patch-ab (props changed) head/ftp/llnlxftp/files/patch-local.c (props changed) head/ftp/mirror/files/patch-aa (props changed) head/ftp/mirror/files/patch-ab (props changed) head/ftp/mirror/files/patch-ac (props changed) head/ftp/mirror/files/patch-ae (props changed) head/ftp/mirror/files/patch-lchat.pl (props changed) head/ftp/ncftp1/files/patch-aa (props changed) head/ftp/ncftp1/files/patch-ab (props changed) head/ftp/ncftp1/files/patch-sys.h (props changed) head/ftp/oftpd/files/patch-ftp_session.c (props changed) head/ftp/omi/files/patch-utils.c (props changed) head/ftp/omi/files/patch-utils.h (props changed) head/ftp/pftpd/files/patch-plib_dirlist.c (props changed) head/ftp/plasma-applet-ftpmonitor/files/patch-src__ftpmonitorloop.cpp (props changed) head/ftp/plasma-applet-ftpmonitor/files/patch-src__ftpserver__ncftpdmonitor.h (props changed) head/ftp/plasma-applet-ftpmonitor/files/patch-src__ftpserver__proftpdmonitor.h (props changed) head/ftp/plasma-applet-ftpmonitor/files/patch-src__ftpserver__pureftpdmonitor.h (props changed) head/ftp/plasma-applet-ftpmonitor/files/patch-src__ftpserver__vsftpdmonitor.h (props changed) head/ftp/proftpd/files/extra-patch-7-src-fsio.c (props changed) head/ftp/proftpd/files/extra-patch-8-src-fsio.c (props changed) head/ftp/proftpd/files/extra-patch-modules_mod_xfer.c (props changed) head/ftp/proftpd/files/patch-contrib-mod_sftp-Makefile.in (props changed) head/ftp/proftpd/files/patch-doc::Configuration.html (props changed) head/ftp/proftpd/files/patch-sample-configurations_basic.conf (props changed) head/ftp/proftpd/files/patch-src-wtmp.c (props changed) head/ftp/proftpd/files/patch-src_proftpd.8.in (props changed) head/ftp/pureadmin/files/patch-src-main.c (props changed) head/ftp/py-ftputil/files/patch-setup.py (props changed) head/ftp/py-pyftpdlib/files/patch-setup.py (props changed) head/ftp/quftp/files/patch-aa (props changed) head/ftp/quftp/files/patch-ab (props changed) head/ftp/quftp/files/patch-ac (props changed) head/ftp/quftp/files/patch-ad (props changed) head/ftp/rexx-curl/files/patch-rexxcurl.c (props changed) head/ftp/smbftpd/files/patch-Makefile (props changed) head/ftp/spegla/files/patch-Makefile (props changed) head/ftp/spegla/files/patch-e_err.c (props changed) head/ftp/spegla/files/patch-jftp.c (props changed) head/ftp/spegla/files/patch-spegla.c (props changed) head/ftp/uftp/files/patch-Makefile (props changed) head/ftp/vsftpd-ext/files/patch-utility (props changed) head/ftp/vsftpd/files/patch-sysdeputil.c (props changed) head/ftp/vsftpd/files/patch-utility (props changed) head/ftp/waiho/files/patch-ftp.h (props changed) head/ftp/weex/files/patch-src__log.c (props changed) head/ftp/wget/files/patch-NEWS (props changed) head/ftp/wget/files/patch-doc__texi2pod.pl (props changed) head/ftp/wget/files/patch-doc__wget.texi (props changed) head/ftp/wmget/files/patch-Makefile (props changed) head/ftp/wmget/files/patch-configure.c (props changed) head/ftp/wmget/files/patch-dockapp::Makefile (props changed) head/ftp/wput/files/patch-Makefile.in (props changed) head/ftp/wxdfast/files/patch-src__FinishedList.cpp (props changed) head/games/0ad/files/patch-build-resources-0ad.sh (props changed) head/games/0ad/files/patch-source-lib-sysdep-os-unix-x-x.cpp (props changed) head/games/0ad/files/patch-source-tools-atlas-AtlasObject-AtlasObjectJS.cpp (props changed) head/games/3dc/files/patch-aa (props changed) head/games/3dc/files/patch-ab (props changed) head/games/4stattack/files/patch-4stattack (props changed) head/games/54321/files/patch-code::main.cpp (props changed) head/games/CaribbeanStud/files/patch-Card.h (props changed) head/games/CaribbeanStud/files/patch-Dealer.cpp (props changed) head/games/CaribbeanStud/files/patch-Dealer.h (props changed) head/games/CaribbeanStud/files/patch-Deck.cpp (props changed) head/games/CaribbeanStud/files/patch-Hands.cpp (props changed) head/games/CaribbeanStud/files/patch-Player.h (props changed) head/games/CaribbeanStud/files/patch-Seat.cpp (props changed) head/games/CaribbeanStud/files/patch-Seat.h (props changed) head/games/CaribbeanStud/files/patch-Table.cpp (props changed) head/games/CaribbeanStud/files/patch-Xmakefile (props changed) head/games/KnightCap/files/patch-aa (props changed) head/games/KnightCap/files/patch-ab (props changed) head/games/KnightCap/files/patch-knightcap.h (props changed) head/games/abuse_sdl/files/patch-src-intsect.cpp (props changed) head/games/acm/files/patch-01 (props changed) head/games/acm/files/patch-02 (props changed) head/games/acm/files/patch-03 (props changed) head/games/acm/files/patch-04 (props changed) head/games/acm/files/patch-05 (props changed) head/games/acm/files/patch-06 (props changed) head/games/acm/files/patch-07 (props changed) head/games/acm/files/patch-08 (props changed) head/games/acm/files/patch-09 (props changed) head/games/acm/files/patch-clang-compat (props changed) head/games/acm/files/patch-dis-disgen-configure (props changed) head/games/acm/files/patch-dis-lib-Makefile.in (props changed) head/games/acm/files/patch-dis-test-disscope.c (props changed) head/games/actx/files/patch-aa (props changed) head/games/actx/files/patch-ad (props changed) head/games/adgali/files/patch-agl_imglist.c (props changed) head/games/adgali/files/patch-src-input-fontio_agl_bfontio.c (props changed) head/games/adgali/files/patch-src-input-fontio_agl_ttfio.c (props changed) head/games/adgali/files/patch-src-input-imageio-agl_pngio.c (props changed) head/games/adgali/files/patch-src_agl_main.c (props changed) head/games/adonthell/files/patch-src_dialog.cc (props changed) head/games/adonthell/files/patch-src_map__event__handler.cc (props changed) head/games/adonthell/files/patch-src_prefs.cc (props changed) head/games/adonthell/files/patch-src_py_callback.cc (props changed) head/games/adonthell/files/patch-src_win__select.cc (props changed) head/games/agame/files/patch-Makefile (props changed) head/games/allacrost/files/patch-src-engine-video-image.cpp (props changed) head/games/allacrost/files/patch-src-engine-video-image__base.cpp (props changed) head/games/allacrost/files/patch-src-utils.cpp (props changed) head/games/annelid/files/patch-Makefile (props changed) head/games/antipolix/files/patch-aa (props changed) head/games/antipolix/files/patch-ab (props changed) head/games/antipolix/files/patch-ac (props changed) head/games/antipolix/files/patch-ad (props changed) head/games/antipolix/files/patch-ae (props changed) head/games/apoolGL/files/patch-apool.c (props changed) head/games/apoolGL/files/patch-gl.c (props changed) head/games/apricots/files/patch-apricots-sampleio.cpp (props changed) head/games/armagetron/files/patch-Makefile.in (props changed) head/games/armagetron/files/patch-batch-install.in (props changed) head/games/armagetron/files/patch-configure (props changed) head/games/armagetron/files/patch-src-engine_eGrid.h (props changed) head/games/armagetron/files/patch-src-engine_eVoter.cpp (props changed) head/games/armagetron/files/patch-src-engine_eWall.h (props changed) head/games/armagetron/files/patch-src-tron_gCycle.h (props changed) head/games/asteroids3d/files/patch-src-texture.c (props changed) head/games/atanks/files/patch-Makefile (props changed) head/games/atr3d/files/patch-Makefile.am (props changed) head/games/atr3d/files/patch-init.cpp (props changed) head/games/atr3d/files/patch-mainplayerthread.cpp (props changed) head/games/atr3d/files/patch-menu.cpp (props changed) head/games/atr3d/files/patch-netconfig.h (props changed) head/games/atr3d/files/patch-radar.cpp (props changed) head/games/atr3d/files/patch-servergame.cpp (props changed) head/games/atr3d/files/patch-sound.cpp (props changed) head/games/avp-demo/files/patch-Makefile (props changed) head/games/awele/files/patch-aa (props changed) head/games/awele/files/patch-ab (props changed) head/games/awele/files/patch-ac (props changed) head/games/balazar/files/patch-setup.cfg (props changed) head/games/balazarbrothers/files/patch-setup.cfg (props changed) head/games/battletanks/files/patch-SConstruct (props changed) head/games/battletanks/files/patch-clunk-sse_fft_context.cpp (props changed) head/games/battletanks/files/patch-engine-SConscript (props changed) head/games/battletanks/files/patch-engine-sl08-sl08.py (props changed) head/games/battletanks/files/patch-engine_net_monitor.cpp (props changed) head/games/battletanks/files/patch-engine_net_scanner.cpp (props changed) head/games/battletanks/files/patch-mrt_logger.cpp (props changed) head/games/battletanks/files/patch-mrt_tcp_socket.cpp (props changed) head/games/battletanks/files/patch-mrt_udp_socket.cpp (props changed) head/games/battletanks/files/patch-sdlx-SConscript (props changed) head/games/biniax2/files/patch-biniax.c (props changed) head/games/bitefusion/files/patch-main.c (props changed) head/games/blackshadeselite/files/patch-Makefile (props changed) head/games/blackshadeselite/files/patch-Source-Config.cpp (props changed) head/games/blobby/files/patch-config.h.in (props changed) head/games/blobby/files/patch-data-CMakeLists.txt (props changed) head/games/blobby/files/patch-src-InputManager.cpp (props changed) head/games/blobby/files/patch-src-RenderManager.cpp (props changed) head/games/bloboats/files/patch-Makefile (props changed) head/games/blobwars/files/patch-src__CReplayData.cpp (props changed) head/games/blobwars/files/patch-src__pak.cpp (props changed) head/games/block/files/patch-aa (props changed) head/games/block/files/patch-ab (props changed) head/games/blockade/files/patch-aa (props changed) head/games/blockade/files/patch-ab (props changed) head/games/blockout/files/patch-GLFont.cpp (props changed) head/games/blockout/files/patch-GLSprite.cpp (props changed) head/games/blockout/files/patch-Http.cpp (props changed) head/games/blockout/files/patch-Makefile (props changed) head/games/blockout/files/patch-gif.c (props changed) head/games/blockout/files/patch-hpng.c (props changed) head/games/bloodfrontier/files/patch-src-Makefile (props changed) head/games/bomberinstinct/files/patch-data::Sprites::Makefile.in (props changed) head/games/boswars/files/patch-SConstruct (props changed) head/games/brainparty/files/patch-BPGame.cpp (props changed) head/games/brainparty/files/patch-Makefile (props changed) head/games/brainworkshop/files/patch-brainworkshop.pyw (props changed) head/games/brutalchess/files/patch-aclocal.m4 (props changed) head/games/brutalchess/files/patch-install.sh (props changed) head/games/brutalchess/files/patch-src-md3view.cpp (props changed) head/games/brutalchess/files/patch-src-objview.cpp (props changed) head/games/bsdgames/files/patch-Makefile (props changed) head/games/bsdgames/files/patch-Makefile.inc (props changed) head/games/bsdgames/files/patch-battlestar (props changed) head/games/bsdgames/files/patch-dfly (props changed) head/games/bsdgames/files/patch-hack (props changed) head/games/bsdtris/files/patch-Makefile (props changed) head/games/bsdtris/files/patch-pathnames.h (props changed) head/games/bubbros/files/patch-bubbob-statesaver.c (props changed) head/games/bubbros/files/patch-display-xshm.c (props changed) head/games/bugsx/files/patch-aa (props changed) head/games/burrtools/files/patch-src__help__data2c.cpp (props changed) head/games/burrtools/files/patch-src__lib__stl.cpp (props changed) head/games/bygfoot/files/patch-po-Makefile.in.in (props changed) head/games/cake/files/patch-Makefile (props changed) head/games/cake/files/patch-cake::entity.cpp (props changed) head/games/cake/files/patch-cake_render.cpp (props changed) head/games/cave9/files/patch-src-GNUmakefile (props changed) head/games/cave9/files/patch-src-game.c (props changed) head/games/cgoban/files/patch-wmslib::src::wms::snd.c (props changed) head/games/chanta/files/patch-configure (props changed) head/games/childsplay_plugins/files/patch-Makefile (props changed) head/games/childsplay_plugins/files/patch-install.sh (props changed) head/games/circuslinux/files/patch-Makefile.in (props changed) head/games/cleanq3/files/patch-code-cgame-cg_weapons.c (props changed) head/games/cleanq3/files/patch-code-game-q_shared.c (props changed) head/games/cleanq3/files/patch-code-game-q_shared.h (props changed) head/games/cleanq3/files/patch-code-q3_ui-ui_playermodel.c (props changed) head/games/cleanq3/files/patch-code-q3_ui-ui_players.c (props changed) head/games/cleanq3/files/patch-code-q3_ui-ui_saveconfig.c (props changed) head/games/cleanq3/files/patch-code-qcommon-common.c (props changed) head/games/cleanq3/files/patch-code-qcommon-vm.c (props changed) head/games/cleanq3/files/patch-code-renderer-tr_bsp.c (props changed) head/games/cleanq3/files/patch-code-renderer-tr_shader.c (props changed) head/games/cleanq3/files/patch-code-server-sv_client.c (props changed) head/games/cleanq3/files/patch-code-ui-ui_main.c (props changed) head/games/cleanq3/files/patch-code-ui-ui_players.c (props changed) head/games/cleanq3/files/patch-code-unix-Makefile (props changed) head/games/cleanq3/files/patch-code-unix-unix_main.c (props changed) head/games/cleanq3/files/patch-code-unix-unix_shared.c (props changed) head/games/columns/files/patch-ab (props changed) head/games/columns/files/patch-ac (props changed) head/games/connectfive/files/patch-Makefile.linux (props changed) head/games/connectfive/files/patch-SimpleHeuristic.cpp (props changed) head/games/connectfive/files/patch-glfont2.h (props changed) head/games/conquest/files/patch-Makefile.in (props changed) head/games/corewars/files/patch-src_Makefile.in (props changed) head/games/cosmo/files/patch-aa (props changed) head/games/cosmo/files/patch-ab (props changed) head/games/cowsay/files/patch-aa (props changed) head/games/cowsay/files/patch-install.sh (props changed) head/games/crafty/files/patch-Makefile (props changed) head/games/crafty/files/patch-chess.h (props changed) head/games/crafty/files/patch-option.c (props changed) head/games/criticalmass/files/patch-game__main.cpp (props changed) head/games/criticalmass/files/patch-utils_WalkDirectory.hpp (props changed) head/games/criticalmass/files/patch-utilsgl_gl++.hpp (props changed) head/games/criticalmass/files/patch-utilssdl_PNG.cpp (props changed) head/games/crossfire-server/files/patch-common::exp.c (props changed) head/games/crossfire-server/files/patch-common::loader.l (props changed) head/games/crrcsim/files/patch-src-mod__inputdev-inputdev__parallel-inputdev__parallel.cpp (props changed) head/games/crrcsim/files/patch-src-mod__inputdev-inputdev__serial-inputdev__serial.cpp (props changed) head/games/csmash/files/patch-MultiPlay.cpp (props changed) head/games/csmash/files/patch-Network.cpp (props changed) head/games/csmash/files/patch-configure (props changed) head/games/csmash/files/patch-loadparts.cpp (props changed) head/games/csmash/files/patch-ttinc.h (props changed) head/games/cube/files/patch-Makefile (props changed) head/games/cube/files/patch-client.cpp (props changed) head/games/cube/files/patch-clientextras.cpp (props changed) head/games/cube/files/patch-server.cpp (props changed) head/games/cube/files/patch-serverbrowser.cpp (props changed) head/games/cube/files/patch-serverms.cpp (props changed) head/games/cube/files/patch-tools.h (props changed) head/games/cultivation/files/patch-Makefile.GnuLinux (props changed) head/games/cultivation/files/patch-Makefile.common (props changed) head/games/cursive/files/patch-aa (props changed) head/games/cursive/files/patch-ab (props changed) head/games/cursive/files/patch-ac (props changed) head/games/d2x-xl/files/patch-include-ogl_defs.h (props changed) head/games/d2x-xl/files/patch-main-gamefolders.cpp (props changed) head/games/d2x-xl/files/patch-noupdates (props changed) head/games/d2x-xl/files/patch-pstypes.h (props changed) head/games/d2x/files/patch-console.c (props changed) head/games/d2x/files/patch-mem.c (props changed) head/games/d2x/files/patch-pstypes (props changed) head/games/daimonin/files/extra-patch-src-wrapper.c (props changed) head/games/daimonin/files/patch-settings-keys-laptop.dat (props changed) head/games/daimonin/files/patch-settings-keys-rogue.dat (props changed) head/games/daimonin/files/patch-src-socket.c (props changed) head/games/daimonin/files/patch-src-uncompr.c (props changed) head/games/dangerdeep/files/patch-SConstruct (props changed) head/games/darkplaces/files/patch-cd_bsd.c (props changed) head/games/darkplaces/files/patch-glquake.h (props changed) head/games/darkplaces/files/patch-makefile (props changed) head/games/darkplaces/files/patch-makefile.inc (props changed) head/games/defendguin/files/patch-defendguin.c (props changed) head/games/digger-vgl/files/patch-fbsd__kbd.c (props changed) head/games/digger-vgl/files/patch-main.c (props changed) head/games/dodgindiamond2/files/patch-src::Makefile.in (props changed) head/games/dodgindiamond2/files/patch-src::data::Makefile.in (props changed) head/games/dodgindiamond2/files/patch-src::main.c (props changed) head/games/doom/files/patch-Makefile (props changed) head/games/doom/files/patch-i_net.c (props changed) head/games/doom/files/patch-i_sound.c (props changed) head/games/doom/files/patch-m_bbox.c (props changed) head/games/doom/files/patch-sndserv-Makefile (props changed) head/games/doom/files/patch-sndserv__soundsrv.c (props changed) head/games/doom/files/patch-sndserv__wadread.c (props changed) head/games/doomlegacy/files/patch-Makefile (props changed) head/games/doomlegacy/files/patch-sdl+i_system.c (props changed) head/games/drm/files/patch-aa (props changed) head/games/drm/files/patch-loop.c (props changed) head/games/dungeoncrawl/files/patch-source-AppHdr.cc (props changed) head/games/dungeoncrawl/files/patch-source-religion.cc (props changed) head/games/eboard/files/patch-cimg.cc (props changed) head/games/eboard/files/patch-configure (props changed) head/games/eboard/files/patch-main.cc (props changed) head/games/eboard/files/patch-network.cc (props changed) head/games/eboard/files/patch-network.h (props changed) head/games/edge/files/patch-epi__endianess.h (props changed) head/games/edge/files/patch-epi__filesystem_linux.cc (props changed) head/games/edge/files/patch-epi__image_png.cc (props changed) head/games/edge/files/patch-src__e_main.cc (props changed) head/games/edge/files/patch-src__i_net.cc (props changed) head/games/edge/files/patch-src__unx_net.cc (props changed) head/games/edge/files/patch-src__unx_sysinc.h (props changed) head/games/editss/files/patch-aa (props changed) head/games/editss/files/patch-ab (props changed) head/games/editss/files/patch-ac (props changed) head/games/egl/files/patch-cgame__menu__m_opts_sound.c (props changed) head/games/egl/files/patch-client__gui_public.h (props changed) head/games/egl/files/patch-client__snd_main.c (props changed) head/games/egl/files/patch-common__common.c (props changed) head/games/egl/files/patch-common__files.c (props changed) head/games/egl/files/patch-common__net_msg.c (props changed) head/games/egl/files/patch-include__zlibpng__zconf.h (props changed) head/games/egl/files/patch-makefile (props changed) head/games/egl/files/patch-renderer__rb_qgl.h (props changed) head/games/egl/files/patch-renderer__rf_image.c (props changed) head/games/egl/files/patch-renderer__rf_init.c (props changed) head/games/egl/files/patch-server__sv_main.c (props changed) head/games/egl/files/patch-shared__shared.c (props changed) head/games/egl/files/patch-shared__shared.h (props changed) head/games/egl/files/patch-unix__unix_console.c (props changed) head/games/egl/files/patch-unix__unix_glimp.c (props changed) head/games/egl/files/patch-unix__unix_main.c (props changed) head/games/egl/files/patch-unix__unix_snd_oss.c (props changed) head/games/egl/files/patch-unix__unix_udp.c (props changed) head/games/egl/files/patch-unix__x11_main.c (props changed) head/games/egoboo/files/patch-game-Makefile.unix (props changed) head/games/egoboo/files/patch-game-lin-file.c (props changed) head/games/eights/files/patch-eights.c (props changed) head/games/einstein/files/patch-Makefile (props changed) head/games/einstein/files/patch-formatter.cpp (props changed) head/games/einstein/files/patch-random.cpp (props changed) head/games/einstein/files/patch-utils.cpp (props changed) head/games/el/files/patch-Makefile.bsd (props changed) head/games/el/files/patch-make.defaults (props changed) head/games/el/files/patch-platform.h (props changed) head/games/ember/files/patch-TerrainInfo.h (props changed) head/games/ember/files/patch-tolua++.h (props changed) head/games/enigma/files/patch-Makefile.in (props changed) head/games/enigma/files/patch-configure (props changed) head/games/enigma/files/patch-lib-src-Makefile.in (props changed) head/games/enigma/files/patch-src-Makefile.in (props changed) head/games/enigma/files/patch-src-client.cc (props changed) head/games/enigma/files/patch-src-enigma-core-IMG__SavePNG.c (props changed) head/games/enigma/files/patch-src-netgame.cc (props changed) head/games/ensemblist/files/patch-Makefile (props changed) head/games/enygma/files/patch-Makefile.in (props changed) head/games/enygma/files/patch-engine.c (props changed) head/games/enygma/files/patch-main.c (props changed) head/games/enygma/files/patch-memory.c (props changed) head/games/enygma/files/patch-screen.c (props changed) head/games/evilfinder/files/patch-ef.c (props changed) head/games/evq3/files/patch-Makefile (props changed) head/games/evq3/files/patch-code__qcommon__files.c (props changed) head/games/evq3/files/patch-code__qcommon__q_platform.h (props changed) head/games/evq3/files/patch-code_client_snd_openal.c (props changed) head/games/excido/files/patch-Makefile (props changed) head/games/exhaust-ma/files/patch-Makefile (props changed) head/games/exhaust/files/patch-Makefile (props changed) head/games/exmars/files/patch-Makefile (props changed) head/games/ezquake/files/patch-Makefile (props changed) head/games/ezquake/files/patch-Makefile.list (props changed) head/games/ezquake/files/patch-config_manager.c (props changed) head/games/ezquake/files/patch-fs.c (props changed) head/games/ezquake/files/patch-image.c (props changed) head/games/ezquake/files/patch-q_shared.h (props changed) head/games/ezquake/files/patch-snd_dma.c (props changed) head/games/f1spirit-remake/files/patch-sources-CCar.h (props changed) head/games/f1spirit-remake/files/patch-sources-CPlayer.cpp (props changed) head/games/f1spirit-remake/files/patch-sources-F1Shttp.cpp (props changed) head/games/f1spirit-remake/files/patch-sources-F1SpiritGame.cpp (props changed) head/games/f1spirit-remake/files/patch-sources-Makefile (props changed) head/games/f1spirit-remake/files/patch-sources-main.cpp (props changed) head/games/falconseye/files/patch-include_config_h (props changed) head/games/falconseye/files/patch-include_system_h (props changed) head/games/falconseye/files/patch-include_unixconf_h (props changed) head/games/falconseye/files/patch-sys_unix_Makefile_doc (props changed) head/games/falconseye/files/patch-sys_unix_Makefile_src (props changed) head/games/falconseye/files/patch-sys_unix_Makefile_top (props changed) head/games/falconseye/files/patch-sys_unix_Makefile_utl (props changed) head/games/falconseye/files/patch-sys_unix_nethack_sh (props changed) head/games/falconseye/files/patch-sys_unix_unixunix_c (props changed) head/games/falconseye/files/patch-win_Qt_qt_win_cpp (props changed) head/games/falconseye/files/patch-win_jtp_gamedata_config_jtp_keys_txt (props changed) head/games/falconseye/files/patch-win_jtp_gamedata_config_jtp_opts_txt (props changed) head/games/falconseye/files/patch-win_jtp_jtp_sdl.c (props changed) head/games/falconseye/files/patch-win_jtp_jtp_win_c (props changed) head/games/farblazer/files/patch-code::sprites::objrocket.py (props changed) head/games/fargoal/files/patch-Makefile (props changed) head/games/fargoal/files/patch-main.c (props changed) head/games/fgrun/files/patch-src-fgrun_pty.cxx (props changed) head/games/fgrun/files/patch-src-run_posix.cxx (props changed) head/games/filters/files/patch-Makefile (props changed) head/games/filters/files/patch-filters.1 (props changed) head/games/filters/files/patch-ky00te.dir__makefile (props changed) head/games/filters/files/patch-nethackify.dir__makefile (props changed) head/games/flightgear/files/patch-CMakeLists.txt (props changed) head/games/flightgear/files/patch-src-FDM-JSBSim-JSBSim.cxx (props changed) head/games/flightgear/files/patch-utils-js_server-CMakeLists.txt (props changed) head/games/flobopuyo/files/patch-IosVector.cpp (props changed) head/games/flobopuyo/files/patch-PuyoGame.cpp (props changed) head/games/flying/files/patch-ab (props changed) head/games/flying/files/patch-ac (props changed) head/games/flying/files/patch-ad (props changed) head/games/flying/files/patch-ae (props changed) head/games/flying/files/patch-af (props changed) head/games/fmars/files/patch-Makefile (props changed) head/games/foobillard/files/patch-Makefile.in (props changed) head/games/foobillard/files/patch-billard3d.c (props changed) head/games/foobillard/files/patch-option.h (props changed) head/games/foobillard/files/patch-sys_stuff.c (props changed) head/games/formido/files/patch-Makefile (props changed) head/games/freecell-solver/files/patch-CMakeLists.txt (props changed) head/games/freedink-data/files/patch-Makefile (props changed) head/games/freedink-dfarc/files/patch-po_Makefile.in.in (props changed) head/games/freedink-engine/files/patch-meminfo.c (props changed) head/games/freera/files/patch-src-freera.cpp (props changed) head/games/freesweep/files/patch-config.h.in (props changed) head/games/freetennis/files/patch-Makefile (props changed) head/games/fretsonfire/files/patch-src_Video.py (props changed) head/games/frobtads/files/patch-tads3-unix-osnetunix.cpp (props changed) head/games/frogatto/files/patch-src-filesystem.cpp (props changed) head/games/fteqw/files/patch-Makefile (props changed) head/games/fteqw/files/patch-client__cl_main.c (props changed) head/games/fteqw/files/patch-client__image.c (props changed) head/games/fteqw/files/patch-client__snd_linux.c (props changed) head/games/fteqw/files/patch-client__sys_linux.c (props changed) head/games/fteqw/files/patch-common__fs.c (props changed) head/games/fteqw/files/patch-common__net_wins.c (props changed) head/games/fteqw/files/patch-gl__gl_vidlinuxglx.c (props changed) head/games/fteqw/files/patch-server__sv_sys_unix.c (props changed) head/games/fuhquake/files/patch-cl_main.c (props changed) head/games/fuhquake/files/patch-common.c (props changed) head/games/fuhquake/files/patch-gl_texture.c (props changed) head/games/fuhquake/files/patch-image.c (props changed) head/games/fuhquake/files/patch-menu.c (props changed) head/games/fuhquake/files/patch-modules.c (props changed) head/games/fuhquake/files/patch-modules.h (props changed) head/games/fuhquake/files/patch-mp3_player.c (props changed) head/games/fuhquake/files/patch-r_part.c (props changed) head/games/fuhquake/files/patch-snd_dma.c (props changed) head/games/fuhquake/files/patch-version.h (props changed) head/games/fuhquake/files/patch-vid_glx.c (props changed) head/games/fxsudoku/files/patch-build__configdetect (props changed) head/games/fxsudoku/files/patch-build__foxdetect (props changed) head/games/fxsudoku/files/patch-gb (props changed) head/games/galaxyhack/files/patch-SetupBattle.cpp (props changed) head/games/galaxymage/files/patch-GalaxyMage.py (props changed) head/games/galaxymage/files/patch-src_Resources.py (props changed) head/games/galaxymage/files/patch-src_Translate.py (props changed) head/games/gcompris/files/patch-configure (props changed) head/games/gcompris/files/patch-src_gcompris_gcompris.c (props changed) head/games/gdado/files/patch-Makefile.in (props changed) head/games/ggz-client-libs/files/patch-ggz-wrapper-loop.c (props changed) head/games/ggz-sdl-games/files/patch-ttt3d-main.c (props changed) head/games/ggz-txt-client/files/patch-ggz-txt::loop.c (props changed) head/games/ggz-txt-client/files/patch-ggz-txt::output.c (props changed) head/games/ggz-txt-client/files/patch-tttxt::main.c (props changed) head/games/gillo/files/patch-Jamfile (props changed) head/games/gillo/files/patch-Jamrules (props changed) head/games/gillo/files/patch-src_Jamfile (props changed) head/games/gl-117/files/patch-configure (props changed) head/games/glaxium/files/patch-scene.cpp (props changed) head/games/glaxium/files/patch-variables.cpp (props changed) head/games/glbsp/files/patch-GUI_unx.mak (props changed) head/games/glbsp/files/patch-wad.c (props changed) head/games/glest/files/patch-mk__linux__autogen.sh (props changed) head/games/glmaze/files/patch-Makefile (props changed) head/games/glmaze/files/patch-shot.c (props changed) head/games/glmaze/files/patch-sound.c (props changed) head/games/glob2/files/patch-SConstruct (props changed) head/games/gltron/files/patch-Makefile.in (props changed) head/games/gltron/files/patch-nebu::scripting::scritpting.c (props changed) head/games/gma/files/patch-scores.cc (props changed) head/games/gmastermind/files/patch-Controller.h (props changed) head/games/gno3dtet/files/patch-src__main.cc (props changed) head/games/gnome-games/files/patch-glchess_src_lib_defaults.py.in (props changed) head/games/gnome-games/files/patch-gnome-sudoku_src_lib_defaults.py.in (props changed) head/games/gnomeattacks/files/patch-src-game.c (props changed) head/games/gnomebreakout/files/patch-src::anim.c (props changed) head/games/gnomekiss/files/patch-src::event.c (props changed) head/games/gnubg/files/patch-dice.c (props changed) head/games/gnubg/files/patch-doc_Makefile.am (props changed) head/games/gnubg/files/patch-export.c (props changed) head/games/gnubg/files/patch-lib_neuralnet.c (props changed) head/games/gnugo/files/patch-ab (props changed) head/games/gnushogi/files/patch-doc::gnushogi.texinfo (props changed) head/games/gnustep-ladder/files/patch-Clock.h (props changed) head/games/gnustep-ladder/files/patch-Clock.m (props changed) head/games/gondola/files/patch-gamelib-data.py (props changed) head/games/gondola/files/patch-gamelib-main.py (props changed) head/games/goonies/files/patch-build-linux-Makefile (props changed) head/games/gracer/files/patch-aa (props changed) head/games/gracer/files/patch-ab (props changed) head/games/gracer/files/patch-ac (props changed) head/games/gracer/files/patch-ac2scene.c (props changed) head/games/gracer/files/patch-glbind.c (props changed) head/games/gracer/files/patch-glutwidgets.c (props changed) head/games/gracer/files/patch-gr_memory.h (props changed) head/games/gracer/files/patch-gr_texture.c (props changed) head/games/gracer/files/patch-gr_world.c (props changed) head/games/grhino/files/patch-alphabeta.cc (props changed) head/games/grhino/files/patch-log_proc.h (props changed) head/games/gtetrinet/files/patch-src_misc.c (props changed) head/games/gtkatlantic/files/patch-readpng.c (props changed) head/games/gtkballs/files/patch-src_game.c (props changed) head/games/gtkballs/files/patch-src_gtkballs.c (props changed) head/games/gtkpool/files/patch-Makefile.am (props changed) head/games/gtkpool/files/patch-configure.in (props changed) head/games/gtkpool/files/patch-gtkpool__Makefile.am (props changed) head/games/gtkpool/files/patch-gtkpool__check_pocket.h (props changed) head/games/gtkpool/files/patch-gtkpool__game.cpp (props changed) head/games/gtkpool/files/patch-gtkpool__main.cpp (props changed) head/games/gtkpool/files/patch-gtkpool__options.cpp (props changed) head/games/gtkpool/files/patch-gtkpool__pixmaps__Makefile.am (props changed) head/games/gtkpool/files/patch-gtkpool_application.cpp (props changed) head/games/gtkpool/files/patch-gtkpool_ball.cpp (props changed) head/games/gtkpool/files/patch-gtkpool_ball.h (props changed) head/games/gtkpool/files/patch-gtkpool_game.h (props changed) head/games/gtkpool/files/patch-gtkpool_sound.cpp (props changed) head/games/gtkradiant/files/extra-patch-libs__bytestreamutils.h (props changed) head/games/gtkradiant/files/extra-patch-libs__math__vector.h (props changed) head/games/gtkradiant/files/patch-SConstruct (props changed) head/games/gtkradiant/files/patch-contrib__bobtoolz__misc.cpp (props changed) head/games/gtkradiant/files/patch-include__igl.h (props changed) head/games/gtkradiant/files/patch-install.py (props changed) head/games/gtkradiant/files/patch-libs__l_net__l_net.c (props changed) head/games/gtkradiant/files/patch-makeversion.py (props changed) head/games/gtkradiant/files/patch-plugins__imagepng__plugin.cpp (props changed) head/games/gtkradiant/files/patch-radiant__brushmanip.cpp (props changed) head/games/gtkradiant/files/patch-radiant__commands.cpp (props changed) head/games/gtkradiant/files/patch-radiant__mainframe.cpp (props changed) head/games/gtkradiant/files/patch-radiant__qe3.cpp (props changed) head/games/gtkradiant/files/patch-radiant__qgl.cpp (props changed) head/games/gtkradiant/files/patch-radiant__url.cpp (props changed) head/games/gtkradiant/files/patch-radiant__watchbsp.cpp (props changed) head/games/gtkradiant/files/patch-tools__quake2__common__threads.c (props changed) head/games/gtkradiant/files/patch-tools__quake2__qdata_heretic2__common__threads.c (props changed) head/games/gtkradiant/files/patch-tools__quake3__common__threads.c (props changed) head/games/gtkradiant/files/patch-tools__quake3__q3map2__image.c (props changed) head/games/gturing/files/patch-Makefile.in (props changed) head/games/gturing/files/patch-gturing.desktop.in (props changed) head/games/gturing/files/patch-pixmaps-Makefile.in (props changed) head/games/gturing/files/patch-src_turing.h (props changed) head/games/gweled/files/patch-src_Makefile.in (props changed) head/games/hangman/files/patch-src-dict.c (props changed) head/games/hangman/files/patch-src-sound.c (props changed) head/games/heretic/files/patch-aa (props changed) head/games/heretic/files/patch-ac (props changed) head/games/heretic/files/patch-ad (props changed) head/games/heretic/files/patch-ae (props changed) head/games/heretic/files/patch-af (props changed) head/games/heretic/files/patch-ag (props changed) head/games/heretic/files/patch-ah (props changed) head/games/heretic/files/patch-ai (props changed) head/games/heretic/files/patch-ak (props changed) head/games/heretic/files/patch-al (props changed) head/games/heretic/files/patch-d_main.c (props changed) head/games/heretic/files/patch-doc-Gamekeys.txt (props changed) head/games/heretic/files/patch-doc-README.opengl (props changed) head/games/heretic/files/patch-doomdef.h (props changed) head/games/heretic/files/patch-doomtype.h (props changed) head/games/heretic/files/patch-g_game.c (props changed) head/games/heretic/files/patch-graphics-i_x11_fast.c (props changed) head/games/heretic/files/patch-graphics::i_sdl.c (props changed) head/games/heretic/files/patch-graphics::i_sdl_gl.c (props changed) head/games/heretic/files/patch-m_misc.c (props changed) head/games/heretic/files/patch-p_inter.c (props changed) head/games/heretic/files/patch-r_things.c (props changed) head/games/heroes/files/patch-configure (props changed) head/games/heroes/files/patch-src::menus.c (props changed) head/games/heroes/files/patch-src_hedlite.c (props changed) head/games/hex-a-hop/files/patch-src-i18n.h (props changed) head/games/hex-a-hop/files/patch-src-system-relative.c (props changed) head/games/hex-a-hop/files/patch-src-text.cpp (props changed) head/games/hex/files/patch-aa (props changed) head/games/hex/files/patch-ab (props changed) head/games/hex/files/patch-ac (props changed) head/games/hexxagon/files/patch-src__gui__gtkhexxagonboard.cpp (props changed) head/games/holotz-castle/files/patch-JLib-JLib-Util-JFS.cpp (props changed) head/games/holotz-castle/files/patch-JLib-Makefile (props changed) head/games/holotz-castle/files/patch-src-Makefile (props changed) head/games/imaze/files/patch-aa (props changed) head/games/imaze/files/patch-ab (props changed) head/games/imaze/files/patch-ac (props changed) head/games/imaze/files/patch-ad (props changed) head/games/inform/files/patch-aa (props changed) head/games/instead/files/patch-configure.sh (props changed) head/games/ioquake3/files/patch-Makefile (props changed) head/games/ioquake3/files/patch-README (props changed) head/games/ioquake3/files/patch-code-client-snd_openal.c (props changed) head/games/ioquake3/files/patch-code-qcommon-files.c (props changed) head/games/ioquake3/files/patch-code-qcommon-q_platform.h (props changed) head/games/ioquake3/files/patch-code-qcommon-qcommon.h (props changed) head/games/ioquake3/files/patch-code-qcommon-vm_interpreted.c (props changed) head/games/ioquake3/files/patch-code-qcommon-vm_x86.c (props changed) head/games/ioquake3/files/patch-code-qcommon-vm_x86_64.c (props changed) head/games/ioquake3/files/patch-code-sys-sys_main.c (props changed) head/games/ioquake3/files/patch-code-sys-sys_unix.c (props changed) head/games/iourbanterror/files/patch-code-qcommon-q_shared.h (props changed) head/games/irrlamb/files/patch-SConstruct (props changed) head/games/ivan/files/patch-configure (props changed) head/games/jfk/files/patch-src-client-level.cc (props changed) head/games/jfk/files/patch-src-server-objhandle.cc (props changed) head/games/jfk/files/patch-src-server-person_s.cc (props changed) head/games/jfk/files/patch-src__client__objects_c.cc (props changed) head/games/jfk/files/patch-src__lib__network.cc (props changed) head/games/jigzo/files/patch-Makefile (props changed) head/games/joequake/files/patch-Makefile.linux (props changed) head/games/joequake/files/patch-cd_linux.c (props changed) head/games/joequake/files/patch-cl_slist.c (props changed) head/games/joequake/files/patch-common.c (props changed) head/games/joequake/files/patch-console.c (props changed) head/games/joequake/files/patch-gl_screen.c (props changed) head/games/joequake/files/patch-host.c (props changed) head/games/joequake/files/patch-image.c (props changed) head/games/joequake/files/patch-keys.c (props changed) head/games/joequake/files/patch-net.h (props changed) head/games/joequake/files/patch-r_part.c (props changed) head/games/joequake/files/patch-r_screen.c (props changed) head/games/joequake/files/patch-snd_linux.c (props changed) head/games/joequake/files/patch-vid_glx.c (props changed) head/games/joequake/files/patch-vid_x11.c (props changed) head/games/jools/files/patch-jools::__init__.py (props changed) head/games/kartofel/files/patch-play.cc (props changed) head/games/kevedit/files/patch-src-structures-linkedlist.c (props changed) head/games/kiki/files/patch-linux-Makefile (props changed) head/games/kiki/files/patch-src-main-KikiPythonWidget.h (props changed) head/games/krank/files/patch-krank (props changed) head/games/ladder/files/patch-aa (props changed) head/games/ladder/files/patch-ab (props changed) head/games/ladder/files/patch-ac (props changed) head/games/ladder/files/patch-ad (props changed) head/games/ladder/files/patch-ae (props changed) head/games/ladder/files/patch-af (props changed) head/games/ladder/files/patch-ag (props changed) head/games/latrine/files/patch-Makefile.in (props changed) head/games/latrine/files/patch-configure (props changed) head/games/latrine/files/patch-data.c (props changed) head/games/lbreakout/files/patch-aa (props changed) head/games/lbreakout/files/patch-ab (props changed) head/games/lbreakout/files/patch-ac (props changed) head/games/lbreakout/files/patch-ad (props changed) head/games/lbreakout/files/patch-ae (props changed) head/games/lbreakout2/files/patch-stk.c (props changed) head/games/legesmotus/files/patch-Makefile (props changed) head/games/legesmotus/files/patch-common.mk (props changed) head/games/legesmotus/files/patch-configure (props changed) head/games/libggz/files/patch-libtool22 (props changed) head/games/libggz/files/patch-src-easysock.c (props changed) head/games/lincity-ng/files/patch-mk-jam-install.jam (props changed) head/games/linux-enemyterritory/files/patch-openurl.sh (props changed) head/games/linux-nwserver/files/patch-fixinstall (props changed) head/games/linux-sof/files/patch-sof (props changed) head/games/linux-ssamtfe/files/patch-ssamtfe (props changed) head/games/linux-ssamtse/files/patch-ssamtse (props changed) head/games/linux-unrealgold/files/patch-unrealgold (props changed) head/games/linux-ut/files/patch-bin::ut (props changed) head/games/linwarrior/files/patch-Makefile (props changed) head/games/liquidwar/files/patch-Makefile.in (props changed) head/games/liquidwar/files/patch-configure (props changed) head/games/lmpc/files/patch-src+quake3+code+game+q_shared.h (props changed) head/games/lordsawar/files/patch-create-lw-file (props changed) head/games/lpairs/files/patch-lpairs-pairs.h (props changed) head/games/lpairs/files/patch-lpairs-sdl.h (props changed) head/games/magiccube4d/files/patch-EventHandler.cpp (props changed) head/games/magiccube4d/files/patch-EventHandler.h (props changed) head/games/magiccube4d/files/patch-Machine.h (props changed) head/games/magiccube4d/files/patch-MagicCube.h (props changed) head/games/magiccube4d/files/patch-configure (props changed) head/games/mangband/files/patch-aa (props changed) head/games/mangband/files/patch-ac (props changed) head/games/mangband/files/patch-server-netserver.c (props changed) head/games/mangos/files/patch-configure.ac (props changed) head/games/mangos/files/patch-sqlupdates (props changed) head/games/marsnomercy/files/patch-SConstruct (props changed) head/games/masterserver/files/patch-common.mk (props changed) head/games/masterserver/files/patch-plugins__Makefile (props changed) head/games/megaglest/files/patch-PNGReader.cpp (props changed) head/games/memonix/files/patch-CMakeLists.txt (props changed) head/games/meqcc/files/patch-cmdlib.c (props changed) head/games/meqcc/files/patch-l_memory.c (props changed) head/games/meqcc/files/patch-linux.mak (props changed) head/games/meqcc/files/patch-qcc.c (props changed) head/games/meritous/files/patch-Makefile (props changed) head/games/meritous/files/patch-src-boss.c (props changed) head/games/meritous/files/patch-src-levelblit.c (props changed) head/games/mindfocus/files/patch-aa (props changed) head/games/mindfocus/files/patch-ab (props changed) head/games/mindfocus/files/patch-ac (props changed) head/games/mindguard/files/patch-aa (props changed) head/games/mindguard/files/patch-ab (props changed) head/games/mirrormagic/files/patch-src-main.h (props changed) head/games/miscom/files/patch-ab (props changed) head/games/miscom/files/patch-ac (props changed) head/games/miscom/files/patch-ad (props changed) head/games/miscom/files/patch-ae (props changed) head/games/miscom/files/patch-ag (props changed) head/games/mkhexgrid/files/patch-Makefile (props changed) head/games/mkhexgrid/files/patch-mkhexgrid.cpp (props changed) head/games/moagg/files/patch-run.sh (props changed) head/games/monkeybubble/files/patch-help__C__monkey-bubble.xml (props changed) head/games/monster-masher/files/patch-src-Makefile.in (props changed) head/games/monster-masher/files/patch-src::arena.cpp (props changed) head/games/moon-buggy/files/extra-patch-configure.ac (props changed) head/games/moonlander/files/patch-Makefile (props changed) head/games/moonlander/files/patch-moon__lander.c (props changed) head/games/moria/files/patch-doc::Makefile (props changed) head/games/moria/files/patch-source::config.h (props changed) head/games/moria/files/patch-source::death.c (props changed) head/games/moria/files/patch-source::io.c (props changed) head/games/moria/files/patch-source::main.c (props changed) head/games/moria/files/patch-source::misc1.c (props changed) head/games/moria/files/patch-source::misc3.c (props changed) head/games/moria/files/patch-source::save.c (props changed) head/games/moria/files/patch-source::signals.c (props changed) head/games/moria/files/patch-source::types.h (props changed) head/games/moria/files/patch-unix::Makefile (props changed) head/games/moria/files/patch-unix::unix.c (props changed) head/games/motogt/files/patch-src-Circuito.cpp (props changed) head/games/motogt/files/patch-src-MakeData.cpp (props changed) head/games/motogt/files/patch-src-Makefile.lnx (props changed) head/games/nadar/files/patch-aa (props changed) head/games/nadar/files/patch-server_Game.c (props changed) head/games/nazghul/files/patch-src_skill.c (props changed) head/games/nazghul/files/patch-src_skill_set.c (props changed) head/games/nazghul/files/patch-src_skill_set_entry.c (props changed) head/games/nazghul/files/patch-src_templ.c (props changed) head/games/nehquake/files/patch-Makefile (props changed) head/games/nehquake/files/patch-src__cd_linux.c (props changed) head/games/nehquake/files/patch-src__dzipmain.c (props changed) head/games/nehquake/files/patch-src__gl_vidlinuxglx.c (props changed) head/games/nehquake/files/patch-src__glquake.h (props changed) head/games/nehquake/files/patch-src__neh.c (props changed) head/games/nehquake/files/patch-src__net.h (props changed) head/games/nehquake/files/patch-src__quakedef.h (props changed) head/games/nehquake/files/patch-src__snd_linux.c (props changed) head/games/nethack32/files/patch-ab (props changed) head/games/nethack32/files/patch-ac (props changed) head/games/nethack32/files/patch-ad (props changed) head/games/nethack32/files/patch-ae (props changed) head/games/nethack32/files/patch-af (props changed) head/games/nethack32/files/patch-ag (props changed) head/games/nethack32/files/patch-dgn_comp.6 (props changed) head/games/nethack32/files/patch-dlb.6 (props changed) head/games/nethack32/files/patch-lev_comp.6 (props changed) head/games/nethack32/files/patch-nethack.6 (props changed) head/games/nethack32/files/patch-recover.6 (props changed) head/games/nethack33/files/patch-aa (props changed) head/games/nethack33/files/patch-ac (props changed) head/games/nethack33/files/patch-ad (props changed) head/games/nethack33/files/patch-ae (props changed) head/games/nethack33/files/patch-af (props changed) head/games/nethack33/files/patch-ag (props changed) head/games/nethack33/files/patch-ah (props changed) head/games/nethack33/files/patch-dgn_comp.6 (props changed) head/games/nethack33/files/patch-dlb.6 (props changed) head/games/nethack33/files/patch-lev_comp.6 (props changed) head/games/nethack33/files/patch-nethack.6 (props changed) head/games/nethack33/files/patch-recover.6 (props changed) head/games/nethack33/files/patch-system.h (props changed) head/games/nethack34/files/patch-aa (props changed) head/games/nethack34/files/patch-ab (props changed) head/games/nethack34/files/patch-ac (props changed) head/games/nethack34/files/patch-ad (props changed) head/games/nethack34/files/patch-ae (props changed) head/games/nethack34/files/patch-af (props changed) head/games/nethack34/files/patch-ag (props changed) head/games/nethack34/files/patch-ah (props changed) head/games/nethack34/files/patch-ai (props changed) head/games/nethack34/files/patch-qt_win.cpp (props changed) head/games/netpanzer/files/patch-SConstruct (props changed) head/games/netpanzer/files/patch-src_Lib_ArrayUtil_QueueTemplate.hpp (props changed) head/games/netpanzer/files/patch-src_Lib_Network_Address.hpp (props changed) head/games/netradiant/files/patch-Makefile (props changed) head/games/netradiant/files/patch-libs-math-vector.h (props changed) head/games/netrek-client-cow/files/patch-parsemeta.c (props changed) head/games/netrek-client-cow/files/patch-system.mk.in (props changed) head/games/netris/files/patch-aa (props changed) head/games/netris/files/patch-curses.c (props changed) head/games/newvox/files/patch-aa (props changed) head/games/nextgo/files/patch-smartgo.h (props changed) head/games/nighthawk/files/patch-src__opengl.cc (props changed) head/games/noegnud-data/files/patch-variants::Makefile (props changed) head/games/noegnud-littlehack/files/patch-noegnud::noegnud_glfuncs.h (props changed) head/games/noegnud-littlehack/files/patch-noegnud::noegnud_interface.h (props changed) head/games/noegnud-littlehack/files/patch-noegnud_noegnud_gui.c (props changed) head/games/noegnud-littlehack/files/patch-variants::Makefile (props changed) head/games/noegnud-littlehack/files/patch-variants::littlehack-0.0.1::src::trap.c (props changed) head/games/noegnud-nethack-deet/files/patch-noegnud::noegnud_glfuncs.h (props changed) head/games/noegnud-nethack-deet/files/patch-noegnud::noegnud_interface.h (props changed) head/games/noegnud-nethack-deet/files/patch-noegnud_noegnud_gui.c (props changed) head/games/noegnud-nethack-deet/files/patch-variants::Makefile (props changed) head/games/noegnud-nethack/files/patch-noegnud::noegnud_glfuncs.h (props changed) head/games/noegnud-nethack/files/patch-noegnud::noegnud_interface.h (props changed) head/games/noegnud-nethack/files/patch-noegnud_noegnud_gui.c (props changed) head/games/noegnud-nethack/files/patch-variants::Makefile (props changed) head/games/noegnud-slashem/files/patch-noegnud::noegnud_glfuncs.h (props changed) head/games/noegnud-slashem/files/patch-noegnud::noegnud_interface.h (props changed) head/games/noegnud-slashem/files/patch-noegnud_noegnud_gui.c (props changed) head/games/noegnud-slashem/files/patch-variants::Makefile (props changed) head/games/nonsense/files/patch-aa (props changed) head/games/oldrunner/files/patch-cfg.h (props changed) head/games/omega/files/patch-aa (props changed) head/games/omega/files/patch-ab (props changed) head/games/omega/files/patch-ac (props changed) head/games/omega/files/patch-ad (props changed) head/games/omega/files/patch-ae (props changed) head/games/omega/files/patch-af (props changed) head/games/omega/files/patch-ag (props changed) head/games/oolite/files/patch-GNUmakefile (props changed) head/games/oolite/files/patch-deps_Cross-platform-deps_mozilla_js_src_config_system-headers (props changed) head/games/oolite/files/patch-src_Core_NSFileManagerOOExtensions.h (props changed) head/games/oonsoo/files/patch-Sound-Sample.hxx (props changed) head/games/oonsoo/files/patch-Sound-Sound.hxx (props changed) head/games/oonsoo/files/patch-UI-Sprite.hxx (props changed) head/games/oonsoo/files/patch-ab (props changed) head/games/oonsoo/files/patch-ac (props changed) head/games/oonsoo/files/patch-main.cxx (props changed) head/games/openarena/files/patch-Makefile (props changed) head/games/openarena/files/patch-feature-DEFAULT_LIBDIR (props changed) head/games/openastromenace/files/patch-AstroMenaceSource-Core-Base.h (props changed) head/games/openastromenace/files/patch-AstroMenaceSource-Core-VirtualFileSystem-VFS.h (props changed) head/games/openastromenace/files/patch-AstroMenaceSource-Main.cpp (props changed) head/games/openastromenace/files/patch-CMakeLists.txt (props changed) head/games/openglad/files/patch-configure (props changed) head/games/openglad/files/patch-util.cpp (props changed) head/games/openjazz/files/patch-Makefile (props changed) head/games/openjazz/files/patch-src-io-network.cpp (props changed) head/games/openmortal/files/patch-src-OnlineChat.cpp (props changed) head/games/openmortal/files/patch-src-gfx.cpp (props changed) head/games/openmortal/files/patch-src-sge__tt__text.cpp (props changed) head/games/opensonic/files/patch-src__misc__opensonic (props changed) head/games/openssn/files/patch-Makefile (props changed) head/games/orbital_eunuchs_sniper/files/patch-configure (props changed) head/games/orbital_eunuchs_sniper/files/patch-src-Makefile.in (props changed) head/games/orbital_eunuchs_sniper/files/patch-src-snipe2d.cpp (props changed) head/games/orbital_eunuchs_sniper/files/patch-src-snipe2d.in (props changed) head/games/passage/files/patch-Makefile.all (props changed) head/games/patapizza-tetris/files/patch-tetris.c (props changed) head/games/pathological/files/patch-pathological.py (props changed) head/games/pengpong/files/patch-Makefile (props changed) head/games/pengpong/files/patch-SFont.c (props changed) head/games/pengpong/files/patch-files.h (props changed) head/games/pinball/files/patch-Makefile.in (props changed) head/games/pinball/files/patch-base::TextureUtil.cpp (props changed) head/games/pinball/files/patch-configure (props changed) head/games/pinball/files/patch-data::tux::ModuleTux.cpp (props changed) head/games/pinball/files/patch-src::EyeBehavior.cpp (props changed) head/games/pinball/files/patch-src::Loader.cpp (props changed) head/games/pink-pony/files/patch-SConstruct (props changed) head/games/pink-pony/files/patch-lib-GL-GLee.h (props changed) head/games/pipenightdreams/files/patch-eventmanager.cpp (props changed) head/games/pipenightdreams/files/patch-graphic.cpp (props changed) head/games/pipenightdreams/files/patch-hash.cpp (props changed) head/games/pipenightdreams/files/patch-image.cpp (props changed) head/games/pipenightdreams/files/patch-list.cpp (props changed) head/games/pipenightdreams/files/patch-pipe.cpp (props changed) head/games/pipenightdreams/files/patch-player.h (props changed) head/games/pipenightdreams/files/patch-pointer.cpp (props changed) head/games/pipenightdreams/files/patch-pointer.h (props changed) head/games/pipenightdreams/files/patch-score.cpp (props changed) head/games/pipenightdreams/files/patch-str.cpp (props changed) head/games/pipepanic/files/patch-Makefile (props changed) head/games/plee-the-bear/files/patch-bear-engine-core-src-engine-CMakeLists.txt (props changed) head/games/plutocracy/files/patch-setup.py (props changed) head/games/plutocracy/files/patch-src-render-r__surface.c (props changed) head/games/pmars/files/patch-Makefile (props changed) head/games/pokerth/files/patch-src-core-linux-convhelper.cpp (props changed) head/games/pokerth/files/patch-src_engine_log.h (props changed) head/games/polyglot/files/patch-main.c (props changed) head/games/polyglot/files/patch-pgheader.c (props changed) head/games/polyglot/files/patch-pipex_posix.c (props changed) head/games/polyglot/files/patch-util.h (props changed) head/games/polypuzzle/files/patch-polypuzzle (props changed) head/games/pongix/files/patch-configure (props changed) head/games/powder/files/patch-gfx-rebuild.sh (props changed) head/games/powder/files/patch-port-linux-linuxmain.cpp (props changed) head/games/powermanga/files/patch-powermanga.6 (props changed) head/games/powwow/files/patch-follow.c (props changed) head/games/powwow/files/patch-ptr.c (props changed) head/games/powwow/files/patch-ptr.h (props changed) head/games/powwow/files/patch-tty.c (props changed) head/games/prboom/files/patch-Makefile.in (props changed) head/games/prboom/files/patch-configure (props changed) head/games/prboom/files/patch-i_sshot.c (props changed) head/games/prboom/files/patch-src-Makefile.in (props changed) head/games/ptools/files/patch-mopt.c (props changed) head/games/pvpgn/files/patch-Makefile.in (props changed) head/games/pvpgn/files/patch-conf-bnetd.conf.in (props changed) head/games/py-mnemosyne/files/patch-setup.py (props changed) head/games/py-poker-eval/files/patch-Makefile.am (props changed) head/games/py-poker-eval/files/patch-config__ccpython.m4 (props changed) head/games/py-pychess/files/patch-lib__pychess__widgets__newGameDialog.py (props changed) head/games/py-pychess/files/patch-setup.py (props changed) head/games/pydance/files/patch-dance.py (props changed) head/games/pydance/files/patch-fontfx.py (props changed) head/games/pydance/files/patch-ui.py (props changed) head/games/pykawari/files/patch-build__src__misc__mmap.h (props changed) head/games/pykawari/files/patch-build_src_gcc.mak (props changed) head/games/pysol/files/patch-src::tk::soundoptionsdialog.py (props changed) head/games/pysolfc/files/patch-data_pysolfc.glade (props changed) head/games/pysycache/files/patch-datas.py (props changed) head/games/pysycache/files/patch-datasclass.py (props changed) head/games/pysycache/files/patch-pysybuttons.py (props changed) head/games/pysycache/files/patch-pysycache.py (props changed) head/games/pysycache/files/patch-pysyclick.py (props changed) head/games/pysycache/files/patch-pysymove.py (props changed) head/games/q2p/files/patch-Makefile (props changed) head/games/q2p/files/patch-client__cl_scrn.c (props changed) head/games/q2p/files/patch-qcommon__files.c (props changed) head/games/q2p/files/patch-unix__sys_unix.c (props changed) head/games/q2pro/files/patch-build__client.mk (props changed) head/games/q2pro/files/patch-build__detect.mk (props changed) head/games/q2pro/files/patch-build__post.mk (props changed) head/games/q2pro/files/patch-build__pre.mk (props changed) head/games/q2pro/files/patch-build__ref_soft.mk (props changed) head/games/q2pro/files/patch-build__server.mk (props changed) head/games/q2pro/files/patch-source__cd_linux.c (props changed) head/games/q2pro/files/patch-source__files.c (props changed) head/games/q2pro/files/patch-source__in_linux.c (props changed) head/games/q2pro/files/patch-source__sys_unix.c (props changed) head/games/q3cellshading/files/patch-code-cgame-cg_weapons.c (props changed) head/games/q3cellshading/files/patch-code-client-cl_ui.c (props changed) head/games/q3cellshading/files/patch-code-game-q_shared.c (props changed) head/games/q3cellshading/files/patch-code-game-q_shared.h (props changed) head/games/q3cellshading/files/patch-code-q3_ui-ui_playermodel.c (props changed) head/games/q3cellshading/files/patch-code-q3_ui-ui_players.c (props changed) head/games/q3cellshading/files/patch-code-q3_ui-ui_saveconfig.c (props changed) head/games/q3cellshading/files/patch-code-qcommon-common.c (props changed) head/games/q3cellshading/files/patch-code-qcommon-files.c (props changed) head/games/q3cellshading/files/patch-code-qcommon-vm.c (props changed) head/games/q3cellshading/files/patch-code-renderer-tr_bsp.c (props changed) head/games/q3cellshading/files/patch-code-renderer-tr_shader.c (props changed) head/games/q3cellshading/files/patch-code-server-sv_client.c (props changed) head/games/q3cellshading/files/patch-code-ui-ui_main.c (props changed) head/games/q3cellshading/files/patch-code-ui-ui_players.c (props changed) head/games/q3cellshading/files/patch-code-unix-Makefile (props changed) head/games/q3cellshading/files/patch-code-unix-unix_main.c (props changed) head/games/q3cellshading/files/patch-code-unix-unix_shared.c (props changed) head/games/q3cellshading/files/patch-code__renderer__tr_light.c (props changed) head/games/qcc/files/patch-qcc.c (props changed) head/games/qccx/files/patch-pr_comp.cpp (props changed) head/games/qccx/files/patch-qcc.cpp (props changed) head/games/qix/files/patch-aa (props changed) head/games/qonk/files/patch-src-menumanager.h (props changed) head/games/qstat/files/patch-config.c (props changed) head/games/qstat/files/patch-doom3.c (props changed) head/games/qtads/files/patch-src-osqt.h (props changed) head/games/quadra/files/patch-config__rules.mk (props changed) head/games/quadra/files/patch-skelton__svgalib__video.cpp (props changed) head/games/quadra/files/patch-source__rules.mk (props changed) head/games/quake2-3zb2/files/patch-bot.c (props changed) head/games/quake2-3zb2/files/patch-bot_func.c (props changed) head/games/quake2-3zb2/files/patch-g_ctf.c (props changed) head/games/quake2-3zb2/files/patch-g_ctf.h (props changed) head/games/quake2-3zb2/files/patch-g_items.c (props changed) head/games/quake2-3zb2/files/patch-g_local.h (props changed) head/games/quake2-3zb2/files/patch-g_main.c (props changed) head/games/quake2-3zb2/files/patch-g_save.c (props changed) head/games/quake2-3zb2/files/patch-g_svcmds.c (props changed) head/games/quake2-3zb2/files/patch-g_turret.c (props changed) head/games/quake2-3zb2/files/patch-p_client.c (props changed) head/games/quake2-3zb2/files/patch-p_weapon.c (props changed) head/games/quake2-3zb2/files/patch-q_shared.c (props changed) head/games/quake2-3zb2/files/patch-q_shared.h (props changed) head/games/quake2-ctf/files/patch-g_items.c (props changed) head/games/quake2-ctf/files/patch-p_weapon.c (props changed) head/games/quake2-data/files/patch-g_local.h (props changed) head/games/quake2-lights/files/patch-lights__src__Makefile (props changed) head/games/quake2-lights/files/patch-lights__src__g_items.c (props changed) head/games/quake2-matrix/files/patch-MatrixFixSource__Makefile (props changed) head/games/quake2-matrix/files/patch-MatrixFixSource__g_items.c (props changed) head/games/quake2-psychomod/files/patch-src__Makefile (props changed) head/games/quake2-psychomod/files/patch-src__g_items.c (props changed) head/games/quake2-rogue/files/patch-g_items.c (props changed) head/games/quake2-rogue/files/patch-g_local.h (props changed) head/games/quake2-source/files/extra-patch-src_rogue_g__local.h (props changed) head/games/quake2-source/files/extra-patch-src_rogue_q__shared.c (props changed) head/games/quake2-source/files/extra-patch-src_xatrix_q__shared.c (props changed) head/games/quake2-source/files/patch-security (props changed) head/games/quake2-source/files/patch-src_game_g__phys.c (props changed) head/games/quake2-xatrix/files/patch-g_items.c (props changed) head/games/quake2-zaero/files/patch-g_items.c (props changed) head/games/quake2lnx/files/patch-Makefile (props changed) head/games/quake2lnx/files/patch-security (props changed) head/games/quake2lnx/files/patch-src_game_g__phys.c (props changed) head/games/quake2lnx/files/patch-src_linux_gl__glx.c (props changed) head/games/quake2lnx/files/patch-src_linux_rw__in__svgalib.c (props changed) head/games/quake2lnx/files/patch-src_linux_rw__linux.c (props changed) head/games/quake2lnx/files/patch-src_linux_rw__svgalib.c (props changed) head/games/quake2lnx/files/patch-src_linux_rw__x11.c (props changed) head/games/quake2lnx/files/patch-src_linux_snd__linux.c (props changed) head/games/quake2lnx/files/patch-src_linux_sys__linux.c (props changed) head/games/quake2lnx/files/patch-src_linux_vid_so.c (props changed) head/games/quake2lnx/files/patch-src_qcommon_files.c (props changed) head/games/quake2max/files/patch-Makefile (props changed) head/games/quake2max/files/patch-client__menu.c (props changed) head/games/quake2max/files/patch-client__ref.h (props changed) head/games/quake2max/files/patch-game__g_items.c (props changed) head/games/quake2max/files/patch-qcommon__files.c (props changed) head/games/quake2max/files/patch-ref_gl__gl_model.c (props changed) head/games/quake2max/files/patch-ref_gl__sul_png.c (props changed) head/games/quake2max/files/patch-unix__gl_glx.c (props changed) head/games/quake2max/files/patch-unix__snd_unix.c (props changed) head/games/quake2max/files/patch-unix__sys_unix.c (props changed) head/games/quake2max/files/patch-unix__vid_menu.c (props changed) head/games/quake3/files/patch-code-Construct (props changed) head/games/quake3/files/patch-code-botlib-linux-i386.mak (props changed) head/games/quake3/files/patch-code-bspc-Makefile (props changed) head/games/quake3/files/patch-code-bspc-linux-i386.mak (props changed) head/games/quake3/files/patch-code-cgame-cg_weapons.c (props changed) head/games/quake3/files/patch-code-client-cl_ui.c (props changed) head/games/quake3/files/patch-code-game-q_shared.c (props changed) head/games/quake3/files/patch-code-game-q_shared.h (props changed) head/games/quake3/files/patch-code-q3_ui-ui_playermodel.c (props changed) head/games/quake3/files/patch-code-q3_ui-ui_players.c (props changed) head/games/quake3/files/patch-code-q3_ui-ui_saveconfig.c (props changed) head/games/quake3/files/patch-code-qcommon-common.c (props changed) head/games/quake3/files/patch-code-qcommon-files.c (props changed) head/games/quake3/files/patch-code-qcommon-vm.c (props changed) head/games/quake3/files/patch-code-qcommon-vm_x86.c (props changed) head/games/quake3/files/patch-code-renderer-tr_bsp.c (props changed) head/games/quake3/files/patch-code-renderer-tr_shader.c (props changed) head/games/quake3/files/patch-code-server-sv_client.c (props changed) head/games/quake3/files/patch-code-ui-ui_main.c (props changed) head/games/quake3/files/patch-code-ui-ui_players.c (props changed) head/games/quake3/files/patch-code-unix-Makefile (props changed) head/games/quake3/files/patch-code-unix-unix_main.c (props changed) head/games/quake3/files/patch-code-unix-unix_shared.c (props changed) head/games/quakeforge/files/patch-configure (props changed) head/games/quakeforge/files/patch-include-netmain.h (props changed) head/games/quakeforge/files/patch-include__QF__console.h (props changed) head/games/quakeforge/files/patch-include__QF__sound.h (props changed) head/games/quakeforge/files/patch-include__context_x11.h (props changed) head/games/quakeforge/files/patch-libs__console__server.c (props changed) head/games/quakeforge/files/patch-libs__gib__gib_classes.c (props changed) head/games/quakeforge/files/patch-libs__gib__gib_function.c (props changed) head/games/quakeforge/files/patch-libs__gib__gib_thread.c (props changed) head/games/quakeforge/files/patch-libs__video__renderer__Makefile.in (props changed) head/games/quakeforge/files/patch-libs__video__renderer__sw__Makefile.in (props changed) head/games/quakeforge/files/patch-nq__source__sys_sdl.c (props changed) head/games/quakeforge/files/patch-nq__source__sys_unix.c (props changed) head/games/quakeforge/files/patch-qw__source__cl_chat.c (props changed) head/games/quakeforge/files/patch-qw__source__cl_sys_sdl.c (props changed) head/games/quakeforge/files/patch-qw__source__cl_sys_unix.c (props changed) head/games/quakeforge/files/patch-tools__qfcc__include__method.h (props changed) head/games/quantumminigolf/files/patch-Makefile (props changed) head/games/quaqut/files/patch-display.c (props changed) head/games/qudos/files/patch-src__client__snd_dma.c (props changed) head/games/qudos/files/patch-src__qcommon__files.c (props changed) head/games/qudos/files/patch-src__ref_gl__gl_local.h (props changed) head/games/qudos/files/patch-src__unix__gl_glx.c (props changed) head/games/qudos/files/patch-src__unix__snd_oss.c (props changed) head/games/qudos/files/patch-src__unix__snd_sdl.c (props changed) head/games/qudos/files/patch-src__unix__sys_unix.c (props changed) head/games/quetoo/files/patch-64bit-fixes (props changed) head/games/quetoo/files/patch-clang-fixes (props changed) head/games/r1q2/files/patch-binaries__client__Makefile (props changed) head/games/r1q2/files/patch-binaries__make.inc (props changed) head/games/r1q2/files/patch-binaries__r1q2ded__Makefile (props changed) head/games/r1q2/files/patch-binaries__ref_gl__Makefile (props changed) head/games/r1q2/files/patch-linux__net_udp.c (props changed) head/games/r1q2/files/patch-linux__q_shlinux.c (props changed) head/games/r1q2/files/patch-linux__snd_linux.c (props changed) head/games/r1q2/files/patch-linux__sys_linux.c (props changed) head/games/r1q2/files/patch-linux__vid_so.c (props changed) head/games/r1q2/files/patch-qcommon__files.c (props changed) head/games/r1q2/files/patch-qcommon__qcommon.h (props changed) head/games/r1q2/files/patch-ref_gl__gl_image.c (props changed) head/games/r1q2/files/patch-ref_gl__gl_local.h (props changed) head/games/redeclipse/files/patch-src-core.mk (props changed) head/games/reminiscence/files/patch-Makefile (props changed) head/games/reminiscence/files/patch-main.cpp (props changed) head/games/rezerwar/files/patch-mkfiles-Makefile.main (props changed) head/games/rnd_jue/files/patch-src-game_em-sound.c (props changed) head/games/robotfindskitten/files/patch-src-Makefile.in (props changed) head/games/rocksndiamonds/files/patch-src-game_em-sound.c (props changed) head/games/rottdc/files/patch-Makefile (props changed) head/games/rottdc/files/patch-modexlib.c (props changed) head/games/rottdc/files/patch-rt__actor.c (props changed) head/games/rottdc/files/patch-rt__cfg.c (props changed) head/games/rottdc/files/patch-rt__in.c (props changed) head/games/rtb/files/patch-include__Vector2D.h (props changed) head/games/rtb/files/patch-team-framework__parser__configurationparser.h (props changed) head/games/sarien/files/patch-src-filesys-unix-path.c (props changed) head/games/sarien/files/patch-src-sound-freebsd-sound_freebsd.c (props changed) head/games/sauerbraten/files/patch-src_Makefile (props changed) head/games/scare/files/patch-os_glk.c (props changed) head/games/scid/files/patch-Makefile.conf (props changed) head/games/scorched3d/files/patch-configure-al.m4 (props changed) head/games/scorched3d/files/patch-src-client-client-SecureID.cpp (props changed) head/games/scorched3d/files/patch-src__client__client__LoadPNG.cpp (props changed) head/games/scorched3d/files/patch-src__common__image__ImagePngFactory.cpp (props changed) head/games/scorched3d/files/patch-src__common__porting__windows.h (props changed) head/games/scourge/files/patch-configure.in (props changed) head/games/scramble/files/patch-src-scramble.c (props changed) head/games/sdlCC/files/patch-libltdl_configure (props changed) head/games/sdlCC/files/patch-players_players.txt (props changed) head/games/sdl_lopan/files/patch-Makefile (props changed) head/games/sdlquake2/files/patch-Makefile (props changed) head/games/sdlquake2/files/patch-baseq2__g_items.c (props changed) head/games/sdlquake2/files/patch-cl_main.c (props changed) head/games/sdlquake2/files/patch-files.c (props changed) head/games/sdlquake2/files/patch-gl_image.c (props changed) head/games/sdlquake2/files/patch-gl_local.h (props changed) head/games/sdlquake2/files/patch-gl_rmain.c (props changed) head/games/sdlquake2/files/patch-gl_sdl.c (props changed) head/games/sdlquake2/files/patch-menu.c (props changed) head/games/sdlquake2/files/patch-q_shared.h (props changed) head/games/sdlquake2/files/patch-q_shlinux.c (props changed) head/games/sdlquake2/files/patch-qgl.h (props changed) head/games/sdlquake2/files/patch-snd_mix.c (props changed) head/games/sdlquake2/files/patch-snd_openal.h (props changed) head/games/sdlquake2/files/patch-sv_ccmds.c (props changed) head/games/sdlquake2/files/patch-sv_user.c (props changed) head/games/sdlquake2/files/patch-sys_linux.c (props changed) head/games/sdlquake2/files/patch-vid_so.c (props changed) head/games/sea-defender/files/patch-Makefile (props changed) head/games/seabattle/files/patch-aa (props changed) head/games/seabattle/files/patch-ab (props changed) head/games/seabattle/files/patch-ac (props changed) head/games/seabattle/files/patch-ad (props changed) head/games/seahaven/files/patch-Makefile (props changed) head/games/seahaven/files/patch-configure (props changed) head/games/seahaven/files/patch-configure.in (props changed) head/games/searchandrescue/files/patch-sar__Makefile (props changed) head/games/searchandrescue/files/patch-sar__config.h (props changed) head/games/sets/files/patch-Makefile (props changed) head/games/shaaft/files/patch-HashString.h (props changed) head/games/shaaft/files/patch-PNG.cpp (props changed) head/games/shootingstar/files/patch-src-engine-cTextureFont.cpp (props changed) head/games/shootingstar/files/patch-src-game-cOptions.cpp (props changed) head/games/sl/files/patch-sl.c (props changed) head/games/slashem-tty/files/patch-config.h (props changed) head/games/slashem-tty/files/patch-makefile.doc (props changed) head/games/slashem-tty/files/patch-makefile.src (props changed) head/games/slashem-tty/files/patch-makefile.top (props changed) head/games/slashem-tty/files/patch-makefile.utl (props changed) head/games/slashem-tty/files/patch-system.h (props changed) head/games/slashem-tty/files/patch-unixconf.h (props changed) head/games/slump/files/patch-dump.c (props changed) head/games/slune/files/patch-setup.cfg (props changed) head/games/smiley/files/patch-aa (props changed) head/games/sokoban/files/patch-aa (props changed) head/games/sokoban/files/patch-ab (props changed) head/games/sokoban/files/patch-ac (props changed) head/games/sol/files/patch-aa (props changed) head/games/solarconquest/files/patch-makefile (props changed) head/games/solarconquest/files/patch-source-MenuScreen.h (props changed) head/games/solarconquest/files/patch-source-main.cpp (props changed) head/games/sopwith/files/patch-src_Makefile.in (props changed) head/games/spellcast/files/patch-aa (props changed) head/games/speyes/files/patch-aa (props changed) head/games/spider/files/patch-ab (props changed) head/games/spider/files/patch-ac (props changed) head/games/spider/files/patch-ad (props changed) head/games/spider/files/patch-movelog.c (props changed) head/games/spring/files/patch-rts-CMakeLists.txt (props changed) head/games/spring/files/patch-rts-System-Platform-Misc.cpp (props changed) head/games/spring/files/patch-rts-lib-gml-gmlcls.h (props changed) head/games/spring/files/patch-rts-lib-gml-speedy-tls.cpp (props changed) head/games/springlobby/files/patch-tools-regen__config__header.sh (props changed) head/games/steelstorm/files/patch-engine__source-makefile.inc (props changed) head/games/stormbaancoureur/files/patch-src-common-soundenginealsa.cxx (props changed) head/games/stormbaancoureur/files/patch-src-common-soundenginealsa.h (props changed) head/games/stormbaancoureur/files/patch-src-stormbaancoureur-Makefile (props changed) head/games/stormbaancoureur/files/patch-src-stormbaancoureur-controllerpad.cxx (props changed) head/games/stormbaancoureur/files/patch-src-stormbaancoureur-main.cxx (props changed) head/games/stransball2/files/patch-sources-Makefile (props changed) head/games/stransball2/files/patch-sources-main.cpp (props changed) head/games/sumwars/files/patch-CMakeLists.txt (props changed) head/games/sumwars/files/patch-FindGettext.cmake (props changed) head/games/sumwars/files/patch-src_enet_unix.c (props changed) head/games/sxsame/files/patch-aa (props changed) head/games/sxsame/files/patch-ad (props changed) head/games/sxsame/files/patch-ae (props changed) head/games/sxsame/files/patch-af (props changed) head/games/sxsame/files/patch-ag (props changed) head/games/sxsame/files/patch-ah (props changed) head/games/tads/files/patch-makefile (props changed) head/games/tads/files/patch-tads2_osunixt.c (props changed) head/games/tads/files/patch-tads2_osunixt.h (props changed) head/games/taipan/files/patch-ab (props changed) head/games/tank/files/patch-Makefile.Linux.Mesa (props changed) head/games/tank/files/patch-aa (props changed) head/games/teeworlds/files/patch-bam.lua (props changed) head/games/tenebrae/files/patch-cd_linux.c (props changed) head/games/tenebrae/files/patch-common.c (props changed) head/games/tenebrae/files/patch-common.h (props changed) head/games/tenebrae/files/patch-gl_common.c (props changed) head/games/tenebrae/files/patch-gl_vidlinuxglx.c (props changed) head/games/tenebrae/files/patch-glquake.h (props changed) head/games/tenebrae/files/patch-linux__Makefile.i386linux (props changed) head/games/tenebrae/files/patch-net.h (props changed) head/games/tenebrae/files/patch-quakeasm.h (props changed) head/games/tenebrae/files/patch-quakedef.h (props changed) head/games/tenebrae/files/patch-snd_sdl.c (props changed) head/games/tenebrae/files/patch-sys_dosa.s (props changed) head/games/tenebrae/files/patch-sys_linux.c (props changed) head/games/tenebrae/files/patch-sys_uxfindfirst.c (props changed) head/games/tetrinet-x/files/patch-src::main.c (props changed) head/games/tetrinet-x/files/patch-src::main.h (props changed) head/games/tetrinet-x/files/patch-src::net.c (props changed) head/games/tkmoo/files/patch-aa (props changed) head/games/tong/files/patch-tong.cpp (props changed) head/games/toppler/files/patch-highscore.cc (props changed) head/games/torcs/files/patch-Make-default.mk (props changed) head/games/torcs/files/patch-Makefile (props changed) head/games/tornado/files/patch-aa (props changed) head/games/tornado/files/patch-ab (props changed) head/games/tornado/files/patch-ac (props changed) head/games/torrent/files/patch-src-sound.c (props changed) head/games/torrent/files/patch-src-torrent.c (props changed) head/games/toycars/files/patch-toycars__track__editor-src-TrackView.cxx (props changed) head/games/trackballs/files/patch-src-pipe.cc (props changed) head/games/traindirector/files/patch-Makefile.fc9 (props changed) head/games/tremulous/files/patch-Makefile (props changed) head/games/tremulous/files/patch-src__master__Makefile (props changed) head/games/tremulous/files/patch-src__qcommon__common.c (props changed) head/games/tremulous/files/patch-src__qcommon__q_platform.h (props changed) head/games/tremulous/files/patch-src__unix__linux_glimp.c (props changed) head/games/tremulous/files/patch-src_client_snd_openal.c (props changed) head/games/trojka/files/patch-aa (props changed) head/games/trojka/files/patch-ab (props changed) head/games/trojka/files/patch-ac (props changed) head/games/trojka/files/patch-ad (props changed) head/games/tsito/files/patch-src-Interface.cpp (props changed) head/games/tt/files/patch-Makefile (props changed) head/games/tt/files/patch-screen.c (props changed) head/games/tt/files/patch-tt.c (props changed) head/games/tt/files/patch-tt.h (props changed) head/games/tt/files/patch-utils.c (props changed) head/games/ttt/files/patch-configure.ac (props changed) head/games/tuxkart/files/patch-src-gfx.cxx (props changed) head/games/tuxmath/files/patch-t4k_loaders.c (props changed) head/games/tuxpaint-config/files/patch-Makefile (props changed) head/games/tuxpaint/files/patch-Makefile (props changed) head/games/tuxpaint/files/patch-tuxpaint.c (props changed) head/games/tuxpuck/files/patch-png.c (props changed) head/games/tuxpuck/files/patch-tuxpuck.c (props changed) head/games/tuxracer/files/patch-configure.in (props changed) head/games/tuxracer/files/patch-game_config.c (props changed) head/games/tuxtype/files/patch-t4k_loaders.c (props changed) head/games/tycho/files/patch-Makefile (props changed) head/games/tyrquake/files/patch-Makefile (props changed) head/games/tyrquake/files/patch-common::gl_vidlinuxglx.c (props changed) head/games/tyrquake/files/patch-common::in_x11.c (props changed) head/games/tyrquake/files/patch-common::vid_x.c (props changed) head/games/uhexen/files/patch-Makefile (props changed) head/games/uhexen/files/patch-include::h2def.h (props changed) head/games/uhexen/files/patch-src::h2_main.c (props changed) head/games/uhexen/files/patch-src::i_sdlvideo.c (props changed) head/games/uhexen/files/patch-src::i_video.c (props changed) head/games/uhexen/files/patch-src::m_misc.c (props changed) head/games/uhexen/files/patch-src::w_wad.c (props changed) head/games/uhexen2/files/patch-scripts__makefile.inc (props changed) head/games/unnethack/files/patch-config.h (props changed) head/games/unnethack/files/patch-makefile.doc (props changed) head/games/unnethack/files/patch-unixconf.h (props changed) head/games/untahris/files/patch-intface.cpp (props changed) head/games/untahris/files/patch-untahris.cpp (props changed) head/games/uqm/files/patch-build-unix-build_functions (props changed) head/games/uqm/files/patch-build-unix-config_proginfo_host (props changed) head/games/utserver/files/patch-NetGamesUSA.com:ngStats:ngStatsUT.cfg (props changed) head/games/vdrift/files/patch-SConstruct (props changed) head/games/vdrift/files/patch-src_SConscript (props changed) head/games/vitetris/files/patch-Makefile (props changed) head/games/vodovod/files/patch-hiscore.cpp (props changed) head/games/vodovod/files/patch-hiscore.h (props changed) head/games/vor/files/patch-file.c (props changed) head/games/vultures-eye/files/patch-include-unixconf.h (props changed) head/games/vultures-eye/files/patch-sys-unix-Makefile.dat (props changed) head/games/vultures-eye/files/patch-sys-unix-Makefile.doc (props changed) head/games/vultures-eye/files/patch-sys-unix-Makefile.sys (props changed) head/games/vultures-eye/files/patch-sys-unix-Makefile.top (props changed) head/games/vultures-eye/files/patch-sys-unix-Makefile.utl (props changed) head/games/vultures-eye/files/patch-win-vultures-GNUmakefile (props changed) head/games/vultures-eye/files/patch-win-vultures-util-tiletrans.c (props changed) head/games/vultures-eye/files/patch-win-vultures-vultures_gfl.c (props changed) head/games/wanderer/files/patch-edit_c (props changed) head/games/wanderer/files/patch-m_c (props changed) head/games/wargus/files/patch-wartool.c (props changed) head/games/warmux/files/patch-config.h (props changed) head/games/warmux/files/patch-configure (props changed) head/games/warmux/files/patch-lib-warmux-action-action.cpp (props changed) head/games/warmux/files/patch-src-graphic.surface.cpp (props changed) head/games/warsow/files/patch-Makefile (props changed) head/games/warsow/files/patch-unix-unix_input.c (props changed) head/games/warzone2100/files/patch-lib-netplay-netsocket.cpp (props changed) head/games/wesnoth/files/patch-CMakeLists.txt (props changed) head/games/wesnoth/files/patch-doc-CMakeLists.txt (props changed) head/games/wesnoth/files/patch-po-CMakeLists.txt (props changed) head/games/wesnoth/files/patch-src-CMakeLists.txt (props changed) head/games/wesnoth/files/patch-src-ana-src-CMakeLists.txt (props changed) head/games/wesnoth/files/patch-src-gettext.cpp (props changed) head/games/wesnoth/files/patch-src-gettext.hpp (props changed) head/games/widelands/files/patch-CMakeLists.txt (props changed) head/games/wizznic/files/patch-Makefile (props changed) head/games/wmfortune/files/patch-Makefile (props changed) head/games/wmfortune/files/patch-wmfortune.c (props changed) head/games/wmqstat/files/patch-Makefile (props changed) head/games/wmquake/files/patch-Makefile (props changed) head/games/wmshuffle/files/patch-aa (props changed) head/games/wmtictactoe/files/patch-aa (props changed) head/games/worldofpadman/files/patch-Makefile (props changed) head/games/worldofpadman/files/patch-code__qcommon__common.c (props changed) head/games/worldofpadman/files/patch-code__qcommon__net_ip.c (props changed) head/games/worldofpadman/files/patch-code__qcommon__q_platform.h (props changed) head/games/worldofpadman/files/patch-code__qcommon__vm_x86.c (props changed) head/games/worldofpadman/files/patch-code__qcommon__vm_x86_64.c (props changed) head/games/worldofpadman/files/patch-code_client_snd_openal.c (props changed) head/games/xarchon/files/patch-src::Genetic.hpp (props changed) head/games/xarchon/files/patch-src::Problem.hpp (props changed) head/games/xataxx/files/patch-aa (props changed) head/games/xbat/files/patch-aa (props changed) head/games/xbattle/files/patch-aa (props changed) head/games/xbill/files/patch-configure (props changed) head/games/xbl/files/patch-initmenu.c (props changed) head/games/xblackjack/files/patch-Draw.c (props changed) head/games/xblackjack/files/patch-Strategy.c (props changed) head/games/xblackjack/files/patch-Table.c (props changed) head/games/xblood/files/patch-aa (props changed) head/games/xboing/files/patch-LINUXaudio.c (props changed) head/games/xboing/files/patch-aa (props changed) head/games/xboing/files/patch-ac (props changed) head/games/xboing/files/patch-ad (props changed) head/games/xboing/files/patch-ball.c (props changed) head/games/xboing/files/patch-debian (props changed) head/games/xbomb/files/patch-hiscore.c (props changed) head/games/xbomber/files/patch-aa (props changed) head/games/xbomber/files/patch-ac (props changed) head/games/xbubble/files/patch-src-loadpng.c (props changed) head/games/xbubble/files/patch-src::Makefile.in (props changed) head/games/xbubble/files/patch-src::init.c (props changed) head/games/xchadance/files/patch-aa (props changed) head/games/xcheckers/files/patch-simplech.src_Imakefile (props changed) head/games/xcheckers/files/patch-xcheckers.src_Imakefile (props changed) head/games/xcheckers/files/patch-xcheckers.src_xcheckers.man (props changed) head/games/xchomp/files/patch-aa (props changed) head/games/xcowsay/files/patch-src__xcowsay.c (props changed) head/games/xdeblock/files/patch-aa (props changed) head/games/xdeblock/files/patch-ab (props changed) head/games/xdeblock/files/patch-ac (props changed) head/games/xdeblock/files/patch-gamemain.c (props changed) head/games/xdesktopwaves/files/patch-makefile (props changed) head/games/xdigger/files/patch-aa (props changed) head/games/xdigger/files/patch-ab (props changed) head/games/xdigger/files/patch-ac (props changed) head/games/xdigger/files/patch-ae (props changed) head/games/xevil/files/patch-aa (props changed) head/games/xevil/files/patch-cmn::physical.h (props changed) head/games/xfireworks/files/patch-aa (props changed) head/games/xflame/files/patch-aa (props changed) head/games/xflame/files/patch-xflame.c (props changed) head/games/xfrisk/files/patch-ab (props changed) head/games/xgalaga/files/patch-aa (props changed) head/games/xgalaga/files/patch-ab (props changed) head/games/xgalaga/files/patch-ac (props changed) head/games/xgalaga/files/patch-ad (props changed) head/games/xgalaga/files/patch-ae (props changed) head/games/xgalaga/files/patch-config.sub (props changed) head/games/xgalaga/files/patch-title.c (props changed) head/games/xglk/files/patch-Makefile (props changed) head/games/xglk/files/patch-xglk_pict.c (props changed) head/games/xhime/files/patch-aa (props changed) head/games/xhime/files/patch-ab (props changed) head/games/xinfocom/files/patch-aa (props changed) head/games/xinvaders3d/files/patch-aa (props changed) head/games/xisola/files/patch-aa (props changed) head/games/xjewel/files/patch-aa (props changed) head/games/xjig/files/patch-aa (props changed) head/games/xjig/files/patch-ab (props changed) head/games/xjig/files/patch-ac (props changed) head/games/xjig/files/patch-ad (props changed) head/games/xjig/files/patch-ae (props changed) head/games/xjig/files/patch-af (props changed) head/games/xjig/files/patch-ag (props changed) head/games/xjig/files/patch-ah (props changed) head/games/xjig/files/patch-ai (props changed) head/games/xjumpx/files/patch-Makefile (props changed) head/games/xjumpx/files/patch-hero.c (props changed) head/games/xjumpx/files/patch-key.c (props changed) head/games/xjumpx/files/patch-main.c (props changed) head/games/xjumpx/files/patch-misc.c (props changed) head/games/xjumpx/files/patch-record.c (props changed) head/games/xjumpx/files/patch-xjump.h (props changed) head/games/xkoules/files/patch-aa (props changed) head/games/xkoules/files/patch-ab (props changed) head/games/xkoules/files/patch-ac (props changed) head/games/xkoules/files/patch-ad (props changed) head/games/xkoules/files/patch-xlib::inlstring.h (props changed) head/games/xlaby/files/patch-aa (props changed) head/games/xlogical/files/patch-Makefile.am (props changed) head/games/xlogical/files/patch-acinclude.m4 (props changed) head/games/xlogical/files/patch-gamelogic.cpp (props changed) head/games/xlogical/files/patch-gpl.h (props changed) head/games/xlogical/files/patch-graph_images.cpp (props changed) head/games/xlogical/files/patch-install-images (props changed) head/games/xlogical/files/patch-levelmap.cpp (props changed) head/games/xlogical/files/patch-mapedit.cpp (props changed) head/games/xlogical/files/patch-menuentry.cpp (props changed) head/games/xlogical/files/patch-music_files.cpp (props changed) head/games/xlogical/files/patch-sound_files.cpp (props changed) head/games/xmastermind/files/patch-ab (props changed) head/games/xmemory/files/patch-aa (props changed) head/games/xmemory/files/patch-ab (props changed) head/games/xmille/files/patch-Imakefile (props changed) head/games/xmille/files/patch-animate.c (props changed) head/games/xmille/files/patch-control__affirm.c (props changed) head/games/xmille/files/patch-control__button.c (props changed) head/games/xmille/files/patch-control__dispatch.c (props changed) head/games/xmille/files/patch-control__prompted.c (props changed) head/games/xmille/files/patch-drawcard.c (props changed) head/games/xmille/files/patch-extern.c (props changed) head/games/xmille/files/patch-mille.c (props changed) head/games/xmille/files/patch-misc.c (props changed) head/games/xmille/files/patch-move.c (props changed) head/games/xmille/files/patch-roll.c (props changed) head/games/xmille/files/patch-save.c (props changed) head/games/xmille/files/patch-ui.c (props changed) head/games/xmille/files/patch-varpush.c (props changed) head/games/xmine/files/patch-aa (props changed) head/games/xmine/files/patch-ab (props changed) head/games/xmine/files/patch-ac (props changed) head/games/xmine/files/patch-ad (props changed) head/games/xmine/files/patch-ae (props changed) head/games/xmines/files/patch-aa (props changed) head/games/xmines/files/patch-ab (props changed) head/games/xmris/files/patch-aa (props changed) head/games/xmris/files/patch-ab (props changed) head/games/xmulti/files/patch-aa (props changed) head/games/xmulti/files/patch-html_frame__add.c (props changed) head/games/xmulti/files/patch-html_style__term.c (props changed) head/games/xmulti/files/patch-html_style__y.y (props changed) head/games/xmulti/files/patch-locale:mywchar.h (props changed) head/games/xneko/files/patch-Imakefile (props changed) head/games/xneko/files/patch-xneko.man (props changed) head/games/xoids/files/patch-aa (props changed) head/games/xoj/files/patch-aa (props changed) head/games/xoj/files/patch-ab (props changed) head/games/xonix/files/patch-Imakefile (props changed) head/games/xorgramana/files/patch-Makefile (props changed) head/games/xosmulti/files/patch-aa (props changed) head/games/xpacman/files/patch-a (props changed) head/games/xpacman/files/patch-board.cc (props changed) head/games/xpacman/files/patch-c (props changed) head/games/xpacman/files/patch-d (props changed) head/games/xpacman/files/patch-e (props changed) head/games/xpacman/files/patch-f (props changed) head/games/xpilot/files/patch-a (props changed) head/games/xpipeman/files/patch-aa (props changed) head/games/xpipeman/files/patch-ab (props changed) head/games/xpipeman/files/patch-ac (props changed) head/games/xpuyopuyo/files/patch-aa (props changed) head/games/xpuyopuyo/files/patch-ab (props changed) head/games/xpuyopuyo/files/patch-ltmain.sh (props changed) head/games/xpuzzletama/files/patch-aa (props changed) head/games/xqf/files/patch-src-debug.h (props changed) head/games/xqf/files/patch-src::country-filter.h (props changed) head/games/xqf/files/patch-src::trayicon.c (props changed) head/games/xrally/files/patch-configure (props changed) head/games/xrally/files/patch-global.h (props changed) head/games/xrally/files/patch-graphics.c (props changed) head/games/xrally/files/patch-menu.c (props changed) head/games/xrally/files/patch-score.c (props changed) head/games/xrally/files/patch-sound.c (props changed) head/games/xrally/files/patch-soundplayer.h (props changed) head/games/xrisk/files/patch-aa (props changed) head/games/xrisk/files/patch-ab (props changed) head/games/xrisk/files/patch-ac (props changed) head/games/xrisk/files/patch-src-risklib.c (props changed) head/games/xroach/files/patch-aa (props changed) head/games/xroach/files/patch-ab (props changed) head/games/xroads/files/patch-aa (props changed) head/games/xroads/files/patch-ab (props changed) head/games/xroads/files/patch-ai.c (props changed) head/games/xroads/files/patch-xroads.c (props changed) head/games/xroads/files/patch-xroads.h (props changed) head/games/xrobots/files/patch-Imakefile (props changed) head/games/xrobots/files/patch-main.c (props changed) head/games/xrobots/files/patch-score.c (props changed) head/games/xrobots/files/patch-xrobots.h (props changed) head/games/xrobots/files/patch-xrobots.man (props changed) head/games/xrot/files/patch-Imakefile (props changed) head/games/xrot/files/patch-record.c (props changed) head/games/xscavenger/files/patch-sound.c (props changed) head/games/xshisen/files/patch-components.h (props changed) head/games/xshisen/files/patch-main.c (props changed) head/games/xshisen/files/patch-readxpm.C (props changed) head/games/xshisen/files/patch-score.c (props changed) head/games/xshogi/files/patch-xshogi_sysdeps.h (props changed) head/games/xsokoban/files/patch-aa (props changed) head/games/xsokoban/files/patch-ab (props changed) head/games/xsokoban/files/patch-ac (props changed) head/games/xsokoban/files/patch-ad (props changed) head/games/xsoldier/files/patch-Makefile.in (props changed) head/games/xsoldier/files/patch-ab (props changed) head/games/xsoldier/files/patch-ac (props changed) head/games/xsoldier/files/patch-enemyshot.c (props changed) head/games/xsoldier/files/patch-game.c (props changed) head/games/xsoldier/files/patch-opening.c (props changed) head/games/xsoldier/files/patch-xsoldier.h (props changed) head/games/xspacewarp/files/patch-aa (props changed) head/games/xspacewarp/files/patch-ab (props changed) head/games/xspacewarp/files/patch-ac (props changed) head/games/xspacewarp/files/patch-ad (props changed) head/games/xspringies/files/patch-01 (props changed) head/games/xspringies/files/patch-widget.c (props changed) head/games/xteddy/files/patch-xteddy_test (props changed) head/games/xteddy/files/patch-xtoys (props changed) head/games/xtet42/files/patch-aa (props changed) head/games/xtet42/files/patch-ab (props changed) head/games/xtic/files/patch-aa (props changed) head/games/xtic/files/patch-ab (props changed) head/games/xtris/files/patch-aa (props changed) head/games/xtrojka/files/patch-Makefile (props changed) head/games/xtrojka/files/patch-resgen (props changed) head/games/xtron/files/patch-aa (props changed) head/games/xtron/files/patch-ab (props changed) head/games/xtron/files/patch-ac (props changed) head/games/xtruco/files/patch-aa (props changed) head/games/xtruco/files/patch-xtruco.c (props changed) head/games/xtux/files/patch-aa (props changed) head/games/xtux/files/patch-ab (props changed) head/games/xtux/files/patch-af (props changed) head/games/xvier/files/patch-aa (props changed) head/games/xvmines/files/patch-aa (props changed) head/games/xwelltris/files/patch-src::image::picinfo.h (props changed) head/games/xwordpy/files/patch-xword (props changed) head/games/xworm/files/patch-ab (props changed) head/games/xzip/files/patch-Makefile (props changed) head/games/xzip/files/patch-ztypes.h (props changed) head/games/yadex/files/patch-GNUmakefile (props changed) head/games/yadex/files/patch-configure (props changed) head/games/yadex/files/patch-wadlist.cc (props changed) head/games/yadex/files/patch-yadex.cfg (props changed) head/games/yadex/files/patch-yadex.h (props changed) head/games/yahtzee/files/patch-aa (props changed) head/games/yahtzee/files/patch-ab (props changed) head/games/yahtzee/files/patch-ac (props changed) head/games/yamsweeper/files/patch-aa (props changed) head/games/yamsweeper/files/patch-ab (props changed) head/games/zangband/files/patch-aa (props changed) head/games/zangband/files/patch-ab (props changed) head/games/zangband/files/patch-ac (props changed) head/games/zangband/files/patch-ad (props changed) head/games/zangband/files/patch-ae (props changed) head/games/zangband/files/patch-af (props changed) head/games/zangband/files/patch-ag (props changed) head/games/znibbles/files/patch-src::Base.H (props changed) head/games/znibbles/files/patch-src::DLList.cc (props changed) head/games/znibbles/files/patch-src::GTK::ClientGtk.C (props changed) head/games/znibbles/files/patch-src::GTK::GtkInterface.C (props changed) head/games/znibbles/files/patch-src::GTK::Menus.C (props changed) head/games/znibbles/files/patch-src::GTK::NibblesArea.C (props changed) head/games/znibbles/files/patch-src::LongObject.C (props changed) head/games/znibbles/files/patch-src::Map.C (props changed) head/games/znibbles/files/patch-src::Map.H (props changed) head/games/znibbles/files/patch-src::Movable.C (props changed) head/games/znibbles/files/patch-src::Niblle.C (props changed) head/games/znibbles/files/patch-src::Object.C (props changed) head/games/znibbles/files/patch-src::Options.C (props changed) head/games/znibbles/files/patch-src::Player.C (props changed) head/games/znibbles/files/patch-src::ServerInterface.C (props changed) head/games/znibbles/files/patch-src::Trame.C (props changed) head/games/znibbles/files/patch-src::Trame.H (props changed) head/games/znibbles/files/patch-src::World.C (props changed) head/games/znibbles/files/patch-src::X11::X11Interface.C (props changed) head/games/znibbles/files/patch-src::X11::textarea.C (props changed) head/games/znibbles/files/patch-src__Motif__menus.C (props changed) head/games/ztrack/files/patch-aa (props changed) head/german/dict/files/patch-aa (props changed) head/german/pecl-konto_check/files/patch-konto_check.c (props changed) head/german/steak/files/patch-Makefile (props changed) head/german/steak/files/patch-Poll:poll.c (props changed) head/graphics/Cgraph/files/patch-aa (props changed) head/graphics/Cgraph/files/patch-ee (props changed) head/graphics/Cgraph/files/patch-grset.c (props changed) head/graphics/Coin/files/patch-Makefile.in (props changed) head/graphics/EZWGL/files/patch-EZ_Png.c (props changed) head/graphics/EZWGL/files/patch-ah (props changed) head/graphics/EZWGL/files/patch-ai (props changed) head/graphics/EZWGL/files/patch-aj (props changed) head/graphics/EZWGL/files/patch-ak (props changed) head/graphics/EZWGL/files/patch-al (props changed) head/graphics/GraphicsMagick/files/extra-patch-Makefile.in (props changed) head/graphics/GraphicsMagick/files/patch-Magick++__lib__Makefile.in (props changed) head/graphics/GraphicsMagick/files/patch-coders__Makefile.in (props changed) head/graphics/GraphicsMagick/files/patch-coders__fpx.c (props changed) head/graphics/GraphicsMagick/files/patch-coders__png.c (props changed) head/graphics/GraphicsMagick/files/patch-configure (props changed) head/graphics/GraphicsMagick/files/patch-filters__Makefile.in (props changed) head/graphics/GraphicsMagick/files/patch-magick__Makefile.in (props changed) head/graphics/GraphicsMagick/files/patch-magick__locale_c.h (props changed) head/graphics/GraphicsMagick/files/patch-magick__symbols.h (props changed) head/graphics/GraphicsMagick/files/patch-wand__Makefile.in (props changed) head/graphics/GraphicsMagick12/files/extra-patch-Makefile.in (props changed) head/graphics/GraphicsMagick12/files/patch-Makefile.in (props changed) head/graphics/GraphicsMagick12/files/patch-coders__jp2.c (props changed) head/graphics/GraphicsMagick12/files/patch-coders__png.c (props changed) head/graphics/GraphicsMagick12/files/patch-configure.in (props changed) head/graphics/GraphicsMagick13/files/extra-patch-Makefile.in (props changed) head/graphics/GraphicsMagick13/files/patch-Makefile.in (props changed) head/graphics/ImageMagick/files/patch-coders::jp2.c (props changed) head/graphics/ImageMagick/files/patch-configure (props changed) head/graphics/O2-tools/files/patch-bmptopnm__Makefile.in (props changed) head/graphics/aalib/files/patch-ag (props changed) head/graphics/aalib/files/patch-ah (props changed) head/graphics/aalib/files/patch-ai (props changed) head/graphics/acidwarp/files/patch-Makefile (props changed) head/graphics/acidwarp/files/patch-acidwarp_c (props changed) head/graphics/aeskulap/files/patch-configuration_aconfiguration.cpp (props changed) head/graphics/aeskulap/files/patch-dcmtk-config_configure (props changed) head/graphics/aeskulap/files/patch-dcmtk-dcmnet-include_dcompat.h (props changed) head/graphics/aeskulap/files/patch-dcmtk-dcmnet-libsrc_dcompat.cc (props changed) head/graphics/aeskulap/files/patch-dcmtk-ofstd-libsrc_ofthread.cc (props changed) head/graphics/aeskulap/files/patch-imagepool_imagepool.h (props changed) head/graphics/aeskulap/files/patch-src_Makefile.am (props changed) head/graphics/aeskulap/files/patch-src_Makefile.in (props changed) head/graphics/aeskulap/files/patch-widgets_awindowleveltoolbutton.cpp (props changed) head/graphics/agg/files/patch-autogen (props changed) head/graphics/agg/files/patch-configure.in (props changed) head/graphics/amide/files/patch-configure (props changed) head/graphics/autotrace/files/patch-ab (props changed) head/graphics/autotrace/files/patch-input-png.c (props changed) head/graphics/ayam/files/patch-MF3D_mffile.c (props changed) head/graphics/ayam/files/patch-MF3D_mfobject.c (props changed) head/graphics/ayam/files/patch-MF3D_mfprimtv.c (props changed) head/graphics/ayam/files/patch-MF3D_mftextrd.c (props changed) head/graphics/ayam/files/patch-ayam.tcl (props changed) head/graphics/ayam/files/patch-contrib-meta_metaobj.c (props changed) head/graphics/ayam/files/patch-contrib_ai.c (props changed) head/graphics/ayam/files/patch-contrib_sm.c (props changed) head/graphics/ayam/files/patch-contrib_tree.c (props changed) head/graphics/ayam/files/patch-objects_ncurve.c (props changed) head/graphics/ayam/files/patch-objects_npatch.c (props changed) head/graphics/ayam/files/patch-objects_riinc.c (props changed) head/graphics/ayam/files/patch-objects_riproc.c (props changed) head/graphics/ayam/files/patch-objects_root.c (props changed) head/graphics/ayam/files/patch-objects_text.c (props changed) head/graphics/ayam/files/patch-plugins_ayslx.c (props changed) head/graphics/ayam/files/patch-togl_togl.c (props changed) head/graphics/batik/files/patch-build.xml (props changed) head/graphics/bbrb/files/patch-src::bbrblist.h (props changed) head/graphics/bmeps/files/patch-configure (props changed) head/graphics/bugle/files/patch-configure (props changed) head/graphics/bugle/files/patch-mvtu.sh (props changed) head/graphics/c-a-i-r/files/patch-CAIR.cpp (props changed) head/graphics/cairo-java/files/patch-cairo-java.pc.in (props changed) head/graphics/cairo-java/files/patch-configure (props changed) head/graphics/cairo/files/patch-src_cairo-wideint-type-private.h (props changed) head/graphics/cairo/files/patch-src_cairo-xlib-display.c (props changed) head/graphics/cairo/files/patch-src_cairoint.h (props changed) head/graphics/cal3d/files/patch-aclocal.m4 (props changed) head/graphics/camediaplay/files/patch-src_main.c (props changed) head/graphics/camediaplay/files/patch-src_uucplock.c (props changed) head/graphics/cfdg/files/patch-Makefile (props changed) head/graphics/chbg/files/patch-absimg.c (props changed) head/graphics/chbg/files/patch-configure (props changed) head/graphics/chbg/files/patch-xscreensaver (props changed) head/graphics/claraocr/files/patch-Makefile (props changed) head/graphics/claraocr/files/patch-debian-ubuntu (props changed) head/graphics/claraocr/files/patch-openmode (props changed) head/graphics/claraocr/files/patch-pbm2cl (props changed) head/graphics/clutter-box2d/files/patch-clutter-box2d_Makefile.in (props changed) head/graphics/clutter-gtk/files/patch-clutter-gtk_Makefile.in (props changed) head/graphics/clutter/files/patch-clutter_cogl_cogl_Makefile.in (props changed) head/graphics/comix/files/patch-install.py (props changed) head/graphics/corona/files/patch-OpenPNG.cpp (props changed) head/graphics/corona/files/patch-SavePNG.cpp (props changed) head/graphics/crw/files/patch-crw.c (props changed) head/graphics/cthumb/files/patch-Makefile.in (props changed) head/graphics/cthumb/files/patch-configure.in (props changed) head/graphics/cthumb/files/patch-cthumb.in (props changed) head/graphics/danpei/files/patch-image_cache.c (props changed) head/graphics/danpei/files/patch-viewer.c (props changed) head/graphics/dc20ctrl/files/patch-aa (props changed) head/graphics/dc20ctrl/files/patch-ab (props changed) head/graphics/dc20ctrl/files/patch-ac (props changed) head/graphics/dc20ctrl/files/patch-ae (props changed) head/graphics/dc20ctrl/files/patch-af (props changed) head/graphics/dc20ctrl/files/patch-ag (props changed) head/graphics/dc20ctrl/files/patch-ah (props changed) head/graphics/dc20ctrl/files/patch-pixmaps.c (props changed) head/graphics/dc20pack/files/patch-aa (props changed) head/graphics/dc20pack/files/patch-ab (props changed) head/graphics/devil/files/patch-src-IL-src-il__icon.c (props changed) head/graphics/devil/files/patch-src-IL-src-il__nvidia.cpp (props changed) head/graphics/devil/files/patch-src-IL-src-il__png.c (props changed) head/graphics/devil/files/patch-src-ILUT-src-ilut__opengl.c (props changed) head/graphics/dia/files/patch-ad (props changed) head/graphics/dia/files/patch-ae (props changed) head/graphics/dia/files/patch-objects::GRAFCET::boolequation.c (props changed) head/graphics/dia/files/patch-po_checktrans.py (props changed) head/graphics/diacanvas2/files/patch-python_diacanvas.override (props changed) head/graphics/digikam-kde4/files/patch-digikam__CMakeLists.txt (props changed) head/graphics/digikam-kde4/files/patch-libs_3rdparty_cimg_CImg.h (props changed) head/graphics/digikam-kde4/files/patch-libs__3rdparty__kmemoryinfo__kmemoryinfo_backend.cpp (props changed) head/graphics/digikam-kde4/files/patch-utilities_fuzzysearchview_fuzzysearchview.cpp (props changed) head/graphics/djview4/files/patch-desktopfiles_Makefile.in (props changed) head/graphics/djvulibre/files/patch-config_ltmain.sh (props changed) head/graphics/djvulibre/files/patch-desktopfiles_Makefile.in (props changed) head/graphics/djvulibre/files/patch-libdjvu__miniexp.cpp (props changed) head/graphics/djvulibre/files/patch-tools_Makefile.in (props changed) head/graphics/djvulibre/files/patch-tools_any2djvu (props changed) head/graphics/djvulibre/files/patch-xmltools_Makefile.in (props changed) head/graphics/dynamechs/files/patch-dm::dm.h (props changed) head/graphics/dynamechs/files/patch-dmGL::dmGL.h (props changed) head/graphics/enfle/files/patch-plugins-loader-png-png.c (props changed) head/graphics/entangle/files/patch-src_backend_entangle-device-manager.c (props changed) head/graphics/epdfview/files/patch-PDFDocument.cxx (props changed) head/graphics/evas-core/files/patch-configure (props changed) head/graphics/evince/files/patch-backend_pdf_ev-poppler.cc (props changed) head/graphics/evince/files/patch-configure (props changed) head/graphics/exact-image/files/patch-bardecode__code128.hh (props changed) head/graphics/exact-image/files/patch-codecs__bmp.cc (props changed) head/graphics/exact-image/files/patch-codecs__gif.cc (props changed) head/graphics/exact-image/files/patch-codecs__jpeg.cc (props changed) head/graphics/exact-image/files/patch-codecs__png.cc (props changed) head/graphics/exact-image/files/patch-codecs__xpm.cc (props changed) head/graphics/exact-image/files/patch-edisplay_edisplay.cc (props changed) head/graphics/exact-image/files/patch-lib__ContourMatching.cc (props changed) head/graphics/exact-image/files/patch-lib__ContourUtility.cc (props changed) head/graphics/exact-image/files/patch-lib__ImageIterator2.hh (props changed) head/graphics/exrtools/files/patch-pngoutput.c (props changed) head/graphics/fbm/files/patch-aa (props changed) head/graphics/fbm/files/patch-fbm.h (props changed) head/graphics/fbm/files/patch-flrle.c (props changed) head/graphics/feh/files/patch-config.mk (props changed) head/graphics/ffff/files/patch-FFFF3.cpp (props changed) head/graphics/ffff/files/patch-extensions.cpp (props changed) head/graphics/ffff/files/patch-hole.cpp.save (props changed) head/graphics/flam3/files/patch-png.c (props changed) head/graphics/flasm/files/patch-unflasm.c (props changed) head/graphics/fli2gif/files/patch-fli2gif.c (props changed) head/graphics/flphoto/files/patch-camera.cxx (props changed) head/graphics/flphoto/files/patch-image.cxx (props changed) head/graphics/fly/files/patch-fly.c (props changed) head/graphics/fortytwo/files/patch-GNUmakefile (props changed) head/graphics/fotoxx/files/patch-Makefile (props changed) head/graphics/fotoxx/files/patch-dependencies.sh (props changed) head/graphics/fotoxx/files/patch-fotoxx-11.03.cc (props changed) head/graphics/fotoxx/files/patch-zfuncs.cc (props changed) head/graphics/fotoxx/files/patch-zfuncs.h (props changed) head/graphics/fpc-hermes/files/patch-Makefile (props changed) head/graphics/freeglut/files/patch-src_freeglut_joystick.c (props changed) head/graphics/fujiplay/files/patch-fujiplay.c (props changed) head/graphics/g2/files/patch-aa (props changed) head/graphics/gcolor2/files/patch-src_callbacks.c (props changed) head/graphics/gcolor2/files/patch-src_main.c (props changed) head/graphics/gd/files/patch-bdftogd (props changed) head/graphics/gd/files/patch-gd_png.c (props changed) head/graphics/gd/files/patch-gdtest.c (props changed) head/graphics/gdk-pixbuf/files/patch-aa (props changed) head/graphics/gdk-pixbuf/files/patch-ab (props changed) head/graphics/gdk-pixbuf/files/patch-ac (props changed) head/graphics/gdk-pixbuf/files/patch-ad (props changed) head/graphics/gdk-pixbuf/files/patch-gdk-pixbuf::pixops::have_mmx.S (props changed) head/graphics/gdk-pixbuf/files/patch-io-png.c (props changed) head/graphics/gdk-pixbuf/files/patch-ltmain.sh (props changed) head/graphics/gdk-pixbuf/files/patch-pixbuf-security (props changed) head/graphics/gdk-pixbuf2/files/patch-Makefile.in (props changed) head/graphics/gdtclft/files/patch-gif (props changed) head/graphics/geeqie/files/patch-plugins-ufraw-geeqie-ufraw (props changed) head/graphics/gegl/files/patch-tools_exp_combine.cpp (props changed) head/graphics/geomorph/files/patch-src-app-main.c (props changed) head/graphics/geoserver/files/patch-bin_shutdown.sh (props changed) head/graphics/geoserver/files/patch-bin_startup.sh (props changed) head/graphics/gif2png/files/patch-gif2png.h (props changed) head/graphics/giflib/files/patch-Makefile.in (props changed) head/graphics/giflib/files/patch-gif_lib.h (props changed) head/graphics/giflib/files/patch-rgb2gif.c (props changed) head/graphics/giftool/files/extra-patch-aa (props changed) head/graphics/giftool/files/extra-patch-ab (props changed) head/graphics/gimageview/files/extra-patch-src-exit_view.c (props changed) head/graphics/gimageview/files/patch-gimv_cell_pixmap.c (props changed) head/graphics/gimageview/files/patch-gimv_scrolled.c (props changed) head/graphics/gimageview/files/patch-gimv_thumb_win.c (props changed) head/graphics/gimageview/files/patch-gimv_xine.c (props changed) head/graphics/gimageview/files/patch-gimv_xine_priv.h (props changed) head/graphics/gimageview/files/patch-ltmain.sh (props changed) head/graphics/gimageview/files/patch-png_loader.c (props changed) head/graphics/gimageview/files/patch-png_saver.c (props changed) head/graphics/gimageview/files/patch-xine_image_loader.c (props changed) head/graphics/gimp-app/files/patch-libgimp_gimp.c (props changed) head/graphics/gimp-focusblur-plugin/files/patch-pixmaps-Makefile.in (props changed) head/graphics/gimp-gap/files/patch-gap_Makefile.in (props changed) head/graphics/gimp-gap/files/patch-libgapvidapi_gap_vid_api_ffmpeg.c (props changed) head/graphics/gimp-gap/files/patch-libwavplayclient_client.c (props changed) head/graphics/gimp-gap/files/patch-libwavplayclient_msg.c (props changed) head/graphics/gimp-gap/files/patch-libwavplayclient_wpc_msg.c (props changed) head/graphics/gimp-gap/files/patch-vid_common_Makefile.in (props changed) head/graphics/gimp-gap/files/patch-vid_enc_avi_Makefile.in (props changed) head/graphics/gimp-gap/files/patch-vid_enc_ffmpeg_Makefile.in (props changed) head/graphics/gimp-gap/files/patch-vid_enc_ffmpeg_gap_enc_ffmpeg_main.c (props changed) head/graphics/gimp-gap/files/patch-vid_enc_single_Makefile.in (props changed) head/graphics/gimp-gmic-plugin/files/patch-Makefile (props changed) head/graphics/giram/files/patch-configure (props changed) head/graphics/giram/files/patch-src+camera.c (props changed) head/graphics/giram/files/patch-src+filetypes+povray+LoadPov.c (props changed) head/graphics/giram/files/patch-src+filetypes+povray+SavePov.c (props changed) head/graphics/giram/files/patch-src+giram.c (props changed) head/graphics/giram/files/patch-src+giramobjecteditor.c (props changed) head/graphics/giram/files/patch-src+texture.c (props changed) head/graphics/giram/files/patch-src+view.c (props changed) head/graphics/giram/files/patch-src+widgets+gtkcolorbutton.c (props changed) head/graphics/gkrellkam2/files/patch-aa (props changed) head/graphics/gkrellkam2/files/patch-ba (props changed) head/graphics/gle-graphics/files/patch-configure (props changed) head/graphics/gle/files/patch-examples-Makefile.in (props changed) head/graphics/glew/files/patch-config_Makefile.freebsd (props changed) head/graphics/glide3/files/patch-configure_in (props changed) head/graphics/glide3/files/patch-h3-distate.c (props changed) head/graphics/glide3/files/patch-h3-fxglide_h (props changed) head/graphics/glide3/files/patch-h3-gglide_c_dri (props changed) head/graphics/glide3/files/patch-h3-glide_h (props changed) head/graphics/glide3/files/patch-h3-gsst_c_dri (props changed) head/graphics/glide3/files/patch-h3-minihwc-linhwc_c_dri (props changed) head/graphics/glide3/files/patch-h3-minihwc-makefile (props changed) head/graphics/glide3/files/patch-h3-src-makefile (props changed) head/graphics/glide3/files/patch-h3-xdraw_inc_S (props changed) head/graphics/glide3/files/patch-h5-distate.c (props changed) head/graphics/glide3/files/patch-h5-fxglide_h (props changed) head/graphics/glide3/files/patch-h5-gdebug_c (props changed) head/graphics/glide3/files/patch-h5-gdebug_h (props changed) head/graphics/glide3/files/patch-h5-glfb_c (props changed) head/graphics/glide3/files/patch-h5-glide3-src-glfb_c (props changed) head/graphics/glide3/files/patch-h5-glide_h (props changed) head/graphics/glide3/files/patch-h5-minihwc-makefile (props changed) head/graphics/glide3/files/patch-h5-src-makefile (props changed) head/graphics/glide3/files/patch-h5-xdraw2_inc_s (props changed) head/graphics/glide3/files/patch-make-3dfx_linux_mak (props changed) head/graphics/glide3/files/patch-make-3dfx_mak (props changed) head/graphics/glide3/files/patch-make-makefile (props changed) head/graphics/glide3/files/patch-swlibs-fxmisc-fxos_c (props changed) head/graphics/gliv/files/patch-src__matrix.c (props changed) head/graphics/glpng/files/patch-glpng.c (props changed) head/graphics/gltt/files/patch-FTGlyphVectorizer.h (props changed) head/graphics/gltt/files/patch-GLTTGlyphPolygonizerHandler.h (props changed) head/graphics/gltt/files/patch-configure (props changed) head/graphics/gmt/files/patch-configure-ac (props changed) head/graphics/gnash/files/patch-configure (props changed) head/graphics/gnash/files/patch-gui-gtk-gtk_canvas.cpp (props changed) head/graphics/gnash/files/patch-plugin-klash-klash_part.cpp (props changed) head/graphics/gnash/files/patch-plugin-klash4-klash_part.cpp (props changed) head/graphics/gnustep-slideshow/files/patch-Controller.m (props changed) head/graphics/gnustep-slideshow/files/patch-PreferencesController.m (props changed) head/graphics/gozer/files/patch-aa (props changed) head/graphics/gozer/files/patch-ab (props changed) head/graphics/gplot/files/patch-aa (props changed) head/graphics/gplot/files/patch-ab (props changed) head/graphics/gplot/files/patch-carray.c (props changed) head/graphics/gplot/files/patch-ccgm.c (props changed) head/graphics/gplot/files/patch-cgm.c (props changed) head/graphics/gplot/files/patch-cgmb.c (props changed) head/graphics/gplot/files/patch-cgmc.c (props changed) head/graphics/gplot/files/patch-devices.c (props changed) head/graphics/gplot/files/patch-drawcgm_Makefile (props changed) head/graphics/gplot/files/patch-drawcgm__cgm_clip.c (props changed) head/graphics/gplot/files/patch-drawcgm__cgm_textem.c (props changed) head/graphics/gplot/files/patch-drawcgm__cgmgen.c (props changed) head/graphics/gplot/files/patch-emul.c (props changed) head/graphics/gplot/files/patch-gplot.c (props changed) head/graphics/gplot/files/patch-gtex.c (props changed) head/graphics/gplot/files/patch-hload.c (props changed) head/graphics/gplot/files/patch-io.c (props changed) head/graphics/gplot/files/patch-pkras.c (props changed) head/graphics/gplot/files/patch-ps.c (props changed) head/graphics/gplot/files/patch-qms.c (props changed) head/graphics/gplot/files/patch-tek.c (props changed) head/graphics/gpsmanshp/files/patch-Makefile (props changed) head/graphics/gpsmanshp/files/patch-gpsmanshp.c (props changed) head/graphics/gqview/files/patch-Makefile.in (props changed) head/graphics/gracula/files/patch-aa (props changed) head/graphics/grads/files/patch-configure (props changed) head/graphics/grads/files/patch-src_bufrscan.c (props changed) head/graphics/grads/files/patch-src_gagui.c (props changed) head/graphics/grads/files/patch-src_gagui.h (props changed) head/graphics/grads/files/patch-src_grads.h (props changed) head/graphics/grads/files/patch-src_gsgui.c (props changed) head/graphics/grads/files/patch-src_gx.h (props changed) head/graphics/grads/files/patch-src_gxhpng.c (props changed) head/graphics/grads/files/patch-src_wgrib.c (props changed) head/graphics/graphopt/files/patch-pixmaps:Makefile.in (props changed) head/graphics/graphopt/files/patch-src:main.cc (props changed) head/graphics/graphviz/files/patch-cmd-gvpr-gvpr.1 (props changed) head/graphics/graphviz/files/patch-cmd-tools-gvpack.1 (props changed) head/graphics/graphviz/files/patch-configure (props changed) head/graphics/graphviz/files/patch-lib-ortho-trapezoid.c (props changed) head/graphics/grx/files/patch-src__include__libgrx.h (props changed) head/graphics/grx/files/patch-src__vdrivers__svgalib.c (props changed) head/graphics/grx/files/patch-src__vdrivers__vd_xwin.c (props changed) head/graphics/grx/files/patch-test__speedtst.c (props changed) head/graphics/gsculpt/files/patch-cpp-Group-GSProductGroup.h (props changed) head/graphics/gsculpt/files/patch-cpp-Math-BBox2.h (props changed) head/graphics/gsculpt/files/patch-cpp-Math-Matrix4.h (props changed) head/graphics/gsculpt/files/patch-cpp-Math-Segment2.h (props changed) head/graphics/gsculpt/files/patch-cpp-Model-GSProductModel.h (props changed) head/graphics/gsculpt/files/patch-cpp__ImporeExportFilter__ObjImport__PyObjImport.cpp (props changed) head/graphics/gsculpt/files/patch-cpp__Math__Vector2.h (props changed) head/graphics/gsnapshot/files/patch-src_common_filechooser.c (props changed) head/graphics/gsnapshot/files/patch-src_common_language.c (props changed) head/graphics/gsnapshot/files/patch-src_programs_Makefile.am (props changed) head/graphics/gthumb/files/patch-glib-utils.c (props changed) head/graphics/gtkgraph/files/patch-aa (props changed) head/graphics/gts/files/patch-ltmain.sh (props changed) head/graphics/gts/files/patch-src::rounding.h (props changed) head/graphics/guilib/files/patch-Makefile.in (props changed) head/graphics/gwenview-kde4/files/extra-patch-importer__fileutils.cpp (props changed) head/graphics/hs-HGL/files/patch-Graphics__HGL__Internals__Utilities.hs (props changed) head/graphics/hs-HGL/files/patch-HGL.cabal (props changed) head/graphics/hsetroot/files/patch-src-hsetroot.c (props changed) head/graphics/hugin/files/patch-src__foreign__vigra__vigra__cachedfileimage.hxx (props changed) head/graphics/hugin/files/patch-src__foreign__zthread__include__zthread__Guard.h (props changed) head/graphics/hugin/files/patch-src__hugin1__icpfind__AutoCtrlPointCreator.cpp (props changed) head/graphics/icat/files/patch-Makefile (props changed) head/graphics/iccexamin/files/patch-configure_tests.sh (props changed) head/graphics/iccexamin/files/patch-icc_gl.cpp (props changed) head/graphics/iccexamin/files/patch-icc_helfer.cpp (props changed) head/graphics/iccexamin/files/patch-icc_helfer.h (props changed) head/graphics/ida/files/patch-GNUmakefile (props changed) head/graphics/ida/files/patch-desktop.c (props changed) head/graphics/ida/files/patch-mk::Autoconf.mk (props changed) head/graphics/ida/files/patch-mk::Variables.mk (props changed) head/graphics/imgtops/files/patch-setup.py (props changed) head/graphics/imgv/files/patch-gl.py (props changed) head/graphics/imgv/files/patch-imgv.py (props changed) head/graphics/imlib/files/patch-io-png.c (props changed) head/graphics/imlib/files/patch-load.c (props changed) head/graphics/imlib/files/patch-max-24bpp (props changed) head/graphics/imlib/files/patch-save.c (props changed) head/graphics/imlib/files/patch-security-1 (props changed) head/graphics/imlib/files/patch-utils.c (props changed) head/graphics/imlib2/files/patch-imlib2-config.in (props changed) head/graphics/imlib2/files/patch-imlib2.pc.in (props changed) head/graphics/imlib2/files/patch-src_lib_common.h (props changed) head/graphics/import-pictures/files/patch-Makefile (props changed) head/graphics/inkscape/files/patch-src_libnr_nr-matrix.cpp (props changed) head/graphics/inkscape/files/patch-src_livarot_Path.cpp (props changed) head/graphics/inkscape/files/patch-src_remove-last.h (props changed) head/graphics/inkscape/files/patch-src_trace_potrace_inkscape-potrace.cpp (props changed) head/graphics/intergif/files/patch-src-animlib.h (props changed) head/graphics/inventor/files/patch-Interface.c++ (props changed) head/graphics/inventor/files/patch-SbTime.c++ (props changed) head/graphics/inventor/files/patch-SceneViewer-GNUmakefile (props changed) head/graphics/inventor/files/patch-SoCalcParse.y (props changed) head/graphics/inventor/files/patch-SoDragger.c++ (props changed) head/graphics/inventor/files/patch-SoNkCatalog.c++ (props changed) head/graphics/inventor/files/patch-SoOutput.c++ (props changed) head/graphics/inventor/files/patch-SoPath.h (props changed) head/graphics/inventor/files/patch-SoSceneViewer.c++ (props changed) head/graphics/inventor/files/patch-SoSensorMgr.c++ (props changed) head/graphics/inventor/files/patch-SoText2.c++ (props changed) head/graphics/inventor/files/patch-SoText3.c++ (props changed) head/graphics/inventor/files/patch-SoText3V2.c++ (props changed) head/graphics/inventor/files/patch-SoType.c++ (props changed) head/graphics/inventor/files/patch-SoV1NkCatalog.c++ (props changed) head/graphics/inventor/files/patch-SoXtRsrc.c++ (props changed) head/graphics/inventor/files/patch-TextWrapper.c++ (props changed) head/graphics/inventor/files/patch-doc-man1-GNUmakefile (props changed) head/graphics/inventor/files/patch-fl.c (props changed) head/graphics/inventor/files/patch-flfreetype.c (props changed) head/graphics/inventor/files/patch-ivcommondefs (props changed) head/graphics/inventor/files/patch-libFL_ang_flfreetype.h (props changed) head/graphics/inventor/files/patch-machine.h (props changed) head/graphics/inventor/files/patch-open.c (props changed) head/graphics/inventor/files/patch-qmorf.c++ (props changed) head/graphics/inventor/files/patch-revo.c++ (props changed) head/graphics/inventor/files/patch-textomatic.c++ (props changed) head/graphics/iulib/files/patch-configure.ac (props changed) head/graphics/iulib/files/patch-genAM.py (props changed) head/graphics/iulib/files/patch-utils__dgraphics.cc (props changed) head/graphics/iulib/files/patch-utils__dgraphics_nosdl.cc (props changed) head/graphics/iulib/files/patch-vidio__vidio.cc (props changed) head/graphics/ivtools/files/patch-config_Imakefile (props changed) head/graphics/ivtools/files/patch-config_params.def (props changed) head/graphics/ivtools/files/patch-config_rules.def (props changed) head/graphics/ivtools/files/patch-src::comtest::Imakefile (props changed) head/graphics/ivtools/files/patch-src::dclock::Imakefile (props changed) head/graphics/ivtools/files/patch-src::glyphs::gclock::Imakefile (props changed) head/graphics/ivtools/files/patch-src::glyphterp::Imakefile (props changed) head/graphics/ivtools/files/patch-src::idemo::Imakefile (props changed) head/graphics/ivtools/files/patch-src::man::Imakefile (props changed) head/graphics/ivtools/files/patch-src::man::man1::Imakefile (props changed) head/graphics/ivtools/files/patch-src::scripts::Imakefile (props changed) head/graphics/ivtools/files/patch-src_Imakefile (props changed) head/graphics/ivtools/files/patch-src_Makefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_box1_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_box2_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_box3_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_box4_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_box5_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_button1_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_button2_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_button3_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_bvalue_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_circle_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_drag_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_fonts_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_himom_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_image_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_ips_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_menu_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_patch_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_preview_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_print_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_rubband_Imakefile (props changed) head/graphics/ivtools/files/patch-src_glyphs_examples3.1_zoomer_Imakefile (props changed) head/graphics/jasper/files/patch-atexit (props changed) head/graphics/jasper/files/patch-jas_stream.c (props changed) head/graphics/jasper/files/patch-jas_types.h (props changed) head/graphics/jasper/files/patch-jpc_cs.c (props changed) head/graphics/jasper/files/patch-libjasper-Makefile.in (props changed) head/graphics/jbig2dec/files/patch-jbig2_image_png.c (props changed) head/graphics/jbig2dec/files/patch-native-sha (props changed) head/graphics/jbig2dec/files/patch-tests (props changed) head/graphics/jbigkit/files/patch-aa (props changed) head/graphics/jbigkit/files/patch-ab (props changed) head/graphics/jbigkit/files/patch-ac (props changed) head/graphics/jgraph/files/patch-ab (props changed) head/graphics/jgraph/files/patch-ac (props changed) head/graphics/jgraph/files/patch-ad (props changed) head/graphics/jgraph/files/patch-ae (props changed) head/graphics/jogamp-jogl/files/patch-gluegen_make_build.xml (props changed) head/graphics/jogamp-jogl/files/patch-gluegen_make_gluegen-cpptasks-base.xml (props changed) head/graphics/jogamp-jogl/files/patch-jogl_make_build-common.xml (props changed) head/graphics/jogl/files/patch-gluegen_make_build.xml (props changed) head/graphics/jogl/files/patch-gluegen_make_gluegen-cpptasks.xml (props changed) head/graphics/jogl/files/patch-gluegen_src_java_com_sun_gluegen_StructLayout.java (props changed) head/graphics/jogl/files/patch-gluegen_src_java_com_sun_gluegen_runtime_CPU.java (props changed) head/graphics/jogl/files/patch-jogl_make_build.xml (props changed) head/graphics/jpeg/files/patch-configure (props changed) head/graphics/jpeg/files/patch-djpeg.c (props changed) head/graphics/jpeg/files/patch-exifautotran (props changed) head/graphics/jpeg/files/patch-jconfig.cfg (props changed) head/graphics/jpeg/files/patch-jmorecfg.h (props changed) head/graphics/jpeg/files/patch-jpegtran.1 (props changed) head/graphics/jpeg/files/patch-jpegtran.c (props changed) head/graphics/jpeg/files/patch-rdjpgcom.c (props changed) head/graphics/jpeg/files/patch-transupp.c (props changed) head/graphics/jpeg/files/patch-transupp.h (props changed) head/graphics/jpeg2ps/files/patch-Makefile (props changed) head/graphics/jpeg2ps/files/patch-asc85ec.c (props changed) head/graphics/jpeg2ps/files/patch-jpeg2ps.c (props changed) head/graphics/jslice/files/patch-aa (props changed) head/graphics/k3d/files/patch-k3dsdk__data.h (props changed) head/graphics/k3d/files/patch-k3dsdk__gil__boost__gil__extension__dynamic_image__apply_operation_base.hpp (props changed) head/graphics/k3d/files/patch-k3dsdk__gil__boost__gil__extension__io__png_io_private.hpp (props changed) head/graphics/k3d/files/patch-k3dsdk__ngui__main_document_window.cpp (props changed) head/graphics/k3d/files/patch-k3dsdk__ngui__render.cpp (props changed) head/graphics/k3d/files/patch-modules__animation__interpolator.h (props changed) head/graphics/kgraphviewer/files/patch-CMakeLists.txt (props changed) head/graphics/kgraphviewer/files/patch-src_CMakeLists.txt (props changed) head/graphics/kgraphviewer/files/patch-src_part_CMakeLists.txt (props changed) head/graphics/kudu/files/patch-configure (props changed) head/graphics/kudu/files/patch-src-globals.h (props changed) head/graphics/lcms-python/files/patch-icc34 (props changed) head/graphics/lcms-python/files/patch-python_Makefile.in (props changed) head/graphics/lcms-python/files/patch-python_lcms_wrap.cxx (props changed) head/graphics/lcms/files/patch-icc34 (props changed) head/graphics/leafpak/files/patch-Makefile (props changed) head/graphics/leptonica/files/patch-pngio.c (props changed) head/graphics/lfview/files/patch-aa (props changed) head/graphics/lfview/files/patch-ab (props changed) head/graphics/lfview/files/patch-ac (props changed) head/graphics/lib3ds/files/patch-ltmain.sh (props changed) head/graphics/libGL/files-old/patch-src__mesa__x86-64__glapi_x86-64.S (props changed) head/graphics/libGL/files-old/patch-src__mesa__x86-64__xform4.S (props changed) head/graphics/libGL/files-old/patch-src__mesa__x86__glapi_x86.S (props changed) head/graphics/libGL/files-old/patch-src__mesa__x86__read_rgba_span_x86.S (props changed) head/graphics/libGL/files-old/patch-src_glx_x11_XF86dri.c (props changed) head/graphics/libGL/files/patch-src-glsl_ir_constant_expression.cpp (props changed) head/graphics/libafterimage/files/patch-Makefile.in (props changed) head/graphics/libafterimage/files/patch-apps:Makefile.in (props changed) head/graphics/libafterimage/files/patch-export.c (props changed) head/graphics/libafterimage/files/patch-import.c (props changed) head/graphics/libaux/files/patch-Imakefile (props changed) head/graphics/libaux/files/patch-font.c (props changed) head/graphics/libboard/files/patch-configure (props changed) head/graphics/libchamplain/files/patch-champlain-gtk_Makefile.in (props changed) head/graphics/libecwj2/files/patch-Makefile.am (props changed) head/graphics/libecwj2/files/patch-Makefile.in (props changed) head/graphics/libecwj2/files/patch-Source-C-NCSUtil-file.c (props changed) head/graphics/libecwj2/files/patch-Source-C-NCSUtil-malloc.c (props changed) head/graphics/libecwj2/files/patch-Source-C-NCSUtil-thread.c (props changed) head/graphics/libecwj2/files/patch-Source-C-NCSUtil-util.c (props changed) head/graphics/libecwj2/files/patch-Source-C-NCSnet-NCScnet3-NCSProxy.cpp (props changed) head/graphics/libecwj2/files/patch-Source-NCSBuildGnu-Makefile.in (props changed) head/graphics/libecwj2/files/patch-Source-include-NCSDefs.h (props changed) head/graphics/libecwj2/files/patch-Source-include-NCSFileIO.h (props changed) head/graphics/libecwj2/files/patch-Source-include-NCSJPCDefs.h (props changed) head/graphics/libecwj2/files/patch-Source-include-NCSMalloc.h (props changed) head/graphics/libecwj2/files/patch-Source-include-NCSMisc.h (props changed) head/graphics/libecwj2/files/patch-Source-include-NCSMutex.h (props changed) head/graphics/libecwj2/files/patch-Source-include-NCSTypes.h (props changed) head/graphics/libecwj2/files/patch-configure.in (props changed) head/graphics/libgaiagraphics/files/patch-src-gaiagraphics_grid.c (props changed) head/graphics/libgfx/files/patch-png.cxx (props changed) head/graphics/libgnomecanvas/files/patch-libgnomecanvas_gnome-canvas-shape.c (props changed) head/graphics/libimg/files/patch-jpeg (props changed) head/graphics/libimg/files/patch-png (props changed) head/graphics/libimg/files/patch-tiff (props changed) head/graphics/libimg/files/patch-warnings (props changed) head/graphics/liblqr-1/files/patch-examples-Makefile (props changed) head/graphics/liblug/files/patch-aa (props changed) head/graphics/liblug/files/patch-ab (props changed) head/graphics/libmng/files/patch-conf (props changed) head/graphics/libmorph/files/patch-aa (props changed) head/graphics/libopenraw/files/patch-gnomeincludes (props changed) head/graphics/libosmesa/files/patch-src-mesa-main_macros.h (props changed) head/graphics/libpano12/files/patch-Makefile.am (props changed) head/graphics/libpano12/files/patch-bootstrap (props changed) head/graphics/libpano12/files/patch-configure.ac (props changed) head/graphics/libpano12/files/patch-m4_ax_check_graphics.m4 (props changed) head/graphics/libpano12/files/patch-m4_ax_check_java.m4 (props changed) head/graphics/libpano12/files/patch-png.c (props changed) head/graphics/libpano12/files/patch-tools_Makefile.am (props changed) head/graphics/libpano13/files/patch-Makefile.am (props changed) head/graphics/libpano13/files/patch-bootstrap (props changed) head/graphics/libpano13/files/patch-configure.ac (props changed) head/graphics/libpano13/files/patch-m4_ax_check_graphics.m4 (props changed) head/graphics/libpano13/files/patch-m4_ax_check_java.m4 (props changed) head/graphics/libpano13/files/patch-tools_Makefile.am (props changed) head/graphics/libpcd/files/patch-GNUmakefile (props changed) head/graphics/libpgf/files/patch-Makefile.am (props changed) head/graphics/libraw/files/patch-configure (props changed) head/graphics/librsvg2/files/patch-Makefile.in (props changed) head/graphics/libsvg/files/patch-svg_image.c (props changed) head/graphics/libvisual/files/patch-configure (props changed) head/graphics/libvisual/files/patch-libvisual-lv_cpu.c (props changed) head/graphics/libvisual04/files/patch-configure (props changed) head/graphics/libwmf/files/patch-cve-2006-3376 (props changed) head/graphics/libwmf/files/patch-cve-2009-1364 (props changed) head/graphics/libwmf/files/patch-gd_png.c (props changed) head/graphics/libwmf/files/patch-ltmain.sh (props changed) head/graphics/linplasma/files/patch-Makefile (props changed) head/graphics/lprof-devel/files/patch-src-3rdparty-vigra-CMakeLists.txt (props changed) head/graphics/lprof-devel/files/patch-src-CMakeLists.txt (props changed) head/graphics/lprof-devel/files/patch-src-ICCtoIT8-CMakeLists.txt (props changed) head/graphics/lprof-devel/files/patch-src-argyll-CMakeLists.txt (props changed) head/graphics/lprof-devel/files/patch-src-argyll-spectro-unixio.c (props changed) head/graphics/lprof-devel/files/patch-src-argyll-spectro-usbio.c (props changed) head/graphics/lprof-devel/files/patch-src-lcms-CMakeLists.txt (props changed) head/graphics/lprof-devel/files/patch-src-liblprof-CMakeLists.txt (props changed) head/graphics/lprof-devel/files/patch-src-libqtlcmswidgets-lprofgauge.h (props changed) head/graphics/luminance/files/patch-src__HelpBrowser__LuminancePaths.cpp (props changed) head/graphics/luxrender/files/patch-CMakeLists.txt (props changed) head/graphics/mapnik/files/patch-tests-cpp_tests-conversions_test.cpp (props changed) head/graphics/mate-document-viewer/files/patch-backend_pdf_ev-poppler.cc (props changed) head/graphics/maverik/files/patch-setup (props changed) head/graphics/megapov/files/patch-png_pov.cpp (props changed) head/graphics/meshviewer/files/patch-qt4__glmesh.cpp (props changed) head/graphics/meshviewer/files/patch-qt4__glmesh_common.cpp (props changed) head/graphics/metacam/files/patch-Makefile (props changed) head/graphics/metapixel/files/patch-Makefile (props changed) head/graphics/metapixel/files/patch-rwpng.c (props changed) head/graphics/mhgui/files/patch-configure (props changed) head/graphics/mhgui/files/patch-include-mhgui-ImageData.h (props changed) head/graphics/mhgui/files/patch-src-ImageData.cpp (props changed) head/graphics/mirage/files/patch-setyp.py (props changed) head/graphics/mtpaint/files/patch-configure (props changed) head/graphics/multican/files/patch-usbio.h (props changed) head/graphics/mupdf/files/patch-apps_x11_main.c (props changed) head/graphics/mxp/files/patch-Makefile (props changed) head/graphics/mxp/files/patch-lugfnts.h (props changed) head/graphics/netpbm/files/patch-GNUmakefile (props changed) head/graphics/netpbm/files/patch-Makefile.common (props changed) head/graphics/netpbm/files/patch-jpeg.c (props changed) head/graphics/netpbm/files/patch-lib-Makefile (props changed) head/graphics/netpbm/files/patch-lib-libpbm3.c (props changed) head/graphics/netpbm/files/patch-lib-libpm.c (props changed) head/graphics/netpbm/files/patch-lib-libsystem.c (props changed) head/graphics/netpbm/files/patch-pamrgbatopng.c (props changed) head/graphics/netpbm/files/patch-pm_config.in.h (props changed) head/graphics/netpbm/files/patch-pngtopnm.c (props changed) head/graphics/netpbm/files/patch-pngtxt.c (props changed) head/graphics/netpbm/files/patch-pnmtopng.c (props changed) head/graphics/netpbm/files/patch-ppmtompeg-Makefile (props changed) head/graphics/nurbs++/files/patch-cvector.h (props changed) head/graphics/nurbs++/files/patch-d_nurbsSub.cpp (props changed) head/graphics/nurbs++/files/patch-f_nurbsSub.cpp (props changed) head/graphics/nurbs++/files/patch-hnurbsS.cpp (props changed) head/graphics/nurbs++/files/patch-hnurbsS_sp.cpp (props changed) head/graphics/nurbs++/files/patch-image.cpp (props changed) head/graphics/nurbs++/files/patch-image_color.cpp (props changed) head/graphics/nurbs++/files/patch-list.h (props changed) head/graphics/nurbs++/files/patch-matrix.cpp (props changed) head/graphics/nurbs++/files/patch-matrixMat.cpp (props changed) head/graphics/nurbs++/files/patch-matrixRT.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_barray2d_uchar.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_barray_complex.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_matrix_char.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_matrix_complex.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_matrix_double.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_matrix_float.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_matrix_hpoint.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_matrix_int.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_matrix_point.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_matrix_uchar.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_vector_double.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_vector_float.cpp (props changed) head/graphics/nurbs++/files/patch-matrix_vector_int.cpp (props changed) head/graphics/nurbs++/files/patch-nurbs.cpp (props changed) head/graphics/nurbs++/files/patch-nurbsS.cpp (props changed) head/graphics/nurbs++/files/patch-nurbsS_sp.cpp (props changed) head/graphics/nurbs++/files/patch-nurbsS_sp.h (props changed) head/graphics/nurbs++/files/patch-nurbsSub.cpp (props changed) head/graphics/nurbs++/files/patch-nurbs_d_nurbs.cpp (props changed) head/graphics/nurbs++/files/patch-nurbs_d_surface.cpp (props changed) head/graphics/nurbs++/files/patch-nurbs_f_surface.cpp (props changed) head/graphics/nurbs++/files/patch-nurbs_sp.cpp (props changed) head/graphics/nurbs++/files/patch-nurbs_sp.h (props changed) head/graphics/nurbs++/files/patch-vector.cpp (props changed) head/graphics/nurbs++/files/patch-vector.h (props changed) head/graphics/nvidia-texture-tools/files/patch-src-nvcore-Debug.cpp (props changed) head/graphics/nvidia-texture-tools/files/patch-src-nvcore-nvcore.h (props changed) head/graphics/nvidia-texture-tools/files/patch-src-nvcore-poshlib-posh.h (props changed) head/graphics/nvidia-texture-tools/files/patch-src-nvimage-ImageIO.cpp (props changed) head/graphics/nvidia-texture-tools/files/patch-src-nvmath-nvmath.h (props changed) head/graphics/nvidia-texture-tools/files/patch-src-nvtt-CMakeLists.txt (props changed) head/graphics/ocaml-images/files/patch-configure.ac (props changed) head/graphics/ocaml-images/files/patch-src_gifwrite.c (props changed) head/graphics/ocaml-images/files/patch-src_pngread.c (props changed) head/graphics/ocaml-images/files/patch-src_pngwrite.c (props changed) head/graphics/ocaml-images/files/patch-src_tiffread.c (props changed) head/graphics/ocaml-images/files/patch-src_tiffwrite.c (props changed) head/graphics/ocrfeeder/files/patch-src-ocrfeeder-util-lib.py (props changed) head/graphics/ocropus/files/patch-configure.ac (props changed) head/graphics/ocropus/files/patch-genAM.py (props changed) head/graphics/ocropus/files/patch-ocr-utils__components.cc (props changed) head/graphics/ocropus/files/patch-ocr-utils__narray-io.h (props changed) head/graphics/ocropus/files/patch-ocr-voronoi__read_image.cc (props changed) head/graphics/opencolorio/files/extra-patch-CMakeLists.txt (props changed) head/graphics/opencolorio/files/patch-share__cmake__OCIOMacros.cmake (props changed) head/graphics/opencolorio/files/patch-src__core__CMakeLists.txt (props changed) head/graphics/opencolorio/files/patch-src__core__Platform.h (props changed) head/graphics/opendis/files/patch-ods.c (props changed) head/graphics/opendx/files/patch-bin_url_handler.sh (props changed) head/graphics/opendx/files/patch-ltmain.sh (props changed) head/graphics/openjpeg/files/patch-CMakeLists.txt (props changed) head/graphics/openjpeg/files/patch-CMake_OpenJPEGConfig.cmake.in (props changed) head/graphics/openjpeg/files/patch-libopenjpeg-CMakeLists.txt (props changed) head/graphics/openjpeg/files/patch-libopenjpeg1.pc.cmake (props changed) head/graphics/opennurbs/files/patch-opennurbs-system.h (props changed) head/graphics/optar/files/patch-Makefile (props changed) head/graphics/optipng/files/patch-src-optipng-osys.c (props changed) head/graphics/orca/files/patch-Makefile.in (props changed) head/graphics/orca/files/patch-lib_Orca_ImageFile.pm (props changed) head/graphics/orca/files/patch-src_Makefile.in (props changed) head/graphics/osg-devel/files/patch-CMakeLists.txt (props changed) head/graphics/osg-devel/files/patch-src-OpenThreads-CMakeLists.txt (props changed) head/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.cpp (props changed) head/graphics/osg-devel/files/patch-src-osgPlugins-xine-video__out__rgb.c (props changed) head/graphics/osg/files/patch-CMakeLists.txt (props changed) head/graphics/osg/files/patch-src-OpenThreads-CMakeLists.txt (props changed) head/graphics/osg/files/patch-src-OpenThreads-pthreads-PThread.cpp (props changed) head/graphics/oyranos/files/patch-doc_CMakeLists.txt (props changed) head/graphics/oyranos/files/patch-src_API_generated_oyProfile_s.h (props changed) head/graphics/oyranos/files/patch-src_examples_oforms_CMakeLists.txt (props changed) head/graphics/p5-Chart-Graph/files/patch-Makefile.PL (props changed) head/graphics/p5-Chart-PNGgraph/files/patch-Makefile.PL (props changed) head/graphics/p5-Image-Imlib2/files/patch-Imlib2.xs (props changed) head/graphics/p5-Image-Imlib2/files/patch-lib-Image-ppport.h (props changed) head/graphics/p5-OpenGL/files/patch-gl_util.c (props changed) head/graphics/p5-PGPLOT/files/patch-aa (props changed) head/graphics/p5-ming/files/patch-Makefile.in (props changed) head/graphics/p5-ming/files/patch-perl_swf.h (props changed) head/graphics/panoglview/files/patch-configure (props changed) head/graphics/panomatic/files/patch-panomatic-PanoDetectorLogic.cpp (props changed) head/graphics/panomatic/files/patch-panomatic-TestCode.cpp (props changed) head/graphics/pear-Image_Canvas/files/patch-Image__Canvas.php (props changed) head/graphics/pear-Image_Canvas/files/patch-Image__Canvas__GD.php (props changed) head/graphics/pear-Image_Canvas/files/patch-Image__Canvas__PDF.php (props changed) head/graphics/pear-Image_Canvas/files/patch-Image__Canvas__PS.php (props changed) head/graphics/pecl-imlib2/files/patch-imlib2.c (props changed) head/graphics/pecomato/files/patch-Makefile.unix (props changed) head/graphics/pecomato/files/patch-util.h (props changed) head/graphics/pencil/files/patch-src_external_flash_flash.cpp (props changed) head/graphics/pencil/files/patch-src_external_flash_flash.h (props changed) head/graphics/pfscalibration/files/patch-src-jpeg2hdrgen (props changed) head/graphics/pfscalibration/files/patch-src-pfshdrcalibrate.cpp (props changed) head/graphics/pfscalibration/files/patch-src-robertson02.cpp (props changed) head/graphics/pfscalibration/files/patch-src-robertson02.h (props changed) head/graphics/pfstmo/files/patch-src-mantiuk06-contrast_domain.cpp (props changed) head/graphics/pfstools/files/patch-src-pfs-Makefile.in (props changed) head/graphics/pgplot/files/patch-ab (props changed) head/graphics/php5-ffmpeg/files/patch-ffmpeg_frame.c (props changed) head/graphics/php5-gd/files/patch-config.m4 (props changed) head/graphics/php52-gd/files/patch-config.m4 (props changed) head/graphics/php52-gd/files/patch-libgd_gd_png.c (props changed) head/graphics/php53-gd/files/patch-config.m4 (props changed) head/graphics/php55-gd/files/patch-config.m4 (props changed) head/graphics/picpuz/files/patch-Makefile (props changed) head/graphics/picpuz/files/patch-zfuncs.cpp (props changed) head/graphics/picpuz/files/patch-zfuncs.h (props changed) head/graphics/picturebook/files/patch-aa (props changed) head/graphics/picturebook/files/patch-ab (props changed) head/graphics/picturebook/files/patch-ac (props changed) head/graphics/picturebook/files/patch-ad (props changed) head/graphics/picturebook/files/patch-ae (props changed) head/graphics/picturebook/files/patch-af (props changed) head/graphics/picturebook/files/patch-ag (props changed) head/graphics/picturebook/files/patch-ah (props changed) head/graphics/picturebook/files/patch-ai (props changed) head/graphics/picturebook/files/patch-ba (props changed) head/graphics/picturebook/files/patch-bb (props changed) head/graphics/picviz/files/patch-doc-CMakeLists.txt (props changed) head/graphics/picviz/files/patch-src-libpicviz-CMakeLists.txt (props changed) head/graphics/picviz/files/patch-src-libpicviz-values-mapping.c (props changed) head/graphics/pinpoint/files/patch-pinpoint.c (props changed) head/graphics/pinta/files/patch-Pinta.Install.proj (props changed) head/graphics/pixen/files/patch-PXInfoPanelController.m (props changed) head/graphics/pixen/files/patch-UKFeedbackProvider.m (props changed) head/graphics/pixmap/files/patch-aa (props changed) head/graphics/pixmap/files/patch-ab (props changed) head/graphics/pixmap/files/patch-ac (props changed) head/graphics/plasma-kmod/files/patch-Makefile (props changed) head/graphics/plasma-kmod/files/patch-plasma_saver.c (props changed) head/graphics/plasma-kmod/files/patch-plasma_saver.h (props changed) head/graphics/plotmtv/files/patch-aa (props changed) head/graphics/plotmtv/files/patch-ab (props changed) head/graphics/plotmtv/files/patch-ac (props changed) head/graphics/plotmtv/files/patch-ad (props changed) head/graphics/plotutils/files/patch-libplot-x_afftext.c (props changed) head/graphics/plotutils/files/patch-libplot-z_write.c (props changed) head/graphics/plotutils/files/patch-tek-egm-bug (props changed) head/graphics/png/files/patch-ac (props changed) head/graphics/png/files/patch-makefile.freebsd (props changed) head/graphics/png2html/files/patch-aa (props changed) head/graphics/pngnq/files/patch-rwpng.c (props changed) head/graphics/podofo/files/patch-CMakeLists.txt (props changed) head/graphics/podofo/files/patch-cmake_modules_FindLua51.cmake (props changed) head/graphics/podofo/files/patch-src_CMakeLists.txt (props changed) head/graphics/poppler/files/patch-glib_Makefile.in (props changed) head/graphics/poppler/files/patch-qt4_Makefile.in (props changed) head/graphics/poppler/files/patch-qt4_src_Makefile.in (props changed) head/graphics/pornview/files/patch-charset.c (props changed) head/graphics/pornview/files/patch-comment.c (props changed) head/graphics/pornview/files/patch-comment.h (props changed) head/graphics/pornview/files/patch-gtkcellrendererpixmap.c (props changed) head/graphics/pornview/files/patch-gtkcellrendererpixmap.h (props changed) head/graphics/pornview/files/patch-gtkmplayer.c (props changed) head/graphics/pornview/files/patch-gtkxine.c (props changed) head/graphics/pornview/files/patch-gtkxine.h (props changed) head/graphics/pornview/files/patch-image_loader.c (props changed) head/graphics/pornview/files/patch-pixbuf_utils.c (props changed) head/graphics/pornview/files/patch-zlist.c (props changed) head/graphics/povray31/files/patch-aa (props changed) head/graphics/povray31/files/patch-ab (props changed) head/graphics/povray31/files/patch-png_pov.c (props changed) head/graphics/povray36/files/patch-Makefile.in (props changed) head/graphics/povray36/files/patch-png_pov.cpp (props changed) head/graphics/povray37/files/patch-Makefile.in (props changed) head/graphics/povray37/files/patch-vfe_unix_vfeplatform.cpp (props changed) head/graphics/preview/files/patch-Document.m (props changed) head/graphics/price/files/patch-PRImageView.m (props changed) head/graphics/projectm-libvisual/files/patch-actor_projectM-cpp (props changed) head/graphics/pstoepsi/files/patch-src:ps2epsi (props changed) head/graphics/pvmpov/files/patch-aa (props changed) head/graphics/pvmpov/files/patch-ab (props changed) head/graphics/pvmpov/files/patch-povray31-source-pvm_pvm.h (props changed) head/graphics/py-graph-dot/files/patch-setup.py (props changed) head/graphics/py-graphviz/files/patch-setup.py (props changed) head/graphics/py-imaging/files/patch-setup.py (props changed) head/graphics/py-paint/files/patch-image.c (props changed) head/graphics/py-pillow/files/patch-setup.py (props changed) head/graphics/py-poppler/files/patch-poppler.defs (props changed) head/graphics/py-pydot/files/patch-setup.py (props changed) head/graphics/py-rabbyt/files/patch-setup.py (props changed) head/graphics/py-sane/files/patch-setup.py (props changed) head/graphics/py-soya3d/files/patch-setup.py (props changed) head/graphics/pyro/files/patch-jpeg.c (props changed) head/graphics/pyro/files/patch-pyro.c (props changed) head/graphics/qcomicbook/files/patch-src__CMakeLists.txt (props changed) head/graphics/qslim/files/patch-mixkit-src_MxStdGUI.cxx (props changed) head/graphics/quesoglc/files/patch-include-GL-glew.h (props changed) head/graphics/rawstudio/files/patch-exiv2-colorspace.cpp (props changed) head/graphics/rawstudio/files/patch-output-pngfile.c (props changed) head/graphics/rawtherapee/files/patch-rtengine_improcfun.h (props changed) head/graphics/rawtherapee/files/patch-rtengine_myfile.h (props changed) head/graphics/rawtherapee/files/patch-rtengine_safegtk.cc (props changed) head/graphics/rayshade/files/patch-aa (props changed) head/graphics/rayshade/files/patch-ac (props changed) head/graphics/rayshade/files/patch-ad (props changed) head/graphics/rayshade/files/patch-extended.c (props changed) head/graphics/rayshade/files/patch-fog.c (props changed) head/graphics/rayshade/files/patch-fogdeck.c (props changed) head/graphics/rayshade/files/patch-hf.c (props changed) head/graphics/reallyslick/files/patch-configure (props changed) head/graphics/reallyslick/files/patch-src__hyperspace.cpp (props changed) head/graphics/reallyslick/files/patch-src__skyrocket_sound.cpp (props changed) head/graphics/ruby-gd/files/patch-GD.c (props changed) head/graphics/ruby-gd/files/patch-extconf.rb (props changed) head/graphics/ruby-gd/files/patch-ruby19 (props changed) head/graphics/ruby-ming/files/patch-ext_ming_mingc_extconf.rb (props changed) head/graphics/ruby-ming/files/patch-ext_ming_mingc_swfbitmap.c (props changed) head/graphics/ruby-ming/files/patch-ext_ming_mingc_swfbutton.c (props changed) head/graphics/ruby-ming/files/patch-ext_ming_mingc_swffiltermatrix.c (props changed) head/graphics/ruby-ming/files/patch-ext_ming_mingc_swftext.c (props changed) head/graphics/ruby-rmagick/files/patch-ext-RMagick-rmpixel.c (props changed) head/graphics/ruby-rmagick/files/patch-setup.rb (props changed) head/graphics/s10sh/files/patch-bytesex.h (props changed) head/graphics/sam2p/files/patch-configure (props changed) head/graphics/sam2p/files/patch-gensh.hpp (props changed) head/graphics/sam2p/files/patch-gensio.cpp (props changed) head/graphics/sam2p/files/patch-ps_tiny.c (props changed) head/graphics/sam2p/files/patch-pts_defl.c (props changed) head/graphics/sam2p/files/patch-pts_lzw.c (props changed) head/graphics/sane-backends/files/patch-backend__epson2-ops.c (props changed) head/graphics/sane-backends/files/patch-include__sane__sane.h (props changed) head/graphics/sane-backends/files/patch-sanei_sanei_pa4s2.c (props changed) head/graphics/sane-epkowa/files/patch-01 (props changed) head/graphics/sane-epkowa/files/patch-02 (props changed) head/graphics/sane-epkowa/files/patch-03 (props changed) head/graphics/scantailor/files/patch-ProjectFilesDialog.cpp (props changed) head/graphics/scrot/files/patch-Makefile.in (props changed) head/graphics/scrot/files/patch-src-Makefile.in (props changed) head/graphics/seam-carving-gui/files/patch-cair_CAIR.cpp (props changed) head/graphics/seejpeg/files/patch-aa (props changed) head/graphics/sharpconstruct/files/patch-include-Optimized.h (props changed) head/graphics/shotwell/files/patch-Makefile (props changed) head/graphics/shotwell/files/patch-src-camera-CameraTable.vala (props changed) head/graphics/showimage/files/patch-CMakeLists.txt (props changed) head/graphics/showimage/files/patch-showimage.desktop (props changed) head/graphics/silgraphite/files/patch-openoffice-silgraphite (props changed) head/graphics/simage/files/patch-simage_png.c (props changed) head/graphics/simpleviewer/files/patch-defreeglut (props changed) head/graphics/simpleviewer/files/patch-formatpng.cpp (props changed) head/graphics/sk1libs/files/patch-src-utils-fs.py (props changed) head/graphics/sk1libs/files/patch-src-utils-system.py (props changed) head/graphics/sng/files/patch-sngc.c (props changed) head/graphics/sng/files/patch-sngd.c (props changed) head/graphics/sodipodi/files/patch-src::xml::repr-io.c (props changed) head/graphics/sodipodi/files/patch-src_helper_png-write.c (props changed) head/graphics/sodipodi/files/patch-src_main.c (props changed) head/graphics/sswf/files/patch-include_sswf_libsswf.h (props changed) head/graphics/sswf/files/patch-src_libasc_asc__strings.c++ (props changed) head/graphics/sswf/files/patch-src_sswf_sswf__node.c (props changed) head/graphics/stamp/files/patch-Makefile.in (props changed) head/graphics/stamp/files/patch-ab (props changed) head/graphics/stamp/files/patch-gstamp_gstamp.c (props changed) head/graphics/stamp/files/patch-gstamp_gstamp_misc.c (props changed) head/graphics/stamp/files/patch-gstamp_gstamp_signals.c (props changed) head/graphics/stamp/files/patch-gstamp_gstamp_ui.c (props changed) head/graphics/stamp/files/patch-lib_common.c (props changed) head/graphics/stamp/files/patch-lib_transmogrify.c (props changed) head/graphics/structuresynth/files/patch-SyntopiaCore__GLEngine__Raytracer__RayTracer.cpp (props changed) head/graphics/structuresynth/files/patch-SyntopiaCore__GLEngine__Sphere.h (props changed) head/graphics/svg2pdf/files/patch-src_svg2pdf.c (props changed) head/graphics/svg2png/files/patch-src_svg2png.c (props changed) head/graphics/svgalib/files/patch-aa (props changed) head/graphics/svgalib/files/patch-ab (props changed) head/graphics/svgalib/files/patch-ac (props changed) head/graphics/svgalib/files/patch-ad (props changed) head/graphics/svgalib/files/patch-ae (props changed) head/graphics/svgalib/files/patch-af (props changed) head/graphics/svgalib/files/patch-ag (props changed) head/graphics/svgalib/files/patch-ah (props changed) head/graphics/svgalib/files/patch-ai (props changed) head/graphics/svgalib/files/patch-aj (props changed) head/graphics/svgalib/files/patch-ak (props changed) head/graphics/svgalib/files/patch-al (props changed) head/graphics/svgalib/files/patch-am (props changed) head/graphics/svgalib/files/patch-an (props changed) head/graphics/svgalib/files/patch-ao (props changed) head/graphics/svgalib/files/patch-ap (props changed) head/graphics/svgalib/files/patch-aq (props changed) head/graphics/svgalib/files/patch-ar (props changed) head/graphics/svgalib/files/patch-as (props changed) head/graphics/svgalib/files/patch-at (props changed) head/graphics/svgalib/files/patch-au (props changed) head/graphics/svgalib/files/patch-av (props changed) head/graphics/svgalib/files/patch-aw (props changed) head/graphics/svgalib/files/patch-ax (props changed) head/graphics/svgalib/files/patch-ay (props changed) head/graphics/svgalib/files/patch-az (props changed) head/graphics/svgalib/files/patch-debian-029_binutils-2.16.patch (props changed) head/graphics/svgalib/files/patch-debian-030_manpages_typos.patch (props changed) head/graphics/svgalib/files/patch-gl::driver.c (props changed) head/graphics/svgalib/files/patch-gl::line.c (props changed) head/graphics/svgalib/files/patch-src::nv3.c (props changed) head/graphics/svgalib/files/patch-src::s3.c (props changed) head/graphics/svgalib/files/patch-src::vgapix.c (props changed) head/graphics/svgalib/files/patch-utils-convfont.c (props changed) head/graphics/svgalib/files/patch-utils-fix132x43.c (props changed) head/graphics/svgalib/files/patch-utils-gtf-gtfcalc.c (props changed) head/graphics/svgalib/files/patch-utils-restorefont.c (props changed) head/graphics/svgalib/files/patch-utils-restorepalette.c (props changed) head/graphics/svgalib/files/patch-utils-restoretextmode.c (props changed) head/graphics/svgalib/files/patch-utils-setmclk.c (props changed) head/graphics/swfdec/files/patch-configure (props changed) head/graphics/swfdec/files/patch-swfdec-gtk_Makefile.in (props changed) head/graphics/swftools/files/patch-gif2swf.c (props changed) head/graphics/synaesthesia/files/patch-configure (props changed) head/graphics/synfigstudio/files/patch-src_synfigapp_cvs.cpp (props changed) head/graphics/telak/files/patch-Makefile (props changed) head/graphics/tgif/files/patch-Tgif.tmpl-freebsd (props changed) head/graphics/tgif/files/patch-font.c (props changed) head/graphics/tgif/files/patch-po-Po.tmpl (props changed) head/graphics/tgif/files/patch-tgif.man (props changed) head/graphics/tiff/files/patch-Makefile.in (props changed) head/graphics/tiff2png/files/patch-tiff2png.c (props changed) head/graphics/tifmerge/files/patch-aa (props changed) head/graphics/tilecache/files/patch-setup.py (props changed) head/graphics/truevision/files/patch-gentoo-gcc4 (props changed) head/graphics/truevision/files/patch-src-density.cc (props changed) head/graphics/truevision/files/patch-src-dlgutils.cc (props changed) head/graphics/truevision/files/patch-src-glview.cc (props changed) head/graphics/truevision/files/patch-src-linkobj.cc (props changed) head/graphics/truevision/files/patch-src-texnormal.cc (props changed) head/graphics/truevision/files/patch-src-texpigment.cc (props changed) head/graphics/truevision/files/patch-src__povfe.cc (props changed) head/graphics/tulip/files/patch-CMakeLists.txt (props changed) head/graphics/tulip/files/patch-dirent (props changed) head/graphics/tulip/files/patch-library-tulip-include-tulip_ConsoleUtils.h (props changed) head/graphics/tulip/files/patch-library-tulip-src_CMakeLists.txt (props changed) head/graphics/tulip/files/patch-opengl (props changed) head/graphics/tulip/files/patch-software-crash_handling_CMakeLists.txt (props changed) head/graphics/tulip/files/patch-software-crash_handling_CrashHandling.cpp (props changed) head/graphics/tulip/files/patch-software-crash_handling_StackWalker.cpp (props changed) head/graphics/tulip/files/patch-software-crash_handling_StackWalker.h (props changed) head/graphics/tulip/files/patch-thirdparty-OGDF-ogdf-basic_basic.h (props changed) head/graphics/tulip/files/patch-thirdparty-OGDF-src-basic_System.cpp (props changed) head/graphics/urt/files/patch-cnv-rlatorle.c (props changed) head/graphics/urt/files/patch-cnv::rletovcr.c (props changed) head/graphics/urt/files/patch-cnv::tex::makefile.src (props changed) head/graphics/urt/files/patch-cnv::vcrtorele.c (props changed) head/graphics/urt/files/patch-config::hp700-hpux10 (props changed) head/graphics/urt/files/patch-config::sol2-5 (props changed) head/graphics/urt/files/patch-get-getx11-map_scan.c (props changed) head/graphics/urt/files/patch-get-getx11-x11_stuff.c (props changed) head/graphics/urt/files/patch-get::getfb.c (props changed) head/graphics/urt/files/patch-get::getx11::XGetHClrs.c (props changed) head/graphics/urt/files/patch-get::getx11::in_cmap.c (props changed) head/graphics/urt/files/patch-get::makefile.src (props changed) head/graphics/urt/files/patch-include::makefile.src (props changed) head/graphics/urt/files/patch-include::rle_config.tlr (props changed) head/graphics/urt/files/patch-lib::buildmap.c (props changed) head/graphics/urt/files/patch-lib::inv_cmap.c (props changed) head/graphics/urt/files/patch-lib::makefile.src (props changed) head/graphics/urt/files/patch-lib::rle_global.c (props changed) head/graphics/urt/files/patch-makefile.hdr (props changed) head/graphics/urt/files/patch-makefile.src (props changed) head/graphics/urt/files/patch-makefile.tlr (props changed) head/graphics/urt/files/patch-man::makefile.src (props changed) head/graphics/urt/files/patch-tools::makefile.src (props changed) head/graphics/vcg/files/patch-aa (props changed) head/graphics/vcg/files/patch-ab (props changed) head/graphics/vcg/files/patch-ac (props changed) head/graphics/vcg/files/patch-ad (props changed) head/graphics/vcg/files/patch-ae (props changed) head/graphics/vcg/files/patch-af (props changed) head/graphics/vcg/files/patch-ag (props changed) head/graphics/vcg/files/patch-ah (props changed) head/graphics/vcg/files/patch-ai (props changed) head/graphics/vcg/files/patch-aj (props changed) head/graphics/vcg/files/patch-ak (props changed) head/graphics/vcg/files/patch-al (props changed) head/graphics/vcg/files/patch-am (props changed) head/graphics/vcg/files/patch-an (props changed) head/graphics/vcg/files/patch-ao (props changed) head/graphics/vcg/files/patch-ap (props changed) head/graphics/vigra/files/patch-include__vigra__mathutil.hxx (props changed) head/graphics/vips/files/patch-libsrc-conversion-im_tiff2vips.c (props changed) head/graphics/vips/files/patch-libsrc-conversion-im_vips2tiff.c (props changed) head/graphics/vips/files/patch-v4l (props changed) head/graphics/visionworkbench/files/patch-GdalIO.h (props changed) head/graphics/visionworkbench/files/patch-src__vw__FileIO__DiskImageResourcePNG.cc (props changed) head/graphics/visionworkbench/files/patch-src__vw__FileIO__JpegIO.h (props changed) head/graphics/visionworkbench/files/patch-src__vw__FileIO__MemoryImageResourcePNG.cc (props changed) head/graphics/visionworkbench/files/patch-src__vw__FileIO__PngIO.cc (props changed) head/graphics/visionworkbench/files/patch-tests (props changed) head/graphics/visprint/files/patch-visprint.c (props changed) head/graphics/volpack/files/patch-vp_global.h (props changed) head/graphics/whirlgif/files/patch-aa (props changed) head/graphics/white_dune/files/patch-src-pngLoad.c (props changed) head/graphics/white_dune/files/patch-src::Array.h (props changed) head/graphics/white_dune/files/patch-src::Makefile.in (props changed) head/graphics/white_dune/files/patch-src::SDLjoystick::bsd::SDL_sysjoystick.c (props changed) head/graphics/white_dune/files/patch-src::swt::rc::Makefile.in (props changed) head/graphics/white_dune/files/patch-src::swt::tests::Makefile.in (props changed) head/graphics/wmgrabimage/files/patch-GrabImage (props changed) head/graphics/wmgrabimage/files/patch-aa (props changed) head/graphics/wmgrabimage/files/patch-ab (props changed) head/graphics/wmgrabimage/files/patch-ac (props changed) head/graphics/wmicons/files/patch-Icons::Makefile.in (props changed) head/graphics/xbmbrowser/files/patch-a (props changed) head/graphics/xd3d/files/patch-Makefile (props changed) head/graphics/xd3d/files/patch-RULES.freeBSD (props changed) head/graphics/xdgagrab/files/patch-aa (props changed) head/graphics/xfig/files/patch-Imakefile (props changed) head/graphics/xfig/files/patch-main.c (props changed) head/graphics/xfig/files/patch-w_intersect.c (props changed) head/graphics/xfpovray/files/patch-aa (props changed) head/graphics/xfpovray/files/patch-ab (props changed) head/graphics/xfpovray/files/patch-ac (props changed) head/graphics/xfpovray/files/patch-ad (props changed) head/graphics/xfpovray/files/patch-ae (props changed) head/graphics/xfpovray/files/patch-af (props changed) head/graphics/xfractint/files/patch-Makefile (props changed) head/graphics/xfractint/files/patch-common__biginit.c (props changed) head/graphics/xfractint/files/patch-common__fractalb.c (props changed) head/graphics/xfractint/files/patch-common__fractals.c (props changed) head/graphics/xfractint/files/patch-common__frasetup.c (props changed) head/graphics/xfractint/files/patch-common__lsys.c (props changed) head/graphics/xfractint/files/patch-common__lsysf.c (props changed) head/graphics/xfractint/files/patch-common__memory.c (props changed) head/graphics/xfractint/files/patch-common__miscres.c (props changed) head/graphics/xfractint/files/patch-common__mpmath_c.c (props changed) head/graphics/xfractint/files/patch-common__prompts1.c (props changed) head/graphics/xfractint/files/patch-common__prompts2.c (props changed) head/graphics/xfractint/files/patch-common__soi.c (props changed) head/graphics/xfractint/files/patch-common__soi1.c (props changed) head/graphics/xfractint/files/patch-headers__port.h (props changed) head/graphics/xfractint/files/patch-unix__fpu087.c (props changed) head/graphics/xfractint/files/patch-unix__general.c (props changed) head/graphics/xfractint/files/patch-unix__unixscr.c (props changed) head/graphics/xli/files/patch-aa (props changed) head/graphics/xli/files/patch-png.c (props changed) head/graphics/xli/files/patch-reduce.c (props changed) head/graphics/xli/files/patch-rotate.c (props changed) head/graphics/xli/files/patch-tga.c (props changed) head/graphics/xli/files/patch-xli.c (props changed) head/graphics/xli/files/patch-xli.h (props changed) head/graphics/xli/files/patch-xpixmap.c (props changed) head/graphics/xli/files/patch-zoom.c (props changed) head/graphics/xmfract/files/patch-ac (props changed) head/graphics/xmfract/files/patch-ad (props changed) head/graphics/xmfract/files/patch-ae (props changed) head/graphics/xmfract/files/patch-af (props changed) head/graphics/xmfract/files/patch-ag (props changed) head/graphics/xmfract/files/patch-ah (props changed) head/graphics/xmfract/files/patch-src__window_size.c (props changed) head/graphics/xmms-dancingparticles/files/patch-parameters.cc (props changed) head/graphics/xmms-dflowers/files/patch-dflowers.c (props changed) head/graphics/xmms-dscope/files/patch-dscope.c (props changed) head/graphics/xmms-dspectogram/files/patch-dspectogram.c (props changed) head/graphics/xmms-dspectral/files/patch-dspectral.c (props changed) head/graphics/xmms-finespectrum/files/patch-ltmain.sh (props changed) head/graphics/xmms-iris/files/patch-ltmain.sh (props changed) head/graphics/xmms-jess/files/patch-draw.c (props changed) head/graphics/xmms-jess/files/patch-misc.c (props changed) head/graphics/xmms-jess/files/patch-renderer.c (props changed) head/graphics/xmms-nebulus/files/patch-ltmain.sh (props changed) head/graphics/xmms-paranormal/files/patch-actuators.c (props changed) head/graphics/xmms-paranormal/files/patch-paranormal.c (props changed) head/graphics/xmms-scivi/files/patch-src_glstuff.c (props changed) head/graphics/xmms-scivi/files/patch-src_presets.c (props changed) head/graphics/xmms-scivi/files/patch-src_scivi.h (props changed) head/graphics/xmorph/files/patch-Makefile.in (props changed) head/graphics/xmorph/files/patch-doc::xmorph.texinfo (props changed) head/graphics/xmorph/files/patch-libmorph_my__malloc.c (props changed) head/graphics/xournal/files/patch-Makefile.in (props changed) head/graphics/xpaint/files/patch-Makefile.in (props changed) head/graphics/xpaint/files/patch-rw_rwTable.c (props changed) head/graphics/xpaint/files/patch-util_Makefile (props changed) head/graphics/xpdf/files/patch-Makefile.in (props changed) head/graphics/xpdf/files/patch-gmem (props changed) head/graphics/xpdf/files/patch-splash_Makefile.in (props changed) head/graphics/xpdf/files/patch-splash_SplashFTFont.cc (props changed) head/graphics/xpdf/files/patch-xfont (props changed) head/graphics/xpdf/files/patch-xpdf_GlobalParams.cc (props changed) head/graphics/xpdf/files/patch-xpdf_GlobalParams.h (props changed) head/graphics/xpdf/files/patch-xpdf_Makefile.in (props changed) head/graphics/xpdf/files/patch-xpdf_Stream.cc (props changed) head/graphics/xpdf/files/patch-xpdf_XPDFViewer.cc (props changed) head/graphics/xpx/files/patch-aa (props changed) head/graphics/xsane/files/patch-xsane-save.c (props changed) head/graphics/xv/files/patch-Imakefile (props changed) head/graphics/xv/files/patch-config.h (props changed) head/graphics/xv/files/patch-xv.h (props changed) head/graphics/xv/files/patch-xvevent.c (props changed) head/graphics/xv/files/patch-xvgif.c (props changed) head/graphics/xv/files/patch-xvjpeg.c (props changed) head/graphics/xv/files/patch-xvmisc.c (props changed) head/graphics/xv/files/patch-xvpng.c (props changed) head/graphics/xv/files/patch-xvtext.c (props changed) head/graphics/xv/files/patch-xvvd.c (props changed) head/graphics/xzgv/files/patch-aa (props changed) head/graphics/xzgv/files/patch-ab (props changed) head/graphics/yafray/files/patch-SConstruct (props changed) head/graphics/yafray/files/patch-freebsd-settings.py (props changed) head/graphics/yafray/files/patch-src::loader::gram_loader.h (props changed) head/graphics/yafray/files/patch-src_yafraycore_ccthreads.h (props changed) head/graphics/yafray/files/patch-src_yafraycore_threadedscene.cc (props changed) head/graphics/yafray/files/patch-src_yafraycore_y_alloc.h (props changed) head/graphics/yagf/files/patch-CMakeLists.txt (props changed) head/graphics/zbar/files/patch-Makefile.in (props changed) head/graphics/zgv/files/patch-readpng.c (props changed) head/graphics/zgv/files/patch-zgv-5.9-cmyk-ycck-fix.diff (props changed) head/graphics/zimg/files/patch-zimg.c (props changed) head/graphics/zint/files/patch-backend_CMakeLists.txt (props changed) head/graphics/zint/files/patch-backend_code1.c (props changed) head/graphics/zint/files/patch-backend_maxicode.c (props changed) head/graphics/zphoto/files/patch-configure (props changed) head/graphics/zphoto/files/patch-exif.c (props changed) head/graphics/zphoto/files/patch-util.c (props changed) head/hebrew/he2/files/patch-HebrewEditor.cxx (props changed) head/hebrew/he2/files/patch-Makefile.in (props changed) head/hebrew/he2/files/patch-aDictionary.cxx (props changed) head/hebrew/he2/files/patch-he2.in (props changed) head/hebrew/he2/files/patch-he2::hebSegment.cxx (props changed) head/hebrew/he2/files/patch-he2::hebString.cxx (props changed) head/hebrew/he2/files/patch-realCxx (props changed) head/hungarian/ispell/files/patch-Makefile (props changed) head/irc/bip/files/patch-bip-269 (props changed) head/irc/bitchx/files/patch-source-Makefile.in (props changed) head/irc/bnc/files/patch-aa (props changed) head/irc/bnc/files/patch-ab (props changed) head/irc/bobot++/files/patch-documentation__bobot++.texinfo (props changed) head/irc/charybdis/files/patch-tools-Makefile-in (props changed) head/irc/ctrlproxy/files/patch-Makefile (props changed) head/irc/ctrlproxy/files/patch-Makefile.settings.in (props changed) head/irc/ctrlproxy/files/patch-lib_connection.c (props changed) head/irc/ctrlproxy/files/patch-lib_listener.h (props changed) head/irc/ctrlproxy/files/patch-src_gnutls.c (props changed) head/irc/dancer/files/patch-src::list.h (props changed) head/irc/darkbot/files/patch-Makefile (props changed) head/irc/darkbot/files/patch-darkbot.c (props changed) head/irc/dircproxy/files/patch-doc-Makefile.in (props changed) head/irc/eggdrop-devel/files/patch-eggdrop.conf (props changed) head/irc/eggdrop/files/patch-eggdrop.conf (props changed) head/irc/eggdrop/files/patch-src__Makefile.in (props changed) head/irc/eggdrop/files/patch-src_eggdrop.h (props changed) head/irc/eggdrop/files/patch-src_main.c (props changed) head/irc/eggdrop/files/patch-src_mod_share.mod__share.c (props changed) head/irc/eggdrop/files/patch-src_modules.c (props changed) head/irc/epic5/files/patch-include_compat.h (props changed) head/irc/evangeline/files/patch-Makefile.in (props changed) head/irc/icbirc/files/patch-icb.c (props changed) head/irc/icbirc/files/patch-icbirc.c (props changed) head/irc/infobot/files/patch-src_DBM.pl (props changed) head/irc/inspircd/files/patch-make_template_main.mk (props changed) head/irc/irc/files/patch-support_config.h.dist (props changed) head/irc/irc2dc/files/patch-src__irc2dc.conf.dist (props changed) head/irc/ircII/files/patch-source_mksiginc.c (props changed) head/irc/ircd-ratbox-devel/files/patch-contrib_ircd-shortcut.pl (props changed) head/irc/ircd-ratbox-devel/files/patch-doc_Makefile.in (props changed) head/irc/ircd-ratbox-devel/files/patch-doc_example.conf (props changed) head/irc/ircd-ratbox-devel/files/patch-doc_example.efnet.conf (props changed) head/irc/ircd-ratbox-devel/files/patch-include_config.h (props changed) head/irc/ircd-ratbox/files/patch-contrib_ircd-shortcut.pl (props changed) head/irc/ircd-ratbox/files/patch-doc_Makefile.in (props changed) head/irc/ircd-ratbox/files/patch-doc_example.conf (props changed) head/irc/ircd-ratbox/files/patch-doc_example.efnet.conf (props changed) head/irc/ircd-ratbox/files/patch-include_config.h (props changed) head/irc/ircd-ru/files/patch-Makefile.in (props changed) head/irc/ircd-ru/files/patch-m_who.c (props changed) head/irc/ircd-ru/files/patch-paths.h.in (props changed) head/irc/ircd-ru/files/patch-rc4.c (props changed) head/irc/ircd-ru/files/patch-src_s_serv.c (props changed) head/irc/ircd-ru/files/patch-utmpx (props changed) head/irc/irssi-devel/files/patch-Makefile.in (props changed) head/irc/irssi-devel/files/patch-perl-Makefile (props changed) head/irc/irssi-otr/files/patch-CMakeLists.txt (props changed) head/irc/irssi-scripts/files/patch-scripts__ipupdate.pl (props changed) head/irc/irssi/files/patch-Makefile.in (props changed) head/irc/irssi/files/patch-core-network_openssl_c (props changed) head/irc/irssi/files/patch-perl-Makefile (props changed) head/irc/lostirc/files/patch-src_libirc_DCC.cpp (props changed) head/irc/lostirc/files/patch-src_libirc_Parser.cpp (props changed) head/irc/nefarious/files/patch-configure (props changed) head/irc/nefarious/files/patch-ircd_Makefile.in (props changed) head/irc/netwalker-ircc/files/patch-config.h (props changed) head/irc/netwalker-ircc/files/patch-netwalker.1 (props changed) head/irc/ngircd/files/patch-man::Makefile.in (props changed) head/irc/ngircd/files/patch-src::ngircd_Makefile.in (props changed) head/irc/ninja/files/patch-source::ircaux.c (props changed) head/irc/psybnc/files/patch-Makefile (props changed) head/irc/psybnc/files/patch-lang_english.lng (props changed) head/irc/psybnc/files/patch-lang_german.lng (props changed) head/irc/psybnc/files/patch-lang_italiano.lng (props changed) head/irc/psybnc/files/patch-src_match.c (props changed) head/irc/psybnc/files/patch-src_p_blowfish.c (props changed) head/irc/psybnc/files/patch-src_p_global.h (props changed) head/irc/psybnc/files/patch-src_p_idea.c (props changed) head/irc/psybnc/files/patch-src_p_memory.c (props changed) head/irc/psybnc/files/patch-src_p_string.c (props changed) head/irc/psybnc/files/patch-src_psybnc.c (props changed) head/irc/psybnc/files/patch-tools_autoconf.c (props changed) head/irc/quassel/files/patch-icons__CMakeLists.txt (props changed) head/irc/quirc/files/patch-aa (props changed) head/irc/quirc/files/patch-ab (props changed) head/irc/quirc/files/patch-ac (props changed) head/irc/quirc/files/patch-channel.cc (props changed) head/irc/quirc/files/patch-configure (props changed) head/irc/quirc/files/patch-format.cc (props changed) head/irc/quirc/files/patch-hash.cc (props changed) head/irc/quirc/files/patch-window.cc (props changed) head/irc/ratbox-services/files/patch-Makefile.in (props changed) head/irc/ratbox-services/files/patch-help_Makefile.in (props changed) head/irc/ratbox-services/files/patch-include_config.h (props changed) head/irc/ratbox-services/files/patch-langs_Makefile.in (props changed) head/irc/ratbox-services/files/patch-tools_dbupgrade.pl (props changed) head/irc/ratbox-services/files/patch-tools_generate-schema.pl (props changed) head/irc/rbot/files/patch-lib__rbot__load-gettext.rb (props changed) head/irc/sic/files/patch-aa (props changed) head/irc/sic/files/patch-ab (props changed) head/irc/simpleirc/files/patch-Makefile (props changed) head/irc/simpleirc/files/patch-config.mk (props changed) head/irc/sirc/files/patch-ssfe.c (props changed) head/irc/slirc/files/patch-Makefile (props changed) head/irc/slirc/files/patch-VFile.txt (props changed) head/irc/slirc/files/patch-check_slang (props changed) head/irc/slirc/files/patch-lru.c (props changed) head/irc/slirc/files/patch-slirc.c (props changed) head/irc/slirc/files/patch-slload.c (props changed) head/irc/slirc/files/patch-utils-module.c (props changed) head/irc/slirc/files/patch-vfile-module.c (props changed) head/irc/solid-ircd/files/patch-configure (props changed) head/irc/srvx/files/patch-Makefile.in (props changed) head/irc/srvx/files/patch-src-proto-p10.c (props changed) head/irc/thales/files/patch-thales.conf.default (props changed) head/irc/tircproxy/files/patch-Makefile.in (props changed) head/irc/tircproxy/files/patch-tircproxy.c (props changed) head/irc/tircproxy/files/patch-tircproxy.h (props changed) head/irc/trickyirc/files/patch-ab (props changed) head/irc/trickyirc/files/patch-core-string_gapsearch.c (props changed) head/irc/trickyirc/files/patch-core-threading_configload.c (props changed) head/irc/trickyirc/files/patch-core-threading_core.c (props changed) head/irc/trickyirc/files/patch-core_make_make.mk (props changed) head/irc/trickyirc/files/patch-tricky_accept.c (props changed) head/irc/trickyirc/files/patch-tricky_ircservermanager.c (props changed) head/irc/trickyirc/files/patch-tricky_main.c (props changed) head/irc/undernet-ircu/files/patch-ircd-Makefile.in (props changed) head/irc/unreal/files/patch-Makefile.in (props changed) head/irc/unreal/files/patch-config.h (props changed) head/irc/unreal/files/patch-example.conf (props changed) head/irc/unreal/files/patch-ircd.c (props changed) head/irc/unreal/files/patch-modules.c (props changed) head/irc/unreal/files/patch-s_conf.c (props changed) head/irc/unreal/files/patch-url.c (props changed) head/irc/weechat-devel/files/patch-cmake-FindLua_cmake (props changed) head/irc/weechat-devel/files/patch-cmake-FindRuby_cmake (props changed) head/irc/weechat-devel/files/patch-cmake-FindTCL_cmake (props changed) head/irc/weechat/files/patch-cmake-FindTCL_cmake (props changed) head/irc/xchat-fish/files/patch-FiSH.c (props changed) head/irc/xchat-ruby/files/patch-Makefile (props changed) head/irc/xchat/files/patch-configure (props changed) head/irc/xchat/files/patch-socks (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-conv-cvt_head.h (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-conv-cvt_key.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-conv-cvt_read.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-bcopy.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-fake-rfc2553.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-getopt1.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-hindo.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-mkdir.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-msg.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-pwd.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-py_table.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-revdic.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-server_env.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-etc-sstrings.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-include-fake-rfc2553.h (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-include-wnn_os.h (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jd-jserverrc (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jd-serverdefs (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jlib-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jlib-js.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jlib.V3-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jserver-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jserver-de.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jserver-de_header.h (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jserver-do_filecom.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-jserver-initjserv.c (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-man-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-Wnn-romkan-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-Xwnmo-xwnmo-do_socket.c (props changed) head/japanese/FreeWnn-lib/files/patch-Xwnmo-xwnmo-do_xjpdrct.c (props changed) head/japanese/FreeWnn-lib/files/patch-aclocal.m4 (props changed) head/japanese/FreeWnn-lib/files/patch-cWnn-cd-cserverrc (props changed) head/japanese/FreeWnn-lib/files/patch-cWnn-etc-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-cWnn-include-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-cWnn-jlib-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-cWnn-jserver-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-cWnn-romkan-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-cWnn-td-tserverrc (props changed) head/japanese/FreeWnn-lib/files/patch-config.h.in (props changed) head/japanese/FreeWnn-lib/files/patch-configure (props changed) head/japanese/FreeWnn-lib/files/patch-configure.in (props changed) head/japanese/FreeWnn-lib/files/patch-kWnn-etc-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-kWnn-include-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-kWnn-jlib-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-kWnn-jserver-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-kWnn-kd-kserverrc (props changed) head/japanese/FreeWnn-lib/files/patch-kWnn-romkan-Makefile.in (props changed) head/japanese/FreeWnn-lib/files/patch-ltmain.sh (props changed) head/japanese/FreeWnn-lib/files/patch-makerule.mk.in (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-conv-cvt_head.h (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-conv-cvt_key.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-conv-cvt_read.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-bcopy.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-fake-rfc2553.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-getopt1.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-hindo.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-mkdir.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-msg.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-pwd.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-py_table.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-revdic.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-server_env.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-etc-sstrings.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-include-fake-rfc2553.h (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-include-wnn_os.h (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jd-jserverrc (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jd-serverdefs (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jlib-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jlib-js.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jlib.V3-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jserver-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jserver-de.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jserver-de_header.h (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jserver-do_filecom.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-jserver-initjserv.c (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-man-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-Wnn-romkan-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-Xwnmo-xwnmo-do_socket.c (props changed) head/japanese/FreeWnn-server/files/patch-Xwnmo-xwnmo-do_xjpdrct.c (props changed) head/japanese/FreeWnn-server/files/patch-aclocal.m4 (props changed) head/japanese/FreeWnn-server/files/patch-cWnn-cd-cserverrc (props changed) head/japanese/FreeWnn-server/files/patch-cWnn-etc-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-cWnn-include-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-cWnn-jlib-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-cWnn-jserver-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-cWnn-romkan-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-cWnn-td-tserverrc (props changed) head/japanese/FreeWnn-server/files/patch-config.h.in (props changed) head/japanese/FreeWnn-server/files/patch-configure (props changed) head/japanese/FreeWnn-server/files/patch-configure.in (props changed) head/japanese/FreeWnn-server/files/patch-kWnn-etc-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-kWnn-include-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-kWnn-jlib-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-kWnn-jserver-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-kWnn-kd-kserverrc (props changed) head/japanese/FreeWnn-server/files/patch-kWnn-romkan-Makefile.in (props changed) head/japanese/FreeWnn-server/files/patch-ltmain.sh (props changed) head/japanese/FreeWnn-server/files/patch-makerule.mk.in (props changed) head/japanese/Wnn6-lib/files/patch-README (props changed) head/japanese/Wnn6-lib/files/patch-Wnn-jlib-js.c (props changed) head/japanese/Wnn6-lib/files/patch-aa (props changed) head/japanese/Wnn6-lib/files/patch-ab (props changed) head/japanese/Wnn6-lib/files/patch-ac (props changed) head/japanese/Wnn6-lib/files/patch-ad (props changed) head/japanese/Wnn7-lib/files/patch-README (props changed) head/japanese/Wnn7-lib/files/patch-Wnn_etc_bdic.c (props changed) head/japanese/Wnn7-lib/files/patch-Wnn_jlib_jl.c (props changed) head/japanese/Wnn7-lib/files/patch-Wnn_jlib_js.c (props changed) head/japanese/Wnn7-lib/files/patch-aa (props changed) head/japanese/Wnn7-lib/files/patch-ab (props changed) head/japanese/Wnn7-lib/files/patch-ac (props changed) head/japanese/a2ps/files/patch-a2ps-j (props changed) head/japanese/ack/files/patch-aa (props changed) head/japanese/ack/files/patch-kmain.c (props changed) head/japanese/another-htmllint/files/patch-aa (props changed) head/japanese/another-htmllint/files/patch-ab (props changed) head/japanese/canna-lib/files/patch-Canna.conf (props changed) head/japanese/canna-lib/files/patch-Imakefile (props changed) head/japanese/canna-lib/files/patch-cmd-catdic-Imakefile (props changed) head/japanese/canna-lib/files/patch-dic-phono-Imakefile (props changed) head/japanese/canna-lib/files/patch-lib-RK-ncache.c (props changed) head/japanese/canna-server/files/patch-Canna.conf (props changed) head/japanese/canna-server/files/patch-Imakefile (props changed) head/japanese/canna-server/files/patch-cmd-catdic-Imakefile (props changed) head/japanese/canna-server/files/patch-lib-RK-ncache.c (props changed) head/japanese/canna-server/files/patch-server-comm.c (props changed) head/japanese/cannadic/files/patch-ac (props changed) head/japanese/chasen-base/files/patch-dartsdic.cpp (props changed) head/japanese/cmigemo/files/patch-Makefile (props changed) head/japanese/cmigemo/files/patch-compile_Make_gcc.mak (props changed) head/japanese/cmigemo/files/patch-compile_config.mk.in (props changed) head/japanese/cmigemo/files/patch-compile_unix.mak (props changed) head/japanese/cmigemo/files/patch-configure (props changed) head/japanese/cmigemo/files/patch-dict_dict.mak (props changed) head/japanese/cmigemo/files/patch-src_wordbuf.c (props changed) head/japanese/ctags/files/patch-Makefile.in (props changed) head/japanese/ctags/files/patch-man-ctags.1 (props changed) head/japanese/dbskkd-cdb/files/patch-Makefile (props changed) head/japanese/dbskkd-cdb/files/patch-READMEJP (props changed) head/japanese/dbskkd-cdb/files/patch-makeskkcdb.sh (props changed) head/japanese/ddskk/files/patch-Makefile (props changed) head/japanese/dvipsk/files/patch-texk::kpathsea::texmf.in-teTeX (props changed) head/japanese/dvipsk/files/patch-texk::make::paths.mk (props changed) head/japanese/e2ps/files/patch-ac (props changed) head/japanese/eb/files/patch-eb-book.c (props changed) head/japanese/ebnetd/files/patch-configure (props changed) head/japanese/ebnetd/files/patch-doc-ja_ebnetd-ja.texi (props changed) head/japanese/ebnetd/files/patch-doc_ebnetd.texi (props changed) head/japanese/ebview-gtk2/files/patch-configure (props changed) head/japanese/ebview/files/patch-aclocal.m4 (props changed) head/japanese/ebview/files/patch-config.h.in (props changed) head/japanese/ebview/files/patch-configure.in (props changed) head/japanese/ebview/files/patch-src::ebview-client.c (props changed) head/japanese/ebview/files/patch-src::ebview.c (props changed) head/japanese/ebview/files/patch-src_eb.c (props changed) head/japanese/ebview/files/patch-src_websearch.c (props changed) head/japanese/edict-utf-8/files/patch-enamdict.euc-jp (props changed) head/japanese/edict/files/patch-Makefile (props changed) head/japanese/edict/files/patch-exjdxgen.c (props changed) head/japanese/edict/files/patch-xjdfrontend.c (props changed) head/japanese/edict/files/patch-xjdic.h (props changed) head/japanese/edict/files/patch-xjdxgen.c (props changed) head/japanese/edyvalue/files/patch-EdyValue.c (props changed) head/japanese/eijiro-fpw/files/patch-aa (props changed) head/japanese/elvis/files/patch-ab (props changed) head/japanese/elvis/files/patch-ac (props changed) head/japanese/elvis/files/patch-ad (props changed) head/japanese/elvis/files/patch-ae (props changed) head/japanese/elvis/files/patch-config.h (props changed) head/japanese/elvis/files/patch-elvrec.c (props changed) head/japanese/emacs-emcws/files/patch-Makefile.in (props changed) head/japanese/emacs-emcws/files/patch-configure.in (props changed) head/japanese/emacs-emcws/files/patch-lib-src:Makefile.in (props changed) head/japanese/emacs-emcws/files/patch-lib-src:movemail.c (props changed) head/japanese/emacs-emcws/files/patch-lisp:Makefile.in (props changed) head/japanese/emacs-emcws/files/patch-lisp:help.el (props changed) head/japanese/emacs-emcws/files/patch-lisp:loadup.el (props changed) head/japanese/emacs-emcws/files/patch-lisp:vc-hooks.el (props changed) head/japanese/emacs-emcws/files/patch-lisp_dired.el (props changed) head/japanese/emacs-emcws/files/patch-man:Makefile.in (props changed) head/japanese/emacs-emcws/files/patch-src:Makefile.in (props changed) head/japanese/emacs-emcws/files/patch-src:alloc.c (props changed) head/japanese/emacs-emcws/files/patch-src:m:alpha.h (props changed) head/japanese/emacs-emcws/files/patch-src:m:amd64.h (props changed) head/japanese/emacs-emcws/files/patch-src:m:ia64.h (props changed) head/japanese/emacs-emcws/files/patch-src:m:sparc.h (props changed) head/japanese/emacs-emcws/files/patch-src:mem-limits.h (props changed) head/japanese/emacs-emcws/files/patch-src:process.c (props changed) head/japanese/emacs-emcws/files/patch-src:s:freebsd.h (props changed) head/japanese/emacs-emcws/files/patch-src:wnnfns.c (props changed) head/japanese/emacs-emcws/files/patch-src:xterm.c (props changed) head/japanese/emacs-emcws/files/patch-src:xterm.h (props changed) head/japanese/epwutil/files/patch-makefile.unx (props changed) head/japanese/esecanna-module-vje30/files/patch-aa (props changed) head/japanese/esecanna/files/patch-ac (props changed) head/japanese/esecanna/files/patch-ad (props changed) head/japanese/eterm/files/extra-patch-configure (props changed) head/japanese/eterm/files/extra-patch-src:command.c (props changed) head/japanese/eterm/files/extra-patch-src:defaultfont.h (props changed) head/japanese/eterm/files/extra-patch-src:feature.h (props changed) head/japanese/font-mplus/files/patch-install_mplus_fonts (props changed) head/japanese/gawk/files/patch-ac (props changed) head/japanese/gawk/files/patch-ad (props changed) head/japanese/gawk/files/patch-sec1 (props changed) head/japanese/gqmpeg/files/extra-patch-src::japanese_tag.c (props changed) head/japanese/gqmpeg/files/extra-patch-src::japanese_tag.h (props changed) head/japanese/gqmpeg/files/extra-patch-src::mpg_tagutil.c (props changed) head/japanese/groff/files/patch-Makefile.comm (props changed) head/japanese/groff/files/patch-contrib-mom-Makefile.sub (props changed) head/japanese/groff/files/patch-doc:Makefile.sub (props changed) head/japanese/groff/files/patch-src:libs:libgroff:encoding.cc (props changed) head/japanese/groff/files/patch-src:roff:nroff:nroff.sh (props changed) head/japanese/groff/files/patch-tmac:troffrc (props changed) head/japanese/gtkicq/files/patch-aa (props changed) head/japanese/gtkicq/files/patch-ab (props changed) head/japanese/gtkicq/files/patch-ac (props changed) head/japanese/ibus-anthy/files/patch-configure (props changed) head/japanese/ibus-anthy/files/patch-engine_Makefile.in (props changed) head/japanese/ibus-anthy/files/patch-po_Makefile.in.in (props changed) head/japanese/ibus-anthy/files/patch-setup_main.py (props changed) head/japanese/im-ja/files/patch-src_Makefile.in (props changed) head/japanese/im-ja/files/patch-src_helper_helper-socket.c (props changed) head/japanese/im-ja/files/patch-src_xim_Makefile.in (props changed) head/japanese/jadetex-ptex/files/patch-Makefile (props changed) head/japanese/jadetex-ptex/files/patch-README.jadetex-ptex (props changed) head/japanese/jadetex-ptex/files/patch-jadetex.dtx (props changed) head/japanese/jadetex-ptex/files/patch-mlnames.sty (props changed) head/japanese/jcode.pl/files/patch-jcode.pl (props changed) head/japanese/jed/files/patch-aa (props changed) head/japanese/jed/files/patch-ab (props changed) head/japanese/jed/files/patch-ac (props changed) head/japanese/jed/files/patch-ad (props changed) head/japanese/jed/files/patch-ae (props changed) head/japanese/jed/files/patch-af (props changed) head/japanese/jed/files/patch-ag (props changed) head/japanese/jmode/files/patch-Makefile.in (props changed) head/japanese/jmode/files/patch-aa (props changed) head/japanese/jstrings/files/patch-remove-typo (props changed) head/japanese/jstrings/files/patch-string-cp932 (props changed) head/japanese/jstrings/files/patch-string-eucjp (props changed) head/japanese/jstrings/files/patch-utf8-off (props changed) head/japanese/jvim3/files/patch-mkcmdtab.c (props changed) head/japanese/jvim3/files/patch-src-makjunix.mak (props changed) head/japanese/jvim3/files/patch-src-term.c (props changed) head/japanese/jvim3/files/patch-src::unix.c (props changed) head/japanese/k12/files/patch-aa (props changed) head/japanese/k12/files/patch-ab (props changed) head/japanese/kasumi/files/patch-KasumiException.hxx (props changed) head/japanese/kbanner/files/patch-aa (props changed) head/japanese/kbanner/files/patch-kbanner.1 (props changed) head/japanese/kcc/files/patch-aa (props changed) head/japanese/kcc/files/patch-ab (props changed) head/japanese/kdrill/files/patch-Imakefile (props changed) head/japanese/kdrill/files/patch-makedic-Makefile (props changed) head/japanese/kinput2/files/patch-cmd_Kinput2.ad (props changed) head/japanese/kinput2/files/patch-lib_CcWnn.c (props changed) head/japanese/kinput2/files/patch-lib_IMProto.c (props changed) head/japanese/kinput2/files/patch-lib_cconv.c (props changed) head/japanese/kinput2/files/patch-lib_imlib_imconv.c (props changed) head/japanese/kinput2/files/patch-lib_imlib_imfuncs.h (props changed) head/japanese/kinput2/files/patch-lib_imlib_imxport.c (props changed) head/japanese/kon2-16dot/files/patch-Makefile.FreeBSD (props changed) head/japanese/kon2-16dot/files/patch-doc_CHANGES (props changed) head/japanese/kon2-16dot/files/patch-doc_kon.1 (props changed) head/japanese/kon2-16dot/files/patch-font_Makefile.FreeBSD (props changed) head/japanese/kon2-16dot/files/patch-font_fld.c (props changed) head/japanese/kon2-16dot/files/patch-font_fontx2.c (props changed) head/japanese/kon2-16dot/files/patch-font_minix.c (props changed) head/japanese/kon2-16dot/files/patch-include_defs.h (props changed) head/japanese/kon2-16dot/files/patch-include_fnld.h (props changed) head/japanese/kon2-16dot/files/patch-include_mem.h (props changed) head/japanese/kon2-16dot/files/patch-include_term.h (props changed) head/japanese/kon2-16dot/files/patch-include_version.h (props changed) head/japanese/kon2-16dot/files/patch-include_vga.h (props changed) head/japanese/kon2-16dot/files/patch-include_vt.h (props changed) head/japanese/kon2-16dot/files/patch-kon.cfg.FreeBSD (props changed) head/japanese/kon2-16dot/files/patch-lib_coding.c (props changed) head/japanese/kon2-16dot/files/patch-lib_font.c (props changed) head/japanese/kon2-16dot/files/patch-lib_getcap.c (props changed) head/japanese/kon2-16dot/files/patch-lib_mem.c (props changed) head/japanese/kon2-16dot/files/patch-src_Makefile.FreeBSD (props changed) head/japanese/kon2-16dot/files/patch-src_child.c (props changed) head/japanese/kon2-16dot/files/patch-src_display_j31sx.c (props changed) head/japanese/kon2-16dot/files/patch-src_display_s3.c (props changed) head/japanese/kon2-16dot/files/patch-src_display_svga.c (props changed) head/japanese/kon2-16dot/files/patch-src_display_vga.c (props changed) head/japanese/kon2-16dot/files/patch-src_errors.c (props changed) head/japanese/kon2-16dot/files/patch-src_fnld.c (props changed) head/japanese/kon2-16dot/files/patch-src_main.c (props changed) head/japanese/kon2-16dot/files/patch-src_mouse.c (props changed) head/japanese/kon2-16dot/files/patch-src_term.c (props changed) head/japanese/kon2-16dot/files/patch-src_utmp.c (props changed) head/japanese/kon2-16dot/files/patch-src_utmpx.c (props changed) head/japanese/kon2-16dot/files/patch-src_vc.c (props changed) head/japanese/kon2-16dot/files/patch-src_vt.c (props changed) head/japanese/kpcal/files/patch-Makefile (props changed) head/japanese/kterm/files/extra-patch-Tektronix (props changed) head/japanese/kterm/files/extra-patch-Xaw3d (props changed) head/japanese/kterm/files/extra-patch-neXtaw (props changed) head/japanese/kterm/files/patch-aa (props changed) head/japanese/kterm/files/patch-ab (props changed) head/japanese/kterm/files/patch-ac (props changed) head/japanese/kterm/files/patch-ad (props changed) head/japanese/kterm/files/patch-ae (props changed) head/japanese/kterm/files/patch-af (props changed) head/japanese/kterm/files/patch-main.c (props changed) head/japanese/kterm/files/patch-menu.c (props changed) head/japanese/kterm/files/patch-scrollbar.c (props changed) head/japanese/lambdamoo/files/patch-aa (props changed) head/japanese/lambdamoo/files/patch-configure (props changed) head/japanese/lambdamoo/files/patch-configure.in (props changed) head/japanese/latex2html/files/patch-ca (props changed) head/japanese/less/files/patch-aa (props changed) head/japanese/less/files/patch-ac (props changed) head/japanese/less/files/patch-charset.c (props changed) head/japanese/less/files/patch-filename.c (props changed) head/japanese/less/files/patch-regex_cs.c (props changed) head/japanese/libjcode/files/patch-aa (props changed) head/japanese/libslang/files/patch-aa (props changed) head/japanese/libslang/files/patch-ac (props changed) head/japanese/libslang/files/patch-ad (props changed) head/japanese/libslang/files/patch-src-slkanji.h (props changed) head/japanese/lipsf/files/patch-ab (props changed) head/japanese/lipsf/files/patch-ac (props changed) head/japanese/lipsf/files/patch-mkmfsed.c (props changed) head/japanese/lookup/files/patch-ab (props changed) head/japanese/lookup/files/patch-lisp-ndic.el (props changed) head/japanese/lynx-current/files/patch-aa (props changed) head/japanese/lynx-current/files/patch-src-GridText.c (props changed) head/japanese/lynx/files/patch-aa (props changed) head/japanese/lynx/files/patch-src-GridText.c (props changed) head/japanese/mailman/files/extra-patch-Mailman-Cgi-private.py (props changed) head/japanese/mailman/files/patch-Mailman-Defaults.py.in (props changed) head/japanese/mailman/files/patch-Mailman-htmlformat.py (props changed) head/japanese/mailman/files/patch-configure.in (props changed) head/japanese/mailman/files/patch-misc-mailman.in (props changed) head/japanese/makejvf/files/patch-Makefile (props changed) head/japanese/man/files/patch-Makefile.inc (props changed) head/japanese/man/files/patch-aa (props changed) head/japanese/man/files/patch-ab (props changed) head/japanese/man/files/patch-jman.man (props changed) head/japanese/man/files/patch-jman.man.eng (props changed) head/japanese/man/files/patch-man-Makefile (props changed) head/japanese/mell/files/patch-Makefile.am (props changed) head/japanese/mendexk-euc/files/patch-Makefile.in (props changed) head/japanese/mendexk-euc/files/patch-configure (props changed) head/japanese/mh/files/patch-ao (props changed) head/japanese/mh/files/patch-configure (props changed) head/japanese/mh/files/patch-h:mh.h (props changed) head/japanese/mh/files/patch-sbr:concat.c (props changed) head/japanese/mh/files/patch-uip:rcvtty.c (props changed) head/japanese/mh/files/patch-uip:slocal.c (props changed) head/japanese/mh/files/patch-uip:vmh.c (props changed) head/japanese/mh/files/patch-uip_msh.c (props changed) head/japanese/mh/files/patch-uip_prompter.c (props changed) head/japanese/mh/files/patch-uip_trmsbr.c (props changed) head/japanese/migemo/files/extra-patch-Makefile.am (props changed) head/japanese/migemo/files/extra-patch-Makefile.am.ruby19 (props changed) head/japanese/migemo/files/extra-patch-configure.in (props changed) head/japanese/migemo/files/extra-patch-configure.in.ruby19 (props changed) head/japanese/migemo/files/extra-patch-genchars.sh (props changed) head/japanese/migemo/files/extra-patch-migemo (props changed) head/japanese/migemo/files/extra-patch-migemo-cache.rb (props changed) head/japanese/migemo/files/extra-patch-migemo-client (props changed) head/japanese/migemo/files/extra-patch-migemo-convert.rb (props changed) head/japanese/migemo/files/extra-patch-migemo-grep (props changed) head/japanese/migemo/files/extra-patch-migemo-index.rb (props changed) head/japanese/migemo/files/extra-patch-migemo-server (props changed) head/japanese/migemo/files/extra-patch-migemo.rb.in (props changed) head/japanese/migemo/files/extra-patch-tests_Makefile.am (props changed) head/japanese/migemo/files/patch-migemo.el.in (props changed) head/japanese/ming/files/patch-mingpp.h (props changed) head/japanese/ming/files/patch-raw2adpcm.c (props changed) head/japanese/ming/files/patch-src_actioncompiler_swf4compiler.flex (props changed) head/japanese/ming/files/patch-src_actioncompiler_swf4compiler.y (props changed) head/japanese/ming/files/patch-src_actioncompiler_swf5compiler.flex (props changed) head/japanese/ming/files/patch-src_actioncompiler_swf5compiler.y (props changed) head/japanese/ming/files/patch-util_gif2dbl.c (props changed) head/japanese/ming/files/patch-util_gif2mask.c (props changed) head/japanese/ming/files/patch-util_png2dbl.c (props changed) head/japanese/monafonts/files/patch-aa (props changed) head/japanese/mozc-server/files/patch-base_base.gyp (props changed) head/japanese/mozc-server/files/patch-base_compiler_specific.h (props changed) head/japanese/mozc-server/files/patch-base_iconv.cc (props changed) head/japanese/mozc-server/files/patch-base_logging.cc (props changed) head/japanese/mozc-server/files/patch-base_process.cc (props changed) head/japanese/mozc-server/files/patch-build_mozc.py (props changed) head/japanese/mozc-server/files/patch-build_tools_util.py (props changed) head/japanese/mozc-server/files/patch-gui-qt_libraries.gypi (props changed) head/japanese/mozc-server/files/patch-gui_about_dialog_about_dialog.cc (props changed) head/japanese/mozc-server/files/patch-gyp_common.gypi (props changed) head/japanese/mozc-server/files/patch-ipc_ipc_path_manager.cc (props changed) head/japanese/mozc-server/files/patch-ipc_unix_ipc.cc (props changed) head/japanese/mozc-server/files/patch-server_mozc_server.cc (props changed) head/japanese/mozc-server/files/patch-third_party_gyp_pylib_gyp_common.py (props changed) head/japanese/mozc-server/files/patch-third_party_gyp_pylib_gyp_generator_make.py (props changed) head/japanese/mozc-server/files/patch-unix_emacs_mozc.el (props changed) head/japanese/mozc-server/files/patch-unix_ibus_gen_mozc_xml.py (props changed) head/japanese/mozc-server/files/patch-unix_ibus_ibus.gyp (props changed) head/japanese/mozc-server/files/patch-unix_ibus_mozc_engine.cc (props changed) head/japanese/mozc-server/files/patch-unix_ibus_path_util.cc (props changed) head/japanese/mozc-server/files/patch-unix_ibus_selection_monitor.cc (props changed) head/japanese/mtools/files/patch-2 (props changed) head/japanese/mtools/files/patch-a (props changed) head/japanese/mtools/files/patch-b (props changed) head/japanese/mtools/files/patch-c (props changed) head/japanese/mtools/files/patch-d (props changed) head/japanese/mtools/files/patch-e (props changed) head/japanese/multiskkserv/files/patch-src:multiskkserv-ctl.c (props changed) head/japanese/mutt-devel/files/extra-patch-nodoc-contrib (props changed) head/japanese/mutt-devel/files/patch-02 (props changed) head/japanese/mutt-devel/files/patch-Makefile.am.doc (props changed) head/japanese/mutt-devel/files/patch-configure.ac (props changed) head/japanese/namazu/files/patch-aa (props changed) head/japanese/nethack34/files/patch-aa (props changed) head/japanese/nethack34/files/patch-ab (props changed) head/japanese/nethack34/files/patch-ac (props changed) head/japanese/nethack34/files/patch-ad (props changed) head/japanese/nethack34/files/patch-ae (props changed) head/japanese/nethack34/files/patch-af (props changed) head/japanese/nethack34/files/patch-ag (props changed) head/japanese/nethack34/files/patch-ai (props changed) head/japanese/nethack34/files/patch-ja (props changed) head/japanese/nethack34/files/patch-minimal_term (props changed) head/japanese/nhocr/files/patch-libnhocr__nhrec.cpp (props changed) head/japanese/nhocr/files/patch-libnhocr__ocrbase.cpp (props changed) head/japanese/nhocr/files/patch-ocropus__rec-nhocr-0.3.lua (props changed) head/japanese/nkf/files/patch-Makefile (props changed) head/japanese/ochusha/files/patch-for-glib (props changed) head/japanese/ochusha/files/patch-hanamogera-11 (props changed) head/japanese/ochusha/files/patch-hanamogera-15 (props changed) head/japanese/onew/files/patch-aa (props changed) head/japanese/onew/files/patch-ab (props changed) head/japanese/onew/files/patch-gcc42 (props changed) head/japanese/onew/files/patch-sys_sys.h (props changed) head/japanese/p5-PDFJ/files/patch-Matrix.pm (props changed) head/japanese/p5-PDFJ/files/patch-PDFJ.pm (props changed) head/japanese/p5-PDFJ/files/patch-PNG.pm (props changed) head/japanese/p5-PDFJ/files/patch-XPDFJ.pm (props changed) head/japanese/p5-Text-ChaSen/files/patch-ChaSen.xs (props changed) head/japanese/p5-Text-ChaSen/files/patch-Makefile.PL (props changed) head/japanese/p5-Text-MeCab/files/patch-Makefile.PL (props changed) head/japanese/p5-Text-MeCab/files/patch-Makefile.pm (props changed) head/japanese/plain2/files/patch-src-Makefile (props changed) head/japanese/plain2/files/patch-src::macro.c (props changed) head/japanese/plain2/files/patch-src__macro.h (props changed) head/japanese/plan/files/patch-print.c (props changed) head/japanese/platex-otf/files/patch-makeotf (props changed) head/japanese/platex-otf/files/patch-mkjvf (props changed) head/japanese/platex-otf/files/patch-script::mkaltutfvf.pl (props changed) head/japanese/platex-otf/files/patch-script::mkcidofm.pl (props changed) head/japanese/platex-otf/files/patch-script::mkcidvf.pl (props changed) head/japanese/platex-otf/files/patch-script::mkpropofm.pl (props changed) head/japanese/platex-otf/files/patch-script::mkutfvf.pl (props changed) head/japanese/prime-el/files/patch-Makefile.am (props changed) head/japanese/prime/files/patch-Makefile.am (props changed) head/japanese/prn/files/patch-ac (props changed) head/japanese/prn/files/patch-ad (props changed) head/japanese/prn/files/patch-ae (props changed) head/japanese/prn/files/patch-cmt.h (props changed) head/japanese/ptex/files/patch-libs-gd-gd_png.c (props changed) head/japanese/ptex/files/patch-texk-dvipdfm-pngimage.c (props changed) head/japanese/ptex/files/patch-texk-dvipdfm-thumbnail.c (props changed) head/japanese/ptex/files/patch-texk-pdftexdir-writepng.c (props changed) head/japanese/ptex/files/patch-texk-ps2pkm-type1.c (props changed) head/japanese/ptex/files/patch-texk-web2c-pdftexdir-writeimg.c (props changed) head/japanese/ptex/files/patch-texk::kpathsea::texmf.in-teTeX (props changed) head/japanese/ptex/files/patch-texk::make::paths.mk (props changed) head/japanese/ptex/files/patch-texk::web2c::Makefile.in (props changed) head/japanese/ptex/files/patch-texk::web2c::ptex-ver::Makefile.in (props changed) head/japanese/qkc/files/patch-Makefile (props changed) head/japanese/rogue_s/files/patch-aa (props changed) head/japanese/rogue_s/files/patch-ab (props changed) head/japanese/rogue_s/files/patch-ac (props changed) head/japanese/rskkserv/files/patch-extconf.rb.in (props changed) head/japanese/ruby-mecab/files/patch-extconf.rb (props changed) head/japanese/scim-honoka-plugin-romkan/files/patch-configure (props changed) head/japanese/scim-honoka-plugin-wnn/files/patch-configure (props changed) head/japanese/scim-honoka/files/patch-configure (props changed) head/japanese/scim-skk/files/patch-configure (props changed) head/japanese/scim-skk/files/patch-src-scim_skk_prefs.h (props changed) head/japanese/scim-tables/files/patch-Makefile.in (props changed) head/japanese/scim-tables/files/patch-configure (props changed) head/japanese/scim-tables/files/patch-icons-Makefile.in (props changed) head/japanese/scim-tables/files/patch-tables-Makefile.in (props changed) head/japanese/scim-tables/files/patch-tables-ja-Makefile.in (props changed) head/japanese/scim-tomoe/files/patch-configure (props changed) head/japanese/scim-uim/files/patch-src_scim_uim_imengine.cpp (props changed) head/japanese/sj3-lib/files/patch-sj3.tmpl (props changed) head/japanese/sj3-lib/files/patch-termios (props changed) head/japanese/sj3-server/files/patch-sj3.tmpl (props changed) head/japanese/sj3-server/files/patch-sj3h-sj.h (props changed) head/japanese/sj3-server/files/patch-termios (props changed) head/japanese/skkfep/files/patch-aa (props changed) head/japanese/skkfep/files/patch-ab (props changed) head/japanese/skkfep/files/patch-ad (props changed) head/japanese/skkfep/files/patch-ae (props changed) head/japanese/skkfep/files/patch-af (props changed) head/japanese/skkfep/files/patch-stty.c (props changed) head/japanese/skkinput3/files/patch-Imakefile (props changed) head/japanese/skkinput3/files/patch-Skkinput.conf (props changed) head/japanese/skkserv/files/patch-skkserv.c (props changed) head/japanese/skkserv/files/patch-skkserv.h (props changed) head/japanese/slrn/files/patch-aa (props changed) head/japanese/slrn/files/patch-ab (props changed) head/japanese/slrn/files/patch-ac (props changed) head/japanese/suicavalue/files/patch-SuicaValue.c (props changed) head/japanese/suikyo/files/patch-Makefile.am (props changed) head/japanese/suikyo/files/patch-elisp-Makefile.am (props changed) head/japanese/suikyo/files/patch-elisp-etc-Makefile.am (props changed) head/japanese/suikyo/files/patch-ruby-Makefile.am (props changed) head/japanese/tcl80/files/patch-aa (props changed) head/japanese/tcl80/files/patch-ab (props changed) head/japanese/tegaki-recognize/files/patch-setup.py (props changed) head/japanese/tex-ptex/files/patch-Makefile.in (props changed) head/japanese/tex-ptex/files/patch-web2c-Makefile.in (props changed) head/japanese/texinfo/files/patch-ab (props changed) head/japanese/tk80/files/patch-aa (props changed) head/japanese/tk80/files/patch-ab (props changed) head/japanese/tk80/files/patch-ac (props changed) head/japanese/tk80/files/patch-tkKinput2.c (props changed) head/japanese/tkhonyaku/files/patch-aa (props changed) head/japanese/today/files/patch-aa (props changed) head/japanese/today/files/patch-ae (props changed) head/japanese/today/files/patch-ag (props changed) head/japanese/today/files/patch-ai (props changed) head/japanese/today/files/patch-aj (props changed) head/japanese/today/files/patch-al (props changed) head/japanese/tomoe/files/patch-bindings_ruby_tomoe-rb-char.c (props changed) head/japanese/tomoe/files/patch-configure (props changed) head/japanese/tomoe/files/patch-module::dict::Makefile.in (props changed) head/japanese/trac/files/patch-notification.py (props changed) head/japanese/uim-tomoe-gtk/files/patch-configure (props changed) head/japanese/vftool/files/patch-aa (props changed) head/japanese/waeijiro-fpw/files/patch-aa (props changed) head/japanese/waeijiro-fpw/files/patch-waeijiro-fpw.pl (props changed) head/japanese/xdvik/files/patch-texk-xdvik-dvi-draw.c (props changed) head/japanese/xdvik/files/patch-texk-xdvik-xdvi.h (props changed) head/japanese/xdvik/files/patch-texk::kpathsea::Makefile.in (props changed) head/japanese/xdvik/files/patch-texk::kpathsea::texmf.in (props changed) head/japanese/xdvik/files/patch-texk::make::paths.mk (props changed) head/japanese/xdvik/files/patch-texk::xdvik::Makefile.in (props changed) head/japanese/xgate/files/patch-log.conf-dist (props changed) head/japanese/xgate/files/patch-web.xml (props changed) head/japanese/xjtext/files/patch-aa (props changed) head/japanese/xjtext/files/patch-ab (props changed) head/japanese/xjtext/files/patch-lex.l (props changed) head/japanese/xjtext/files/patch-parser.y (props changed) head/japanese/xjtext/files/patch-parsing.h (props changed) head/japanese/xjtext/files/patch-xfont.c (props changed) head/japanese/xjtext/files/patch-xjtext_main.c (props changed) head/japanese/xtr/files/patch-dosio.c (props changed) head/japanese/xtr/files/patch-main.c (props changed) head/japanese/xtr/files/patch-man-Makefile.in (props changed) head/japanese/xtr/files/patch-str-xstring.c (props changed) head/japanese/xtr/files/patch-xtr.h (props changed) head/japanese/xyaku/files/patch-Makefile.in (props changed) head/japanese/xyaku/files/patch-websearch.sh.in (props changed) head/japanese/yc.el/files/patch-yc.el (props changed) head/japanese/zangband/files/patch-aa (props changed) head/japanese/zangband/files/patch-ab (props changed) head/java/avis/files/patch-server-bin-avisd (props changed) head/java/avis/files/patch-server-build.xml (props changed) head/java/avis/files/patch-server-src-main-org-avis-federation-Link.java (props changed) head/java/berkeley-db/files/patch-junit (props changed) head/java/eclipse-cdt/files/patch-cdt-feature.xml (props changed) head/java/eclipse-cdt/files/patch-cdt.core-Makefile (props changed) head/java/eclipse-cdt/files/patch-cdt.core-fragment.xml (props changed) head/java/eclipse-cdt/files/patch-cdt.core-openpty.c (props changed) head/java/eclipse-cdt/files/patch-cdt.source-feature.xml (props changed) head/java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.properties (props changed) head/java/eclipse-cdt/files/patch-managedbuilder.gnu-plugin.xml (props changed) head/java/eclipse-cdt/files/patch-plugin.properties (props changed) head/java/eclipse-ecj/files/patch-build.xml (props changed) head/java/eclipse/files/patch-dependencyManifests (props changed) head/java/eclipse/files/patch-eclipse-build (props changed) head/java/eclipse/files/patch-generatedScripts (props changed) head/java/icedtea-web/files/patch-Makefile.in (props changed) head/java/icedtea-web/files/patch-launcher-javaws.in (props changed) head/java/jakarta-commons-httpclient/files/patch-build.xml (props changed) head/java/jakarta-commons-pool/files/patch-build.xml (props changed) head/java/jakarta-regexp/files/patch-build.xml (props changed) head/java/jasmin/files/patch-build.xml (props changed) head/java/java3d/files/patch-freebsd (props changed) head/java/jboss5/files/patch-pom-xml (props changed) head/java/jgrapht/files/patch-build.xml (props changed) head/java/jikes/files/patch-conrigure (props changed) head/java/jlint/files/patch-Makefile (props changed) head/java/jmf/files/patch-jmfcustomizer (props changed) head/java/jmf/files/patch-jmfinit (props changed) head/java/jmf/files/patch-jmfregistry (props changed) head/java/jmf/files/patch-jmstudio (props changed) head/java/jode/files/patch-bin-jode (props changed) head/java/jode/files/patch-configure (props changed) head/java/netrexx/files/patch-NetRexxC.sh-classpath (props changed) head/java/openjdk6/files/patch-ZoneInfoFile.java (props changed) head/java/openjdk6/files/patch-set (props changed) head/java/openjdk6/files/patch-test (props changed) head/java/openjdk7/files/patch-icedtea-web (props changed) head/java/sablevm-classpath/files/patch-lib-Makefile (props changed) head/java/servingxml/files/patch-servingxml (props changed) head/java/sqlitejdbc/files/patch-Makefile (props changed) head/java/sqlitejdbc/files/patch-src_org_sqlite_Conn.java (props changed) head/java/visualvm/files/patch-visualvm (props changed) head/korean/ami/files/patch-ca (props changed) head/korean/ami/files/patch-src_ami.c (props changed) head/korean/eterm/files/patch-aa (props changed) head/korean/eterm/files/patch-ab (props changed) head/korean/eterm/files/patch-ac (props changed) head/korean/eterm/files/patch-af (props changed) head/korean/eterm/files/patch-ah (props changed) head/korean/gtkcomm/files/patch-src-Makefile.in (props changed) head/korean/gtkcomm/files/patch-src-pcConfig.c (props changed) head/korean/gtkcomm/files/patch-src-pcPTY.c (props changed) head/korean/h2ps/files/patch-aa (props changed) head/korean/hcode/files/patch-Makefile (props changed) head/korean/hcode/files/patch-mail.c (props changed) head/korean/hpscat/files/patch-Makefile (props changed) head/korean/hunspell/files/patch-Makefile (props changed) head/korean/ibus-hangul/files/patch-setup-main.py (props changed) head/korean/ibus-hangul/files/patch-src-i18n.h (props changed) head/korean/kaistfonts/files/patch-aa (props changed) head/korean/libhangul/files/patch-Makefile.in (props changed) head/korean/libhangul/files/patch-test (props changed) head/korean/libhangul/files/patch-tools (props changed) head/korean/nhpf/files/patch-Makefile (props changed) head/korean/scim-tables/files/patch-Makefile.in (props changed) head/korean/scim-tables/files/patch-configure (props changed) head/korean/scim-tables/files/patch-icons-Makefile.in (props changed) head/korean/scim-tables/files/patch-tables-Makefile.in (props changed) head/korean/scim-tables/files/patch-tables-ko-Makefile.in (props changed) head/korean/uniksc/files/patch-makefile (props changed) head/korean/unzip/files/patch-fileio.c (props changed) head/korean/unzip/files/patch-unzip.c (props changed) head/korean/unzip/files/patch-unzip.h (props changed) head/lang/Gofer/files/patch-ab (props changed) head/lang/Gofer/files/patch-ac (props changed) head/lang/Gofer/files/patch-ad (props changed) head/lang/STk/files/patch-Mp::gmp-1.3.2::longlong.h (props changed) head/lang/STk/files/patch-Tcl-configure (props changed) head/lang/STk/files/patch-ab (props changed) head/lang/STk/files/patch-ac (props changed) head/lang/Sather/files/patch-Boot_sacomp.code_cgenCGEN1354269066xxxxxxxxx.c (props changed) head/lang/Sather/files/patch-Boot_sacomp.code_stringsxx.c (props changed) head/lang/Sather/files/patch-Emacs::sather-mode.texinfo (props changed) head/lang/Sather/files/patch-Emacs::sather-tutorial.texinfo (props changed) head/lang/Sather/files/patch-Emacs::sather.texinfo (props changed) head/lang/Sather/files/patch-System_Platforms_freebsd_header.h (props changed) head/lang/afnix/files/patch-cnf_bin_afnix-setup (props changed) head/lang/afnix/files/patch-cnf_mak_afnix-freebsd.mak (props changed) head/lang/afnix/files/patch-cnf_mak_afnix-rule.mak (props changed) head/lang/ats/files/patch-Makefile__bootstrap (props changed) head/lang/ats/files/patch-ccomp_runtime_GCATS_gcats1__misc.dats (props changed) head/lang/awka/files/patch-io.c (props changed) head/lang/bwbasic/files/patch-ab (props changed) head/lang/bwbasic/files/patch-bwbasic.h (props changed) head/lang/caml-light/files/patch-aa (props changed) head/lang/caml-light/files/patch-ab (props changed) head/lang/caml-light/files/patch-ad (props changed) head/lang/caml-light/files/patch-ae (props changed) head/lang/caml-light/files/patch-af (props changed) head/lang/caml-light/files/patch-ag (props changed) head/lang/caml-light/files/patch-contrib_caml-tex_Makefile (props changed) head/lang/caml-light/files/patch-contrib_camlsearch_doc_Makefile (props changed) head/lang/caml-light/files/patch-contrib_camlsearch_source_Makefile (props changed) head/lang/caml-light/files/patch-contrib_debugger_Makefile (props changed) head/lang/caml-light/files/patch-contrib_libgraph_Makefile (props changed) head/lang/caml-light/files/patch-contrib_libnum_Makefile (props changed) head/lang/caml-light/files/patch-contrib_libnum_bignum_Makefile (props changed) head/lang/caml-light/files/patch-contrib_libstr_Makefile (props changed) head/lang/caml-light/files/patch-contrib_libstr_regex_Makefile.in (props changed) head/lang/caml-light/files/patch-contrib_libunix_Makefile (props changed) head/lang/caml-light/files/patch-contrib_lorder_Makefile (props changed) head/lang/caml-light/files/patch-contrib_mletags_Makefile (props changed) head/lang/caml-light/files/patch-contrib_profiler_Makefile (props changed) head/lang/caml-light/files/patch-src_launch_Makefile (props changed) head/lang/caml-light/files/patch-src_launch_camlc.tpl (props changed) head/lang/caml-light/files/patch-src_launch_camllight.tpl (props changed) head/lang/caml-light/files/patch-src_launch_camlmktop.tpl (props changed) head/lang/caml-light/files/patch-src_runtime_Makefile (props changed) head/lang/caml-light/files/patch-src_yacc_main.c (props changed) head/lang/cfortran/files/patch-cfortran.h (props changed) head/lang/cint/files/patch-Makefile (props changed) head/lang/cint/files/patch-configure (props changed) head/lang/cint/files/patch-src-gcc3strm.cxx (props changed) head/lang/cint/files/patch-tool-INSTALLBIN (props changed) head/lang/clang-devel/files/patch-include_llvm_ADT_Triple.h (props changed) head/lang/clang-devel/files/patch-tools_clang_include_clang_Analysis_Analyses_FormatString.h (props changed) head/lang/clang-devel/files/patch-tools_clang_lib_Analysis_PrintfFormatString.cpp (props changed) head/lang/clang-devel/files/patch-tools_clang_lib_Headers_Makefile (props changed) head/lang/clang-devel/files/patch-tools_clang_lib_Sema_SemaChecking.cpp (props changed) head/lang/clang-devel/files/patch-tools_clang_tools_scan-build_scan-build (props changed) head/lang/clang-devel/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/lang/clang31/files/patch-tools_clang_include_clang_Analysis_Analyses_FormatString.h (props changed) head/lang/clang31/files/patch-tools_clang_lib_Analysis_PrintfFormatString.cpp (props changed) head/lang/clang31/files/patch-tools_clang_lib_Headers_Makefile (props changed) head/lang/clang31/files/patch-tools_clang_lib_Sema_SemaChecking.cpp (props changed) head/lang/clang31/files/patch-tools_clang_tools_scan-build_scan-build (props changed) head/lang/clang31/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/lang/clang32/files/patch-svn-r172354 (props changed) head/lang/clang32/files/patch-svn-r175919 (props changed) head/lang/clang32/files/patch-tools_clang_include_clang_Analysis_Analyses_FormatString.h (props changed) head/lang/clang32/files/patch-tools_clang_lib_Analysis_PrintfFormatString.cpp (props changed) head/lang/clang32/files/patch-tools_clang_lib_Headers_Makefile (props changed) head/lang/clang32/files/patch-tools_clang_lib_Sema_SemaChecking.cpp (props changed) head/lang/clang32/files/patch-tools_clang_tools_scan-build_scan-build (props changed) head/lang/clang32/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/lang/clang33/files/patch-tools_clang_docs_Makefile (props changed) head/lang/clang33/files/patch-tools_clang_include_clang_Analysis_Analyses_FormatString.h (props changed) head/lang/clang33/files/patch-tools_clang_lib_Analysis_PrintfFormatString.cpp (props changed) head/lang/clang33/files/patch-tools_clang_lib_Headers_Makefile (props changed) head/lang/clang33/files/patch-tools_clang_lib_Sema_SemaChecking.cpp (props changed) head/lang/clang33/files/patch-tools_clang_tools_scan-build_scan-build (props changed) head/lang/clang33/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/lang/clang34/files/patch-tools_clang_docs_Makefile (props changed) head/lang/clang34/files/patch-tools_clang_include_clang_Analysis_Analyses_FormatString.h (props changed) head/lang/clang34/files/patch-tools_clang_lib_Analysis_PrintfFormatString.cpp (props changed) head/lang/clang34/files/patch-tools_clang_lib_Headers_Makefile (props changed) head/lang/clang34/files/patch-tools_clang_lib_Sema_SemaChecking.cpp (props changed) head/lang/clang34/files/patch-tools_clang_tools_scan-build_scan-build (props changed) head/lang/clang34/files/patch-utils_llvm-build_llvmbuild_main.py (props changed) head/lang/clisp/files/patch-configure (props changed) head/lang/clisp/files/patch-modules__clx__mit-clx__Makefile (props changed) head/lang/clisp/files/patch-modules__fastcgi__fastcgi_wrappers.c (props changed) head/lang/clisp/files/patch-modules__postgresql__config.h.in (props changed) head/lang/clisp/files/patch-src__makemake.in (props changed) head/lang/cocor/files/patch-cplus2::unix.mk (props changed) head/lang/cocor/files/patch-taste-unix.mk (props changed) head/lang/cocor/files/patch-taste_cp::unix.mk (props changed) head/lang/cocor/files/patch-unix.mk (props changed) head/lang/dmd/files/patch-src-dmd-posix.mak (props changed) head/lang/dmd/files/patch-src-phobos-freebsd.mak (props changed) head/lang/dmd2/files/patch-linux-bin32-dmd.conf (props changed) head/lang/dragonegg-devel46/files/patch-README (props changed) head/lang/dragonegg46-33/files/patch-README (props changed) head/lang/elan/files/patch-configure (props changed) head/lang/elan/files/patch-docs (props changed) head/lang/emacs-lisp-intro/files/patch-ab (props changed) head/lang/emacs-lisp-intro/files/patch-ac (props changed) head/lang/erlang-runtime15/files/patch-erts-emulator-Makefile.in (props changed) head/lang/erlang-runtime15/files/patch-erts_etc_common_erlc.c (props changed) head/lang/erlang-runtime15/files/patch-erts_etc_unix_run__erl.c (props changed) head/lang/erlang-runtime15/files/patch-lib_erl__interface_src_connect_ei__resolve.c (props changed) head/lang/erlang-runtime15/files/patch-lib_et_src_et__gs__contents__viewer.erl (props changed) head/lang/erlang-runtime15/files/patch-lib_et_src_et__gs__viewer.erl (props changed) head/lang/erlang-runtime15/files/patch-lib_gs_src_tool__utils.erl (props changed) head/lang/erlang-runtime15/files/patch-lib_stdlib_src_calendar.erl (props changed) head/lang/erlang-runtime16/files/patch-erts_etc_common_erlc.c (props changed) head/lang/erlang-runtime16/files/patch-erts_etc_unix_run__erl.c (props changed) head/lang/erlang-runtime16/files/patch-lib_erl__interface_src_connect_ei__resolve.c (props changed) head/lang/erlang-runtime16/files/patch-lib_et_src_et__gs__contents__viewer.erl (props changed) head/lang/erlang-runtime16/files/patch-lib_et_src_et__gs__viewer.erl (props changed) head/lang/erlang-runtime16/files/patch-lib_gs_src_tool__utils.erl (props changed) head/lang/erlang-runtime16/files/patch-lib_stdlib_src_calendar.erl (props changed) head/lang/erlang/files/patch-erts_etc_common_erlc.c (props changed) head/lang/erlang/files/patch-erts_etc_unix_run__erl.c (props changed) head/lang/erlang/files/patch-lib_erl__interface_src_connect_ei__resolve.c (props changed) head/lang/erlang/files/patch-lib_et_src_et__gs__contents__viewer.erl (props changed) head/lang/erlang/files/patch-lib_et_src_et__gs__viewer.erl (props changed) head/lang/erlang/files/patch-lib_gs_src_tool__utils.erl (props changed) head/lang/erlang/files/patch-lib_stdlib_src_calendar.erl (props changed) head/lang/expect-devel/files/patch-Makefile.in (props changed) head/lang/expect/files/patch-aa (props changed) head/lang/expect/files/patch-ac (props changed) head/lang/expect/files/patch-exp_main_sub.c (props changed) head/lang/ezm3/files/extra-patch-fcntl (props changed) head/lang/ezm3/files/patch-eb (props changed) head/lang/ezm3/files/patch-libs::m3core::src::unix::freebsd-4.alpha::Unix.i3 (props changed) head/lang/ezm3/files/patch-libs::m3core::src::unix::freebsd-4.sparc64::Unix.i3 (props changed) head/lang/ezm3/files/patch-obstack.h (props changed) head/lang/f2c/files/patch-better-security (props changed) head/lang/f2c/files/patch-f2c.h (props changed) head/lang/f2c/files/patch-libf2c_MAIN.c (props changed) head/lang/f2c/files/patch-libf2c_Makefile (props changed) head/lang/f2c/files/patch-src_Makefile (props changed) head/lang/ferite/files/patch-Makefile.in (props changed) head/lang/ferite/files/patch-docs::Makefile.in (props changed) head/lang/ferite/files/patch-docs::images::Makefile.in (props changed) head/lang/ferite/files/patch-libs-aphex-src-Makefile.in (props changed) head/lang/ferite/files/patch-scripts::test::test.fe (props changed) head/lang/ferite/files/patch-tools::doc::Makefile.in (props changed) head/lang/ferite/files/patch-tools::doc::template::Makefile.in (props changed) head/lang/ferite/files/patch-tools::doc::template::html::Makefile.in (props changed) head/lang/ficl/files/patch-dictionary.c (props changed) head/lang/ficl/files/patch-ficl.h (props changed) head/lang/ficl/files/patch-float.c (props changed) head/lang/ficl/files/patch-tools.c (props changed) head/lang/fpc/files/patch-compiler-utils_samplecfg (props changed) head/lang/fsharp/files/patch-configure.ac (props changed) head/lang/g95/files/patch-gcc__config.gcc (props changed) head/lang/g95/files/patch-gcc__config__freebsd-spec.h (props changed) head/lang/gawk/files/patch-Makefile (props changed) head/lang/gcc/files/patch-libcpp (props changed) head/lang/gcc/files/patch-unwind-ia64.h (props changed) head/lang/gcc34/files/patch-config-freebsd-spec.h (props changed) head/lang/gcc34/files/patch-config-sparc-freebsd.h (props changed) head/lang/gcc34/files/patch-gengtype-yacc.y (props changed) head/lang/gcc34/files/patch-ltconfig (props changed) head/lang/gcc46/files/patch-libcpp (props changed) head/lang/gcc46/files/patch-unwind-ia64.h (props changed) head/lang/gcc47/files/patch-libcpp (props changed) head/lang/gcc48/files/patch-unwind-ia64.h (props changed) head/lang/gcc49/files/patch-unwind-ia64.h (props changed) head/lang/gcl/files/patch-configure (props changed) head/lang/gcl/files/patch-h_FreeBSD.defs (props changed) head/lang/gcl/files/patch-h_FreeBSD.h (props changed) head/lang/gcl/files/patch-h_gclincl.h.in (props changed) head/lang/gcl/files/patch-info_gcl-si.texi (props changed) head/lang/gcl/files/patch-info_makefile (props changed) head/lang/gcl/files/patch-makedefc.in (props changed) head/lang/gcl/files/patch-o_file.d (props changed) head/lang/gcl/files/patch-unixport_makefile (props changed) head/lang/gcl/files/patch-warnings (props changed) head/lang/gforth/files/patch-Makefile.in (props changed) head/lang/ghc/files/patch-ghc.mk (props changed) head/lang/ghc/files/patch-rts_package.conf.in (props changed) head/lang/gnat/files/patch-Makefile.rtl (props changed) head/lang/gnat/files/patch-aa (props changed) head/lang/gnat/files/patch-ab (props changed) head/lang/gnat/files/patch-ac (props changed) head/lang/gnat/files/patch-ad (props changed) head/lang/gnat/files/patch-af (props changed) head/lang/gnat/files/patch-ag (props changed) head/lang/gnatdroid-binutils/files/patch-gas__configure.tgt (props changed) head/lang/gnatdroid-binutils/files/patch-ld__configure.tgt (props changed) head/lang/gnatdroid-sysroot/files/patch-stat.h (props changed) head/lang/gnustep-guile/files/patch-configure (props changed) head/lang/guile/files/patch-config.h.in (props changed) head/lang/guile/files/patch-configure.in (props changed) head/lang/guile/files/patch-libguile___scm.h (props changed) head/lang/guile/files/patch-libguile_eval.c (props changed) head/lang/guile/files/patch-libguile_gc.c (props changed) head/lang/guile/files/patch-libguile_gc_os_dep.c (props changed) head/lang/guile/files/patch-libguile_gen-scmconfig.c (props changed) head/lang/guile/files/patch-libguile_numbers.c (props changed) head/lang/guile/files/patch-libguile_pthread-threads.h (props changed) head/lang/guile/files/patch-libguile_read.c (props changed) head/lang/guile/files/patch-libguile_threads.c (props changed) head/lang/hiphop-php/files/patch-CMake-FindLibDwarf.cmake (props changed) head/lang/hiphop-php/files/patch-CMake-HPHPFindLibs.cmake (props changed) head/lang/hiphop-php/files/patch-CMake-HPHPSetup.cmake (props changed) head/lang/hiphop-php/files/patch-hphp-runtime-base-program_functions.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-runtime-ext-ext_hotprofiler.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-runtime-ext-ext_image.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-runtime-ext-ext_posix.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-runtime-vm-debug-dwarf.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-runtime-vm-jit-translator-x64.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-runtime-vm-repo.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-third_party-folly-folly-FileUtil.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-util-assertions.h (props changed) head/lang/hiphop-php/files/patch-hphp-util-compatibility.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-util-compatibility.h (props changed) head/lang/hiphop-php/files/patch-hphp-util-embedded_data.cpp (props changed) head/lang/hiphop-php/files/patch-hphp-util-generate_buildinfo.sh (props changed) head/lang/hiphop-php/files/patch-hphp-util-parser-parser.cpp (props changed) head/lang/hope/files/patch-Makefile (props changed) head/lang/hope/files/patch-doc:Makefile.in (props changed) head/lang/hope/files/patch-src-memory.c (props changed) head/lang/hs-epic/files/patch-evm__Makefile (props changed) head/lang/icc/files/patch-bin::icc (props changed) head/lang/icc/files/patch-bin::icpc (props changed) head/lang/icc/files/patch-include::c++::cstdio (props changed) head/lang/icc/files/patch-include::c++::cstdlib (props changed) head/lang/icc/files/patch-include::c++::cwchar (props changed) head/lang/icc/files/patch-include::c++::yvals.h (props changed) head/lang/icc/files/patch-include::dvec.h (props changed) head/lang/icc/files/patch-include::fvec.h (props changed) head/lang/icc/files/patch-include::ivec.h (props changed) head/lang/icc/files/patch-include::mathimf.h (props changed) head/lang/icc/files/patch-include::xmmintrin.h (props changed) head/lang/ifc/files/patch-bin::ifort (props changed) head/lang/ikarus/files/extra-patch-Makefile.in (props changed) head/lang/ikarus/files/extra-patch-doc__Makefile.in (props changed) head/lang/ikarus/files/patch-Makefile.in (props changed) head/lang/intel2gas/files/patch-intel2gas.cc (props changed) head/lang/klone/files/patch-gcc4 (props changed) head/lang/lafontaine/files/patch-configure (props changed) head/lang/lafontaine/files/patch-exec.c (props changed) head/lang/lafontaine/files/patch-mc.c (props changed) head/lang/lafontaine/files/patch-parser.y (props changed) head/lang/lafontaine/files/patch-src_lexer.en.l (props changed) head/lang/lafontaine/files/patch-src_lexer.fr.l (props changed) head/lang/lafontaine/files/patch-src_main.c (props changed) head/lang/lafontaine/files/patch-src_proc.c (props changed) head/lang/lafontaine/files/patch-src_rc.c (props changed) head/lang/linux-j/files/patch-profile.ijs (props changed) head/lang/logo/files/patch-config.h.in (props changed) head/lang/logo/files/patch-docs-makefile (props changed) head/lang/logo/files/patch-emacs-makefile (props changed) head/lang/logo/files/patch-makefile.in (props changed) head/lang/logo/files/patch-makehelp.c (props changed) head/lang/logo/files/patch-term.c (props changed) head/lang/lua/files/patch-src-Makefile (props changed) head/lang/luajit/files/patch-Makefile (props changed) head/lang/luajit/files/patch-src_Makefile (props changed) head/lang/lush/files/patch-configure (props changed) head/lang/lush/files/patch-include_header.h (props changed) head/lang/maude/files/patch-src__Main__main.cc (props changed) head/lang/maude/files/patch-src__Mixfix__global.cc (props changed) head/lang/maude/files/patch-src__Mixfix__global.hh (props changed) head/lang/metaocaml/files/patch-Makefile (props changed) head/lang/metaocaml/files/patch-camlp4_man_Makefile (props changed) head/lang/metaocaml/files/patch-configure (props changed) head/lang/metaocaml/files/patch-ocamldoc_Makefile (props changed) head/lang/metaocaml/files/patch-stdlib_Makefile (props changed) head/lang/mit-scheme/files/patch-src_etc_make-in-subdirs.sh (props changed) head/lang/mlton/files/patch-..-mlton-bootstrap-lib-mlton-include-cenv.h (props changed) head/lang/mlton/files/patch-Makefile (props changed) head/lang/mlton/files/patch-bin-mlton_script (props changed) head/lang/mlton/files/patch-mlton-Makefile (props changed) head/lang/mlton/files/patch-runtime-Makefile (props changed) head/lang/mlton/files/patch-runtime-cenv.h (props changed) head/lang/mlton/files/patch-runtime-mingw.c (props changed) head/lang/mlton/files/patch-runtime-mingw.h (props changed) head/lang/mmix/files/patch-Makefile (props changed) head/lang/mono-basic/files/patch-configure (props changed) head/lang/mono-basic/files/patch-vbnc_vbnc_Makefile (props changed) head/lang/mono-basic/files/patch-vbnc_vbnc_setversion.sh (props changed) head/lang/mono/files/patch-mcs_class_System_System.IO_KeventWatcher.cs (props changed) head/lang/moscow_ml/files/patch-..::examples::calc::Makefile (props changed) head/lang/moscow_ml/files/patch-Makefile (props changed) head/lang/moscow_ml/files/patch-Makefile.inc (props changed) head/lang/moscow_ml/files/patch-README (props changed) head/lang/moscow_ml/files/patch-config::Makefile (props changed) head/lang/moscow_ml/files/patch-config::auto_aux::endian.c (props changed) head/lang/moscow_ml/files/patch-config::auto_aux::hasgot (props changed) head/lang/moscow_ml/files/patch-doc::Makefile (props changed) head/lang/moscow_ml/files/patch-doc::helpsigs::Makefile (props changed) head/lang/moscow_ml/files/patch-dynlibs::Makefile (props changed) head/lang/moscow_ml/files/patch-dynlibs::crypt::Makefile (props changed) head/lang/moscow_ml/files/patch-dynlibs::interface::Makefile (props changed) head/lang/moscow_ml/files/patch-dynlibs::intinf::Makefile (props changed) head/lang/moscow_ml/files/patch-dynlibs::mregex::Makefile (props changed) head/lang/moscow_ml/files/patch-dynlibs::mregex::mregex.c (props changed) head/lang/moscow_ml/files/patch-dynlibs::msocket::msocket.c (props changed) head/lang/moscow_ml/files/patch-dynlibs::munix::munix.c (props changed) head/lang/moscow_ml/files/patch-dynlibs_mgdbm_Makefile (props changed) head/lang/moscow_ml/files/patch-mosmlyac::Makefile (props changed) head/lang/moscow_ml/files/patch-runtime::Makefile (props changed) head/lang/moscow_ml/files/patch-runtime::config.h (props changed) head/lang/mpd/files/patch-csw__asm.c (props changed) head/lang/mtasc/files/patch-basepath (props changed) head/lang/mtasc/files/patch-extc_extc_stubs.c (props changed) head/lang/mtasc/files/patch-mtasc_parser.ml (props changed) head/lang/nawk/files/patch-awk.h (props changed) head/lang/nawk/files/patch-lex.c (props changed) head/lang/nawk/files/patch-main.c (props changed) head/lang/nawk/files/patch-makefile (props changed) head/lang/nawk/files/patch-proto.h (props changed) head/lang/nawk/files/patch-run.c (props changed) head/lang/nawk/files/patch-tran.c (props changed) head/lang/nbfc/files/patch-bf.h (props changed) head/lang/nbfc/files/patch-compiler.c (props changed) head/lang/neko/files/patch-libs_std_process.c (props changed) head/lang/nesasm/files/patch-Makefile (props changed) head/lang/nqc/files/extra-patch-rcxlib-RCX_USBTowerPipe_fbsd.cpp (props changed) head/lang/ocaml-mode.el/files/patch-aa (props changed) head/lang/ocaml/files/patch-Makefile (props changed) head/lang/ocaml/files/patch-camlp4-man_Makefile (props changed) head/lang/ocaml/files/patch-configure (props changed) head/lang/ocaml/files/patch-ocamldoc_Makefile (props changed) head/lang/ofc/files/patch-DPNGImage.m (props changed) head/lang/ofc/files/patch-ofc-config (props changed) head/lang/ohugs/files/extra-patch-src::prelude.h (props changed) head/lang/ohugs/files/patch-src::parser.y (props changed) head/lang/ohugs/files/patch-src::prelude.h (props changed) head/lang/ohugs/files/patch-src::type.c (props changed) head/lang/ohugs/files/patch-src_omonad.c (props changed) head/lang/oorexx/files/patch-Makefile (props changed) head/lang/oorexx/files/patch-obj_rexximg.sh (props changed) head/lang/oorexx/files/patch-rexxapi-RexxAPIManager.cpp (props changed) head/lang/opa/files/patch-Makefile (props changed) head/lang/opa/files/patch-build_rules.ml (props changed) head/lang/opa/files/patch-configure (props changed) head/lang/opa/files/patch-lib_stdlib_extract-import-plugin.sh (props changed) head/lang/opa/files/patch-libnet_nattraversal_stubsnatpmp.idl (props changed) head/lang/opa/files/patch-tools_build_myocamlbuild_prefix.ml (props changed) head/lang/opa/files/patch-tools_manpages_Makefile (props changed) head/lang/p5-ExtUtils-F77/files/patch-F77.pm (props changed) head/lang/p5-JavaScript-SpiderMonkey/files/patch-Makefile.PL (props changed) head/lang/p5-Tcl/files/patch-Makefile.PL (props changed) head/lang/p5-ePerl/files/patch-Makefile.PL (props changed) head/lang/p5-ePerl/files/patch-configure (props changed) head/lang/p5-ePerl/files/patch-eperl_parse.c (props changed) head/lang/p5-ePerl/files/patch-eperl_proto.h (props changed) head/lang/pbasic/files/patch-aa (props changed) head/lang/pbasic/files/patch-ab (props changed) head/lang/pcc/files/patch-cccc-Makefile.in (props changed) head/lang/pcc/files/patch-configure (props changed) head/lang/pecl-perl/files/patch-php_perl.c (props changed) head/lang/perl5.12/files/patch-Configure (props changed) head/lang/perl5.12/files/patch-INST_PREFIX.t (props changed) head/lang/perl5.12/files/patch-MM_Any.pm (props changed) head/lang/perl5.12/files/patch-freebsd.sh (props changed) head/lang/perl5.12/files/patch-h2ph (props changed) head/lang/perl5.14/files/patch-Configure (props changed) head/lang/perl5.14/files/patch-cpan__ExtUtils-MakeMaker__lib__ExtUtils__MakeMaker.pm (props changed) head/lang/perl5.16/files/patch-Configure (props changed) head/lang/perl5.18/files/patch-Configure (props changed) head/lang/php5/files/patch-TSRM_threads.m4 (props changed) head/lang/php5/files/patch-Zend::zend.h (props changed) head/lang/php5/files/patch-Zend_zend_list.c (props changed) head/lang/php5/files/patch-Zend_zend_list.h (props changed) head/lang/php5/files/patch-acinclude.m4 (props changed) head/lang/php5/files/patch-configure.in (props changed) head/lang/php5/files/patch-ext_standard_basic_functions.c (props changed) head/lang/php5/files/patch-ext_standard_image.c (props changed) head/lang/php5/files/patch-ext_zlib_config0.m4 (props changed) head/lang/php5/files/patch-main::php_config.h.in (props changed) head/lang/php5/files/patch-sapi_fpm_Makefile.frag (props changed) head/lang/php5/files/patch-sapi_fpm_config.m4 (props changed) head/lang/php5/files/patch-sapi_fpm_php-fpm.conf.in (props changed) head/lang/php52/files/patch-TSRM_threads.m4 (props changed) head/lang/php52/files/patch-Zend::zend.h (props changed) head/lang/php52/files/patch-Zend_zend_list.c (props changed) head/lang/php52/files/patch-Zend_zend_list.h (props changed) head/lang/php52/files/patch-acinclude.m4 (props changed) head/lang/php52/files/patch-configure.in (props changed) head/lang/php52/files/patch-ext_standard_array.c (props changed) head/lang/php52/files/patch-ext_standard_basic_functions.c (props changed) head/lang/php52/files/patch-ext_standard_image.c (props changed) head/lang/php52/files/patch-ext_standard_php_dns.h (props changed) head/lang/php52/files/patch-main::php_config.h.in (props changed) head/lang/php52/files/patch-php.ini-dist (props changed) head/lang/php52/files/patch-php.ini-recommended (props changed) head/lang/php52/files/patch-sapi-apache2handler_config.m4 (props changed) head/lang/php52/files/patch-sapi_cgi_Makefile.frag (props changed) head/lang/php52/files/patch-sapi_cgi_config9.m4 (props changed) head/lang/php52/files/patch-scripts::phpize.in (props changed) head/lang/php53/files/patch-TSRM_threads.m4 (props changed) head/lang/php53/files/patch-Zend::zend.h (props changed) head/lang/php53/files/patch-Zend_zend_list.c (props changed) head/lang/php53/files/patch-Zend_zend_list.h (props changed) head/lang/php53/files/patch-acinclude.m4 (props changed) head/lang/php53/files/patch-configure.in (props changed) head/lang/php53/files/patch-ext_standard_basic_functions.c (props changed) head/lang/php53/files/patch-ext_standard_image.c (props changed) head/lang/php53/files/patch-ext_zlib_config0.m4 (props changed) head/lang/php53/files/patch-main::php_config.h.in (props changed) head/lang/php53/files/patch-php.ini-development (props changed) head/lang/php53/files/patch-php.ini-production (props changed) head/lang/php53/files/patch-sapi_cgi_Makefile.frag (props changed) head/lang/php53/files/patch-sapi_cgi_config9.m4 (props changed) head/lang/php53/files/patch-sapi_fpm_Makefile.frag (props changed) head/lang/php53/files/patch-sapi_fpm_config.m4 (props changed) head/lang/php53/files/patch-sapi_fpm_php-fpm.conf.in (props changed) head/lang/php55/files/patch-TSRM_threads.m4 (props changed) head/lang/php55/files/patch-Zend::zend.h (props changed) head/lang/php55/files/patch-Zend_zend_list.c (props changed) head/lang/php55/files/patch-Zend_zend_list.h (props changed) head/lang/php55/files/patch-acinclude.m4 (props changed) head/lang/php55/files/patch-configure.in (props changed) head/lang/php55/files/patch-ext_standard_basic_functions.c (props changed) head/lang/php55/files/patch-ext_standard_image.c (props changed) head/lang/php55/files/patch-ext_zlib_config0.m4 (props changed) head/lang/php55/files/patch-main::php_config.h.in (props changed) head/lang/php55/files/patch-sapi_fpm_Makefile.frag (props changed) head/lang/php55/files/patch-sapi_fpm_config.m4 (props changed) head/lang/php55/files/patch-sapi_fpm_php-fpm.conf.in (props changed) head/lang/picoc/files/patch-cstdlib__stdio.c (props changed) head/lang/picoc/files/patch-cstdlib__unistd.c (props changed) head/lang/pike76/files/patch-Makefile (props changed) head/lang/pike76/files/patch-ab (props changed) head/lang/pike76/files/patch-install.pike (props changed) head/lang/pike76/files/patch-src_modules_common_module_makefile.in (props changed) head/lang/ptoc/files/patch-main.cxx (props changed) head/lang/ptoc/files/patch-makefile.bsd (props changed) head/lang/ptoc/files/patch-parser.y (props changed) head/lang/ptoc/files/patch-tpexpr.cxx (props changed) head/lang/ptoc/files/patch-trnod.cxx (props changed) head/lang/py-prolog/files/patch-setup.py (props changed) head/lang/pypy-devel/files/patch-lib-python__2.7__distutils__command__install.py (props changed) head/lang/pypy-devel/files/patch-lib-python__2.7__distutils__sysconfig_pypy.py (props changed) head/lang/pypy-devel/files/patch-lib-python__2.7__sysconfig.py (props changed) head/lang/pypy3-devel/files/patch-lib-python__3__distutils__command__install.py (props changed) head/lang/pypy3-devel/files/patch-lib-python__3__distutils__sysconfig_pypy.py (props changed) head/lang/pypy3-devel/files/patch-lib-python__3__sysconfig.py (props changed) head/lang/python27/files/extra-patch-setup.py (props changed) head/lang/python27/files/patch-Doc-library-fcntl.rst (props changed) head/lang/python27/files/patch-Modules-_ctypes-libffi-configure (props changed) head/lang/python27/files/patch-Modules-fcntlmodule.c (props changed) head/lang/python27/files/patch-setup.py (props changed) head/lang/python31/files/patch-Doc-library-fcntl.rst (props changed) head/lang/python31/files/patch-Lib-test-test_fcntl.py (props changed) head/lang/python31/files/patch-Lib-test-test_ioctl.py (props changed) head/lang/python31/files/patch-Lib-test_regrtest.py (props changed) head/lang/python31/files/patch-Modules-_ctypes-libffi-configure (props changed) head/lang/python31/files/patch-Modules-_ctypes-libffi-src-powerpc-ffitarget.h (props changed) head/lang/python31/files/patch-Modules-fcntlmodule.c (props changed) head/lang/python32/files/patch-Lib-test_regrtest.py (props changed) head/lang/python32/files/patch-Modules-_ctypes-libffi-configure (props changed) head/lang/python32/files/patch-Modules-fcntlmodule.c (props changed) head/lang/python33/files/patch-Modules-_ctypes-libffi-configure (props changed) head/lang/python33/files/patch-Modules-fcntlmodule.c (props changed) head/lang/python33/files/patch-setup.py (props changed) head/lang/qscheme/files/patch-Makefile.in (props changed) head/lang/qscheme/files/patch-chr.c (props changed) head/lang/qscheme/files/patch-configure (props changed) head/lang/qscheme/files/patch-file.c (props changed) head/lang/qscheme/files/patch-number.i (props changed) head/lang/qscheme/files/patch-object.c (props changed) head/lang/qscheme/files/patch-object.h (props changed) head/lang/qscheme/files/patch-process.c (props changed) head/lang/qscheme/files/patch-s.h (props changed) head/lang/qscheme/files/patch-s.scm (props changed) head/lang/qscheme/files/patch-socket.c (props changed) head/lang/qscheme/files/patch-sproto.h (props changed) head/lang/qscheme/files/patch-struct.c (props changed) head/lang/qscheme/files/patch-struct.h (props changed) head/lang/qscheme/files/patch-thread.c (props changed) head/lang/qscheme/files/patch-unix.c (props changed) head/lang/qscheme/files/patch-vm2.c (props changed) head/lang/rakudo/files/patch-perl6.1 (props changed) head/lang/ratfor/files/patch-rat4.c (props changed) head/lang/rexx-imc/files/patch-Makefile.REXXimc (props changed) head/lang/rexx-imc/files/patch-box (props changed) head/lang/rexx-imc/files/patch-rexx.c (props changed) head/lang/rexx-imc/files/patch-rexxcps.rexx (props changed) head/lang/rexx-imc/files/patch-rexxtest.rexx (props changed) head/lang/rexx-imc/files/patch-rxmathfn.rexx (props changed) head/lang/rexx-imc/files/patch-shell.rexx (props changed) head/lang/rexx-imc/files/patch-util.c (props changed) head/lang/rexx-regina/files/patch-Makefile.in (props changed) head/lang/rexx-regutil/files/patch-Makefile.inc (props changed) head/lang/rexx-wrapper/files/patch-configur (props changed) head/lang/rexx-wrapper/files/patch-rexxwrap.cmd (props changed) head/lang/rscheme/files/patch-..__Makefile (props changed) head/lang/rscheme/files/patch-..__compiler__resource__buildenv__postambl.mak (props changed) head/lang/rscheme/files/patch-..__handc__corelib__basemath.c (props changed) head/lang/rscheme/files/patch-..__handc__rshell__Makefile (props changed) head/lang/rscheme/files/patch-..__handc__rshell__shell.c (props changed) head/lang/rscheme/files/patch-..__handc__runtime__smemory.c (props changed) head/lang/rscheme/files/patch-..__handc__runtime__vinsns.h (props changed) head/lang/rscheme/files/patch-..__modules__corelib__corelib.mcf (props changed) head/lang/rscheme/files/patch-..__modules__regex__runmatch.c (props changed) head/lang/rscheme/files/patch-..__stage0__Makefile.in (props changed) head/lang/rscheme/files/patch-..__stage0__configure (props changed) head/lang/rscheme/files/patch-..__stage0__corelib__basemath.c (props changed) head/lang/rscheme/files/patch-..__stage0__corelib__complex.c (props changed) head/lang/rscheme/files/patch-..__stage0__corelib__string.c (props changed) head/lang/rscheme/files/patch-..__stage0__regex__runmatch.c (props changed) head/lang/rscheme/files/patch-..__stage0__runtime__smemory.c (props changed) head/lang/rscheme/files/patch-..__stage0__runtime__vinsns.h (props changed) head/lang/rubinius/files/patch-rakelib_install.rake (props changed) head/lang/ruby19/files/patch-common.mk (props changed) head/lang/ruby19/files/patch-cont.c (props changed) head/lang/ruby19/files/patch-lib_mkmf.rb (props changed) head/lang/ruby19/files/patch-lib_uri_generic.rb (props changed) head/lang/ruby19/files/patch-tool_rbinstall.rb (props changed) head/lang/rust/files/patch-mk_platform.mk (props changed) head/lang/schemetoc/files/patch-aa (props changed) head/lang/schemetoc/files/patch-ab (props changed) head/lang/schemetoc/files/patch-ac (props changed) head/lang/schemetoc/files/patch-ad (props changed) head/lang/schemetoc/files/patch-ae (props changed) head/lang/schemetoc/files/patch-af (props changed) head/lang/schemetoc/files/patch-ag (props changed) head/lang/schemetoc/files/patch-ah (props changed) head/lang/schemetoc/files/patch-ai (props changed) head/lang/schemetoc/files/patch-aj (props changed) head/lang/schemetoc/files/patch-scrt-apply.c (props changed) head/lang/schemetoc/files/patch-scrt-apply.h (props changed) head/lang/schemetoc/files/patch-scrt-objects.c (props changed) head/lang/schemetoc/files/patch-scrt-objects.h (props changed) head/lang/schemetoc/files/patch-test-test23.sc (props changed) head/lang/scm/files/patch-eval.c (props changed) head/lang/scsh/files/patch-ab (props changed) head/lang/sdcc/files/patch-device-lib-Makefile.in (props changed) head/lang/see-devel/files/patch-libsee_dtoa.c (props changed) head/lang/see-devel/files/patch-libsee_parse.c (props changed) head/lang/see-devel/files/patch-libsee_value.c (props changed) head/lang/see/files/patch-libsee_dtoa.c (props changed) head/lang/see/files/patch-libsee_input__utf8.c (props changed) head/lang/see/files/patch-libsee_obj__Date.c (props changed) head/lang/see/files/patch-libsee_system.c (props changed) head/lang/siod/files/patch-aa (props changed) head/lang/siod/files/patch-ab (props changed) head/lang/siod/files/patch-ac (props changed) head/lang/smalltalk/files/patch-libgst_Makefile.in (props changed) head/lang/smalltalk/files/patch-snprintfv-snprintfv-format.c (props changed) head/lang/sml-nj-devel/files/patch-config_install.sh (props changed) head/lang/sml-nj/files/extra-patch-cpp (props changed) head/lang/sml-nj/files/extra-patch-genposixnames (props changed) head/lang/sml-nj/files/extra-patch-global-names (props changed) head/lang/sml-nj/files/extra-patch-signals (props changed) head/lang/sml-nj/files/patch-ab (props changed) head/lang/spidermonkey17/files/patch-Makefile (props changed) head/lang/spidermonkey17/files/patch-config (props changed) head/lang/spidermonkey17/files/patch-jslock.c (props changed) head/lang/spidermonkey17/files/patch-jsopcode.c (props changed) head/lang/spidermonkey17/files/patch-jsosdep.h (props changed) head/lang/spidermonkey17/files/patch-jsstr.c (props changed) head/lang/spidermonkey17/files/patch-warnings (props changed) head/lang/squeak/files/patch-unix__vm__build.cmake (props changed) head/lang/sr/files/patch-aa (props changed) head/lang/sr/files/patch-ab (props changed) head/lang/sr/files/patch-lexed::sr.yy.c (props changed) head/lang/sr/files/patch-lexed::srlatex.yy.c (props changed) head/lang/sr/files/patch-lexed::srtex.yy.c (props changed) head/lang/sr/files/patch-rts::alloc.c (props changed) head/lang/sr/files/patch-rts::array.c (props changed) head/lang/sr/files/patch-rts::io.c (props changed) head/lang/sr/files/patch-rts::main.c (props changed) head/lang/sr/files/patch-rts::math.c (props changed) head/lang/sr/files/patch-rts::misc.c (props changed) head/lang/sr/files/patch-rts::oper.c (props changed) head/lang/sr/files/patch-rts::scan.c (props changed) head/lang/sr/files/patch-rts::socket.c (props changed) head/lang/sr/files/patch-rts:funcs.h (props changed) head/lang/sr/files/patch-sr-Makefile (props changed) head/lang/sr/files/patch-sr.h (props changed) head/lang/sr/files/patch-sr::output.c (props changed) head/lang/sr/files/patch-sr::protos.h (props changed) head/lang/sxm/files/patch-Makefile (props changed) head/lang/tcc/files/patch-configure (props changed) head/lang/tcc/files/patch-libtcc.c (props changed) head/lang/tcc/files/patch-tccelf.c (props changed) head/lang/tcc/files/patch-z1-preproc (props changed) head/lang/tcl84/files/patch-siginfo (props changed) head/lang/tcl84/files/patch-test-fCmd (props changed) head/lang/tcl84/files/patch-warnings (props changed) head/lang/tcl85/files/patch-unix-tclUnixPort.h (props changed) head/lang/tclX/files/patch-af (props changed) head/lang/tclX/files/patch-configure (props changed) head/lang/tclX/files/patch-const (props changed) head/lang/tclX/files/patch-errorLine (props changed) head/lang/tclX/files/patch-intptr (props changed) head/lang/tclX/files/patch-profile (props changed) head/lang/tclX/files/patch-session (props changed) head/lang/tclX/files/patch-siginfo (props changed) head/lang/tclX/files/patch-signal-test (props changed) head/lang/tclX/files/patch-uidgid (props changed) head/lang/tcltutor/files/patch-aa (props changed) head/lang/tolua++/files/patch-SConstruct (props changed) head/lang/tolua++/files/patch-src-lib-SCsub (props changed) head/lang/tolua/files/patch-src::tests::Makefile (props changed) head/lang/twelf/files/patch-FreeBSD.mk (props changed) head/lang/twelf/files/patch-Makefile (props changed) head/lang/twelf/files/patch-bin-mkexec (props changed) head/lang/twelf/files/patch-doc-guide-Makefile (props changed) head/lang/twelf/files/patch-doc-guide-twelf.texi (props changed) head/lang/twelf/files/patch-mlton-Makefile (props changed) head/lang/twelf/files/patch-smlnj-Makefile (props changed) head/lang/ucc/files/patch-Makefile (props changed) head/lang/urweb/files/patch-configure (props changed) head/lang/vala/files/patch-vapi_glib-2.0.vapi (props changed) head/lang/vala/files/patch-vapi_libpq.vapi (props changed) head/lang/vala/files/patch-vapigen_Makefile.in (props changed) head/lang/whitespace/files/patch-Makefile (props changed) head/lang/whitespace/files/patch-VM.hs (props changed) head/lang/whitespace/files/patch-main.hs (props changed) head/lang/x10/files/patch-x10.runtime-Make.rules (props changed) head/lang/xds-c/files/patch-C__X2C.c (props changed) head/lang/xds-c/files/patch-C__xosTime.c (props changed) head/lang/xds-c/files/patch-bin__xm.cfg (props changed) head/lang/xds-c/files/patch-bin__xm.tem (props changed) head/lang/xds-c/files/patch-bin__xmwork (props changed) head/lang/xds-c/files/patch-include__xrnMman.h (props changed) head/lang/xds-c/files/patch-lib__C__lib.mkf (props changed) head/lang/xds/files/patch-C__X2C.c (props changed) head/lang/xds/files/patch-C__xosBalls.c (props changed) head/lang/xds/files/patch-C__xosTime.c (props changed) head/lang/xds/files/patch-apisyms-x86 (props changed) head/lang/xds/files/patch-bin__xc.tem (props changed) head/lang/xds/files/patch-bin__xcwork (props changed) head/lang/xds/files/patch-include__xrnMman.h (props changed) head/lang/xds/files/patch-lib__x86__lib.mkf (props changed) head/lang/xds/files/patch-samples__buildx86 (props changed) head/lang/yabasic/files/patch-graphic.c (props changed) head/lang/yabasic/files/patch-main.c (props changed) head/lang/yorick/files/patch-yorick_Makefile (props changed) head/lang/yorick/files/patch-yorick_spawn.c (props changed) head/lang/ypsilon/files/patch-Makefile (props changed) head/lang/ypsilon/files/patch-gtk-hello.scm (props changed) head/mail/abook/files/patch-ui.c (props changed) head/mail/adcomplain/files/patch-aa (props changed) head/mail/alpine/files/patch-configure (props changed) head/mail/alpine/files/patch-newuser (props changed) head/mail/althea/files/patch-MIME.cpp (props changed) head/mail/althea/files/patch-MIME.h (props changed) head/mail/althea/files/patch-SendMail.cpp (props changed) head/mail/althea/files/patch-tolower.h (props changed) head/mail/annoyance-filter/files/patch-Makefile.in (props changed) head/mail/annoyance-filter/files/patch-annoyance-filter.cc (props changed) head/mail/annoyance-filter/files/patch-statlib_test.cc (props changed) head/mail/antivirus-milter/files/patch-Makefile (props changed) head/mail/antivirus-milter/files/patch-antivirus.c (props changed) head/mail/anubis/files/patch-config.h.in (props changed) head/mail/anubis/files/patch-configure.ac (props changed) head/mail/anubis/files/patch-src__env.c (props changed) head/mail/anubis/files/patch-src__gpg.c (props changed) head/mail/anubis/files/patch-src__headers.h (props changed) head/mail/archiveopteryx/files/patch-Jamfile (props changed) head/mail/archiveopteryx/files/patch-Jamsettings (props changed) head/mail/archiveopteryx/files/patch-core_configuration.cpp (props changed) head/mail/archiveopteryx/files/patch-installer_Jamfile (props changed) head/mail/archiveopteryx/files/patch-schema_Jamfile (props changed) head/mail/archiveopteryx/files/patch-scripts_Jamfile (props changed) head/mail/asmail/files/patch-socklib.h (props changed) head/mail/assp/files/patch-assp.pl (props changed) head/mail/assp/files/patch-rebuildspamdb.pl (props changed) head/mail/autorespond/files/patch-autorespond.c (props changed) head/mail/avenger/files/patch-Makefile.in (props changed) head/mail/balsa/files/patch-configure (props changed) head/mail/balsa/files/patch-libbalsa_imap_imap-handle.c (props changed) head/mail/balsa/files/patch-libbalsa_information.c (props changed) head/mail/balsa/files/patch-libbalsa_mailbox_local.c (props changed) head/mail/balsa/files/patch-libbalsa_mailbox_local.h (props changed) head/mail/balsa/files/patch-libbalsa_mailbox_maildir.c (props changed) head/mail/balsa/files/patch-libbalsa_mailbox_mbox.c (props changed) head/mail/balsa/files/patch-libbalsa_mailbox_mh.c (props changed) head/mail/balsa/files/patch-src_main-window.c (props changed) head/mail/balsa/files/patch-src_threads.h (props changed) head/mail/batv-milter/files/patch-batv-filter_Makefile.m4 (props changed) head/mail/batv-milter/files/patch-batv-filter_batv-filter.c (props changed) head/mail/batv-milter/files/patch-batv-filter_config.c (props changed) head/mail/batv-milter/files/patch-batv-filter_util.c (props changed) head/mail/bayespam/files/patch-bayes_process_email.pl (props changed) head/mail/bayespam/files/patch-bayes_spam_check.pl (props changed) head/mail/biabam/files/patch-biabam (props changed) head/mail/biffer/files/patch-biffer::Makefile (props changed) head/mail/biffer/files/patch-biffer_comsat::Makefile (props changed) head/mail/biffer/files/patch-biffopt::Makefile (props changed) head/mail/bogofilter/files/patch-contrib__trainbogo.sh (props changed) head/mail/bsmtp/files/patch-bsmtp_c_in (props changed) head/mail/bsmtp/files/patch-configure (props changed) head/mail/bsmtp/files/patch-rsmtp.in (props changed) head/mail/cclient/files/patch-aa (props changed) head/mail/cclient/files/patch-ab (props changed) head/mail/cclient/files/patch-ac (props changed) head/mail/clamfilter/files/patch-Makefile (props changed) head/mail/clamfilter/files/patch-clamfilter.c (props changed) head/mail/claws-mail/files/patch-undef_g_disable_deprecated (props changed) head/mail/cone/files/patch-curses-cursesscreen.diff (props changed) head/mail/coolmail/files/patch-Makefile (props changed) head/mail/coolmail/files/patch-coolmail.c (props changed) head/mail/coolmail/files/patch-coolmail.man (props changed) head/mail/coolmail/files/patch-display_list.c (props changed) head/mail/courier-imap/files/patch-Makefile.in (props changed) head/mail/courier-pythonfilter/files/patch-courier__authdaemon.py (props changed) head/mail/courier-pythonfilter/files/patch-courier__quarantine.py (props changed) head/mail/courier-pythonfilter/files/patch-filters__clamav.py (props changed) head/mail/courier-pythonfilter/files/patch-pythonfilter (props changed) head/mail/courier-pythonfilter/files/patch-pythonfilter-modules.conf.sample (props changed) head/mail/courier-pythonfilter/files/patch-setup.py (props changed) head/mail/courier/files/extra-patch-maildrop__maildir.C (props changed) head/mail/courier/files/extra-patch-webmail__folder.c (props changed) head/mail/courier/files/extra-patch-webmail__images__sqwebmail.css (props changed) head/mail/courier/files/extra-patch-webmail__maildir.c (props changed) head/mail/courier/files/extra-patch-webmail__maildir.h (props changed) head/mail/courier/files/extra-patch-webmail__msg2html.c (props changed) head/mail/courier/files/patch-courier__Makefile.in (props changed) head/mail/courier/files/patch-courier__cmlm.h (props changed) head/mail/courier/files/patch-courier__configure (props changed) head/mail/courier/files/patch-courier__configure.in (props changed) head/mail/courier/files/patch-courier__doc__Makefile.in (props changed) head/mail/courier/files/patch-courier__module.esmtp__mkesmtpdcert.in (props changed) head/mail/courier/files/patch-courier__module.fax (props changed) head/mail/courier/files/patch-courier__perms.sh.in (props changed) head/mail/courier/files/patch-courier__submit.C (props changed) head/mail/courier/files/patch-courier__submit2.C (props changed) head/mail/courier/files/patch-courier__webmlmd.rc.in (props changed) head/mail/courier/files/patch-courier__webmlmrc.dist.in (props changed) head/mail/courier/files/patch-imap__mkimapdcert.in (props changed) head/mail/courier/files/patch-imap__mkpop3dcert.in (props changed) head/mail/courier/files/patch-liblock__locktest.c (props changed) head/mail/couriergraph/files/patch-couriergraph.cgi (props changed) head/mail/couriergraph/files/patch-couriergraph.pl (props changed) head/mail/cucipop/files/patch-aa (props changed) head/mail/cucipop/files/patch-ab (props changed) head/mail/cucipop/files/patch-ac (props changed) head/mail/cucipop/files/patch-ad (props changed) head/mail/cucipop/files/patch-ae (props changed) head/mail/cucipop/files/patch-af (props changed) head/mail/cucipop/files/patch-ag (props changed) head/mail/cucipop/files/patch-ah (props changed) head/mail/cucipop/files/patch-ai (props changed) head/mail/cyrus-imapd2/files/patch-Makefile.in (props changed) head/mail/cyrus-imapd2/files/patch-aa (props changed) head/mail/cyrus-imapd2/files/patch-ac (props changed) head/mail/cyrus-imapd2/files/patch-acap::Makefile.in (props changed) head/mail/cyrus-imapd2/files/patch-bc (props changed) head/mail/cyrus-imapd2/files/patch-bd (props changed) head/mail/cyrus-imapd2/files/patch-be (props changed) head/mail/cyrus-imapd2/files/patch-config.h.in (props changed) head/mail/cyrus-imapd2/files/patch-dc (props changed) head/mail/cyrus-imapd2/files/patch-dd (props changed) head/mail/cyrus-imapd2/files/patch-df (props changed) head/mail/cyrus-imapd2/files/patch-dg (props changed) head/mail/cyrus-imapd2/files/patch-imap::imapd.h (props changed) head/mail/cyrus-imapd2/files/patch-imtest::imtest.c (props changed) head/mail/cyrus-imapd2/files/patch-lib::Makefile.in (props changed) head/mail/cyrus-imapd2/files/patch-master::service-thread.c (props changed) head/mail/cyrus-imapd2/files/patch-perl::imap::Makefile.PL (props changed) head/mail/cyrus-imapd2/files/patch-perl::sieve::lib::Makefile.in (props changed) head/mail/cyrus-imapd2/files/patch-perl::sieve::managesieve::Makefile.PL (props changed) head/mail/cyrus-imapd2/files/patch-sieve::Makefile.in (props changed) head/mail/cyrus-imapd22/files/extra-patch-cmulocal::berkdb.m4 (props changed) head/mail/cyrus-imapd22/files/extra-patch-cmulocal::ucdsnmp.m4 (props changed) head/mail/cyrus-imapd22/files/extra-patch-configure.in (props changed) head/mail/cyrus-imapd22/files/patch-Makefile.in (props changed) head/mail/cyrus-imapd22/files/patch-aa (props changed) head/mail/cyrus-imapd22/files/patch-ac (props changed) head/mail/cyrus-imapd22/files/patch-bc (props changed) head/mail/cyrus-imapd22/files/patch-dg (props changed) head/mail/cyrus-imapd22/files/patch-imap::backend.c (props changed) head/mail/cyrus-imapd22/files/patch-imap::fetchnews.c (props changed) head/mail/cyrus-imapd22/files/patch-imtest::imtest.c (props changed) head/mail/cyrus-imapd22/files/patch-lib::Makefile.in (props changed) head/mail/cyrus-imapd22/files/patch-lib::imapoptions (props changed) head/mail/cyrus-imapd22/files/patch-lib::libcyr_cfg.c (props changed) head/mail/cyrus-imapd22/files/patch-master::Makefile.in (props changed) head/mail/cyrus-imapd22/files/patch-notifyd::Makefile.in (props changed) head/mail/cyrus-imapd22/files/patch-perl::imap::Makefile.PL (props changed) head/mail/cyrus-imapd22/files/patch-perl::sieve::managesieve::Makefile.PL (props changed) head/mail/cyrus-imapd22/files/patch-sieve::Makefile.in (props changed) head/mail/cyrus-imapd22/files/patch-timsieved::Makefile.in (props changed) head/mail/cyrus-imapd23/files/extra-patch-cmulocal::sasl2.m4 (props changed) head/mail/cyrus-imapd23/files/extra-patch-cmulocal::ucdsnmp.m4 (props changed) head/mail/cyrus-imapd23/files/extra-patch-configure (props changed) head/mail/cyrus-imapd23/files/extra-patch-configure.in (props changed) head/mail/cyrus-imapd23/files/patch-Makefile.in (props changed) head/mail/cyrus-imapd23/files/patch-configure (props changed) head/mail/cyrus-imapd23/files/patch-imap::Makefile.in (props changed) head/mail/cyrus-imapd23/files/patch-imtest::imtest.c (props changed) head/mail/cyrus-imapd23/files/patch-lib::Makefile.in (props changed) head/mail/cyrus-imapd23/files/patch-lib::charset.c (props changed) head/mail/cyrus-imapd23/files/patch-lib::cyrusdb_berkeley.c (props changed) head/mail/cyrus-imapd23/files/patch-lib::imapoptions (props changed) head/mail/cyrus-imapd23/files/patch-lib::libcyr_cfg.c (props changed) head/mail/cyrus-imapd23/files/patch-man::Makefile.in (props changed) head/mail/cyrus-imapd23/files/patch-master::Makefile.in (props changed) head/mail/cyrus-imapd23/files/patch-notifyd::Makefile.in (props changed) head/mail/cyrus-imapd23/files/patch-perl::imap::IMAP.xs (props changed) head/mail/cyrus-imapd23/files/patch-perl::imap::Makefile.PL (props changed) head/mail/cyrus-imapd23/files/patch-perl::sieve::managesieve::Makefile.PL (props changed) head/mail/cyrus-imapd23/files/patch-sieve::Makefile.in (props changed) head/mail/cyrus-imapd23/files/patch-timsieved::Makefile.in (props changed) head/mail/cyrus-imapd23/files/patch-tools::mkimap (props changed) head/mail/cyrus-imapd24/files/extra-patch-cmulocal::sasl2.m4 (props changed) head/mail/cyrus-imapd24/files/extra-patch-configure (props changed) head/mail/cyrus-imapd24/files/patch-Makefile.in (props changed) head/mail/cyrus-imapd24/files/patch-imap::Makefile.in (props changed) head/mail/cyrus-imapd24/files/patch-imap__statuscache_db.c (props changed) head/mail/cyrus-imapd24/files/patch-imtest::imtest.c (props changed) head/mail/cyrus-imapd24/files/patch-lib::Makefile.in (props changed) head/mail/cyrus-imapd24/files/patch-lib::imapoptions (props changed) head/mail/cyrus-imapd24/files/patch-lib::libcyr_cfg.c (props changed) head/mail/cyrus-imapd24/files/patch-lib::util.c (props changed) head/mail/cyrus-imapd24/files/patch-man::Makefile.in (props changed) head/mail/cyrus-imapd24/files/patch-master::Makefile.in (props changed) head/mail/cyrus-imapd24/files/patch-notifyd::Makefile.in (props changed) head/mail/cyrus-imapd24/files/patch-perl::imap::Makefile.PL (props changed) head/mail/cyrus-imapd24/files/patch-perl::sieve::managesieve::Makefile.PL (props changed) head/mail/cyrus-imapd24/files/patch-sieve::Makefile.in (props changed) head/mail/cyrus-imapd24/files/patch-timsieved::Makefile.in (props changed) head/mail/cyrus-imapd24/files/patch-tools::mkimap (props changed) head/mail/davmail/files/patch-build.xml (props changed) head/mail/dbmail/files/extra-patch-acinclude.m4 (props changed) head/mail/dbmail/files/patch-acinclude.m4 (props changed) head/mail/dbmail/files/patch-src_clientbase.c (props changed) head/mail/dbmail/files/patch-src_dbmail.h.in (props changed) head/mail/dbmail22/files/patch-configure (props changed) head/mail/dk-milter/files/patch-FreeBSD (props changed) head/mail/dkfilter/files/patch-lib__Mail__DomainKeys__Signature.pm (props changed) head/mail/dma/files/patch-BSDMakefile (props changed) head/mail/dma/files/patch-Makefile (props changed) head/mail/dma/files/patch-alias_scan.l (props changed) head/mail/dma/files/patch-conf.c (props changed) head/mail/dma/files/patch-dma-Makefile (props changed) head/mail/dma/files/patch-dma-mbox-create-Makefile (props changed) head/mail/dma/files/patch-dma.c (props changed) head/mail/dma/files/patch-dma.conf (props changed) head/mail/dma/files/patch-get-version.sh (props changed) head/mail/dma/files/patch-mail.c (props changed) head/mail/dma/files/patch-spool.c (props changed) head/mail/dovecot/files/patch-configure (props changed) head/mail/dovecot/files/patch-dovecot-example.conf (props changed) head/mail/dovecot2-antispam-plugin/files/patch-docs-txt2man (props changed) head/mail/drac/files/patch-aa (props changed) head/mail/drac/files/patch-ab (props changed) head/mail/drac/files/patch-ac (props changed) head/mail/drac/files/patch-ad (props changed) head/mail/dsbl-testers/files/patch-firedns_firemake_makefiletop (props changed) head/mail/dsbl-testers/files/patch-firedns_tester.c (props changed) head/mail/dsbl-testers/files/patch-firemake_makefiletop (props changed) head/mail/dsbl-testers/files/patch-firestring_firemake_makefiletop (props changed) head/mail/dspam-devel/files/patch-src__dspam.conf.in (props changed) head/mail/dspam/files/patch-scripts__train.pl (props changed) head/mail/dspam/files/patch-src__dspam.conf.in (props changed) head/mail/ecartis/files/patch-CAN-2004-0913 (props changed) head/mail/ecartis/files/patch-aa (props changed) head/mail/elm+ME/files/patch-ab (props changed) head/mail/elm+ME/files/patch-ac (props changed) head/mail/elm+ME/files/patch-hdrdecode.c (props changed) head/mail/elm+ME/files/patch-header_alloc.c (props changed) head/mail/elm+ME/files/patch-iso2022_map.c (props changed) head/mail/elm+ME/files/patch-mailmsg2.c (props changed) head/mail/elm+ME/files/patch-mime_parse.c (props changed) head/mail/elm+ME/files/patch-precompiled_sets.c (props changed) head/mail/elm/files/patch-Configure (props changed) head/mail/elmo-devel/files/patch-src_elmoconf.pl (props changed) head/mail/elmo-devel/files/patch-src_rstring.c (props changed) head/mail/elmo-devel/files/patch-src_str.c (props changed) head/mail/elmo/files/patch-src_elmoconf.pl (props changed) head/mail/elmo/files/patch-src_rstring.c (props changed) head/mail/elmo/files/patch-src_str.c (props changed) head/mail/emil/files/patch-Makefile.in (props changed) head/mail/emil/files/patch-charset_chset.c (props changed) head/mail/emil/files/patch-charset_conv.c (props changed) head/mail/emil/files/patch-charset_dfopen.c (props changed) head/mail/emil/files/patch-charset_gc.c (props changed) head/mail/emil/files/patch-configure (props changed) head/mail/emil/files/patch-emil.cf.man (props changed) head/mail/emil/files/patch-emil.man (props changed) head/mail/emil/files/patch-main.c (props changed) head/mail/emil/files/patch-mime.c (props changed) head/mail/emil/files/patch-mimeparse.c (props changed) head/mail/emil/files/patch-uuencode.c (props changed) head/mail/enma/files/patch-enma_etc_enma.conf.sample (props changed) head/mail/enma/files/patch-enma_src_enma.c (props changed) head/mail/evolution-exchange/files/patch-eplugin_exchange-operations.c (props changed) head/mail/evolution-mapi/files/patch-src_account-setup-eplugin_exchange-mapi-account-setup.c (props changed) head/mail/evolution-mapi/files/patch-src_libexchangemapi_exchnage-mapi-cal-utils.c (props changed) head/mail/evolution/files/patch-aa (props changed) head/mail/evolution/files/patch-calendar_gui_alarm-notify_alarm-queue.c (props changed) head/mail/evolution/files/patch-modules_addressbook_evolution-module-addressbook.c (props changed) head/mail/evolution/files/patch-plugins_mail-notification_mail-notification.c (props changed) head/mail/evolution/files/patch-plugins_publish-calendar_publish-calendar.c (props changed) head/mail/exact/files/patch-apconf.c (props changed) head/mail/exilog/files/patch-exilog_agent.pl (props changed) head/mail/exilog/files/patch-exilog_sql.pm (props changed) head/mail/exilog/files/patch-ipv6 (props changed) head/mail/exim-monitor/files/patch-OS::Makefile-Base (props changed) head/mail/exim-monitor/files/patch-OS::Makefile-FreeBSD (props changed) head/mail/exim-monitor/files/patch-src::EDITME (props changed) head/mail/exim/files/extra-patch-kas (props changed) head/mail/exim/files/extra-patch-xclient (props changed) head/mail/exim/files/patch-OS::Makefile-FreeBSD (props changed) head/mail/exim/files/patch-pass-fd-to-tcpwrappers (props changed) head/mail/exim/files/patch-scripts::exim_install (props changed) head/mail/exim/files/patch-src::EDITME (props changed) head/mail/exim/files/patch-src::auths::call_radius.c (props changed) head/mail/exim/files/patch-src::configure.default (props changed) head/mail/ezmlm-idx/files/patch-ezmlm-manage-N (props changed) head/mail/ezmlm/files/patch-aa (props changed) head/mail/ezmlm/files/patch-ezmlm-manage.c (props changed) head/mail/ezmlm/files/patch-ezmlm-return.c (props changed) head/mail/faces/files/patch-ba (props changed) head/mail/faces/files/patch-ca (props changed) head/mail/faces/files/patch-cb (props changed) head/mail/faces/files/patch-cc (props changed) head/mail/faces/files/patch-cd (props changed) head/mail/faces/files/patch-ce (props changed) head/mail/faces/files/patch-cf (props changed) head/mail/faces/files/patch-ch (props changed) head/mail/faces/files/patch-ci (props changed) head/mail/faces/files/patch-cj (props changed) head/mail/faces/files/patch-ck (props changed) head/mail/filtermail/files/patch-src::Makefile.in (props changed) head/mail/filtermail/files/patch-src::filter.hh (props changed) head/mail/filtermail/files/patch-src::preferences.cc (props changed) head/mail/firemime/files/patch-firemake_makefiletop (props changed) head/mail/firepay/files/patch-firemake_makefiletop (props changed) head/mail/ftrack/files/patch-MakeFiles-FreeBSD-Makefile (props changed) head/mail/ftrack/files/patch-hpp-a_list.hpp (props changed) head/mail/ftrack/files/patch-hpp-pktbase.hpp (props changed) head/mail/ftrack/files/patch-hpp-ustr.hpp (props changed) head/mail/ftrack/files/patch-hpp::constant.hpp (props changed) head/mail/ftrack/files/patch-hpp::ufmtypes.h (props changed) head/mail/ftrack/files/patch-src-help.cpp (props changed) head/mail/ftrack/files/patch-src-parsetpl.cpp (props changed) head/mail/ftrack/files/patch-src-scd_do.cpp (props changed) head/mail/ftrack/files/patch-src::ftrack.cpp (props changed) head/mail/ftrack/files/patch-src::ustr.cpp (props changed) head/mail/ftrack/files/patch-src::utils.cpp (props changed) head/mail/gensig/files/patch-sigparams.c (props changed) head/mail/getmail/files/patch-setup.py (props changed) head/mail/gmail-notify/files/patch-GmailConfig.py (props changed) head/mail/gmail-notify/files/patch-langs.xml (props changed) head/mail/gmail-notify/files/patch-notifier.conf.sample (props changed) head/mail/gmail-notify/files/patch-notifier.py (props changed) head/mail/gmime2/files/patch-docs_Makefile.in (props changed) head/mail/gmime2/files/patch-gmime-2.0.pc.in (props changed) head/mail/gmime2/files/patch-mono_Makefile.in (props changed) head/mail/gmime2/files/patch-tests__test-mbox.c (props changed) head/mail/gmime2/files/patch-tests__test-mime.c (props changed) head/mail/gmime2/files/patch-tests__test-parser.c (props changed) head/mail/gmime24/files/patch-docs_Makefile.in (props changed) head/mail/gmime24/files/patch-gmime-2.4.pc.in (props changed) head/mail/gmime24/files/patch-mono_gmime-sharp.dll.config.in (props changed) head/mail/gmime24/files/patch-tests__test-mbox.c (props changed) head/mail/gmime24/files/patch-tests__test-mime.c (props changed) head/mail/gmime24/files/patch-tests__test-parser.c (props changed) head/mail/gmime26/files/patch-docs_Makefile.in (props changed) head/mail/gmime26/files/patch-tests__test-mbox.c (props changed) head/mail/gmime26/files/patch-tests__test-mime.c (props changed) head/mail/gmime26/files/patch-tests__test-parser.c (props changed) head/mail/gnarwl/files/patch-Makefile.in (props changed) head/mail/gnarwl/files/patch-configure (props changed) head/mail/gnarwl/files/patch-configure.ac (props changed) head/mail/gnarwl/files/patch-data-Makefile (props changed) head/mail/gnarwl/files/patch-doc-Makefile (props changed) head/mail/gnome-gmail-notifier/files/patch-src_ggn-icon.c (props changed) head/mail/grepmail/files/patch-Makefile.PL (props changed) head/mail/gubby/files/patch-include_grep.h (props changed) head/mail/gubby/files/patch-include_guess.h (props changed) head/mail/gubby/files/patch-include_initcurs.h (props changed) head/mail/hashcash/files/patch-Makefile (props changed) head/mail/hbiff/files/patch-01 (props changed) head/mail/heirloom-mailx/files/patch-cmd2.c (props changed) head/mail/heirloom-mailx/files/patch-makeconfig (props changed) head/mail/heirloom-mailx/files/patch-openssl.c (props changed) head/mail/horde-imp/files/patch-config_prefs.php (props changed) head/mail/horde3-imp/files/patch-ab (props changed) head/mail/horde3-imp/files/patch-ac (props changed) head/mail/horde3-imp/files/patch-config::conf.xml (props changed) head/mail/horde3-turba/files/patch-config::sources.php.dist (props changed) head/mail/ifile/files/patch-Makefile.in (props changed) head/mail/ifile/files/patch-argp_argp.h (props changed) head/mail/imap-uw/files/patch-aa (props changed) head/mail/imap-uw/files/patch-ab (props changed) head/mail/imap-uw/files/patch-ac (props changed) head/mail/imap-uw/files/patch-ad (props changed) head/mail/imap-uw/files/patch-ae (props changed) head/mail/imap-uw/files/patch-af (props changed) head/mail/imap-uw/files/patch-ag (props changed) head/mail/imap-uw/files/patch-ah (props changed) head/mail/imap-uw/files/patch-ai (props changed) head/mail/imap-uw/files/patch-src-dmail-Makefile (props changed) head/mail/imap-uw/files/patch-src-mlock-Makefile (props changed) head/mail/imap-uw/files/patch-src-osdep-unix-env_unix.c (props changed) head/mail/imap-uw/files/patch-src-tmail-Makefile (props changed) head/mail/imap-uw/files/patch-src__imapd__imapd.8 (props changed) head/mail/imap-uw/files/patch-src__ipopd__ipopd.8 (props changed) head/mail/imap-uw/files/patch-src_mailutil_Makefile (props changed) head/mail/isoqlog/files/patch-Data.c (props changed) head/mail/isoqlog/files/patch-Data.h (props changed) head/mail/lbdb/files/patch-mutt_ldap_query (props changed) head/mail/librfc822/files/patch-lexer.cc (props changed) head/mail/libspf/files/patch-respect_cflags_and_dont_create_spfmilter_Makefile (props changed) head/mail/libspf/files/patch-src_libspf_main.c (props changed) head/mail/libspf2/files/patch-src_libspf2_spf__request.c (props changed) head/mail/libspf2/files/patch-src_libspf2_spf__response.c (props changed) head/mail/libspf2/files/patch-src_spf__example_spf__example.c (props changed) head/mail/libvmime/files/patch-configure (props changed) head/mail/libvmime/files/patch-src__mailboxField.cpp (props changed) head/mail/libvmime/files/patch-vmime__base.hpp (props changed) head/mail/lmtp2nntp/files/patch-configure (props changed) head/mail/lmtp2nntp/files/patch-lib_l2_va.diff (props changed) head/mail/lmtp2nntp/files/patch-lmtp2nntp_l2.c.diff (props changed) head/mail/lmtp2nntp/files/patch-lmtp2nntp_main.c.diff (props changed) head/mail/lmtp2nntp/files/patch-lmtp2nntp_msg.c.diff (props changed) head/mail/lurker/files/patch-Makefile.am (props changed) head/mail/lurker/files/patch-Makefile.in (props changed) head/mail/lurker/files/patch-configure (props changed) head/mail/mahogany/files/patch-include-MThread.h (props changed) head/mail/mahogany/files/patch-src-classes-MessageView.cpp (props changed) head/mail/mahogany/files/patch-src-gui-wxDialogLayout.cpp (props changed) head/mail/mahogany/files/patch-src-gui-wxFolderView.cpp (props changed) head/mail/mahogany/files/patch-src-gui-wxIconManager.cpp (props changed) head/mail/mahogany/files/patch-src-gui-wxMApp.cpp (props changed) head/mail/mahogany/files/patch-src-gui-wxMDialogs.cpp (props changed) head/mail/mahogany/files/patch-src-gui-wxSortDialog.cpp (props changed) head/mail/mahogany/files/patch-src-modules-BareBonesEditor.cpp (props changed) head/mail/mail-notification/files/patch-50-evolution (props changed) head/mail/mail-notification/files/patch-52-sasl_encode64 (props changed) head/mail/mail-notification/files/patch-53-evolution-gtkhtml (props changed) head/mail/mail-notification/files/patch-54-camel_headers (props changed) head/mail/mail-notification/files/patch-56-weak (props changed) head/mail/mail-notification/files/patch-57-popup-attach (props changed) head/mail/mail-notification/files/patch-58-kde-trayicon (props changed) head/mail/mail-notification/files/patch-openssl-threads (props changed) head/mail/mail-notification/files/patch-po_pl.po (props changed) head/mail/mail-notification/files/patch-src-mn-stock.c (props changed) head/mail/mail2sms/files/patch-aa (props changed) head/mail/mailagent/files/patch-ac (props changed) head/mail/mailagent/files/patch-agent::filter::logfile.c (props changed) head/mail/mailagent/files/patch-agent::man::Makefile.SH (props changed) head/mail/mailfmt/files/patch-Makefile (props changed) head/mail/mailgraph/files/patch-mailgraph.cgi (props changed) head/mail/mailman/files/extra-patch-Mailman-Cgi-private.py (props changed) head/mail/mailman/files/patch-Mailman::Defaults.py.in (props changed) head/mail/mailman/files/patch-Mailman::htmlformat.py (props changed) head/mail/mailman/files/patch-configure-in (props changed) head/mail/mailman/files/patch-misc::mailman.in (props changed) head/mail/mailscanner/files/patch-bin-cron-update_phishing_sites.cron (props changed) head/mail/mailscanner/files/patch-bin-cron-update_virus_scanners.cron (props changed) head/mail/mailscanner/files/patch-lib-clamav-wrapper (props changed) head/mail/mailscanner/files/patch-lib__MailScanner__TNEF.pm (props changed) head/mail/mailsync/files/patch-configure (props changed) head/mail/mailx/files/patch-cmd2.c (props changed) head/mail/mailx/files/patch-fio.c (props changed) head/mail/mailx/files/patch-popen.c (props changed) head/mail/majordomo/files/patch-aa (props changed) head/mail/majordomo/files/patch-ab (props changed) head/mail/majordomo/files/patch-ac (props changed) head/mail/majordomo/files/patch-ba (props changed) head/mail/majordomo/files/patch-bb (props changed) head/mail/majordomo/files/patch-bc (props changed) head/mail/majordomo/files/patch-bd (props changed) head/mail/majordomo/files/patch-be (props changed) head/mail/majordomo/files/patch-bf (props changed) head/mail/majordomo/files/patch-bg (props changed) head/mail/majordomo/files/patch-bh (props changed) head/mail/majordomo/files/patch-bi (props changed) head/mail/majordomo/files/patch-bj (props changed) head/mail/majordomo/files/patch-majordomo.pl (props changed) head/mail/majordomo/files/patch-sec1 (props changed) head/mail/masqmail/files/patch-Makefile.in (props changed) head/mail/masqmail/files/patch-log.c (props changed) head/mail/mboxgrep/files/patch-md5 (props changed) head/mail/mboxgrep/files/patch-noredundancy (props changed) head/mail/mboxstats/files/patch-br.cpp (props changed) head/mail/mdpop3d/files/patch-mdpop3d.c (props changed) head/mail/mess822/files/patch-aa (props changed) head/mail/metamail/files/patch-Makefile (props changed) head/mail/metamail/files/patch-bin_showaudio (props changed) head/mail/metamail/files/patch-bin_showexternal (props changed) head/mail/metamail/files/patch-bin_showpartial (props changed) head/mail/metamail/files/patch-bin_showpicture (props changed) head/mail/metamail/files/patch-bin_sun2mime (props changed) head/mail/metamail/files/patch-config.h (props changed) head/mail/metamail/files/patch-fonts_Makefile (props changed) head/mail/metamail/files/patch-metamail_codes.c (props changed) head/mail/metamail/files/patch-metamail_mailto.c (props changed) head/mail/metamail/files/patch-metamail_metamail.c (props changed) head/mail/metamail/files/patch-metamail_mmencode.c (props changed) head/mail/metamail/files/patch-metamail_putenv.c (props changed) head/mail/metamail/files/patch-metamail_shared.c (props changed) head/mail/metamail/files/patch-metamail_splitmail.c (props changed) head/mail/metamail/files/patch-richmail_richlex.c (props changed) head/mail/metamail/files/patch-richmail_richset.c (props changed) head/mail/metamail/files/patch-richmail_richtext.c (props changed) head/mail/mew/files/patch-Makefile.in (props changed) head/mail/mew/files/patch-bin__Makefile.in (props changed) head/mail/mew/files/patch-info__Makefile (props changed) head/mail/milter-greylist-devel/files/patch-greylist.conf (props changed) head/mail/milter-greylist-devel/files/patch-ldapcheck.c (props changed) head/mail/milter-greylist/files/patch-greylist.conf (props changed) head/mail/milter-greylist/files/patch-ldapcheck.c (props changed) head/mail/milter-greylist/files/patch-sync.c (props changed) head/mail/milter-manager/files/patch-binding_ruby_test_run-test.sh (props changed) head/mail/milter-regex/files/patch-milter-regex.8 (props changed) head/mail/milter-regex/files/patch-milter-regex.c (props changed) head/mail/mimedefang/files/patch-Makefile.in (props changed) head/mail/mimedefang/files/patch-examples__init-script.in (props changed) head/mail/mimedefang/files/patch-mimedefang-filter.5.in (props changed) head/mail/mimedefang/files/patch-mimedefang.pl.in (props changed) head/mail/mini_sendmail/files/patch-mini_sendmail.c (props changed) head/mail/minimalist/files/patch-aa (props changed) head/mail/mixmaster/files/patch-aa (props changed) head/mail/mixmaster/files/patch-ab (props changed) head/mail/mixmaster/files/patch-ac (props changed) head/mail/mixmaster/files/patch-ad (props changed) head/mail/ml/files/patch-aa (props changed) head/mail/ml/files/patch-ab (props changed) head/mail/ml/files/patch-ac (props changed) head/mail/ml/files/patch-ad (props changed) head/mail/ml/files/patch-ae (props changed) head/mail/ml/files/patch-af (props changed) head/mail/ml/files/patch-ag (props changed) head/mail/ml/files/patch-imap-4-src-osdep-unix-bezerk.c (props changed) head/mail/ml/files/patch-impa-4-src-osdep-unix-mmdf.c (props changed) head/mail/mls/files/patch-Makefile (props changed) head/mail/mls/files/patch-mls.h (props changed) head/mail/mls/files/patch-mls_text.c (props changed) head/mail/mls/files/patch-mls_text.h (props changed) head/mail/mmr/files/patch-handlemail.cpp (props changed) head/mail/mmr/files/patch-main.cpp (props changed) head/mail/mmr/files/patch-mime.cpp (props changed) head/mail/mmr/files/patch-outgoing.cpp (props changed) head/mail/movemail/files/patch-movemail.c (props changed) head/mail/mpop/files/patch-doc-mpop.1 (props changed) head/mail/msmtp/files/patch-doc-msmtp.1 (props changed) head/mail/mutt/files/extra-patch-aspell (props changed) head/mail/mutt/files/extra-patch-doc-ref (props changed) head/mail/mutt/files/extra-patch-greeting (props changed) head/mail/mutt/files/extra-patch-ifdef (props changed) head/mail/mutt/files/extra-patch-maildir-mtime (props changed) head/mail/mutt/files/extra-patch-maildir-mtime-nntp (props changed) head/mail/mutt/files/extra-patch-no-mbox-manpage (props changed) head/mail/mutt/files/extra-patch-parent-child-match (props changed) head/mail/mutt/files/extra-patch-pgp-dw (props changed) head/mail/mutt/files/extra-patch-reverse_reply (props changed) head/mail/mutt/files/extra-patch-signature-menu (props changed) head/mail/mutt/files/extra-patch-smime-outlook (props changed) head/mail/mutt/files/extra-patch-trash-purge (props changed) head/mail/mutt/files/patch-05 (props changed) head/mail/mutt/files/patch-08 (props changed) head/mail/mutt/files/patch-Makefile.am (props changed) head/mail/mutt/files/patch-Makefile.am.doc (props changed) head/mail/mutt/files/patch-contrib-Makefile.am (props changed) head/mail/mutt/files/patch-date-conditional (props changed) head/mail/mutt/files/patch-doc-manual.xml.head (props changed) head/mail/mutt/files/patch-examples (props changed) head/mail/mutt/files/patch-imap-message.c (props changed) head/mail/mutt/files/patch-mktemp (props changed) head/mail/mutt/files/patch-smime-self (props changed) head/mail/mutt/files/patch-smime-sender (props changed) head/mail/mutt/files/patch-threadcomplete (props changed) head/mail/mutt14/files/extra-patch-doc-ref (props changed) head/mail/mutt14/files/patch-02 (props changed) head/mail/mutt14/files/patch-03 (props changed) head/mail/mutt14/files/patch-05 (props changed) head/mail/mutt14/files/patch-08 (props changed) head/mail/mutt14/files/patch-aclocal.m4 (props changed) head/mail/mutt14/files/patch-configure.in (props changed) head/mail/mutt14/files/patch-contrib-Makefile.in (props changed) head/mail/mutt14/files/patch-doc-mutt.man (props changed) head/mail/mutt14/files/patch-examples (props changed) head/mail/mutt14/files/patch-init.c (props changed) head/mail/mutt14/files/patch-m4-gssapi.m4 (props changed) head/mail/mutt14/files/patch-mktemp (props changed) head/mail/mutt14/files/patch-threadcomplete (props changed) head/mail/mutt14/files/patch-z (props changed) head/mail/muttzilla/files/patch-Makefile (props changed) head/mail/muttzilla/files/patch-mutzilla.c (props changed) head/mail/muttzilla/files/patch-mzbase.c (props changed) head/mail/nbsmtp/files/patch-configure (props changed) head/mail/nmh/files/patch-etc_mhn.defaults.sh (props changed) head/mail/noattach/files/patch-Makefile.in (props changed) head/mail/noattach/files/patch-noattach.c (props changed) head/mail/normalizemime/files/patch-normalizemime.cc (props changed) head/mail/nullmailer/files/patch-Makefile.in (props changed) head/mail/nullmailer/files/patch-fdobuf.h (props changed) head/mail/nullmailer/files/patch-src-Makefile.in (props changed) head/mail/osbf-lua/files/patch-config (props changed) head/mail/ovs/files/patch-ovs.cgi (props changed) head/mail/p3scan/files/patch-Makefile (props changed) head/mail/p3scan/files/patch-getline_ssl.c (props changed) head/mail/p3scan/files/patch-getlinep3.c (props changed) head/mail/p3scan/files/patch-p3scan.c (props changed) head/mail/p3scan/files/patch-p3scan.conf (props changed) head/mail/p3scan/files/patch-p3scan.h (props changed) head/mail/p3scan/files/patch-parsefile.c (props changed) head/mail/p3scan/files/patch-ripmime::build_ripOLE (props changed) head/mail/p3scan/files/patch-ripmime::build_tnef (props changed) head/mail/p3scan/files/patch-ripmime::tnef::Makefile (props changed) head/mail/p3scan/files/patch-scanner_avpd.c (props changed) head/mail/p3scan/files/patch-scanner_avpd_new.c (props changed) head/mail/p3scan/files/patch-scanner_bash.c (props changed) head/mail/p3scan/files/patch-scanner_basic.c (props changed) head/mail/p3scan/files/patch-scanner_clamd.c (props changed) head/mail/p3scan/files/patch-scanner_sample.c (props changed) head/mail/p3scan/files/patch-scanner_trophie.c (props changed) head/mail/p5-Email-LocalDelivery-Ezmlm/files/patch-Ezmlm.pm (props changed) head/mail/p5-FuzzyOcr-devel/files/patch-FuzzyOcr.cf (props changed) head/mail/p5-FuzzyOcr-devel/files/patch-FuzzyOcr.preps (props changed) head/mail/p5-FuzzyOcr-devel/files/patch-FuzzyOcr.scansets (props changed) head/mail/p5-IMAP-Sieve/files/patch-MANIFEST (props changed) head/mail/p5-IMAP-Sieve/files/patch-Sieve.pm (props changed) head/mail/p5-MIME-Fast/files/patch-Makefile.PL (props changed) head/mail/p5-MIME-Fast/files/patch-Part.xs (props changed) head/mail/p5-MIME-Fast/files/patch-gmime-stream-perlio.h (props changed) head/mail/p5-Mail-RBL/files/patch-Makefile.PL (props changed) head/mail/p5-Mail-SRS/files/patch-Makefile.PL (props changed) head/mail/p5-Mail-SpamAssassin/files/patch-bug6624 (props changed) head/mail/p5-Mail-SpamAssassin/files/patch-bug6655 (props changed) head/mail/p5-Mail-SpamAssassin/files/patch-bug6698 (props changed) head/mail/p5-Mail-SpamAssassin/files/patch-sa-learn.raw (props changed) head/mail/p5-Net-IMAP-Simple/files/patch-Makefile.PL (props changed) head/mail/p5-Sendmail-Milter/files/patch-Makefile.PL (props changed) head/mail/pathalias/files/patch-Makefile (props changed) head/mail/pathalias/files/patch-mapit.c (props changed) head/mail/pathalias/files/patch-mem.c (props changed) head/mail/pathalias/files/patch-printit.c (props changed) head/mail/pecl-pop3/files/patch-pop3.c (props changed) head/mail/perdition/files/patch-etc-Makefile.in (props changed) head/mail/pfqueue/files/patch-pfqlib.h (props changed) head/mail/php5-imap/files/patch-config.m4 (props changed) head/mail/php53-imap/files/patch-config.m4 (props changed) head/mail/php55-imap/files/patch-config.m4 (props changed) head/mail/pop3gwd/files/patch-connect_loginc (props changed) head/mail/pop3gwd/files/patch-get_remote_datac (props changed) head/mail/pop3gwd/files/patch-ioc (props changed) head/mail/pop3gwd/files/patch-mainc (props changed) head/mail/pop3gwd/files/patch-makefile (props changed) head/mail/pop3gwd/files/patch-parse_cmd_linec (props changed) head/mail/pop3gwd/files/patch-pop3-gwh (props changed) head/mail/pop3gwd/files/patch-relay_datac (props changed) head/mail/pop3lite/files/patch-libtool22 (props changed) head/mail/pop3proxy/files/patch-src_imapcommon.c (props changed) head/mail/pop3proxy/files/patch-ssl (props changed) head/mail/pop3vscan/files/patch-Makefile (props changed) head/mail/pop3vscan/files/patch-pop3vscan.c (props changed) head/mail/pop3vscan/files/patch-pop3vscan.h (props changed) head/mail/pop3vscan/files/patch-scanner_avpd.c (props changed) head/mail/pop3vscan/files/patch-scanner_trophie.c (props changed) head/mail/popa3d/files/patch-aa (props changed) head/mail/popa3d/files/patch-ab (props changed) head/mail/popcheck/files/patch-Makefile (props changed) head/mail/popd/files/patch-lib::funcs.c (props changed) head/mail/popd/files/patch-lib::mbox_maildir.c (props changed) head/mail/popd/files/patch-lib__mbox_mbf.c (props changed) head/mail/popd/files/patch-lib__private.h (props changed) head/mail/popd/files/patch-src::popd.8 (props changed) head/mail/popd/files/patch-src::popd.c (props changed) head/mail/popd/files/patch-src::popd.conf.5 (props changed) head/mail/popd/files/patch-src__config.h (props changed) head/mail/popd/files/patch-src_authenticate.c (props changed) head/mail/poppassd/files/patch-aa (props changed) head/mail/poppassd/files/patch-ab (props changed) head/mail/popper/files/patch-aa (props changed) head/mail/popper/files/patch-ac (props changed) head/mail/popper/files/patch-ad (props changed) head/mail/popper/files/patch-ae (props changed) head/mail/popper/files/patch-af (props changed) head/mail/popper/files/patch-ag (props changed) head/mail/popper/files/patch-ah (props changed) head/mail/popper/files/patch-ai (props changed) head/mail/popper/files/patch-aj (props changed) head/mail/popper/files/patch-ak (props changed) head/mail/popper/files/patch-al (props changed) head/mail/popper/files/patch-am (props changed) head/mail/popper/files/patch-an (props changed) head/mail/popper/files/patch-ao (props changed) head/mail/popper/files/patch-pop_pass.c (props changed) head/mail/popper/files/patch-popauth.c (props changed) head/mail/popular/files/patch-configure (props changed) head/mail/popular/files/patch-src-Makefile.in (props changed) head/mail/popular/files/patch-src-io.c (props changed) head/mail/popular/files/patch-src-pcheckd.c (props changed) head/mail/popular/files/patch-src-pdeliver.c (props changed) head/mail/popular/files/patch-src-popular.h (props changed) head/mail/popular/files/patch-src-pproxy.c (props changed) head/mail/popular/files/patch-src-pserv.c (props changed) head/mail/popular/files/patch-src-sig.c (props changed) head/mail/popular/files/patch-src-util.c (props changed) head/mail/postfix-gps/files/patch-configure.in (props changed) head/mail/postfix-gps/files/patch-src__pmatcher.h (props changed) head/mail/postfix-policyd-sf/files/patch-Makefile (props changed) head/mail/postfix-policyd-sf/files/patch-policyd.conf (props changed) head/mail/postfix-policyd-spf-perl/files/patch-postfix-policyd-spf-perl (props changed) head/mail/prayer/files/patch-files-Makefile (props changed) head/mail/prayer/files/patch-lib-mydb.c (props changed) head/mail/prayer/files/patch-man-Makefile (props changed) head/mail/prayer/files/patch-servers-Makefile (props changed) head/mail/prayer/files/patch-templates-remove-url-prefix (props changed) head/mail/prayer/files/patch-utils-Makefile (props changed) head/mail/prayer/files/patch-utils__prayer-cyclog.SRC (props changed) head/mail/premail/files/patch-aa (props changed) head/mail/premail/files/patch-ad (props changed) head/mail/procmail/files/patch-aa (props changed) head/mail/procmail/files/patch-ab (props changed) head/mail/procmail/files/patch-ac (props changed) head/mail/procmail/files/patch-ad (props changed) head/mail/procmail/files/patch-ae (props changed) head/mail/procmail/files/patch-af (props changed) head/mail/procmail/files/patch-ag (props changed) head/mail/procmail/files/patch-ah (props changed) head/mail/procmail/files/patch-ai (props changed) head/mail/procmail/files/patch-aj (props changed) head/mail/procmail/files/patch-src:autoconf (props changed) head/mail/procmail/files/patch-src:mailfold.c (props changed) head/mail/pronto/files/patch-aa (props changed) head/mail/py-apolicy/files/patch-z (props changed) head/mail/py-ppolicy/files/patch-ppolicy.tap (props changed) head/mail/py-spambayes/files/patch-spambayes_Dibbler.py (props changed) head/mail/qmail-contrib/files/extra-patch-newaliases (props changed) head/mail/qmail-ldap/files/patch-install.c (props changed) head/mail/qmail-scanner/files/extra-patch-configure (props changed) head/mail/qmail-scanner1/files/patch-configure (props changed) head/mail/qmail-scanner1/files/patch-qmail-scanner-queue.template (props changed) head/mail/qmail-scanner1/files/patch-sub-spamassassin.pl (props changed) head/mail/qmail/files/extra-patch-amd64 (props changed) head/mail/qmail/files/extra-patch-spamcontrol-qmail-remote.c (props changed) head/mail/qmail/files/extra-patch-spamcontrol-qmail-smtpd.c (props changed) head/mail/qmail/files/extra-patch-spamcontrol-tls_remote.c (props changed) head/mail/qmail/files/extra-patch-utmpx (props changed) head/mail/qmail/files/extra-patch-utmpx-ldap (props changed) head/mail/qmail/files/patch-Makefile (props changed) head/mail/qmail/files/patch-auto_uids-c-dist (props changed) head/mail/qmail/files/patch-install.c (props changed) head/mail/qmail/files/patch-qmail-local.c (props changed) head/mail/qmailanalog/files/patch-gen_allocdefs.h (props changed) head/mail/qmailanalog/files/patch-matchup.c (props changed) head/mail/qmailmrtg7/files/patch-checkq.c (props changed) head/mail/qmhandle/files/patch-qmHandle (props changed) head/mail/qpopper/files/extra-patch-password::auth_user.c (props changed) head/mail/qpopper/files/extra-patch-password::poppassd.c (props changed) head/mail/qpopper/files/patch-aa (props changed) head/mail/qpopper/files/patch-ac (props changed) head/mail/qpopper/files/patch-ao (props changed) head/mail/qpopper/files/patch-ap (props changed) head/mail/qpopper/files/patch-aq (props changed) head/mail/qpopper/files/patch-ar (props changed) head/mail/qpopper/files/patch-popper::pop_pass.c (props changed) head/mail/qscan/files/patch-src::qscan.c (props changed) head/mail/qscan/files/patch-src::qscan.h (props changed) head/mail/quickml/files/extra-patch-limit-config.rb (props changed) head/mail/quickml/files/extra-patch-limit-core.rb (props changed) head/mail/quickml/files/extra-patch-limit-messages.ja (props changed) head/mail/quickml/files/extra-patch-limit-quickmlrc.sample.in (props changed) head/mail/quickml/files/extra-patch-ruby19-Makefile.in (props changed) head/mail/quickml/files/extra-patch-ruby19-config.rb (props changed) head/mail/quickml/files/extra-patch-ruby19-core.rb (props changed) head/mail/quickml/files/extra-patch-ruby19-gettext.rb (props changed) head/mail/quickml/files/extra-patch-ruby19-mail.rb (props changed) head/mail/quickml/files/extra-patch-ruby19-messages.ja (props changed) head/mail/quickml/files/extra-patch-ruby19-quickml-analog.in (props changed) head/mail/quickml/files/extra-patch-ruby19-quickml.in (props changed) head/mail/quickml/files/extra-patch-ruby19-utils.rb (props changed) head/mail/quickml/files/extra-patch-woanalog-Makefile.in (props changed) head/mail/quickml/files/patch-Makefile.in (props changed) head/mail/quickml/files/patch-configure.ac (props changed) head/mail/quickml/files/patch-quickml-analog.in (props changed) head/mail/rabl_client/files/patch-Makefile.in (props changed) head/mail/rabl_server/files/patch-rabl_server.conf (props changed) head/mail/raysfilter/files/patch-mf-reset (props changed) head/mail/raysfilter/files/patch-mf-start (props changed) head/mail/raysfilter/files/patch-mf-stop (props changed) head/mail/raysfilter/files/patch-rays-filter.c (props changed) head/mail/rbl-milter/files/patch-aa (props changed) head/mail/rblcheck/files/patch-aa (props changed) head/mail/reply-o-matic/files/patch-Makefile (props changed) head/mail/rftp/files/patch-01 (props changed) head/mail/roundcube-umich/files/patch-default-preview (props changed) head/mail/roundcube/files/patch-INSTALL (props changed) head/mail/roundcube/files/patch-config_main.inc.php.dist (props changed) head/mail/roundcube/files/patch-installer_check.php (props changed) head/mail/roundcube/files/patch-program_lib_Roundcube_rcube_message.php (props changed) head/mail/roundcube/files/patch-program_lib_Roundcube_rcube_session.php (props changed) head/mail/rss2email/files/patch-r2e (props changed) head/mail/scam-backscatter/files/patch-scam-back.c (props changed) head/mail/scam-backscatter/files/patch-scam.conf (props changed) head/mail/sccmilter/files/patch-localtypes.h (props changed) head/mail/sendmail/files/patch-FreeBSD (props changed) head/mail/sendmail/files/patch-bsd4.4.m4 (props changed) head/mail/sendmail/files/patch-cfhead.m4 (props changed) head/mail/sendmail/files/patch-doc-op-Makefile (props changed) head/mail/sendmail/files/patch-mail.local.8 (props changed) head/mail/sendmail/files/patch-mail.local.c (props changed) head/mail/sendmail/files/patch-makeinfo.sh (props changed) head/mail/sendmail/files/patch-rmail.c (props changed) head/mail/sendmail/files/patch-smrsh.8 (props changed) head/mail/sentinel/files/patch-aa (props changed) head/mail/serialmail/files/patch-aa (props changed) head/mail/sgwi/files/patch-.htaccess (props changed) head/mail/sgwi/files/patch-.htpasswd (props changed) head/mail/sid-milter/files/patch-FreeBSD (props changed) head/mail/sigit/files/patch-configure (props changed) head/mail/sigit/files/patch-data-Makefile (props changed) head/mail/sigrot/files/patch-aa (props changed) head/mail/sigrot/files/patch-ab (props changed) head/mail/simscan/files/patch-fix_clamav_0.93 (props changed) head/mail/smail/files/patch-src-pwcache.c (props changed) head/mail/smail/files/patch-util-Makefile (props changed) head/mail/smfsav/files/patch-readme (props changed) head/mail/smfsav/files/patch-smf-sav.c (props changed) head/mail/smfsav/files/patch-smf-sav.conf (props changed) head/mail/smtptrapd/files/patch-smtptrapd.c (props changed) head/mail/spamass-milter/files/extra-patch-addauth (props changed) head/mail/spamass-milter/files/extra-patch-ipv6 (props changed) head/mail/spamass-milter/files/extra-patch-options (props changed) head/mail/spamass-milter/files/extra-patch-rejecttext1 (props changed) head/mail/spamguard/files/patch-Makefile.am (props changed) head/mail/spamilter/files/patch-Makefile.tmpl (props changed) head/mail/spamoracle/files/patch-Makefile (props changed) head/mail/spamoracle/files/patch-wordsplit.mlp (props changed) head/mail/spampd/files/patch-setsid (props changed) head/mail/spampd/files/patch-user_dir (props changed) head/mail/spamprobe/files/patch-src_database_FrequencyCBImpl_pbl.cc (props changed) head/mail/spamprobe/files/patch-src_parser_PngParser.cc (props changed) head/mail/spfval/files/patch-src_spfval_spfval.c (props changed) head/mail/spfval/files/patch-src_spfval_util.h (props changed) head/mail/squirrelmail-avelsieve-plugin/files/patch-avelsieve__include__managesieve.lib.php (props changed) head/mail/squirrelmail-mark_read-plugin/files/patch-mark_read__mark_read.php (props changed) head/mail/squirrelmail/files/patch-functions__i18n.php (props changed) head/mail/ssmtp/files/patch-configure (props changed) head/mail/ssmtp/files/patch-md5auth-hmac_md5.c (props changed) head/mail/ssmtp/files/patch-ssmtp.c (props changed) head/mail/svnmailer/files/patch-setup.py (props changed) head/mail/svnmailer/files/patch-src-lib-svnmailer-notifier-_base.py (props changed) head/mail/sylpheed/files/patch-libsylph-defs.h (props changed) head/mail/sylpheed/files/patch-src-printing.c (props changed) head/mail/synonym/files/patch-Makefile (props changed) head/mail/synonym/files/patch-synonym.c (props changed) head/mail/synonym/files/patch-synonym.h (props changed) head/mail/teapop/files/patch-etc::Makefile.in (props changed) head/mail/thunderbird/files/patch-ldap-sdks-c-sdk-ldap-libraries-libldap-Makefile.in (props changed) head/mail/thunderbird/files/patch-mozilla-security-manager-ssl-src-nsNSSComponent.cpp (props changed) head/mail/thunderbird/files/patch-mozilla_toolkit_mozapps_installer_packager_mk (props changed) head/mail/tkrat2/files/patch-configure (props changed) head/mail/tkrat2/files/patch-ssl (props changed) head/mail/tpop3d/files/extra-patch-auth_perl.c (props changed) head/mail/tpop3d/files/patch-Makefile.in (props changed) head/mail/up-imapproxy/files/patch-configure.in (props changed) head/mail/up-imapproxy/files/patch-ssl (props changed) head/mail/usendmail/files/patch-src_env_get.c (props changed) head/mail/usendmail/files/patch-src_typesize.sh (props changed) head/mail/usendmail/files/patch-src_uogetopt.c (props changed) head/mail/vbsfilter/files/patch-vbsfilter.c (props changed) head/mail/vm-pop3d/files/patch-vm-pop3d.h (props changed) head/mail/vmailmgr/files/patch-recursive.diff (props changed) head/mail/vpopmail/files/patch-Makefile.in (props changed) head/mail/vpopmail/files/patch-README.onchange (props changed) head/mail/vpopmail/files/patch-README.vdelivermail (props changed) head/mail/vpopmail/files/patch-README.vpopmaild (props changed) head/mail/vpopmail/files/patch-authvchkpw.c (props changed) head/mail/vpopmail/files/patch-backfill.c (props changed) head/mail/vpopmail/files/patch-cdb-Makefile (props changed) head/mail/vpopmail/files/patch-config.h.in (props changed) head/mail/vpopmail/files/patch-configure (props changed) head/mail/vpopmail/files/patch-vdelivermail.c (props changed) head/mail/vpopmail/files/patch-vldap.c (props changed) head/mail/vpopmail/files/patch-vlist.c (props changed) head/mail/vpopmail/files/patch-vlistlib.c (props changed) head/mail/vpopmail/files/patch-vmysql.c (props changed) head/mail/vpopmail/files/patch-vpalias.c (props changed) head/mail/vpopmail/files/patch-vpgsql.c (props changed) head/mail/vpopmail/files/patch-vpopmail.c (props changed) head/mail/vpopmail/files/patch-vusagec.conf (props changed) head/mail/vpopmail/files/patch-vutil.c (props changed) head/mail/vqadmin/files/patch-Makefile.in (props changed) head/mail/vqadmin/files/patch-config.h.in (props changed) head/mail/vqadmin/files/patch-configure (props changed) head/mail/vqregister/files/patch-Makefile (props changed) head/mail/wanderlust-devel/files/patch-Makefile (props changed) head/mail/wanderlust-devel/files/patch-WL-MK (props changed) head/mail/wanderlust-devel/files/patch-samples_en_dot.wl (props changed) head/mail/wanderlust-devel/files/patch-samples_ja_dot.wl (props changed) head/mail/wanderlust/files/extra-patch-WL-MK (props changed) head/mail/wanderlust/files/extra-patch-elmo:elmo-version.el (props changed) head/mail/wanderlust/files/patch-Makefile (props changed) head/mail/wanderlust/files/patch-samples_en_dot.wl (props changed) head/mail/wanderlust/files/patch-samples_ja_dot.wl (props changed) head/mail/wanderlust/files/patch-wl_wl-draft.el (props changed) head/mail/websieve/files/patch-funclib.pl (props changed) head/mail/websieve/files/patch-websieve.pl (props changed) head/mail/whoson/files/patch-Makefile.in (props changed) head/mail/wmpop3/files/patch-aa (props changed) head/mail/wmpop3/files/patch-ab (props changed) head/mail/xbuffy/files/patch-aa (props changed) head/mail/xbuffy/files/patch-ab (props changed) head/mail/xbuffy/files/patch-ac (props changed) head/mail/xbuffy/files/patch-ad (props changed) head/mail/xbuffy/files/patch-ae (props changed) head/mail/xbuffy/files/patch-af (props changed) head/mail/xbuffy/files/patch-ag (props changed) head/mail/xbuffy/files/patch-ah (props changed) head/mail/xfaces/files/patch-XFaces.ad (props changed) head/mail/xfmail/files/patch-aa (props changed) head/mail/xfmail/files/patch-src-edit_fl_edit.cpp (props changed) head/mail/xfmail/files/patch-src-ui_xfmail.cpp (props changed) head/mail/xlbiff/files/patch-01 (props changed) head/mail/xlbiff/files/patch-02 (props changed) head/mail/xmail/files/patch-aa (props changed) head/mail/xmail/files/patch-ab (props changed) head/mail/xmail/files/patch-ac (props changed) head/mail/xmail/files/patch-ad (props changed) head/mail/xmailbox/files/patch-aa (props changed) head/mail/xmailbox/files/patch-ab (props changed) head/mail/xmailbox/files/patch-ac (props changed) head/mail/xmailbox/files/patch-ad (props changed) head/mail/xmailwatcher/files/patch-aa (props changed) head/mail/xmailwatcher/files/patch-xmailwathcer.c (props changed) head/mail/xpbiff/files/patch-aa (props changed) head/mail/xpbiff/files/patch-ab (props changed) head/mail/xpbiff/files/patch-ad (props changed) head/mail/xpbiff/files/patch-ae (props changed) head/mail/zmailer/files/patch-aa (props changed) head/mail/zmailer/files/patch-include-libz.h (props changed) head/mail/zmailer/files/patch-proto::Makefile.in (props changed) head/mail/zmailer/files/patch-sfio-src-lib-sfio_sfsetbuf.c (props changed) head/mail/zmailer/files/patch-transports-smtp-smtp.c (props changed) head/mail/zmailer/files/patch-transports-smtp-smtptls.c (props changed) head/math/GiNaC/files/patch-doc__examples__ginac-examples.texi (props changed) head/math/R/files/patch-configure (props changed) head/math/R/files/patch-src__nmath__standalone__test.c (props changed) head/math/aamath/files/patch-Makefile (props changed) head/math/aamath/files/patch-clang (props changed) head/math/abs/files/patch-aa (props changed) head/math/abs/files/patch-ad (props changed) head/math/abs/files/patch-ae (props changed) head/math/add/files/patch-makefile.in (props changed) head/math/ann/files/patch-Makefile (props changed) head/math/apc/files/patch-aa (props changed) head/math/arpack++/files/patch-Makefile.inc (props changed) head/math/arpack++/files/patch-include::arlutil.h (props changed) head/math/arpack/files/patch-UTIL+second.f (props changed) head/math/asir2000/files/patch-ac (props changed) head/math/asir2000/files/patch-ba (props changed) head/math/asir2000/files/patch-bb (props changed) head/math/asir2000/files/patch-bc (props changed) head/math/asir2000/files/patch-bd (props changed) head/math/asir2000/files/patch-be (props changed) head/math/asir2000/files/patch-bf (props changed) head/math/asir2000/files/patch-bh (props changed) head/math/asir2000/files/patch-bk (props changed) head/math/asymptote/files/patch-Makefile.in (props changed) head/math/atlas-devel/files/patch-CONFIG+src+SpewMakeInc.c (props changed) head/math/atlas-devel/files/patch-CONFIG+src+atlcomp.txt (props changed) head/math/atlas-devel/files/patch-CONFIG+src+backend+archinfo_freebsd.c (props changed) head/math/atlas-devel/files/patch-tune+sysinfo+L1CacheSize.c (props changed) head/math/atlas/files/patch-CONFIG+src+SpewMakeInc.c (props changed) head/math/atlas/files/patch-CONFIG+src+backend+archinfo_freebsd.c (props changed) head/math/atlas/files/patch-CONFIG+src+backend+archinfo_x86.c (props changed) head/math/atlas/files/patch-makes+Make.sysinfo (props changed) head/math/atlas/files/patch-tune+sysinfo+L1CacheSize.c (props changed) head/math/bamg/files/patch-FLAG.linux (props changed) head/math/bamg/files/patch-Makefile (props changed) head/math/bamg/files/patch-Mesh2.h (props changed) head/math/bamg/files/patch-Xrgraph.cpp (props changed) head/math/blitz++/files/patch-Makefile.in (props changed) head/math/blitz++/files/patch-doc-Makefile.in (props changed) head/math/blitz++/files/patch-doc-blitz.texi (props changed) head/math/blitz++/files/patch-doc-doxygen-Makefile.in (props changed) head/math/blocksolve95/files/patch-bmake::common (props changed) head/math/blocksolve95/files/patch-bmake::freebsd::freebsd (props changed) head/math/blocksolve95/files/patch-bmake::freebsd::freebsd.O (props changed) head/math/blocksolve95/files/patch-bmake::freebsd::freebsd.site (props changed) head/math/blocksolve95/files/patch-examples::makefile (props changed) head/math/blocksolve95/files/patch-include::BSdepend.h (props changed) head/math/bsdnt/files/patch-nn.h (props changed) head/math/bsdnt/files/patch-rand__internal_rand.h (props changed) head/math/calc/files/patch-Makefile (props changed) head/math/calctool/files/patch-ab (props changed) head/math/calctool/files/patch-tty.c (props changed) head/math/calctool/files/patch-xview.c (props changed) head/math/cantor/files/patch-src__backends__R__rserver__rcallbacks.cpp (props changed) head/math/carve/files/patch-CMakeLists.txt (props changed) head/math/carve/files/patch-common_scene.cpp (props changed) head/math/carve/files/patch-glu_triangulator.cpp (props changed) head/math/carve/files/patch-include_CMakeLists.txt (props changed) head/math/carve/files/patch-lib_intersect_classify_common_impl.hpp (props changed) head/math/carve/files/patch-src_CMakeLists.txt (props changed) head/math/carve/files/patch-src_extrude.cpp (props changed) head/math/cgal/files/patch-CMakeLists.txt (props changed) head/math/chaco/files/patch-Makefile (props changed) head/math/chaco/files/patch-main+user_params.c (props changed) head/math/chaco/files/patch-util+seconds.c (props changed) head/math/chaco/files/patch-util+smalloc.c (props changed) head/math/chryzodus/files/patch-gui.cpp (props changed) head/math/clp/files/patch-CoinUtils+src+CoinParam.hpp (props changed) head/math/coinmp/files/patch-Cbc__src__CbcEventHandler.hpp (props changed) head/math/coinmp/files/patch-Cbc__src__CbcSolver.cpp (props changed) head/math/concorde/files/patch-bigguy-Makefile.in (props changed) head/math/concorde/files/patch-killgrun.c (props changed) head/math/dcdflib/files/patch-aa (props changed) head/math/dieharder/files/patch-dieharder__output.c (props changed) head/math/dieharder/files/patch-libdieharder__countx.c (props changed) head/math/dieharder/files/patch-libdieharder__dab_filltree.c (props changed) head/math/dieharder/files/patch-libdieharder__histogram.c (props changed) head/math/dieharder/files/patch-libdieharder__rgb_operm.c (props changed) head/math/dieharder/files/patch-libdieharder__skein_block_ref.c (props changed) head/math/dieharder/files/patch-libdieharder_libdieharder.3 (props changed) head/math/djbfft/files/patch-accuracy.c (props changed) head/math/djbfft/files/patch-accuracy2.c (props changed) head/math/djbfft/files/patch-speed.c (props changed) head/math/drgeo/files/patch-drgeo__adaptDialog.cc (props changed) head/math/dynare/files/patch-journal.cweb (props changed) head/math/dynare/files/patch-parser-exception.h (props changed) head/math/eispack/files/patch-aa (props changed) head/math/emacs-calc/files/patch-AA-emacs-21.3-PROBLEMS (props changed) head/math/emacs-calc/files/patch-Makefile (props changed) head/math/emacs-calc/files/patch-calc-autoload.el (props changed) head/math/emacs-calc/files/patch-calc.texinfo (props changed) head/math/emc2/files/patch-Makefile (props changed) head/math/emc2/files/patch-f3d__u_hp700__prettydate.c (props changed) head/math/emc2/files/patch-f3d__u_hp700__prettytime.c (props changed) head/math/emc2/files/patch-libI77::fio.h (props changed) head/math/emc2/files/patch-libI77__lread.c (props changed) head/math/emc2/files/patch-libemc2_1.c (props changed) head/math/eukleides/files/patch-Config (props changed) head/math/eukleides/files/patch-build_Makefile (props changed) head/math/eukleides/files/patch-man_Makefile (props changed) head/math/eval/files/patch-aa (props changed) head/math/eval/files/patch-ab (props changed) head/math/eval/files/patch-ac (props changed) head/math/eval/files/patch-ad (props changed) head/math/fftw/files/patch-configure.in (props changed) head/math/fftw/files/patch-doc::fftw.texi (props changed) head/math/fftw/files/patch-tests__test_main.c (props changed) head/math/fxt/files/patch-src__fxtalloca.h (props changed) head/math/gcalctool/files/patch-src_gcalccmd.c (props changed) head/math/gdcalc/files/patch-src::dcalc.c (props changed) head/math/geg/files/patch-ab (props changed) head/math/geg/files/patch-ac (props changed) head/math/gexpr/files/patch-Makefile (props changed) head/math/gotoblas/files/patch-Makefile (props changed) head/math/gotoblas/files/patch-Makefile.rule (props changed) head/math/gotoblas/files/patch-Makefile.system (props changed) head/math/gotoblas/files/patch-c_check (props changed) head/math/gotoblas/files/patch-cpuid_ia64.c (props changed) head/math/gotoblas/files/patch-cpuid_sparc.c (props changed) head/math/gotoblas/files/patch-dynamic.c (props changed) head/math/gotoblas/files/patch-exports+Makefile (props changed) head/math/gotoblas/files/patch-f_check (props changed) head/math/gotoblas/files/patch-patch.for_lapack-3.1.1 (props changed) head/math/gotoblas/files/patch-patch.for_lapack-3.4.0 (props changed) head/math/grace/files/patch-configure (props changed) head/math/grace/files/patch-src__dlmodule.c (props changed) head/math/grace/files/patch-src__pdfdrv.c (props changed) head/math/gracetmpl/files/patch-Makefile (props changed) head/math/gracetmpl/files/patch-gracetmpl.cc (props changed) head/math/gracetmpl/files/patch-pygracetmpl.cc (props changed) head/math/graphthing/files/patch-src-gt-bison.y (props changed) head/math/graphthing/files/patch-src-lang-bison.y (props changed) head/math/graphthing/files/patch-src__fancyfileselection.cc (props changed) head/math/gretl/files/patch-Makefile.in (props changed) head/math/gretl/files/patch-plugin::workbook.c (props changed) head/math/gretl/files/patch-share::Makefile.in (props changed) head/math/gretl/files/patch-share::bcih::Makefile.in (props changed) head/math/gsl/files/patch-Makefile.in (props changed) head/math/gsl/files/patch-configure (props changed) head/math/hs-Agda/files/patch-Agda.cabal (props changed) head/math/isabelle/files/patch-etc-settings (props changed) head/math/itl/files/patch-test+iohb_c (props changed) head/math/itl/files/patch-test+mmio_c (props changed) head/math/jacal/files/patch-Makefile (props changed) head/math/jacal/files/patch-configure (props changed) head/math/jacal/files/patch-jacal.info (props changed) head/math/jacal/files/patch-jacal.sh (props changed) head/math/jacal/files/patch-jacal.texi (props changed) head/math/jakarta-commons-math/files/patch-build.xml (props changed) head/math/jakarta-commons-math3/files/patch-build.xml (props changed) head/math/javaview/files/patch-bin-javaview (props changed) head/math/lapack/files/patch-SRC+Makefile (props changed) head/math/lapack/files/patch-TESTING+LIN+Makefile (props changed) head/math/lapack/files/patch-TESTING+Makefile (props changed) head/math/lapack95/files/patch-make.inc (props changed) head/math/lapacke/files/patch-include+lapacke.h (props changed) head/math/lapacke/files/patch-make.inc (props changed) head/math/lapacke/files/patch-testing+Makefile (props changed) head/math/lapacke/files/patch-testing+interface+Makefile (props changed) head/math/libjbigi/files/patch-jbigi__build_jbigi.sh (props changed) head/math/libjbigi/files/patch-jcpuid__build.sh (props changed) head/math/liblbfgs/files/patch-lib_arithmetic_sse_double.h (props changed) head/math/libocas/files/patch-linclass.c (props changed) head/math/libocas/files/patch-msvmocas.c (props changed) head/math/libqalculate/files/patch-src-Makefile.in (props changed) head/math/libqalculate/files/patch-src-qalc.cc (props changed) head/math/libranlip/files/patch-examples__makefile (props changed) head/math/lll_spect/files/patch-lll_search.C (props changed) head/math/lll_spect/files/patch-lll_spect.C (props changed) head/math/lp_solve/files/patch-respect-TMPDIR (props changed) head/math/lp_solve/files/patch-shared+commonlib.c (props changed) head/math/maxima/files/patch-doc_info_Makefile.in (props changed) head/math/metis-edf/files/patch-CONFIG::configure (props changed) head/math/metis-edf/files/patch-CONFIG_onmetis.in (props changed) head/math/metis-edf/files/patch-Lib::proto.h (props changed) head/math/metis-edf/files/patch-Programs::Makefile (props changed) head/math/metis-edf/files/patch-Test::Makefile (props changed) head/math/metis-edf/files/patch-onmetis (props changed) head/math/metis/files/patch-libmetis__CMakeLists.txt (props changed) head/math/metis4/files/patch-Makefile.in (props changed) head/math/moo/files/patch-Makefile (props changed) head/math/moo/files/patch-moo.y (props changed) head/math/mpexpr/files/patch-generic-mpexpr.h (props changed) head/math/msieve/files/patch-include_util.h (props changed) head/math/mtl/files/patch-mtl__external_vector.h (props changed) head/math/mtl/files/patch-mtl__light1D.h (props changed) head/math/mtl/files/patch-mtl__linalg_vec.h (props changed) head/math/mtl/files/patch-test__src__algo_test.h (props changed) head/math/mtl/files/patch-test__src__matrix_test.h (props changed) head/math/mtrxmath/files/patch-Makefile (props changed) head/math/mtrxmath/files/patch-mtrxmath.h (props changed) head/math/mumps/files/patch-Make.inc+Makefile.inc.generic (props changed) head/math/mumps/files/patch-Make.inc+Makefile.inc.generic.SEQ (props changed) head/math/ndiff/files/patch-Makefile.in (props changed) head/math/ngraph/files/patch-aa (props changed) head/math/ocamlgsl/files/patch-Makefile (props changed) head/math/octave-forge-ad/files/patch-src_ov-grad.cc (props changed) head/math/octave-forge-fenv/files/patch-src_Makefile (props changed) head/math/octave-forge-ltfat/files/patch-Makefile (props changed) head/math/octave-forge-optiminterp/files/patch-Makefile (props changed) head/math/octave-forge-parallel/files/patch-configure (props changed) head/math/octave-forge-parallel/files/patch-sock-stream.h (props changed) head/math/octave-forge-pt_br/files/patch-help.icc (props changed) head/math/octave-forge-video/files/patch-AVHandler.cc (props changed) head/math/octave/files/patch-libcruft+mkf77def.in (props changed) head/math/octave/files/patch-scripts+pkg+pkg.m (props changed) head/math/oleo/files/patch-ad (props changed) head/math/oleo/files/patch-af (props changed) head/math/oleo/files/patch-ag (props changed) head/math/oleo/files/patch-ah (props changed) head/math/oleo/files/patch-ai (props changed) head/math/oleo/files/patch-ak (props changed) head/math/oleo/files/patch-al (props changed) head/math/oleo/files/patch-src::eval.c (props changed) head/math/oleo/files/patch-src::global.h (props changed) head/math/oleo/files/patch-src::io-utils.c (props changed) head/math/oleo/files/patch-src::io-x11.c (props changed) head/math/oleo/files/patch-src::plotter.c (props changed) head/math/oleo/files/patch-src::posixtm.y (props changed) head/math/oleo/files/patch-src::ref.c (props changed) head/math/oleo/files/patch-src::sysdef.h (props changed) head/math/oleo/files/patch-src::utils.c (props changed) head/math/oleo/files/patch-src::xrdb.c (props changed) head/math/oleo/files/patch-src_basic.h (props changed) head/math/oleo/files/patch-src_io-term.c (props changed) head/math/oleo/files/patch-src_io-term.h (props changed) head/math/openblas/files/patch-Makefile (props changed) head/math/openblas/files/patch-Makefile.rule (props changed) head/math/openblas/files/patch-Makefile.system (props changed) head/math/openblas/files/patch-c_check (props changed) head/math/openblas/files/patch-cpuid_ia64.c (props changed) head/math/openblas/files/patch-cpuid_sparc.c (props changed) head/math/openblas/files/patch-exports+Makefile (props changed) head/math/openblas/files/patch-f_check (props changed) head/math/orpie/files/patch-gsl (props changed) head/math/p5-Math-GSL/files/patch-inc-GSLBuilder.pm (props changed) head/math/p5-Math-Pari/files/patch-Makefile.PL (props changed) head/math/p5-NetCDF/files/patch-perl-NetCDF.xs (props changed) head/math/pari/files/patch-af (props changed) head/math/parmgridgen/files/patch-MGridGen_IMlib_IMlib.h (props changed) head/math/parmgridgen/files/patch-MGridGen_Lib_mgridgen.h (props changed) head/math/parmgridgen/files/patch-Makefile.in (props changed) head/math/parmgridgen/files/patch-ParMGridGen_IMParMetis_ParMETISLib_parmetis.h (props changed) head/math/parmgridgen/files/patch-ParMGridGen_ParLib_parmgridgen.h (props changed) head/math/petsc/files/patch-bmake::common::rules.shared.basic (props changed) head/math/petsc/files/patch-config_configure.py (props changed) head/math/petsc/files/patch-makefile (props changed) head/math/petsc/files/patch-python_PETSc_packages_spooles.py (props changed) head/math/petsc/files/patch-src::mat::impls::rowbs::mpi::mpirowbs.h (props changed) head/math/php52-gmp/files/patch-gmp.c (props changed) head/math/physcalc/files/patch-aa (props changed) head/math/physcalc/files/patch-ab (props changed) head/math/physcalc/files/patch-ac (props changed) head/math/physcalc/files/patch-physnode.c (props changed) head/math/plman/files/patch-bin-plman (props changed) head/math/ploticus/files/patch-README (props changed) head/math/ploticus/files/patch-man-man3-libploticus.3 (props changed) head/math/ploticus/files/patch-man_man1-pl.1 (props changed) head/math/ploticus/files/patch-pltestsuite-README (props changed) head/math/ploticus/files/patch-pltestsuite-run_all_scripts (props changed) head/math/ploticus/files/patch-pltestsuite-run_script_test (props changed) head/math/ploticus/files/patch-src-execline.c (props changed) head/math/ploticus/files/patch-src-pl.c (props changed) head/math/ploticus/files/patch-src-preliminaries.c (props changed) head/math/ploticus/files/patch-src::reslimits.c (props changed) head/math/plplot/files/patch-cmake_modules_FindVGA.cmake (props changed) head/math/plplot/files/patch-cmake_modules_csiro.cmake (props changed) head/math/plplot/files/patch-cmake_modules_instdirs.cmake (props changed) head/math/plplot/files/patch-cmake_modules_linuxvga.cmake (props changed) head/math/primegen/files/patch-eratspeed.c (props changed) head/math/primegen/files/patch-primegaps.c (props changed) head/math/primegen/files/patch-primes.c (props changed) head/math/primegen/files/patch-primespeed.c (props changed) head/math/proofgeneral/files/patch-Makefile (props changed) head/math/proofgeneral/files/patch-doc-Makefile.doc (props changed) head/math/proofgeneral/files/patch-etc_desktop_proofgeneral.desktop (props changed) head/math/proofgeneral/files/patch-isar-interface (props changed) head/math/pspp/files/patch-configure (props changed) head/math/py-basemap/files/patch-lib__matplotlib__toolkits__basemap__basemap.py (props changed) head/math/py-ffc/files/patch-setup.py (props changed) head/math/py-gsl/files/patch-src_init_initmodule.c (props changed) head/math/py-gsl/files/patch-src_transform_wavelet.c (props changed) head/math/py-matplotlib/files/patch-_png.cpp (props changed) head/math/py-matplotlib/files/patch-setup.cfg (props changed) head/math/py-networkx/files/patch-setup.py (props changed) head/math/py-numeric/files/patch-Src_umathmodule.c (props changed) head/math/py-numpy/files/patch-numpy-distutils-fcompiler-__init__.py (props changed) head/math/py-numpy/files/patch-numpy-distutils-fcompiler-gnu.py (props changed) head/math/py-numpy/files/patch-numpy-distutils-system_info.py (props changed) head/math/py-numpy/files/patch-numpy_f2py_setup.py (props changed) head/math/py-nzmath/files/patch-setup.py (props changed) head/math/py-scientific/files/patch-setup.py (props changed) head/math/qalculate/files/patch-src-Makefile (props changed) head/math/qhull/files/extra-patch-CMakeLists.txt (props changed) head/math/qhull5/files/patch-configure (props changed) head/math/qhull5/files/patch-eg::Makefile.in (props changed) head/math/qhull5/files/patch-src::Makefile.in (props changed) head/math/qrupdate/files/patch-Makeconf (props changed) head/math/qrupdate/files/patch-Makefile (props changed) head/math/qrupdate/files/patch-src-Makefile (props changed) head/math/qtiplot-doc/files/patch-Makefile (props changed) head/math/qtiplot-doc/files/patch-qtiplot.dsl (props changed) head/math/qtiplot-doc/files/patch-qtiplot_html.xsl (props changed) head/math/qtiplot/files/patch-3rdparty__qwt__src__src.pro (props changed) head/math/qtiplot/files/patch-3rdparty__qwtplot3d__3rdparty__gl2ps__gl2ps.c (props changed) head/math/qtiplot/files/patch-3rdparty__qwtplot3d__include__qwt3d_openglhelper.h (props changed) head/math/qtiplot/files/patch-3rdparty__qwtplot3d__qwtplot3d.pro (props changed) head/math/qtiplot/files/patch-qtiplot.pro (props changed) head/math/qtiplot/files/patch-qtiplot__qtiplot.pro (props changed) head/math/qtiplot/files/patch-qtiplot__src__analysis__dialogs__FitDialog.cpp (props changed) head/math/qtiplot/files/patch-qtiplot__src__plot3D__Cone3D.cpp (props changed) head/math/qtiplot/files/patch-qtiplot__src__scripting__qti.sip (props changed) head/math/qtiplot/files/patch-qtiplot__src__scripting__scripting.pri (props changed) head/math/qtoctave/files/patch-qtoctave__src__CMakeLists.txt (props changed) head/math/qwtplot3d-qt4/files/patch-include__qwt3d_openglhelper.h (props changed) head/math/qwtplot3d-qt4/files/patch-qwtplot3d.pro (props changed) head/math/reed-solomon/files/patch-makefile.in (props changed) head/math/rkward-kde4/files/patch-rkward_rbackend_FindR.cmake (props changed) head/math/rkward-kde4/files/patch-rkward_rbackend_rkfrontendtransmitter.cpp (props changed) head/math/rngstreams/files/patch-Makefile.in (props changed) head/math/ros-geometry/files/patch-bullet_Makefile.bullet (props changed) head/math/ros-geometry/files/patch-bullet__CMakeLists.txt (props changed) head/math/ros-geometry/files/patch-bullet__build__bullet_svn__src__BulletSoftBody__btSoftBody.h (props changed) head/math/ros-geometry/files/patch-kdl_Makefile (props changed) head/math/ros-geometry/files/patch-rosdep.yaml (props changed) head/math/ros-geometry/files/patch-tf__include__tf__message_filter.h (props changed) head/math/saga/files/patch-src-modules_images-modules_vigra-vigra-vigra_fft.cpp (props changed) head/math/sc/files/patch-cmds.c (props changed) head/math/sc/files/patch-crypt.c (props changed) head/math/scilab-toolbox-sivp/files/extrapatch-etc__SIVP.start (props changed) head/math/scilab-toolbox-swt/files/extrapatch-etc__swt.start (props changed) head/math/scilab/files/extra-patch-NOPORTDOCS (props changed) head/math/scilab/files/extra-patch-bin-JAVA_HOME (props changed) head/math/scilab/files/patch-build.incl.xml (props changed) head/math/scilab/files/patch-desktop-scilab-adv-cli.desktop (props changed) head/math/scilab/files/patch-etc-librarypath.xml (props changed) head/math/scilab/files/patch-modules-atoms-macros-atoms_gui-atomsGui.sci (props changed) head/math/scilab/files/patch-modules-atoms-macros-atoms_internals-atomsAUWriteAccess.sci (props changed) head/math/scilab/files/patch-modules-atoms-macros-atoms_internals-atomsDownload.sci (props changed) head/math/scilab/files/patch-modules-core-includes-Thread_Wrapper.h (props changed) head/math/scilab/files/patch-modules-dynamic_link-macros-ilib_gen_Make_unix.sci (props changed) head/math/scilab/files/patch-modules__arnoldi__Makefile.in (props changed) head/math/scilab/files/patch-modules__core__src__c__stack2.c (props changed) head/math/scilab/files/patch-modules__xcos__src__java__org__scilab__modules__xcos__Xcos.java (props changed) head/math/sdpara/files/patch-Makefile (props changed) head/math/sdpara/files/patch-mumps+Makefile (props changed) head/math/sedumi/files/patch-and_or (props changed) head/math/sedumi/files/patch-posttransfo.m (props changed) head/math/sedumi/files/patch-string.h (props changed) head/math/sfft/files/patch-src__computefourier-1.0-2.0.cc (props changed) head/math/sfft/files/patch-src__computefourier-3.0.cc (props changed) head/math/simd-viterbi/files/patch-makefile.in (props changed) head/math/simd-viterbi/files/patch-viterbi27.c (props changed) head/math/simd-viterbi/files/patch-viterbi29.c (props changed) head/math/snns/files/patch-kernel__sources__kr_mem.c (props changed) head/math/snns/files/patch-kernel__sources__learn_f.c (props changed) head/math/spar/files/patch-calculator::Makefile.in (props changed) head/math/spar/files/patch-configure (props changed) head/math/spar/files/patch-lib::randist::rand.c (props changed) head/math/spblas/files/patch-nist_spblas.cc (props changed) head/math/speedcrunch/files/patch-src__SourceFiles.cmake (props changed) head/math/speedcrunch/files/patch-src__gui__mainwindow.cpp (props changed) head/math/spooles/files/patch-ETree+src+makeGlobalLib (props changed) head/math/spooles/files/patch-I2Ohash-large-input (props changed) head/math/spooles/files/patch-IVL+src+makeGlobalLib (props changed) head/math/spooles/files/patch-MPI+makefile (props changed) head/math/spooles/files/patch-MPI+src+makeGlobalLib (props changed) head/math/spooles/files/patch-MT+drivers+AllInOneMT.c (props changed) head/math/spooles/files/patch-MT+makefile (props changed) head/math/spooles/files/patch-Make.inc (props changed) head/math/spooles/files/patch-Tree+src+makeGlobalLib (props changed) head/math/spooles/files/patch-Utilities+src+makeGlobalLib (props changed) head/math/spooles/files/patch-makefile (props changed) head/math/superlu/files/patch-SRC+sp_coletree.c (props changed) head/math/superlu/files/patch-SRC-Makefile (props changed) head/math/superlu/files/patch-make.inc (props changed) head/math/superlu_mt/files/patch-SRC+slu_mt_util.h (props changed) head/math/superlu_mt/files/patch-TESTING+pddrive.c (props changed) head/math/superlu_mt/files/patch-TESTING+pdgssv.c (props changed) head/math/superlu_mt/files/patch-TESTING+pdgssvx.c (props changed) head/math/superlu_mt/files/patch-make.inc (props changed) head/math/tablix/files/patch-po-Makefile.in.in (props changed) head/math/taucs/files/patch-config+FreeBSD.mk (props changed) head/math/taucs/files/patch-configure (props changed) head/math/taucs/files/patch-src__taucs_timer.c (props changed) head/math/tetgen/files/patch-makefile (props changed) head/math/tomsfastmath/files/patch-makefile (props changed) head/math/topaz/files/patch-aa (props changed) head/math/topaz/files/patch-ab (props changed) head/math/topaz/files/patch-topaz::topaz.cc (props changed) head/math/topaz/files/patch-topaz::tpv2ps.cc (props changed) head/math/triangle/files/patch-makefile (props changed) head/math/ump/files/patch-Makefile (props changed) head/math/ump/files/patch-src-main.cpp (props changed) head/math/unixstat/files/patch-Makefile (props changed) head/math/unixstat/files/patch-src (props changed) head/math/unuran/files/patch-doc_Makefile.in (props changed) head/math/vtk5/files/patch-Rendering_CMakeLists.txt (props changed) head/math/vtk5/files/patch-vtkGenerateVTKConfig.cmake (props changed) head/math/wingz/files/patch-aa (props changed) head/math/x12arima/files/patch-makefile.lnx (props changed) head/math/xgobi/files/patch-Imakefile (props changed) head/math/xgobi/files/patch-xgv_anchor.c (props changed) head/math/xgraph/files/patch-ab (props changed) head/math/xgraph/files/patch-ac (props changed) head/math/xgraph/files/patch-ad (props changed) head/math/xgraph/files/patch-ae (props changed) head/math/xgraph/files/patch-ag (props changed) head/math/xldlas/files/patch-aa (props changed) head/math/xldlas/files/patch-ab (props changed) head/math/xldlas/files/patch-ac (props changed) head/math/xlispstat/files/patch-ak (props changed) head/math/xppaut/files/patch-Makefile (props changed) head/math/xspread/files/patch-ab (props changed) head/math/xspread/files/patch-ac (props changed) head/math/xspread/files/patch-ad (props changed) head/misc/amanda-server/files/patch-ad (props changed) head/misc/amanda-server/files/patch-amandad-src::Makefile.in (props changed) head/misc/amanda-server/files/patch-amar-src::Makefile.in (props changed) head/misc/amanda-server/files/patch-client-src::sendbackup-dump.c (props changed) head/misc/amanda-server/files/patch-common-src::Makefile.in (props changed) head/misc/amanda-server/files/patch-man::Makefile.in (props changed) head/misc/amanda-server/files/patch-ndmp-src::Makefile.in (props changed) head/misc/amanda-server/files/patch-perl::Amanda::Process.pm (props changed) head/misc/amanda-server/files/patch-perl::Makefile.in (props changed) head/misc/amanda-server/files/patch-perl::amglue::Makefile.in (props changed) head/misc/amanda-server/files/patch-xfer-src::Makefile.in (props changed) head/misc/amanda25-server/files/extra-patch-sendbackup-dump.c (props changed) head/misc/amanda25-server/files/patch-aa (props changed) head/misc/amanda25-server/files/patch-ab (props changed) head/misc/amanda25-server/files/patch-ac (props changed) head/misc/amanda25-server/files/patch-ad (props changed) head/misc/amanda25-server/files/patch-ae (props changed) head/misc/amanda25-server/files/patch-chg-zd-mtx.sh.in (props changed) head/misc/amanda25-server/files/patch-sendsize.c (props changed) head/misc/amanda25-server/files/patch-server-src::amcrypt-ossl-asym.sh.in (props changed) head/misc/amanda25-server/files/patch-server-src::amcrypt-ossl.sh.in (props changed) head/misc/amanda26-server/files/extra-patch-application-src::amzfs-sendrecv.pl (props changed) head/misc/amanda26-server/files/extra-patch-sendbackup-dump.c (props changed) head/misc/amanda26-server/files/patch-ad (props changed) head/misc/amanda26-server/files/patch-amandad-src::Makefile.in (props changed) head/misc/amanda26-server/files/patch-amar-src::Makefile.in (props changed) head/misc/amanda26-server/files/patch-changer-src::chg-glue.pl (props changed) head/misc/amanda26-server/files/patch-common-src::Makefile.in (props changed) head/misc/amanda26-server/files/patch-common-src_conffile.c (props changed) head/misc/amanda26-server/files/patch-man::Makefile.in (props changed) head/misc/amanda26-server/files/patch-perl::Amanda::Process.pm (props changed) head/misc/amanda26-server/files/patch-perl::Makefile.in (props changed) head/misc/amanda26-server/files/patch-server-src::amcleanup.pl (props changed) head/misc/amanda26-server/files/patch-server-src_amadmin.c (props changed) head/misc/amanda26-server/files/patch-server-src_amflush.c (props changed) head/misc/amanda26-server/files/patch-server-src_cmdline.c (props changed) head/misc/amanda26-server/files/patch-server-src_find.c (props changed) head/misc/amanda26-server/files/patch-server-src_holding.c (props changed) head/misc/amanda26-server/files/patch-server-src_planner.c (props changed) head/misc/amanda32-server/files/patch-ad (props changed) head/misc/amanda32-server/files/patch-amandad-src::Makefile.in (props changed) head/misc/amanda32-server/files/patch-amar-src::Makefile.in (props changed) head/misc/amanda32-server/files/patch-client-src::sendbackup-dump.c (props changed) head/misc/amanda32-server/files/patch-common-src::Makefile.in (props changed) head/misc/amanda32-server/files/patch-man::Makefile.in (props changed) head/misc/amanda32-server/files/patch-ndmp-src::Makefile.in (props changed) head/misc/amanda32-server/files/patch-perl::Amanda::Process.pm (props changed) head/misc/amanda32-server/files/patch-perl::Makefile.in (props changed) head/misc/amanda32-server/files/patch-perl::amglue::Makefile.in (props changed) head/misc/amanda32-server/files/patch-xfer-src::Makefile.in (props changed) head/misc/amfm/files/patch-Makefile (props changed) head/misc/amfm/files/patch-amfm.c (props changed) head/misc/asbutton/files/patch-asbutton.c (props changed) head/misc/astrolog/files/patch-ab (props changed) head/misc/astrolog/files/patch-ac (props changed) head/misc/astrolog/files/patch-ad (props changed) head/misc/astrolog/files/patch-astrolog.dat (props changed) head/misc/astrolog/files/patch-charts1.c (props changed) head/misc/astrolog/files/patch-intrpalt.c (props changed) head/misc/astrolog/files/patch-io.c (props changed) head/misc/astrolog/files/patch-xcharts0.c (props changed) head/misc/bb/files/patch-Makefile.in (props changed) head/misc/bbjd/files/patch-aa (props changed) head/misc/bigboard/files/patch-bigboard-apps_directory.py (props changed) head/misc/bigboard/files/patch-bigboard-libbig-__init__.py (props changed) head/misc/bigboard/files/patch-bigboard-stocks-apps-appbrowser.py (props changed) head/misc/bigboard/files/patch-bigboard-stocks-mail-MailStock.py (props changed) head/misc/bigboard/files/patch-bigboard-stocks-self-SelfStock.py (props changed) head/misc/bigboard/files/patch-main.py (props changed) head/misc/birthday/files/patch-makemake.c (props changed) head/misc/bogosort/files/patch-config.h.in (props changed) head/misc/bogosort/files/patch-sortedp.c (props changed) head/misc/bogosort/files/patch-xmalloc.c (props changed) head/misc/bottlerocket/files/patch-aa (props changed) head/misc/brs/files/patch-aa (props changed) head/misc/brs/files/patch-ab (props changed) head/misc/brs/files/patch-ac (props changed) head/misc/brs/files/patch-ad (props changed) head/misc/buffer/files/patch-buffer.c (props changed) head/misc/buffer/files/patch-buffer.man (props changed) head/misc/buffer/files/patch-sem.c (props changed) head/misc/callid/files/patch-src_call-logd (props changed) head/misc/cdcollect/files/patch-src_DBsql.cs (props changed) head/misc/chmlib/files/patch-chm_lib.c (props changed) head/misc/chmlib/files/patch-chm_lib.h (props changed) head/misc/chmlib/files/patch-ltmain.sh (props changed) head/misc/colortail/files/patch-CfgFileParser.h (props changed) head/misc/colortail/files/patch-TailFile.cc (props changed) head/misc/colortail/files/patch-configure (props changed) head/misc/countrycodes/files/patch-src_Makefile (props changed) head/misc/cpuid/files/patch-cpuid.c (props changed) head/misc/crosspad/files/patch-aa (props changed) head/misc/crosspad/files/patch-src_main.c (props changed) head/misc/crosspad/files/patch-src_uucplock.c (props changed) head/misc/cwish/files/patch-01 (props changed) head/misc/cwish/files/patch-03 (props changed) head/misc/cwish/files/patch-04 (props changed) head/misc/dahdi-kmod/files/patch-bchan (props changed) head/misc/dahdi-kmod/files/patch-dahdi-iface (props changed) head/misc/dahdi-kmod/files/patch-flush_workqueue (props changed) head/misc/dahdi-kmod/files/patch-freebsd-drivers-dahdi-dahdi-base.c (props changed) head/misc/dahdi-kmod/files/patch-freebsd-drivers-dahdi-wctc4xxp-base.c (props changed) head/misc/dahdi-kmod/files/patch-freebsd-drivers-dahdi-wcte12xp-base.c (props changed) head/misc/dahdi-kmod/files/patch-freebsd-freebsd-dahdi-Makefile (props changed) head/misc/dahdi-kmod/files/patch-freebsd-include-dahdi-compat-bsd.h (props changed) head/misc/dahdi-kmod/files/patch-freebsd-include-stdbool.h (props changed) head/misc/dahdi-kmod/files/patch-ithread (props changed) head/misc/dahdi-kmod/files/patch-oslec (props changed) head/misc/dahdi-kmod/files/patch-zaphfc (props changed) head/misc/dahdi-kmod26/files/patch-drivers-dahdi-dahdi-base.c (props changed) head/misc/dahdi-kmod26/files/patch-drivers-dahdi-wctc4xxp-base.c (props changed) head/misc/dahdi/files/patch-freebsd-freebsd-dahdi-Makefile (props changed) head/misc/dahdi/files/patch-tools-Makefile (props changed) head/misc/ddate/files/patch-misc-utils__ddate.c (props changed) head/misc/deco/files/patch-Makefile.in (props changed) head/misc/deco/files/patch-aa (props changed) head/misc/deco/files/patch-ab (props changed) head/misc/deco/files/patch-ad (props changed) head/misc/deco/files/patch-ae (props changed) head/misc/deco/files/patch-af (props changed) head/misc/deco/files/patch-cmd.c (props changed) head/misc/deco/files/patch-configure (props changed) head/misc/deco/files/patch-run.c (props changed) head/misc/deco/files/patch-view.c (props changed) head/misc/delay/files/patch-delay.c (props changed) head/misc/detachtty/files/patch-aa (props changed) head/misc/diary-hercules/files/patch-Hercules-gui_calculators.py (props changed) head/misc/diary-hercules/files/patch-Hercules-gui_exercisewizard.py (props changed) head/misc/diary-hercules/files/patch-Hercules_globals.py (props changed) head/misc/diary-hercules/files/patch-setup.py (props changed) head/misc/digitemp/files/patch-digitemp.h (props changed) head/misc/display/files/patch-aa (props changed) head/misc/display/files/patch-ab (props changed) head/misc/dotfile/files/patch-Modules-english-procmail-configure (props changed) head/misc/dotfile/files/patch-aa (props changed) head/misc/dotfile/files/patch-ag (props changed) head/misc/dotfile/files/patch-configure (props changed) head/misc/dtach/files/patch-master.c (props changed) head/misc/dvorak7min/files/patch-dvorak7min.c (props changed) head/misc/esniper/files/patch-http.c (props changed) head/misc/estic/files/patch-areacode-make (props changed) head/misc/estic/files/patch-areacode-make-x (props changed) head/misc/estic/files/patch-check.cc (props changed) head/misc/estic/files/patch-check.h (props changed) head/misc/estic/files/patch-coll.h (props changed) head/misc/estic/files/patch-delay.cc (props changed) head/misc/estic/files/patch-estic-freebsd-x.mak (props changed) head/misc/estic/files/patch-estic-freebsd.mak (props changed) head/misc/estic/files/patch-estic.cc (props changed) head/misc/estic/files/patch-filepath.h (props changed) head/misc/estic/files/patch-filesys.cc (props changed) head/misc/estic/files/patch-filesys.h (props changed) head/misc/estic/files/patch-icbaseed.cc (props changed) head/misc/estic/files/patch-icdevs.cc (props changed) head/misc/estic/files/patch-icshort.cc (props changed) head/misc/estic/files/patch-imon.cc (props changed) head/misc/estic/files/patch-itemwin.h (props changed) head/misc/estic/files/patch-kbd.cc (props changed) head/misc/estic/files/patch-menue.cc (props changed) head/misc/estic/files/patch-palette.h (props changed) head/misc/estic/files/patch-password.cc (props changed) head/misc/estic/files/patch-resed.h (props changed) head/misc/estic/files/patch-resitem.cc (props changed) head/misc/estic/files/patch-screen.cc (props changed) head/misc/estic/files/patch-sercom.h (props changed) head/misc/estic/files/patch-spunk-freebsd-x.mak (props changed) head/misc/estic/files/patch-spunk-freebsd.mak (props changed) head/misc/estic/files/patch-str.h (props changed) head/misc/estic/files/patch-stream.cc (props changed) head/misc/estic/files/patch-stream.h (props changed) head/misc/estic/files/patch-textstrm.cc (props changed) head/misc/estic/files/patch-window.cc (props changed) head/misc/figlet/files/patch-aa (props changed) head/misc/figlet/files/patch-ab (props changed) head/misc/findutils/files/patch-configure (props changed) head/misc/findutils/files/patch-locate__updatedb.sh (props changed) head/misc/firestring/files/patch-firemake::libraries (props changed) head/misc/firestring/files/patch-firemake::makefiletop (props changed) head/misc/freeguide/files/patch-build.xml (props changed) head/misc/ftdi-eeprom/files/patch-ftdi-eeprom.c (props changed) head/misc/gcstar/files/patch-install (props changed) head/misc/gctpc/files/patch-ab (props changed) head/misc/gkrellm-gamma/files/patch-Makefile (props changed) head/misc/gkrellmbgchg2/files/patch-gkrellmbgchg.c (props changed) head/misc/gkrellmlaunch/files/patch-Makefile (props changed) head/misc/gkrellshoot/files/patch-Makefile (props changed) head/misc/gkrellshoot2/files/patch-Makefile (props changed) head/misc/gkrellweather2/files/patch-GrabWeather (props changed) head/misc/gman/files/patch-Makefile (props changed) head/misc/gman/files/patch-gman.c (props changed) head/misc/gman/files/patch-gman.pl (props changed) head/misc/gman/files/patch-mandata.c (props changed) head/misc/gman/files/patch-menu.c (props changed) head/misc/gman/files/patch-task.c (props changed) head/misc/gman/files/patch-taskfunc.c (props changed) head/misc/gnome-icon-theme/files/patch-Makefile.in (props changed) head/misc/gnome-icon-theme/files/patch-po_Makefile.in.in (props changed) head/misc/gnome-mime-data/files/patch-gnome-vfs.applications (props changed) head/misc/gnome-osd/files/patch-gnomeosd_capplet.py (props changed) head/misc/gnu-watch/files/extrapatch-watch.c (props changed) head/misc/gnu-watch/files/patch-gnu-watch.1 (props changed) head/misc/gnuit/files/patch-lib-Makefile (props changed) head/misc/gnuit/files/patch-src-Makefile.in (props changed) head/misc/gregexp/files/patch-configure (props changed) head/misc/gregexp/files/patch-src::main.c (props changed) head/misc/heyu2/files/patch-cm10a (props changed) head/misc/histring/files/patch-aa (props changed) head/misc/hotkeys/files/patch-configure (props changed) head/misc/hotkeys/files/patch-src-Makefile (props changed) head/misc/hotkeys/files/patch-src-conf.c (props changed) head/misc/hotkeys/files/patch-src-hotkeys.c (props changed) head/misc/hotkeys/files/patch-src-hotkeys.conf (props changed) head/misc/hotkeys/files/patch-src-kbddef.c (props changed) head/misc/hotkeys/files/patch-src-kbddef.h (props changed) head/misc/jbidwatcher/files/patch-build.xml (props changed) head/misc/jive/files/patch-aa (props changed) head/misc/kcd/files/patch-dirtree.cc (props changed) head/misc/kcd/files/patch-version.cc (props changed) head/misc/krecipes-kde4/files/patch-src__CMakeLists.txt (props changed) head/misc/krecipes-kde4/files/patch-src__dialogs__similarcategoriesdialog.cpp (props changed) head/misc/libeatmydata/files/patch-Makefile (props changed) head/misc/libeatmydata/files/patch-eatmydata.c (props changed) head/misc/libhome/files/patch-aa (props changed) head/misc/libmcal/files/patch-aa (props changed) head/misc/libmcal/files/patch-ab (props changed) head/misc/libmcal/files/patch-ac (props changed) head/misc/libmcal/files/patch-icap_icap.c (props changed) head/misc/libmcal/files/patch-mstore_mstore.c (props changed) head/misc/libpri/files/patch-Makefile (props changed) head/misc/libsupertone/files/patch-supertone.c (props changed) head/misc/libsupertone/files/patch-supertone_tests.c (props changed) head/misc/lifelines/files/patch-intl__Makefile.in (props changed) head/misc/loop/files/patch-Makefile (props changed) head/misc/lv/files/patch-src_Makefile.in (props changed) head/misc/lv/files/patch-src_stream.c (props changed) head/misc/lxde-common/files/patch-Makefile-am (props changed) head/misc/lxde-common/files/patch-Makefile-in (props changed) head/misc/lxde-common/files/patch-configure (props changed) head/misc/lxde-common/files/patch-configure-ac (props changed) head/misc/magicpoint/files/patch-configure (props changed) head/misc/magicpoint/files/patch-default.mgp (props changed) head/misc/magicpoint/files/patch-gif.c (props changed) head/misc/magicpoint/files/patch-new.c (props changed) head/misc/magicpoint/files/patch-png.c (props changed) head/misc/magicpoint/files/patch-rlelib.c (props changed) head/misc/man.el/files/patch-aa (props changed) head/misc/mc-light/files/patch-Make.common.in (props changed) head/misc/mc-light/files/patch-Makefile.in (props changed) head/misc/mc-light/files/patch-config.h.in (props changed) head/misc/mc-light/files/patch-lib_Makefile.in (props changed) head/misc/mc-light/files/patch-lib_mc.ext.in (props changed) head/misc/mc-light/files/patch-po-ru.po (props changed) head/misc/mc-light/files/patch-src-dlglist.c (props changed) head/misc/mc-light/files/patch-src_Makefile.in (props changed) head/misc/mc-light/files/patch-vfs-extfs-extfs.ini (props changed) head/misc/mc-light/files/patch-vfs_Makefile.in (props changed) head/misc/mc/files/patch-mc-wrapper (props changed) head/misc/metalink-editor/files/patch-metalink_editor.py (props changed) head/misc/metalink-tools/files/patch-configure (props changed) head/misc/mmv/files/patch-mmv.1 (props changed) head/misc/mmv/files/patch-mmv.c (props changed) head/misc/mshell/files/patch-aa (props changed) head/misc/mshell/files/patch-ab (props changed) head/misc/mshell/files/patch-ac (props changed) head/misc/mshell/files/patch-ad (props changed) head/misc/mshell/files/patch-ae (props changed) head/misc/mshell/files/patch-ag (props changed) head/misc/mshell/files/patch-ai (props changed) head/misc/nsf/files/patch-Makefile (props changed) head/misc/nsf/files/patch-aa (props changed) head/misc/ondir/files/patch-ondir.1 (props changed) head/misc/openr2/files/patch-Makefile.in (props changed) head/misc/ossp-uuid/files/patch-Makefile.in (props changed) head/misc/ossp-uuid/files/patch-uuid.pc.in (props changed) head/misc/p5-File-CounterFile/files/patch-CounterFile.pm (props changed) head/misc/posixtestsuite/files/patch-gentests.pl (props changed) head/misc/projectionlib/files/patch-aa (props changed) head/misc/projectionlib/files/patch-ab (props changed) head/misc/projectionlib/files/patch-ac (props changed) head/misc/projectionlib/files/patch-ad (props changed) head/misc/projectionlib/files/patch-ae (props changed) head/misc/projectionlib/files/patch-af (props changed) head/misc/projectionlib/files/patch-ag (props changed) head/misc/projectionlib/files/patch-ah (props changed) head/misc/projectionlib/files/patch-ai (props changed) head/misc/projectionlib/files/patch-aj (props changed) head/misc/projectionlib/files/patch-ak (props changed) head/misc/projectionlib/files/patch-al (props changed) head/misc/py-osd/files/patch-pyosd-__init__.py (props changed) head/misc/py-osd/files/patch-setup.py (props changed) head/misc/py-qt4-demo/files/patch-examples__designer__plugins__plugins.py (props changed) head/misc/qbrew/files/patch-qbrew.pro (props changed) head/misc/seq2/files/patch-src-info.c (props changed) head/misc/shared-mime-info/files/patch-update-mime-database.c (props changed) head/misc/shuffle/files/patch-aa (props changed) head/misc/shuffle/files/patch-shuffle.c (props changed) head/misc/skyutils/files/patch-configure.in (props changed) head/misc/sloccount/files/patch-makefile (props changed) head/misc/sssnips/files/patch-vcr.1 (props changed) head/misc/sssnips/files/patch-vcr.sh (props changed) head/misc/talkfilters/files/patch-talkfilters.texi (props changed) head/misc/tcb/files/patch-Makefile (props changed) head/misc/tcb/files/patch-aa (props changed) head/misc/tcb/files/patch-src-tcb.c (props changed) head/misc/team/files/patch-a (props changed) head/misc/team/files/patch-b (props changed) head/misc/tkman/files/patch-ab (props changed) head/misc/tpp/files/patch-Makefile (props changed) head/misc/ttyrec/files/patch-ttyrec.c (props changed) head/misc/typetrainer/files/patch-typetrainer_i18n.py (props changed) head/misc/unclutter/files/patch-unclutter.c (props changed) head/misc/unclutter/files/patch-unclutter.man (props changed) head/misc/upclient/files/patch-aa (props changed) head/misc/upclient/files/patch-ab (props changed) head/misc/upclient/files/patch-clientchk (props changed) head/misc/upclient/files/patch-options.c (props changed) head/misc/upclient/files/patch-stats-bsd.c (props changed) head/misc/upclient/files/patch-upchk (props changed) head/misc/upclient/files/patch-upclient.man (props changed) head/misc/usbrh-libusb/files/patch-Makefile (props changed) head/misc/usbrh-libusb/files/patch-usbrh_main.c (props changed) head/misc/utftools/files/patch-Makefile.in (props changed) head/misc/utftools/files/patch-expand.c (props changed) head/misc/utftools/files/patch-fmt.c (props changed) head/misc/utftools/files/patch-unexpand.c (props changed) head/misc/utftools/files/patch-wc.c (props changed) head/misc/vera/files/patch-aa (props changed) head/misc/viz/files/patch-aa (props changed) head/misc/viz/files/patch-ab (props changed) head/misc/wmcalendar/files/patch-calendar.c (props changed) head/misc/wmcalendar/files/patch-calendar.h (props changed) head/misc/wmcalendar/files/patch-calendarfunc.h (props changed) head/misc/wmfirew/files/patch-Makefile (props changed) head/misc/wminfo/files/patch-wminfo.c (props changed) head/misc/wmjulia/files/patch-Makefile (props changed) head/misc/wmtunlo/files/patch-Makefile (props changed) head/misc/wmwork/files/patch-wmwork.c (props changed) head/misc/xdelta/files/patch-configure (props changed) head/misc/xdelta/files/patch-libedsio_edsio.c (props changed) head/misc/xdelta/files/patch-libedsio_edsio.h (props changed) head/misc/xdelta3/files/patch-testing-regtest.cc.patch (props changed) head/misc/xfce4-weather-plugin/files/patch-configure (props changed) head/misc/xless/files/patch-aa (props changed) head/misc/xless/files/patch-ab (props changed) head/misc/xosd/files/extra-patch-msec-timeout (props changed) head/misc/xosd/files/extra-patch-xft (props changed) head/misc/xpns/files/patch-aa (props changed) head/misc/xtar/files/patch-aa (props changed) head/misc/xtar/files/patch-ab (props changed) head/misc/xtar/files/patch-ad (props changed) head/misc/xyzcmd/files/patch-setup.py (props changed) head/misc/yaunc/files/patch-Makefile (props changed) head/misc/yaunc/files/patch-send_data.c (props changed) head/misc/yaunc/files/patch-usage.c (props changed) head/misc/yaunc/files/patch-yaunc.h (props changed) head/misc/ytree/files/patch-aa (props changed) head/misc/ytree/files/patch-ab (props changed) head/misc/ytree/files/patch-ag (props changed) head/misc/ytree/files/patch-ytree.h (props changed) head/multimedia/acidrip/files/patch-AcidRip__acidrip.pm (props changed) head/multimedia/atomicparsley/files/patch-AP_commons.h (props changed) head/multimedia/atomicparsley/files/patch-build (props changed) head/multimedia/audacious/files/patch-src-audacious-util.c (props changed) head/multimedia/audacious/files/patch-src_audtool_Makefile (props changed) head/multimedia/avbin/files/patch-include-avbin.h (props changed) head/multimedia/avbin/files/patch-src-avbin.c (props changed) head/multimedia/avidemux2/files/patch-CMakeLists.txt (props changed) head/multimedia/avidemux2/files/patch-avidemux-CMakeLists.txt (props changed) head/multimedia/avidemux2/files/patch-cmake-admCheckMiscLibs.cmake (props changed) head/multimedia/avidemux2/files/patch-cmake-admFFmpegBuild.cmake (props changed) head/multimedia/avidemux2/files/patch-po__CMakeLists.txt (props changed) head/multimedia/avidemux2/files/patch-x264_x264Options.cpp (props changed) head/multimedia/bombono/files/patch-SConstruct (props changed) head/multimedia/bombono/files/patch-stream.h (props changed) head/multimedia/camserv/files/patch-ab (props changed) head/multimedia/camserv/files/patch-ad (props changed) head/multimedia/camserv/files/patch-camserv.cfg (props changed) head/multimedia/camserv/files/patch-configure.in (props changed) head/multimedia/camserv/files/patch-video_v4l.c (props changed) head/multimedia/castpodder/files/patch-CastPodder.sh (props changed) head/multimedia/cheese/files/patch-configure (props changed) head/multimedia/cheese/files/patch-libcheese_cheese-camera-device-monitor.c (props changed) head/multimedia/devede/files/patch-devede.py (props changed) head/multimedia/dtv/files/patch-aa (props changed) head/multimedia/dtv/files/patch-main.c (props changed) head/multimedia/dv2jpg/files/patch-avijoin.c (props changed) head/multimedia/dv2jpg/files/patch-dv2jpg.c (props changed) head/multimedia/dv2jpg/files/patch-makefile (props changed) head/multimedia/dvbcut/files/patch-defines.h (props changed) head/multimedia/dvbcut/files/patch-index.h (props changed) head/multimedia/dvbsnoop/files/patch-src-dvbsnoop.h (props changed) head/multimedia/dvd-slideshow/files/patch-dir2slideshow (props changed) head/multimedia/dvd-slideshow/files/patch-install.sh (props changed) head/multimedia/dvdrip/files/patch-lib__Video__DVDRip__Cluster__Master.pm (props changed) head/multimedia/dvdrip/files/patch-lib__Video__DVDRip__Config.pm (props changed) head/multimedia/dvdrip/files/patch-lib__Video__DVDRip__FilterList.pm (props changed) head/multimedia/dvdrip/files/patch-lib__Video__DVDRip__GUI__Project__Storage.pm (props changed) head/multimedia/dvdrip/files/patch-lib__Video__DVDRip__GUI__Project__Title.pm (props changed) head/multimedia/dvdrip/files/patch-lib__Video__DVDRip__Project.pm (props changed) head/multimedia/dvdstyler/files/patch-docs-Makefile.in (props changed) head/multimedia/dvts/files/patch-Makefile.in (props changed) head/multimedia/emovix/files/patch-Makefile.am (props changed) head/multimedia/emovix/files/patch-Makefile.in (props changed) head/multimedia/ffmpeg/files/patch-configure (props changed) head/multimedia/ffmpeg/files/patch-libavcodec-Makefile (props changed) head/multimedia/ffmpeg/files/patch-libavdevice-bktr.c (props changed) head/multimedia/ffmpeg/files/patch-libavdevice-oss_audio.c (props changed) head/multimedia/ffmpeg/files/patch-libavfilter-vf_libopencv.c (props changed) head/multimedia/ffmpeg/files/patch-libavformat-udp.c (props changed) head/multimedia/ffmpeg/files/patch-libavutil-common.h (props changed) head/multimedia/ffmpeg0/files/patch-configure (props changed) head/multimedia/ffmpeg0/files/patch-libavcodec-Makefile (props changed) head/multimedia/ffmpeg0/files/patch-libavcodec-libgsm.c (props changed) head/multimedia/ffmpeg0/files/patch-libavdevice-bktr.c (props changed) head/multimedia/ffmpeg0/files/patch-libavdevice-oss_audio.c (props changed) head/multimedia/ffmpeg0/files/patch-libavfilter-Makefile (props changed) head/multimedia/ffmpeg0/files/patch-libavfilter-vf_libopencv.c (props changed) head/multimedia/ffmpeg0/files/patch-libavformat-udp.c (props changed) head/multimedia/ffmpeg0/files/patch-libavutil-common.h (props changed) head/multimedia/flvstreamer/files/patch-Makefile (props changed) head/multimedia/flvtool++/files/patch-AMFData.h (props changed) head/multimedia/flvtool++/files/patch-SConstruct (props changed) head/multimedia/flvtool++/files/patch-common.h (props changed) head/multimedia/flvtool++/files/patch-serialized_buffer.h (props changed) head/multimedia/fpc-dts/files/patch-packages-dts-src-dts.pas (props changed) head/multimedia/freevo/files/patch-freevo (props changed) head/multimedia/freevo/files/patch-src-helpers-recordserver.py (props changed) head/multimedia/freevo/files/patch-src-plugins-autoshutdown.py (props changed) head/multimedia/freevo/files/patch-src-www-configlib.py (props changed) head/multimedia/freevo/files/patch-src-www-htdocs-favorites.rpy (props changed) head/multimedia/freevo/files/patch-src-www-htdocs-fileinfo.rpy (props changed) head/multimedia/freevo/files/patch-src-www-htdocs-guide.rpy (props changed) head/multimedia/freevo/files/patch-src-www-htdocs-guidechannel.rpy (props changed) head/multimedia/freevo/files/patch-src-www-htdocs-proginfo.rpy (props changed) head/multimedia/freevo/files/patch-src-www-htdocs-search.rpy (props changed) head/multimedia/freevo/files/patch-src-www-htdocs-vlcwin.rpy (props changed) head/multimedia/freevo/files/patch-src-www-web_types.py (props changed) head/multimedia/fxtv/files/patch-ab (props changed) head/multimedia/fxtv/files/patch-ac (props changed) head/multimedia/fxtv/files/patch-ad (props changed) head/multimedia/fxtv/files/patch-ae (props changed) head/multimedia/fxtv/files/patch-app_rsrc.h (props changed) head/multimedia/fxtv/files/patch-haup__remote.c (props changed) head/multimedia/fxtv/files/patch-pixelview__remote.c (props changed) head/multimedia/fxtv/files/patch-tvcapture.c (props changed) head/multimedia/fxtv/files/patch-tvcapture.h (props changed) head/multimedia/fxtv/files/patch-tvmenu.c (props changed) head/multimedia/fxtv/files/patch-tvscreen.c (props changed) head/multimedia/fxtv/files/patch-videolib_videolib.c (props changed) head/multimedia/fxtv/files/patch-xutil.c (props changed) head/multimedia/gavl/files/patch-gavl-time.c (props changed) head/multimedia/ggrab/files/patch-Makefile (props changed) head/multimedia/ggrab/files/patch-cbuffer.h (props changed) head/multimedia/ggrab/files/patch-pesstream.h (props changed) head/multimedia/gmencoder/files/patch-src_mypopen.c (props changed) head/multimedia/gmerlin-avdecoder/files/patch-lib-demux_ffmpeg.c (props changed) head/multimedia/gmerlin-avdecoder/files/patch-lib-libw32dll-wine-win32.c (props changed) head/multimedia/gmerlin/files/patch-configure (props changed) head/multimedia/gnome-subtitles/files/patch-src_GnomeSubtitles_Execution_gnome-subtitles.in (props changed) head/multimedia/gopchop/files/patch-include::GOPchop.h (props changed) head/multimedia/gopchop/files/patch-src::ElementStream.h (props changed) head/multimedia/gopchop/files/patch-src::MPEG2Parser.cpp (props changed) head/multimedia/gopchop/files/patch-src::Main.cpp (props changed) head/multimedia/gopchop/files/patch-src::file_buffer.h (props changed) head/multimedia/gopchop/files/patch-src::mpegcat.c (props changed) head/multimedia/gstreamer-plugins-good/files/patch-configure (props changed) head/multimedia/gstreamer-plugins-good/files/patch-sys_oss_gstosshelper.c (props changed) head/multimedia/gstreamer-plugins-good/files/patch-sys_oss_gstossmixer.c (props changed) head/multimedia/gstreamer-plugins-good/files/patch-sys_v4l2_gstv4l2object.h (props changed) head/multimedia/gstreamer-plugins/files/patch-Makefile.in (props changed) head/multimedia/gstreamer-plugins/files/patch-ext_cdparanoia_gstcdparanoiasrc.c (props changed) head/multimedia/gstreamer-plugins/files/patch-gst-libs_gst_sdp_gstsdpmessage.c (props changed) head/multimedia/gstreamer-plugins/files/patch-gst_audioresample_resample.c (props changed) head/multimedia/gstreamer-plugins/files/patch-gst_audioresample_speex-resampler-double.c (props changed) head/multimedia/gstreamer-plugins/files/patch-sys_v4l_gstv4lelement.h (props changed) head/multimedia/gstreamer-plugins/files/patch-sys_v4l_v4lsrc_calls.c (props changed) head/multimedia/gstreamer/files/patch-Makefile.in (props changed) head/multimedia/gstreamer1-plugins-good/files/patch-sys_oss_gstosshelper.c (props changed) head/multimedia/gstreamer1-plugins/files/patch-ext_cdparanoia_gstcdparanoiasrc.c (props changed) head/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_resample.c (props changed) head/multimedia/gstreamer1-plugins/files/patch-gst_audioresample_speex-resampler-double.c (props changed) head/multimedia/gxanim/files/patch-aa (props changed) head/multimedia/gxanim/files/patch-gxanim.c (props changed) head/multimedia/gxine/files/patch-src__Makefile.in (props changed) head/multimedia/gxine/files/patch-src__console_outout.h (props changed) head/multimedia/gxine/files/patch-src__engine.c (props changed) head/multimedia/gxine/files/patch-src__lirc.c (props changed) head/multimedia/gxine/files/patch-src__main.c (props changed) head/multimedia/gxine/files/patch-src_console_output.c (props changed) head/multimedia/gxine/files/patch-src_desktop_integration.c (props changed) head/multimedia/handbrake/files/patch-build_contrib_x264_x264_common_cpu.c (props changed) head/multimedia/handbrake/files/patch-build_contrib_x264_x264_configure (props changed) head/multimedia/handbrake/files/patch-contrib_ffmpeg_module.defs (props changed) head/multimedia/handbrake/files/patch-contrib_fontconfig_module.defs (props changed) head/multimedia/handbrake/files/patch-contrib_freetype_module.defs (props changed) head/multimedia/handbrake/files/patch-contrib_libass_module.defs (props changed) head/multimedia/handbrake/files/patch-gtk_src_callbacks.c (props changed) head/multimedia/handbrake/files/patch-libhb_module.defs (props changed) head/multimedia/handbrake/files/patch-make_configure.py (props changed) head/multimedia/handbrake/files/patch-make_include_contrib.defs (props changed) head/multimedia/handbrake/files/patch-make_include_main.defs (props changed) head/multimedia/handbrake/files/patch-make_include_select.defs (props changed) head/multimedia/handbrake/files/patch-test_module.defs (props changed) head/multimedia/imagination/files/patch-Makefile.am (props changed) head/multimedia/imagination/files/patch-Makefile.in (props changed) head/multimedia/jmref/files/patch-Makefile (props changed) head/multimedia/k9copy-kde4/files/patch-CMakeLists.txt (props changed) head/multimedia/k9copy-kde4/files/patch-src-xine-k9xineplayer.cpp (props changed) head/multimedia/k9copy-kde4/files/patch-src-xine-k9xineplayer.h (props changed) head/multimedia/kaffeine/files/patch-dmx.h (props changed) head/multimedia/kaffeine/files/patch-frontend.h (props changed) head/multimedia/kaffeine/files/patch-src-dvb-dvbsi.h (props changed) head/multimedia/kaffeine/files/patch-src-mediawidget.cpp (props changed) head/multimedia/kino/files/patch-Makefile.in (props changed) head/multimedia/kino/files/patch-am (props changed) head/multimedia/kino/files/patch-an (props changed) head/multimedia/kino/files/patch-ao (props changed) head/multimedia/kino/files/patch-at (props changed) head/multimedia/kino/files/patch-au (props changed) head/multimedia/kino/files/patch-av (props changed) head/multimedia/kino/files/patch-aw (props changed) head/multimedia/kino/files/patch-ax (props changed) head/multimedia/kino/files/patch-az (props changed) head/multimedia/kino/files/patch-bb (props changed) head/multimedia/kino/files/patch-be (props changed) head/multimedia/kino/files/patch-bf (props changed) head/multimedia/kino/files/patch-bh (props changed) head/multimedia/kino/files/patch-configure.in (props changed) head/multimedia/kino/files/patch-src::audio_transitions.h (props changed) head/multimedia/kino/files/patch-src::filehandler.h (props changed) head/multimedia/kino/files/patch-src::image_filters.h (props changed) head/multimedia/kino/files/patch-src::image_transitions.h (props changed) head/multimedia/kino/files/patch-src::kino_common.cc (props changed) head/multimedia/kino/files/patch-src::mediactrl.c (props changed) head/multimedia/kino/files/patch-src::mediactrl.h (props changed) head/multimedia/kino/files/patch-src__Makefile.in (props changed) head/multimedia/kino/files/patch-src__dvtitler__textblock.cc (props changed) head/multimedia/kino/files/patch-src__gtkenhancedscale.c (props changed) head/multimedia/kino/files/patch-src__ieee1394io.cc (props changed) head/multimedia/kino/files/patch-src__ieee1394io.h (props changed) head/multimedia/kino/files/patch-src__jogshuttle.h (props changed) head/multimedia/kino/files/patch-src__kino_extra.h (props changed) head/multimedia/kino/files/patch-src__page_export_1394.cc (props changed) head/multimedia/kino/files/patch-src__preferences_dialog.cc (props changed) head/multimedia/kino/files/patch-src_endian_types.h (props changed) head/multimedia/kmplayer-kde4/files/patch-src__kmplayershared.h (props changed) head/multimedia/kplayer-kde4/files/patch-CMakeLists.txt (props changed) head/multimedia/kplayer-kde4/files/patch-kplayer_kplayerengine.h (props changed) head/multimedia/kplayer-kde4/files/patch-kplayer_kplayerproperties.cpp (props changed) head/multimedia/libdv/files/patch-configure (props changed) head/multimedia/libdv/files/patch-encodecv-dvavi.c (props changed) head/multimedia/libdv/files/patch-encodedv-dvconnect.c (props changed) head/multimedia/libdv/files/patch-libdv__encode.c (props changed) head/multimedia/libdv/files/patch-playdv-oss.c (props changed) head/multimedia/libdvdnav/files/patch-Makefile (props changed) head/multimedia/libdvdnav/files/patch-configure2 (props changed) head/multimedia/libdvdnav/files/patch-src-searching.c (props changed) head/multimedia/libdvdread/files/patch-Makefile (props changed) head/multimedia/libdvdread/files/patch-configure2 (props changed) head/multimedia/libdvdread/files/patch-src.md5.c (props changed) head/multimedia/libfame/files/patch-cflags (props changed) head/multimedia/libfame/files/patch-mmx_one-gcc34 (props changed) head/multimedia/libfame/files/patch-warnings (props changed) head/multimedia/libmatroska/files/patch-make_linux_Makefile (props changed) head/multimedia/libmovtar/files/patch-movtar_play.c (props changed) head/multimedia/libmovtar/files/patch-movtar_yuv422.c (props changed) head/multimedia/libmovtar/files/patch-rtjpeg_RTjpeg.c (props changed) head/multimedia/libmpeg3/files/patch-ifo.h (props changed) head/multimedia/libmpeg3/files/patch-mpeg3ifo.c (props changed) head/multimedia/libmpeg3/files/patch-mpeg3io.c (props changed) head/multimedia/libmpeg3/files/patch-mpeg3tocutil.c (props changed) head/multimedia/librtmp/files/patch-librtmp-Makefile (props changed) head/multimedia/librtmp/files/patch-librtmp-librtmp.pc.in (props changed) head/multimedia/libtheora/files/patch-Makefile.in (props changed) head/multimedia/libv4l/files/patch-Make.rules (props changed) head/multimedia/libv4l/files/patch-include_libv4l1-videodev.h (props changed) head/multimedia/libv4l/files/patch-libv4lconvert_control_libv4lcontrol.c (props changed) head/multimedia/libva/files/patch-va-glx-va_glx_private.h (props changed) head/multimedia/libva/files/patch-va-va.c (props changed) head/multimedia/libvpx/files/patch-configure (props changed) head/multimedia/libxine/files/patch-config.rpath (props changed) head/multimedia/libxine/files/patch-contrib-libdha-sysdep-pci_freebsd.c (props changed) head/multimedia/libxine/files/patch-include-xine-xine_internal.h (props changed) head/multimedia/libxine/files/patch-misc_Makefile.in (props changed) head/multimedia/libxine/files/patch-misc_libxine.pc.in (props changed) head/multimedia/libxine/files/patch-src-audio_dec-xine_lpcm_decoder.c (props changed) head/multimedia/libxine/files/patch-src-libw32dll-wine-registry.c (props changed) head/multimedia/libxine/files/patch-src-vdr-input_vdr.c (props changed) head/multimedia/linux_v4l2wrapper-kmod/files/patch-Makefile (props changed) head/multimedia/linux_v4l2wrapper-kmod/files/patch-linux_v4l2.c (props changed) head/multimedia/lsdvd/files/patch-lsdvd.c (props changed) head/multimedia/lsdvd/files/patch-ohuman.c (props changed) head/multimedia/lxdvdrip/files/patch-Makefile (props changed) head/multimedia/lxdvdrip/files/patch-bswap.h (props changed) head/multimedia/lxdvdrip/files/patch-dvdbackup__Makefile (props changed) head/multimedia/lxdvdrip/files/patch-dvdbackup__dvdbackup_lxdvdrip.c (props changed) head/multimedia/lxdvdrip/files/patch-lxac3scan.c (props changed) head/multimedia/lxdvdrip/files/patch-lxdvdrip.c (props changed) head/multimedia/lxdvdrip/files/patch-systools.c (props changed) head/multimedia/lxdvdrip/files/patch-vamps__Makefile (props changed) head/multimedia/lxdvdrip/files/patch-vamps__lxdvdrip.c (props changed) head/multimedia/lxdvdrip/files/patch-vamps__requant.c (props changed) head/multimedia/m2vrequantiser/files/patch-main.c (props changed) head/multimedia/miro/files/patch-linux__plat__resources.py (props changed) head/multimedia/miro/files/patch-linux_miro-segmenter.c (props changed) head/multimedia/mjpegtools/files/patch-mplex_main.cpp (props changed) head/multimedia/mjpegtools/files/patch-y4mdenoise__MotionSercher.hh (props changed) head/multimedia/mkclean/files/patch-corec__corec__helpers__file__file_libc.c (props changed) head/multimedia/mkclean/files/patch-corec__corec__portab.h (props changed) head/multimedia/mkclean/files/patch-root.proj (props changed) head/multimedia/mkvalidator/files/patch-corec__corec__helpers__file__file_libc.c (props changed) head/multimedia/mkvalidator/files/patch-corec__corec__portab.h (props changed) head/multimedia/mmpython/files/patch-disc__discinfo.py (props changed) head/multimedia/mmsclient/files/patch-client.c (props changed) head/multimedia/mmsclient/files/patch-configure (props changed) head/multimedia/motion/files/patch-configure.in (props changed) head/multimedia/mp4v2/files/patch-GNUmakefile.in (props changed) head/multimedia/mp4v2/files/patch-include__mp4v2__itmf_tags.h (props changed) head/multimedia/mp4v2/files/patch-src__bmff__typebmff.cpp (props changed) head/multimedia/mp4v2/files/patch-src__itmf__type.cpp (props changed) head/multimedia/mpeg2codec/files/patch-ab (props changed) head/multimedia/mpeg2play/files/patch-aa (props changed) head/multimedia/mpeg2play/files/patch-ab (props changed) head/multimedia/mpeg4ip/files/patch-common_video_iso-mpeg4_src_type_basic.cpp (props changed) head/multimedia/mpeg4ip/files/patch-configure (props changed) head/multimedia/mpeg4ip/files/patch-include::mpeg4ip_byteswap.h (props changed) head/multimedia/mpeg4ip/files/patch-include__mpeg4ip.h (props changed) head/multimedia/mpeg4ip/files/patch-include__mpeg4ip_getopt.h (props changed) head/multimedia/mpeg4ip/files/patch-player-plugin-video-ffmpeg-ffmpeg.cpp (props changed) head/multimedia/mpeg4ip/files/patch-player-plugin-video-ffmpeg-ffmpeg.h (props changed) head/multimedia/mpeg4ip/files/patch-server_mp4live_video_ffmpeg.cpp (props changed) head/multimedia/mpeg4ip/files/patch-v4l (props changed) head/multimedia/mpeg_encode/files/patch-aa (props changed) head/multimedia/mpeg_encode/files/patch-ab (props changed) head/multimedia/mpeg_encode/files/patch-ac (props changed) head/multimedia/mpeg_encode/files/patch-ad (props changed) head/multimedia/mpeg_encode/files/patch-opts.c (props changed) head/multimedia/mpeg_play/files/patch-aa (props changed) head/multimedia/mpeg_play/files/patch-video.h (props changed) head/multimedia/mpeg_stat/files/patch-Makefile (props changed) head/multimedia/mpeg_stat/files/patch-aa (props changed) head/multimedia/mpeg_stat/files/patch-main.c (props changed) head/multimedia/mpeg_stat/files/patch-proto.h (props changed) head/multimedia/mpgtx/files/patch-chunkTab.cxx (props changed) head/multimedia/mpgtx/files/patch-common.hh (props changed) head/multimedia/mplayer/files/patch-Makefile (props changed) head/multimedia/mplayer/files/patch-ffmpeg-Makefile (props changed) head/multimedia/mplayer/files/patch-libao2-ao_arts.c (props changed) head/multimedia/mplayer/files/patch-libao2-ao_oss.c (props changed) head/multimedia/mplayer/files/patch-libavcodec-Makefile (props changed) head/multimedia/mplayer/files/patch-libavfilter-Makefile (props changed) head/multimedia/mplayer/files/patch-libavformat-udp.c (props changed) head/multimedia/mplayer/files/patch-stream-tvi_v4l.c (props changed) head/multimedia/mplayer/files/patch-stream-tvi_v4l2.c (props changed) head/multimedia/mplayer/files/patch-vidix-mga_vid.c (props changed) head/multimedia/mplayer2/files/patch-configure (props changed) head/multimedia/mplayer2/files/patch-libao2-ao_oss.c (props changed) head/multimedia/mplayer2/files/patch-stream-tvi_bsdbt848.c (props changed) head/multimedia/mplayer2/files/patch-stream-tvi_v4l2.c (props changed) head/multimedia/mplayer2/files/patch-sub-subassconvert.c (props changed) head/multimedia/mplayer2/files/patch-sub-subreader.c (props changed) head/multimedia/mplayerxp/files/patch-codecs__libfaad2__common.h (props changed) head/multimedia/mplayerxp/files/patch-codecs__libfaad2__output.c (props changed) head/multimedia/mplayerxp/files/patch-loader-win32.c (props changed) head/multimedia/mplayerxp/files/patch-loader::Makefile (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp::Makefile (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp::sig_hand.c (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__configure (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__libao2__afmt.h (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__libao2__ao_null.c (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__libao2__ao_oss.c (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__libmpdemux__Makefile (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__libmpdemux__asf_streaming.c (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__libmpdemux__mux_mpxp64.c (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__libmpdemux__s_network.c (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__libvo__screenshot.c (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__mplayer.c (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__mplayer.h (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__nls__Makefile (props changed) head/multimedia/mplayerxp/files/patch-mplayerxp__sig_hand.h (props changed) head/multimedia/mplex/files/patch-ab (props changed) head/multimedia/mplex/files/patch-ac (props changed) head/multimedia/mplex/files/patch-ad (props changed) head/multimedia/mplex/files/patch-ae (props changed) head/multimedia/mplex/files/patch-af (props changed) head/multimedia/msdl/files/patch-src-url.h (props changed) head/multimedia/mythtv-frontend/files/patch-external__FFmpeg__configure (props changed) head/multimedia/mythtv-frontend/files/patch-libs__libmythdvdnav__dvdnav__dvdnav.c (props changed) head/multimedia/mythtv-frontend/files/patch-libs__libmythtv__videoout_vdpau.cpp (props changed) head/multimedia/mythtv-frontend/files/patch-programs__programs.pro (props changed) head/multimedia/mythtv/files/patch-external__FFmpeg__configure (props changed) head/multimedia/mythtv/files/patch-libs__libmythdvdnav__dvdnav__dvdnav.c (props changed) head/multimedia/mythtv/files/patch-libs__libmythtv__videoout_vdpau.cpp (props changed) head/multimedia/nxtvepg/files/patch-Makefile (props changed) head/multimedia/nxtvepg/files/patch-Makefile.bsd (props changed) head/multimedia/opencinematools/files/patch-build_unix_Makefile (props changed) head/multimedia/opencinematools/files/patch-src_mkcpl.cpp (props changed) head/multimedia/openmovieeditor/files/patch-src-Fl__Split.cpp (props changed) head/multimedia/openquicktime/files/patch-Makefile.in (props changed) head/multimedia/openquicktime/files/patch-audioplugin::MP3::Makefile.in (props changed) head/multimedia/openquicktime/files/patch-audioplugin_MP3_audioencoder_lame3.70_lame.c (props changed) head/multimedia/openquicktime/files/patch-videoplugin::PHOTO_JPEG::Makefile.in (props changed) head/multimedia/openshot/files/patch-openshot__language__Language_Init.py (props changed) head/multimedia/openshot/files/patch-setup.py (props changed) head/multimedia/phonon-xine/files/patch-xine__CMakeLists.txt (props changed) head/multimedia/phonon-xine/files/patch-xine__kequalizer_plugin.cpp (props changed) head/multimedia/phonon-xine/files/patch-xine__mediaobject.cpp (props changed) head/multimedia/photofilmstrip/files/patch-src__gui__HelpViewer.py (props changed) head/multimedia/pvr250/files/patch-modules_cxm_cxm_Makefile (props changed) head/multimedia/pvr250/files/patch-modules_cxm_cxm__iic_Makefile (props changed) head/multimedia/pvrxxx/files/patch-cxm (props changed) head/multimedia/pvrxxx/files/patch-cxm_iic (props changed) head/multimedia/pvrxxx/files/patch-dev (props changed) head/multimedia/pvrxxx/files/patch-pvr250-1.2 (props changed) head/multimedia/pwcbsd/files/extra-patch-Makefile.kld (props changed) head/multimedia/pwcbsd/files/extra-patch-pwc-ctrl.c (props changed) head/multimedia/pwcbsd/files/extra-patch-pwc-v4l.c (props changed) head/multimedia/pwcbsd/files/extra-patch-pwc.c (props changed) head/multimedia/pwcbsd/files/extra-patch-pwc.h (props changed) head/multimedia/pwcbsd/files/patch-pwcview.c (props changed) head/multimedia/pwcview/files/patch-pwcview.c (props changed) head/multimedia/py-kaa-base/files/patch-base-src-extensions-inotify-fallback-inotify.h (props changed) head/multimedia/py-kaa-base/files/patch-base-src-extensions-shmmodule.c (props changed) head/multimedia/py-kaa-base/files/patch-base-src-process.py (props changed) head/multimedia/quark/files/patch-charm-quark::charm-quark (props changed) head/multimedia/quodlibet/files/patch-gdist__man.py (props changed) head/multimedia/quodlibet/files/patch-quodlibet__qltk__config.py (props changed) head/multimedia/recordmydesktop/files/patch-rmd_make_dummy_pointer.c (props changed) head/multimedia/recordmydesktop/files/patch-rmd_queryextensions.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_cache.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_cache_frame.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_capture_sound.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_flush_to_ogg.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_get_frame.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_getzpixmap.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_rescue.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_specsfile.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_timer.c (props changed) head/multimedia/recordmydesktop/files/patch-src_rmd_update_image.c (props changed) head/multimedia/replex/files/patch-pes.c (props changed) head/multimedia/rtmpdump/files/patch-Makefile (props changed) head/multimedia/sabbu/files/patch-common.h (props changed) head/multimedia/sabbu/files/patch-configure (props changed) head/multimedia/sabbu/files/patch-video.cpp (props changed) head/multimedia/sabbu/files/patch-video.h (props changed) head/multimedia/sabbu/files/patch-video_ffmpeg.h (props changed) head/multimedia/smile/files/patch-mainfrm.cpp (props changed) head/multimedia/smpeg/files/patch-MPEGaudio.h (props changed) head/multimedia/smpeg/files/patch-ab (props changed) head/multimedia/smpeg/files/patch-ac (props changed) head/multimedia/smpeg/files/patch-configure (props changed) head/multimedia/smpeg/files/patch-video::video.h (props changed) head/multimedia/smplayer/files/patch-Makefile (props changed) head/multimedia/sms1xxx-kmod/files/patch-firmwares-Makefile (props changed) head/multimedia/spigot/files/patch-aa (props changed) head/multimedia/spook/files/patch-bswap.h (props changed) head/multimedia/spook/files/patch-configure.ac (props changed) head/multimedia/spook/files/patch-input-oss.c (props changed) head/multimedia/spook/files/patch-md5.c (props changed) head/multimedia/spook/files/patch-tcp.c (props changed) head/multimedia/szap-s2/files/patch-teletext (props changed) head/multimedia/tcmplex-panteltje/files/patch-unistd (props changed) head/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp (props changed) head/multimedia/totem/files/patch-configure (props changed) head/multimedia/totem/files/patch-help_Makefile.in (props changed) head/multimedia/transcode/files/patch-import-v4l (props changed) head/multimedia/transcode/files/patch-import_Makefile.in (props changed) head/multimedia/transcode/files/patch-libtc-tc_functions.c (props changed) head/multimedia/tunapie/files/patch-install.sh (props changed) head/multimedia/tunapie/files/patch-src-tuner.py (props changed) head/multimedia/umplayer/files/patch-src_umplayer.cpp (props changed) head/multimedia/umr/files/patch-Makefile (props changed) head/multimedia/v4l-utils/files/patch-Make.rules (props changed) head/multimedia/v4l-utils/files/patch-Makefile (props changed) head/multimedia/v4l-utils/files/patch-decode_tm6000__decode_tm6000.c (props changed) head/multimedia/v4l-utils/files/patch-keytable__Makefile (props changed) head/multimedia/v4l-utils/files/patch-keytable__keytable.c (props changed) head/multimedia/v4l-utils/files/patch-libv4l2util__v4l2_driver.c (props changed) head/multimedia/v4l-utils/files/patch-qv4l2__v4l2-api.h (props changed) head/multimedia/v4l-utils/files/patch-v4l2-ctl__ivtv-ctl.c (props changed) head/multimedia/v4l-utils/files/patch-v4l2-ctl__v4l2-ctl.cpp (props changed) head/multimedia/v4l-utils/files/patch-v4l2-dbg__v4l2-dbg.cpp (props changed) head/multimedia/v4l_compat/files/patch-dvb-ca.h (props changed) head/multimedia/vamps/files/patch-play_cell__Makefile (props changed) head/multimedia/vamps/files/patch-vamps__Makefile (props changed) head/multimedia/vcdimager/files/patch-docs-vcdimager.texi (props changed) head/multimedia/vcdpad/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-control/files/patch-StringArray.c (props changed) head/multimedia/vdr-plugin-control/files/patch-control.c (props changed) head/multimedia/vdr-plugin-control/files/patch-stack.c (props changed) head/multimedia/vdr-plugin-control/files/patch-telnet.c (props changed) head/multimedia/vdr-plugin-eepg/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-eepg/files/patch-eepg.c (props changed) head/multimedia/vdr-plugin-epgsearch/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-epgsearch/files/patch-menu_searchresults.c (props changed) head/multimedia/vdr-plugin-extrecmenu/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-extrecmenu/files/patch-mymenurecordings.c (props changed) head/multimedia/vdr-plugin-femon/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-femon/files/patch-femon-1.7.7.patch (props changed) head/multimedia/vdr-plugin-infosatepg/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-infosatepg/files/patch-filter.cpp (props changed) head/multimedia/vdr-plugin-infosatepg/files/patch-filter.h (props changed) head/multimedia/vdr-plugin-infosatepg/files/patch-global.cpp (props changed) head/multimedia/vdr-plugin-infosatepg/files/patch-global.h (props changed) head/multimedia/vdr-plugin-infosatepg/files/patch-process.cpp (props changed) head/multimedia/vdr-plugin-infosatepg/files/patch-readline.cpp (props changed) head/multimedia/vdr-plugin-infosatepg/files/patch-status.cpp (props changed) head/multimedia/vdr-plugin-infosatepg/files/patch-status.h (props changed) head/multimedia/vdr-plugin-iptv/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-iptv/files/patch-iptv-vlc2iptv (props changed) head/multimedia/vdr-plugin-markad/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-markad/files/patch-command-decoder.cpp (props changed) head/multimedia/vdr-plugin-markad/files/patch-plugin-markad.cpp (props changed) head/multimedia/vdr-plugin-osdpip/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-osdpip/files/patch-decoder.c (props changed) head/multimedia/vdr-plugin-osdpip/files/patch-i18n.h (props changed) head/multimedia/vdr-plugin-osdpip/files/patch-osd.c (props changed) head/multimedia/vdr-plugin-osdpip/files/patch-receiver.c (props changed) head/multimedia/vdr-plugin-osdpip/files/patch-vdr-osdpip-0.1.0 (props changed) head/multimedia/vdr-plugin-osdteletext/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-osdteletext/files/patch-osdteletext-vdr-1.7.27.txt (props changed) head/multimedia/vdr-plugin-osdteletext/files/patch-vdr-osdteletext-0.9.2 (props changed) head/multimedia/vdr-plugin-reelchannelscan/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-reelchannelscan/files/patch-channelscan.c (props changed) head/multimedia/vdr-plugin-reelchannelscan/files/patch-channelscan.h (props changed) head/multimedia/vdr-plugin-reelchannelscan/files/patch-csmenu.c (props changed) head/multimedia/vdr-plugin-reelchannelscan/files/patch-dvb-s2-vdr-1.7.18 (props changed) head/multimedia/vdr-plugin-reelchannelscan/files/patch-i18n.c (props changed) head/multimedia/vdr-plugin-reelchannelscan/files/patch-i18n.h (props changed) head/multimedia/vdr-plugin-reelchannelscan/files/patch-scan.c (props changed) head/multimedia/vdr-plugin-reelchannelscan/files/patch-transponders.c (props changed) head/multimedia/vdr-plugin-remote/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-remote/files/patch-uhid1 (props changed) head/multimedia/vdr-plugin-skinenigmang/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-skinenigmang/files/patch-vdr-skinenigmang-0.1.1 (props changed) head/multimedia/vdr-plugin-sleeptimer/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-sleeptimer/files/patch-i18.c (props changed) head/multimedia/vdr-plugin-sleeptimer/files/patch-sleeptimer.c (props changed) head/multimedia/vdr-plugin-softdevice/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-softdevice/files/patch-VdrReplacements.c (props changed) head/multimedia/vdr-plugin-softdevice/files/patch-i18n.h (props changed) head/multimedia/vdr-plugin-softdevice/files/patch-shm-common.h (props changed) head/multimedia/vdr-plugin-softdevice/files/patch-softdevice.c (props changed) head/multimedia/vdr-plugin-softdevice/files/patch-vdr-softdevice_CVS-20100414 (props changed) head/multimedia/vdr-plugin-softhddevice/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-softhddevice/files/patch-codec.c (props changed) head/multimedia/vdr-plugin-softhddevice/files/patch-softhddev.c (props changed) head/multimedia/vdr-plugin-softhddevice/files/patch-video.c (props changed) head/multimedia/vdr-plugin-streamdev/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-streamdev/files/patch-client-Makefile (props changed) head/multimedia/vdr-plugin-streamdev/files/patch-client-setup.c (props changed) head/multimedia/vdr-plugin-streamdev/files/patch-server-Makefile (props changed) head/multimedia/vdr-plugin-streamdev/files/patch-server-componentIGMP.c (props changed) head/multimedia/vdr-plugin-streamdev/files/patch-server-connectionVTP.c (props changed) head/multimedia/vdr-plugin-streamdev/files/patch-server-recplayer.c (props changed) head/multimedia/vdr-plugin-streamdev/files/patch-server-setup.c (props changed) head/multimedia/vdr-plugin-ttxtsubs/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-ttxtsubs/files/patch-ttxtsubschannelsettings.c (props changed) head/multimedia/vdr-plugin-upnp/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-upnp/files/patch-badvideo (props changed) head/multimedia/vdr-plugin-upnp/files/patch-clang (props changed) head/multimedia/vdr-plugin-upnp/files/patch-freebsd (props changed) head/multimedia/vdr-plugin-upnp/files/patch-fromgit (props changed) head/multimedia/vdr-plugin-upnp/files/patch-iconv (props changed) head/multimedia/vdr-plugin-upnp/files/patch-libupnp1.6.9 (props changed) head/multimedia/vdr-plugin-upnp/files/patch-livetv-channelname (props changed) head/multimedia/vdr-plugin-upnp/files/patch-receiver-livereceiver.cpp (props changed) head/multimedia/vdr-plugin-upnp/files/patch-recplayer-seek (props changed) head/multimedia/vdr-plugin-upnp/files/patch-size_t (props changed) head/multimedia/vdr-plugin-upnp/files/patch-strncpy (props changed) head/multimedia/vdr-plugin-vdrmanager/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-vdrmanager/files/patch-helpers.cpp (props changed) head/multimedia/vdr-plugin-vdrmanager/files/patch-sock.h (props changed) head/multimedia/vdr-plugin-wirbelscan/files/patch-64f969e39d18aefa263dc3a61172e33df33963fb (props changed) head/multimedia/vdr-plugin-wirbelscan/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-wirbelscan/files/patch-scanner.c (props changed) head/multimedia/vdr-plugin-xineliboutput/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-xineliboutput/files/patch-config.c (props changed) head/multimedia/vdr-plugin-xineliboutput/files/patch-configure (props changed) head/multimedia/vdr-plugin-xineliboutput/files/patch-tools-sys_cap.h (props changed) head/multimedia/vdr-plugin-xineliboutput/files/patch-xine_frontend_main.c (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-81bde12cd5d36a5bb0f1bc5791977b58cc34f91e (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-Makefile (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-rofafor (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-src-live-livestreamer.c (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-src-net-cxsocket.c (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-src-net-cxsocket.h (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-src-net-requestpacket.c (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-src-net-responsepacket.c (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-src-recordings-recplayer.c (props changed) head/multimedia/vdr-plugin-xvdr/files/patch-src-xvdr-xvdrserver.c (props changed) head/multimedia/vdr/files/patch-PLUGINS-src-dvbsddevice-dvbsdffdevice.c (props changed) head/multimedia/vdr/files/patch-device.c (props changed) head/multimedia/vdr/files/patch-device.h (props changed) head/multimedia/vdr/files/patch-dvbdevice.h (props changed) head/multimedia/vdr/files/patch-menuitems.c (props changed) head/multimedia/vdr/files/patch-plugin.c (props changed) head/multimedia/vdr/files/patch-receiver.c (props changed) head/multimedia/vdr/files/patch-tools.c (props changed) head/multimedia/vdr/files/patch-vdr-1.7.28_FreeBSD (props changed) head/multimedia/vdr/files/patch-vdr-1.7.29-sortrectopmenu.diff (props changed) head/multimedia/vdr/files/patch-vdr.1 (props changed) head/multimedia/vdr/files/patch-z-Makefile (props changed) head/multimedia/vdr/files/patch-z-libsi-si.c (props changed) head/multimedia/vic/files/patch-Tcl.cpp (props changed) head/multimedia/vic/files/patch-config (props changed) head/multimedia/vic/files/patch-configure.in (props changed) head/multimedia/vic/files/patch-configure.in.tail (props changed) head/multimedia/vic/files/patch-configure.in.tk (props changed) head/multimedia/vic/files/patch-const (props changed) head/multimedia/vic/files/patch-defs (props changed) head/multimedia/vic/files/patch-histtolut.cpp (props changed) head/multimedia/vic/files/patch-inet6.h (props changed) head/multimedia/vic/files/patch-main (props changed) head/multimedia/vic/files/patch-mbus_handler (props changed) head/multimedia/vic/files/patch-md5 (props changed) head/multimedia/vic/files/patch-net-ipv6.cpp (props changed) head/multimedia/vic/files/patch-nomalloc_h (props changed) head/multimedia/vic/files/patch-renderer-window (props changed) head/multimedia/vic/files/patch-ui-ctrlmenu.tcl (props changed) head/multimedia/vic/files/patch-ui-resource.tcl (props changed) head/multimedia/vic/files/patch-video-grabber-video4linux.cpp (props changed) head/multimedia/vic/files/patch-warns (props changed) head/multimedia/vlc/files/patch-include-vlc_common.h (props changed) head/multimedia/vlc/files/patch-modules-gui-qt4-qt4.hpp (props changed) head/multimedia/vlc/files/patch-modules-gui-qt4-util-pictureflow.cpp (props changed) head/multimedia/vlc/files/patch-src-network-udp.c (props changed) head/multimedia/vstream-client/files/patch-test-client.c (props changed) head/multimedia/w_scan/files/patch-char-coding.c (props changed) head/multimedia/w_scan/files/patch-scan.c (props changed) head/multimedia/x264/files/patch-Makefile (props changed) head/multimedia/x264/files/patch-common_cpu.c (props changed) head/multimedia/xanim/files/patch-ab (props changed) head/multimedia/xanim/files/patch-xa_audio.h (props changed) head/multimedia/xanim/files/patch-xa_input.c (props changed) head/multimedia/xanim/files/patch-xa_vid_codec.c (props changed) head/multimedia/xawtv/files/patch-common::vbi-data.c (props changed) head/multimedia/xawtv/files/patch-console::fbtools.c (props changed) head/multimedia/xawtv/files/patch-console::scantv.c (props changed) head/multimedia/xawtv/files/patch-console::showqt.c (props changed) head/multimedia/xawtv/files/patch-console::vbi-tty.c (props changed) head/multimedia/xawtv/files/patch-libng::contrib-plugins::Subdir.mk (props changed) head/multimedia/xawtv/files/patch-libng::plugins::drv0-bsd.c (props changed) head/multimedia/xawtv/files/patch-x11::Subdir.mk (props changed) head/multimedia/xbmc-addon-xvdr/files/patch-addons-library.xbmc.addon-libXBMC_addon.h (props changed) head/multimedia/xbmc-addon-xvdr/files/patch-addons-library.xbmc.gui-libXBMC_gui.h (props changed) head/multimedia/xbmc-addon-xvdr/files/patch-addons-library.xbmc.pvr-libXBMC_pvr.h (props changed) head/multimedia/xbmc-addon-xvdr/files/patch-src-libPlatform-linux-os_posix.h (props changed) head/multimedia/xbmc-addon-xvdr/files/patch-src-xvdr-Makefile.am (props changed) head/multimedia/xbmc-addon-xvdr/files/patch-src-xvdr-thread.cpp (props changed) head/multimedia/xbmc-addon-xvdr/files/patch-src-xvdr-thread.h (props changed) head/multimedia/xbmc-pvr/files/patch-Makefile.in (props changed) head/multimedia/xbmc-pvr/files/patch-addons-library.xbmc.addon-libXBMC_addon.h (props changed) head/multimedia/xbmc-pvr/files/patch-configure.in (props changed) head/multimedia/xbmc-pvr/files/patch-lib-cximage-6.0-CxImage-ximapng.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-lib-cximage-6.0-CxImage-ximapng.h (props changed) head/multimedia/xbmc-pvr/files/patch-lib-cximage-6.0-raw-dcr.c (props changed) head/multimedia/xbmc-pvr/files/patch-lib-cximage-6.0-raw-libdcr.h (props changed) head/multimedia/xbmc-pvr/files/patch-lib-libPlatform-linux-os_posix.h (props changed) head/multimedia/xbmc-pvr/files/patch-lib-libXDAAP-httpClient.c (props changed) head/multimedia/xbmc-pvr/files/patch-lib-libXDAAP-ioloop.c (props changed) head/multimedia/xbmc-pvr/files/patch-lib-libXDAAP-threadpool.c (props changed) head/multimedia/xbmc-pvr/files/patch-lib-libsidplay2-eventh (props changed) head/multimedia/xbmc-pvr/files/patch-lib-platform-posix-os-types.h (props changed) head/multimedia/xbmc-pvr/files/patch-lib__cpluff__libcpluff__cpluff.c (props changed) head/multimedia/xbmc-pvr/files/patch-lib__cpluff__libcpluff__logging.c (props changed) head/multimedia/xbmc-pvr/files/patch-lib__cpluff__libcpluff__pinfo.c (props changed) head/multimedia/xbmc-pvr/files/patch-lib__cpluff__libcpluff__ploader.c (props changed) head/multimedia/xbmc-pvr/files/patch-lib__cpluff__libcpluff__psymbol.c (props changed) head/multimedia/xbmc-pvr/files/patch-libdl-freebsd (props changed) head/multimedia/xbmc-pvr/files/patch-threadid-freebsd (props changed) head/multimedia/xbmc-pvr/files/patch-tools-TexturePacker-XBTFWriter.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-tools__Linux__xbmc.sh.in (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-cores-VideoRenderers-LinuxRendererGL.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-cores-VideoRenderers-LinuxRendererGL.h (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-filesystem-CacheStrategy.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-filesystem-SAPDirectory.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-music-tags-MusicInfoTagLoaderWMA.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-network-Network.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-network-linux-NetworkLinux.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-programs-ProgramDatabase.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-pvr-PVRManager.h (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-pvrclients-MediaPortal-CriticalSection.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-screensavers-rsxs-0.9-lib-argp-fmtstream.h (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-screensavers-rsxs-0.9-lib-argp-help.c (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-storage-IoSupport.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-utils-StdString.h (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc-windowing-X11-XRandR.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__ViewDatabase.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__addons__Addon.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__cores__DllLoader__exports__emu_msvcrt.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__cores__DllLoader__exports__emu_msvcrt.h (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__cores__dvdplayer__DVDAudio.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__cores__dvdplayer__DVDPlayer.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__cores__paplayer__Makefile.in (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__cores__paplayer__PAPlayer.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__cores__paplayer__WAVcodec.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__linux__FreeBSDGNUReplacements.c (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__linux__FreeBSDGNUReplacements.h (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__linux__LinuxTimezone.cpp (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__linux__Makefile.in (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__linux__PlatformDefs.h (props changed) head/multimedia/xbmc-pvr/files/patch-xbmc__screensavers__rsxs-0.9__lib__stdbool_.h (props changed) head/multimedia/xbmc/files/patch-clang (props changed) head/multimedia/xine/files/patch-src:xitk:skins:xinetic:skinconfig (props changed) head/multimedia/xine/files/patch-src_xitk_Imlib-light_load.c (props changed) head/multimedia/xmms-status-plugin/files/patch-xmms-status-plugin.c (props changed) head/multimedia/xtheater/files/patch-plugins::ui::gtk::uiopt.c (props changed) head/multimedia/xvid/files/patch-configure (props changed) head/multimedia/y4mscaler/files/patch-ysStreamInfo.H (props changed) head/multimedia/zoneminder/files/extra-patch-scripts_ZoneMinder_lib_ZoneMinder_Memory.pm.in (props changed) head/multimedia/zoneminder/files/patch-Makefile.in (props changed) head/multimedia/zoneminder/files/patch-configure (props changed) head/multimedia/zoneminder/files/patch-db_zm_create.sql.in (props changed) head/multimedia/zoneminder/files/patch-scripts_zmpkg.pl.in (props changed) head/multimedia/zoneminder/files/patch-src_Makefile.am (props changed) head/multimedia/zoneminder/files/patch-src_zm_comms.cpp (props changed) head/multimedia/zoneminder/files/patch-src_zm_comms.h (props changed) head/multimedia/zoneminder/files/patch-src_zm_event.cpp (props changed) head/multimedia/zoneminder/files/patch-src_zm_event.h (props changed) head/multimedia/zoneminder/files/patch-src_zm_ffmpeg_camera.cpp (props changed) head/multimedia/zoneminder/files/patch-src_zm_local_camera.h (props changed) head/multimedia/zoneminder/files/patch-src_zm_logger.cpp (props changed) head/multimedia/zoneminder/files/patch-src_zm_monitor.cpp (props changed) head/multimedia/zoneminder/files/patch-src_zm_mpeg.cpp (props changed) head/multimedia/zoneminder/files/patch-src_zm_remote_camera.h (props changed) head/multimedia/zoneminder/files/patch-src_zm_sdp.cpp (props changed) head/multimedia/zoneminder/files/patch-src_zm_signal.h (props changed) head/multimedia/zoneminder/files/patch-src_zm_stream.cpp (props changed) head/multimedia/zoneminder/files/patch-src_zmc.cpp (props changed) head/multimedia/zoneminder/files/patch-src_zmu.cpp (props changed) head/net-im/ari-yahoo/files/patch-configure.in (props changed) head/net-im/centericq/files/patch-configure (props changed) head/net-im/centericq/files/patch-kkconsui-0.1_src_texteditor.cc (props changed) head/net-im/centericq/files/patch-kkstrtext-0.1_kkstrtext.cc (props changed) head/net-im/centericq/files/patch-kkstrtext-0.1_kkstrtext.h (props changed) head/net-im/centericq/files/patch-libicq2000-0.1_libicq2000_sigslot.h (props changed) head/net-im/centericq/files/patch-libicq2000-0.1_src_DirectClient.cpp (props changed) head/net-im/centericq/files/patch-msn-connection.cpp (props changed) head/net-im/centericq/files/patch-msn-filetransfer.cpp (props changed) head/net-im/centericq/files/patch-msnhook.cc (props changed) head/net-im/centericq/files/patch-src_icqdialogs.cc (props changed) head/net-im/centericq/files/patch-src_icqface.cc (props changed) head/net-im/centericq/files/patch-src_impgp.cc (props changed) head/net-im/ejabberd/files/patch-src-Makefile.in (props changed) head/net-im/ejabberd/files/patch-src_ejabberdctl.template (props changed) head/net-im/empathy/files/patch-libempathy_emapth-tp-file.c (props changed) head/net-im/farsight2/files/patch-gst-libs_gst_farsight_fs-interfaces.c (props changed) head/net-im/farsight2/files/patch-transmitters_multicast_fs-multicast-transmitter.c (props changed) head/net-im/farsight2/files/patch-transmitters_rawudp_fs-rawudp-transmitter.c (props changed) head/net-im/farsight2/files/patch-transmitters_rawudp_fs-rawudp-transmitter.h (props changed) head/net-im/gajim/files/patch-src-Makefile.in (props changed) head/net-im/gajim/files/patch-src-plugins_plugins_i18n.py (props changed) head/net-im/gale/files/patch-libgale_wcwidth (props changed) head/net-im/gtkyahoo/files/patch-gtkyahoo.c (props changed) head/net-im/gtkyahoo/files/patch-libyahoo_libyahoo.c (props changed) head/net-im/gtkyahoo/files/patch-rcfile.y (props changed) head/net-im/gyach/files/patch-configure (props changed) head/net-im/hotot/files/patch-hotot_hotot.py (props changed) head/net-im/icb/files/patch-icb::icb.h (props changed) head/net-im/icb/files/patch-icb::strccmp.c (props changed) head/net-im/imspector/files/patch-icqprotocolplugin.cpp (props changed) head/net-im/imspector/files/patch-imspector.conf (props changed) head/net-im/imspector/files/patch-main.cpp (props changed) head/net-im/iserverd/files/patch-configure (props changed) head/net-im/iserverd/files/patch-database-contacvs_db.cpp (props changed) head/net-im/iserverd/files/patch-isdcore-sockets-kq.cpp (props changed) head/net-im/iserverd/files/patch-script__Makefile.in (props changed) head/net-im/iserverd/files/patch-system-signals.cpp (props changed) head/net-im/jabber-pyaim/files/patch-src_main.py (props changed) head/net-im/jabber/files/patch-Makefile.in (props changed) head/net-im/jabber/files/patch-configure (props changed) head/net-im/jabber/files/patch-jabberd-Makefile.in (props changed) head/net-im/jabber/files/patch-jabberd-lib-socket.cc (props changed) head/net-im/jabber/files/patch-jabberd-mio.cc (props changed) head/net-im/jabber/files/patch-jabberd-mio_tls.cc (props changed) head/net-im/jabber/files/patch-man-Makefile.in (props changed) head/net-im/jabber/files/patch-man-jabberd.8.in (props changed) head/net-im/jabber/files/patch-xdb_sql-xdb_sql.cc (props changed) head/net-im/jarl/files/patch-jarl (props changed) head/net-im/jarl/files/patch-lib_login_tk.pl (props changed) head/net-im/jarl/files/patch-lib_main_tk.pl (props changed) head/net-im/kmess-kde4/files/patch-src--model--contactlistmodelitem.cpp (props changed) head/net-im/libjingle/files/patch-talk__base__base64.h (props changed) head/net-im/libjingle/files/patch-talk__base__criticalsection.h (props changed) head/net-im/libjingle/files/patch-talk__base__httpcommon.cc (props changed) head/net-im/libjingle/files/patch-talk__base__physicalsocketserver.cc (props changed) head/net-im/libjingle/files/patch-talk__base__stringencode.cc (props changed) head/net-im/libjingle/files/patch-talk__base__thread.cc (props changed) head/net-im/libjingle/files/patch-talk__base__unixfilesystem.cc (props changed) head/net-im/libjingle/files/patch-talk__p2p__base__sessionmanager.h (props changed) head/net-im/libjingle/files/patch-talk__xmpp_xmppclient.h (props changed) head/net-im/libpurple/files/patch-libpurple-media-backend-fs2.h (props changed) head/net-im/libyahoo2/files/patch-src_autoresponder.c (props changed) head/net-im/libyahoo2/files/patch-src_sampleclient.c (props changed) head/net-im/licq-osd/files/patch-licq_osd.conf.h (props changed) head/net-im/licq/files/patch-main.cpp (props changed) head/net-im/linpopup/files/extra-patch-samba3 (props changed) head/net-im/linpopup/files/patch-aa (props changed) head/net-im/linpopup/files/patch-ab (props changed) head/net-im/linpopup/files/patch-ac (props changed) head/net-im/linpopup/files/patch-io.c (props changed) head/net-im/loudmouth/files/patch-configure (props changed) head/net-im/loudmouth/files/patch-loudmouth_Makefile.in (props changed) head/net-im/loudmouth/files/patch-loudmouth_lm-ssl-gnutls.c (props changed) head/net-im/mbpurple/files/patch-microblog__mb_net.c (props changed) head/net-im/meanwhile/files/patch-libtool22 (props changed) head/net-im/mu-conference/files/patch-svn-67-77 (props changed) head/net-im/papyon/files/patch-setup.py (props changed) head/net-im/pebrot/files/patch-MSN.py (props changed) head/net-im/pidgin-audacious-remote/files/patch-pixmaps-Makefile.in (props changed) head/net-im/pidgin-libnotify/files/patch-src_pidgin-libnotify.c (props changed) head/net-im/pidgin-privacy-please/files/patch-po-Makefile.in.in (props changed) head/net-im/pidgin-rhythmbox/files/patch-src__pidgin-rhythmbox.c (props changed) head/net-im/pidgin-sipe/files/patch-src__purple__purple-dnsquery.c (props changed) head/net-im/prosody/files/patch-Makefile (props changed) head/net-im/prosody/files/patch-certs-Makefile (props changed) head/net-im/prosody/files/patch-configure (props changed) head/net-im/prosody/files/patch-prosody.cfg.lua.dist (props changed) head/net-im/psi/files/patch-iris__src__libbase.pri (props changed) head/net-im/psimedia/files/patch-psimedia.pro (props changed) head/net-im/py-xmpppy/files/patch-setup.py (props changed) head/net-im/py-xmpppy/files/patch-xmpp-auth.py (props changed) head/net-im/py-xmpppy/files/patch-xmpp-transports.py (props changed) head/net-im/qxmpp-leechcraft/files/patch-src-QXmppSrvInfo.h (props changed) head/net-im/qxmpp/files/patch-qxmpp.pri (props changed) head/net-im/qxmpp/files/patch-qxmpp.pro (props changed) head/net-im/qxmpp/files/patch-src-QXmppSrvInfo.h (props changed) head/net-im/qxmpp/files/patch-src-src.pro (props changed) head/net-im/telepathy-butterfly/files/patch-butterfly_channel_im.py (props changed) head/net-im/telepathy-butterfly/files/patch-telepathy-butterfly (props changed) head/net-im/telepathy-gabble/files/patch-Makefile.in (props changed) head/net-im/telepathy-gabble/files/patch-lib_gibber_gibber-unix-transport.c (props changed) head/net-im/telepathy-logger/files/patch-configure (props changed) head/net-im/telepathy-salut/files/patch-lib_gibber_gibber-bytestream-oob.h (props changed) head/net-im/telepathy-salut/files/patch-lib_gibber_gibber-muc-connection.c (props changed) head/net-im/telepathy-salut/files/patch-lib_gibber_gibber-tcp-transport.c (props changed) head/net-im/telepathy-salut/files/patch-lib_gibber_gibber-unix-transport.c (props changed) head/net-im/tkabber-devel/files/patch-tkabber.tcl (props changed) head/net-im/tkabbur/files/patch-Makefile (props changed) head/net-im/turpial/files/extra-patch-argparse-turpial_main.py (props changed) head/net-im/turpial/files/extra-patch-optparse-turpial_main.py (props changed) head/net-im/turpial/files/patch-turpial_api_interfaces_protocol.py (props changed) head/net-im/turpial/files/patch-turpial_ui_gtk_about.py (props changed) head/net-im/turpial/files/patch-turpial_ui_gtk_statuslist.py (props changed) head/net-im/vqcc-gtk/files/patch-src__idle.c (props changed) head/net-im/ysm/files/patch-src-YSM_Charset.c (props changed) head/net-im/ysm/files/patch-src-YSM_Prompt.c (props changed) head/net-im/zephyr/files/patch-configure (props changed) head/net-mgmt/2ping/files/patch-Makefile (props changed) head/net-mgmt/aggregate/files/patch-Makefile.in (props changed) head/net-mgmt/aggregate/files/patch-aggregate.c (props changed) head/net-mgmt/ap-utils/files/patch-aa (props changed) head/net-mgmt/arpalert/files/patch-arpalert.c (props changed) head/net-mgmt/arpalert/files/patch-macname.h (props changed) head/net-mgmt/arpalert/files/patch-module_example__Makefile (props changed) head/net-mgmt/arpwatch/files/patch-ab (props changed) head/net-mgmt/arpwatch/files/patch-ae (props changed) head/net-mgmt/arpwatch/files/patch-ag (props changed) head/net-mgmt/arpwatch/files/patch-ah (props changed) head/net-mgmt/arpwatch/files/patch-ai (props changed) head/net-mgmt/arpwatch/files/patch-aj (props changed) head/net-mgmt/arpwatch/files/patch-ak (props changed) head/net-mgmt/arpwatch/files/patch-al (props changed) head/net-mgmt/arpwatch/files/patch-am (props changed) head/net-mgmt/aspathtree/files/patch-etc::ASpath-tree.config (props changed) head/net-mgmt/aspathtree/files/patch-lib::getbgptable.pl (props changed) head/net-mgmt/aspathtree/files/patch-lib_ASmain.pl (props changed) head/net-mgmt/aspathtree/files/patch-lib_bgp-tree.pl (props changed) head/net-mgmt/aspathtree/files/patch-lib_create-homepage.pl (props changed) head/net-mgmt/aspathtree/files/patch-lib_elaborate-aspaths.pl (props changed) head/net-mgmt/aspathtree/files/patch-lib_ipv6prefix.pl (props changed) head/net-mgmt/aspathtree/files/patch-lib_odd-routes.pl (props changed) head/net-mgmt/aspathtree/files/patch-lib_route-stability.pl (props changed) head/net-mgmt/aspathtree/files/patch-lib_utility.pl (props changed) head/net-mgmt/aspathtree/files/patch-readme.txt (props changed) head/net-mgmt/aspathtree/files/patch-update-rtree (props changed) head/net-mgmt/bandwidthd/files/patch-Makefile (props changed) head/net-mgmt/bgpq/files/patch-Makefile.in (props changed) head/net-mgmt/bigsister/files/patch-tools::bb_start.pl (props changed) head/net-mgmt/bsd-airtools/files/patch-dweputils_dwepcrack_weakksa.c (props changed) head/net-mgmt/cacti/files/patch-scripts-diskfree.pl (props changed) head/net-mgmt/cacti/files/patch-scripts-ping.pl (props changed) head/net-mgmt/cdpr/files/patch-aa (props changed) head/net-mgmt/cdpr/files/patch-conffile.c (props changed) head/net-mgmt/cflowd/files/patch-apps::cflowdmux::CflowdRawFlowClientList.hh (props changed) head/net-mgmt/cflowd/files/patch-classes::include::CflowdCisco.hh (props changed) head/net-mgmt/cflowd/files/patch-classes::include::CflowdCollectorMap.hh (props changed) head/net-mgmt/cflowd/files/patch-classes::include::CflowdFlowFilter.hh (props changed) head/net-mgmt/cflowd/files/patch-classes::include::CflowdFlowPortList.hh (props changed) head/net-mgmt/cflowd/files/patch-classes::include::CflowdNetMatrixKey.hh (props changed) head/net-mgmt/cflowd/files/patch-classes::include::CflowdRawFlowLogger.hh (props changed) head/net-mgmt/cflowd/files/patch-classes::include::CflowdVersion.hh (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdCisco.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdCiscoFlowEngine.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdCiscoMap.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdCollector.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdNextHopTable.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdPacketQueue.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdProtocolTable.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdRawFlow.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdRawFlowConvertor.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::CflowdTosTable.cc (props changed) head/net-mgmt/cflowd/files/patch-classes::src::FlowFilter.y (props changed) head/net-mgmt/cflowd/files/patch-classes::src::Signal.cc (props changed) head/net-mgmt/cflowd/files/patch-classes_include_CflowdAsMatrix.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_include_CflowdInterfaceMatrix.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_include_CflowdNextHopTable.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_include_CflowdPortMatrix.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_include_CflowdProtocolTable.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_include_CflowdRawFlow.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_include_CflowdTosTable.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_include_CflowdUint16Uint16Key.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_include_CflowdUint64TrafficCounter.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_include_Signal.hh (props changed) head/net-mgmt/cflowd/files/patch-classes_src_CflowdAsMatrix.cc (props changed) head/net-mgmt/cflowd/files/patch-classes_src_CflowdRawFlowLogger.cc (props changed) head/net-mgmt/cflowd/files/patch-snmp++-classes-include-snmp++_notifyqueue.h (props changed) head/net-mgmt/cflowd/files/patch-snmp++::classes::include::snmp++::oid.h (props changed) head/net-mgmt/chillispot/files/patch-src_chilli.c (props changed) head/net-mgmt/chillispot/files/patch-src_dhcp.c (props changed) head/net-mgmt/chillispot/files/patch-src_redir.c (props changed) head/net-mgmt/chillispot/files/patch-src_syserr.c (props changed) head/net-mgmt/choparp/files/patch-ab (props changed) head/net-mgmt/choparp/files/patch-choparp.8 (props changed) head/net-mgmt/choparp/files/patch-choparp.c (props changed) head/net-mgmt/cidr/files/patch-cidr.c (props changed) head/net-mgmt/clog/files/patch-clog.c (props changed) head/net-mgmt/cnagios/files/patch-Makefile.in (props changed) head/net-mgmt/collectd/files/patch-configure.in (props changed) head/net-mgmt/collectd/files/patch-src__collectd.h (props changed) head/net-mgmt/collectd/files/patch-src__dns.c (props changed) head/net-mgmt/confregdecode/files/patch-ab (props changed) head/net-mgmt/coovachilli/files/patch-conf_Makefile.in (props changed) head/net-mgmt/coovachilli/files/patch-conf_down.sh.in (props changed) head/net-mgmt/coovachilli/files/patch-conf_functions.in (props changed) head/net-mgmt/coovachilli/files/patch-conf_up.sh.in (props changed) head/net-mgmt/coovachilli/files/patch-coova-chilli.spec.in (props changed) head/net-mgmt/coovachilli/files/patch-src_chilli.c (props changed) head/net-mgmt/coovachilli/files/patch-src_dhcp.c (props changed) head/net-mgmt/coovachilli/files/patch-src_main-query.c (props changed) head/net-mgmt/coovachilli/files/patch-src_msgstat.c (props changed) head/net-mgmt/coovachilli/files/patch-src_redir.c (props changed) head/net-mgmt/coovachilli/files/patch-src_redir.h (props changed) head/net-mgmt/coovachilli/files/patch-src_system.h (props changed) head/net-mgmt/coovachilli/files/patch-src_tun.c (props changed) head/net-mgmt/coovachilli/files/patch-www_Makefile.in (props changed) head/net-mgmt/cowpatty/files/patch-Makefile (props changed) head/net-mgmt/cricket/files/patch-lib-Monitor.pm (props changed) head/net-mgmt/cricket/files/patch-lib-RRD-Format.pm (props changed) head/net-mgmt/docsis/files/patch-configure (props changed) head/net-mgmt/docsis/files/patch-docsis.c (props changed) head/net-mgmt/docsis/files/patch-docsis_decode.c (props changed) head/net-mgmt/docsis/files/patch-docsis_snmp.c (props changed) head/net-mgmt/docsis/files/patch-docsis_snmp.h (props changed) head/net-mgmt/docsis/files/patch-md5.h (props changed) head/net-mgmt/driftnet/files/patch-Makefile (props changed) head/net-mgmt/driftnet/files/patch-driftnet.c (props changed) head/net-mgmt/ehnt/files/patch-Makefile (props changed) head/net-mgmt/ehnt/files/patch-ProcessASN.pl (props changed) head/net-mgmt/ehnt/files/patch-config-h (props changed) head/net-mgmt/ehnt/files/patch-ehnt-lookup (props changed) head/net-mgmt/ehnt/files/patch-ehnt.h (props changed) head/net-mgmt/ehnt/files/patch-ehnt__client.c (props changed) head/net-mgmt/ehnt/files/patch-ehnt__display.c (props changed) head/net-mgmt/ehnt/files/patch-ehnt__main.c (props changed) head/net-mgmt/ehnt/files/patch-ehnt__processflow.c (props changed) head/net-mgmt/ehnt/files/patch-ehntserv.c (props changed) head/net-mgmt/etherape/files/patch-src_decode_proto.c (props changed) head/net-mgmt/etherape/files/patch-thread_resolve.c (props changed) head/net-mgmt/fetchconfig/files/patch-fetchconfig.pl (props changed) head/net-mgmt/flow-extract/files/patch-proto (props changed) head/net-mgmt/flow-tools-ng/files/patch-configs_Makefile.in (props changed) head/net-mgmt/flow-tools-ng/files/patch-lib_ftpaths.c (props changed) head/net-mgmt/flow-tools-ng/files/patch-lib_ftsym.c (props changed) head/net-mgmt/flow-tools-ng/files/patch-lib_support.c (props changed) head/net-mgmt/flow-tools-ng/files/patch-src_flow-fanout.c (props changed) head/net-mgmt/flow-tools/files/patch-configs_Makefile (props changed) head/net-mgmt/flow-tools/files/patch-configure (props changed) head/net-mgmt/flow-tools/files/patch-flow-header.c (props changed) head/net-mgmt/flow-tools/files/patch-ftpaths.h (props changed) head/net-mgmt/flow-tools/files/patch-lib-ftfile.c (props changed) head/net-mgmt/flow-tools/files/patch-lib_Makefile.in (props changed) head/net-mgmt/flow-tools/files/patch-lib_ftchash.c (props changed) head/net-mgmt/flow-tools/files/patch-lib_ftio.c (props changed) head/net-mgmt/flow-tools/files/patch-lib_ftlib.h (props changed) head/net-mgmt/flow-tools/files/patch-lib_ftsym.c (props changed) head/net-mgmt/flow-tools/files/patch-lib_fttlv.c (props changed) head/net-mgmt/flow-tools/files/patch-lib_support.c (props changed) head/net-mgmt/flow-tools/files/patch-src_Makefile.in (props changed) head/net-mgmt/flow-tools/files/patch-src_flow-export.c (props changed) head/net-mgmt/flow-tools/files/patch-src_flow-fanout.c (props changed) head/net-mgmt/flowd/files/patch-Makefile.in (props changed) head/net-mgmt/flowd/files/patch-flowd.h (props changed) head/net-mgmt/flowviewer/files/patch-config (props changed) head/net-mgmt/fruity/files/patch-includes-config.inc.in (props changed) head/net-mgmt/hawk/files/patch-daemon__hawk (props changed) head/net-mgmt/hawk/files/patch-php__hawk.conf.inc (props changed) head/net-mgmt/hawk/files/patch-php__hawk.php (props changed) head/net-mgmt/icinga/files/patch-include-locations.h.in (props changed) head/net-mgmt/icmpmonitor/files/patch-aa (props changed) head/net-mgmt/ifgraph/files/patch-find-if.pl (props changed) head/net-mgmt/ifgraph/files/patch-ifgraph.conf (props changed) head/net-mgmt/ifgraph/files/patch-ifgraph.pl (props changed) head/net-mgmt/ifgraph/files/patch-makegraph.pl (props changed) head/net-mgmt/iftop/files/patch-cfgfile.c (props changed) head/net-mgmt/ipaudit/files/patch-Makefile (props changed) head/net-mgmt/ipaudit/files/patch-src::Makefile (props changed) head/net-mgmt/ipaudit/files/patch-src::hash.h (props changed) head/net-mgmt/ipcalc/files/patch-ipcalc (props changed) head/net-mgmt/ipplan/files/patch-config.php (props changed) head/net-mgmt/ipv6calc/files/patch-man__Makefile.in (props changed) head/net-mgmt/ipv6mon/files/patch-Makefile (props changed) head/net-mgmt/ipv6mon/files/patch-ipv6mon.c (props changed) head/net-mgmt/jnettop/files/patch-jresolv.c (props changed) head/net-mgmt/kismet/files/patch-alertracker.cc (props changed) head/net-mgmt/lanmap/files/patch-Makefile.in (props changed) head/net-mgmt/lanmap/files/patch-src__Makefile.in (props changed) head/net-mgmt/lanmap/files/patch-src__facts.c (props changed) head/net-mgmt/libsmi/files/patch-smicache.in (props changed) head/net-mgmt/mk-livestatus/files/patch-src__Makefile.in (props changed) head/net-mgmt/mrtg-ping-probe/files/patch-aa (props changed) head/net-mgmt/mrtg-ping-probe/files/patch-ab (props changed) head/net-mgmt/mtrace/files/patch-Makefile (props changed) head/net-mgmt/mtrace/files/patch-mtrace.c (props changed) head/net-mgmt/nagcon/files/patch-br.cpp (props changed) head/net-mgmt/nagcon/files/patch-br.h (props changed) head/net-mgmt/nagcon/files/patch-nc.cpp (props changed) head/net-mgmt/nagcon/files/patch-utils.cpp (props changed) head/net-mgmt/nagios-check_ports/files/patch-check_ports (props changed) head/net-mgmt/nagios-check_smartmon/files/patch-check_smartmon (props changed) head/net-mgmt/nagios-check_tftp/files/patch-check_tftp (props changed) head/net-mgmt/nagios-devel/files/patch-Makefile.in (props changed) head/net-mgmt/nagios-devel/files/patch-base__Makefile.in (props changed) head/net-mgmt/nagios-devel/files/patch-cgi__Makefile.in (props changed) head/net-mgmt/nagios-devel/files/patch-configure.in (props changed) head/net-mgmt/nagios-devel/files/patch-contrib__Makefile.in (props changed) head/net-mgmt/nagios-devel/files/patch-html__Makefile.in (props changed) head/net-mgmt/nagios-devel/files/patch-html__docs__configcgi.html (props changed) head/net-mgmt/nagios-devel/files/patch-include__locations.h.in (props changed) head/net-mgmt/nagios-devel/files/patch-sample-config__cgi.cfg.in (props changed) head/net-mgmt/nagios-devel/files/patch-sample-config__nagios.cfg.in (props changed) head/net-mgmt/nagios-devel/files/patch-sample-config__template-object__localhost.cfg.in (props changed) head/net-mgmt/nagios-devel/files/patch-sample-config__template-object__templates.cfg.in (props changed) head/net-mgmt/nagios-geom/files/patch-add-perfdata (props changed) head/net-mgmt/nagios-geom/files/patch-fix-class-logics (props changed) head/net-mgmt/nagios-pf-plugin/files/patch-check_pf.c (props changed) head/net-mgmt/nagios-plugins/files/patch-configure.in (props changed) head/net-mgmt/nagios-plugins/files/patch-gl__m4__extensions.m4 (props changed) head/net-mgmt/nagios-plugins/files/patch-plugins-scripts__check_ircd.pl (props changed) head/net-mgmt/nagios-plugins/files/patch-plugins-scripts__check_ntp.pl (props changed) head/net-mgmt/nagios-plugins/files/patch-plugins-scripts__subst.in (props changed) head/net-mgmt/nagios-plugins/files/patch-plugins-scripts__utils.sh.in (props changed) head/net-mgmt/nagios-plugins/files/patch-plugins__Makefile.am (props changed) head/net-mgmt/nagios-plugins/files/patch-plugins__check_pgsql.c (props changed) head/net-mgmt/nagios-portaudit/files/patch-check_portaudit-add_perfdata (props changed) head/net-mgmt/nagios/files/patch-Makefile.in (props changed) head/net-mgmt/nagios/files/patch-base__Makefile.in (props changed) head/net-mgmt/nagios/files/patch-cgi__Makefile.in (props changed) head/net-mgmt/nagios/files/patch-configure.in (props changed) head/net-mgmt/nagios/files/patch-contrib__Makefile.in (props changed) head/net-mgmt/nagios/files/patch-html__Makefile.in (props changed) head/net-mgmt/nagios/files/patch-html__main.php (props changed) head/net-mgmt/nagios/files/patch-include__locations.h.in (props changed) head/net-mgmt/nagios/files/patch-sample-config__cgi.cfg.in (props changed) head/net-mgmt/nagios/files/patch-sample-config__nagios.cfg.in (props changed) head/net-mgmt/nagios/files/patch-sample-config__template-object__localhost.cfg.in (props changed) head/net-mgmt/nagios/files/patch-sample-config__template-object__templates.cfg.in (props changed) head/net-mgmt/nagiosgraph/files/patch-etc__nagiosgraph.conf.in (props changed) head/net-mgmt/nagiostat/files/patch-README (props changed) head/net-mgmt/nagiostat/files/patch-nagiostat (props changed) head/net-mgmt/nagiostat/files/patch-nagiostat.conf (props changed) head/net-mgmt/nagircbot/files/patch-Makefile (props changed) head/net-mgmt/nagircbot/files/patch-anna.cpp (props changed) head/net-mgmt/nagircbot/files/patch-anna.h (props changed) head/net-mgmt/nagircbot/files/patch-br.cpp (props changed) head/net-mgmt/nagircbot/files/patch-br.h (props changed) head/net-mgmt/nagircbot/files/patch-error.c (props changed) head/net-mgmt/nagircbot/files/patch-utils.cpp (props changed) head/net-mgmt/nagircbot/files/patch-utils.h (props changed) head/net-mgmt/nagtail/files/patch-br.cpp (props changed) head/net-mgmt/nagtail/files/patch-br.h (props changed) head/net-mgmt/nagtail/files/patch-main.cpp (props changed) head/net-mgmt/nagtail/files/patch-utils.cpp (props changed) head/net-mgmt/nbtscan/files/patch-statusq.h (props changed) head/net-mgmt/ndoutils/files/patch-config__misccommands.cfg (props changed) head/net-mgmt/ndoutils/files/patch-config__nagios.cfg (props changed) head/net-mgmt/ndoutils/files/patch-config__ndo2db.cfg (props changed) head/net-mgmt/ndoutils/files/patch-config__ndomod.cfg (props changed) head/net-mgmt/ndpmon/files/patch-config__ndpmon.xml (props changed) head/net-mgmt/ndpmon/files/patch-create__html__table.py (props changed) head/net-mgmt/ndpmon/files/patch-demopipeprogram.pl.sample (props changed) head/net-mgmt/ndpmon/files/patch-ndpmon.8 (props changed) head/net-mgmt/ndpmon/files/patch-neighbor__list.xml.in (props changed) head/net-mgmt/ndpmon/files/patch-parser.c (props changed) head/net-mgmt/ndpmon/files/patch-routers.c (props changed) head/net-mgmt/nedi/files/patch-inc-libmisc.pl (props changed) head/net-mgmt/nedi/files/patch-nedi.pl (props changed) head/net-mgmt/nefu/files/patch-main.c (props changed) head/net-mgmt/nefu/files/patch-publish.c (props changed) head/net-mgmt/net-snmp/files/extra-patch-local:Makefile.in (props changed) head/net-mgmt/net-snmp/files/patch-snmpusm.c (props changed) head/net-mgmt/net-snmp/files/patch-tcpTable.c (props changed) head/net-mgmt/net-snmp/files/patch-transform_oids.h (props changed) head/net-mgmt/netams-front/files/patch-config.php.simple (props changed) head/net-mgmt/netdisco/files/patch-netdisco (props changed) head/net-mgmt/netdisco/files/patch-netdisco.conf (props changed) head/net-mgmt/netdisco/files/patch-netdisco.crontab (props changed) head/net-mgmt/netdisco/files/patch-netdisco_apache.conf (props changed) head/net-mgmt/netdisco/files/patch-netdisco_apache_dir.conf (props changed) head/net-mgmt/netdisco/files/patch-sql__pg (props changed) head/net-mgmt/netdot/files/patch-Default.conf (props changed) head/net-mgmt/netdot/files/patch-etc-Makefile (props changed) head/net-mgmt/netdot/files/patch-etc-netdot_apache2_local.conf (props changed) head/net-mgmt/netleak/files/patch-Makefile (props changed) head/net-mgmt/netmask/files/patch-aa (props changed) head/net-mgmt/netmask/files/patch-ab (props changed) head/net-mgmt/netmond/files/patch-AA (props changed) head/net-mgmt/netmond/files/patch-Makefile.in (props changed) head/net-mgmt/netmond/files/patch-dns.c (props changed) head/net-mgmt/netmond/files/patch-event.c (props changed) head/net-mgmt/netmond/files/patch-netmon.h (props changed) head/net-mgmt/netmond/files/patch-netmond.c (props changed) head/net-mgmt/netmond/files/patch-netstate.c (props changed) head/net-mgmt/netmond/files/patch-parseconf.y (props changed) head/net-mgmt/netmond/files/patch-ping.c (props changed) head/net-mgmt/netmond/files/patch-radius.c (props changed) head/net-mgmt/netmond/files/patch-reconfig.c (props changed) head/net-mgmt/netmond/files/patch-regex.c (props changed) head/net-mgmt/netmond/files/patch-regex.h (props changed) head/net-mgmt/netmond/files/patch-router.c (props changed) head/net-mgmt/netmond/files/patch-scanconf.l (props changed) head/net-mgmt/netmond/files/patch-session.c (props changed) head/net-mgmt/netmond/files/patch-snmp.c (props changed) head/net-mgmt/netmond/files/patch-tacacs.c (props changed) head/net-mgmt/netmond/files/patch-tcp.c (props changed) head/net-mgmt/netmond/files/patch-trap.c (props changed) head/net-mgmt/netmond/files/patch-udp.c (props changed) head/net-mgmt/netmond/files/patch-util.c (props changed) head/net-mgmt/netmond/files/patch-variables.c (props changed) head/net-mgmt/netwag/files/patch-config.dat (props changed) head/net-mgmt/netwox/files/patch-config.dat (props changed) head/net-mgmt/nfsen/files/patch-etc_nfsen-dist.conf (props changed) head/net-mgmt/ng_ipacct/files/patch-ipacctctl (props changed) head/net-mgmt/ng_ipacct/files/patch-ng_ipacct.c (props changed) head/net-mgmt/ng_ipacct/files/patch-ng_ipacct_hash.h (props changed) head/net-mgmt/nitpicker/files/patch-aa (props changed) head/net-mgmt/nitpicker/files/patch-ab (props changed) head/net-mgmt/nitpicker/files/patch-ac (props changed) head/net-mgmt/nitpicker/files/patch-ad (props changed) head/net-mgmt/nitpicker/files/patch-ae (props changed) head/net-mgmt/nocol/files/patch-aa (props changed) head/net-mgmt/nocol/files/patch-ab (props changed) head/net-mgmt/nrpe/files/patch-sample-config-nrpe.cfg.in (props changed) head/net-mgmt/observium/files/patch-html__pages__addhost.inc.php (props changed) head/net-mgmt/ocsinventory-agent/files/patch-Makefile.PL (props changed) head/net-mgmt/ourmon/files/patch-configure.pl (props changed) head/net-mgmt/p0f/files/patch-build.sh (props changed) head/net-mgmt/p0f/files/patch-process.c (props changed) head/net-mgmt/p5-Cflow/files/patch-Cflow.xs (props changed) head/net-mgmt/p5-FusionInventory-Agent/files/patch-add_jails_support (props changed) head/net-mgmt/p5-FusionInventory-Agent/files/patch-fix_install_paths (props changed) head/net-mgmt/p5-FusionInventory-Agent/files/patch-more_raid_support (props changed) head/net-mgmt/p5-Nagios-Plugin-LDAP/files/patch-bind-master-server.patch (props changed) head/net-mgmt/p5-Nagios-Plugin-LDAP/files/patch-correct-csn-compare-multimaster.patch (props changed) head/net-mgmt/p5-Nagios-Plugins-Memcached/files/patch-Makefile.PL (props changed) head/net-mgmt/p5-Net-ILO/files/patch-Makefile.PL (props changed) head/net-mgmt/p5-SNMP-Util/files/patch-Makefile.PL (props changed) head/net-mgmt/p5-SNMP_Session/files/patch-SNMP_Session.pm (props changed) head/net-mgmt/pads/files/patch-src-util.c (props changed) head/net-mgmt/pancho/files/patch-MANIFEST (props changed) head/net-mgmt/pancho/files/patch-Makefile.PL (props changed) head/net-mgmt/pandorafms_agent/files/patch-pandora_agent_installer (props changed) head/net-mgmt/pandorafms_console/files/patch-pandora_console_install (props changed) head/net-mgmt/pandorafms_server/files/patch-pandora_server_installer (props changed) head/net-mgmt/phpweathermap/files/patch-editor.php (props changed) head/net-mgmt/phpweathermap/files/patch-weathermap (props changed) head/net-mgmt/pnp/files/extra-patch-disable-pdf (props changed) head/net-mgmt/pnp/files/patch-lib-Makefile.in (props changed) head/net-mgmt/pnp/files/patch-sample-config-Makefile.in (props changed) head/net-mgmt/pnp/files/patch-scripts-Makefile.in (props changed) head/net-mgmt/pnp/files/patch-share-Makefile.in (props changed) head/net-mgmt/pnp/files/patch-src-Makefile.in (props changed) head/net-mgmt/portmon/files/patch-extras::portmon.8 (props changed) head/net-mgmt/py-yapsnmp/files/patch-configure (props changed) head/net-mgmt/py-yapsnmp/files/patch-src-Makefile.in (props changed) head/net-mgmt/py-yapsnmp/files/patch-src-net-snmp.i (props changed) head/net-mgmt/py-yapsnmp/files/patch-src-snmp_api.h-patch (props changed) head/net-mgmt/ramond/files/patch-ramond.conf.example (props changed) head/net-mgmt/ramond/files/patch-src_main.c (props changed) head/net-mgmt/rancid-devel/files/patch-etc::Makefile.am (props changed) head/net-mgmt/rancid-devel/files/patch-etc::Makefile.in (props changed) head/net-mgmt/rancid/files/patch-bin__control_rancid.in (props changed) head/net-mgmt/rancid/files/patch-etc__Makefile.am (props changed) head/net-mgmt/rancid/files/patch-etc__Makefile.in (props changed) head/net-mgmt/rate/files/patch-rate.c (props changed) head/net-mgmt/routers2-extensions/files/patch-ifrouter.cgi (props changed) head/net-mgmt/routers2-extensions/files/patch-ifstatus.cgi (props changed) head/net-mgmt/routers2-extensions/files/patch-ifswitch.cgi (props changed) head/net-mgmt/routers2-extensions/files/patch-pdfreport.cgi (props changed) head/net-mgmt/routers2-extensions/files/patch-routingtable.cgi (props changed) head/net-mgmt/routers2-extensions/files/patch-showcfg.cgi (props changed) head/net-mgmt/routers2-extensions/files/patch-tonagios.cgi (props changed) head/net-mgmt/routers2-extensions/files/patch-trend.cgi (props changed) head/net-mgmt/routers2-extras/files/patch-95.pl (props changed) head/net-mgmt/routers2-extras/files/patch-buildwan.pl (props changed) head/net-mgmt/routers2-extras/files/patch-cfgmaker_host.pl (props changed) head/net-mgmt/routers2/files/patch-routers2.cgi.pl (props changed) head/net-mgmt/routers2/files/patch-routers2.conf (props changed) head/net-mgmt/rrdbot/files/patch-parse.c (props changed) head/net-mgmt/scli/files/patch-ab (props changed) head/net-mgmt/scli/files/patch-ac (props changed) head/net-mgmt/sdig/files/patch-sdig.conf (props changed) head/net-mgmt/sdig/files/patch-sdig.conf.5 (props changed) head/net-mgmt/sdig/files/patch-src-output.c (props changed) head/net-mgmt/send/files/patch-sendd-os-Makefile (props changed) head/net-mgmt/sendip/files/patch-Makefile (props changed) head/net-mgmt/sendip/files/patch-gnugetopt.c (props changed) head/net-mgmt/sendip/files/patch-ipv4.c (props changed) head/net-mgmt/sendip/files/patch-tcp.c (props changed) head/net-mgmt/sing/files/patch-Makefile.in (props changed) head/net-mgmt/sing/files/patch-configure (props changed) head/net-mgmt/smokeping/files/patch-bin-smokeping (props changed) head/net-mgmt/smokeping/files/patch-bin-smokeping_cgi (props changed) head/net-mgmt/smokeping/files/patch-bin-tSmoke (props changed) head/net-mgmt/smokeping/files/patch-doc__Makefile.in (props changed) head/net-mgmt/smokeping/files/patch-etc__config.dist.in (props changed) head/net-mgmt/smokeping/files/patch-lib__Makefile.in (props changed) head/net-mgmt/snmp++/files/patch-src-common.mk (props changed) head/net-mgmt/softflowd/files/patch-softflowd.c (props changed) head/net-mgmt/tcpreplay/files/patch-src__tree.c (props changed) head/net-mgmt/torrus/files/patch-configs_Makefile.in (props changed) head/net-mgmt/torrus/files/patch-perllib_Makefile.in (props changed) head/net-mgmt/torrus/files/patch-xmlconfig_Makefile.in (props changed) head/net-mgmt/wide-dhcp/files/patch-ac (props changed) head/net-mgmt/wide-dhcp/files/patch-as (props changed) head/net-mgmt/wide-dhcp/files/patch-aw (props changed) head/net-mgmt/wide-dhcp/files/patch-az (props changed) head/net-mgmt/wide-dhcp/files/patch-ba (props changed) head/net-mgmt/wide-dhcp/files/patch-database.c (props changed) head/net-mgmt/wmi-client/files/patch-GNUmakefile (props changed) head/net-mgmt/xymon-client/files/patch-freebsd-meminfo.c (props changed) head/net-mgmt/xymon-client/files/patch-xymonclient-freebsd.sh (props changed) head/net-mgmt/xymon-server/files/patch-upgrade430.sh (props changed) head/net-mgmt/xymon-server/files/patch-xymond-Makefile (props changed) head/net-mgmt/yabm/files/patch-Makefile (props changed) head/net-mgmt/yabm/files/patch-mylibpng.c (props changed) head/net-mgmt/zabbix2-server/files/patch-src_shutdown.sh (props changed) head/net-mgmt/zabbix2-server/files/patch-src_startup.sh (props changed) head/net-mgmt/zabbix22-server/files/patch-src_shutdown.sh (props changed) head/net-mgmt/zabbix22-server/files/patch-src_startup.sh (props changed) head/net-mgmt/zenoss/files/patch-GNUmakefile (props changed) head/net-mgmt/zenoss/files/patch-ZenossInfo.py (props changed) head/net-mgmt/zenoss/files/patch-build-functions.sh (props changed) head/net-mgmt/zenoss/files/patch-build.sh (props changed) head/net-mgmt/zenoss/files/patch-buildjs.sh (props changed) head/net-mgmt/zenoss/files/patch-init.sh (props changed) head/net-mgmt/zenoss/files/patch-rrddeps.sh (props changed) head/net-p2p/azureus2/files/patch-TransferTypes (props changed) head/net-p2p/azureus2/files/patch-org__gudy__azureus2__platform__macosx__access__jnilib__OSXAccess.java (props changed) head/net-p2p/bitmessage/files/patch-shared.py (props changed) head/net-p2p/bittyrant/files/patch-build.xml (props changed) head/net-p2p/bittyrant/files/patch-org__gudy__azureus2__platform__macosx__access__jnilib__OSXAccess.java (props changed) head/net-p2p/bittyrant/files/patch-org__gudy__azureus2__ui__swt__test__PrintTransferTypes.java (props changed) head/net-p2p/bnbt/files/patch-client.cpp (props changed) head/net-p2p/bnbt/files/patch-config.cpp (props changed) head/net-p2p/bnbt/files/patch-server.cpp (props changed) head/net-p2p/bnbt/files/patch-sha1.cpp (props changed) head/net-p2p/bnbt/files/patch-sha1.h (props changed) head/net-p2p/cdonkey/files/patch-64bit (props changed) head/net-p2p/cdonkey/files/patch-Makefile.in (props changed) head/net-p2p/cdonkey/files/patch-cSocket.cpp (props changed) head/net-p2p/cdonkey/files/patch-cZone.cpp (props changed) head/net-p2p/cdonkey/files/patch-cygwin.h (props changed) head/net-p2p/cdonkey/files/patch-donkey.cpp (props changed) head/net-p2p/ctorrent/files/patch-ctorrent.cpp (props changed) head/net-p2p/ctorrent/files/patch-cve-2009-1759 (props changed) head/net-p2p/dclib/files/patch-dclib-ccasefolder.cpp (props changed) head/net-p2p/dclib/files/patch-dclib-core_ciconv.cpp (props changed) head/net-p2p/deluge/files/patch-setup.py (props changed) head/net-p2p/digitalcoin/files/patch-src__net.cpp (props changed) head/net-p2p/digitalcoin/files/patch-src__qt__qtipcserver.cpp (props changed) head/net-p2p/digitalcoin/files/patch-src__serialize.h (props changed) head/net-p2p/ed2k/files/patch-ed2k.c (props changed) head/net-p2p/edonkey-tool-hash/files/patch-processfile.c (props changed) head/net-p2p/eiskaltdcpp-cli/files/patch-eiskaltdcpp-cli__cli.pl (props changed) head/net-p2p/eiskaltdcpp-cli/files/patch-eiskaltdcpp-cli__eiskaltdcpp-cli.1 (props changed) head/net-p2p/eiskaltdcpp-daemon/files/patch-CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-daemon/files/patch-cmake__CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-daemon/files/patch-nasdc__CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-gtk/files/patch-CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-gtk/files/patch-cmake__CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-gtk/files/patch-eiskaltdcpp-gtk__CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-lib/files/patch-CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-lib/files/patch-dcpp-Atomic.h (props changed) head/net-p2p/eiskaltdcpp-lib/files/patch-dcpp__CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-qt/files/patch-CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-qt/files/patch-cmake__CMakeLists.txt (props changed) head/net-p2p/eiskaltdcpp-qt/files/patch-eiskaltdcpp-qt__CMakeLists.txt (props changed) head/net-p2p/gnewtellium/files/patch-src::config.c (props changed) head/net-p2p/gnunet-gtk/files/patch-pixmaps__icon-theme-installer (props changed) head/net-p2p/gnunet/files/patch-src__mysql__Makefile.in (props changed) head/net-p2p/gtkhx/files/patch-src__files.c (props changed) head/net-p2p/gtkhx/files/patch-src__hx.h (props changed) head/net-p2p/i2p/files/patch-installer__resources__clients.config (props changed) head/net-p2p/ktorrent/files/patch-CMakeLists.txt (props changed) head/net-p2p/libbt/files/patch-include::util.h (props changed) head/net-p2p/libbt/files/patch-src::peer.c (props changed) head/net-p2p/libbt/files/patch-src_btlist.c (props changed) head/net-p2p/libtorrent-devel/files/patch-ltmain.sh (props changed) head/net-p2p/libtorrent-devel/files/patch-src_data_memory__chunk.cc (props changed) head/net-p2p/libtorrent-devel/files/patch-src_torrent_poll__kqueue.cc (props changed) head/net-p2p/libtorrent/files/patch-ltmain.sh (props changed) head/net-p2p/libtorrent/files/patch-src_data_memory__chunk.cc (props changed) head/net-p2p/libtorrent/files/patch-src_torrent_poll__kqueue.cc (props changed) head/net-p2p/lopster/files/patch-src-global.c (props changed) head/net-p2p/lopster/files/patch-src-log.c (props changed) head/net-p2p/lopster/files/patch-src-napster.c (props changed) head/net-p2p/microdc2/files/patch-ab (props changed) head/net-p2p/microdc2/files/patch-lib-Makefile.in (props changed) head/net-p2p/microdc2/files/patch-no-man (props changed) head/net-p2p/minder/files/patch-Makefile (props changed) head/net-p2p/minder/files/patch-MyTcpSocket.cpp (props changed) head/net-p2p/mldonkey/files/patch-Makefile (props changed) head/net-p2p/museekplus/files/patch-Mucipher_python_SConscript (props changed) head/net-p2p/museekplus/files/patch-Tools_SConscript (props changed) head/net-p2p/museekplus/files/patch-mucous_pymucous_SConscript (props changed) head/net-p2p/museekplus/files/patch-murmur_pymurmur_SConscript (props changed) head/net-p2p/museekplus/files/patch-museeq_SConscript (props changed) head/net-p2p/museekplus/files/patch-python-bindings_museek_SConscript (props changed) head/net-p2p/napshare/files/patch-aa (props changed) head/net-p2p/napshare/files/patch-ab (props changed) head/net-p2p/napshare/files/patch-src-config.c (props changed) head/net-p2p/py-fngrab/files/patch-fngrab.py (props changed) head/net-p2p/py-kenosis/files/patch-kenosis_setup.py (props changed) head/net-p2p/retroshare/files/patch-plugins-FeedReader-FeedReader.pro (props changed) head/net-p2p/rtorrent-devel/files/patch-src_thread_base.cc (props changed) head/net-p2p/teknap/files/patch-aa (props changed) head/net-p2p/teknap/files/patch-irchandler.c (props changed) head/net-p2p/teknap/files/patch-source-scott.c (props changed) head/net-p2p/teknap/files/patch-source_share.c (props changed) head/net-p2p/teknap/files/patch-source_term_c (props changed) head/net-p2p/teknap/files/patch-source_timer.c (props changed) head/net-p2p/teknap/files/patch-status.c (props changed) head/net-p2p/torrentsniff/files/patch-BitTorrent-BDecode.pm (props changed) head/net-p2p/torrentsniff/files/patch-torrentsniff (props changed) head/net-p2p/transmission-cli/files/patch-fix_without_ipv6 (props changed) head/net-p2p/tribler/files/patch-swarmplyer.py (props changed) head/net-p2p/tribler/files/patch-tribler (props changed) head/net-p2p/uhub/files/patch-GNUmakefile (props changed) head/net-p2p/verlihub/files/patch-prefix-conf-dir (props changed) head/net-p2p/verlihub/files/patch-thublink (props changed) head/net-p2p/vuze/files/patch-koi8u (props changed) head/net-p2p/zetacoin/files/patch-src-makefile_unix (props changed) head/net-p2p/zetacoin/files/patch-src__leveldb__build_detect_platform (props changed) head/net-p2p/zetacoin/files/patch-src__rpcdump.cpp (props changed) head/net-p2p/zetacoin/files/patch-src__serialize.h (props changed) head/net-p2p/zetacoin/files/patch-zetacoin-qt_pro (props changed) head/net/3proxy/files/patch-Makefile.unix (props changed) head/net/3proxy/files/patch-cfg-3proxy.cfg.sample (props changed) head/net/6tunnel/files/patch-configure.in (props changed) head/net/DarwinStreamingServer/files/patch-Buildit (props changed) head/net/DarwinStreamingServer/files/patch-DSS_MakeRoot (props changed) head/net/DarwinStreamingServer/files/patch-Install (props changed) head/net/DarwinStreamingServer/files/patch-MP3Broadcaster::BroadcasterMain.cpp (props changed) head/net/DarwinStreamingServer/files/patch-PlaylistBroadcaster.tproj::PlaylistBroadcaster.cpp (props changed) head/net/DarwinStreamingServer/files/patch-Server.tproj::main.cpp (props changed) head/net/DarwinStreamingServer/files/patch-StreamingLoadTool-StreamingLoadTool.cpp (props changed) head/net/DarwinStreamingServer/files/patch-StreamingProxy.tproj-proxy.c (props changed) head/net/DarwinStreamingServer/files/patch-WebAdmin::src::streamingadminserver.pl (props changed) head/net/DarwinStreamingServer/files/patch-qtpasswd.tproj-QTSSPasswd.cpp (props changed) head/net/Sockets/files/patch-Makefile (props changed) head/net/afpfs-ng/files/patch-Makefile.am (props changed) head/net/afpfs-ng/files/patch-cmdline__cmdline_afp.c (props changed) head/net/afpfs-ng/files/patch-cmdline__cmdline_testafp.c (props changed) head/net/afpfs-ng/files/patch-cmdline__getstatus.c (props changed) head/net/afpfs-ng/files/patch-configure.ac (props changed) head/net/afpfs-ng/files/patch-fuse__client.c (props changed) head/net/afpfs-ng/files/patch-fuse__commands.c (props changed) head/net/afpfs-ng/files/patch-fuse__daemon.c (props changed) head/net/afpfs-ng/files/patch-fuse__fuse_error.c (props changed) head/net/afpfs-ng/files/patch-fuse__fuse_int.c (props changed) head/net/afpfs-ng/files/patch-include__Makefile.am (props changed) head/net/afpfs-ng/files/patch-include__afp.h (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__Makefile.am (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__afp.h (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__afp_protocol.h (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__codepage.h (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__dsi.h (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__libafpclient.h (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__map_def.h (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__midlevel.h (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__uams_def.h (props changed) head/net/afpfs-ng/files/patch-include__afpfs-ng__utils.h (props changed) head/net/afpfs-ng/files/patch-include__codepage.h (props changed) head/net/afpfs-ng/files/patch-include__dsi.h (props changed) head/net/afpfs-ng/files/patch-include__libafpclient.h (props changed) head/net/afpfs-ng/files/patch-include__map_def.h (props changed) head/net/afpfs-ng/files/patch-include__midlevel.h (props changed) head/net/afpfs-ng/files/patch-include__uams_def.h (props changed) head/net/afpfs-ng/files/patch-include__utils.h (props changed) head/net/afpfs-ng/files/patch-lib__Makefile.am (props changed) head/net/afpfs-ng/files/patch-lib__afp.c (props changed) head/net/afpfs-ng/files/patch-lib__afp_internal.h (props changed) head/net/afpfs-ng/files/patch-lib__afp_url.c (props changed) head/net/afpfs-ng/files/patch-lib__client.c (props changed) head/net/afpfs-ng/files/patch-lib__codepage.c (props changed) head/net/afpfs-ng/files/patch-lib__connect.c (props changed) head/net/afpfs-ng/files/patch-lib__did.c (props changed) head/net/afpfs-ng/files/patch-lib__dsi.c (props changed) head/net/afpfs-ng/files/patch-lib__forklist.c (props changed) head/net/afpfs-ng/files/patch-lib__identify.c (props changed) head/net/afpfs-ng/files/patch-lib__log.c (props changed) head/net/afpfs-ng/files/patch-lib__loop.c (props changed) head/net/afpfs-ng/files/patch-lib__lowlevel.c (props changed) head/net/afpfs-ng/files/patch-lib__map_def.c (props changed) head/net/afpfs-ng/files/patch-lib__meta.c (props changed) head/net/afpfs-ng/files/patch-lib__midlevel.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_attr.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_desktop.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_directory.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_files.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_fork.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_login.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_map.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_replyblock.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_server.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_session.c (props changed) head/net/afpfs-ng/files/patch-lib__proto_volume.c (props changed) head/net/afpfs-ng/files/patch-lib__resource.c (props changed) head/net/afpfs-ng/files/patch-lib__server.c (props changed) head/net/afpfs-ng/files/patch-lib__status.c (props changed) head/net/afpfs-ng/files/patch-lib__uams.c (props changed) head/net/afpfs-ng/files/patch-lib__users.c (props changed) head/net/afpfs-ng/files/patch-lib__utils.c (props changed) head/net/aoe/files/patch-aoecmd.c (props changed) head/net/aoe/files/patch-aoenet.c (props changed) head/net/apinger/files/patch-src_apinger.h (props changed) head/net/apinger/files/patch-src_icmp.c (props changed) head/net/apinger/files/patch-src_main.c (props changed) head/net/arping/files/patch-src__arping.c (props changed) head/net/aslookup/files/patch-Makefile (props changed) head/net/aslookup/files/patch-aslookup.c (props changed) head/net/asterisk-oh323/files/patch-Makefile (props changed) head/net/asterisk-oh323/files/patch-asterisk-driver::Makefile (props changed) head/net/asterisk-oh323/files/patch-asterisk-driver::chan_oh323.c (props changed) head/net/asterisk-oh323/files/patch-rules.mak (props changed) head/net/asterisk-oh323/files/patch-wrapper::Makefile (props changed) head/net/asterisk-oh323/files/patch-wrapper::asteriskaudio.cxx (props changed) head/net/asterisk-oh323/files/patch-wrapper::check_ver (props changed) head/net/asterisk-oh323/files/patch-wrapper::openh323flags.mak (props changed) head/net/asterisk-oh323/files/patch-wrapper::wrapconnection.cxx (props changed) head/net/asterisk-oh323/files/patch-wrapper::wrapendpoint.cxx (props changed) head/net/asterisk-oh323/files/patch-wrapper::wrapper.cxx (props changed) head/net/asterisk/files/patch-Makefile (props changed) head/net/asterisk/files/patch-agi::Makefile (props changed) head/net/asterisk/files/patch-channels-chan_dahdi.c (props changed) head/net/asterisk/files/patch-channels::Makefile (props changed) head/net/asterisk/files/patch-channels__sip__include__sip.h (props changed) head/net/asterisk/files/patch-channels_h323_Makefile.in (props changed) head/net/asterisk/files/patch-main::Makefile (props changed) head/net/asterisk/files/patch-main::db.c (props changed) head/net/asterisk/files/patch-main__lock.c (props changed) head/net/asterisk10/files/patch-Makefile (props changed) head/net/asterisk10/files/patch-agi::Makefile (props changed) head/net/asterisk10/files/patch-channels-chan_dahdi.c (props changed) head/net/asterisk10/files/patch-channels::Makefile (props changed) head/net/asterisk10/files/patch-channels__sip__include__sip.h (props changed) head/net/asterisk10/files/patch-channels_h323_Makefile.in (props changed) head/net/asterisk10/files/patch-main__asterisk.exports.in (props changed) head/net/asterisk10/files/patch-main__lock.c (props changed) head/net/asterisk11/files/patch-Makefile (props changed) head/net/asterisk11/files/patch-agi::Makefile (props changed) head/net/asterisk11/files/patch-channels-chan_dahdi.c (props changed) head/net/asterisk11/files/patch-channels::Makefile (props changed) head/net/asterisk11/files/patch-channels__sip__include__sip.h (props changed) head/net/asterisk11/files/patch-channels_h323_Makefile.in (props changed) head/net/asterisk11/files/patch-main__lock.c (props changed) head/net/asterisk14-addons/files/patch-Makefile (props changed) head/net/asterisk14/files/patch-Makefile.rules (props changed) head/net/asterisk14/files/patch-agi::Makefile (props changed) head/net/asterisk14/files/patch-channels::Makefile (props changed) head/net/asterisk14/files/patch-channels::chan_sip.c (props changed) head/net/asterisk14/files/patch-channels_h323_Makefile.in (props changed) head/net/asterisk14/files/patch-configure (props changed) head/net/asterisk14/files/patch-include::asterisk::utils.h (props changed) head/net/asterisk14/files/patch-main::Makefile (props changed) head/net/asterisk14/files/patch-main::db.c (props changed) head/net/asterisk14/files/patch-main::frame.c (props changed) head/net/asterisk14/files/patch-main::utils.c (props changed) head/net/asterisk14/files/patch-rtp_timeout (props changed) head/net/asterisk14/files/patch-suppress_log_dups.diff (props changed) head/net/avahi-app/files/patch-Makefile.in (props changed) head/net/avahi-app/files/patch-avahi-autoipd_main.c (props changed) head/net/avahi-app/files/patch-avahi-client.pc.in (props changed) head/net/avahi-app/files/patch-avahi-compat-howl.pc.in (props changed) head/net/avahi-app/files/patch-avahi-compat-libdns_sd.pc.in (props changed) head/net/avahi-app/files/patch-avahi-compat-libdns_sd_Makefile.in (props changed) head/net/avahi-app/files/patch-avahi-core.pc.in (props changed) head/net/avahi-app/files/patch-avahi-daemon_main.c (props changed) head/net/avahi-app/files/patch-avahi-discover-standalone_Makefile.in (props changed) head/net/avahi-app/files/patch-avahi-glib.pc.in (props changed) head/net/avahi-app/files/patch-avahi-qt3.pc.in (props changed) head/net/avahi-app/files/patch-avahi-qt4.pc.in (props changed) head/net/avahi-app/files/patch-avahi-qt_Makefile.in (props changed) head/net/avahi-app/files/patch-avahi-ui_Makefile.in (props changed) head/net/avahi-app/files/patch-avahi-utils_Makefile.in (props changed) head/net/avahi-app/files/patch-configure (props changed) head/net/avahi-app/files/patch-dnsconfd_Makefile.in (props changed) head/net/avahi-app/files/patch-initscript_freebsd_Makefile.in (props changed) head/net/avahi-app/files/patch-initscript_freebsd_avahi-daemon.sh.in (props changed) head/net/avahi-app/files/patch-initscript_freebsd_avahi-dnsconfd.sh.in (props changed) head/net/bird-devel/files/patch-tools-Makefile.in (props changed) head/net/bird-devel/files/patch-tools-Rules.in (props changed) head/net/bird/files/patch-tools-Makefile.in (props changed) head/net/bird/files/patch-tools-Rules.in (props changed) head/net/bittwist/files/patch-Makefile (props changed) head/net/bld/files/patch-aa (props changed) head/net/bld/files/patch-ab (props changed) head/net/bld/files/patch-ac (props changed) head/net/bmon/files/patch-out_xml_event.c (props changed) head/net/bmon/files/patch-src__out_db.c (props changed) head/net/bounce/files/patch-bounce.c (props changed) head/net/bsdproxy/files/patch-accept_client.c (props changed) head/net/bsdproxy/files/patch-proxy.c (props changed) head/net/bsdproxy/files/patch-proxy_deinit.c (props changed) head/net/bsdproxy/files/patch-proxy_init.c (props changed) head/net/bsdproxy/files/patch-proxy_protos.h (props changed) head/net/bsdproxy/files/patch-proxy_util.c (props changed) head/net/bsdproxy/files/patch-read_data.c (props changed) head/net/bsdproxy/files/patch-write_data.c (props changed) head/net/callweaver/files/patch-Makefile.in (props changed) head/net/callweaver/files/patch-configs_makefile (props changed) head/net/callweaver/files/patch-cw.diff (props changed) head/net/ccxstream/files/patch-ccxclientconn.c (props changed) head/net/ccxstream/files/patch-ccxstream.c (props changed) head/net/citrix_ica/files/patch-setupwfc (props changed) head/net/click/files/patch-configure (props changed) head/net/click/files/patch-configure.in (props changed) head/net/clusterit/files/patch-rvt-command.c (props changed) head/net/clusterit/files/patch-rvt-ttyinit.c (props changed) head/net/cnd/files/patch-Makefile (props changed) head/net/coda6_server/files/patch-coda-src-venus-hdb.cc (props changed) head/net/coda6_server/files/patch-coda-src-venus-user.cc (props changed) head/net/coda6_server/files/patch-coda-src-venus-worker.cc (props changed) head/net/coda6_server/files/patch-lib-src-base-coda_getaddrinfo.c (props changed) head/net/corkscrew/files/patch-corkscrew.c (props changed) head/net/corkscrew/files/patch-security-corkscrew.c (props changed) head/net/cryptcat/files/patch-Makefile (props changed) head/net/cryptcat/files/patch-farm9crypt.cc (props changed) head/net/cryptcat/files/patch-netcat.c (props changed) head/net/csocks/files/patch-src_csocks.c (props changed) head/net/csync2/files/patch-Makefile.am (props changed) head/net/csync2/files/patch-Makefile.in (props changed) head/net/csync2/files/patch-configure (props changed) head/net/csync2/files/patch-csync2-compare (props changed) head/net/ct/files/patch-Makefile (props changed) head/net/ct/files/patch-Makefile.inc (props changed) head/net/ct/files/patch-dd-Makefile (props changed) head/net/ct/files/patch-default-addr-select-Makefile (props changed) head/net/ct/files/patch-icmp-Makefile (props changed) head/net/ct/files/patch-ipsec-Makefile (props changed) head/net/ct/files/patch-ipsec-udp-Makefile (props changed) head/net/ct/files/patch-ipsec4-Makefile (props changed) head/net/ct/files/patch-ipsec4-udp-Makefile (props changed) head/net/ct/files/patch-mip6-cn-20-Makefile (props changed) head/net/ct/files/patch-mip6-ha-20-Makefile (props changed) head/net/ct/files/patch-mip6-mn-20-Makefile (props changed) head/net/ct/files/patch-natpt-Makefile (props changed) head/net/ct/files/patch-nd-Makefile (props changed) head/net/ct/files/patch-pd-Makefile (props changed) head/net/ct/files/patch-pmtu-Makefile (props changed) head/net/ct/files/patch-robust-Makefile (props changed) head/net/ct/files/patch-router-select-Makefile (props changed) head/net/ct/files/patch-spec-Makefile (props changed) head/net/ct/files/patch-stateless-addrconf-Makefile (props changed) head/net/ct/files/patch-tunnel-Makefile (props changed) head/net/cvsup/files/patch-ae (props changed) head/net/cvsupchk/files/patch-spaces-in-filenames (props changed) head/net/dante/files/patch-configure (props changed) head/net/dante/files/patch-ltmain.sh (props changed) head/net/datapipe/files/patch-datapipe.c (props changed) head/net/desktop-data-model/files/patch-Makefile.in (props changed) head/net/despoof/files/patch-aa (props changed) head/net/despoof/files/patch-ab (props changed) head/net/dgd-kernel/files/patch-auto.c (props changed) head/net/dgd-kernel/files/patch-driver.c (props changed) head/net/dgd-kernel/files/patch-kernel.dgd (props changed) head/net/dgd-kernel/files/patch-net (props changed) head/net/dgd-lpmud/files/patch-2.4.5-dgd-sys-driver.c (props changed) head/net/dgd-lpmud/files/patch-aa (props changed) head/net/dgd-lpmud/files/patch-hname.c (props changed) head/net/dgd-lpmud/files/patch-lpmud.dgd (props changed) head/net/dgd-lpmud/files/patch-room-pub2.c (props changed) head/net/dgd-lpmud/files/patch-room-vill_road2.c (props changed) head/net/dgd-lpmud/files/patch-room-yard.c (props changed) head/net/dgd-lpmud/files/patch-sys-driver.c (props changed) head/net/dgd/files/patch-src-kfun-std.c (props changed) head/net/dhcprelay/files/patch-Makefile (props changed) head/net/dictd/files/patch-dictd.8.in (props changed) head/net/dosdetector/files/patch-configure.in (props changed) head/net/drawterm/files/patch-Make.pthread (props changed) head/net/easysoap/files/patch-src-Makefile.in (props changed) head/net/erlang_xmlrpc/files/patch-src_xmlrpc.erl (props changed) head/net/erlang_xmlrpc/files/patch-src_xmlrpc__decode.erl (props changed) head/net/erlang_xmlrpc/files/patch-src_xmlrpc__http.erl (props changed) head/net/etherboot/files/patch-aa (props changed) head/net/etherboot/files/patch-ac (props changed) head/net/etherboot/files/patch-ad (props changed) head/net/etherboot/files/patch-ae (props changed) head/net/etherboot/files/patch-af (props changed) head/net/etherboot/files/patch-c99 (props changed) head/net/etherboot/files/patch-gcc34 (props changed) head/net/etherboot/files/patch-gcc40 (props changed) head/net/etrace/files/patch-Makefile.in (props changed) head/net/freebsd-uucp/files/patch-Makefile (props changed) head/net/freebsd-uucp/files/patch-uucpd.c (props changed) head/net/freebsd-uucp/files/patch-uuto.in (props changed) head/net/freenet6/files/patch-Makefiles-etcdir.patch (props changed) head/net/freenet6/files/patch-src__tsp__tsp_setup.c (props changed) head/net/freenet6/files/patch-src_lib_config.c (props changed) head/net/freenx/files/patch-freenx-nxkeygen (props changed) head/net/freenx/files/patch-freenx-nxloadconfig (props changed) head/net/freenx/files/patch-freenx-nxnode (props changed) head/net/freenx/files/patch-freenx-nxserver (props changed) head/net/freenx/files/patch-freenx-nxsetup (props changed) head/net/freeradius-client/files/patch-configure (props changed) head/net/freeradius-client/files/patch-configure.in (props changed) head/net/freeradius-client/files/patch-lib::config.c (props changed) head/net/freeradius-client/files/patch-lib::ip_util.c (props changed) head/net/freeradius-client/files/patch-lib::options.h (props changed) head/net/freeradius-client/files/patch-lib::sendserver.c (props changed) head/net/freeradius2/files/extra-patch-exec.c (props changed) head/net/freeradius2/files/patch-radsqlrelay (props changed) head/net/freeradius2/files/patch-src__modules__rlm_sql__drivers__rlm_sql_oracle__configure (props changed) head/net/freeradius2/files/patch-src__modules__rlm_sql__drivers__rlm_sql_oracle__configure.in (props changed) head/net/freeradius3/files/patch-radsqlrelay (props changed) head/net/freeswitch-core-devel/files/patch-Makefile.am (props changed) head/net/freeswitch-core-devel/files/patch-build-getlib.sh.in (props changed) head/net/freeswitch-core-devel/files/patch-build-modules.conf.in (props changed) head/net/freeswitch-core-devel/files/patch-conf-vanilla-autoload_configs-switch.conf.xml (props changed) head/net/freeswitch-core-devel/files/patch-conf-vanilla-sip_profiles-external.xml (props changed) head/net/freeswitch-core-devel/files/patch-conf-vanilla-sip_profiles-internal.xml (props changed) head/net/freeswitch-core-devel/files/patch-configure.in (props changed) head/net/freeswitch-core-devel/files/patch-libs-freetdm-Makefile.am (props changed) head/net/freeswitch-core-devel/files/patch-libs-freetdm-mod_freetdm-Makefile.in (props changed) head/net/freeswitch-core-devel/files/patch-libs-js-nsprpub-pr-include-md-_freebsd.cfg (props changed) head/net/freeswitch-core-devel/files/patch-libs-js-nsprpub-pr-include-md-_freebsd.h (props changed) head/net/freeswitch-core-devel/files/patch-src-include-private-switch_core_pvt.h (props changed) head/net/freeswitch-core-devel/files/patch-src-include-switch_types.h (props changed) head/net/freeswitch-core-devel/files/patch-src-switch_core.c (props changed) head/net/freewais-sf/files/patch-aa (props changed) head/net/freewais-sf/files/patch-ab (props changed) head/net/freewais-sf/files/patch-ac (props changed) head/net/freewais-sf/files/patch-ad (props changed) head/net/freewais-sf/files/patch-ae (props changed) head/net/freewais-sf/files/patch-af (props changed) head/net/freewais-sf/files/patch-ag (props changed) head/net/freewais-sf/files/patch-ah (props changed) head/net/freewais-sf/files/patch-ai (props changed) head/net/freewais-sf/files/patch-udping.c (props changed) head/net/frickin/files/patch-session.cpp (props changed) head/net/fspclient/files/patch-bsd-print.c (props changed) head/net/fspd/files/patch-bsd_src-print.c (props changed) head/net/gkrellmqst/files/patch-Makefile (props changed) head/net/gkrellmqst/files/patch-qst.c (props changed) head/net/gkrellmwireless2/files/patch-aa (props changed) head/net/gkrellmwireless2/files/patch-ume-scan.diff (props changed) head/net/glib-networking/files/patch-tls_gnutls_gtlsclientconnection-gnutls.c (props changed) head/net/gnet2/files/patch-Makefile.in (props changed) head/net/gnetcat/files/patch-src-udphelper.c (props changed) head/net/gnome-netstatus/files/patch-src_netstatus-sysdeps.c (props changed) head/net/gnome-nettool/files/patch-src_info.c (props changed) head/net/gnome-nettool/files/patch-src_lookup.c (props changed) head/net/gnome-nettool/files/patch-src_netstat.c (props changed) head/net/gnome-nettool/files/patch-src_nettool.c (props changed) head/net/gnu-radius/files/patch-configure (props changed) head/net/gnu-radius/files/patch-dbm (props changed) head/net/gnu-radius/files/patch-include-radius_radutmp.h (props changed) head/net/gnu-radius/files/patch-raddb_Makefile.in (props changed) head/net/gogoc/files/patch-env (props changed) head/net/googlecl/files/patch-setup.py (props changed) head/net/gopher/files/patch-gopher_form.c (props changed) head/net/gopher/files/patch-object_BLblock.c (props changed) head/net/gopher/files/patch-object_GSgopherobj.c (props changed) head/net/gopher/files/patch-object_Regex.c (props changed) head/net/gopher/files/patch-object_url.c (props changed) head/net/gpxe/files/patch-arch__i386__Makefile (props changed) head/net/gpxe/files/patch-arch__i386__Makefile.pcbios (props changed) head/net/gpxe/files/patch-util__fnrec.sh (props changed) head/net/gpxe/files/patch-util__geniso (props changed) head/net/gpxe/files/patch-util__genliso (props changed) head/net/gpxe/files/patch-util__gensdsk (props changed) head/net/gq/files/patch-src_gq-server.c (props changed) head/net/gq/files/patch-src_gq-tab-schema.c (props changed) head/net/grive/files/patch-grive_CMakeLists.txt (props changed) head/net/grive/files/patch-st_ctimespec (props changed) head/net/grsync/files/patch-po-Makefile.in.in (props changed) head/net/gsk/files/patch-src_gskipv4.c (props changed) head/net/gspoof/files/patch-configure (props changed) head/net/gssdp/files/patch-tools-gssdp-devices-sniffer.c (props changed) head/net/gtic/files/patch-aa (props changed) head/net/gtic/files/patch-ab (props changed) head/net/gtic/files/patch-ac (props changed) head/net/gtic/files/patch-ad (props changed) head/net/gtic/files/patch-ae (props changed) head/net/gtic/files/patch-af (props changed) head/net/gtk-vnc/files/patch-src_continuation.h (props changed) head/net/gtk-vnc/files/patch-src_coroutine_ucontext.c (props changed) head/net/gtk-vnc/files/patch-src_gvnc.c (props changed) head/net/gtk-vnc/files/patch-src_gvnc.h (props changed) head/net/gupnp-igd/files/patch-libgupnp-igd-gupnp-simple-igd.c (props changed) head/net/haproxy/files/patch-Makefile (props changed) head/net/hawknl-devel/files/patch-src_htcondition.c (props changed) head/net/hawknl-devel/files/patch-src_makefile.linux (props changed) head/net/hawknl/files/patch-src_makefile.linux (props changed) head/net/heybuddy/files/patch-heybuddy.py (props changed) head/net/hlmaster/files/patch-HLServerList.cpp (props changed) head/net/honeyd/files/patch-compat-sha1.h (props changed) head/net/honeyd/files/patch-dhcpclient.c (props changed) head/net/honeyd/files/patch-honeyd_overload.c (props changed) head/net/honeyd/files/patch-interface.c (props changed) head/net/honeyd/files/patch-personality.c (props changed) head/net/hornetq/files/patch-log1 (props changed) head/net/hornetq/files/patch-log2 (props changed) head/net/hornetq/files/patch-run (props changed) head/net/hornetq/files/patch-stop (props changed) head/net/hostapd/files/patch-src-l2_packet-l2_packet_freebsd.c (props changed) head/net/howl/files/patch-Makefile.in (props changed) head/net/hping-devel/files/patch-Makefile.in (props changed) head/net/hping-devel/files/patch-bytesex.h (props changed) head/net/hping-devel/files/patch-configure (props changed) head/net/hping-devel/files/patch-hping3.8 (props changed) head/net/hping/files/patch-Makefile.in (props changed) head/net/hping/files/patch-bytesex.h (props changed) head/net/hping/files/patch-configure (props changed) head/net/http_ping/files/patch-Makefile (props changed) head/net/httping/files/patch-Makefile (props changed) head/net/httpry/files/patch-Makefile (props changed) head/net/hupnp/files/patch-hmulticast_socket.cpp (props changed) head/net/hupnp/files/patch-hupnp__src__devicehosting__devicehost__hpresence_announcer_p.h (props changed) head/net/iaxmodem/files/patch-iaxmodem.c (props changed) head/net/iaxmodem/files/patch-lib_libiax2_src_iax.c (props changed) head/net/iaxmodem/files/patch-lib_spandsp_src_spandsp_t4.h (props changed) head/net/iaxmodem/files/patch-lib_spandsp_src_t31.c (props changed) head/net/iaxmodem/files/patch-lib_spandsp_src_t38_terminal.c (props changed) head/net/iet/files/patch-freebsd10 (props changed) head/net/iet/files/patch-freebsd9 (props changed) head/net/iet/files/patch-kernel__nthread.c (props changed) head/net/ifdepd/files/patch-Makefile (props changed) head/net/ifstat/files/patch-drivers.c (props changed) head/net/ifstated/files/patch-Makefile (props changed) head/net/ifstated/files/patch-ifstated.8 (props changed) head/net/ifstated/files/patch-ifstated.c (props changed) head/net/ifstated/files/patch-ifstated.conf-sample (props changed) head/net/ifstated/files/patch-ifstated.h (props changed) head/net/ifstated/files/patch-log.c (props changed) head/net/ifstated/files/patch-parse.y (props changed) head/net/igmpproxy/files/patch-Makefile (props changed) head/net/imapproxy/files/patch-aa (props changed) head/net/imapproxy/files/patch-ab (props changed) head/net/imapproxy/files/patch-ac (props changed) head/net/imapproxy/files/patch-ad (props changed) head/net/imapproxy/files/patch-ae (props changed) head/net/imapproxy/files/patch-af (props changed) head/net/ipfw-graph/files/patch-Makefile (props changed) head/net/ipgrab/files/patch-src_icmpv6.c (props changed) head/net/iplog/files/patch-aa (props changed) head/net/iplog/files/patch-ab (props changed) head/net/iplog/files/patch-ac (props changed) head/net/iplog/files/patch-ad (props changed) head/net/iplog/files/patch-ae (props changed) head/net/iplog/files/patch-src-iplog_options.c (props changed) head/net/ipsorc/files/patch-aa (props changed) head/net/ipsorc/files/patch-sorcery.c (props changed) head/net/irrd/files/patch-config_file.c (props changed) head/net/irrd/files/patch-configure (props changed) head/net/irrd/files/patch-database.c (props changed) head/net/irrd/files/patch-lib_mrt_prefix.c (props changed) head/net/irrd/files/patch-uii_commands.c (props changed) head/net/isc-dhcp41-server/files/patch-client__Makefile.in (props changed) head/net/isc-dhcp41-server/files/patch-client__dhclient.conf (props changed) head/net/isc-dhcp41-server/files/patch-server__Makefile.am (props changed) head/net/isc-dhcp41-server/files/patch-server__Makefile.in (props changed) head/net/isc-dhcp41-server/files/patch-server__bpf.c (props changed) head/net/isc-dhcp42-server/files/extra-patch-bind__Makefile (props changed) head/net/isc-dhcp42-server/files/patch-server__bpf.c (props changed) head/net/iscsi-target/files/patch-iscsiutil (props changed) head/net/iscsi-target/files/patch-src-Makefile.in (props changed) head/net/jakarta-commons-net/files/patch-TelnetClientTest.java (props changed) head/net/jakarta-commons-net/files/patch-build.xml (props changed) head/net/jgroups/files/patch-src_org_jgroups_protocols_MPING.java (props changed) head/net/jgroups/files/patch-src_org_jgroups_protocols_TP.java (props changed) head/net/jgroups/files/patch-src_org_jgroups_protocols_UDP.java (props changed) head/net/jgroups/files/patch-src_org_jgroups_util_Util.java (props changed) head/net/jicmp/files/patch-Makefile.in (props changed) head/net/jpcap/files/patch-src__c__Makefile (props changed) head/net/jrdesktop/files/patch-src-jrdesktop_main.java (props changed) head/net/jwhois/files/patch-ab (props changed) head/net/jwhois/files/patch-ac (props changed) head/net/jwhois/files/patch-ad (props changed) head/net/kdenetwork4/files/patch-kget__transfer-plugins__bittorrent__CMakeLists.txt (props changed) head/net/kojoney/files/patch-Makefile (props changed) head/net/l2tpd/files/patch-Makefile (props changed) head/net/l2tpd/files/patch-aaa.c (props changed) head/net/l2tpd/files/patch-aaa.h (props changed) head/net/l2tpd/files/patch-avp.c (props changed) head/net/l2tpd/files/patch-avpsend.c (props changed) head/net/l2tpd/files/patch-call.c (props changed) head/net/l2tpd/files/patch-control.c (props changed) head/net/l2tpd/files/patch-doc::l2tp-secrets.5 (props changed) head/net/l2tpd/files/patch-doc::l2tpd.8 (props changed) head/net/l2tpd/files/patch-doc::l2tpd.conf.5 (props changed) head/net/l2tpd/files/patch-doc::l2tpd.conf.sample (props changed) head/net/l2tpd/files/patch-file.c (props changed) head/net/l2tpd/files/patch-file.h (props changed) head/net/l2tpd/files/patch-l2tp.h (props changed) head/net/l2tpd/files/patch-l2tpd.c (props changed) head/net/l2tpd/files/patch-misc.c (props changed) head/net/l2tpd/files/patch-network.c (props changed) head/net/lam/files/patch-man-mans-Makefile.in (props changed) head/net/lambdamoo/files/patch-Makefile.in (props changed) head/net/lambdamoo/files/patch-aa (props changed) head/net/lambdamoo/files/patch-configure (props changed) head/net/lambdamoo/files/patch-configure.in (props changed) head/net/ldap2dns/files/patch-ldap2tinydns-conf (props changed) head/net/libdnet/files/patch-configure (props changed) head/net/libdnet/files/patch-python__dnet.c (props changed) head/net/libfixbuf/files/patch-Makefile.in (props changed) head/net/libgnetwork/files/patch-Makefile.in (props changed) head/net/libgnetwork/files/patch-data_Makefile.in (props changed) head/net/libgnetwork/files/patch-libgnetwork_gnetwork-tcp-connection.c (props changed) head/net/libnet10/files/patch-Makefile.in (props changed) head/net/libnet10/files/patch-ac (props changed) head/net/libnet10/files/patch-include::libnet.h (props changed) head/net/libnet10/files/patch-libnet-config.in (props changed) head/net/libnetdude/files/patch-plugins__ChecksumFix__Makefile.in (props changed) head/net/libnids/files/patch-configure (props changed) head/net/libnids/files/patch-src::libnids.c (props changed) head/net/libnss-mysql/files/patch-Makefile.in (props changed) head/net/libproxy/files/patch-libmodman_CMakeLists.txt (props changed) head/net/libproxy/files/patch-libproxy_CMakeLists.txt (props changed) head/net/libproxy/files/patch-libproxy_cmake_devfiles.cmk (props changed) head/net/libproxy/files/patch-libproxy_cmake_libproxy.cmk (props changed) head/net/libproxy/files/patch-libproxy_cmake_modules.cmk (props changed) head/net/libproxy/files/patch-libproxy_cmake_modules_config-gnome.cmk (props changed) head/net/libproxy/files/patch-libproxy_cmake_modules_network-networkmanager.cmk (props changed) head/net/libproxy/files/patch-libproxy_cmake_modules_pacrunner-webkit.cmk (props changed) head/net/libproxy/files/patch-libproxy_proxy.cpp (props changed) head/net/libproxy/files/patch-libproxy_url.cpp (props changed) head/net/libproxy/files/patch-libproxy_url.hpp (props changed) head/net/librsync/files/patch-ltmain.sh (props changed) head/net/libsocket++/files/patch-autogen (props changed) head/net/libsocket++/files/patch-sockstream.h (props changed) head/net/libsocketcpp/files/patch-src::tcpsocket.cpp (props changed) head/net/libtcp4u/files/patch-Unix::Makefile (props changed) head/net/libtnl/files/patch-platform (props changed) head/net/libtnl/files/patch-platforms (props changed) head/net/libunp/files/patch-aa (props changed) head/net/libunp/files/patch-ab (props changed) head/net/libunp/files/patch-ac (props changed) head/net/libunp/files/patch-ad (props changed) head/net/libunp/files/patch-ae (props changed) head/net/libunp/files/patch-af (props changed) head/net/libunp/files/patch-ag (props changed) head/net/libunp/files/patch-ah (props changed) head/net/libunp/files/patch-ai (props changed) head/net/libunp/files/patch-aj (props changed) head/net/libunp/files/patch-ak (props changed) head/net/libunp/files/patch-al (props changed) head/net/libunp/files/patch-am (props changed) head/net/libunp/files/patch-an (props changed) head/net/libunp/files/patch-ao (props changed) head/net/libunp/files/patch-ap (props changed) head/net/libunp/files/patch-aq (props changed) head/net/libunp/files/patch-ar (props changed) head/net/libunp/files/patch-as (props changed) head/net/libunp/files/patch-at (props changed) head/net/libunp/files/patch-libfree:inet_ntop.c (props changed) head/net/libutp/files/patch-utypes (props changed) head/net/libvncserver/files/patch-configure (props changed) head/net/libvncserver/files/patch-libvncserver__sockets.c (props changed) head/net/linc/files/patch-Makefile.in (props changed) head/net/linc/files/patch-configure (props changed) head/net/linc/files/patch-src-linc-protocols.c (props changed) head/net/linknx/files/patch-src_eibclient.c (props changed) head/net/linphone-base/files/patch-coreapi_linphonecore.c (props changed) head/net/linphone-base/files/patch-gtk-glade_Makefile.in (props changed) head/net/linphone-base/files/patch-mediastreamer2_src_dsptools.c (props changed) head/net/linphone-base/files/patch-mediastreamer2_src_ice.c (props changed) head/net/linphone-base/files/patch-oRTP-src_stun.c (props changed) head/net/linuxigd/files/patch-Makefile (props changed) head/net/linuxigd/files/patch-config.c (props changed) head/net/linuxigd/files/patch-etc__upnpd.conf (props changed) head/net/linuxigd/files/patch-gatedevice.c (props changed) head/net/linuxigd/files/patch-globals.h (props changed) head/net/linuxigd/files/patch-main.c (props changed) head/net/linuxigd/files/patch-pmlist.c (props changed) head/net/linuxigd/files/patch-util.c (props changed) head/net/liveMedia/files/patch-BasicUsageEnvironment-Makefile.tail (props changed) head/net/liveMedia/files/patch-Makefile.tail (props changed) head/net/liveMedia/files/patch-UsageEnvironment-Makefile.tail (props changed) head/net/liveMedia/files/patch-groupsock-Makefile.tail (props changed) head/net/liveMedia/files/patch-liveMedia-Makefile.tail (props changed) head/net/liveMedia/files/patch-liveMedia-include_Locale.hh (props changed) head/net/lla/files/patch-aa (props changed) head/net/luasocket/files/patch-config (props changed) head/net/luasocket/files/patch-src_buffer_c (props changed) head/net/mad_fcl/files/patch-Makefile (props changed) head/net/mad_fcl/files/patch-alclib_linux__ssm.h (props changed) head/net/mad_fcl/files/patch-sdplib_port__misc.c (props changed) head/net/mars_nwe/files/patch-aa (props changed) head/net/mars_nwe/files/patch-ab (props changed) head/net/mars_nwe/files/patch-ac (props changed) head/net/mars_nwe/files/patch-nwserv.c (props changed) head/net/mars_nwe/files/patch-tools.c (props changed) head/net/mediaproxy/files/patch-Makefile (props changed) head/net/mediatomb/files/patch-youtube_video_url.cc (props changed) head/net/mgen/files/patch-protolib_unix_Makefile.freebsd (props changed) head/net/mgen/files/patch-protolib_unix_bsdRouteMgr.cpp (props changed) head/net/mgen/files/patch-unix_Makefile.freebsd (props changed) head/net/micro_inetd/files/patch-Makefile (props changed) head/net/minidlna/files/patch-clang-inline (props changed) head/net/minidlna/files/patch-getifaddr.c (props changed) head/net/minidlna/files/patch-utils.c-mpo (props changed) head/net/miniupnpc/files/patch-Makefile (props changed) head/net/mknbi/files/patch-Makefile (props changed) head/net/mmucl/files/patch-aa (props changed) head/net/mopd/files/patch-device.c (props changed) head/net/mopd/files/patch-file.c (props changed) head/net/mopd/files/patch-pf-snit.c (props changed) head/net/mopd/files/patch-pf.c (props changed) head/net/mopd/files/patch-process.c (props changed) head/net/mopd/files/patch-put.c (props changed) head/net/morebalance/files/patch-Makefile (props changed) head/net/mpich2/files/patch-Makefile.in (props changed) head/net/mpich2/files/patch-configure (props changed) head/net/mpich2/files/patch-src_mpe2_src_sbin_mpeinstall.in (props changed) head/net/mpich2/files/patch-src_mpi_romio_configure (props changed) head/net/mpich2/files/patch-src_mpi_romio_util_romioinstall.in (props changed) head/net/mpich2/files/patch-src_openpa_Makefile.in (props changed) head/net/mpich2/files/patch-src_openpa_configure (props changed) head/net/mpich2/files/patch-src_packaging_pkgconfig_Makefile.in (props changed) head/net/mrouted/files/patch-Makefile (props changed) head/net/mrouted/files/patch-route.c (props changed) head/net/mrouted/files/patch-vif.c (props changed) head/net/msend/files/patch-Makefile.am (props changed) head/net/msend/files/patch-common-h (props changed) head/net/msend/files/patch-configure.in (props changed) head/net/nakenchat/files/patch-Makefile (props changed) head/net/nakenchat/files/patch-configure (props changed) head/net/nam/files/patch-configure (props changed) head/net/nast/files/patch-configure (props changed) head/net/ncplib/files/patch-Makefile.inc (props changed) head/net/ndisc6/files/extra-patch-rdnssd-rdnssd.h (props changed) head/net/ndisc6/files/patch-configure (props changed) head/net/ndisc6/files/patch-rdnssd-merge-hook.in (props changed) head/net/ndisc6/files/patch-rdnssd-rdnssd.c (props changed) head/net/ndisc6/files/patch-src-ndisc.c (props changed) head/net/nemesis/files/patch-configure (props changed) head/net/nepenthes/files/patch-Makefile.in (props changed) head/net/nepim/files/patch-Makefile (props changed) head/net/netatalk/files/patch-config_Makefile.in (props changed) head/net/netatalk/files/patch-config_netatalk.conf (props changed) head/net/netatalk/files/patch-configure (props changed) head/net/netatalk/files/patch-etc_apfd_Makefile.in (props changed) head/net/netatalk/files/patch-etc_cnid_dbd_cnid_metad.c (props changed) head/net/netatalk/files/patch-include_atalk_util.h (props changed) head/net/netatalk3/files/patch-config_Makefile.in (props changed) head/net/netatalk3/files/patch-configure (props changed) head/net/netatalk3/files/patch-etc_apfd_Makefile.in (props changed) head/net/netatalk3/files/patch-etc_cnid_dbd_cnid_metad.c (props changed) head/net/netdude/files/patch-protocols-ip::nd_ip.c (props changed) head/net/netmap/files/patch-belgolib::Makefile (props changed) head/net/netmap/files/patch-belgolib::dirs.c (props changed) head/net/netmap/files/patch-belgolib::dirs.h (props changed) head/net/netmap/files/patch-belgolib::dirs_core.h (props changed) head/net/netmap/files/patch-belgolib::files.h (props changed) head/net/netmap/files/patch-makelist::Makefile (props changed) head/net/netmap/files/patch-makelist::config.h (props changed) head/net/netmap/files/patch-netmap::config.h (props changed) head/net/netpipes/files/patch-aa (props changed) head/net/netscript/files/patch-netscript.c (props changed) head/net/netsed/files/patch-netsed.c (props changed) head/net/netselect/files/patch-netselect.c (props changed) head/net/netspeed_applet/files/patch-src_netspeed.c (props changed) head/net/netstrain/files/patch-Makefile (props changed) head/net/nettest/files/patch-aa (props changed) head/net/nettest/files/patch-ab (props changed) head/net/nettest/files/patch-ac (props changed) head/net/netwib/files/patch-config.dat (props changed) head/net/nfsshell/files/patch-nfs.c (props changed) head/net/ng_daphne/files/extra-patch-ng_daphne.c (props changed) head/net/ng_daphne/files/patch-Makefile (props changed) head/net/ngrep/files/patch-Makefile.in (props changed) head/net/nifmon/files/patch-Makefile (props changed) head/net/nocatsplash/files/patch-src::http.c (props changed) head/net/nocatsplash/files/patch-src::splashd.c (props changed) head/net/nos-ttb/files/patch-src__ttb (props changed) head/net/ns/files/patch-aomdv.cc (props changed) head/net/ns/files/patch-configure (props changed) head/net/ns/files/patch-ls.h (props changed) head/net/nss_ldap/files/patch-Makefile.am (props changed) head/net/nss_ldap/files/patch-configure.in (props changed) head/net/nss_ldap/files/patch-ldap-ethers.c (props changed) head/net/nss_ldap/files/patch-ldap-ethers.h (props changed) head/net/nss_ldap/files/patch-ldap-init-krb5-cache.c (props changed) head/net/nss_ldap/files/patch-ldap-nss.c (props changed) head/net/nss_ldap/files/patch-ldap-nss.h (props changed) head/net/nss_ldap/files/patch-ldap-pwd.c (props changed) head/net/nss_ldap/files/patch-login-classes (props changed) head/net/ntop/files/patch-Makefile.am (props changed) head/net/ntop/files/patch-autogen.sh (props changed) head/net/ntop/files/patch-configure.in (props changed) head/net/ntop/files/patch-ntop.c (props changed) head/net/ntp-rc/files/patch-ntpd-ntp_io.c (props changed) head/net/ntp/files/patch-ntpd-ntp_io.c (props changed) head/net/ntraceroute/files/patch-traceroute.c (props changed) head/net/nxproxy/files/patch-nxcomp-Pgn.cpp (props changed) head/net/nxproxy/files/patch-nxcomp-configure.in (props changed) head/net/nxserver/files/patch-nx-X11-config-cf-FreeBSD.cf (props changed) head/net/nxserver/files/patch-nx-X11-config-cf-NX-FreeBSD.def (props changed) head/net/nxserver/files/patch-nx-X11-config-imake-imake.c (props changed) head/net/nxserver/files/patch-nx-X11-programs-Xserver-nxagent-Atoms.c (props changed) head/net/nxserver/files/patch-nx-X11-programs-Xserver-nxagent-NXdixfonts.c (props changed) head/net/nxserver/files/patch-nx-X11-programs-Xserver-nxagent-Pixmap.c (props changed) head/net/nxserver/files/patch-nx-X11-programs-Xserver-xkb-ddxLoad.c (props changed) head/net/nxserver/files/patch-nxcomp-Pgn.cpp (props changed) head/net/nxserver/files/patch-nxdesktop-configure (props changed) head/net/nxserver/files/patch-nxesd-audio_oss.c (props changed) head/net/nxserver/files/patch-nxesd-esddsp.c (props changed) head/net/nxserver/files/patch-nxviewer-include-vncauth.h (props changed) head/net/nxserver/files/patch-nxviewer-libvncauth-vncauth.c (props changed) head/net/nxserver/files/patch-nxviewer-nxviewer-Imakefile (props changed) head/net/nxserver/files/patch-nxviewer-nxviewer-misc.c (props changed) head/net/nxserver/files/patch-nxviewer-nxviewer-vncviewer.h (props changed) head/net/ohphone/files/patch-main.cxx (props changed) head/net/ohphone/files/patch-xlibvid.cxx (props changed) head/net/omcmd/files/patch-Makefile (props changed) head/net/omcmd/files/patch-base64.c (props changed) head/net/omcmd/files/patch-omfuncs.c (props changed) head/net/omnitty/files/patch-main.c (props changed) head/net/online-desktop/files/patch-Makefile.in (props changed) head/net/online-desktop/files/patch-check-have-all-files.sh (props changed) head/net/online-desktop/files/patch-gconf.path (props changed) head/net/online-desktop/files/patch-od-autostart (props changed) head/net/online-desktop/files/patch-od-session (props changed) head/net/online-desktop/files/patch-po_Makefile.in.in (props changed) head/net/online-desktop/files/patch-pyddm-ddm-viewer (props changed) head/net/online-desktop/files/patch-pyddm-test-session.py (props changed) head/net/online-desktop/files/patch-pyddm-test.py (props changed) head/net/online-desktop/files/patch-pyonlinedesktop-fsutil.py (props changed) head/net/online-desktop/files/patch-pyonlinedesktop-ggadget.py (props changed) head/net/online-desktop/files/patch-pyonlinedesktop-widget.py (props changed) head/net/online-desktop/files/patch-weblogindriver-web-login-driver (props changed) head/net/openafs/files/patch-Makefile.in (props changed) head/net/openafs/files/patch-acinclude.m4 (props changed) head/net/openafs/files/patch-src__budb__Makefile.in (props changed) head/net/openafs/files/patch-src__kauth__Makefile.in (props changed) head/net/openafs/files/patch-src__tbudb__Makefile.in (props changed) head/net/openafs/files/patch-src__volser__Makefile.in (props changed) head/net/openbgpd/files/patch-Makefile (props changed) head/net/openbgpd/files/patch-Makefile.inc (props changed) head/net/openbgpd/files/patch-bgpctl_Makefile (props changed) head/net/openbgpd/files/patch-bgpctl_bgpctl.8 (props changed) head/net/openbgpd/files/patch-bgpctl_bgpctl.c (props changed) head/net/openbgpd/files/patch-bgpctl_irr_asset.c (props changed) head/net/openbgpd/files/patch-bgpctl_irr_output.c (props changed) head/net/openbgpd/files/patch-bgpctl_irr_parser.c (props changed) head/net/openbgpd/files/patch-bgpctl_irr_prefix.c (props changed) head/net/openbgpd/files/patch-bgpctl_irrfilter.c (props changed) head/net/openbgpd/files/patch-bgpctl_irrfilter.h (props changed) head/net/openbgpd/files/patch-bgpctl_mrtparser.c (props changed) head/net/openbgpd/files/patch-bgpctl_mrtparser.h (props changed) head/net/openbgpd/files/patch-bgpctl_parser.c (props changed) head/net/openbgpd/files/patch-bgpctl_parser.h (props changed) head/net/openbgpd/files/patch-bgpctl_whois.c (props changed) head/net/openbgpd/files/patch-bgpd_Makefile (props changed) head/net/openbgpd/files/patch-bgpd_bgpd.8 (props changed) head/net/openbgpd/files/patch-bgpd_bgpd.c (props changed) head/net/openbgpd/files/patch-bgpd_bgpd.conf.5 (props changed) head/net/openbgpd/files/patch-bgpd_bgpd.h (props changed) head/net/openbgpd/files/patch-bgpd_buffer.c (props changed) head/net/openbgpd/files/patch-bgpd_carp.c (props changed) head/net/openbgpd/files/patch-bgpd_config.c (props changed) head/net/openbgpd/files/patch-bgpd_control.c (props changed) head/net/openbgpd/files/patch-bgpd_imsg.c (props changed) head/net/openbgpd/files/patch-bgpd_imsg.h (props changed) head/net/openbgpd/files/patch-bgpd_kroute.c (props changed) head/net/openbgpd/files/patch-bgpd_log.c (props changed) head/net/openbgpd/files/patch-bgpd_log.h (props changed) head/net/openbgpd/files/patch-bgpd_mrt.c (props changed) head/net/openbgpd/files/patch-bgpd_mrt.h (props changed) head/net/openbgpd/files/patch-bgpd_name2id.c (props changed) head/net/openbgpd/files/patch-bgpd_parse.y (props changed) head/net/openbgpd/files/patch-bgpd_pfkey.c (props changed) head/net/openbgpd/files/patch-bgpd_pftable.c (props changed) head/net/openbgpd/files/patch-bgpd_printconf.c (props changed) head/net/openbgpd/files/patch-bgpd_rde.c (props changed) head/net/openbgpd/files/patch-bgpd_rde.h (props changed) head/net/openbgpd/files/patch-bgpd_rde_attr.c (props changed) head/net/openbgpd/files/patch-bgpd_rde_decide.c (props changed) head/net/openbgpd/files/patch-bgpd_rde_filter.c (props changed) head/net/openbgpd/files/patch-bgpd_rde_prefix.c (props changed) head/net/openbgpd/files/patch-bgpd_rde_rib.c (props changed) head/net/openbgpd/files/patch-bgpd_rde_update.c (props changed) head/net/openbgpd/files/patch-bgpd_session.c (props changed) head/net/openbgpd/files/patch-bgpd_session.h (props changed) head/net/openbgpd/files/patch-bgpd_timer.c (props changed) head/net/openbgpd/files/patch-bgpd_util.c (props changed) head/net/openbgpd/files/patch-openbsd-compat_fmt_scaled.c (props changed) head/net/openbgpd/files/patch-openbsd-compat_hash.h (props changed) head/net/openbgpd/files/patch-openbsd-compat_if_media.h (props changed) head/net/openbgpd/files/patch-openbsd-compat_imsg-buffer.c (props changed) head/net/openbgpd/files/patch-openbsd-compat_imsg.c (props changed) head/net/openbgpd/files/patch-openbsd-compat_imsg.h (props changed) head/net/openbgpd/files/patch-openbsd-compat_openbsd-compat.h (props changed) head/net/openbgpd/files/patch-openbsd-compat_pfkey_compat.c (props changed) head/net/openbgpd/files/patch-openbsd-compat_util.h (props changed) head/net/openh323/files/patch-include-h4601.h (props changed) head/net/openh323/files/patch-include-mediafmt.h (props changed) head/net/openh323/files/patch-makefile.in (props changed) head/net/openh323/files/patch-openh323u.mak.in (props changed) head/net/openh323/files/patch-plugins-audio-GSM0610-Makefile.in (props changed) head/net/openh323/files/patch-plugins-audio-Speex-Makefile.in (props changed) head/net/openh323/files/patch-src-h261codec-cxx (props changed) head/net/openh323/files/patch-src-h323caps.cxx (props changed) head/net/openh323/files/patch-src-h323ep-cxx (props changed) head/net/openh323/files/patch-src-h323pluginmgr-cxx (props changed) head/net/openh323/files/patch-src-mediafmt.cxx (props changed) head/net/openldap24-server/files/extrapatch-Makefile.in (props changed) head/net/openldap24-server/files/patch-ITS7548 (props changed) head/net/openldap24-server/files/patch-build::top.mk (props changed) head/net/openldap24-server/files/patch-configure (props changed) head/net/openldap24-server/files/patch-include::ldap_defaults.h (props changed) head/net/openldap24-server/files/patch-libraries__libldap__tls_o.c (props changed) head/net/openldap24-server/files/patch-servers::slapd::Makefile.in (props changed) head/net/openldap24-server/files/patch-shlib-version (props changed) head/net/openldap24-server/files/patch-smbk5pwd-Makefile (props changed) head/net/openmcu/files/patch-filemembers_h (props changed) head/net/openmcu/files/patch-video_cxx (props changed) head/net/openmq/files/patch-imqbrokerd (props changed) head/net/openmq/files/patch-imqinit (props changed) head/net/openntpd/files/patch-Makefile (props changed) head/net/openntpd/files/patch-log.c (props changed) head/net/openntpd/files/patch-ntp.c (props changed) head/net/openntpd/files/patch-ntpd.8 (props changed) head/net/openntpd/files/patch-ntpd.c (props changed) head/net/openntpd/files/patch-ntpd.conf.5 (props changed) head/net/openntpd/files/patch-ntpd.h (props changed) head/net/openntpd/files/patch-parse.y (props changed) head/net/openospfd/files/patch-RTF_LLINFO-ARP-v2-fix (props changed) head/net/openospfd/files/patch-fix-libevent-READ-WRITE (props changed) head/net/openospfd/files/patch-ospfctl_parser.c (props changed) head/net/openospfd/files/patch-ospfctl_parser.h (props changed) head/net/openospfd/files/patch-ospfd_carp.c (props changed) head/net/openospfd/files/patch-ospfd_kroute.c (props changed) head/net/openospfd/files/patch-ospfd_ospfd.c (props changed) head/net/openospfd/files/patch-ospfd_ospfd.h (props changed) head/net/openospfd/files/patch-ospfd_packet.c (props changed) head/net/openospfd/files/patch-ospfd_parse.y (props changed) head/net/openradius/files/patch-ETCRules.mk (props changed) head/net/openradius/files/patch-Rules.mk (props changed) head/net/openradius/files/patch-common-Rules.mk (props changed) head/net/openradius/files/patch-common-misc.c (props changed) head/net/openradius/files/patch-common-misc.h (props changed) head/net/openradius/files/patch-constants.h (props changed) head/net/openradius/files/patch-language-Rules.mk (props changed) head/net/openser/files/patch-Makefile (props changed) head/net/openser/files/patch-Makefile.defs (props changed) head/net/openslp/files/patch-aa (props changed) head/net/openslp/files/patch-ac (props changed) head/net/openslp/files/patch-slp_net (props changed) head/net/opentracker/files/patch-Makefile (props changed) head/net/opentracker/files/patch-ot_accesslist.c (props changed) head/net/openvswitch/files/patch-bsd-netdev.diff (props changed) head/net/ortp/files/patch-src::stun.c (props changed) head/net/osrtspproxy/files/patch-Makefile.in (props changed) head/net/osrtspproxy/files/patch-libapp-Makefile.in (props changed) head/net/osrtspproxy/files/patch-libapp-tlist.h (props changed) head/net/osrtspproxy/files/patch-librtsp-Makefile.in (props changed) head/net/osrtspproxy/files/patch-rtspproxy-Makefile.in (props changed) head/net/ossp-sa/files/patch-Makefile.in (props changed) head/net/ossp-sa/files/patch-sa.h (props changed) head/net/p5-Crypt-DH-GMP/files/patch-Makefile.PL (props changed) head/net/p5-File-Rsync/files/patch-Makefile.PL (props changed) head/net/p5-File-Rsync/files/patch-makepm.PL (props changed) head/net/p5-Filesys-SmbClient/files/patch-Makefile.PL (props changed) head/net/p5-IO-Interface/files/patch-Interface.xs (props changed) head/net/p5-Net-ARP/files/patch-ARP.xs (props changed) head/net/p5-Net-ARP/files/patch-arp.h (props changed) head/net/p5-Net-ARP/files/patch-arp_lookup_bsd.c (props changed) head/net/p5-Net-ARP/files/patch-ppport.h (props changed) head/net/p5-Net-ARP/files/patch-send_packet_bsd.c (props changed) head/net/p5-Net-GitHub/files/patch-inc-Module-AutoInstall.pm (props changed) head/net/p5-Net-Hiveminder/files/patch-inc-Module-AutoInstall.pm (props changed) head/net/p5-Net-Pcap/files/patch-Makefile.PL (props changed) head/net/p5-Net-Pcap/files/patch-t__Utils.pm (props changed) head/net/p5-Net-RabbitMQ/files/patch-amqp.h (props changed) head/net/p5-Net-RawSock/files/patch-Makefile.PL (props changed) head/net/p5-Net-RawSock/files/patch-RawSock.pm (props changed) head/net/p5-Net-RawSock/files/patch-RawSock.xs (props changed) head/net/p5-Net-SMS-Clickatell/files/patch-lib-Net-SMS-Clickatell.pm (props changed) head/net/p5-Net-SNPP/files/patch-lib-Net-SNPP-Server.pm (props changed) head/net/p5-Net-XWhois/files/patch-examples::whois (props changed) head/net/p5-Net-XWhois/files/patch-lib::Net::XWhois.pm (props changed) head/net/p5-Net-Z3950-SimpleServer/files/patch-Makefile.PL (props changed) head/net/p5-Net-ext/files/patch-Gen.xs (props changed) head/net/p5-RPC-XML/files/patch-lib-RPC-XML.pm (props changed) head/net/p5-ResourcePool-Resource-SOAP-Lite/files/patch-Makefile.PL (props changed) head/net/packetdrill/files/patch-platforms.h (props changed) head/net/packetdrill/files/patch-symbols_freebsd.c (props changed) head/net/panoptis/files/patch-panoptis-pview.py (props changed) head/net/panoptis/files/patch-panoptis-timeslot.cpp (props changed) head/net/pchar/files/patch-Pctest.h (props changed) head/net/pchar/files/patch-PctestIpv4.h (props changed) head/net/pchar/files/patch-PctestIpv6.h (props changed) head/net/pchar/files/patch-main.cc (props changed) head/net/pcnfsd/files/patch-aa (props changed) head/net/pcnfsd/files/patch-ab (props changed) head/net/pcnfsd/files/patch-ac (props changed) head/net/pcnfsd/files/patch-ad (props changed) head/net/pcnfsd/files/patch-ae (props changed) head/net/pcnfsd/files/patch-utmp (props changed) head/net/pecl-radius/files/patch-radius.c (props changed) head/net/pen/files/patch-Makefile.in (props changed) head/net/pfflowd/files/patch-Makefile (props changed) head/net/pfflowd/files/patch-pfflowd.c (props changed) head/net/pfflowd/files/patch-pfflowd.h (props changed) head/net/pfinger/files/patch-src::configfile.c (props changed) head/net/pfinger/files/patch-src::utmplib.c (props changed) head/net/php5-soap/files/patch-soap.c (props changed) head/net/php52-soap/files/patch-soap.c (props changed) head/net/php53-soap/files/patch-soap.c (props changed) head/net/php55-soap/files/patch-soap.c (props changed) head/net/pimdd/files/extra-patch-defs.h (props changed) head/net/pimdd/files/patch-Makefile (props changed) head/net/pimdd/files/patch-config.c (props changed) head/net/pimdd/files/patch-debug.c (props changed) head/net/pimdd/files/patch-pim.c (props changed) head/net/pimdd/files/patch-pimdd.h (props changed) head/net/pimdd/files/patch-trace.c (props changed) head/net/pipsecd/files/patch-aa (props changed) head/net/pipsecd/files/patch-ab (props changed) head/net/pipsecd/files/patch-ac (props changed) head/net/pipsecd/files/patch-ad (props changed) head/net/pload/files/patch-Imakefile (props changed) head/net/pload/files/patch-ioctl_stats.c (props changed) head/net/pload/files/patch-pload.c (props changed) head/net/pload/files/patch-pload.man (props changed) head/net/plugdaemon/files/patch-Makefile (props changed) head/net/pmf/files/patch-Makefile (props changed) head/net/pmf/files/patch-c_packages__Makefile (props changed) head/net/pmf/files/patch-c_packages__safe_malloc__Makefile (props changed) head/net/pmf/files/patch-c_packages__safe_malloc__fatal.c (props changed) head/net/pmf/files/patch-config.h (props changed) head/net/pmf/files/patch-error.c (props changed) head/net/pmf/files/patch-main.c (props changed) head/net/pmf/files/patch-misc.c (props changed) head/net/pmf/files/patch-tty.c (props changed) head/net/poptop/files/patch-Makefile.in (props changed) head/net/poptop/files/patch-compat.c (props changed) head/net/poptop/files/patch-defaults.h (props changed) head/net/poptop/files/patch-plugins_Makefile (props changed) head/net/poptop/files/patch-plugins_pptpd-logwtmp.c (props changed) head/net/poptop/files/patch-pptpctrl.c (props changed) head/net/poptop/files/patch-pptpd.8 (props changed) head/net/poptop/files/patch-pptpd.c (props changed) head/net/poptop/files/patch-pptpd.conf.5 (props changed) head/net/portfwd/files/patch-Makefile.in (props changed) head/net/portfwd/files/patch-doc::Makefile.in (props changed) head/net/portfwd/files/patch-src_fd_set.cc (props changed) head/net/pppd23/files/extra-patch-no-logf (props changed) head/net/pppd23/files/patch-aa (props changed) head/net/pppd23/files/patch-ab (props changed) head/net/pppoa/files/patch-ab (props changed) head/net/pppoa/files/patch-doc-install (props changed) head/net/pppoa/files/patch-src-install (props changed) head/net/pppoa/files/patch-src_modem_run.c (props changed) head/net/proxy-suite/files/patch-com-socket.c (props changed) head/net/proxy-suite/files/patch-config.h.in (props changed) head/net/proxy-suite/files/patch-configure.in (props changed) head/net/proxychains/files/patch-proxychains-libproxychains.c (props changed) head/net/pvm++/files/patch-configure (props changed) head/net/pvm/files/patch-ab (props changed) head/net/pvm/files/patch-ac (props changed) head/net/pvm/files/patch-pvmgetarch (props changed) head/net/pvm/files/patch-src-global.h (props changed) head/net/pvm/files/patch-src-pmsg.c (props changed) head/net/pxe/files/patch-pxe.cc (props changed) head/net/py-beanstalkc/files/patch-setup.py (props changed) head/net/py-impacket/files/patch-setup.py (props changed) head/net/py-msrplib/files/patch-connect.py (props changed) head/net/py-msrplib/files/patch-session.py (props changed) head/net/py-netlib/files/patch-setup.py (props changed) head/net/py-pcapy/files/patch-setup.py (props changed) head/net/py-pypcap/files/patch-pcap.pyx (props changed) head/net/py-pypcap/files/patch-setup.py (props changed) head/net/py-pysendfile/files/patch-setup.py (props changed) head/net/py-soappy-devel/files/patch-python25 (props changed) head/net/py-soappy/files/patch-python25 (props changed) head/net/py-txamqp/files/patch-src__txamqp__codec.py (props changed) head/net/py-xmlrpc/files/patch-extra (props changed) head/net/py-xmlrpc/files/patch-src_rpcBase64.c (props changed) head/net/py-xmlrpc/files/patch-src_rpcClient.c (props changed) head/net/py-xmlrpc/files/patch-src_rpcDate.c (props changed) head/net/py-xmlrpc/files/patch-src_rpcDispatch.c (props changed) head/net/py-xmlrpc/files/patch-src_rpcSource.c (props changed) head/net/py-xmlrpc/files/patch-src_rpcUtils.c (props changed) head/net/pygopherd/files/patch-doc::pygopherd.8 (props changed) head/net/pygopherd/files/patch-pygopherd (props changed) head/net/pygopherd/files/patch-pygopherd.conf (props changed) head/net/pygopherd/files/patch-setup.py (props changed) head/net/pynids/files/patch-libnids-1.24__src__libnids.c (props changed) head/net/pynids/files/patch-setup.py (props changed) head/net/qadsl/files/patch-etc::Makefile.in (props changed) head/net/qadsl/files/patch-man::qadsl.8 (props changed) head/net/qadsl/files/patch-man::qadsl.conf.5 (props changed) head/net/qadsl/files/patch-src::http.c (props changed) head/net/qadsl/files/patch-src::lock.c (props changed) head/net/qadsl/files/patch-src::log.c (props changed) head/net/qtweetlib/files/patch-CMakeLists.txt (props changed) head/net/queso/files/patch-01 (props changed) head/net/queso/files/patch-02 (props changed) head/net/rabbitmq-c-devel/files/patch-configure.ac (props changed) head/net/rabbitmq-c-devel/files/patch-tools_unix_process.c (props changed) head/net/rabbitmq-c/files/patch-configure.ac (props changed) head/net/rabbitmq-c/files/patch-tools_common.c (props changed) head/net/radiusclient/files/patch-configure (props changed) head/net/radiusclient/files/patch-ltmain.sh (props changed) head/net/radiusd-cistron/files/patch-Make.inc (props changed) head/net/radiusd-cistron/files/patch-Makefile.BSD (props changed) head/net/radiusd-cistron/files/patch-acct.c (props changed) head/net/radiusd-cistron/files/patch-conf.h (props changed) head/net/radiusd-cistron/files/patch-radiusd.c (props changed) head/net/radiusd-cistron/files/patch-raduse (props changed) head/net/radiusd-cistron/files/patch-radwho.c (props changed) head/net/radiusd-cistron/files/patch-sysdep.h (props changed) head/net/radvd/files/patch-device-bsd44.c (props changed) head/net/raggle/files/patch-Makefile (props changed) head/net/rdesktop/files/patch-configure (props changed) head/net/rdist6/files/patch-ad (props changed) head/net/rdist6/files/patch-ae (props changed) head/net/rdist6/files/patch-ag (props changed) head/net/rdist6/files/patch-ah (props changed) head/net/rdist6/files/patch-ai (props changed) head/net/rdist6/files/patch-aj (props changed) head/net/rdist6/files/patch-client.c (props changed) head/net/rdist6/files/patch-defs.h (props changed) head/net/rdist6/files/patch-docmd.c (props changed) head/net/rdist6/files/patch-mkstemp (props changed) head/net/rdist6/files/patch-progname (props changed) head/net/rdist6/files/patch-setargs.c (props changed) head/net/redir/files/patch-Makefile (props changed) head/net/reposado/files/patch-reposadocommon.py (props changed) head/net/reposado/files/patch-setup.py (props changed) head/net/rfbproxy/files/patch-rfbproxy.c (props changed) head/net/rinetd/files/patch-rinetd.c (props changed) head/net/rinetd/files/patch-select2poll (props changed) head/net/ris/files/patch-binlsrv.py (props changed) head/net/ris/files/patch-decode.py (props changed) head/net/ris/files/patch-fixloader.py (props changed) head/net/ris/files/patch-hexdump.py (props changed) head/net/ris/files/patch-infdump.py (props changed) head/net/ris/files/patch-infparser.py (props changed) head/net/ris/files/patch-modldr.py (props changed) head/net/rmsg/files/patch-aa (props changed) head/net/rsync/files/extrapatch-renamed-flags.diff (props changed) head/net/rtg/files/patch-cgilib-cgi.c (props changed) head/net/rtg/files/patch-config-config.h.in (props changed) head/net/rtg/files/patch-configure (props changed) head/net/rtg/files/patch-etc-Makefile.in (props changed) head/net/rtg/files/patch-etc-rtg.php (props changed) head/net/rtg/files/patch-etc-rtgtargmkr.pl.in (props changed) head/net/rtg/files/patch-etc-view.php (props changed) head/net/rtg/files/patch-man-rtgplot.1 (props changed) head/net/rtg/files/patch-man-rtgpoll.1 (props changed) head/net/rtg/files/patch-src-rtg.h (props changed) head/net/rtg/files/patch-src-rtgplot.c (props changed) head/net/rtg/files/patch-src-rtgplot.h (props changed) head/net/rtg/files/patch-src-rtgpoll.c (props changed) head/net/rtpproxy/files/patch-freebsd_rtpproxy.in (props changed) head/net/rtptools/files/patch-ab (props changed) head/net/rtptools/files/patch-ac (props changed) head/net/rtptools/files/patch-ad (props changed) head/net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec (props changed) head/net/rubygem-omniauth-oauth2/files/patch-oauth2-ver (props changed) head/net/rude/files/patch-crude::Makefile.in (props changed) head/net/rude/files/patch-crude::main.c (props changed) head/net/rude/files/patch-grude::grude (props changed) head/net/rude/files/patch-include::rude.h (props changed) head/net/rude/files/patch-rude::Makefile.in (props changed) head/net/rude/files/patch-rude::main.c (props changed) head/net/samba36/files/patch-lib__replace__system__wait.h (props changed) head/net/samba36/files/patch-lib__tevent__tevent_signal.c (props changed) head/net/samba36/files/patch-nsswitch__pam_winbind.c (props changed) head/net/samba36/files/patch-nsswitch__wins_freebsd.c (props changed) head/net/samba36/files/patch-source3__Makefile.in (props changed) head/net/samba36/files/patch-source3__configure.in (props changed) head/net/samba36/files/patch-source3__include__includes.h (props changed) head/net/samba36/files/patch-source3__lib__fault.c (props changed) head/net/samba36/files/patch-source3__lib__system.c (props changed) head/net/samba36/files/patch-source3__m4__aclocal.m4 (props changed) head/net/samba36/files/patch-source3__smbd__quotas.c (props changed) head/net/samba36/files/patch-source3__smbd__statvfs.c (props changed) head/net/samba36/files/patch-source3__utils__net_time.c (props changed) head/net/samba4wins/files/patch-heimdal_build__config.h (props changed) head/net/samba4wins/files/patch-lib__ldb__config.mk (props changed) head/net/samba4wins/files/patch-scripting__ejs__config.mk (props changed) head/net/samba4wins/files/patch-torture__config.mk (props changed) head/net/samba4wins/files/patch-utils__config.mk (props changed) head/net/sbd/files/patch-aa (props changed) head/net/sbd/files/patch-doexec_unix.h (props changed) head/net/scapy/files/patch-setup.py (props changed) head/net/scribe/files/patch-if__bucketupdater.thrift (props changed) head/net/scribe/files/patch-src-file.cpp (props changed) head/net/scribe/files/patch-src__Makefile.am (props changed) head/net/sdl_net/files/patch-SDLnetsys.h (props changed) head/net/sendemail/files/patch-sendEmail (props changed) head/net/sendfile/files/patch-aa (props changed) head/net/sendfile/files/patch-ab (props changed) head/net/sendfile/files/patch-ac (props changed) head/net/sendfile/files/patch-ad (props changed) head/net/sendsms/files/patch-sendsms (props changed) head/net/ser/files/patch-Makefile (props changed) head/net/ser/files/patch-Makefile.defs (props changed) head/net/ser/files/patch-Makefile.rules (props changed) head/net/ser/files/patch-cfg.lex (props changed) head/net/ser/files/patch-cfg.y (props changed) head/net/ser/files/patch-config.h (props changed) head/net/ser/files/patch-daemonize.c (props changed) head/net/ser/files/patch-fifo_server.c (props changed) head/net/ser/files/patch-globals.h (props changed) head/net/ser/files/patch-main.c (props changed) head/net/ser/files/patch-mem::mem.h (props changed) head/net/ser/files/patch-modules::acc::acc_mod.c (props changed) head/net/ser/files/patch-modules::acc::etc::radiusclient.conf (props changed) head/net/ser/files/patch-modules::auth::auth_mod.c (props changed) head/net/ser/files/patch-modules::auth::auth_mod.h (props changed) head/net/ser/files/patch-modules::auth::common.c (props changed) head/net/ser/files/patch-modules::auth::doc::auth_user.sgml (props changed) head/net/ser/files/patch-modules::auth_radius::authrad_mod.c (props changed) head/net/ser/files/patch-modules::check_ua::Makefile (props changed) head/net/ser/files/patch-modules::check_ua::check_ua.c (props changed) head/net/ser/files/patch-modules::check_ua::tailq.h (props changed) head/net/ser/files/patch-modules::group_radius::grouprad_mod.c (props changed) head/net/ser/files/patch-modules::mysql::my_con.c (props changed) head/net/ser/files/patch-modules::nathelper::moh.c (props changed) head/net/ser/files/patch-modules::nathelper::nathelper.c (props changed) head/net/ser/files/patch-modules::nathelper::nathelper.h (props changed) head/net/ser/files/patch-modules::nathelper::natping.c (props changed) head/net/ser/files/patch-modules::postgres::db_val.c (props changed) head/net/ser/files/patch-modules::postgres::dbase.c (props changed) head/net/ser/files/patch-modules::registrar::doc::registrar_user.sgml (props changed) head/net/ser/files/patch-modules::registrar::reg_mod.c (props changed) head/net/ser/files/patch-modules::registrar::reg_mod.h (props changed) head/net/ser/files/patch-modules::registrar::reply.c (props changed) head/net/ser/files/patch-modules::tm::t_lookup.c (props changed) head/net/ser/files/patch-modules::tm::t_msgbuilder.c (props changed) head/net/ser/files/patch-modules::uri_radius::urirad_mod.c (props changed) head/net/ser/files/patch-modules::usrloc::urecord.c (props changed) head/net/ser/files/patch-msg_translator.c (props changed) head/net/ser/files/patch-parser::msg_parser.h (props changed) head/net/ser/files/patch-parser::parse_hostport.c (props changed) head/net/ser/files/patch-server (props changed) head/net/ser/files/patch-udp_server.c (props changed) head/net/service-discovery-applet/files/patch-plugins_gconfterminal.py.in (props changed) head/net/service-discovery-applet/files/patch-plugins_xvncviewer.py.in (props changed) head/net/service-discovery-applet/files/patch-src_service-discovery-applet.in (props changed) head/net/service-discovery-applet/files/patch-src_service-discovery-config.in (props changed) head/net/serviio/files/patch-logging (props changed) head/net/shaperprobe/files/patch-diffprobe.h (props changed) head/net/shaperprobe/files/patch-measflow.c (props changed) head/net/shaperprobe/files/patch-prober.c (props changed) head/net/shaperprobe/files/patch-tcpclient.h (props changed) head/net/shaperprobe/files/patch-tcpserver.h (props changed) head/net/sharity-light/files/patch-aa (props changed) head/net/sharity-light/files/patch-ad (props changed) head/net/sharity-light/files/patch-ae (props changed) head/net/sharity-light/files/patch-getenv (props changed) head/net/silc-client/files/extra-patch-apps__irssi__Makefile.in (props changed) head/net/silc-client/files/extra-patch-apps__irssi__src__fe-common__Makefile.in (props changed) head/net/silc-client/files/extra-patch-apps__irssi__src__fe-common__silc__Makefile.in (props changed) head/net/silc-client/files/extra-patch-apps__irssi__src__perl__silc__Makefile.PL.in (props changed) head/net/silc-client/files/extra-patch-apps__irssi__src__silc__core__Makefile.in (props changed) head/net/silc-client/files/extra-patch-apps__irssi__src__silc__core__client_ops.c (props changed) head/net/silc-client/files/extra-patch-apps__irssi__src__silc__core__silc-core.c (props changed) head/net/silc-client/files/extra-patch-apps__irssi__src__silc__core__silc-expandos.c (props changed) head/net/silc-client/files/patch-apps__irssi__Makefile.in (props changed) head/net/silc-client/files/patch-apps__irssi__src__fe-common__core__Makefile.in (props changed) head/net/silc-client/files/patch-doc__Makefile.in (props changed) head/net/silc-server/files/patch-apps:silcd:Makefile.in (props changed) head/net/silc-server/files/patch-configure (props changed) head/net/silc-server/files/patch-doc:Makefile.in (props changed) head/net/silc-server/files/patch-doc:example_silcd.conf.in (props changed) head/net/siproxd/files/patch-aclocal.m4 (props changed) head/net/siproxd/files/patch-configure (props changed) head/net/siproxd/files/patch-doc_siproxd.conf.example (props changed) head/net/siproxd/files/patch-libltdl_aclocal.m4 (props changed) head/net/siproxd/files/patch-libltdl_configure (props changed) head/net/siproxd/files/patch-src__siproxd.c (props changed) head/net/skyfish/files/patch-8x (props changed) head/net/skyfish/files/patch-prefix (props changed) head/net/slirp/files/patch-configure (props changed) head/net/slirp/files/patch-mkpro (props changed) head/net/slirp/files/patch-ppp-pppdfncs.c (props changed) head/net/slirp/files/patch-ppp.c (props changed) head/net/slurm/files/patch-os.h (props changed) head/net/smb4k-kde4/files/patch-core-smb4kwalletmanager.cpp (props changed) head/net/smbldap-tools/files/patch-smbldap-config.pl (props changed) head/net/sniffit/files/patch-Makefile.in (props changed) head/net/sniffit/files/patch-sn_data.h (props changed) head/net/sniffit/files/patch-sn_interface.c (props changed) head/net/sniffit/files/patch-sn_resolv.c (props changed) head/net/sniffit/files/patch-sn_structs.h (props changed) head/net/sntop/files/patch-aa (props changed) head/net/spread-j/files/patch-build.xml (props changed) head/net/spread/files/patch-Makefile.in (props changed) head/net/spread/files/patch-auth-ip.c (props changed) head/net/spread/files/patch-auth-pword.c (props changed) head/net/spread/files/patch-configuration.c (props changed) head/net/spread/files/patch-docs__spmonitor.1 (props changed) head/net/spread/files/patch-docs__spread.1 (props changed) head/net/spread/files/patch-perl__Spread__Spread.pm (props changed) head/net/spread/files/patch-sample.spread.conf (props changed) head/net/spread/files/patch-session.c (props changed) head/net/spread/files/patch-sp.c (props changed) head/net/spread/files/patch-spread.c (props changed) head/net/spread4/files/patch-docs__spmonitor.1 (props changed) head/net/spread4/files/patch-docs__spread.1 (props changed) head/net/spserver/files/patch-Makefile (props changed) head/net/spserver/files/patch-gnutls_Makefile (props changed) head/net/spserver/files/patch-matrixssl_Makefile (props changed) head/net/spserver/files/patch-matrixssl_sslSocket.h (props changed) head/net/spserver/files/patch-openssl_Makefile (props changed) head/net/spserver/files/patch-spdispatcher.cpp (props changed) head/net/spserver/files/patch-speventcb.cpp (props changed) head/net/spserver/files/patch-spexecutor.cpp (props changed) head/net/spserver/files/patch-spioutils.cpp (props changed) head/net/spserver/files/patch-spserver.cpp (props changed) head/net/spserver/files/patch-spserver_Makefile (props changed) head/net/spserver/files/patch-spthreadpool.cpp (props changed) head/net/spserver/files/patch-testhttpmsg.cpp (props changed) head/net/spserver/files/patch-testthreadpool.cpp (props changed) head/net/spserver/files/patch-xyssl_Makefile (props changed) head/net/ss5/files/patch-Makefile.in (props changed) head/net/ss5/files/patch-src-SS5Utils.c (props changed) head/net/ssldump/files/extra-patch-aes (props changed) head/net/ssldump/files/patch-base_pcap-snoop.c (props changed) head/net/ssldump/files/patch-base_tcppack.c (props changed) head/net/ssldump/files/patch-ssl_ssl_analyze.c (props changed) head/net/ssldump/files/patch-ssl_ssldecode.c (props changed) head/net/ssldump/files/patch-ssldump.1 (props changed) head/net/ssmping/files/patch-makefile (props changed) head/net/ssvnc/files/patch-Makefile (props changed) head/net/stf-6rd-kmod/files/patch-stf_6rd_20100923-1.diff (props changed) head/net/stund/files/patch-Makefile (props changed) head/net/stund/files/patch-server.cxx (props changed) head/net/stund/files/patch-stun.cxx (props changed) head/net/tac_plus-libradius/files/patch-Makefile (props changed) head/net/tac_plus-libradius/files/patch-config.c (props changed) head/net/tac_plus-libradius/files/patch-db_null.c (props changed) head/net/tac_plus-libradius/files/patch-do_acct.c (props changed) head/net/tac_plus-libradius/files/patch-parse.c (props changed) head/net/tac_plus-libradius/files/patch-parse.h (props changed) head/net/tac_plus-libradius/files/patch-pwlib.c (props changed) head/net/tac_plus-libradius/files/patch-tac_plus.h (props changed) head/net/tac_plus4/files/extra-patch-bb (props changed) head/net/tac_plus4/files/patch-Makefile.in (props changed) head/net/tac_plus4/files/patch-choose_authen.c (props changed) head/net/tac_plus4/files/patch-opie_fn.c (props changed) head/net/tac_plus4/files/patch-parse.h (props changed) head/net/tac_plus4/files/patch-skey_fn.c (props changed) head/net/tac_plus4/files/patch-users_guide.in (props changed) head/net/tapidbus/files/patch-Makefile.am (props changed) head/net/tapidbus/files/patch-configure (props changed) head/net/tcpdstat/files/patch-net_read.c (props changed) head/net/tcpick/files/patch-src_lookup.h (props changed) head/net/tcpillust/files/patch-binread.c (props changed) head/net/tcpproxy/files/patch-configure (props changed) head/net/tcpsg/files/patch-tcpsg.c (props changed) head/net/tcpshow/files/patch-01 (props changed) head/net/tcpshow/files/patch-02 (props changed) head/net/tcptrace/files/patch-tcpdump.c.diff (props changed) head/net/tcptrace/files/patch-tcpdump.h.diff (props changed) head/net/tcptrace/files/patch-tcptrace.h.diff (props changed) head/net/tcptraceroute-devel/files/patch-configure (props changed) head/net/tcptraceroute/files/patch-tcptraceroute.c (props changed) head/net/tcpview/files/patch-Makefile (props changed) head/net/tcpview/files/patch-aa (props changed) head/net/tcpview/files/patch-ab (props changed) head/net/tcpview/files/patch-callbacks.c (props changed) head/net/tcpview/files/patch-capture.c (props changed) head/net/tcpview/files/patch-detail_udp.c (props changed) head/net/tcpview/files/patch-gencode.c (props changed) head/net/tcpview/files/patch-interface.h (props changed) head/net/tcpview/files/patch-print.c (props changed) head/net/tcpview/files/patch-print_nfs.c (props changed) head/net/tcpview/files/patch-print_null.c (props changed) head/net/tcpview/files/patch-print_tcp.c (props changed) head/net/tcpview/files/patch-print_udp.c (props changed) head/net/tcpview/files/patch-tcpslice.c (props changed) head/net/tcpview/files/patch-tcpview.h (props changed) head/net/tcpview/files/patch-util.c (props changed) head/net/tcpxtract/files/extra-patch-sessionlist.c (props changed) head/net/tcpxtract/files/extra-patch-tcpxtract.c (props changed) head/net/tdetect/files/patch-Makefile (props changed) head/net/tftpgrab/files/patch-Makefile.in (props changed) head/net/thcrut/files/patch-aa (props changed) head/net/thcrut/files/patch-ab (props changed) head/net/throttled/files/patch-src_throttled.h (props changed) head/net/tigervnc/files/patch-hw-vnc-off-by-one-error (props changed) head/net/tightvnc/files/patch-Imakefile (props changed) head/net/tightvnc/files/patch-Xvnc::config::cf::FreeBSD.cf (props changed) head/net/tightvnc/files/patch-Xvnc::config::cf::Imake.cf (props changed) head/net/tightvnc/files/patch-Xvnc::config::cf::vnclibs.def (props changed) head/net/tightvnc/files/patch-Xvnc::config::imake::imakemdep.h (props changed) head/net/tightvnc/files/patch-Xvnc::include::Xos.h (props changed) head/net/tightvnc/files/patch-Xvnc::programs::Xserver::dix::Imakefile (props changed) head/net/tightvnc/files/patch-Xvnc::programs::Xserver::hw::vnc::sockets.c (props changed) head/net/tightvnc/files/patch-Xvnc::programs::Xserver::os::Imakefile (props changed) head/net/tightvnc/files/patch-Xvnc::programs::Xserver::os::access.c (props changed) head/net/tightvnc/files/patch-vncserver (props changed) head/net/tightvnc/files/patch-vncviewer::Imakefile (props changed) head/net/tinyldap/files/patch-Makefile (props changed) head/net/tinyldap/files/patch-auth.c (props changed) head/net/tinyldap/files/patch-ldif.h (props changed) head/net/tinyldap/files/patch-md5password.c (props changed) head/net/tn5250j/files/patch-build.xml (props changed) head/net/torsocks/files/patch-Makefile.am (props changed) head/net/torsocks/files/patch-configure.in (props changed) head/net/torsocks/files/patch-doc_Makefile.am (props changed) head/net/torsocks/files/patch-src_Makefile.am (props changed) head/net/torsocks/files/patch-src_Makefile.in (props changed) head/net/torsocks/files/patch-src_torsocks.in (props changed) head/net/torsocks/files/patch-src_usewithtor.in (props changed) head/net/torsocks/files/patch-tests_Makefile.am (props changed) head/net/traceroute/files/patch-aa (props changed) head/net/traff/files/patch-readconfig.h (props changed) head/net/traff/files/patch-traff.c (props changed) head/net/traff/files/patch-traff.conf (props changed) head/net/trafshow/files/extra-patch-800074+ (props changed) head/net/trafshow/files/patch-show_dump.c (props changed) head/net/trafshow/files/patch-trafshow.c (props changed) head/net/trafshow3/files/patch-ac (props changed) head/net/trafshow3/files/patch-af (props changed) head/net/trafshow3/files/patch-ag (props changed) head/net/trafshow3/files/patch-ah (props changed) head/net/trafshow3/files/patch-configure (props changed) head/net/tramp/files/patch-configure.ac (props changed) head/net/tramp/files/patch-texi-Makefile.in (props changed) head/net/trickle/files/patch-trickle-overload.c (props changed) head/net/tridiavnc/files/patch-Imakefile (props changed) head/net/tridiavnc/files/patch-Xvnc::config::cf::Imake.cf (props changed) head/net/tridiavnc/files/patch-Xvnc::config::cf::Imake.tmpl (props changed) head/net/tridiavnc/files/patch-Xvnc::config::cf::vnclibs.def (props changed) head/net/tridiavnc/files/patch-Xvnc::config::cf::xfree86.cf (props changed) head/net/tridiavnc/files/patch-Xvnc::config::imake::imakemdep.h (props changed) head/net/tridiavnc/files/patch-Xvnc::include::Xos.h (props changed) head/net/tridiavnc/files/patch-Xvnc::programs::Xserver::dix::Imakefile (props changed) head/net/tridiavnc/files/patch-Xvnc::programs::Xserver::hw::vnc::rfb.h (props changed) head/net/tridiavnc/files/patch-Xvnc::programs::Xserver::hw::vnc::sockets.c (props changed) head/net/tridiavnc/files/patch-vncviewer::Imakefile (props changed) head/net/tsclient/files/patch-src_support.c (props changed) head/net/tsocks/files/patch-Makefile.in (props changed) head/net/tsocks/files/patch-configure (props changed) head/net/tsocks/files/patch-parser.c (props changed) head/net/tsocks/files/patch-readme (props changed) head/net/tsocks/files/patch-tsocks.1 (props changed) head/net/tsocks/files/patch-tsocks.8 (props changed) head/net/tucan/files/patch-core_config.py (props changed) head/net/twitux/files/patch-src_twitux-app.c (props changed) head/net/udt/files/patch-md5 (props changed) head/net/udt/files/patch-warning (props changed) head/net/ulxmlrpcpp/files/patch-ulxmlrpcpp-ulxmlrpcpp.h (props changed) head/net/unfs3/files/patch-configure.ac (props changed) head/net/unison232/files/patch-update.mli.diff (props changed) head/net/usbredir/files/patch-usbredirserver-usbredirserver.c (props changed) head/net/usbredir/files/patch-usbredirtestclient-usbredirtestclient.c (props changed) head/net/ushare/files/patch-ushare (props changed) head/net/ushare/files/patch-ushare.c (props changed) head/net/ushare/files/patch-ushare.h (props changed) head/net/utftpd/files/patch-utftpd_recv.c (props changed) head/net/v6eval/files/patch-Makefile (props changed) head/net/v6eval/files/patch-bin-remotes-Makefile (props changed) head/net/v6eval/files/patch-bin-remotes-manual-Makefile (props changed) head/net/v6eval/files/patch-bin-remotes-unknown-Makefile (props changed) head/net/v6eval/files/patch-bin_dhcomp_dhcomp.cc (props changed) head/net/v6eval/files/patch-bin_dhgen_dhgen.cc (props changed) head/net/v6eval/files/patch-bin_sigcomp_sigcomp.c (props changed) head/net/v6eval/files/patch-etc-Makefile (props changed) head/net/v6eval/files/patch-include-Makefile (props changed) head/net/v6eval/files/patch-lib_Cm_CmAgent.h (props changed) head/net/v6eval/files/patch-lib_Cm_CmLexer.h (props changed) head/net/v6eval/files/patch-lib_Cm_CmMain.cc (props changed) head/net/v6eval/files/patch-lib_Cm_CmMain.h (props changed) head/net/v6eval/files/patch-lib_Cm_CmSocket.h (props changed) head/net/v6eval/files/patch-lib_Pz_McIKE.cc (props changed) head/net/v6eval/files/patch-lib_Pz_McSNMP.cc (props changed) head/net/v6eval/files/patch-lib_Pz_MvFunction.cc (props changed) head/net/v6eval/files/patch-lib_Pz_PvAction.cc (props changed) head/net/v6eval/files/patch-lib_pkt_Makefile (props changed) head/net/v6eval/files/patch-lib_pkt_PktClient.h (props changed) head/net/v6eval/files/patch-sample-Makefile (props changed) head/net/v6eval/files/patch-script-pmod-V6evalCommon-V6evalCommon.pm (props changed) head/net/vblade/files/patch-makefile (props changed) head/net/vde/files/patch-Makefile (props changed) head/net/vde/files/patch-hash.c (props changed) head/net/vde/files/patch-port.c (props changed) head/net/vde/files/patch-qemu::Makefile (props changed) head/net/vde/files/patch-qemu::vdeq.c (props changed) head/net/vde/files/patch-slirpvde::Makefile (props changed) head/net/vde/files/patch-slirpvde::ip.h (props changed) head/net/vde/files/patch-slirpvde::libslirp.h (props changed) head/net/vde/files/patch-slirpvde::slirp_config.h (props changed) head/net/vde/files/patch-slirpvde::slirpvde.c (props changed) head/net/vde/files/patch-slirpvde::tcp.h (props changed) head/net/vde/files/patch-tuntap.c (props changed) head/net/vde/files/patch-vde.h (props changed) head/net/vde/files/patch-vde_plug.c (props changed) head/net/vde/files/patch-vde_switch.c (props changed) head/net/vde/files/patch-vdetaplib::Makefile (props changed) head/net/vde/files/patch-vdetaplib::libvdetap.c (props changed) head/net/vde/files/patch-vdetaplib::test.c (props changed) head/net/vde/files/patch-vdetaplib::vdetap.c (props changed) head/net/vde2/files/patch-src__dpipe.c (props changed) head/net/vinagre/files/patch-Makefile.in (props changed) head/net/vinagre/files/patch-plugins_vnc_vinagre-vnc-listener-dialog.c (props changed) head/net/vino/files/patch-configure (props changed) head/net/vino/files/patch-server_libvncserver_sockets.c (props changed) head/net/vino/files/patch-server_vino-http.c (props changed) head/net/vmware-vsphere-cli/files/patch-Makefile.PL (props changed) head/net/vnc/files/extra-patch-fix_Xvnc_no_valid_address (props changed) head/net/vnc/files/extra-patch-xc-config-util-printver.c (props changed) head/net/vnc/files/extra-patch-xfree86 (props changed) head/net/vnc/files/patch-unix-x0vncserver-x0vncserver.cxx (props changed) head/net/vnc/files/patch-unix-xc-programs-Xserver-vnc-Imakefile (props changed) head/net/vnc/files/patch-xc-programs-Xserver-vnc-vncExtInit.cc (props changed) head/net/vncreflector/files/patch-Makefile (props changed) head/net/vncreflector/files/patch-logging.c (props changed) head/net/vncreflector/files/patch-main.c (props changed) head/net/vncreflector/files/patch-region.c (props changed) head/net/vnstat/files/patch-Makefile (props changed) head/net/vtun/files/patch-Makefile.in (props changed) head/net/vtun/files/patch-main.c (props changed) head/net/wackamole/files/patch-alarm.c (props changed) head/net/wackamole/files/patch-config_gram.y (props changed) head/net/wackamole/files/patch-configuration.c (props changed) head/net/wackamole/files/patch-defines.h (props changed) head/net/wackamole/files/patch-wackamole.c (props changed) head/net/wired-tracker/files/patch-Makefile.in (props changed) head/net/wired-tracker/files/patch-configure (props changed) head/net/wired-tracker/files/patch-trackerd-trackerdctl.in (props changed) head/net/wired/files/patch-Makefile.in (props changed) head/net/wired/files/patch-wired-wiredctl.in (props changed) head/net/wireshark/files/patch-Makefile.in (props changed) head/net/wireshark/files/patch-configure (props changed) head/net/wireshark/files/patch-epan_Makefile.in (props changed) head/net/wizd/files/patch-nkfwrap__nkfwrap_test.c (props changed) head/net/wizd/files/patch-wizd_http.c (props changed) head/net/wizd/files/patch-wizd_menu.c (props changed) head/net/wmnet/files/patch-aa (props changed) head/net/wmnet/files/patch-if.c (props changed) head/net/wmnet/files/patch-main.c (props changed) head/net/wmnet/files/patch-wmgeneral.c (props changed) head/net/wmnet/files/patch-wmnet-mask.xbm (props changed) head/net/wmnet/files/patch-wmnet-master.xpm (props changed) head/net/wmnetmon/files/patch-Makefile.in (props changed) head/net/wmnetmon/files/patch-configure (props changed) head/net/wmnetmon/files/patch-configure.in (props changed) head/net/wmnetmon/files/patch-leds.c (props changed) head/net/wmnetmon/files/patch-list.c (props changed) head/net/wmnetmon/files/patch-pinger.c (props changed) head/net/wmnetmon/files/patch-pinger.h (props changed) head/net/wmnetmon/files/patch-tcpmonitor.c (props changed) head/net/wmpiki/files/patch-wmpiki.c (props changed) head/net/wmwave/files/patch-wmwave.c (props changed) head/net/wmwifi/files/patch-configure.in (props changed) head/net/wmwifi/files/patch-wireless.c (props changed) head/net/wmwifi/files/patch-wmwifi.c (props changed) head/net/wmwlmon/files/extra-patch-wl.c (props changed) head/net/wmwlmon/files/extra-patch-wmwlmon.1 (props changed) head/net/wol/files/patch-lib-getline.h (props changed) head/net/xboxproxy/files/patch-configure (props changed) head/net/xferstats/files/patch-aa (props changed) head/net/xferstats/files/patch-ab (props changed) head/net/xferstats/files/patch-ac (props changed) head/net/xipdump/files/patch-XmgMacro.c (props changed) head/net/xipdump/files/patch-configure (props changed) head/net/xipdump/files/patch-xipshcut.c (props changed) head/net/xisp/files/patch-Makefile (props changed) head/net/xisp/files/patch-pcode.c (props changed) head/net/xmlrpc-c/files/patch-src-Makefile (props changed) head/net/xorp/files/patch-mibs-bgp4_mib_1657_bgp4pathattrtable.cc (props changed) head/net/xorp/files/patch-mibs-bgp4_mib_1657_bgppeertable.cc (props changed) head/net/xorp/files/patch-mibs-xorpevents.cc (props changed) head/net/xprobe/files/patch-Makefile.in (props changed) head/net/xprobe/files/patch-docs:xprobe2.1 (props changed) head/net/xprobe/files/patch-libs-external-USI++-src-ip.cc (props changed) head/net/xprobe/files/patch-libs-external-USI++-src-misc.cc (props changed) head/net/xprobe/files/patch-libs-external-USI++-src-usi++-tcp.h (props changed) head/net/xprobe/files/patch-src-Makefile.in (props changed) head/net/xprobe/files/patch-src_xpmodules_os_probe_smb_smbutil.h (props changed) head/net/xpvm/files/patch-src:Makefile.aimk (props changed) head/net/xpvm/files/patch-src:Makefile.xpvm (props changed) head/net/xpvm/files/patch-tracer:Makefile.aimk (props changed) head/net/xrdp-devel/files/patch-common__os_calls.c (props changed) head/net/xrdp-devel/files/patch-sesman__Makefile.am (props changed) head/net/xrdp-devel/files/patch-xrdp__Makefile.am (props changed) head/net/xrdp/files/patch-common__os_calls.c (props changed) head/net/xrdp/files/patch-sesman__Makefile.am (props changed) head/net/xrdp/files/patch-sesman__session_1.patch (props changed) head/net/xrdp/files/patch-xrdp__Makefile.am (props changed) head/net/yaph/files/patch-::config.h.in (props changed) head/net/yaph/files/patch-::configure (props changed) head/net/yaph/files/patch-yaph::includes.h (props changed) head/net/yaph/files/patch-yaph::init.c (props changed) head/net/yate/files/extra-patch-noalsa (props changed) head/net/yptransitd/files/patch-freebsd-master-passwd (props changed) head/net/yptransitd/files/patch-src::confparse.y (props changed) head/net/yptransitd/files/patch-src::log.c (props changed) head/net/zebra/files/patch-configure (props changed) head/net/zebra/files/patch-ioctl.c (props changed) head/net/zebra/files/patch-ospfd__ospf_spf.c (props changed) head/net/zebra/files/patch-ospfd_ospf_lsa.c (props changed) head/net/zebra/files/patch-zebra-kernel_socket.c (props changed) head/net/zebra/files/patch-zebra_Makefile.in (props changed) head/news/atp/files/patch-aa (props changed) head/news/c-nocem/files/patch-c-nocem.in (props changed) head/news/c-nocem/files/patch-configure (props changed) head/news/cnews/files/patch-aa (props changed) head/news/cnews/files/patch-ab (props changed) head/news/cnews/files/patch-actflag.c (props changed) head/news/cnews/files/patch-batcher.c (props changed) head/news/cnews/files/patch-bdecode.c (props changed) head/news/cnews/files/patch-bencode.c (props changed) head/news/cnews/files/patch-c7decode.c (props changed) head/news/cnews/files/patch-c7encode.c (props changed) head/news/cnews/files/patch-control.c (props changed) head/news/cnews/files/patch-defaults.c (props changed) head/news/cnews/files/patch-error.c (props changed) head/news/cnews/files/patch-fgetfln.c (props changed) head/news/cnews/files/patch-hdbm.c (props changed) head/news/cnews/files/patch-hdbm.h (props changed) head/news/cnews/files/patch-histinfo.c (props changed) head/news/cnews/files/patch-hostname.c (props changed) head/news/cnews/files/patch-morefds.c (props changed) head/news/cnews/files/patch-newslock.c (props changed) head/news/cnews/files/patch-now.c (props changed) head/news/cnews/files/patch-readnews.c (props changed) head/news/cnews/files/patch-rerror.c (props changed) head/news/cnews/files/patch-stdfdopen.c (props changed) head/news/cnews/files/patch-trbatch (props changed) head/news/cnews/files/patch-trbatch.c (props changed) head/news/cnews/files/patch-warning.c (props changed) head/news/crashmail/files/patch-aa (props changed) head/news/crashmail/files/patch-ab (props changed) head/news/crashmail/files/patch-ac (props changed) head/news/crashmail/files/patch-ad (props changed) head/news/crashmail/files/patch-ae (props changed) head/news/diablo/files/patch-aa (props changed) head/news/fidogate-ds/files/patch-rfc2ftn.c (props changed) head/news/fidogate/files/patch-Makefile (props changed) head/news/fidogate/files/patch-config.make (props changed) head/news/fidogate/files/patch-dbz.c (props changed) head/news/fidogate/files/patch-log.c (props changed) head/news/fidogate/files/patch-rfc2ftn.c (props changed) head/news/golded+/files/patch-GNUmakef.def (props changed) head/news/golded+/files/patch-golded3-gckeys.cpp (props changed) head/news/golded+/files/patch-golded3-geinit.cpp (props changed) head/news/golded+/files/patch-goldlib-gmb3-gmohuds.h (props changed) head/news/golded+/files/patch-goldlib-gmb3-gmohuds2.cpp (props changed) head/news/golded+/files/patch-goldlib-gmb3-gmohuds4.cpp (props changed) head/news/gup/files/patch-aa (props changed) head/news/gup/files/patch-ab (props changed) head/news/gup/files/patch-ac (props changed) head/news/gup/files/patch-ad (props changed) head/news/hellanzb/files/patch-Hellanzb-HellaXMLRPC_HtPasswdAuth.py (props changed) head/news/hellanzb/files/patch-Hellanzb-HellaXMLRPC_xmlrpc.py (props changed) head/news/hellanzb/files/patch-Hellanzb_HellaReactor.py (props changed) head/news/hellanzb/files/patch-nodocs-setup.py (props changed) head/news/husky-base-devel/files/patch-huskymak.cfg (props changed) head/news/husky-base/files/patch-huskymak.cfg (props changed) head/news/husky-bsopack/files/patch-Makefile (props changed) head/news/husky-fidoconf-devel/files/patch-Makefile (props changed) head/news/husky-fidoconf-devel/files/patch-doc::Makefile (props changed) head/news/husky-fidoconf-devel/files/patch-makefile.inc (props changed) head/news/husky-fidoconf-devel/files/patch-man::Makefile (props changed) head/news/husky-fidoconf-devel/files/patch-man::linkedto.1 (props changed) head/news/husky-fidoconf-devel/files/patch-tparser.c (props changed) head/news/husky-fidoconf/files/patch-Makefile (props changed) head/news/husky-fidoconf/files/patch-doc::Makefile (props changed) head/news/husky-fidoconf/files/patch-man::linkedto.1 (props changed) head/news/husky-hpt-devel/files/patch-doc::Makefile (props changed) head/news/husky-hpt/files/patch-doc::Makefile (props changed) head/news/husky-hpucode/files/patch-Makefile (props changed) head/news/husky-htick-devel/files/patch-doc::Makefile (props changed) head/news/husky-htick/files/patch-doc::Makefile (props changed) head/news/husky-msged/files/patch-Makefile (props changed) head/news/husky-msged/files/patch-fido.c (props changed) head/news/husky-msged/files/patch-maps-makefile.husky (props changed) head/news/husky-msged/files/patch-maps-makemaps.c (props changed) head/news/husky-msged/files/patch-msg.c (props changed) head/news/husky-msged/files/patch-nshow.c (props changed) head/news/husky-smapi-devel/files/patch-Makefile (props changed) head/news/husky-smapi-devel/files/patch-makefile.inc1 (props changed) head/news/husky-smapi/files/patch-Makefile (props changed) head/news/ifmail/files/patch-CONFIG (props changed) head/news/ifmail/files/patch-clibrary.h (props changed) head/news/ifmail/files/patch-config.h (props changed) head/news/ifmail/files/patch-directory.h (props changed) head/news/ifmail/files/patch-flagexp.l (props changed) head/news/ifmail/files/patch-lutil.c (props changed) head/news/ifmail/files/patch-nodelist (props changed) head/news/ifmail/files/patch-rdconfig.c (props changed) head/news/ifmail/files/patch-respfreq.c (props changed) head/news/inn/files/patch-lib_innconf.c (props changed) head/news/inn/files/patch-storage_buffindexed_shmem.c (props changed) head/news/knews/files/patch-Imakefile (props changed) head/news/knews/files/patch-aa (props changed) head/news/knews/files/patch-ab (props changed) head/news/knews/files/patch-ac (props changed) head/news/knews/files/patch-child.c (props changed) head/news/knews/files/patch-file.c (props changed) head/news/knews/files/patch-png.c (props changed) head/news/knews/files/patch-resource.c (props changed) head/news/lusernet/files/patch-MsgDB.m (props changed) head/news/lusernet/files/patch-NNTPSource.m (props changed) head/news/lusernet/files/patch-Pref_Posting.m (props changed) head/news/lusernet/files/patch-pantomime_1_2 (props changed) head/news/newscache/files/patch-NewsCache.info (props changed) head/news/newscache/files/patch-autogen (props changed) head/news/newsfetch/files/patch-ab (props changed) head/news/newsfetch/files/patch-ac (props changed) head/news/newsfetch/files/patch-nntp.c (props changed) head/news/newsfetch/files/patch-opt.c (props changed) head/news/newsfetch/files/patch-util.c (props changed) head/news/newsgrab/files/patch-newsgrab.pl (props changed) head/news/newspost/files/patch-base::socket.c (props changed) head/news/nget/files/patch-Changelog (props changed) head/news/nget/files/patch-Makefile.in (props changed) head/news/nget/files/patch-aclocal.m4 (props changed) head/news/nget/files/patch-auto_map.h (props changed) head/news/nget/files/patch-cache.cc (props changed) head/news/nget/files/patch-cache.h (props changed) head/news/nget/files/patch-configure (props changed) head/news/nget/files/patch-dupe_file.cc (props changed) head/news/nget/files/patch-grouplist.cc (props changed) head/news/nget/files/patch-lite.h (props changed) head/news/nget/files/patch-misc.cc (props changed) head/news/nget/files/patch-myregex.cc (props changed) head/news/nget/files/patch-nget.cc (props changed) head/news/nget/files/patch-nrange.h (props changed) head/news/nget/files/patch-par.cc (props changed) head/news/nget/files/patch-path.cc (props changed) head/news/nget/files/patch-prot_nntp.cc (props changed) head/news/nget/files/patch-status.cc (props changed) head/news/nget/files/patch-stlhelp.h (props changed) head/news/nget/files/patch-termstuff.cc (props changed) head/news/nn/files/patch-ac (props changed) head/news/nn/files/patch-ad (props changed) head/news/nn/files/patch-ae (props changed) head/news/nn/files/patch-ag (props changed) head/news/nn/files/patch-an (props changed) head/news/nntp/files/patch-Makefile (props changed) head/news/nntp/files/patch-acttimes.c (props changed) head/news/nntp/files/patch-conf.h (props changed) head/news/nntp/files/patch-doc-config.sh (props changed) head/news/nntp/files/patch-server-active.c (props changed) head/news/nntp/files/patch-server-batch.c (props changed) head/news/nntp/files/patch-server-common.h (props changed) head/news/nntp/files/patch-server-group.c (props changed) head/news/nntp/files/patch-server-main.c (props changed) head/news/nntp/files/patch-server-misc.c (props changed) head/news/nntp/files/patch-server-msgidd.c (props changed) head/news/nntp/files/patch-server-netaux.c (props changed) head/news/nntp/files/patch-server-scandir.c (props changed) head/news/nntp/files/patch-server-spawn.c (props changed) head/news/nntp/files/patch-server-xauth.c (props changed) head/news/nntp/files/patch-server-xover.c (props changed) head/news/nntp/files/patch-xfer-Makefile (props changed) head/news/nntp/files/patch-xfer-nntpxfer.c (props changed) head/news/nntp/files/patch-xmit-get_tcp_conn.c (props changed) head/news/nntp/files/patch-xmit-nntpxmit.c (props changed) head/news/nntp/files/patch-xmit-nntpxmit.h (props changed) head/news/nntp/files/patch-xmit-remote.c (props changed) head/news/nntp/files/patch-xmit-shlock.c (props changed) head/news/nntp/files/patch-xmit-xmitauth.c (props changed) head/news/nntpbtr/files/patch-aa (props changed) head/news/nntpbtr/files/patch-ab (props changed) head/news/nntpbtr/files/patch-ac (props changed) head/news/nntpbtr/files/patch-ad (props changed) head/news/nntpbtr/files/patch-nntpbtr.c (props changed) head/news/nntpcache/files/patch-scripts-nntpcache-gdb.sh.in (props changed) head/news/nntpcache/files/patch-src-acc.c (props changed) head/news/nntpcache/files/patch-src-authinfo_ldap.c (props changed) head/news/nntpcache/files/patch-src-nntpcache.c (props changed) head/news/noffle/files/patch-src::client.c (props changed) head/news/pgpmoose/files/patch-pmcheck (props changed) head/news/pgpmoose/files/patch-pmdaemon (props changed) head/news/plor/files/patch-aa (props changed) head/news/plor/files/patch-ab (props changed) head/news/rawdog/files/patch-setup.py (props changed) head/news/s-news/files/patch-Makefile.in (props changed) head/news/s-news/files/patch-active (props changed) head/news/s-news/files/patch-config.h.in (props changed) head/news/s-news/files/patch-configure (props changed) head/news/s-news/files/patch-inews.c (props changed) head/news/s-news/files/patch-newfeed.in (props changed) head/news/s-news/files/patch-nntpd.c (props changed) head/news/s-news/files/patch-qnews.c (props changed) head/news/s-news/files/patch-rnews.c (props changed) head/news/sabnzbdplus/files/patch-SABnzbd.py (props changed) head/news/slnr/files/patch-aa (props changed) head/news/suck/files/patch-Makefile.in (props changed) head/news/suck/files/patch-killfile.c (props changed) head/news/suck/files/patch-lmove.c (props changed) head/news/tin/files/patch-ab (props changed) head/news/tin/files/patch-ae (props changed) head/news/trn/files/patch-aa (props changed) head/news/trn/files/patch-ab (props changed) head/news/trn/files/patch-ac (props changed) head/news/trn/files/patch-ad (props changed) head/news/trn4/files/patch-term.c (props changed) head/news/yencode/files/patch-lib::Makefile.in (props changed) head/palm/gnome-pilot-conduits/files/patch-email_email_conduit.c (props changed) head/palm/gnome-pilot/files/patch-gpilotd__gpilotd.c (props changed) head/palm/imgvtopgm/files/patch-aa (props changed) head/palm/jpilot/files/patch-Makefile.in (props changed) head/palm/libmal/files/patch-malsync::mal::client::unix::MAL31DBConfig.c (props changed) head/palm/makeztxt/files/patch-Makefile (props changed) head/palm/palm-db-tools/files/patch-libflatfile-DB.cpp (props changed) head/palm/palm-db-tools/files/patch-libpalm-Block.h (props changed) head/palm/palm-db-tools/files/patch-libpalm-File.cpp (props changed) head/palm/palm-db-tools/files/patch-libpalm-File.h (props changed) head/palm/pdbar/files/patch-par.c (props changed) head/palm/pdbar/files/patch-par.man (props changed) head/palm/pilot-link/files/patch-libpisock_freebsdusb.c (props changed) head/palm/pilot-link/files/patch-ltmain.sh (props changed) head/palm/pilot-link/files/patch-src_pilot-clip.c (props changed) head/palm/pilot-link/files/patch-xml (props changed) head/palm/pilot_makedoc/files/patch-aa (props changed) head/palm/synce-hal/files/patch-configure (props changed) head/palm/synce-librapi2/files/patch-rapi_context.c (props changed) head/palm/synce-librapi2/files/patch-tests-CeRapiInvoke-Makefile.in (props changed) head/palm/synce-librapi2/files/patch-tools-pshortcut.c (props changed) head/palm/synce-librra/files/patch-src-rra-decode.c (props changed) head/palm/synce-librra/files/patch-src-rra-timezone.c (props changed) head/palm/synce-libsynce/files/patch-lib-synce_socket.c (props changed) head/palm/synce-serial/files/patch-script_synce-serial-start-device.in (props changed) head/palm/synce-serial/files/patch-script_synce-serial-start.in (props changed) head/palm/synce-vdccm/files/patch-lib-localsocket.h (props changed) head/palm/synce-vdccm/files/patch-lib-tcpconnectedsocket.cpp (props changed) head/palm/synce-vdccm/files/patch-lib-tcpsocket.h (props changed) head/palm/synce-vdccm/files/patch-lib-udpsocket.cpp (props changed) head/palm/synce-vdccm/files/patch-src-vdccm.cpp (props changed) head/palm/synce-vdccm/files/patch-src_Makefile.in (props changed) head/palm/synce-vdccm/files/patch-src_eventmanager.c (props changed) head/palm/synce-vdccm/files/patch-src_rapiclient.cpp (props changed) head/palm/synce-vdccm/files/patch-src_rapiconnection.cpp (props changed) head/palm/synce-vdccm/files/patch-src_rapihandshakeclient.cpp (props changed) head/palm/synce-vdccm/files/patch-src_rapiproxyconnection.cpp (props changed) head/palm/synce-vdccm/files/patch-src_windowscedevice.cpp (props changed) head/palm/synce-vdccm/files/patch-testtools-triggerconnection.cpp (props changed) head/polish/kadu/files/patch-plugins-single_window-CMakeLists.txt (props changed) head/polish/kadu/files/patch-plugins-tabs-CMakeLists.txt (props changed) head/polish/libtlen/files/patch-aa (props changed) head/polish/qfaktury/files/patch-QFaktury.desktop (props changed) head/polish/qfaktury/files/patch-qfaktury.pro (props changed) head/polish/qnapi/files/patch-qnapi.pro (props changed) head/polish/trf/files/patch-Makefile (props changed) head/ports-mgmt/bpm/files/patch-mk_sk.global.mk (props changed) head/ports-mgmt/bpm/files/patch-src::refresh.c (props changed) head/ports-mgmt/bpm/files/patch-src_install.c (props changed) head/ports-mgmt/gnome-packagekit/files/patch-data_gnome-packagekit.schemas.in (props changed) head/ports-mgmt/gnome-packagekit/files/patch-src_gpk-check-update.c (props changed) head/ports-mgmt/gnome-packagekit/files/patch-src_gpk-dbus-task.c (props changed) head/ports-mgmt/gnome-packagekit/files/patch-src_gpk-dbus.c (props changed) head/ports-mgmt/gnome-packagekit/files/patch-src_gpk-firmware.c (props changed) head/ports-mgmt/gnome-packagekit/files/patch-src_gpk-hardware.c (props changed) head/ports-mgmt/gnome-packagekit/files/patch-src_gpk-watch.c (props changed) head/ports-mgmt/packagekit/files/patch-etc_Vendor.conf (props changed) head/ports-mgmt/packagekit/files/patch-src_pk-lsof.c (props changed) head/ports-mgmt/pib/files/patch-Makefile (props changed) head/ports-mgmt/pib/files/patch-pib (props changed) head/ports-mgmt/pib/files/patch-tkPort.h (props changed) head/ports-mgmt/pkg_cutleaves/files/extra-patch-pkg_cutleaves (props changed) head/ports-mgmt/pkg_cutleaves/files/extra-patch-pkg_cutleaves.1 (props changed) head/ports-mgmt/pkg_install/files/patch-Makefile.inc (props changed) head/ports-mgmt/pkg_install/files/patch-lib_Makefile (props changed) head/ports-mgmt/pkg_trackinst/files/patch-PkgTrackInst_PkgDbWriter.py (props changed) head/ports-mgmt/pkg_trackinst/files/patch-PkgTrackInst_cmd__support.py (props changed) head/ports-mgmt/pkg_tree/files/patch-Makefile (props changed) head/ports-mgmt/pkg_tree/files/patch-pkg_tree (props changed) head/ports-mgmt/portcheckout/files/patch-aa (props changed) head/ports-mgmt/portcheckout/files/patch-ab (props changed) head/ports-mgmt/portcheckout/files/patch-ac (props changed) head/ports-mgmt/portell/files/patch-portell.py (props changed) head/ports-mgmt/pver/files/patch-pver.c (props changed) head/ports-mgmt/pver/files/patch-pver_c.c (props changed) head/portuguese/ispell-pt_BR/files/patch-aa (props changed) head/print/a2ps/files/patch-contrib-emacs-Makefile.in (props changed) head/print/a2ps/files/patch-contrib-tmpdircreation (props changed) head/print/a2ps/files/patch-etc-Makefile.in (props changed) head/print/a2ps/files/patch-localealias.c (props changed) head/print/a2ps/files/patch-ogonkify-Makefile.in (props changed) head/print/a2ps/files/patch-options.c (props changed) head/print/a2ps/files/patch-printers.c (props changed) head/print/a2ps/files/patch-select.c (props changed) head/print/a2ps/files/patch-xgethostname.c (props changed) head/print/abc2mtex/files/patch-Makefile (props changed) head/print/abc2mtex/files/patch-tex.c (props changed) head/print/afm/files/patch-aa (props changed) head/print/alignmargins/files/patch-alignmargins (props changed) head/print/apsfilter/files/patch-Makefile.in (props changed) head/print/asprint/files/patch-aa (props changed) head/print/asprint/files/patch-ab (props changed) head/print/auctex/files/patch-doc-Makefile.in (props changed) head/print/bibview/files/patch-aa (props changed) head/print/bibview/files/patch-ab (props changed) head/print/bibview/files/patch-ac (props changed) head/print/bibview/files/patch-ad (props changed) head/print/bibview/files/patch-ae (props changed) head/print/bibview/files/patch-af (props changed) head/print/bibview/files/patch-ag (props changed) head/print/bibview/files/patch-ah (props changed) head/print/c2ps/files/patch-Makefile (props changed) head/print/c2ps/files/patch-c2ps.c (props changed) head/print/cpp2latex/files/patch-cpp2latex-main.cpp (props changed) head/print/cups-base/files/patch-Makefile (props changed) head/print/cups-base/files/patch-conf-Makefile (props changed) head/print/cups-base/files/patch-configure (props changed) head/print/cups-base/files/patch-cups.pam (props changed) head/print/cups-bjnp/files/patch-bjnp-debug.c (props changed) head/print/cups-bjnp/files/patch-configure (props changed) head/print/cups-pstoraster/files/extra-patch-lib_cidfmap (props changed) head/print/cups-pstoraster/files/patch-ghostscript.list.in (props changed) head/print/cups-pstoraster/files/patch-pstopxl.in (props changed) head/print/cups-pstoraster/files/patch-pstoraster.in (props changed) head/print/cups-pstoraster/files/patch-src:unixinst.mak (props changed) head/print/dvipdfmx/files/patch-src-Makefile.in (props changed) head/print/dvipdfmx/files/patch-src-dvipdfmx.c (props changed) head/print/dviselect/files/patch-ac (props changed) head/print/dviselect/files/patch-ad (props changed) head/print/dviselect/files/patch-lib::Makefile (props changed) head/print/dviselect/files/patch-lib::error.c (props changed) head/print/dviselect/files/patch-lib::pxlfont.c (props changed) head/print/dviselect/files/patch-lib::search.c (props changed) head/print/dviselect/files/patch-lib::tfm.c (props changed) head/print/enscript-letter/files/patch-CVE-2008-3863-and-4306 (props changed) head/print/enscript-letter/files/patch-Makefile.in (props changed) head/print/enscript-letter/files/patch-configure (props changed) head/print/enscript-letter/files/patch-enscript.st (props changed) head/print/enscript-letter/files/patch-ruby.st (props changed) head/print/enscript-letter/files/patch-src_gsint.h (props changed) head/print/enscript-letter/files/patch-src_main.c (props changed) head/print/enscript-letter/files/patch-src_psgen.c (props changed) head/print/enscript-letter/files/patch-src_util.c (props changed) head/print/epsonepl/files/patch-ijs_server_epsonepl.c (props changed) head/print/epsonepl/files/patch-ps2epl (props changed) head/print/fontforge/files/patch-Makefile.dynamic.in (props changed) head/print/fontforge/files/patch-configure (props changed) head/print/fontforge/files/patch-fontforge_Makefile.dynamic.in (props changed) head/print/fontforge/files/patch-fontforge_splineutil2.c (props changed) head/print/fontforge/files/patch-plugins-Makefile.in (props changed) head/print/foo2zjs/files/patch-Makefile (props changed) head/print/foo2zjs/files/patch-foo2hiperc-wrapper.in (props changed) head/print/foo2zjs/files/patch-foo2hp2600-wrapper.in (props changed) head/print/foo2zjs/files/patch-foo2lava-wrapper.in (props changed) head/print/foo2zjs/files/patch-foo2oak-wrapper.in (props changed) head/print/foo2zjs/files/patch-foo2qpdl-wrapper.in (props changed) head/print/foo2zjs/files/patch-foo2slx-wrapper.in (props changed) head/print/foo2zjs/files/patch-foo2xqx-wrapper.in (props changed) head/print/foo2zjs/files/patch-foo2zjs-wrapper.in (props changed) head/print/foo2zjs/files/patch-getweb.in (props changed) head/print/foomatic-db-hpijs/files/patch-configure (props changed) head/print/foomatic-db/files/patch-Makefile.in (props changed) head/print/freetype-tools/files/patch-Makefile.in (props changed) head/print/freetype-tools/files/patch-big5eten (props changed) head/print/freetype-tools/files/patch-contrib-ttf2pfb-t1asm.c (props changed) head/print/freetype-tools/files/patch-lib-arch-unix-Makefile.in (props changed) head/print/freetype-tools/files/patch-libtool (props changed) head/print/freetype-tools/files/patch-malloc (props changed) head/print/freetype/files/patch-Makefile.in (props changed) head/print/freetype/files/patch-lib::arch::unix::Makefile.in (props changed) head/print/ggv/files/patch-src_Makefile.in (props changed) head/print/ghostscript7/files/patch-alps:gdevalps.mak (props changed) head/print/ghostscript7/files/patch-eplaser:gdevescv.c (props changed) head/print/ghostscript7/files/patch-eplaser:gdevesmv.c (props changed) head/print/ghostscript7/files/patch-gdev10v:gdev10v.mak (props changed) head/print/ghostscript7/files/patch-lib:gs_cidfn.ps (props changed) head/print/ghostscript7/files/patch-lib:gs_init.ps (props changed) head/print/ghostscript7/files/patch-lib:gs_res.ps (props changed) head/print/ghostscript7/files/patch-lib:gs_setpd.ps (props changed) head/print/ghostscript7/files/patch-lib:gs_statd.ps (props changed) head/print/ghostscript7/files/patch-lib:gs_ttf.ps (props changed) head/print/ghostscript7/files/patch-lib:pj-gs.sh.CAN-2004-0967 (props changed) head/print/ghostscript7/files/patch-lib:ps2epsi.CAN-2004-0967 (props changed) head/print/ghostscript7/files/patch-lib:ps2pdfwr (props changed) head/print/ghostscript7/files/patch-lib:pv.sh.CAN-2004-0967 (props changed) head/print/ghostscript7/files/patch-lib:sysvlp.sh.CAN-2004-0967 (props changed) head/print/ghostscript7/files/patch-lips:gdevl4r.c (props changed) head/print/ghostscript7/files/patch-lips:gdevl4v.c (props changed) head/print/ghostscript7/files/patch-lips:gdevlips.c (props changed) head/print/ghostscript7/files/patch-lips:gdevlips.h (props changed) head/print/ghostscript7/files/patch-lips:gdevlips.mak (props changed) head/print/ghostscript7/files/patch-lips:gdevlprn.h (props changed) head/print/ghostscript7/files/patch-md2k:gdevmd2k.mak (props changed) head/print/ghostscript7/files/patch-mjc:gdevmjc.c (props changed) head/print/ghostscript7/files/patch-mjc:gdevmjc.mak (props changed) head/print/ghostscript7/files/patch-pcl3-src-contrib.mak-7.00.add (props changed) head/print/ghostscript7/files/patch-src-Makefile.in (props changed) head/print/ghostscript7/files/patch-src-contrib.mak (props changed) head/print/ghostscript7/files/patch-src-cpca_gdev.mak (props changed) head/print/ghostscript7/files/patch-src-gdevijs.c (props changed) head/print/ghostscript7/files/patch-src-gdevpng.c (props changed) head/print/ghostscript7/files/patch-src-gsalloc.c (props changed) head/print/ghostscript7/files/patch-src-gxclrast.c (props changed) head/print/ghostscript7/files/patch-src-gxfixed.h (props changed) head/print/ghostscript7/files/patch-src-ibnum.c (props changed) head/print/ghostscript7/files/patch-src-ibnum.h (props changed) head/print/ghostscript7/files/patch-src-icclib.mak (props changed) head/print/ghostscript7/files/patch-src-idebug.c (props changed) head/print/ghostscript7/files/patch-src-idparam.c (props changed) head/print/ghostscript7/files/patch-src-ijs.mak (props changed) head/print/ghostscript7/files/patch-src-int.mak (props changed) head/print/ghostscript7/files/patch-src-iparam.c (props changed) head/print/ghostscript7/files/patch-src-iref.h (props changed) head/print/ghostscript7/files/patch-src-iscan.c (props changed) head/print/ghostscript7/files/patch-src-iscanbin.c (props changed) head/print/ghostscript7/files/patch-src-iscannum.c (props changed) head/print/ghostscript7/files/patch-src-iutil.c (props changed) head/print/ghostscript7/files/patch-src-lib.mak (props changed) head/print/ghostscript7/files/patch-src-png_.h (props changed) head/print/ghostscript7/files/patch-src-zarith.c (props changed) head/print/ghostscript7/files/patch-src-zcontrol.c (props changed) head/print/ghostscript7/files/patch-src-zdict.c (props changed) head/print/ghostscript7/files/patch-src-zdps.c (props changed) head/print/ghostscript7/files/patch-src-zfunc4.c (props changed) head/print/ghostscript7/files/patch-src-zgeneric.c (props changed) head/print/ghostscript7/files/patch-src-ziodev.c (props changed) head/print/ghostscript7/files/patch-src-zmath.c (props changed) head/print/ghostscript7/files/patch-src-zstack.c (props changed) head/print/ghostscript7/files/patch-src-ztype.c (props changed) head/print/ghostscript7/files/patch-src:dmp_site.ps (props changed) head/print/ghostscript7/files/patch-src:dviprlib.c (props changed) head/print/ghostscript7/files/patch-src:gdevdmpr.c (props changed) head/print/ghostscript7/files/patch-src:gdevdmpr.mak (props changed) head/print/ghostscript7/files/patch-src:gdevgdi.c (props changed) head/print/ghostscript7/files/patch-src:gdevlbp8.c (props changed) head/print/ghostscript7/files/patch-src:gdevpdff.c (props changed) head/print/ghostscript7/files/patch-src:gdevpdff.h (props changed) head/print/ghostscript7/files/patch-src:gdevpdfs.c (props changed) head/print/ghostscript7/files/patch-src:gdevpdfw.c (props changed) head/print/ghostscript7/files/patch-src:genarch.c (props changed) head/print/ghostscript7/files/patch-src:gxobj.h (props changed) head/print/ghostscript7/files/patch-src:smartgdi-contrib.mak (props changed) head/print/ghostscript7/files/patch-src:unix-dll.mak (props changed) head/print/ghostscript7/files/patch-src:unix-gcc.mak (props changed) head/print/ghostscript7/files/patch-src:zmedia2.c (props changed) head/print/ghostscript7/files/patch-src_cpca_mk_cmd.c (props changed) head/print/ghostscript7/files/patch-src_gdevhl12.c (props changed) head/print/ghostscript8/files/patch-Resource-Init-cidfmap (props changed) head/print/ghostscript8/files/patch-Resource-Init-gs_statd.ps (props changed) head/print/ghostscript8/files/patch-Resource-Init-gs_ttf.ps (props changed) head/print/ghostscript8/files/patch-Resource-Init-pdf_font.ps (props changed) head/print/ghostscript8/files/patch-base-Makefile.in (props changed) head/print/ghostscript8/files/patch-base-configure.ac (props changed) head/print/ghostscript8/files/patch-base-contrib.mak (props changed) head/print/ghostscript8/files/patch-base-devs.mak (props changed) head/print/ghostscript8/files/patch-base-errors.h (props changed) head/print/ghostscript8/files/patch-base-gdevl256.c (props changed) head/print/ghostscript8/files/patch-base-gdevperm.c (props changed) head/print/ghostscript8/files/patch-base-gdevpng.c (props changed) head/print/ghostscript8/files/patch-base-gdevvglb.c (props changed) head/print/ghostscript8/files/patch-base-gs.mak (props changed) head/print/ghostscript8/files/patch-base-gxobj.h (props changed) head/print/ghostscript8/files/patch-base-ijs.mak (props changed) head/print/ghostscript8/files/patch-base-lib.mak (props changed) head/print/ghostscript8/files/patch-base-png_.h (props changed) head/print/ghostscript8/files/patch-base-sjpx.c (props changed) head/print/ghostscript8/files/patch-base-unix-dll.mak (props changed) head/print/ghostscript8/files/patch-base-unix-gcc.mak (props changed) head/print/ghostscript8/files/patch-base-unixinst.mak (props changed) head/print/ghostscript8/files/patch-contrib-contrib.mak (props changed) head/print/ghostscript8/files/patch-contrib__japanese__dmp_site.ps (props changed) head/print/ghostscript8/files/patch-contrib__japanese__gdevdmpr.c (props changed) head/print/ghostscript8/files/patch-epag-ert.c (props changed) head/print/ghostscript8/files/patch-epag__gdevepag.c (props changed) head/print/ghostscript8/files/patch-lib-FAPIcidfmap (props changed) head/print/ghostscript8/files/patch-lib-FAPIconfig (props changed) head/print/ghostscript8/files/patch-lib-pdf2dsc.ps (props changed) head/print/ghostscript8/files/patch-lips:gdevlips.c (props changed) head/print/ghostscript8/files/patch-lips:gdevlips.h (props changed) head/print/ghostscript8/files/patch-psi-zicc.c (props changed) head/print/ghostscript9-agpl/files/patch-Resource-Init-FAPIcidfmap (props changed) head/print/ghostscript9-agpl/files/patch-Resource-Init-FAPIconfig (props changed) head/print/ghostscript9-agpl/files/patch-Resource-Init-cidfmap (props changed) head/print/ghostscript9-agpl/files/patch-Resource-Init-gs_statd.ps (props changed) head/print/ghostscript9-agpl/files/patch-Resource-Init-gs_ttf.ps (props changed) head/print/ghostscript9-agpl/files/patch-Resource-Init-pdf_font.ps (props changed) head/print/ghostscript9-agpl/files/patch-base-Makefile.in (props changed) head/print/ghostscript9-agpl/files/patch-base-configure.ac (props changed) head/print/ghostscript9-agpl/files/patch-base-contrib.mak (props changed) head/print/ghostscript9-agpl/files/patch-base-devs.mak (props changed) head/print/ghostscript9-agpl/files/patch-base-gdevl256.c (props changed) head/print/ghostscript9-agpl/files/patch-base-gdevperm.c (props changed) head/print/ghostscript9-agpl/files/patch-base-gdevplib.c (props changed) head/print/ghostscript9-agpl/files/patch-base-gdevvglb.c (props changed) head/print/ghostscript9-agpl/files/patch-base-gsicc_create.c (props changed) head/print/ghostscript9-agpl/files/patch-base-gxobj.h (props changed) head/print/ghostscript9-agpl/files/patch-base-openjpeg.mak (props changed) head/print/ghostscript9-agpl/files/patch-base-unix-gcc.mak (props changed) head/print/ghostscript9-agpl/files/patch-base-unixinst.mak (props changed) head/print/ghostscript9-agpl/files/patch-contrib-contrib.mak (props changed) head/print/ghostscript9-agpl/files/patch-contrib__gomni.c (props changed) head/print/ghostscript9-agpl/files/patch-contrib__japanese__dmp_site.ps (props changed) head/print/ghostscript9-agpl/files/patch-contrib__japanese__gdevdmpr.c (props changed) head/print/ghostscript9-agpl/files/patch-epag-ert.c (props changed) head/print/ghostscript9-agpl/files/patch-epag__gdevepag.c (props changed) head/print/ghostscript9-agpl/files/patch-lips:gdevlips.c (props changed) head/print/ghostscript9-agpl/files/patch-lips:gdevlips.h (props changed) head/print/ghostscript9-agpl/files/patch-openjpeg-libopenjpeg-opj_includes.h (props changed) head/print/ghostscript9-agpl/files/patch-openjpeg-libopenjpeg-opj_malloc.h (props changed) head/print/ghostscript9-agpl/files/patch-psi-zicc.c (props changed) head/print/ghostscript9/files/patch-Resource-Init-FAPIcidfmap (props changed) head/print/ghostscript9/files/patch-Resource-Init-FAPIconfig (props changed) head/print/ghostscript9/files/patch-Resource-Init-cidfmap (props changed) head/print/ghostscript9/files/patch-Resource-Init-gs_statd.ps (props changed) head/print/ghostscript9/files/patch-Resource-Init-gs_ttf.ps (props changed) head/print/ghostscript9/files/patch-Resource-Init-pdf_font.ps (props changed) head/print/ghostscript9/files/patch-base-Makefile.in (props changed) head/print/ghostscript9/files/patch-base-configure.ac (props changed) head/print/ghostscript9/files/patch-base-contrib.mak (props changed) head/print/ghostscript9/files/patch-base-devs.mak (props changed) head/print/ghostscript9/files/patch-base-gdevl256.c (props changed) head/print/ghostscript9/files/patch-base-gdevperm.c (props changed) head/print/ghostscript9/files/patch-base-gdevplib.c (props changed) head/print/ghostscript9/files/patch-base-gdevvglb.c (props changed) head/print/ghostscript9/files/patch-base-gsicc_create.c (props changed) head/print/ghostscript9/files/patch-base-gxobj.h (props changed) head/print/ghostscript9/files/patch-base-openjpeg.mak (props changed) head/print/ghostscript9/files/patch-base-unix-gcc.mak (props changed) head/print/ghostscript9/files/patch-base-unixinst.mak (props changed) head/print/ghostscript9/files/patch-contrib-contrib.mak (props changed) head/print/ghostscript9/files/patch-contrib__japanese__dmp_site.ps (props changed) head/print/ghostscript9/files/patch-contrib__japanese__gdevdmpr.c (props changed) head/print/ghostscript9/files/patch-epag-ert.c (props changed) head/print/ghostscript9/files/patch-epag__gdevepag.c (props changed) head/print/ghostscript9/files/patch-lips:gdevlips.c (props changed) head/print/ghostscript9/files/patch-lips:gdevlips.h (props changed) head/print/ghostscript9/files/patch-openjpeg-libopenjpeg-opj_includes.h (props changed) head/print/ghostscript9/files/patch-openjpeg-libopenjpeg-opj_malloc.h (props changed) head/print/ghostscript9/files/patch-psi-zicc.c (props changed) head/print/ghostview/files/patch-ab (props changed) head/print/gnome-cups-manager/files/patch-24_printer_properties_name_entry (props changed) head/print/gnome-cups-manager/files/patch-25_properties_on_add (props changed) head/print/gnome-cups-manager/files/patch-26_remove-no-cups-dialog (props changed) head/print/gnome-cups-manager/files/patch-27_dont-request-additional-attributes (props changed) head/print/gnome-cups-manager/files/patch-change_uri_fix (props changed) head/print/gnome-cups-manager/files/patch-gutenprint_driver_name (props changed) head/print/gnome-cups-manager/files/patch-password_field_garbage (props changed) head/print/gnome-cups-manager/files/patch-select_eintr_crash (props changed) head/print/gnome-cups-manager/files/patch-ui_edit_name_description (props changed) head/print/gnome-cups-manager/files/patch-ui_startbox (props changed) head/print/gnome-cups-manager/files/patch-ui_tooltip (props changed) head/print/gribouy/files/patch-src::gribouy-curve.c (props changed) head/print/gribouy/files/patch-src::gribouy-main.c (props changed) head/print/gsview/files/patch-src_gvcver.mak (props changed) head/print/gsview/files/patch-srcunx_unx.mak (props changed) head/print/gutenprint-base/files/patch-src_cups_Makefile.in (props changed) head/print/gutenprint-base/files/patch-src_gimp2_Makefile.in (props changed) head/print/gv/files/patch-configure (props changed) head/print/gv/files/patch-src-Makefile.in (props changed) head/print/gv/files/patch-src_FileSel.c (props changed) head/print/gv/files/patch-src_callbacks.c (props changed) head/print/hp2xx/files/patch-aa (props changed) head/print/hp2xx/files/patch-ab (props changed) head/print/hp2xx/files/patch-png.c (props changed) head/print/hpijs/files/patch-ljjetready.cpp (props changed) head/print/hplip/files/patch-prnt__hpcups__ErnieFilter.cpp (props changed) head/print/html2latex/files/patch-aa (props changed) head/print/html2latex/files/patch-ab (props changed) head/print/html2latex/files/patch-ac (props changed) head/print/html2ps/files/patch-html2ps (props changed) head/print/html2ps/files/patch-html2ps.1 (props changed) head/print/jadetex/files/patch-Makefile (props changed) head/print/kover/files/patch-directory.cc (props changed) head/print/latex-beamer/files/patch-themes-outer-beamerouterthemeinfolines.sty (props changed) head/print/latex-cjk/files/patch-Makefile (props changed) head/print/latex-cjk/files/patch-texinput-Bg5-c00bsmi.fd (props changed) head/print/latex-cjk/files/patch-texinput-GB-c10gbsn.fd (props changed) head/print/latex-cjk/files/patch-texinput-GBBg5-fdfiles (props changed) head/print/latex-cjk/files/patch-texinput-GBBg5-type1fdfiles (props changed) head/print/latex-cjk/files/patch-texinput-UTF8-arphicfdfiles (props changed) head/print/latex-cjk/files/patch-texinput-UTF8-fdfiles (props changed) head/print/latex-cjk/files/patch-utils-Makefiles (props changed) head/print/latex/files/patch-ltvers.dtx (props changed) head/print/latex2rtf/files/patch-Makefile (props changed) head/print/latex2rtf/files/patch-doc_latex2rtf.info (props changed) head/print/lgrind/files/patch-Makefile (props changed) head/print/lgrind/files/patch-lgutil_c (props changed) head/print/lgrind/files/patch-source_Makefile (props changed) head/print/lgrind/files/patch-source_lgrind.c (props changed) head/print/lgrind/files/patch-source_regexp.c (props changed) head/print/libgnomecups/files/patch-20_parse-dot-cups-lpoptions (props changed) head/print/libgnomecups/files/patch-21_fix-islocal (props changed) head/print/libgnomecups/files/patch-22_ignore-ipp-not-found (props changed) head/print/libgnomecups/files/patch-23_replace-set-printer-attrs (props changed) head/print/libgnomecups/files/patch-25_browsed_ppds (props changed) head/print/libgnomeprint/files/patch-gnome-print-cups-transport.c (props changed) head/print/libharu/files/patch-hpdf_image_png.c (props changed) head/print/libijs/files/patch-Makefile.in (props changed) head/print/libpaper/files/patch-lib-Makefile.in (props changed) head/print/libppd/files/patch-aa (props changed) head/print/lilypond-devel/files/patch-config.make.in (props changed) head/print/lilypond/files/patch-Documentation_GNUmakefile (props changed) head/print/lilypond/files/patch-config.make.in (props changed) head/print/lout/files/patch-makefile (props changed) head/print/lpr-wrapper/files/patch-lpr-wrapper-cups.in (props changed) head/print/lpr-wrapper/files/patch-lpr-wrapper.in (props changed) head/print/lprps/files/patch-Makefile (props changed) head/print/lprps/files/patch-ae (props changed) head/print/lprps/files/patch-lprps.c (props changed) head/print/lprps/files/patch-psif.c (props changed) head/print/lprps/files/patch-psof.c (props changed) head/print/lprps/files/patch-psrev.c (props changed) head/print/lprps/files/patch-textps.c (props changed) head/print/magicfilter/files/patch-configure.sh (props changed) head/print/magicfilter/files/patch-file::file.c (props changed) head/print/magicfilter/files/patch-getaline.c (props changed) head/print/magicfilter/files/patch-getline.c (props changed) head/print/mp-letter/files/patch-aa (props changed) head/print/mp-letter/files/patch-ab (props changed) head/print/mp-letter/files/patch-ac (props changed) head/print/mp-letter/files/patch-ad (props changed) head/print/mp-letter/files/patch-ae (props changed) head/print/mpage/files/patch-Makefile (props changed) head/print/mpage/files/patch-args.c (props changed) head/print/mpage/files/patch-mpage.1.in (props changed) head/print/mpage/files/patch-mpage.c (props changed) head/print/mpage/files/patch-post.c (props changed) head/print/mup/files/patch-mupdisp::dispttyp.h (props changed) head/print/mup/files/patch-mupdisp::mupdisp.c (props changed) head/print/mup/files/patch-mupdisp::mupdisp.h (props changed) head/print/muttprint/files/patch-Makefile (props changed) head/print/muttprint/files/patch-ab (props changed) head/print/muttprint/files/patch-ac (props changed) head/print/muttprint/files/patch-ad (props changed) head/print/muttprint/files/patch-ae (props changed) head/print/muttprint/files/patch-langinfo::Makefile (props changed) head/print/nenscript/files/patch-main.c (props changed) head/print/openprinting/files/patch-freebsd (props changed) head/print/p5-Font-FreeType/files/patch-FreeType.xs (props changed) head/print/p5-Font-FreeType/files/patch-Makefile.PL (props changed) head/print/panda/files/patch-configure (props changed) head/print/panda/files/patch-database.c (props changed) head/print/panda/files/patch-images.c (props changed) head/print/panda/files/patch-objects.c (props changed) head/print/pcal/files/patch-aa (props changed) head/print/pcal/files/patch-ab (props changed) head/print/pcal/files/patch-ac (props changed) head/print/pcal/files/patch-ad (props changed) head/print/pcal/files/patch-html-pcal.pl (props changed) head/print/pdf-renderer/files/patch-nbproject_project.properties (props changed) head/print/pdf-renderer/files/patch-src_com_sun_pdfview_colorspace_PDFColorSpace.java (props changed) head/print/pdflib/files/patch-configure (props changed) head/print/pdfmod/files/patch-icon-theme-installer (props changed) head/print/pdfmod/files/patch-lib_poppler-sharp_poppler-sharp_poppler-sharp.dll.config (props changed) head/print/pdfmod/files/patch-src_PdfMod_Gui_DocumentIconView.cs (props changed) head/print/pdftk/files/patch-pdftk__Makefile.Base (props changed) head/print/pdq/files/patch-aa (props changed) head/print/pdq/files/patch-ab (props changed) head/print/pdq/files/patch-ad (props changed) head/print/pdq/files/patch-af (props changed) head/print/pdq/files/patch-ag (props changed) head/print/pdq/files/patch-ak (props changed) head/print/pecl-ps/files/patch-ps.c (props changed) head/print/pic2fig/files/patch-aa (props changed) head/print/pic2fig/files/patch-ab (props changed) head/print/pic2fig/files/patch-ac (props changed) head/print/pic2fig/files/patch-ad (props changed) head/print/pic2fig/files/patch-ae (props changed) head/print/pic2fig/files/patch-af (props changed) head/print/pic2fig/files/patch-ag (props changed) head/print/pic2fig/files/patch-ah (props changed) head/print/pmw/files/patch-Makefile.in (props changed) head/print/pnm2ppa/files/patch-docs__en__pnm2ppa.1 (props changed) head/print/pnm2ppa/files/patch-pnm2ppa.conf (props changed) head/print/pnm2ppa/files/patch-text-en.h (props changed) head/print/poster/files/patch-aa (props changed) head/print/pstotext/files/patch-aa (props changed) head/print/pstotext/files/patch-ab (props changed) head/print/pstotext/files/patch-pstotext.1 (props changed) head/print/psutils/files/patch-Makefile.unix (props changed) head/print/psutils/files/patch-b4 (props changed) head/print/psutils/files/patch-epsffit.c (props changed) head/print/psutils/files/patch-getafm.sh (props changed) head/print/psutils/files/patch-psbook.c (props changed) head/print/psutils/files/patch-pserror.c (props changed) head/print/psutils/files/patch-psnup.c (props changed) head/print/psutils/files/patch-psresize.c (props changed) head/print/psutils/files/patch-psselect.c (props changed) head/print/psutils/files/patch-pstops.c (props changed) head/print/psutils/files/patch-psutil.c (props changed) head/print/py-pyscript/files/patch-pyscript_groups.py (props changed) head/print/py-reportlab/files/patch-rl_config.py (props changed) head/print/py-reportlab/files/patch-setup.py (props changed) head/print/py-reportlab2/files/patch-setup.py (props changed) head/print/qpdf/files/patch-configure (props changed) head/print/rlpr/files/patch-ip-addr (props changed) head/print/rlpr/files/patch-ldflags (props changed) head/print/rtf2latex/files/patch-reader.c (props changed) head/print/scribus-devel/files/patch-CMakeLists.txt (props changed) head/print/scribus/files/patch-CMakeLists (props changed) head/print/sgf2tex/files/patch-aa (props changed) head/print/system-config-printer/files/patch-applet.py (props changed) head/print/system-config-printer/files/patch-cupshelpers_cupshelpers.py (props changed) head/print/system-config-printer/files/patch-troubleshoot_CheckUSBPermissions.py (props changed) head/print/teTeX-base/files/patch-CAN-2004-0888 (props changed) head/print/teTeX-base/files/patch-SA18303 (props changed) head/print/teTeX-base/files/patch-texk-dvipdfm-pngimage.c (props changed) head/print/teTeX-base/files/patch-texk-dvipdfm-thumbnail.c (props changed) head/print/teTeX-base/files/patch-texk-pdftexdir-writepng.c (props changed) head/print/teTeX-base/files/patch-texk-ps2kpm-type1.c (props changed) head/print/teTeX-base/files/patch-texk-tetex-updmap (props changed) head/print/teTeX-base/files/patch-texk-web2c-pdftexdir-writeimg.c (props changed) head/print/teTeX-base/files/patch-texk::kpathsea::Makefile.in (props changed) head/print/teTeX-base/files/patch-texk::kpathsea::texmf.in-teTeX (props changed) head/print/teTeX-texmf/files/extra-patch-latex.ltx (props changed) head/print/tex-aleph/files/patch-Makefile.in (props changed) head/print/tex-aleph/files/patch-web2c-Makefile.in (props changed) head/print/tex-dvipdfmx/files/patch-texk-dvipdfmx-Makefile.in (props changed) head/print/tex-dvipdfmx/files/patch-texk-dvipdfmx-config.h.in (props changed) head/print/tex-dvipdfmx/files/patch-texk-dvipdfmx-configure (props changed) head/print/tex-dvipdfmx/files/patch-texk-dvipdfmx-configure.ac (props changed) head/print/tex-dvipdfmx/files/patch-texk-dvipdfmx-dvipdfmx-20120420-data-dvipdfmx.cfg (props changed) head/print/tex-dvipsk/files/patch-texk-dvipsk-configure (props changed) head/print/tex-dvipsk/files/patch-texk-dvipsk-configure.ac (props changed) head/print/tex-luatex/files/patch-Makefile.in (props changed) head/print/tex-luatex/files/patch-web2c-Makefile.in (props changed) head/print/tex-ptexenc/files/patch-ptexenc.c (props changed) head/print/tex-xdvik/files/patch-texk-xdvik-Makefile.in (props changed) head/print/tex-xdvik/files/patch-texk-xdvik-dvi-init.c (props changed) head/print/tex-xdvik/files/patch-texk-xdvik-texmf-XDvi (props changed) head/print/tex-xetex/files/patch-Makefile.in (props changed) head/print/tex/files/patch-aa (props changed) head/print/tex/files/patch-ab (props changed) head/print/tex/files/patch-ac (props changed) head/print/tex/files/patch-ad (props changed) head/print/tex/files/patch-ae (props changed) head/print/tex/files/patch-af (props changed) head/print/texinfo/files/patch-install-info_install-info.c (props changed) head/print/texlive-base/files/patch-texk-bibtex8-Makefile.in (props changed) head/print/texlive-base/files/patch-texk-bibtexu-Makefile.in (props changed) head/print/texlive-base/files/patch-texk-cjkutils-Makefile.in (props changed) head/print/texlive-base/files/patch-texk-gsftopk-Makefile.in (props changed) head/print/texlive-base/files/patch-texk-lcdf-typetools-Makefile.in (props changed) head/print/texlive-base/files/patch-texk-tetex-Makefile.in (props changed) head/print/texlive-base/files/patch-texk-tetex-fmtutil (props changed) head/print/texlive-base/files/patch-texk-tetex-fmtutil-sys (props changed) head/print/texlive-base/files/patch-texk-tetex-fmtutil.cnf (props changed) head/print/texlive-base/files/patch-texk-tetex-texconfig-sys (props changed) head/print/texlive-base/files/patch-texk-tetex-updmap-sys.sh (props changed) head/print/texlive-base/files/patch-texk-ttf2pk-Makefile.in (props changed) head/print/texlive-base/files/patch-utils-chktex-Makefile.in (props changed) head/print/tgif2tex/files/patch-tgif2tex (props changed) head/print/transfig/files/patch-ac (props changed) head/print/transfig/files/patch-ba (props changed) head/print/transfig/files/patch-fig2dev_dev_Imakefile (props changed) head/print/transfig/files/patch-fig2dev_fig2dev.h (props changed) head/print/transfig/files/patch-transfig_Imakefile (props changed) head/print/trueprint/files/patch-src_getopt.c (props changed) head/print/ttf2pt1/files/patch-Makefile (props changed) head/print/ttf2pt1/files/patch-ft.c (props changed) head/print/wprint/files/patch-Makefile.in (props changed) head/print/wprint/files/patch-hinting-ftface.diff (props changed) head/print/xdvi/files/patch-Imakefile (props changed) head/print/xmbibtex/files/patch-aa (props changed) head/print/xmbibtex/files/patch-c_refform.cc (props changed) head/print/xmbibtex/files/patch-print_cb.cc (props changed) head/print/xmbibtex/files/patch-refman.cc (props changed) head/print/xmbibtex/files/patch-searchall_cb.cc (props changed) head/print/xpp/files/patch-cupshelper.h (props changed) head/print/xpp/files/patch-mainwindow.fl (props changed) head/print/xpp/files/patch-xpp.cxx (props changed) head/print/xpp/files/patch-xpp.h (props changed) head/print/xpp/files/patch-xppmain.cxx (props changed) head/russian/ircd-hybrid/files/patch-defaults.h (props changed) head/russian/ircd-hybrid/files/patch-etc-Makefile.in (props changed) head/russian/ircd-hybrid/files/patch-modules-Makefile.in (props changed) head/russian/ircd-hybrid/files/patch-src-Makefile.in (props changed) head/russian/mueller-dic/files/patch-Makefile (props changed) head/russian/prawda/files/patch-aa (props changed) head/russian/prawda/files/patch-bin-makefile (props changed) head/russian/prawda/files/patch-src-face-dir.cpp (props changed) head/russian/prawda/files/patch-src-trans-slowo3.cpp (props changed) head/russian/prawda/files/patch-src-trans-slowo3.h (props changed) head/russian/pscyr/files/patch-install.sh (props changed) head/russian/rus-ispell/files/patch-aa (props changed) head/russian/rus-ispell/files/patch-ab (props changed) head/russian/rux/files/patch-rux.c (props changed) head/russian/tac+ia/files/patch-aa (props changed) head/russian/tac+ia/files/patch-maxsess (props changed) head/russian/unzip/files/patch-ebcdic.h (props changed) head/science/2dhf/files/patch-Makefile (props changed) head/science/2dhf/files/patch-bin+xhf (props changed) head/science/2dhf/files/patch-main-dynamic-f90.inc (props changed) head/science/2dhf/files/patch-src+fmalloc.c (props changed) head/science/2dhf/files/patch-src+getusedcpu.c (props changed) head/science/2dhf/files/patch-src+inihf.f (props changed) head/science/2dhf/files/patch-src+setconst.f (props changed) head/science/abinit/files/patch-bindings_parser_ab_dtset_c.c (props changed) head/science/abinit/files/patch-bindings_parser_parser.mk (props changed) head/science/abinit/files/patch-config+m4+init.m4 (props changed) head/science/abinit/files/patch-config+optflags (props changed) head/science/abinit/files/patch-config.mk.in (props changed) head/science/abinit/files/patch-config_scripts_make-macros-autotools (props changed) head/science/abinit/files/patch-configure (props changed) head/science/abinit/files/patch-prereqs+linalg+linalg.mk (props changed) head/science/afni/files/patch-Makefile.INCLUDE (props changed) head/science/afni/files/patch-misc_math.c (props changed) head/science/avogadro/files/patch-libavogadro__src__camera.cpp (props changed) head/science/avogadro/files/patch-libavogadro__src__glpainter_p.cpp (props changed) head/science/avogadro/files/patch-libavogadro__src__glwidget.cpp (props changed) head/science/avogadro/files/patch-libavogadro__src__tools__selectrotatetool.cpp (props changed) head/science/bft/files/patch-src__bft_file.c (props changed) head/science/bft/files/patch-tests_Makefile.in (props changed) head/science/cdf/files/patch-Makefile (props changed) head/science/cdf/files/patch-src+include+cdfdist.h (props changed) head/science/cdf/files/patch-src_tests_Makefile (props changed) head/science/cdo/files/patch-src-cdo_pthread.c (props changed) head/science/cdo/files/patch-src-pthread_debug.c (props changed) head/science/cdo/files/patch-src-pthread_debug.h (props changed) head/science/cgnslib/files/patch-src_cgnstools_cgnscalc_calcwish.c (props changed) head/science/cgnslib/files/patch-src_cgnstools_cgnsplot_plotwish.c (props changed) head/science/cgnslib/files/patch-src_cgnstools_cgnsview_cgiowish.c (props changed) head/science/cgnslib/files/patch-src_cgnstools_utilities_binaryio.h (props changed) head/science/cgnslib/files/patch-src_cgnstools_utilities_p3dfout.c (props changed) head/science/cgnslib/files/patch-src_make.defs.in (props changed) head/science/chemtool-devel/files/patch-configure (props changed) head/science/chemtool/files/patch-Makefile.in (props changed) head/science/dtiquery/files/patch-DTIQuery-Makefile (props changed) head/science/dtiquery/files/patch-Makefile.definitions (props changed) head/science/dtiquery/files/patch-precompute-Makefile (props changed) head/science/ecs/files/patch-doc_Makefile (props changed) head/science/elmerpost/files/patch-src-Makefile.am (props changed) head/science/elmerpost/files/patch-src-Makefile.in (props changed) head/science/epte/files/patch-do_element.c (props changed) head/science/epte/files/patch-do_radii.c (props changed) head/science/epte/files/patch-epte.1 (props changed) head/science/epte/files/patch-fill_information.c (props changed) head/science/epte/files/patch-makefile (props changed) head/science/epte/files/patch-periodic.h (props changed) head/science/epte/files/patch-setaudio.c (props changed) head/science/euler/files/patch-src__command.c (props changed) head/science/euler/files/patch-src__main.c (props changed) head/science/fasthenry/files/patch-src+fasthenry+parse_command_line.c (props changed) head/science/fasthenry/files/patch-src+fasthenry+savemat_mod.c (props changed) head/science/fasthenry/files/patch-src+fasthenry+sparse+spDefs.h (props changed) head/science/fasthenry/files/patch-src+zbuf+input.c (props changed) head/science/fasthenry/files/patch-src+zbuf+savemat_mod.c (props changed) head/science/flounder/files/patch-Colourscale.cc (props changed) head/science/flounder/files/patch-Fl_Gnuplot.h (props changed) head/science/flounder/files/patch-GlAreaUI.cc (props changed) head/science/flounder/files/patch-Glarea.h (props changed) head/science/flounder/files/patch-PNGwrite.cc (props changed) head/science/flounder/files/patch-flguppy.h (props changed) head/science/flounder/files/patch-isosurf.cc (props changed) head/science/fvm/files/patch-tests_Makefile.in (props changed) head/science/g3data/files/patch-Makefile (props changed) head/science/gamess/files/patch-comp (props changed) head/science/gamess/files/patch-compall (props changed) head/science/gamess/files/patch-compddi (props changed) head/science/gamess/files/patch-lked (props changed) head/science/gamess/files/patch-rungms (props changed) head/science/gamess/files/patch-zunix.c (props changed) head/science/getdp/files/patch-doc::texinfo::texinfo.tex (props changed) head/science/ghemical/files/patch-gcc43 (props changed) head/science/ghmm/files/patch-ltmain.sh (props changed) head/science/gramps/files/patch-data_gramps.xml.in (props changed) head/science/gramps/files/patch-src_gramps.py (props changed) head/science/gsmc/files/patch-configure.ac (props changed) head/science/h5utils/files/patch-writepng.c (props changed) head/science/harminv/files/patch-Makefile.in (props changed) head/science/hdf-java/files/patch-Makefile.in (props changed) head/science/hdf-java/files/patch-configure (props changed) head/science/hdf5-18/files/patch-src-H5FDdirect.c (props changed) head/science/hdf5/files/patch-c++::commence.in (props changed) head/science/hdf5/files/patch-commence.in (props changed) head/science/hdf5/files/patch-fortran_H5f90i.h (props changed) head/science/hdf5/files/patch-fortran_commence.in (props changed) head/science/hdf5/files/patch-fortran_configure (props changed) head/science/hdf5/files/patch-fortran_freebsd (props changed) head/science/hs-bio/files/patch-bio.cabal (props changed) head/science/hs-bio/files/patch-examples__RSelectPE.hs (props changed) head/science/isaac-cfd/files/patch-main_main.F (props changed) head/science/isaac-cfd/files/patch-makefile (props changed) head/science/isaac-cfd/files/patch-turb+turb.mk (props changed) head/science/massxpert/files/patch-CMakeLists.txt (props changed) head/science/mbdyn/files/patch-include__ac__mpi.h (props changed) head/science/mbdyn/files/patch-mbdyn__base__invsolver.cc (props changed) head/science/mbdyn/files/patch-mbdyn__base__solver.cc (props changed) head/science/mbdyn/files/patch-mbdyn__mbdyn.h (props changed) head/science/mcstas/files/patch-Makefile.in (props changed) head/science/medit/files/patch-sources_medit.h (props changed) head/science/meep/files/patch-configure (props changed) head/science/meep/files/patch-libctl_Makefile.in (props changed) head/science/meep/files/patch-src_mympi.hpp (props changed) head/science/mei/files/patch-tests_Makefile.in (props changed) head/science/mpqc/files/patch-::configure.in (props changed) head/science/mpqc/files/patch-LocalMakefile.in (props changed) head/science/mpqc/files/patch-center-of-charge (props changed) head/science/mpqc/files/patch-misc::scint.h (props changed) head/science/mpqc/files/patch-symmetry::pointgrp.cc (props changed) head/science/ncs/files/patch-configure (props changed) head/science/nifticlib/files/patch-Makefile (props changed) head/science/p5-Algorithm-SVMLight/files/patch-Build.PL (props changed) head/science/p5-PerlMol/files/patch-Makefile.PL (props changed) head/science/paje/files/patch-DrawView+Drawing.m (props changed) head/science/paje/files/patch-DrawView+Finding.m (props changed) head/science/paje/files/patch-NSArray+Additions.m (props changed) head/science/paraview/files/patch-CMakeLists.txt (props changed) head/science/paraview/files/patch-Plugins_PointSprite_CMakeLists.txt (props changed) head/science/paraview/files/patch-Plugins_PointSprite_ParaViewPlugin_CMakeLists.txt (props changed) head/science/paraview/files/patch-Plugins_PointSprite_StreamingView_VTK_vtkGridSampler2.cxx (props changed) head/science/paraview/files/patch-Qt_Core_CMakeLists.txt (props changed) head/science/paraview/files/patch-VTK_GUISupport_Qt_CMakeLists.txt (props changed) head/science/paraview/files/patch-VTK_GUISupport_Qt___TestQtSQLDatabase.cxx (props changed) head/science/psi3/files/patch-cstdio (props changed) head/science/psi3/files/patch-src+bin+cints+Makefile.in (props changed) head/science/py-DendroPy/files/patch-setup.py (props changed) head/science/py-hcluster/files/patch-setup.py (props changed) head/science/py-mdp/files/patch-mdp__configuration.py (props changed) head/science/py-mlpy/files/patch-mlpy-cwt-cwb.c (props changed) head/science/py-mlpy/files/patch-setup.py (props changed) head/science/py-pydicom/files/patch-setup.py (props changed) head/science/pycdf/files/patch-setup.py (props changed) head/science/ruby-netcdf/files/patch-extconf.rb (props changed) head/science/simlib/files/patch-src__Makefile.FreeBSD-i386 (props changed) head/science/simlib/files/patch-src__Makefile.generic (props changed) head/science/vmd/files/patch-Make-arch (props changed) head/science/vmd/files/patch-Makefile (props changed) head/science/vmd/files/patch-configure (props changed) head/science/vmd/files/patch-lib_tachyon_unix_Make-arch (props changed) head/science/vmd/files/patch-plugins__hesstrans__Makefile (props changed) head/science/vmd/files/patch-stride.c (props changed) head/science/vmd/files/patch-stride.h (props changed) head/science/vmd/files/patch-stride_Makefile (props changed) head/science/vmd/files/patch-surf_Makefile (props changed) head/science/xmds/files/patch-Makefile.in (props changed) head/security/ADMsmb/files/patch-ADMsmb.c (props changed) head/security/ADMsmb/files/patch-Makefile (props changed) head/security/ADMsnmp/files/patch-snmp.c (props changed) head/security/aide/files/patch-configure.in (props changed) head/security/aide/files/patch-doc_aide.1 (props changed) head/security/amap/files/patch-amap-lib.c (props changed) head/security/amap/files/patch-configure (props changed) head/security/amap/files/patch-pcre-chartables.c (props changed) head/security/amavis-stats/files/patch-amavis-stats (props changed) head/security/amavis-stats/files/patch-amavis-stats.php (props changed) head/security/aolserver-nssha1/files/patch-nssha1-nssha1.c (props changed) head/security/avcheck/files/patch-avcheck.c (props changed) head/security/base/files/patch-base_graph_display.php (props changed) head/security/base/files/patch-base_qry_common.php (props changed) head/security/base/files/patch-base_qry_sqlcalls.php (props changed) head/security/base/files/patch-base_stat_ipaddr.php (props changed) head/security/base/files/patch-includes__base_db.inc.php (props changed) head/security/base/files/patch-includes__base_net.inc.php (props changed) head/security/base/files/patch-includes__base_signature.inc.php (props changed) head/security/base/files/patch-includes__base_state_citems.inc.php (props changed) head/security/base/files/patch-includes__base_state_common.inc.php (props changed) head/security/base/files/patch-includes__base_state_criteria.inc.php (props changed) head/security/bcwipe/files/patch-wipe.c (props changed) head/security/beecrypt/files/patch-configure (props changed) head/security/bfbtester/files/patch-src::bfbt::exec.c (props changed) head/security/bioapi/files/patch-addins-dal-mds-dal_classes.h (props changed) head/security/bioapi/files/patch-apps-NonGUI_Sample-Makefile.in (props changed) head/security/bioapi/files/patch-apps-mod_install-install.c (props changed) head/security/bioapi/files/patch-framework-bioapi_util-memfuncs.c (props changed) head/security/bioapi/files/patch-framework-port-portmutx.c (props changed) head/security/bioapi/files/patch-imports-cdsa-v2_0-inc-Makefile.in (props changed) head/security/bioapi/files/patch-imports-cdsa-v2_0-inc-cssmtype.h (props changed) head/security/bioapi/files/patch-imports-cdsa-v2_0-inc-port-cssmport.h (props changed) head/security/bioapi/files/patch-include-Makefile.in (props changed) head/security/bioapi/files/patch-include-bioapi_schema.h (props changed) head/security/bioapi/files/patch-include-bioapi_type.h (props changed) head/security/blindelephant/files/patch-setup.py (props changed) head/security/botan/files/patch-configure.py (props changed) head/security/botan/files/patch-src_build_data_makefile_unix_shr.in (props changed) head/security/bruteblock/files/patch-Makefile (props changed) head/security/bruteblock/files/patch-etc-ssh.conf (props changed) head/security/cfv/files/patch-Makefile (props changed) head/security/chaosreader/files/patch-chaosreader (props changed) head/security/chrootuid/files/patch-aa (props changed) head/security/chrootuid/files/patch-ab (props changed) head/security/chrootuid/files/patch-ac (props changed) head/security/ckpass/files/patch-bindings.c (props changed) head/security/clamav-devel/files/extra-patch-shared_output.c (props changed) head/security/clamav-devel/files/patch-configure (props changed) head/security/clamav-unofficial-sigs/files/patch-clamav-unofficial-sigs.conf (props changed) head/security/clamav-unofficial-sigs/files/patch-clamav-unofficial-sigs.sh (props changed) head/security/clamav-unofficial-sigs/files/patch-clamd-status.sh (props changed) head/security/clamav/files/extra-patch-shared_output.c (props changed) head/security/clamav/files/patch-configure (props changed) head/security/clamav/files/patch-libclamav__scanners.c_bug_5252 (props changed) head/security/clamcour/files/patch-src__clam.cpp (props changed) head/security/clamsmtp/files/patch-configure (props changed) head/security/cops/files/patch-aa (props changed) head/security/cops/files/patch-ab (props changed) head/security/courier-authlib/files/patch-authdaemond.in (props changed) head/security/courier-authlib/files/patch-authdaemonrc.in (props changed) head/security/courier-authlib/files/patch-userdb::pw2userdb.in (props changed) head/security/crack/files/patch-02 (props changed) head/security/crack/files/patch-03 (props changed) head/security/cryptlib/files/patch-makefile (props changed) head/security/cryptlib/files/patch-misc_config.h (props changed) head/security/cryptlib/files/patch-misc_os_spec.h (props changed) head/security/cryptlib/files/patch-tools_ccopts.sh (props changed) head/security/cryptlib/files/patch-tools_getlibs.sh (props changed) head/security/cryptopp/files/patch-GNUmakefile (props changed) head/security/cryptopp/files/patch-misc.h (props changed) head/security/cryptopp/files/patch-nbtheory.cpp (props changed) head/security/cryptopp/files/patch-wake.cpp (props changed) head/security/cvm/files/patch-Makefile (props changed) head/security/cyrus-sasl2/files/patch-Makefile.in (props changed) head/security/cyrus-sasl2/files/patch-config::ltmain.sh (props changed) head/security/cyrus-sasl2/files/patch-configure (props changed) head/security/cyrus-sasl2/files/patch-include::sasl.h (props changed) head/security/cyrus-sasl2/files/patch-plugins::ldapdb.c (props changed) head/security/cyrus-sasl2/files/patch-saslauthd::Makefile.in (props changed) head/security/cyrus-sasl2/files/patch-saslauthd::configure (props changed) head/security/cyrus-sasl2/files/patch-saslauthd::saslcache.c (props changed) head/security/dcetest/files/patch-Makefile (props changed) head/security/dcetest/files/patch-dcetest.c (props changed) head/security/dcetest/files/patch-tcpstuff.c (props changed) head/security/dcetest/files/patch-tcpstuff.h (props changed) head/security/ddos_scan/files/patch-Makefile (props changed) head/security/ddos_scan/files/patch-dds.c (props changed) head/security/denyhosts/files/patch-DenyHosts_regex.py (props changed) head/security/denyhosts/files/patch-daemon-control-dist (props changed) head/security/denyhosts/files/patch-denyhosts.cfg-dist (props changed) head/security/denyhosts/files/patch-scripts_restrited-from-passwd.py (props changed) head/security/denyhosts/files/patch-setup.py (props changed) head/security/didentd/files/patch-aa (props changed) head/security/didentd/files/patch-get_info4_freebsd.c (props changed) head/security/didentd/files/patch-get_info6_freebsd.c (props changed) head/security/digest/files/patch-sha2.c (props changed) head/security/digest/files/patch-triger.c (props changed) head/security/distcache-devel/files/patch-proto_fd.c (props changed) head/security/distcache/files/patch-proto_fd.c (props changed) head/security/doorman/files/patch-Makefile.in (props changed) head/security/doorman/files/patch-configure (props changed) head/security/doorman/files/patch-configure.ac (props changed) head/security/doorman/files/patch-doormand.c (props changed) head/security/dradis/files/patch-server__Gemfile (props changed) head/security/dsniff/files/patch-pcaputil.c (props changed) head/security/dsniff/files/patch-sshcrypto.c (props changed) head/security/duo/files/patch-lib__Makefile.am (props changed) head/security/duo/files/patch-lib__Makefile.in (props changed) head/security/duo/files/patch-login_duo__login_duo.8 (props changed) head/security/duo/files/patch-pam_duo__pam_duo.8 (props changed) head/security/fakebo/files/patch-ab (props changed) head/security/fakeroot/files/patch-doc.diff (props changed) head/security/fakeroot/files/patch-scripts-Makefile.in (props changed) head/security/fcrackzip/files/patch-crack.h (props changed) head/security/fcrackzip/files/patch-main.c (props changed) head/security/firewalk/files/patch-include:firewalk.h (props changed) head/security/firewalk/files/patch-src:firewalk.c (props changed) head/security/fragroute/files/patch-pcaputil.h (props changed) head/security/fragroute/files/patch-tun.h (props changed) head/security/fragrouter/files/patch-Libnet-0.99b__configure (props changed) head/security/fragrouter/files/patch-Makefile.in (props changed) head/security/fragrouter/files/patch-configure (props changed) head/security/ftimes/files/patch-etc::xmagic::xmagic.base (props changed) head/security/fuzz/files/patch-fuzz.c (props changed) head/security/fwanalog/files/patch-fwanalog.sh (props changed) head/security/fwbuilder/files/patch-aa (props changed) head/security/fwipe/files/patch-hier.c (props changed) head/security/fwlogwatch/files/patch-Makefile (props changed) head/security/fwlogwatch/files/patch-ipfw.l (props changed) head/security/fwlogwatch/files/patch-main.h (props changed) head/security/fwlogwatch/files/patch-net.c (props changed) head/security/gag/files/patch-Makefile (props changed) head/security/gag/files/patch-gag.c (props changed) head/security/gcipher/files/patch-gcipher.desktop (props changed) head/security/gnome-keyring/files/patch-configure (props changed) head/security/gnome-keyring/files/patch-daemon_control_gkd-control-client.c (props changed) head/security/gnome-keyring/files/patch-egg_egg-asn1x.c (props changed) head/security/gnome-keyring/files/patch-egg_egg-unix-credentials.c (props changed) head/security/gnome-keyring/files/patch-gcr_gcr-certificate.c (props changed) head/security/gnome-keyring/files/patch-pam_gkr-pam-client.c (props changed) head/security/gnome-keyring/files/patch-pkcs11_rpc-layer_gkm-rpc-dispatch.c (props changed) head/security/gnome-ssh-askpass/files/patch-contrib_Makefile (props changed) head/security/gnome-ssh-askpass/files/patch-contrib_ssh-askpass2.c (props changed) head/security/gnomint/files/patch-configure (props changed) head/security/gnomint/files/patch-src__Makefile.in (props changed) head/security/gnupg/files/patch-doc-Makefile.in (props changed) head/security/gnupg1/files/patch-config.links (props changed) head/security/gnupg1/files/patch-doc:Makefile.in (props changed) head/security/gnupg1/files/patch-g10:Makefile.in (props changed) head/security/gpasman/files/patch-src__file.h (props changed) head/security/gringotts/files/patch-grg_safe.c (props changed) head/security/gwee/files/patch-gwee.c (props changed) head/security/hamachi/files/patch-Makefile (props changed) head/security/hamachi/files/patch-tuncfg_tuncfg.c (props changed) head/security/heimdal/files/patch-cf__db.m4 (props changed) head/security/hmap/files/patch-hmap.py (props changed) head/security/hotssh/files/patch-hotssh_hotvte_vteterm.py (props changed) head/security/hydra/files/patch-configure (props changed) head/security/hydra/files/patch-hydra-gtk-make_xhydra.sh (props changed) head/security/hydra/files/patch-hydra.h (props changed) head/security/iaikpkcs11wrapper/files/patch-native_src_pkcs11wrapper.c (props changed) head/security/identify/files/patch-aa (props changed) head/security/identify/files/patch-ab (props changed) head/security/ifd-slb_rf60/files/patch-Makefile (props changed) head/security/ifd-slb_rf60/files/patch-ctapi.c (props changed) head/security/ifd-slb_rf60/files/patch-serial.h (props changed) head/security/ipfw2dshield/files/patch-Makefile (props changed) head/security/ipfw2dshield/files/patch-README.html (props changed) head/security/ipfw2dshield/files/patch-README.txt (props changed) head/security/ipfw2dshield/files/patch-ipaddr_Makefile (props changed) head/security/ipfw2dshield/files/patch-ipfw2dshield (props changed) head/security/ipfw2dshield/files/patch-strpdate_Makefile (props changed) head/security/ipv6toolkit/files/patch-tools-scan6.c (props changed) head/security/isakmpd/files/patch-Makefile (props changed) head/security/isakmpd/files/patch-Makefile.sysdep (props changed) head/security/isakmpd/files/patch-ike_quick_mode.c (props changed) head/security/isakmpd/files/patch-isakmpd.c (props changed) head/security/isakmpd/files/patch-pf_key_v2.c (props changed) head/security/isakmpd/files/patch-sa.c (props changed) head/security/isakmpd/files/patch-samples::Makefile (props changed) head/security/isakmpd/files/patch-sysdep-common-libsysdep-sha1.c (props changed) head/security/isakmpd/files/patch-sysdep-common-md5.h (props changed) head/security/isakmpd/files/patch-sysdep-common-sha1.h (props changed) head/security/isakmpd/files/patch-sysdep-os.h (props changed) head/security/isakmpd/files/patch-x509.c (props changed) head/security/john/files/patch-params.h (props changed) head/security/keynote/files/patch-ac (props changed) head/security/keynote/files/patch-ad (props changed) head/security/keynote/files/patch-ae (props changed) head/security/keynote/files/patch-af (props changed) head/security/keynote/files/patch-ag (props changed) head/security/knock/files/patch-Makefile.in (props changed) head/security/knock/files/patch-config.h.in (props changed) head/security/knock/files/patch-doc__knock.1.in (props changed) head/security/knock/files/patch-doc__knockd.1.in (props changed) head/security/knock/files/patch-knockd.conf (props changed) head/security/knock/files/patch-src__knock.c (props changed) head/security/knock/files/patch-src__knockd.c (props changed) head/security/krb5-appl/files/patch-ai (props changed) head/security/krb5-appl/files/patch-aj (props changed) head/security/krb5-appl/files/patch-appl::bsd::Makefile.in (props changed) head/security/krb5-appl/files/patch-appl::bsd::klogind.M (props changed) head/security/krb5-appl/files/patch-appl::gssftp::ftp::ftp_var.h (props changed) head/security/krb5-appl/files/patch-appl::telnet::telnetd::Makefile.in (props changed) head/security/krb5-appl/files/patch-appl::telnet::telnetd::telnetd.8 (props changed) head/security/krb5-appl/files/patch-appl::telnet::telnetd::utility.c (props changed) head/security/krb5-appl/files/patch-ay (props changed) head/security/krb5-appl/files/patch-ba (props changed) head/security/krb5-appl/files/patch-bb (props changed) head/security/krb5-appl/files/patch-bsd-krlogind.c (props changed) head/security/krb5-appl/files/patch-bsd-krshd.c (props changed) head/security/krb5-appl/files/patch-libpty-logwtmp.c (props changed) head/security/krb5-appl/files/patch-libpty-update_wtmp.c (props changed) head/security/krb5-maint/files/patch-av (props changed) head/security/krb5-maint/files/patch-config::pre.in (props changed) head/security/krb5-maint/files/patch-config::shlib.conf (props changed) head/security/krb5-maint/files/patch-lib-krb5-os-localaddr.c (props changed) head/security/krb5-maint/files/patch-lib::gssapi::krb5::import_name.c (props changed) head/security/krb5/files/patch-av (props changed) head/security/krb5/files/patch-config::pre.in (props changed) head/security/krb5/files/patch-config::shlib.conf (props changed) head/security/krb5/files/patch-lib-krb5-os-localaddr.c (props changed) head/security/krb5/files/patch-lib::gssapi::krb5::import_name.c (props changed) head/security/l0pht-watch/files/patch-aa (props changed) head/security/l0pht-watch/files/patch-ab (props changed) head/security/l0pht-watch/files/patch-ac (props changed) head/security/l0pht-watch/files/patch-ad (props changed) head/security/l0phtcrack/files/patch-ztest_c (props changed) head/security/l5/files/patch-l5.c (props changed) head/security/labrea/files/patch-Data.c (props changed) head/security/labrea/files/patch-Makefile (props changed) head/security/lasso/files/patch-configure (props changed) head/security/libbf/files/patch-Makefile (props changed) head/security/libfprint/files/patch-config.h.in (props changed) head/security/libfprint/files/patch-libfprint_Makefile.in (props changed) head/security/libgcrypt/files/patch-cipher-rijndael.c (props changed) head/security/libgcrypt/files/patch-ltmain.sh (props changed) head/security/libgcrypt/files/patch-mpi-longlong.h (props changed) head/security/libgnomesu/files/patch-src_gnomesu-auth-dialog.c (props changed) head/security/libpreludedb/files/patch-Makefile.in (props changed) head/security/libsparkcrypto/files/patch-Makefile (props changed) head/security/libsparkcrypto/files/patch-build_libsparkcrypto.gpr (props changed) head/security/libtomcrypt/files/patch-makefile (props changed) head/security/logcheck/files/extra-patch-debian__logcheck.cron.d.in (props changed) head/security/logcheck/files/extra-patch-docs__logcheck.8.in (props changed) head/security/logcheck/files/extra-patch-etc__logcheck.conf.in (props changed) head/security/logcheck/files/extra-patch-src__logcheck.in (props changed) head/security/logcheck/files/extra-patch-src__logtail2.in (props changed) head/security/logcheck/files/patch-rulefiles__linux__ignore.d.server__ssh (props changed) head/security/lsh/files/patch-nettle-openssl.c (props changed) head/security/mailzu/files/patch-lib-DBEngine.class.php (props changed) head/security/manipulate_data/files/patch-read_data.c (props changed) head/security/manipulate_data/files/patch-write_data.c (props changed) head/security/mate-keyring/files/patch-daemon_control_gkd-control-client.c (props changed) head/security/mate-keyring/files/patch-egg_egg-unix-credentials.c (props changed) head/security/mate-keyring/files/patch-pam_gkr-pam-client.c (props changed) head/security/mate-keyring/files/patch-pkcs11_rpc-layer_gkm-rpc-dispatch.c (props changed) head/security/mdcrack/files/patch-Makefile (props changed) head/security/mdcrack/files/patch-src_MD4_core3.c (props changed) head/security/mdcrack/files/patch-src_MD4_global.h (props changed) head/security/mdcrack/files/patch-src_MD5_core3.c (props changed) head/security/mdcrack/files/patch-src_MD5_global.h (props changed) head/security/mdcrack/files/patch-src_NTLM1_global.h (props changed) head/security/mdcrack/files/patch-src_charset.c (props changed) head/security/mdcrack/files/patch-src_global.h (props changed) head/security/mhash/files/patch-doc-Makefile.in (props changed) head/security/mhash/files/patch-include-mutils-mincludes.h (props changed) head/security/mhash/files/patch-include-mutils-mutils.h (props changed) head/security/mhash/files/patch-lib-gosthash.c (props changed) head/security/mhash/files/patch-lib-keygen_mcrypt.c (props changed) head/security/mhash/files/patch-lib-md5.c (props changed) head/security/mhash/files/patch-lib-mhash.c (props changed) head/security/mhash/files/patch-lib-mhash_sha1.c (props changed) head/security/mhash/files/patch-lib-ripemd.c (props changed) head/security/mhash/files/patch-lib-sha1.c (props changed) head/security/mhash/files/patch-lib-sha512_sha384.c (props changed) head/security/mhash/files/patch-lib-stdfns.c (props changed) head/security/mhash/files/patch-lib-tiger.c (props changed) head/security/mhash/files/patch-lib-whirlpool.c (props changed) head/security/mhash/files/patch-libtool (props changed) head/security/mhash/files/patch-src-hmac_test.c (props changed) head/security/mhash/files/patch-src-keygen_test.c (props changed) head/security/monkeysphere/files/patch-src_monkeysphere-host (props changed) head/security/monkeysphere/files/patch-src_share_keytrans (props changed) head/security/mosref/files/patch-bin-install.ms (props changed) head/security/munge/files/patch-configure (props changed) head/security/nacl/files/patch-do (props changed) head/security/nbaudit/files/patch-01 (props changed) head/security/nbaudit/files/patch-includes.h (props changed) head/security/nbaudit/files/patch-nat.c (props changed) head/security/nbaudit/files/patch-nmb.c (props changed) head/security/nbaudit/files/patch-smb.h (props changed) head/security/ncrypt/files/patch-getopt.c (props changed) head/security/ncrypt/files/patch-ncrypt.c (props changed) head/security/nessus-libraries/files/patch-aa (props changed) head/security/nessus-libraries/files/patch-ab (props changed) head/security/nessus-libraries/files/patch-ac (props changed) head/security/nessus-libraries/files/patch-libtool (props changed) head/security/nessus/files/patch-Makefile (props changed) head/security/nessus/files/patch-aa (props changed) head/security/nessus/files/patch-ab (props changed) head/security/nss/files/patch-bug301986 (props changed) head/security/nss/files/patch-const (props changed) head/security/nss/files/patch-lib-freebl-Makefile (props changed) head/security/nss/files/patch-lib_freebl_mpi_mpcpucache.c (props changed) head/security/nss/files/patch-lib_softoken_pkcs11c.c (props changed) head/security/nss/files/patch-tests (props changed) head/security/oidentd/files/patch-configure (props changed) head/security/oidentd/files/patch-oidentd-multiple-ip (props changed) head/security/oidentd/files/patch-oidentd.8 (props changed) head/security/oidentd/files/patch-oidentd.conf.5 (props changed) head/security/oidentd/files/patch-oidentd_masq.conf.5 (props changed) head/security/openconnect/files/patch-www_Makefile.am (props changed) head/security/opencryptoki/files/patch-Makefile.am (props changed) head/security/opencryptoki/files/patch-configure.in (props changed) head/security/opencryptoki/files/patch-usr-include-pkcs11-apictl.h (props changed) head/security/opencryptoki/files/patch-usr-include-pkcs11-slotmgr.h (props changed) head/security/opencryptoki/files/patch-usr-include-pkcs11-stdll.h (props changed) head/security/opencryptoki/files/patch-usr-lib-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-aep_stdll-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-api-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-api-api_interface.c (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-api-apiutil.c (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-api-shrd_mem.c.in (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-bcom_stdll-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-cca_stdll-host_defs.h (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-cca_stdll-loadsave.c (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-cca_stdll-new_host.c (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-cca_stdll-tok_spec_struct.h (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-common-host_defs.h (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-common-loadsave.c (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-common-new_host.c (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-common-tok_spec_struct.h (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-common-utility.c (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-cr_stdll-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-ica_s390_stdll-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-ica_stdll-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-soft_stdll-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-tpm_stdll-host_defs.h (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-tpm_stdll-loadsave.c (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-tpm_stdll-new_host.c (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-tpm_stdll-tok_spec_struct.h (props changed) head/security/opencryptoki/files/patch-usr-lib-pkcs11-tpm_stdll-utility.c (props changed) head/security/opencryptoki/files/patch-usr-sbin-pkcs11_startup-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-sbin-pkcs11_startup-pkcs11_startup.in (props changed) head/security/opencryptoki/files/patch-usr-sbin-pkcs_slot-pkcs_slot.in (props changed) head/security/opencryptoki/files/patch-usr-sbin-pkcsconf-Makefile.am (props changed) head/security/opencryptoki/files/patch-usr-sbin-pkcsconf-pkcsconf.c (props changed) head/security/opencryptoki/files/patch-usr-sbin-pkcsslotd-err.c (props changed) head/security/opencryptoki/files/patch-usr-sbin-pkcsslotd-mutex.c (props changed) head/security/opencryptoki/files/patch-usr-sbin-pkcsslotd-pkcsslotd.h (props changed) head/security/opencryptoki/files/patch-usr-sbin-pkcsslotd-shmem.c (props changed) head/security/openct/files/patch-etc_Makefile.in (props changed) head/security/openct/files/patch-etc_openct.conf.in (props changed) head/security/openfwtk/files/patch-Makefile.common (props changed) head/security/openfwtk/files/patch-Makefile.config (props changed) head/security/openfwtk/files/patch-configs-FreeBSD (props changed) head/security/openfwtk/files/patch-reports-Makefile (props changed) head/security/openfwtk/files/patch-reports-frequentcheck.sh (props changed) head/security/openfwtk/files/patch-squid-gw-squid-gw.restart (props changed) head/security/opensaml2/files/patch-Makefile.in (props changed) head/security/opensaml2/files/patch-doc_Makefile.in (props changed) head/security/opensc/files/patch-etc_Makefile.in (props changed) head/security/openscep/files/patch-include_openscep_err.h (props changed) head/security/openscep/files/patch-lib_Makefile.in (props changed) head/security/openscep/files/patch-lib_decode.c (props changed) head/security/openscep/files/patch-lib_fingerprint.c (props changed) head/security/openscep/files/patch-lib_http.c (props changed) head/security/openscep/files/patch-lib_init.c (props changed) head/security/openscep/files/patch-lib_isasu.c (props changed) head/security/openscep/files/patch-lib_openscep__err.c (props changed) head/security/openscep/files/patch-lib_payload.c (props changed) head/security/openscep/files/patch-lib_proxy.c (props changed) head/security/openscep/files/patch-lib_sigattr.c (props changed) head/security/openscep/files/patch-scepd_Makefile.in (props changed) head/security/openscep/files/patch-scepd_dn2xid.c (props changed) head/security/openscep/files/patch-scepd_sceplist.c (props changed) head/security/openssh-portable/files/patch-auth.c (props changed) head/security/openssh-portable/files/patch-auth2.c (props changed) head/security/openssh-portable/files/patch-readconf.c (props changed) head/security/openssh-portable/files/patch-servconf.c (props changed) head/security/openssh-portable/files/patch-session.c (props changed) head/security/openssh-portable/files/patch-ssh-agent.c (props changed) head/security/openssh-portable/files/patch-ssh.c (props changed) head/security/openssh-portable/files/patch-ssh_config (props changed) head/security/openssh-portable/files/patch-ssh_config.5 (props changed) head/security/openssh-portable/files/patch-sshd.8 (props changed) head/security/openssh-portable/files/patch-sshd.c (props changed) head/security/openssh-portable/files/patch-sshd_config (props changed) head/security/openssh-portable/files/patch-sshd_config.5 (props changed) head/security/openssl/files/patch-Configure (props changed) head/security/openssl/files/patch-RFC-5705 (props changed) head/security/openssl/files/patch-ad (props changed) head/security/openssl/files/patch-ak (props changed) head/security/openssl/files/patch-openbsd_hw.c (props changed) head/security/openssl/files/patch-ssl-srtp.h (props changed) head/security/openssl_tpm_engine/files/patch-e_tpm.c (props changed) head/security/openssl_tpm_engine/files/patch-e_tpm.h (props changed) head/security/openssl_tpm_engine/files/patch-e_tpm_err.c (props changed) head/security/openssl_tpm_engine/files/patch-openssl.cnf.sample (props changed) head/security/openvas-client/files/patch-nessus-Makefile (props changed) head/security/openvas-client/files/patch-nessus.tmpl.in (props changed) head/security/openvas-client/files/patch-src-gui-Makefile (props changed) head/security/openvas-libnasl/files/patch-configure (props changed) head/security/openvas-libraries/files/patch-configure (props changed) head/security/openvas-libraries/files/patch-libopenvas-Makefile (props changed) head/security/openvas-libraries/files/patch-libopenvas-ftp_funcs.c (props changed) head/security/openvas-libraries/files/patch-libopenvas-ids_send.c (props changed) head/security/openvas-libraries/files/patch-libopenvas-network.h (props changed) head/security/openvas-libraries/files/patch-libopenvas-pcap.c (props changed) head/security/openvas-libraries/files/patch-libopenvas-popen.c (props changed) head/security/openvas-libraries/files/patch-libopenvas_openvas__server.c (props changed) head/security/openvas-libraries/files/patch-openvas-libraries.tmpl.in (props changed) head/security/openvas-plugins/files/patch-openvas-nvt-sync.in (props changed) head/security/openvas-server/files/patch-configure (props changed) head/security/openvas-server/files/patch-openvas.tmpl.in (props changed) head/security/openvas-server/files/patch-openvasd-Makefile (props changed) head/security/openvpn-admin/files/patch-src-Configuration.cs (props changed) head/security/openvpn-admin/files/patch-src-MainWindow.cs (props changed) head/security/ossec-hids-server/files/patch-src__InstallServer.sh (props changed) head/security/ossec-hids-server/files/patch-src__LOCATION (props changed) head/security/ossec-hids-server/files/patch-src__headers__defs.h (props changed) head/security/p5-Authen-Captcha/files/patch-Captcha.pm (props changed) head/security/p5-Authen-CyrusSASL/files/patch-CyrusSASL.pm (props changed) head/security/p5-Authen-Libwrap/files/patch-Build-PL (props changed) head/security/p5-Authen-Smb/files/patch-smbval::smbencrypt.c (props changed) head/security/p5-Authen-TacacsPlus/files/patch-tac_plus.h (props changed) head/security/p5-Authen-TacacsPlus/files/patch-tacpluslib__tac_client.c (props changed) head/security/p5-Crypt-Anubis/files/patch-anubis.c (props changed) head/security/p5-Crypt-OpenPGP/files/patch-CVE-2005-0366 (props changed) head/security/p5-Crypt-OpenSSL-DSA/files/patch-lib::Crypt::OpenSSL::DSA.pm (props changed) head/security/p5-Crypt-RandPasswd/files/patch-lib-Crypt-RandPasswd.pm (props changed) head/security/p5-Net-SSLeay/files/patch-SSLeay.pm (props changed) head/security/p5-PGP/files/patch-aa (props changed) head/security/p5-PGP/files/patch-ab (props changed) head/security/p5-SAVI-Perl/files/patch-sav_if:s_comput.h (props changed) head/security/pad/files/patch-pad.1 (props changed) head/security/pad/files/patch-pad.c (props changed) head/security/pam-mysql/files/patch-acinclude_m4 (props changed) head/security/pam_abl/files/patch-Makefile (props changed) head/security/pam_abl/files/patch-conf-pam_abl.conf (props changed) head/security/pam_abl/files/patch-conf-system-auth (props changed) head/security/pam_abl/files/patch-doc-index.html (props changed) head/security/pam_abl/files/patch-doc-pam_abl.html (props changed) head/security/pam_abl/files/patch-pam_abl.c (props changed) head/security/pam_abl/files/patch-pam_abl.h (props changed) head/security/pam_abl/files/patch-tools-Makefile (props changed) head/security/pam_alreadyloggedin/files/patch-pam_alreadyloggedin.c (props changed) head/security/pam_fprint/files/patch-src_Makefile.am (props changed) head/security/pam_fprint/files/patch-src_pam__fprint__enroll.c (props changed) head/security/pam_fprint/files/patch-src_pam_fprint.c (props changed) head/security/pam_google_authenticator/files/patch-Makefile (props changed) head/security/pam_krb5-rh/files/patch-src__acct.c (props changed) head/security/pam_krb5-rh/files/patch-src__kuserok.c (props changed) head/security/pam_ldap/files/patch-aa (props changed) head/security/pam_ldap/files/patch-ab (props changed) head/security/pam_ldap/files/patch-configure (props changed) head/security/pam_p11/files/patch-configure (props changed) head/security/pam_p11/files/patch-src_pam_p11.c (props changed) head/security/pam_p11/files/patch-src_test.c (props changed) head/security/pam_per_user/files/patch-Makefile.in (props changed) head/security/pam_pgina/files/patch-src::access.c (props changed) head/security/pam_pgina/files/patch-src::actions.c (props changed) head/security/pam_pgina/files/patch-src::pgina_pam_server.c (props changed) head/security/pam_pwdfile/files/patch-bigcrypt.c (props changed) head/security/pam_require/files/patch-Makefile.in (props changed) head/security/pam_require/files/patch-pam_require.c (props changed) head/security/pam_smb/files/patch-configure (props changed) head/security/pam_smb/files/patch-pamsmbd::pam_read_conf.c (props changed) head/security/pam_ssh_agent_auth/files/patch-Makefile.in (props changed) head/security/pam_ssh_agent_auth/files/patch-pam_user_authorized_keys.c (props changed) head/security/pamtester/files/patch-src_app.c (props changed) head/security/pcsc-tools/files/patch-Makefile (props changed) head/security/pear-Auth_OpenID/files/patch-admin-package2.xml (props changed) head/security/pear-Auth_OpenID/files/patch-admin-xmlconfig.py (props changed) head/security/pft/files/patch-pft_main.cpp (props changed) head/security/pft/files/patch-pjlsession.cpp (props changed) head/security/pft/files/patch-rawmem.cpp (props changed) head/security/pgp/files/patch-aa (props changed) head/security/pgp/files/patch-fileio.h (props changed) head/security/pgpin/files/patch-crypto.c (props changed) head/security/pgpin/files/patch-fileio.h (props changed) head/security/pgpin/files/patch-global.h (props changed) head/security/pgpin/files/patch-makefile (props changed) head/security/pgpin/files/patch-md5.h (props changed) head/security/pgpin/files/patch-usuals.h (props changed) head/security/php-suhosin/files/patch-execute.c (props changed) head/security/php-suhosin/files/patch-post_handler.c (props changed) head/security/php5-filter/files/patch-config.m4 (props changed) head/security/php52-filter/files/patch-config.m4 (props changed) head/security/php53-filter/files/patch-config.m4 (props changed) head/security/php55-filter/files/patch-config.m4 (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_bulkemail.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_editconfig.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_edituser.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_inactiveusers.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_index.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_login.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_newuser.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_useraccept.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_userinfo.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_userlist.php (props changed) head/security/phpdeadlock/files/patch-deadlock_admin_userrequests.php (props changed) head/security/phpdeadlock/files/patch-deadlock_install_install.php (props changed) head/security/pinentry/files/patch-more_sec_mem (props changed) head/security/pinentry/files/patch-qt4__Makefile.in (props changed) head/security/pkcrack/files/patch-Makefile (props changed) head/security/pkcrack/files/patch-exfunc.c (props changed) head/security/pkcrack/files/patch-extract.c (props changed) head/security/pkcrack/files/patch-findkey.c (props changed) head/security/pkcrack/files/patch-main.c (props changed) head/security/pkcrack/files/patch-makekey.c (props changed) head/security/pkcrack/files/patch-mktmptbl.c (props changed) head/security/pkcrack/files/patch-readhead.c (props changed) head/security/pkcrack/files/patch-zdmain.c (props changed) head/security/pkcrack/files/patch-zipdecrypt.c (props changed) head/security/pkcs11-dump/files/patch-Makefile.in (props changed) head/security/pks/files/patch-configure.in (props changed) head/security/pktsuckers/files/patch-aa (props changed) head/security/portsentry/files/patch-portsentry.c (props changed) head/security/prelude-lml/files/patch-Makefile.in (props changed) head/security/prelude-lml/files/patch-configure (props changed) head/security/prelude-manager/files/patch-Makefile.in (props changed) head/security/prelude-manager/files/patch-plugins:reports:smtp:Makefile.in (props changed) head/security/prelude-pflogger/files/patch-process_packet.c (props changed) head/security/proxycheck/files/patch-ab (props changed) head/security/proxycheck/files/patch-ac (props changed) head/security/proxytunnel/files/patch-Makefile (props changed) head/security/pscan/files/patch-Makefile (props changed) head/security/pssh/files/patch-psshlib_psshutil.py (props changed) head/security/putty/files/patch-Makefile.gtk (props changed) head/security/putty/files/patch-uxnet.c (props changed) head/security/putty/files/patch-uxpty.c (props changed) head/security/pvk/files/patch-Makefile (props changed) head/security/pwauth/files/extra-patch-utmpx (props changed) head/security/pwauth/files/patch-checkfaillog.c (props changed) head/security/pwauth/files/patch-config.h (props changed) head/security/pwman/files/patch-src__convert_pwdb.c (props changed) head/security/pwman/files/patch-src__pwman.c (props changed) head/security/pwman/files/patch-src__pwman.h (props changed) head/security/pwman3/files/patch-pwman-data-drivers_sqlite.py (props changed) head/security/pwman3/files/patch-pwman-exchange_exporter.py (props changed) head/security/pwman3/files/patch-pwman-exchange_importer.py (props changed) head/security/py-clamav/files/patch-pyclamav.c (props changed) head/security/py-ed25519ll/files/patch-ed25519ll__ed25519ct.py (props changed) head/security/py-ed25519ll/files/patch-setup.py (props changed) head/security/py-fail2ban/files/patch-bsd-sshd.conf (props changed) head/security/py-fail2ban/files/patch-bsdftp.conf (props changed) head/security/py-oauthlib/files/patch-setup.py (props changed) head/security/py-openssl/files/patch-OpenSSL__ssl__ssl.h (props changed) head/security/py-passlib/files/patch-setup.py (props changed) head/security/py-potr/files/patch-setup.py (props changed) head/security/py-pow/files/patch-POW.c (props changed) head/security/py-pyclamd/files/patch-pyclamd.py (props changed) head/security/py-pyclamd/files/patch-setup.py (props changed) head/security/py-ssh/files/patch-setup.py (props changed) head/security/py-trustedpickle/files/patch-TrustedPickle.py (props changed) head/security/py-twofish/files/patch-Makefile.in (props changed) head/security/py-twofish/files/patch-twofishmodule.c (props changed) head/security/py-xmlsec/files/patch-setup.py (props changed) head/security/qca-ossl/files/patch-qca-ossl.cpp (props changed) head/security/quantis/files/patch-Quantis_CMakeLists.txt (props changed) head/security/racoon2/files/patch-configure.in (props changed) head/security/racoon2/files/patch-kinkd-Makefile.in (props changed) head/security/racoon2/files/patch-kinkd-configure (props changed) head/security/racoon2/files/patch-samples-Makefile.in (props changed) head/security/racoon2/files/patch-samples-rc.d-iked.in (props changed) head/security/racoon2/files/patch-samples-rc.d-kinkd.in (props changed) head/security/racoon2/files/patch-samples-rc.d-spmd.in (props changed) head/security/racoon2/files/patch-spmd-spmd_internal.h (props changed) head/security/rainbowcrack/files/patch-HashAlgorithm.cpp (props changed) head/security/rainbowcrack/files/patch-HashAlgorithm.h (props changed) head/security/rainbowcrack/files/patch-HashRoutine.cpp (props changed) head/security/ratproxy/files/patch-Makefile (props changed) head/security/razorback-api/files/patch-src__binary_buffer.c (props changed) head/security/rdigest/files/patch-aa (props changed) head/security/rdigest/files/patch-ab (props changed) head/security/rdigest/files/patch-ac (props changed) head/security/revealrk/files/patch-SConstruct (props changed) head/security/rkhunter/files/patch-files__rkhunter.conf (props changed) head/security/rkhunter/files/patch-installer.sh (props changed) head/security/ruby-gpgme/files/patch-gpgme_n.c (props changed) head/security/saint/files/patch-reconfig (props changed) head/security/samhain/files/extra-patch-config-h-in (props changed) head/security/sasp/files/patch-Makefile (props changed) head/security/scanssh/files/patch-Makefile.in (props changed) head/security/seahorse-plugins/files/patch-agent_seahorse-agent-cache.c (props changed) head/security/seahorse-plugins/files/patch-agent_seahorse-agent-io.c (props changed) head/security/seahorse-plugins/files/patch-agent_seahorse-agent.h (props changed) head/security/seahorse-plugins/files/patch-libseahorse_seahorse-notification.c (props changed) head/security/seahorse-plugins/files/patch-libseahorse_seahorse-pgp-operation.c (props changed) head/security/seahorse-plugins/files/patch-plugins_nautilus_seahorse-tool.c (props changed) head/security/seahorse/files/patch-libseahorse_seahorse-notification.c (props changed) head/security/seccure/files/patch-Makefile (props changed) head/security/sectok/files/patch-cyberflex.c (props changed) head/security/secure_delete/files/patch-Makefile (props changed) head/security/sguil-server/files/patch-sguild.access (props changed) head/security/sguil-server/files/patch-sql_scripts-sancp_cleanup.tcl (props changed) head/security/shibboleth2-sp/files/patch-shibsp_remoting_impl_TCPListener.cpp (props changed) head/security/slurpie/files/patch-Makefile (props changed) head/security/slurpie/files/patch-mn.h (props changed) head/security/slurpie/files/patch-src_mater.c (props changed) head/security/slurpie/files/patch-src_node.c (props changed) head/security/slush/files/patch-aa (props changed) head/security/slush/files/patch-ab (props changed) head/security/slush/files/patch-ac (props changed) head/security/snort/files/patch-etc__snort.conf (props changed) head/security/snortreport/files/patch-ipdetail.php (props changed) head/security/snortreport/files/patch-sigdetail.php (props changed) head/security/snortsam/files/patch-ssp_ipfw2.c (props changed) head/security/srp/files/patch-base::lib::utent.c (props changed) head/security/srp/files/patch-base::libmisc::utmp.c (props changed) head/security/srp/files/patch-base::pam_eps::Makefile.in (props changed) head/security/srp/files/patch-configure (props changed) head/security/srp/files/patch-telnet::telnetd::sys_term.c (props changed) head/security/ssdeep/files/patch-main.h (props changed) head/security/ssh_askpass_gtk2/files/patch-ssh_askpass_fullscreen.c (props changed) head/security/sshguard/files/patch-src-sshguard.c (props changed) head/security/sshit/files/patch-sshit.diff (props changed) head/security/sslscan/files/patch-Makefile (props changed) head/security/sslscan/files/patch-sslscan.c (props changed) head/security/sslsniffer/files/patch-Makefile (props changed) head/security/sslwrap/files/patch-aa (props changed) head/security/sssd/files/patch-Makefile.am (props changed) head/security/sssd/files/patch-src__confdb__confdb.c (props changed) head/security/sssd/files/patch-src__external__krb5.m4 (props changed) head/security/sssd/files/patch-src__external__pac_responder.m4 (props changed) head/security/sssd/files/patch-src__providers__ad__ad_access.c (props changed) head/security/sssd/files/patch-src__providers__ad__ad_common.c (props changed) head/security/sssd/files/patch-src__providers__fail_over.c (props changed) head/security/sssd/files/patch-src__providers__ipa__ipa_common.c (props changed) head/security/sssd/files/patch-src__providers__ldap__ldap_auth.c (props changed) head/security/sssd/files/patch-src__providers__ldap__sdap_access.c (props changed) head/security/sssd/files/patch-src__providers__ldap__sdap_async_sudo_hostinfo.c (props changed) head/security/sssd/files/patch-src__resolv__async_resolv.c (props changed) head/security/sssd/files/patch-src__sss_client__common.c (props changed) head/security/sssd/files/patch-src__sss_client__nss_group.c (props changed) head/security/sssd/files/patch-src__sss_client__pam_sss.c (props changed) head/security/sssd/files/patch-src__sss_client__pam_test_client.c (props changed) head/security/sssd/files/patch-src__sss_client__sss_nss.exports (props changed) head/security/sssd/files/patch-src__util__crypto__libcrypto__crypto_sha512crypt.c (props changed) head/security/sssd/files/patch-src__util__crypto__nss__nss_sha512crypt.c (props changed) head/security/sssd/files/patch-src__util__find_uid.c (props changed) head/security/sssd/files/patch-src__util__server.c (props changed) head/security/sssd/files/patch-src__util__sss_ldap.c (props changed) head/security/sssd/files/patch-src__util__util.h (props changed) head/security/ssss/files/patch-Makefile (props changed) head/security/ssss/files/patch-manpage (props changed) head/security/ssss/files/patch-ssss.c (props changed) head/security/sst/files/patch-sst.c (props changed) head/security/starttls/files/patch-configure (props changed) head/security/stegdetect/files/patch-Makefile.in (props changed) head/security/stegdetect/files/patch-break_jsteg.c (props changed) head/security/stegdetect/files/patch-common.c (props changed) head/security/stegdetect/files/patch-stegdetect.c (props changed) head/security/stegdetect/files/patch-xsteg.c (props changed) head/security/steghide/files/patch-AuSampleValues.cc (props changed) head/security/steghide/files/patch-aa (props changed) head/security/steghide/files/patch-src-AuData.h (props changed) head/security/steghide/files/patch-src-BmpFile.cc (props changed) head/security/steghide/files/patch-src-MHashKeyGen.h (props changed) head/security/steghide/files/patch-src-MHashPP.cc (props changed) head/security/steghide/files/patch-src-MHashPP.h (props changed) head/security/strobe/files/patch-aa (props changed) head/security/strobe/files/patch-ab (props changed) head/security/sudo/files/patch-plugins__sudoers__Makefile.in (props changed) head/security/sudo/files/patch-plugins__sudoers__sudoers.in (props changed) head/security/sudosh/files/patch-src-parse.c (props changed) head/security/sudosh/files/patch-src::Makefile.in (props changed) head/security/sudosh/files/patch-src::sudosh.c (props changed) head/security/sudosh2/files/patch-src-getopt.c (props changed) head/security/sudosh2/files/patch-src::Makefile.in (props changed) head/security/sudosh2/files/patch-src::sudosh.c (props changed) head/security/sudosh3/files/patch-src-Makefile.am (props changed) head/security/super/files/patch-06 (props changed) head/security/super/files/patch-localsys.h (props changed) head/security/swatch/files/patch-Throttle.pm (props changed) head/security/swatch/files/patch-lib-Swatch_Actions.pm (props changed) head/security/tclsasl/files/patch-config-ltconfig (props changed) head/security/tinyca/files/patch-lib::CA.pm (props changed) head/security/tinyca/files/patch-tinyca2 (props changed) head/security/tinysu/files/patch-hier.c (props changed) head/security/tor-devel/files/patch-configure (props changed) head/security/tpm-tools/files/patch-lib-tpm_utils.c (props changed) head/security/tpm-tools/files/patch-src-cmds-Makefile.am (props changed) head/security/tpm-tools/files/patch-src-cmds-Makefile.in (props changed) head/security/tpm-tools/files/patch-src-data_mgmt-data_protect.c (props changed) head/security/tpm-tools/files/patch-src-tpm_mgmt-tpm_present.c (props changed) head/security/tpm-tools/files/patch-src-tpm_mgmt-tpm_takeownership.c (props changed) head/security/trinokiller/files/patch-trinokiller.c (props changed) head/security/tripwire-131/files/patch-aa (props changed) head/security/tripwire-131/files/patch-ab (props changed) head/security/tripwire-131/files/patch-ac (props changed) head/security/tripwire-131/files/patch-ad (props changed) head/security/tripwire-131/files/patch-ae (props changed) head/security/tripwire-131/files/patch-ba (props changed) head/security/tripwire-131/files/patch-bb (props changed) head/security/tripwire-131/files/patch-bc (props changed) head/security/tripwire-131/files/patch-bd (props changed) head/security/tripwire/files/patch-Makefile.in (props changed) head/security/tripwire/files/patch-install-install.sh (props changed) head/security/tripwire/files/patch-install::install.cfg (props changed) head/security/tripwire/files/patch-man::man4::twconfig.4 (props changed) head/security/tripwire/files/patch-man::man4::twpolicy.4 (props changed) head/security/tripwire/files/patch-man::man5::Makefile.in (props changed) head/security/tripwire/files/patch-man::man::Makefile.in (props changed) head/security/tripwire/files/patch-src-fco-fcosetimpl.h (props changed) head/security/tripwire/files/patch-src-tw-fcoreport.h (props changed) head/security/tripwire/files/patch-src::core::msystem.h (props changed) head/security/tripwire12/files/patch-ab (props changed) head/security/tripwire12/files/patch-ac (props changed) head/security/tripwire12/files/patch-aux_Makefile (props changed) head/security/tripwire12/files/patch-mktemp (props changed) head/security/tripwire12/files/patch-warnings (props changed) head/security/trousers/files/extra-patch-src-tcs-Makefile.am (props changed) head/security/trousers/files/extra-patch-src-tcsd-Makefile.am (props changed) head/security/trousers/files/extra-patch-src-tddl-Makefile.am (props changed) head/security/trousers/files/patch-configure.in (props changed) head/security/trousers/files/patch-dist-Makefile.am (props changed) head/security/trousers/files/patch-dist-tcsd.conf.in (props changed) head/security/trousers/files/patch-src-include-biosem.h (props changed) head/security/trousers/files/patch-src-include-linux-tpm.h (props changed) head/security/trousers/files/patch-src-include-tcs_tsp.h (props changed) head/security/trousers/files/patch-src-include-tcs_utils.h (props changed) head/security/trousers/files/patch-src-include-tcsd.h (props changed) head/security/trousers/files/patch-src-include-tcsd_ops.h (props changed) head/security/trousers/files/patch-src-include-threads.h (props changed) head/security/trousers/files/patch-src-include-trousers_types.h (props changed) head/security/trousers/files/patch-src-include-tss-platform.h (props changed) head/security/trousers/files/patch-src-tcs-ps-ps_utils.c (props changed) head/security/trousers/files/patch-src-tcs-ps-tcsps.c (props changed) head/security/trousers/files/patch-src-tcs-tcs_aik.c (props changed) head/security/trousers/files/patch-src-tcs-tcs_auth_mgr.c (props changed) head/security/trousers/files/patch-src-tcsd-svrside.c (props changed) head/security/trousers/files/patch-src-trspi-Makefile.am (props changed) head/security/trousers/files/patch-src-tspi-Makefile.am (props changed) head/security/trousers/files/patch-src-tspi-ps-ps_utils.c (props changed) head/security/trousers/files/patch-src-tspi-ps-tspps.c (props changed) head/security/trousers/files/patch-src-tspi-rpc-hosttable.c (props changed) head/security/trousers/files/patch-src-tspi-rpc-tcstp-rpc.c (props changed) head/security/tthsum/files/patch-Makefile (props changed) head/security/tuntun/files/patch-po (props changed) head/security/tuntun/files/patch-src_tuntun-applet.c (props changed) head/security/tuntun/files/patch-tuntun.server (props changed) head/security/unicornscan/files/patch-Makefile (props changed) head/security/unicornscan/files/patch-dlerror-bug (props changed) head/security/unicornscan/files/patch-libs::Makefile (props changed) head/security/unicornscan/files/patch-src-scan_progs-Makefile (props changed) head/security/unicornscan/files/patch-src::Makefile (props changed) head/security/unicornscan/files/patch-src::Makefile.inc (props changed) head/security/unicornscan/files/patch-src::config.h (props changed) head/security/vida/files/patch-aa (props changed) head/security/vlock/files/patch-configure (props changed) head/security/vlog/files/patch-curses.c (props changed) head/security/vlog/files/patch-vlog.c (props changed) head/security/vpnc/files/patch-Makefile (props changed) head/security/vpnc/files/patch-config.c (props changed) head/security/vpnc/files/patch-sysdep.h (props changed) head/security/vpnc/files/patch-vpnc-script.in (props changed) head/security/vpnc/files/patch-vpnc.c (props changed) head/security/wipe/files/patch-Makefile.in (props changed) head/security/wipe/files/patch-blkdev.c (props changed) head/security/wipe/files/patch-prompt.c (props changed) head/security/xca/files/patch-doc-Makefile (props changed) head/security/xca/files/patch-img-Makefile (props changed) head/security/xinetd/files/patch-Makefile.in (props changed) head/security/xinetd/files/patch-xinetd::builtins.c (props changed) head/security/xinetd/files/patch-xinetd::xconfig.h (props changed) head/security/xml-security/files/patch-build.xml (props changed) head/security/xorsearch/files/patch-XORSearch.c (props changed) head/security/xyssl/files/patch-Makefile (props changed) head/security/yersinia/files/patch-configure (props changed) head/security/yersinia/files/patch-src-protocols.h (props changed) head/security/yersinia/files/patch-src_interfaces.c (props changed) head/security/zebedee/files/patch-aa (props changed) head/security/zxid/files/patch-Makefile (props changed) head/security/zxid/files/patch-smime.c (props changed) head/security/zxid/files/patch-zx.h (props changed) head/shells/44bsd-csh/files/patch-Makefile (props changed) head/shells/44bsd-csh/files/patch-file.c (props changed) head/shells/44bsd-csh/files/patch-proc.c (props changed) head/shells/bash-devel/files/extrapatch-colonbreakswords (props changed) head/shells/bash-devel/files/extrapatch-implicitcd (props changed) head/shells/bash-devel/files/patch-config-top.h (props changed) head/shells/bash-devel/files/patch-doc_Makefile.in (props changed) head/shells/bash-devel/files/patch-doc_bash.1 (props changed) head/shells/bash-devel/files/patch-doc_bashref.texi (props changed) head/shells/bash-devel/files/patch-lib_readline_display.c (props changed) head/shells/bash/files/patch-config-top.h (props changed) head/shells/bash/files/patch-doc::Makefile.in (props changed) head/shells/bash/files/patch-doc::bash.1 (props changed) head/shells/bash/files/patch-doc::bashref.texi (props changed) head/shells/bash/files/patch-lib::readline::display.c (props changed) head/shells/es/files/patch-aa (props changed) head/shells/es/files/patch-ab (props changed) head/shells/es/files/patch-mksignal (props changed) head/shells/es/files/patch-prim-ctl.c (props changed) head/shells/es/files/patch-print.c (props changed) head/shells/es/files/patch-signal.c (props changed) head/shells/fd/files/patch-Makefile.in (props changed) head/shells/fd/files/patch-_fdrc (props changed) head/shells/fd/files/patch-fd.h (props changed) head/shells/flash/files/patch-aa (props changed) head/shells/flash/files/patch-ab (props changed) head/shells/flash/files/patch-ad (props changed) head/shells/flash/files/patch-ah (props changed) head/shells/flash/files/patch-ai (props changed) head/shells/flash/files/patch-aj (props changed) head/shells/flash/files/patch-ak (props changed) head/shells/flash/files/patch-al (props changed) head/shells/flash/files/patch-am (props changed) head/shells/flash/files/patch-an (props changed) head/shells/flash/files/patch-ao (props changed) head/shells/heirloom-sh/files/patch-acct (props changed) head/shells/ibsh/files/patch-Makefile (props changed) head/shells/jailkit/files/patch-Makefile.in (props changed) head/shells/ksh93/files/patch-src-lib-libast-features-wchar (props changed) head/shells/pdksh/files/patch-alloc.c (props changed) head/shells/pdksh/files/patch-edit.c (props changed) head/shells/pdksh/files/patch-eval.c (props changed) head/shells/pdksh/files/patch-sigact.c (props changed) head/shells/sash/files/patch-Makefile (props changed) head/shells/sash/files/patch-cmd_ls.c (props changed) head/shells/sash/files/patch-cmds.c (props changed) head/shells/sash/files/patch-sash.h (props changed) head/shells/tcshrc/files/patch-src__tcshrc.alias (props changed) head/shells/tcshrc/files/patch-src__tcshrc.complete (props changed) head/shells/tcshrc/files/patch-tcshrc_config (props changed) head/shells/v7sh/files/patch-args.c (props changed) head/shells/v7sh/files/patch-blok.c (props changed) head/shells/v7sh/files/patch-builtin.c (props changed) head/shells/v7sh/files/patch-cmd.c (props changed) head/shells/v7sh/files/patch-ctype.c (props changed) head/shells/v7sh/files/patch-ctype.h (props changed) head/shells/v7sh/files/patch-defs.h (props changed) head/shells/v7sh/files/patch-error.c (props changed) head/shells/v7sh/files/patch-expand.c (props changed) head/shells/v7sh/files/patch-fault.c (props changed) head/shells/v7sh/files/patch-io.c (props changed) head/shells/v7sh/files/patch-mac.h (props changed) head/shells/v7sh/files/patch-macro.c (props changed) head/shells/v7sh/files/patch-main.c (props changed) head/shells/v7sh/files/patch-mode.h (props changed) head/shells/v7sh/files/patch-msg.c (props changed) head/shells/v7sh/files/patch-name.c (props changed) head/shells/v7sh/files/patch-name.h (props changed) head/shells/v7sh/files/patch-print.c (props changed) head/shells/v7sh/files/patch-service.c (props changed) head/shells/v7sh/files/patch-setbrk.c (props changed) head/shells/v7sh/files/patch-stak.c (props changed) head/shells/v7sh/files/patch-stak.h (props changed) head/shells/v7sh/files/patch-string.c (props changed) head/shells/v7sh/files/patch-sym.h (props changed) head/shells/v7sh/files/patch-test.c (props changed) head/shells/v7sh/files/patch-timeout.h (props changed) head/shells/v7sh/files/patch-word.c (props changed) head/shells/v7sh/files/patch-xec.c (props changed) head/shells/viewglob/files/patch-vgseer_ptytty.c (props changed) head/shells/wapsh/files/patch-htshd::htshd.c (props changed) head/shells/zsh/files/extra-patch-bsdtar (props changed) head/shells/zsh/files/patch-Completion-Unix-Command-_sysctl (props changed) head/shells/zsh/files/patch-Src_jobs.c (props changed) head/shells/zsh/files/patch-Src_watch.c (props changed) head/sysutils/44bsd-more/files/patch-Makefile (props changed) head/sysutils/44bsd-more/files/patch-ch.c (props changed) head/sysutils/44bsd-more/files/patch-command.c (props changed) head/sysutils/44bsd-more/files/patch-less.h (props changed) head/sysutils/44bsd-more/files/patch-linenum.c (props changed) head/sysutils/44bsd-more/files/patch-main.c (props changed) head/sysutils/44bsd-more/files/patch-marks.c (props changed) head/sysutils/44bsd-more/files/patch-ncommand.c (props changed) head/sysutils/44bsd-more/files/patch-prim.c (props changed) head/sysutils/44bsd-more/files/patch-screen.c (props changed) head/sysutils/44bsd-more/files/patch-signal.c (props changed) head/sysutils/44bsd-more/files/patch-tags.c (props changed) head/sysutils/915resolution/files/patch-915resolution.c (props changed) head/sysutils/adtool/files/patch-src::tools::Makefile.in (props changed) head/sysutils/afbinit/files/patch-afbinit.c (props changed) head/sysutils/afio/files/patch-ab (props changed) head/sysutils/afio/files/patch-ac (props changed) head/sysutils/afio/files/patch-ad (props changed) head/sysutils/ah-tty/files/patch-dillib_vty_vtansi.c (props changed) head/sysutils/ah-tty/files/patch-include::LDL.h (props changed) head/sysutils/ah-tty/files/patch-src_psh.h (props changed) head/sysutils/anacron/files/patch-gregor.c (props changed) head/sysutils/anacron/files/patch-matchrx.c (props changed) head/sysutils/anacron/files/patch-readtab.c (props changed) head/sysutils/anacron/files/patch-runjob.c (props changed) head/sysutils/and/files/patch-Makefile (props changed) head/sysutils/and/files/patch-and-OpenBSD.c (props changed) head/sysutils/and/files/patch-and.c (props changed) head/sysutils/apachetop/files/patch-apachetop.h (props changed) head/sysutils/apachetop/files/patch-resolver.h (props changed) head/sysutils/apt/files/patch-apt-pkg_deb_debsystem.cc (props changed) head/sysutils/apt/files/patch-apt-pkg_deb_dpkgpm.cc (props changed) head/sysutils/apt/files/patch-apt-pkg_init.cc (props changed) head/sysutils/apt/files/patch-buildlib_archtable (props changed) head/sysutils/apt/files/patch-buildlib_environment.mak.in (props changed) head/sysutils/apt/files/patch-buildlib_ostable (props changed) head/sysutils/apt/files/patch-cmdline_apt-key (props changed) head/sysutils/apt/files/patch-cmdline_makefile (props changed) head/sysutils/apt/files/patch-configure (props changed) head/sysutils/apt/files/patch-doc_examples_sources.list (props changed) head/sysutils/apt/files/patch-dselect_install (props changed) head/sysutils/apt/files/patch-dselect_setup (props changed) head/sysutils/apt/files/patch-dselect_update (props changed) head/sysutils/apt/files/patch-ftparchive_cachedb.cc (props changed) head/sysutils/apt/files/patch-ftparchive_contents.cc (props changed) head/sysutils/apt/files/patch-ftparchive_makefile (props changed) head/sysutils/apt/files/patch-methods_gpgv.cc (props changed) head/sysutils/apt/files/patch-methods_makefile (props changed) head/sysutils/asapm/files/patch-Makefile.UNIX (props changed) head/sysutils/asapm/files/patch-aa (props changed) head/sysutils/asapm/files/patch-apm_read.c (props changed) head/sysutils/asapm/files/patch-configure (props changed) head/sysutils/ascpu/files/patch-ascpu_x.c (props changed) head/sysutils/asfsm/files/patch-aa (props changed) head/sysutils/asmem/files/patch-read_mem.c (props changed) head/sysutils/asmon/files/patch-asmon-asmon.c (props changed) head/sysutils/asusoled/files/patch-Makefile (props changed) head/sysutils/atitvout/files/patch-Makefile.bsd (props changed) head/sysutils/atitvout/files/patch-atitvout.c (props changed) head/sysutils/atitvout/files/patch-test.sh (props changed) head/sysutils/autojump/files/patch-install.sh (props changed) head/sysutils/autojump/files/patch-install.zsh (props changed) head/sysutils/autopsy/files/patch-configure (props changed) head/sysutils/b43-fwcutter/files/patch-fwcutter_list.h (props changed) head/sysutils/backuppc/files/patch-configure.pl (props changed) head/sysutils/bashburn/files/patch-BashBurn.sh (props changed) head/sysutils/batmon/files/patch-BatteryModel.m (props changed) head/sysutils/battfink/files/patch-configure (props changed) head/sysutils/battfink/files/patch-src_battfink-dpms.c (props changed) head/sysutils/bbapm/files/patch-Baseresource.cc (props changed) head/sysutils/bbapm/files/patch-Basewindow.cc (props changed) head/sysutils/bbapm/files/patch-Image.cc (props changed) head/sysutils/bbapm/files/patch-Image.hh (props changed) head/sysutils/bbapm/files/patch-LinkedList.hh (props changed) head/sysutils/bbapm/files/patch-bbapm.cc (props changed) head/sysutils/bbapm/files/patch-resource.cc (props changed) head/sysutils/bbapm/files/patch-resource.hh (props changed) head/sysutils/bkpupsd/files/patch-ab (props changed) head/sysutils/bksh/files/patch-Makefile (props changed) head/sysutils/blimitd/files/extra-patch-utmpx (props changed) head/sysutils/blimitd/files/patch-aa (props changed) head/sysutils/blimitd/files/patch-ab (props changed) head/sysutils/boxbackup/files/patch-bbackupd-config (props changed) head/sysutils/brasero/files/patch-configure (props changed) head/sysutils/brasero/files/patch-libbrasero-burn_burn-process.c (props changed) head/sysutils/brasero/files/patch-libbrasero-media_scsi-cam.c (props changed) head/sysutils/brasero/files/patch-plugins-growisofs-burn-growisofs.c (props changed) head/sysutils/bsdadminscripts/files/patch-pkg_libchk (props changed) head/sysutils/bsdmoted/files/patch-Makefile (props changed) head/sysutils/bubblemon-dockapp/files/patch-bubblemon.c (props changed) head/sysutils/bubblemon-dockapp/files/patch-sys_freebsd.c (props changed) head/sysutils/busybox-unstable/files/patch-include__libbb.h (props changed) head/sysutils/busybox-unstable/files/patch-libbb__speed_table.c (props changed) head/sysutils/busybox/files/patch-include__libbb.h (props changed) head/sysutils/busybox/files/patch-libbb__speed_table.c (props changed) head/sysutils/ccd2iso/files/patch-src-ccd2iso.c (props changed) head/sysutils/cciss_vol_status/files/patch-cciss_vol_status.c. (props changed) head/sysutils/ccze/files/patch-Makefile.in (props changed) head/sysutils/ccze/files/patch-ccze-compat.c (props changed) head/sysutils/cdbkup/files/patch-Makefile.in (props changed) head/sysutils/cdbkup/files/patch-src-cdcat.in (props changed) head/sysutils/cdrdao/files/patch-dao::cdrdao.man (props changed) head/sysutils/cdrdao/files/patch-dao::main.cc (props changed) head/sysutils/cdrdao/files/patch-scsilib::RULES::i386-freebsd-cc.rul (props changed) head/sysutils/cdrdao/files/patch-trackdb::FormatMp3.cc (props changed) head/sysutils/cdrdao/files/patch-trackdb::FormatOgg.cc (props changed) head/sysutils/cdrdao/files/patch-xdao::SoundIF-ao.cc (props changed) head/sysutils/cdrkit/files/patch-wodim__CMakeLists.txt (props changed) head/sysutils/cdrtools-devel/files/patch-ad (props changed) head/sysutils/cdrtools-devel/files/patch-btcflash::btcflash.1 (props changed) head/sysutils/cdrtools-devel/files/patch-cdrecord::README.rscsi (props changed) head/sysutils/cdrtools-devel/files/patch-cdrecord::cdrecord.1 (props changed) head/sysutils/cdrtools-devel/files/patch-cdrecord::cdrecord.dfl (props changed) head/sysutils/cdrtools-devel/files/patch-include::schily::sha2.h (props changed) head/sysutils/cdrtools-devel/files/patch-mkisofs::mkisofs.8 (props changed) head/sysutils/cdrtools-devel/files/patch-readcd::readcd.1 (props changed) head/sysutils/cdrtools-devel/files/patch-rscsi::rscsi.dfl (props changed) head/sysutils/cdrtools-devel/files/patch-scgcheck::scgcheck.1 (props changed) head/sysutils/cdrtools/files/patch-ad (props changed) head/sysutils/cdrtools/files/patch-btcflash::btcflash.1 (props changed) head/sysutils/cdrtools/files/patch-cdrecord::README.rscsi (props changed) head/sysutils/cdrtools/files/patch-cdrecord::cdrecord.1 (props changed) head/sysutils/cdrtools/files/patch-cdrecord::cdrecord.dfl (props changed) head/sysutils/cdrtools/files/patch-include::schily::sha2.h (props changed) head/sysutils/cdrtools/files/patch-mkisofs::mkisofs.8 (props changed) head/sysutils/cdrtools/files/patch-readcd::readcd.1 (props changed) head/sysutils/cdrtools/files/patch-rscsi::rscsi.dfl (props changed) head/sysutils/cdrtools/files/patch-scgcheck::scgcheck.1 (props changed) head/sysutils/cfengine22/files/patch-Makefile.in (props changed) head/sysutils/cfengine22/files/patch-contrib_Makefile.in (props changed) head/sysutils/cfengine22/files/patch-doc_Makefile.in (props changed) head/sysutils/cfengine22/files/patch-inputs_Makefile.in (props changed) head/sysutils/cfengine35/files/patch-cf-agent-Makefile.in (props changed) head/sysutils/ciso/files/patch-Makefile (props changed) head/sysutils/ciso/files/patch-ciso.c (props changed) head/sysutils/ciso/files/patch-ciso.h (props changed) head/sysutils/ckl/files/patch-src-conf.c (props changed) head/sysutils/clockspeed-conf/files/patch-clockspeed-conf (props changed) head/sysutils/clockspeed/files/patch-aa (props changed) head/sysutils/clockspeed/files/patch-ab (props changed) head/sysutils/clockspeed/files/patch-ac (props changed) head/sysutils/clockspeed/files/patch-ad (props changed) head/sysutils/clockspeed/files/patch-leapsecs_read.c (props changed) head/sysutils/clockspeed/files/patch-timing.h (props changed) head/sysutils/cmdwatch/files/patch-Makefile (props changed) head/sysutils/cmdwatch/files/patch-cmdwatch.1 (props changed) head/sysutils/cmdwatch/files/patch-cmdwatch.c (props changed) head/sysutils/cog/files/patch-src_gtkrc-util.c (props changed) head/sysutils/cog/files/patch-src_setup-gnomeui.c (props changed) head/sysutils/cog/files/patch-src_setup-themecolors.c (props changed) head/sysutils/condor/files/patch-build-cmake-CondorPackageConfig.cmake (props changed) head/sysutils/condor/files/patch-build-cmake-macros-SystemSpecificInformations.cmake (props changed) head/sysutils/condor/files/patch-src-condor_includes-config.h.cmake (props changed) head/sysutils/condor/files/patch-src-condor_scripts-CMakeLists.txt (props changed) head/sysutils/condor/files/patch-src-condor_sysapi-idle_time.cpp (props changed) head/sysutils/condor/files/patch-src-condor_utils-condor_config.cpp (props changed) head/sysutils/conky/files/patch-configure (props changed) head/sysutils/conky/files/patch-lua-cairo.pkg (props changed) head/sysutils/conky/files/patch-src-conky.c (props changed) head/sysutils/conky/files/patch-src-freebsd.c (props changed) head/sysutils/conky/files/patch-src-freebsd.h (props changed) head/sysutils/consolehm/files/patch-aa (props changed) head/sysutils/consolehm/files/patch-ab (props changed) head/sysutils/consolehm/files/patch-ac (props changed) head/sysutils/consolehm/files/patch-chm.c (props changed) head/sysutils/consolekit/files/patch-src_ck-sysdeps-freebsd.c (props changed) head/sysutils/consolekit/files/patch-src_ck-sysdeps-unix.c (props changed) head/sysutils/consolekit/files/patch-src_main.c (props changed) head/sysutils/consolekit/files/patch-src_test-vt-monitor.c (props changed) head/sysutils/consolekit/files/patch-tools_Makefile.in (props changed) head/sysutils/consolekit/files/patch-tools_ck-collect-session-info.c (props changed) head/sysutils/consolekit/files/patch-tools_ck-log-system-start.c (props changed) head/sysutils/contool/files/patch-01 (props changed) head/sysutils/contool/files/patch-02 (props changed) head/sysutils/contool/files/patch-03 (props changed) head/sysutils/contool/files/patch-04 (props changed) head/sysutils/contool/files/patch-05 (props changed) head/sysutils/contool/files/patch-06 (props changed) head/sysutils/copytape/files/patch-aa (props changed) head/sysutils/coreutils/files/extra-patch-stty.c (props changed) head/sysutils/coreutils/files/patch-Makefile.in (props changed) head/sysutils/cotty/files/patch-cotty-0.4c.c (props changed) head/sysutils/cpu/files/patch-src-plugins-ldap-commandline.c (props changed) head/sysutils/cpulimit/files/patch-cpulimit.c (props changed) head/sysutils/cpupowerd/files/patch-libcpupowerd.c (props changed) head/sysutils/cramfs/files/patch-GNUmakefile (props changed) head/sysutils/cramfs/files/patch-cramfsck.c (props changed) head/sysutils/cramfs/files/patch-mkcramfs.c (props changed) head/sysutils/cronolog-devel/files/patch-src__cronolog.c (props changed) head/sysutils/cronolog/files/extrapatch-src_cronoutils.c (props changed) head/sysutils/curly/files/patch-machine.h (props changed) head/sysutils/daemontools/files/patch-Makefile (props changed) head/sysutils/daemontools/files/patch-multilog.c (props changed) head/sysutils/daemontools/files/patch-supervise.c (props changed) head/sysutils/dar/files/patch-Makefile-in (props changed) head/sysutils/dar/files/patch-doc-man (props changed) head/sysutils/dar/files/patch-src-dar-Makefile.am (props changed) head/sysutils/dar/files/patch-src-dar-Makefile.in (props changed) head/sysutils/dar/files/patch-src-libdar (props changed) head/sysutils/dc3dd/files/patch-lib_Makefile.in (props changed) head/sysutils/dc3dd/files/patch-src_dc3dd.c (props changed) head/sysutils/dcfldd/files/extra-patch-dcfldd.h (props changed) head/sysutils/dcfldd/files/extra-patch-human.c (props changed) head/sysutils/dcfldd/files/extra-patch-xstrtol.h (props changed) head/sysutils/debhelper/files/patch-Makefile (props changed) head/sysutils/debootstrap/files/patch-Makefile (props changed) head/sysutils/debootstrap/files/patch-debootstrap (props changed) head/sysutils/deltup/files/patch-Makefile (props changed) head/sysutils/deltup/files/patch-bzip2.cpp (props changed) head/sysutils/deltup/files/patch-deltup.cpp (props changed) head/sysutils/deltup/files/patch-gzip.cpp (props changed) head/sysutils/deltup/files/patch-gzip.h (props changed) head/sysutils/deltup/files/patch-system.cpp (props changed) head/sysutils/detach/files/patch-aa (props changed) head/sysutils/detox/files/patch-Makefile.in (props changed) head/sysutils/di/files/patch-C-Makefile (props changed) head/sysutils/di/files/patch-Makefile (props changed) head/sysutils/dirvish/files/patch-dirvish.pl (props changed) head/sysutils/disktool/files/patch-Makefile (props changed) head/sysutils/disktool/files/patch-disktool.c (props changed) head/sysutils/djmount/files/patch-djmount (props changed) head/sysutils/dmg2img/files/patch-Makefile (props changed) head/sysutils/dmidecode/files/patch-Makefile (props changed) head/sysutils/doinkd/files/patch-Makefile (props changed) head/sysutils/doinkd/files/patch-doinkd.c (props changed) head/sysutils/doinkd/files/patch-doinkd.h (props changed) head/sysutils/dtc/files/patch-Makefile (props changed) head/sysutils/duplicity/files/patch-setup.py (props changed) head/sysutils/dupmerge/files/patch-dupmerge.c (props changed) head/sysutils/dvdbackup/files/patch-src__dvdbackup.c (props changed) head/sysutils/dvdimagecmp/files/patch-dvdimagecmp.c (props changed) head/sysutils/dvdvideo/files/patch-dvdvideo-media.py (props changed) head/sysutils/dvtm/files/patch-config.mk (props changed) head/sysutils/dwatch/files/patch-dwatch.c (props changed) head/sysutils/e2fsprogs/files/patch-tests-md5sum (props changed) head/sysutils/eiciel/files/patch-src__acl_manager.cpp (props changed) head/sysutils/eiciel/files/patch-src__acl_manager.hpp (props changed) head/sysutils/eiciel/files/patch-src__eiciel_main_controller.cpp (props changed) head/sysutils/eject/files/patch-eject.1 (props changed) head/sysutils/eject/files/patch-eject.c (props changed) head/sysutils/epylog/files/patch-etc_Makefile.in (props changed) head/sysutils/epylog/files/patch-etc_modules_Makefile.in (props changed) head/sysutils/eroaster/files/patch-process.py (props changed) head/sysutils/fanout/files/patch-fanmux (props changed) head/sysutils/fanout/files/patch-fanout (props changed) head/sysutils/fanout/files/patch-fanterm (props changed) head/sysutils/fatback/files/patch-const (props changed) head/sysutils/fatback/files/patch-display (props changed) head/sysutils/fatback/files/patch-trim (props changed) head/sysutils/fatback/files/patch-warnings (props changed) head/sysutils/fconfig/files/patch-fconfig (props changed) head/sysutils/fcron/files/patch-fileconf.c (props changed) head/sysutils/fcron/files/patch-subs.c (props changed) head/sysutils/fetchlog/files/patch-aa (props changed) head/sysutils/filedupe/files/patch-Makefile (props changed) head/sysutils/fileschanged/files/patch-Makefile.in (props changed) head/sysutils/fileschanged/files/patch-filelist.c (props changed) head/sysutils/fileschanged/files/patch-fileschanged.c (props changed) head/sysutils/fileschanged/files/patch-handlers.c (props changed) head/sysutils/fileschanged/files/patch-monitor.c (props changed) head/sysutils/fileschanged/files/patch-wl.c (props changed) head/sysutils/filetype/files/patch-Makefile (props changed) head/sysutils/flasher/files/patch-Makefile (props changed) head/sysutils/flexbackup/files/patch-flexbackup (props changed) head/sysutils/flexbackup/files/patch-flexbackup.1 (props changed) head/sysutils/flexbackup/files/patch-flexbackup.conf (props changed) head/sysutils/flexbackup/files/patch-flexbackup.conf.5 (props changed) head/sysutils/flyback/files/patch-backup_backend.py (props changed) head/sysutils/flyback/files/patch-flyback.py (props changed) head/sysutils/fonteditfs/files/patch-Makefile (props changed) head/sysutils/fortunelock/files/patch-aa (props changed) head/sysutils/freebsd-snapshot/files/patch-amd.map.snap (props changed) head/sysutils/freebsd-snapshot/files/patch-periodic-snapshot (props changed) head/sysutils/freebsd-snapshot/files/patch-snapshot (props changed) head/sysutils/freebsd-snapshot/files/patch-snapshot.8 (props changed) head/sysutils/freecolor/files/patch-Makefile.in (props changed) head/sysutils/freecolor/files/patch-freecolor.c (props changed) head/sysutils/freeipmi/files/patch-ipmi-oem-ipmi-oem.h (props changed) head/sysutils/freeipmi/files/patch-libfreeipmi-driver-ipmi-kcs-driver.c (props changed) head/sysutils/freesbie/files/patch-scripts-iso.sh (props changed) head/sysutils/freqsdwn/files/patch-common-freqship.h (props changed) head/sysutils/freqsdwn/files/patch-daemon-freqmain.c (props changed) head/sysutils/freqsdwn/files/patch-upsdown-upsdown.c (props changed) head/sysutils/fusefs-afuse/files/patch-afuse.1 (props changed) head/sysutils/fusefs-afuse/files/patch-src_afuse.c (props changed) head/sysutils/fusefs-curlftpfs/files/extra-patch-ftpfs.c (props changed) head/sysutils/fusefs-encfs/files/patch-encfs-Makefile.in (props changed) head/sysutils/fusefs-encfs/files/patch-encfs__encfsctl.cpp (props changed) head/sysutils/fusefs-funionfs/files/patch-configure (props changed) head/sysutils/fusefs-funionfs/files/patch-funionfs.h (props changed) head/sysutils/fusefs-fur/files/patch-fur.c (props changed) head/sysutils/fusefs-fur/files/patch-fur_utils.c (props changed) head/sysutils/fusefs-fusexmp_fh/files/patch-lib_mount_util.c (props changed) head/sysutils/fusefs-fusexmp_fh/files/patch-lib_mount_util.h (props changed) head/sysutils/fusefs-gnome-vfs/files/patch-gnomevfs-mount.c (props changed) head/sysutils/fusefs-gunzip/files/patch-fuse.gunzip.c (props changed) head/sysutils/fusefs-kmod/files/extra-patch-fuse_module__fuse_vnops.c (props changed) head/sysutils/fusefs-kmod/files/extrapatch-fuse_module__fuse_vnops.c (props changed) head/sysutils/fusefs-kmod/files/patch-fuse_module__Makefile (props changed) head/sysutils/fusefs-kmod/files/patch-fuse_module__fuse.h (props changed) head/sysutils/fusefs-kmod/files/patch-fuse_module__fuse_dev.c (props changed) head/sysutils/fusefs-kmod/files/patch-fuse_module__fuse_io.c (props changed) head/sysutils/fusefs-kmod/files/patch-fuse_module__fuse_main.c (props changed) head/sysutils/fusefs-kmod/files/patch-fuse_module__fuse_vfsops.c (props changed) head/sysutils/fusefs-kmod/files/patch-mount_fusefs__mount_fusefs.c (props changed) head/sysutils/fusefs-libs/files/patch-lib_mount_bsd.c (props changed) head/sysutils/fusefs-libs/files/patch-lib_mount_util.c (props changed) head/sysutils/fusefs-libs/files/patch-lib_mount_util.h (props changed) head/sysutils/fusefs-ntfs/files/extra-patch-ublio (props changed) head/sysutils/fusefs-ntfs/files/patch-configure (props changed) head/sysutils/fusefs-ntfs/files/patch-libntfs-3g__device.c (props changed) head/sysutils/fusefs-ntfs/files/patch-libntfs-3g__unix_io.c (props changed) head/sysutils/fusefs-ntfs/files/patch-ntfsprogs__Makefile.in (props changed) head/sysutils/fusefs-ntfs/files/patch-src-Makefile.in (props changed) head/sysutils/fusefs-ntfs/files/patch-src__lowntfs-3g.c (props changed) head/sysutils/fusefs-pod/files/patch-configure (props changed) head/sysutils/fusefs-sqlfs/files/patch-fuse_main.c (props changed) head/sysutils/fusefs-unionfs/files/patch-CMakeLists.txt (props changed) head/sysutils/fusefs-unionfs/files/patch-src__unionfs.c (props changed) head/sysutils/fusefs-unionfs/files/patch-src__usyslog.c (props changed) head/sysutils/fusefs-wikipediafs/files/patch-setup.py (props changed) head/sysutils/gai-leds/files/patch-configure (props changed) head/sysutils/ganglia-monitor-core/files/patch-gmetad_Makefile.in (props changed) head/sysutils/ganglia-monitor-core/files/patch-gmetad_conf.c.in (props changed) head/sysutils/ganglia-monitor-core/files/patch-gmond_modules_conf.d_modpython.conf.in (props changed) head/sysutils/ganglia-monitor-core/files/patch-gmond_modules_python_Makefile.in (props changed) head/sysutils/ganglia-monitor-core/files/patch-lib_default__conf.h.in (props changed) head/sysutils/ganglia-webfrontend/files/patch-.._configure.in (props changed) head/sysutils/ganglia-webfrontend/files/patch-conf.php.in (props changed) head/sysutils/gapcmon/files/patch-gapcmon.c (props changed) head/sysutils/gapcmon/files/patch-src:eggtrayicon.c (props changed) head/sysutils/gcombust/files/patch-src-optimize_usage.h (props changed) head/sysutils/gcombust/files/patch-src-rip_audio.h (props changed) head/sysutils/gdisk/files/patch-Makefile.freebsd (props changed) head/sysutils/gdisk/files/patch-cgdisk.8 (props changed) head/sysutils/gdisk/files/patch-fixparts.8 (props changed) head/sysutils/gdisk/files/patch-gdisk.8 (props changed) head/sysutils/gdisk/files/patch-sgdisk.8 (props changed) head/sysutils/getdelta/files/patch-getdelta.sh (props changed) head/sysutils/gkfreq/files/patch-Makefile (props changed) head/sysutils/gkrellm/files/patch-ad (props changed) head/sysutils/gkrellm/files/patch-ae (props changed) head/sysutils/gkrellm/files/patch-af (props changed) head/sysutils/gkrellm/files/patch-ag (props changed) head/sysutils/gkrellm/files/patch-src::chart.c (props changed) head/sysutils/gkrellm/files/patch-src::cpu.c (props changed) head/sysutils/gkrellm/files/patch-src::disk.c (props changed) head/sysutils/gkrellm/files/patch-src::gkrellm_private_proto.h (props changed) head/sysutils/gkrellm/files/patch-src::meminfo.c (props changed) head/sysutils/gkrellm/files/patch-src::net.c (props changed) head/sysutils/gkrellm/files/patch-src::plugins.c (props changed) head/sysutils/gkrellm/files/patch-src::proc.c (props changed) head/sysutils/gkrellm/files/patch-src::sensors.c (props changed) head/sysutils/gkrellm2/files/patch-Makefile (props changed) head/sysutils/gkrellm2/files/patch-af (props changed) head/sysutils/gkrellm2/files/patch-gkrellmd.1 (props changed) head/sysutils/gkrellm2/files/patch-server::Makefile (props changed) head/sysutils/gkrellm2/files/patch-server::gkrellmd.h (props changed) head/sysutils/gkrellm2/files/patch-src::configure (props changed) head/sysutils/gkrellm2/files/patch-src::sysdeps::bsd-common.c (props changed) head/sysutils/gkrellm2/files/patch-src:Makefile (props changed) head/sysutils/gnome-control-center/files/patch-capplets_about-me_gnome-about-me-password.c (props changed) head/sysutils/gnome-control-center/files/patch-capplets_common_gnome-theme-info.c (props changed) head/sysutils/gnome-mount/files/patch-gnome-mount.schemas.in (props changed) head/sysutils/gnome-mount/files/patch-src_gnome-mount.c (props changed) head/sysutils/gnome-pkgview/files/patch-src_config-path.c (props changed) head/sysutils/gnome-power-manager/files/patch-applets_brightness_Makefile.in (props changed) head/sysutils/gnome-power-manager/files/patch-applets_inhibit_Makefile.in (props changed) head/sysutils/gnome-power-manager/files/patch-configure (props changed) head/sysutils/gnome-power-manager/files/patch-src_Makefile.in (props changed) head/sysutils/gnome-power-manager/files/patch-src_gpm-load.c (props changed) head/sysutils/gnome-power-manager/files/patch-src_gpm-manager.c (props changed) head/sysutils/gnome-settings-daemon/files/patch-libnotify (props changed) head/sysutils/gnome-system-monitor/files/patch-src_load-graph.cpp (props changed) head/sysutils/gnome-system-monitor/files/patch-src_openfiles.cpp (props changed) head/sysutils/gnome-system-tools/files/patch-configure (props changed) head/sysutils/gnome-system-tools/files/patch-src_users_user-settings.c (props changed) head/sysutils/goaccess/files/patch-commons.h (props changed) head/sysutils/goaccess/files/patch-gmenu.c (props changed) head/sysutils/goaccess/files/patch-util.c (props changed) head/sysutils/gosa/files/patch-class_opsiware.inc (props changed) head/sysutils/gpart/files/patch-inst.defs (props changed) head/sysutils/gpart/files/patch-make.defs (props changed) head/sysutils/gpart/files/patch-man-gpart.man (props changed) head/sysutils/gpart/files/patch-src-disku.c (props changed) head/sysutils/gpart/files/patch-src-gm__bsddl.h (props changed) head/sysutils/gpart/files/patch-src-gm__ntfs.h (props changed) head/sysutils/gpart/files/patch-src-gpart.h (props changed) head/sysutils/graveman/files/patch-man_Makefile.in (props changed) head/sysutils/graveman/files/patch-src_callbacks.c (props changed) head/sysutils/graveman/files/patch-src_cdrecord.c (props changed) head/sysutils/graveman/files/patch-src_mkisofs.c (props changed) head/sysutils/graveman/files/patch-src_properties.c (props changed) head/sysutils/grok/files/patch-Makefile (props changed) head/sysutils/gtk-imonc/files/patch-timer.c (props changed) head/sysutils/hal-info/files/patch-configure (props changed) head/sysutils/hal/files/extra-patch-tools_hal-storage-mount.c (props changed) head/sysutils/hal/files/patch-Makefile.in (props changed) head/sysutils/hal/files/patch-doc_Makefile.in (props changed) head/sysutils/hal/files/patch-fdi_policy_10osvendor_10-power-mgmt-policy.fdi (props changed) head/sysutils/hal/files/patch-fdi_policy_10osvendor_10-x11-input.fdi (props changed) head/sysutils/hal/files/patch-hald-runner_runner.c (props changed) head/sysutils/hal/files/patch-hald_freebsd_addons_addon-storage.c (props changed) head/sysutils/hal/files/patch-hald_freebsd_hf-devd.c (props changed) head/sysutils/hal/files/patch-hald_freebsd_hf-usb.c (props changed) head/sysutils/hal/files/patch-hald_freebsd_hf-volume.c (props changed) head/sysutils/hal/files/patch-hald_freebsd_probe-usb2-device.c (props changed) head/sysutils/hal/files/patch-hald_freebsd_probing_Makefile.am (props changed) head/sysutils/hal/files/patch-hald_freebsd_probing_Makefile.in (props changed) head/sysutils/hal/files/patch-hald_freebsd_probing_probe-usb2-interface.c (props changed) head/sysutils/hal/files/patch-hald_freebsd_probing_probe-video4linux.c (props changed) head/sysutils/hal/files/patch-hald_freebsd_probing_probe-volume.c (props changed) head/sysutils/hal/files/patch-tools_hal-storage-eject.c (props changed) head/sysutils/hal/files/patch-tools_hal-storage-mount.c (props changed) head/sysutils/hal/files/patch-tools_hal-storage-shared.c (props changed) head/sysutils/hdrecover/files/patch-hdrecover.cpp (props changed) head/sysutils/hdup/files/patch-configure.ac (props changed) head/sysutils/hdup/files/patch-src::Makefile.in (props changed) head/sysutils/hdup/files/patch-src::hdup.h.in (props changed) head/sysutils/heartbeat/files/patch-configure.in (props changed) head/sysutils/heartbeat/files/patch-doc-ha.cf (props changed) head/sysutils/heartbeat/files/patch-include-clplumbing-longclock.h (props changed) head/sysutils/heartbeat/files/patch-ldirectord-ldirectord.in (props changed) head/sysutils/heartbeat/files/patch-lib-clplumbping-longclock.c (props changed) head/sysutils/heartbeat/files/patch-resources-OCF-IPaddr (props changed) head/sysutils/heirloom/files/patch-build::mk.config (props changed) head/sysutils/heirloom/files/patch-build_Makefile.mk (props changed) head/sysutils/heirloom/files/patch-calendar_Makefile.mk (props changed) head/sysutils/heirloom/files/patch-diff3_Makefile.mk (props changed) head/sysutils/heirloom/files/patch-dircmp_Makefile.mk (props changed) head/sysutils/heirloom/files/patch-makefile (props changed) head/sysutils/heirloom/files/patch-man::man.dfl.in (props changed) head/sysutils/heirloom/files/patch-mvdir_Makefile.mk (props changed) head/sysutils/heirloom/files/patch-nawk_Makefile.mk (props changed) head/sysutils/heirloom/files/patch-oawk_Makefile.mk (props changed) head/sysutils/heirloom/files/patch-ps::ps.c (props changed) head/sysutils/heirloom/files/patch-spell_Makefile.mk (props changed) head/sysutils/heirloom/files/patch-stty::stty.c (props changed) head/sysutils/heirloom/files/patch-su::su.dfl.in (props changed) head/sysutils/heirloom/files/patch-tar::tar.dfl (props changed) head/sysutils/hfsutils/files/patch-ab (props changed) head/sysutils/hourglass/files/patch-configure (props changed) head/sysutils/hourglass/files/patch-hourglass.h (props changed) head/sysutils/hourglass/files/patch-main.c (props changed) head/sysutils/hourglass/files/patch-src::Makefile.in (props changed) head/sysutils/hourglass/files/patch-work.c (props changed) head/sysutils/hoz/files/patch-src_Makefile (props changed) head/sysutils/hoz/files/patch-src_hozgtk_i.c (props changed) head/sysutils/hpacucli/files/patch-hpacucli (props changed) head/sysutils/hploscripts/files/patch-locfg.pl (props changed) head/sysutils/htop/files/patch-configure.ac (props changed) head/sysutils/httplog/files/patch-configure (props changed) head/sysutils/i2c-tools/files/patch-eeprom_decode-dimms (props changed) head/sysutils/i7z/files/patch-Makefile (props changed) head/sysutils/i7z/files/patch-cpuinfo.c (props changed) head/sysutils/i7z/files/patch-doc__i7z.man (props changed) head/sysutils/i7z/files/patch-helper_functions.c (props changed) head/sysutils/i7z/files/patch-i7z.c (props changed) head/sysutils/i7z/files/patch-i7z_Dual_Socket.c (props changed) head/sysutils/installwatch/files/patch-Makefile (props changed) head/sysutils/installwatch/files/patch-installwatch.c (props changed) head/sysutils/ipmitool/files/extra-patch-Makefile.in (props changed) head/sysutils/ipmitool/files/patch-ipmi_chassis.c (props changed) head/sysutils/ipsc/files/patch-ae (props changed) head/sysutils/ipsc/files/patch-main.c (props changed) head/sysutils/ispman/files/patch-Makefile (props changed) head/sysutils/ispman/files/patch-install-data-ldifs-Makefile (props changed) head/sysutils/ispman/files/patch-install-data-schema-Makefile (props changed) head/sysutils/istatd/files/patch-istat.conf (props changed) head/sysutils/jailuser/files/patch-Makefile (props changed) head/sysutils/jailuser/files/patch-functions (props changed) head/sysutils/jailuser/files/patch-install.sh (props changed) head/sysutils/jfbterm/files/patch-mtrr (props changed) head/sysutils/jfbterm/files/patch-screensaver.c (props changed) head/sysutils/jfbterm/files/patch-splash-png.c (props changed) head/sysutils/k3b-kde4/files/patch-libk3b-core-k3bglobals.cpp (props changed) head/sysutils/k3b-kde4/files/patch-libk3b-core-k3bglobals.h (props changed) head/sysutils/k3b-kde4/files/patch-libk3b-projects-k3bcdrecordwriter.cpp (props changed) head/sysutils/k3b-kde4/files/patch-libk3b-tools-k3blibdvdcss.cpp (props changed) head/sysutils/k3b-kde4/files/patch-libk3b__CMakeLists.txt (props changed) head/sysutils/k3b-kde4/files/patch-libk3bdevice-k3bdevice.cpp (props changed) head/sysutils/k3b-kde4/files/patch-libk3bdevice-k3bdevice.h (props changed) head/sysutils/k3b-kde4/files/patch-libk3bdevice-k3bscsicommandbsd.cpp (props changed) head/sysutils/k3b-kde4/files/patch-libk3bdevice__CMakeLists.txt (props changed) head/sysutils/k3b-kde4/files/patch-plugins__encoder__lame__CMakeLists.txt (props changed) head/sysutils/kdeadmin4/files/patch-ksystemlog-modes-daemon-daemonConfiguration.h (props changed) head/sysutils/kdeadmin4/files/patch-ksystemlog-modes-system-systemConfiguration.h (props changed) head/sysutils/krename-kde4/files/patch-cmake__modules__FindLIBPODOFO.cmake (props changed) head/sysutils/krename-kde4/files/patch-src__systemplugin.h (props changed) head/sysutils/ksysguardd/files/patch-CMakeLists.txt (props changed) head/sysutils/ksysguardd/files/patch-config-ksysguardd.h.cmake (props changed) head/sysutils/lcdproc/files/patch-Makefile.am (props changed) head/sysutils/lcdproc/files/patch-clients__Makefile.am (props changed) head/sysutils/lcdproc/files/patch-clients__lcdexec__Makefile.am (props changed) head/sysutils/lcdproc/files/patch-clients__lcdproc__Makefile.am (props changed) head/sysutils/lcdproc/files/patch-docs__Makefile.am (props changed) head/sysutils/ldapvi/files/patch-GNUmakefile.in (props changed) head/sysutils/ldapvi/files/patch-ldapvi.c (props changed) head/sysutils/less/files/patch-aa (props changed) head/sysutils/less/files/patch-ab (props changed) head/sysutils/libcdio/files/patch-configure (props changed) head/sysutils/libgksu/files/patch-Makefile.in (props changed) head/sysutils/libgksu/files/patch-libgksu_Makefile.in (props changed) head/sysutils/libgksu/files/patch-libgksu_gksu-run-helper.c (props changed) head/sysutils/libgksu/files/patch-libgksu_libgksu.c (props changed) head/sysutils/libretto-config/files/patch-aa (props changed) head/sysutils/libretto-config/files/patch-ab (props changed) head/sysutils/libretto-config/files/patch-ac (props changed) head/sysutils/libretto-config/files/patch-ad (props changed) head/sysutils/libretto-config/files/patch-ae (props changed) head/sysutils/libutempter/files/patch-Makefile (props changed) head/sysutils/lineak-defaultplugin/files/patch-configure (props changed) head/sysutils/lineakd/files/patch-Makefile.in (props changed) head/sysutils/lineakd/files/patch-lineak__cdromctrl.cpp (props changed) head/sysutils/lineakd/files/patch-lineak__cdromctrl.h (props changed) head/sysutils/lineakd/files/patch-lineakd__Makefile.in (props changed) head/sysutils/lineakd/files/patch-lineakd__lineakd_core_functions.cpp (props changed) head/sysutils/lineakd/files/patch-lineakd__main.cpp (props changed) head/sysutils/linrename/files/patch-misc-utils__rename.1 (props changed) head/sysutils/linuxfdisk/files/patch-aa (props changed) head/sysutils/lire/files/patch-doc-Makefile.in (props changed) head/sysutils/livecd/files/patch-livecd.sh (props changed) head/sysutils/lmmon/files/patch-aa (props changed) head/sysutils/logrotate/files/patch-config.h (props changed) head/sysutils/logstalgia/files/patch-src__logentry.h (props changed) head/sysutils/logstalgia/files/patch-src__logstalgia.cpp (props changed) head/sysutils/logtool/files/patch-ab (props changed) head/sysutils/lookupd/files/patch-lookupd.c (props changed) head/sysutils/lookupd/files/patch-modules-dns-Makefile (props changed) head/sysutils/lookupd/files/patch-modules-dns-dns_ht.c (props changed) head/sysutils/lookupd/files/patch-modules-dns-resolv-Makefile.inc (props changed) head/sysutils/lookupd/files/patch-modules-dns-resolv-getaddrinfo.c (props changed) head/sysutils/lookupd/files/patch-modules-dns-resolv-name6.c (props changed) head/sysutils/lookupd/files/patch-modules-dns-resolv-res_send.c (props changed) head/sysutils/lookupd/files/patch-modules-files-Makefile (props changed) head/sysutils/lookupd/files/patch-parser.c (props changed) head/sysutils/lookupd_ldap/files/extrapatch-config.h (props changed) head/sysutils/lookupd_ldap/files/patch-Makefile (props changed) head/sysutils/lookupd_ldap/files/patch-bsdtss.h (props changed) head/sysutils/lxsplit/files/patch-Makefile (props changed) head/sysutils/lxtask/files/patch-src__main.c (props changed) head/sysutils/lxtask/files/patch-src__types.h (props changed) head/sysutils/lxtask/files/patch-src__xfce-taskmanager-linux.c (props changed) head/sysutils/magicrescue/files/patch-magicsort (props changed) head/sysutils/mapchan/files/patch-Makefile (props changed) head/sysutils/mapchan/files/patch-doc::mapchan.8 (props changed) head/sysutils/mapchan/files/patch-examples::default (props changed) head/sysutils/mapchan/files/patch-mapchan.c (props changed) head/sysutils/mate-power-manager/files/patch-src_gpm-load.c (props changed) head/sysutils/mate-system-monitor/files/patch-src_load-graph.cpp (props changed) head/sysutils/mate-system-monitor/files/patch-src_openfiles.cpp (props changed) head/sysutils/mbmon/files/patch-Makefile.in (props changed) head/sysutils/mbmon/files/patch-configure (props changed) head/sysutils/mbmon/files/patch-getMB-smb_ioctl.c (props changed) head/sysutils/mbmon/files/patch-mbmon.c (props changed) head/sysutils/mbmon/files/patch-pci_pm.c (props changed) head/sysutils/mbmon/files/patch-pci_pm.h (props changed) head/sysutils/mbmon/files/patch-sens_lm85.c (props changed) head/sysutils/mbmon/files/patch-sens_winbond.c (props changed) head/sysutils/mbmon/files/patch-testsmb.c (props changed) head/sysutils/mcelog/files/patch-Makefile (props changed) head/sysutils/mcelog/files/patch-cache.c (props changed) head/sysutils/mcelog/files/patch-client.c (props changed) head/sysutils/mcelog/files/patch-config.c (props changed) head/sysutils/mcelog/files/patch-eventloop.c (props changed) head/sysutils/mcelog/files/patch-intel.c (props changed) head/sysutils/mcelog/files/patch-mcelog.c (props changed) head/sysutils/mcelog/files/patch-mcelog.h (props changed) head/sysutils/mcelog/files/patch-memdb.c (props changed) head/sysutils/mcelog/files/patch-p4.c (props changed) head/sysutils/mcelog/files/patch-tsc.c (props changed) head/sysutils/mcron/files/patch-makefile.in (props changed) head/sysutils/memdump/files/patch-makedefs (props changed) head/sysutils/memdump/files/patch-memdump.c (props changed) head/sysutils/memfetch/files/patch-memfetch.c (props changed) head/sysutils/memtest86+/files/extra-patch-Makefile (props changed) head/sysutils/memtest86+/files/extra-patch-config.h (props changed) head/sysutils/memtest86+/files/extra-patch-config.h-115200 (props changed) head/sysutils/memtest86+/files/patch-Makefile (props changed) head/sysutils/memtest86+/files/patch-error.c (props changed) head/sysutils/memtest86+/files/patch-memtest.lds (props changed) head/sysutils/memtest86+/files/patch-setup.S (props changed) head/sysutils/memtest86+/files/patch-test.c (props changed) head/sysutils/mgeupsd/files/patch-aa (props changed) head/sysutils/mgeupsd/files/patch-ab (props changed) head/sysutils/mkntpwd/files/patch-Makefile (props changed) head/sysutils/mkntpwd/files/patch-md4.c (props changed) head/sysutils/mkntpwd/files/patch-mkntpwd.c (props changed) head/sysutils/mmore/files/patch-mmore.c (props changed) head/sysutils/modules/files/patch-configure (props changed) head/sysutils/modules/files/patch-doc::Makefile.in (props changed) head/sysutils/modules/files/patch-doc::module.1.in (props changed) head/sysutils/modules/files/patch-doc::modulefile.5.in (props changed) head/sysutils/monitord/files/patch-Makefile (props changed) head/sysutils/monitord/files/patch-ab (props changed) head/sysutils/monitord/files/patch-mail.c (props changed) head/sysutils/moreutils-parallel/files/patch-Makefile (props changed) head/sysutils/moreutils-parallel/files/patch-parallel.c (props changed) head/sysutils/most/files/patch-aa (props changed) head/sysutils/most/files/patch-src-window.c (props changed) head/sysutils/mount.app/files/patch-properties.c (props changed) head/sysutils/mpiexec/files/patch-psm.c (props changed) head/sysutils/msyslog/files/patch-configure (props changed) head/sysutils/msyslog/files/patch-src-Makefile.in (props changed) head/sysutils/msyslog/files/patch-src-modules-Makefile.in (props changed) head/sysutils/munin-common/files/patch-Makefile.config (props changed) head/sysutils/munin-node/files/patch-munin-node.conf.in (props changed) head/sysutils/munin-node/files/patch-node-node.d.freebsd-if_.in.diff (props changed) head/sysutils/munin-node/files/patch-node-node.d.freebsd-if_errcoll_.in.diff (props changed) head/sysutils/munin-node/files/patch-node__sbin__munin-node-configure (props changed) head/sysutils/munin-node/files/patch-node__sbin__munin-run (props changed) head/sysutils/munin-node/files/patch-ntp_offset.in (props changed) head/sysutils/nitrogen/files/patch-data-icon-theme-installer (props changed) head/sysutils/npadmin/files/patch-Makefile.in (props changed) head/sysutils/npadmin/files/patch-npadmin.C (props changed) head/sysutils/npadmin/files/patch-snmpsock.C (props changed) head/sysutils/ntfsprogs/files/patch-libntfs-device.c (props changed) head/sysutils/ntfsprogs/files/patch-libntfs-device_io.c (props changed) head/sysutils/ntfsprogs/files/patch-libntfs-unistr.c (props changed) head/sysutils/ntfsprogs/files/patch-libntfs-unix_io.c (props changed) head/sysutils/ntfsprogs/files/patch-ntfsprogs-Makefile.in (props changed) head/sysutils/ntfsprogs/files/patch-ntfsprogs-mkntfs.c (props changed) head/sysutils/ntfsprogs/files/patch-ntfsprogs-ntfsclone.c (props changed) head/sysutils/ntfsprogs/files/patch-ntfsprogs-ntfsresize.c (props changed) head/sysutils/nut/files/patch-clients__Makefile.in (props changed) head/sysutils/nut/files/patch-data__html__Makefile.in (props changed) head/sysutils/nut22/files/extra-patch-m4_nut_check_libusb.m4 (props changed) head/sysutils/nut22/files/patch-clients-Makefile.in (props changed) head/sysutils/nut22/files/patch-data-html-Makefile.in (props changed) head/sysutils/nut22/files/patch-m4-nut_check_ipv6.m4 (props changed) head/sysutils/nvclock/files/patch-src::Makefile.in (props changed) head/sysutils/nvramtool/files/patch-Makefile (props changed) head/sysutils/nvtv/files/patch-configure (props changed) head/sysutils/oak/files/patch-Makefile.in (props changed) head/sysutils/oak/files/patch-matchline.c (props changed) head/sysutils/oak/files/patch-text.c (props changed) head/sysutils/ods2/files/patch-ods2.c (props changed) head/sysutils/open/files/patch-Makefile (props changed) head/sysutils/open/files/patch-open.c (props changed) head/sysutils/open/files/patch-open.h (props changed) head/sysutils/openipmi/files/patch-Makefile.am (props changed) head/sysutils/openipmi/files/patch-configure.in (props changed) head/sysutils/p5-BSD-Jail-Object/files/patch-Object.pm (props changed) head/sysutils/p5-BSD-Process/files/patch-Process-xs (props changed) head/sysutils/p5-BackupPC-XS/files/patch-Makefile.PL (props changed) head/sysutils/p5-Filesys-DiskFree/files/patch-DiskFree.pm (props changed) head/sysutils/p5-Filesys-DiskSpace/files/patch-DiskSpace.pm (props changed) head/sysutils/p5-Filesys-DiskUsage/files/patch-lib-Filesys-DiskUsage.pm (props changed) head/sysutils/p5-Sys-Load/files/patch-Load.pm (props changed) head/sysutils/p5-Sys-Load/files/patch-Load.xs (props changed) head/sysutils/paicc/files/patch-aa (props changed) head/sysutils/paicc/files/patch-ab (props changed) head/sysutils/pam_mount/files/patch-src_pam_mount.c (props changed) head/sysutils/pax-utils/files/patch-Makefile (props changed) head/sysutils/pax-utils/files/patch-scanelf.c (props changed) head/sysutils/pc-sysinstall/files/patch-pc-sysinstall-distfiles (props changed) head/sysutils/pcfclock/files/patch-pcfdate_pcfdate.c (props changed) head/sysutils/pdixtract/files/patch-pdixtract.c (props changed) head/sysutils/pefs-kmod/files/patch-libpam-Makefile (props changed) head/sysutils/pefs-kmod/files/patch-module-Makefile (props changed) head/sysutils/pefs-kmod/files/patch-pefs_aesni.h (props changed) head/sysutils/pessulus/files/patch-data_Makefile.in (props changed) head/sysutils/pftop/files/extra-patch-cache.c (props changed) head/sysutils/pftop/files/extra-patch-cache.h (props changed) head/sysutils/pftop/files/extra-patch-config.h (props changed) head/sysutils/pftop/files/extra-patch-engine.c (props changed) head/sysutils/pftop/files/extra-patch-pftop.c (props changed) head/sysutils/pftop/files/extra-patch-sf-gencode.c (props changed) head/sysutils/pftop/files/patch-aa (props changed) head/sysutils/pftop/files/patch-pftop.c (props changed) head/sysutils/pftop/files/patch-sf-scanner.l (props changed) head/sysutils/phantom/files/patch-Makefile (props changed) head/sysutils/philesight/files/extra-patch-ruby19 (props changed) head/sysutils/philesight/files/patch-philesight.rb (props changed) head/sysutils/php5-fileinfo/files/patch-config.m4 (props changed) head/sysutils/php5-posix/files/patch-posix.c (props changed) head/sysutils/php52-posix/files/patch-posix.c (props changed) head/sysutils/php53-fileinfo/files/patch-config.m4 (props changed) head/sysutils/php53-posix/files/patch-posix.c (props changed) head/sysutils/php55-fileinfo/files/patch-config.m4 (props changed) head/sysutils/php55-posix/files/patch-posix.c (props changed) head/sysutils/pidof/files/patch-pidof.c (props changed) head/sysutils/pmap/files/patch-pmap_helper.c (props changed) head/sysutils/pmt/files/extra-patch-config.mak (props changed) head/sysutils/policykit-gnome/files/patch-Makefile.in (props changed) head/sysutils/policykit-gnome/files/patch-polkit-gnome_polkit-gnome-action.c (props changed) head/sysutils/policykit/files/patch-Makefile.in (props changed) head/sysutils/policykit/files/patch-consolekit03 (props changed) head/sysutils/policykit/files/patch-data_Makefile.in (props changed) head/sysutils/policykit/files/patch-data_PolicyKit.conf.in (props changed) head/sysutils/policykit/files/patch-polkitd_Makefile.in (props changed) head/sysutils/policykit/files/patch-polkitd_org.freedesktop.PolicyKit.service.in (props changed) head/sysutils/policykit/files/patch-src_kit_kit-spawn.c (props changed) head/sysutils/policykit/files/patch-src_kit_kit-string.c (props changed) head/sysutils/policykit/files/patch-src_polkit-grant_polkit-grant.c (props changed) head/sysutils/policykit/files/patch-src_polkit_polkit-context.c (props changed) head/sysutils/polkit/files/patch-data_Makefile.in (props changed) head/sysutils/polkit/files/patch-src_polkitbackend_Makefile.in (props changed) head/sysutils/polkit/files/patch-src_polkitd_gposixsignal.c (props changed) head/sysutils/powerman/files/patch-man-powerman.conf.5 (props changed) head/sysutils/powerman/files/patch-man-powermand.8 (props changed) head/sysutils/prelink/files/patch-configure.in (props changed) head/sysutils/prelink/files/patch-gelf-elf.h (props changed) head/sysutils/prelink/files/patch-gelf-gelf.c (props changed) head/sysutils/prelink/files/patch-gelfx-gelfx.h (props changed) head/sysutils/prelink/files/patch-src-Makefile.am (props changed) head/sysutils/prelink/files/patch-src-cache.c (props changed) head/sysutils/prelink/files/patch-src-canonicalize.c (props changed) head/sysutils/prelink/files/patch-src-checksum.c (props changed) head/sysutils/prelink/files/patch-src-cxx.c (props changed) head/sysutils/prelink/files/patch-src-doit.c (props changed) head/sysutils/prelink/files/patch-src-dso.c (props changed) head/sysutils/prelink/files/patch-src-dwarf2.c (props changed) head/sysutils/prelink/files/patch-src-error.c (props changed) head/sysutils/prelink/files/patch-src-error.h (props changed) head/sysutils/prelink/files/patch-src-gather.c (props changed) head/sysutils/prelink/files/patch-src-get.c (props changed) head/sysutils/prelink/files/patch-src-layout.c (props changed) head/sysutils/prelink/files/patch-src-main.c (props changed) head/sysutils/prelink/files/patch-src-md5.c (props changed) head/sysutils/prelink/files/patch-src-mdebug.c (props changed) head/sysutils/prelink/files/patch-src-prelink.c (props changed) head/sysutils/prelink/files/patch-src-prelink.h (props changed) head/sysutils/prelink/files/patch-src-sha.c (props changed) head/sysutils/prelink/files/patch-src-stabs.c (props changed) head/sysutils/prelink/files/patch-src-undo.c (props changed) head/sysutils/prelink/files/patch-src-undoall.c (props changed) head/sysutils/prelink/files/patch-src-verify.c (props changed) head/sysutils/progsreiserfs/files/extrapatch-progsreiserfs::libmisc::Makefile.in (props changed) head/sysutils/progsreiserfs/files/patch-libdal-file.c (props changed) head/sysutils/progsreiserfs/files/patch-libreiserfs::journal.c (props changed) head/sysutils/psgconf/files/patch-Makefile.PL (props changed) head/sysutils/psgconf/files/patch-PSGConf.pm (props changed) head/sysutils/psgconf/files/patch-psgconf (props changed) head/sysutils/psmisc/files/patch-doc-Makefile.in (props changed) head/sysutils/psmisc/files/patch-src-Makefile.in (props changed) head/sysutils/psmisc/files/patch-src-killall.c (props changed) head/sysutils/psmisc/files/patch-src-pstree.c (props changed) head/sysutils/puppet/files/patch-demote_ports_provider (props changed) head/sysutils/puppet27/files/patch-demote_ports_provider (props changed) head/sysutils/pwsafe/files/patch-pwsafe.cpp (props changed) head/sysutils/py-stdiff/files/patch-setup.py (props changed) head/sysutils/py-zfs/files/extra-patch-userspace.py (props changed) head/sysutils/py-zfs/files/extra-patch-util.py (props changed) head/sysutils/qpxtool/files/patch-configure (props changed) head/sysutils/qpxtool/files/patch-f1tattoo.cpp (props changed) head/sysutils/quicksynergy/files/patch-src-callbacks.c (props changed) head/sysutils/qzeitgeist/files/patch-scripts__PythonSerializer.py (props changed) head/sysutils/radeontool/files/patch-Makefile (props changed) head/sysutils/radeontool/files/patch-radeontool.c (props changed) head/sysutils/radmind/files/patch-.gitignore (props changed) head/sysutils/radmind/files/patch-Makefile.in (props changed) head/sysutils/radmind/files/patch-README (props changed) head/sysutils/radmind/files/patch-aclocal.m4 (props changed) head/sysutils/radmind/files/patch-configure.ac (props changed) head/sysutils/radmind/files/patch-lapply.c (props changed) head/sysutils/radmind/files/patch-man__lcreate.1 (props changed) head/sysutils/radmind/files/patch-man__rash.1 (props changed) head/sysutils/radmind/files/patch-mkdirs.c (props changed) head/sysutils/radmind/files/patch-ra.sh (props changed) head/sysutils/radmind/files/patch-t2pkg.c (props changed) head/sysutils/rdiff-backup-devel/files/patch-setup.py (props changed) head/sysutils/rdiff-backup/files/patch-setup.py (props changed) head/sysutils/rdup/files/patch-GNUmakefile.in (props changed) head/sysutils/rdup/files/patch-rdup-simple (props changed) head/sysutils/recoverdm/files/patch-Makefile (props changed) head/sysutils/recoverdm/files/patch-io.c (props changed) head/sysutils/recoverdm/files/patch-mergebad.c (props changed) head/sysutils/recoverdm/files/patch-recoverdm.c (props changed) head/sysutils/recoverdm/files/patch-utils.h (props changed) head/sysutils/rename/files/patch-Makefile.in (props changed) head/sysutils/rename/files/patch-rename.c (props changed) head/sysutils/retail/files/patch-Makefile.in (props changed) head/sysutils/rfstool/files/patch-reiserfs.h (props changed) head/sysutils/rmonitor/files/extra-patch-utmpx (props changed) head/sysutils/rmonitor/files/patch-src__rmonitor.c (props changed) head/sysutils/roottail/files/patch-root-tail.c (props changed) head/sysutils/rsyslog7-devel/files/extra-patch-mysql-microseconds (props changed) head/sysutils/rsyslog7-devel/files/extra-patch-sane-hostname (props changed) head/sysutils/rsyslog7/files/extra-patch-mysql-microseconds (props changed) head/sysutils/rsyslog7/files/extra-patch-sane-hostname (props changed) head/sysutils/rsyslog8-devel/files/extra-patch-mysql-microseconds (props changed) head/sysutils/rsyslog8-devel/files/extra-patch-sane-hostname (props changed) head/sysutils/rtty/files/patch-aa (props changed) head/sysutils/rtty/files/patch-ab (props changed) head/sysutils/runit/files/patch-utmpx (props changed) head/sysutils/runwhen/files/patch-compile (props changed) head/sysutils/safecat/files/patch-hier.c (props changed) head/sysutils/safecat/files/patch-tempfile.c (props changed) head/sysutils/samesame/files/patch-samearchive.cpp (props changed) head/sysutils/samesame/files/patch-samesame.cpp (props changed) head/sysutils/scanbuttond/files/patch-lib-loader.c (props changed) head/sysutils/scanbuttond/files/patch-scanbuttond.c (props changed) head/sysutils/scanbuttond/files/patch-scripts-initscanner.sh (props changed) head/sysutils/screen/files/patch-Makefile.in (props changed) head/sysutils/screen/files/patch-aa (props changed) head/sysutils/screen/files/patch-ab (props changed) head/sysutils/screen/files/patch-ad (props changed) head/sysutils/screen/files/patch-af (props changed) head/sysutils/screen/files/patch-ansi.c (props changed) head/sysutils/screen/files/patch-attacher.c (props changed) head/sysutils/screen/files/patch-display.h (props changed) head/sysutils/screen/files/patch-doc_Makefile.in (props changed) head/sysutils/screen/files/patch-os.h (props changed) head/sysutils/screen/files/patch-osdef.h.in (props changed) head/sysutils/screen/files/patch-process.c (props changed) head/sysutils/screen/files/patch-pty.c (props changed) head/sysutils/screen/files/patch-resize.c (props changed) head/sysutils/screen/files/patch-screen.c (props changed) head/sysutils/screen/files/patch-screen.h (props changed) head/sysutils/screen/files/patch-terminfo::checktc.c (props changed) head/sysutils/screen/files/patch-tty.sh (props changed) head/sysutils/screen/files/patch-utmp.c (props changed) head/sysutils/sdd/files/patch-RULES_i386-freebsd-cc.rul (props changed) head/sysutils/sdd/files/patch-RULES_rules.cnf (props changed) head/sysutils/sdd/files/patch-conf_configure (props changed) head/sysutils/sdd/files/patch-include_schily.h (props changed) head/sysutils/sdd/files/patch-sdd_sdd.c (props changed) head/sysutils/sensors-applet/files/patch-src_Makefile.in (props changed) head/sysutils/sensors-applet/files/patch-src_sensors-applet.c (props changed) head/sysutils/sensors-applet/files/patch-src_sensors-applet.h (props changed) head/sysutils/setquota/files/patch-aa (props changed) head/sysutils/setquota/files/patch-ab (props changed) head/sysutils/setquota/files/patch-ac (props changed) head/sysutils/sformat/files/patch-RULES::i386-freebsd-cc.rul (props changed) head/sysutils/sformat/files/patch-RULES::rules.cnf (props changed) head/sysutils/sformat/files/patch-TARGETS::Targetdirs (props changed) head/sysutils/sformat/files/patch-libscg::scsiopen.c (props changed) head/sysutils/sformat/files/patch-libscg::scsitransp.c (props changed) head/sysutils/sformat/files/patch-sformat::bcrypt.c (props changed) head/sysutils/sformat/files/patch-sformat::datio.c (props changed) head/sysutils/sformat/files/patch-sformat::fmt.c (props changed) head/sysutils/sformat/files/patch-sformat::sformat.1 (props changed) head/sysutils/skill/files/patch-aa (props changed) head/sysutils/slack/files/patch-installpaths (props changed) head/sysutils/slmon/files/patch-defines.h (props changed) head/sysutils/slmon/files/patch-draw.c (props changed) head/sysutils/sloth/files/patch-sloth.c (props changed) head/sysutils/slst/files/patch-Makefile (props changed) head/sysutils/slurm-hpc/files/patch-configure (props changed) head/sysutils/slurm-hpc/files/patch-src-plugins-acct_gather_filesystem-lustre-acct_gather_filesystem_lustre.c (props changed) head/sysutils/slurm-hpc/files/patch-src-plugins-select-cons_res-dist_tasks.c (props changed) head/sysutils/slurm-hpc/files/patch-src-plugins-task-cgroup-task_cgroup_cpuset.c (props changed) head/sysutils/snowlog/files/patch-Makefile (props changed) head/sysutils/socket/files/patch-aa (props changed) head/sysutils/socket/files/patch-ab (props changed) head/sysutils/socket/files/patch-ad (props changed) head/sysutils/socket/files/patch-ae (props changed) head/sysutils/socket/files/patch-af (props changed) head/sysutils/socket/files/patch-ag (props changed) head/sysutils/sortu/files/patch-Makefile (props changed) head/sysutils/squashfs-tools/files/patch-squashfs-tools_Makefile (props changed) head/sysutils/squashfs-tools/files/patch-squashfs-tools_pseudo.c (props changed) head/sysutils/squashfs-tools/files/patch-squashfs-tools_unsquashfs.c (props changed) head/sysutils/stmpclean/files/patch-Makefile (props changed) head/sysutils/su2/files/patch-aa (props changed) head/sysutils/su2/files/patch-ab (props changed) head/sysutils/su2/files/patch-ac (props changed) head/sysutils/su2/files/patch-su2-c (props changed) head/sysutils/swapd/files/patch-Makefile.in (props changed) head/sysutils/swapd/files/patch-configure (props changed) head/sysutils/swapd/files/patch-swapd.c (props changed) head/sysutils/swapd/files/patch-swapd.conf.5.in (props changed) head/sysutils/swapexd/files/patch-rc.d__swapexd (props changed) head/sysutils/symlinks/files/patch-aa (props changed) head/sysutils/symon/files/patch-Makefile.inc (props changed) head/sysutils/symon/files/patch-symon__Makefile (props changed) head/sysutils/symon/files/patch-symux__Makefile (props changed) head/sysutils/syslinux/files/patch-com32-lib-Makefile (props changed) head/sysutils/syslinux/files/patch-com32-libutil-md5.c (props changed) head/sysutils/syslinux/files/patch-com32-libutil-sha256crypt.c (props changed) head/sysutils/syslinux/files/patch-com32-libutil-sha512crypt.c (props changed) head/sysutils/syslinux/files/patch-libinstaller-bin2c.pl (props changed) head/sysutils/syslinux/files/patch-libinstaller-syslinux.h (props changed) head/sysutils/syslinux/files/patch-libinstaller-syslxopt.h (props changed) head/sysutils/syslinux/files/patch-man-syslinux.1 (props changed) head/sysutils/syslinux/files/patch-mtools-syslinux.c (props changed) head/sysutils/syslog-ng2/files/patch-syslog-names.c (props changed) head/sysutils/syslog-ng2/files/patch-syslog-ng.h (props changed) head/sysutils/system-tools-backends/files/patch-Utils_Platform.pm (props changed) head/sysutils/system-tools-backends/files/patch-dispatcher_main.c (props changed) head/sysutils/tai64nfrac/files/patch-makefile (props changed) head/sysutils/tcplist/files/patch-01 (props changed) head/sysutils/tcplist/files/patch-02 (props changed) head/sysutils/tcplist/files/patch-03 (props changed) head/sysutils/tcplist/files/patch-utils.c (props changed) head/sysutils/tcplist/files/patch-utils.h (props changed) head/sysutils/tkdvd/files/patch-src-other__procedures.tcl (props changed) head/sysutils/tkdvd/files/patch-src-proc__refresh__cmd__line.tcl (props changed) head/sysutils/torsmo/files/patch-freebsd.c (props changed) head/sysutils/torsmo/files/patch-mail.c (props changed) head/sysutils/torsmo/files/patch-torsmo.c (props changed) head/sysutils/tracker-client/files/patch-src_libtracker-common_tracker-albumart.c (props changed) head/sysutils/tracker-client/files/patch-src_libtracker-common_tracker-type-utils.c (props changed) head/sysutils/tracker-client/files/patch-src_libtracker-gtk_Makefile.in (props changed) head/sysutils/tracker-client/files/patch-src_libtracker-gtk_tracker-tag-bar.h (props changed) head/sysutils/tracker-client/files/patch-src_tracker-applet_Makefile.in (props changed) head/sysutils/tracker-client/files/patch-src_tracker-applet_tracker-applet.c (props changed) head/sysutils/tracker-client/files/patch-src_tracker-preferences_Makefile.in (props changed) head/sysutils/tracker-client/files/patch-src_tracker-search-tool_Makefile.in (props changed) head/sysutils/tracker-client/files/patch-src_tracker-search-tool_tracker-search-tool-support.h (props changed) head/sysutils/tree/files/patch-Makefile (props changed) head/sysutils/tss/files/patch-Makefile (props changed) head/sysutils/ttyload/files/patch-Makefile (props changed) head/sysutils/u-boot-beaglebone-eabi/files/patch-api_Makefile (props changed) head/sysutils/u-boot-beaglebone-eabi/files/patch-api_api.c (props changed) head/sysutils/u-boot-beaglebone-eabi/files/patch-examples_api_Makefile (props changed) head/sysutils/u-boot-beaglebone-eabi/files/patch-include_configs_am335x_evm.h (props changed) head/sysutils/ucspi-unix/files/patch-Makefile (props changed) head/sysutils/ufs_copy/files/patch-ufs_copy.c (props changed) head/sysutils/uniutils/files/patch-utf8lookup (props changed) head/sysutils/upsd/files/patch-aa (props changed) head/sysutils/upsd/files/patch-ab (props changed) head/sysutils/upsd/files/patch-ac (props changed) head/sysutils/upsd/files/patch-ad (props changed) head/sysutils/upsd/files/patch-misc.c (props changed) head/sysutils/upsdaemon/files/patch-upsdaemon.c (props changed) head/sysutils/usbutils/files/patch-Makefile.am (props changed) head/sysutils/usbutils/files/patch-Makefile.in (props changed) head/sysutils/usbutils/files/patch-lsusb.c (props changed) head/sysutils/uschedule/files/patch-src-docheck (props changed) head/sysutils/uschedule/files/patch-src-typesize.sh (props changed) head/sysutils/uschedule/files/patch-src-uschedule_intro.7.in (props changed) head/sysutils/uschedule/files/patch-src-uscheduled.c (props changed) head/sysutils/usermin/files/patch-setup.sh (props changed) head/sysutils/vbetool/files/patch-vbetool.c (props changed) head/sysutils/vobcopy/files/patch-dvd.c (props changed) head/sysutils/vobcopy/files/patch-vobcopy.c (props changed) head/sysutils/vobcopy/files/patch-vobcopy.h (props changed) head/sysutils/vstrip/files/patch-Makefile (props changed) head/sysutils/vstrip/files/patch-dvd2avi_plugin.c (props changed) head/sysutils/watchdog/files/patch-Makefile (props changed) head/sysutils/webmin/files/patch-aa (props changed) head/sysutils/webmin/files/patch-mount_freebsd-mounts-7.c (props changed) head/sysutils/webmin/files/patch-usermin::config (props changed) head/sysutils/weedit/files/patch-utils__readdb.c (props changed) head/sysutils/weedit/files/patch-weedit.c (props changed) head/sysutils/wemux/files/patch-wemux (props changed) head/sysutils/whatpix/files/patch-whatpix (props changed) head/sysutils/whowatch/files/patch-aa (props changed) head/sysutils/whowatch/files/patch-process.c (props changed) head/sysutils/whowatch/files/patch-procinfo.c (props changed) head/sysutils/wiimms/files/patch-setup-load-titles.sh (props changed) head/sysutils/wiimms/files/patch-setup.sh (props changed) head/sysutils/wmapm/files/patch-aa (props changed) head/sysutils/wmapm/files/patch-ab (props changed) head/sysutils/wmapmload/files/patch-configure (props changed) head/sysutils/wmbluecpu/files/patch-Makefile (props changed) head/sysutils/wmbluecpu/files/patch-dockapp.c (props changed) head/sysutils/wmbluecpu/files/patch-draw.c (props changed) head/sysutils/wmbluecpu/files/patch-timing.c (props changed) head/sysutils/wmbluecpu/files/patch-wmbluecpu.c (props changed) head/sysutils/wmbsdbatt/files/patch-Makefile (props changed) head/sysutils/wmbsdbatt/files/patch-wmbsdbatt.c (props changed) head/sysutils/wmbsdbatt/files/patch-zz-frequency (props changed) head/sysutils/wmbsdbatt/files/patch-zz-temperature (props changed) head/sysutils/wmcpuload/files/patch-src_cpu__freebsd.c (props changed) head/sysutils/wmcube-gdk/files/patch-Makefile.FREEBSD (props changed) head/sysutils/wmcube-gdk/files/patch-wmcube.c (props changed) head/sysutils/wmcube/files/patch-Makefile.FREEBSD (props changed) head/sysutils/wmcube/files/patch-wmcube.c (props changed) head/sysutils/wmflame/files/patch-Makefile (props changed) head/sysutils/wmmemfree/files/patch-Makefile (props changed) head/sysutils/wmmemfree/files/patch-draw.c (props changed) head/sysutils/wmmemfree/files/patch-wmmemfree.c (props changed) head/sysutils/wmtop/files/patch-aa (props changed) head/sysutils/wmtop/files/patch-la (props changed) head/sysutils/wmupmon/files/patch-src_main.c (props changed) head/sysutils/worldtools/files/patch-witw (props changed) head/sysutils/x86info/files/patch-AMD_powernow.c (props changed) head/sysutils/x86info/files/patch-Intel_cachesize.c (props changed) head/sysutils/x86info/files/patch-Intel_topology.c (props changed) head/sysutils/x86info/files/patch-Makefile (props changed) head/sysutils/x86info/files/patch-apic.c (props changed) head/sysutils/x86info/files/patch-cpuid.c (props changed) head/sysutils/x86info/files/patch-lsmsr.c (props changed) head/sysutils/x86info/files/patch-mptable.c (props changed) head/sysutils/x86info/files/patch-mtrr.c (props changed) head/sysutils/x86info/files/patch-rdmsr.c (props changed) head/sysutils/x86info/files/patch-x86info.h (props changed) head/sysutils/xacpim/files/patch-Makefile (props changed) head/sysutils/xbatt/files/patch-aa (props changed) head/sysutils/xbattbar/files/patch-aa (props changed) head/sysutils/xbattbar/files/patch-xbattbar.c (props changed) head/sysutils/xbattbar/files/patch-xbattbar.man (props changed) head/sysutils/xcpustate/files/patch-rstat.x (props changed) head/sysutils/xdu/files/patch-aa (props changed) head/sysutils/xen-tools/files/patch-tools_xenstore_xs__lib.c (props changed) head/sysutils/xfburn/files/patch-xfburn_xfburn-settings.h (props changed) head/sysutils/xfce4-power-manager/files/patch-src__xfpm-battery.c (props changed) head/sysutils/xfce4-power-manager/files/patch-src__xfpm-battery.h (props changed) head/sysutils/xfce4-power-manager/files/patch-src__xfpm-power.c (props changed) head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wavelan.c (props changed) head/sysutils/xfce4-wavelan-plugin/files/patch-panel-plugin_wi_bsd.c (props changed) head/sysutils/xfsm/files/patch-ac (props changed) head/sysutils/xfsprogs/files/patch-Makefile (props changed) head/sysutils/xfsprogs/files/patch-buildmacros (props changed) head/sysutils/xfsprogs/files/patch-freebsd.c (props changed) head/sysutils/xjobs/files/patch-Makefile.in (props changed) head/sysutils/xlogmaster/files/patch-alert.cc (props changed) head/sysutils/xlogmaster/files/patch-customize.cc (props changed) head/sysutils/xlogmaster/files/patch-output.cc (props changed) head/sysutils/xlogmaster/files/patch-watchdog.cc (props changed) head/sysutils/xlogmaster/files/patch-xlogmaster.cc (props changed) head/sysutils/xmbmon/files/patch-xmbmon.c (props changed) head/sysutils/xmbmon/files/patch-xmbmon.resources (props changed) head/sysutils/xosview/files/patch-ae (props changed) head/sysutils/xosview/files/patch-configure (props changed) head/sysutils/xosview/files/patch-intmeter.cc (props changed) head/sysutils/xosview/files/patch-kernel.cc (props changed) head/sysutils/xosview/files/patch-kernel.h (props changed) head/sysutils/xosview/files/patch-swapinternal.cc (props changed) head/sysutils/xosview/files/patch-swapinternal.h (props changed) head/sysutils/xosview/files/patch-swapmeter.cc (props changed) head/sysutils/xsysstats/files/patch-Makefile.in (props changed) head/sysutils/xsysstats/files/patch-xsysstats.c (props changed) head/sysutils/xsysstats/files/patch-xsysstats.h (props changed) head/sysutils/xvidcap/files/patch-configure (props changed) head/sysutils/xvidcap/files/patch-ffmpeg_Makefile (props changed) head/sysutils/xvidcap/files/patch-ffmpeg_configure (props changed) head/sysutils/xvidcap/files/patch-ffmpeg_libavcodec_cabac.h (props changed) head/sysutils/xvidcap/files/patch-ffmpeg_libavformat_grab-bktr.c (props changed) head/sysutils/xvidcap/files/patch-src_Makefile.in (props changed) head/sysutils/yawho/files/patch-aa (props changed) head/sysutils/zeitgeist/files/patch-extra__PythonSerializer.py (props changed) head/sysutils/zetaback/files/patch-zetaback.in (props changed) head/sysutils/zfs-snapshot-mgmt/files/patch-zfs-snapshot-mgmt (props changed) head/sysutils/zidrav/files/patch-Makefile (props changed) head/sysutils/zisofs-tools/files/patch-compress.c (props changed) head/textproc/2bsd-diff/files/patch-Makefile (props changed) head/textproc/2bsd-diff/files/patch-diff.1 (props changed) head/textproc/2bsd-diff/files/patch-diff.c (props changed) head/textproc/2bsd-diff/files/patch-diff.h (props changed) head/textproc/2bsd-diff/files/patch-diffdir.c (props changed) head/textproc/2bsd-diff/files/patch-diffreg.c (props changed) head/textproc/agrep/files/patch-agrep.h (props changed) head/textproc/agrep/files/patch-asearch.c (props changed) head/textproc/agrep/files/patch-asearch1.c (props changed) head/textproc/agrep/files/patch-bitap.c (props changed) head/textproc/agrep/files/patch-checkfile.c (props changed) head/textproc/agrep/files/patch-compat.c (props changed) head/textproc/agrep/files/patch-follow.c (props changed) head/textproc/agrep/files/patch-main.c (props changed) head/textproc/agrep/files/patch-maskgen.c (props changed) head/textproc/agrep/files/patch-mgrep.c (props changed) head/textproc/agrep/files/patch-parse.c (props changed) head/textproc/agrep/files/patch-preprocess.c (props changed) head/textproc/agrep/files/patch-sgrep.c (props changed) head/textproc/agrep/files/patch-utilities.c (props changed) head/textproc/ant-xinclude-task/files/patch-build.xml (props changed) head/textproc/aspell/files/patch-Makefile.in (props changed) head/textproc/aspell/files/patch-configure (props changed) head/textproc/aspell/files/patch-modules__speller__default__affix.cpp (props changed) head/textproc/aspell/files/patch-prog::checker_string.cpp (props changed) head/textproc/augeas/files/patch-configure.ac (props changed) head/textproc/augeas/files/patch-gnulib::lib::Makefile.am (props changed) head/textproc/augeas/files/patch-tests-cutest.c (props changed) head/textproc/beediff/files/patch-beediff.pro (props changed) head/textproc/bibtool/files/patch-configure (props changed) head/textproc/bibtool/files/patch-main.c (props changed) head/textproc/bibtool/files/patch-makefile.in (props changed) head/textproc/bsdgrep/files/patch-Makefile (props changed) head/textproc/btparse/files/patch-Makefile.in (props changed) head/textproc/c2html/files/patch-aa (props changed) head/textproc/catdoc/files/patch-configure (props changed) head/textproc/catdoc/files/patch-doc-catdoc.1.in (props changed) head/textproc/cbedic/files/patch-database.cpp (props changed) head/textproc/cbedic/files/patch-registry.cpp (props changed) head/textproc/cbedic/files/patch-src::cbedic.cpp (props changed) head/textproc/cbedic/files/patch-translator.cpp (props changed) head/textproc/chpp/files/patch-avl.h (props changed) head/textproc/cl-meta/files/patch-meta.lisp (props changed) head/textproc/clit/files/patch-clit_Makefile (props changed) head/textproc/clucene/files/patch-libc++ (props changed) head/textproc/coco/files/patch-Makefile.in (props changed) head/textproc/coco/files/patch-configure (props changed) head/textproc/coco/files/patch-lib-src_Makefile.in (props changed) head/textproc/coco/files/patch-lib-src_mulelib.c (props changed) head/textproc/coco/files/patch-man_Makefile.in (props changed) head/textproc/coco/files/patch-src_coding.c (props changed) head/textproc/coco/files/patch-src_emacs.c (props changed) head/textproc/coco/files/patch-src_m_alpha.h (props changed) head/textproc/coco/files/patch-src_s_freebsd.h (props changed) head/textproc/coco/files/patch-src_unexelf.c (props changed) head/textproc/coco/files/patch-src_unexelf1.c (props changed) head/textproc/cwtext/files/patch-makefile (props changed) head/textproc/cwtext/files/patch-pcm.c (props changed) head/textproc/db2latex/files/patch-xsl-common-common.xsl (props changed) head/textproc/denature/files/patch-denature (props changed) head/textproc/dict/files/patch-dict.h (props changed) head/textproc/dictem/files/patch-compile.el (props changed) head/textproc/docbook-430/files/patch-catalog (props changed) head/textproc/docbook-440/files/patch-catalog (props changed) head/textproc/docbook-450/files/patch-catalog (props changed) head/textproc/docbook-to-man/files/patch-Instant::Imakefile (props changed) head/textproc/docbook-to-man/files/patch-Transpec::Imakefile (props changed) head/textproc/docbook-to-man/files/patch-cmd::Imakefile (props changed) head/textproc/docbook-to-man/files/patch-cmd::docbook-to-man.sh (props changed) head/textproc/docbook-utils/files/patch-bin_jw.in (props changed) head/textproc/docbook-utils/files/patch-configure (props changed) head/textproc/docbook-utils/files/patch-configure.in (props changed) head/textproc/docbook-utils/files/patch-doc_HTML_Makefile.am (props changed) head/textproc/docbook-utils/files/patch-doc_HTML_Makefile.in (props changed) head/textproc/docbook-utils/files/patch-doc_man_Makefile.am (props changed) head/textproc/docbook-utils/files/patch-doc_man_Makefile.in (props changed) head/textproc/docbook2X/files/extra-patch-doc__Makefile.in (props changed) head/textproc/domc/files/patch-Makefile (props changed) head/textproc/domc/files/patch-src_domc.h (props changed) head/textproc/dsssl-docbook-modular/files/patch-common::dbl1it.dsl (props changed) head/textproc/dsssl-docbook-modular/files/patch-common::dbl1it.ent (props changed) head/textproc/dsssl-docbook-modular/files/patch-common::dbl1ru.ent (props changed) head/textproc/dsssl-docbook-modular/files/patch-common::dbl1zhcn.dsl (props changed) head/textproc/dsssl-docbook-modular/files/patch-common_dbl1de.dsl (props changed) head/textproc/dsssl-docbook-modular/files/patch-html::dbverb.dsl (props changed) head/textproc/dsssl-docbook-modular/files/patch-print::dbverb.dsl (props changed) head/textproc/ecromedos/files/patch-etc-ecmds.conf (props changed) head/textproc/eqe/files/patch-src-eqedit (props changed) head/textproc/eruby/files/patch-Makefile.in (props changed) head/textproc/eruby/files/patch-aa-git (props changed) head/textproc/eruby/files/patch-configure.rb (props changed) head/textproc/eruby/files/patch-eruby_lib.c (props changed) head/textproc/eruby/files/patch-eruby_main.c (props changed) head/textproc/exempi/files/patch-source_common_EndianUtils.hpp (props changed) head/textproc/ezxml/files/patch-Makefile (props changed) head/textproc/fldiff/files/patch-DiffWindow.cxx (props changed) head/textproc/gdict/files/patch-aa (props changed) head/textproc/gdict/files/patch-ab (props changed) head/textproc/gdict/files/patch-ac (props changed) head/textproc/gdome2/files/patch-ltmain.sh (props changed) head/textproc/glimpse/files/patch-aa (props changed) head/textproc/glimpse/files/patch-ab (props changed) head/textproc/glimpse/files/patch-ac (props changed) head/textproc/glimpse/files/patch-ad (props changed) head/textproc/glimpse/files/patch-ae (props changed) head/textproc/glimpse/files/patch-af (props changed) head/textproc/glimpse/files/patch-ag (props changed) head/textproc/glimpse/files/patch-ah (props changed) head/textproc/glimpse/files/patch-ai (props changed) head/textproc/glimpse/files/patch-aj (props changed) head/textproc/glimpse/files/patch-index-glimpse.c (props changed) head/textproc/gmetadom/files/patch-GdomeSmartDOMGdomeString.cc (props changed) head/textproc/gmetadom/files/patch-ltmain.sh (props changed) head/textproc/gmetadom/files/patch-src-gdome_cpp_smart-test-main.cc (props changed) head/textproc/gnome-translate/files/patch-src_gt-app.c (props changed) head/textproc/gnome-translate/files/patch-src_gt-util.c (props changed) head/textproc/goldendict/files/patch-bgl_babylon.cc (props changed) head/textproc/goldendict/files/patch-dictzip.c (props changed) head/textproc/goldendict/files/patch-goldendict.pro (props changed) head/textproc/goldendict/files/patch-greektranslit.cc (props changed) head/textproc/goldendict/files/patch-iconv.cc (props changed) head/textproc/google-ctemplate/files/patch-small_map.h (props changed) head/textproc/groff/files/patch-bash (props changed) head/textproc/groff/files/patch-src-libs-libgroff-Makefile.sub (props changed) head/textproc/groonga/files/patch-Makefile.in (props changed) head/textproc/groonga/files/patch-configure (props changed) head/textproc/heirloom-doctools/files/patch-man (props changed) head/textproc/heirloom-doctools/files/patch-mk.config (props changed) head/textproc/hs-lhs2tex/files/patch-Setup.hs (props changed) head/textproc/hs-pandoc/files/patch-Setup.hs (props changed) head/textproc/htdig/files/patch-config-xss (props changed) head/textproc/htdig/files/patch-htsearch_Collection.h (props changed) head/textproc/html-pretty/files/patch-Makefile.in (props changed) head/textproc/htmlc/files/patch-compiler_Makefile (props changed) head/textproc/htmldoc/files/patch-image.cxx (props changed) head/textproc/htmldoc/files/patch-openssl (props changed) head/textproc/htmltolatex/files/patch-Attribute.h (props changed) head/textproc/htmltolatex/files/patch-CH2L.cpp (props changed) head/textproc/htmltolatex/files/patch-CH2L.h (props changed) head/textproc/htmltolatex/files/patch-abstractTable.cpp (props changed) head/textproc/htmltolatex/files/patch-h2l.l (props changed) head/textproc/htmltolatex/files/patch-h2l.y (props changed) head/textproc/htmltolatex/files/patch-safe__ostrstream.cpp (props changed) head/textproc/htmltolatex/files/patch-util.cpp (props changed) head/textproc/hunspell/files/patch-src_tools_hunspell.cxx (props changed) head/textproc/ibus/files/patch-data-keymaps-common (props changed) head/textproc/ibus/files/patch-ibus-common.py (props changed) head/textproc/ibus/files/patch-po_Makefile.in.in (props changed) head/textproc/iksemel/files/patch-configure.ac (props changed) head/textproc/iksemel/files/patch-ltmain.sh (props changed) head/textproc/info2man/files/patch-info2pod (props changed) head/textproc/ipdf/files/patch-document.h (props changed) head/textproc/ispell/files/patch-aa (props changed) head/textproc/ispell/files/patch-ab (props changed) head/textproc/ispell/files/patch-ispell.1X (props changed) head/textproc/ispell/files/patch-ispell.c (props changed) head/textproc/ispell/files/patch-ispell.h (props changed) head/textproc/ispell/files/patch-term.c (props changed) head/textproc/jade/files/patch-CharsetRegistry.cxx (props changed) head/textproc/jade/files/patch-CharsetRegistry.h (props changed) head/textproc/jade/files/patch-CodingSystemKit.cxx (props changed) head/textproc/jade/files/patch-Makefile.in (props changed) head/textproc/jade/files/patch-Ptr.cxx (props changed) head/textproc/jade/files/patch-Ptr.h (props changed) head/textproc/jade/files/patch-TeXFOTBuilder.cxx (props changed) head/textproc/jade/files/patch-TransformFOTBuilder.cxx (props changed) head/textproc/jade/files/patch-ac (props changed) head/textproc/jade/files/patch-assert.cxx (props changed) head/textproc/jade/files/patch-config.h (props changed) head/textproc/jade/files/patch-koi8-r.h (props changed) head/textproc/jade/files/patch-koi8r.dcl (props changed) head/textproc/jarnal/files/patch-jarnal.sh (props changed) head/textproc/jarnal/files/patch-jarnalannotate.sh (props changed) head/textproc/java2html/files/patch-Makefile.in (props changed) head/textproc/jaxup/files/patch-build.xml (props changed) head/textproc/kmfl-european-latin/files/patch-european.kmn (props changed) head/textproc/kmfl-sil-ezra/files/patch-Keyman::EZRAUNI24.KMN (props changed) head/textproc/kmfl-sil-galatia/files/patch-GrkPolyComp103.KMN (props changed) head/textproc/kmfl-sil-ipa-unicode/files/patch-IPAUni12.kmn (props changed) head/textproc/kmfl-sil-yi/files/patch-SourceFiles::Yi7.kmn (props changed) head/textproc/kmfl-varamozhi-malayalam/files/patch-mozhi_1.1.0.kmn (props changed) head/textproc/l2a/files/patch-Makefile (props changed) head/textproc/libcrm114/files/patch-Makefile (props changed) head/textproc/libexttextcat/files/patch-src__Makefile.in (props changed) head/textproc/liblingoteach/files/patch-doc-Makefile.in (props changed) head/textproc/liblingoteach/files/patch-liblingoteach.pc.in (props changed) head/textproc/libroxml/files/patch-Makefile (props changed) head/textproc/libsoldout/files/patch-BSDmakefile (props changed) head/textproc/libsphinxclient/files/patch-sphinxclient.c (props changed) head/textproc/libtextcat/files/patch-src_Makefile.in (props changed) head/textproc/libtextcat/files/patch-src_constants.h (props changed) head/textproc/libtextcat/files/patch-src_fingerprint.c (props changed) head/textproc/libtextcat/files/patch-src_fingerprint.h (props changed) head/textproc/libtextcat/files/patch-src_textcat.c (props changed) head/textproc/libtextcat/files/patch-src_textcat.h (props changed) head/textproc/libtextcat/files/patch-src_utf8misc.c (props changed) head/textproc/libtextcat/files/patch-src_utf8misc.h (props changed) head/textproc/libtranslate/files/patch-src_modules_translate-generic-service.c (props changed) head/textproc/libtranslate/files/patch-src_translate-session.c (props changed) head/textproc/libtranslate/files/patch-src_translate-util.c (props changed) head/textproc/libtre/files/patch-doc+agrep.1.in (props changed) head/textproc/libtre/files/patch-src+Makefile.in (props changed) head/textproc/libtre/files/patch-tests+agrep+run-tests.sh (props changed) head/textproc/libxml2/files/patch-doc_devhelp_Makefile.in (props changed) head/textproc/libxml2/files/patch-xml2Conf.sh.in (props changed) head/textproc/libxode/files/patch-src::Makefile.in (props changed) head/textproc/libxslt/files/patch-ab (props changed) head/textproc/libxslt/files/patch-configure (props changed) head/textproc/libxslt/files/patch-python::tests::Makefile.in (props changed) head/textproc/link-grammar/files/patch-configure (props changed) head/textproc/localize/files/patch-StringsEntry.m (props changed) head/textproc/luaexpat/files/patch-config (props changed) head/textproc/luaexpat/files/patch-makefile (props changed) head/textproc/m17n-contrib/files/patch-tbl2mim.awk (props changed) head/textproc/man2html/files/patch-aa (props changed) head/textproc/mdocml/files/patch-mdoc_validate.c (props changed) head/textproc/mdocml/files/patch-msec.in (props changed) head/textproc/mgdiff/files/patch-aa (props changed) head/textproc/modlogan/files/patch-confs (props changed) head/textproc/modlogan/files/patch-cssfile-writting (props changed) head/textproc/modlogan/files/patch-tlds (props changed) head/textproc/msort/files/patch-Makefile.in (props changed) head/textproc/muse/files/patch-Makefile.defs.default (props changed) head/textproc/muse/files/patch-texi-Makefile (props changed) head/textproc/mysqlviz/files/patch-mysqlviz (props changed) head/textproc/nds-aspell/files/patch-Makefile.pre (props changed) head/textproc/ocaml-expat/files/patch-Makefile (props changed) head/textproc/ocaml-tyxml/files/patch-Makefile.config (props changed) head/textproc/openfts/files/patch-doc::primer.html (props changed) head/textproc/openfts/files/patch-flexparser.l (props changed) head/textproc/openjade/files/patch-GroveApp.h (props changed) head/textproc/openjade/files/patch-GroveBuilder.cxx (props changed) head/textproc/openjade/files/patch-Makefile.comm.in (props changed) head/textproc/openjade/files/patch-Node.h (props changed) head/textproc/openjade/files/patch-TeXFOTBuilder.cxx (props changed) head/textproc/openjade/files/patch-TransformFOTBuilder.cxx (props changed) head/textproc/openjade/files/patch-ad (props changed) head/textproc/openjade/files/patch-ae (props changed) head/textproc/opensched/files/patch-aa (props changed) head/textproc/opensched/files/patch-ab (props changed) head/textproc/opensched/files/patch-ac (props changed) head/textproc/opensched/files/patch-ad (props changed) head/textproc/opensched/files/patch-ae (props changed) head/textproc/opensched/files/patch-af (props changed) head/textproc/opensched/files/patch-ag (props changed) head/textproc/opensp/files/patch-Makefile.in (props changed) head/textproc/opensp/files/patch-RangeMap.h (props changed) head/textproc/opensp/files/patch-configure (props changed) head/textproc/opensp/files/patch-doc-Makefile.in (props changed) head/textproc/opensp/files/patch-po-Makefile.in.in (props changed) head/textproc/openvanilla-modules/files/patch-Modules-Mk-ov.module.mk (props changed) head/textproc/openvanilla-modules/files/patch-Modules-OVIMBoshiamy-Makefile (props changed) head/textproc/openvanilla-modules/files/patch-Modules-OVIMSpaceChewing-Makefile (props changed) head/textproc/openvanilla-modules/files/patch-Modules-OVIMSpaceChewing0.3-Makefile (props changed) head/textproc/openvanilla-modules/files/patch-Modules-SharedHeaders-OVFileHandler.h (props changed) head/textproc/p5-AI-Categorizer/files/patch-Build.PL (props changed) head/textproc/p5-Plagger/files/patch-lib-Plagger-Plugin-Publish-Feed.pm (props changed) head/textproc/p5-Pod-Perldoc/files/patch-Makefile.PL (props changed) head/textproc/p5-RDFStore/files/patch-Makefile.PL (props changed) head/textproc/p5-SGML-Parser-OpenSP/files/patch-Makefile.PL (props changed) head/textproc/p5-SGMLSpm/files/patch-Makefile (props changed) head/textproc/p5-Search-Saryer/files/patch-Saryer.pm (props changed) head/textproc/p5-Senna/files/patch-Build.PL (props changed) head/textproc/p5-Senna/files/patch-Index.pm (props changed) head/textproc/p5-Senna/files/patch-Records.pm (props changed) head/textproc/p5-Senna/files/patch-Select.pm (props changed) head/textproc/p5-Senna/files/patch-Senna.xs (props changed) head/textproc/p5-Senna/files/patch-Sort.pm (props changed) head/textproc/p5-Senna/files/patch-Symbol.pm (props changed) head/textproc/p5-Senna/files/patch-prompt.pl (props changed) head/textproc/p5-Text-ClearSilver/files/patch-build_cs.pl (props changed) head/textproc/p5-Text-FixedLength-Extra/files/patch-Extra.pm (props changed) head/textproc/p5-Text-Graphics/files/patch-Graphics.pm (props changed) head/textproc/p5-Text-Tabs+Wrap/files/patch-001.Makefile.PL (props changed) head/textproc/p5-Text-Template/files/patch-lib_Text_Template.pm (props changed) head/textproc/p5-Text-Unaccent/files/patch-Makefile.PL (props changed) head/textproc/p5-Text-Unaccent/files/patch-Unaccent.xs (props changed) head/textproc/p5-Text-Unaccent/files/patch-unac.c (props changed) head/textproc/p5-XML-AutoWriter/files/patch-Doctype.pm (props changed) head/textproc/p5-XML-AutoWriter/files/patch-Makefile.PL (props changed) head/textproc/p5-XML-Canonical/files/patch-Makefile.PL (props changed) head/textproc/p5-XML-Parser/files/patch-CheckLib.pm (props changed) head/textproc/p5-XML-SAX/files/patch-Makefile.PL (props changed) head/textproc/p5-XML-SimpleObject/files/patch-Enhanced-Makefile.PL (props changed) head/textproc/p5-XML-SimpleObject/files/patch-LibXML-Makefile.PL (props changed) head/textproc/p5-XML-SimpleObject/files/patch-Makefile.PL (props changed) head/textproc/p5-XML-Xerces/files/patch-Makefile.PL (props changed) head/textproc/p5-xmltv/files/patch-Makefile.PL (props changed) head/textproc/par/files/patch-aa (props changed) head/textproc/par/files/patch-par.c (props changed) head/textproc/pcrs/files/patch-Makefile.in (props changed) head/textproc/pcrs/files/patch-configure (props changed) head/textproc/pdftohtml/files/patch-SA18303 (props changed) head/textproc/pdftohtml/files/patch-aconf.h (props changed) head/textproc/pdftohtml/files/patch-cve-2007-3387 (props changed) head/textproc/pdftohtml/files/patch-fofi::Makefile (props changed) head/textproc/pdftohtml/files/patch-src-HtmlLinks.h (props changed) head/textproc/pdftohtml/files/patch-src-XRef.cc (props changed) head/textproc/pdftohtml/files/patch-src::Makefile (props changed) head/textproc/pdftohtml/files/patch-xpdf-Gfx.cc (props changed) head/textproc/pdftohtml/files/patch-xpdf-GfxState.cc (props changed) head/textproc/pear-File_Fortune/files/patch-tests__File_FortuneTest.php (props changed) head/textproc/pecl-wbxml/files/patch-config.m4 (props changed) head/textproc/pecl-wbxml/files/patch-wbxml.c (props changed) head/textproc/perl2html/files/patch-aa (props changed) head/textproc/permute/files/patch-Makefile (props changed) head/textproc/permute/files/patch-permute.cpp (props changed) head/textproc/php5-wddx/files/patch-config.m4 (props changed) head/textproc/php5-wddx/files/patch-wddx.c (props changed) head/textproc/php5-xml/files/patch-compat.c (props changed) head/textproc/php5-xsl/files/patch-php_xsl.h (props changed) head/textproc/php52-wddx/files/patch-config.m4 (props changed) head/textproc/php52-wddx/files/patch-wddx.c (props changed) head/textproc/php52-xml/files/patch-compat.c (props changed) head/textproc/php52-xsl/files/patch-php_xsl.h (props changed) head/textproc/php53-wddx/files/patch-config.m4 (props changed) head/textproc/php53-wddx/files/patch-wddx.c (props changed) head/textproc/php53-xml/files/patch-compat.c (props changed) head/textproc/php53-xsl/files/patch-php_xsl.h (props changed) head/textproc/php55-wddx/files/patch-config.m4 (props changed) head/textproc/php55-wddx/files/patch-wddx.c (props changed) head/textproc/php55-xml/files/patch-compat.c (props changed) head/textproc/php55-xsl/files/patch-php_xsl.h (props changed) head/textproc/pootle/files/patch-setup.py (props changed) head/textproc/publican/files/patch-Build.PL (props changed) head/textproc/publican/files/patch-bin-publican (props changed) head/textproc/publican/files/patch-completion-publican (props changed) head/textproc/publican/files/patch-fop-ttc-metric.pl (props changed) head/textproc/publican/files/patch-lib-Publican-Builder.pm (props changed) head/textproc/publican/files/patch-lib-Publican-WebSite.pm (props changed) head/textproc/publican/files/patch-lib-Publican.pm (props changed) head/textproc/publican/files/patch-publican-website.cfg (props changed) head/textproc/publican/files/patch-xsl (props changed) head/textproc/py-4suite-xml/files/patch-Ft__Lib__DistExt__InstallText.py (props changed) head/textproc/py-enchant/files/patch-setup.py (props changed) head/textproc/py-feedparser/files/patch-setup.py (props changed) head/textproc/py-ltxml/files/patch-setup.py (props changed) head/textproc/py-lucene/files/patch-Makefile (props changed) head/textproc/py-paragrep/files/patch-setup.py (props changed) head/textproc/py-rstyoutube/files/patch-setup.py (props changed) head/textproc/py-rxp/files/patch-pyRXP.c (props changed) head/textproc/py-rxp/files/patch-setup.py (props changed) head/textproc/py-sphinxcontrib-bitbucket/files/patch-setup.py (props changed) head/textproc/py-stripogram/files/patch-setup.py (props changed) head/textproc/py-xml/files/patch-xml-xpath-ParsedAbbreviatedAbsoluteLocationPath.py (props changed) head/textproc/py-xml/files/patch-xml-xpath-ParsedAbbreviatedRelativeLocationPath.py (props changed) head/textproc/qstardict/files/patch-qstardict.pri (props changed) head/textproc/raptor/files/patch-configure (props changed) head/textproc/raptor/files/patch-cve-2012-0037 (props changed) head/textproc/rarian/files/patch-docs_Makefile.in (props changed) head/textproc/rarian/files/patch-librarian_rarian-main.c (props changed) head/textproc/rarian/files/patch-util_Makefile.in (props changed) head/textproc/rarian/files/patch-util_rarian-sk-config.in (props changed) head/textproc/rast/files/patch-local_db.c (props changed) head/textproc/rast/files/patch-merger.c (props changed) head/textproc/refdb/files/patch-scripts-refdb.in (props changed) head/textproc/replaceit/files/patch-Makefile (props changed) head/textproc/rtfreader/files/patch-rtfreader (props changed) head/textproc/rtfx/files/patch-libs-Makefile.in (props changed) head/textproc/rtfx/files/patch-libs-domc-Makefile (props changed) head/textproc/rtfx/files/patch-libs-domc-src-domc.h (props changed) head/textproc/ruby-amatch/files/patch-ext_amatch.c (props changed) head/textproc/ruby-sary/files/patch-ruby19 (props changed) head/textproc/ruby-xmlparser/files/patch-ab (props changed) head/textproc/rxp/files/patch-aa (props changed) head/textproc/scim-bridge-qt4/files/patch-agent_scim-bridge-agent-accept-listener.cpp (props changed) head/textproc/scim-bridge-qt4/files/patch-client-qt_qt4_Makefile.in (props changed) head/textproc/scim-bridge-qt4/files/patch-configure (props changed) head/textproc/scim-bridge/files/patch-agent_scim-bridge-agent-accept-listener.cpp (props changed) head/textproc/scim-bridge/files/patch-configure (props changed) head/textproc/scim-openvanilla/files/patch-src-Makefile.in (props changed) head/textproc/scim-table-imengine/files/patch-Makefile.in (props changed) head/textproc/scim-table-imengine/files/patch-icons-Makefile.in (props changed) head/textproc/scrollkeeper/files/patch-Makefile.in (props changed) head/textproc/scrollkeeper/files/patch-extract_dtds_Makefile.in (props changed) head/textproc/scrollkeeper/files/patch-libs_database.c (props changed) head/textproc/scrollkeeper/files/patch-libs_i18n.c (props changed) head/textproc/scrollkeeper/files/patch-libs_install.c (props changed) head/textproc/senna/files/patch-store.c (props changed) head/textproc/sgmlformat/files/patch-regex.txt (props changed) head/textproc/sgmlformat/files/patch-sgmlfmt.pl (props changed) head/textproc/sgmls/files/patch-Makefile (props changed) head/textproc/sgmls/files/patch-aa (props changed) head/textproc/sgmltools-lite/files/patch-aa (props changed) head/textproc/sgmltools-lite/files/patch-ab (props changed) head/textproc/sgmltools-lite/files/patch-ac (props changed) head/textproc/sgrep/files/patch-aa (props changed) head/textproc/sgrep/files/patch-ab (props changed) head/textproc/sigil/files/patch-CMakeLists (props changed) head/textproc/slides/files/patch-schema::dtd::slides-full.dtd (props changed) head/textproc/sml-fxp/files/patch-Makefile (props changed) head/textproc/sml-fxp/files/patch-doc-features.html (props changed) head/textproc/sml-fxp/files/patch-doc-fxcanon.html (props changed) head/textproc/sml-fxp/files/patch-doc-fxcopy.html (props changed) head/textproc/sml-fxp/files/patch-doc-fxesis.html (props changed) head/textproc/sml-fxp/files/patch-doc-fxp.html (props changed) head/textproc/sml-fxp/files/patch-doc-fxviz.html (props changed) head/textproc/sml-fxp/files/patch-doc-index.html (props changed) head/textproc/sml-fxp/files/patch-fxp.sh.in (props changed) head/textproc/sml-fxp/files/patch-src-Apps-Canon-canon.cm (props changed) head/textproc/sml-fxp/files/patch-src-Apps-Copy-copy.cm (props changed) head/textproc/sml-fxp/files/patch-src-Apps-Copy-copyEncode.sml (props changed) head/textproc/sml-fxp/files/patch-src-Apps-Esis-esis.cm (props changed) head/textproc/sml-fxp/files/patch-src-Apps-Null-null.cm (props changed) head/textproc/sml-fxp/files/patch-src-Apps-Viz-viz.cm (props changed) head/textproc/sml-fxp/files/patch-src-Parser-Dfa-dfaPassTwo.sml (props changed) head/textproc/sml-fxp/files/patch-src-Parser-Dfa-dfaString.sml (props changed) head/textproc/sml-fxp/files/patch-src-Parser-Dfa-dfaUtil.sml (props changed) head/textproc/sml-fxp/files/patch-src-Parser-Dtd-dtdAttributes.sml (props changed) head/textproc/sml-fxp/files/patch-src-Parser-Params-dtd.sml (props changed) head/textproc/sml-fxp/files/patch-src-Parser-Parse-parseContent.sml (props changed) head/textproc/sml-fxp/files/patch-src-Unicode-Chars-charClasses.sml (props changed) head/textproc/sml-fxp/files/patch-src-Unicode-Chars-uniChar.sml (props changed) head/textproc/sml-fxp/files/patch-src-Unicode-Uri-uri.sml (props changed) head/textproc/sml-fxp/files/patch-src-Unicode-Uri-uriEncode.sml (props changed) head/textproc/sml-fxp/files/patch-src-Util-SymDict-dict.sml (props changed) head/textproc/sml-fxp/files/patch-src-Util-SymDict-symbolTable.sml (props changed) head/textproc/sml-fxp/files/patch-src-Util-intSets.sml (props changed) head/textproc/sml-fxp/files/patch-src-Util-utilString.sml (props changed) head/textproc/sml-fxp/files/patch-src-Util-utilTime.sml (props changed) head/textproc/sml-fxp/files/patch-src-config.sml (props changed) head/textproc/sml-fxp/files/patch-src-fxlib.cm (props changed) head/textproc/source-highlight/files/patch-configure (props changed) head/textproc/source-highlight/files/patch-gl_getopt.in.h (props changed) head/textproc/source-highlight/files/patch-src-cmdline.c (props changed) head/textproc/source-highlight/files/patch-stdbool.in.h (props changed) head/textproc/source-highlight/files/patch-tests_Makefile.in (props changed) head/textproc/sowing/files/patch-Makefile.in (props changed) head/textproc/sowing/files/patch-src_bfort_Makefile.in (props changed) head/textproc/sowing/files/patch-src_sys_arch.c (props changed) head/textproc/sowing/files/patch-src_tohtml_Makefile.in (props changed) head/textproc/srilm/files/patch-Makefile.common.variables (props changed) head/textproc/srilm/files/patch-Makefile.machine.freebsd (props changed) head/textproc/srilm/files/patch-compare-outputs (props changed) head/textproc/srilm/files/patch-go.run-test (props changed) head/textproc/srilm/files/patch-lm-src-matherr.c (props changed) head/textproc/stardict3/files/patch-src::stardict-application-server.cpp (props changed) head/textproc/texi2html/files/patch-doc::Makefile.in (props changed) head/textproc/texi2html/files/patch-texi2html.pl (props changed) head/textproc/tinyxml/files/patch-tinyxml.cpp (props changed) head/textproc/tinyxml/files/patch-tinyxml.h (props changed) head/textproc/tkxmlive/files/patch-tkxmlive (props changed) head/textproc/topic/files/patch-Makefile (props changed) head/textproc/uim-el/files/patch-emacs_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk2_dict_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk2_immodule_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk2_pad_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk2_pref_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk2_switcher_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk2_toolbar_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk3_candwin_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk3_dict_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk3_immodule_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk3_pad_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk3_pref_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk3_switcher_Makefile.in (props changed) head/textproc/uim/files/extra-patch-gtk3_toolbar_Makefile.in (props changed) head/textproc/uim/files/extra-patch-qt3_candwin_Makefile.in (props changed) head/textproc/uim/files/extra-patch-qt3_immodule_Makefile.in (props changed) head/textproc/uim/files/extra-patch-qt3_pref_Makefile.in (props changed) head/textproc/uim/files/extra-patch-qt3_switcher_Makefile.in (props changed) head/textproc/uim/files/extra-patch-qt3_toolbar_Makefile.in (props changed) head/textproc/uim/files/extra-patch-qt4_toolbar_CMakeLists.txt (props changed) head/textproc/uim/files/extra-patch-qt_chardict_po_Makefile.in.in (props changed) head/textproc/uim/files/extra-patch-uim_Makefile.in (props changed) head/textproc/uim/files/extra-patch-uim_editline.c (props changed) head/textproc/uim/files/patch-Makefile.in (props changed) head/textproc/uim/files/patch-po_Makefile.in.in (props changed) head/textproc/uim/files/patch-scm_sj3-custom.scm (props changed) head/textproc/uim/files/patch-sigscheme_doc_Makefile.in (props changed) head/textproc/uim/files/patch-sigscheme_libgcroots_Makefile.in (props changed) head/textproc/uim/files/patch-uim_uim.c (props changed) head/textproc/uim/files/patch-uim_uim.h (props changed) head/textproc/uim/files/patch-xim_convdisp.cpp (props changed) head/textproc/unroff/files/patch-b (props changed) head/textproc/unroff/files/patch-c (props changed) head/textproc/urlview/files/patch-sample.urlview (props changed) head/textproc/urlview/files/patch-urlview.c (props changed) head/textproc/wbxml2/files/patch-CMakeLists.txt (props changed) head/textproc/wbxml2/files/patch-src__CMakeLists.txt (props changed) head/textproc/webcpp/files/patch-webcpp-engine.cpp (props changed) head/textproc/word2x/files/patch-Makefile.in (props changed) head/textproc/word2x/files/patch-col-align.cc (props changed) head/textproc/word2x/files/patch-fifo.h (props changed) head/textproc/word2x/files/patch-html-table.cc (props changed) head/textproc/word2x/files/patch-latex-table.cc (props changed) head/textproc/word2x/files/patch-map_chars.cc (props changed) head/textproc/word2x/files/patch-reader.cc (props changed) head/textproc/word2x/files/patch-reader.h (props changed) head/textproc/word2x/files/patch-rtest2.cc (props changed) head/textproc/word2x/files/patch-strip.cc (props changed) head/textproc/word2x/files/patch-strip.h (props changed) head/textproc/word2x/files/patch-tblock.cc (props changed) head/textproc/word2x/files/patch-tblock.h (props changed) head/textproc/word2x/files/patch-text-table.cc (props changed) head/textproc/wordnet/files/patch-ab (props changed) head/textproc/wordnet/files/patch-ad (props changed) head/textproc/wordnet/files/patch-ae (props changed) head/textproc/wordnet/files/patch-ah (props changed) head/textproc/wordnet/files/patch-binsrch (props changed) head/textproc/wordnet/files/patch-wn.c (props changed) head/textproc/wordnet/files/patch-wn.h (props changed) head/textproc/wordnet/files/patch-wnb (props changed) head/textproc/wordnet/files/patch-wnglobal (props changed) head/textproc/wordnet/files/patch-wnhelp (props changed) head/textproc/wordnet/files/patch-wnrtl (props changed) head/textproc/wv/files/patch-config.h.in (props changed) head/textproc/wv2/files/patch-CMakeLists.txt (props changed) head/textproc/wv2/files/patch-cmake-MacroCreateLibtoolFile.cmake (props changed) head/textproc/xerces-c2-devel/files/patch-aa (props changed) head/textproc/xerces-c2-devel/files/patch-ab (props changed) head/textproc/xerces-c2/files/patch-aa (props changed) head/textproc/xerces-c2/files/patch-ab (props changed) head/textproc/xhtml-basic/files/patch-xhtml-basic10.cat (props changed) head/textproc/xlhtml/files/patch-ac (props changed) head/textproc/xlhtml/files/patch-ppthtml_nspptview (props changed) head/textproc/xlhtml/files/patch-xlhtml_nsopen (props changed) head/textproc/xlhtml/files/patch-xlhtml_nsxlview (props changed) head/textproc/xmlada/files/patch-Makefile.in (props changed) head/textproc/xmlada/files/patch-dom_dom.gpr (props changed) head/textproc/xmlada/files/patch-input__sources_input__sources.gpr (props changed) head/textproc/xmlada/files/patch-sax_sax.gpr (props changed) head/textproc/xmlada/files/patch-schema_schema.gpr (props changed) head/textproc/xmldiff/files/patch-xmldiff.pl (props changed) head/textproc/xmlppm/files/patch-IFile.cpp (props changed) head/textproc/xmlwrapp/files/patch-src::libxml::node_manip.cxx (props changed) head/textproc/xqilla/files/patch-gcc-werror (props changed) head/textproc/yaml-mode.el/files/patch-Makefile (props changed) head/textproc/zorba/files/patch-doc-zorba-xqdoc_CMakeLists.txt (props changed) head/textproc/zorba/files/patch-include-zorba-util_time.h (props changed) head/textproc/zorba/files/patch-src-util_atomic_int.h (props changed) head/textproc/zorba/files/patch-test-rbkt_CMakeLists.txt (props changed) head/vietnamese/vn7to8/files/patch-01 (props changed) head/vietnamese/vnconvert/files/patch-makefile (props changed) head/vietnamese/vnconvert/files/patch-vn78.c (props changed) head/vietnamese/vnless/files/patch-01 (props changed) head/vietnamese/vnless/files/patch-02 (props changed) head/vietnamese/vnless/files/patch-03 (props changed) head/vietnamese/vnless/files/patch-04 (props changed) head/vietnamese/vnless/files/patch-05 (props changed) head/vietnamese/vnless/files/patch-ch.c (props changed) head/vietnamese/vnless/files/patch-decode.c (props changed) head/vietnamese/vnless/files/patch-funcs.h (props changed) head/vietnamese/vnless/files/patch-prim.c (props changed) head/vietnamese/vnless/files/patch-screen.c (props changed) head/vietnamese/vnpstext/files/patch-01 (props changed) head/vietnamese/vnpstext/files/patch-02 (props changed) head/vietnamese/vnpstext/files/patch-03 (props changed) head/vietnamese/vnpstext/files/patch-04 (props changed) head/vietnamese/vnroff/files/patch-01 (props changed) head/vietnamese/vnroff/files/patch-02 (props changed) head/vietnamese/vnxfonts/files/patch-Makefile (props changed) head/vietnamese/xvnkb/files/patch-Makefile.common (props changed) head/vietnamese/xvnkb/files/patch-config__configure (props changed) head/vietnamese/xvnkb/files/patch-main.c (props changed) head/vietnamese/xvnkb/files/patch-scripts-new_install.sh (props changed) head/www/R-cran-httpuv/files/patch-src-Makevars (props changed) head/www/WebMagick/files/patch-Makefile.am (props changed) head/www/WebMagick/files/patch-configure.ac (props changed) head/www/adzap/files/patch-scripts-wrapzap (props changed) head/www/adzap/files/patch-scripts_squid_redirect-nodata (props changed) head/www/amphetadesk/files/patch-lib_AmphetaDesk.pm (props changed) head/www/amphetadesk/files/patch-lib_AmphetaDesk_ChannelsList.pm (props changed) head/www/amphetadesk/files/patch-lib_AmphetaDesk_MyChannels.pm (props changed) head/www/amphetadesk/files/patch-lib_AmphetaDesk_OS_Linux.pm (props changed) head/www/amphetadesk/files/patch-lib_AmphetaDesk_Settings.pm (props changed) head/www/amphetadesk/files/patch-lib_AmphetaDesk_Utilities.pm (props changed) head/www/amphetadesk/files/patch-lib_AmphetaDesk_WWW.pm (props changed) head/www/amphetadesk/files/patch-lib_XML_Simple.pm (props changed) head/www/analog/files/patch-aa (props changed) head/www/analog/files/patch-ab (props changed) head/www/analog/files/patch-ac (props changed) head/www/anyterm/files/patch-libpbe-src-format.cc (props changed) head/www/anyterm/files/patch-src-SubProcess.cc (props changed) head/www/aolserver/files/patch-Makefile (props changed) head/www/apache-forrest/files/patch-bin-forrest (props changed) head/www/apache-forrest/files/patch-tools-ant-bin-ant (props changed) head/www/apache22/files/extra-patch-suexec_rsrclimit (props changed) head/www/apache22/files/extra-patch-suexec_userdir (props changed) head/www/apache22/files/patch-Makefile.in (props changed) head/www/apache22/files/patch-config.layout (props changed) head/www/apache22/files/patch-configure.in (props changed) head/www/apache22/files/patch-docs__conf__extra__httpd-ssl.conf.in (props changed) head/www/apache22/files/patch-docs__conf__extra__httpd-userdir.conf.in (props changed) head/www/apache22/files/patch-docs__conf__httpd.conf.in (props changed) head/www/apache22/files/patch-modules__proxy__mod_proxy_connect.c (props changed) head/www/apache22/files/patch-server__config.c (props changed) head/www/apache22/files/patch-server__core.c (props changed) head/www/apache22/files/patch-support__Makefile.in (props changed) head/www/apache22/files/patch-support__ab.c (props changed) head/www/apache22/files/patch-support__apachectl.in (props changed) head/www/apache22/files/patch-support__apxs.in (props changed) head/www/apache22/files/patch-support__envvars-std.in (props changed) head/www/apache22/files/patch-support__log_server_status.in (props changed) head/www/aria/files/patch-po::Makefile.in.in (props changed) head/www/aria/files/patch-src::GtrlSocket.cc (props changed) head/www/aria/files/patch-src::HistoryWindow.cc (props changed) head/www/aria/files/patch-src::ItemCellPartial.h (props changed) head/www/aria/files/patch-src::ItemList.h (props changed) head/www/aria/files/patch-src::ProxyList.cc (props changed) head/www/aria/files/patch-src::RetrieveFTP.h (props changed) head/www/aria/files/patch-src::gui_download.cc (props changed) head/www/aria/files/patch-src::gui_file.cc (props changed) head/www/aria/files/patch-src::gui_main.cc (props changed) head/www/aria/files/patch-src::gui_popup.cc (props changed) head/www/aria/files/patch-src::md5.c (props changed) head/www/asql/files/patch-Makefile (props changed) head/www/asterisk-stat/files/patch-export_pdf.php (props changed) head/www/aws-demos/files/patch-demos_test__ldap_test__ldap.gpr (props changed) head/www/aws/files/patch-config__projects__aws.gpr (props changed) head/www/aws/files/patch-docs__gentexifile (props changed) head/www/aws/files/patch-docs__makefile (props changed) head/www/aws/files/patch-docs_docs.gpr (props changed) head/www/aws/files/patch-include_include.gpr (props changed) head/www/aws/files/patch-regtests__0043_check_mem__test.opt (props changed) head/www/aws/files/patch-src_src.gpr (props changed) head/www/aws/files/patch-ssl__crypto_lib.gpr (props changed) head/www/aws/files/patch-templates_parser__docs__gentexifile (props changed) head/www/aws/files/patch-templates_parser__docs__makefile (props changed) head/www/awstats/files/patch-awstats.model.conf (props changed) head/www/awstats/files/patch-tools-awstats_buildstaticpages.pl (props changed) head/www/awstats/files/patch-tools-awstats_configure.pl (props changed) head/www/awstats/files/patch-tools-awstats_updateall.pl (props changed) head/www/bacula-web/files/patch-bacula-web-classes.inc (props changed) head/www/bacula-web/files/patch-bacula-web-index.php (props changed) head/www/bacula-web/files/patch-bacula-web-report.php (props changed) head/www/bacula-web/files/patch-bacula-web-templates-full_popup.tpl (props changed) head/www/bacula-web/files/patch-bacula-web-templates-index.tpl (props changed) head/www/bacula-web/files/patch-bacula-web-templates-report.tpl (props changed) head/www/bacula-web/files/patch-bacula-web-templates-volumes.tpl (props changed) head/www/bannerfilter/files/patch-update.sh (props changed) head/www/bigbluebutton/files/patch-bbb_extensions.conf (props changed) head/www/bigbluebutton/files/patch-bbb_sip.conf (props changed) head/www/bigbluebutton/files/patch-bigbluebutton-WEB-INF-bigbluebutton.properties (props changed) head/www/bigbluebutton/files/patch-bigbluebutton-WEB-INF-red5-web.xml (props changed) head/www/bigbluebutton/files/patch-bigbluebutton-tomcat-WEB-INF-classes-bigbluebutton.properties (props changed) head/www/bigbluebutton/files/patch-bigbluebutton-tomcat-WEB-INF-classes-log4j.properties (props changed) head/www/bigbluebutton/files/patch-bigbluebutton-tomcat-demo-bbb_api_conf.jsp (props changed) head/www/bigbluebutton/files/patch-client-conf-config.xml (props changed) head/www/bigbluebutton/files/patch-conf-autoload_configs-acl.conf.xml (props changed) head/www/bigbluebutton/files/patch-conf-autoload_configs-event_socket.conf.xml (props changed) head/www/bigbluebutton/files/patch-conf-directory-default-bbbuser.xml (props changed) head/www/bigbluebutton/files/patch-deskshare-WEB-INF-deskshare.conf (props changed) head/www/bigbluebutton/files/patch-nginx-bigbluebutton.conf (props changed) head/www/bigbluebutton/files/patch-sip-WEB-INF-bigbluebutton-sip.properties (props changed) head/www/bins/files/extra-patch-install.sh (props changed) head/www/bk2site/files/patch-XMLParser.C (props changed) head/www/bk2site/files/patch-XMLParser.H (props changed) head/www/bk2site/files/patch-bk2site.C (props changed) head/www/bk2site/files/patch-reference.C (props changed) head/www/bkmrkconv/files/patch-aa (props changed) head/www/bluefish/files/patch-data_bflang-Makefile.in (props changed) head/www/boa/files/patch-Makefile.in (props changed) head/www/boa/files/patch-docs::Makefile.in (props changed) head/www/boa/files/patch-docs::boa.texi (props changed) head/www/boa/files/patch-examples::boa.conf (props changed) head/www/boa/files/patch-src::defines.h (props changed) head/www/bookmarkbridge/files/patch-configure.ac (props changed) head/www/cacheboy16/files/extra-patch-src-cf.data.pre.aufs (props changed) head/www/cacheboy16/files/patch-aa (props changed) head/www/cacheboy16/files/patch-helpers-basic_auth-SMB-Makefile.in (props changed) head/www/cacheboy16/files/patch-helpers-basic_auth-SMB-smb_auth.sh (props changed) head/www/cacheboy16/files/patch-helpers-negotiate_auth-squid_kerb_auth-Makefile.in (props changed) head/www/cacheboy16/files/patch-helpers-negotiate_auth-squid_kerb_auth-squid_kerb_auth.c (props changed) head/www/cacheboy16/files/patch-libiapp-iapp_ssl.h (props changed) head/www/cacheboy16/files/patch-src-cf.data.pre (props changed) head/www/cacheboy16/files/patch-tools-Makefile.in (props changed) head/www/cadaver/files/patch-Makefile.in (props changed) head/www/cadaver/files/patch-src-cmdline.c (props changed) head/www/cadaver/files/patch-src-commands.c (props changed) head/www/cadaver/files/patch-src-ls.c (props changed) head/www/cadaver/files/patch-src-search.c (props changed) head/www/cadaver/files/patch-src-version.c (props changed) head/www/cakephp12/files/extra-patch-app__config__core.php (props changed) head/www/cakephp12/files/patch-cake__console__cake (props changed) head/www/cakephp13/files/extra-patch-app__config__core.php (props changed) head/www/cakephp21/files/extra-patch-app__Config__core.php (props changed) head/www/cakephp21/files/patch-cake__console__cake (props changed) head/www/cakephp22/files/extra-patch-app__Config__core.php (props changed) head/www/cakephp22/files/patch-cake__console__cake (props changed) head/www/cakephp23/files/extra-patch-app__Config__core.php (props changed) head/www/cakephp23/files/patch-cake__console__cake (props changed) head/www/cas/files/patch-CMakeLists.txt (props changed) head/www/cgi-lib/files/patch-aa (props changed) head/www/cgi-lib/files/patch-ab (props changed) head/www/cgichk/files/patch-Makefile (props changed) head/www/cgichk/files/patch-cgichk.c (props changed) head/www/cgichk/files/patch-cgichk.h (props changed) head/www/cgichk/files/patch-config.c (props changed) head/www/cgichk/files/patch-misc.c (props changed) head/www/cgichk/files/patch-net.c (props changed) head/www/cgihtml/files/patch-aa (props changed) head/www/cgiwrap/files/patch-configure (props changed) head/www/chimera/files/patch-Common.tmpl.dist (props changed) head/www/chimera/files/patch-cache.c (props changed) head/www/chimera/files/patch-compat::Imakefile (props changed) head/www/chimera/files/patch-lib::Imakefile (props changed) head/www/chimera/files/patch-libhtmlw::HTML-PSformat.c (props changed) head/www/chimera/files/patch-local.c (props changed) head/www/chimera/files/patch-util.c (props changed) head/www/choqok/files/patch-cmake__modules__DBusMacros.cmake (props changed) head/www/chpasswd/files/patch-chpasswd.c (props changed) head/www/chromium/files/patch-base__sys_info_posix.cc (props changed) head/www/chromium/files/patch-build__common.gypi (props changed) head/www/chromium/files/patch-chrome__browser__about_flags.cc (props changed) head/www/chromium/files/patch-chrome__browser__chrome_browser_main.cc (props changed) head/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.cc (props changed) head/www/chromium/files/patch-chrome__browser__net__connection_tester.cc (props changed) head/www/chromium/files/patch-chrome__test__base__in_process_browser_test.cc (props changed) head/www/chromium/files/patch-chrome__test__base__testing_browser_process.h (props changed) head/www/chromium/files/patch-chrome__test__ui__ui_test.cc (props changed) head/www/chromium/files/patch-chrome__tools__build__linux__sed.sh (props changed) head/www/chromium/files/patch-content__common__set_process_title_linux.cc (props changed) head/www/chromium/files/patch-content__common__set_process_title_linux.h (props changed) head/www/chromium/files/patch-native_client__build__common.gypi (props changed) head/www/chromium/files/patch-native_client__src__shared__platform__platform.gyp (props changed) head/www/chromium/files/patch-native_client__src__trusted__debug_stub__debug_stub.gyp (props changed) head/www/chromium/files/patch-native_client__src__trusted__service_runtime__service_runtime.gyp (props changed) head/www/chromium/files/patch-net__base__dns_reloader.cc (props changed) head/www/chromium/files/patch-net__base__network_change_notifier.cc (props changed) head/www/chromium/files/patch-testing__gtest__src__gtest.cc (props changed) head/www/chromium/files/patch-third_party__ffmpeg__libavutil__mem.c (props changed) head/www/chromium/files/patch-third_party__libjingle__source__talk__base__ipaddress.h (props changed) head/www/chromium/files/patch-third_party__libjpeg_turbo__libjpeg.gyp (props changed) head/www/chromium/files/patch-third_party__ots__include__opentype-sanitiser.h (props changed) head/www/chtml/files/patch-makefile (props changed) head/www/clearsilver/files/patch-cgi__cgi.c (props changed) head/www/clearsilver/files/patch-cgi__html.c (props changed) head/www/clearsilver/files/patch-cgi__rfc2388.c (props changed) head/www/clearsilver/files/patch-cs-Makefile (props changed) head/www/clearsilver/files/patch-cs__csparse.c (props changed) head/www/clearsilver/files/patch-cs__cstest.c (props changed) head/www/clearsilver/files/patch-util__dict.c (props changed) head/www/clearsilver/files/patch-util__neo_files.c (props changed) head/www/clearsilver/files/patch-util__neo_hash.c (props changed) head/www/clearsilver/files/patch-util__neo_hdf.c (props changed) head/www/clearsilver/files/patch-util__neo_net.c (props changed) head/www/clearsilver/files/patch-util__neo_server.c (props changed) head/www/clearsilver/files/patch-util__neo_str.c (props changed) head/www/clearsilver/files/patch-util__skiplist.c (props changed) head/www/clearsilver/files/patch-util__ulist.c (props changed) head/www/clearsilver/files/patch-util__ulocks.c (props changed) head/www/cocoon/files/patch-build.sh (props changed) head/www/cocoon/files/patch-src-blocks-ajax-samples (props changed) head/www/cocoon/files/patch-src-blocks-forms-samples (props changed) head/www/crawl/files/patch-Makefile.in (props changed) head/www/crawl/files/patch-compat::gai-errnos.h (props changed) head/www/crawl/files/patch-configure (props changed) head/www/crawl/files/patch-dns.c (props changed) head/www/dalbum/files/patch-config-config.php (props changed) head/www/dansguardian/files/patch-src__RegEx.cpp (props changed) head/www/dansguardian/files/patch-src__RegExp.hpp (props changed) head/www/demoroniser/files/patch-aa (props changed) head/www/dhttpd/files/patch-Makefile (props changed) head/www/dhttpd/files/patch-config.hh (props changed) head/www/dhttpd/files/patch-dhhtpd.1 (props changed) head/www/dhttpd/files/patch-main.cc (props changed) head/www/dhttpd/files/patch-socket.cc (props changed) head/www/dpsearch/files/extra-patch-doc_Makefile.in (props changed) head/www/drraw/files/patch-drraw.cgi (props changed) head/www/drraw/files/patch-drraw.conf (props changed) head/www/drupal6-geshifilter/files/patch-default-geshi-path (props changed) head/www/dtse/files/patch-HttpHandler.cpp (props changed) head/www/dtse/files/patch-Indexer.cpp (props changed) head/www/dtse/files/patch-Outputter.cpp (props changed) head/www/dtse/files/patch-Search.hpp (props changed) head/www/dtse/files/patch-autogen.sh (props changed) head/www/dtse/files/patch-configure.ac (props changed) head/www/dtse/files/patch-search.cgi.in (props changed) head/www/dummyflash/files/patch-aa (props changed) head/www/elgg/files/patch-htaccess_dist (props changed) head/www/elinks/files/patch-src_intl_gettext_Makefile (props changed) head/www/elinks/files/patch-src_scripting_lua_Makefile (props changed) head/www/elog/files/patch-Makefile (props changed) head/www/emacs-w3m/files/extra-patch-Makefile.in (props changed) head/www/emacs-w3m/files/extra-patch-aclocal.m4 (props changed) head/www/emacs-w3m/files/patch-Makefile.in (props changed) head/www/encode-explorer/files/extra-patch-index-php-experimental (props changed) head/www/epiphany-extensions/files/patch-extensions_adblock_adblock-ui.c (props changed) head/www/epiphany-extensions/files/patch-extensions_adblock_ephy-adblock-extension.c (props changed) head/www/epiphany-extensions/files/patch-extensions_permissions_ephy-permissions-dialog.c (props changed) head/www/epiphany/files/extra-patch-embed_ephy-embed-prefs.c (props changed) head/www/epiphany/files/patch-embed_downloader-view.c (props changed) head/www/epiphany/files/patch-embed_ephy-embed-prefs.c (props changed) head/www/epiphany/files/patch-lib_ephy-spell-check.c (props changed) head/www/epiphany/files/patch-src_Makefile.in (props changed) head/www/erwn/files/patch-src::erwindialogs.c (props changed) head/www/eventum/files/patch-misc_monitor.php (props changed) head/www/fcgi/files/patch-include__fcgio.h (props changed) head/www/fcgiwrap/files/patch-fcgiwrap.c (props changed) head/www/ffproxy/files/patch-Makefile.in (props changed) head/www/ffproxy/files/patch-dbs.h (props changed) head/www/ffproxy/files/patch-socket.c (props changed) head/www/fhttpd/files/patch-aa (props changed) head/www/fhttpd/files/patch-ab (props changed) head/www/fhttpd/files/patch-ac (props changed) head/www/fhttpd/files/patch-ad (props changed) head/www/fhttpd/files/patch-ae (props changed) head/www/fhttpd/files/patch-af (props changed) head/www/fhttpd/files/patch-ag (props changed) head/www/fhttpd/files/patch-ah (props changed) head/www/fhttpd/files/patch-ai (props changed) head/www/fhttpd/files/patch-fhttpd.h (props changed) head/www/fhttpd/files/patch-z-clang (props changed) head/www/firefox-esr/files/patch-security_manager_ssl_src_nsNSSComponent.cpp (props changed) head/www/firefox-esr/files/patch-toolkit_mozapps_installer_packager_mk (props changed) head/www/firefox-esr/files/patch-toolkit_xre_Makefile.in (props changed) head/www/firefox/files/patch-clang32-libc++-visibility-hack (props changed) head/www/firefox/files/patch-security_manager_ssl_src_nsNSSComponent.cpp (props changed) head/www/firefox/files/patch-toolkit_mozapps_installer_packager_mk (props changed) head/www/firefox/files/patch-toolkit_xre_Makefile.in (props changed) head/www/flood/files/patch-configure.in (props changed) head/www/flood/files/patch-flood_round_robin.c (props changed) head/www/fnord/files/patch-httpd.c (props changed) head/www/formication/files/patch-sendmail (props changed) head/www/foswiki/files/patch-minifycss (props changed) head/www/foswiki/files/patch-minifyjs (props changed) head/www/fpc-fastcgi/files/patch-packages-fastcgi_Makefile (props changed) head/www/free-sa-devel/files/extra-patch-Makefile (props changed) head/www/free-sa/files/extra-patch-Makefile (props changed) head/www/free-sa/files/extra-patch-global-i386.mk (props changed) head/www/free-sa/files/extra-patch-global-native.mk (props changed) head/www/gatling/files/extra-patch-disable_smb (props changed) head/www/gecko-mediaplayer/files/patch-configure (props changed) head/www/gecko-sharp20/files/patch-configure (props changed) head/www/gnome-user-share/files/patch-configure (props changed) head/www/gnome-user-share/files/patch-src_obexpush.c (props changed) head/www/gnome-user-share/files/patch-src_user_share.c (props changed) head/www/google-sitemapgen/files/patch-setup.py (props changed) head/www/goose/files/patch-goose (props changed) head/www/grails/files/patch-grails-debug (props changed) head/www/gtkhtml3/files/patch-components_editor_gtkhtml-spell-dialog.c (props changed) head/www/harvest/files/patch-components::broker::standard::glimpse::index::glimpse.c (props changed) head/www/harvest/files/patch-components::broker::zebra::yaz::lib::Makefile.in (props changed) head/www/harvest/files/patch-components::gatherer::WordPerfect::wp2x-2.3::Makefile.in (props changed) head/www/harvest/files/patch-src::configure (props changed) head/www/harvest/files/patch-src::gatherer::curl::lib::Makefile.in (props changed) head/www/hastymail/files/patch-lib-constant.php (props changed) head/www/havp/files/patch-havp_Makefile.in (props changed) head/www/horde3-base/files/extra-patch-lib_Horde_NLS.php (props changed) head/www/horde3-base/files/patch-config_conf.xml (props changed) head/www/horde3-base/files/patch-config_mime_drivers.php.dist (props changed) head/www/horde3-base/files/patch-config_registry.php.dist (props changed) head/www/horde3-base/files/patch-po_translation.php (props changed) head/www/horde3-base/files/patch-scripts_sql_README (props changed) head/www/htdump/files/patch-init.c (props changed) head/www/html2wml/files/patch-aa (props changed) head/www/htmlcxx/files/patch-CharsetConverter.cc (props changed) head/www/htmlcxx/files/patch-css_syntax.y (props changed) head/www/http_get/files/patch-http_get.c (props changed) head/www/httpsqs/files/patch-httpsqs.c (props changed) head/www/hydra/files/patch-defines.h (props changed) head/www/hydra/files/patch-hydra.conf (props changed) head/www/hydra/files/patch-src::cgi_ssl.c (props changed) head/www/hypermail/files/patch-docs::Makefile.in (props changed) head/www/hypermail/files/patch-src-pcre-pcreposix.c (props changed) head/www/hypermail/files/patch-src-pcre-pcretest.c (props changed) head/www/hypermail/files/patch-src::proto.h (props changed) head/www/jesred/files/patch-aa (props changed) head/www/jesred/files/patch-ab (props changed) head/www/jesred/files/patch-rewrite.c (props changed) head/www/jtoolkit/files/patch-new-lucene (props changed) head/www/junkbuster/files/patch-aa (props changed) head/www/junkbuster/files/patch-ag (props changed) head/www/junkbuster/files/patch-ah (props changed) head/www/junkbuster/files/patch-ai (props changed) head/www/junkbuster/files/patch-ak (props changed) head/www/junkbuster/files/patch-al (props changed) head/www/junkbuster/files/patch-ao (props changed) head/www/junkbuster/files/patch-filters.c (props changed) head/www/junkbuster/files/patch-jcc.c (props changed) head/www/junkbuster/files/patch-jcc.h (props changed) head/www/junkbuster/files/patch-junkbstr.ini (props changed) head/www/junkbuster/files/patch-junkbuster.1 (props changed) head/www/kannel/files/patch-ad (props changed) head/www/kannel/files/patch-af (props changed) head/www/kdewebdev4/files/patch-klinkstatus__src__plugins__scripting__scripts__CMakeLists.txt (props changed) head/www/kplaylist/files/patch-kplaylist.1.8.505.php (props changed) head/www/larbin/files/patch-adns_internal.h (props changed) head/www/libapreq2/files/patch-glue-Makefile.in (props changed) head/www/libapreq2/files/patch-glue-perl-Makefile.PL (props changed) head/www/libapreq2/files/patch-library-Makefile.in (props changed) head/www/libapreq2/files/patch-module-Makefile.in (props changed) head/www/libepc/files/patch-docs_reference_libepc_Makefile.in (props changed) head/www/libepc/files/patch-libepc_service-monitor.c (props changed) head/www/libepc/files/patch-tests_framework.c (props changed) head/www/libwww/files/patch-aa (props changed) head/www/libwww/files/patch-configure (props changed) head/www/libwww/files/patch-libwww-config.in (props changed) head/www/libxul/files/patch-security_manager_ssl_src_nsNSSComponent.cpp (props changed) head/www/libxul/files/patch-toolkit_xre_Makefile.in (props changed) head/www/libxul/files/patch-xulrunner_installer_libxul-embedding.pc.in (props changed) head/www/libxul/files/patch-xulrunner_installer_libxul.pc.in (props changed) head/www/lightsquid/files/patch-lightparser.pl (props changed) head/www/lighttpd/files/extra-patch-mysqlauth (props changed) head/www/lighttpd/files/extra-patch-nodelay (props changed) head/www/lighttpd/files/patch-configure.ac (props changed) head/www/lighttpd/files/patch-src-fdevent.h (props changed) head/www/linkcheck/files/patch-src-linkcheck.c (props changed) head/www/links-hacked/files/patch-png.c (props changed) head/www/links/files/patch-configure (props changed) head/www/links/files/patch-default.c (props changed) head/www/links/files/patch-types.c (props changed) head/www/links1/files/patch-ab (props changed) head/www/links1/files/patch-default.c (props changed) head/www/links1/files/patch-types.c (props changed) head/www/linux-opera-devel/files/patch-pluginpath.ini (props changed) head/www/linux-opera-devel/files/patch-search.ini (props changed) head/www/linux-opera/files/patch-pluginpath.ini (props changed) head/www/linux-opera/files/patch-search.ini (props changed) head/www/ljdump/files/patch-ljdump.py (props changed) head/www/logtools/files/patch-aa (props changed) head/www/logtools/files/patch-ab (props changed) head/www/logtools/files/patch-ac (props changed) head/www/lusca-head/files/patch-aa (props changed) head/www/lusca-head/files/patch-ab (props changed) head/www/lusca-head/files/patch-helpers-basic_auth-SMB-Makefile.in (props changed) head/www/lusca-head/files/patch-helpers-basic_auth-SMB-smb_auth.sh (props changed) head/www/lusca-head/files/patch-helpers-negotiate_auth-squid_kerb_auth-Makefile.in (props changed) head/www/lusca-head/files/patch-helpers-negotiate_auth-squid_kerb_auth-squid_kerb_auth.c (props changed) head/www/lusca-head/files/patch-libiapp-iapp_ssl.h (props changed) head/www/lusca-head/files/patch-src-cf.data.pre (props changed) head/www/lusca-head/files/patch-tools-Makefile.in (props changed) head/www/lynx-current/files/patch-aa (props changed) head/www/lynx/files/patch-LYCharSets (props changed) head/www/lynx/files/patch-makefile.in (props changed) head/www/mambo/files/patch-includes-Cache-Lite-Function.php (props changed) head/www/mambo/files/patch-includes-database.php (props changed) head/www/man2web/files/patch-configure (props changed) head/www/man2web/files/patch-doc_man__sources_package__name.1.in (props changed) head/www/man2web/files/patch-doc_man__sources_package__name__conf.5.in (props changed) head/www/mathopd/files/patch-aa (props changed) head/www/mathopd/files/patch-ab (props changed) head/www/mergelog/files/patch-mergelog.c (props changed) head/www/metacafe_dl/files/patch-metacafe-dl (props changed) head/www/mhonarc/files/patch-lib__mhamain.pl (props changed) head/www/mhonarc/files/patch-lib__mhopt.pl (props changed) head/www/mhonarc/files/patch-lib__readmail.pl (props changed) head/www/middleman/files/patch-include-macros.h (props changed) head/www/middleman/files/patch-include-types.h (props changed) head/www/middleman/files/patch-pcre-internal.h (props changed) head/www/mini_httpd/files/patch-Makefile (props changed) head/www/mini_httpd/files/patch-mini_httpd.c (props changed) head/www/mod_auth_form/files/patch-Makefile.in (props changed) head/www/mod_auth_form/files/patch-configure (props changed) head/www/mod_auth_imap2/files/patch-mod_auth_imap.c (props changed) head/www/mod_auth_kerb2/files/patch-spnegokrb5__spnegokrb5_locl.h (props changed) head/www/mod_auth_mysql_another/files/patch-strcat (props changed) head/www/mod_auth_pam2/files/patch-Makefile (props changed) head/www/mod_auth_pubtkt/files/patch-src__Makefile (props changed) head/www/mod_auth_tkt/files/extra-patch-query-separator (props changed) head/www/mod_clamav/files/patch-mod_clamav.h (props changed) head/www/mod_dnssd/files/patch-src_Makefile.in (props changed) head/www/mod_extract_forwarded/files/extra-patch-mod_extract_forwarded.c (props changed) head/www/mod_extract_forwarded/files/extra-patch-yoshfuji (props changed) head/www/mod_fastcgi/files/patch-fcgi_util.c (props changed) head/www/mod_fastcgi/files/patch-mod_fastcgi.c (props changed) head/www/mod_ftp/files/patch-install (props changed) head/www/mod_ftp/files/patch-lingering-close (props changed) head/www/mod_ftp/files/patch-ls-sort (props changed) head/www/mod_ftp/files/patch-quiet (props changed) head/www/mod_ftp/files/patch-warnings (props changed) head/www/mod_gnutls/files/patch-src-Makefile.in (props changed) head/www/mod_gzip2/files/patch-Makefile (props changed) head/www/mod_gzip2/files/patch-mod_gzip (props changed) head/www/mod_gzip2/files/patch-zutil.h (props changed) head/www/mod_jk/files/patch-tomcat-connectors-src:native:configure (props changed) head/www/mod_layout22/files/patch-Makefile (props changed) head/www/mod_log_sql2-dtc/files/patch-functions13.h (props changed) head/www/mod_log_sql2-dtc/files/patch-mod_log_sql.c (props changed) head/www/mod_log_sql2-dtc/files/patch-mod_log_sql.h (props changed) head/www/mod_log_sql2-dtc/files/patch-mod_log_sql_mysql.c (props changed) head/www/mod_log_sql2-dtc/files/patch-mod_log_sql_pgsql.c (props changed) head/www/mod_log_sql2/files/patch-functions13.h (props changed) head/www/mod_memcache/files/patch-configure (props changed) head/www/mod_mono/files/patch-Makefile.in (props changed) head/www/mod_musicindex/files/patch-src__Makefile.in (props changed) head/www/mod_myvhost/files/patch-Makefile (props changed) head/www/mod_ntlm2/files/patch-Makefile (props changed) head/www/mod_ntlm2/files/patch-mod_ntlm.c (props changed) head/www/mod_ntlm2/files/patch-smbval-rfcnb-util.inc.c (props changed) head/www/mod_ntlm2/files/patch-smbval-session.inc.c (props changed) head/www/mod_ntlm2/files/patch-smbval-smbencrypt.inc.c (props changed) head/www/mod_ntlm2/files/patch-smbval-smblib-util.inc.c (props changed) head/www/mod_ntlm2/files/patch-smbval-smblib.inc.c (props changed) head/www/mod_pagespeed/files/patch-base.gypi (props changed) head/www/mod_pagespeed/files/patch-build-common.gypi (props changed) head/www/mod_pagespeed/files/patch-common.h (props changed) head/www/mod_pagespeed/files/patch-common.py (props changed) head/www/mod_pagespeed/files/patch-file_path.cc (props changed) head/www/mod_pagespeed/files/patch-gyptest.py (props changed) head/www/mod_pagespeed/files/patch-instaweb_core.gyp (props changed) head/www/mod_pagespeed/files/patch-libjpeg_jpeglib.h (props changed) head/www/mod_pagespeed/files/patch-make.py (props changed) head/www/mod_pagespeed/files/patch-parser.cc (props changed) head/www/mod_pagespeed/files/patch-pthread_shared_mem.cc (props changed) head/www/mod_pagespeed/files/patch-python_arch.sh (props changed) head/www/mod_pagespeed/files/patch-python_arch2.sh (props changed) head/www/mod_pagespeed/files/patch-stack_trace_posix.cc (props changed) head/www/mod_perl2/files/patch-Makefile.PL (props changed) head/www/mod_python3/files/patch-Makefile.in (props changed) head/www/mod_python3/files/patch-configure (props changed) head/www/mod_python3/files/patch-src__connobject.c (props changed) head/www/mod_remoteip/files/patch-modules__metadata__mod_remoteip.c (props changed) head/www/mod_ruby/files/patch-aa-git (props changed) head/www/mod_ruby/files/patch-connection.c (props changed) head/www/mod_ruby/files/patch-httpd.conf (props changed) head/www/mod_spdy/files/patch-apache_spdy_session_io.cc (props changed) head/www/mod_spdy/files/patch-apache_spdy_stream_task_factory.cc (props changed) head/www/mod_spdy/files/patch-apr.gyp (props changed) head/www/mod_spdy/files/patch-aprutil.gyp (props changed) head/www/mod_spdy/files/patch-base.gypi (props changed) head/www/mod_spdy/files/patch-common.h (props changed) head/www/mod_spdy/files/patch-gyp_chromium (props changed) head/www/mod_spdy/files/patch-mod_spdy.cc (props changed) head/www/mod_spdy/files/patch-pthread_shared_mem.cc (props changed) head/www/mod_spdy/files/patch-python_arch.sh (props changed) head/www/mod_spdy/files/patch-python_arch2.sh (props changed) head/www/mod_spdy/files/patch-stack_trace_posix.cc (props changed) head/www/mod_spdy/files/patch-sys_byteorder.h (props changed) head/www/mohawk/files/patch-man5__Makefile (props changed) head/www/mohawk/files/patch-man8__Makefile (props changed) head/www/moinmoin/files/patch-setup.py (props changed) head/www/moinmoin/files/patch-wiki-server-moin.fcgi (props changed) head/www/mongrel2/files/patch-Makefile (props changed) head/www/multisort/files/patch-Makefile (props changed) head/www/mysar/files/patch-bin_mysar-binary-importer_configure (props changed) head/www/nanoblogger/files/patch-nb (props changed) head/www/nanoblogger/files/patch-nb.conf (props changed) head/www/nanoblogger/files/patch-plugins__calendar.sh (props changed) head/www/nanoblogger/files/patch-plugins__entry__format__markdown.sh (props changed) head/www/nanoblogger/files/patch-plugins__page__format__markdown.sh (props changed) head/www/neon29/files/patch-Makefile.in (props changed) head/www/neon29/files/patch-ltmain.sh (props changed) head/www/nginx-devel/files/extra-patch-agentzh-set-misc-nginx-module-config (props changed) head/www/nginx-devel/files/extra-patch-calio-iconv-nginx-module-config (props changed) head/www/nginx-devel/files/extra-patch-chaoslawful-drizzle-nginx-module-config (props changed) head/www/nginx-devel/files/extra-patch-ngx_http_notice_module.c (props changed) head/www/nginx-devel/files/extra-patch-ngx_http_sflow_config.c (props changed) head/www/nginx-devel/files/extra-patch-ngx_http_streaming_module.c (props changed) head/www/nginx-devel/files/extra-patch-ngx_http_udplog_module.c (props changed) head/www/nginx-devel/files/extra-patch-ngx_http_upstream.h (props changed) head/www/nginx-devel/files/extra-patch-ngx_postgres-config (props changed) head/www/nginx-devel/files/extra-patch-passenger-build-nginx.rb (props changed) head/www/nginx-devel/files/extra-patch-syslog_support (props changed) head/www/nginx-devel/files/patch-conf-nginx.conf (props changed) head/www/nginx/files/extra-patch-agentzh-set-misc-nginx-module-config (props changed) head/www/nginx/files/extra-patch-calio-iconv-nginx-module-config (props changed) head/www/nginx/files/extra-patch-chaoslawful-drizzle-nginx-module-config (props changed) head/www/nginx/files/extra-patch-ngx_http_notice_module.c (props changed) head/www/nginx/files/extra-patch-ngx_http_sflow_config.c (props changed) head/www/nginx/files/extra-patch-ngx_http_streaming_module.c (props changed) head/www/nginx/files/extra-patch-ngx_http_udplog_module.c (props changed) head/www/nginx/files/extra-patch-ngx_http_upstream.h (props changed) head/www/nginx/files/extra-patch-ngx_postgres-config (props changed) head/www/nginx/files/extra-patch-passenger-build-nginx.rb (props changed) head/www/nginx/files/extra-patch-syslog_support (props changed) head/www/nginx/files/patch-conf-nginx.conf (props changed) head/www/nostromo/files/patch-src-libmy-Makefile (props changed) head/www/nostromo/files/patch-src-nhttpd-Makefile (props changed) head/www/nostromo/files/patch-src-tools-Makefile (props changed) head/www/npc/files/patch-aa (props changed) head/www/nscache/files/patch-ac (props changed) head/www/nspluginwrapper/files/patch-configure (props changed) head/www/nspluginwrapper/files/patch-src__npw-config.c (props changed) head/www/ocsigen/files/patch-Makefile (props changed) head/www/oops/files/extra-patch-configure.in (props changed) head/www/oops/files/extra-patch-src_modules_Makefile.in (props changed) head/www/oops/files/patch-src::Makefile.in (props changed) head/www/oops/files/patch-src_lib.c (props changed) head/www/oops/files/patch-src_modules_netflow.c (props changed) head/www/oops/files/patch-src_modules_transparent.c (props changed) head/www/oops/files/patch-src_oops.cfg.in (props changed) head/www/oops/files/patch-x64 (props changed) head/www/openvrml/files/patch-Makefile.in (props changed) head/www/openvrml/files/patch-image_stream_listener.cpp (props changed) head/www/openvrml/files/patch-src_Makefile.in (props changed) head/www/openvrml/files/patch-tests_Makefile.in (props changed) head/www/p5-AnyEvent-SCGI/files/patch-AutoInstall.pm (props changed) head/www/p5-Apache-AuthCookie/files/patch-Makefile.PL (props changed) head/www/p5-Apache-ParseFormData/files/patch-ParseFormData.pm (props changed) head/www/p5-Ark/files/patch-AutoInstall.pm (props changed) head/www/p5-CGI-EncryptForm/files/patch-EncryptForm.pm (props changed) head/www/p5-CGI-SpeedyCGI/files/patch-Makefile.PL (props changed) head/www/p5-CGI-SpeedyCGI/files/patch-mod_speedycgi2.c (props changed) head/www/p5-CGI-SpeedyCGI/files/patch-src::SpeedyMake.pl (props changed) head/www/p5-CGI-SpeedyCGI/files/patch-src_speedy_main.c (props changed) head/www/p5-CGI-SpeedyCGI/files/patch-src_speedy_perl.c (props changed) head/www/p5-CGI-modules/files/patch-Base.pm (props changed) head/www/p5-CGI-modules/files/patch-BasePlus.pm (props changed) head/www/p5-CGI-modules/files/patch-Carp.pm (props changed) head/www/p5-Catalyst-TraitFor-Controller-DBIC-DoesPaging/files/patch-Makefile.PL (props changed) head/www/p5-ClearSilver/files/patch-ClearSilver.xs (props changed) head/www/p5-FAQ-OMatic/files/patch-aa (props changed) head/www/p5-Gantry/files/patch-Build.PL (props changed) head/www/p5-Gantry/files/patch-lib__Gantry__Build.pm (props changed) head/www/p5-HTML-GoogleMaps/files/patch-lib__HTML__GoogleMaps.pm (props changed) head/www/p5-HTTP-Cookies-w3m/files/patch-Makefile.PL (props changed) head/www/p5-HTTP-Engine/files/patch-request-as_http_request.t (props changed) head/www/p5-HTTP-Engine/files/patch-request-as_string.t (props changed) head/www/p5-HTTP-Recorder/files/patch-lib_HTTP_Recorder.pm (props changed) head/www/p5-Maypole/files/patch-Makefile.PL (props changed) head/www/p5-Net-eBay/files/patch-MANIFEST (props changed) head/www/p5-Net-eBay/files/patch-Makefile.PL (props changed) head/www/p5-POE-Component-Server-SimpleHTTP/files/patch-Makefile.PL (props changed) head/www/p5-W3C-LogValidator/files/patch-Makefile.PL (props changed) head/www/p5-WWW-Babelfish/files/patch-Makefile.PL (props changed) head/www/p5-WWW-Mechanize/files/patch-t__local__LocalServer.pm (props changed) head/www/p5-WWW-Plurk/files/patch-lib__WWW__Plurk.pm (props changed) head/www/p5-WebService-NoPaste/files/extrapatch-lib-WebService-NoPaste.pm (props changed) head/www/p5-webservice-validator-html-w3c/files/patch-Makefile.PL (props changed) head/www/pecl-amfext/files/patch-amf.c (props changed) head/www/pecl-solr/files/patch-config.m4 (props changed) head/www/pecl-solr/files/patch-php_solr.c (props changed) head/www/pglogd/files/patch-Makefile (props changed) head/www/php-screw/files/patch-php_screw.c (props changed) head/www/php-screw/files/patch-tools::Makefile (props changed) head/www/php-templates/files/patch-templates.c (props changed) head/www/php-templates/files/patch-tmpl_lib.c (props changed) head/www/pivotx/files/patch-example.htaccess (props changed) head/www/pivotx/files/patch-pivotx-data.php (props changed) head/www/plugger/files/patch-Makefile.in (props changed) head/www/plugger/files/patch-configure (props changed) head/www/plugger/files/patch-plugger-helper.c (props changed) head/www/plugger/files/patch-plugger-oohelper (props changed) head/www/plugger/files/patch-plugger.c (props changed) head/www/polipo/files/patch-aa (props changed) head/www/privoxy+ipv6/files/patch-GNUmakefile.in (props changed) head/www/privoxy+ipv6/files/patch-src::addrlist.c (props changed) head/www/pserv/files/patch-handlers.c (props changed) head/www/pserv/files/patch-handlers.h (props changed) head/www/pserv/files/patch-log.c (props changed) head/www/pserv/files/patch-main.c (props changed) head/www/pserv/files/patch-main.h (props changed) head/www/pserv/files/patch-mime.c (props changed) head/www/pserv/files/patch-mime_types.dat (props changed) head/www/pserv/files/patch-pserv.conf (props changed) head/www/publicfile/files/patch-hier.c (props changed) head/www/pwebstats/files/patch-aa (props changed) head/www/py-HTMLgen/files/patch-aa (props changed) head/www/py-cssselect/files/patch-docs__conf.py (props changed) head/www/py-django-json-rpc/files/patch-site.py (props changed) head/www/py-funkload/files/patch-setup.py (props changed) head/www/py-graphite-web/files/patch-setup.cfg (props changed) head/www/py-graphite-web/files/patch-setup.py (props changed) head/www/py-tgwebservices/files/patch-setup.py (props changed) head/www/py-utidy/files/patch-tidy-lib.py (props changed) head/www/py-waitress/files/patch-setup.py (props changed) head/www/py-webunit/files/patch-setup.py (props changed) head/www/pyjamas/files/patch-setup.py (props changed) head/www/quickie/files/patch-lib_arglex.cc (props changed) head/www/quickie/files/patch-lib_file_regular.cc (props changed) head/www/quickie/files/patch-lib_input_file.cc (props changed) head/www/quickie/files/patch-lib_output_file.cc (props changed) head/www/quickie/files/patch-lib_quit.cc (props changed) head/www/quickie/files/patch-lib_rcstring_list_sort_vers.cc (props changed) head/www/quickie/files/patch-lib_simple_version_tool_checkin.cc (props changed) head/www/quickie/files/patch-quickie-config_main.cc (props changed) head/www/rejik/files/patch-Makefile (props changed) head/www/reportmagic/files/patch-aa (props changed) head/www/repos-style/files/patch-open-log-index.php (props changed) head/www/repos-style/files/patch-view-log.xsl (props changed) head/www/repos-style/files/patch-view-repos.xsl (props changed) head/www/resin3/files/patch-apache2-Makefile.in (props changed) head/www/resin3/files/patch-cse.h (props changed) head/www/resin3/files/patch-modules-c-src-common-Makefile.in (props changed) head/www/roundup/files/patch-setup.py (props changed) head/www/rt38/files/extra-patch-noportdocs-Makefile.in (props changed) head/www/rt38/files/patch-Makefile.in (props changed) head/www/rt38/files/patch-aclocal.m4 (props changed) head/www/rt38/files/patch-config.layout (props changed) head/www/rt38/files/patch-lib__RT.pm.in (props changed) head/www/ruboard/files/patch-aa (props changed) head/www/ruboard/files/patch-ab (props changed) head/www/ruby-div/files/patch-install_rb (props changed) head/www/rubygem-gitlab-gollum-lib/files/patch-gemspec (props changed) head/www/sahi/files/patch-bin__web.sh (props changed) head/www/sahi/files/patch-config__browser_types__linux.xml (props changed) head/www/sahi/files/patch-config__os.properties (props changed) head/www/sahi/files/patch-config__sahi.properties (props changed) head/www/sams/files/patch-Makefile.in (props changed) head/www/sams/files/patch-configure (props changed) head/www/sams/files/patch-sams.conf (props changed) head/www/sarg/files/patch-Makefile.in (props changed) head/www/sbox-dtc/files/patch-sbox.h (props changed) head/www/seamonkey/files/extra-patch-security_manager_Makefile.in (props changed) head/www/seamonkey/files/patch-ldap-sdks-c-sdk-ldap-libraries-libldap-Makefile.in (props changed) head/www/seamonkey/files/patch-ldap-sdks-c-sdk-ldap-libraries-libssldap-Makefile.in (props changed) head/www/seamonkey/files/patch-ldap-xpcom-src-Makefile.in (props changed) head/www/seamonkey/files/patch-mozilla-security-manager-ssl-src-nsNSSComponent.cpp (props changed) head/www/seamonkey/files/patch-mozilla_toolkit_mozapps_installer_packager_mk (props changed) head/www/seamonkey/files/patch-suite-installer-Makefile.in (props changed) head/www/sitecopy/files/patch-Makefile.in (props changed) head/www/sitecopy/files/patch-sitestore.c (props changed) head/www/smb_auth/files/patch-aa (props changed) head/www/smb_auth/files/patch-smb_auth.c (props changed) head/www/snownews/files/extra-patch-Makefile (props changed) head/www/spreadlogd/files/patch-config.h (props changed) head/www/spreadlogd/files/patch-makefile (props changed) head/www/spreadlogd/files/patch-spreadlogd.c (props changed) head/www/squid/files/extra-patch-src-cf.data.pre.aufs (props changed) head/www/squid/files/patch-aa (props changed) head/www/squid/files/patch-configure (props changed) head/www/squid/files/patch-helpers-basic_auth-SMB-Makefile.in (props changed) head/www/squid/files/patch-helpers-basic_auth-SMB-smb_auth.sh (props changed) head/www/squid/files/patch-squid_kerb_auth (props changed) head/www/squid/files/patch-src-cf.data.pre (props changed) head/www/squid/files/patch-tools-Makefile.in (props changed) head/www/squid32/files/extra-patch-src-cf.data.pre.aufs (props changed) head/www/squid_radius_auth/files/patch-Make.inc (props changed) head/www/squid_radius_auth/files/patch-md5.h (props changed) head/www/squidclamav/files/patch-etc-Makefile.in (props changed) head/www/squidguard/files/patch-src__sg.h.in (props changed) head/www/squidguard/files/patch-src__sgDiv.c.in (props changed) head/www/squidguard/files/patch-src__sgLog.c (props changed) head/www/squidguard/files/patch-src_main.c (props changed) head/www/squidpurge/files/patch-Makefile (props changed) head/www/squidpurge/files/patch-README (props changed) head/www/squidpurge/files/patch-conffile.hh (props changed) head/www/squirm/files/patch-Makefile (props changed) head/www/squirm/files/patch-config.c (props changed) head/www/squirm/files/patch-paths.h (props changed) head/www/squirm/files/patch-squirm.c (props changed) head/www/squirm/files/patch-squirm.conf.dist (props changed) head/www/swiggle/files/patch-Makefile (props changed) head/www/swiggle/files/patch-html.c (props changed) head/www/swiggle/files/patch-swiggle.c (props changed) head/www/swiggle/files/patch-swiggle.h (props changed) head/www/swish++/files/patch-GNUmakefile (props changed) head/www/swish++/files/patch-man::GNUmakefile (props changed) head/www/tclhttpd/files/patch-ab (props changed) head/www/tclhttpd/files/patch-ac (props changed) head/www/tclhttpd/files/patch-ad (props changed) head/www/tclhttpd/files/patch-ae (props changed) head/www/tclhttpd/files/patch-ah (props changed) head/www/tclhttpd/files/patch-ak (props changed) head/www/tclhttpd/files/patch-date (props changed) head/www/tclhttpd/files/patch-tcl84 (props changed) head/www/tdom/files/patch-Makefile.in (props changed) head/www/tdom/files/patch-configure (props changed) head/www/tdom/files/patch-expat-xmlparse.h (props changed) head/www/tdom/files/patch-generic-dom.h (props changed) head/www/tdom/files/patch-generic-tclexpat.c (props changed) head/www/thttpd/files/extra-patch-config.h (props changed) head/www/thttpd/files/patch-ab (props changed) head/www/thttpd/files/patch-ac (props changed) head/www/thttpd/files/patch-ad (props changed) head/www/thttpd/files/patch-libhttpd.c (props changed) head/www/thttpd/files/patch-libhttpd.h (props changed) head/www/thttpd/files/patch-mmc.c (props changed) head/www/thttpd/files/patch-thttpd.c (props changed) head/www/thumbnail_index/files/patch-aa (props changed) head/www/thumbnail_index/files/patch-ab (props changed) head/www/thumbnail_index/files/patch-spaces (props changed) head/www/tickr/files/patch-src__tickr__Makefile.in (props changed) head/www/tickr/files/patch-src__tickr__tickr.h (props changed) head/www/tickr/files/patch-src__tickr__tickr_socket.h (props changed) head/www/tickr/files/patch-tickr.desktop (props changed) head/www/tidy-devel/files/patch-build_gmake_Makefile (props changed) head/www/tidy-devel/files/patch-build_gnuauto_configure.in (props changed) head/www/tidy-devel/files/patch-build_gnuauto_include_Makefile.am (props changed) head/www/tidy-devel/files/patch-console::tidy.c (props changed) head/www/tidy-devel/files/patch-include_platform.h (props changed) head/www/tidy/files/patch-aa (props changed) head/www/tidy/files/patch-ab (props changed) head/www/tidy/files/patch-ac (props changed) head/www/tidy/files/patch-ad (props changed) head/www/tidy/files/patch-ae (props changed) head/www/tidy/files/patch-af (props changed) head/www/tidy/files/patch-ag (props changed) head/www/tidy/files/patch-ah (props changed) head/www/tinyproxy/files/patch-Makefile.in (props changed) head/www/tinyproxy/files/patch-configure (props changed) head/www/tinyproxy/files/patch-etc__Makefile.in (props changed) head/www/tinyproxy/files/patch-src__main.c (props changed) head/www/tntnet/files/patch-etc (props changed) head/www/tomcat-native/files/patch-Makefile.in (props changed) head/www/tomcat6/files/patch-conf__server.xml (props changed) head/www/trac-announcer/files/patch-mail-dont-encode-ascii-headers (props changed) head/www/trac-announcer/files/patch-old-ticket-link-style (props changed) head/www/trac-downloads/files/patch-tracdownloads_consoleadmin.py (props changed) head/www/trac-gantt/files/patch-setup.py (props changed) head/www/trac-gantt/files/patch-tracgantt-gantt.py (props changed) head/www/trac-graphviz/files/patch-graphviz_graphviz.py (props changed) head/www/trac-keywords/files/patch-fix-javascript (props changed) head/www/trac-keywords/files/patch-web_ui.py (props changed) head/www/trac-math/files/patch-tracmath_tracmath.py (props changed) head/www/trac-remind/files/patch-tracremind.py (props changed) head/www/trac-subtickets/files/patch-setup.cfg (props changed) head/www/trac-subtickets/files/patch-tracsubtickets_api.py (props changed) head/www/trac-tags/files/patch-tractags_model.py (props changed) head/www/trac-watchlist/files/patch-tracwatchlist_util.py (props changed) head/www/trac-wikinotification/files/patch-WikiNotification__notification.py (props changed) head/www/trac-wikinotification/files/patch-WikiNotification__templates__wiki_notification_email_template.txt (props changed) head/www/transproxy/files/patch-aa (props changed) head/www/twiki/files/patch-twikiutf8.diff (props changed) head/www/udmsearch/files/patch-configure.in (props changed) head/www/udmsearch/files/patch-src-sql.c (props changed) head/www/udmsearch/files/patch-src-udmutils.c (props changed) head/www/ump/files/patch-interface-Makefile.in (props changed) head/www/ump/files/patch-libunimod-Makefile.in (props changed) head/www/ump/files/patch-timidity-Makefile.in (props changed) head/www/ump/files/patch-ump-Makefile.in (props changed) head/www/ump/files/patch-ump::UnixShell.c (props changed) head/www/ump/files/patch-utils-Makefile.in (props changed) head/www/uzbl/files/patch-Makefile (props changed) head/www/uzbl/files/patch-examples__data__scripts__auth.py (props changed) head/www/uzbl/files/patch-examples__data__scripts__instance-select-wii.sh (props changed) head/www/uzbl/files/patch-examples__data__scripts__load_url_from_history.sh (props changed) head/www/uzbl/files/patch-src__events.c (props changed) head/www/uzbl/files/patch-src__uzbl-browser (props changed) head/www/uzbl/files/patch-uzbl-core.c (props changed) head/www/varnish-libvmod-header/files/patch-configure.ac (props changed) head/www/varnish-libvmod-header/files/patch-src-Makefile.am (props changed) head/www/varnish-libvmod-header/files/patch-src-vmod_header.c (props changed) head/www/varnish/files/patch-configure.ac (props changed) head/www/vdr-plugin-live/files/patch-live.cpp (props changed) head/www/vdr-plugin-live/files/patch-tasks.cpp (props changed) head/www/vdr-plugin-live/files/patch-tools.cpp (props changed) head/www/vdradmin-am/files/patch-install.sh (props changed) head/www/w3m/files/patch-configure (props changed) head/www/w3m/files/patch-w3mimg_fb_fb.c (props changed) head/www/w3m/files/patch-w3mimg_fb_fb.h (props changed) head/www/w3m/files/patch-w3mimg_fb_fb_w3mimg.c (props changed) head/www/w3mir/files/patch-w3http.pm (props changed) head/www/w3mir/files/patch-w3mfix.PL (props changed) head/www/w3mir/files/patch-w3mir.PL (props changed) head/www/web2ldap/files/patch-ac (props changed) head/www/web2ldap/files/patch-ad (props changed) head/www/web2ldap/files/patch-ag (props changed) head/www/web2ldap/files/patch-ah (props changed) head/www/web2ldap/files/patch-ai (props changed) head/www/webalizer/files/patch-dns_resolv.c (props changed) head/www/webalizer/files/patch-output.c (props changed) head/www/webalizer/files/patch-wcmgr.c (props changed) head/www/webalizer/files/patch-webalizer.c (props changed) head/www/webcopy/files/patch-aa (props changed) head/www/webcopy/files/patch-ab (props changed) head/www/webcopy/files/patch-ac (props changed) head/www/webcopy/files/patch-ad (props changed) head/www/webcopy/files/patch-ae (props changed) head/www/webcopy/files/patch-af (props changed) head/www/webcrawl/files/patch-aa (props changed) head/www/webcrawl/files/patch-http.c (props changed) head/www/webfs/files/patch-response.c (props changed) head/www/webinject/files/patch-webinject.pl (props changed) head/www/webkit-gtk2/files/patch-Source_WebCore_plugins_PluginDatabase.cpp (props changed) head/www/webkit-gtk2/files/patch-Source_WebCore_plugins_gtk_PluginViewGtk.cpp (props changed) head/www/webkit-gtk2/files/patch-Source_WebKit_gtk_resources_error.html (props changed) head/www/webkit-gtk2/files/patch-Source_WebKit_gtk_webkit_webkitwebview.cpp (props changed) head/www/webkit-gtk2/files/patch-cairo (props changed) head/www/webkit-gtk3/files/patch-Source_WebCore_plugins_PluginDatabase.cpp (props changed) head/www/webkit-gtk3/files/patch-Source_WebCore_plugins_gtk_PluginViewGtk.cpp (props changed) head/www/webkit-gtk3/files/patch-Source_WebKit_gtk_resources_error.html (props changed) head/www/webkit-gtk3/files/patch-Source_WebKit_gtk_webkit_webkitwebview.cpp (props changed) head/www/webkit-gtk3/files/patch-cairo (props changed) head/www/webkit-qt4/files/patch-src__3rdparty__javascriptcore__JavaScriptCore__jit__JITStubs.cpp (props changed) head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__runtime__JSValueInlineMethods.h (props changed) head/www/webkit-qt4/files/patch-src__3rdparty__webkit__Source__WebKit__qt__QtWebKit.pro (props changed) head/www/webkit-sharp/files/patch-sources_webkit-sharp.dll.config.in (props changed) head/www/weblint/files/patch-aa (props changed) head/www/webobjects/files/patch-aa (props changed) head/www/webobjects/files/patch-ab (props changed) head/www/webreport/files/patch-Makefile (props changed) head/www/webreport/files/patch-webreport.c (props changed) head/www/webresolve/files/patch-webresolve.c (props changed) head/www/websh/files/patch-cflags (props changed) head/www/websh/files/patch-conf (props changed) head/www/websh/files/patch-tests (props changed) head/www/websh/files/patch-warnings (props changed) head/www/webstats/files/patch-aa (props changed) head/www/webstats/files/patch-ab (props changed) head/www/webstats/files/patch-ac (props changed) head/www/webstats/files/patch-ad (props changed) head/www/webstats/files/patch-ae (props changed) head/www/webstone-ssl/files/patch-ab (props changed) head/www/webstone-ssl/files/patch-ac (props changed) head/www/webstone/files/patch-ab (props changed) head/www/webstone/files/patch-ac (props changed) head/www/webstone/files/patch-ad (props changed) head/www/webstone/files/patch-ae (props changed) head/www/webstone/files/patch-af (props changed) head/www/wml/files/patch-11-wmk.t (props changed) head/www/wml/files/patch-wml_backend-p2_mp4h-src-builtin.c (props changed) head/www/wml/files/patch-wml_backend-p3_eperl-configure (props changed) head/www/wml/files/patch-wml_common-gd-Makefile.PL.in (props changed) head/www/woof/files/extra-patch-woof-2009-12-27-python27.diff (props changed) head/www/wsmake/files/patch-Makefile.in (props changed) head/www/wsmake/files/patch-src-libwsmake_wsLoader.h (props changed) head/www/www6to4/files/patch-Makefile (props changed) head/www/wwwcount/files/patch-aa (props changed) head/www/wwwcount/files/patch-ab (props changed) head/www/wwwcount/files/patch-ae (props changed) head/www/wwwoffle/files/patch-aa (props changed) head/www/wwwoffle/files/patch-ab (props changed) head/www/wwwoffle/files/patch-conf::Makefile.in (props changed) head/www/wwwoffle/files/patch-conf::wwwoffle.conf (props changed) head/www/wwwoffle/files/patch-doc-Makefile.in (props changed) head/www/wwwstat/files/patch-aa (props changed) head/www/wwwstat/files/patch-ab (props changed) head/www/wwwstat/files/patch-ac (props changed) head/www/wwwstat/files/patch-monthly.pl (props changed) head/www/xcache/files/patch-xcache.ini (props changed) head/www/xpi-conkeror/files/patch-conkeror (props changed) head/www/xpi-live_http_headers/files/patch-install.rdf (props changed) head/www/yaws/files/patch-man_yaws.conf.5 (props changed) head/www/yaws/files/patch-man_yaws__api.5 (props changed) head/www/yaws/files/patch-src_Makefile (props changed) head/www/zerowait-httpd/files/patch-Makefile (props changed) head/www/zerowait-httpd/files/patch-src__httpd__core.c (props changed) head/www/zerowait-httpd/files/patch-src_common_settings.h (props changed) head/www/zerowait-httpd/files/patch-src_httpd_Makefile (props changed) head/x11-clocks/abclock/files/patch-Makefile (props changed) head/x11-clocks/abclock/files/patch-ab (props changed) head/x11-clocks/alarm-clock/files/patch-src__alarm_runner.c (props changed) head/x11-clocks/asclock-gtk/files/patch-aa (props changed) head/x11-clocks/asclock-gtk/files/patch-ab (props changed) head/x11-clocks/asclock-gtk/files/patch-ac (props changed) head/x11-clocks/asclock-gtk/files/patch-asclock.h (props changed) head/x11-clocks/asclock-gtk/files/patch-led.xpm (props changed) head/x11-clocks/asclock-xlib/files/patch-Imakefile (props changed) head/x11-clocks/asclock-xlib/files/patch-asclock.h (props changed) head/x11-clocks/asclock-xlib/files/patch-beats-led.xpm (props changed) head/x11-clocks/asclock-xlib/files/patch-beats.xpm (props changed) head/x11-clocks/asclock-xlib/files/patch-classic-led.xpm (props changed) head/x11-clocks/asclock-xlib/files/patch-shaped-led.xpm (props changed) head/x11-clocks/asclock/files/patch-color (props changed) head/x11-clocks/astime/files/patch-aa (props changed) head/x11-clocks/astzclock/files/patch-color (props changed) head/x11-clocks/bclock/files/patch-bclock.c (props changed) head/x11-clocks/buici-clock/files/patch-xo-stats.h (props changed) head/x11-clocks/dclock/files/patch-dclock.1 (props changed) head/x11-clocks/emiclock/files/patch-aa (props changed) head/x11-clocks/emiclock/files/patch-include::sound.h (props changed) head/x11-clocks/eyeclock/files/patch-aa (props changed) head/x11-clocks/eyeclock/files/patch-ab (props changed) head/x11-clocks/glclock/files/patch-GLObject.H (props changed) head/x11-clocks/glclock/files/patch-GLextensions.H (props changed) head/x11-clocks/glclock/files/patch-MString.H (props changed) head/x11-clocks/glclock/files/patch-glclock.H (props changed) head/x11-clocks/glclock/files/patch-makefile (props changed) head/x11-clocks/mouseclock/files/patch-01 (props changed) head/x11-clocks/osdclock/files/patch-osd_clock.c (props changed) head/x11-clocks/swisswatch/files/patch-aa (props changed) head/x11-clocks/tclock/files/patch-aa (props changed) head/x11-clocks/wmblueclock/files/patch-Makefile (props changed) head/x11-clocks/wmblueclock/files/patch-timing.c (props changed) head/x11-clocks/wmcalclock/files/patch-Makefile (props changed) head/x11-clocks/wmcalclock/files/patch-wmCalClock.c (props changed) head/x11-clocks/wmclockmon/files/patch-src_main.c (props changed) head/x11-clocks/wmfishtime/files/patch-Makefile (props changed) head/x11-clocks/wmfishtime/files/patch-fishmon.c (props changed) head/x11-clocks/wmfuzzy/files/patch-xdisplay.h (props changed) head/x11-clocks/wmitime/files/patch-aa (props changed) head/x11-clocks/wmitime/files/patch-ab (props changed) head/x11-clocks/wmtime/files/patch-aa (props changed) head/x11-clocks/wmtime/files/patch-ab (props changed) head/x11-clocks/wmtimer/files/patch-wmtimer::Makefile (props changed) head/x11-clocks/xalarm/files/patch-aa (props changed) head/x11-clocks/xalarm/files/patch-ab (props changed) head/x11-clocks/xalarm/files/patch-dates.c (props changed) head/x11-drivers/input-wacom/files/patch-configure.ac (props changed) head/x11-drivers/input-wacom/files/patch-src-Makefile.in (props changed) head/x11-drivers/input-wacom/files/patch-src-wcmConfig.c (props changed) head/x11-drivers/input-wacom/files/patch-src-wcmUSB.c (props changed) head/x11-drivers/input-wacom/files/patch-src-xf86WacomDefs.h (props changed) head/x11-drivers/input-wacom/files/patch-tools-Makefile.in (props changed) head/x11-drivers/xf86-input-hyperpen/files/extra-patch-src_xf86HyperPen.c (props changed) head/x11-drivers/xf86-input-keyboard/files/patch-at_scancode.c (props changed) head/x11-drivers/xf86-input-mouse/files/patch-src-bsd_mouse.c (props changed) head/x11-drivers/xf86-video-ati/files/patch-src_radeon_accel.c (props changed) head/x11-drivers/xf86-video-openchrome/files/patch-configure (props changed) head/x11-drivers/xf86-video-openchrome/files/patch-src_via_id.c (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis.h (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis300_accel.c (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis310_accel.c (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis_3daccel.c (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis_accel.c (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis_dri.c (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis_dri.h (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis_driver.c (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis_memcpy.c (props changed) head/x11-drivers/xf86-video-sis-intel/files/patch-src-sis_mergedfb.c (props changed) head/x11-drivers/xf86-video-sunffb/files/patch-VISmoveImage.s (props changed) head/x11-fm/asfiles/files/patch-src__Main.c (props changed) head/x11-fm/doublecmd/files/patch-src__dmhelpmanager.pas (props changed) head/x11-fm/doublecmd/files/patch-src__uGlobsPaths.pas (props changed) head/x11-fm/emelfm2/files/patch-Makefile (props changed) head/x11-fm/ezfm/files/patch-aa (props changed) head/x11-fm/ezfm/files/patch-ab (props changed) head/x11-fm/ezfm/files/patch-ac (props changed) head/x11-fm/ezfm/files/patch-action.c (props changed) head/x11-fm/ezfm/files/patch-ad (props changed) head/x11-fm/ezfm/files/patch-ae (props changed) head/x11-fm/ezfm/files/patch-af (props changed) head/x11-fm/ezfm/files/patch-ag (props changed) head/x11-fm/ezfm/files/patch-ah (props changed) head/x11-fm/ezfm/files/patch-folder.c (props changed) head/x11-fm/ezfm/files/patch-signal.c (props changed) head/x11-fm/ezfm/files/patch-trashBtn.c (props changed) head/x11-fm/mate-file-manager/files/patch-src_file-manager_fm-properties-window.c (props changed) head/x11-fm/nautilus/files/patch-Makefile.in (props changed) head/x11-fm/nautilus/files/patch-data_nautilus.desktop.in.in (props changed) head/x11-fm/nautilus/files/patch-src_file-manager_fm-properties-window.c (props changed) head/x11-fm/py-nautilus/files/patch-src_nautilus-python.c (props changed) head/x11-fm/qtfm/files/patch-qtfm.pro (props changed) head/x11-fm/qtfm/files/patch-src_bookmarks.cpp (props changed) head/x11-fm/qtfm/files/patch-src_mainwindow.cpp (props changed) head/x11-fm/qtfm/files/patch-src_mainwindow.h (props changed) head/x11-fm/qtfm/files/patch-src_mymodel.cpp (props changed) head/x11-fm/qtfm/files/patch-src_mymodel.h (props changed) head/x11-fm/qtfm/files/patch-src_propertiesdlg.cpp (props changed) head/x11-fm/rox-filer/files/patch-ROX-Filer_src_Makefile.in (props changed) head/x11-fm/rox-filer/files/patch-ROX-Filer_src_configure.in (props changed) head/x11-fm/rox-session/files/patch-setup.py (props changed) head/x11-fm/xcruise/files/patch-aa (props changed) head/x11-fm/xdiskusage/files/patch-xdiskusage.C (props changed) head/x11-fm/xfm/files/patch-aa (props changed) head/x11-fm/xfm/files/patch-ab (props changed) head/x11-fm/xfm/files/patch-ac (props changed) head/x11-fm/xfm/files/patch-ad (props changed) head/x11-fm/xfm/files/patch-ae (props changed) head/x11-fm/xplore/files/patch-Xplore.tmpl (props changed) head/x11-fm/xplore/files/patch-ftype.c (props changed) head/x11-fm/xplore/files/patch-scripts-find.script (props changed) head/x11-fm/xplore/files/patch-xg-TimeEntry.c (props changed) head/x11-fm/xplore/files/patch-xplore.h (props changed) head/x11-fonts/bdfresize/files/patch-aa (props changed) head/x11-fonts/font-manager/files/patch-Makefile.in (props changed) head/x11-fonts/font-manager/files/patch-src-constants.py.in (props changed) head/x11-fonts/font-manager/files/patch-src_lib_fm-fontutils.c (props changed) head/x11-fonts/fontmatrix/files/patch-src__prefspaneldialog.h (props changed) head/x11-fonts/gbdfed/files/patch-Makefile.in (props changed) head/x11-fonts/gbdfed/files/patch-bdf.c (props changed) head/x11-fonts/gbdfed/files/patch-fontgrid.c (props changed) head/x11-fonts/gbdfed/files/patch-glyphedit.c (props changed) head/x11-fonts/gbdfed/files/patch-gtkcompat.h (props changed) head/x11-fonts/geminifonts/files/patch-gz (props changed) head/x11-fonts/gfe/files/patch-src:auxil.c (props changed) head/x11-fonts/gfe/files/patch-src:main.c (props changed) head/x11-fonts/gfe/files/patch-src_bdf.c (props changed) head/x11-fonts/gfe/files/patch-src_glyph.h (props changed) head/x11-fonts/intlfonts/files/patch-aa (props changed) head/x11-fonts/mkbold-mkitalic/files/patch-Makefile (props changed) head/x11-fonts/nucleus/files/patch-aa (props changed) head/x11-fonts/p5-type1inst/files/patch-aa (props changed) head/x11-fonts/p5-type1inst/files/patch-type1inst (props changed) head/x11-fonts/pcf2bdf/files/patch-pcf2bdf.cc (props changed) head/x11-fonts/tkfont/files/patch-aa (props changed) head/x11-fonts/ttmkfdir/files/patch-Makefile (props changed) head/x11-fonts/ttmkfdir/files/patch-builtin.cpp (props changed) head/x11-fonts/ttmkfdir/files/patch-directory.cpp (props changed) head/x11-fonts/ttmkfdir/files/patch-encoding.cpp (props changed) head/x11-fonts/ttmkfdir/files/patch-encoding.h (props changed) head/x11-fonts/ttmkfdir/files/patch-encoding.l (props changed) head/x11-fonts/ttmkfdir/files/patch-ttf.cpp (props changed) head/x11-fonts/ttmkfdir/files/patch-ttf.h (props changed) head/x11-fonts/ttmkfdir/files/patch-util.h (props changed) head/x11-fonts/tv-fonts/files/patch-Makefile (props changed) head/x11-fonts/urwfonts/files/patch-aa (props changed) head/x11-servers/Xfstt/files/patch-INSTALL (props changed) head/x11-servers/Xfstt/files/patch-doc::xfstt.1x (props changed) head/x11-servers/Xfstt/files/patch-libfstt::arch.h (props changed) head/x11-servers/Xfstt/files/patch-libfstt::ttf.h (props changed) head/x11-servers/Xfstt/files/patch-src::Makefile.in (props changed) head/x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-i386_video.c (props changed) head/x11-servers/xorg-server/files/patch-xorgconf.cpp (props changed) head/x11-themes/clearlooks/files/patch-src_support.c (props changed) head/x11-themes/gnome-themes-extras/files/patch-gtk-themes_Darklooks_gtk-2.0_gtkrc (props changed) head/x11-themes/gnome-themes/files/patch-common_mkiconlinks.sh (props changed) head/x11-themes/gtk-flat-theme2/files/patch-configure (props changed) head/x11-themes/gtk-qt4-engine/files/patch-kcm_gtk__CMakeLists.txt (props changed) head/x11-themes/mate-icon-theme/files/patch-Makefile.in (props changed) head/x11-themes/mate-themes/files/patch-common_mkiconlinks.sh (props changed) head/x11-themes/murrine-configurator/files/patch-aa (props changed) head/x11-themes/qt4-style-phase/files/patch-phasestyle.cpp (props changed) head/x11-themes/slim-themes/files/extra-patch-parallel-dimensions-slim.theme (props changed) head/x11-themes/ubuntulooks/files/patch-01_fix_listview_arrows_drawing (props changed) head/x11-themes/ubuntulooks/files/patch-01_fix_tick_box_drawing (props changed) head/x11-themes/ubuntulooks/files/patch-gtkrc (props changed) head/x11-toolkits/Xaw3d/files/patch-runtime_scrollbars (props changed) head/x11-toolkits/bakery/files/patch-bakery-2.6.pc.in (props changed) head/x11-toolkits/bakery/files/patch-bakery::Makefile.in (props changed) head/x11-toolkits/eel/files/patch-Makefile.in (props changed) head/x11-toolkits/eel/files/patch-eel_Makefile.in (props changed) head/x11-toolkits/eel/files/patch-eel_eel-background.c (props changed) head/x11-toolkits/eel/files/patch-eel_eel-editable-label.c (props changed) head/x11-toolkits/eel/files/patch-eel_eel-stock-dialogs.c (props changed) head/x11-toolkits/fl_editor/files/patch-FL-wstring.h (props changed) head/x11-toolkits/fl_editor/files/patch-Makefile.in (props changed) head/x11-toolkits/fl_editor/files/patch-fltk-Fl_Editor.h (props changed) head/x11-toolkits/fl_editor/files/patch-fltk-wstring.h (props changed) head/x11-toolkits/fl_editor/files/patch-src::Fl_ProgressBox.cxx (props changed) head/x11-toolkits/fltk/files/patch-configure (props changed) head/x11-toolkits/fltk/files/patch-documentation_Makefile (props changed) head/x11-toolkits/fltk/files/patch-fltk-config.in (props changed) head/x11-toolkits/fltk/files/patch-src_Makefile (props changed) head/x11-toolkits/flvw/files/patch-makeinclude.in (props changed) head/x11-toolkits/flvw/files/patch-src-Makefile (props changed) head/x11-toolkits/fox14/files/patch-configure (props changed) head/x11-toolkits/gai/files/patch-gai_Makefile.in (props changed) head/x11-toolkits/gai/files/patch-po_Makefile.in (props changed) head/x11-toolkits/gal2/files/patch-ab (props changed) head/x11-toolkits/gal2/files/patch-gal_a11y_e-table_gal-a11y-e-cell-text.c (props changed) head/x11-toolkits/gal2/files/patch-gal_a11y_e-table_gal-a11y-e-cell-vbox.c (props changed) head/x11-toolkits/gal2/files/patch-gal_e-table_e-table-group.c (props changed) head/x11-toolkits/gdl/files/patch-gdl__gdl-dock-item-button-image.c (props changed) head/x11-toolkits/gdl/files/patch-gdl__gdl-dock-item.c (props changed) head/x11-toolkits/gigi/files/patch-src-Font.cpp (props changed) head/x11-toolkits/gnome-desktop-sharp20/files/patch-gnomedesktop_gnomedesktop-sharp.dll.config.in (props changed) head/x11-toolkits/gnome-sharp20/files/patch-configure (props changed) head/x11-toolkits/gtk-sharp10/files/patch-art_art-sharp.dll.config.in (props changed) head/x11-toolkits/gtk-sharp10/files/patch-configure (props changed) head/x11-toolkits/gtk-sharp10/files/patch-gconf_GConf_gconf-sharp.dll.config.in (props changed) head/x11-toolkits/gtk-sharp10/files/patch-gtkhtml_gtkhtml-sharp.dll.config.in (props changed) head/x11-toolkits/gtk-sharp10/files/patch-rsvg_rsvg-sharp.dll.config.in (props changed) head/x11-toolkits/gtk-sharp10/files/patch-vte_vte-sharp.dll.config.in (props changed) head/x11-toolkits/gtk12/files/patch-aa (props changed) head/x11-toolkits/gtk12/files/patch-ab (props changed) head/x11-toolkits/gtk12/files/patch-ad (props changed) head/x11-toolkits/gtk12/files/patch-ae (props changed) head/x11-toolkits/gtk12/files/patch-af (props changed) head/x11-toolkits/gtk12/files/patch-ag (props changed) head/x11-toolkits/gtk12/files/patch-ah (props changed) head/x11-toolkits/gtk12/files/patch-gdk.pc.in (props changed) head/x11-toolkits/gtk12/files/patch-gdk::Makefile.in (props changed) head/x11-toolkits/gtk12/files/patch-gdk::gdkimage.c (props changed) head/x11-toolkits/gtk12/files/patch-gtk+.pc.in (props changed) head/x11-toolkits/gtk12/files/patch-gtk.m4 (props changed) head/x11-toolkits/gtk20/files/patch-Makefile.in (props changed) head/x11-toolkits/gtk20/files/patch-ah (props changed) head/x11-toolkits/gtk20/files/patch-ai (props changed) head/x11-toolkits/gtk20/files/patch-ak (props changed) head/x11-toolkits/gtk20/files/patch-docs_reference_gtk_Makefile.in (props changed) head/x11-toolkits/gtk20/files/patch-gdk-2.0.pc.in (props changed) head/x11-toolkits/gtk20/files/patch-gtk_gtkbuilderparser.c (props changed) head/x11-toolkits/gtk20/files/patch-gtk_updateiconcache.c (props changed) head/x11-toolkits/gtk30/files/patch-docs_Makefile.in (props changed) head/x11-toolkits/gtk30/files/patch-docs_reference_Makefile.in (props changed) head/x11-toolkits/gtk30/files/patch-gtk_gtkbuilderparser.c (props changed) head/x11-toolkits/gtk30/files/patch-gtk_updateiconcache.c (props changed) head/x11-toolkits/gtkada/files/patch-src_Makefile.common.in (props changed) head/x11-toolkits/gtkdatabox/files/patch-gtkdatabox.c (props changed) head/x11-toolkits/gtkdatabox/files/patch-gtkdatabox_ruler.c (props changed) head/x11-toolkits/gtkextra2/files/patch-Makefile.in (props changed) head/x11-toolkits/gtkextra2/files/patch-gtkcolorcombo.c (props changed) head/x11-toolkits/gtkextra2/files/patch-gtkextra_gtkitementry.c (props changed) head/x11-toolkits/gtkmm20/files/patch-gdk__gdkmm__Makefile.in (props changed) head/x11-toolkits/gtkmm20/files/patch-gtk__gtkmm__Makefile.in (props changed) head/x11-toolkits/gtkmm20/files/patch-gtk_gtkmm_notebook.cc (props changed) head/x11-toolkits/gtkmm20/files/patch-gtk_gtkmm_private_notebook_p.h (props changed) head/x11-toolkits/gtkmm20/files/patch-gtk_gtkmm_private_scrolledwindow_p.h (props changed) head/x11-toolkits/gtkmm20/files/patch-gtk_gtkmm_scrolledwindow.cc (props changed) head/x11-toolkits/gtkmm20/files/patch-gtk_gtkmm_treeviewcolumn.h (props changed) head/x11-toolkits/gtksourceview/files/patch-gtksourceview_gtksourceregex.c (props changed) head/x11-toolkits/hs-wxcore/files/patch-Setup.hs (props changed) head/x11-toolkits/irrlicht/files/patch-source-Irrlicht_Makefile (props changed) head/x11-toolkits/itk/files/patch-nointerptest (props changed) head/x11-toolkits/iwidgets/files/patch-noitcl (props changed) head/x11-toolkits/libbonoboui/files/patch-Makefile.in (props changed) head/x11-toolkits/libbonoboui/files/patch-bonobo_bonobo-ui-util.c (props changed) head/x11-toolkits/libgdiplus/files/patch-pngcodec.c (props changed) head/x11-toolkits/libgtk-java/files/patch-configure (props changed) head/x11-toolkits/libgtk-java/files/patch-gtk2-java.pc.in (props changed) head/x11-toolkits/libzvt/files/patch-configure (props changed) head/x11-toolkits/libzvt/files/patch-gnome-utmp.c (props changed) head/x11-toolkits/movingmotif/files/patch-WHistbar.c (props changed) head/x11-toolkits/movingmotif/files/patch-configure (props changed) head/x11-toolkits/movingmotif/files/patch-demo::Makefile.in (props changed) head/x11-toolkits/movingmotif/files/patch-src_Whistspectr.c (props changed) head/x11-toolkits/mowitz/files/patch-doc (props changed) head/x11-toolkits/mowitz/files/patch-systypes (props changed) head/x11-toolkits/neXtaw/files/patch-configure (props changed) head/x11-toolkits/nucleo/files/patch-Makefile.in (props changed) head/x11-toolkits/nucleo/files/patch-nucleo_image_encoding_PNGenc.cxx (props changed) head/x11-toolkits/nucleo/files/patch-nucleo_image_sink_nudppImageSink.cxx (props changed) head/x11-toolkits/open-motif/files/patch-clients__uil__UilDefI.h (props changed) head/x11-toolkits/open-motif/files/patch-lib::Xm::ColorS.c (props changed) head/x11-toolkits/p5-Gtk/files/patch-Gtk::Makefile.PL (props changed) head/x11-toolkits/p5-Gtk/files/patch-Makefile.PL (props changed) head/x11-toolkits/p5-Prima/files/patch-codec_tiff.c (props changed) head/x11-toolkits/p5-Prima/files/patch-img-codec_ungif.c (props changed) head/x11-toolkits/p5-Tk-DKW/files/patch-Makefile.PL (props changed) head/x11-toolkits/p5-Tk/files/patch-JPEG_Makefile.PL (props changed) head/x11-toolkits/p5-Tk/files/patch-PNG_Makefile.PL (props changed) head/x11-toolkits/p5-Tk/files/patch-pTk-Makefile.PL (props changed) head/x11-toolkits/paragui-devel/files/patch-configure (props changed) head/x11-toolkits/plib/files/extra-patch-src-js-jsBSD.cxx (props changed) head/x11-toolkits/plib/files/patch-src-net-netSocket.cxx (props changed) head/x11-toolkits/plib/files/patch-src-net-netSocket.h (props changed) head/x11-toolkits/py-Pmw/files/patch-setup.py (props changed) head/x11-toolkits/py-gnome2/files/patch-configure (props changed) head/x11-toolkits/py-gtk2/files/patch-Makefile.in (props changed) head/x11-toolkits/py-gtk2/files/patch-configure (props changed) head/x11-toolkits/py-gtk2/files/patch-doc_Makefile.in (props changed) head/x11-toolkits/py-kiwi/files/patch-kiwi__dist.py (props changed) head/x11-toolkits/py-kiwi/files/patch-setup.py (props changed) head/x11-toolkits/py-pyqwt/files/patch-GNUmakefile (props changed) head/x11-toolkits/py-pyqwt/files/patch-configure-configure.py (props changed) head/x11-toolkits/py-traitsgui/files/patch-setup.cfg (props changed) head/x11-toolkits/py-traitsgui/files/patch-setup.py (props changed) head/x11-toolkits/py-wxPython26/files/patch-setup.py (props changed) head/x11-toolkits/py-wxPython28/files/patch-setup.py (props changed) head/x11-toolkits/py-xlib/files/patch-display (props changed) head/x11-toolkits/qwt5-designerplugin/files/patch-designer__designer.pro (props changed) head/x11-toolkits/qwt5/files/patch-qwtconfig.pri (props changed) head/x11-toolkits/qwt5/files/patch-src__src.pro (props changed) head/x11-toolkits/sdl_pango/files/patch-Makefile.in (props changed) head/x11-toolkits/slingshot/files/patch-aa (props changed) head/x11-toolkits/slingshot/files/patch-ba (props changed) head/x11-toolkits/slingshot/files/patch-bc (props changed) head/x11-toolkits/slingshot/files/patch-ca (props changed) head/x11-toolkits/slingshot/files/patch-config.svr4 (props changed) head/x11-toolkits/slingshot/files/patch-da (props changed) head/x11-toolkits/slingshot/files/patch-gcc4 (props changed) head/x11-toolkits/slingshot/files/patch-lex.yy.c (props changed) head/x11-toolkits/swt-devel/files/patch-OS.java (props changed) head/x11-toolkits/swt-devel/files/patch-make_freebsd.mak (props changed) head/x11-toolkits/swt-devel/files/patch-org_eclipse_swt_internal_C.java (props changed) head/x11-toolkits/swt-devel/files/patch-os.c (props changed) head/x11-toolkits/swt/files/patch-OS.java (props changed) head/x11-toolkits/swt/files/patch-build.sh (props changed) head/x11-toolkits/swt/files/patch-build.xml (props changed) head/x11-toolkits/swt/files/patch-make_freebsd.mak (props changed) head/x11-toolkits/swt/files/patch-org_eclipse_swt_internal_C.java (props changed) head/x11-toolkits/swt/files/patch-os.c (props changed) head/x11-toolkits/tile/files/patch-tclconfig-tcl.m4 (props changed) head/x11-toolkits/tix/files/patch-configure (props changed) head/x11-toolkits/tkshape/files/patch-demos-dragger.tcl (props changed) head/x11-toolkits/tkshape/files/patch-demos-fancytext.tcl (props changed) head/x11-toolkits/tkshape/files/patch-demos-fingerprint.tcl (props changed) head/x11-toolkits/tkshape/files/patch-generic-shape.c (props changed) head/x11-toolkits/tkshape/files/patch-unix-configure.patch (props changed) head/x11-toolkits/tkshape/files/patch-unix-pkgIndex.tcl (props changed) head/x11-toolkits/tkshape/files/patch-unix-shapeUnixImpl.c (props changed) head/x11-toolkits/v/files/patch-configs-ConfigX.mk (props changed) head/x11-toolkits/v/files/patch-includex-v-v_defs.h (props changed) head/x11-toolkits/v/files/patch-includex-v-vtimer.h (props changed) head/x11-toolkits/v/files/patch-srcx-vcanvas.cxx (props changed) head/x11-toolkits/v/files/patch-srcx-vlistcc.cxx (props changed) head/x11-toolkits/v/files/patch-srcx-vsliderc.cxx (props changed) head/x11-toolkits/v/files/patch-srcx-vtimer.cxx (props changed) head/x11-toolkits/vdk/files/patch-include__vdk__FileDialog.h (props changed) head/x11-toolkits/vdk/files/patch-include__vdk__Makefile.in (props changed) head/x11-toolkits/vdk/files/patch-src__Makefile.in (props changed) head/x11-toolkits/vdkbuilder/files/patch-intl::Makefile.in (props changed) head/x11-toolkits/vdkbuilder/files/patch-vdkbuilder::vdkb_acsupport.cc (props changed) head/x11-toolkits/vdkbuilder/files/patch-vdkbuilder::vdkb_prjman.cc (props changed) head/x11-toolkits/vte/files/extra-patch-gnome-pty-helper_gnome-utmp.c (props changed) head/x11-toolkits/vte/files/patch-config.h.in (props changed) head/x11-toolkits/vte/files/patch-configure (props changed) head/x11-toolkits/vte/files/patch-gnome-pty-helper_Makefile.in (props changed) head/x11-toolkits/vte/files/patch-gnome-pty-helper_config.h.in (props changed) head/x11-toolkits/vte/files/patch-gnome-pty-helper_configure (props changed) head/x11-toolkits/vte/files/patch-gnome-pty-helper_gnome-pty-helper.c (props changed) head/x11-toolkits/vte/files/patch-gnome-pty-helper_gnome-utmp.c (props changed) head/x11-toolkits/vte/files/patch-python_Makefile.in (props changed) head/x11-toolkits/vte/files/patch-src_vteseq.c (props changed) head/x11-toolkits/vte3/files/extra-patch-gnome-pty-helper_gnome-utmp.c (props changed) head/x11-toolkits/vte3/files/patch-gnome-pty-helper_Makefile.in (props changed) head/x11-toolkits/vte3/files/patch-gnome-pty-helper_config.h.in (props changed) head/x11-toolkits/vte3/files/patch-gnome-pty-helper_configure (props changed) head/x11-toolkits/vte3/files/patch-gnome-pty-helper_gnome-pty-helper.c (props changed) head/x11-toolkits/vte3/files/patch-gnome-pty-helper_gnome-utmp.c (props changed) head/x11-toolkits/vte3/files/patch-src_vteseq.c (props changed) head/x11-toolkits/wxgtk26/files/patch-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-configure (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-src-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-src-animate-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-src-deprecated-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-src-fl-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-src-gizmos-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-src-ogl-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-src-plot-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-src-stc-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-src-svg-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-contrib-utils-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-src-common-imagpng.cpp (props changed) head/x11-toolkits/wxgtk26/files/patch-src-common-intl.cpp (props changed) head/x11-toolkits/wxgtk26/files/patch-src-gtk-button.cpp (props changed) head/x11-toolkits/wxgtk26/files/patch-src-gtk-gsockgtk.cpp (props changed) head/x11-toolkits/wxgtk26/files/patch-src-gtk-window.cpp (props changed) head/x11-toolkits/wxgtk26/files/patch-utils-wxrc-Makefile.in (props changed) head/x11-toolkits/wxgtk26/files/patch-wx-config.in (props changed) head/x11-toolkits/wxgtk28/files/patch-Makefile.in (props changed) head/x11-toolkits/wxgtk28/files/patch-configure (props changed) head/x11-toolkits/wxgtk28/files/patch-contrib-Makefile.in (props changed) head/x11-toolkits/wxgtk28/files/patch-contrib-src-Makefile.in (props changed) head/x11-toolkits/wxgtk28/files/patch-contrib-src-fl-Makefile.in (props changed) head/x11-toolkits/wxgtk28/files/patch-contrib-src-gizmos-Makefile.in (props changed) head/x11-toolkits/wxgtk28/files/patch-contrib-src-ogl-Makefile.in (props changed) head/x11-toolkits/wxgtk28/files/patch-contrib-src-plot-Makefile.in (props changed) head/x11-toolkits/wxgtk28/files/patch-contrib-src-stc-Makefile.in (props changed) head/x11-toolkits/wxgtk28/files/patch-contrib-src-svg-Makefile.in (props changed) head/x11-toolkits/wxgtk28/files/patch-src-common-intl.cpp (props changed) head/x11-toolkits/wxgtk28/files/patch-utils-wxrc-Makefile.in (props changed) head/x11-toolkits/wxgtk29/files/patch-Makefile.in (props changed) head/x11-toolkits/wxgtk29/files/patch-configure (props changed) head/x11-toolkits/wxgtk29/files/patch-src-common-translation.cpp (props changed) head/x11-toolkits/wxgtk29/files/patch-utils-wxrc-Makefile.in (props changed) head/x11-toolkits/xmhtml/files/patch-aa (props changed) head/x11-toolkits/xmhtml/files/patch-ab (props changed) head/x11-toolkits/xmhtml/files/patch-ac (props changed) head/x11-toolkits/xmhtml/files/patch-ad (props changed) head/x11-toolkits/xmhtml/files/patch-ae (props changed) head/x11-toolkits/xmhtml/files/patch-af (props changed) head/x11-toolkits/xmhtml/files/patch-ag (props changed) head/x11-toolkits/xmhtml/files/patch-ah (props changed) head/x11-toolkits/xmhtml/files/patch-ai (props changed) head/x11-toolkits/xmhtml/files/patch-lib_Motif_Makefile (props changed) head/x11-toolkits/xmhtml/files/patch-lib_common_Makefile (props changed) head/x11-toolkits/xmhtml/files/patch-lib_common_readPNG.c (props changed) head/x11-toolkits/xmhtml/files/patch-lib_gtk_Makefile (props changed) head/x11-toolkits/xview/files/patch-Imakefile (props changed) head/x11-toolkits/xview/files/patch-bitmaps+Imakefile (props changed) head/x11-toolkits/xview/files/patch-clients+clock+clock.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+cmdstream.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+defaults.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+gettext.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+gettext.h (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+i18n.h (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+mem.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+menu.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+olwm.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+slave.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+st.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+winframe.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwm+winicon.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwmslave+Imakefile (props changed) head/x11-toolkits/xview/files/patch-clients+olwmslave+cmdstream.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwmslave+helprecv.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwmslave+mem.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwmslave+olwmslave.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwmslave+propsrecv.c (props changed) head/x11-toolkits/xview/files/patch-clients+olwmslave+propswin.c (props changed) head/x11-toolkits/xview/files/patch-clients-Imakefile (props changed) head/x11-toolkits/xview/files/patch-clients-olwm-screen.c (props changed) head/x11-toolkits/xview/files/patch-clients-olwmslave-helpwin.c (props changed) head/x11-toolkits/xview/files/patch-clients-props-l10n_read.c (props changed) head/x11-toolkits/xview/files/patch-clients-textedit-textedit.c (props changed) head/x11-toolkits/xview/files/patch-config+XView.cf (props changed) head/x11-toolkits/xview/files/patch-config+XView.obj (props changed) head/x11-toolkits/xview/files/patch-config+XView.rules (props changed) head/x11-toolkits/xview/files/patch-config+XView.tmpl (props changed) head/x11-toolkits/xview/files/patch-doc+Imakefile (props changed) head/x11-toolkits/xview/files/patch-images+Imakefile (props changed) head/x11-toolkits/xview/files/patch-lib+libolgx+ol_sb.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+attr+attr.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+attr+attr_copy.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+base+base.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+base+xv.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+base+xv_debug.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+base+xv_error.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+color+cms_pblc.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+defaults+defaults.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+dnd+dnd.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+dnd+dnd_dsdm.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+dnd+site.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+file_chooser+file_list.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+file_chooser+xv_path_util.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+font+font.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+font+font_get.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+frame+fm_get.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+frame+fm_impl.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+frame+fm_props.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+frame+fm_rescale.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+frame+fmcmd_set.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+frame+frame_base.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+frame+frame_cmd.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+frame+frame_help.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+io_stream+file_strms.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+io_stream+input.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+io_stream+othr_strms.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+io_stream+str_strms.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+menu+om_set.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+misc+expandname.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+misc+getlogindr.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+misc+gettext.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+misc+gettext.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+misc+portable.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+misc+quark.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notice+notice_get.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notice+notice_pt.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndet.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndet_auto.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndet_fcntl.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndet_fd.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndet_loop.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndet_read.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndet_wait.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndetselect.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndisd_wait.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ndisdispch.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+nintn_wait.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+notify.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ntfy.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ntfy_test.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ntfyclient.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+sys_fcntl.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+sys_read.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+sys_select.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+notify+ultrix_cpt.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+openwin+ow_view.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+item_set.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+p_btn.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+p_choice.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+p_drop.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+p_gauge.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+p_get.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+p_set.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+p_slider.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+p_txt.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+p_utl.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+panel.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+panel+panel_impl.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+rect+rect_util.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+sel+sel_agent.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+sel+seln.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+sel+seln_impl.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+selection+sel_own.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+selection+sel_req.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+selection+sel_util.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+server+server.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+ei_text.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+es.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+es_attr.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+es_file.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+ev_display.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+ev_op_bdry.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+ps_impl.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+ps_impl.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_again.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_attr.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_e_menu.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_event.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_field.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_file.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_filter.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_getkey.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_input.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_menu.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_move.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_once.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_popup.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_putkey.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_selsvc.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+cim_change.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+cim_size.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+term_ntfy.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+tty.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+tty_gtty.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+tty_impl.h (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+tty_init.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+tty_main.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+tty_mapkey.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+tty_ntfy.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+ttyansi.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+ttysw+ttyselect.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+win+win_cntral.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+win+win_input.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+window+window_set.c (props changed) head/x11-toolkits/xview/files/patch-lib+libxview+wmgr+wmgr_menu.c (props changed) head/x11-toolkits/xview/files/patch-lib+pixrect+Imakefile (props changed) head/x11-toolkits/xview/files/patch-lib-libolgx-ol_init.c (props changed) head/x11-toolkits/xview/files/patch-lib-libxview-filter-filter.c (props changed) head/x11-toolkits/xview/files/patch-lib-libxview-ttysw-termsw.c (props changed) head/x11-toolkits/xview/files/patch-lib-libxview-ttysw-tty_modes.c (props changed) head/x11-toolkits/xview/files/patch-util+xgettext+xgettext.h (props changed) head/x11-toolkits/xview/files/patch-util-conversion-Imakefile (props changed) head/x11-toolkits/xview/files/patch-util-cpp-Imakefile (props changed) head/x11-toolkits/xview/files/patch-util-msgfmt-Imakefile (props changed) head/x11-toolkits/xview/files/patch-util-soelim-Imakefile (props changed) head/x11-wm/afterstep-i18n/files/patch-aa (props changed) head/x11-wm/afterstep-i18n/files/patch-ab (props changed) head/x11-wm/afterstep-i18n/files/patch-ac (props changed) head/x11-wm/afterstep-i18n/files/patch-ad (props changed) head/x11-wm/afterstep-i18n/files/patch-ae (props changed) head/x11-wm/afterstep-i18n/files/patch-afterstep::icons.c (props changed) head/x11-wm/afterstep-stable/files/patch-safemalloc.h (props changed) head/x11-wm/afterstep/files/patch-aa (props changed) head/x11-wm/afterstep/files/patch-ab (props changed) head/x11-wm/afterstep/files/patch-ac (props changed) head/x11-wm/afterstep/files/patch-ad (props changed) head/x11-wm/afterstep/files/patch-icons.c (props changed) head/x11-wm/amiwm/files/patch-aa (props changed) head/x11-wm/antiwm/files/patch-Makefile (props changed) head/x11-wm/antiwm/files/patch-list.c (props changed) head/x11-wm/antiwm/files/patch-manage.c (props changed) head/x11-wm/awesome/files/patch-CMakeLists.txt (props changed) head/x11-wm/awesome/files/patch-awesomeConfig.cmake (props changed) head/x11-wm/awesome2/files/patch-Makefile.in (props changed) head/x11-wm/bbkeys/files/patch-src_KeyClient.cpp (props changed) head/x11-wm/bbkeys/files/patch-src_Netclient.cpp (props changed) head/x11-wm/blackbox/files/patch-lib_Display.cc (props changed) head/x11-wm/blackbox/files/patch-lib_Menu.cc (props changed) head/x11-wm/blackbox/files/patch-lib_Texture.cc (props changed) head/x11-wm/blackbox/files/patch-src_Screen.cc (props changed) head/x11-wm/blackbox/files/patch-src_Slit.cc (props changed) head/x11-wm/blackbox/files/patch-src_Window.cc (props changed) head/x11-wm/blackbox/files/patch-src_blackbox.cc (props changed) head/x11-wm/blackbox/files/patch-src_main.cc (props changed) head/x11-wm/blackbox/files/patch-util_bsetroot.cc (props changed) head/x11-wm/clementine/files/patch-painter.cpp (props changed) head/x11-wm/clementine/files/patch-windowmanager.cpp (props changed) head/x11-wm/compiz-plugins-extra/files/patch-src_notification_notification.c (props changed) head/x11-wm/compiz-plugins-unsupported/files/patch-src_elements_Makefile.in (props changed) head/x11-wm/compiz/files/patch-gtk_window-decorator_gtk-window-decorator.c (props changed) head/x11-wm/compiz/files/patch-plugins_fuse.c (props changed) head/x11-wm/compiz/files/patch-plugins_png.c (props changed) head/x11-wm/compton/files/patch-Makefile (props changed) head/x11-wm/compton/files/patch-c2.h (props changed) head/x11-wm/ctwm/files/patch-util.c (props changed) head/x11-wm/dwm/files/patch-Makefile (props changed) head/x11-wm/dwm/files/patch-config.mk (props changed) head/x11-wm/e16utils/files/patch-e16menuedit-0.1 (props changed) head/x11-wm/e17-module-uptime/files/patch-src_e_mod_main.c (props changed) head/x11-wm/echinus/files/patch-config.mk (props changed) head/x11-wm/echinus/files/patch-ewmh.c (props changed) head/x11-wm/emerald/files/patch-libengine_themer.c (props changed) head/x11-wm/emerald/files/patch-src_engine_loader.c (props changed) head/x11-wm/emerald/files/patch-src_main.c (props changed) head/x11-wm/emerald/files/patch-themer_main.c (props changed) head/x11-wm/enlightenment/files/patch-src-bin-e_fm-Makefile.in (props changed) head/x11-wm/epplets/files/patch-epplets_E-Cpu.c (props changed) head/x11-wm/epplets/files/patch-epplets_E-Disk.c (props changed) head/x11-wm/epplets/files/patch-epplets_E-Load.c (props changed) head/x11-wm/epplets/files/patch-epplets_E-SD.c (props changed) head/x11-wm/epplets/files/patch-epplets_E-Slides.c (props changed) head/x11-wm/epplets/files/patch-epplets_E-Sys.c (props changed) head/x11-wm/epplets/files/patch-epplets_E-Wireless.c (props changed) head/x11-wm/epplets/files/patch-epplets_load.c (props changed) head/x11-wm/fluxbox/files/patch-util_fbsetbg (props changed) head/x11-wm/fluxconf/files/patch-src-fluxconf.c (props changed) head/x11-wm/fluxconf/files/patch-src-fluxkeys.c (props changed) head/x11-wm/fluxconf/files/patch-src-fluxkeys.c_addkey (props changed) head/x11-wm/fluxconf/files/patch-src-fluxmenu.c (props changed) head/x11-wm/fluxconf/files/patch-src-include-functions.h (props changed) head/x11-wm/fvwm-crystal/files/extra-patch-Makefile (props changed) head/x11-wm/fvwm-crystal/files/extra-patch-Makefile_NODOC (props changed) head/x11-wm/fvwm-crystal/files/patch-bin_fvwm-crystal.apps (props changed) head/x11-wm/fvwm/files/patch-ButtonArray.c (props changed) head/x11-wm/fvwm/files/patch-FvwmAudio.c (props changed) head/x11-wm/fvwm/files/patch-FvwmAuto.c (props changed) head/x11-wm/fvwm/files/patch-FvwmBacker-Mallocs.c (props changed) head/x11-wm/fvwm/files/patch-FvwmBacker-Mallocs.h (props changed) head/x11-wm/fvwm/files/patch-FvwmBacker.c (props changed) head/x11-wm/fvwm/files/patch-FvwmClean.c (props changed) head/x11-wm/fvwm/files/patch-FvwmClean.h (props changed) head/x11-wm/fvwm/files/patch-FvwmDebug.c (props changed) head/x11-wm/fvwm/files/patch-FvwmDebug.h (props changed) head/x11-wm/fvwm/files/patch-FvwmIconBox.c (props changed) head/x11-wm/fvwm/files/patch-FvwmIconBox.h (props changed) head/x11-wm/fvwm/files/patch-FvwmIdent.c (props changed) head/x11-wm/fvwm/files/patch-FvwmIdent.h (props changed) head/x11-wm/fvwm/files/patch-FvwmPager.c (props changed) head/x11-wm/fvwm/files/patch-FvwmPager.h (props changed) head/x11-wm/fvwm/files/patch-FvwmSave.c (props changed) head/x11-wm/fvwm/files/patch-FvwmSave.h (props changed) head/x11-wm/fvwm/files/patch-FvwmSaveDesk.c (props changed) head/x11-wm/fvwm/files/patch-FvwmSaveDesk.h (props changed) head/x11-wm/fvwm/files/patch-FvwmScroll.c (props changed) head/x11-wm/fvwm/files/patch-FvwmScroll.h (props changed) head/x11-wm/fvwm/files/patch-FvwmWinList-Mallocs.c (props changed) head/x11-wm/fvwm/files/patch-FvwmWinList-Mallocs.h (props changed) head/x11-wm/fvwm/files/patch-FvwmWinList.c (props changed) head/x11-wm/fvwm/files/patch-GoodStuff.c (props changed) head/x11-wm/fvwm/files/patch-GoodStuff.h (props changed) head/x11-wm/fvwm/files/patch-SendInfo.c (props changed) head/x11-wm/fvwm/files/patch-SendText.c (props changed) head/x11-wm/fvwm/files/patch-ab (props changed) head/x11-wm/fvwm/files/patch-ac (props changed) head/x11-wm/fvwm/files/patch-ad (props changed) head/x11-wm/fvwm/files/patch-events.c (props changed) head/x11-wm/fvwm/files/patch-fvwm.c (props changed) head/x11-wm/fvwm/files/patch-fvwmlib.h (props changed) head/x11-wm/fvwm/files/patch-hostname.c (props changed) head/x11-wm/fvwm/files/patch-icons.c (props changed) head/x11-wm/fvwm/files/patch-mystrcasecmp.c (props changed) head/x11-wm/fvwm/files/patch-root_bits.c (props changed) head/x11-wm/fvwm/files/patch-safemalloc.c (props changed) head/x11-wm/fvwm/files/patch-xpmroot.c (props changed) head/x11-wm/fvwm2/files/patch-FvwmM4.c (props changed) head/x11-wm/fvwm2/files/patch-bin::Makefile.in (props changed) head/x11-wm/gcompmgr/files/patch-Makefile.in (props changed) head/x11-wm/genmenu/files/patch-genmenu (props changed) head/x11-wm/golem/files/patch-configure (props changed) head/x11-wm/hackedbox/files/patch-src-Timer.hh (props changed) head/x11-wm/hackedbox/files/patch-src-Window.cc (props changed) head/x11-wm/hs-xmonad-contrib/files/patch-XMonad__Prompt__Directory.hs (props changed) head/x11-wm/icewm/files/patch-src__Makefile.in (props changed) head/x11-wm/icewm/files/patch-src__aapm.cc (props changed) head/x11-wm/icewm/files/patch-src_ylocale.cc (props changed) head/x11-wm/ion/files/patch-disable_border (props changed) head/x11-wm/ion/files/patch-ion-edit (props changed) head/x11-wm/ion/files/patch-ion-view (props changed) head/x11-wm/ion/files/patch-system.mk (props changed) head/x11-wm/ion/files/patch-winprop_frame (props changed) head/x11-wm/jewel/files/patch-basemenu.hh (props changed) head/x11-wm/jewel/files/patch-goodies-appbar_icon.cc (props changed) head/x11-wm/jewel/files/patch-goodies-appbar_icon.hh (props changed) head/x11-wm/jewel/files/patch-goodies-appbar_main.cc (props changed) head/x11-wm/jewel/files/patch-goodies-appbar_scanner.cc (props changed) head/x11-wm/jewel/files/patch-goodies-fspanel_Makefile (props changed) head/x11-wm/jewel/files/patch-goodies-fspanel_fspanel.c (props changed) head/x11-wm/jewel/files/patch-goodies-setrootimage_image.hh (props changed) head/x11-wm/jewel/files/patch-goodies-setrootimage_setrootimage.cc (props changed) head/x11-wm/jewel/files/patch-goodies-xsession_Makefile (props changed) head/x11-wm/jewel/files/patch-windowmanager.cc (props changed) head/x11-wm/jwm/files/patch-example.jwmrc (props changed) head/x11-wm/libcompizconfig/files/patch-src-main.c (props changed) head/x11-wm/mate-window-manager/files/patch-src_core_delete.c (props changed) head/x11-wm/mate-window-manager/files/patch-src_core_main.c (props changed) head/x11-wm/matwm2/files/patch-Makefile.in (props changed) head/x11-wm/metacity/files/patch-bugzilla_588119 (props changed) head/x11-wm/metacity/files/patch-configure (props changed) head/x11-wm/metacity/files/patch-src_core_delete.c (props changed) head/x11-wm/metacity/files/patch-src_core_main.c (props changed) head/x11-wm/mutter/files/patch-src_core_main.c (props changed) head/x11-wm/obpager/files/patch-Makefile (props changed) head/x11-wm/obpager/files/patch-src_main.cc (props changed) head/x11-wm/olvwm/files/patch-Imakefile (props changed) head/x11-wm/olvwm/files/patch-cursors.c (props changed) head/x11-wm/olvwm/files/patch-defaults.c (props changed) head/x11-wm/olvwm/files/patch-fontset.c (props changed) head/x11-wm/olvwm/files/patch-gettext.c (props changed) head/x11-wm/olvwm/files/patch-gif.c (props changed) head/x11-wm/olvwm/files/patch-mem.c (props changed) head/x11-wm/olvwm/files/patch-menu.c (props changed) head/x11-wm/olvwm/files/patch-ol_button.413.c (props changed) head/x11-wm/olvwm/files/patch-ol_button.svr4.c (props changed) head/x11-wm/olvwm/files/patch-olvwmrc.y (props changed) head/x11-wm/olvwm/files/patch-olwm.c (props changed) head/x11-wm/olvwm/files/patch-pixmap.c (props changed) head/x11-wm/olvwm/files/patch-screen.c (props changed) head/x11-wm/olvwm/files/patch-st.c (props changed) head/x11-wm/olvwm/files/patch-virtual.c (props changed) head/x11-wm/olvwm/files/patch-winframe.c (props changed) head/x11-wm/olvwm/files/patch-winicon.c (props changed) head/x11-wm/oroborus/files/patch-src__oroborus.c (props changed) head/x11-wm/pawm/files/patch-src__pashut.c (props changed) head/x11-wm/pawm/files/patch-src__pawm.c (props changed) head/x11-wm/piewm/files/patch-ad (props changed) head/x11-wm/piewm/files/patch-ae (props changed) head/x11-wm/piewm/files/patch-ag (props changed) head/x11-wm/piewm/files/patch-events.c (props changed) head/x11-wm/piewm/files/patch-icons.h (props changed) head/x11-wm/plwm/files/patch-plwm_outline.py (props changed) head/x11-wm/ratmen/files/patch-Makefile (props changed) head/x11-wm/ratmen/files/patch-ratmen.c (props changed) head/x11-wm/ratmenu/files/patch-Makefile (props changed) head/x11-wm/sapphire/files/patch-Makefile (props changed) head/x11-wm/sapphire/files/patch-aa (props changed) head/x11-wm/sapphire/files/patch-image.cc (props changed) head/x11-wm/sapphire/files/patch-linkedlist.cc (props changed) head/x11-wm/stumpwm/files/patch-contrib-stumpish (props changed) head/x11-wm/treewm/files/patch-menuinfo.cc (props changed) head/x11-wm/treewm/files/patch-resmanager.cc (props changed) head/x11-wm/treewm/files/patch-uehandler.cc (props changed) head/x11-wm/tvtwm/files/patch-aa (props changed) head/x11-wm/tvtwm/files/patch-ab (props changed) head/x11-wm/tvtwm/files/patch-ac (props changed) head/x11-wm/tvtwm/files/patch-icons.c (props changed) head/x11-wm/tvtwm/files/patch-menus.c (props changed) head/x11-wm/tvtwm/files/patch-parse.c (props changed) head/x11-wm/tvtwm/files/patch-parse.h (props changed) head/x11-wm/tvtwm/files/patch-twm.c (props changed) head/x11-wm/weewm/files/patch-aa (props changed) head/x11-wm/windowmaker/files/patch-WINGs__WINGs__WINGsP.h (props changed) head/x11-wm/windowmaker/files/patch-WINGs__wapplication.c (props changed) head/x11-wm/windowmaker/files/patch-WPrefs.app__Menu.c (props changed) head/x11-wm/windowmaker/files/patch-WPrefs.app__Paths.c (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-Makefile.in (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-Defaults-WindowMaker.in (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.bg (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ca (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.cz (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.da (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.de (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.el (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.es (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fi (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.fr (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.gl (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.he (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hr (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.hu (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.it (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ja (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ko (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.nl (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.no (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pl (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.pt (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ro (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.ru (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.se (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sk (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.sl (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.tr (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_CN (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-menu.zh_TW (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.bg (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.da (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.de (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.es (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fi (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.fr (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.hr (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.it (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ja (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ko (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.pl (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.ro (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.sk (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_CN (props changed) head/x11-wm/windowmaker/files/patch-WindowMaker-plmenu.zh_TW (props changed) head/x11-wm/windowmaker/files/patch-src__startup.c (props changed) head/x11-wm/windowmaker/files/patch-util__wmgenmenu.c (props changed) head/x11-wm/wm2/files/patch-Client.C (props changed) head/x11-wm/wm2/files/patch-aa (props changed) head/x11-wm/wm2/files/patch-ab (props changed) head/x11-wm/wm2/files/patch-ac (props changed) head/x11-wm/wm2/files/patch-ad (props changed) head/x11-wm/wmakerconf/files/patch-aa (props changed) head/x11-wm/wmanager/files/patch-aa (props changed) head/x11-wm/wmanager/files/patch-ab (props changed) head/x11-wm/wmanager/files/patch-inc::WManager.H (props changed) head/x11-wm/wmanager/files/patch-src::Interface.cc (props changed) head/x11-wm/wmii/files/extra-patch-slim-layout-boxes (props changed) head/x11-wm/wmii/files/patch-no-utf8 (props changed) head/x11-wm/wmname/files/patch-config.mk (props changed) head/x11-wm/xfce4-session/files/patch-xfce4-session_xfsm-shutdown-helper.c (props changed) head/x11-wm/xfce4-wm/files/extrapatch-src__events.c (props changed) head/x11/9box/files/patch-src::Makefile (props changed) head/x11/9box/files/patch-src__9box.c (props changed) head/x11/9box/files/patch-src__buttons.c (props changed) head/x11/9box/files/patch-src__fns.h (props changed) head/x11/9box/files/patch-src__manage.c (props changed) head/x11/9box/files/patch-src__menu.c (props changed) head/x11/9box/files/patch-src__utils.c (props changed) head/x11/9box/files/patch-src__wm.c (props changed) head/x11/apwal/files/patch-Makefile (props changed) head/x11/apwal/files/patch-app.c (props changed) head/x11/apwal/files/patch-main.c (props changed) head/x11/aterm/files/patch-cutToBeginningOfLine (props changed) head/x11/aterm/files/patch-dpy (props changed) head/x11/aterm/files/patch-eterm_transparency (props changed) head/x11/aterm/files/patch-fix_deadkeys (props changed) head/x11/aterm/files/patch-lose_pastebuffer_on_resize (props changed) head/x11/aterm/files/patch-manpage_bl (props changed) head/x11/aterm/files/patch-manpage_paths (props changed) head/x11/aterm/files/patch-superflous_linking (props changed) head/x11/aterm/files/patch-warn_faulty_boolean (props changed) head/x11/aterm/files/patch-xlocale_test (props changed) head/x11/aterm/files/patch-xresources_in_manpage (props changed) head/x11/avant-window-navigator/files/patch-libawn-settings.c (props changed) head/x11/babl/files/patch-docs-Makefile.in (props changed) head/x11/babl/files/patch-sse-fixups.c (props changed) head/x11/bbappconf/files/patch-resouce.cc (props changed) head/x11/bbdock/files/patch-Slot.cc (props changed) head/x11/bbrun/files/patch-Makefile (props changed) head/x11/bbrun/files/patch-bbrun.c (props changed) head/x11/bgs/files/patch-config.mk (props changed) head/x11/bricons/files/patch-aa (props changed) head/x11/bricons/files/patch-ac (props changed) head/x11/bricons/files/patch-action.c (props changed) head/x11/brightside/files/patch-src_brightside.c (props changed) head/x11/deskmenu/files/patch-Makefile (props changed) head/x11/deskpaint/files/patch-Makefile (props changed) head/x11/dgs/files/patch-ah (props changed) head/x11/dmenu/files/patch-Makefile (props changed) head/x11/dmenu/files/patch-config.mk (props changed) head/x11/dxpc/files/patch-DecodeBuffer.C (props changed) head/x11/dxpc/files/patch-EncodeBuffer.C (props changed) head/x11/eaglemode/files/patch-makers-emAv.maker.pm (props changed) head/x11/eaglemode/files/patch-makers-unicc-plugins-unicc__gnu.pm (props changed) head/x11/emu/files/patch-a (props changed) head/x11/emu/files/patch-b (props changed) head/x11/emu/files/patch-c (props changed) head/x11/emu/files/patch-d (props changed) head/x11/eterm/files/patch-doc:Makefile.in (props changed) head/x11/eterm/files/patch-src:Makefile.in (props changed) head/x11/eterm/files/patch-themes-Eterm:menus.cfg (props changed) head/x11/eterm/files/patch-themes-auto:menus.cfg (props changed) head/x11/eterm/files/patch-themes-trans:menus.cfg (props changed) head/x11/evilvte/files/patch-src-process.sh (props changed) head/x11/fbdesk/files/patch-ImagePNG.cc (props changed) head/x11/fbpanel/files/patch-configure (props changed) head/x11/fbpanel/files/patch-data__config__default.in (props changed) head/x11/fbpanel/files/patch-data__man__fbpanel.1.in (props changed) head/x11/fbpanel/files/patch-exec__Makefile.in (props changed) head/x11/fbpanel/files/patch-exec__make_profile.in (props changed) head/x11/fbpanel/files/patch-panel__misc.c (props changed) head/x11/fbpanel/files/patch-plugins__battery__battery.c (props changed) head/x11/fbpanel/files/patch-plugins__chart__chart.c (props changed) head/x11/fbpanel/files/patch-plugins__cpu__cpu.c (props changed) head/x11/fbpanel/files/patch-plugins__deskno__deskno.c (props changed) head/x11/fbpanel/files/patch-plugins__mem__mem.c (props changed) head/x11/fbpanel/files/patch-plugins__net__net.c (props changed) head/x11/fbpanel/files/patch-plugins__volume__volume.c (props changed) head/x11/fbpanel/files/patch-scripts__endianess.sh (props changed) head/x11/fbpanel/files/patch-scripts__rfs-pkg-config (props changed) head/x11/gdkxft/files/patch-capplet_Makefile.in (props changed) head/x11/gdkxft/files/patch-src::gdkxft.conf (props changed) head/x11/gdm/files/patch-common_Makefile.in (props changed) head/x11/gdm/files/patch-common_gdm-address.c (props changed) head/x11/gdm/files/patch-common_gdm-address.h (props changed) head/x11/gdm/files/patch-common_gdm-common.c (props changed) head/x11/gdm/files/patch-config.h.in (props changed) head/x11/gdm/files/patch-daemon-gdm-xdmcp-display-factory.c (props changed) head/x11/gdm/files/patch-daemon_Makefile.in (props changed) head/x11/gdm/files/patch-daemon_gdm-session-worker.c (props changed) head/x11/gdm/files/patch-data_Xsession.in (props changed) head/x11/gdm/files/patch-data_gconf.path (props changed) head/x11/gdm/files/patch-data_gdm.schemas.in.in (props changed) head/x11/gdm/files/patch-data_greeter-autostart_gdm-simple-greeter.desktop.in.in (props changed) head/x11/gdm/files/patch-gui_simple-chooser_gdm-host-chooser-widget.c (props changed) head/x11/gdm/files/patch-gui_simple-greeter_Makefile.in (props changed) head/x11/gdm/files/patch-gui_simple-greeter_gdm-languages.c (props changed) head/x11/gdm/files/patch-gui_simple-greeter_gdm-remote-login-window.c (props changed) head/x11/gdm/files/patch-gui_simple-greeter_gdm-user-manager.c (props changed) head/x11/gdm/files/patch-gui_simple-greeter_gdm-user.c (props changed) head/x11/gdm/files/patch-gui_user-switch-applet_Makefile.in (props changed) head/x11/gmessage/files/patch-aa (props changed) head/x11/gmrun/files/patch-src__gtkcompletionline.cc (props changed) head/x11/gmrun/files/patch-src__gtkcompletionline.h (props changed) head/x11/gnome-applets/files/patch-aa (props changed) head/x11/gnome-applets/files/patch-battstat_acpi-freebsd.c (props changed) head/x11/gnome-applets/files/patch-battstat_acpi-freebsd.h (props changed) head/x11/gnome-applets/files/patch-battstat_battstat_applet.c (props changed) head/x11/gnome-applets/files/patch-battstat_power-management.c (props changed) head/x11/gnome-applets/files/patch-cpufreq-freebsd (props changed) head/x11/gnome-applets/files/patch-cpufreq-selector-freebsd (props changed) head/x11/gnome-applets/files/patch-gweather_gweather-applet.c (props changed) head/x11/gnome-applets/files/patch-invest-applet_invest_invest-applet.py (props changed) head/x11/gnome-applets/files/patch-invest-applet_invest_invest-chart (props changed) head/x11/gnome-menus/files/patch-Makefile.in (props changed) head/x11/gnome-menus/files/patch-layout::applications.menu (props changed) head/x11/gnome-menus/files/patch-simple-editor_GMenuSimpleEditor_menutreemodel.py (props changed) head/x11/gnome-menus/files/patch-util_Makefile.in (props changed) head/x11/gnome-panel/files/patch-applets_clock_clock-location.c (props changed) head/x11/gnome-panel/files/patch-applets_clock_clock.c (props changed) head/x11/gnome-panel/files/patch-po_ja.po (props changed) head/x11/gnome-pie/files/patch-CMakeLists.txt (props changed) head/x11/gnome-pie/files/patch-resources__gnome-pie.desktop (props changed) head/x11/gnome-pie/files/patch-src__CMakeLists.txt (props changed) head/x11/gnome-pie/files/patch-src__actionGroups__windowListGroup.vala (props changed) head/x11/gnome-pie/files/patch-src__actions__actionRegistry.vala (props changed) head/x11/gnome-pie/files/patch-src__utilities__paths.vala (props changed) head/x11/gnome-screensaver/files/patch-data_Makefile.in (props changed) head/x11/gnome-screensaver/files/patch-src_gs-job.c (props changed) head/x11/gnome-screensaver/files/patch-src_gs-lock-plug.c (props changed) head/x11/gnome-session/files/patch-gnome-session_Makefile.in (props changed) head/x11/gnome-session/files/patch-gnome-session_gsm-autostart-app.c (props changed) head/x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c (props changed) head/x11/gnome-shell/files/patch-src_gnome-shell-plugin.c (props changed) head/x11/gnome-shell/files/patch-src_gnome-shell.in (props changed) head/x11/gnome-swallow/files/patch-GNOME_Swallow.server (props changed) head/x11/gnome-swallow/files/patch-Makefile.in (props changed) head/x11/gnome-swallow/files/patch-gnome-swallow.c (props changed) head/x11/gnome-terminal/files/patch-config.h.in (props changed) head/x11/gnome-terminal/files/patch-configure (props changed) head/x11/gnome-terminal/files/patch-configure.ac (props changed) head/x11/gnome-terminal/files/patch-src-terminal.c (props changed) head/x11/gnome-terminal/files/patch-src_terminal-screen.c (props changed) head/x11/gpctool/files/patch-includes (props changed) head/x11/gromit/files/patch-Makefile (props changed) head/x11/gtk-theme-switch/files/patch-aa (props changed) head/x11/gtk-theme-switch2/files/patch-Makefile (props changed) head/x11/gtkchtheme/files/patch-Makefile (props changed) head/x11/gtkchtheme/files/patch-about_dialog.c (props changed) head/x11/gtkchtheme/files/patch-font_sel.c (props changed) head/x11/gtkchtheme/files/patch-main.c (props changed) head/x11/gtkchtheme/files/patch-mainwin.c (props changed) head/x11/gtkchtheme/files/patch-preview_pane.c (props changed) head/x11/gtkchtheme/files/patch-theme_sel.c (props changed) head/x11/gtkchtheme/files/patch-util.c (props changed) head/x11/guake/files/patch-data__Makefile.in (props changed) head/x11/guake/files/patch-data__guake-prefs.desktop.in (props changed) head/x11/guake/files/patch-data__guake.desktop.in (props changed) head/x11/guake/files/patch-po__Makefile.in.in (props changed) head/x11/hotwire-shell/files/patch-hotwire__ui_renderers_file.py (props changed) head/x11/hotwire-shell/files/patch-setup.py (props changed) head/x11/i3lock/files/patch-Makefile (props changed) head/x11/idesk/files/patch-src_DesktopConfig.cpp (props changed) head/x11/idesk/files/patch-src_Timer.cpp (props changed) head/x11/idesk/files/patch-src_XImlib2Background.cpp (props changed) head/x11/imwheel/files/patch-Makefile.in (props changed) head/x11/imwheel/files/patch-ae (props changed) head/x11/imwheel/files/patch-af (props changed) head/x11/imwheel/files/patch-getopt::Makefile.in (props changed) head/x11/imwheel/files/patch-getopt::getopt.c (props changed) head/x11/imwheel/files/patch-util.c (props changed) head/x11/innerspace/files/patch-NickSpaceView.m (props changed) head/x11/kb2mb2/files/patch-aa (props changed) head/x11/kb2mb2/files/patch-ab (props changed) head/x11/kde4-runtime/files/patch-khelpcenter_searchhandlers-khc_mansearch.pl (props changed) head/x11/kde4-workspace/files/patch-CMakeLists.txt (props changed) head/x11/kde4-workspace/files/patch-ConfigureChecks.cmake (props changed) head/x11/kde4-workspace/files/patch-kdm-kfrontend-CMakeLists.txt (props changed) head/x11/kde4-workspace/files/patch-kdm__backend__client.c (props changed) head/x11/kde4-workspace/files/patch-kinfocenter__Modules__base__CMakeLists.txt (props changed) head/x11/kde4-workspace/files/patch-kinfocenter__Modules__info__CMakeLists.txt (props changed) head/x11/kde4-workspace/files/patch-startkde.cmake (props changed) head/x11/kdelibs4/files/extra-patch-ConfigureChecks.cmake (props changed) head/x11/kdelibs4/files/patch-cmake-modules-CMakeLists.txt (props changed) head/x11/kdelibs4/files/patch-cmake_modules_FindAlsa.cmake (props changed) head/x11/kdelibs4/files/patch-cmake_modules_FindKexiv2.cmake (props changed) head/x11/kdelibs4/files/patch-cmake_modules_FindLibKonq.cmake (props changed) head/x11/kdelibs4/files/patch-cmake_modules_FindQt4.cmake (props changed) head/x11/kdelibs4/files/patch-kdecore__util__kshareddatacache_p.h (props changed) head/x11/kdelibs4/files/patch-kio__CMakeLists.txt (props changed) head/x11/kdelibs4/files/patch-solid__solid__managerbase.cpp (props changed) head/x11/kdelibs4/files/patch-solid_solid_backends_hal_halstorageaccess.cpp (props changed) head/x11/keyboardcast/files/patch-Makefile (props changed) head/x11/keyboardcast/files/patch-window-list.c (props changed) head/x11/keylaunch/files/patch-Makefile (props changed) head/x11/libSM/files/patch-Makefile.am (props changed) head/x11/libSM/files/patch-sm_genid.c (props changed) head/x11/libdnd/files/patch-aa (props changed) head/x11/libdnd/files/patch-ab (props changed) head/x11/libdnd/files/patch-configure (props changed) head/x11/libgnome-java/files/patch-configure (props changed) head/x11/libgnome-java/files/patch-gnome2-java.pc.in (props changed) head/x11/libgnome/files/patch-libgnome::Makefile.in (props changed) head/x11/libgnome/files/patch-libgnome_gnome-util.c (props changed) head/x11/libgnome/files/patch-libgnome_libgnome-2.0.pc.in (props changed) head/x11/libsx/files/patch-aa (props changed) head/x11/libsx/files/patch-ab (props changed) head/x11/libsx/files/patch-freq-main.c (props changed) head/x11/libsx/files/patch-src-main.c (props changed) head/x11/libsx/files/patch-src-main2.c (props changed) head/x11/libsynaptics/files/patch-Makefile.in (props changed) head/x11/libsynaptics/files/patch-pad.cpp (props changed) head/x11/libxcb/files/patch-tests-check_public.c (props changed) head/x11/mate-applets/files/patch-battstat_acpi-freebsd.c (props changed) head/x11/mate-applets/files/patch-battstat_acpi-freebsd.h (props changed) head/x11/mate-applets/files/patch-battstat_power-management.c (props changed) head/x11/mate-applets/files/patch-cpufreq-freebsd (props changed) head/x11/mate-applets/files/patch-cpufreq-selector-freebsd (props changed) head/x11/mate-applets/files/patch-invest-applet_invest_invest-applet.py (props changed) head/x11/mate-applets/files/patch-invest-applet_invest_invest-chart (props changed) head/x11/mate-panel/files/patch-applets_clock_clock-location.c (props changed) head/x11/mate-panel/files/patch-applets_clock_clock.c (props changed) head/x11/mate-screensaver/files/patch-src_gs-job.c (props changed) head/x11/mate-terminal/files/patch-configure.ac (props changed) head/x11/mate-terminal/files/patch-src_terminal-screen.c (props changed) head/x11/metisse/files/patch-fvwm-insitu-libs-Fpng.h (props changed) head/x11/metisse/files/patch-fvwm-insitu-libs-PictureImageLoader.c (props changed) head/x11/metisse/files/patch-xserver_GL_mesa_Makefile.in (props changed) head/x11/mgapdesk/files/patch-aa (props changed) head/x11/mgapdesk/files/patch-ab (props changed) head/x11/mgapdesk/files/patch-makefile.in (props changed) head/x11/mgapdesk/files/patch-src-makefile.in (props changed) head/x11/mlterm/files/patch-configure (props changed) head/x11/mlterm/files/patch-gtk_Makefile.in (props changed) head/x11/mlterm/files/patch-inputmethod_ibus_im_ibus.c (props changed) head/x11/mlterm/files/patch-tool:w3mmlconfig:mlconfig.cgi.in (props changed) head/x11/mrxvt/files/patch-src-logging.c (props changed) head/x11/mrxvt/files/patch-src-main.c (props changed) head/x11/mrxvt/files/patch-src-strings.c (props changed) head/x11/nvidia-settings/files/patch-src__gtk+-2.x__ctkdisplayconfig-utils.c (props changed) head/x11/nvidia-xconfig/files/patch-Makefile (props changed) head/x11/p5-X11-IdleTime/files/patch-aa (props changed) head/x11/plasma-scriptengine-python/files/patch-plasma__generic__scriptengines__python__CMakeLists.txt (props changed) head/x11/plasma-scriptengine-ruby/files/patch-plasma__generic__scriptengines__ruby__CMakeLists.txt (props changed) head/x11/props/files/patch-aa (props changed) head/x11/props/files/patch-ab (props changed) head/x11/props/files/patch-ac (props changed) head/x11/qimageblitz/files/patch-blitz-CMakeLists.txt (props changed) head/x11/rxvt-devel/files/patch-aa (props changed) head/x11/rxvt-devel/files/patch-ac (props changed) head/x11/rxvt-devel/files/patch-ad (props changed) head/x11/rxvt-devel/files/patch-autoconf::ltmain.sh (props changed) head/x11/rxvt-devel/files/patch-src-screen.c (props changed) head/x11/rxvt-devel/files/patch-src::command.c (props changed) head/x11/rxvt-devel/files/patch-src::init.c (props changed) head/x11/rxvt-devel/files/patch-src::rxvt.h (props changed) head/x11/rxvt-unicode/files/patch-doc-Makefile.in (props changed) head/x11/rxvt-unicode/files/patch-doc-urxvtcd.1.man (props changed) head/x11/rxvt-unicode/files/patch-src-urxvtcd (props changed) head/x11/rxvt-unicode/files/patch-src::command.C (props changed) head/x11/rxvt-unicode/files/patch-src::gentables (props changed) head/x11/rxvt-unicode/files/patch-src_gencompose (props changed) head/x11/rxvt-unicode/files/patch-src_genlinedraw (props changed) head/x11/rxvt-unicode/files/patch-src_perl_kuake (props changed) head/x11/rxvt/files/patch-aa (props changed) head/x11/rxvt/files/patch-ab (props changed) head/x11/rxvt/files/patch-ac (props changed) head/x11/rxvt/files/patch-ad (props changed) head/x11/rxvt/files/patch-grkelot.c (props changed) head/x11/rxvt/files/patch-logging.c (props changed) head/x11/rxvt/files/patch-screen.c (props changed) head/x11/slim/files/patch-app.cpp (props changed) head/x11/slim/files/patch-switchuser.cpp (props changed) head/x11/slim/files/patch-themes__default__slim.theme (props changed) head/x11/sselp/files/patch-config.mk (props changed) head/x11/stjerm/files/patch-src_config.c (props changed) head/x11/stjerm/files/patch-src_mainwindow.c (props changed) head/x11/stjerm/files/patch-src_term.c (props changed) head/x11/sxpc/files/patch-aa (props changed) head/x11/tabbed/files/patch-config.mk (props changed) head/x11/terminal.app/files/patch-TerminalView.m (props changed) head/x11/terminal.app/files/patch-main.m (props changed) head/x11/thinglaunch/files/patch-thinglaunch.c (props changed) head/x11/tkXwin/files/patch-config-ltconfig (props changed) head/x11/tycoon/files/patch-aa (props changed) head/x11/tycoon/files/patch-ab (props changed) head/x11/tycoon/files/patch-ad (props changed) head/x11/tycoon/files/patch-ae (props changed) head/x11/tycoon/files/patch-af (props changed) head/x11/wbar/files/patch-configure (props changed) head/x11/wbarconf/files/patch-wbarconf.py (props changed) head/x11/wdm/files/patch-change_wm (props changed) head/x11/wdm/files/patch-configs::wdm-config.in (props changed) head/x11/wdm/files/patch-src::wdm::session.c (props changed) head/x11/wmblob/files/patch-configure (props changed) head/x11/wmcliphist/files/patch-Makefile (props changed) head/x11/wmcliphist/files/patch-history.c (props changed) head/x11/wmctrl/files/patch-main.c (props changed) head/x11/wmdrawer/files/patch-wmdrawerrc.example (props changed) head/x11/wmmatrix/files/patch-aa (props changed) head/x11/wmxss/files/patch-Src::Makefile (props changed) head/x11/workrave/files/patch-System.cc (props changed) head/x11/xantfarm/files/patch-aa (props changed) head/x11/xascii/files/patch-Imakefile (props changed) head/x11/xascii/files/patch-xascii.c (props changed) head/x11/xautolock/files/patch-aa (props changed) head/x11/xautolock/files/patch-ab (props changed) head/x11/xautolock/files/patch-ac (props changed) head/x11/xbanner/files/patch-aa (props changed) head/x11/xbanner/files/patch-ab (props changed) head/x11/xbanner/files/patch-ac (props changed) head/x11/xbanner/files/patch-ad (props changed) head/x11/xbanner/files/patch-ae (props changed) head/x11/xbelld/files/patch-xbelld.c (props changed) head/x11/xcb-proto/files/patch-src_sync.xml (props changed) head/x11/xclip/files/patch-configure.ac (props changed) head/x11/xcmd/files/patch-a (props changed) head/x11/xcolors/files/patch-aa (props changed) head/x11/xcolors/files/patch-xcolors.c (props changed) head/x11/xcurs/files/patch-gladew.py (props changed) head/x11/xcurs/files/patch-xcurs.py (props changed) head/x11/xcut/files/patch-aa (props changed) head/x11/xcut/files/patch-xcut.c (props changed) head/x11/xdm/files/patch-greeter-greet.c (props changed) head/x11/xdm/files/patch-xdm_session.c (props changed) head/x11/xdtm/files/patch-aa (props changed) head/x11/xdtm/files/patch-appman.c (props changed) head/x11/xfce4-screenshooter-plugin/files/patch-Makefile.in (props changed) head/x11/xfce4-taskmanager/files/patch-task-manager-freebsd.c (props changed) head/x11/xfishtank/files/patch-aa (props changed) head/x11/xfishtank/files/patch-ab (props changed) head/x11/xforward/files/patch-Makefile (props changed) head/x11/xforward/files/patch-xforward.c (props changed) head/x11/xfree86_xkb_xml/files/patch-Makefile.in (props changed) head/x11/xfree86_xkb_xml/files/patch-configure (props changed) head/x11/xfree86_xkb_xml/files/patch-intltool-merge.in (props changed) head/x11/xgrab/files/patch-aa (props changed) head/x11/xgrab/files/patch-ab (props changed) head/x11/xkbctrl/files/patch-aa (props changed) head/x11/xkbctrl/files/patch-ab (props changed) head/x11/xkeycaps/files/patch-1 (props changed) head/x11/xkeycaps/files/patch-2 (props changed) head/x11/xkeywrap/files/patch-aa (props changed) head/x11/xloadimage/files/patch-Makefile.in (props changed) head/x11/xloadimage/files/patch-lp64 (props changed) head/x11/xloadimage/files/patch-uufilter.c (props changed) head/x11/xlockmore/files/patch-aa (props changed) head/x11/xlogout/files/patch-Imakefile (props changed) head/x11/xlogout/files/patch-xlogout.c (props changed) head/x11/xmascot/files/patch-aa (props changed) head/x11/xmon/files/patch-main.c (props changed) head/x11/xmx/files/patch-aa (props changed) head/x11/xmx/files/patch-fix-amd64 (props changed) head/x11/xnodecor/files/patch-xnodecor.c (props changed) head/x11/xorg-cf-files/files/patch-FreeBSD.cf (props changed) head/x11/xorg-cf-files/files/patch-Imake.rules (props changed) head/x11/xorg-cf-files/files/patch-Imake.tmpl (props changed) head/x11/xorg-cf-files/files/patch-Library.tmpl (props changed) head/x11/xscreensaver-gnome/files/extra-patch-nodriver (props changed) head/x11/xscreensaver-gnome/files/patch-driver_Makefile.in (props changed) head/x11/xscreensaver-gnome/files/patch-hacks_webcollage (props changed) head/x11/xscreensaver/files/patch-driver_Makefile.in (props changed) head/x11/xscreensaver/files/patch-driver_XScreenSaver.ad.in (props changed) head/x11/xscreensaver/files/patch-hacks__config__sonar.xml (props changed) head/x11/xskyroot/files/patch-aa (props changed) head/x11/xskyroot/files/patch-ab (props changed) head/x11/xskyroot/files/patch-ac (props changed) head/x11/xstroke/files/patch-Imakefile (props changed) head/x11/xstroke/files/patch-action_item.h (props changed) head/x11/xstroke/files/patch-etc::Imakefile (props changed) head/x11/xstroke/files/patch-rec_parse.y (props changed) head/x11/xstroke/files/patch-regex_feature.c (props changed) head/x11/xstroke/files/patch-regex_feature.h (props changed) head/x11/xtacy/files/patch-aa (props changed) head/x11/xvkbd/files/patch-aa (props changed) head/x11/xvkbd/files/patch-xvkbd.c (props changed) head/x11/xwatchwin/files/patch-aa (props changed) head/x11/xwatchwin/files/patch-ab (props changed) head/x11/xxkb/files/patch-Imakefile (props changed) head/x11/xzoom/files/patch-aa (props changed) head/x11/xzoom/files/patch-ab (props changed) head/x11/xzoom/files/patch-ac (props changed) head/x11/xzoom/files/patch-ad (props changed) head/x11/yeahconsole/files/patch-Makefile (props changed) head/x11/yelp/files/patch-yelp.desktop.in.in (props changed) head/x11/zenity/files/patch-src_notification.c (props changed) Modified: head/devel/p5-Sys-Cpu/files/patch-CPU.xs ============================================================================== --- head/devel/p5-Sys-Cpu/files/patch-CPU.xs Wed Jan 22 17:25:46 2014 (r340724) +++ head/devel/p5-Sys-Cpu/files/patch-CPU.xs Wed Jan 22 17:40:44 2014 (r340725) @@ -1,5 +1,5 @@ ---- CPU.xs.orig 2010-09-03 23:30:18.000000000 +0100 -+++ CPU.xs 2010-09-03 23:57:31.000000000 +0100 +--- CPU.xs.orig 2010-09-03 23:30:18.000000000 +0100 ++++ CPU.xs 2010-09-03 23:57:31.000000000 +0100 @@ -40,6 +40,11 @@ #define _have_cpu_clock #define _have_cpu_type Modified: head/editors/emacs-devel/files/patch-sources.el ============================================================================== --- head/editors/emacs-devel/files/patch-sources.el Wed Jan 22 17:25:46 2014 (r340724) +++ head/editors/emacs-devel/files/patch-sources.el Wed Jan 22 17:40:44 2014 (r340725) @@ -1,5 +1,5 @@ -$FreeBSD: head/editors/emacs-devel/files/patch-sources.el 300896 2012-07-14 13:54:48Z beat $ +$FreeBSD$ --- /dev/null +++ sources.el Modified: head/editors/nano-devel/files/patch-doc_man_Makefile.in ============================================================================== --- head/editors/nano-devel/files/patch-doc_man_Makefile.in Wed Jan 22 17:25:46 2014 (r340724) +++ head/editors/nano-devel/files/patch-doc_man_Makefile.in Wed Jan 22 17:40:44 2014 (r340725) @@ -1,5 +1,5 @@ -$FreeBSD: head/editors/nano/files/patch-doc_man_Makefile.in 300896 2012-07-14 13:54:48Z beat $ +$FreeBSD$ --- doc/man/Makefile.in.orig +++ doc/man/Makefile.in Modified: head/editors/nano-devel/files/patch-doc_man_fr_Makefile.in ============================================================================== --- head/editors/nano-devel/files/patch-doc_man_fr_Makefile.in Wed Jan 22 17:25:46 2014 (r340724) +++ head/editors/nano-devel/files/patch-doc_man_fr_Makefile.in Wed Jan 22 17:40:44 2014 (r340725) @@ -1,5 +1,5 @@ -$FreeBSD: head/editors/nano/files/patch-doc_man_fr_Makefile.in 300896 2012-07-14 13:54:48Z beat $ +$FreeBSD$ --- doc/man/fr/Makefile.in.orig +++ doc/man/fr/Makefile.in From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 17:54:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2691469; Wed, 22 Jan 2014 17:54:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 921B811A5; Wed, 22 Jan 2014 17:54:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MHsZSb091335; Wed, 22 Jan 2014 17:54:35 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MHsZRT091331; Wed, 22 Jan 2014 17:54:35 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201401221754.s0MHsZRT091331@svn.freebsd.org> From: Johan van Selst Date: Wed, 22 Jan 2014 17:54:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340726 - head/lang/oo2c X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 17:54:35 -0000 Author: johans Date: Wed Jan 22 17:54:34 2014 New Revision: 340726 URL: http://svnweb.freebsd.org/changeset/ports/340726 QAT: https://qat.redports.org/buildarchive/r340726/ Log: - Enable stage support - Fix compilation issue Modified: head/lang/oo2c/Makefile head/lang/oo2c/pkg-plist Modified: head/lang/oo2c/Makefile ============================================================================== --- head/lang/oo2c/Makefile Wed Jan 22 17:40:44 2014 (r340725) +++ head/lang/oo2c/Makefile Wed Jan 22 17:54:34 2014 (r340726) @@ -11,22 +11,19 @@ MAINTAINER= johans@FreeBSD.org COMMENT= Optimizing Oberon-2 compiler of University of Kaiserslautern, Germany BUILD_DEPENDS= xsltproc:${PORTSDIR}/textproc/libxslt -LIB_DEPENDS= gc.1:${PORTSDIR}/devel/boehm-gc +LIB_DEPENDS= libgc.so:${PORTSDIR}/devel/boehm-gc DOCSDIR= lib/${PORTNAME} +USES= gmake USE_BZIP2= yes USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes -CPPFLAGS+= -I${LOCALBASE}/include -DGC_PTR='void*' +CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN1= oo2c.1 oob.1 ooef.1 oowhereis.1 - ONLY_FOR_ARCHS= i386 amd64 ia64 -NO_STAGE= yes .include .if ${ARCH} == i386 Modified: head/lang/oo2c/pkg-plist ============================================================================== --- head/lang/oo2c/pkg-plist Wed Jan 22 17:40:44 2014 (r340725) +++ head/lang/oo2c/pkg-plist Wed Jan 22 17:54:34 2014 (r340726) @@ -3,6 +3,10 @@ bin/oob bin/oobacktrace bin/ooef bin/oowhereis +man/man1/oo2c.1.gz +man/man1/oob.1.gz +man/man1/ooef.1.gz +man/man1/oowhereis.1.gz lib/liboo2c.a lib/liboo2c.la lib/liboo2c.so @@ -136,252 +140,252 @@ lib/oo2c/obj/libadt.oh lib/oo2c/obj/libc.oh lib/oo2c/obj/liboo2c.oh lib/oo2c/obj/libxml.oh -%%DOCSDIR%%/oocdoc/html/ADT/ArrayList.html -%%DOCSDIR%%/oocdoc/html/ADT/Arrays.html -%%DOCSDIR%%/oocdoc/html/ADT/Comparator.html -%%DOCSDIR%%/oocdoc/html/ADT/Dictionary.html -%%DOCSDIR%%/oocdoc/html/ADT/Dictionary/AddressKey.html -%%DOCSDIR%%/oocdoc/html/ADT/Dictionary/AddressKey/IntValue.html -%%DOCSDIR%%/oocdoc/html/ADT/Dictionary/IntValue.html -%%DOCSDIR%%/oocdoc/html/ADT/LinkedList.html -%%DOCSDIR%%/oocdoc/html/ADT/Object/Storage.html -%%DOCSDIR%%/oocdoc/html/ADT/Storable.html -%%DOCSDIR%%/oocdoc/html/ADT/StringBuffer.html -%%DOCSDIR%%/oocdoc/html/Ascii.html -%%DOCSDIR%%/oocdoc/html/BinaryRider.html -%%DOCSDIR%%/oocdoc/html/C.html -%%DOCSDIR%%/oocdoc/html/Channel.html -%%DOCSDIR%%/oocdoc/html/CharClass.html -%%DOCSDIR%%/oocdoc/html/Codec.html -%%DOCSDIR%%/oocdoc/html/Codec/Ascii.html -%%DOCSDIR%%/oocdoc/html/Codec/Latin1.html -%%DOCSDIR%%/oocdoc/html/Codec/UU.html -%%DOCSDIR%%/oocdoc/html/Codec/YEnc.html -%%DOCSDIR%%/oocdoc/html/ConvTypes.html -%%DOCSDIR%%/oocdoc/html/Err.html -%%DOCSDIR%%/oocdoc/html/Exception.html -%%DOCSDIR%%/oocdoc/html/Files.html -%%DOCSDIR%%/oocdoc/html/HashCode.html -%%DOCSDIR%%/oocdoc/html/IO.html -%%DOCSDIR%%/oocdoc/html/IO/Address.html -%%DOCSDIR%%/oocdoc/html/IO/BinaryRider.html -%%DOCSDIR%%/oocdoc/html/IO/Buffer.html -%%DOCSDIR%%/oocdoc/html/IO/FileChannel.html -%%DOCSDIR%%/oocdoc/html/IO/Memory.html -%%DOCSDIR%%/oocdoc/html/IO/Select.html -%%DOCSDIR%%/oocdoc/html/IO/Socket.html -%%DOCSDIR%%/oocdoc/html/IO/SocketChannel.html -%%DOCSDIR%%/oocdoc/html/IO/StdChannels.html -%%DOCSDIR%%/oocdoc/html/IO/TextRider.html -%%DOCSDIR%%/oocdoc/html/In.html -%%DOCSDIR%%/oocdoc/html/IntConv.html -%%DOCSDIR%%/oocdoc/html/IntStr.html -%%DOCSDIR%%/oocdoc/html/LRealConv.html -%%DOCSDIR%%/oocdoc/html/LRealMath.html -%%DOCSDIR%%/oocdoc/html/LRealStr.html -%%DOCSDIR%%/oocdoc/html/Log.html -%%DOCSDIR%%/oocdoc/html/Logger.html -%%DOCSDIR%%/oocdoc/html/Logger/TimeStamp.html -%%DOCSDIR%%/oocdoc/html/LongStrings.html -%%DOCSDIR%%/oocdoc/html/Msg.html -%%DOCSDIR%%/oocdoc/html/OS/Files.html -%%DOCSDIR%%/oocdoc/html/OS/HostPath.html -%%DOCSDIR%%/oocdoc/html/OS/Path.html -%%DOCSDIR%%/oocdoc/html/OS/ProcessManagement.html -%%DOCSDIR%%/oocdoc/html/OS/ProcessParameters.html -%%DOCSDIR%%/oocdoc/html/Object.html -%%DOCSDIR%%/oocdoc/html/Object/BigInt.html -%%DOCSDIR%%/oocdoc/html/Object/Boxed.html -%%DOCSDIR%%/oocdoc/html/Out.html -%%DOCSDIR%%/oocdoc/html/Out0.html -%%DOCSDIR%%/oocdoc/html/PosixFileDescr.html -%%DOCSDIR%%/oocdoc/html/ProgramArgs.html -%%DOCSDIR%%/oocdoc/html/RT0.html -%%DOCSDIR%%/oocdoc/html/RandomNumbers.html -%%DOCSDIR%%/oocdoc/html/Real0.html -%%DOCSDIR%%/oocdoc/html/RealConv.html -%%DOCSDIR%%/oocdoc/html/RealMath.html -%%DOCSDIR%%/oocdoc/html/RealStr.html -%%DOCSDIR%%/oocdoc/html/StdChannels.html -%%DOCSDIR%%/oocdoc/html/StringSearch.html -%%DOCSDIR%%/oocdoc/html/StringSearch/NoMatch.html -%%DOCSDIR%%/oocdoc/html/StringSearch/RegexpDFA.html -%%DOCSDIR%%/oocdoc/html/StringSearch/RegexpParser.html -%%DOCSDIR%%/oocdoc/html/StringSearch/SubstringBF.html -%%DOCSDIR%%/oocdoc/html/StringSearch/SubstringBM.html -%%DOCSDIR%%/oocdoc/html/Strings.html -%%DOCSDIR%%/oocdoc/html/SysClock.html -%%DOCSDIR%%/oocdoc/html/Termination.html -%%DOCSDIR%%/oocdoc/html/TextRider.html -%%DOCSDIR%%/oocdoc/html/Time.html -%%DOCSDIR%%/oocdoc/html/URI.html -%%DOCSDIR%%/oocdoc/html/URI/Authority/RegistryBased.html -%%DOCSDIR%%/oocdoc/html/URI/Authority/ServerBased.html -%%DOCSDIR%%/oocdoc/html/URI/Authority/Unparsed.html -%%DOCSDIR%%/oocdoc/html/URI/CharClass.html -%%DOCSDIR%%/oocdoc/html/URI/Error.html -%%DOCSDIR%%/oocdoc/html/URI/Fragment/Unparsed.html -%%DOCSDIR%%/oocdoc/html/URI/Parser.html -%%DOCSDIR%%/oocdoc/html/URI/Query/Unparsed.html -%%DOCSDIR%%/oocdoc/html/URI/Query/WWWForm.html -%%DOCSDIR%%/oocdoc/html/URI/Scheme/CurrentDoc.html -%%DOCSDIR%%/oocdoc/html/URI/Scheme/File.html -%%DOCSDIR%%/oocdoc/html/URI/Scheme/HTTP.html -%%DOCSDIR%%/oocdoc/html/URI/Scheme/Hierarchical.html -%%DOCSDIR%%/oocdoc/html/URI/Scheme/MailTo.html -%%DOCSDIR%%/oocdoc/html/URI/Scheme/NNTP.html -%%DOCSDIR%%/oocdoc/html/URI/Scheme/Opaque.html -%%DOCSDIR%%/oocdoc/html/URI/String.html -%%DOCSDIR%%/oocdoc/html/XML/Basic/DataType.html -%%DOCSDIR%%/oocdoc/html/XML/Basic/Element.html -%%DOCSDIR%%/oocdoc/html/XML/Basic/Parser.html -%%DOCSDIR%%/oocdoc/html/XML/Builder.html -%%DOCSDIR%%/oocdoc/html/XML/Builder/Canonical.html -%%DOCSDIR%%/oocdoc/html/XML/Builder/Namespaces.html -%%DOCSDIR%%/oocdoc/html/XML/Builder/ParserProtocol.html -%%DOCSDIR%%/oocdoc/html/XML/Builder/Validation.html -%%DOCSDIR%%/oocdoc/html/XML/DTD.html -%%DOCSDIR%%/oocdoc/html/XML/EntityResolver.html -%%DOCSDIR%%/oocdoc/html/XML/Error.html -%%DOCSDIR%%/oocdoc/html/XML/InputBuffer.html -%%DOCSDIR%%/oocdoc/html/XML/Locator.html -%%DOCSDIR%%/oocdoc/html/XML/Parser.html -%%DOCSDIR%%/oocdoc/html/XML/Regexp.html -%%DOCSDIR%%/oocdoc/html/XML/UnicodeBuffer.html -%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec.html -%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/ASCII.html -%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/ImportAll.html -%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/Latin1.html -%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/UTF16.html -%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/UTF8.html -%%DOCSDIR%%/oocdoc/html/XML/Writer.html -%%DOCSDIR%%/oocdoc/html/libadt.html -%%DOCSDIR%%/oocdoc/html/libc.html -%%DOCSDIR%%/oocdoc/html/liboo2c.html -%%DOCSDIR%%/oocdoc/html/libxml.html -%%DOCSDIR%%/oocdoc/xml/ADT/ArrayList.xml -%%DOCSDIR%%/oocdoc/xml/ADT/Arrays.xml -%%DOCSDIR%%/oocdoc/xml/ADT/Comparator.xml -%%DOCSDIR%%/oocdoc/xml/ADT/Dictionary.xml -%%DOCSDIR%%/oocdoc/xml/ADT/Dictionary/AddressKey.xml -%%DOCSDIR%%/oocdoc/xml/ADT/Dictionary/AddressKey/IntValue.xml -%%DOCSDIR%%/oocdoc/xml/ADT/Dictionary/IntValue.xml -%%DOCSDIR%%/oocdoc/xml/ADT/LinkedList.xml -%%DOCSDIR%%/oocdoc/xml/ADT/Object/Storage.xml -%%DOCSDIR%%/oocdoc/xml/ADT/Storable.xml -%%DOCSDIR%%/oocdoc/xml/ADT/StringBuffer.xml -%%DOCSDIR%%/oocdoc/xml/Ascii.xml -%%DOCSDIR%%/oocdoc/xml/BinaryRider.xml -%%DOCSDIR%%/oocdoc/xml/C.xml -%%DOCSDIR%%/oocdoc/xml/Channel.xml -%%DOCSDIR%%/oocdoc/xml/CharClass.xml -%%DOCSDIR%%/oocdoc/xml/Codec.xml -%%DOCSDIR%%/oocdoc/xml/Codec/Ascii.xml -%%DOCSDIR%%/oocdoc/xml/Codec/Latin1.xml -%%DOCSDIR%%/oocdoc/xml/Codec/UU.xml -%%DOCSDIR%%/oocdoc/xml/Codec/YEnc.xml -%%DOCSDIR%%/oocdoc/xml/ConvTypes.xml -%%DOCSDIR%%/oocdoc/xml/Err.xml -%%DOCSDIR%%/oocdoc/xml/Exception.xml -%%DOCSDIR%%/oocdoc/xml/Files.xml -%%DOCSDIR%%/oocdoc/xml/HashCode.xml -%%DOCSDIR%%/oocdoc/xml/IO.xml -%%DOCSDIR%%/oocdoc/xml/IO/Address.xml -%%DOCSDIR%%/oocdoc/xml/IO/BinaryRider.xml -%%DOCSDIR%%/oocdoc/xml/IO/Buffer.xml -%%DOCSDIR%%/oocdoc/xml/IO/FileChannel.xml -%%DOCSDIR%%/oocdoc/xml/IO/Memory.xml -%%DOCSDIR%%/oocdoc/xml/IO/Select.xml -%%DOCSDIR%%/oocdoc/xml/IO/Socket.xml -%%DOCSDIR%%/oocdoc/xml/IO/SocketChannel.xml -%%DOCSDIR%%/oocdoc/xml/IO/StdChannels.xml -%%DOCSDIR%%/oocdoc/xml/IO/TextRider.xml -%%DOCSDIR%%/oocdoc/xml/In.xml -%%DOCSDIR%%/oocdoc/xml/IntConv.xml -%%DOCSDIR%%/oocdoc/xml/IntStr.xml -%%DOCSDIR%%/oocdoc/xml/LRealConv.xml -%%DOCSDIR%%/oocdoc/xml/LRealMath.xml -%%DOCSDIR%%/oocdoc/xml/LRealStr.xml -%%DOCSDIR%%/oocdoc/xml/Log.xml -%%DOCSDIR%%/oocdoc/xml/Logger.xml -%%DOCSDIR%%/oocdoc/xml/Logger/TimeStamp.xml -%%DOCSDIR%%/oocdoc/xml/LongStrings.xml -%%DOCSDIR%%/oocdoc/xml/Msg.xml -%%DOCSDIR%%/oocdoc/xml/OS/Files.xml -%%DOCSDIR%%/oocdoc/xml/OS/HostPath.xml -%%DOCSDIR%%/oocdoc/xml/OS/Path.xml -%%DOCSDIR%%/oocdoc/xml/OS/ProcessManagement.xml -%%DOCSDIR%%/oocdoc/xml/OS/ProcessParameters.xml -%%DOCSDIR%%/oocdoc/xml/Object.xml -%%DOCSDIR%%/oocdoc/xml/Object/BigInt.xml -%%DOCSDIR%%/oocdoc/xml/Object/Boxed.xml -%%DOCSDIR%%/oocdoc/xml/Out.xml -%%DOCSDIR%%/oocdoc/xml/Out0.xml -%%DOCSDIR%%/oocdoc/xml/PosixFileDescr.xml -%%DOCSDIR%%/oocdoc/xml/ProgramArgs.xml -%%DOCSDIR%%/oocdoc/xml/RT0.xml -%%DOCSDIR%%/oocdoc/xml/RandomNumbers.xml -%%DOCSDIR%%/oocdoc/xml/Real0.xml -%%DOCSDIR%%/oocdoc/xml/RealConv.xml -%%DOCSDIR%%/oocdoc/xml/RealMath.xml -%%DOCSDIR%%/oocdoc/xml/RealStr.xml -%%DOCSDIR%%/oocdoc/xml/StdChannels.xml -%%DOCSDIR%%/oocdoc/xml/StringSearch.xml -%%DOCSDIR%%/oocdoc/xml/StringSearch/NoMatch.xml -%%DOCSDIR%%/oocdoc/xml/StringSearch/RegexpDFA.xml -%%DOCSDIR%%/oocdoc/xml/StringSearch/RegexpParser.xml -%%DOCSDIR%%/oocdoc/xml/StringSearch/SubstringBF.xml -%%DOCSDIR%%/oocdoc/xml/StringSearch/SubstringBM.xml -%%DOCSDIR%%/oocdoc/xml/Strings.xml -%%DOCSDIR%%/oocdoc/xml/SysClock.xml -%%DOCSDIR%%/oocdoc/xml/Termination.xml -%%DOCSDIR%%/oocdoc/xml/TextRider.xml -%%DOCSDIR%%/oocdoc/xml/Time.xml -%%DOCSDIR%%/oocdoc/xml/URI.xml -%%DOCSDIR%%/oocdoc/xml/URI/Authority/RegistryBased.xml -%%DOCSDIR%%/oocdoc/xml/URI/Authority/ServerBased.xml -%%DOCSDIR%%/oocdoc/xml/URI/Authority/Unparsed.xml -%%DOCSDIR%%/oocdoc/xml/URI/CharClass.xml -%%DOCSDIR%%/oocdoc/xml/URI/Error.xml -%%DOCSDIR%%/oocdoc/xml/URI/Fragment/Unparsed.xml -%%DOCSDIR%%/oocdoc/xml/URI/Parser.xml -%%DOCSDIR%%/oocdoc/xml/URI/Query/Unparsed.xml -%%DOCSDIR%%/oocdoc/xml/URI/Query/WWWForm.xml -%%DOCSDIR%%/oocdoc/xml/URI/Scheme/CurrentDoc.xml -%%DOCSDIR%%/oocdoc/xml/URI/Scheme/File.xml -%%DOCSDIR%%/oocdoc/xml/URI/Scheme/HTTP.xml -%%DOCSDIR%%/oocdoc/xml/URI/Scheme/Hierarchical.xml -%%DOCSDIR%%/oocdoc/xml/URI/Scheme/MailTo.xml -%%DOCSDIR%%/oocdoc/xml/URI/Scheme/NNTP.xml -%%DOCSDIR%%/oocdoc/xml/URI/Scheme/Opaque.xml -%%DOCSDIR%%/oocdoc/xml/URI/String.xml -%%DOCSDIR%%/oocdoc/xml/XML/Basic/DataType.xml -%%DOCSDIR%%/oocdoc/xml/XML/Basic/Element.xml -%%DOCSDIR%%/oocdoc/xml/XML/Basic/Parser.xml -%%DOCSDIR%%/oocdoc/xml/XML/Builder.xml -%%DOCSDIR%%/oocdoc/xml/XML/Builder/Canonical.xml -%%DOCSDIR%%/oocdoc/xml/XML/Builder/Namespaces.xml -%%DOCSDIR%%/oocdoc/xml/XML/Builder/ParserProtocol.xml -%%DOCSDIR%%/oocdoc/xml/XML/Builder/Validation.xml -%%DOCSDIR%%/oocdoc/xml/XML/DTD.xml -%%DOCSDIR%%/oocdoc/xml/XML/EntityResolver.xml -%%DOCSDIR%%/oocdoc/xml/XML/Error.xml -%%DOCSDIR%%/oocdoc/xml/XML/InputBuffer.xml -%%DOCSDIR%%/oocdoc/xml/XML/Locator.xml -%%DOCSDIR%%/oocdoc/xml/XML/Parser.xml -%%DOCSDIR%%/oocdoc/xml/XML/Regexp.xml -%%DOCSDIR%%/oocdoc/xml/XML/UnicodeBuffer.xml -%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec.xml -%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/ASCII.xml -%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/ImportAll.xml -%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/Latin1.xml -%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/UTF16.xml -%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/UTF8.xml -%%DOCSDIR%%/oocdoc/xml/XML/Writer.xml -%%DOCSDIR%%/oocdoc/xml/libadt.xml -%%DOCSDIR%%/oocdoc/xml/libc.xml -%%DOCSDIR%%/oocdoc/xml/liboo2c.xml -%%DOCSDIR%%/oocdoc/xml/libxml.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/ArrayList.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/Arrays.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/Comparator.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/Dictionary.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/Dictionary/AddressKey.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/Dictionary/AddressKey/IntValue.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/Dictionary/IntValue.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/LinkedList.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/Object/Storage.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/Storable.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ADT/StringBuffer.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Ascii.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/BinaryRider.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/C.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Channel.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/CharClass.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Codec.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Codec/Ascii.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Codec/Latin1.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Codec/UU.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Codec/YEnc.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ConvTypes.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Err.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Exception.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Files.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/HashCode.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/Address.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/BinaryRider.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/Buffer.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/FileChannel.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/Memory.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/Select.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/Socket.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/SocketChannel.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/StdChannels.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IO/TextRider.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/In.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IntConv.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/IntStr.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/LRealConv.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/LRealMath.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/LRealStr.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Log.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Logger.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Logger/TimeStamp.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/LongStrings.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Msg.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/OS/Files.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/OS/HostPath.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/OS/Path.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/OS/ProcessManagement.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/OS/ProcessParameters.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Object.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Object/BigInt.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Object/Boxed.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Out.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Out0.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/PosixFileDescr.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/ProgramArgs.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/RT0.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/RandomNumbers.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Real0.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/RealConv.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/RealMath.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/RealStr.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/StdChannels.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/StringSearch.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/StringSearch/NoMatch.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/StringSearch/RegexpDFA.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/StringSearch/RegexpParser.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/StringSearch/SubstringBF.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/StringSearch/SubstringBM.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Strings.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/SysClock.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Termination.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/TextRider.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/Time.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Authority/RegistryBased.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Authority/ServerBased.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Authority/Unparsed.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/CharClass.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Error.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Fragment/Unparsed.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Parser.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Query/Unparsed.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Query/WWWForm.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Scheme/CurrentDoc.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Scheme/File.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Scheme/HTTP.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Scheme/Hierarchical.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Scheme/MailTo.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Scheme/NNTP.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/Scheme/Opaque.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/URI/String.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Basic/DataType.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Basic/Element.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Basic/Parser.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Builder.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Builder/Canonical.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Builder/Namespaces.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Builder/ParserProtocol.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Builder/Validation.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/DTD.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/EntityResolver.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Error.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/InputBuffer.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Locator.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Parser.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Regexp.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/UnicodeBuffer.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/ASCII.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/ImportAll.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/Latin1.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/UTF16.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/UnicodeCodec/UTF8.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/XML/Writer.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/libadt.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/libc.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/liboo2c.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/html/libxml.html +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/ArrayList.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/Arrays.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/Comparator.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/Dictionary.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/Dictionary/AddressKey.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/Dictionary/AddressKey/IntValue.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/Dictionary/IntValue.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/LinkedList.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/Object/Storage.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/Storable.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ADT/StringBuffer.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Ascii.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/BinaryRider.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/C.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Channel.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/CharClass.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Codec.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Codec/Ascii.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Codec/Latin1.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Codec/UU.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Codec/YEnc.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ConvTypes.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Err.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Exception.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Files.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/HashCode.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/Address.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/BinaryRider.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/Buffer.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/FileChannel.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/Memory.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/Select.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/Socket.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/SocketChannel.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/StdChannels.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IO/TextRider.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/In.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IntConv.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/IntStr.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/LRealConv.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/LRealMath.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/LRealStr.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Log.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Logger.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Logger/TimeStamp.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/LongStrings.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Msg.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/OS/Files.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/OS/HostPath.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/OS/Path.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/OS/ProcessManagement.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/OS/ProcessParameters.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Object.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Object/BigInt.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Object/Boxed.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Out.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Out0.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/PosixFileDescr.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/ProgramArgs.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/RT0.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/RandomNumbers.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Real0.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/RealConv.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/RealMath.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/RealStr.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/StdChannels.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/StringSearch.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/StringSearch/NoMatch.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/StringSearch/RegexpDFA.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/StringSearch/RegexpParser.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/StringSearch/SubstringBF.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/StringSearch/SubstringBM.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Strings.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/SysClock.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Termination.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/TextRider.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/Time.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Authority/RegistryBased.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Authority/ServerBased.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Authority/Unparsed.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/CharClass.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Error.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Fragment/Unparsed.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Parser.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Query/Unparsed.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Query/WWWForm.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Scheme/CurrentDoc.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Scheme/File.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Scheme/HTTP.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Scheme/Hierarchical.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Scheme/MailTo.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Scheme/NNTP.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/Scheme/Opaque.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/URI/String.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Basic/DataType.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Basic/Element.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Basic/Parser.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Builder.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Builder/Canonical.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Builder/Namespaces.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Builder/ParserProtocol.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Builder/Validation.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/DTD.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/EntityResolver.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Error.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/InputBuffer.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Locator.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Parser.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Regexp.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/UnicodeBuffer.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/ASCII.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/ImportAll.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/Latin1.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/UTF16.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/UnicodeCodec/UTF8.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/XML/Writer.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/libadt.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/libc.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/liboo2c.xml +%%PORTDOCS%%%%DOCSDIR%%/oocdoc/xml/libxml.xml lib/oo2c/pkginfo.xml lib/oo2c/pkginfo/liboo2c.xml lib/oo2c/pkginfo/oo2c.xml @@ -643,7 +647,7 @@ lib/oo2c/sym/liboo2c.Doc lib/oo2c/sym/liboo2c.Sym lib/oo2c/sym/libxml.Doc lib/oo2c/sym/libxml.Sym -@dirrm %%DOCSDIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm lib/oo2c/sym/XML/UnicodeCodec @dirrm lib/oo2c/sym/XML/Builder @dirrm lib/oo2c/sym/XML/Basic From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 17:56:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC80A585 for ; Wed, 22 Jan 2014 17:56:27 +0000 (UTC) Received: from mout.gmx.net (mout.gmx.net [212.227.17.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 517CA11C3 for ; Wed, 22 Jan 2014 17:56:27 +0000 (UTC) Received: from [192.168.0.100] ([87.139.233.65]) by mail.gmx.com (mrgmx102) with ESMTPSA (Nemesis) id 0M8pKi-1W0ZSs1ntU-00CAIF for ; Wed, 22 Jan 2014 18:56:22 +0100 Message-ID: <52E00642.6030504@gmx.de> Date: Wed, 22 Jan 2014 18:56:18 +0100 From: olli hauer User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Mathieu Arnold Subject: Re: svn commit: r340719 - in head: Tools/scripts/pkg-stash accessibility/jovie accessibility/yasr/files arabic/ae_fonts_mono/files arabic/ae_fonts_ttf/files arabic/kacst_fonts/files arabic/khotot/files... References: <201401221552.s0MFqBK6007511@svn.freebsd.org> In-Reply-To: <201401221552.s0MFqBK6007511@svn.freebsd.org> X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:np22W8eLCSMVKp8PGGqrHh2Snd3OmB0nIK//BdtCN4w9n5uqZPy a4jLx8ni4t3PjpuY6e/FOlagOqZLtpH+tqFFT8OG58P+JI+wFxHT+WcUqi09z1BFlInW+EM wgY97H9hfFuLGLeBbpGexB3cHpgXtpdaD1joINUfI7uQGZ79pcKlq0yhoMKuRLfAv8DhJ6/ juskzljtcpuFMyiylAtXg== 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.17 Precedence: list List-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, 22 Jan 2014 17:56:27 -0000 On 2014-01-22 16:52, Mathieu Arnold wrote: > Author: mat > Date: Wed Jan 22 15:52:06 2014 > New Revision: 340719 > URL: http://svnweb.freebsd.org/changeset/ports/340719 > QAT: https://qat.redports.org/buildarchive/r340719/ > > Log: > Fixup props the rest of pkg-* > > With hat: portmgr > Sponsored by: Absolight > > Modified: > head/math/saga/pkg-message (contents, props changed) > Directory Properties: > head/Tools/scripts/pkg-stash/pkg-list.sh (props changed) > head/Tools/scripts/pkg-stash/pkg-stash.pl (props changed) > head/accessibility/jovie/pkg-message (props changed) I suspect fixing all files for all ports per $cat would take some load from the servers E.g. portsnap has to build the update for a port only one time (instead once for Makefile* another once for pkg-p* files maybe a third for distfiles ...) But maybe I'm wrong with my assumption ... -- olli From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 18:00:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40D446DB; Wed, 22 Jan 2014 18:00:52 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EF8A91244; Wed, 22 Jan 2014 18:00:51 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 888FABDC71; Wed, 22 Jan 2014 19:00:50 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 67C7ABDC69; Wed, 22 Jan 2014 19:00:50 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id ADAE46140; Wed, 22 Jan 2014 19:00:49 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id F076A6837007; Wed, 22 Jan 2014 19:00:48 +0100 (CET) Date: Wed, 22 Jan 2014 19:00:48 +0100 From: Mathieu Arnold To: olli hauer , Mathieu Arnold Subject: Re: svn commit: r340719 - in head: Tools/scripts/pkg-stash accessibility/jovie accessibility/yasr/files arabic/ae_fonts_mono/files arabic/ae_fonts_ttf/files arabic/kacst_fonts/files arabic/khotot/files... Message-ID: <00B046E893AE32B58DA681B2@ogg.in.absolight.net> In-Reply-To: <52E00642.6030504@gmx.de> References: <201401221552.s0MFqBK6007511@svn.freebsd.org> <52E00642.6030504@gmx.de> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline 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.17 Precedence: list List-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, 22 Jan 2014 18:00:52 -0000 +--On 22 janvier 2014 18:56:18 +0100 olli hauer wrote: | On 2014-01-22 16:52, Mathieu Arnold wrote: |> Author: mat |> Date: Wed Jan 22 15:52:06 2014 |> New Revision: 340719 |> URL: http://svnweb.freebsd.org/changeset/ports/340719 |> QAT: https://qat.redports.org/buildarchive/r340719/ |> |> Log: |> Fixup props the rest of pkg-* |> |> With hat: portmgr |> Sponsored by: Absolight |> |> Modified: |> head/math/saga/pkg-message (contents, props changed) |> Directory Properties: |> head/Tools/scripts/pkg-stash/pkg-list.sh (props changed) |> head/Tools/scripts/pkg-stash/pkg-stash.pl (props changed) |> head/accessibility/jovie/pkg-message (props changed) | | | I suspect fixing all files for all ports per $cat would take some load | from the servers E.g. portsnap has to build the update for a port only | one time (instead once for Makefile* another once for pkg-p* files maybe | a third for distfiles ...) | | But maybe I'm wrong with my assumption ... Most files didn't change at all. The one who did are the one with the $FreeBSD$ keyword, and they're a minority (except in 340722 where, yes, 10k had it.) -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 18:08:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08F9C8EA; Wed, 22 Jan 2014 18:08:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E864C12B1; Wed, 22 Jan 2014 18:07:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MI7xDG095901; Wed, 22 Jan 2014 18:07:59 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MI7xOH095900; Wed, 22 Jan 2014 18:07:59 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401221807.s0MI7xOH095900@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 18:07:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340727 - head/devel/lua-posix X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 18:08:00 -0000 Author: bapt Date: Wed Jan 22 18:07:59 2014 New Revision: 340727 URL: http://svnweb.freebsd.org/changeset/ports/340727 QAT: https://qat.redports.org/buildarchive/r340727/ Log: Add an explicit dependency on perl Reported by: pkg-fallout Modified: head/devel/lua-posix/Makefile Modified: head/devel/lua-posix/Makefile ============================================================================== --- head/devel/lua-posix/Makefile Wed Jan 22 17:54:34 2014 (r340726) +++ head/devel/lua-posix/Makefile Wed Jan 22 18:07:59 2014 (r340727) @@ -12,7 +12,8 @@ COMMENT= POSIX layer for Lua LICENSE= MIT -USES= lua +USES= lua perl5 +USE_PERL5= build GNU_CONFIGURE= yes CONFIGURE_ENV= LUA_INCLUDE=-I${LUA_INCDIR} \ LUA=${LOCALBASE}/bin/lua${LUA_VER_STR} From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 18:11:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B761CAB4; Wed, 22 Jan 2014 18:11:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A35451347; Wed, 22 Jan 2014 18:11:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MIBUrv099118; Wed, 22 Jan 2014 18:11:30 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MIBUh7099116; Wed, 22 Jan 2014 18:11:30 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201401221811.s0MIBUh7099116@svn.freebsd.org> From: Bryan Drewery Date: Wed, 22 Jan 2014 18:11:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340728 - in head/devel: valgrind valgrind-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.17 Precedence: list List-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, 22 Jan 2014 18:11:30 -0000 Author: bdrewery Date: Wed Jan 22 18:11:29 2014 New Revision: 340728 URL: http://svnweb.freebsd.org/changeset/ports/340728 QAT: https://qat.redports.org/buildarchive/r340728/ Log: - Bump PORTREVISION to ensure rebuild after HEAD r260290 to fix on head, stable/10 PR: ports/185292 Reported by: Robert David Modified: head/devel/valgrind-devel/Makefile head/devel/valgrind/Makefile Modified: head/devel/valgrind-devel/Makefile ============================================================================== --- head/devel/valgrind-devel/Makefile Wed Jan 22 18:07:59 2014 (r340727) +++ head/devel/valgrind-devel/Makefile Wed Jan 22 18:11:29 2014 (r340728) @@ -3,6 +3,7 @@ PORTNAME= valgrind PORTVERSION= 3.8.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= http://cdn.bitbucket.org/stass/valgrind-freebsd/downloads/ \ Modified: head/devel/valgrind/Makefile ============================================================================== --- head/devel/valgrind/Makefile Wed Jan 22 18:07:59 2014 (r340727) +++ head/devel/valgrind/Makefile Wed Jan 22 18:11:29 2014 (r340728) @@ -3,6 +3,7 @@ PORTNAME= valgrind PORTVERSION= 3.8.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= http://cdn.bitbucket.org/stass/valgrind-freebsd/downloads/ \ From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 18:36:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 955D2597; Wed, 22 Jan 2014 18:36:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8183315C0; Wed, 22 Jan 2014 18:36:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MIa7v1007249; Wed, 22 Jan 2014 18:36:07 GMT (envelope-from theraven@svn.freebsd.org) Received: (from theraven@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MIa7Ur007247; Wed, 22 Jan 2014 18:36:07 GMT (envelope-from theraven@svn.freebsd.org) Message-Id: <201401221836.s0MIa7Ur007247@svn.freebsd.org> From: David Chisnall Date: Wed, 22 Jan 2014 18:36:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340729 - 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.17 Precedence: list List-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, 22 Jan 2014 18:36:07 -0000 Author: theraven Date: Wed Jan 22 18:36:06 2014 New Revision: 340729 URL: http://svnweb.freebsd.org/changeset/ports/340729 QAT: https://qat.redports.org/buildarchive/r340729/ Log: Fix GNUstep backend naming in bsd.gnustep.mk. Approved by: bapt (mentor, implicit) Modified: head/Mk/bsd.gnustep.mk Modified: head/Mk/bsd.gnustep.mk ============================================================================== --- head/Mk/bsd.gnustep.mk Wed Jan 22 18:11:29 2014 (r340728) +++ head/Mk/bsd.gnustep.mk Wed Jan 22 18:36:06 2014 (r340729) @@ -209,7 +209,7 @@ RUN_DEPENDS+= ${GNUSTEP_SYSTEM_LIBRARIES # .if defined(USE_GNUSTEP_BACK) BACKSUFFIX?= -024 -BACKCAIRO= libgnustep-cairo${BACKSUFFIX} +BACKCAIRO= libgnustep-back${BACKSUFFIX} BUILD_DEPENDS+= ${GNUSTEP_SYSTEM_BUNDLES}/${BACKCAIRO}.bundle/${BACKCAIRO}:${PORTSDIR}/${GNUSTEP_BACK_PORT} RUN_DEPENDS+= ${GNUSTEP_SYSTEM_BUNDLES}/${BACKCAIRO}.bundle/${BACKCAIRO}:${PORTSDIR}/${GNUSTEP_BACK_PORT} From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 20:47:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E89AAF5; Wed, 22 Jan 2014 20:47:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D47A711C4; Wed, 22 Jan 2014 20:47:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MKl4Hm055764; Wed, 22 Jan 2014 20:47:04 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MKl4HG055762; Wed, 22 Jan 2014 20:47:04 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401222047.s0MKl4HG055762@svn.freebsd.org> From: Antoine Brodin Date: Wed, 22 Jan 2014 20:47:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340730 - 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.17 Precedence: list List-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, 22 Jan 2014 20:47:05 -0000 Author: antoine Date: Wed Jan 22 20:47:04 2014 New Revision: 340730 URL: http://svnweb.freebsd.org/changeset/ports/340730 QAT: https://qat.redports.org/buildarchive/r340730/ Log: Make it possible to stage ruby gems using mkmf as a regular user Reviewed by: bapt With hat: portmgr Modified: head/Mk/bsd.ruby.mk Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Wed Jan 22 18:36:06 2014 (r340729) +++ head/Mk/bsd.ruby.mk Wed Jan 22 20:47:04 2014 (r340730) @@ -440,6 +440,7 @@ GEMFILES= ${DISTNAME}${EXTRACT_SUFX} RUBYGEM_ARGS=-l --no-update-sources --no-ri --install-dir ${PREFIX}/lib/ruby/gems/${RUBY_VER} .else RUBYGEM_ARGS=-l --no-update-sources --no-ri --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin +GEM_ENV+= RB_USER_INSTALL=yes .endif .if defined(NOPORTDOCS) RUBYGEM_ARGS+= --no-rdoc From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 20:52:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5ED0435B; Wed, 22 Jan 2014 20:52:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4B010127D; Wed, 22 Jan 2014 20:52:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MKqWWI058988; Wed, 22 Jan 2014 20:52:32 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MKqWkP058987; Wed, 22 Jan 2014 20:52:32 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401222052.s0MKqWkP058987@svn.freebsd.org> From: Rusmir Dusko Date: Wed, 22 Jan 2014 20:52:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340731 - head/multimedia/youtube-viewer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 20:52:32 -0000 Author: nemysis Date: Wed Jan 22 20:52:31 2014 New Revision: 340731 URL: http://svnweb.freebsd.org/changeset/ports/340731 QAT: https://qat.redports.org/buildarchive/r340731/ Log: - Mark DEPRECATED, set EXPIRATION_DATE PR: ports/186013 Submitted by: nemysis (self) Approved by: maintainer Modified: head/multimedia/youtube-viewer/Makefile Modified: head/multimedia/youtube-viewer/Makefile ============================================================================== --- head/multimedia/youtube-viewer/Makefile Wed Jan 22 20:47:04 2014 (r340730) +++ head/multimedia/youtube-viewer/Makefile Wed Jan 22 20:52:31 2014 (r340731) @@ -26,6 +26,9 @@ USE_PERL5= run NO_BUILD= yes PLIST_FILES= bin/youtube-viewer +DEPRECATED= Development ceased for 2.5 branch, conflict with gtk-youtube-viewer +EXPIRATION_DATE=2014-02-23 + NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s|#!/usr/bin/perl|#!${PERL}|g" ${WRKDIR}/youtube-viewer From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 20:58:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 926315D8; Wed, 22 Jan 2014 20:58:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 647BE12BE; Wed, 22 Jan 2014 20:58:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MKwHY2059699; Wed, 22 Jan 2014 20:58:17 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MKwHhg059697; Wed, 22 Jan 2014 20:58:17 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401222058.s0MKwHhg059697@svn.freebsd.org> From: Rusmir Dusko Date: Wed, 22 Jan 2014 20:58:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340732 - in head/multimedia/smplayer: . 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.17 Precedence: list List-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, 22 Jan 2014 20:58:17 -0000 Author: nemysis Date: Wed Jan 22 20:58:16 2014 New Revision: 340732 URL: http://svnweb.freebsd.org/changeset/ports/340732 QAT: https://qat.redports.org/buildarchive/r340732/ Log: - Bump PORTREVISION for dependency change - Add dependency for multimedia/smplayer-skins - Add DOCS Option - Add pkg-message about multimedia/smtube - Strip executable PR: ports/186018 Submitted by: nemysis (self) Approved by: maintainer Added: head/multimedia/smplayer/files/pkg-message.in (contents, props changed) Modified: head/multimedia/smplayer/Makefile Modified: head/multimedia/smplayer/Makefile ============================================================================== --- head/multimedia/smplayer/Makefile Wed Jan 22 20:52:31 2014 (r340731) +++ head/multimedia/smplayer/Makefile Wed Jan 22 20:58:16 2014 (r340732) @@ -3,6 +3,7 @@ PORTNAME= smplayer DISTVERSION= 0.8.6 +PORTREVISION= 1 CATEGORIES= multimedia audio kde MASTER_SITES= SF/${PORTNAME}/SMPlayer/${PORTVERSION} @@ -10,6 +11,7 @@ MAINTAINER= dhn@FreeBSD.org COMMENT= Complete front-end based on Qt4 for mplayer RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer \ + ${LOCALBASE}/share/smplayer/themes:${PORTSDIR}/multimedia/smplayer-skins \ ${LOCALBASE}/share/smplayer/themes:${PORTSDIR}/multimedia/smplayer-themes USE_QT4= gui network script xml moc_build rcc_build uic_build \ @@ -26,6 +28,10 @@ INSTALLS_ICONS= yes PORTDOCS= Changelog Copying.txt Install.txt Not_so_obvious_things.txt \ Readme.txt Release_notes.txt +OPTIONS_DEFINE= DOCS + +SUB_FILES= pkg-message + .include post-patch: @@ -36,9 +42,9 @@ post-patch: ${WRKSRC}/Makefile post-install: -.if ${PORT_OPTIONS:MDOCS} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} -.endif + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include Added: head/multimedia/smplayer/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/smplayer/files/pkg-message.in Wed Jan 22 20:58:16 2014 (r340732) @@ -0,0 +1,7 @@ +=============================================================================== + +SMPlayer has been installed. + +For Youtube Videos please use multimedia/smtube port. + +=============================================================================== From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 21:15:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A93BB03; Wed, 22 Jan 2014 21:15:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 66029146E; Wed, 22 Jan 2014 21:15:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MLFOda067025; Wed, 22 Jan 2014 21:15:24 GMT (envelope-from decke@svn.freebsd.org) Received: (from decke@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MLFOkF067024; Wed, 22 Jan 2014 21:15:24 GMT (envelope-from decke@svn.freebsd.org) Message-Id: <201401222115.s0MLFOkF067024@svn.freebsd.org> From: Bernhard Froehlich Date: Wed, 22 Jan 2014 21:15:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340733 - head/audio/decibel-audio-player X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 21:15:24 -0000 Author: decke Date: Wed Jan 22 21:15:23 2014 New Revision: 340733 URL: http://svnweb.freebsd.org/changeset/ports/340733 QAT: https://qat.redports.org/buildarchive/r340733/ Log: - Fix OGG option after refactoring With hat: portmgr Modified: head/audio/decibel-audio-player/Makefile Modified: head/audio/decibel-audio-player/Makefile ============================================================================== --- head/audio/decibel-audio-player/Makefile Wed Jan 22 20:58:16 2014 (r340732) +++ head/audio/decibel-audio-player/Makefile Wed Jan 22 21:15:23 2014 (r340733) @@ -58,7 +58,7 @@ USE_GSTREAMER+= faad .endif .if ${PORT_OPTIONS:MOGG} -USE_GSTREAMER+= libogg.so +USE_GSTREAMER+= ogg .endif .if ${PORT_OPTIONS:MSPEEX} From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 21:49:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 818D893D; Wed, 22 Jan 2014 21:49:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6DA68171E; Wed, 22 Jan 2014 21:49:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MLnpXj079129; Wed, 22 Jan 2014 21:49:51 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MLnpmS079128; Wed, 22 Jan 2014 21:49:51 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401222149.s0MLnpmS079128@svn.freebsd.org> From: Antoine Brodin Date: Wed, 22 Jan 2014 21:49:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340734 - head/graphics/gnustep-slideshowkit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 21:49:51 -0000 Author: antoine Date: Wed Jan 22 21:49:50 2014 New Revision: 340734 URL: http://svnweb.freebsd.org/changeset/ports/340734 QAT: https://qat.redports.org/buildarchive/r340734/ Log: Stage support Modified: head/graphics/gnustep-slideshowkit/Makefile Modified: head/graphics/gnustep-slideshowkit/Makefile ============================================================================== --- head/graphics/gnustep-slideshowkit/Makefile Wed Jan 22 21:15:23 2014 (r340733) +++ head/graphics/gnustep-slideshowkit/Makefile Wed Jan 22 21:49:50 2014 (r340734) @@ -17,5 +17,4 @@ USE_GNUSTEP_BUILD= yes USE_GNUSTEP_INSTALL= yes USE_GNUSTEP_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 21:50:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B3FDA33; Wed, 22 Jan 2014 21:50:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37D31172C; Wed, 22 Jan 2014 21:50:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MLoxbb081714; Wed, 22 Jan 2014 21:50:59 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MLowJZ081711; Wed, 22 Jan 2014 21:50:58 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201401222150.s0MLowJZ081711@svn.freebsd.org> From: Pawel Pekala Date: Wed, 22 Jan 2014 21:50:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340735 - head/net/yaz X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 21:50:59 -0000 Author: pawel Date: Wed Jan 22 21:50:58 2014 New Revision: 340735 URL: http://svnweb.freebsd.org/changeset/ports/340735 QAT: https://qat.redports.org/buildarchive/r340735/ Log: Update to version 5.0.11 Modified: head/net/yaz/Makefile head/net/yaz/distinfo head/net/yaz/pkg-plist Modified: head/net/yaz/Makefile ============================================================================== --- head/net/yaz/Makefile Wed Jan 22 21:49:50 2014 (r340734) +++ head/net/yaz/Makefile Wed Jan 22 21:50:58 2014 (r340735) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= yaz -PORTVERSION= 5.0.9 +PORTVERSION= 5.0.11 CATEGORIES= net MASTER_SITES= http://ftp.indexdata.dk/pub/yaz/ @@ -21,6 +21,7 @@ GNU_CONFIGURE= yes USE_OPENSSL= yes USE_GNOME= libxml2 libxslt USE_LDCONFIG= yes +MAKE_JOBS_UNSAFE= yes CONFIGURE_ARGS+=--enable-shared --with-openssl=${OPENSSLBASE} \ --with-iconv=${ICONV_PREFIX} --with-xml2=${LOCALBASE} \ Modified: head/net/yaz/distinfo ============================================================================== --- head/net/yaz/distinfo Wed Jan 22 21:49:50 2014 (r340734) +++ head/net/yaz/distinfo Wed Jan 22 21:50:58 2014 (r340735) @@ -1,2 +1,2 @@ -SHA256 (yaz-5.0.9.tar.gz) = bf84f42cd442564bb911e869033c876c7ff561e203ae35504b8ca64f8575a8eb -SIZE (yaz-5.0.9.tar.gz) = 2495037 +SHA256 (yaz-5.0.11.tar.gz) = 2054160a0b17a1b0b47535d2af6b94b18946d81936615592ec610dbd88243ac6 +SIZE (yaz-5.0.11.tar.gz) = 2497057 Modified: head/net/yaz/pkg-plist ============================================================================== --- head/net/yaz/pkg-plist Wed Jan 22 21:49:50 2014 (r340734) +++ head/net/yaz/pkg-plist Wed Jan 22 21:50:58 2014 (r340735) @@ -15,6 +15,7 @@ include/yaz/ccl.h include/yaz/ccl_xml.h include/yaz/charneg.h include/yaz/comstack.h +include/yaz/cookie.h include/yaz/copy_types.h include/yaz/cql.h include/yaz/daemon.h From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 21:54:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F04D6B89; Wed, 22 Jan 2014 21:54:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CFAED17A8; Wed, 22 Jan 2014 21:54:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MLsoXT082489; Wed, 22 Jan 2014 21:54:50 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MLsoTv082486; Wed, 22 Jan 2014 21:54:50 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401222154.s0MLsoTv082486@svn.freebsd.org> From: Marcus von Appen Date: Wed, 22 Jan 2014 21:54:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340736 - in head/devel/sdl12: . 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.17 Precedence: list List-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, 22 Jan 2014 21:54:51 -0000 Author: mva Date: Wed Jan 22 21:54:49 2014 New Revision: 340736 URL: http://svnweb.freebsd.org/changeset/ports/340736 QAT: https://qat.redports.org/buildarchive/r340736/ Log: - Enable stagedir support - Add LICENSE - Simplify OPTION handling - Convert USE_GMAKE=yes -> USES=gmake Added: head/devel/sdl12/files/patch-Makefile.in (contents, props changed) Deleted: head/devel/sdl12/files/man3 Modified: head/devel/sdl12/Makefile head/devel/sdl12/pkg-plist Modified: head/devel/sdl12/Makefile ============================================================================== --- head/devel/sdl12/Makefile Wed Jan 22 21:50:58 2014 (r340735) +++ head/devel/sdl12/Makefile Wed Jan 22 21:54:49 2014 (r340736) @@ -12,22 +12,22 @@ DISTNAME= SDL-${PORTVERSION} MAINTAINER= mva@FreeBSD.org COMMENT= Cross-platform multimedia development API +LICENSE= LGPL21 + BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -USE_GMAKE= yes GNU_CONFIGURE= yes WANT_GNOME= yes -USES= pathfix pkgconfig iconv +USES= pathfix pkgconfig iconv gmake CONFIGURE_ENV= ac_cv_header_libusbhid_h=no CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ARGS+=--disable-alsa --disable-alsatest -CONFIGURE_ARGS+=--disable-arts -CONFIGURE_ARGS+=--disable-video-directfb +CONFIGURE_ARGS+=--disable-alsa --disable-alsatest \ + --disable-arts --disable-video-directfb EXAMPLES= test/*.c test/*.bmp test/*.dat test/*.xbm test/*.wav DOCS= BUGS COPYING CREDITS README README-SDL.txt WhatsNew docs.html @@ -42,90 +42,41 @@ VGL_DESC= Video Graphics Lib support OPTIONS_DEFAULT+= VGL .endif -NO_STAGE= yes -.include - -MAN3!= ${CAT} ${FILESDIR}/man3 - -.if ${PORT_OPTIONS:MAALIB} -CONFIGURE_ARGS+= --enable-video-aalib -LIB_DEPENDS+= aa:${PORTSDIR}/graphics/aalib -.else -CONFIGURE_ARGS+= --disable-video-aalib -.endif - -.if ${PORT_OPTIONS:MESOUND} -USE_GNOME+= esound -CONFIGURE_ARGS+= --enable-esd -.else -CONFIGURE_ARGS+= --disable-esd --disable-esdtest -.endif - -.if ${PORT_OPTIONS:MGGI} -LIB_DEPENDS+= ggi:${PORTSDIR}/graphics/libggi -CONFIGURE_ARGS+= --enable-video-ggi -.else -CONFIGURE_ARGS+= --disable-video-ggi -.endif - -.if ${PORT_OPTIONS:MNAS} -LIB_DEPENDS+= audio:${PORTSDIR}/audio/nas -.else -CONFIGURE_ARGS+= --disable-nas -.endif - -.if ${PORT_OPTIONS:MOPENGL} -CONFIGURE_ARGS+= --enable-video-opengl -USE_GL= yes -.else -CONFIGURE_ARGS+= --disable-video-opengl -.endif - -.if ${PORT_OPTIONS:MOSS} -CONFIGURE_ARGS+= --enable-oss -.else -CONFIGURE_ARGS+= --disable-oss -.endif +AALIB_CONFIGURE_ENABLE= video-aalib +AALIB_LIB_DEPENDS= libaa.so:${PORTSDIR}/graphics/aalib +ESOUND_USE= GNOME=esound +ESOUND_CONFIGURE_ENABLE= esd esdtest +GGI_CONFIGURE_ENABLE= video-ggi +GGI_LIB_DEPENDS= libggi.so:${PORTSDIR}/graphics/libggi +NAS_CONFIGURE_ENABLE= nas +NAS_LIB_DEPENDS= libaudio.so:${PORTSDIR}/audio/nas +OPENGL_CONFIGURE_ENABLE= video-opengl +OPENGL_USE= GL=yes +OSS_CONFIGURE_ENABLE= oss +PULSEAUDIO_CONFIGURE_ENABLE= pulseaudio +PULSEAUDIO_LIB_DEPENDS= libpulse-simple.so:${PORTSDIR}/audio/pulseaudio +SVGALIB_CONFIGURE_ENABLE= video-svga +SVGALIB_LIB_DEPENDS= libvga.so:${PORTSDIR}/graphics/svgalib +VGL_CONFIGURE_ENABLE= video-vgl +X11_CONFIGURE_ENABLE= video-x11 +X11_USE= XORG= x11 xrender xrandr xextproto -.if ${PORT_OPTIONS:MPULSEAUDIO} -LIB_DEPENDS+= pulse-simple:${PORTSDIR}/audio/pulseaudio -.else -CONFIGURE_ARGS+= --disable-pulseaudio -.endif - -.if ${PORT_OPTIONS:MSVGALIB} -LIB_DEPENDS+= vga:${PORTSDIR}/graphics/svgalib -CONFIGURE_ARGS+= --enable-video-svga -.else -CONFIGURE_ARGS+= --disable-video-svga -.endif +.include .if ${PORT_OPTIONS:MVGL} -CONFIGURE_ARGS+= --enable-video-vgl DISPLAY_MSG= ${CAT} ${PKGMESSAGE} .else -CONFIGURE_ARGS+= --disable-video-vgl PKGMESSAGE= none DISPLAY_MSG= ${DO_NADA} .endif -.if ${PORT_OPTIONS:MX11} -USE_XORG= x11 xrender xrandr xextproto -.else -CONFIGURE_ARGS+= --disable-video-x11 -.endif - post-install: -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} &&\ - ${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ &&\ + ${MKDIR} ${STAGEDIR}${DOCSDIR} &&\ + ${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/ &&\ cd ${WRKSRC} &&\ - ${COPYTREE_SHARE} docs ${DOCSDIR}/ "! -regex .*/man3.*" -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR} &&\ - ${INSTALL_DATA} ${EXAMPLES:S,^,${WRKSRC}/,} ${EXAMPLESDIR}/ -.endif + ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}/ "! -regex .*/man3.*" + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} &&\ + ${INSTALL_DATA} ${EXAMPLES:S,^,${WRKSRC}/,} ${STAGEDIR}${EXAMPLESDIR}/ @${DISPLAY_MSG} -.include +.include Added: head/devel/sdl12/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sdl12/files/patch-Makefile.in Wed Jan 22 21:54:49 2014 (r340736) @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2014-01-22 22:33:52.000000000 +0100 ++++ Makefile.in 2014-01-22 22:34:15.000000000 +0100 +@@ -49,7 +49,7 @@ + LT_CURRENT = @LT_CURRENT@ + LT_RELEASE = @LT_RELEASE@ + LT_REVISION = @LT_REVISION@ +-LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) ++LT_LDFLAGS = -no-undefined -rpath $(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) + + all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) + Modified: head/devel/sdl12/pkg-plist ============================================================================== --- head/devel/sdl12/pkg-plist Wed Jan 22 21:50:58 2014 (r340735) +++ head/devel/sdl12/pkg-plist Wed Jan 22 21:54:49 2014 (r340736) @@ -39,6 +39,180 @@ lib/libSDL.a lib/libSDLmain.a lib/libSDLmain.la libdata/pkgconfig/sdl.pc +man/man3/SDLKey.3.gz +man/man3/SDL_ActiveEvent.3.gz +man/man3/SDL_AddTimer.3.gz +man/man3/SDL_AudioCVT.3.gz +man/man3/SDL_AudioSpec.3.gz +man/man3/SDL_BlitSurface.3.gz +man/man3/SDL_BuildAudioCVT.3.gz +man/man3/SDL_CD.3.gz +man/man3/SDL_CDClose.3.gz +man/man3/SDL_CDEject.3.gz +man/man3/SDL_CDName.3.gz +man/man3/SDL_CDNumDrives.3.gz +man/man3/SDL_CDOpen.3.gz +man/man3/SDL_CDPause.3.gz +man/man3/SDL_CDPlay.3.gz +man/man3/SDL_CDPlayTracks.3.gz +man/man3/SDL_CDResume.3.gz +man/man3/SDL_CDStatus.3.gz +man/man3/SDL_CDStop.3.gz +man/man3/SDL_CDtrack.3.gz +man/man3/SDL_CloseAudio.3.gz +man/man3/SDL_Color.3.gz +man/man3/SDL_CondBroadcast.3.gz +man/man3/SDL_CondSignal.3.gz +man/man3/SDL_CondWait.3.gz +man/man3/SDL_CondWaitTimeout.3.gz +man/man3/SDL_ConvertAudio.3.gz +man/man3/SDL_ConvertSurface.3.gz +man/man3/SDL_CreateCond.3.gz +man/man3/SDL_CreateCursor.3.gz +man/man3/SDL_CreateMutex.3.gz +man/man3/SDL_CreateRGBSurface.3.gz +man/man3/SDL_CreateRGBSurfaceFrom.3.gz +man/man3/SDL_CreateSemaphore.3.gz +man/man3/SDL_CreateThread.3.gz +man/man3/SDL_CreateYUVOverlay.3.gz +man/man3/SDL_Delay.3.gz +man/man3/SDL_DestroyCond.3.gz +man/man3/SDL_DestroyMutex.3.gz +man/man3/SDL_DestroySemaphore.3.gz +man/man3/SDL_DisplayFormat.3.gz +man/man3/SDL_DisplayFormatAlpha.3.gz +man/man3/SDL_DisplayYUVOverlay.3.gz +man/man3/SDL_EnableKeyRepeat.3.gz +man/man3/SDL_EnableUNICODE.3.gz +man/man3/SDL_Event.3.gz +man/man3/SDL_EventState.3.gz +man/man3/SDL_ExposeEvent.3.gz +man/man3/SDL_FillRect.3.gz +man/man3/SDL_Flip.3.gz +man/man3/SDL_FreeCursor.3.gz +man/man3/SDL_FreeSurface.3.gz +man/man3/SDL_FreeWAV.3.gz +man/man3/SDL_FreeYUVOverlay.3.gz +man/man3/SDL_GL_GetAttribute.3.gz +man/man3/SDL_GL_GetProcAddress.3.gz +man/man3/SDL_GL_LoadLibrary.3.gz +man/man3/SDL_GL_SetAttribute.3.gz +man/man3/SDL_GL_SwapBuffers.3.gz +man/man3/SDL_GLattr.3.gz +man/man3/SDL_GetAppState.3.gz +man/man3/SDL_GetAudioStatus.3.gz +man/man3/SDL_GetClipRect.3.gz +man/man3/SDL_GetCursor.3.gz +man/man3/SDL_GetError.3.gz +man/man3/SDL_GetEventFilter.3.gz +man/man3/SDL_GetGamma.3.gz +man/man3/SDL_GetGammaRamp.3.gz +man/man3/SDL_GetKeyName.3.gz +man/man3/SDL_GetKeyState.3.gz +man/man3/SDL_GetModState.3.gz +man/man3/SDL_GetMouseState.3.gz +man/man3/SDL_GetRGB.3.gz +man/man3/SDL_GetRGBA.3.gz +man/man3/SDL_GetRelativeMouseState.3.gz +man/man3/SDL_GetThreadID.3.gz +man/man3/SDL_GetTicks.3.gz +man/man3/SDL_GetVideoInfo.3.gz +man/man3/SDL_GetVideoSurface.3.gz +man/man3/SDL_Init.3.gz +man/man3/SDL_InitSubSystem.3.gz +man/man3/SDL_JoyAxisEvent.3.gz +man/man3/SDL_JoyBallEvent.3.gz +man/man3/SDL_JoyButtonEvent.3.gz +man/man3/SDL_JoyHatEvent.3.gz +man/man3/SDL_JoystickClose.3.gz +man/man3/SDL_JoystickEventState.3.gz +man/man3/SDL_JoystickGetAxis.3.gz +man/man3/SDL_JoystickGetBall.3.gz +man/man3/SDL_JoystickGetButton.3.gz +man/man3/SDL_JoystickGetHat.3.gz +man/man3/SDL_JoystickIndex.3.gz +man/man3/SDL_JoystickName.3.gz +man/man3/SDL_JoystickNumAxes.3.gz +man/man3/SDL_JoystickNumBalls.3.gz +man/man3/SDL_JoystickNumButtons.3.gz +man/man3/SDL_JoystickNumHats.3.gz +man/man3/SDL_JoystickOpen.3.gz +man/man3/SDL_JoystickOpened.3.gz +man/man3/SDL_JoystickUpdate.3.gz +man/man3/SDL_KeyboardEvent.3.gz +man/man3/SDL_KillThread.3.gz +man/man3/SDL_ListModes.3.gz +man/man3/SDL_LoadBMP.3.gz +man/man3/SDL_LoadWAV.3.gz +man/man3/SDL_LockAudio.3.gz +man/man3/SDL_LockSurface.3.gz +man/man3/SDL_LockYUVOverlay.3.gz +man/man3/SDL_MapRGB.3.gz +man/man3/SDL_MapRGBA.3.gz +man/man3/SDL_MixAudio.3.gz +man/man3/SDL_MouseButtonEvent.3.gz +man/man3/SDL_MouseMotionEvent.3.gz +man/man3/SDL_NumJoysticks.3.gz +man/man3/SDL_OpenAudio.3.gz +man/man3/SDL_Overlay.3.gz +man/man3/SDL_Palette.3.gz +man/man3/SDL_PauseAudio.3.gz +man/man3/SDL_PeepEvents.3.gz +man/man3/SDL_PixelFormat.3.gz +man/man3/SDL_PollEvent.3.gz +man/man3/SDL_PumpEvents.3.gz +man/man3/SDL_PushEvent.3.gz +man/man3/SDL_Quit.3.gz +man/man3/SDL_QuitEvent.3.gz +man/man3/SDL_QuitSubSystem.3.gz +man/man3/SDL_RWFromFile.3.gz +man/man3/SDL_Rect.3.gz +man/man3/SDL_RemoveTimer.3.gz +man/man3/SDL_ResizeEvent.3.gz +man/man3/SDL_SaveBMP.3.gz +man/man3/SDL_SemPost.3.gz +man/man3/SDL_SemTryWait.3.gz +man/man3/SDL_SemValue.3.gz +man/man3/SDL_SemWait.3.gz +man/man3/SDL_SemWaitTimeout.3.gz +man/man3/SDL_SetAlpha.3.gz +man/man3/SDL_SetClipRect.3.gz +man/man3/SDL_SetColorKey.3.gz +man/man3/SDL_SetColors.3.gz +man/man3/SDL_SetCursor.3.gz +man/man3/SDL_SetEventFilter.3.gz +man/man3/SDL_SetGamma.3.gz +man/man3/SDL_SetGammaRamp.3.gz +man/man3/SDL_SetModState.3.gz +man/man3/SDL_SetPalette.3.gz +man/man3/SDL_SetTimer.3.gz +man/man3/SDL_SetVideoMode.3.gz +man/man3/SDL_ShowCursor.3.gz +man/man3/SDL_Surface.3.gz +man/man3/SDL_SysWMEvent.3.gz +man/man3/SDL_ThreadID.3.gz +man/man3/SDL_UnlockAudio.3.gz +man/man3/SDL_UnlockSurface.3.gz +man/man3/SDL_UnlockYUVOverlay.3.gz +man/man3/SDL_UpdateRect.3.gz +man/man3/SDL_UpdateRects.3.gz +man/man3/SDL_UserEvent.3.gz +man/man3/SDL_VideoDriverName.3.gz +man/man3/SDL_VideoInfo.3.gz +man/man3/SDL_VideoModeOK.3.gz +man/man3/SDL_WM_GetCaption.3.gz +man/man3/SDL_WM_GrabInput.3.gz +man/man3/SDL_WM_IconifyWindow.3.gz +man/man3/SDL_WM_SetCaption.3.gz +man/man3/SDL_WM_SetIcon.3.gz +man/man3/SDL_WM_ToggleFullScreen.3.gz +man/man3/SDL_WaitEvent.3.gz +man/man3/SDL_WaitThread.3.gz +man/man3/SDL_WarpMouse.3.gz +man/man3/SDL_WasInit.3.gz +man/man3/SDL_keysym.3.gz +man/man3/SDL_mutexP.3.gz +man/man3/SDL_mutexV.3.gz share/aclocal/sdl.m4 %%PORTDOCS%%%%DOCSDIR%%/BUGS %%PORTDOCS%%%%DOCSDIR%%/COPYING From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 21:59:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B035DD09; Wed, 22 Jan 2014 21:59:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9C76317F5; Wed, 22 Jan 2014 21:59:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MLxXcV083085; Wed, 22 Jan 2014 21:59:33 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MLxXC2083083; Wed, 22 Jan 2014 21:59:33 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401222159.s0MLxXC2083083@svn.freebsd.org> From: Antoine Brodin Date: Wed, 22 Jan 2014 21:59:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340737 - head/graphics/icontact X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 21:59:33 -0000 Author: antoine Date: Wed Jan 22 21:59:32 2014 New Revision: 340737 URL: http://svnweb.freebsd.org/changeset/ports/340737 QAT: https://qat.redports.org/buildarchive/r340737/ Log: Stage support Modified: head/graphics/icontact/Makefile head/graphics/icontact/pkg-plist Modified: head/graphics/icontact/Makefile ============================================================================== --- head/graphics/icontact/Makefile Wed Jan 22 21:54:49 2014 (r340736) +++ head/graphics/icontact/Makefile Wed Jan 22 21:59:32 2014 (r340737) @@ -13,17 +13,17 @@ COMMENT= Combines multiples images to cr RUN_DEPENDS= ${LOCALBASE}/bin/ppmmake:${PORTSDIR}/graphics/netpbm \ ${LOCALBASE}/bin/cjpeg:${PORTSDIR}/graphics/jpeg -MAN1= icontact.1 xvtoppm.1 +USES= shebangfix +SHEBANG_FILES= icontact -NO_STAGE= yes post-patch: ${REINPLACE_CMD} "s|CC=cc|CC=${CC}|g; s|CFLAGS=-O|CFLAGS=${CFLAGS}|g" \ ${WRKSRC}/Makefile do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/icontact ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/xvtoppm ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/icontact.1 ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/xvtoppm.1 ${PREFIX}/man/man1 + ${INSTALL_SCRIPT} ${WRKSRC}/icontact ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/xvtoppm ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/icontact.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/xvtoppm.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include Modified: head/graphics/icontact/pkg-plist ============================================================================== --- head/graphics/icontact/pkg-plist Wed Jan 22 21:54:49 2014 (r340736) +++ head/graphics/icontact/pkg-plist Wed Jan 22 21:59:32 2014 (r340737) @@ -1,2 +1,4 @@ bin/icontact bin/xvtoppm +man/man1/icontact.1.gz +man/man1/xvtoppm.1.gz From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 22:07:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85973295; Wed, 22 Jan 2014 22:07:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7177918CF; Wed, 22 Jan 2014 22:07:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MM7LAx086841; Wed, 22 Jan 2014 22:07:21 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MM7LcW086840; Wed, 22 Jan 2014 22:07:21 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401222207.s0MM7LcW086840@svn.freebsd.org> From: Antoine Brodin Date: Wed, 22 Jan 2014 22:07:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340738 - head/graphics/imagesort X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 22:07:21 -0000 Author: antoine Date: Wed Jan 22 22:07:20 2014 New Revision: 340738 URL: http://svnweb.freebsd.org/changeset/ports/340738 QAT: https://qat.redports.org/buildarchive/r340738/ Log: Stage support Modified: head/graphics/imagesort/Makefile Modified: head/graphics/imagesort/Makefile ============================================================================== --- head/graphics/imagesort/Makefile Wed Jan 22 21:59:32 2014 (r340737) +++ head/graphics/imagesort/Makefile Wed Jan 22 22:07:20 2014 (r340738) @@ -12,9 +12,9 @@ COMMENT= A flexible X utility for managi LICENSE= GPLv2 -LIB_DEPENDS= gif:${PORTSDIR}/graphics/giflib \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libgif.so:${PORTSDIR}/graphics/giflib \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png OPTIONS_DEFINE= DOCS @@ -24,9 +24,6 @@ USE_GNOME= imlib PORTDOCS= README imagesortrc.sample PLIST_FILES= bin/imagesort -NO_STAGE= yes -.include - post-patch: @${REINPLACE_CMD} -e \ '/^CC/s| =| ?=| ; \ @@ -37,12 +34,8 @@ post-patch: s|^#endif.*|#endif|' ${WRKSRC}/imagesort.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/imagesort ${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} -.for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/imagesort ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 22:09:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83B7E56F; Wed, 22 Jan 2014 22:09:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6FD4D18E5; Wed, 22 Jan 2014 22:09:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MM9LAI087122; Wed, 22 Jan 2014 22:09:21 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MM9La8087121; Wed, 22 Jan 2014 22:09:21 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401222209.s0MM9La8087121@svn.freebsd.org> From: Antoine Brodin Date: Wed, 22 Jan 2014 22:09:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340739 - head/graphics/imageviewer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 22:09:21 -0000 Author: antoine Date: Wed Jan 22 22:09:20 2014 New Revision: 340739 URL: http://svnweb.freebsd.org/changeset/ports/340739 QAT: https://qat.redports.org/buildarchive/r340739/ Log: Stage support Modified: head/graphics/imageviewer/Makefile Modified: head/graphics/imageviewer/Makefile ============================================================================== --- head/graphics/imageviewer/Makefile Wed Jan 22 22:07:20 2014 (r340738) +++ head/graphics/imageviewer/Makefile Wed Jan 22 22:09:20 2014 (r340739) @@ -20,5 +20,4 @@ USE_GNUSTEP_BACK= yes USE_GNUSTEP_BUILD= yes USE_GNUSTEP_INSTALL= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 22:13:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7337A69D; Wed, 22 Jan 2014 22:13:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F7781961; Wed, 22 Jan 2014 22:13:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MMDn07090278; Wed, 22 Jan 2014 22:13:49 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MMDnjQ090277; Wed, 22 Jan 2014 22:13:49 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401222213.s0MMDnjQ090277@svn.freebsd.org> From: Antoine Brodin Date: Wed, 22 Jan 2014 22:13:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340740 - head/graphics/intergif X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 22:13:49 -0000 Author: antoine Date: Wed Jan 22 22:13:48 2014 New Revision: 340740 URL: http://svnweb.freebsd.org/changeset/ports/340740 QAT: https://qat.redports.org/buildarchive/r340740/ Log: Stage support Modified: head/graphics/intergif/Makefile Modified: head/graphics/intergif/Makefile ============================================================================== --- head/graphics/intergif/Makefile Wed Jan 22 22:09:20 2014 (r340739) +++ head/graphics/intergif/Makefile Wed Jan 22 22:13:48 2014 (r340740) @@ -18,7 +18,6 @@ ALL_TARGET= intergif PLIST_FILES= bin/intergif -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ 's|=.*cc|= $$(CC)| ; \ @@ -27,6 +26,6 @@ post-patch: s|@$$(cc)|$$(cc)|' ${WRKSRC}/src/makefile.ix do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} intergif ${PREFIX}/bin) + ${INSTALL_PROGRAM} ${WRKSRC}/intergif ${STAGEDIR}${PREFIX}/bin .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 22:18:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1500AA3A; Wed, 22 Jan 2014 22:18:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E98A1199F; Wed, 22 Jan 2014 22:18:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MMIdP5091040; Wed, 22 Jan 2014 22:18:39 GMT (envelope-from maho@svn.freebsd.org) Received: (from maho@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MMIc2f091032; Wed, 22 Jan 2014 22:18:38 GMT (envelope-from maho@svn.freebsd.org) Message-Id: <201401222218.s0MMIc2f091032@svn.freebsd.org> From: Maho Nakata Date: Wed, 22 Jan 2014 22:18:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340741 - in head/math/octave: . 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.17 Precedence: list List-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, 22 Jan 2014 22:18:40 -0000 Author: maho Date: Wed Jan 22 22:18:37 2014 New Revision: 340741 URL: http://svnweb.freebsd.org/changeset/ports/340741 QAT: https://qat.redports.org/buildarchive/r340741/ Log: Update to 3.8.0 PR: 185991 Submitted by: Max Sterling Added: head/math/octave/files/patch-gsed (contents, props changed) head/math/octave/files/patch-libinterp+dldfcn+__glpk__.cc (contents, props changed) head/math/octave/files/patch-liboctave-numeric-eigs-base.cc (contents, props changed) head/math/octave/files/patch-scripts+pkg+private+configure__make.m (contents, props changed) Deleted: head/math/octave/files/patch-libcruft+mkf77def.in head/math/octave/files/patch-liboctave-eigs-base.cc head/math/octave/files/patch-octave-doc head/math/octave/files/patch-scripts+pkg+pkg.m head/math/octave/files/patch-src+DLD-FUNCTIONS+__glpk__.cc Modified: head/math/octave/Makefile head/math/octave/distinfo head/math/octave/files/patch-configure head/math/octave/pkg-plist Modified: head/math/octave/Makefile ============================================================================== --- head/math/octave/Makefile Wed Jan 22 22:13:48 2014 (r340740) +++ head/math/octave/Makefile Wed Jan 22 22:18:37 2014 (r340741) @@ -2,15 +2,16 @@ # $FreeBSD$ PORTNAME= octave -PORTVERSION= 3.6.4 -PORTREVISION= 7 +PORTVERSION= 3.8.0 CATEGORIES= math -MASTER_SITES= ftp://ftp.gnu.org/gnu/octave/ \ - ftp://ftp.u-aizu.ac.jp/pub/SciEng/numanal/Octave/bleeding-edge/ +MASTER_SITES= ${MASTER_SITE_GNU} +MASTER_SITE_SUBDIR= octave MAINTAINER= maho@FreeBSD.org COMMENT= High-level interactive language for numerical computations +LICENSE= GPLv3 + BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot \ ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf \ gsed:${PORTSDIR}/textproc/gsed \ @@ -18,7 +19,7 @@ BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot \ gsed:${PORTSDIR}/textproc/gsed \ ${LOCALBASE}/bin/makeinfo:${PORTSDIR}/print/texinfo -LIB_DEPENDS= GraphicsMagick:${PORTSDIR}/graphics/GraphicsMagick \ +LIB_DEPENDS= GraphicsMagick.14:${PORTSDIR}/graphics/GraphicsMagick13 \ arpack:${PORTSDIR}/math/arpack \ curl:${PORTSDIR}/ftp/curl \ fftw3:${PORTSDIR}/math/fftw3 \ @@ -30,7 +31,8 @@ LIB_DEPENDS= GraphicsMagick:${PORTSDIR}/ qhull.5:${PORTSDIR}/math/qhull5 \ qrupdate:${PORTSDIR}/math/qrupdate \ umfpack.1:${PORTSDIR}/math/suitesparse \ - glpk:${PORTSDIR}/math/glpk + glpk:${PORTSDIR}/math/glpk \ + gl2ps:${PORTSDIR}/print/gl2ps USES= charsetfix fortran gmake perl5 pkgconfig USE_BZIP2= yes @@ -38,11 +40,14 @@ USE_PERL5= build USE_TEX= dvipsk:build GNU_CONFIGURE= yes #USE_AUTOTOOLS= autoconf +USE_JAVA= yes +JAVA_VERSION= 1.7+ +CONFIGURE_ENV+= JAVA_HOME=${JAVA_HOME} +USE_QT4= gui network -INFO= octave liboctave OctaveFAQ +INFO= octave liboctave MAN1= octave.1 mkoctfile.1 octave-config.1 -NO_STAGE= yes .include .if exists(${LOCALBASE}/lib/libopenblas.so) @@ -90,7 +95,8 @@ LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_L CONFIGURE_ARGS= --host=${GNU_HOST} \ --with-blas="-L${LOCALBASE}/lib ${BLAS}" \ --with-lapack="${LAPACK}" \ - --enable-shared + --enable-shared \ + --disable-jit .if (${OSVERSION} <= 700000) WITH_PTMALLOC=yes @@ -102,41 +108,42 @@ CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib .endif post-patch: - ${REINPLACE_CMD} 's+"makeinfo"+"${PREFIX}/bin/makeinfo"+' ${WRKSRC}/src/help.cc - ${REINPLACE_CMD} 's+-lumfpack+-lumfpack -lcholmod -lcolamd -llapack+' ${WRKSRC}/configure + ${REINPLACE_CMD} 's+"makeinfo"+"${PREFIX}/bin/makeinfo"+' ${WRKSRC}/libinterp/corefcn/help.cc + ${REINPLACE_CMD} 's+-lumfpack+-lumfpack -lsuitesparseconfig -lamd -lcholmod -lcolamd ${LAPACK}+' ${WRKSRC}/configure + ${REINPLACE_CMD} 's+-lcholmod+-lumfpack -lsuitesparseconfig -lamd -lcholmod -lcolamd ${LAPACK}+' ${WRKSRC}/configure post-install: - ${MKDIR} ${DESKTOPDIR} + ${MKDIR} ${STAGEDIR}${DESKTOPDIR} ${INSTALL_DATA} ${WRKSRC}/doc/icons/octave.desktop \ - ${DESKTOPDIR}/www.octave.org-octave.desktop + ${STAGEDIR}${DESKTOPDIR}/www.octave.org-octave.desktop .if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for file in faq/OctaveFAQ.ps liboctave/liboctave.ps \ + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for file in liboctave/liboctave.ps \ refcard/refcard-a4.ps refcard/refcard-legal.ps \ refcard/refcard-letter.ps interpreter/octave.ps - ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${STAGEDIR}${DOCSDIR} .endfor .endif ${RM} -f ${WRKDIR}/PLIST -.for d in ${PREFIX}/include/octave-${OCTAVE_VERSION} ${PREFIX}/share/octave/${OCTAVE_VERSION} ${PREFIX}/share/octave/site ${PREFIX}/lib/octave/${OCTAVE_VERSION} - @${FIND} -s $d -not -type d | \ - ${SED} -e 's#^${PREFIX}/##' >> ${WRKDIR}/PLIST - @${FIND} -s $d -type d -empty | \ - ${SED} -e 's,^${PREFIX}/,@exec ${MKDIR} %D/,' \ +.for d in ${PREFIX}/include/octave-${OCTAVE_VERSION} ${PREFIX}/share/octave/${OCTAVE_VERSION} ${PREFIX}/share/octave/site ${PREFIX}/lib/octave/${OCTAVE_VERSION} ${PREFIX}/libexec/octave/${OCTAVE_VERSION} + @${FIND} -s ${STAGEDIR}$d -not -type d | \ + ${SED} -e 's#^${STAGEDIR}${PREFIX}/##' >> ${WRKDIR}/PLIST + @${FIND} -s ${STAGEDIR}$d -type d -empty | \ + ${SED} -e 's,^${STAGEDIR}${PREFIX}/,@exec ${MKDIR} %D/,' \ -e 's,$$, 2>/dev/null || true,' >> ${WRKDIR}/PLIST - @${FIND} -s $d -type d -depth | \ - ${SED} -e 's,^${PREFIX}/,@dirrm ,' >> ${WRKDIR}/PLIST + @${FIND} -s ${STAGEDIR}$d -type d -depth | \ + ${SED} -e 's,^${STAGEDIR}${PREFIX}/,@dirrm ,' >> ${WRKDIR}/PLIST .endfor -.for d in ${PREFIX}/libexec/octave/${OCTAVE_VERSION} ${PREFIX}/libexec/octave/api-v45+ ${PREFIX}/libexec/octave/api-v48+ ${PREFIX}/libexec/octave/site ${PREFIX}/lib/octave/site - @${FIND} -s $d -type d -empty | \ - ${SED} -e 's,^${PREFIX}/,@exec ${MKDIR} %D/,' \ +.for d in ${PREFIX}/libexec/octave/api-v49+ ${PREFIX}/libexec/octave/site ${PREFIX}/lib/octave/site + @${FIND} -s ${STAGEDIR}$d -type d -empty | \ + ${SED} -e 's,^${STAGEDIR}${PREFIX}/,@exec ${MKDIR} %D/,' \ -e 's,$$, 2>/dev/null || true,' >> ${WRKDIR}/PLIST - @${FIND} -s $d -type d -depth | \ - ${SED} -e 's,^${PREFIX}/,@dirrm ,' >> ${WRKDIR}/PLIST + @${FIND} -s ${STAGEDIR}$d -type d -depth | \ + ${SED} -e 's,^${STAGEDIR}${PREFIX}/,@dirrm ,' >> ${WRKDIR}/PLIST .endfor ${ECHO_CMD} @dirrm libexec/octave >> ${WRKDIR}/PLIST ${ECHO_CMD} @dirrm share/octave >> ${WRKDIR}/PLIST - cd ${WRKDIR} ; ${SED} -i -e "/PLIST/ r PLIST" ${TMPPLIST} + cd ${WRKDIR} ; ${SED} -i.bak -e "/PLIST/ r PLIST" ${TMPPLIST} check regression-test: build @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} check) Modified: head/math/octave/distinfo ============================================================================== --- head/math/octave/distinfo Wed Jan 22 22:13:48 2014 (r340740) +++ head/math/octave/distinfo Wed Jan 22 22:18:37 2014 (r340741) @@ -1,2 +1,2 @@ -SHA256 (octave-3.6.4.tar.bz2) = fa185df9591f5d740f4d37ff6eaf06db576fdd3e0ddd9d0737365799e5d1c962 -SIZE (octave-3.6.4.tar.bz2) = 15627315 +SHA256 (octave-3.8.0.tar.bz2) = 519330c6dd34eb69ca26a811722948fceac2acebd67ba924eba9b34a2e5a94f9 +SIZE (octave-3.8.0.tar.bz2) = 17669638 Modified: head/math/octave/files/patch-configure ============================================================================== --- head/math/octave/files/patch-configure Wed Jan 22 22:13:48 2014 (r340740) +++ head/math/octave/files/patch-configure Wed Jan 22 22:18:37 2014 (r340741) @@ -1,11 +1,16 @@ ---- configure.orig 2013-02-21 21:21:49.000000000 +0100 -+++ configure 2013-11-22 20:34:49.000000000 +0100 -@@ -58248,7 +58248,7 @@ - main () - { - -- std::unordered_map m; -+ std::unordered_map m; - - ; - return 0; +--- configure.orig 2014-01-21 15:52:33.000000000 -0700 ++++ configure 2014-01-21 15:54:59.000000000 -0700 +@@ -68380,6 +68380,13 @@ + fi + JAVA_LIBS="-framework JavaVM" + ;; ++ freebsd*) ++ if test -n "$JAVA_CPPFLAGS"; then ++ JAVA_CPPFLAGS="-I${JAVA_CPPFLAGS}/include -I${JAVA_CPPFLAGS}/include/freebsd" ++ else ++ JAVA_CPPFLAGS="-I${JAVA_HOME}/include -I${JAVA_HOME}/include/freebsd" ++ fi ++ ;; + *) + if test -n "$JAVA_CPPFLAGS"; then + JAVA_CPPFLAGS="-I${JAVA_CPPFLAGS}/include -I${JAVA_CPPFLAGS}/include/linux" Added: head/math/octave/files/patch-gsed ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave/files/patch-gsed Wed Jan 22 22:18:37 2014 (r340741) @@ -0,0 +1,88 @@ +--- build-aux/find-files-with-tests.sh.orig 2014-01-20 20:35:29.000000000 -0700 ++++ build-aux/find-files-with-tests.sh 2014-01-20 20:36:30.000000000 -0700 +@@ -2,7 +2,7 @@ + + set -e + GREP=${GREP:-grep} +-SED=${SED:-sed} ++SED=gsed + + srcdir="$1" + shift +--- libinterp/find-defun-files.sh.orig 2014-01-20 20:08:01.000000000 -0700 ++++ libinterp/find-defun-files.sh 2014-01-20 20:08:20.000000000 -0700 +@@ -1,7 +1,7 @@ + #! /bin/sh + + set -e +-SED=${SED:-sed} ++SED=gsed + EGREP=${EGREP:-egrep} + + # Some stupid egreps don't like empty elements in alternation patterns, +--- libinterp/mk-pkg-add.orig 2014-01-20 20:04:33.000000000 -0700 ++++ libinterp/mk-pkg-add 2014-01-20 20:05:01.000000000 -0700 +@@ -20,7 +20,7 @@ + + set -e + +-SED=${SED:-'sed'} ++SED=gsed + + for f in "$@"; do + if [ -f $f ]; then +--- libinterp/mkbuiltins.orig 2014-01-20 19:17:57.000000000 -0700 ++++ libinterp/mkbuiltins 2014-01-20 19:18:24.000000000 -0700 +@@ -23,7 +23,7 @@ + exit 1 + fi + +-SED=${SED:-'sed'} ++SED=gsed + + make_header=false + make_source=false +--- libinterp/mkdefs.orig 2014-01-20 20:17:00.000000000 -0700 ++++ libinterp/mkdefs 2014-01-20 20:17:15.000000000 -0700 +@@ -18,7 +18,7 @@ + # along with Octave; see the file COPYING. If not, see + # . + +-SED=${SED:-'sed'} ++SED=gsed + + if [ $# -ne 2 ]; then + echo "usage: mkdefs srcdir file < preprocessed-file-contents" 1>&2 +--- libinterp/mkops.orig 2014-01-20 20:26:24.000000000 -0700 ++++ libinterp/mkops 2014-01-20 20:26:50.000000000 -0700 +@@ -18,7 +18,7 @@ + # along with Octave; see the file COPYING. If not, see + # . + +-SED=${SED:-'sed'} ++SED=gsed + + cat << \EOF + // DO NOT EDIT! Generated automatically by mkops. +--- liboctave/cruft/mkf77def.in.orig 2014-01-20 05:27:13.000000000 -0700 ++++ liboctave/cruft/mkf77def.in 2014-01-20 05:27:28.000000000 -0700 +@@ -18,7 +18,7 @@ + # along with Octave; see the file COPYING. If not, see + # . + +-SED=${SED:-'sed'} ++SED=gsed + AWK=${AWK:-'awk'} + + F77_TOLOWER="@F77_APPEND_UNDERSCORE@" +--- scripts/mk-pkg-add.orig 2014-01-20 20:30:14.000000000 -0700 ++++ scripts/mk-pkg-add 2014-01-20 20:30:36.000000000 -0700 +@@ -24,7 +24,7 @@ + + set -e + +-SED=${SED:-'sed'} ++SED=gsed + + prefix="$1/" + shift Added: head/math/octave/files/patch-libinterp+dldfcn+__glpk__.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave/files/patch-libinterp+dldfcn+__glpk__.cc Wed Jan 22 22:18:37 2014 (r340741) @@ -0,0 +1,10 @@ +--- libinterp/dldfcn/__glpk__.cc.orig 2014-01-20 06:29:02.000000000 -0700 ++++ libinterp/dldfcn/__glpk__.cc 2014-01-20 06:32:50.000000000 -0700 +@@ -46,6 +46,7 @@ + #include + #else + #include ++#include + #endif + } + Added: head/math/octave/files/patch-liboctave-numeric-eigs-base.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave/files/patch-liboctave-numeric-eigs-base.cc Wed Jan 22 22:18:37 2014 (r340741) @@ -0,0 +1,11 @@ +--- liboctave/numeric/eigs-base.cc.orig 2014-01-20 05:36:55.000000000 -0700 ++++ liboctave/numeric/eigs-base.cc 2014-01-20 05:37:23.000000000 -0700 +@@ -3849,7 +3849,7 @@ + int disp = 0, int maxit = 300); + #endif + +-#ifndef _MSC_VER ++#if !defined(_MSC_VER) && !defined(__clang__) + template octave_idx_type + lusolve (const SparseMatrix&, const SparseMatrix&, Matrix&); + Added: head/math/octave/files/patch-scripts+pkg+private+configure__make.m ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave/files/patch-scripts+pkg+private+configure__make.m Wed Jan 22 22:18:37 2014 (r340741) @@ -0,0 +1,11 @@ +--- scripts/pkg/private/configure_make.m.orig 2014-01-20 06:14:25.000000000 -0700 ++++ scripts/pkg/private/configure_make.m 2014-01-20 06:16:15.000000000 -0700 +@@ -75,7 +75,7 @@ + + ## Make. + if (exist (fullfile (src, "Makefile"), "file")) +- [status, output] = shell ([scenv "make -C '" src "'"], verbose); ++ [status, output] = shell ([scenv "gmake -C '" src "'"], verbose); + if (status != 0) + rmdir (desc.dir, "s"); + disp (output); Modified: head/math/octave/pkg-plist ============================================================================== --- head/math/octave/pkg-plist Wed Jan 22 22:13:48 2014 (r340740) +++ head/math/octave/pkg-plist Wed Jan 22 22:18:37 2014 (r340741) @@ -2,10 +2,11 @@ bin/mkoctfile bin/mkoctfile-%%OCTAVE_VERSION%% bin/octave bin/octave-%%OCTAVE_VERSION%% +bin/octave-cli +bin/octave-cli-%%OCTAVE_VERSION%% bin/octave-config bin/octave-config-%%OCTAVE_VERSION%% share/applications/www.octave.org-octave.desktop -%%PORTDOCS%%%%DOCSDIR%%/OctaveFAQ.ps %%PORTDOCS%%%%DOCSDIR%%/liboctave.ps %%PORTDOCS%%%%DOCSDIR%%/refcard-a4.ps %%PORTDOCS%%%%DOCSDIR%%/refcard-legal.ps From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 22:36:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A85A9188; Wed, 22 Jan 2014 22:36:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 952171B02; Wed, 22 Jan 2014 22:36:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MMaDEv098340; Wed, 22 Jan 2014 22:36:13 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MMaDmx098338; Wed, 22 Jan 2014 22:36:13 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201401222236.s0MMaDmx098338@svn.freebsd.org> From: Ryan Steinmetz Date: Wed, 22 Jan 2014 22:36:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340742 - head/net/freeradius2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 22:36:13 -0000 Author: zi Date: Wed Jan 22 22:36:13 2014 New Revision: 340742 URL: http://svnweb.freebsd.org/changeset/ports/340742 QAT: https://qat.redports.org/buildarchive/r340742/ Log: - Ensure we CONFLICT with the net/freeradius3 port - Bump PORTREVISION Modified: head/net/freeradius2/Makefile Modified: head/net/freeradius2/Makefile ============================================================================== --- head/net/freeradius2/Makefile Wed Jan 22 22:18:37 2014 (r340741) +++ head/net/freeradius2/Makefile Wed Jan 22 22:36:13 2014 (r340742) @@ -3,6 +3,7 @@ PORTNAME= freeradius DISTVERSION= 2.2.3 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \ ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \ @@ -22,7 +23,7 @@ LOGDIR?= /var/log KRB5_CONFIG?= /usr/bin/krb5-config --libs CONFLICTS= gnu-radius-[0-9].* openradius-[0-9].* radiusd-cistron-[0-9].* \ - freeradius-mysql-[0-9].* freeradius-[013-9].* + freeradius-mysql-[0-9].* freeradius-[013-9].* freeradius3-3.* USE_RC_SUBR= radiusd From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:01:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08BF59F8; Wed, 22 Jan 2014 23:01:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E824F1DB2; Wed, 22 Jan 2014 23:01:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MN1AFd009241; Wed, 22 Jan 2014 23:01:10 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MN1AIF009236; Wed, 22 Jan 2014 23:01:10 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201401222301.s0MN1AIF009236@svn.freebsd.org> From: Bryan Drewery Date: Wed, 22 Jan 2014 23:01:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340743 - head/devel/valgrind-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.17 Precedence: list List-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, 22 Jan 2014 23:01:11 -0000 Author: bdrewery Date: Wed Jan 22 23:01:09 2014 New Revision: 340743 URL: http://svnweb.freebsd.org/changeset/ports/340743 QAT: https://qat.redports.org/buildarchive/r340743/ Log: - Update to 3.9.0-rc1 The 32BIT option currently is broken. Modified: head/devel/valgrind-devel/Makefile head/devel/valgrind-devel/distinfo head/devel/valgrind-devel/pkg-plist Modified: head/devel/valgrind-devel/Makefile ============================================================================== --- head/devel/valgrind-devel/Makefile Wed Jan 22 22:36:13 2014 (r340742) +++ head/devel/valgrind-devel/Makefile Wed Jan 22 23:01:09 2014 (r340743) @@ -2,14 +2,13 @@ # $FreeBSD$ PORTNAME= valgrind -PORTVERSION= 3.8.1 -PORTREVISION= 1 +DISTVERSIONPREFIX= freebsd- +DISTVERSION= 3.9.0.rc1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= http://cdn.bitbucket.org/stass/valgrind-freebsd/downloads/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ PKGNAMESUFFIX= -devel -DISTNAME= ${PORTNAME}-freebsd-${PORTVERSION} MAINTAINER= bdrewery@FreeBSD.org COMMENT= Memory debugging and profiling tool @@ -22,11 +21,14 @@ ONLY_FOR_ARCHS= i386 amd64 LIB32_PATH?= ${DESTDIR}/usr/lib32/libc.so +BUILD_DEPENDS+= docbook-xsl>=0:${PORTSDIR}/textproc/docbook-xsl \ + xsltproc:${PORTSDIR}/textproc/libxslt + OPTIONS_DEFINE= MPI OPTIONS_DEFINE_amd64= 32BIT -.if exists(${LIB32_PATH}) -OPTIONS_DEFAULT_amd64= 32BIT -.endif +#.if exists(${LIB32_PATH}) +#OPTIONS_DEFAULT_amd64= 32BIT +#.endif 32BIT_DESC= Enable debugging of 32-bit programs (requires lib32) MPI_DESC= Enable build of MPI wrappers @@ -34,7 +36,7 @@ MPI_LIB_DEPENDS= mpich:${PORTSDIR}/net/m OPTIONS_SUB= yes USE_BZIP2= yes -USES= pathfix pkgconfig gmake perl5 +USES= pathfix pkgconfig gmake perl5 shebangfix USE_PERL5= build GNU_CONFIGURE= yes USE_LDCONFIG= yes @@ -43,8 +45,14 @@ PORTDOCS= html WRKSRC= ${WRKDIR}/${DISTNAME} +CONFIGURE_ENV+= ac_cv_path_PERL=${PERL} + .include +.if ${PORT_OPTIONS:M32BIT} +BROKEN= Currently does not build with 32bit support +.endif + .if ${ARCH} == "amd64" PLIST_SUB+= AMD64="" ARCH=amd64 . if !${PORT_OPTIONS:M32BIT} @@ -67,4 +75,12 @@ post-patch: @${RM} -rf ${WRKSRC}/docs/html .endif +do-build: do-man-pages + +do-man-pages: + cd ${WRKSRC}/docs && ${SETENV} ${MAKE_ENV} ${GMAKE} man-pages +.if ${PORT_OPTIONS:MDOCS} + cd ${WRKSRC}/docs && ${SETENV} ${MAKE_ENV} ${GMAKE} html-docs +.endif + .include Modified: head/devel/valgrind-devel/distinfo ============================================================================== --- head/devel/valgrind-devel/distinfo Wed Jan 22 22:36:13 2014 (r340742) +++ head/devel/valgrind-devel/distinfo Wed Jan 22 23:01:09 2014 (r340743) @@ -1,2 +1,2 @@ -SHA256 (valgrind-freebsd-3.8.1.tar.bz2) = d4d9a0c6a8581cd04f4091ce9e15ce307f364210c4ea4cd38d568a8df7527871 -SIZE (valgrind-freebsd-3.8.1.tar.bz2) = 6289247 +SHA256 (valgrind-freebsd-3.9.0.rc1.tar.bz2) = cd4304c995fc5e4ea03152147bf80a6de912536c671af46b2d800cc704683442 +SIZE (valgrind-freebsd-3.9.0.rc1.tar.bz2) = 9358772 Modified: head/devel/valgrind-devel/pkg-plist ============================================================================== --- head/devel/valgrind-devel/pkg-plist Wed Jan 22 22:36:13 2014 (r340742) +++ head/devel/valgrind-devel/pkg-plist Wed Jan 22 23:01:09 2014 (r340743) @@ -5,6 +5,7 @@ bin/cg_diff bin/cg_merge bin/ms_print bin/valgrind +bin/valgrind-di-server bin/valgrind-listener bin/vgdb include/valgrind/callgrind.h @@ -13,10 +14,11 @@ include/valgrind/drd.h include/valgrind/helgrind.h include/valgrind/libvex.h include/valgrind/libvex_basictypes.h -include/valgrind/libvex_emwarn.h +include/valgrind/libvex_emnote.h include/valgrind/libvex_guest_amd64.h include/valgrind/libvex_guest_arm.h include/valgrind/libvex_guest_mips32.h +include/valgrind/libvex_guest_mips64.h include/valgrind/libvex_guest_offsets.h include/valgrind/libvex_guest_ppc32.h include/valgrind/libvex_guest_ppc64.h @@ -32,13 +34,11 @@ include/valgrind/pub_tool_basics.h include/valgrind/pub_tool_basics_asm.h include/valgrind/pub_tool_clientstate.h include/valgrind/pub_tool_clreq.h -include/valgrind/pub_tool_cpuid.h include/valgrind/pub_tool_debuginfo.h include/valgrind/pub_tool_errormgr.h include/valgrind/pub_tool_execontext.h include/valgrind/pub_tool_gdbserver.h include/valgrind/pub_tool_hashtable.h -include/valgrind/pub_tool_inner.h include/valgrind/pub_tool_libcassert.h include/valgrind/pub_tool_libcbase.h include/valgrind/pub_tool_libcfile.h @@ -95,6 +95,20 @@ include/valgrind/vki/vki-scnums-s390x-li include/valgrind/vki/vki-scnums-x86-linux.h include/valgrind/vki/vki-x86-freebsd.h include/valgrind/vki/vki-x86-linux.h +include/valgrind/vki/vki-linux-drm.h +include/valgrind/vki/vki-mips64-linux.h +include/valgrind/vki/vki-posixtypes-mips64-linux.h +include/valgrind/vki/vki-scnums-mips64-linux.h +include/valgrind/vki/vki-xen-domctl.h +include/valgrind/vki/vki-xen-evtchn.h +include/valgrind/vki/vki-xen-gnttab.h +include/valgrind/vki/vki-xen-hvm.h +include/valgrind/vki/vki-xen-memory.h +include/valgrind/vki/vki-xen-mmuext.h +include/valgrind/vki/vki-xen-sysctl.h +include/valgrind/vki/vki-xen-version.h +include/valgrind/vki/vki-xen-x86.h +include/valgrind/vki/vki-xen.h lib/valgrind/32bit-core-valgrind-s1.xml lib/valgrind/32bit-core-valgrind-s2.xml lib/valgrind/32bit-core.xml @@ -141,6 +155,17 @@ lib/valgrind/mips-fpu-valgrind-s2.xml lib/valgrind/mips-fpu.xml lib/valgrind/mips-linux-valgrind.xml lib/valgrind/mips-linux.xml +lib/valgrind/mips64-cp0-valgrind-s1.xml +lib/valgrind/mips64-cp0-valgrind-s2.xml +lib/valgrind/mips64-cp0.xml +lib/valgrind/mips64-cpu-valgrind-s1.xml +lib/valgrind/mips64-cpu-valgrind-s2.xml +lib/valgrind/mips64-cpu.xml +lib/valgrind/mips64-fpu-valgrind-s1.xml +lib/valgrind/mips64-fpu-valgrind-s2.xml +lib/valgrind/mips64-fpu.xml +lib/valgrind/mips64-linux-valgrind.xml +lib/valgrind/mips64-linux.xml lib/valgrind/power-core-valgrind-s1.xml lib/valgrind/power-core-valgrind-s2.xml lib/valgrind/s390-acr-valgrind-s1.xml @@ -227,8 +252,12 @@ libdata/pkgconfig/valgrind.pc man/man1/callgrind_annotate.1.gz man/man1/callgrind_control.1.gz man/man1/cg_annotate.1.gz +man/man1/cg_diff.1.gz +man/man1/cg_merge.1.gz man/man1/ms_print.1.gz +man/man1/valgrind-listener.1.gz man/man1/valgrind.1.gz +man/man1/vgdb.1.gz @dirrm lib/valgrind @dirrm include/valgrind/vki @dirrm include/valgrind From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:02:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F02F6B9B; Wed, 22 Jan 2014 23:02:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DB90E1E2A; Wed, 22 Jan 2014 23:02:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MN2qQJ009472; Wed, 22 Jan 2014 23:02:52 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MN2qTI009471; Wed, 22 Jan 2014 23:02:52 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201401222302.s0MN2qTI009471@svn.freebsd.org> From: Bryan Drewery Date: Wed, 22 Jan 2014 23:02:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340744 - head/devel/valgrind X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 23:02:53 -0000 Author: bdrewery Date: Wed Jan 22 23:02:52 2014 New Revision: 340744 URL: http://svnweb.freebsd.org/changeset/ports/340744 QAT: https://qat.redports.org/buildarchive/r340744/ Log: - Use DISTVERSIONPREFIX instead of changing DISTNAME Suggested by: bapt Modified: head/devel/valgrind/Makefile Modified: head/devel/valgrind/Makefile ============================================================================== --- head/devel/valgrind/Makefile Wed Jan 22 23:01:09 2014 (r340743) +++ head/devel/valgrind/Makefile Wed Jan 22 23:02:52 2014 (r340744) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= valgrind -PORTVERSION= 3.8.1 +DISTVERSIONPREFIX= freebsd- +DISTVERSION= 3.8.1 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= http://cdn.bitbucket.org/stass/valgrind-freebsd/downloads/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ -DISTNAME= ${PORTNAME}-freebsd-${PORTVERSION} MAINTAINER= bdrewery@FreeBSD.org COMMENT= Memory debugging and profiling tool From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:05:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30CAFCA4; Wed, 22 Jan 2014 23:05:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1CBC91E44; Wed, 22 Jan 2014 23:05:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MN5Dgp009802; Wed, 22 Jan 2014 23:05:13 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MN5D9E009801; Wed, 22 Jan 2014 23:05:13 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201401222305.s0MN5D9E009801@svn.freebsd.org> From: Bryan Drewery Date: Wed, 22 Jan 2014 23:05:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340745 - head/ports-mgmt/poudriere X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 23:05:14 -0000 Author: bdrewery Date: Wed Jan 22 23:05:13 2014 New Revision: 340745 URL: http://svnweb.freebsd.org/changeset/ports/340745 QAT: https://qat.redports.org/buildarchive/r340745/ Log: Update LICENSE to new format Modified: head/ports-mgmt/poudriere/Makefile Modified: head/ports-mgmt/poudriere/Makefile ============================================================================== --- head/ports-mgmt/poudriere/Makefile Wed Jan 22 23:02:52 2014 (r340744) +++ head/ports-mgmt/poudriere/Makefile Wed Jan 22 23:05:13 2014 (r340745) @@ -10,7 +10,7 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}${E MAINTAINER= bdrewery@FreeBSD.org COMMENT= Port build and test system -LICENSE= BSD +LICENSE= BSD2CLAUSE OPTIONS_DEFINE= ZSH From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:17:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13CDAFA9; Wed, 22 Jan 2014 23:17:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F3B3D1EF6; Wed, 22 Jan 2014 23:17:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNHp9a013806; Wed, 22 Jan 2014 23:17:51 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNHp6N013805; Wed, 22 Jan 2014 23:17:51 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201401222317.s0MNHp6N013805@svn.freebsd.org> From: Koop Mast Date: Wed, 22 Jan 2014 23:17:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340746 - 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.17 Precedence: list List-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, 22 Jan 2014 23:17:52 -0000 Author: kwm Date: Wed Jan 22 23:17:51 2014 New Revision: 340746 URL: http://svnweb.freebsd.org/changeset/ports/340746 QAT: https://qat.redports.org/buildarchive/r340746/ Log: Add gnome CDN in both https and http flavors. Modified: head/Mk/bsd.sites.mk Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Wed Jan 22 23:05:13 2014 (r340745) +++ head/Mk/bsd.sites.mk Wed Jan 22 23:17:51 2014 (r340746) @@ -546,6 +546,8 @@ GH_TAGNAME?= ${DISTVERSION} .if !defined(IGNORE_MASTER_SITE_GNOME) MASTER_SITE_GNOME+= \ + https://download.gnome.org/%SUBDIR%/ \ + http://download.gnome.org/%SUBDIR%/ \ ftp://ftp.belnet.be/mirror/ftp.gnome.org/%SUBDIR%/ \ http://ftp.acc.umu.se/pub/GNOME/%SUBDIR%/ \ ftp://ftp.cse.buffalo.edu/pub/Gnome/%SUBDIR%/ \ From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:21:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73C5C13A; Wed, 22 Jan 2014 23:21:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4575D1F5F; Wed, 22 Jan 2014 23:21:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNLvNK016866; Wed, 22 Jan 2014 23:21:57 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNLuxC016864; Wed, 22 Jan 2014 23:21:56 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201401222321.s0MNLuxC016864@svn.freebsd.org> From: Bryan Drewery Date: Wed, 22 Jan 2014 23:21:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340747 - 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.17 Precedence: list List-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, 22 Jan 2014 23:21:57 -0000 Author: bdrewery Date: Wed Jan 22 23:21:56 2014 New Revision: 340747 URL: http://svnweb.freebsd.org/changeset/ports/340747 QAT: https://qat.redports.org/buildarchive/r340747/ Log: - Update to checkin 32dddce6d7 - Update LICENSE format Changes: - Add a BUILDER_HOSTNAME that can be set to define the hostname for package building - Add PRESERVE_TIMESTAMP (default off) to allow preserving timestamps in svn checkouts - Auto clean packages when their version does not match the jail's version - jail -l: Add -n to only show name - Ensure /sbin:/usr/sbin is in PATH - jail: Add -r to rename jails (jail -r newname -j oldname) - Fix ipv6-only usage - Require sem(4) kernel support as some ports require it 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 Wed Jan 22 23:17:51 2014 (r340746) +++ head/ports-mgmt/poudriere-devel/Makefile Wed Jan 22 23:21:56 2014 (r340747) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 3.0.99.20140115 +PORTVERSION= 3.0.99.20140122 CATEGORIES= ports-mgmt MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ \ LOCAL/bdrewery/${PORTNAME}/ @@ -11,9 +11,9 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}.ta MAINTAINER= bdrewery@FreeBSD.org COMMENT= Port build and test system -LICENSE= BSD +LICENSE= BSD2CLAUSE -FSL_CHKIN= 58af837f0e +FSL_CHKIN= 32dddce6d7 OPTIONS_DEFINE= ZSH Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Wed Jan 22 23:17:51 2014 (r340746) +++ head/ports-mgmt/poudriere-devel/distinfo Wed Jan 22 23:21:56 2014 (r340747) @@ -1,2 +1,2 @@ -SHA256 (poudriere-3.0.99.20140115.tar.gz?uuid=58af837f0e) = 63bf095908c70da0baa4b2e28e23b96e9cad6aac4f8c3404a5688efde43b2387 -SIZE (poudriere-3.0.99.20140115.tar.gz?uuid=58af837f0e) = 252025 +SHA256 (poudriere-3.0.99.20140122.tar.gz?uuid=32dddce6d7) = 2baee0a0651ffbcec95ef3b7ce68310aa84538222de95352481689dc5ce266b1 +SIZE (poudriere-3.0.99.20140122.tar.gz?uuid=32dddce6d7) = 252616 From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:32:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 902D22C2; Wed, 22 Jan 2014 23:32:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C306100C; Wed, 22 Jan 2014 23:32:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNWRJl020651; Wed, 22 Jan 2014 23:32:27 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNWRLS020650; Wed, 22 Jan 2014 23:32:27 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401222332.s0MNWRLS020650@svn.freebsd.org> From: Dmitry Marakasov Date: Wed, 22 Jan 2014 23:32:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340748 - head/devel/librest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 23:32:27 -0000 Author: amdmi3 Date: Wed Jan 22 23:32:26 2014 New Revision: 340748 URL: http://svnweb.freebsd.org/changeset/ports/340748 QAT: https://qat.redports.org/buildarchive/r340748/ Log: - Disable g-ir-scanner cache to not pollute /root/.cache on build - Support staging - Use new LIB_DEPENDS syntax - Convert USE_GMAKE to USES PR: 185924 Submitted by: amdmi3 Approved by: Christoph Moench-Tegeder (maintainer) Modified: head/devel/librest/Makefile Modified: head/devel/librest/Makefile ============================================================================== --- head/devel/librest/Makefile Wed Jan 22 23:21:56 2014 (r340747) +++ head/devel/librest/Makefile Wed Jan 22 23:32:26 2014 (r340748) @@ -13,27 +13,24 @@ LICENSE= LGPL21 BUILD_DEPENDS= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection \ ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss -LIB_DEPENDS= soup-gnome-2.4:${PORTSDIR}/devel/libsoup-gnome +LIB_DEPENDS= libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss -USES= pkgconfig +USES= pkgconfig gmake USE_XZ= yes -USE_GMAKE= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_GNOME= gnomehack glib20 intlhack libxml2 +MAKE_ENV= GI_SCANNER_DISABLE_CACHE=yes CONFIGURE_ARGS= --with-ca-certificates=${LOCALBASE}/share/certs/ca-root-nss.crt PORTEXAMPLES= *.c -NO_STAGE= yes -.include +OPTIONS_DEFINE= EXAMPLES -.if ${PORT_OPTIONS:MEXAMPLES} post-install: - @${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/*.c ${EXAMPLESDIR} -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/*.c ${STAGEDIR}${EXAMPLESDIR} .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:37:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C3B45411; Wed, 22 Jan 2014 23:37:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A4338105C; Wed, 22 Jan 2014 23:37:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNbsJn021469; Wed, 22 Jan 2014 23:37:54 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNbrV5021464; Wed, 22 Jan 2014 23:37:53 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201401222337.s0MNbrV5021464@svn.freebsd.org> From: Matthias Andree Date: Wed, 22 Jan 2014 23:37:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340749 - in head: Mk devel/epm print/cups-base textproc/fldiff textproc/htmldoc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 23:37:54 -0000 Author: mandree Date: Wed Jan 22 23:37:53 2014 New Revision: 340749 URL: http://svnweb.freebsd.org/changeset/ports/340749 QAT: https://qat.redports.org/buildarchive/r340749/ Log: Update master sites for some ports formerly hosted on easysw.com, now extinct. Remove easysw.com domain from MASTER_SITE_EASYSW, and drop tu-bs.de from mirror list (is no longer mirroring easysw.com). Modified: head/Mk/bsd.sites.mk head/devel/epm/Makefile head/print/cups-base/Makefile head/textproc/fldiff/Makefile head/textproc/htmldoc/Makefile Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Wed Jan 22 23:32:26 2014 (r340748) +++ head/Mk/bsd.sites.mk Wed Jan 22 23:37:53 2014 (r340749) @@ -198,9 +198,6 @@ MASTER_SITE_DEBIAN_POOL+= \ .if !defined(IGNORE_MASTER_SITE_EASYSW) MASTER_SITE_EASYSW+= \ - http://ftp.easysw.com/pub/%SUBDIR%/ \ - ftp://ftp.easysw.com/pub/%SUBDIR%/ \ - ftp://ftp.rz.tu-bs.de/pub/mirror/ftp.easysw.com/ftp/pub/%SUBDIR%/ \ http://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/%SUBDIR%/ \ ftp://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/%SUBDIR%/ .endif Modified: head/devel/epm/Makefile ============================================================================== --- head/devel/epm/Makefile Wed Jan 22 23:32:26 2014 (r340748) +++ head/devel/epm/Makefile Wed Jan 22 23:37:53 2014 (r340749) @@ -4,7 +4,7 @@ PORTNAME= epm PORTVERSION= 4.2 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_EASYSW} +MASTER_SITES= http://www.msweet.org/files/project2/ MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION} EXTRACT_SUFX= -source.tar.bz2 Modified: head/print/cups-base/Makefile ============================================================================== --- head/print/cups-base/Makefile Wed Jan 22 23:32:26 2014 (r340748) +++ head/print/cups-base/Makefile Wed Jan 22 23:37:53 2014 (r340749) @@ -6,7 +6,8 @@ PORTVERSION= 1.5.4 DISTVERSIONSUFFIX= -source PORTREVISION= 1 CATEGORIES= print -MASTER_SITES= EASYSW/${PORTNAME}/${DISTVERSION} +MASTER_SITES= http://www.cups.org/software/${DISTVERSION}/ \ + EASYSW/${PORTNAME}/${DISTVERSION} PKGNAMESUFFIX= ${CUPS_SUFFIX}${PKGNAMESUFFIX2} MAINTAINER= bsam@FreeBSD.org Modified: head/textproc/fldiff/Makefile ============================================================================== --- head/textproc/fldiff/Makefile Wed Jan 22 23:32:26 2014 (r340748) +++ head/textproc/fldiff/Makefile Wed Jan 22 23:37:53 2014 (r340749) @@ -5,8 +5,7 @@ PORTNAME= fldiff PORTVERSION= 1.1 PORTREVISION= 8 CATEGORIES= textproc -MASTER_SITES= http://www.easysw.com/~mike/fldiff/ \ - CRITICAL +MASTER_SITES= CRITICAL DISTNAME= ${PORTNAME}-${PORTVERSION}-source MAINTAINER= ehaupt@FreeBSD.org Modified: head/textproc/htmldoc/Makefile ============================================================================== --- head/textproc/htmldoc/Makefile Wed Jan 22 23:32:26 2014 (r340748) +++ head/textproc/htmldoc/Makefile Wed Jan 22 23:37:53 2014 (r340749) @@ -5,7 +5,8 @@ PORTNAME= htmldoc PORTVERSION= 1.8.27 PORTREVISION= 7 CATEGORIES= textproc -MASTER_SITES= ${MASTER_SITE_EASYSW} +MASTER_SITES= http://www.msweet.org/files/project1/ \ + ${MASTER_SITE_EASYSW} MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME}-${PORTVERSION}-source From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:39:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15982506; Wed, 22 Jan 2014 23:39:58 +0000 (UTC) Received: from fep26.mx.upcmail.net (fep26.mx.upcmail.net [62.179.121.46]) by mx1.freebsd.org (Postfix) with ESMTP id CAFBB106B; Wed, 22 Jan 2014 23:39:56 +0000 (UTC) Received: from edge02.upcmail.net ([192.168.13.237]) by viefep16-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20140122233902.INCP18149.viefep16-int.chello.at@edge02.upcmail.net>; Thu, 23 Jan 2014 00:39:02 +0100 Received: from [127.0.0.1] ([178.84.134.112]) by edge02.upcmail.net with edge id HBf11n01H2Rg3Ey02Bf1Dx; Thu, 23 Jan 2014 00:39:02 +0100 X-SourceIP: 178.84.134.112 Message-ID: <52E05695.2080101@rainbow-runner.nl> Date: Thu, 23 Jan 2014 00:39:01 +0100 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Dmitry Marakasov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340748 - head/devel/librest References: <201401222332.s0MNWRLS020650@svn.freebsd.org> In-Reply-To: <201401222332.s0MNWRLS020650@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 140121-1, 21-01-2014), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 23:39:58 -0000 On 23-1-2014 0:32, Dmitry Marakasov wrote: > Author: amdmi3 > Date: Wed Jan 22 23:32:26 2014 > New Revision: 340748 > URL: http://svnweb.freebsd.org/changeset/ports/340748 > QAT: https://qat.redports.org/buildarchive/r340748/ > > Log: > - Disable g-ir-scanner cache to not pollute /root/.cache on build > - Support staging > - Use new LIB_DEPENDS syntax > - Convert USE_GMAKE to USES > > PR: 185924 > Submitted by: amdmi3 > Approved by: Christoph Moench-Tegeder (maintainer) > > Modified: > head/devel/librest/Makefile > > Modified: head/devel/librest/Makefile > ============================================================================== > --- head/devel/librest/Makefile Wed Jan 22 23:21:56 2014 (r340747) > +++ head/devel/librest/Makefile Wed Jan 22 23:32:26 2014 (r340748) > @@ -13,27 +13,24 @@ LICENSE= LGPL21 > > BUILD_DEPENDS= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection \ > ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss > -LIB_DEPENDS= soup-gnome-2.4:${PORTSDIR}/devel/libsoup-gnome > +LIB_DEPENDS= libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome > RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss > > -USES= pkgconfig > +USES= pkgconfig gmake > USE_XZ= yes > -USE_GMAKE= yes > GNU_CONFIGURE= yes > USE_LDCONFIG= yes > USE_GNOME= gnomehack glib20 intlhack libxml2 > +MAKE_ENV= GI_SCANNER_DISABLE_CACHE=yes > > USE_GNOME=introspection[:build|:run] also adds the MAKE_ENV. (if not argument is given gobject-introspection is added to both BUILD and RUN_DEPENDS.) From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:51:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED2F424E; Wed, 22 Jan 2014 23:51:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D874411A9; Wed, 22 Jan 2014 23:51:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNpAaX027128; Wed, 22 Jan 2014 23:51:10 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNpAGa027127; Wed, 22 Jan 2014 23:51:10 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201401222351.s0MNpAGa027127@svn.freebsd.org> From: Matthias Andree Date: Wed, 22 Jan 2014 23:51:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340750 - 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.17 Precedence: list List-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, 22 Jan 2014 23:51:11 -0000 Author: mandree Date: Wed Jan 22 23:51:10 2014 New Revision: 340750 URL: http://svnweb.freebsd.org/changeset/ports/340750 QAT: https://qat.redports.org/buildarchive/r340750/ Log: Document HTMLDOC < 1.8.28 vulnerability. Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Jan 22 23:37:53 2014 (r340749) +++ head/security/vuxml/vuln.xml Wed Jan 22 23:51:10 2014 (r340750) @@ -51,6 +51,32 @@ Note: Please add new entries to the beg --> + + HTMLDOC -- buffer overflow issues when reading AFM files and parsing page sizes + + + htmldoc + 1.8.28 + + + + +

Michael Sweet reports:

+
+

HTMLDOC 1.8.28 fixes some known security issues and formatting bugs. Changes include:

+
  • ...
  • SECURITY: Fixed three buffer overflow issues when reading AFM files and parsing page sizes.
  • ...
+
+ +
+ + http://www.msweet.org/projects.php?Z1 + + + 2014-01-06 + 2014-01-22 + +
+ virtualbox-ose -- local vulnerability From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:57:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A87117F5; Wed, 22 Jan 2014 23:57:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7A42D11E6; Wed, 22 Jan 2014 23:57:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNv2dq029624; Wed, 22 Jan 2014 23:57:02 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNv2ut029622; Wed, 22 Jan 2014 23:57:02 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401222357.s0MNv2ut029622@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 23:57:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340751 - head/devel/autogen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 23:57:02 -0000 Author: bapt Date: Wed Jan 22 23:57:01 2014 New Revision: 340751 URL: http://svnweb.freebsd.org/changeset/ports/340751 QAT: https://qat.redports.org/buildarchive/r340751/ Log: Support stage Modernize a bit Modified: head/devel/autogen/Makefile head/devel/autogen/pkg-plist Modified: head/devel/autogen/Makefile ============================================================================== --- head/devel/autogen/Makefile Wed Jan 22 23:51:10 2014 (r340750) +++ head/devel/autogen/Makefile Wed Jan 22 23:57:01 2014 (r340751) @@ -13,27 +13,16 @@ MAINTAINER= clsung@FreeBSD.org COMMENT= The Automated Program Generator BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash -LIB_DEPENDS= guile.21:${PORTSDIR}/lang/guile +LIB_DEPENDS= libguile.so:${PORTSDIR}/lang/guile -USES= shebangfix +USES= gmake pathfix shebangfix USE_BZIP2= yes -USE_GNOME= gnomehack libxml2 -USE_GMAKE= yes +USE_GNOME= libxml2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-libguile=yes --with-libxml2=yes --datadir=${PREFIX}/share USE_LDCONFIG= yes SHEBANG_FILES= autoopts/tpl/*.pl -MAN1= autogen.1 autoopts-config.1 columns.1 getdefs.1 xml2ag.1 -MAN3= ao_string_tokenize.3 configFileLoad.3 optionFileLoad.3 \ - optionFindNextValue.3 optionFindValue.3 optionFree.3 \ - optionGetValue.3 optionLoadLine.3 optionNextValue.3 \ - optionProcess.3 optionRestore.3 optionOnlyUsage.3 \ - optionSaveFile.3 optionSaveState.3 optionUnloadNested.3 \ - optionVersion.3 strequate.3 streqvcmp.3 streqvmap.3 strneqvcmp.3 \ - strtransform.3 - INFO= autogen -NO_STAGE= yes .include Modified: head/devel/autogen/pkg-plist ============================================================================== --- head/devel/autogen/pkg-plist Wed Jan 22 23:51:10 2014 (r340750) +++ head/devel/autogen/pkg-plist Wed Jan 22 23:57:01 2014 (r340751) @@ -53,5 +53,31 @@ share/aclocal/autoopts.m4 %%DATADIR%%/texi2texi %%DATADIR%%/tpl-config.tlib %%DATADIR%%/usage.tlib +man/man1/autogen.1.gz +man/man1/autoopts-config.1.gz +man/man1/columns.1.gz +man/man1/getdefs.1.gz +man/man1/xml2ag.1.gz +man/man3/ao_string_tokenize.3.gz +man/man3/configFileLoad.3.gz +man/man3/optionFileLoad.3.gz +man/man3/optionFindNextValue.3.gz +man/man3/optionFindValue.3.gz +man/man3/optionFree.3.gz +man/man3/optionGetValue.3.gz +man/man3/optionLoadLine.3.gz +man/man3/optionNextValue.3.gz +man/man3/optionOnlyUsage.3.gz +man/man3/optionProcess.3.gz +man/man3/optionRestore.3.gz +man/man3/optionSaveFile.3.gz +man/man3/optionSaveState.3.gz +man/man3/optionUnloadNested.3.gz +man/man3/optionVersion.3.gz +man/man3/strequate.3.gz +man/man3/streqvcmp.3.gz +man/man3/streqvmap.3.gz +man/man3/strneqvcmp.3.gz +man/man3/strtransform.3.gz @dirrm %%DATADIR%% @dirrm include/autoopts From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:58:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E877D961; Wed, 22 Jan 2014 23:58:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D49C511FB; Wed, 22 Jan 2014 23:58:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNwD8N029809; Wed, 22 Jan 2014 23:58:13 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNwDrI029808; Wed, 22 Jan 2014 23:58:13 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201401222358.s0MNwDrI029808@svn.freebsd.org> From: Matthias Andree Date: Wed, 22 Jan 2014 23:58:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340752 - head/textproc/htmldoc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 23:58:14 -0000 Author: mandree Date: Wed Jan 22 23:58:13 2014 New Revision: 340752 URL: http://svnweb.freebsd.org/changeset/ports/340752 QAT: https://qat.redports.org/buildarchive/r340752/ Log: Update WWW address. Modified: head/textproc/htmldoc/pkg-descr Modified: head/textproc/htmldoc/pkg-descr ============================================================================== --- head/textproc/htmldoc/pkg-descr Wed Jan 22 23:57:01 2014 (r340751) +++ head/textproc/htmldoc/pkg-descr Wed Jan 22 23:58:13 2014 (r340752) @@ -14,4 +14,4 @@ In my opinion, HTMLDOC is *fast*, compar HTMLDOC is available under the GPL. Commercial support is available from the author. -WWW: http://www.easysw.com/htmldoc/ +WWW: http://www.htmldoc.org/ From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:58:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FD31A54; Wed, 22 Jan 2014 23:58:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F068D1203; Wed, 22 Jan 2014 23:58:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNwgqZ029917; Wed, 22 Jan 2014 23:58:42 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNwgKE029916; Wed, 22 Jan 2014 23:58:42 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401222358.s0MNwgKE029916@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 23:58:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340753 - head/devel/avce00 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 23:58:43 -0000 Author: bapt Date: Wed Jan 22 23:58:42 2014 New Revision: 340753 URL: http://svnweb.freebsd.org/changeset/ports/340753 QAT: https://qat.redports.org/buildarchive/r340753/ Log: Support stage Modified: head/devel/avce00/Makefile Modified: head/devel/avce00/Makefile ============================================================================== --- head/devel/avce00/Makefile Wed Jan 22 23:58:13 2014 (r340752) +++ head/devel/avce00/Makefile Wed Jan 22 23:58:42 2014 (r340753) @@ -9,7 +9,9 @@ MASTER_SITES= http://avce00.maptools.org MAINTAINER= wen@FreeBSD.org COMMENT= OpenSource C library convert Arc/Info Vector Coverages to E00 -USE_GMAKE= yes +OPTIONS_DEFINE= DOCS + +USES= gmake ALL_TARGET= default BIN_FILES= avcimport avcexport avcdelete avctest ex_avcwrite @@ -21,7 +23,6 @@ PLIST_FILES= bin/avcimport bin/avcexport PORTDOCS= avce00.html -NO_STAGE= yes .include post-extract: @@ -33,15 +34,11 @@ post-extract: do-install: .for i in ${BIN_FILES} - ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/bin/ .endfor - ${INSTALL_DATA} ${WRKSRC}/avc.a ${PREFIX}/lib - ${INSTALL_DATA} ${WRKSRC}/avc.h ${PREFIX}/include - -post-install: -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/avce00.html ${DOCSDIR} -.endif + ${INSTALL_DATA} ${WRKSRC}/avc.a ${STAGEDIR}${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/avc.h ${STAGEDIR}${PREFIX}/include + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/avce00.html ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Wed Jan 22 23:59:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 97ACAB65; Wed, 22 Jan 2014 23:59:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8459F120F; Wed, 22 Jan 2014 23:59:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0MNxeop030082; Wed, 22 Jan 2014 23:59:40 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0MNxeFx030081; Wed, 22 Jan 2014 23:59:40 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401222359.s0MNxeFx030081@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 22 Jan 2014 23:59:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340754 - head/devel/blame X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 22 Jan 2014 23:59:40 -0000 Author: bapt Date: Wed Jan 22 23:59:39 2014 New Revision: 340754 URL: http://svnweb.freebsd.org/changeset/ports/340754 QAT: https://qat.redports.org/buildarchive/r340754/ Log: Support stage Modified: head/devel/blame/Makefile Modified: head/devel/blame/Makefile ============================================================================== --- head/devel/blame/Makefile Wed Jan 22 23:58:42 2014 (r340753) +++ head/devel/blame/Makefile Wed Jan 22 23:59:39 2014 (r340754) @@ -11,8 +11,7 @@ COMMENT= Display last modification for e USE_CSTD= gnu89 GNU_CONFIGURE= yes -MAN1= blame.1 -PLIST_FILES= bin/blame +PLIST_FILES= bin/blame \ + man/man1/blame.1.gz -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:03:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E0B8DCA; Thu, 23 Jan 2014 00:03:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A31012B0; Thu, 23 Jan 2014 00:03:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N03ZIg034055; Thu, 23 Jan 2014 00:03:35 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N03YV3034052; Thu, 23 Jan 2014 00:03:34 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230003.s0N03YV3034052@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:03:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340755 - head/devel/cutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:03:35 -0000 Author: bapt Date: Thu Jan 23 00:03:34 2014 New Revision: 340755 URL: http://svnweb.freebsd.org/changeset/ports/340755 QAT: https://qat.redports.org/buildarchive/r340755/ Log: Support stage Added: head/devel/cutils/pkg-plist (contents, props changed) Modified: head/devel/cutils/Makefile Modified: head/devel/cutils/Makefile ============================================================================== --- head/devel/cutils/Makefile Wed Jan 22 23:59:39 2014 (r340754) +++ head/devel/cutils/Makefile Thu Jan 23 00:03:34 2014 (r340755) @@ -11,14 +11,9 @@ COMMENT= Miscellaneous C programmer's ut GNU_CONFIGURE= yes MAKE_ENV= MAKEINFO=makeinfo -MAN1= cdecl.1 chilight.1 cobfusc.1 cundecl.1 cunloop.1 yyextract.1 \ - yyref.1 INFO= cutils -PLIST_FILES= bin/cdecl bin/chilight bin/cobfusc bin/cundecl bin/cunloop \ - bin/yyextract bin/yyref MAKE_JOBS_UNSAFE= yes CONFLICTS= cdecl-[0-9]* -NO_STAGE= yes .include Added: head/devel/cutils/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cutils/pkg-plist Thu Jan 23 00:03:34 2014 (r340755) @@ -0,0 +1,14 @@ +bin/cdecl +bin/chilight +bin/cobfusc +bin/cundecl +bin/cunloop +bin/yyextract +bin/yyref +man/man1/cdecl.1.gz +man/man1/chilight.1.gz +man/man1/cobfusc.1.gz +man/man1/cundecl.1.gz +man/man1/cunloop.1.gz +man/man1/yyextract.1.gz +man/man1/yyref.1.gz From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:07:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 05B17FBC; Thu, 23 Jan 2014 00:07:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E598E12E4; Thu, 23 Jan 2014 00:07:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N07Tqg034633; Thu, 23 Jan 2014 00:07:29 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N07TLl034632; Thu, 23 Jan 2014 00:07:29 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230007.s0N07TLl034632@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:07:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340756 - head/devel/cmake-fedora X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:07:30 -0000 Author: bapt Date: Thu Jan 23 00:07:29 2014 New Revision: 340756 URL: http://svnweb.freebsd.org/changeset/ports/340756 QAT: https://qat.redports.org/buildarchive/r340756/ Log: Support stage Modified: head/devel/cmake-fedora/Makefile Modified: head/devel/cmake-fedora/Makefile ============================================================================== --- head/devel/cmake-fedora/Makefile Thu Jan 23 00:03:34 2014 (r340755) +++ head/devel/cmake-fedora/Makefile Thu Jan 23 00:07:29 2014 (r340756) @@ -14,15 +14,14 @@ LICENSE= BSD WRKSRC= ${WRKDIR}/Modules NO_BUILD= yes -NO_STAGE= yes REINPLACE_ARGS= -i '' post-patch: @${REINPLACE_CMD} -e 's|date --utc|date -u|' ${WRKSRC}/DateTimeFormat.cmake do-install: - ${MKDIR} ${PREFIX}/share/cmake/Modules + ${MKDIR} ${STAGEDIR}${PREFIX}/share/cmake/Modules cd ${WRKSRC}/ && \ - ${INSTALL_DATA} * ${PREFIX}/share/cmake/Modules + ${INSTALL_DATA} * ${STAGEDIR}${PREFIX}/share/cmake/Modules .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:09:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 724EE14E; Thu, 23 Jan 2014 00:09:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E8D712F2; Thu, 23 Jan 2014 00:09:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N09I1n034892; Thu, 23 Jan 2014 00:09:18 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N09IYE034891; Thu, 23 Jan 2014 00:09:18 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230009.s0N09IYE034891@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:09:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340757 - head/devel/clewn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:09:18 -0000 Author: bapt Date: Thu Jan 23 00:09:17 2014 New Revision: 340757 URL: http://svnweb.freebsd.org/changeset/ports/340757 QAT: https://qat.redports.org/buildarchive/r340757/ Log: Support stage Depends on vim binary rather than a specific version of the vim package to allow installing with vim-lite Modified: head/devel/clewn/Makefile Modified: head/devel/clewn/Makefile ============================================================================== --- head/devel/clewn/Makefile Thu Jan 23 00:07:29 2014 (r340756) +++ head/devel/clewn/Makefile Thu Jan 23 00:09:17 2014 (r340757) @@ -10,11 +10,10 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= giacomomariani@yahoo.it COMMENT= Clewn provides Gdb support within Vim -RUN_DEPENDS= vim>=6.3:${PORTSDIR}/editors/vim +RUN_DEPENDS= vim:${PORTSDIR}/editors/vim +USES= gmake GNU_CONFIGURE= yes CONFIGURE_ENV= vimdir=${PREFIX}/share/vim/vimfiles -USE_GMAKE= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:13:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0881F35B; Thu, 23 Jan 2014 00:13:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E8E171382; Thu, 23 Jan 2014 00:13:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0DOXp038080; Thu, 23 Jan 2014 00:13:24 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0DOBC038079; Thu, 23 Jan 2014 00:13:24 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230013.s0N0DOBC038079@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:13:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340758 - head/devel/cobf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:13:25 -0000 Author: bapt Date: Thu Jan 23 00:13:24 2014 New Revision: 340758 URL: http://svnweb.freebsd.org/changeset/ports/340758 QAT: https://qat.redports.org/buildarchive/r340758/ Log: Support stage Use bsdtar to extract Use BUILD_WRKSRC instead of custom do-build Modified: head/devel/cobf/Makefile Modified: head/devel/cobf/Makefile ============================================================================== --- head/devel/cobf/Makefile Thu Jan 23 00:09:17 2014 (r340757) +++ head/devel/cobf/Makefile Thu Jan 23 00:13:24 2014 (r340758) @@ -6,26 +6,24 @@ PORTVERSION= 1.06 CATEGORIES= devel MASTER_SITES= http://home.arcor.de/bernhard.baier/${PORTNAME}/ DISTNAME= ${PORTNAME}_${PORTVERSION} +EXTRACT_SUFX= .zip MAINTAINER= ed@FreeBSD.org COMMENT= C and C++ code obfuscator -USE_ZIP= yes +OPTIONS_DEFINE= DOCS + WRKSRC= ${WRKDIR} PORTDOCS= COPYING README cobf.pdf PLIST_FILES= bin/cobf - -NO_STAGE= yes -do-build: - @${MAKE} -C ${WRKSRC}/src/cpp +MAKEFILE= makefile +BUILD_WRKSRC= ${WRKSRC}/src/cpp do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/cpp/cobf ${PREFIX}/bin/cobf -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/copyright.txt ${DOCSDIR}/COPYING - ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR}/README - ${INSTALL_DATA} ${WRKSRC}/doc/cobf.pdf ${DOCSDIR}/cobf.pdf -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/src/cpp/cobf ${STAGEDIR}${PREFIX}/bin/cobf + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/copyright.txt ${STAGEDIR}${DOCSDIR}/COPYING + ${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR}/README + ${INSTALL_DATA} ${WRKSRC}/doc/cobf.pdf ${STAGEDIR}${DOCSDIR}/cobf.pdf .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:15:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BD8F482; Thu, 23 Jan 2014 00:15:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 38072139B; Thu, 23 Jan 2014 00:15:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0Fdta038416; Thu, 23 Jan 2014 00:15:39 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0FdD0038415; Thu, 23 Jan 2014 00:15:39 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230015.s0N0FdD0038415@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:15:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340759 - head/devel/ccdoc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:15:39 -0000 Author: bapt Date: Thu Jan 23 00:15:38 2014 New Revision: 340759 URL: http://svnweb.freebsd.org/changeset/ports/340759 QAT: https://qat.redports.org/buildarchive/r340759/ Log: Support stage Modified: head/devel/ccdoc/Makefile Modified: head/devel/ccdoc/Makefile ============================================================================== --- head/devel/ccdoc/Makefile Thu Jan 23 00:13:24 2014 (r340758) +++ head/devel/ccdoc/Makefile Thu Jan 23 00:15:38 2014 (r340759) @@ -11,18 +11,17 @@ DIST_SUBDIR= ccdoc MAINTAINER= ports@FreeBSD.org COMMENT= Extracting comments from C++ source and generating HTML +OPTIONS_DEFINE= DOCS + USES= perl5 WRKSRC= ${WRKDIR}/${PORTNAME}v${PORTVERSION:S/.//g}/src MAKEFILE= mkopt_gcc.mk ALL_TARGET= bld -MAN1= ccdoc.1 -PLIST_FILES= bin/ccdoc -.if !defined(NOPORTDOCS) +PLIST_FILES= bin/ccdoc \ + man/man1/ccdoc.1.gz PORTDOCS= * -.endif -NO_STAGE= yes do-configure: ${REINPLACE_CMD} -e "s:%%PERL%%:${PERL}:" \ -e "s:%%CXX%%:${CXX}:" \ @@ -32,16 +31,14 @@ do-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/../bin_opt_gcc_/ccdoc.exe \ - ${PREFIX}/bin/ccdoc - ${INSTALL_MAN} ${WRKSRC}/../doc/htdocs/ccdoc.man ${MAN1PREFIX}/man/man1/${MAN1} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + ${STAGEDIR}${PREFIX}/bin/ccdoc + ${INSTALL_MAN} ${WRKSRC}/../doc/htdocs/ccdoc.man ${STAGEDIR}${MAN1PREFIX}/man/man1/${PORTNAME}.1 + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${FIND} ${WRKSRC}/../doc \( -name '*.html' -o \ -name '*.htm' -o \ -name '*.gif' -o \ -name '*.txt' -o \ -name '*.jpg' \) -print | \ - ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} -.endif + ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:20:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 651C065B; Thu, 23 Jan 2014 00:20:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 51F4E1478; Thu, 23 Jan 2014 00:20:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0Kd2c039724; Thu, 23 Jan 2014 00:20:39 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0Kdbt039723; Thu, 23 Jan 2014 00:20:39 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230020.s0N0Kdbt039723@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:20:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340760 - head/devel/clanlib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:20:39 -0000 Author: bapt Date: Thu Jan 23 00:20:38 2014 New Revision: 340760 URL: http://svnweb.freebsd.org/changeset/ports/340760 QAT: https://qat.redports.org/buildarchive/r340760/ Log: Support stage Modified: head/devel/clanlib/Makefile Modified: head/devel/clanlib/Makefile ============================================================================== --- head/devel/clanlib/Makefile Thu Jan 23 00:15:38 2014 (r340759) +++ head/devel/clanlib/Makefile Thu Jan 23 00:20:38 2014 (r340760) @@ -14,15 +14,14 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Cross-platform game SDK LICENSE= ZLIB -LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png \ - mikmod:${PORTSDIR}/audio/libmikmod \ - vorbis:${PORTSDIR}/audio/libvorbis \ - fontconfig:${PORTSDIR}/x11-fonts/fontconfig \ - pcre:${PORTSDIR}/devel/pcre \ - execinfo:${PORTSDIR}/devel/libexecinfo +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png \ + libmikmod.so:${PORTSDIR}/audio/libmikmod \ + libvorbis.so:${PORTSDIR}/audio/libvorbis \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ + libpcre.so:${PORTSDIR}/devel/pcre \ + libexecinfo.so:${PORTSDIR}/devel/libexecinfo USE_GCC= yes USE_XORG= x11 @@ -53,7 +52,6 @@ CONFIGURE_ARGS= --disable-docs \ PLIST_SUB+= VER=${PORTVERSION:R} \ SHORT_VER=${PORTVERSION:R:R}${PORTVERSION:R:E} -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|LIBS="-lsqlite3 -ldl"|LIBS="-lsqlite3"|g' \ ${WRKSRC}/configure @@ -63,4 +61,5 @@ post-patch: ${WRKSRC}/Sources/Core/System/system.cpp @${REINPLACE_CMD} -e '47 s|#ifndef __FreeBSD__|#if !defined(__FreeBSD__)|g' \ ${WRKSRC}/Sources/Core/System/system.cpp + .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:21:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A76E747; Thu, 23 Jan 2014 00:21:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 674941482; Thu, 23 Jan 2014 00:21:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0LCVY041469; Thu, 23 Jan 2014 00:21:12 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0LCd5041468; Thu, 23 Jan 2014 00:21:12 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230021.s0N0LCd5041468@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:21:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340761 - head/devel/cdialog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:21:12 -0000 Author: bapt Date: Thu Jan 23 00:21:11 2014 New Revision: 340761 URL: http://svnweb.freebsd.org/changeset/ports/340761 QAT: https://qat.redports.org/buildarchive/r340761/ Log: Support stage Fix build with ports ncurses Modified: head/devel/cdialog/Makefile Modified: head/devel/cdialog/Makefile ============================================================================== --- head/devel/cdialog/Makefile Thu Jan 23 00:20:38 2014 (r340760) +++ head/devel/cdialog/Makefile Thu Jan 23 00:21:11 2014 (r340761) @@ -10,35 +10,32 @@ DISTNAME= ${PORTNAME:S|^c||}-${PORTVERSI EXTRACT_SUFX= .tgz MAINTAINER= sylvio@FreeBSD.org -COMMENT= An enhanced version of 'dialog' to work with ncurses +COMMENT= Enhanced version of 'dialog' to work with ncurses + +OPTIONS_DEFINE= EXAMPLES LICENSE= LGPL21 +USES= ncurses + USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-widec \ --includedir=${PREFIX}/include/${PORTNAME} \ --with-libtool \ + --with-curses-dir=${NCURSESBASE} \ --with-ncursesw \ --with-package=${PORTNAME} MAKEFILE= makefile -MAN1= cdialog.1 -MAN3= cdialog.3 -MANCOMPRESSED= no - INSTALL_TARGET= install-strip install-man install-lib -NO_STAGE= yes -.if !defined(NOPORTEXAMPLES) post-patch: @${FIND} ${WRKSRC}/samples/ -type f -exec ${REINPLACE_CMD} -i "" "s|dialog|cdialog|g" {} \; post-install: - @${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC}/samples && ${FIND} . | \ - ${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/samples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:26:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F1517A88; Thu, 23 Jan 2014 00:26:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DE07B14E4; Thu, 23 Jan 2014 00:26:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0QmII042512; Thu, 23 Jan 2014 00:26:48 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0QmxH042511; Thu, 23 Jan 2014 00:26:48 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230026.s0N0QmxH042511@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:26:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340762 - head/devel/clanlib1 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:26:49 -0000 Author: bapt Date: Thu Jan 23 00:26:48 2014 New Revision: 340762 URL: http://svnweb.freebsd.org/changeset/ports/340762 QAT: https://qat.redports.org/buildarchive/r340762/ Log: Support stage Modified: head/devel/clanlib1/Makefile Modified: head/devel/clanlib1/Makefile ============================================================================== --- head/devel/clanlib1/Makefile Thu Jan 23 00:21:11 2014 (r340761) +++ head/devel/clanlib1/Makefile Thu Jan 23 00:26:48 2014 (r340762) @@ -13,7 +13,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Cross-platform game SDK LICENSE= ZLIB -LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ libpng15.so:${PORTSDIR}/graphics/png \ @@ -43,7 +42,6 @@ CONFIGURE_ARGS= --disable-docs \ PLIST_SUB+= VER=${PORTVERSION:R} -NO_STAGE= yes post-patch: @${GREP} -lR "SDL/SDL" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ 's|SDL/SDL|SDL|g' From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:27:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E636EB6C; Thu, 23 Jan 2014 00:27:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D28BC14EE; Thu, 23 Jan 2014 00:27:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0RRvr042764; Thu, 23 Jan 2014 00:27:27 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0RRMV042763; Thu, 23 Jan 2014 00:27:27 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230027.s0N0RRMV042763@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:27:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340763 - head/devel/clanlib22 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:27:28 -0000 Author: bapt Date: Thu Jan 23 00:27:27 2014 New Revision: 340763 URL: http://svnweb.freebsd.org/changeset/ports/340763 QAT: https://qat.redports.org/buildarchive/r340763/ Log: Support stage Modified: head/devel/clanlib22/Makefile Modified: head/devel/clanlib22/Makefile ============================================================================== --- head/devel/clanlib22/Makefile Thu Jan 23 00:26:48 2014 (r340762) +++ head/devel/clanlib22/Makefile Thu Jan 23 00:27:27 2014 (r340763) @@ -14,7 +14,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Cross-platform game SDK LICENSE= ZLIB -LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ libpng15.so:${PORTSDIR}/graphics/png \ @@ -51,7 +50,6 @@ CONFIGURE_ARGS= --disable-docs \ PLIST_SUB+= VER=${PORTVERSION:R} \ SHORT_VER=${PORTVERSION:R:R}${PORTVERSION:R:E} -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e '/^extra_LIBS_clanSqlite/s|-ldl||g' \ ${WRKSRC}/configure From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:28:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 95E14DAE; Thu, 23 Jan 2014 00:28:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 822A814FE; Thu, 23 Jan 2014 00:28:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0SuDk043041; Thu, 23 Jan 2014 00:28:56 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0Suie043039; Thu, 23 Jan 2014 00:28:56 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230028.s0N0Suie043039@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:28:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340764 - head/devel/cgdb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:28:56 -0000 Author: bapt Date: Thu Jan 23 00:28:55 2014 New Revision: 340764 URL: http://svnweb.freebsd.org/changeset/ports/340764 QAT: https://qat.redports.org/buildarchive/r340764/ Log: Support stage Modified: head/devel/cgdb/Makefile head/devel/cgdb/pkg-plist Modified: head/devel/cgdb/Makefile ============================================================================== --- head/devel/cgdb/Makefile Thu Jan 23 00:27:27 2014 (r340763) +++ head/devel/cgdb/Makefile Thu Jan 23 00:28:55 2014 (r340764) @@ -7,10 +7,9 @@ CATEGORIES= devel MASTER_SITES= http://cgdb.me/files/ MAINTAINER= clsung@FreeBSD.org -COMMENT= A curses-based interface to the GNU Debugger +COMMENT= Curses-based interface to the GNU Debugger INFO= cgdb -MAN1= cgdb.1 GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes @@ -20,18 +19,7 @@ MAKE_JOBS_UNSAFE= yes # we have to specify the full path. LDFLAGS+= /usr/lib/libutil.so -NO_STAGE= yes -.include - -# at this time we can not use LIB_DEPENDS, please read ports/99327 -.if ${OSVERSION} < 700016 -BUILD_DEPENDS+= ${LOCALBASE}/lib/libreadline.so.6:${PORTSDIR}/devel/readline -RUN_DEPENDS:= ${BUILD_DEPENDS} -LDFLAGS+= -rpath ${LOCALBASE}/lib -CONFIGURE_ARGS+= --with-readline=${LOCALBASE} -.endif - post-patch: @${REINPLACE_CMD} -e 's|dev_ptmx=yes|dev_ptmx=no|' ${WRKSRC}/configure -.include +.include Modified: head/devel/cgdb/pkg-plist ============================================================================== --- head/devel/cgdb/pkg-plist Thu Jan 23 00:27:27 2014 (r340763) +++ head/devel/cgdb/pkg-plist Thu Jan 23 00:28:55 2014 (r340764) @@ -1,3 +1,4 @@ bin/cgdb %%DATADIR%%/cgdb.txt +man/man1/cgdb.1.gz @dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:31:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A37AF0A; Thu, 23 Jan 2014 00:31:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 56AFE15D3; Thu, 23 Jan 2014 00:31:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0VN76046020; Thu, 23 Jan 2014 00:31:23 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0VN3t046019; Thu, 23 Jan 2014 00:31:23 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230031.s0N0VN3t046019@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:31:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340765 - head/devel/elftoaout X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:31:23 -0000 Author: bapt Date: Thu Jan 23 00:31:22 2014 New Revision: 340765 URL: http://svnweb.freebsd.org/changeset/ports/340765 QAT: https://qat.redports.org/buildarchive/r340765/ Log: Support stage Modified: head/devel/elftoaout/Makefile Modified: head/devel/elftoaout/Makefile ============================================================================== --- head/devel/elftoaout/Makefile Thu Jan 23 00:28:55 2014 (r340764) +++ head/devel/elftoaout/Makefile Thu Jan 23 00:31:22 2014 (r340765) @@ -13,12 +13,11 @@ COMMENT= ELF to a.out conversion tool by WRKSRC= ${WRKDIR}/sparc-utils-1.9.orig/elftoaout-2.3 MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" -MAN1= elftoaout.1 -PLIST_FILES= bin/elftoaout +PLIST_FILES= bin/elftoaout \ + man/man1/elftoaout.1.gz -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/elftoaout ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/elftoaout.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/elftoaout ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/elftoaout.1 ${STAGEDIR}${PREFIX}/man/man1 .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:32:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6008990; Thu, 23 Jan 2014 00:32:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C74A15F1; Thu, 23 Jan 2014 00:32:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0WrxX046232; Thu, 23 Jan 2014 00:32:53 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0Wr31046231; Thu, 23 Jan 2014 00:32:53 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230032.s0N0Wr31046231@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:32:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340766 - head/devel/libnotify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:32:53 -0000 Author: bapt Date: Thu Jan 23 00:32:52 2014 New Revision: 340766 URL: http://svnweb.freebsd.org/changeset/ports/340766 QAT: https://qat.redports.org/buildarchive/r340766/ Log: Support stage Modified: head/devel/libnotify/Makefile Modified: head/devel/libnotify/Makefile ============================================================================== --- head/devel/libnotify/Makefile Thu Jan 23 00:31:22 2014 (r340765) +++ head/devel/libnotify/Makefile Thu Jan 23 00:32:52 2014 (r340766) @@ -8,10 +8,9 @@ CATEGORIES= devel gnome MASTER_SITES= GNOME MAINTAINER= gnome@FreeBSD.org -COMMENT= A library for desktop notifications +COMMENT= Library for desktop notifications LICENSE= LGPL21 -LICENSE_FILE= ${WRKSRC}/COPYING USE_XZ= yes USE_GNOME= intlhack glib20 gdkpixbuf2 ltverhack introspection:build @@ -21,5 +20,4 @@ USE_AUTOTOOLS= libtool CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:35:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3B721C8; Thu, 23 Jan 2014 00:35:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8ED9E1602; Thu, 23 Jan 2014 00:35:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0ZVXZ046663; Thu, 23 Jan 2014 00:35:31 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0ZVsT046662; Thu, 23 Jan 2014 00:35:31 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230035.s0N0ZVsT046662@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:35:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340767 - head/devel/log4cplus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:35:31 -0000 Author: bapt Date: Thu Jan 23 00:35:31 2014 New Revision: 340767 URL: http://svnweb.freebsd.org/changeset/ports/340767 QAT: https://qat.redports.org/buildarchive/r340767/ Log: Support stage Modified: head/devel/log4cplus/Makefile Modified: head/devel/log4cplus/Makefile ============================================================================== --- head/devel/log4cplus/Makefile Thu Jan 23 00:32:52 2014 (r340766) +++ head/devel/log4cplus/Makefile Thu Jan 23 00:35:31 2014 (r340767) @@ -8,7 +8,9 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} DISTFILES= log4cplus-${PORTVERSION}.tar.bz2 MAINTAINER= reed@reedmedia.net -COMMENT= A logging library for C++ +COMMENT= logging library for C++ + +OPTIONS_DEFINE= DOCS USE_GCC= any USE_AUTOTOOLS= libtool @@ -17,18 +19,13 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+=--enable-threads=yes MAKE_JOBS_UNSAFE= yes -.if !defined(NOPORTDOCS) PORTDOCS= * -.endif -NO_STAGE= yes post-install: - ${INSTALL_DATA} ${WRKSRC}/LICENSE ${PREFIX}/include/log4cplus -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/docs/*.config ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/docs/*.html ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/docs/doxygen.css ${DOCSDIR} -.endif + ${INSTALL_DATA} ${WRKSRC}/LICENSE ${STAGEDIR}${PREFIX}/include/log4cplus + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/docs/*.config ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/docs/*.html ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/docs/doxygen.css ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:36:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7105407; Thu, 23 Jan 2014 00:36:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A3BB11613; Thu, 23 Jan 2014 00:36:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0aIQA046878; Thu, 23 Jan 2014 00:36:18 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0aI2Z046877; Thu, 23 Jan 2014 00:36:18 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230036.s0N0aI2Z046877@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:36:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340768 - head/devel/log4sh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:36:18 -0000 Author: bapt Date: Thu Jan 23 00:36:18 2014 New Revision: 340768 URL: http://svnweb.freebsd.org/changeset/ports/340768 QAT: https://qat.redports.org/buildarchive/r340768/ Log: Support stage Modified: head/devel/log4sh/Makefile Modified: head/devel/log4sh/Makefile ============================================================================== --- head/devel/log4sh/Makefile Thu Jan 23 00:35:31 2014 (r340767) +++ head/devel/log4sh/Makefile Thu Jan 23 00:36:18 2014 (r340768) @@ -8,19 +8,18 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} EXTRACT_SUFX= .tgz MAINTAINER= lx@FreeBSD.org -COMMENT= A common logging library for Bourne shell scripts +COMMENT= Common logging library for Bourne shell scripts + +OPTIONS_DEFINE= DOCS PLIST_FILES= lib/log4sh PORTDOCS= log4sh.html ALL_TARGET= build -NO_STAGE= yes do-install: - ${INSTALL_DATA} ${WRKSRC}/src/shell/log4sh ${PREFIX}/lib -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/log4sh.html ${DOCSDIR} -.endif + ${INSTALL_DATA} ${WRKSRC}/src/shell/log4sh ${STAGEDIR}${PREFIX}/lib + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/log4sh.html ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:38:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2AD9C64C; Thu, 23 Jan 2014 00:38:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 16B98163F; Thu, 23 Jan 2014 00:38:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0clPC047214; Thu, 23 Jan 2014 00:38:47 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0clCr047213; Thu, 23 Jan 2014 00:38:47 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230038.s0N0clCr047213@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:38:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340769 - head/devel/linux-f10-ncurses-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.17 Precedence: list List-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, 23 Jan 2014 00:38:48 -0000 Author: bapt Date: Thu Jan 23 00:38:47 2014 New Revision: 340769 URL: http://svnweb.freebsd.org/changeset/ports/340769 QAT: https://qat.redports.org/buildarchive/r340769/ Log: Support stage Modified: head/devel/linux-f10-ncurses-base/Makefile Modified: head/devel/linux-f10-ncurses-base/Makefile ============================================================================== --- head/devel/linux-f10-ncurses-base/Makefile Thu Jan 23 00:36:18 2014 (r340768) +++ head/devel/linux-f10-ncurses-base/Makefile Thu Jan 23 00:38:47 2014 (r340769) @@ -16,5 +16,4 @@ LINUX_DIST_VER= 10 RPMVERSION= 20.20080927.fc10 SRC_DISTFILES= ncurses-${PORTVERSION}-${RPMVERSION}.src.rpm -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:40:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 901B38BC; Thu, 23 Jan 2014 00:40:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7D9E91658; Thu, 23 Jan 2014 00:40:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0eaun049452; Thu, 23 Jan 2014 00:40:36 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0eaNH049451; Thu, 23 Jan 2014 00:40:36 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230040.s0N0eaNH049451@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:40:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340770 - head/devel/log4shib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:40:36 -0000 Author: bapt Date: Thu Jan 23 00:40:35 2014 New Revision: 340770 URL: http://svnweb.freebsd.org/changeset/ports/340770 QAT: https://qat.redports.org/buildarchive/r340770/ Log: Support stage Modified: head/devel/log4shib/Makefile Modified: head/devel/log4shib/Makefile ============================================================================== --- head/devel/log4shib/Makefile Thu Jan 23 00:38:47 2014 (r340769) +++ head/devel/log4shib/Makefile Thu Jan 23 00:40:35 2014 (r340770) @@ -7,7 +7,7 @@ CATEGORIES= devel MASTER_SITES= http://shibboleth.net/downloads/${PORTNAME}/${DISTVERSION}/ MAINTAINER= girgen@FreeBSD.org -COMMENT= A library of C++ classes for flexible logging +COMMENT= Library of C++ classes for flexible logging USE_AUTOTOOLS= libtool USES= gmake pathfix pkgconfig @@ -15,7 +15,6 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-html-docs --disable-doxygen USE_LDCONFIG= yes -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's| -pedantic||g' ${WRKSRC}/configure From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:41:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A04A39AE; Thu, 23 Jan 2014 00:41:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8CA5216B7; Thu, 23 Jan 2014 00:41:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0fCop049986; Thu, 23 Jan 2014 00:41:12 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0fCFG049985; Thu, 23 Jan 2014 00:41:12 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230041.s0N0fCFG049985@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:41:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340771 - head/devel/log4cpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:41:12 -0000 Author: bapt Date: Thu Jan 23 00:41:11 2014 New Revision: 340771 URL: http://svnweb.freebsd.org/changeset/ports/340771 QAT: https://qat.redports.org/buildarchive/r340771/ Log: Support stage Modified: head/devel/log4cpp/Makefile Modified: head/devel/log4cpp/Makefile ============================================================================== --- head/devel/log4cpp/Makefile Thu Jan 23 00:40:35 2014 (r340770) +++ head/devel/log4cpp/Makefile Thu Jan 23 00:41:11 2014 (r340771) @@ -7,17 +7,15 @@ CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION}.x%20%28new%29/${PORTNAME}-${PORTVERSION} MAINTAINER= clsung@FreeBSD.org -COMMENT= A library of C++ classes for flexible logging +COMMENT= Library of C++ classes for flexible logging +USES= gmake pathfix USE_AUTOTOOLS= libtool -USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-pthreads --disable-html-docs USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} -#.include "Makefile.man" -NO_STAGE= yes .include # doxygen build is BROKEN atm @@ -40,6 +38,5 @@ CONFIGURE_ARGS+= --disable-doxygen post-patch: @${REINPLACE_CMD} -e 's| -pedantic||g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|' ${WRKSRC}/Makefile.in .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:43:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A093AE57; Thu, 23 Jan 2014 00:43:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8CF4516D3; Thu, 23 Jan 2014 00:43:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0hUfj050740; Thu, 23 Jan 2014 00:43:30 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0hUpO050739; Thu, 23 Jan 2014 00:43:30 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230043.s0N0hUpO050739@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:43:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340772 - head/devel/looks X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:43:30 -0000 Author: bapt Date: Thu Jan 23 00:43:29 2014 New Revision: 340772 URL: http://svnweb.freebsd.org/changeset/ports/340772 QAT: https://qat.redports.org/buildarchive/r340772/ Log: Support stage Modified: head/devel/looks/Makefile Modified: head/devel/looks/Makefile ============================================================================== --- head/devel/looks/Makefile Thu Jan 23 00:41:11 2014 (r340771) +++ head/devel/looks/Makefile Thu Jan 23 00:43:29 2014 (r340772) @@ -7,13 +7,15 @@ PORTREVISION= 1 CATEGORIES= devel java MASTER_SITES= http://www.jgoodies.com/download/libraries/${PORTNAME}/ DISTNAME= jgoodies-${PORTNAME}-${PORTVERSION:S|.|_|g} +EXTRACT_SUFX= .zip MAINTAINER= ports@FreeBSD.org COMMENT= JGoodies Looks improve the appearance of your Java applications -LICENSE= BSD +OPTIONS_DEFINE= DOCS + +LICENSE= BSD3CLAUSE -USE_ZIP= yes USE_JAVA= yes JAVA_VERSION= 1.6+ NO_BUILD= yes @@ -27,17 +29,11 @@ PLIST_FILES= %%JAVAJARDIR%%/${JARFILE} \ DOCFILES= README.html RELEASE-NOTES.txt PORTDOCS= * -NO_STAGE= yes -.include - do-install: - ${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${JAVAJARDIR} - ${LN} -s ${JAVAJARDIR}/${JARFILE} ${JAVAJARDIR}/looks.jar -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${DOCFILES:S|^|${WRKSRC}/|} ${DOCSDIR} - @(cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} \* ${DOCSDIR}) - @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." -.endif + ${INSTALL_DATA} ${WRKSRC}/${JARFILE} ${STAGEDIR}${JAVAJARDIR} + ${LN} -sf ${JARFILE} ${STAGEDIR}${JAVAJARDIR}/looks.jar + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @${INSTALL_DATA} ${DOCFILES:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + @(cd ${WRKSRC}/docs/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:47:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C381164A; Thu, 23 Jan 2014 00:47:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AFA5D1706; Thu, 23 Jan 2014 00:47:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0lBCT051577; Thu, 23 Jan 2014 00:47:11 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0lBQ4051576; Thu, 23 Jan 2014 00:47:11 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230047.s0N0lBQ4051576@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:47:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340773 - head/devel/mcpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:47:11 -0000 Author: bapt Date: Thu Jan 23 00:47:11 2014 New Revision: 340773 URL: http://svnweb.freebsd.org/changeset/ports/340773 QAT: https://qat.redports.org/buildarchive/r340773/ Log: Support stage Modified: head/devel/mcpp/Makefile Modified: head/devel/mcpp/Makefile ============================================================================== --- head/devel/mcpp/Makefile Thu Jan 23 00:43:29 2014 (r340772) +++ head/devel/mcpp/Makefile Thu Jan 23 00:47:11 2014 (r340773) @@ -12,7 +12,6 @@ COMMENT= Alternative C/C++ preprocessor GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-mcpplib -MAN1= mcpp.1 PLIST_FILES= bin/mcpp \ lib/libmcpp.so \ @@ -21,6 +20,7 @@ PLIST_FILES= bin/mcpp \ lib/libmcpp.la \ include/mcpp_lib.h \ include/mcpp_out.h \ + man/man1/mcpp.1.gz \ share/doc/mcpp/LICENSE \ share/doc/mcpp/NEWS \ share/doc/mcpp/README \ @@ -28,5 +28,4 @@ PLIST_FILES= bin/mcpp \ share/doc/mcpp/mcpp-manual-jp.html PLIST_DIRS= share/doc/mcpp -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 00:48:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D7A3731; Thu, 23 Jan 2014 00:48:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1014D1712; Thu, 23 Jan 2014 00:48:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N0m5Zj051805; Thu, 23 Jan 2014 00:48:05 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N0m5HL051804; Thu, 23 Jan 2014 00:48:05 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230048.s0N0m5HL051804@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 00:48:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340774 - head/devel/m17n-lib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 00:48:06 -0000 Author: bapt Date: Thu Jan 23 00:48:05 2014 New Revision: 340774 URL: http://svnweb.freebsd.org/changeset/ports/340774 QAT: https://qat.redports.org/buildarchive/r340774/ Log: Support stage Modified: head/devel/m17n-lib/Makefile Modified: head/devel/m17n-lib/Makefile ============================================================================== --- head/devel/m17n-lib/Makefile Thu Jan 23 00:47:11 2014 (r340773) +++ head/devel/m17n-lib/Makefile Thu Jan 23 00:48:05 2014 (r340774) @@ -13,11 +13,11 @@ COMMENT= Library for the multilingual te BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison \ m17n-db>=1.6.4:${PORTSDIR}/devel/m17n-db -LIB_DEPENDS= fontconfig:${PORTSDIR}/x11-fonts/fontconfig \ - freetype:${PORTSDIR}/print/freetype2 \ - fribidi:${PORTSDIR}/converters/fribidi \ - gd:${PORTSDIR}/graphics/gd \ - otf:${PORTSDIR}/print/libotf +LIB_DEPENDS= libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ + libfreetype.so:${PORTSDIR}/print/freetype2 \ + libfribidi.so:${PORTSDIR}/converters/fribidi \ + libgd.so:${PORTSDIR}/graphics/gd \ + libotf.so:${PORTSDIR}/print/libotf RUN_DEPENDS= m17n-db>=1.6.4:${PORTSDIR}/devel/m17n-db MAKE_JOBS_UNSAFE= yes @@ -36,27 +36,15 @@ ANTHY_DESC= Kana-Kanji conversion suppor ISPELL_DESC= Spell checking support via Ispell THAI_DESC= Thai language support via libThai -NO_STAGE= yes -.include +ANTHY_LIB_DEPENDS= libanthy.so:${PORTSDIR}/japanese/anthy +ANTHY_CONFIGURE_OFF+= --without-anthy -.if ${PORT_OPTIONS:MANTHY} -LIB_DEPENDS+= anthy:${PORTSDIR}/japanese/anthy -.else -CONFIGURE_ARGS+= --without-anthy -.endif - -.if ${PORT_OPTIONS:MISPELL} -BUILD_DEPENDS+= ispell:${PORTSDIR}/textproc/ispell -RUN_DEPENDS+= ispell:${PORTSDIR}/textproc/ispell -.else -CONFIGURE_ENV+= HAVE_ISPELL=no -.endif - -.if ${PORT_OPTIONS:MTHAI} -LIB_DEPENDS+= thai:${PORTSDIR}/devel/libthai -.else -CONFIGURE_ARGS+= --without-libthai -.endif +ISPELL_BUILD_DEPENDS= ispell:${PORTSDIR}/textproc/ispell +ISPELL_RUN_DEPENDS= ispell:${PORTSDIR}/textproc/ispell +ISPELL_CONFIGURE_OFF= HAVE_ISPELL=no + +THAI_LIB_DEPENDS= libthai.so:${PORTSDIR}/devel/libthai +THAI_CONFIGURE_OFF= --without-libthai post-patch: @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \ From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:06:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 099C4709; Thu, 23 Jan 2014 03:06:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E879E131A; Thu, 23 Jan 2014 03:06:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N36GR3007440; Thu, 23 Jan 2014 03:06:16 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N36FLk007435; Thu, 23 Jan 2014 03:06:15 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201401230306.s0N36FLk007435@svn.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 23 Jan 2014 03:06:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340775 - in head/x11-wm: compiz-fusion golem golem/files matwm2 matwm2/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.17 Precedence: list List-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, 23 Jan 2014 03:06:17 -0000 Author: vanilla Date: Thu Jan 23 03:06:15 2014 New Revision: 340775 URL: http://svnweb.freebsd.org/changeset/ports/340775 QAT: https://qat.redports.org/buildarchive/r340775/ Log: Support STAGEDIR. Approved by: portmgr (blanket infrastructure) Added: head/x11-wm/golem/files/patch-Makefile.rules.gnu.in (contents, props changed) Deleted: head/x11-wm/compiz-fusion/pkg-plist Modified: head/x11-wm/golem/Makefile head/x11-wm/golem/pkg-plist head/x11-wm/matwm2/Makefile head/x11-wm/matwm2/files/patch-Makefile.in Modified: head/x11-wm/golem/Makefile ============================================================================== --- head/x11-wm/golem/Makefile Thu Jan 23 00:48:05 2014 (r340774) +++ head/x11-wm/golem/Makefile Thu Jan 23 03:06:15 2014 (r340775) @@ -14,20 +14,15 @@ LICENSE= BSD OPTIONS_DEFINE= ESOUND XINERAMA OPTIONS_DEFAULT= XINERAMA -USES= perl5 +USES= perl5 gmake USE_PERL5= build USE_BZIP2= yes USE_XORG= xpm WANT_GNOME= yes -USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-i18n MAKE_ARGS= DEVEL=1 -MANCOMPRESSED= yes -MAN1= golem.1 - -NO_STAGE= yes .include .if ${ARCH} == "amd64" || ${ARCH} == "ia64" Added: head/x11-wm/golem/files/patch-Makefile.rules.gnu.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-wm/golem/files/patch-Makefile.rules.gnu.in Thu Jan 23 03:06:15 2014 (r340775) @@ -0,0 +1,45 @@ +--- Makefile.rules.gnu.in.orig 2014-01-22 17:53:46.492137556 +0800 ++++ Makefile.rules.gnu.in 2014-01-22 17:58:12.855113204 +0800 +@@ -179,17 +179,17 @@ menuconfig: + + install-bin: @INSTALL_PLUGINS@ + cd $(GOLEM_HOME) +- @INSTALL@ -d $(bindir) +- @INSTALL@ build-bin/golem $(bindir) +- @INSTALL@ build-bin/golem.install $(bindir) ++ @INSTALL@ -d $(DESTDIR)$(bindir) ++ @INSTALL@ build-bin/golem $(DESTDIR)$(bindir) ++ @INSTALL@ build-bin/golem.install $(DESTDIR)$(bindir) + + install-plugins: all +- @INSTALL@ -d $(libdir)/golem/plugins ++ @INSTALL@ -d $(DESTDIR)$(libdir)/golem/plugins + files=`( cd $(GOLEM_HOME)/src ; perl ./listmods.pl $(GOLEM_HOME) dynamic )` ; \ + for i in $$files ; do \ + cd $(GOLEM_HOME); \ + if [ -f build-plugin/$$i.so ] ; then \ +- @INSTALL@ build-plugin/$$i.so $(libdir)/golem/plugins/ ; \ ++ @INSTALL@ build-plugin/$$i.so $(DESTDIR)$(libdir)/golem/plugins/ ; \ + fi ; \ + done + +@@ -197,15 +197,15 @@ install-data: + cd $(GOLEM_HOME); \ + cd sample.golem ; \ + for i in `find . -type d | grep -v CVS` ; do \ +- @INSTALL@ -d $(datadir)/golem/$$i ; \ ++ @INSTALL@ -d $(DESTDIR)$(datadir)/golem/$$i ; \ + done ; \ + for i in `find . -type f | grep -v CVS` ; do \ +- @INSTALL@ -m 444 $$i $(datadir)/golem/$$i ; \ ++ @INSTALL@ -m 444 $$i $(DESTDIR)$(datadir)/golem/$$i ; \ + done + + install-man: +- @INSTALL@ -d $(mandir)/man1 +- @INSTALL@ -m 444 doc/golem.1.gz $(mandir)/man1/ ++ @INSTALL@ -d $(DESTDIR)$(mandir)/man1 ++ @INSTALL@ -m 444 doc/golem.1.gz $(DESTDIR)$(mandir)/man1/ + + ifeq ($(shell echo $$PWD),$(GOLEM_HOME)) + install: all install-bin install-data install-man Modified: head/x11-wm/golem/pkg-plist ============================================================================== --- head/x11-wm/golem/pkg-plist Thu Jan 23 00:48:05 2014 (r340774) +++ head/x11-wm/golem/pkg-plist Thu Jan 23 03:06:15 2014 (r340775) @@ -13,6 +13,7 @@ lib/golem/plugins/simple_menus.so lib/golem/plugins/start_slide.so lib/golem/plugins/tasklist.so lib/golem/plugins/wmclass_defs.so +man/man1/golem.1.gz %%DATADIR%%/golemrc %%DATADIR%%/plugins/animations/rc %%DATADIR%%/plugins/box_iconify/rc @@ -173,42 +174,6 @@ lib/golem/plugins/wmclass_defs.so %%DATADIR%%/themes/eBlueSteel/styles/small.rc %%DATADIR%%/themes/eBlueSteel/styles/transient.rc %%DATADIR%%/themes/eBlueSteel/styles/verysmall.rc -%%DATADIR%%/themes/microGUI/bar_left_top.xpm -%%DATADIR%%/themes/microGUI/bar_left_top_unfoc.xpm -%%DATADIR%%/themes/microGUI/bar_vert.xpm -%%DATADIR%%/themes/microGUI/bottom.xpm -%%DATADIR%%/themes/microGUI/bottom_far.xpm -%%DATADIR%%/themes/microGUI/bottom_near.xpm -%%DATADIR%%/themes/microGUI/close.xpm -%%DATADIR%%/themes/microGUI/close_clicked.xpm -%%DATADIR%%/themes/microGUI/close_unfoc.xpm -%%DATADIR%%/themes/microGUI/forplug/pager/focpagedwin.xpm -%%DATADIR%%/themes/microGUI/forplug/pager/pagedwin.xpm -%%DATADIR%%/themes/microGUI/forplug/pager/rc -%%DATADIR%%/themes/microGUI/forplug/pier/rc -%%DATADIR%%/themes/microGUI/forplug/pier/tile.xpm -%%DATADIR%%/themes/microGUI/forplug/start_slide/greybg.xpm -%%DATADIR%%/themes/microGUI/forplug/start_slide/logo.xpm -%%DATADIR%%/themes/microGUI/forplug/start_slide/rc -%%DATADIR%%/themes/microGUI/forplug/start_slide/trim.xpm -%%DATADIR%%/themes/microGUI/maximize.xpm -%%DATADIR%%/themes/microGUI/maximize_clicked.xpm -%%DATADIR%%/themes/microGUI/maximize_unfoc.xpm -%%DATADIR%%/themes/microGUI/minimize.xpm -%%DATADIR%%/themes/microGUI/minimize_clicked.xpm -%%DATADIR%%/themes/microGUI/minimize_unfoc.xpm -%%DATADIR%%/themes/microGUI/rc -%%DATADIR%%/themes/microGUI/top_blue.xpm -%%DATADIR%%/themes/microGUI/top_blue_unfoc.xpm -%%DATADIR%%/themes/microGUI/top_bluetowhite.xpm -%%DATADIR%%/themes/microGUI/top_bluetowhite_unfoc.xpm -%%DATADIR%%/themes/microGUI/top_far.xpm -%%DATADIR%%/themes/microGUI/top_near.xpm -%%DATADIR%%/themes/microGUI/top_near_unfoc.xpm -%%DATADIR%%/themes/microGUI/top_white.xpm -%%DATADIR%%/themes/microGUI/transient_top.xpm -%%DATADIR%%/themes/microGUI/transient_top_far.xpm -%%DATADIR%%/themes/microGUI/transient_top_near.xpm %%DATADIR%%/themes/microGUI-shading/bar_left_top.xpm %%DATADIR%%/themes/microGUI-shading/bar_left_top_unfoc.xpm %%DATADIR%%/themes/microGUI-shading/bar_vert.xpm @@ -273,6 +238,42 @@ lib/golem/plugins/wmclass_defs.so %%DATADIR%%/themes/microGUI-shading/transient_top.xpm %%DATADIR%%/themes/microGUI-shading/transient_top_far.xpm %%DATADIR%%/themes/microGUI-shading/transient_top_near.xpm +%%DATADIR%%/themes/microGUI/bar_left_top.xpm +%%DATADIR%%/themes/microGUI/bar_left_top_unfoc.xpm +%%DATADIR%%/themes/microGUI/bar_vert.xpm +%%DATADIR%%/themes/microGUI/bottom.xpm +%%DATADIR%%/themes/microGUI/bottom_far.xpm +%%DATADIR%%/themes/microGUI/bottom_near.xpm +%%DATADIR%%/themes/microGUI/close.xpm +%%DATADIR%%/themes/microGUI/close_clicked.xpm +%%DATADIR%%/themes/microGUI/close_unfoc.xpm +%%DATADIR%%/themes/microGUI/forplug/pager/focpagedwin.xpm +%%DATADIR%%/themes/microGUI/forplug/pager/pagedwin.xpm +%%DATADIR%%/themes/microGUI/forplug/pager/rc +%%DATADIR%%/themes/microGUI/forplug/pier/rc +%%DATADIR%%/themes/microGUI/forplug/pier/tile.xpm +%%DATADIR%%/themes/microGUI/forplug/start_slide/greybg.xpm +%%DATADIR%%/themes/microGUI/forplug/start_slide/logo.xpm +%%DATADIR%%/themes/microGUI/forplug/start_slide/rc +%%DATADIR%%/themes/microGUI/forplug/start_slide/trim.xpm +%%DATADIR%%/themes/microGUI/maximize.xpm +%%DATADIR%%/themes/microGUI/maximize_clicked.xpm +%%DATADIR%%/themes/microGUI/maximize_unfoc.xpm +%%DATADIR%%/themes/microGUI/minimize.xpm +%%DATADIR%%/themes/microGUI/minimize_clicked.xpm +%%DATADIR%%/themes/microGUI/minimize_unfoc.xpm +%%DATADIR%%/themes/microGUI/rc +%%DATADIR%%/themes/microGUI/top_blue.xpm +%%DATADIR%%/themes/microGUI/top_blue_unfoc.xpm +%%DATADIR%%/themes/microGUI/top_bluetowhite.xpm +%%DATADIR%%/themes/microGUI/top_bluetowhite_unfoc.xpm +%%DATADIR%%/themes/microGUI/top_far.xpm +%%DATADIR%%/themes/microGUI/top_near.xpm +%%DATADIR%%/themes/microGUI/top_near_unfoc.xpm +%%DATADIR%%/themes/microGUI/top_white.xpm +%%DATADIR%%/themes/microGUI/transient_top.xpm +%%DATADIR%%/themes/microGUI/transient_top_far.xpm +%%DATADIR%%/themes/microGUI/transient_top_near.xpm %%DATADIR%%/themes/twm/barchecker.xpm %%DATADIR%%/themes/twm/bborder.xpm %%DATADIR%%/themes/twm/bborder_unf.xpm Modified: head/x11-wm/matwm2/Makefile ============================================================================== --- head/x11-wm/matwm2/Makefile Thu Jan 23 00:48:05 2014 (r340774) +++ head/x11-wm/matwm2/Makefile Thu Jan 23 03:06:15 2014 (r340775) @@ -15,8 +15,6 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= --cc=${CC} --prefix=${PREFIX} --mandir=${MANPREFIX}/man USE_XORG= x11 xext xinerama xft -PLIST_FILES= bin/matwm2 -MAN1= matwm2.1 +PLIST_FILES= bin/matwm2 man/man1/${PORTNAME}.1.gz -NO_STAGE= yes .include Modified: head/x11-wm/matwm2/files/patch-Makefile.in ============================================================================== --- head/x11-wm/matwm2/files/patch-Makefile.in Thu Jan 23 00:48:05 2014 (r340774) +++ head/x11-wm/matwm2/files/patch-Makefile.in Thu Jan 23 03:06:15 2014 (r340775) @@ -1,14 +1,14 @@ ---- Makefile.in.old 2010-01-30 00:39:35.000000000 +0100 -+++ Makefile.in 2010-01-30 00:39:56.000000000 +0100 -@@ -23,9 +23,8 @@ +--- Makefile.in.orig 2010-04-07 00:26:55.000000000 +0800 ++++ Makefile.in 2014-01-22 17:50:49.193140832 +0800 +@@ -23,9 +23,8 @@ clean: $(RM) matwm2 *.o install: matwm2 - mkdir -p $(PREFIX)/bin $(MANDIR)/man1 - install -s matwm2 $(PREFIX)/bin - install matwm2.1 $(MANDIR)/man1 -+ ${BSD_INSTALL_PROGRAM} matwm2 $(PREFIX)/bin -+ ${BSD_INSTALL_MAN} matwm2.1 $(MANDIR)/man1 ++ ${BSD_INSTALL_PROGRAM} matwm2 $(DESTDIR)$(PREFIX)/bin ++ ${BSD_INSTALL_MAN} matwm2.1 $(DESTDIR)$(MANDIR)/man1 deinstall: $(RM) $(PREFIX)/bin/matwm2 $(MANDIR)/man1/matwm2.1* $(MANDIR)/cat1/matwm2.1* From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2162510A; Thu, 23 Jan 2014 03:27:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D33F153E; Thu, 23 Jan 2014 03:27:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3R9Am015540; Thu, 23 Jan 2014 03:27:09 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3R9qV015538; Thu, 23 Jan 2014 03:27:09 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3R9qV015538@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340776 - head/devel/p5-Module-Build-Tiny X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:27:10 -0000 Author: sunpoet Date: Thu Jan 23 03:27:09 2014 New Revision: 340776 URL: http://svnweb.freebsd.org/changeset/ports/340776 QAT: https://qat.redports.org/buildarchive/r340776/ Log: - Update to 0.034 Changes: http://search.cpan.org/dist/Module-Build-Tiny/Changes Modified: head/devel/p5-Module-Build-Tiny/Makefile head/devel/p5-Module-Build-Tiny/distinfo Modified: head/devel/p5-Module-Build-Tiny/Makefile ============================================================================== --- head/devel/p5-Module-Build-Tiny/Makefile Thu Jan 23 03:06:15 2014 (r340775) +++ head/devel/p5-Module-Build-Tiny/Makefile Thu Jan 23 03:27:09 2014 (r340776) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Module-Build-Tiny -PORTVERSION= 0.030 +PORTVERSION= 0.034 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Module-Build-Tiny/distinfo ============================================================================== --- head/devel/p5-Module-Build-Tiny/distinfo Thu Jan 23 03:06:15 2014 (r340775) +++ head/devel/p5-Module-Build-Tiny/distinfo Thu Jan 23 03:27:09 2014 (r340776) @@ -1,2 +1,2 @@ -SHA256 (Module-Build-Tiny-0.030.tar.gz) = dfd418ad0e8290cf645ab11be209a1bf6865e5a562c5a1592da99d5fd24718a8 -SIZE (Module-Build-Tiny-0.030.tar.gz) = 19824 +SHA256 (Module-Build-Tiny-0.034.tar.gz) = a858fb50ef662c58effde0a4ee4c479b4be4919ddbb778b15930086ee679efb9 +SIZE (Module-Build-Tiny-0.034.tar.gz) = 20292 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42EFA10B; Thu, 23 Jan 2014 03:27:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 148ED153F; Thu, 23 Jan 2014 03:27:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3REx8015637; Thu, 23 Jan 2014 03:27:14 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3REJd015634; Thu, 23 Jan 2014 03:27:14 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3REJd015634@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340777 - head/devel/p5-File-Slurp-Tiny X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:27:15 -0000 Author: sunpoet Date: Thu Jan 23 03:27:14 2014 New Revision: 340777 URL: http://svnweb.freebsd.org/changeset/ports/340777 QAT: https://qat.redports.org/buildarchive/r340777/ Log: - Update to 0.003 Changes: http://search.cpan.org/dist/File-Slurp-Tiny/Changes Modified: head/devel/p5-File-Slurp-Tiny/Makefile head/devel/p5-File-Slurp-Tiny/distinfo head/devel/p5-File-Slurp-Tiny/pkg-plist Modified: head/devel/p5-File-Slurp-Tiny/Makefile ============================================================================== --- head/devel/p5-File-Slurp-Tiny/Makefile Thu Jan 23 03:27:09 2014 (r340776) +++ head/devel/p5-File-Slurp-Tiny/Makefile Thu Jan 23 03:27:14 2014 (r340777) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= File-Slurp-Tiny -PORTVERSION= 0.002 +PORTVERSION= 0.003 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,7 +13,7 @@ COMMENT= Simple, sane and efficient file LICENSE= ART10 GPLv1 LICENSE_COMB= dual -USE_PERL5= modbuildtiny +USE_PERL5= configure USES= perl5 .include Modified: head/devel/p5-File-Slurp-Tiny/distinfo ============================================================================== --- head/devel/p5-File-Slurp-Tiny/distinfo Thu Jan 23 03:27:09 2014 (r340776) +++ head/devel/p5-File-Slurp-Tiny/distinfo Thu Jan 23 03:27:14 2014 (r340777) @@ -1,2 +1,2 @@ -SHA256 (File-Slurp-Tiny-0.002.tar.gz) = 4a59f00424a579d190729dbfb5ac8f0bc5ac32ed8a70837d696e9ef3b30bfdf0 -SIZE (File-Slurp-Tiny-0.002.tar.gz) = 11556 +SHA256 (File-Slurp-Tiny-0.003.tar.gz) = ded61a7ab96db8c6a14466a5984091a60af9b384b3355d06aeaa6433ac977c02 +SIZE (File-Slurp-Tiny-0.003.tar.gz) = 12091 Modified: head/devel/p5-File-Slurp-Tiny/pkg-plist ============================================================================== --- head/devel/p5-File-Slurp-Tiny/pkg-plist Thu Jan 23 03:27:09 2014 (r340776) +++ head/devel/p5-File-Slurp-Tiny/pkg-plist Thu Jan 23 03:27:14 2014 (r340777) @@ -1,4 +1,5 @@ %%SITE_PERL%%/File/Slurp/Tiny.pm +%%SITE_PERL%%/File/Slurp/benchmark.pl %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Slurp/Tiny/.packlist %%PERL5_MAN3%%/File::Slurp::Tiny.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/File/Slurp/Tiny From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B243A37F; Thu, 23 Jan 2014 03:27:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9EE141554; Thu, 23 Jan 2014 03:27:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3RTwg015918; Thu, 23 Jan 2014 03:27:29 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3RTJt015914; Thu, 23 Jan 2014 03:27:29 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3RTJt015914@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340780 - head/devel/libcheck X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:27:29 -0000 Author: sunpoet Date: Thu Jan 23 03:27:28 2014 New Revision: 340780 URL: http://svnweb.freebsd.org/changeset/ports/340780 QAT: https://qat.redports.org/buildarchive/r340780/ Log: - Update to 0.9.12 - Use PORTDOCS and PORTEXAMPLES - Simplify Makefile Changes: http://sourceforge.net/projects/check/files/check/0.9.12/NEWS-README-0.9.12/view Modified: head/devel/libcheck/Makefile head/devel/libcheck/distinfo head/devel/libcheck/pkg-plist Modified: head/devel/libcheck/Makefile ============================================================================== --- head/devel/libcheck/Makefile Thu Jan 23 03:27:23 2014 (r340779) +++ head/devel/libcheck/Makefile Thu Jan 23 03:27:28 2014 (r340780) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libcheck -PORTVERSION= 0.9.11 +PORTVERSION= 0.9.12 CATEGORIES= devel MASTER_SITES= SF/check/check/${PORTVERSION} DISTNAME= check-${PORTVERSION} @@ -20,8 +20,8 @@ USE_LDCONFIG= yes USES= gmake pathfix INFO= check - -.include +PORTDOCS= * +PORTEXAMPLES= * post-patch: @${REINPLACE_CMD} \ @@ -32,15 +32,6 @@ post-patch: -e '/^exampledir = / s|(docdir)/example|(datadir)/examples/${PORTNAME}|' \ -e '/^example[a-z]*dir = / s|(docdir)/example/|(exampledir)/|' \ ${WRKSRC}/doc/Makefile.in -.if !${PORT_OPTIONS:MDOCS} - @${REINPLACE_CMD} -e '/^install-data-am:/ s| install-docDATA||' ${WRKSRC}/Makefile.in -.endif -.if !${PORT_OPTIONS:MEXAMPLES} - @${REINPLACE_CMD} \ - -e '/^install-data-am:/ s| install-exampleDATA install-examplesrcDATA||' \ - -e 's|install-exampletestsDATA ||' \ - ${WRKSRC}/doc/Makefile.in -.endif post-build: @${STRIP_CMD} ${WRKSRC}/src/.libs/libcheck.so.0 Modified: head/devel/libcheck/distinfo ============================================================================== --- head/devel/libcheck/distinfo Thu Jan 23 03:27:23 2014 (r340779) +++ head/devel/libcheck/distinfo Thu Jan 23 03:27:28 2014 (r340780) @@ -1,2 +1,2 @@ -SHA256 (check-0.9.11.tar.gz) = ea4e8c7ffb00bb4ffb3f59f11744a71f1cc4212c79f3083c7d9a4b0953976936 -SIZE (check-0.9.11.tar.gz) = 691146 +SHA256 (check-0.9.12.tar.gz) = c7d47e55e133a0ca19a52e08a99333ac55cb22618b53719b7f4117a1875b1ea3 +SIZE (check-0.9.12.tar.gz) = 730404 Modified: head/devel/libcheck/pkg-plist ============================================================================== --- head/devel/libcheck/pkg-plist Thu Jan 23 03:27:23 2014 (r340779) +++ head/devel/libcheck/pkg-plist Thu Jan 23 03:27:28 2014 (r340780) @@ -8,33 +8,3 @@ lib/libcheck.so.0 libdata/pkgconfig/check.pc man/man1/checkmk.1.gz share/aclocal/check.m4 -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/ChangeLogOld -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/SVNChangeLog -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.am -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/configure.ac -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/Makefile.am -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/main.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/money.1.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/money.1.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/money.2.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/money.3.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/money.4.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/money.5.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/money.6.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/money.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/src/money.h -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/Makefile.am -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/check_money.1.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/check_money.2.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/check_money.3.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/check_money.6.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/check_money.7.c -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/check_money.c -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/src -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E80D1601; Thu, 23 Jan 2014 03:27:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 64CF81563; Thu, 23 Jan 2014 03:27:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3RhAi016182; Thu, 23 Jan 2014 03:27:43 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3RhlE016178; Thu, 23 Jan 2014 03:27:43 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3RhlE016178@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340783 - head/net/mDNSResponder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:27:45 -0000 Author: sunpoet Date: Thu Jan 23 03:27:42 2014 New Revision: 340783 URL: http://svnweb.freebsd.org/changeset/ports/340783 QAT: https://qat.redports.org/buildarchive/r340783/ Log: - Update to 544 Modified: head/net/mDNSResponder/Makefile head/net/mDNSResponder/distinfo Modified: head/net/mDNSResponder/Makefile ============================================================================== --- head/net/mDNSResponder/Makefile Thu Jan 23 03:27:37 2014 (r340782) +++ head/net/mDNSResponder/Makefile Thu Jan 23 03:27:42 2014 (r340783) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mDNSResponder -PORTVERSION= 541 +PORTVERSION= 544 CATEGORIES= net dns MASTER_SITES= http://opensource.apple.com/tarballs/${PORTNAME}/ Modified: head/net/mDNSResponder/distinfo ============================================================================== --- head/net/mDNSResponder/distinfo Thu Jan 23 03:27:37 2014 (r340782) +++ head/net/mDNSResponder/distinfo Thu Jan 23 03:27:42 2014 (r340783) @@ -1,2 +1,2 @@ -SHA256 (mDNSResponder-541.tar.gz) = b768999280756325b6bacd78acaff00d2bb06136450b727c6b0eb441c1ff2e30 -SIZE (mDNSResponder-541.tar.gz) = 2153009 +SHA256 (mDNSResponder-544.tar.gz) = c6ad1d53c28d28c0e3689bdf5efd9ce6f5c4c3692e8ad76e5eeb4d0c248929ac +SIZE (mDNSResponder-544.tar.gz) = 2153326 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCF0A1E2; Thu, 23 Jan 2014 03:27:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C96041543; Thu, 23 Jan 2014 03:27:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3RJ6b015725; Thu, 23 Jan 2014 03:27:19 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3RJlY015722; Thu, 23 Jan 2014 03:27:19 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3RJlY015722@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340778 - head/misc/p5-Geo-Coder-Google X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:27:19 -0000 Author: sunpoet Date: Thu Jan 23 03:27:19 2014 New Revision: 340778 URL: http://svnweb.freebsd.org/changeset/ports/340778 QAT: https://qat.redports.org/buildarchive/r340778/ Log: - Update to 0.14 Changes: http://search.cpan.org/dist/Geo-Coder-Google/Changes Modified: head/misc/p5-Geo-Coder-Google/Makefile head/misc/p5-Geo-Coder-Google/distinfo Modified: head/misc/p5-Geo-Coder-Google/Makefile ============================================================================== --- head/misc/p5-Geo-Coder-Google/Makefile Thu Jan 23 03:27:14 2014 (r340777) +++ head/misc/p5-Geo-Coder-Google/Makefile Thu Jan 23 03:27:19 2014 (r340778) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Geo-Coder-Google -PORTVERSION= 0.13 +PORTVERSION= 0.14 CATEGORIES= misc geography perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ARCANEZ Modified: head/misc/p5-Geo-Coder-Google/distinfo ============================================================================== --- head/misc/p5-Geo-Coder-Google/distinfo Thu Jan 23 03:27:14 2014 (r340777) +++ head/misc/p5-Geo-Coder-Google/distinfo Thu Jan 23 03:27:19 2014 (r340778) @@ -1,2 +1,2 @@ -SHA256 (Geo-Coder-Google-0.13.tar.gz) = ebcbd6c50babe6e11814fb150e1f669892a9a11418e1a83833c6e13fbf482653 -SIZE (Geo-Coder-Google-0.13.tar.gz) = 7330 +SHA256 (Geo-Coder-Google-0.14.tar.gz) = 4d871f7b4bb2d15768dd60cbd10b5cc9b6d55a60622730eb2ca0aa6648268a3a +SIZE (Geo-Coder-Google-0.14.tar.gz) = 8134 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A2126EA; Thu, 23 Jan 2014 03:27:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 480C21568; Thu, 23 Jan 2014 03:27:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3RmpG016266; Thu, 23 Jan 2014 03:27:48 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3Rlwb016264; Thu, 23 Jan 2014 03:27:47 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3Rlwb016264@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340784 - head/misc/p5-Business-ISBN X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:27:50 -0000 Author: sunpoet Date: Thu Jan 23 03:27:47 2014 New Revision: 340784 URL: http://svnweb.freebsd.org/changeset/ports/340784 QAT: https://qat.redports.org/buildarchive/r340784/ Log: - Update to 2.07 - Convert to new options helper Changes: http://search.cpan.org/dist/Business-ISBN/Changes Modified: head/misc/p5-Business-ISBN/Makefile head/misc/p5-Business-ISBN/distinfo Modified: head/misc/p5-Business-ISBN/Makefile ============================================================================== --- head/misc/p5-Business-ISBN/Makefile Thu Jan 23 03:27:42 2014 (r340783) +++ head/misc/p5-Business-ISBN/Makefile Thu Jan 23 03:27:47 2014 (r340784) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Business-ISBN -PORTVERSION= 2.06 +PORTVERSION= 2.07 CATEGORIES= misc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -24,16 +24,9 @@ XISBN_DESC= xISBN support USES= perl5 USE_PERL5= configure -.include - -.if ${PORT_OPTIONS:MBARCODE} -BUILD_DEPENDS+= p5-GD-Barcode>=0:${PORTSDIR}/graphics/p5-GD-Barcode -RUN_DEPENDS+= p5-GD-Barcode>=0:${PORTSDIR}/graphics/p5-GD-Barcode -.endif - -.if ${PORT_OPTIONS:MXISBN} -BUILD_DEPENDS+= p5-libwww>=0:${PORTSDIR}/www/p5-libwww -RUN_DEPENDS+= p5-libwww>=0:${PORTSDIR}/www/p5-libwww -.endif +BARCODE_BUILD_DEPENDS= p5-GD-Barcode>=0:${PORTSDIR}/graphics/p5-GD-Barcode +BARCODE_RUN_DEPENDS= p5-GD-Barcode>=0:${PORTSDIR}/graphics/p5-GD-Barcode +XISBN_BUILD_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww +XISBN_RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww .include Modified: head/misc/p5-Business-ISBN/distinfo ============================================================================== --- head/misc/p5-Business-ISBN/distinfo Thu Jan 23 03:27:42 2014 (r340783) +++ head/misc/p5-Business-ISBN/distinfo Thu Jan 23 03:27:47 2014 (r340784) @@ -1,2 +1,2 @@ -SHA256 (Business-ISBN-2.06.tar.gz) = cafff48f2f3a060ff0b1c35ebc3c239e507b351e45ec922e5ffab4577cab1eb6 -SIZE (Business-ISBN-2.06.tar.gz) = 355843 +SHA256 (Business-ISBN-2.07.tar.gz) = 4c11279580872bf3cc7176bb75c25b165d4b59a2828fc43d9a355cec3d0a45ff +SIZE (Business-ISBN-2.07.tar.gz) = 355865 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4D282BA; Thu, 23 Jan 2014 03:27:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 91799154A; Thu, 23 Jan 2014 03:27:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3RO3k015814; Thu, 23 Jan 2014 03:27:24 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3ROB7015812; Thu, 23 Jan 2014 03:27:24 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3ROB7015812@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340779 - head/net/p5-IO-Socket-IP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:27:24 -0000 Author: sunpoet Date: Thu Jan 23 03:27:23 2014 New Revision: 340779 URL: http://svnweb.freebsd.org/changeset/ports/340779 QAT: https://qat.redports.org/buildarchive/r340779/ Log: - Update to 0.27 Changes: http://search.cpan.org/dist/IO-Socket-IP/Changes Modified: head/net/p5-IO-Socket-IP/Makefile head/net/p5-IO-Socket-IP/distinfo Modified: head/net/p5-IO-Socket-IP/Makefile ============================================================================== --- head/net/p5-IO-Socket-IP/Makefile Thu Jan 23 03:27:19 2014 (r340778) +++ head/net/p5-IO-Socket-IP/Makefile Thu Jan 23 03:27:23 2014 (r340779) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= IO-Socket-IP -PORTVERSION= 0.26 +PORTVERSION= 0.27 CATEGORIES= net ipv6 perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/net/p5-IO-Socket-IP/distinfo ============================================================================== --- head/net/p5-IO-Socket-IP/distinfo Thu Jan 23 03:27:19 2014 (r340778) +++ head/net/p5-IO-Socket-IP/distinfo Thu Jan 23 03:27:23 2014 (r340779) @@ -1,2 +1,2 @@ -SHA256 (IO-Socket-IP-0.26.tar.gz) = b44001baae44cfd5fbce2db82a5cf0990058900c13c57c9c5c8eac4dd68c7d0c -SIZE (IO-Socket-IP-0.26.tar.gz) = 40271 +SHA256 (IO-Socket-IP-0.27.tar.gz) = 7adf63c66955edcb9618413a646bd89956315f07df8e03bd623779e4a50f5231 +SIZE (IO-Socket-IP-0.27.tar.gz) = 40605 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A25DA50; Thu, 23 Jan 2014 03:28:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4BA821576; Thu, 23 Jan 2014 03:28:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3SFkM016753; Thu, 23 Jan 2014 03:28:15 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3SEUF016751; Thu, 23 Jan 2014 03:28:14 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3SEUF016751@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340789 - head/www/p5-WWW-Pastebin-PastebinCom-Create X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:15 -0000 Author: sunpoet Date: Thu Jan 23 03:28:14 2014 New Revision: 340789 URL: http://svnweb.freebsd.org/changeset/ports/340789 QAT: https://qat.redports.org/buildarchive/r340789/ Log: - Update to 1.003 - Add LICENSE Changes: http://search.cpan.org/dist/WWW-Pastebin-PastebinCom-Create/Changes Modified: head/www/p5-WWW-Pastebin-PastebinCom-Create/Makefile head/www/p5-WWW-Pastebin-PastebinCom-Create/distinfo Modified: head/www/p5-WWW-Pastebin-PastebinCom-Create/Makefile ============================================================================== --- head/www/p5-WWW-Pastebin-PastebinCom-Create/Makefile Thu Jan 23 03:28:09 2014 (r340788) +++ head/www/p5-WWW-Pastebin-PastebinCom-Create/Makefile Thu Jan 23 03:28:14 2014 (r340789) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= WWW-Pastebin-PastebinCom-Create -PORTVERSION= 0.004 +PORTVERSION= 1.003 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -9,7 +9,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Paste to http://pastebin.com from Perl -BUILD_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww +LICENSE= ART20 + +BUILD_DEPENDS= p5-Moo>=1.004001:${PORTSDIR}/devel/p5-Moo \ + p5-WWW-Mechanize>=1.73:${PORTSDIR}/www/p5-WWW-Mechanize RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 Modified: head/www/p5-WWW-Pastebin-PastebinCom-Create/distinfo ============================================================================== --- head/www/p5-WWW-Pastebin-PastebinCom-Create/distinfo Thu Jan 23 03:28:09 2014 (r340788) +++ head/www/p5-WWW-Pastebin-PastebinCom-Create/distinfo Thu Jan 23 03:28:14 2014 (r340789) @@ -1,2 +1,2 @@ -SHA256 (WWW-Pastebin-PastebinCom-Create-0.004.tar.gz) = dd4a265a4cc77f6323036b4e1e1b72b390f941db29a1126811c4726dfa02f8b4 -SIZE (WWW-Pastebin-PastebinCom-Create-0.004.tar.gz) = 8283 +SHA256 (WWW-Pastebin-PastebinCom-Create-1.003.tar.gz) = 96b24d47f02df306bec091ff57acdad183c14edceb2bf2180c25d34a234c4277 +SIZE (WWW-Pastebin-PastebinCom-Create-1.003.tar.gz) = 15663 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 855D0717; Thu, 23 Jan 2014 03:27:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5891C1569; Thu, 23 Jan 2014 03:27:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3RrYg016366; Thu, 23 Jan 2014 03:27:53 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3RqAP016363; Thu, 23 Jan 2014 03:27:52 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3RqAP016363@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340785 - head/devel/p5-B-Hooks-EndOfScope X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:27:53 -0000 Author: sunpoet Date: Thu Jan 23 03:27:52 2014 New Revision: 340785 URL: http://svnweb.freebsd.org/changeset/ports/340785 QAT: https://qat.redports.org/buildarchive/r340785/ Log: - Update to 0.13 Changes: http://search.cpan.org/dist/B-Hooks-EndOfScope/Changes Modified: head/devel/p5-B-Hooks-EndOfScope/Makefile head/devel/p5-B-Hooks-EndOfScope/distinfo head/devel/p5-B-Hooks-EndOfScope/pkg-plist Modified: head/devel/p5-B-Hooks-EndOfScope/Makefile ============================================================================== --- head/devel/p5-B-Hooks-EndOfScope/Makefile Thu Jan 23 03:27:47 2014 (r340784) +++ head/devel/p5-B-Hooks-EndOfScope/Makefile Thu Jan 23 03:27:52 2014 (r340785) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= B-Hooks-EndOfScope -PORTVERSION= 0.12 +PORTVERSION= 0.13 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-B-Hooks-EndOfScope/distinfo ============================================================================== --- head/devel/p5-B-Hooks-EndOfScope/distinfo Thu Jan 23 03:27:47 2014 (r340784) +++ head/devel/p5-B-Hooks-EndOfScope/distinfo Thu Jan 23 03:27:52 2014 (r340785) @@ -1,2 +1,2 @@ -SHA256 (B-Hooks-EndOfScope-0.12.tar.gz) = 920e82022e8827caa7bbc0eba628c0fbea1a72dc9952461c997cc19f16b24fbd -SIZE (B-Hooks-EndOfScope-0.12.tar.gz) = 16361 +SHA256 (B-Hooks-EndOfScope-0.13.tar.gz) = f17ef12e1ea7667dc072edb2ee5bcfc54359ad77e60163a56b43383e1705adb8 +SIZE (B-Hooks-EndOfScope-0.13.tar.gz) = 25735 Modified: head/devel/p5-B-Hooks-EndOfScope/pkg-plist ============================================================================== --- head/devel/p5-B-Hooks-EndOfScope/pkg-plist Thu Jan 23 03:27:47 2014 (r340784) +++ head/devel/p5-B-Hooks-EndOfScope/pkg-plist Thu Jan 23 03:27:52 2014 (r340785) @@ -1,7 +1,5 @@ %%PERL5_MAN3%%/B::Hooks::EndOfScope.3.gz %%PERL5_MAN3%%/B::Hooks::EndOfScope::PP.3.gz -%%PERL5_MAN3%%/B::Hooks::EndOfScope::PP::FieldHash.3.gz -%%PERL5_MAN3%%/B::Hooks::EndOfScope::PP::HintHash.3.gz %%PERL5_MAN3%%/B::Hooks::EndOfScope::XS.3.gz %%SITE_PERL%%/B/Hooks/EndOfScope.pm %%SITE_PERL%%/B/Hooks/EndOfScope/PP.pm From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4469BFE; Thu, 23 Jan 2014 03:28:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C04BD1578; Thu, 23 Jan 2014 03:28:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3SObg016944; Thu, 23 Jan 2014 03:28:24 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3SOeF016942; Thu, 23 Jan 2014 03:28:24 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3SOeF016942@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340791 - head/devel/p5-Test-DBIx-Class X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:24 -0000 Author: sunpoet Date: Thu Jan 23 03:28:23 2014 New Revision: 340791 URL: http://svnweb.freebsd.org/changeset/ports/340791 QAT: https://qat.redports.org/buildarchive/r340791/ Log: - Update to 0.41 Changes: http://search.cpan.org/dist/Test-DBIx-Class/Changes Modified: head/devel/p5-Test-DBIx-Class/Makefile head/devel/p5-Test-DBIx-Class/distinfo Modified: head/devel/p5-Test-DBIx-Class/Makefile ============================================================================== --- head/devel/p5-Test-DBIx-Class/Makefile Thu Jan 23 03:28:19 2014 (r340790) +++ head/devel/p5-Test-DBIx-Class/Makefile Thu Jan 23 03:28:23 2014 (r340791) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-DBIx-Class -PORTVERSION= 0.40 +PORTVERSION= 0.41 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -22,6 +22,7 @@ BUILD_DEPENDS= p5-Config-Any>=0.19:${POR p5-Data-Visitor>=0.27:${PORTSDIR}/devel/p5-Data-Visitor \ p5-Hash-Merge>=0.11:${PORTSDIR}/textproc/p5-Hash-Merge \ p5-List-MoreUtils>=0.22:${PORTSDIR}/lang/p5-List-MoreUtils \ + p5-Module-Runtime>=0.013:${PORTSDIR}/devel/p5-Module-Runtime \ p5-Moose>=1.10:${PORTSDIR}/devel/p5-Moose \ p5-MooseX-Attribute-ENV>=0.01:${PORTSDIR}/devel/p5-MooseX-Attribute-ENV \ p5-MooseX-Types>=0.23:${PORTSDIR}/devel/p5-MooseX-Types \ Modified: head/devel/p5-Test-DBIx-Class/distinfo ============================================================================== --- head/devel/p5-Test-DBIx-Class/distinfo Thu Jan 23 03:28:19 2014 (r340790) +++ head/devel/p5-Test-DBIx-Class/distinfo Thu Jan 23 03:28:23 2014 (r340791) @@ -1,2 +1,2 @@ -SHA256 (Test-DBIx-Class-0.40.tar.gz) = 819d017e999222f87baec301817f0149025366711016ecc57e9ce63bc7af58fa -SIZE (Test-DBIx-Class-0.40.tar.gz) = 77195 +SHA256 (Test-DBIx-Class-0.41.tar.gz) = 4be3100ec41bfbb4ea3953db56bf470009344b27565ce4f93f77462e2197c01e +SIZE (Test-DBIx-Class-0.41.tar.gz) = 85159 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E355F9A; Thu, 23 Jan 2014 03:28:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CFD611585; Thu, 23 Jan 2014 03:28:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3Sqvf017489; Thu, 23 Jan 2014 03:28:52 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3SqJo017487; Thu, 23 Jan 2014 03:28:52 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3SqJo017487@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340797 - head/devel/p5-Data-Random X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:53 -0000 Author: sunpoet Date: Thu Jan 23 03:28:52 2014 New Revision: 340797 URL: http://svnweb.freebsd.org/changeset/ports/340797 QAT: https://qat.redports.org/buildarchive/r340797/ Log: - Update to 0.11 Changes: http://search.cpan.org/dist/Data-Random/Changes Modified: head/devel/p5-Data-Random/Makefile head/devel/p5-Data-Random/distinfo Modified: head/devel/p5-Data-Random/Makefile ============================================================================== --- head/devel/p5-Data-Random/Makefile Thu Jan 23 03:28:47 2014 (r340796) +++ head/devel/p5-Data-Random/Makefile Thu Jan 23 03:28:52 2014 (r340797) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Data-Random -PORTVERSION= 0.10 +PORTVERSION= 0.11 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Data-Random/distinfo ============================================================================== --- head/devel/p5-Data-Random/distinfo Thu Jan 23 03:28:47 2014 (r340796) +++ head/devel/p5-Data-Random/distinfo Thu Jan 23 03:28:52 2014 (r340797) @@ -1,2 +1,2 @@ -SHA256 (Data-Random-0.10.tar.gz) = e06e85d39f4b7704c0c44a156b77433d98d2880f0e1beb8eb0d3585c4cbcae40 -SIZE (Data-Random-0.10.tar.gz) = 167520 +SHA256 (Data-Random-0.11.tar.gz) = 2ea0d046a422664f69adbbfdfc63b81a93afe22917fb0ba21bf888428ec49470 +SIZE (Data-Random-0.11.tar.gz) = 166852 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6E7689A; Thu, 23 Jan 2014 03:27:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 932BF156C; Thu, 23 Jan 2014 03:27:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3RxrQ016469; Thu, 23 Jan 2014 03:27:59 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3RxSG016463; Thu, 23 Jan 2014 03:27:59 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3RxSG016463@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340786 - head/www/p5-Mojolicious X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:01 -0000 Author: sunpoet Date: Thu Jan 23 03:27:58 2014 New Revision: 340786 URL: http://svnweb.freebsd.org/changeset/ports/340786 QAT: https://qat.redports.org/buildarchive/r340786/ Log: - Update to 4.68 Changes: http://search.cpan.org/dist/Mojolicious/Changes Modified: head/www/p5-Mojolicious/Makefile head/www/p5-Mojolicious/distinfo head/www/p5-Mojolicious/pkg-plist Modified: head/www/p5-Mojolicious/Makefile ============================================================================== --- head/www/p5-Mojolicious/Makefile Thu Jan 23 03:27:52 2014 (r340785) +++ head/www/p5-Mojolicious/Makefile Thu Jan 23 03:27:58 2014 (r340786) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mojolicious -PORTVERSION= 4.63 +PORTVERSION= 4.68 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SRI Modified: head/www/p5-Mojolicious/distinfo ============================================================================== --- head/www/p5-Mojolicious/distinfo Thu Jan 23 03:27:52 2014 (r340785) +++ head/www/p5-Mojolicious/distinfo Thu Jan 23 03:27:58 2014 (r340786) @@ -1,2 +1,2 @@ -SHA256 (Mojolicious-4.63.tar.gz) = f20f77e86fc560dac1c958e765ed64242dcf6343939ed605b45f2bbe2596d5e9 -SIZE (Mojolicious-4.63.tar.gz) = 616330 +SHA256 (Mojolicious-4.68.tar.gz) = eb7a26426f317f5d8ece7bcbb715faf2bba00831f1c1069a8232fdb5ca10c596 +SIZE (Mojolicious-4.68.tar.gz) = 621645 Modified: head/www/p5-Mojolicious/pkg-plist ============================================================================== --- head/www/p5-Mojolicious/pkg-plist Thu Jan 23 03:27:52 2014 (r340785) +++ head/www/p5-Mojolicious/pkg-plist Thu Jan 23 03:27:58 2014 (r340786) @@ -18,6 +18,7 @@ bin/morbo %%SITE_PERL%%/Mojo/DOM.pm %%SITE_PERL%%/Mojo/DOM/CSS.pm %%SITE_PERL%%/Mojo/DOM/HTML.pm +%%SITE_PERL%%/Mojo/DOM/Node.pm %%SITE_PERL%%/Mojo/Date.pm %%SITE_PERL%%/Mojo/EventEmitter.pm %%SITE_PERL%%/Mojo/Exception.pm @@ -182,6 +183,7 @@ bin/morbo %%PERL5_MAN3%%/Mojo::DOM.3.gz %%PERL5_MAN3%%/Mojo::DOM::CSS.3.gz %%PERL5_MAN3%%/Mojo::DOM::HTML.3.gz +%%PERL5_MAN3%%/Mojo::DOM::Node.3.gz %%PERL5_MAN3%%/Mojo::Date.3.gz %%PERL5_MAN3%%/Mojo::EventEmitter.3.gz %%PERL5_MAN3%%/Mojo::Exception.3.gz From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C26095A; Thu, 23 Jan 2014 03:28:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C2670156E; Thu, 23 Jan 2014 03:28:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3S4g7016573; Thu, 23 Jan 2014 03:28:04 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3S4g4016568; Thu, 23 Jan 2014 03:28:04 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3S4g4016568@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340787 - head/textproc/p5-JavaScript-Minifier X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:06 -0000 Author: sunpoet Date: Thu Jan 23 03:28:04 2014 New Revision: 340787 URL: http://svnweb.freebsd.org/changeset/ports/340787 QAT: https://qat.redports.org/buildarchive/r340787/ Log: - Update to 1.08 - Update LICENSE Changes: http://search.cpan.org/dist/JavaScript-Minifier/Changes Modified: head/textproc/p5-JavaScript-Minifier/Makefile head/textproc/p5-JavaScript-Minifier/distinfo Modified: head/textproc/p5-JavaScript-Minifier/Makefile ============================================================================== --- head/textproc/p5-JavaScript-Minifier/Makefile Thu Jan 23 03:27:58 2014 (r340786) +++ head/textproc/p5-JavaScript-Minifier/Makefile Thu Jan 23 03:28:04 2014 (r340787) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= JavaScript-Minifier -PORTVERSION= 1.06 +PORTVERSION= 1.08 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ZOFFIX @@ -11,7 +11,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= JavaScript whitespace/comment eliminator -LICENSE= ART20 +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual USES= perl5 USE_PERL5= configure Modified: head/textproc/p5-JavaScript-Minifier/distinfo ============================================================================== --- head/textproc/p5-JavaScript-Minifier/distinfo Thu Jan 23 03:27:58 2014 (r340786) +++ head/textproc/p5-JavaScript-Minifier/distinfo Thu Jan 23 03:28:04 2014 (r340787) @@ -1,2 +1,2 @@ -SHA256 (JavaScript-Minifier-1.06.tar.gz) = 022c626877440cb7094e6b8dbe69d4390b80454185edfcdc35dfdfe982586c52 -SIZE (JavaScript-Minifier-1.06.tar.gz) = 13221 +SHA256 (JavaScript-Minifier-1.08.tar.gz) = 3287aa620c7528211f926cf60fafbacb924d1aa1e8f33dfdebbf0aee3598642a +SIZE (JavaScript-Minifier-1.08.tar.gz) = 16331 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06ED5A30; Thu, 23 Jan 2014 03:28:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 11B111572; Thu, 23 Jan 2014 03:28:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3S9tv016662; Thu, 23 Jan 2014 03:28:09 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3S9dR016660; Thu, 23 Jan 2014 03:28:09 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3S9dR016660@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340788 - head/www/p5-WebService-Linode X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:12 -0000 Author: sunpoet Date: Thu Jan 23 03:28:09 2014 New Revision: 340788 URL: http://svnweb.freebsd.org/changeset/ports/340788 QAT: https://qat.redports.org/buildarchive/r340788/ Log: - Update to 0.16 Changes: http://search.cpan.org/dist/WebService-Linode/Changes Modified: head/www/p5-WebService-Linode/Makefile head/www/p5-WebService-Linode/distinfo Modified: head/www/p5-WebService-Linode/Makefile ============================================================================== --- head/www/p5-WebService-Linode/Makefile Thu Jan 23 03:28:04 2014 (r340787) +++ head/www/p5-WebService-Linode/Makefile Thu Jan 23 03:28:09 2014 (r340788) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= WebService-Linode -PORTVERSION= 0.15 +PORTVERSION= 0.16 CATEGORIES= www MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-WebService-Linode/distinfo ============================================================================== --- head/www/p5-WebService-Linode/distinfo Thu Jan 23 03:28:04 2014 (r340787) +++ head/www/p5-WebService-Linode/distinfo Thu Jan 23 03:28:09 2014 (r340788) @@ -1,2 +1,2 @@ -SHA256 (WebService-Linode-0.15.tar.gz) = b698d83144392a79e32512bda3f7e662aac61dbafd8944e1ce03cd14ee1d6cc3 -SIZE (WebService-Linode-0.15.tar.gz) = 20367 +SHA256 (WebService-Linode-0.16.tar.gz) = 0feaad457af157c42a8ff8d4f79f6fe5bfa24253e54cafdbb8c811ff90bd3fe0 +SIZE (WebService-Linode-0.16.tar.gz) = 20491 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF11F462; Thu, 23 Jan 2014 03:27:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CBFC9155B; Thu, 23 Jan 2014 03:27:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3RXQ4016008; Thu, 23 Jan 2014 03:27:33 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3RXBM016006; Thu, 23 Jan 2014 03:27:33 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3RXBM016006@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340781 - head/databases/rubygem-redis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:27:33 -0000 Author: sunpoet Date: Thu Jan 23 03:27:33 2014 New Revision: 340781 URL: http://svnweb.freebsd.org/changeset/ports/340781 QAT: https://qat.redports.org/buildarchive/r340781/ Log: - Update to 3.0.7 Changes: https://github.com/redis/redis-rb/blob/master/CHANGELOG.md Modified: head/databases/rubygem-redis/Makefile head/databases/rubygem-redis/distinfo Modified: head/databases/rubygem-redis/Makefile ============================================================================== --- head/databases/rubygem-redis/Makefile Thu Jan 23 03:27:28 2014 (r340780) +++ head/databases/rubygem-redis/Makefile Thu Jan 23 03:27:33 2014 (r340781) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -PORTVERSION= 3.0.6 +PORTVERSION= 3.0.7 CATEGORIES= databases rubygems MASTER_SITES= RG Modified: head/databases/rubygem-redis/distinfo ============================================================================== --- head/databases/rubygem-redis/distinfo Thu Jan 23 03:27:28 2014 (r340780) +++ head/databases/rubygem-redis/distinfo Thu Jan 23 03:27:33 2014 (r340781) @@ -1,2 +1,2 @@ -SHA256 (rubygem/redis-3.0.6.gem) = e3c8203afbfb9e0cfe915a0610f6795e02ba2298e72e9326076eed2c048142c1 -SIZE (rubygem/redis-3.0.6.gem) = 66048 +SHA256 (rubygem/redis-3.0.7.gem) = 94f1efe54f9ce74a0efd909f75bad842fa0a7fe93de66064ef8aae126e0464ca +SIZE (rubygem/redis-3.0.7.gem) = 67584 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:27:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 877DD52C; Thu, 23 Jan 2014 03:27:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9FC2C1560; Thu, 23 Jan 2014 03:27:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3Rcxu016097; Thu, 23 Jan 2014 03:27:38 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3Rclt016092; Thu, 23 Jan 2014 03:27:38 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230327.s0N3Rclt016092@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:27:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340782 - 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.17 Precedence: list List-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, 23 Jan 2014 03:27:39 -0000 Author: sunpoet Date: Thu Jan 23 03:27:37 2014 New Revision: 340782 URL: http://svnweb.freebsd.org/changeset/ports/340782 QAT: https://qat.redports.org/buildarchive/r340782/ Log: - Update to 0.2.1 Changes: https://github.com/Manfred/HTTPauth/commits/master Modified: head/net/rubygem-httpauth/Makefile head/net/rubygem-httpauth/distinfo Modified: head/net/rubygem-httpauth/Makefile ============================================================================== --- head/net/rubygem-httpauth/Makefile Thu Jan 23 03:27:33 2014 (r340781) +++ head/net/rubygem-httpauth/Makefile Thu Jan 23 03:27:37 2014 (r340782) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= httpauth -PORTVERSION= 0.2.0 +PORTVERSION= 0.2.1 CATEGORIES= net rubygems MASTER_SITES= RG Modified: head/net/rubygem-httpauth/distinfo ============================================================================== --- head/net/rubygem-httpauth/distinfo Thu Jan 23 03:27:33 2014 (r340781) +++ head/net/rubygem-httpauth/distinfo Thu Jan 23 03:27:37 2014 (r340782) @@ -1,2 +1,2 @@ -SHA256 (rubygem/httpauth-0.2.0.gem) = 61693bd3849f348c075861a014c95af777a89581e04cae231641c56fc2a9e21f -SIZE (rubygem/httpauth-0.2.0.gem) = 13824 +SHA256 (rubygem/httpauth-0.2.1.gem) = 0d4991e48dfe46aae27ec709b896e54b7a1c402d84a4dbc93a6fe86d8353b4f9 +SIZE (rubygem/httpauth-0.2.1.gem) = 14848 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D24218A; Thu, 23 Jan 2014 03:28:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E56491587; Thu, 23 Jan 2014 03:28:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3Sv1x017592; Thu, 23 Jan 2014 03:28:57 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3Sv9c017589; Thu, 23 Jan 2014 03:28:57 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3Sv9c017589@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340798 - head/devel/p5-Data-ShowTable X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:58 -0000 Author: sunpoet Date: Thu Jan 23 03:28:56 2014 New Revision: 340798 URL: http://svnweb.freebsd.org/changeset/ports/340798 QAT: https://qat.redports.org/buildarchive/r340798/ Log: - Update to 4.6 Changes: http://search.cpan.org/dist/Data-ShowTable/Changes Modified: head/devel/p5-Data-ShowTable/Makefile head/devel/p5-Data-ShowTable/distinfo head/devel/p5-Data-ShowTable/pkg-plist Modified: head/devel/p5-Data-ShowTable/Makefile ============================================================================== --- head/devel/p5-Data-ShowTable/Makefile Thu Jan 23 03:28:52 2014 (r340797) +++ head/devel/p5-Data-ShowTable/Makefile Thu Jan 23 03:28:56 2014 (r340798) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Data-ShowTable -PORTVERSION= 4.5 +PORTVERSION= 4.6 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Data-ShowTable/distinfo ============================================================================== --- head/devel/p5-Data-ShowTable/distinfo Thu Jan 23 03:28:52 2014 (r340797) +++ head/devel/p5-Data-ShowTable/distinfo Thu Jan 23 03:28:56 2014 (r340798) @@ -1,2 +1,2 @@ -SHA256 (Data-ShowTable-4.5.tar.gz) = e8e1e81db7cf13b0faa0d5830a9d357d722b093aaf318acd8dd97ce8fcc7f920 -SIZE (Data-ShowTable-4.5.tar.gz) = 61905 +SHA256 (Data-ShowTable-4.6.tar.gz) = 8f8958b99b1480104f7cbde877a5204c5cc6990a00ded07886cb43eb72527ba3 +SIZE (Data-ShowTable-4.6.tar.gz) = 60826 Modified: head/devel/p5-Data-ShowTable/pkg-plist ============================================================================== --- head/devel/p5-Data-ShowTable/pkg-plist Thu Jan 23 03:28:52 2014 (r340797) +++ head/devel/p5-Data-ShowTable/pkg-plist Thu Jan 23 03:28:56 2014 (r340798) @@ -1,9 +1,7 @@ bin/showtable %%SITE_PERL%%/Data/ShowTable.pm -%%SITE_PERL%%/Data/testfile.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/ShowTable/.packlist %%PERL5_MAN3%%/Data::ShowTable.3.gz -%%PERL5_MAN3%%/Data::testfile.3.gz man/man1/showtable.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/ShowTable @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8D4BCD6; Thu, 23 Jan 2014 03:28:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B56D7157A; Thu, 23 Jan 2014 03:28:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3ST9A017033; Thu, 23 Jan 2014 03:28:29 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3STGo017030; Thu, 23 Jan 2014 03:28:29 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3STGo017030@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340792 - head/net/p5-Net X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:29 -0000 Author: sunpoet Date: Thu Jan 23 03:28:29 2014 New Revision: 340792 URL: http://svnweb.freebsd.org/changeset/ports/340792 QAT: https://qat.redports.org/buildarchive/r340792/ Log: - Update to 1.24 - Add LICENSE - Add TEST_DEPENDS - Remove trailing period from SASL option description - Add BUILD_DEPENDS for SASL option Changes: http://search.cpan.org/dist/Net/Changes Modified: head/net/p5-Net/Makefile head/net/p5-Net/distinfo Modified: head/net/p5-Net/Makefile ============================================================================== --- head/net/p5-Net/Makefile Thu Jan 23 03:28:23 2014 (r340791) +++ head/net/p5-Net/Makefile Thu Jan 23 03:28:29 2014 (r340792) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net -PORTVERSION= 1.23 +PORTVERSION= 1.24 PORTEPOCH= 1 CATEGORIES= net perl5 MASTER_SITES= CPAN @@ -12,10 +12,16 @@ DISTNAME= libnet-${PORTVERSION} MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 modules to access and use network protocols -OPTIONS_DEFINE= SASL -OPTIONS_DEFAULT= SASL -SASL_DESC= SASL auth for POP3 and SMTP support. +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual +TEST_DEPENDS= p5-Test-Kwalitee>=0:${PORTSDIR}/devel/p5-Test-Kwalitee + +OPTIONS_DEFINE= SASL +OPTIONS_DEFAULT=SASL +SASL_DESC= SASL auth for POP3 and SMTP support + +SASL_BUILD_DEPENDS= p5-Authen-SASL>=0:${PORTSDIR}/security/p5-Authen-SASL SASL_RUN_DEPENDS= p5-Authen-SASL>=0:${PORTSDIR}/security/p5-Authen-SASL PORTSCOUT= skipv:1.0901 Modified: head/net/p5-Net/distinfo ============================================================================== --- head/net/p5-Net/distinfo Thu Jan 23 03:28:23 2014 (r340791) +++ head/net/p5-Net/distinfo Thu Jan 23 03:28:29 2014 (r340792) @@ -1,2 +1,2 @@ -SHA256 (libnet-1.23.tar.gz) = 67edd05f0a2b93ca8fe9ba98d45667df74b78b1eaeb502404ae511e7a5f6513c -SIZE (libnet-1.23.tar.gz) = 67699 +SHA256 (libnet-1.24.tar.gz) = 4bf1514cfa3e2c80037825a36607c3512972caef65e89153b64824ad6975320c +SIZE (libnet-1.24.tar.gz) = 67755 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61594D89; Thu, 23 Jan 2014 03:28:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 272E7157C; Thu, 23 Jan 2014 03:28:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3SYaw017120; Thu, 23 Jan 2014 03:28:34 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3SX4V017118; Thu, 23 Jan 2014 03:28:33 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3SX4V017118@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340793 - 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.17 Precedence: list List-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, 23 Jan 2014 03:28:34 -0000 Author: sunpoet Date: Thu Jan 23 03:28:33 2014 New Revision: 340793 URL: http://svnweb.freebsd.org/changeset/ports/340793 QAT: https://qat.redports.org/buildarchive/r340793/ Log: - Update to 1.62 Changes: http://search.cpan.org/dist/CPAN-Perl-Releases/Changes 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 Thu Jan 23 03:28:29 2014 (r340792) +++ head/devel/p5-CPAN-Perl-Releases/Makefile Thu Jan 23 03:28:33 2014 (r340793) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CPAN-Perl-Releases -PORTVERSION= 1.60 +PORTVERSION= 1.62 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-CPAN-Perl-Releases/distinfo ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/distinfo Thu Jan 23 03:28:29 2014 (r340792) +++ head/devel/p5-CPAN-Perl-Releases/distinfo Thu Jan 23 03:28:33 2014 (r340793) @@ -1,2 +1,2 @@ -SHA256 (CPAN-Perl-Releases-1.60.tar.gz) = 078159e7b686c8a114c6e8419ce0e48ec3c07db438b36a7c1906de3e6eb570c1 -SIZE (CPAN-Perl-Releases-1.60.tar.gz) = 21257 +SHA256 (CPAN-Perl-Releases-1.62.tar.gz) = ea0fdc9f8758d15a89e1618f9d5471cacd6c2fc757fc90610ef182569a48d5f0 +SIZE (CPAN-Perl-Releases-1.62.tar.gz) = 21307 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2EB12B29; Thu, 23 Jan 2014 03:28:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1992E1577; Thu, 23 Jan 2014 03:28:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3SKtN016855; Thu, 23 Jan 2014 03:28:20 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3SJ5u016852; Thu, 23 Jan 2014 03:28:19 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3SJ5u016852@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340790 - 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.17 Precedence: list List-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, 23 Jan 2014 03:28:20 -0000 Author: sunpoet Date: Thu Jan 23 03:28:19 2014 New Revision: 340790 URL: http://svnweb.freebsd.org/changeset/ports/340790 QAT: https://qat.redports.org/buildarchive/r340790/ Log: - Update to 2.1202 Changes: http://search.cpan.org/dist/Moose/Changes Modified: head/devel/p5-Moose/Makefile head/devel/p5-Moose/distinfo head/devel/p5-Moose/pkg-plist Modified: head/devel/p5-Moose/Makefile ============================================================================== --- head/devel/p5-Moose/Makefile Thu Jan 23 03:28:14 2014 (r340789) +++ head/devel/p5-Moose/Makefile Thu Jan 23 03:28:19 2014 (r340790) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Moose -PORTVERSION= 2.1005 +PORTVERSION= 2.1202 PORTEPOCH= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN @@ -20,9 +20,11 @@ BUILD_DEPENDS= p5-Class-Load>=0.09:${POR p5-Class-Load-XS>=0.01:${PORTSDIR}/devel/p5-Class-Load-XS \ p5-Data-OptList>=0.107:${PORTSDIR}/devel/p5-Data-OptList \ p5-Devel-GlobalDestruction>=0:${PORTSDIR}/devel/p5-Devel-GlobalDestruction \ + p5-Devel-StackTrace>=1.30:${PORTSDIR}/devel/p5-Devel-StackTrace \ p5-Eval-Closure>=0.04:${PORTSDIR}/devel/p5-Eval-Closure \ p5-List-MoreUtils>=0.28:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-MRO-Compat>=0.05:${PORTSDIR}/devel/p5-MRO-Compat \ + p5-Module-Runtime>=0.012:${PORTSDIR}/devel/p5-Module-Runtime \ p5-Package-DeprecationManager>=0.10:${PORTSDIR}/devel/p5-Package-DeprecationManager \ p5-Package-Stash>=0.32:${PORTSDIR}/devel/p5-Package-Stash \ p5-Package-Stash-XS>=0.24:${PORTSDIR}/devel/p5-Package-Stash-XS \ @@ -32,13 +34,11 @@ BUILD_DEPENDS= p5-Class-Load>=0.09:${POR p5-Task-Weaken>=0:${PORTSDIR}/devel/p5-Task-Weaken \ p5-Try-Tiny>=0.02:${PORTSDIR}/lang/p5-Try-Tiny RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-CPAN-Meta-Check>=0.007:${PORTSDIR}/devel/p5-CPAN-Meta-Check \ - p5-DateTime-Format-MySQL>=0:${PORTSDIR}/devel/p5-DateTime-Format-MySQL \ +TEST_DEPENDS= p5-DateTime-Format-MySQL>=0:${PORTSDIR}/devel/p5-DateTime-Format-MySQL \ p5-Declare-Constraints-Simple>=0:${PORTSDIR}/devel/p5-Declare-Constraints-Simple \ p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String \ p5-Module-Refresh>=0:${PORTSDIR}/devel/p5-Module-Refresh \ p5-SUPER>=0:${PORTSDIR}/devel/p5-SUPER \ - p5-Test-CheckDeps>=0.006:${PORTSDIR}/devel/p5-Test-CheckDeps \ p5-Test-Deep>=0:${PORTSDIR}/devel/p5-Test-Deep \ p5-Test-Fatal>=0.001:${PORTSDIR}/devel/p5-Test-Fatal \ p5-Test-Output>=0:${PORTSDIR}/devel/p5-Test-Output \ Modified: head/devel/p5-Moose/distinfo ============================================================================== --- head/devel/p5-Moose/distinfo Thu Jan 23 03:28:14 2014 (r340789) +++ head/devel/p5-Moose/distinfo Thu Jan 23 03:28:19 2014 (r340790) @@ -1,2 +1,2 @@ -SHA256 (Moose-2.1005.tar.gz) = 41944b35ef3212b74a6979179d1ec275eff15203ed0291d09517efbdc3d42eda -SIZE (Moose-2.1005.tar.gz) = 713142 +SHA256 (Moose-2.1202.tar.gz) = 66fbe2d2d4216eca6508941fa860e99a41263871c27e6b4bacf23876adcf90d3 +SIZE (Moose-2.1202.tar.gz) = 774885 Modified: head/devel/p5-Moose/pkg-plist ============================================================================== --- head/devel/p5-Moose/pkg-plist Thu Jan 23 03:28:14 2014 (r340789) +++ head/devel/p5-Moose/pkg-plist Thu Jan 23 03:28:19 2014 (r340790) @@ -53,10 +53,7 @@ bin/moose-outdated %%PERL5_MAN3%%/Moose::Cookbook::Snack::Types.3.gz %%PERL5_MAN3%%/Moose::Cookbook::Style.3.gz %%PERL5_MAN3%%/Moose::Deprecated.3.gz -%%PERL5_MAN3%%/Moose::Error::Confess.3.gz -%%PERL5_MAN3%%/Moose::Error::Croak.3.gz -%%PERL5_MAN3%%/Moose::Error::Default.3.gz -%%PERL5_MAN3%%/Moose::Error::Util.3.gz +%%PERL5_MAN3%%/Moose::Exception.3.gz %%PERL5_MAN3%%/Moose::Exporter.3.gz %%PERL5_MAN3%%/Moose::Intro.3.gz %%PERL5_MAN3%%/Moose::Manual.3.gz @@ -68,6 +65,8 @@ bin/moose-outdated %%PERL5_MAN3%%/Moose::Manual::Contributing.3.gz %%PERL5_MAN3%%/Moose::Manual::Delegation.3.gz %%PERL5_MAN3%%/Moose::Manual::Delta.3.gz +%%PERL5_MAN3%%/Moose::Manual::Exceptions.3.gz +%%PERL5_MAN3%%/Moose::Manual::Exceptions::Manifest.3.gz %%PERL5_MAN3%%/Moose::Manual::FAQ.3.gz %%PERL5_MAN3%%/Moose::Manual::MOP.3.gz %%PERL5_MAN3%%/Moose::Manual::MethodModifiers.3.gz @@ -186,10 +185,227 @@ bin/moose-outdated %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Cookbook/Snack/Types.pod %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Cookbook/Style.pod %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Deprecated.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Error/Confess.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Error/Croak.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Error/Default.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Error/Util.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AccessorMustReadWrite.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ApplyTakesABlessedInstance.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AttributeConflictInRoles.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AttributeConflictInSummation.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AttributeIsRequired.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AttributeNamesDoNotMatch.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AttributeValueIsNotAnObject.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AttributeValueIsNotDefined.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/BadOptionFormat.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/BuilderDoesNotExist.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/BuilderMustBeAMethodName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CanExtendOnlyClasses.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CanOnlyConsumeRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CanOnlyWrapBlessedCode.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CanReblessOnlyIntoASubclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotAddAsAnAttributeToARole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotAugmentNoSuperMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotAutoDerefWithoutIsa.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotCalculateNativeType.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotCallAnAbstractMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotCoerceAWeakRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotDelegateWithoutIsa.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotFindDelegateMetaclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotFindType.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotFixMetaclassCompatibility.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotGenerateInlineConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotInlineTypeConstraintCheck.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotLocatePackageInINC.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotMakeMetaclassCompatible.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotOverrideALocalMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotOverrideNoSuperMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CircularReferenceInAlso.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ClassDoesNotHaveInitMeta.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ClassDoesTheExcludedRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ClassNamesDoNotMatch.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CodeBlockMustBeACodeRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CoercingWithoutCoercions.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CoercionAlreadyExists.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CoercionNeedsTypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CouldNotCreateMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CouldNotCreateWriter.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CouldNotEvalConstructor.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CouldNotEvalDestructor.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CouldNotParseType.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CreateTakesArrayRefOfRoles.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CreateTakesHashRefOfAttributes.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/CreateTakesHashRefOfMethods.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/DoesRequiresRoleName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/EnumValuesMustBeString.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ExtendsMissingArgs.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/HandlesMustBeAHashRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/IllegalInheritedOptions.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InitMetaRequiresClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InstanceBlessedIntoWrongClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InstanceMustBeABlessedReference.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidArgumentToMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidArgumentsToTraitAliases.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidHandleValue.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidHasProvidedInARole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidNameForType.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidRoleApplication.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidTypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/InvalidValueForIs.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/IsaDoesNotDoTheRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/IsaLacksDoesMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/LazyAttributeNeedsADefault.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Legacy.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MatchActionMustBeACodeRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MessageParameterMustBeCodeRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MetaclassNotLoaded.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MetaclassTypeIncompatible.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MethodExpectedAMetaclassObject.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MethodExpectsFewerArgs.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MethodExpectsMoreArgs.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MethodModifierNeedsMethodName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MethodNameConflictInRoles.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MethodNameNotGiven.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustDefineAMethodName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustDefineAnAttributeName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustPassAHashOfOptions.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustPassEvenNumberOfArguments.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustProvideANameForTheAttribute.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSpecifyAtleastOneMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSpecifyAtleastOneRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSupplyADelegateToMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSupplyAMetaclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/MustSupplyPackageNameAndName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NoAttributeFoundInSuperClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NoCasesMatched.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NoDestructorClassSpecified.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/NoParentGivenToSubtype.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/OnlyInstancesCanBeCloned.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/OperatorIsRequired.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/OverrideConflictInComposition.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/OverrideConflictInSummation.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/PackageDoesNotUseMooseExporter.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/PackagesAndModulesAreNotCachable.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RequiredAttributeLacksInitialization.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RequiredAttributeNeedsADefault.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RequiredMethodsImportedByClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/Attribute.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/AttributeName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/Class.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/Instance.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/InvalidAttributeOptions.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/Method.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/ParamsHash.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/Role.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/RoleForCreate.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/RoleForCreateMOPClass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role/TypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RoleDoesTheExcludedRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RoleExclusionConflict.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RoleNameRequired.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RoleNamesDoNotMatch.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RolesDoNotSupportAugment.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RolesDoNotSupportExtends.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RolesDoNotSupportInner.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/TriggerMustBeACodeRef.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/TypeNamesDoNotMatch.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/UnableToCanonicalizeHandles.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/ValidationFailedForTypeConstraint.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/WrapTakesACodeRefToBless.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/WrongTypeConstraintGiven.pm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exporter.pm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Intro.pod %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual.pod @@ -201,6 +417,8 @@ bin/moose-outdated %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual/Contributing.pod %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual/Delegation.pod %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual/Delta.pod +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual/Exceptions.pod +%%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual/Exceptions/Manifest.pod %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual/FAQ.pod %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual/MOP.pod %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual/MethodModifiers.pod @@ -372,8 +590,10 @@ bin/moose-outdated @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Meta/Attribute/Native @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Meta/Attribute @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Meta +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual/Exceptions @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Manual -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Error +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception/Role +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Exception @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Cookbook/Snack @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Cookbook/Roles @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Moose/Cookbook/Meta From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57789E71; Thu, 23 Jan 2014 03:28:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 43FD11580; Thu, 23 Jan 2014 03:28:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3SheL017303; Thu, 23 Jan 2014 03:28:43 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3Sg0I017301; Thu, 23 Jan 2014 03:28:42 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3Sg0I017301@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340795 - head/mail/p5-Net-IMAP-Client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:43 -0000 Author: sunpoet Date: Thu Jan 23 03:28:42 2014 New Revision: 340795 URL: http://svnweb.freebsd.org/changeset/ports/340795 QAT: https://qat.redports.org/buildarchive/r340795/ Log: - Update to 0.9504 - Add LICENSE Changes: http://search.cpan.org/dist/Net-IMAP-Client/Changes Modified: head/mail/p5-Net-IMAP-Client/Makefile head/mail/p5-Net-IMAP-Client/distinfo Modified: head/mail/p5-Net-IMAP-Client/Makefile ============================================================================== --- head/mail/p5-Net-IMAP-Client/Makefile Thu Jan 23 03:28:37 2014 (r340794) +++ head/mail/p5-Net-IMAP-Client/Makefile Thu Jan 23 03:28:42 2014 (r340795) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net-IMAP-Client -PORTVERSION= 0.9501 +PORTVERSION= 0.9504 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,8 +10,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Not so simple IMAP client library -RUN_DEPENDS= p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ - p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL \ + p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils +RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure Modified: head/mail/p5-Net-IMAP-Client/distinfo ============================================================================== --- head/mail/p5-Net-IMAP-Client/distinfo Thu Jan 23 03:28:37 2014 (r340794) +++ head/mail/p5-Net-IMAP-Client/distinfo Thu Jan 23 03:28:42 2014 (r340795) @@ -1,2 +1,2 @@ -SHA256 (Net-IMAP-Client-0.9501.tar.gz) = 3f2dcc71f031a45fe06cbdf6605b823e0ee86e22192f998286f03206d7453c18 -SIZE (Net-IMAP-Client-0.9501.tar.gz) = 25904 +SHA256 (Net-IMAP-Client-0.9504.tar.gz) = 6eacb7d3d4edd9857175518fb60f2e88c1c89141894b4d18f461a5a7bf513d68 +SIZE (Net-IMAP-Client-0.9504.tar.gz) = 26931 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 483ABF4D; Thu, 23 Jan 2014 03:28:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 296131584; Thu, 23 Jan 2014 03:28:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3Smux017403; Thu, 23 Jan 2014 03:28:48 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3SlG5017400; Thu, 23 Jan 2014 03:28:47 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3SlG5017400@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340796 - head/devel/p5-Algorithm-Evolutionary X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:48 -0000 Author: sunpoet Date: Thu Jan 23 03:28:47 2014 New Revision: 340796 URL: http://svnweb.freebsd.org/changeset/ports/340796 QAT: https://qat.redports.org/buildarchive/r340796/ Log: - Update to 0.79 Changes: http://search.cpan.org/dist/Algorithm-Evolutionary/Changes Modified: head/devel/p5-Algorithm-Evolutionary/Makefile head/devel/p5-Algorithm-Evolutionary/distinfo head/devel/p5-Algorithm-Evolutionary/pkg-plist Modified: head/devel/p5-Algorithm-Evolutionary/Makefile ============================================================================== --- head/devel/p5-Algorithm-Evolutionary/Makefile Thu Jan 23 03:28:42 2014 (r340795) +++ head/devel/p5-Algorithm-Evolutionary/Makefile Thu Jan 23 03:28:47 2014 (r340796) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Algorithm-Evolutionary -PORTVERSION= 0.78 +PORTVERSION= 0.79 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -18,6 +18,7 @@ BUILD_DEPENDS= p5-Algorithm-Permute>=0.0 p5-GD>=2.17:${PORTSDIR}/graphics/p5-GD \ p5-Math-Random>=0.63:${PORTSDIR}/math/p5-Math-Random \ p5-Object-Array>=0:${PORTSDIR}/devel/p5-Object-Array \ + p5-Sort-Key>=0:${PORTSDIR}/devel/p5-Sort-Key \ p5-Statistics-Basic>=1.6:${PORTSDIR}/math/p5-Statistics-Basic \ p5-String-Random>=0:${PORTSDIR}/devel/p5-String-Random \ p5-Tree-DAG_Node>=1.04:${PORTSDIR}/devel/p5-Tree-DAG_Node \ Modified: head/devel/p5-Algorithm-Evolutionary/distinfo ============================================================================== --- head/devel/p5-Algorithm-Evolutionary/distinfo Thu Jan 23 03:28:42 2014 (r340795) +++ head/devel/p5-Algorithm-Evolutionary/distinfo Thu Jan 23 03:28:47 2014 (r340796) @@ -1,2 +1,2 @@ -SHA256 (Algorithm-Evolutionary-0.78.tar.gz) = 80a4c6876c5c13e9a31a692460bec30af39f9e8b5bfc43f0943b089c029ac206 -SIZE (Algorithm-Evolutionary-0.78.tar.gz) = 111973 +SHA256 (Algorithm-Evolutionary-0.79.tar.gz) = df910def71d1e09122c86c2b6a61394ee29b67a3301221704dee3fa1da010551 +SIZE (Algorithm-Evolutionary-0.79.tar.gz) = 112341 Modified: head/devel/p5-Algorithm-Evolutionary/pkg-plist ============================================================================== --- head/devel/p5-Algorithm-Evolutionary/pkg-plist Thu Jan 23 03:28:42 2014 (r340795) +++ head/devel/p5-Algorithm-Evolutionary/pkg-plist Thu Jan 23 03:28:47 2014 (r340796) @@ -69,7 +69,6 @@ bin/tide_float.pl %%PERL5_MAN3%%/Algorithm::Evolutionary::Op::Storing.3.gz %%PERL5_MAN3%%/Algorithm::Evolutionary::Op::StringRand.3.gz %%PERL5_MAN3%%/Algorithm::Evolutionary::Op::String_Mutation.3.gz -%%PERL5_MAN3%%/Algorithm::Evolutionary::Op::TournamentSelect.3.gz %%PERL5_MAN3%%/Algorithm::Evolutionary::Op::Tournament_Selection.3.gz %%PERL5_MAN3%%/Algorithm::Evolutionary::Op::TreeMutation.3.gz %%PERL5_MAN3%%/Algorithm::Evolutionary::Op::Uniform_Crossover.3.gz @@ -146,7 +145,6 @@ bin/tide_float.pl %%SITE_PERL%%/Algorithm/Evolutionary/Op/Storing.pm %%SITE_PERL%%/Algorithm/Evolutionary/Op/StringRand.pm %%SITE_PERL%%/Algorithm/Evolutionary/Op/String_Mutation.pm -%%SITE_PERL%%/Algorithm/Evolutionary/Op/TournamentSelect.pm %%SITE_PERL%%/Algorithm/Evolutionary/Op/Tournament_Selection.pm %%SITE_PERL%%/Algorithm/Evolutionary/Op/TreeMutation.pm %%SITE_PERL%%/Algorithm/Evolutionary/Op/Uniform_Crossover.pm From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:28:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E737E44; Thu, 23 Jan 2014 03:28:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5C07B157F; Thu, 23 Jan 2014 03:28:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3ScxK017217; Thu, 23 Jan 2014 03:28:38 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3SbDl017211; Thu, 23 Jan 2014 03:28:37 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230328.s0N3SbDl017211@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:28:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340794 - head/biology/p5-Bio-GFF3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:28:40 -0000 Author: sunpoet Date: Thu Jan 23 03:28:37 2014 New Revision: 340794 URL: http://svnweb.freebsd.org/changeset/ports/340794 QAT: https://qat.redports.org/buildarchive/r340794/ Log: - Update to 1.9 - Sort PLIST Changes: http://search.cpan.org/dist/Bio-GFF3/Changes Modified: head/biology/p5-Bio-GFF3/Makefile head/biology/p5-Bio-GFF3/distinfo head/biology/p5-Bio-GFF3/pkg-plist Modified: head/biology/p5-Bio-GFF3/Makefile ============================================================================== --- head/biology/p5-Bio-GFF3/Makefile Thu Jan 23 03:28:33 2014 (r340793) +++ head/biology/p5-Bio-GFF3/Makefile Thu Jan 23 03:28:37 2014 (r340794) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Bio-GFF3 -PORTVERSION= 1.8 +PORTVERSION= 1.9 CATEGORIES= biology perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -17,8 +17,7 @@ BUILD_DEPENDS= p5-File-ReadBackwards>=0: p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-URI>=0:${PORTSDIR}/net/p5-URI RUN_DEPENDS:= ${BUILD_DEPENDS} -TEST_DEPENDS= p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String \ - p5-IO-stringy>=0:${PORTSDIR}/devel/p5-IO-stringy +TEST_DEPENDS= p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String USES= perl5 USE_PERL5= configure Modified: head/biology/p5-Bio-GFF3/distinfo ============================================================================== --- head/biology/p5-Bio-GFF3/distinfo Thu Jan 23 03:28:33 2014 (r340793) +++ head/biology/p5-Bio-GFF3/distinfo Thu Jan 23 03:28:37 2014 (r340794) @@ -1,2 +1,2 @@ -SHA256 (Bio-GFF3-1.8.tar.gz) = bf39ca398c1a3e970750b563c9b0af5d9f880a391164fb34358c7f1824c01b61 -SIZE (Bio-GFF3-1.8.tar.gz) = 74445 +SHA256 (Bio-GFF3-1.9.tar.gz) = 538c018ce9d86c0e6364d14bd05a04debaf37ee0752781e680fc8ca31ec87bb2 +SIZE (Bio-GFF3-1.9.tar.gz) = 73967 Modified: head/biology/p5-Bio-GFF3/pkg-plist ============================================================================== --- head/biology/p5-Bio-GFF3/pkg-plist Thu Jan 23 03:28:33 2014 (r340793) +++ head/biology/p5-Bio-GFF3/pkg-plist Thu Jan 23 03:28:37 2014 (r340794) @@ -1,8 +1,8 @@ bin/gff3_from_fasta -%%SITE_PERL%%/Bio/GFF3/Transform/FromFasta.pm -%%SITE_PERL%%/Bio/GFF3/LowLevel/Parser/1_0_backcompat.pm -%%SITE_PERL%%/Bio/GFF3/LowLevel/Parser.pm %%SITE_PERL%%/Bio/GFF3/LowLevel.pm +%%SITE_PERL%%/Bio/GFF3/LowLevel/Parser.pm +%%SITE_PERL%%/Bio/GFF3/LowLevel/Parser/1_0_backcompat.pm +%%SITE_PERL%%/Bio/GFF3/Transform/FromFasta.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Bio/GFF3/.packlist %%PERL5_MAN3%%/Bio::GFF3::LowLevel.3.gz %%PERL5_MAN3%%/Bio::GFF3::LowLevel::Parser.3.gz From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 03:30:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AA8D598; Thu, 23 Jan 2014 03:30:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 251B3159B; Thu, 23 Jan 2014 03:30:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N3UPtZ018180; Thu, 23 Jan 2014 03:30:25 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N3UO6F018179; Thu, 23 Jan 2014 03:30:25 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201401230330.s0N3UO6F018179@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 23 Jan 2014 03:30:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340799 - head/www/aria2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 03:30:25 -0000 Author: sunpoet Date: Thu Jan 23 03:30:24 2014 New Revision: 340799 URL: http://svnweb.freebsd.org/changeset/ports/340799 QAT: https://qat.redports.org/buildarchive/r340799/ Log: - Shorten pkg-descr Modified: head/www/aria2/pkg-descr Modified: head/www/aria2/pkg-descr ============================================================================== --- head/www/aria2/pkg-descr Thu Jan 23 03:28:56 2014 (r340798) +++ head/www/aria2/pkg-descr Thu Jan 23 03:30:24 2014 (r340799) @@ -1,10 +1,6 @@ -aria2 - The next generation download utility - aria2 is a lightweight multi-protocol & multi-source command-line download utility. It supports HTTP/HTTPS, FTP, BitTorrent and Metalink. aria2 can be -manipulated via built-in JSON-RPC and XML-RPC interfaces. - -Features: +manipulated via built-in JSON-RPC and XML-RPC interfaces. Its features include: - Multi-Connection Download. aria2 can download a file from multiple sources/protocols and tries to utilize your maximum download bandwidth. Really speeds up your download experience. From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 04:26:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E43B547; Thu, 23 Jan 2014 04:26:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EE85019AE; Thu, 23 Jan 2014 04:26:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N4Qchh040087; Thu, 23 Jan 2014 04:26:38 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N4QctH040085; Thu, 23 Jan 2014 04:26:38 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201401230426.s0N4QctH040085@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Thu, 23 Jan 2014 04:26:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340800 - head/math/octave-forge-io X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 04:26:39 -0000 Author: stephen Date: Thu Jan 23 04:26:38 2014 New Revision: 340800 URL: http://svnweb.freebsd.org/changeset/ports/340800 QAT: https://qat.redports.org/buildarchive/r340800/ Log: - Update to 2.0.2. Modified: head/math/octave-forge-io/Makefile head/math/octave-forge-io/distinfo Modified: head/math/octave-forge-io/Makefile ============================================================================== --- head/math/octave-forge-io/Makefile Thu Jan 23 03:30:24 2014 (r340799) +++ head/math/octave-forge-io/Makefile Thu Jan 23 04:26:38 2014 (r340800) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-io -PORTVERSION= 1.2.5 +PORTVERSION= 2.0.2 PORTEPOCH= 1 CATEGORIES= math Modified: head/math/octave-forge-io/distinfo ============================================================================== --- head/math/octave-forge-io/distinfo Thu Jan 23 03:30:24 2014 (r340799) +++ head/math/octave-forge-io/distinfo Thu Jan 23 04:26:38 2014 (r340800) @@ -1,2 +1,2 @@ -SHA256 (octave-forge/io-1.2.5.tar.gz) = d18c8cf3ec564f7f3b2b4125fbc3aae18c242dcdd518723f63578f724b2cbfd4 -SIZE (octave-forge/io-1.2.5.tar.gz) = 208807 +SHA256 (octave-forge/io-2.0.2.tar.gz) = 7801ffe35d171a80b92874c7094ca3bd2321327a22670f2284fc43ca1fe515b4 +SIZE (octave-forge/io-2.0.2.tar.gz) = 218184 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 05:05:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 999FD743; Thu, 23 Jan 2014 05:05:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C8D41DDB; Thu, 23 Jan 2014 05:05:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N55KvS055116; Thu, 23 Jan 2014 05:05:20 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N55J6v055111; Thu, 23 Jan 2014 05:05:19 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201401230505.s0N55J6v055111@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Thu, 23 Jan 2014 05:05:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340801 - in head: Mk math/octave-forge-ltfat math/octave-forge-nan math/octave-forge-tsa math/octave-forge-xraylib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 05:05:20 -0000 Author: stephen Date: Thu Jan 23 05:05:19 2014 New Revision: 340801 URL: http://svnweb.freebsd.org/changeset/ports/340801 QAT: https://qat.redports.org/buildarchive/r340801/ Log: - Move the MAKE_ARGS variables from some individual math/octave-forge-* ports to Mk/bsd.octave.mk. Also add LD_CXX="${CXX}" DL_LD="${CXX}" to MAKE_ARGS, as this fixes the build of several octave-forve-* ports by setting these variables properly in ${PREFIX}/bin/mkoctfile. Modified: head/Mk/bsd.octave.mk head/math/octave-forge-ltfat/Makefile head/math/octave-forge-nan/Makefile head/math/octave-forge-tsa/Makefile head/math/octave-forge-xraylib/Makefile Modified: head/Mk/bsd.octave.mk ============================================================================== --- head/Mk/bsd.octave.mk Thu Jan 23 04:26:38 2014 (r340800) +++ head/Mk/bsd.octave.mk Thu Jan 23 05:05:19 2014 (r340801) @@ -30,6 +30,7 @@ TARBALLS_DIR= ${LOCALBASE}/share/octave/ INSTALL_TARBALLS_DIR= ${STAGEDIR}${PREFIX}/share/octave/tarballs MAKE_ENV+= PACKAGE=${WRKDIR}/${DISTNAME}.tar.gz +MAKE_ARGS= CC="${CC}" CXX="${CXX}" LD_CXX="${CXX}" DL_LD="${CXX}" LOAD_OCTAVE_PKG_CMD= ${LOCALBASE}/libexec/octave/load-octave-pkg Modified: head/math/octave-forge-ltfat/Makefile ============================================================================== --- head/math/octave-forge-ltfat/Makefile Thu Jan 23 04:26:38 2014 (r340800) +++ head/math/octave-forge-ltfat/Makefile Thu Jan 23 05:05:19 2014 (r340801) @@ -15,8 +15,6 @@ LIB_DEPENDS= fftw3:${PORTSDIR}/math/fftw portaudio:${PORTSDIR}/audio/portaudio2 \ cblas:${PORTSDIR}/math/cblas -MAKE_ARGS= CC="${CC}" - # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. OCTSRC= ${OCTAVE_PKGNAME} Modified: head/math/octave-forge-nan/Makefile ============================================================================== --- head/math/octave-forge-nan/Makefile Thu Jan 23 04:26:38 2014 (r340800) +++ head/math/octave-forge-nan/Makefile Thu Jan 23 05:05:19 2014 (r340801) @@ -11,7 +11,6 @@ COMMENT= Octave-forge package ${OCTAVE_P LICENSE= GPLv3 MAKE_JOBS_UNSAFE= yes -MAKE_ARGS= CC="${CC}" CXX="${CXX}" # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. Modified: head/math/octave-forge-tsa/Makefile ============================================================================== --- head/math/octave-forge-tsa/Makefile Thu Jan 23 04:26:38 2014 (r340800) +++ head/math/octave-forge-tsa/Makefile Thu Jan 23 05:05:19 2014 (r340801) @@ -10,8 +10,6 @@ COMMENT= Octave-forge package ${OCTAVE_P LICENSE= GPLv3 -MAKE_ARGS= CC="${CC}" CXX="${CXX}" - # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. OCTSRC= ${OCTAVE_PKGNAME} Modified: head/math/octave-forge-xraylib/Makefile ============================================================================== --- head/math/octave-forge-xraylib/Makefile Thu Jan 23 04:26:38 2014 (r340800) +++ head/math/octave-forge-xraylib/Makefile Thu Jan 23 05:05:19 2014 (r340801) @@ -12,7 +12,6 @@ COMMENT= Octave-forge package ${OCTAVE_P LICENSE= GPLv2 GNU_CONFIGURE= yes -MAKE_ARGS= CC="${CC}" BUILD_DEPENDS+= bash:${PORTSDIR}/shells/bash From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 05:17:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3C8CB0B; Thu, 23 Jan 2014 05:17:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DFB241E9E; Thu, 23 Jan 2014 05:17:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N5Hvnk059466; Thu, 23 Jan 2014 05:17:57 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N5HvFO059464; Thu, 23 Jan 2014 05:17:57 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201401230517.s0N5HvFO059464@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Thu, 23 Jan 2014 05:17:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340802 - head/math/octave-forge-image X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 05:17:58 -0000 Author: stephen Date: Thu Jan 23 05:17:57 2014 New Revision: 340802 URL: http://svnweb.freebsd.org/changeset/ports/340802 QAT: https://qat.redports.org/buildarchive/r340802/ Log: - Update to 2.2.0. Modified: head/math/octave-forge-image/Makefile head/math/octave-forge-image/distinfo Modified: head/math/octave-forge-image/Makefile ============================================================================== --- head/math/octave-forge-image/Makefile Thu Jan 23 05:05:19 2014 (r340801) +++ head/math/octave-forge-image/Makefile Thu Jan 23 05:17:57 2014 (r340802) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-image -PORTVERSION= 2.0.0 -PORTREVISION= 1 +PORTVERSION= 2.2.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -16,6 +15,7 @@ OCTSRC= ${OCTAVE_PKGNAME} WRKSRC= ${WRKDIR}/${OCTSRC}/src RUN_DEPENDS+= ${TARBALLS_DIR}/signal.tar.gz:${PORTSDIR}/math/octave-forge-signal +RUN_DEPENDS+= ${TARBALLS_DIR}/general.tar.gz:${PORTSDIR}/math/octave-forge-general .include "${.CURDIR}/../../Mk/bsd.octave.mk" Modified: head/math/octave-forge-image/distinfo ============================================================================== --- head/math/octave-forge-image/distinfo Thu Jan 23 05:05:19 2014 (r340801) +++ head/math/octave-forge-image/distinfo Thu Jan 23 05:17:57 2014 (r340802) @@ -1,2 +1,2 @@ -SHA256 (octave-forge/image-2.0.0.tar.gz) = fecacf1cf78e2517f9e3eda243925c71f3b247aaac5dc7b5ea3af7d2208af1d9 -SIZE (octave-forge/image-2.0.0.tar.gz) = 197512 +SHA256 (octave-forge/image-2.2.0.tar.gz) = cc22014a903523f069c8f13d50e5da7c7e6cadb962034c9dd5fd82f8fd3293a3 +SIZE (octave-forge/image-2.2.0.tar.gz) = 264647 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 05:29:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B982E12F; Thu, 23 Jan 2014 05:29:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A50701F7E; Thu, 23 Jan 2014 05:29:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N5TuWN063354; Thu, 23 Jan 2014 05:29:56 GMT (envelope-from stephen@svn.freebsd.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N5TuMi063353; Thu, 23 Jan 2014 05:29:56 GMT (envelope-from stephen@svn.freebsd.org) Message-Id: <201401230529.s0N5TuMi063353@svn.freebsd.org> From: Stephen Montgomery-Smith Date: Thu, 23 Jan 2014 05:29:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340803 - head/math/octave-forge-fits/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.17 Precedence: list List-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, 23 Jan 2014 05:29:56 -0000 Author: stephen Date: Thu Jan 23 05:29:56 2014 New Revision: 340803 URL: http://svnweb.freebsd.org/changeset/ports/340803 QAT: https://qat.redports.org/buildarchive/r340803/ Log: - Add patch to fix build error with math/octave-3.8.0. Added: head/math/octave-forge-fits/files/ head/math/octave-forge-fits/files/patch-read_fits_image.cc (contents, props changed) Added: head/math/octave-forge-fits/files/patch-read_fits_image.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/octave-forge-fits/files/patch-read_fits_image.cc Thu Jan 23 05:29:56 2014 (r340803) @@ -0,0 +1,11 @@ +--- read_fits_image.cc-orig 2014-01-23 05:25:08.000000000 +0000 ++++ read_fits_image.cc 2014-01-23 05:25:45.000000000 +0000 +@@ -136,7 +136,7 @@ + } + //std::cerr << "read_sz: " << read_sz << std::endl; + +- #if OCTAVE_API_VERSION_NUMBER >= 45 ++ #if OCTAVE_API_VERSION_NUMBER >= 45 || !defined(OCTAVE_API_VERSION_NUMBER) + MArray image_data( dims ); // a octace double-type array + #else + MArrayN image_data( dims ); // a octave double-type array From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 07:50:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBC1E1C4; Thu, 23 Jan 2014 07:50:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B89A81DDA; Thu, 23 Jan 2014 07:50:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N7oet1016300; Thu, 23 Jan 2014 07:50:40 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N7oeuY016298; Thu, 23 Jan 2014 07:50:40 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230750.s0N7oeuY016298@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 07:50:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340804 - head/devel/popt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 07:50:40 -0000 Author: bapt Date: Thu Jan 23 07:50:39 2014 New Revision: 340804 URL: http://svnweb.freebsd.org/changeset/ports/340804 QAT: https://qat.redports.org/buildarchive/r340804/ Log: Support stage Use options helpers Modified: head/devel/popt/Makefile head/devel/popt/pkg-plist Modified: head/devel/popt/Makefile ============================================================================== --- head/devel/popt/Makefile Thu Jan 23 05:29:56 2014 (r340803) +++ head/devel/popt/Makefile Thu Jan 23 07:50:39 2014 (r340804) @@ -9,6 +9,8 @@ MASTER_SITES= http://rpm5.org/files/popt MAINTAINER= jpaetzel@FreeBSD.org COMMENT= A getopt(3) like library with a number of enhancements, from Redhat +OPTIONS_DEFINE= NLS + CONFIGURE_ARGS= ${ICONV_CONFIGURE_ARG} \ --program-prefix="" CPPFLAGS+= -I${LOCALBASE}/include @@ -18,18 +20,8 @@ USE_AUTOTOOLS= libtool USES= pathfix iconv USE_LDCONFIG= yes -MAN3= popt.3 - -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MNLS} -CONFIGURE_ARGS+=--enable-nls -PLIST_SUB+= NLS="" -USES+= gettext -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.endif +NLS_CONFIGURE_ENABLE= nls +NLS_USES= gettext +OPTIONS_SUB= yes .include Modified: head/devel/popt/pkg-plist ============================================================================== --- head/devel/popt/pkg-plist Thu Jan 23 05:29:56 2014 (r340803) +++ head/devel/popt/pkg-plist Thu Jan 23 07:50:39 2014 (r340804) @@ -4,6 +4,7 @@ lib/libpopt.la lib/libpopt.so lib/libpopt.so.0 libdata/pkgconfig/popt.pc +man/man3/popt.3.gz %%NLS%%share/locale/cs/LC_MESSAGES/popt.mo %%NLS%%share/locale/da/LC_MESSAGES/popt.mo %%NLS%%share/locale/de/LC_MESSAGES/popt.mo From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:05:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F1438E4; Thu, 23 Jan 2014 08:05:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3AF621F91; Thu, 23 Jan 2014 08:05:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N85FdM023362; Thu, 23 Jan 2014 08:05:15 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N85F7N023361; Thu, 23 Jan 2014 08:05:15 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401230805.s0N85F7N023361@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 23 Jan 2014 08:05:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340805 - head/textproc/fldiff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 08:05:15 -0000 Author: ehaupt Date: Thu Jan 23 08:05:14 2014 New Revision: 340805 URL: http://svnweb.freebsd.org/changeset/ports/340805 QAT: https://qat.redports.org/buildarchive/r340805/ Log: Remove WWW. Project page disappeared without a replacement. PR: 186022 Submitted by: mandree Modified: head/textproc/fldiff/pkg-descr Modified: head/textproc/fldiff/pkg-descr ============================================================================== --- head/textproc/fldiff/pkg-descr Thu Jan 23 07:50:39 2014 (r340804) +++ head/textproc/fldiff/pkg-descr Thu Jan 23 08:05:14 2014 (r340805) @@ -3,5 +3,3 @@ files/directories, or a file/directory a It is inspired by xdiff (Motif-based) and xxdiff (Qt-based), whose choice of GUI toolkit has hampered their portability to many of the systems I work with. - -WWW: http://www.easysw.com/~mike/fldiff/ From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:23:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 17AC8FAF; Thu, 23 Jan 2014 08:23:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 02C9C1169; Thu, 23 Jan 2014 08:23:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8NhLB031007; Thu, 23 Jan 2014 08:23:43 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8NhC7031005; Thu, 23 Jan 2014 08:23:43 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201401230823.s0N8NhC7031005@svn.freebsd.org> From: Matthias Andree Date: Thu, 23 Jan 2014 08:23:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340806 - head/graphics/osgearth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 08:23:44 -0000 Author: mandree Date: Thu Jan 23 08:23:43 2014 New Revision: 340806 URL: http://svnweb.freebsd.org/changeset/ports/340806 QAT: https://qat.redports.org/buildarchive/r340806/ Log: Move port to depend on graphics/osg, which was recently updated to 3.2.0, and osgearth's requirement was 3.0.1, to avoid conflicts with other ports that depend on graphics/osg. Make the graphics/osg version a variable, to ease maintainer's jobs as graphics/osg gets updated (which requires osgearth's PORTREVISION and PLIST_SUB to be bumped). Some part of the discussion around PLIST_SUB is not recorded in the PR, but it is still related to PR: ports/184706 Submitted by: amdmi3 Modified: head/graphics/osgearth/Makefile head/graphics/osgearth/pkg-plist Modified: head/graphics/osgearth/Makefile ============================================================================== --- head/graphics/osgearth/Makefile Thu Jan 23 08:05:14 2014 (r340805) +++ head/graphics/osgearth/Makefile Thu Jan 23 08:23:43 2014 (r340806) @@ -12,7 +12,7 @@ COMMENT= osgEarth is a C++ terrain rende LICENSE= LGPL3 BUILD_DEPENDS= ${LOCALBASE}/bin/minizip:${PORTSDIR}/archivers/minizip -LIB_DEPENDS= libosg.so:${PORTSDIR}/graphics/osg-devel \ +LIB_DEPENDS= libosg.so:${PORTSDIR}/graphics/osg \ libgdal.so:${PORTSDIR}/graphics/gdal \ libcurl.so:${PORTSDIR}/ftp/curl @@ -22,6 +22,7 @@ USE_LDCONFIG= YES USE_SQLITE= 3 USE_ZIP= YES USES= cmake gmake pkgconfig +PLIST_SUB= OSGVERSION=3.2.0 CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:PATH=${LOCALBASE}/include \ -DMINIZIP_INCLUDE_DIR=${LOCALBASE}/include/minizip \ Modified: head/graphics/osgearth/pkg-plist ============================================================================== --- head/graphics/osgearth/pkg-plist Thu Jan 23 08:05:14 2014 (r340805) +++ head/graphics/osgearth/pkg-plist Thu Jan 23 08:23:43 2014 (r340806) @@ -400,45 +400,45 @@ lib/libosgEarthSymbology.so.2.5.0 lib/libosgEarthUtil.so lib/libosgEarthUtil.so.0 lib/libosgEarthUtil.so.2.5.0 -lib/osgPlugins-3.1.3/osgdb_earth.so -lib/osgPlugins-3.1.3/osgdb_kml.so -lib/osgPlugins-3.1.3/osgdb_osgearth_agglite.so -lib/osgPlugins-3.1.3/osgdb_osgearth_arcgis.so -lib/osgPlugins-3.1.3/osgdb_osgearth_arcgis_map_cache.so -lib/osgPlugins-3.1.3/osgdb_osgearth_bing.so -lib/osgPlugins-3.1.3/osgdb_osgearth_cache_filesystem.so -lib/osgPlugins-3.1.3/osgdb_osgearth_debug.so -lib/osgPlugins-3.1.3/osgdb_osgearth_engine_byo.so -lib/osgPlugins-3.1.3/osgdb_osgearth_engine_mp.so -lib/osgPlugins-3.1.3/osgdb_osgearth_engine_osgterrain.so -lib/osgPlugins-3.1.3/osgdb_osgearth_engine_quadtree.so -lib/osgPlugins-3.1.3/osgdb_osgearth_feature_ogr.so -lib/osgPlugins-3.1.3/osgdb_osgearth_feature_tfs.so -lib/osgPlugins-3.1.3/osgdb_osgearth_feature_wfs.so -lib/osgPlugins-3.1.3/osgdb_osgearth_gdal.so -lib/osgPlugins-3.1.3/osgdb_osgearth_label_annotation.so -lib/osgPlugins-3.1.3/osgdb_osgearth_label_overlay.so -lib/osgPlugins-3.1.3/osgdb_osgearth_mask_feature.so -lib/osgPlugins-3.1.3/osgdb_osgearth_mbtiles.so -lib/osgPlugins-3.1.3/osgdb_osgearth_model_feature_geom.so -lib/osgPlugins-3.1.3/osgdb_osgearth_model_feature_stencil.so -lib/osgPlugins-3.1.3/osgdb_osgearth_model_simple.so -lib/osgPlugins-3.1.3/osgdb_osgearth_ocean_surface.so -lib/osgPlugins-3.1.3/osgdb_osgearth_osg.so -lib/osgPlugins-3.1.3/osgdb_osgearth_refresh.so -lib/osgPlugins-3.1.3/osgdb_osgearth_tilecache.so -lib/osgPlugins-3.1.3/osgdb_osgearth_tileindex.so -lib/osgPlugins-3.1.3/osgdb_osgearth_tileservice.so -lib/osgPlugins-3.1.3/osgdb_osgearth_tms.so -lib/osgPlugins-3.1.3/osgdb_osgearth_vdatum_egm2008.so -lib/osgPlugins-3.1.3/osgdb_osgearth_vdatum_egm84.so -lib/osgPlugins-3.1.3/osgdb_osgearth_vdatum_egm96.so -lib/osgPlugins-3.1.3/osgdb_osgearth_vpb.so -lib/osgPlugins-3.1.3/osgdb_osgearth_wcs.so -lib/osgPlugins-3.1.3/osgdb_osgearth_wms.so -lib/osgPlugins-3.1.3/osgdb_osgearth_xyz.so -lib/osgPlugins-3.1.3/osgdb_osgearth_yahoo.so -@dirrmtry lib/osgPlugins-3.1.3 +lib/osgPlugins-%%OSGVERSION%%/osgdb_earth.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_kml.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_agglite.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_arcgis.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_arcgis_map_cache.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_bing.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_cache_filesystem.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_debug.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_engine_byo.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_engine_mp.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_engine_osgterrain.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_engine_quadtree.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_feature_ogr.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_feature_tfs.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_feature_wfs.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_gdal.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_label_annotation.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_label_overlay.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_mask_feature.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_mbtiles.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_model_feature_geom.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_model_feature_stencil.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_model_simple.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_ocean_surface.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_osg.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_refresh.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_tilecache.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_tileindex.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_tileservice.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_tms.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_vdatum_egm2008.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_vdatum_egm84.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_vdatum_egm96.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_vpb.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_wcs.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_wms.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_xyz.so +lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_yahoo.so +@dirrmtry lib/osgPlugins-%%OSGVERSION%% @dirrmtry include/osgEarthUtil @dirrmtry include/osgEarthSymbology @dirrmtry include/osgEarthFeatures From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:38:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42443643; Thu, 23 Jan 2014 08:38:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 13D2E1293; Thu, 23 Jan 2014 08:38:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8cve1035355; Thu, 23 Jan 2014 08:38:57 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8cvoo035352; Thu, 23 Jan 2014 08:38:57 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401230838.s0N8cvoo035352@svn.freebsd.org> From: Max Brazhnikov Date: Thu, 23 Jan 2014 08:38:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340807 - head/print/hplip-plugin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 08:38:58 -0000 Author: makc Date: Thu Jan 23 08:38:57 2014 New Revision: 340807 URL: http://svnweb.freebsd.org/changeset/ports/340807 QAT: https://qat.redports.org/buildarchive/r340807/ Log: Update to 3.14.1 Modified: head/print/hplip-plugin/Makefile head/print/hplip-plugin/distinfo head/print/hplip-plugin/pkg-plist Modified: head/print/hplip-plugin/Makefile ============================================================================== --- head/print/hplip-plugin/Makefile Thu Jan 23 08:23:43 2014 (r340806) +++ head/print/hplip-plugin/Makefile Thu Jan 23 08:38:57 2014 (r340807) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hplip-plugin -PORTVERSION= 3.13.6 +PORTVERSION= 3.14.1 CATEGORIES= print MASTER_SITES= http://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/ DISTNAME= hplip-${DISTVERSION}-plugin Modified: head/print/hplip-plugin/distinfo ============================================================================== --- head/print/hplip-plugin/distinfo Thu Jan 23 08:23:43 2014 (r340806) +++ head/print/hplip-plugin/distinfo Thu Jan 23 08:38:57 2014 (r340807) @@ -1,2 +1,2 @@ -SHA256 (hplip-3.13.6-plugin.run) = 0df59b55df609f5e127988760eef563080563d618fc84f0e0c22b1131b3507fd -SIZE (hplip-3.13.6-plugin.run) = 1831168 +SHA256 (hplip-3.14.1-plugin.run) = 6caa782649af73ae3ea6c2fd742437f4c79f7f1f4d7f433ac3d9bf378626879b +SIZE (hplip-3.14.1-plugin.run) = 1869064 Modified: head/print/hplip-plugin/pkg-plist ============================================================================== --- head/print/hplip-plugin/pkg-plist Thu Jan 23 08:23:43 2014 (r340806) +++ head/print/hplip-plugin/pkg-plist Thu Jan 23 08:38:57 2014 (r340807) @@ -15,6 +15,8 @@ share/hplip/data/plugins/license.txt share/hplip/fax/plugins/fax_marvell-%%LINARCH%%.so share/hplip/fax/plugins/fax_marvell.so share/hplip/plugin.spec +share/hplip/prnt/plugins/hbpl1-%%LINARCH%%.so +share/hplip/prnt/plugins/hbpl1.so share/hplip/prnt/plugins/lj-%%LINARCH%%.so share/hplip/prnt/plugins/lj.so share/hplip/scan/plugins/bb_marvell-%%LINARCH%%.so @@ -24,7 +26,9 @@ share/hplip/scan/plugins/bb_soap.so share/hplip/scan/plugins/bb_soapht-%%LINARCH%%.so share/hplip/scan/plugins/bb_soapht.so @dirrm share/hplip/scan/plugins +@dirrmtry share/hplip/scan @dirrm share/hplip/prnt/plugins @dirrm share/hplip/fax/plugins +@dirrmtry share/hplip/fax @dirrm share/hplip/data/plugins @dirrm share/hplip/data/firmware From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:39:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 845FE64F; Thu, 23 Jan 2014 08:39:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6F47A1294; Thu, 23 Jan 2014 08:39:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8d1Vp035486; Thu, 23 Jan 2014 08:39:01 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8d0Gx035473; Thu, 23 Jan 2014 08:39:00 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401230839.s0N8d0Gx035473@svn.freebsd.org> From: Max Brazhnikov Date: Thu, 23 Jan 2014 08:39:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340808 - in head/print/hplip: . 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.17 Precedence: list List-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, 23 Jan 2014 08:39:01 -0000 Author: makc Date: Thu Jan 23 08:39:00 2014 New Revision: 340808 URL: http://svnweb.freebsd.org/changeset/ports/340808 QAT: https://qat.redports.org/buildarchive/r340808/ Log: Update to 3.14.1 Modified: head/print/hplip/Makefile head/print/hplip/distinfo head/print/hplip/files/patch-hplip-plugin head/print/hplip/files/patch-prnt__hpcups__ErnieFilter.cpp head/print/hplip/pkg-plist Modified: head/print/hplip/Makefile ============================================================================== --- head/print/hplip/Makefile Thu Jan 23 08:38:57 2014 (r340807) +++ head/print/hplip/Makefile Thu Jan 23 08:39:00 2014 (r340808) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= hplip -PORTVERSION= 3.13.6 -PORTREVISION= 1 +PORTVERSION= 3.14.1 CATEGORIES= print MASTER_SITES= SF @@ -25,7 +24,7 @@ CONFLICTS_INSTALL= hpijs-[0-9]* USE_GHOSTSCRIPT_RUN= yes USE_PYTHON= yes USE_GNOME= pygobject -USES= pkgconfig dos2unix +USES= dos2unix pkgconfig shebangfix GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-foomatic-ppd-install \ @@ -38,6 +37,7 @@ CONFIGURE_ARGS= --enable-foomatic-ppd-in --with-hpppddir=${PREFIX}/share/ppd/HP \ --with-mimedir=${PREFIX}/etc/cups \ --with-docdir=${DOCSDIR} \ + --with-htmldir=${DOCSDIR} \ --with-drvdir=${PREFIX}/libexec/cups/driver \ --enable-libusb01_build CPPFLAGS+= -I${LOCALBASE}/include @@ -47,33 +47,41 @@ USE_LDCONFIG= yes SUB_FILES= pkg-message DOS2UNIX_REGEX=.+\.(c|cpp|h|py)$ - +SHEBANG_FILES= prnt/hpijs/foomatic-rip-hplip FILES4FIX= Makefile.in \ base/codes.py \ base/g.py \ + base/password.py \ base/pkit.py \ - base/status.py \ + base/queues.py \ + base/services.py \ base/utils.py \ check.py \ fax/backend/hpfax.py \ + fax/coverpages.py \ + fax/filters/pstotiff \ hplip.list.in \ installer/core_install.py \ installer/dcheck.py \ - installer/distros.dat \ installer/pluginhandler.py \ - io/hpmud/hp-mkuri.c \ + logcapture.py \ prnt/cups.py \ prnt/filters/hpps \ prnt/hpcups/HPCupsFilter.cpp \ - prnt/hpcups/Utils.cpp \ + prnt/hpijs/foomatic-rip-hplip \ prnt/hpijs/globals.cpp \ prnt/hpijs/hpcupsfax.cpp \ prnt/hpijs/hpijs.cpp \ - setup.py \ ui/devmgr4.py \ - ui/setupform.py \ ui4/devmgr5.py +PYTHON_SITELIBDIR_REL= ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;} +STRIP_FILES= lib/libhpip.so.0 \ + lib/libhpmud.so.0 \ + ${PYTHON_SITELIBDIR_REL}/pcardext.so \ + ${PYTHON_SITELIBDIR_REL}/hpmudext.so \ + ${PYTHON_SITELIBDIR_REL}/cupsext.so + OPTIONS_DEFINE= QT FAX SNMP SCAN XSANE DOCS OPTIONS_DEFAULT= QT OPTIONS_SUB= yes # QT FAX SCAN @@ -107,6 +115,9 @@ DOCS_CONFIGURE_ENABLE= doc-build . if ${PORT_OPTIONS:MXSANE} RUN_DEPENDS+= xsane:${PORTSDIR}/graphics/xsane . endif + +STRIP_FILES+= ${PYTHON_SITELIBDIR_REL}/scanext.so \ + lib/sane/libsane-hpaio.so.1 .endif post-patch: @@ -125,6 +136,7 @@ post-patch: ${WRKSRC}/Makefile.in ${REINPLACE_CMD} -e 's,/etc/hp,${PREFIX}&,g' \ -e 's,/etc/cups,${LOCALBASE}&,g' \ + -e 's,/etc/foomatic,${LOCALBASE}&,g' \ -e 's,/etc/init.d,${LOCALBASE}/etc/rc.d,g' \ -e 's,/etc/sane.d,${LOCALBASE}&,g' \ -e 's,/usr/share,${LOCALBASE}/share,g' \ @@ -134,7 +146,8 @@ post-patch: ${WRKSRC}/installer/core_install.py ${FIND} ${WRKSRC} -name '*.py' | ${XARGS} ${SED} -i '' \ -e 's,^#!/usr/bin/python,#!${PYTHON_CMD},' \ - -e 's,^#!/usr/bin/env python,#!${PYTHON_CMD},' + -e 's,^#!/usr/bin/env python,#!${PYTHON_CMD},' \ + -e 's,^#!/bin/env python,#!${PYTHON_CMD},' .if !${PORT_OPTIONS:MDOCS} ${REINPLACE_CMD} -e '/[[:space:]]install-docDATA/ s|install-docDATA||' \ ${WRKSRC}/Makefile.in @@ -147,5 +160,6 @@ post-install: .endif ${MKDIR} ${STAGEDIR}${PREFIX}/etc/hp ${INSTALL_DATA} ${WRKSRC}/hplip.conf ${STAGEDIR}${PREFIX}/etc/hp/hplip.conf.sample + ${STRIP_CMD} ${STRIP_FILES:S,^,${STAGEDIR}${PREFIX}/,} .include Modified: head/print/hplip/distinfo ============================================================================== --- head/print/hplip/distinfo Thu Jan 23 08:38:57 2014 (r340807) +++ head/print/hplip/distinfo Thu Jan 23 08:39:00 2014 (r340808) @@ -1,2 +1,2 @@ -SHA256 (hplip-3.13.6.tar.gz) = 86f4fd0accf25ce6d89aa415b3a987e7db410bf529e68b4138f90b1e9055f6c7 -SIZE (hplip-3.13.6.tar.gz) = 20785825 +SHA256 (hplip-3.14.1.tar.gz) = 5c1e79d4426c00c3eb7ec9b689c430ea3d132e23849c08ae3dc58cd8d3d0eb14 +SIZE (hplip-3.14.1.tar.gz) = 21116532 Modified: head/print/hplip/files/patch-hplip-plugin ============================================================================== --- head/print/hplip/files/patch-hplip-plugin Thu Jan 23 08:38:57 2014 (r340807) +++ head/print/hplip/files/patch-hplip-plugin Thu Jan 23 08:39:00 2014 (r340808) @@ -1,22 +1,19 @@ -diff -ru hplip-3.11.12.DIST/Makefile.in hplip-3.11.12/Makefile.in ---- Makefile.in 2011-12-09 12:23:55.000000000 +0100 -+++ Makefile.in 2011-12-30 16:28:26.255313535 +0100 -@@ -503,7 +503,7 @@ +--- ./Makefile.in.orig 2014-01-08 09:33:45.000000000 +0000 ++++ ./Makefile.in 2014-01-22 20:28:18.950635134 +0000 +@@ -511,7 +511,7 @@ @HPIJS_INSTALL_TRUE@@HPLIP_BUILD_TRUE@ $(am__DEPENDENCIES_1) hpijs_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(hpijs_CXXFLAGS) $(CXXFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ + $(AM_LDFLAGS) $(LDFLAGS) -Wl,--export-dynamic -o $@ - am__hplipjs_SOURCES_DIST = prnt/filters/hplipjs.c - @FULL_BUILD_TRUE@@HPLIP_BUILD_TRUE@am_hplipjs_OBJECTS = \ - @FULL_BUILD_TRUE@@HPLIP_BUILD_TRUE@ hplipjs.$(OBJEXT) -Only in hplip-3.11.12: dd -diff -ru hplip-3.11.12.DIST/prnt/hpijs/hpijs.cpp hplip-3.11.12/prnt/hpijs/hpijs.cpp ---- prnt/hpijs/hpijs.cpp 2011-12-09 12:18:33.000000000 +0100 -+++ prnt/hpijs/hpijs.cpp 2011-12-30 16:27:10.976752128 +0100 -@@ -43,6 +43,9 @@ - #include "hpijs.h" + am__hppgsz_SOURCES_DIST = prnt/hpijs/PrinterProperties.cpp \ + prnt/hpijs/PrinterProperties.h prnt/hpijs/bug.h + @FULL_BUILD_TRUE@@HPLIP_BUILD_TRUE@am_hppgsz_OBJECTS = hppgsz-PrinterProperties.$(OBJEXT) +--- ./prnt/hpijs/hpijs.cpp.orig 2014-01-08 09:28:31.000000000 +0000 ++++ ./prnt/hpijs/hpijs.cpp 2014-01-22 20:27:15.921633756 +0000 +@@ -44,6 +44,9 @@ #include "services.h" + #include "utils.h" +#undef stderr; +FILE *stderr; @@ -24,12 +21,11 @@ diff -ru hplip-3.11.12.DIST/prnt/hpijs/h extern void SendDbusMessage (const char *dev, const char *printer, int code, const char *username, const int jobid, const char *title); -@@ -586,6 +589,7 @@ - int status = EXIT_FAILURE; +@@ -590,6 +593,7 @@ int ret, n, i, kn=0, width, k_width; - + char user_name[32]={0,}; + + stderr = __stderrp; openlog("hpijs", LOG_PID, LOG_DAEMON); if (argc > 1) - Modified: head/print/hplip/files/patch-prnt__hpcups__ErnieFilter.cpp ============================================================================== --- head/print/hplip/files/patch-prnt__hpcups__ErnieFilter.cpp Thu Jan 23 08:38:57 2014 (r340807) +++ head/print/hplip/files/patch-prnt__hpcups__ErnieFilter.cpp Thu Jan 23 08:39:00 2014 (r340808) @@ -4,8 +4,8 @@ #include "ErnieFilter.h" --#if defined(__APPLE__) || defined(__linux) -+#if defined(__APPLE__) || defined(__linux) || (__FreeBSD__) +-#if defined(__APPLE__) || defined(__linux) || defined(__GLIBC__) || defined(__NetBSD__) ++#if defined(__APPLE__) || defined(__linux) || defined(__GLIBC__) || defined(__NetBSD__) || (__FreeBSD__) #include #endif Modified: head/print/hplip/pkg-plist ============================================================================== --- head/print/hplip/pkg-plist Thu Jan 23 08:38:57 2014 (r340807) +++ head/print/hplip/pkg-plist Thu Jan 23 08:39:00 2014 (r340808) @@ -16,7 +16,6 @@ bin/hp-linefeedcal bin/hp-logcapture bin/hp-makecopies bin/hp-makeuri -bin/hp-mkuri bin/hp-pkservice bin/hp-plugin bin/hp-pqdiag @@ -63,10 +62,8 @@ libexec/cups/backend/hp %%FAX%%libexec/cups/backend/hpfax libexec/cups/driver/hpcups.drv libexec/cups/filter/foomatic-rip-hplip -libexec/cups/filter/hpcac libexec/cups/filter/hpcups %%FAX%%libexec/cups/filter/hpcupsfax -libexec/cups/filter/hplipjs libexec/cups/filter/hpps libexec/cups/filter/pstotiff %%QT%%share/applications/hplip.desktop @@ -108,6 +105,7 @@ libexec/cups/filter/pstotiff %%DATADIR%%/align.py %%DATADIR%%/base/LedmWifi.py %%DATADIR%%/base/__init__.py +%%DATADIR%%/base/avahi.py %%DATADIR%%/base/codes.py %%DATADIR%%/base/device.py %%DATADIR%%/base/dime.py @@ -135,6 +133,7 @@ libexec/cups/filter/pstotiff %%DATADIR%%/base/strings.py %%DATADIR%%/base/tui.py %%DATADIR%%/base/utils.py +%%DATADIR%%/base/validation.py %%DATADIR%%/base/vcard.py %%DATADIR%%/base/wifi.py %%DATADIR%%/check-plugin.py @@ -779,6 +778,11 @@ share/ppd/HP/hp-color_laserjet_cp5520_se share/ppd/HP/hp-color_laserjet_cp5520_series-ps.ppd.gz share/ppd/HP/hp-color_laserjet_cp6015-hpijs-pcl3.ppd.gz share/ppd/HP/hp-color_laserjet_cp6015-ps.ppd.gz +share/ppd/HP/hp-color_laserjet_flow_mfp_m880-ps.ppd.gz +share/ppd/HP/hp-color_laserjet_m750-ps.ppd.gz +share/ppd/HP/hp-color_laserjet_m855-ps.ppd.gz +share/ppd/HP/hp-color_laserjet_pro_mfp_m176n-hpijs.ppd.gz +share/ppd/HP/hp-color_laserjet_pro_mfp_m177fw-hpijs.ppd.gz share/ppd/HP/hp-cp1160-hpijs.ppd.gz share/ppd/HP/hp-designjet_4000ps.ppd.gz share/ppd/HP/hp-designjet_4020ps-ps.ppd.gz @@ -794,6 +798,7 @@ share/ppd/HP/hp-designjet_t1200_postscri share/ppd/HP/hp-designjet_t1300_postscript-ps.ppd.gz share/ppd/HP/hp-designjet_t1500-postscript.ppd.gz share/ppd/HP/hp-designjet_t2300_postscript-ps.ppd.gz +share/ppd/HP/hp-designjet_t2500-postscript.ppd.gz share/ppd/HP/hp-designjet_t7100ps-ps.ppd.gz share/ppd/HP/hp-designjet_t7100ps_monochrome-ps.ppd.gz share/ppd/HP/hp-designjet_t770_postscript-ps.ppd.gz @@ -802,11 +807,13 @@ share/ppd/HP/hp-designjet_t790ps_24in-ps share/ppd/HP/hp-designjet_t790ps_44in-ps.ppd.gz share/ppd/HP/hp-designjet_t920-postscript.ppd.gz share/ppd/HP/hp-designjet_z5200_postscript-ps.ppd.gz +share/ppd/HP/hp-designjet_z5400-postscript.ppd.gz share/ppd/HP/hp-designjet_z6100ps_42in_photo-ps.ppd.gz share/ppd/HP/hp-designjet_z6100ps_60in_photo-ps.ppd.gz share/ppd/HP/hp-designjet_z6200_42in_photo-ps.ppd.gz share/ppd/HP/hp-designjet_z6200_60in_photo-ps.ppd.gz share/ppd/HP/hp-deskjet_1000_j110_series-hpijs.ppd.gz +share/ppd/HP/hp-deskjet_1010_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_1050_j410_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_1100-hpijs.ppd.gz share/ppd/HP/hp-deskjet_1120-hpijs.ppd.gz @@ -814,6 +821,7 @@ share/ppd/HP/hp-deskjet_1125-hpijs.ppd.g share/ppd/HP/hp-deskjet_1200c-hpijs.ppd.gz share/ppd/HP/hp-deskjet_1220c-hpijs.ppd.gz share/ppd/HP/hp-deskjet_1280-hpijs.ppd.gz +share/ppd/HP/hp-deskjet_1510_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_1600c-hpijs.ppd.gz share/ppd/HP/hp-deskjet_1600cm-hpijs.ppd.gz share/ppd/HP/hp-deskjet_1600cn-hpijs.ppd.gz @@ -822,6 +830,8 @@ share/ppd/HP/hp-deskjet_2020_series-hpij share/ppd/HP/hp-deskjet_2050_j510_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_2510_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_2520_series-hpijs.ppd.gz +share/ppd/HP/hp-deskjet_2540_series-hpijs.ppd.gz +share/ppd/HP/hp-deskjet_2640_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_3000_j310_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_3050_j610_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_3050a_j611_series-hpijs.ppd.gz @@ -834,6 +844,7 @@ share/ppd/HP/hp-deskjet_3450-hpijs.ppd.g share/ppd/HP/hp-deskjet_3500-hpijs.ppd.gz share/ppd/HP/hp-deskjet_3510_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_3520_series-hpijs.ppd.gz +share/ppd/HP/hp-deskjet_3540_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_3550-hpijs.ppd.gz share/ppd/HP/hp-deskjet_3600-hpijs.ppd.gz share/ppd/HP/hp-deskjet_3650-hpijs.ppd.gz @@ -851,6 +862,7 @@ share/ppd/HP/hp-deskjet_3920-hpijs.ppd.g share/ppd/HP/hp-deskjet_3940-hpijs.ppd.gz share/ppd/HP/hp-deskjet_400-hpijs.ppd.gz share/ppd/HP/hp-deskjet_400l-hpijs.ppd.gz +share/ppd/HP/hp-deskjet_4510_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_460-hpijs.ppd.gz share/ppd/HP/hp-deskjet_4610_series-hpijs.ppd.gz share/ppd/HP/hp-deskjet_4620_series-hpijs.ppd.gz @@ -982,6 +994,7 @@ share/ppd/HP/hp-envy_100_d410_series-hpi share/ppd/HP/hp-envy_110_series-hpijs.ppd.gz share/ppd/HP/hp-envy_120_series-hpijs.ppd.gz share/ppd/HP/hp-envy_4500_series-hpijs.ppd.gz +share/ppd/HP/hp-envy_5530_series-hpijs.ppd.gz share/ppd/HP/hp-laserjet_1000-hpijs.ppd.gz share/ppd/HP/hp-laserjet_1005_series-hpijs.ppd.gz share/ppd/HP/hp-laserjet_100_color_mfp_m175-ps.ppd.gz @@ -1184,6 +1197,7 @@ share/ppd/HP/hp-laserjet_cp1520_series-p share/ppd/HP/hp-laserjet_cp_1025-hpijs.ppd.gz share/ppd/HP/hp-laserjet_cp_1025nw-hpijs.ppd.gz share/ppd/HP/hp-laserjet_flow_mfp_m525-ps.ppd.gz +share/ppd/HP/hp-laserjet_flow_mfp_m830-ps.ppd.gz share/ppd/HP/hp-laserjet_m1005-hpijs.ppd.gz share/ppd/HP/hp-laserjet_m1120_mfp-hpijs.ppd.gz share/ppd/HP/hp-laserjet_m1120n_mfp-hpijs.ppd.gz @@ -1212,6 +1226,7 @@ share/ppd/HP/hp-laserjet_m5025_mfp-ps.pp share/ppd/HP/hp-laserjet_m5035_mfp-hpijs-pcl3.ppd.gz share/ppd/HP/hp-laserjet_m5035_mfp-ps.ppd.gz share/ppd/HP/hp-laserjet_m5039_mfp-hpijs-pcl3.ppd.gz +share/ppd/HP/hp-laserjet_m806-ps.ppd.gz share/ppd/HP/hp-laserjet_m9040_mfp-hpijs-pcl3.ppd.gz share/ppd/HP/hp-laserjet_m9040_mfp-ps.ppd.gz share/ppd/HP/hp-laserjet_m9050_mfp-hpijs-pcl3.ppd.gz @@ -1267,6 +1282,9 @@ share/ppd/HP/hp-laserjet_p4515n-hpijs.pp share/ppd/HP/hp-laserjet_p4515tn-hpijs.ppd.gz share/ppd/HP/hp-laserjet_p4515x-hpijs.ppd.gz share/ppd/HP/hp-laserjet_p4515xm-hpijs.ppd.gz +share/ppd/HP/hp-laserjet_pro_mfp_m127fn-hpijs.ppd.gz +share/ppd/HP/hp-laserjet_pro_mfp_m127fw-hpijs.ppd.gz +share/ppd/HP/hp-laserjet_pro_mfp_m435-ps.ppd.gz share/ppd/HP/hp-laserjet_professional_m1132_mfp-hpijs.ppd.gz share/ppd/HP/hp-laserjet_professional_m1136_mfp-hpijs.ppd.gz share/ppd/HP/hp-laserjet_professional_m1137_mfp-hpijs.ppd.gz @@ -1310,6 +1328,7 @@ share/ppd/HP/hp-mopier_320-ps.ppd.gz share/ppd/HP/hp-officejet-hpijs.ppd.gz share/ppd/HP/hp-officejet_100_mobile_l411-hpijs.ppd.gz share/ppd/HP/hp-officejet_150_mobile_l511-hpijs.ppd.gz +share/ppd/HP/hp-officejet_2620_series-hpijs.ppd.gz share/ppd/HP/hp-officejet_4000_k210-hpijs.ppd.gz share/ppd/HP/hp-officejet_4100_series-hpijs.ppd.gz share/ppd/HP/hp-officejet_4105-hpijs.ppd.gz @@ -1324,6 +1343,7 @@ share/ppd/HP/hp-officejet_4500_g510n-z-h share/ppd/HP/hp-officejet_4500_k710-hpijs.ppd.gz share/ppd/HP/hp-officejet_4610_series-hpijs.ppd.gz share/ppd/HP/hp-officejet_4620_series-hpijs.ppd.gz +share/ppd/HP/hp-officejet_4630_series-hpijs.ppd.gz share/ppd/HP/hp-officejet_5100_series-hpijs.ppd.gz share/ppd/HP/hp-officejet_5105-hpijs.ppd.gz share/ppd/HP/hp-officejet_5110-hpijs.ppd.gz @@ -1351,6 +1371,7 @@ share/ppd/HP/hp-officejet_7200_series-hp share/ppd/HP/hp-officejet_7300_series-hpijs.ppd.gz share/ppd/HP/hp-officejet_7400_series-hpijs.ppd.gz share/ppd/HP/hp-officejet_7500_e910-hpijs.ppd.gz +share/ppd/HP/hp-officejet_7610_series-hpijs.ppd.gz share/ppd/HP/hp-officejet_9100_series-hpijs-pcl3.ppd.gz share/ppd/HP/hp-officejet_d_series-hpijs.ppd.gz share/ppd/HP/hp-officejet_g55-hpijs.ppd.gz @@ -1569,11 +1590,11 @@ share/ppd/HP/hp-psc_950xi-hpijs.ppd.gz @dirrm share/ppd %%QT%%@dirrm %%DATADIR%%/ui4/plugins %%QT%%@dirrm %%DATADIR%%/ui4 -%%SCAN%%@dirrm %%DATADIR%%/scan -@dirrm %%DATADIR%%/prnt +%%SCAN%%@dirrmtry %%DATADIR%%/scan +@dirrmtry %%DATADIR%%/prnt @dirrm %%DATADIR%%/pcard @dirrm %%DATADIR%%/installer -%%FAX%%@dirrm %%DATADIR%%/fax +%%FAX%%@dirrmtry %%DATADIR%%/fax @dirrm %%DATADIR%%/data/ps @dirrm %%DATADIR%%/data/pcl @dirrm %%DATADIR%%/data/models @@ -1588,10 +1609,10 @@ share/ppd/HP/hp-psc_950xi-hpijs.ppd.gz %%QT%%@dirrm %%DATADIR%%/data/images/16x16 %%QT%%@dirrm %%DATADIR%%/data/images/128x128 %%QT%%@dirrm %%DATADIR%%/data/images -@dirrm %%DATADIR%%/data +@dirrmtry %%DATADIR%%/data @dirrm %%DATADIR%%/copier @dirrm %%DATADIR%%/base -@dirrm %%DATADIR%% +@dirrmtry %%DATADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%%/styles %%PORTDOCS%%@dirrm %%DOCSDIR%%/images %%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:42:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A4AC8B6; Thu, 23 Jan 2014 08:42:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6663D1307; Thu, 23 Jan 2014 08:42:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8gGOw038519; Thu, 23 Jan 2014 08:42:16 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8gGQU038518; Thu, 23 Jan 2014 08:42:16 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401230842.s0N8gGQU038518@svn.freebsd.org> From: Max Brazhnikov Date: Thu, 23 Jan 2014 08:42:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340809 - head/science/pyteomics.biolccc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 08:42:16 -0000 Author: makc Date: Thu Jan 23 08:42:15 2014 New Revision: 340809 URL: http://svnweb.freebsd.org/changeset/ports/340809 QAT: https://qat.redports.org/buildarchive/r340809/ Log: Use PYDISTUTILS_AUTOPLIST Deleted: head/science/pyteomics.biolccc/pkg-plist Modified: head/science/pyteomics.biolccc/Makefile Modified: head/science/pyteomics.biolccc/Makefile ============================================================================== --- head/science/pyteomics.biolccc/Makefile Thu Jan 23 08:39:00 2014 (r340808) +++ head/science/pyteomics.biolccc/Makefile Thu Jan 23 08:42:15 2014 (r340809) @@ -11,5 +11,6 @@ COMMENT= Python bindings for BioLCCC USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:43:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 39AEF9B7; Thu, 23 Jan 2014 08:43:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0C3021310; Thu, 23 Jan 2014 08:43:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8h8OZ038680; Thu, 23 Jan 2014 08:43:08 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8h8hx038679; Thu, 23 Jan 2014 08:43:08 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401230843.s0N8h8hx038679@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 23 Jan 2014 08:43:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340810 - 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.17 Precedence: list List-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, 23 Jan 2014 08:43:09 -0000 Author: ehaupt Date: Thu Jan 23 08:43:08 2014 New Revision: 340810 URL: http://svnweb.freebsd.org/changeset/ports/340810 QAT: https://qat.redports.org/buildarchive/r340810/ Log: Reintroduce the GNOME knob (disabled by default) to avoid pulling in undesired dependencies. Modified: head/x11/xterm/Makefile Modified: head/x11/xterm/Makefile ============================================================================== --- head/x11/xterm/Makefile Thu Jan 23 08:42:15 2014 (r340809) +++ head/x11/xterm/Makefile Thu Jan 23 08:43:08 2014 (r340810) @@ -3,6 +3,7 @@ PORTNAME= xterm PORTVERSION= 301 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= ftp://invisible-island.net/xterm/:src1 \ CRITICAL:src1 CRITICAL:src2 @@ -15,7 +16,6 @@ COMMENT= Terminal emulator for the X Win CONFLICTS= x11iraf-[0-9]* -USES= desktop-file-utils USE_XORG= xaw xft GNU_CONFIGURE= yes @@ -26,7 +26,7 @@ CPPFLAGS+= -I${LOCALBASE}/include ICONVERSION= 1 -OPTIONS_DEFINE= WCHAR LUIT DECTERM PCRE DABBREV 256COLOR SIXEL +OPTIONS_DEFINE= WCHAR LUIT DECTERM PCRE DABBREV 256COLOR SIXEL GNOME DABBREV_DESC= Enable support for dabbrev-expand DECTERM_DESC= Enable DECterm Locator support @@ -38,14 +38,15 @@ WCHAR_DESC= Enable wide-character suppor OPTIONS_DEFAULT=WCHAR LUIT 256COLOR 256COLOR_CONFIGURE_ENABLE= 256-color -LUIT_BUILD_DEPENDS= luit:${PORTSDIR}/x11/luit -LUIT_CONFIGURE_ENABLE= luit -WCHAR_CONFIGURE_ENABLE= wide-chars +LUIT_BUILD_DEPENDS= luit:${PORTSDIR}/x11/luit +LUIT_CONFIGURE_ENABLE= luit +WCHAR_CONFIGURE_ENABLE= wide-chars DECTERM_CONFIGURE_ENABLE= dec-locator -PCRE_CONFIGURE_WITH= pcre -PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre +PCRE_CONFIGURE_WITH= pcre +PCRE_LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre DABBREV_CONFIGURE_ENABLE= dabbrev -SIXEL_CONFIGURE_ENABLE= sixel-graphics +SIXEL_CONFIGURE_ENABLE= sixel-graphics +GNOME_USES= desktop-file-utils .include @@ -54,14 +55,16 @@ LIB_DEPENDS+= utempter:${PORTSDIR}/sysut .endif post-extract: - @${CP} ${WRKDIR}/bsd-xterm-icons-1/*.png ${WRKDIR}/bsd-xterm-icons-1/*.xpm \ - ${WRKSRC}/icons/ + @${CP} ${WRKDIR}/bsd-xterm-icons-1/*.png \ + ${WRKDIR}/bsd-xterm-icons-1/*.xpm \ + ${WRKSRC}/icons/ post-install: .for f in koi8rxterm resize uxterm xterm @${CHMOD} ${BINMODE} ${STAGEDIR}${PREFIX}/bin/${f} .endfor - @${INSTALL_DATA} ${WRKSRC}/xterm.desktop ${STAGEDIR}${PREFIX}/share/applications/ + @${INSTALL_DATA} ${WRKSRC}/xterm.desktop \ + ${STAGEDIR}${PREFIX}/share/applications/ .if ${PORT_OPTIONS:MWCHAR} @${CAT} ${PKGMESSAGE} From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:44:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 216E1AC9; Thu, 23 Jan 2014 08:44:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0DC2A1321; Thu, 23 Jan 2014 08:44:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8iIvt038920; Thu, 23 Jan 2014 08:44:18 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8iIks038916; Thu, 23 Jan 2014 08:44:18 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401230844.s0N8iIks038916@svn.freebsd.org> From: Max Brazhnikov Date: Thu, 23 Jan 2014 08:44:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340811 - head/math/qtiplot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 08:44:19 -0000 Author: makc Date: Thu Jan 23 08:44:18 2014 New Revision: 340811 URL: http://svnweb.freebsd.org/changeset/ports/340811 QAT: https://qat.redports.org/buildarchive/r340811/ Log: Install icon to share/pixmaps Modified: head/math/qtiplot/Makefile head/math/qtiplot/pkg-plist Modified: head/math/qtiplot/Makefile ============================================================================== --- head/math/qtiplot/Makefile Thu Jan 23 08:43:08 2014 (r340810) +++ head/math/qtiplot/Makefile Thu Jan 23 08:44:18 2014 (r340811) @@ -26,7 +26,7 @@ QMAKE_ARGS+= LOCALBASE=${LOCALBASE} PYTH DOS2UNIX_GLOB= *.pro DESKTOP_ENTRIES="QtiPlot" "Data analysis and plotting" \ - "${DATADIR}/qtiplot.png" \ + "${PREFIX}/share/pixmaps/qtiplot.png" \ "qtiplot" "" true OPTIONS_DEFINE= DOCS PYTHON NLS DEBUG @@ -101,7 +101,7 @@ pre-configure: post-install: ${STRIP_CMD} ${STRIP_FILES:S,^,${STAGEDIR}${PREFIX}/,} - ${INSTALL_DATA} ${WRKSRC}/qtiplot_logo.png ${STAGEDIR}${DATADIR}/qtiplot.png + ${INSTALL_DATA} ${WRKSRC}/qtiplot_logo.png ${STAGEDIR}${PREFIX}share/pixmaps/qtiplot.png .if ${PORT_OPTIONS:MPYTHON} .for s in qtiplotrc.py qtiUtil.py cd ${WRKSRC}/qtiplot && ${PYTHON_CMD} -c "import py_compile; py_compile.compile('${s}')" Modified: head/math/qtiplot/pkg-plist ============================================================================== --- head/math/qtiplot/pkg-plist Thu Jan 23 08:43:08 2014 (r340810) +++ head/math/qtiplot/pkg-plist Thu Jan 23 08:44:18 2014 (r340811) @@ -1,5 +1,6 @@ bin/qtiplot man/man1/qtiplot.1.gz +share/pixmaps/qtiplot.png %%DATADIR%%/fitPlugins/libexp_saturation.so %%DATADIR%%/fitPlugins/libexp_saturation.so.1 %%DATADIR%%/fitPlugins/libexp_saturation.so.1.0 @@ -23,7 +24,6 @@ man/man1/qtiplot.1.gz %%PYTHON%%%%DATADIR%%/qtiUtil.py %%PYTHON%%%%DATADIR%%/qtiUtil.pyc %%PYTHON%%%%DATADIR%%/qti_wordlist.txt -%%DATADIR%%/qtiplot.png %%PYTHON%%%%DATADIR%%/qtiplotrc.py %%PYTHON%%%%DATADIR%%/qtiplotrc.pyc %%NLS%%%%DATADIR%%/translations/qtiplot_cn.qm From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:47:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0510CA4; Thu, 23 Jan 2014 08:47:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9C137134C; Thu, 23 Jan 2014 08:47:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8lMAk039364; Thu, 23 Jan 2014 08:47:22 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8lMnk039363; Thu, 23 Jan 2014 08:47:22 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401230847.s0N8lMnk039363@svn.freebsd.org> From: Max Brazhnikov Date: Thu, 23 Jan 2014 08:47:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340812 - head/devel/geany-plugins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 08:47:22 -0000 Author: makc Date: Thu Jan 23 08:47:22 2014 New Revision: 340812 URL: http://svnweb.freebsd.org/changeset/ports/340812 QAT: https://qat.redports.org/buildarchive/r340812/ Log: Use options helpers Modified: head/devel/geany-plugins/Makefile Modified: head/devel/geany-plugins/Makefile ============================================================================== --- head/devel/geany-plugins/Makefile Thu Jan 23 08:44:18 2014 (r340811) +++ head/devel/geany-plugins/Makefile Thu Jan 23 08:47:22 2014 (r340812) @@ -25,17 +25,9 @@ NO_OPTIONS_SORT= yes .for plugin in ${GEANY_PLUGINS_ALL} OPTIONS_DEFINE+= ${plugin:U} ${plugin:U}_DESC= ${${plugin}_DESC} -${plugin:U}_DEP= geany-plugin-${plugin}>=0:${PORTSDIR}/devel/geany-plugin-${plugin} +${plugin:U}_RUN_DEPENDS= geany-plugin-${plugin}>=0:${PORTSDIR}/devel/geany-plugin-${plugin} .endfor NLS_DEP= geany-plugins-l10n>=0:${PORTSDIR}/devel/geany-plugins-l10n -.include - -.for opt in ${OPTIONS_DEFINE} -. if ${PORT_OPTIONS:M${opt}} -RUN_DEPENDS+= ${${opt}_DEP} -. endif -.endfor - .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:54:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51320EAD; Thu, 23 Jan 2014 08:54:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 314D413D3; Thu, 23 Jan 2014 08:54:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8s1ZK042695; Thu, 23 Jan 2014 08:54:01 GMT (envelope-from makc@svn.freebsd.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8s0mj042693; Thu, 23 Jan 2014 08:54:00 GMT (envelope-from makc@svn.freebsd.org) Message-Id: <201401230854.s0N8s0mj042693@svn.freebsd.org> From: Max Brazhnikov Date: Thu, 23 Jan 2014 08:54:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340813 - head/devel/geany-plugins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 08:54:01 -0000 Author: makc Date: Thu Jan 23 08:54:00 2014 New Revision: 340813 URL: http://svnweb.freebsd.org/changeset/ports/340813 QAT: https://qat.redports.org/buildarchive/r340813/ Log: Convert NLS option as well Modified: head/devel/geany-plugins/Makefile Modified: head/devel/geany-plugins/Makefile ============================================================================== --- head/devel/geany-plugins/Makefile Thu Jan 23 08:47:22 2014 (r340812) +++ head/devel/geany-plugins/Makefile Thu Jan 23 08:54:00 2014 (r340813) @@ -28,6 +28,6 @@ ${plugin:U}_DESC= ${${plugin}_DESC} ${plugin:U}_RUN_DEPENDS= geany-plugin-${plugin}>=0:${PORTSDIR}/devel/geany-plugin-${plugin} .endfor -NLS_DEP= geany-plugins-l10n>=0:${PORTSDIR}/devel/geany-plugins-l10n +NLS_RUN_DEPENDS= geany-plugins-l10n>=0:${PORTSDIR}/devel/geany-plugins-l10n .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:58:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26DC46E; Thu, 23 Jan 2014 08:58:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 12784143A; Thu, 23 Jan 2014 08:58:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8wNnC043345; Thu, 23 Jan 2014 08:58:23 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8wNpt043343; Thu, 23 Jan 2014 08:58:23 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401230858.s0N8wNpt043343@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 08:58:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340814 - 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.17 Precedence: list List-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, 23 Jan 2014 08:58:24 -0000 Author: bapt Date: Thu Jan 23 08:58:23 2014 New Revision: 340814 URL: http://svnweb.freebsd.org/changeset/ports/340814 QAT: https://qat.redports.org/buildarchive/r340814/ Log: Update to checkin 4fad732f19 Changes: * Try to automatically load sem(4) if possible * Fox PRESERVE_TIMESTAMP option 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 Jan 23 08:54:00 2014 (r340813) +++ head/ports-mgmt/poudriere-devel/Makefile Thu Jan 23 08:58:23 2014 (r340814) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= poudriere -PORTVERSION= 3.0.99.20140122 +PORTVERSION= 3.0.99.20140123 CATEGORIES= ports-mgmt MASTER_SITES= http://fossil.etoilebsd.net/poudriere/tarball/ \ LOCAL/bdrewery/${PORTNAME}/ @@ -13,7 +13,7 @@ COMMENT= Port build and test system LICENSE= BSD2CLAUSE -FSL_CHKIN= 32dddce6d7 +FSL_CHKIN= 4fad732f19 OPTIONS_DEFINE= ZSH Modified: head/ports-mgmt/poudriere-devel/distinfo ============================================================================== --- head/ports-mgmt/poudriere-devel/distinfo Thu Jan 23 08:54:00 2014 (r340813) +++ head/ports-mgmt/poudriere-devel/distinfo Thu Jan 23 08:58:23 2014 (r340814) @@ -1,2 +1,2 @@ -SHA256 (poudriere-3.0.99.20140122.tar.gz?uuid=32dddce6d7) = 2baee0a0651ffbcec95ef3b7ce68310aa84538222de95352481689dc5ce266b1 -SIZE (poudriere-3.0.99.20140122.tar.gz?uuid=32dddce6d7) = 252616 +SHA256 (poudriere-3.0.99.20140123.tar.gz?uuid=4fad732f19) = afac29d2386dc863b845142a42599ddf3bdb62bb58f23e1eaa5b159092e0c483 +SIZE (poudriere-3.0.99.20140123.tar.gz?uuid=4fad732f19) = 252622 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 08:59:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87C191EA; Thu, 23 Jan 2014 08:59:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 680CF144E; Thu, 23 Jan 2014 08:59:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N8xlVL043612; Thu, 23 Jan 2014 08:59:47 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N8xkB7043606; Thu, 23 Jan 2014 08:59:46 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401230859.s0N8xkB7043606@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 23 Jan 2014 08:59:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340815 - in head/editors/codelite: . 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.17 Precedence: list List-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, 23 Jan 2014 08:59:47 -0000 Author: gahr Date: Thu Jan 23 08:59:45 2014 New Revision: 340815 URL: http://svnweb.freebsd.org/changeset/ports/340815 QAT: https://qat.redports.org/buildarchive/r340815/ Log: - Update to 5.4 Release notes: http://codelite.org/LiteEditor/ReleaseNotesCodeLite54 Added: head/editors/codelite/files/patch-codelite_terminal_CMakeLists.txt (contents, props changed) head/editors/codelite/files/patch-codelite_terminal_MainFrame.cpp (contents, props changed) Deleted: head/editors/codelite/files/patch-CodeLite_cpptoken.h Modified: head/editors/codelite/Makefile head/editors/codelite/distinfo head/editors/codelite/files/patch-CMakeLists.txt head/editors/codelite/pkg-plist Modified: head/editors/codelite/Makefile ============================================================================== --- head/editors/codelite/Makefile Thu Jan 23 08:58:23 2014 (r340814) +++ head/editors/codelite/Makefile Thu Jan 23 08:59:45 2014 (r340815) @@ -2,10 +2,8 @@ # $FreeBSD$ PORTNAME= codelite -DISTVERSION= 5.2 +DISTVERSION= 5.4 CATEGORIES= editors devel -MASTER_SITES= SF/${PORTNAME}/Releases/${PORTNAME}-${PORTVERSION}/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-gtk.src MAINTAINER= gahr@FreeBSD.org COMMENT= An Open Source IDE for C/C++ @@ -15,22 +13,30 @@ LICENSE= GPLv2 LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl RUN_DEPENDS= xterm:${PORTSDIR}/x11/xterm -OPTIONS_DEFINE= CSCOPE CLANG - +OPTIONS_DEFINE= CSCOPE CLANG NLS CSCOPE_DESC= CScope integration CLANG_DESC= Clang code-completion +OPTIONS_SUB= yes + +USE_GITHUB= yes +GH_ACCOUNT= eranif +GH_PROJECT= ${PORTNAME} +GH_COMMIT= 41e98e5 +GH_TAGNAME= 5.4 -USE_WX= 2.9 +USE_WX= 3.0 WX_UNICODE= yes -USES= gettext cmake:outsource dos2unix +USES= gettext cmake:outsource dos2unix shebangfix +DOS2UNIX_GLOB= *.cpp *.txt USE_LDCONFIG= ${PREFIX}/lib/codelite +SHEBANG_FILES= Runtime/clg++ Runtime/clgcc + +CXXFLAGS+= -I${LOCALBASE}/include CMAKE_ARGS+= -DIS_FREEBSD=1 \ -DPREFIX=${PREFIX} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -SVN_REVISION= 6213 - .include .if ${PORT_OPTIONS:MCSCOPE} @@ -40,10 +46,8 @@ RUN_DEPENDS+= cscope:${PORTSDIR}/devel/c .if ${PORT_OPTIONS:MCLANG} BUILD_DEPENDS+= ${LOCALBASE}/llvm-devel/lib/libclang.so:${PORTSDIR}/lang/clang-devel RUN_DEPENDS+= ${LOCALBASE}/llvm-devel/lib/libclang.so:${PORTSDIR}/lang/clang-devel -PLIST_SUB+= CLANG="" CMAKE_ARGS+= -DENABLE_CLANG=1 .else -PLIST_SUB+= CLANG="@comment " CMAKE_ARGS+= -DENABLE_CLANG=0 .endif @@ -52,9 +56,8 @@ post-patch: ${REINPLACE_CMD} -e \ 's|wx-config|${WX_CONFIG}|; \ s|%%LOCALBASE%%|${LOCALBASE}|g; \ + s|%%PREFIX%%|${PREFIX}|g; \ /IS_FREEBSD/s|0|1|' \ ${WRKSRC}/CMakeLists.txt - ${REINPLACE_CMD} -e 's|$${cur_rev}|${SVN_REVISION}|' \ - ${WRKSRC}/le_makerevision.sh .include Modified: head/editors/codelite/distinfo ============================================================================== --- head/editors/codelite/distinfo Thu Jan 23 08:58:23 2014 (r340814) +++ head/editors/codelite/distinfo Thu Jan 23 08:59:45 2014 (r340815) @@ -1,2 +1,2 @@ -SHA256 (codelite-5.2-gtk.src.tar.gz) = 8fdb4bb1bcb984aacead7b7d3c7087f2008303297ea90a6299e4deff196cf084 -SIZE (codelite-5.2-gtk.src.tar.gz) = 22710705 +SHA256 (codelite-5.4.tar.gz) = 2bdb6cfd1239a7fcaf476a215c9f7d775e8814f0930828b66e9acd4799cc5002 +SIZE (codelite-5.4.tar.gz) = 37950862 Modified: head/editors/codelite/files/patch-CMakeLists.txt ============================================================================== --- head/editors/codelite/files/patch-CMakeLists.txt Thu Jan 23 08:58:23 2014 (r340814) +++ head/editors/codelite/files/patch-CMakeLists.txt Thu Jan 23 08:59:45 2014 (r340815) @@ -1,6 +1,28 @@ ---- CMakeLists.txt.orig 2013-04-02 15:50:03.000000000 +0200 -+++ CMakeLists.txt 2013-04-02 15:51:59.000000000 +0200 -@@ -212,9 +212,9 @@ +--- CMakeLists.txt.orig 2014-01-22 15:20:56.000000000 +0100 ++++ CMakeLists.txt 2014-01-22 17:21:28.000000000 +0100 +@@ -34,7 +34,7 @@ + ############################################# + project( "CodeLite" ) + +-set( CL_PREFIX "/usr" ) ++set( CL_PREFIX "%%PREFIX%%" ) + if (CMAKE_CURRENT_LIST_DIR) # since cmake 2.8.3 + set( CL_SRC_ROOT ${CMAKE_CURRENT_LIST_DIR}) + else() +@@ -42,10 +42,10 @@ + endif() + + set( USE_CLANG 1 ) +-set( IS_FREEBSD 0 ) ++set( IS_FREEBSD 1 ) + set( BUILD_WXC 0 ) + set( CL_COPY_WX_LIBS 0 ) +-set( WITH_SFTP 1 ) ++set( WITH_SFTP 0 ) + + if ( UNIX ) + execute_process(COMMAND pwd OUTPUT_VARIABLE BUILD_DIRECTORY OUTPUT_STRIP_TRAILING_WHITESPACE) +@@ -329,9 +329,9 @@ set( CLANG_BINARY "${CL_SRC_ROOT}/sdk/clang/lib/libclang.dylib") elseif (UNIX) Added: head/editors/codelite/files/patch-codelite_terminal_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/codelite/files/patch-codelite_terminal_CMakeLists.txt Thu Jan 23 08:59:45 2014 (r340815) @@ -0,0 +1,11 @@ +--- codelite_terminal/CMakeLists.txt.orig 2014-01-22 16:36:20.000000000 +0100 ++++ codelite_terminal/CMakeLists.txt 2014-01-22 16:36:35.000000000 +0100 +@@ -28,7 +28,7 @@ + add_executable(codelite-terminal ${SRCS}) + set ( UTIL_LIB "" ) + if ( UNIX ) +- set( UTIL_LIB "-lutil") ++ set( UTIL_LIB "-lutil -lkvm") + endif ( UNIX ) + + target_link_libraries(codelite-terminal ${LINKER_OPTIONS} ${wxWidgets_LIBRARIES} ${UTIL_LIB} ) Added: head/editors/codelite/files/patch-codelite_terminal_MainFrame.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/codelite/files/patch-codelite_terminal_MainFrame.cpp Thu Jan 23 08:59:45 2014 (r340815) @@ -0,0 +1,16 @@ +--- codelite_terminal/MainFrame.cpp.orig 2014-01-22 16:15:29.000000000 +0100 ++++ codelite_terminal/MainFrame.cpp 2014-01-22 16:17:57.000000000 +0100 +@@ -8,7 +8,12 @@ + #include + + #ifndef __WXMSW__ +-#if defined(__WXGTK__) ++#if defined(__FreeBSD__) ++# include ++# include ++# include ++# include ++#elif defined(__WXGTK__) + # include + #else + # include Modified: head/editors/codelite/pkg-plist ============================================================================== --- head/editors/codelite/pkg-plist Thu Jan 23 08:58:23 2014 (r340814) +++ head/editors/codelite/pkg-plist Thu Jan 23 08:59:45 2014 (r340815) @@ -1,4 +1,6 @@ bin/codelite +bin/codelite-make +bin/codelite-terminal %%CLANG%%bin/codelite-clang bin/clg++ bin/clgcc @@ -9,6 +11,7 @@ bin/codelite_indexer bin/codelite_kill_children bin/codelite_xterm bin/codelitegcc +lib/codelite/CMakePlugin.so lib/codelite/CallGraph.so lib/codelite/CodeFormatter.so lib/codelite/ContinuousBuild.so @@ -19,6 +22,7 @@ lib/codelite/Outline.so lib/codelite/QMakePlugin.so lib/codelite/SnipWiz.so lib/codelite/Subversion.so +lib/codelite/Tweaks.so lib/codelite/UnitTestsPP.so lib/codelite/Wizards.so lib/codelite/ZoomNavigator.so @@ -125,10 +129,10 @@ lib/codelite/wxFormBuilder.so %%DATADIR%%/templates/gizmos/wxmain.project.wizard %%DATADIR%%/templates/gizmos/wxproject-fb.project.wizard %%DATADIR%%/templates/gizmos/wxproject.project.wizard -%%DATADIR%%/templates/projects/ConsoleClang/ConsoleClang.project -%%DATADIR%%/templates/projects/ConsoleClang/main.c %%DATADIR%%/templates/projects/ConsoleClang++/ConsoleClang++.project %%DATADIR%%/templates/projects/ConsoleClang++/main.cpp +%%DATADIR%%/templates/projects/ConsoleClang/ConsoleClang.project +%%DATADIR%%/templates/projects/ConsoleClang/main.c %%DATADIR%%/templates/projects/UnitTest++/UnitTest++.project %%DATADIR%%/templates/projects/UnitTest++/icon.png %%DATADIR%%/templates/projects/UnitTest++/main.cpp @@ -157,8 +161,10 @@ lib/codelite/wxFormBuilder.so %%DATADIR%%/templates/projects/custom-makefile/custom-makefile.project %%DATADIR%%/templates/projects/custom-makefile/icon.png %%DATADIR%%/templates/projects/dynamic-library-wx-enabled/dynamic-library-wx-enabled.project +%%DATADIR%%/templates/projects/dynamic-library-wx-enabled/dynamic-library-wx-enabled.project.windows %%DATADIR%%/templates/projects/dynamic-library-wx-enabled/icon.png %%DATADIR%%/templates/projects/dynamic-library/dynamic-library.project +%%DATADIR%%/templates/projects/dynamic-library/dynamic-library.project.windows %%DATADIR%%/templates/projects/dynamic-library/icon.png %%DATADIR%%/templates/projects/executable-cobra/executable-cobra.project %%DATADIR%%/templates/projects/executable-cobra/main.cobra @@ -181,6 +187,7 @@ lib/codelite/wxFormBuilder.so %%DATADIR%%/templates/projects/executable-wx-dialog/icon.png %%DATADIR%%/templates/projects/executable-wx-dialog/main.cpp %%DATADIR%%/templates/projects/executable-wx-dialog/main.h +%%DATADIR%%/templates/projects/executable-wx-dialog/win_resources.rc %%DATADIR%%/templates/projects/executable-wx-enabled/executable-wx-enabled.project %%DATADIR%%/templates/projects/executable-wx-enabled/icon.png %%DATADIR%%/templates/projects/executable-wx-enabled/main.cpp @@ -191,6 +198,7 @@ lib/codelite/wxFormBuilder.so %%DATADIR%%/templates/projects/executable-wx-frame/icon.png %%DATADIR%%/templates/projects/executable-wx-frame/main.cpp %%DATADIR%%/templates/projects/executable-wx-frame/main.h +%%DATADIR%%/templates/projects/executable-wx-frame/win_resources.rc %%DATADIR%%/templates/projects/executable-wxcrafter-dialog/MainDialog.cpp %%DATADIR%%/templates/projects/executable-wxcrafter-dialog/MainDialog.h %%DATADIR%%/templates/projects/executable-wxcrafter-dialog/icon.png @@ -227,14 +235,20 @@ lib/codelite/wxFormBuilder.so %%DATADIR%%/templates/projects/vc-executable/vc-executable.project %%DATADIR%%/templates/projects/vc-static-lib/icon.png %%DATADIR%%/templates/projects/vc-static-lib/vc-static-lib.project +%%DATADIR%%/templates/projects/wxWidgets_ConsoleApp/icon.png +%%DATADIR%%/templates/projects/wxWidgets_ConsoleApp/main_app.cpp +%%DATADIR%%/templates/projects/wxWidgets_ConsoleApp/main_app.h +%%DATADIR%%/templates/projects/wxWidgets_ConsoleApp/wxWidgets_ConsoleApp.project %%DATADIR%%/templates/qmake/qmake.project %%DATADIR%%/unittest++1.3.tar.gz -share/locale/cs/LC_MESSAGES/codelite.mo +%%NLS%%share/locale/cs/LC_MESSAGES/codelite.mo +%%NLS%%share/locale/cz/LC_MESSAGES/codelite.mo share/applications/codelite.desktop @dirrm lib/codelite/resources @dirrm lib/codelite/debuggers @dirrm lib/codelite @dirrm %%DATADIR%%/templates/qmake +@dirrm %%DATADIR%%/templates/projects/wxWidgets_ConsoleApp @dirrm %%DATADIR%%/templates/projects/vc-static-lib @dirrm %%DATADIR%%/templates/projects/vc-executable @dirrm %%DATADIR%%/templates/projects/vc-dynamic-library @@ -279,3 +293,5 @@ share/applications/codelite.desktop @dirrm %%DATADIR%%/gdb_printers @dirrm %%DATADIR%%/config @dirrm %%DATADIR%% +@dirrmtry share/locale/cz/LC_MESSAGES +@dirrmtry share/locale/cz From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 09:05:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9718D436; Thu, 23 Jan 2014 09:05:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 68951150E; Thu, 23 Jan 2014 09:05:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N95ISk047250; Thu, 23 Jan 2014 09:05:18 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N95I00047248; Thu, 23 Jan 2014 09:05:18 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401230905.s0N95I00047248@svn.freebsd.org> From: Rusmir Dusko Date: Thu, 23 Jan 2014 09:05:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340816 - head/multimedia/smplayer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 09:05:18 -0000 Author: nemysis Date: Thu Jan 23 09:05:17 2014 New Revision: 340816 URL: http://svnweb.freebsd.org/changeset/ports/340816 QAT: https://qat.redports.org/buildarchive/r340816/ Log: - Take maintainership - Add licenses (GPLv2) - Add USES desktop-file-utils, dos2unix and DOS2UNIX_REGEX - Remove not needed DOCS - Fix typo (tabulator) - Change pkg-descr Approved by: maintainer (private email) Modified: head/multimedia/smplayer/Makefile head/multimedia/smplayer/pkg-descr Modified: head/multimedia/smplayer/Makefile ============================================================================== --- head/multimedia/smplayer/Makefile Thu Jan 23 08:59:45 2014 (r340815) +++ head/multimedia/smplayer/Makefile Thu Jan 23 09:05:17 2014 (r340816) @@ -7,9 +7,11 @@ PORTREVISION= 1 CATEGORIES= multimedia audio kde MASTER_SITES= SF/${PORTNAME}/SMPlayer/${PORTVERSION} -MAINTAINER= dhn@FreeBSD.org +MAINTAINER= nemysis@FreeBSD.org COMMENT= Complete front-end based on Qt4 for mplayer +LICENSE= GPLv2 + RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer \ ${LOCALBASE}/share/smplayer/themes:${PORTSDIR}/multimedia/smplayer-skins \ ${LOCALBASE}/share/smplayer/themes:${PORTSDIR}/multimedia/smplayer-themes @@ -21,24 +23,23 @@ ALL_TARGET= src/smplayer CONFIGURE_WRKSRC= ${WRKSRC}/src MAKE_ARGS+= PREFIX=${PREFIX} DESTDIR=${STAGEDIR} -USES= gmake qmake USE_BZIP2= yes +USES= desktop-file-utils dos2unix gmake qmake +DOS2UNIX_REGEX= .*.[^p][^n][^g]$ INSTALLS_ICONS= yes -PORTDOCS= Changelog Copying.txt Install.txt Not_so_obvious_things.txt \ - Readme.txt Release_notes.txt +PORTDOCS= Changelog Not_so_obvious_things.txt Readme.txt \ + Release_notes.txt Watching_TV.txt OPTIONS_DEFINE= DOCS -SUB_FILES= pkg-message - -.include +SUB_FILES= pkg-message post-patch: - @${REINPLACE_CMD} -e 's|&& $$(QMAKE) $$(QMAKE_OPTS)||' \ - -e 's|lrelease|${LRELEASE}|g' \ - -e 's,/share/man,/man,g' \ - -e 's, make, ${MAKE_CMD},g' \ + @${REINPLACE_CMD} -e 's|&& $$(QMAKE) $$(QMAKE_OPTS)||; \ + s|lrelease|${LRELEASE}|; \ + s|/share/man|/man|g; \ + s| make| ${MAKE_CMD}|g' \ ${WRKSRC}/Makefile post-install: Modified: head/multimedia/smplayer/pkg-descr ============================================================================== --- head/multimedia/smplayer/pkg-descr Thu Jan 23 08:59:45 2014 (r340815) +++ head/multimedia/smplayer/pkg-descr Thu Jan 23 09:05:17 2014 (r340816) @@ -1,5 +1,5 @@ -smplayer intents to be a complete front-end for mplayer,from -basic features like playing videos, dvds, vcdsto more advancing -features like support for mplayer filters,edl lists, and more. +SMPlayer intends to be a complete front-end for MPlayer, from basic +features like playing videos, DVDs, and VCDs to more advanced features +like support for MPlayer filters and more. WWW: http://smplayer.sourceforge.net/ From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 09:05:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5FA5650F; Thu, 23 Jan 2014 09:05:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4ABD81510; Thu, 23 Jan 2014 09:05:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N95RHB047372; Thu, 23 Jan 2014 09:05:27 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N95QsA047367; Thu, 23 Jan 2014 09:05:26 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401230905.s0N95QsA047367@svn.freebsd.org> From: Rusmir Dusko Date: Thu, 23 Jan 2014 09:05:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340817 - head/multimedia/smplayer-themes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 09:05:27 -0000 Author: nemysis Date: Thu Jan 23 09:05:26 2014 New Revision: 340817 URL: http://svnweb.freebsd.org/changeset/ports/340817 QAT: https://qat.redports.org/buildarchive/r340817/ Log: - Update to 20120919 - Take maintainership - Change COMMENT to use SMPlayer - Add DOCS and add DOCS Option - Change pkg-descr Approved by: maintainer (private email) Modified: head/multimedia/smplayer-themes/Makefile head/multimedia/smplayer-themes/distinfo head/multimedia/smplayer-themes/pkg-descr head/multimedia/smplayer-themes/pkg-plist Modified: head/multimedia/smplayer-themes/Makefile ============================================================================== --- head/multimedia/smplayer-themes/Makefile Thu Jan 23 09:05:17 2014 (r340816) +++ head/multimedia/smplayer-themes/Makefile Thu Jan 23 09:05:26 2014 (r340817) @@ -2,20 +2,28 @@ # $FreeBSD$ PORTNAME= smplayer-themes -PORTVERSION= 0.1.20 +PORTVERSION= 20120919 CATEGORIES= multimedia audio kde MASTER_SITES= SF/smplayer/SMPlayer-themes/${PORTVERSION} -MAINTAINER= dhn@FreeBSD.org -COMMENT= Themes for smplayer +MAINTAINER= nemysis@FreeBSD.org +COMMENT= Themes for SMPlayer USE_BZIP2= yes NO_BUILD= yes DATADIR= ${PREFIX}/share/smplayer +PORTDOCS= Changelog + +OPTIONS_DEFINE= DOCS + post-patch: @${REINPLACE_CMD} -e 's|PREFIX=/usr/local|PREFIX=${PREFIX}|g' \ ${WRKSRC}/Makefile +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + .include Modified: head/multimedia/smplayer-themes/distinfo ============================================================================== --- head/multimedia/smplayer-themes/distinfo Thu Jan 23 09:05:17 2014 (r340816) +++ head/multimedia/smplayer-themes/distinfo Thu Jan 23 09:05:26 2014 (r340817) @@ -1,2 +1,2 @@ -SHA256 (smplayer-themes-0.1.20.tar.bz2) = def11b1bb42c3fd80aba3ff9ddf5d9a28609404f5edde755b4287a5cc1e0ccbe -SIZE (smplayer-themes-0.1.20.tar.bz2) = 2203931 +SHA256 (smplayer-themes-20120919.tar.bz2) = 9873cd16e40a34cefbf42c8eaae98d67f501abd08437eedc3d713e7a9ac42f09 +SIZE (smplayer-themes-20120919.tar.bz2) = 2096375 Modified: head/multimedia/smplayer-themes/pkg-descr ============================================================================== --- head/multimedia/smplayer-themes/pkg-descr Thu Jan 23 09:05:17 2014 (r340816) +++ head/multimedia/smplayer-themes/pkg-descr Thu Jan 23 09:05:26 2014 (r340817) @@ -1,3 +1,3 @@ -This is the port of themes for smplayer. +Themes for SMPlayer. WWW: http://smplayer.sourceforge.net/ Modified: head/multimedia/smplayer-themes/pkg-plist ============================================================================== --- head/multimedia/smplayer-themes/pkg-plist Thu Jan 23 09:05:17 2014 (r340816) +++ head/multimedia/smplayer-themes/pkg-plist Thu Jan 23 09:05:26 2014 (r340817) @@ -1,97 +1,3 @@ -%%DATADIR%%/themes/Breathless/README.txt -%%DATADIR%%/themes/Breathless/angle.png -%%DATADIR%%/themes/Breathless/aspect.png -%%DATADIR%%/themes/Breathless/audio_channels.png -%%DATADIR%%/themes/Breathless/audio_down.png -%%DATADIR%%/themes/Breathless/audio_filters.png -%%DATADIR%%/themes/Breathless/audio_track.png -%%DATADIR%%/themes/Breathless/audio_up.png -%%DATADIR%%/themes/Breathless/background.png -%%DATADIR%%/themes/Breathless/cdda.png -%%DATADIR%%/themes/Breathless/cdrom_drive.png -%%DATADIR%%/themes/Breathless/chapter.png -%%DATADIR%%/themes/Breathless/close.png -%%DATADIR%%/themes/Breathless/compact.png -%%DATADIR%%/themes/Breathless/conflict.png -%%DATADIR%%/themes/Breathless/copy.png -%%DATADIR%%/themes/Breathless/dec_sub_step.png -%%DATADIR%%/themes/Breathless/deinterlace.png -%%DATADIR%%/themes/Breathless/delay_down.png -%%DATADIR%%/themes/Breathless/delay_up.png -%%DATADIR%%/themes/Breathless/delete.png -%%DATADIR%%/themes/Breathless/down.png -%%DATADIR%%/themes/Breathless/dvd.png -%%DATADIR%%/themes/Breathless/dvd_drive.png -%%DATADIR%%/themes/Breathless/dvd_hd.png -%%DATADIR%%/themes/Breathless/equalizer.png -%%DATADIR%%/themes/Breathless/exit.png -%%DATADIR%%/themes/Breathless/flip.png -%%DATADIR%%/themes/Breathless/forward10m.png -%%DATADIR%%/themes/Breathless/forward10s.png -%%DATADIR%%/themes/Breathless/forward1m.png -%%DATADIR%%/themes/Breathless/frame_counter.png -%%DATADIR%%/themes/Breathless/frame_step.png -%%DATADIR%%/themes/Breathless/fullscreen.png -%%DATADIR%%/themes/Breathless/inc_sub_step.png -%%DATADIR%%/themes/Breathless/info.png -%%DATADIR%%/themes/Breathless/input_devices.png -%%DATADIR%%/themes/Breathless/keyboard.png -%%DATADIR%%/themes/Breathless/lang_toolbar.png -%%DATADIR%%/themes/Breathless/logo.png -%%DATADIR%%/themes/Breathless/logs.png -%%DATADIR%%/themes/Breathless/main_toolbar.png -%%DATADIR%%/themes/Breathless/minus.png -%%DATADIR%%/themes/Breathless/monitor.png -%%DATADIR%%/themes/Breathless/mouse.png -%%DATADIR%%/themes/Breathless/mute.png -%%DATADIR%%/themes/Breathless/next.png -%%DATADIR%%/themes/Breathless/ok.png -%%DATADIR%%/themes/Breathless/ontop.png -%%DATADIR%%/themes/Breathless/open.png -%%DATADIR%%/themes/Breathless/open_playlist.png -%%DATADIR%%/themes/Breathless/openfolder.png -%%DATADIR%%/themes/Breathless/osd.png -%%DATADIR%%/themes/Breathless/panscan.png -%%DATADIR%%/themes/Breathless/pause.png -%%DATADIR%%/themes/Breathless/play.png -%%DATADIR%%/themes/Breathless/play_pause.png -%%DATADIR%%/themes/Breathless/playlist.png -%%DATADIR%%/themes/Breathless/plus.png -%%DATADIR%%/themes/Breathless/pref_advanced.png -%%DATADIR%%/themes/Breathless/pref_devices.png -%%DATADIR%%/themes/Breathless/pref_general.png -%%DATADIR%%/themes/Breathless/pref_gui.png -%%DATADIR%%/themes/Breathless/pref_performance.png -%%DATADIR%%/themes/Breathless/pref_subtitles.png -%%DATADIR%%/themes/Breathless/prefs.png -%%DATADIR%%/themes/Breathless/previous.png -%%DATADIR%%/themes/Breathless/qt.png -%%DATADIR%%/themes/Breathless/recents.png -%%DATADIR%%/themes/Breathless/repeat.png -%%DATADIR%%/themes/Breathless/rewind10m.png -%%DATADIR%%/themes/Breathless/rewind10s.png -%%DATADIR%%/themes/Breathless/rewind1m.png -%%DATADIR%%/themes/Breathless/save.png -%%DATADIR%%/themes/Breathless/screenshot.png -%%DATADIR%%/themes/Breathless/shuffle.png -%%DATADIR%%/themes/Breathless/speed.png -%%DATADIR%%/themes/Breathless/stereo_mode.png -%%DATADIR%%/themes/Breathless/stop.png -%%DATADIR%%/themes/Breathless/sub.png -%%DATADIR%%/themes/Breathless/sub_down.png -%%DATADIR%%/themes/Breathless/sub_up.png -%%DATADIR%%/themes/Breathless/systray.png -%%DATADIR%%/themes/Breathless/title.png -%%DATADIR%%/themes/Breathless/toolbars.png -%%DATADIR%%/themes/Breathless/unload.png -%%DATADIR%%/themes/Breathless/up.png -%%DATADIR%%/themes/Breathless/url.png -%%DATADIR%%/themes/Breathless/url_big.png -%%DATADIR%%/themes/Breathless/use_ass_lib.png -%%DATADIR%%/themes/Breathless/vcd.png -%%DATADIR%%/themes/Breathless/video_filters.png -%%DATADIR%%/themes/Breathless/video_size.png -%%DATADIR%%/themes/Breathless/volume.png %%DATADIR%%/themes/Gartoon/README.txt %%DATADIR%%/themes/Gartoon/angle.png %%DATADIR%%/themes/Gartoon/aspect.png @@ -298,6 +204,126 @@ %%DATADIR%%/themes/Gnome/video_size.png %%DATADIR%%/themes/Gnome/video_track.png %%DATADIR%%/themes/Gnome/volume.png +%%DATADIR%%/themes/Monochrome/README.txt +%%DATADIR%%/themes/Monochrome/a_marker.png +%%DATADIR%%/themes/Monochrome/angle.png +%%DATADIR%%/themes/Monochrome/aspect.png +%%DATADIR%%/themes/Monochrome/audio_channels.png +%%DATADIR%%/themes/Monochrome/audio_down.png +%%DATADIR%%/themes/Monochrome/audio_equalizer.png +%%DATADIR%%/themes/Monochrome/audio_filters.png +%%DATADIR%%/themes/Monochrome/audio_track.png +%%DATADIR%%/themes/Monochrome/audio_up.png +%%DATADIR%%/themes/Monochrome/b_marker.png +%%DATADIR%%/themes/Monochrome/bookmark_add.png +%%DATADIR%%/themes/Monochrome/bookmark_folder.png +%%DATADIR%%/themes/Monochrome/cdda.png +%%DATADIR%%/themes/Monochrome/cdrom_drive.png +%%DATADIR%%/themes/Monochrome/chapter.png +%%DATADIR%%/themes/Monochrome/check_updates.png +%%DATADIR%%/themes/Monochrome/cl_help.png +%%DATADIR%%/themes/Monochrome/close.png +%%DATADIR%%/themes/Monochrome/compact.png +%%DATADIR%%/themes/Monochrome/copy.png +%%DATADIR%%/themes/Monochrome/dec_sub_step.png +%%DATADIR%%/themes/Monochrome/deinterlace.png +%%DATADIR%%/themes/Monochrome/delay_down.png +%%DATADIR%%/themes/Monochrome/delay_up.png +%%DATADIR%%/themes/Monochrome/delete.png +%%DATADIR%%/themes/Monochrome/donate.png +%%DATADIR%%/themes/Monochrome/down.png +%%DATADIR%%/themes/Monochrome/download_subs.png +%%DATADIR%%/themes/Monochrome/dvd.png +%%DATADIR%%/themes/Monochrome/dvd_drive.png +%%DATADIR%%/themes/Monochrome/dvd_hd.png +%%DATADIR%%/themes/Monochrome/equalizer.png +%%DATADIR%%/themes/Monochrome/exit.png +%%DATADIR%%/themes/Monochrome/faq.png +%%DATADIR%%/themes/Monochrome/favorite.png +%%DATADIR%%/themes/Monochrome/flip.png +%%DATADIR%%/themes/Monochrome/folder.png +%%DATADIR%%/themes/Monochrome/folder_open.png +%%DATADIR%%/themes/Monochrome/forward10m.png +%%DATADIR%%/themes/Monochrome/forward10s.png +%%DATADIR%%/themes/Monochrome/forward1m.png +%%DATADIR%%/themes/Monochrome/frame_step.png +%%DATADIR%%/themes/Monochrome/fullscreen.png +%%DATADIR%%/themes/Monochrome/inc_sub_step.png +%%DATADIR%%/themes/Monochrome/info.png +%%DATADIR%%/themes/Monochrome/input_devices.png +%%DATADIR%%/themes/Monochrome/instance1.png +%%DATADIR%%/themes/Monochrome/instance2.png +%%DATADIR%%/themes/Monochrome/keyboard.png +%%DATADIR%%/themes/Monochrome/logs.png +%%DATADIR%%/themes/Monochrome/minus.png +%%DATADIR%%/themes/Monochrome/mirror.png +%%DATADIR%%/themes/Monochrome/monitor.png +%%DATADIR%%/themes/Monochrome/mouse.png +%%DATADIR%%/themes/Monochrome/mute.png +%%DATADIR%%/themes/Monochrome/next.png +%%DATADIR%%/themes/Monochrome/next_aspect.png +%%DATADIR%%/themes/Monochrome/ok.png +%%DATADIR%%/themes/Monochrome/ontop.png +%%DATADIR%%/themes/Monochrome/open.png +%%DATADIR%%/themes/Monochrome/open_disc.png +%%DATADIR%%/themes/Monochrome/open_favorites.png +%%DATADIR%%/themes/Monochrome/open_playlist.png +%%DATADIR%%/themes/Monochrome/open_radio.png +%%DATADIR%%/themes/Monochrome/open_tv.png +%%DATADIR%%/themes/Monochrome/openfolder.png +%%DATADIR%%/themes/Monochrome/osd.png +%%DATADIR%%/themes/Monochrome/panscan.png +%%DATADIR%%/themes/Monochrome/pause.png +%%DATADIR%%/themes/Monochrome/play.png +%%DATADIR%%/themes/Monochrome/play_pause.png +%%DATADIR%%/themes/Monochrome/playlist.png +%%DATADIR%%/themes/Monochrome/plus.png +%%DATADIR%%/themes/Monochrome/pref_advanced.png +%%DATADIR%%/themes/Monochrome/pref_devices.png +%%DATADIR%%/themes/Monochrome/pref_general.png +%%DATADIR%%/themes/Monochrome/pref_gui.png +%%DATADIR%%/themes/Monochrome/pref_performance.png +%%DATADIR%%/themes/Monochrome/pref_subtitles.png +%%DATADIR%%/themes/Monochrome/prefs.png +%%DATADIR%%/themes/Monochrome/previous.png +%%DATADIR%%/themes/Monochrome/recents.png +%%DATADIR%%/themes/Monochrome/refresh.png +%%DATADIR%%/themes/Monochrome/repeat.png +%%DATADIR%%/themes/Monochrome/resize_window.png +%%DATADIR%%/themes/Monochrome/rewind10m.png +%%DATADIR%%/themes/Monochrome/rewind10s.png +%%DATADIR%%/themes/Monochrome/rewind1m.png +%%DATADIR%%/themes/Monochrome/rotate.png +%%DATADIR%%/themes/Monochrome/save.png +%%DATADIR%%/themes/Monochrome/screenshot.png +%%DATADIR%%/themes/Monochrome/screenshots.png +%%DATADIR%%/themes/Monochrome/shuffle.png +%%DATADIR%%/themes/Monochrome/speed.png +%%DATADIR%%/themes/Monochrome/stereo_mode.png +%%DATADIR%%/themes/Monochrome/stop.png +%%DATADIR%%/themes/Monochrome/sub.png +%%DATADIR%%/themes/Monochrome/sub_down.png +%%DATADIR%%/themes/Monochrome/sub_up.png +%%DATADIR%%/themes/Monochrome/title.png +%%DATADIR%%/themes/Monochrome/toolbars.png +%%DATADIR%%/themes/Monochrome/trash.png +%%DATADIR%%/themes/Monochrome/type_audio.png +%%DATADIR%%/themes/Monochrome/type_cdda.png +%%DATADIR%%/themes/Monochrome/type_tv.png +%%DATADIR%%/themes/Monochrome/type_unknown.png +%%DATADIR%%/themes/Monochrome/type_url.png +%%DATADIR%%/themes/Monochrome/type_vcd.png +%%DATADIR%%/themes/Monochrome/type_video.png +%%DATADIR%%/themes/Monochrome/unload.png +%%DATADIR%%/themes/Monochrome/up.png +%%DATADIR%%/themes/Monochrome/url.png +%%DATADIR%%/themes/Monochrome/url_big.png +%%DATADIR%%/themes/Monochrome/vcd.png +%%DATADIR%%/themes/Monochrome/video_filters.png +%%DATADIR%%/themes/Monochrome/video_preview.png +%%DATADIR%%/themes/Monochrome/video_size.png +%%DATADIR%%/themes/Monochrome/volume.png +%%DATADIR%%/themes/Monochrome/zoom.png %%DATADIR%%/themes/Noia/README.txt %%DATADIR%%/themes/Noia/angle.png %%DATADIR%%/themes/Noia/aspect.png @@ -1111,8 +1137,8 @@ @dirrm %%DATADIR%%/themes/Oxygen @dirrm %%DATADIR%%/themes/Nuvola @dirrm %%DATADIR%%/themes/Noia +@dirrm %%DATADIR%%/themes/Monochrome @dirrm %%DATADIR%%/themes/Gnome @dirrm %%DATADIR%%/themes/Gartoon -@dirrm %%DATADIR%%/themes/Breathless @dirrm %%DATADIR%%/themes @dirrmtry %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 09:15:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4D4C7FB; Thu, 23 Jan 2014 09:15:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A0C3715E2; Thu, 23 Jan 2014 09:15:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0N9FJRI051510; Thu, 23 Jan 2014 09:15:19 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0N9FJo7051508; Thu, 23 Jan 2014 09:15:19 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401230915.s0N9FJo7051508@svn.freebsd.org> From: Raphael Kubo da Costa Date: Thu, 23 Jan 2014 09:15:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340818 - head/x11-fonts/alegreya-sans X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 09:15:19 -0000 Author: rakuco Date: Thu Jan 23 09:15:18 2014 New Revision: 340818 URL: http://svnweb.freebsd.org/changeset/ports/340818 QAT: https://qat.redports.org/buildarchive/r340818/ Log: Update to new release and fix `make checksum'. Upstream uses the same URL to serve a new zip file, which broke make checksum when they released a new version. I have contacted them about this. Changelog: - Fixed Dcroat in all the fonts - Removed aphostrophe Opentype replacement - Added some kerning pairs Modified: head/x11-fonts/alegreya-sans/Makefile head/x11-fonts/alegreya-sans/distinfo Modified: head/x11-fonts/alegreya-sans/Makefile ============================================================================== --- head/x11-fonts/alegreya-sans/Makefile Thu Jan 23 09:05:26 2014 (r340817) +++ head/x11-fonts/alegreya-sans/Makefile Thu Jan 23 09:15:18 2014 (r340818) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= alegreya-sans -PORTVERSION= 20130313 +PORTVERSION= 20140108 CATEGORIES= x11-fonts MASTER_SITES= http://www.huertatipografica.com/free_download/G4oDzW61NXb23OxBa8XL?dummy= Modified: head/x11-fonts/alegreya-sans/distinfo ============================================================================== --- head/x11-fonts/alegreya-sans/distinfo Thu Jan 23 09:05:26 2014 (r340817) +++ head/x11-fonts/alegreya-sans/distinfo Thu Jan 23 09:15:18 2014 (r340818) @@ -1,2 +1,2 @@ -SHA256 (alegreya-sans-20130313.zip) = f37b7dfa82388741e2ee294ec760dde75a98fd950a16c24a486098c8802b8007 -SIZE (alegreya-sans-20130313.zip) = 1574426 +SHA256 (alegreya-sans-20140108.zip) = 6fe20e1857bda2fa6b5b33147c84c4975b5fa4ec1ce6459d160c3d394d162b37 +SIZE (alegreya-sans-20140108.zip) = 1573210 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 10:03:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2BAF0483; Thu, 23 Jan 2014 10:03:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F1AD219E4; Thu, 23 Jan 2014 10:03:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NA3X50070055; Thu, 23 Jan 2014 10:03:33 GMT (envelope-from remko@svn.freebsd.org) Received: (from remko@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NA3XaT070054; Thu, 23 Jan 2014 10:03:33 GMT (envelope-from remko@svn.freebsd.org) Message-Id: <201401231003.s0NA3XaT070054@svn.freebsd.org> From: Remko Lodder Date: Thu, 23 Jan 2014 10:03:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340819 - 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.17 Precedence: list List-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, 23 Jan 2014 10:03:34 -0000 Author: remko (src,doc committer) Date: Thu Jan 23 10:03:33 2014 New Revision: 340819 URL: http://svnweb.freebsd.org/changeset/ports/340819 QAT: https://qat.redports.org/buildarchive/r340819/ Log: Cleanup the HTMLDOC entry, long lines and remove the ... entries because I think it's not needed. Also adjust the previous entry by indenting correctly. Hat: secteam Facilicated by: Snow B.V. Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Jan 23 09:15:18 2014 (r340818) +++ head/security/vuxml/vuln.xml Thu Jan 23 10:03:33 2014 (r340819) @@ -63,8 +63,12 @@ Note: Please add new entries to the beg

Michael Sweet reports:

-

HTMLDOC 1.8.28 fixes some known security issues and formatting bugs. Changes include:

-
  • ...
  • SECURITY: Fixed three buffer overflow issues when reading AFM files and parsing page sizes.
  • ...
+

HTMLDOC 1.8.28 fixes some known security issues and + formatting bugs. Changes include:

+
    +
  • SECURITY: Fixed three buffer overflow issues when + reading AFM files and parsing page sizes.
  • +
@@ -74,6 +78,7 @@ Note: Please add new entries to the beg 2014-01-06 2014-01-22 + 2014-01-23
@@ -90,10 +95,10 @@ Note: Please add new entries to the beg

Oracle reports:

Unspecified vulnerability in the Oracle VM VirtualBox - component in Oracle Virtualization VirtualBox prior to - 3.2.20, 4.0.22, 4.1.30, 4.2.22, and 4.3.6 allows local - users to affect confidentiality, integrity, and availability - via unknown vectors related to Core.

+ component in Oracle Virtualization VirtualBox prior to + 3.2.20, 4.0.22, 4.1.30, 4.2.22, and 4.3.6 allows local + users to affect confidentiality, integrity, and availability + via unknown vectors related to Core.

From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 10:15:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2612BB32; Thu, 23 Jan 2014 10:15:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 12C6A1AFB; Thu, 23 Jan 2014 10:15:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NAF1AA074552; Thu, 23 Jan 2014 10:15:01 GMT (envelope-from knu@svn.freebsd.org) Received: (from knu@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NAF117074551; Thu, 23 Jan 2014 10:15:01 GMT (envelope-from knu@svn.freebsd.org) Message-Id: <201401231015.s0NAF117074551@svn.freebsd.org> From: Akinori MUSHA Date: Thu, 23 Jan 2014 10:15:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340820 - head/databases/mysql-q4m X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 10:15:02 -0000 Author: knu Date: Thu Jan 23 10:15:01 2014 New Revision: 340820 URL: http://svnweb.freebsd.org/changeset/ports/340820 QAT: https://qat.redports.org/buildarchive/r340820/ Log: Add USE_GCC=4.2+ for FreeBSD 10+. Properly declare a dependency on Perl5 (for bin/q4m-forward) and bump PORTREVISION for this. Modified: head/databases/mysql-q4m/Makefile Modified: head/databases/mysql-q4m/Makefile ============================================================================== --- head/databases/mysql-q4m/Makefile Thu Jan 23 10:03:33 2014 (r340819) +++ head/databases/mysql-q4m/Makefile Thu Jan 23 10:15:01 2014 (r340820) @@ -3,6 +3,7 @@ PORTNAME= q4m PORTVERSION= 0.9.10 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://q4m.kazuhooku.com/dist/ PKGNAMEPREFIX= mysql${MYSQL_VER}- @@ -13,13 +14,13 @@ COMMENT= A message queue that works as a FETCH_DEPENDS+= ${NONEXISTENT}:${PORTSDIR}/databases/mysql${MYSQL_VER}-server:build RUN_DEPENDS= ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql${MYSQL_VER}-server -USE_PERL5= yes -USE_GMAKE= yes +USES= gmake perl5 USE_AUTOTOOLS= libtool USE_MYSQL= yes +USE_GCC= 4.2+ GNU_CONFIGURE= yes -CPPFLAGS+= ${PTHREAD_CFLAGS} -I${LOCALBASE}/include -DDBUG_OFF +CPPFLAGS+= -I${LOCALBASE}/include -DDBUG_OFF LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib -L${LOCALBASE}/lib/mysql CONFIGURE_ARGS= --prefix="${PREFIX}" \ --libdir="${PREFIX}/lib/mysql/plugin" \ @@ -56,7 +57,7 @@ post-install: .endif install-functions: - mysql -u root -f mysql < ${EXAMPLESDIR}/install.sql + mysql -u root -p -f mysql < ${EXAMPLESDIR}/install.sql test: cd ${WRKSRC}; ./run_tests.pl From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 10:15:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3DAB3C20; Thu, 23 Jan 2014 10:15:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 105011B04; Thu, 23 Jan 2014 10:15:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NAFTZP074685; Thu, 23 Jan 2014 10:15:29 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NAFT6o074683; Thu, 23 Jan 2014 10:15:29 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401231015.s0NAFT6o074683@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 23 Jan 2014 10:15:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340821 - head/editors/fxite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 10:15:30 -0000 Author: gahr Date: Thu Jan 23 10:15:29 2014 New Revision: 340821 URL: http://svnweb.freebsd.org/changeset/ports/340821 QAT: https://qat.redports.org/buildarchive/r340821/ Log: - Update to 0.92 - STAGE-clean - Convert to USES=gmake Modified: head/editors/fxite/Makefile head/editors/fxite/distinfo Modified: head/editors/fxite/Makefile ============================================================================== --- head/editors/fxite/Makefile Thu Jan 23 10:15:01 2014 (r340820) +++ head/editors/fxite/Makefile Thu Jan 23 10:15:29 2014 (r340821) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= fxite -PORTVERSION= 0.91 -PORTREVISION= 3 +PORTVERSION= 0.92 CATEGORIES= editors MAINTAINER= gahr@FreeBSD.org @@ -22,12 +21,11 @@ GH_ACCOUNT= yetanothergeek GH_TAGNAME= FXITE-0_91 GH_COMMIT= c2ecac3 -USES= pkgconfig +USES= gmake pkgconfig USE_LUA= yes USE_AUTOTOOLS= aclocal autoconf automake ACLOCAL_ARGS= --force -I m4 AUTOMAKE_ARGS= --gnu --add-missing --copy -USE_GMAKE= yes CXXFLAGS+= -fPIC LDFLAGS+= -L${LOCALBASE}/lib -lintl CONFIGURE_ARGS+=--with-system-lua \ @@ -35,18 +33,17 @@ CONFIGURE_ARGS+=--with-system-lua \ CONFIGURE_ENV+= FOX_CFLAGS="${FOX_CFLAGS}" \ FOX_LIBS="${FOX_LIBS}" -NO_STAGE= yes .include .if ${PORT_OPTIONS:MFOX16} -LIB_DEPENDS+= FOX-1.6:${PORTSDIR}/x11-toolkits/fox16 +LIB_DEPENDS+= libFOX-1.6.so:${PORTSDIR}/x11-toolkits/fox16 CONFIGURE_ENV+= RESWRAP=${LOCALBASE}/bin/reswrap FOX_CFLAGS+= `fox-config --cflags` FOX_LIBS+= `fox-config --libs` .endif .if ${PORT_OPTIONS:MFOX17} -LIB_DEPENDS+= FOX-1.7:${PORTSDIR}/x11-toolkits/fox17 +LIB_DEPENDS+= libFOX-1.7.so:${PORTSDIR}/x11-toolkits/fox17 CONFIGURE_ENV+= RESWRAP=${LOCALBASE}/bin/fox-1.7/reswrap FOX_CFLAGS+= `pkgconf fox17 --cflags` FOX_LIBS+= `pkgconf fox17 --libs` Modified: head/editors/fxite/distinfo ============================================================================== --- head/editors/fxite/distinfo Thu Jan 23 10:15:01 2014 (r340820) +++ head/editors/fxite/distinfo Thu Jan 23 10:15:29 2014 (r340821) @@ -1,2 +1,2 @@ -SHA256 (fxite-0.91.tar.gz) = 6b45272d8765e1c9ba9cd09900f4345063f6ed780a99e7733a80fdb3642db06b -SIZE (fxite-0.91.tar.gz) = 1012281 +SHA256 (fxite-0.92.tar.gz) = 6b45272d8765e1c9ba9cd09900f4345063f6ed780a99e7733a80fdb3642db06b +SIZE (fxite-0.92.tar.gz) = 1012281 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 11:10:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 685D4C43; Thu, 23 Jan 2014 11:10:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 54E7010BF; Thu, 23 Jan 2014 11:10:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NBAlIG096711; Thu, 23 Jan 2014 11:10:47 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NBAlFq096710; Thu, 23 Jan 2014 11:10:47 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401231110.s0NBAlFq096710@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 23 Jan 2014 11:10:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340822 - head/devel/cdialog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 11:10:47 -0000 Author: bapt Date: Thu Jan 23 11:10:46 2014 New Revision: 340822 URL: http://svnweb.freebsd.org/changeset/ports/340822 QAT: https://qat.redports.org/buildarchive/r340822/ Log: Fix build without ncurses port installed Reported by: olgeni Modified: head/devel/cdialog/Makefile Modified: head/devel/cdialog/Makefile ============================================================================== --- head/devel/cdialog/Makefile Thu Jan 23 10:15:29 2014 (r340821) +++ head/devel/cdialog/Makefile Thu Jan 23 11:10:46 2014 (r340822) @@ -24,13 +24,18 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --enable-widec \ --includedir=${PREFIX}/include/${PORTNAME} \ --with-libtool \ - --with-curses-dir=${NCURSESBASE} \ --with-ncursesw \ --with-package=${PORTNAME} MAKEFILE= makefile INSTALL_TARGET= install-strip install-man install-lib +.include + +.if ${NCURSESBASE} != /usr +CONFIGURE_ARGS= --with-curses-dir=${NCURSESBASE} +.endif + post-patch: @${FIND} ${WRKSRC}/samples/ -type f -exec ${REINPLACE_CMD} -i "" "s|dialog|cdialog|g" {} \; @@ -38,4 +43,4 @@ post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/samples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 11:15:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E683E6D; Thu, 23 Jan 2014 11:15:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B20E114C; Thu, 23 Jan 2014 11:15:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NBF1lr097454; Thu, 23 Jan 2014 11:15:01 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NBF1nf097453; Thu, 23 Jan 2014 11:15:01 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401231115.s0NBF1nf097453@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 23 Jan 2014 11:15:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340823 - head/audio/snack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 11:15:01 -0000 Author: gahr Date: Thu Jan 23 11:15:00 2014 New Revision: 340823 URL: http://svnweb.freebsd.org/changeset/ports/340823 QAT: https://qat.redports.org/buildarchive/r340823/ Log: - Convert to USES=tk - STAGE-clean Modified: head/audio/snack/Makefile Modified: head/audio/snack/Makefile ============================================================================== --- head/audio/snack/Makefile Thu Jan 23 11:10:46 2014 (r340822) +++ head/audio/snack/Makefile Thu Jan 23 11:15:00 2014 (r340823) @@ -13,42 +13,30 @@ COMMENT= A sound toolkit for scripting l WRKSRC= ${WRKDIR}/${DISTNAME}/unix -USE_TK= 84+ -NO_STAGE= yes - OPTIONS_DEFINE= VORBIS DOCS +OPTIONS_SUB= yes +USES= tk +USE_LDCONFIG= ${PREFIX}/lib/snack${PORTVERSION:R} GNU_CONFIGURE= yes - -.include - -.if ${PORT_OPTIONS:MDOCS} -PORTDOCS= * -.endif - -PLIST_SUB= SNACK_VER=${PORTVERSION:R} - CONFIGURE_ARGS= --with-tcl=${TCL_LIBDIR} \ --with-tk=${TK_LIBDIR} MAKE_ENV= prefix=${PREFIX} exec_prefix=${PREFIX} -CFLAGS+= -I${TCL_INCLUDEDIR} -I${TK_INCLUDEDIR} \ - -I${LOCALBASE}/include +PLIST_SUB= SNACK_VER=${PORTVERSION:R} +PORTDOCS= * + +.include .if ${PORT_OPTIONS:MVORBIS} LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis -CONFIGURE_ARGS+= --with-ogg-include=${LOCALBASE}/include \ - --with-ogg-lib=${LOCALBASE}/lib +CONFIGURE_ARGS+=--with-ogg-include=${LOCALBASE}/include \ + --with-ogg-lib=${LOCALBASE}/lib ALL_TARGET= all libsnackogg.so -PLIST_SUB+= VORBIS="" -.else -PLIST_SUB+= VORBIS="@comment " .endif post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/../doc/* ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/../doc/* ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 11:57:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9C328D5; Thu, 23 Jan 2014 11:57:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C5643151D; Thu, 23 Jan 2014 11:57:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NBv4cM012584; Thu, 23 Jan 2014 11:57:04 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NBv4q5012582; Thu, 23 Jan 2014 11:57:04 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401231157.s0NBv4q5012582@svn.freebsd.org> From: Rusmir Dusko Date: Thu, 23 Jan 2014 11:57:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340824 - head/games/anki X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 11:57:04 -0000 Author: nemysis Date: Thu Jan 23 11:57:04 2014 New Revision: 340824 URL: http://svnweb.freebsd.org/changeset/ports/340824 QAT: https://qat.redports.org/buildarchive/r340824/ Log: - Update to 2.0.21 - Add USES shebangfix and SHEBANG_FILES Modified: head/games/anki/Makefile head/games/anki/distinfo Modified: head/games/anki/Makefile ============================================================================== --- head/games/anki/Makefile Thu Jan 23 11:15:00 2014 (r340823) +++ head/games/anki/Makefile Thu Jan 23 11:57:04 2014 (r340824) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= anki -PORTVERSION= 2.0.20 +PORTVERSION= 2.0.21 CATEGORIES= games python MASTER_SITES= http://ankisrs.net/download/mirror/ EXTRACT_SUFX= .tgz @@ -24,7 +24,8 @@ RUN_DEPENDS= lame:${PORTSDIR}/audio/lame ${PYTHON_PKGNAMEPREFIX}qt4-webkit>=4.4:${PORTSDIR}/www/py-qt4-webkit \ ${PYTHON_PKGNAMEPREFIX}send2trash>0:${PORTSDIR}/deskutils/py-send2trash -USES= desktop-file-utils shared-mime-info +USES= desktop-file-utils shared-mime-info shebangfix +SHEBANG_FILES= tools/build_ui.sh tools/tests.sh USE_PYTHON= 2 USE_QT4= network_run webkit_run Modified: head/games/anki/distinfo ============================================================================== --- head/games/anki/distinfo Thu Jan 23 11:15:00 2014 (r340823) +++ head/games/anki/distinfo Thu Jan 23 11:57:04 2014 (r340824) @@ -1,2 +1,2 @@ -SHA256 (python/anki-2.0.20.tgz) = 155a8495e45d506b6af2184970ecacbb4647c02dc31804a75ba810adce2347f0 -SIZE (python/anki-2.0.20.tgz) = 3187458 +SHA256 (python/anki-2.0.21.tgz) = f66599181b5d1867d36d5ddf74ac61dedc23efc52354eb8c9205836f634c3454 +SIZE (python/anki-2.0.21.tgz) = 3204808 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 12:32:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61F76385; Thu, 23 Jan 2014 12:32:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 34938186F; Thu, 23 Jan 2014 12:32:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NCWbZo027662; Thu, 23 Jan 2014 12:32:37 GMT (envelope-from demon@svn.freebsd.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NCWaFs027659; Thu, 23 Jan 2014 12:32:36 GMT (envelope-from demon@svn.freebsd.org) Message-Id: <201401231232.s0NCWaFs027659@svn.freebsd.org> From: Dmitry Sivachenko Date: Thu, 23 Jan 2014 12:32:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340825 - in head/www/uwsgitop: . 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.17 Precedence: list List-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, 23 Jan 2014 12:32:37 -0000 Author: demon Date: Thu Jan 23 12:32:36 2014 New Revision: 340825 URL: http://svnweb.freebsd.org/changeset/ports/340825 QAT: https://qat.redports.org/buildarchive/r340825/ Log: Fix for python-3.X. Obtained from: upstream Added: head/www/uwsgitop/files/ head/www/uwsgitop/files/patch-uwsgitop (contents, props changed) Modified: head/www/uwsgitop/Makefile Modified: head/www/uwsgitop/Makefile ============================================================================== --- head/www/uwsgitop/Makefile Thu Jan 23 11:57:04 2014 (r340824) +++ head/www/uwsgitop/Makefile Thu Jan 23 12:32:36 2014 (r340825) @@ -3,6 +3,7 @@ PORTNAME= uwsgitop PORTVERSION= 0.6.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_CHEESESHOP} MASTER_SITE_SUBDIR=source/u/${PORTNAME} Added: head/www/uwsgitop/files/patch-uwsgitop ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/uwsgitop/files/patch-uwsgitop Thu Jan 23 12:32:36 2014 (r340825) @@ -0,0 +1,35 @@ +--- uwsgitop.bak ++++ uwsgitop +@@ -82,12 +82,8 @@ except: + pass + screen.clear() + +-def reqcount(a, b): +- if a['requests'] > b['requests']: +- return -1 +- if a['requests'] < b['requests']: +- return 1 +- return 0 ++def reqcount(item): ++ return item['requests'] + + def calc_percent(tot, req): + if tot == 0: +@@ -112,7 +108,7 @@ while True: + data = s.recv(4096) + if len(data) < 1: + break +- js += data ++ js += data.decode('utf8') + except: + raise Exception("unable to get uWSGI statistics") + +@@ -175,7 +171,7 @@ while True: + screen.addstr(2, 0, " WID\t%\tPID\tREQ\tRPS\tEXC\tSIG\tSTATUS\tAVG\tRSS\tVSZ\tTX\tRunT\t", curses.A_REVERSE) + pos = 3 + +- dd['workers'].sort(reqcount) ++ dd['workers'].sort(key=reqcount) + for worker in dd['workers']: + sigs = 0 + wtx = human_size(worker['tx']) From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 12:36:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8D15658; Thu, 23 Jan 2014 12:36:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D49EC18BA; Thu, 23 Jan 2014 12:36:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NCaInU028213; Thu, 23 Jan 2014 12:36:18 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NCaIKB028212; Thu, 23 Jan 2014 12:36:18 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401231236.s0NCaIKB028212@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 23 Jan 2014 12:36:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340826 - head/audio/ufmcontrol-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.17 Precedence: list List-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, 23 Jan 2014 12:36:19 -0000 Author: gahr Date: Thu Jan 23 12:36:18 2014 New Revision: 340826 URL: http://svnweb.freebsd.org/changeset/ports/340826 QAT: https://qat.redports.org/buildarchive/r340826/ Log: - Convert to USES=tcl Modified: head/audio/ufmcontrol-i18n/Makefile Modified: head/audio/ufmcontrol-i18n/Makefile ============================================================================== --- head/audio/ufmcontrol-i18n/Makefile Thu Jan 23 12:32:36 2014 (r340825) +++ head/audio/ufmcontrol-i18n/Makefile Thu Jan 23 12:36:18 2014 (r340826) @@ -11,9 +11,9 @@ COMMENT= USB radio control utility RUN_DEPENDS= snack>=2.2.10_4:${PORTSDIR}/audio/snack +USES= tcl USE_LDCONFIG= yes NO_STAGE= yes -USE_TCL= yes MAKE_ENV= NO_PROFILE=yes MAN1= ufmcontrol.1 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 13:50:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B463424F; Thu, 23 Jan 2014 13:50:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A181B107A; Thu, 23 Jan 2014 13:50:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NDoJnq056928; Thu, 23 Jan 2014 13:50:19 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NDoJuL056927; Thu, 23 Jan 2014 13:50:19 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401231350.s0NDoJuL056927@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 23 Jan 2014 13:50:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340827 - head/x11-wm/xfce4-panel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 13:50:19 -0000 Author: ehaupt Date: Thu Jan 23 13:50:19 2014 New Revision: 340827 URL: http://svnweb.freebsd.org/changeset/ports/340827 QAT: https://qat.redports.org/buildarchive/r340827/ Log: Fix build on amd64, 10.x with clang. Modified: head/x11-wm/xfce4-panel/Makefile Modified: head/x11-wm/xfce4-panel/Makefile ============================================================================== --- head/x11-wm/xfce4-panel/Makefile Thu Jan 23 12:36:18 2014 (r340826) +++ head/x11-wm/xfce4-panel/Makefile Thu Jan 23 13:50:19 2014 (r340827) @@ -15,7 +15,7 @@ LIB_DEPENDS= libwnck-1.so:${PORTSDIR}/x1 libcairo.so:${PORTSDIR}/graphics/cairo \ libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib -USES= desktop-file-utils gmake pathfix perl5 pkgconfig +USES= desktop-file-utils gmake pathfix perl5 pkgconfig compiler GNU_CONFIGURE= yes INSTALLS_ICONS= yes USE_BZIP2= yes @@ -28,7 +28,13 @@ CONFIGURE_ARGS+=--enable-gio-unix OPTIONS_DEFINE= NLS DOCS -.include +.include + +.if ${OSVERSION} >= 1000000 +.if ${COMPILER_TYPE} == clang +CFLAGS_amd64= -fPIC +.endif +.endif .if ${PORT_OPTIONS:MNLS} USES+= gettext @@ -47,4 +53,4 @@ CONFIGURE_ARGS+=--without-html-dir PLIST_SUB+= APIDOCS="@comment " .endif -.include +.include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 14:32:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A2A6F29; Thu, 23 Jan 2014 14:32:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 43F47145A; Thu, 23 Jan 2014 14:32:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NEWbiV073351; Thu, 23 Jan 2014 14:32:37 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NEWZfC073337; Thu, 23 Jan 2014 14:32:35 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401231432.s0NEWZfC073337@svn.freebsd.org> From: Martin Wilke Date: Thu, 23 Jan 2014 14:32:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340828 - in head: net/pecl-amqp net/pecl-cvsclient net/pecl-geoip net/pecl-oauth www/pecl-amfext www/pecl-solr www/pecl-sphinx www/pecl-swish www/pecl-yaf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 14:32:37 -0000 Author: miwi Date: Thu Jan 23 14:32:34 2014 New Revision: 340828 URL: http://svnweb.freebsd.org/changeset/ports/340828 QAT: https://qat.redports.org/buildarchive/r340828/ Log: - Mark these ports as stage safe Modified: head/net/pecl-amqp/Makefile head/net/pecl-cvsclient/Makefile head/net/pecl-geoip/Makefile head/net/pecl-oauth/Makefile head/www/pecl-amfext/Makefile head/www/pecl-solr/Makefile head/www/pecl-sphinx/Makefile head/www/pecl-swish/Makefile head/www/pecl-yaf/Makefile Modified: head/net/pecl-amqp/Makefile ============================================================================== --- head/net/pecl-amqp/Makefile Thu Jan 23 13:50:19 2014 (r340827) +++ head/net/pecl-amqp/Makefile Thu Jan 23 14:32:34 2014 (r340828) @@ -18,5 +18,4 @@ PHP_MODNAME= ${PORTNAME} USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/net/pecl-cvsclient/Makefile ============================================================================== --- head/net/pecl-cvsclient/Makefile Thu Jan 23 13:50:19 2014 (r340827) +++ head/net/pecl-cvsclient/Makefile Thu Jan 23 14:32:34 2014 (r340828) @@ -17,5 +17,4 @@ USE_PHPEXT= yes DEFAULT_PHP_VER=53 IGNORE_WITH_PHP=5 -NO_STAGE= yes .include Modified: head/net/pecl-geoip/Makefile ============================================================================== --- head/net/pecl-geoip/Makefile Thu Jan 23 13:50:19 2014 (r340827) +++ head/net/pecl-geoip/Makefile Thu Jan 23 14:32:34 2014 (r340828) @@ -17,7 +17,6 @@ LIB_DEPENDS= GeoIP:${PORTSDIR}/net/GeoIP USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e 's/-ldl//g' ${WRKSRC}/config.m4 Modified: head/net/pecl-oauth/Makefile ============================================================================== --- head/net/pecl-oauth/Makefile Thu Jan 23 13:50:19 2014 (r340827) +++ head/net/pecl-oauth/Makefile Thu Jan 23 14:32:34 2014 (r340828) @@ -21,5 +21,4 @@ CONFIGURE_ARGS+= CFLAGS="${CFLAGS}" LDFL USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/www/pecl-amfext/Makefile ============================================================================== --- head/www/pecl-amfext/Makefile Thu Jan 23 13:50:19 2014 (r340827) +++ head/www/pecl-amfext/Makefile Thu Jan 23 14:32:34 2014 (r340828) @@ -21,5 +21,4 @@ IGNORE_WITH_PHP=5 CONFIGURE_ARGS= --enable-amf CPPFLAGS+= -I${LOCALBASE}/include/php/ext/standard -NO_STAGE= yes .include Modified: head/www/pecl-solr/Makefile ============================================================================== --- head/www/pecl-solr/Makefile Thu Jan 23 13:50:19 2014 (r340827) +++ head/www/pecl-solr/Makefile Thu Jan 23 14:32:34 2014 (r340828) @@ -20,5 +20,4 @@ USE_PHPEXT= yes USE_PHPIZE= yes USE_PHP_BUILD= yes -NO_STAGE= yes .include Modified: head/www/pecl-sphinx/Makefile ============================================================================== --- head/www/pecl-sphinx/Makefile Thu Jan 23 13:50:19 2014 (r340827) +++ head/www/pecl-sphinx/Makefile Thu Jan 23 14:32:34 2014 (r340828) @@ -22,6 +22,5 @@ SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message CFLAGS+= -I${LOCALBASE}/include -NO_STAGE= yes .include Modified: head/www/pecl-swish/Makefile ============================================================================== --- head/www/pecl-swish/Makefile Thu Jan 23 13:50:19 2014 (r340827) +++ head/www/pecl-swish/Makefile Thu Jan 23 14:32:34 2014 (r340828) @@ -20,5 +20,4 @@ USE_PHPEXT= yes CONFIGURE_ARGS= --enable-swish --with-swish=${LOCALBASE}/bin -NO_STAGE= yes .include Modified: head/www/pecl-yaf/Makefile ============================================================================== --- head/www/pecl-yaf/Makefile Thu Jan 23 13:50:19 2014 (r340827) +++ head/www/pecl-yaf/Makefile Thu Jan 23 14:32:34 2014 (r340828) @@ -23,5 +23,4 @@ USE_PHP= yes USE_PHPEXT= yes USE_PHPIZE= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 14:51:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F83E931; Thu, 23 Jan 2014 14:51:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C7041616; Thu, 23 Jan 2014 14:51:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NEp7TE080688; Thu, 23 Jan 2014 14:51:07 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NEp7NH080687; Thu, 23 Jan 2014 14:51:07 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201401231451.s0NEp7NH080687@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 23 Jan 2014 14:51:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340829 - head/audio/festalon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 14:51:07 -0000 Author: ehaupt Date: Thu Jan 23 14:51:06 2014 New Revision: 340829 URL: http://svnweb.freebsd.org/changeset/ports/340829 QAT: https://qat.redports.org/buildarchive/r340829/ Log: audio/xmms-festalon and audio/festalon now build on 10.x amd64 Modified: head/audio/festalon/Makefile Modified: head/audio/festalon/Makefile ============================================================================== --- head/audio/festalon/Makefile Thu Jan 23 14:32:34 2014 (r340828) +++ head/audio/festalon/Makefile Thu Jan 23 14:51:06 2014 (r340829) @@ -28,8 +28,8 @@ OPTIONS_DEFINE= DOCS .include -.if ${OSVERSION} >= 1000000 -BROKEN= does not build on FreeBSD 10.x and later +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 +BROKEN_i386= does not build on i386 FreeBSD 10.x and later .endif .if ${PKGNAMEPREFIX} == "" From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 15:12:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B4DD6C8; Thu, 23 Jan 2014 15:12:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 14AA71821; Thu, 23 Jan 2014 15:12:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NFCuOW089383; Thu, 23 Jan 2014 15:12:56 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NFCprK089346; Thu, 23 Jan 2014 15:12:51 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401231512.s0NFCprK089346@svn.freebsd.org> From: Martin Wilke Date: Thu, 23 Jan 2014 15:12:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340830 - in head/devel: pecl-APCu pecl-automap pecl-bbcode pecl-bcompiler pecl-eio pecl-expect pecl-hidef pecl-htscanner pecl-inclued pecl-intl pecl-libevent pecl-mcve pecl-ncurses pec... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 15:12:57 -0000 Author: miwi Date: Thu Jan 23 15:12:50 2014 New Revision: 340830 URL: http://svnweb.freebsd.org/changeset/ports/340830 QAT: https://qat.redports.org/buildarchive/r340830/ Log: - Marke these ports as stage safe - While here remove php4 gruft Modified: head/devel/pecl-APCu/Makefile head/devel/pecl-automap/Makefile head/devel/pecl-bbcode/Makefile head/devel/pecl-bcompiler/Makefile head/devel/pecl-eio/Makefile head/devel/pecl-expect/Makefile head/devel/pecl-hidef/Makefile head/devel/pecl-htscanner/Makefile head/devel/pecl-inclued/Makefile head/devel/pecl-intl/Makefile head/devel/pecl-libevent/Makefile head/devel/pecl-mcve/Makefile head/devel/pecl-ncurses/Makefile head/devel/pecl-operator/Makefile head/devel/pecl-params/Makefile head/devel/pecl-parsekit/Makefile head/devel/pecl-runkit/Makefile head/devel/pecl-scream/Makefile head/devel/pecl-shape/Makefile head/devel/pecl-spl_types/Makefile head/devel/pecl-spread/Makefile head/devel/pecl-statgrab/Makefile head/devel/pecl-svn/Makefile head/devel/pecl-test_helpers/Makefile head/devel/pecl-uploadprogress/Makefile head/devel/pecl-uuid/Makefile head/devel/pecl-yac/Makefile Modified: head/devel/pecl-APCu/Makefile ============================================================================== --- head/devel/pecl-APCu/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-APCu/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -22,8 +22,7 @@ USE_PHP_BUILD= yes USE_PHPIZE= yes USE_PHPEXT= yes PHP_MODNAME= ${PORTNAME:L} -IGNORE_WITH_PHP=4 52 +IGNORE_WITH_PHP=52 WRKSRC= ${WRKDIR}/${PORTNAME:L}-${PORTVERSION} -NO_STAGE= yes .include Modified: head/devel/pecl-automap/Makefile ============================================================================== --- head/devel/pecl-automap/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-automap/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -21,5 +21,4 @@ PHP_MODNAME= automap CONFIGURE_ARGS= --enable-automap -NO_STAGE= yes .include Modified: head/devel/pecl-bbcode/Makefile ============================================================================== --- head/devel/pecl-bbcode/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-bbcode/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -23,7 +23,6 @@ IGNORE_WITH_PHP=5 CONFIGURE_ARGS= --enable-bbcode -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's/#include /\/\/#include /g' ${WRKSRC}/lib/bbcode2.c Modified: head/devel/pecl-bcompiler/Makefile ============================================================================== --- head/devel/pecl-bcompiler/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-bcompiler/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -19,5 +19,4 @@ IGNORE_WITH_PHP=5 CONFIGURE_ARGS= --enable-bcompiler -NO_STAGE= yes .include Modified: head/devel/pecl-eio/Makefile ============================================================================== --- head/devel/pecl-eio/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-eio/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -19,5 +19,4 @@ USE_PHP= yes USE_PHPEXT= yes IGNORE_WITH_PHP= 52 -NO_STAGE= yes .include Modified: head/devel/pecl-expect/Makefile ============================================================================== --- head/devel/pecl-expect/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-expect/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -18,11 +18,9 @@ LICENSE= PHP301 USE_PHP= yes USE_PHPEXT= yes -IGNORE_WITH_PHP=4 CONFIGURE_ARGS+=--with-expect=${LOCALBASE} -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ 's/\(LIBRARY_WITH_PATH(\)expect/\1expect543/' \ Modified: head/devel/pecl-hidef/Makefile ============================================================================== --- head/devel/pecl-hidef/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-hidef/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -22,7 +22,6 @@ CONFIGURE_ARGS= --enable-hidef CFLAGS+=-I${LOCALBASE}/include LDFLAGS+=-L${LOCALBASE}/lib -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's,malloc.h,stdlib.h,g' \ ${WRKSRC}/hidef.c Modified: head/devel/pecl-htscanner/Makefile ============================================================================== --- head/devel/pecl-htscanner/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-htscanner/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -17,5 +17,4 @@ USE_PHPEXT= yes CONFIGURE_ARGS= --enable-htscanner -NO_STAGE= yes .include Modified: head/devel/pecl-inclued/Makefile ============================================================================== --- head/devel/pecl-inclued/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-inclued/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -19,5 +19,4 @@ USE_PHPEXT= yes CONFIGURE_ARGS= --enable-inclued -NO_STAGE= yes .include Modified: head/devel/pecl-intl/Makefile ============================================================================== --- head/devel/pecl-intl/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-intl/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -18,7 +18,5 @@ LIB_DEPENDS= icui18n:${PORTSDIR}/devel/i USE_PHP= yes USE_PHPEXT= yes -#IGNORE_WITH_PHP=52 -NO_STAGE= yes .include Modified: head/devel/pecl-libevent/Makefile ============================================================================== --- head/devel/pecl-libevent/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-libevent/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -22,5 +22,4 @@ USE_PHPIZE= yes USE_PHPEXT= yes PHP_MODNAME= libevent -NO_STAGE= yes .include Modified: head/devel/pecl-mcve/Makefile ============================================================================== --- head/devel/pecl-mcve/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-mcve/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -22,7 +22,6 @@ DEFAULT_PHP_VER=53 IGNORE_WITH_PHP=5 CONFIGURE_ARGS+=--with-mcve="${LOCALBASE}" -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e '/SEARCH_PATH/ s,=",="${LOCALBASE} ${PREFIX} ,' \ ${WRKSRC}/config.m4 Modified: head/devel/pecl-ncurses/Makefile ============================================================================== --- head/devel/pecl-ncurses/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-ncurses/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -18,7 +18,6 @@ USE_PHP= yes USE_PHP_BUILD= yes USE_PHPEXT= yes WANT_PHP_CLI= yes -IGNORE_WITH_PHP=4 52 +IGNORE_WITH_PHP=52 -NO_STAGE= yes .include Modified: head/devel/pecl-operator/Makefile ============================================================================== --- head/devel/pecl-operator/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-operator/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -20,7 +20,6 @@ USE_PHPEXT= yes DEFAULT_PHP_VER?= 53 PHP_MODNAME= ${PORTNAME} -NO_STAGE= yes post-extract:: @${CAT} ${PKGMESSAGE} Modified: head/devel/pecl-params/Makefile ============================================================================== --- head/devel/pecl-params/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-params/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -18,5 +18,4 @@ USE_PHPEXT= yes CONFIGURE_ARGS= --enable-params -NO_STAGE= yes .include Modified: head/devel/pecl-parsekit/Makefile ============================================================================== --- head/devel/pecl-parsekit/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-parsekit/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -21,5 +21,4 @@ USE_PHPEXT= yes CONFIGURE_ARGS= --enable-parsekit CFLAGS+= -I${LOCALBASE}/include -NO_STAGE= yes .include Modified: head/devel/pecl-runkit/Makefile ============================================================================== --- head/devel/pecl-runkit/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-runkit/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -20,5 +20,4 @@ DEFAULT_PHP_VER=53 CONFIGURE_ARGS= --enable-runkit=classkit -NO_STAGE= yes .include Modified: head/devel/pecl-scream/Makefile ============================================================================== --- head/devel/pecl-scream/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-scream/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -20,5 +20,4 @@ USE_PHPEXT= yes test: build @(cd ${WRKSRC} && ${MAKE} test) -NO_STAGE= yes .include Modified: head/devel/pecl-shape/Makefile ============================================================================== --- head/devel/pecl-shape/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-shape/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -24,7 +24,6 @@ IGNORE_WITH_PHP=5 CONFIGURE_ARGS+=--with-shp=${LOCALBASE} -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|include/libshp|include|g' ${WRKSRC}/config.m4 @${REINPLACE_CMD} -e 's|-ldl||g' ${WRKSRC}/config.m4 Modified: head/devel/pecl-spl_types/Makefile ============================================================================== --- head/devel/pecl-spl_types/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-spl_types/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -26,5 +26,4 @@ IGNORE_WITH_PHP=5 CONFIGURE_ARGS= --enable-spl-types CFLAGS+= -I${LOCALBASE}/include -NO_STAGE= yes .include Modified: head/devel/pecl-spread/Makefile ============================================================================== --- head/devel/pecl-spread/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-spread/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -21,9 +21,7 @@ RUN_DEPENDS= ${LOCALBASE}/include/sp.h:$ USE_PHP= yes USE_PHPEXT= yes DEFAULT_PHP_VER=53 -IGNORE_WITH_PHP=4 CONFIGURE_ARGS+=--with-spread=${LOCALBASE} -NO_STAGE= yes .include Modified: head/devel/pecl-statgrab/Makefile ============================================================================== --- head/devel/pecl-statgrab/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-statgrab/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -25,5 +25,4 @@ LDFLAGS+= -L${LOCALBASE}/lib -ldevstat $ CONFIGURE_ARGS= --with-statgrab=${LOCALBASE} -NO_STAGE= yes .include Modified: head/devel/pecl-svn/Makefile ============================================================================== --- head/devel/pecl-svn/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-svn/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -19,5 +19,4 @@ LIB_DEPENDS= svn_client-1:${PORTSDIR}/de USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/devel/pecl-test_helpers/Makefile ============================================================================== --- head/devel/pecl-test_helpers/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-test_helpers/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -19,7 +19,6 @@ SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message -NO_STAGE= yes post-install: @${CAT} ${PKGMESSAGE} Modified: head/devel/pecl-uploadprogress/Makefile ============================================================================== --- head/devel/pecl-uploadprogress/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-uploadprogress/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -17,5 +17,4 @@ USE_PHPEXT= yes CONFIGURE_ARGS= --enable-uploadprogress -NO_STAGE= yes .include Modified: head/devel/pecl-uuid/Makefile ============================================================================== --- head/devel/pecl-uuid/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-uuid/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -21,5 +21,4 @@ USE_PHPEXT= yes DEFAULT_PHP_VER=53 IGNORE_WITH_PHP=5 -NO_STAGE= yes .include Modified: head/devel/pecl-yac/Makefile ============================================================================== --- head/devel/pecl-yac/Makefile Thu Jan 23 14:51:06 2014 (r340829) +++ head/devel/pecl-yac/Makefile Thu Jan 23 15:12:50 2014 (r340830) @@ -19,5 +19,4 @@ USE_PHP_BUILD= yes USE_PHPIZE= yes USE_PHPEXT= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 15:27:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3204D1E; Thu, 23 Jan 2014 15:27:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9F132191C; Thu, 23 Jan 2014 15:27:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NFRwkv093686; Thu, 23 Jan 2014 15:27:58 GMT (envelope-from des@svn.freebsd.org) Received: (from des@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NFRweb093685; Thu, 23 Jan 2014 15:27:58 GMT (envelope-from des@svn.freebsd.org) Message-Id: <201401231527.s0NFRweb093685@svn.freebsd.org> From: Dag-Erling Smørgrav Date: Thu, 23 Jan 2014 15:27:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340831 - head/textproc/groff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 15:27:58 -0000 Author: des Date: Thu Jan 23 15:27:58 2014 New Revision: 340831 URL: http://svnweb.freebsd.org/changeset/ports/340831 QAT: https://qat.redports.org/buildarchive/r340831/ Log: Relpace hardcoded ghostscript build dependency with USE_GHOSTSCRIPT_RUN. MFH 2014Q1 Modified: head/textproc/groff/Makefile Modified: head/textproc/groff/Makefile ============================================================================== --- head/textproc/groff/Makefile Thu Jan 23 15:12:50 2014 (r340830) +++ head/textproc/groff/Makefile Thu Jan 23 15:27:58 2014 (r340831) @@ -3,7 +3,7 @@ PORTNAME= groff PORTVERSION= 1.21 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= groff @@ -13,10 +13,10 @@ COMMENT= Software typesetting package LICENSE= GPLv3 -BUILD_DEPENDS= ${LOCALBASE}/bin/gs:${PORTSDIR}/print/ghostscript8 \ - ${LOCALBASE}/bin/psselect:${PORTSDIR}/print/psutils +BUILD_DEPENDS= ${LOCALBASE}/bin/psselect:${PORTSDIR}/print/psutils RUN_DEPENDS:= ${BUILD_DEPENDS} +USE_GHOSTSCRIPT_RUN= yes USES= gmake perl5 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-awk=/usr/bin/awk From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 15:32:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57731FF1; Thu, 23 Jan 2014 15:32:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 434AA19B3; Thu, 23 Jan 2014 15:32:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NFWG47096823; Thu, 23 Jan 2014 15:32:16 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NFWGb9096822; Thu, 23 Jan 2014 15:32:16 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401231532.s0NFWGb9096822@svn.freebsd.org> From: William Grzybowski Date: Thu, 23 Jan 2014 15:32:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340832 - head/graphics/fotoxx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 15:32:16 -0000 Author: wg Date: Thu Jan 23 15:32:15 2014 New Revision: 340832 URL: http://svnweb.freebsd.org/changeset/ports/340832 QAT: https://qat.redports.org/buildarchive/r340832/ Log: graphics/fotoxx: drop maintainership Submitted by: maintainer (via email) Modified: head/graphics/fotoxx/Makefile Modified: head/graphics/fotoxx/Makefile ============================================================================== --- head/graphics/fotoxx/Makefile Thu Jan 23 15:27:58 2014 (r340831) +++ head/graphics/fotoxx/Makefile Thu Jan 23 15:32:15 2014 (r340832) @@ -8,7 +8,7 @@ CATEGORIES= graphics MASTER_SITES= http://kornelix.squarespace.com/downloads/ \ http://www.rodperson.com/DL/ -MAINTAINER= rodperson@rodperson.com +MAINTAINER= ports@FreeBSD.org COMMENT= Application to organize and edit image collections BROKEN= Does not fetch From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 15:44:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 634644D6; Thu, 23 Jan 2014 15:44:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F6C11A98; Thu, 23 Jan 2014 15:44:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NFiFn8001095; Thu, 23 Jan 2014 15:44:15 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NFiEM0001092; Thu, 23 Jan 2014 15:44:14 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401231544.s0NFiEM0001092@svn.freebsd.org> From: William Grzybowski Date: Thu, 23 Jan 2014 15:44:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340833 - head/misc/py-pexpect X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 15:44:15 -0000 Author: wg Date: Thu Jan 23 15:44:14 2014 New Revision: 340833 URL: http://svnweb.freebsd.org/changeset/ports/340833 QAT: https://qat.redports.org/buildarchive/r340833/ Log: misc/py-pexpect: update to 3.1 Modified: head/misc/py-pexpect/Makefile head/misc/py-pexpect/distinfo Modified: head/misc/py-pexpect/Makefile ============================================================================== --- head/misc/py-pexpect/Makefile Thu Jan 23 15:32:15 2014 (r340832) +++ head/misc/py-pexpect/Makefile Thu Jan 23 15:44:14 2014 (r340833) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pexpect -PORTVERSION= 3.0 +PORTVERSION= 3.1 CATEGORIES= misc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/misc/py-pexpect/distinfo ============================================================================== --- head/misc/py-pexpect/distinfo Thu Jan 23 15:32:15 2014 (r340832) +++ head/misc/py-pexpect/distinfo Thu Jan 23 15:44:14 2014 (r340833) @@ -1,2 +1,2 @@ -SHA256 (pexpect-3.0.tar.gz) = 1d6cee0fa5ab212f9ddac9852bab0df5fff11a173ed1bfde9346d5c8aa42d14c -SIZE (pexpect-3.0.tar.gz) = 146662 +SHA256 (pexpect-3.1.tar.gz) = bd0045066718fba98481032303f07565cca6b22b3b7f104efe3e077a55e9ee8d +SIZE (pexpect-3.1.tar.gz) = 130404 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 15:58:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A57C4F5; Thu, 23 Jan 2014 15:58:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 262431D7D; Thu, 23 Jan 2014 15:58:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NFwqiq005292; Thu, 23 Jan 2014 15:58:52 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NFwqYv005290; Thu, 23 Jan 2014 15:58:52 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201401231558.s0NFwqYv005290@svn.freebsd.org> From: Steven Kreuzer Date: Thu, 23 Jan 2014 15:58:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340834 - head/devel/p5-Class-Generate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 15:58:53 -0000 Author: skreuzer Date: Thu Jan 23 15:58:52 2014 New Revision: 340834 URL: http://svnweb.freebsd.org/changeset/ports/340834 QAT: https://qat.redports.org/buildarchive/r340834/ Log: Update to 1.13 Define LICENSE Modified: head/devel/p5-Class-Generate/Makefile head/devel/p5-Class-Generate/distinfo Modified: head/devel/p5-Class-Generate/Makefile ============================================================================== --- head/devel/p5-Class-Generate/Makefile Thu Jan 23 15:44:14 2014 (r340833) +++ head/devel/p5-Class-Generate/Makefile Thu Jan 23 15:58:52 2014 (r340834) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Class-Generate -PORTVERSION= 1.11 +PORTVERSION= 1.13 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl5 module to simplify creating class hierarchies +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure Modified: head/devel/p5-Class-Generate/distinfo ============================================================================== --- head/devel/p5-Class-Generate/distinfo Thu Jan 23 15:44:14 2014 (r340833) +++ head/devel/p5-Class-Generate/distinfo Thu Jan 23 15:58:52 2014 (r340834) @@ -1,2 +1,2 @@ -SHA256 (Class-Generate-1.11.tar.gz) = 3c04bac0ba502ead4dd97cd3c9279d8f854e50b2fe5e49f9602f661a42c247c2 -SIZE (Class-Generate-1.11.tar.gz) = 53938 +SHA256 (Class-Generate-1.13.tar.gz) = 13f603ab48d7a2a5d756888e6020c90547d35a17d6e70d2f82762543ea8e764d +SIZE (Class-Generate-1.13.tar.gz) = 53162 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 16:00:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1C0E670; Thu, 23 Jan 2014 16:00:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BC3D1D93; Thu, 23 Jan 2014 16:00:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NG0N0j006215; Thu, 23 Jan 2014 16:00:23 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NG0FAA006156; Thu, 23 Jan 2014 16:00:15 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401231600.s0NG0FAA006156@svn.freebsd.org> From: Martin Wilke Date: Thu, 23 Jan 2014 16:00:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340835 - in head: converters/pecl-fribidi databases/pecl-chdb databases/pecl-dbase databases/pecl-handlersocket databases/pecl-mdbtools databases/pecl-memcached databases/pecl-mysqlnd_... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 16:00:23 -0000 Author: miwi Date: Thu Jan 23 16:00:14 2014 New Revision: 340835 URL: http://svnweb.freebsd.org/changeset/ports/340835 QAT: https://qat.redports.org/buildarchive/r340835/ Log: - Stageify - Take maintainership of a few ports Modified: head/converters/pecl-fribidi/Makefile head/databases/pecl-chdb/Makefile head/databases/pecl-dbase/Makefile head/databases/pecl-handlersocket/Makefile head/databases/pecl-mdbtools/Makefile head/databases/pecl-memcached/Makefile head/databases/pecl-mysqlnd_ms/Makefile head/databases/pecl-mysqlnd_qc/Makefile head/databases/pecl-pdo_user/Makefile head/databases/pecl-tokyo_tyrant/Makefile head/graphics/pecl-gmagick/Makefile head/graphics/pecl-imagick/Makefile head/graphics/pecl-imlib2/Makefile head/graphics/pecl-qrencode/Makefile head/lang/pecl-perl/Makefile head/mail/pecl-esmtp/Makefile head/mail/pecl-mailparse/Makefile head/mail/pecl-pop3/Makefile head/math/pecl-bitset/Makefile head/math/pecl-stats/Makefile head/net-im/pecl-stomp/Makefile head/print/pecl-haru/Makefile head/security/pecl-crack/Makefile head/security/pecl-pam/Makefile head/security/pecl-ssh2/Makefile head/security/pecl-taint/Makefile head/security/pecl-tcpwrap/Makefile head/sysutils/pecl-fileinfo/Makefile head/sysutils/pecl-mogilefs/Makefile head/sysutils/pecl-proctitle/Makefile head/textproc/pecl-ctemplate/Makefile head/textproc/pecl-doublemetaphone/Makefile head/textproc/pecl-enchant/Makefile head/textproc/pecl-html_parse/Makefile head/textproc/pecl-stem/Makefile head/textproc/pecl-syck/Makefile head/textproc/pecl-wbxml/Makefile head/textproc/pecl-xslcache/Makefile head/textproc/pecl-yaml/Makefile Modified: head/converters/pecl-fribidi/Makefile ============================================================================== --- head/converters/pecl-fribidi/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/converters/pecl-fribidi/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -20,5 +20,4 @@ USE_PHPEXT= yes CONFIGURE_ARGS= --with-fribidi=${LOCALBASE} -NO_STAGE= yes .include Modified: head/databases/pecl-chdb/Makefile ============================================================================== --- head/databases/pecl-chdb/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/databases/pecl-chdb/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -29,5 +29,4 @@ GH_COMMIT= 169f45d CONFIGURE_ARGS= --with-libcmph-dir=${LOCALBASE}/lib -NO_STAGE= yes .include Modified: head/databases/pecl-dbase/Makefile ============================================================================== --- head/databases/pecl-dbase/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/databases/pecl-dbase/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -17,5 +17,4 @@ LICENSE= PHP301 USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/databases/pecl-handlersocket/Makefile ============================================================================== --- head/databases/pecl-handlersocket/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/databases/pecl-handlersocket/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -23,5 +23,4 @@ CONFIGURE_ARGS= --with-handlersocket=${L CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib ${EXTRA_LIBS} -NO_STAGE= yes .include Modified: head/databases/pecl-mdbtools/Makefile ============================================================================== --- head/databases/pecl-mdbtools/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/databases/pecl-mdbtools/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -26,8 +26,6 @@ RUN_DEPENDS= ${LOCALBASE}/lib/libmdb.a:$ CONFIGURE_ARGS= --with-mdbtools=${LOCALBASE} -NO_STAGE= yes - post-extract: @${REINPLACE_CMD} -e 's|MDB_SDATETIME|MDB_DATETIME|g' \ ${WRKSRC}/mdbtools.c Modified: head/databases/pecl-memcached/Makefile ============================================================================== --- head/databases/pecl-memcached/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/databases/pecl-memcached/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -28,7 +28,6 @@ CONFIGURE_ARGS+=--with-libmemcached-dir= OPTIONS_DEFINE= IGBINARY IGBINARY_DESC= Binary serializer support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MIGBINARY} Modified: head/databases/pecl-mysqlnd_ms/Makefile ============================================================================== --- head/databases/pecl-mysqlnd_ms/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/databases/pecl-mysqlnd_ms/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -17,5 +17,4 @@ USE_PHP_BUILD= yes USE_PHPEXT= yes USE_PHPIZE= yes -NO_STAGE= yes .include Modified: head/databases/pecl-mysqlnd_qc/Makefile ============================================================================== --- head/databases/pecl-mysqlnd_qc/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/databases/pecl-mysqlnd_qc/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -16,5 +16,4 @@ USE_PHP= yes USE_PHPEXT= yes USE_PHPIZE= yes -NO_STAGE= yes .include Modified: head/databases/pecl-pdo_user/Makefile ============================================================================== --- head/databases/pecl-pdo_user/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/databases/pecl-pdo_user/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -21,5 +21,4 @@ USE_PHPIZE= yes USE_PHPEXT= yes PHP_MODNAME= pdo_user -NO_STAGE= yes .include Modified: head/databases/pecl-tokyo_tyrant/Makefile ============================================================================== --- head/databases/pecl-tokyo_tyrant/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/databases/pecl-tokyo_tyrant/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -19,5 +19,4 @@ USE_PHP_BUILD= spl USE_PHPIZE= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/graphics/pecl-gmagick/Makefile ============================================================================== --- head/graphics/pecl-gmagick/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/graphics/pecl-gmagick/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -21,5 +21,4 @@ IGNORE_WITH_PHP=5 CONFIGURE_ARGS= --with-gmagick=${LOCALBASE} -NO_STAGE= yes .include Modified: head/graphics/pecl-imagick/Makefile ============================================================================== --- head/graphics/pecl-imagick/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/graphics/pecl-imagick/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -20,11 +20,9 @@ LIB_DEPENDS= MagickWand:${PORTSDIR}/grap LIB_DEPENDS= MagickWand:${PORTSDIR}/graphics/ImageMagick-nox11 .endif - USE_PHP= yes USE_PHPEXT= yes CONFIGURE_ARGS= --with-imagick=${LOCALBASE} -NO_STAGE= yes .include Modified: head/graphics/pecl-imlib2/Makefile ============================================================================== --- head/graphics/pecl-imlib2/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/graphics/pecl-imlib2/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -23,7 +23,6 @@ USE_EFL= imlib2 # imlib2 extension doesn't need X related functions in libImlib2 CFLAGS+= -DX_DISPLAY_MISSING -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's/-ldl//' ${WRKSRC}/config.m4 @${REINPLACE_CMD} -e '/Xlib.h/d' ${WRKSRC}/php_imlib2.h Modified: head/graphics/pecl-qrencode/Makefile ============================================================================== --- head/graphics/pecl-qrencode/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/graphics/pecl-qrencode/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -22,5 +22,4 @@ CONFIGURE_ARGS= --with-qrencode=${LOCALB LDFLAGS+= -L${LOCALBASE}/lib ${EXTRA_LIBS} CFLAGS+= -I${LOCALBASE}/include -NO_STAGE= yes .include Modified: head/lang/pecl-perl/Makefile ============================================================================== --- head/lang/pecl-perl/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/lang/pecl-perl/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -20,5 +20,4 @@ DEFAULT_PHP_VER=53 USES= perl5 -NO_STAGE= yes .include Modified: head/mail/pecl-esmtp/Makefile ============================================================================== --- head/mail/pecl-esmtp/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/mail/pecl-esmtp/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -23,7 +23,6 @@ OPTIONS_DEFINE= RE2C OPTIONS_DEFAULT= RE2C RE2C_DESC= Use re2c to regenerate PHP parsers -NO_STAGE= yes .include .if ${PORT_OPTIONS:MRE2C} Modified: head/mail/pecl-mailparse/Makefile ============================================================================== --- head/mail/pecl-mailparse/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/mail/pecl-mailparse/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -18,5 +18,4 @@ USE_PHP_BUILD= yes USE_PHPEXT= yes PHP_MODNAME= mailparse -NO_STAGE= yes .include Modified: head/mail/pecl-pop3/Makefile ============================================================================== --- head/mail/pecl-pop3/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/mail/pecl-pop3/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -18,5 +18,4 @@ USE_PHP_BUILD= yes USE_PHPEXT= yes PHP_MODNAME= pop3 -NO_STAGE= yes .include Modified: head/math/pecl-bitset/Makefile ============================================================================== --- head/math/pecl-bitset/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/math/pecl-bitset/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -9,11 +9,10 @@ PKGNAMEPREFIX= pecl- EXTRACT_SUFX= .tgz DIST_SUBDIR= PECL -MAINTAINER= ports@FreeBSD.org +MAINTAINER= miwi@FreeBSD.org COMMENT= A PECL extension for manipulating bitsets USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/math/pecl-stats/Makefile ============================================================================== --- head/math/pecl-stats/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/math/pecl-stats/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -15,5 +15,4 @@ COMMENT= A PECL extension which with rou USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/net-im/pecl-stomp/Makefile ============================================================================== --- head/net-im/pecl-stomp/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/net-im/pecl-stomp/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -15,5 +15,4 @@ USE_PHP= yes USE_PHPIZE= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/print/pecl-haru/Makefile ============================================================================== --- head/print/pecl-haru/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/print/pecl-haru/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -22,5 +22,4 @@ CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS+= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -NO_STAGE= yes .include Modified: head/security/pecl-crack/Makefile ============================================================================== --- head/security/pecl-crack/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/security/pecl-crack/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -25,5 +25,4 @@ IGNORE_WITH_PHP=5 WRKSRC= ${WRKDIR}/crack-0.4 -NO_STAGE= yes .include Modified: head/security/pecl-pam/Makefile ============================================================================== --- head/security/pecl-pam/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/security/pecl-pam/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -15,5 +15,4 @@ USE_PHP= yes USE_PHPIZE= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/security/pecl-ssh2/Makefile ============================================================================== --- head/security/pecl-ssh2/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/security/pecl-ssh2/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -21,7 +21,6 @@ LDFLAGS+= -L${LOCALBASE}/lib ${EXTRA_LIB CONFIGURE_ARGS= --with-ssh2 -NO_STAGE= yes .include post-patch: Modified: head/security/pecl-taint/Makefile ============================================================================== --- head/security/pecl-taint/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/security/pecl-taint/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -19,5 +19,4 @@ USE_PHP= yes USE_PHPEXT= yes USE_PHPIZE= yes -NO_STAGE= yes .include Modified: head/security/pecl-tcpwrap/Makefile ============================================================================== --- head/security/pecl-tcpwrap/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/security/pecl-tcpwrap/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -17,7 +17,6 @@ USE_PHPEXT= yes DEFAULT_PHP_VER=53 IGNORE_WITH_PHP=5 -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's, -ldl,,' ${WRKSRC}/config.m4 Modified: head/sysutils/pecl-fileinfo/Makefile ============================================================================== --- head/sysutils/pecl-fileinfo/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/sysutils/pecl-fileinfo/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -20,5 +20,4 @@ IGNORE_WITH_PHP=5 53 CONFIGURE_ARGS= --with-fileinfo=/usr -NO_STAGE= yes .include Modified: head/sysutils/pecl-mogilefs/Makefile ============================================================================== --- head/sysutils/pecl-mogilefs/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/sysutils/pecl-mogilefs/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -20,7 +20,6 @@ USE_PHP_BUILD= spl USE_PHPIZE= yes USE_PHPEXT= yes -NO_STAGE= yes post-extract: @${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/config.m4 Modified: head/sysutils/pecl-proctitle/Makefile ============================================================================== --- head/sysutils/pecl-proctitle/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/sysutils/pecl-proctitle/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -15,5 +15,4 @@ COMMENT= A PECL extension that allows ch USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/textproc/pecl-ctemplate/Makefile ============================================================================== --- head/textproc/pecl-ctemplate/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/textproc/pecl-ctemplate/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -25,5 +25,4 @@ LDFLAGS+= -L${LOCALBASE}/lib ${EXTRA_LIB CONFIGURE_ARGS= --with-cTemplate=${LOCALBASE} -NO_STAGE= yes .include Modified: head/textproc/pecl-doublemetaphone/Makefile ============================================================================== --- head/textproc/pecl-doublemetaphone/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/textproc/pecl-doublemetaphone/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -18,5 +18,4 @@ USE_PHPEXT= yes CONFIGURE_ARGS= --enable-doublemetaphone -NO_STAGE= yes .include Modified: head/textproc/pecl-enchant/Makefile ============================================================================== --- head/textproc/pecl-enchant/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/textproc/pecl-enchant/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -22,5 +22,4 @@ PHP_MODNAME= ${PORTNAME} DEFAULT_PHP_VER=53 IGNORE_WITH_PHP=5 -NO_STAGE= yes .include Modified: head/textproc/pecl-html_parse/Makefile ============================================================================== --- head/textproc/pecl-html_parse/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/textproc/pecl-html_parse/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -23,5 +23,4 @@ IGNORE_WITH_PHP=5 CONFIGURE_ARGS= --enable-html_parse -NO_STAGE= yes .include Modified: head/textproc/pecl-stem/Makefile ============================================================================== --- head/textproc/pecl-stem/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/textproc/pecl-stem/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -15,7 +15,6 @@ COMMENT= A PECL extension which provides USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes post-configure: echo "#define HAVE_XDL_ALLOCATOR_PRIV 1" >>${WRKSRC}/config.h .include Modified: head/textproc/pecl-syck/Makefile ============================================================================== --- head/textproc/pecl-syck/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/textproc/pecl-syck/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -21,5 +21,4 @@ USE_PHPEXT= yes CONFIGURE_ARGS= --enable-syck -NO_STAGE= yes .include Modified: head/textproc/pecl-wbxml/Makefile ============================================================================== --- head/textproc/pecl-wbxml/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/textproc/pecl-wbxml/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -19,5 +19,4 @@ CONFIGURE_ARGS= --with-wbxml=${LOCALBASE USE_PHP= yes USE_PHPEXT= yes -NO_STAGE= yes .include Modified: head/textproc/pecl-xslcache/Makefile ============================================================================== --- head/textproc/pecl-xslcache/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/textproc/pecl-xslcache/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -18,5 +18,4 @@ USE_PHPEXT= yes DEFAULT_PHP_VER=53 IGNORE_WITH_PHP=5 -NO_STAGE= yes .include Modified: head/textproc/pecl-yaml/Makefile ============================================================================== --- head/textproc/pecl-yaml/Makefile Thu Jan 23 15:58:52 2014 (r340834) +++ head/textproc/pecl-yaml/Makefile Thu Jan 23 16:00:14 2014 (r340835) @@ -18,5 +18,4 @@ USE_PHP= yes USE_PHP_BUILD= yes USE_PHPEXT= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 16:02:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1452A7B0; Thu, 23 Jan 2014 16:02:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0000F1E1F; Thu, 23 Jan 2014 16:02:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NG2hAK009074; Thu, 23 Jan 2014 16:02:43 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NG2hqY009072; Thu, 23 Jan 2014 16:02:43 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201401231602.s0NG2hqY009072@svn.freebsd.org> From: Steven Kreuzer Date: Thu, 23 Jan 2014 16:02:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340836 - head/math/p5-Math-Polygon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 16:02:44 -0000 Author: skreuzer Date: Thu Jan 23 16:02:43 2014 New Revision: 340836 URL: http://svnweb.freebsd.org/changeset/ports/340836 QAT: https://qat.redports.org/buildarchive/r340836/ Log: Update to 1.03 Define LICENSE Modified: head/math/p5-Math-Polygon/Makefile head/math/p5-Math-Polygon/distinfo Modified: head/math/p5-Math-Polygon/Makefile ============================================================================== --- head/math/p5-Math-Polygon/Makefile Thu Jan 23 16:00:14 2014 (r340835) +++ head/math/p5-Math-Polygon/Makefile Thu Jan 23 16:02:43 2014 (r340836) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Math-Polygon -PORTVERSION= 1.02 +PORTVERSION= 1.03 CATEGORIES= math perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Class for Maintaining Polygon Data +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod RUN_DEPENDS:= ${BUILD_DEPENDS} Modified: head/math/p5-Math-Polygon/distinfo ============================================================================== --- head/math/p5-Math-Polygon/distinfo Thu Jan 23 16:00:14 2014 (r340835) +++ head/math/p5-Math-Polygon/distinfo Thu Jan 23 16:02:43 2014 (r340836) @@ -1,2 +1,2 @@ -SHA256 (Math-Polygon-1.02.tar.gz) = 373d7f5c01b942bb06c9e8042b72fcd247453667f00093e09bb1e4b059365213 -SIZE (Math-Polygon-1.02.tar.gz) = 21529 +SHA256 (Math-Polygon-1.03.tar.gz) = 6b62dd4e19f1be9c7598c99003deb50babbdff11b8b7cebcddbcf447f2ce6bd7 +SIZE (Math-Polygon-1.03.tar.gz) = 22681 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 16:05:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C56796E; Thu, 23 Jan 2014 16:05:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 77DB11E4A; Thu, 23 Jan 2014 16:05:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NG5eJu009488; Thu, 23 Jan 2014 16:05:40 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NG5e9A009486; Thu, 23 Jan 2014 16:05:40 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201401231605.s0NG5e9A009486@svn.freebsd.org> From: Steven Kreuzer Date: Thu, 23 Jan 2014 16:05:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340837 - head/graphics/p5-Geo-Point X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 16:05:40 -0000 Author: skreuzer Date: Thu Jan 23 16:05:39 2014 New Revision: 340837 URL: http://svnweb.freebsd.org/changeset/ports/340837 QAT: https://qat.redports.org/buildarchive/r340837/ Log: Update to 0.96 Define LICENSE Modified: head/graphics/p5-Geo-Point/Makefile head/graphics/p5-Geo-Point/distinfo Modified: head/graphics/p5-Geo-Point/Makefile ============================================================================== --- head/graphics/p5-Geo-Point/Makefile Thu Jan 23 16:02:43 2014 (r340836) +++ head/graphics/p5-Geo-Point/Makefile Thu Jan 23 16:05:39 2014 (r340837) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Geo-Point -PORTVERSION= 0.94 +PORTVERSION= 0.96 CATEGORIES= graphics devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Perl Module Tries To Abstract Coordinate Systems +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-Geo-Distance>=0.06:${PORTSDIR}/math/p5-Geo-Distance \ p5-Geo-Proj4>=1.00:${PORTSDIR}/graphics/p5-Geo-Proj4 \ p5-Math-Polygon>=1.00:${PORTSDIR}/math/p5-Math-Polygon Modified: head/graphics/p5-Geo-Point/distinfo ============================================================================== --- head/graphics/p5-Geo-Point/distinfo Thu Jan 23 16:02:43 2014 (r340836) +++ head/graphics/p5-Geo-Point/distinfo Thu Jan 23 16:05:39 2014 (r340837) @@ -1,2 +1,2 @@ -SHA256 (Geo-Point-0.94.tar.gz) = 7506b0cee0717799f2324f0fa5859f35f10764e814fc265667337c1750b30a34 -SIZE (Geo-Point-0.94.tar.gz) = 24140 +SHA256 (Geo-Point-0.96.tar.gz) = eb4a3096f2890352ab8d33820d767737bbbf9aadbcaa99dadd86bc2c29bfcb41 +SIZE (Geo-Point-0.96.tar.gz) = 24106 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 16:40:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7BE065FB; Thu, 23 Jan 2014 16:40:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 686C3112C; Thu, 23 Jan 2014 16:40:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NGe5W6021252; Thu, 23 Jan 2014 16:40:05 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NGe5sD021251; Thu, 23 Jan 2014 16:40:05 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401231640.s0NGe5sD021251@svn.freebsd.org> From: Martin Wilke Date: Thu, 23 Jan 2014 16:40:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340838 - head/textproc/ekhtml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 16:40:05 -0000 Author: miwi Date: Thu Jan 23 16:40:04 2014 New Revision: 340838 URL: http://svnweb.freebsd.org/changeset/ports/340838 QAT: https://qat.redports.org/buildarchive/r340838/ Log: - Stageify Modified: head/textproc/ekhtml/Makefile Modified: head/textproc/ekhtml/Makefile ============================================================================== --- head/textproc/ekhtml/Makefile Thu Jan 23 16:05:39 2014 (r340837) +++ head/textproc/ekhtml/Makefile Thu Jan 23 16:40:04 2014 (r340838) @@ -21,5 +21,4 @@ PLIST_FILES= include/ekhtml.h lib/libekh lib/libekhtml.la lib/libekhtml.so \ lib/libekhtml.so.0 -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 16:40:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E019729; Thu, 23 Jan 2014 16:40:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1A7C21140; Thu, 23 Jan 2014 16:40:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NGeZOw021768; Thu, 23 Jan 2014 16:40:35 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NGeZWH021766; Thu, 23 Jan 2014 16:40:35 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401231640.s0NGeZWH021766@svn.freebsd.org> From: Martin Wilke Date: Thu, 23 Jan 2014 16:40:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340839 - head/textproc/supercat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 16:40:36 -0000 Author: miwi Date: Thu Jan 23 16:40:35 2014 New Revision: 340839 URL: http://svnweb.freebsd.org/changeset/ports/340839 QAT: https://qat.redports.org/buildarchive/r340839/ Log: - Stage support - Bump PORTREV Modified: head/textproc/supercat/Makefile head/textproc/supercat/pkg-plist Modified: head/textproc/supercat/Makefile ============================================================================== --- head/textproc/supercat/Makefile Thu Jan 23 16:40:04 2014 (r340838) +++ head/textproc/supercat/Makefile Thu Jan 23 16:40:35 2014 (r340839) @@ -3,6 +3,7 @@ PORTNAME= supercat PORTVERSION= 0.5.5 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://supercat.nosredna.net/ @@ -10,10 +11,8 @@ MAINTAINER= miwi@FreeBSD.org COMMENT= Regexp-based text colorizer with ASCII/HTML output GNU_CONFIGURE= yes -MAN1= spc.1 PORT_VERBS= ${PORTNAME} spc -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|/etc/supercat|${ETCDIR}|' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|c:C:dDhmnrt:vS|&Rw|' ${WRKSRC}/src/spc.c Modified: head/textproc/supercat/pkg-plist ============================================================================== --- head/textproc/supercat/pkg-plist Thu Jan 23 16:40:04 2014 (r340838) +++ head/textproc/supercat/pkg-plist Thu Jan 23 16:40:35 2014 (r340839) @@ -10,4 +10,5 @@ bin/spc %%ETCDIR%%/spcrc-py %%ETCDIR%%/spcrc-svn %%ETCDIR%%/spcrc-xorg +man/man1/spc.1.gz @dirrmtry %%ETCDIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 17:18:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A7B6A7F; Thu, 23 Jan 2014 17:18:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7346D14F1; Thu, 23 Jan 2014 17:18:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NHIkN0036248; Thu, 23 Jan 2014 17:18:46 GMT (envelope-from decke@svn.freebsd.org) Received: (from decke@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NHIggK036226; Thu, 23 Jan 2014 17:18:42 GMT (envelope-from decke@svn.freebsd.org) Message-Id: <201401231718.s0NHIggK036226@svn.freebsd.org> From: Bernhard Froehlich Date: Thu, 23 Jan 2014 17:18:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340840 - in head/emulators: virtualbox-ose virtualbox-ose-additions virtualbox-ose-additions/files virtualbox-ose-kmod virtualbox-ose-kmod/files virtualbox-ose/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.17 Precedence: list List-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, 23 Jan 2014 17:18:47 -0000 Author: decke Date: Thu Jan 23 17:18:42 2014 New Revision: 340840 URL: http://svnweb.freebsd.org/changeset/ports/340840 QAT: https://qat.redports.org/buildarchive/r340840/ Log: - Update to 4.3.6 Obtained from: svn.redports.org/virtualbox Thanks to: all testers of the 3 CFTs Added: head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Additions-common-VBoxGuest-freebsd-Makefile (contents, props changed) head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Additions-common-VBoxGuest-freebsd-files_vboxguest (contents, props changed) head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-HostDrivers-Support-freebsd-Makefile (contents, props changed) head/emulators/virtualbox-ose/files/extrapatch-src-VBox-Main-src-server-generic-NetIf-generic.cpp (contents, props changed) head/emulators/virtualbox-ose/files/patch-src-VBox-Main-Makefile.kmk (contents, props changed) Deleted: head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Runtime-r0drv-freebsd-alloc-r0drv-freebsd.c head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd_VM_MAP_FIND.c head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd_VM_OBJECT_RENAME.c head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Runtime-r0drv-freebsd-the-freebsd-kernel.h head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-alloc-r0drv-freebsd.c head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd_VM_MAP_FIND.c head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd_VM_OBJECT_RENAME.c head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-the-freebsd-kernel.h head/emulators/virtualbox-ose/files/patch-src-VBox-Main-scr-server-freebsd-PerformanceFreeBSD.cpp head/emulators/virtualbox-ose/files/patch-src-VBox-Main-src-server-freebsd-NetIf-freebsd.cpp head/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-r0drv-freebsd-alloc-r0drv-freebsd.c head/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd_VM_MAP_FIND.c Modified: head/emulators/virtualbox-ose-additions/Makefile head/emulators/virtualbox-ose-additions/distinfo head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c head/emulators/virtualbox-ose-kmod/Makefile head/emulators/virtualbox-ose-kmod/distinfo head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c head/emulators/virtualbox-ose-kmod/files/vboxnet.in head/emulators/virtualbox-ose/Makefile head/emulators/virtualbox-ose/distinfo head/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c head/emulators/virtualbox-ose/pkg-plist Modified: head/emulators/virtualbox-ose-additions/Makefile ============================================================================== --- head/emulators/virtualbox-ose-additions/Makefile Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose-additions/Makefile Thu Jan 23 17:18:42 2014 (r340840) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= virtualbox-ose -DISTVERSION= 4.2.22 +DISTVERSION= 4.3.6 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ @@ -27,6 +27,7 @@ USES= iconv kmod USE_GCC= any ONLY_FOR_ARCHS= i386 amd64 USE_BZIP2= yes +USE_PYTHON_BUILD= yes MAKE_JOBS_UNSAFE= yes HAS_CONFIGURE= yes Modified: head/emulators/virtualbox-ose-additions/distinfo ============================================================================== --- head/emulators/virtualbox-ose-additions/distinfo Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose-additions/distinfo Thu Jan 23 17:18:42 2014 (r340840) @@ -1,2 +1,2 @@ -SHA256 (VirtualBox-4.2.22.tar.bz2) = 4a017ec5fa0e0cfa830ae6c2b9d680c9b108e5fb96348e1397a7d0ea051f8bc1 -SIZE (VirtualBox-4.2.22.tar.bz2) = 77039185 +SHA256 (VirtualBox-4.3.6.tar.bz2) = c547e1e32e0b06fba9ee4ca7842f8ddee8e94c64aab17c2b0d0793f0caccbb27 +SIZE (VirtualBox-4.3.6.tar.bz2) = 89609199 Added: head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Additions-common-VBoxGuest-freebsd-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Additions-common-VBoxGuest-freebsd-Makefile Thu Jan 23 17:18:42 2014 (r340840) @@ -0,0 +1,10 @@ +--- src/VBox/Additions/common/VBoxGuest/freebsd/Makefile.orig 2013-11-29 14:20:37.000000000 -0500 ++++ src/VBox/Additions/common/VBoxGuest/freebsd/Makefile 2013-12-15 00:12:59.000000000 -0500 +@@ -155,6 +155,7 @@ + SRCS += \ + semspinmutex-r0drv-generic.c \ + mpnotification-r0drv-generic.c \ ++ threadctxhooks-r0drv-generic.c \ + RTMpIsCpuWorkPending-r0drv-generic.c + + .PATH: ${.CURDIR}/VBox Added: head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Additions-common-VBoxGuest-freebsd-files_vboxguest ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Additions-common-VBoxGuest-freebsd-files_vboxguest Thu Jan 23 17:18:42 2014 (r340840) @@ -0,0 +1,10 @@ +--- src/VBox/Additions/common/VBoxGuest/freebsd/files_vboxguest.orig 2014-01-04 05:34:34.000000000 +0000 ++++ src/VBox/Additions/common/VBoxGuest/freebsd/files_vboxguest 2014-01-04 05:34:41.000000000 +0000 +@@ -185,6 +185,7 @@ + ${PATH_ROOT}/src/VBox/Runtime/r0drv/freebsd/sleepqueue-r0drv-freebsd.h=>r0drv/freebsd/sleepqueue-r0drv-freebsd.h \ + ${PATH_ROOT}/src/VBox/Runtime/r0drv/generic/semspinmutex-r0drv-generic.c=>r0drv/generic/semspinmutex-r0drv-generic.c \ + ${PATH_ROOT}/src/VBox/Runtime/r0drv/generic/mpnotification-r0drv-generic.cpp=>r0drv/generic/mpnotification-r0drv-generic.c \ ++ ${PATH_ROOT}/src/VBox/Runtime/r0drv/generic/threadctxhooks-r0drv-generic.cpp=>r0drv/generic/threadctxhooks-r0drv-generic.c \ + ${PATH_ROOT}/src/VBox/Runtime/r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp=>r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.c \ + ${PATH_ROOT}/src/VBox/Runtime/r0drv/memobj-r0drv.cpp=>r0drv/memobj-r0drv.c \ + ${PATH_ROOT}/src/VBox/Runtime/VBox/log-vbox.cpp=>VBox/log-vbox.c \ Modified: head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c ============================================================================== --- head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose-additions/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c Thu Jan 23 17:18:42 2014 (r340840) @@ -7,17 +7,11 @@ From Alan L. Cox on FreeBSD-current: answer that question. [1] http://lists.freebsd.org/pipermail/freebsd-current/2012-November/037963.html ---- - src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -diff --git a/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c b/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c -index 5c90cf3..1176b51 100644 ---- src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c -+++ src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c -@@ -164,14 +164,19 @@ DECLHIDDEN(int) rtR0MemObjNativeFree(RTR0MEMOBJ pMem) - { +--- src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c.orig 2013-11-29 12:04:53.000000000 +0100 ++++ src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c 2013-11-29 12:37:29.000000000 +0100 +@@ -168,14 +168,19 @@ VM_OBJECT_LOCK(pMemFreeBSD->pObject); + #endif vm_page_t pPage = vm_page_find_least(pMemFreeBSD->pObject, 0); +#if __FreeBSD_version < 900000 + /* See http://lists.freebsd.org/pipermail/freebsd-current/2012-November/037963.html */ @@ -32,10 +26,10 @@ index 5c90cf3..1176b51 100644 +#if __FreeBSD_version < 900000 vm_page_unlock_queues(); +#endif - VM_OBJECT_UNLOCK(pMemFreeBSD->pObject); - vm_object_deallocate(pMemFreeBSD->pObject); - break; -@@ -263,11 +268,15 @@ static int rtR0MemObjFreeBSDPhysAllocHelper(vm_object_t pObject, u_long cPages, + #if __FreeBSD_version >= 1000030 + VM_OBJECT_WUNLOCK(pMemFreeBSD->pObject); + #else +@@ -291,11 +296,15 @@ while (iPage-- > 0) { pPage = vm_page_lookup(pObject, iPage); @@ -49,8 +43,5 @@ index 5c90cf3..1176b51 100644 vm_page_unlock_queues(); +#endif } - VM_OBJECT_UNLOCK(pObject); - return rcNoMem; --- -1.7.11.5 - + #if __FreeBSD_version >= 1000030 + VM_OBJECT_WUNLOCK(pObject); Modified: head/emulators/virtualbox-ose-kmod/Makefile ============================================================================== --- head/emulators/virtualbox-ose-kmod/Makefile Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose-kmod/Makefile Thu Jan 23 17:18:42 2014 (r340840) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= virtualbox-ose -DISTVERSION= 4.2.22 +DISTVERSION= 4.3.6 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ @@ -20,6 +20,7 @@ BUILD_DEPENDS= yasm:${PORTSDIR}/devel/ya as86:${PORTSDIR}/devel/dev86 \ kmk:${PORTSDIR}/devel/kBuild +USES= kmod UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX} WRKSRC= ${WRKDIR}/VirtualBox-${PORTVERSION} USE_RC_SUBR= vboxnet @@ -33,15 +34,13 @@ CONFIGURE_ARGS+=--with-gcc="${CC}" --wit --build-headless CONFLICTS= bcc-[0-9]* -CONFLICTS_INSTALL= virtualbox-ose-kmod-devel-[3,4]* virtualbox-ose-kmod-legacy-[3,4]* +CONFLICTS_INSTALL= virtualbox-ose-kmod-devel-4* virtualbox-ose-kmod-legacy-4* OPTIONS_DEFINE= DEBUG VIMAGE DEBUG_DESC= Debug symbols, additional logs and assertions VIMAGE_DESC= VIMAGE virtual networking support NO_STAGE= yes - -USES= kmod .include VBOX_BIN= ${WRKSRC}/out/${KMK_ARCH}/${KMK_BUILDTYPE}/bin/src Modified: head/emulators/virtualbox-ose-kmod/distinfo ============================================================================== --- head/emulators/virtualbox-ose-kmod/distinfo Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose-kmod/distinfo Thu Jan 23 17:18:42 2014 (r340840) @@ -1,2 +1,2 @@ -SHA256 (VirtualBox-4.2.22.tar.bz2) = 4a017ec5fa0e0cfa830ae6c2b9d680c9b108e5fb96348e1397a7d0ea051f8bc1 -SIZE (VirtualBox-4.2.22.tar.bz2) = 77039185 +SHA256 (VirtualBox-4.3.6.tar.bz2) = c547e1e32e0b06fba9ee4ca7842f8ddee8e94c64aab17c2b0d0793f0caccbb27 +SIZE (VirtualBox-4.3.6.tar.bz2) = 89609199 Added: head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-HostDrivers-Support-freebsd-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-HostDrivers-Support-freebsd-Makefile Thu Jan 23 17:18:42 2014 (r340840) @@ -0,0 +1,10 @@ +--- src/VBox/HostDrivers/Support/freebsd/Makefile.orig 2013-10-17 00:51:57.724397794 +0400 ++++ src/VBox/HostDrivers/Support/freebsd/Makefile 2013-10-17 00:52:05.491398026 +0400 +@@ -170,6 +170,7 @@ + SRCS += \ + semspinmutex-r0drv-generic.c \ + mpnotification-r0drv-generic.c \ ++ threadctxhooks-r0drv-generic.c \ + RTMpIsCpuWorkPending-r0drv-generic.c + + .PATH: ${.CURDIR}/VBox Modified: head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c ============================================================================== --- head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose-kmod/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c Thu Jan 23 17:18:42 2014 (r340840) @@ -7,17 +7,11 @@ From Alan L. Cox on FreeBSD-current: answer that question. [1] http://lists.freebsd.org/pipermail/freebsd-current/2012-November/037963.html ---- - src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -diff --git a/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c b/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c -index 5c90cf3..1176b51 100644 ---- src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c -+++ src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c -@@ -164,14 +164,19 @@ DECLHIDDEN(int) rtR0MemObjNativeFree(RTR0MEMOBJ pMem) - { +--- src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c.orig 2013-11-29 12:04:53.000000000 +0100 ++++ src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c 2013-11-29 12:37:29.000000000 +0100 +@@ -168,14 +168,19 @@ VM_OBJECT_LOCK(pMemFreeBSD->pObject); + #endif vm_page_t pPage = vm_page_find_least(pMemFreeBSD->pObject, 0); +#if __FreeBSD_version < 900000 + /* See http://lists.freebsd.org/pipermail/freebsd-current/2012-November/037963.html */ @@ -32,10 +26,10 @@ index 5c90cf3..1176b51 100644 +#if __FreeBSD_version < 900000 vm_page_unlock_queues(); +#endif - VM_OBJECT_UNLOCK(pMemFreeBSD->pObject); - vm_object_deallocate(pMemFreeBSD->pObject); - break; -@@ -263,11 +268,15 @@ static int rtR0MemObjFreeBSDPhysAllocHelper(vm_object_t pObject, u_long cPages, + #if __FreeBSD_version >= 1000030 + VM_OBJECT_WUNLOCK(pMemFreeBSD->pObject); + #else +@@ -291,11 +296,15 @@ while (iPage-- > 0) { pPage = vm_page_lookup(pObject, iPage); @@ -49,8 +43,5 @@ index 5c90cf3..1176b51 100644 vm_page_unlock_queues(); +#endif } - VM_OBJECT_UNLOCK(pObject); - return rcNoMem; --- -1.7.11.5 - + #if __FreeBSD_version >= 1000030 + VM_OBJECT_WUNLOCK(pObject); Modified: head/emulators/virtualbox-ose-kmod/files/vboxnet.in ============================================================================== --- head/emulators/virtualbox-ose-kmod/files/vboxnet.in Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose-kmod/files/vboxnet.in Thu Jan 23 17:18:42 2014 (r340840) @@ -4,7 +4,8 @@ # # PROVIDE: vboxnet -# REQUIRE: FILESYSTEMS NETWORKING ldconfig +# BEFORE: NETWORKING +# REQUIRE: FILESYSTEMS ldconfig # KEYWORD: nojail # Modified: head/emulators/virtualbox-ose/Makefile ============================================================================== --- head/emulators/virtualbox-ose/Makefile Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose/Makefile Thu Jan 23 17:18:42 2014 (r340840) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= virtualbox-ose -DISTVERSION= 4.2.22 +DISTVERSION= 4.3.6 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ @@ -22,8 +22,7 @@ BUILD_DEPENDS= yasm:${PORTSDIR}/devel/ya xsltproc:${PORTSDIR}/textproc/libxslt \ kmk:${PORTSDIR}/devel/kBuild \ gtar:${PORTSDIR}/archivers/gtar \ - cdrecord:${PORTSDIR}/sysutils/cdrtools \ - python:${PORTSDIR}/lang/python + cdrecord:${PORTSDIR}/sysutils/cdrtools LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png \ libxslt.so:${PORTSDIR}/textproc/libxslt \ libcurl.so:${PORTSDIR}/ftp/curl @@ -36,18 +35,14 @@ USES= iconv pkgconfig USE_GCC= any USE_GNOME= libidl USE_BZIP2= yes -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= vboxapi -PYDISTUTILS_PKGVERSION= 1.0 -PYDISTUTILS_NOEGGINFO= yes +USE_PYTHON_BUILD= yes HAS_CONFIGURE= yes CONFIGURE_ARGS+=--with-gcc="${CC}" --with-g++="${CXX}" --passive-mesa USE_LDCONFIG= ${PREFIX}/lib/virtualbox CONFLICTS= bcc-[0-9]* -CONFLICTS_INSTALL= virtualbox-ose-devel-[3,4]* virtualbox-ose-legacy-[3,4]* virtualbox-ose-additions-[3,4]* virtualbox-ose-additions-devel-[3,4]* +CONFLICTS_INSTALL= virtualbox-ose-devel-4* virtualbox-ose-legacy-4* virtualbox-ose-additions-4* virtualbox-ose-additions-devel-4* VBOXUSER?= vboxusers VBOXWSUSER?= vboxusers @@ -57,9 +52,9 @@ GROUPS= ${VBOXGROUP} VBOX_FRONTENDS= VBoxAutostart VBoxHeadless VBOX_GUEST_VER= ${PORTVERSION} -OPTIONS_DEFINE= QT4 DEBUG GUESTADDITIONS DBUS PULSEAUDIO UDPTUNNEL VDE VNC WEBSERVICE NLS X11 -OPTIONS_DEFAULT= QT4 DBUS X11 UDPTUNNEL VNC -OPTIONS_SUB= X11 QT4 GUESTADDITIONS VNC NLS WEBSERVICE +OPTIONS_DEFINE= QT4 DEBUG GUESTADDITIONS DBUS PULSEAUDIO UDPTUNNEL VDE VNC WEBSERVICE NLS X11 VPX PYTHON +OPTIONS_DEFAULT= QT4 DBUS X11 UDPTUNNEL VNC WEBSERVICE PYTHON +OPTIONS_SUB= X11 QT4 GUESTADDITIONS VNC NLS WEBSERVICE PYTHON DEBUG_DESC= Debug symbols, additional logs and assertions QT4_DESC= Build with QT4 Frontend GUESTADDITIONS_DESC= Build with Guest Additions @@ -67,6 +62,7 @@ UDPTUNNEL_DESC= Build with UDP tunnel su VDE_DESC= Build with VDE support VNC_DESC= Build with VNC support WEBSERVICE_DESC= Build Webservice +VPX_DESC= Use vpx for video capturing PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio PULSEAUDIO_CONFIGURE_OFF= --disable-pulse @@ -77,6 +73,9 @@ DBUS_CONFIGURE_OFF= --disable-dbus VNC_LIB_DEPENDS= libvncserver.so:${PORTSDIR}/net/libvncserver VNC_CONFIGURE_ON= --enable-vnc +VPX_LIB_DEPENDS= libvpx.so:${PORTSDIR}/multimedia/libvpx +VPX_CONFIGURE_OFF= --disable-libvpx + VDE_RUN_DEPENDS= vde_switch:${PORTSDIR}/net/vde2 VDE_CONFIGURE_ON= --enable-vde @@ -116,7 +115,7 @@ BROKEN= QT4 frontend requires X11 suppo .if ${PORT_OPTIONS:MX11} USE_SDL= sdl USE_XORG= xcursor xmu inputproto xinerama -VBOX_FRONTENDS+=VBoxBFE VBoxSDL +VBOX_FRONTENDS+=VBoxSDL .else CONFIGURE_ARGS+=--build-headless .endif @@ -130,6 +129,16 @@ VBOX_FRONTENDS+=VirtualBox VBoxTestOGL CONFIGURE_ARGS+=--disable-qt4 .endif +.if ${PORT_OPTIONS:MPYTHON} +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_PKGNAME= vboxapi +PYDISTUTILS_PKGVERSION= 1.0 +PYDISTUTILS_NOEGGINFO= yes +.else +CONFIGURE_ARGS+=--disable-python +.endif + .if ${PORT_OPTIONS:MGUESTADDITIONS} GUESTADDITIONS= VBoxGuestAdditions_${VBOX_GUEST_VER}.iso GADISTFILES= ${GUESTADDITIONS}:guestadditions @@ -160,8 +169,9 @@ PLIST_SUB+= ARCH="${KMK_ARCH}" .include -.if ${OSVERSION} < 900000 && ${OSVERSION} > 801500 -EXTRA_PATCHES+= ${FILESDIR}/extrapatch-src-VBox-Devices-PC-vbox.dsl +.if ${OSVERSION} < 900000 +EXTRA_PATCHES+= ${FILESDIR}/extrapatch-src-VBox-Main-src-server-generic-NetIf-generic.cpp \ + ${FILESDIR}/extrapatch-src-VBox-Devices-PC-vbox.dsl .endif pre-everything:: @@ -256,8 +266,8 @@ do-install: .if ${PORT_OPTIONS:MWEBSERVICE} ${MKDIR} ${DATADIR}/sdk/bindings/webservice -.for f in vboxweb.wsdl vboxwebService.wsdl - ${INSTALL_DATA} ${WRKSRC}/out/${KMK_ARCH}/${KMK_BUILDTYPE}/bin/sdk/bindings/webservice/${f} ${DATADIR}/sdk/bindings/webservice/ +.for f in vboxweb.wsdl + ${INSTALL_DATA} ${WRKSRC}/out/${KMK_ARCH}/${KMK_BUILDTYPE}/obj/webservice/${f} ${DATADIR}/sdk/bindings/webservice/ .endfor .endif @@ -267,12 +277,14 @@ do-install: ${LN} -sf ${PREFIX}/lib/virtualbox/additions/${GUESTADDITIONS} ${PREFIX}/lib/virtualbox/additions/VBoxGuestAdditions.iso .endif +.if ${PORT_OPTIONS:MPYTHON} cd ${WRKSRC}/out/${KMK_ARCH}/${KMK_BUILDTYPE}/bin/sdk/installer && \ VBOX_INSTALL_PATH="${PREFIX}/lib/virtualbox" ${PYTHON_CMD} vboxapisetup.py install @${MKDIR} ${PYTHON_SITELIBDIR} (cd ${WRKSRC}/out/${KMK_ARCH}/${KMK_BUILDTYPE}/bin/sdk/bindings/xpcom/python && ${COPYTREE_SHARE} "*" ${PYTHON_SITELIBDIR}) ${PYTHON_CMD} -mcompileall ${PYTHON_SITELIBDIR}/xpcom/ +.endif post-install: .for f in VBoxManage VBoxNetDHCP VBoxSVC VBoxXPCOMIPCD VBoxExtPackHelperApp VBoxBalloonCtrl ${VBOX_FRONTENDS} Modified: head/emulators/virtualbox-ose/distinfo ============================================================================== --- head/emulators/virtualbox-ose/distinfo Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose/distinfo Thu Jan 23 17:18:42 2014 (r340840) @@ -1,4 +1,4 @@ -SHA256 (VirtualBox-4.2.22.tar.bz2) = 4a017ec5fa0e0cfa830ae6c2b9d680c9b108e5fb96348e1397a7d0ea051f8bc1 -SIZE (VirtualBox-4.2.22.tar.bz2) = 77039185 -SHA256 (VBoxGuestAdditions_4.2.22.iso) = 222e003d038b757cd761361bb5da33123e0f9574af246fb95eb558593c8c7c76 -SIZE (VBoxGuestAdditions_4.2.22.iso) = 59686912 +SHA256 (VirtualBox-4.3.6.tar.bz2) = c547e1e32e0b06fba9ee4ca7842f8ddee8e94c64aab17c2b0d0793f0caccbb27 +SIZE (VirtualBox-4.3.6.tar.bz2) = 89609199 +SHA256 (VBoxGuestAdditions_4.3.6.iso) = 95648fcdb5d028e64145a2fe2f2f28c946d219da366389295a61fed296ca79f0 +SIZE (VBoxGuestAdditions_4.3.6.iso) = 64161792 Added: head/emulators/virtualbox-ose/files/extrapatch-src-VBox-Main-src-server-generic-NetIf-generic.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose/files/extrapatch-src-VBox-Main-src-server-generic-NetIf-generic.cpp Thu Jan 23 17:18:42 2014 (r340840) @@ -0,0 +1,10 @@ +--- src/VBox/Main/src-server/generic/NetIf-generic.cpp.orig 2013-08-21 13:05:31.000000000 +0400 ++++ src/VBox/Main/src-server/generic/NetIf-generic.cpp 2013-08-27 18:17:51.598216723 +0400 +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + #include + #include + #include Added: head/emulators/virtualbox-ose/files/patch-src-VBox-Main-Makefile.kmk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/virtualbox-ose/files/patch-src-VBox-Main-Makefile.kmk Thu Jan 23 17:18:42 2014 (r340840) @@ -0,0 +1,12 @@ +--- src/VBox/Main/Makefile.kmk.orig 2013-11-09 02:27:38.919839981 +0400 ++++ src/VBox/Main/Makefile.kmk 2013-11-09 02:19:21.868873439 +0400 +@@ -404,7 +404,8 @@ + src-server/HostDnsServiceResolvConf.cpp + + VBoxSVC_SOURCES.freebsd = \ +- src-server/freebsd/HostHardwareFreeBSD.cpp ++ src-server/freebsd/HostHardwareFreeBSD.cpp \ ++ src-server/HostDnsServiceResolvConf.cpp + + + ifdef VBOX_WITH_USB Modified: head/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c ============================================================================== --- head/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose/files/patch-src-VBox-Runtime-r0drv-freebsd-memobj-r0drv-freebsd.c Thu Jan 23 17:18:42 2014 (r340840) @@ -7,17 +7,11 @@ From Alan L. Cox on FreeBSD-current: answer that question. [1] http://lists.freebsd.org/pipermail/freebsd-current/2012-November/037963.html ---- - src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c | 9 +++++++++ - 1 file changed, 9 insertions(+) - -diff --git a/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c b/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c -index 5c90cf3..1176b51 100644 ---- src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c -+++ src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c -@@ -164,14 +164,19 @@ DECLHIDDEN(int) rtR0MemObjNativeFree(RTR0MEMOBJ pMem) - { +--- src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c.orig 2013-11-29 12:04:53.000000000 +0100 ++++ src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c 2013-11-29 12:37:29.000000000 +0100 +@@ -168,14 +168,19 @@ VM_OBJECT_LOCK(pMemFreeBSD->pObject); + #endif vm_page_t pPage = vm_page_find_least(pMemFreeBSD->pObject, 0); +#if __FreeBSD_version < 900000 + /* See http://lists.freebsd.org/pipermail/freebsd-current/2012-November/037963.html */ @@ -32,10 +26,10 @@ index 5c90cf3..1176b51 100644 +#if __FreeBSD_version < 900000 vm_page_unlock_queues(); +#endif - VM_OBJECT_UNLOCK(pMemFreeBSD->pObject); - vm_object_deallocate(pMemFreeBSD->pObject); - break; -@@ -263,11 +268,15 @@ static int rtR0MemObjFreeBSDPhysAllocHelper(vm_object_t pObject, u_long cPages, + #if __FreeBSD_version >= 1000030 + VM_OBJECT_WUNLOCK(pMemFreeBSD->pObject); + #else +@@ -291,11 +296,15 @@ while (iPage-- > 0) { pPage = vm_page_lookup(pObject, iPage); @@ -49,8 +43,5 @@ index 5c90cf3..1176b51 100644 vm_page_unlock_queues(); +#endif } - VM_OBJECT_UNLOCK(pObject); - return rcNoMem; --- -1.7.11.5 - + #if __FreeBSD_version >= 1000030 + VM_OBJECT_WUNLOCK(pObject); Modified: head/emulators/virtualbox-ose/pkg-plist ============================================================================== --- head/emulators/virtualbox-ose/pkg-plist Thu Jan 23 16:40:35 2014 (r340839) +++ head/emulators/virtualbox-ose/pkg-plist Thu Jan 23 17:18:42 2014 (r340840) @@ -1,6 +1,5 @@ bin/VBoxAutostart bin/VBoxBalloonCtrl -%%X11%%bin/VBoxBFE bin/VBoxHeadless bin/VBoxManage bin/VBoxNetAdpCtl @@ -12,8 +11,6 @@ bin/VBoxXPCOMIPCD %%QT4%%bin/VirtualBox %%WEBSERVICE%%bin/vboxwebsrv %%WEBSERVICE%%bin/webtest -%%X11%%lib/virtualbox/VBoxBFE -%%X11%%lib/virtualbox/VBoxBFE.so lib/virtualbox/DBGCPlugInDiggers.so lib/virtualbox/VBoxAuth.so lib/virtualbox/VBoxAutostart @@ -30,16 +27,16 @@ lib/virtualbox/VBoxGuestControlSvc.so lib/virtualbox/VBoxGuestPropSvc.so lib/virtualbox/VBoxHeadless lib/virtualbox/VBoxHeadless.so -lib/virtualbox/VBoxHostChannel.so %%X11%%lib/virtualbox/VBoxKeyboard.so lib/virtualbox/VBoxManage lib/virtualbox/VBoxNetAdpCtl lib/virtualbox/VBoxNetDHCP lib/virtualbox/VBoxNetDHCP.so +lib/virtualbox/VBoxNetNAT.so %%X11%%lib/virtualbox/VBoxOGLhostcrutil.so %%X11%%lib/virtualbox/VBoxOGLhosterrorspu.so %%X11%%lib/virtualbox/VBoxOGLrenderspu.so -lib/virtualbox/VBoxPython.so +%%PYTHON%%lib/virtualbox/VBoxPython.so lib/virtualbox/VBoxREM.so %%QT4%%lib/virtualbox/VBoxTestOGL %%I386%%lib/virtualbox/VBoxREM32.so @@ -63,9 +60,10 @@ lib/virtualbox/VBoxDDGC.gc lib/virtualbox/VMMGC.gc lib/virtualbox/VBoxDD2R0.r0 lib/virtualbox/VBoxDDR0.r0 +lib/virtualbox/VBoxHostChannel.so %%GUESTADDITIONS%%lib/virtualbox/additions/VBoxGuestAdditions.iso %%GUESTADDITIONS%%lib/virtualbox/additions/VBoxGuestAdditions_%%GUEST_VER%%.iso -lib/virtualbox/VBoxPython%%PYTHON_VERU%%.so +%%PYTHON%%lib/virtualbox/VBoxPython%%PYTHON_VERU%%.so lib/virtualbox/VMMR0.r0 %%WEBSERVICE%%lib/virtualbox/vboxwebsrv %%WEBSERVICE%%lib/virtualbox/webtest @@ -240,10 +238,9 @@ lib/virtualbox/components/VBoxXPCOMBase. %%DATADIR%%/idl/ipcITransactionService.idl %%DATADIR%%/idl/ipcITransactionObserver.idl %%DATADIR%%/idl/VirtualBox_XPCOM.idl -%%DATADIR%%/samples/tstVBoxAPILinux.cpp +%%DATADIR%%/samples/tstVBoxAPIXPCOM.cpp %%DATADIR%%/samples/Makefile %%WEBSERVICE%%%%DATADIR%%/sdk/bindings/webservice/vboxweb.wsdl -%%WEBSERVICE%%%%DATADIR%%/sdk/bindings/webservice/vboxwebService.wsdl include/virtualbox/VBoxCAPI_v2_2.h include/virtualbox/VBoxCAPI_v3_0.h include/virtualbox/VBoxCAPI_v3_1.h @@ -251,6 +248,7 @@ include/virtualbox/VBoxCAPI_v3_2.h include/virtualbox/VBoxCAPI_v4_0.h include/virtualbox/VBoxCAPI_v4_1.h include/virtualbox/VBoxCAPI_v4_2.h +include/virtualbox/VBoxCAPI_v4_3.h include/virtualbox/VirtualBox_XPCOM.h include/virtualbox/ipcIClientObserver.h include/virtualbox/ipcIDConnectService.h @@ -377,7 +375,6 @@ include/virtualbox/nsprpub/prlink.h include/virtualbox/nsprpub/md/_iprt_atomic.h include/virtualbox/nsprpub/md/_darwin.h include/virtualbox/nsprpub/md/_freebsd.h -include/virtualbox/nsprpub/md/_l4v2.h include/virtualbox/nsprpub/md/_linux.h include/virtualbox/nsprpub/md/_macos.h include/virtualbox/nsprpub/md/_netbsd.h @@ -397,7 +394,6 @@ include/virtualbox/nsprpub/md/_netbsd.cf include/virtualbox/nsprpub/md/_openbsd.cfg include/virtualbox/nsprpub/md/_os2.cfg include/virtualbox/nsprpub/md/_solaris32.cfg -include/virtualbox/nsprpub/md/_l4v2.cfg include/virtualbox/nsprpub/md/_solaris64.cfg include/virtualbox/nsprpub/prlock.h include/virtualbox/nsprpub/prlog.h @@ -572,45 +568,45 @@ include/virtualbox/xpcom/nsTraceRefcnt.h include/virtualbox/xpcom/nsWeakReference.h include/virtualbox/xpcom/nsXPCOMGlue.h include/virtualbox/xpcom/xpcom-config.h -%%PYTHON_SITELIBDIR%%/vboxapi/__init__.py -%%PYTHON_SITELIBDIR%%/vboxapi/__init__.pyc -%%PYTHON_SITELIBDIR%%/vboxapi/VirtualBox_constants.py -%%PYTHON_SITELIBDIR%%/vboxapi/VirtualBox_constants.pyc -%%PYTHON_SITELIBDIR%%/vboxapi-1.0-py%%PYTHON_VER%%.egg-info -%%PYTHON_SITELIBDIR%%/xpcom/__init__.py -%%PYTHON_SITELIBDIR%%/xpcom/__init__.pyc -%%PYTHON_SITELIBDIR%%/xpcom/components.py -%%PYTHON_SITELIBDIR%%/xpcom/components.pyc -%%PYTHON_SITELIBDIR%%/xpcom/file.py -%%PYTHON_SITELIBDIR%%/xpcom/file.pyc -%%PYTHON_SITELIBDIR%%/xpcom/nsError.py -%%PYTHON_SITELIBDIR%%/xpcom/nsError.pyc -%%PYTHON_SITELIBDIR%%/xpcom/primitives.py -%%PYTHON_SITELIBDIR%%/xpcom/primitives.pyc -%%PYTHON_SITELIBDIR%%/xpcom/vboxxpcom.py -%%PYTHON_SITELIBDIR%%/xpcom/vboxxpcom.pyc -%%PYTHON_SITELIBDIR%%/xpcom/xpcom_consts.py -%%PYTHON_SITELIBDIR%%/xpcom/xpcom_consts.pyc -%%PYTHON_SITELIBDIR%%/xpcom/xpt.py -%%PYTHON_SITELIBDIR%%/xpcom/xpt.pyc -%%PYTHON_SITELIBDIR%%/xpcom/client/__init__.py -%%PYTHON_SITELIBDIR%%/xpcom/client/__init__.pyc -%%PYTHON_SITELIBDIR%%/xpcom/server/__init__.py -%%PYTHON_SITELIBDIR%%/xpcom/server/__init__.pyc -%%PYTHON_SITELIBDIR%%/xpcom/server/enumerator.py -%%PYTHON_SITELIBDIR%%/xpcom/server/enumerator.pyc -%%PYTHON_SITELIBDIR%%/xpcom/server/factory.py -%%PYTHON_SITELIBDIR%%/xpcom/server/factory.pyc -%%PYTHON_SITELIBDIR%%/xpcom/server/loader.py -%%PYTHON_SITELIBDIR%%/xpcom/server/loader.pyc -%%PYTHON_SITELIBDIR%%/xpcom/server/module.py -%%PYTHON_SITELIBDIR%%/xpcom/server/module.pyc -%%PYTHON_SITELIBDIR%%/xpcom/server/policy.py -%%PYTHON_SITELIBDIR%%/xpcom/server/policy.pyc -@dirrm %%PYTHON_SITELIBDIR%%/xpcom/server -@dirrm %%PYTHON_SITELIBDIR%%/xpcom/client -@dirrm %%PYTHON_SITELIBDIR%%/xpcom -@dirrm %%PYTHON_SITELIBDIR%%/vboxapi +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/VirtualBox_constants.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi/VirtualBox_constants.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vboxapi-1.0-py%%PYTHON_VER%%.egg-info +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/components.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/components.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/file.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/file.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/nsError.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/nsError.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/primitives.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/primitives.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/vboxxpcom.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/vboxxpcom.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/xpcom_consts.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/xpcom_consts.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/xpt.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/xpt.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/client/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/client/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/enumerator.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/enumerator.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/factory.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/factory.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/loader.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/loader.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/module.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/module.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/policy.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/xpcom/server/policy.pyc +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/xpcom/server +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/xpcom/client +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/xpcom +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/vboxapi @dirrm include/virtualbox/xpcom @dirrm include/virtualbox/string @dirrm include/virtualbox/nsprpub/private @@ -619,17 +615,17 @@ include/virtualbox/xpcom/xpcom-config.h @dirrm include/virtualbox/nsprpub @dirrm include/virtualbox/ipcd @dirrm include/virtualbox -%%VNC%%@dirrm lib/virtualbox/ExtensionPacks/VNC/%%ARCH%% -%%VNC%%@dirrm lib/virtualbox/ExtensionPacks/VNC -%%VNC%%@dirrmtry lib/virtualbox/ExtensionPacks %%NLS%%@dirrm %%DATADIR%%/nls %%WEBSERVICE%%@dirrm %%DATADIR%%/sdk/bindings/webservice %%WEBSERVICE%%@dirrm %%DATADIR%%/sdk/bindings %%WEBSERVICE%%@dirrm %%DATADIR%%/sdk @dirrm %%DATADIR%%/samples @dirrm %%DATADIR%%/idl -@dirrmtry %%DATADIR%% +@dirrm %%DATADIR%% %%QT4%%@dirrmtry share/applications @dirrm lib/virtualbox/components +%%VNC%%@dirrm lib/virtualbox/ExtensionPacks/VNC/%%ARCH%% +%%VNC%%@dirrm lib/virtualbox/ExtensionPacks/VNC +%%VNC%%@dirrmtry lib/virtualbox/ExtensionPacks %%GUESTADDITIONS%%@dirrm lib/virtualbox/additions @dirrmtry lib/virtualbox From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 17:19:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACEABB69; Thu, 23 Jan 2014 17:19:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7D52C14FD; Thu, 23 Jan 2014 17:19:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NHJIxO036405; Thu, 23 Jan 2014 17:19:18 GMT (envelope-from decke@svn.freebsd.org) Received: (from decke@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NHJHgp036402; Thu, 23 Jan 2014 17:19:17 GMT (envelope-from decke@svn.freebsd.org) Message-Id: <201401231719.s0NHJHgp036402@svn.freebsd.org> From: Bernhard Froehlich Date: Thu, 23 Jan 2014 17:19:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340841 - head/www/phpvirtualbox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 17:19:18 -0000 Author: decke Date: Thu Jan 23 17:19:17 2014 New Revision: 340841 URL: http://svnweb.freebsd.org/changeset/ports/340841 QAT: https://qat.redports.org/buildarchive/r340841/ Log: - Update to 4.3-1 Modified: head/www/phpvirtualbox/Makefile head/www/phpvirtualbox/distinfo head/www/phpvirtualbox/pkg-plist Modified: head/www/phpvirtualbox/Makefile ============================================================================== --- head/www/phpvirtualbox/Makefile Thu Jan 23 17:18:42 2014 (r340840) +++ head/www/phpvirtualbox/Makefile Thu Jan 23 17:19:17 2014 (r340841) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpvirtualbox -DISTVERSION= 4.2-8 +DISTVERSION= 4.3-1 CATEGORIES= www MASTER_SITES= SF/${PORTNAME} \ LOCAL/decke @@ -17,8 +17,6 @@ USE_PHP= json session soap simplexml NO_BUILD= yes USE_DOS2UNIX= yes DOS2UNIX_REGEX= .*\.(php|txt|js|css|html) -NO_WRKSUBDIR= yes -STAGEDIR= ${WRKDIR}/.stage do-install: @${MKDIR} ${STAGEDIR}${WWWDIR} Modified: head/www/phpvirtualbox/distinfo ============================================================================== --- head/www/phpvirtualbox/distinfo Thu Jan 23 17:18:42 2014 (r340840) +++ head/www/phpvirtualbox/distinfo Thu Jan 23 17:19:17 2014 (r340841) @@ -1,2 +1,2 @@ -SHA256 (phpvirtualbox-4.2-8.zip) = fdccf9323910b875899d73428e92daac85ff5bfdf9489bea835d926fe7a4b8a0 -SIZE (phpvirtualbox-4.2-8.zip) = 3475340 +SHA256 (phpvirtualbox-4.3-1.zip) = 013edbb4035b8afafdcba833fcccf58d48c702fae1ea9feeb2576d96e62a83a5 +SIZE (phpvirtualbox-4.3-1.zip) = 4248078 Modified: head/www/phpvirtualbox/pkg-plist ============================================================================== --- head/www/phpvirtualbox/pkg-plist Thu Jan 23 17:18:42 2014 (r340840) +++ head/www/phpvirtualbox/pkg-plist Thu Jan 23 17:19:17 2014 (r340841) @@ -54,6 +54,7 @@ %%WWWDIR%%/images/treeview-default-line.gif %%WWWDIR%%/images/treeview-default.gif %%WWWDIR%%/images/upArrow.png +%%WWWDIR%%/images/vbox/OSE/VirtualBox.icns %%WWWDIR%%/images/vbox/OSE/VirtualBox_16px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_20px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_32px.png @@ -62,13 +63,12 @@ %%WWWDIR%%/images/vbox/OSE/VirtualBox_64px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_cube_42px.png %%WWWDIR%%/images/vbox/OSE/VirtualBox_win.ico +%%WWWDIR%%/images/vbox/OSE/about.png %%WWWDIR%%/images/vbox/OSE/about_16px.png %%WWWDIR%%/images/vbox/acpi_16px.png %%WWWDIR%%/images/vbox/acpi_disabled_16px.png %%WWWDIR%%/images/vbox/add_host_iface_16px.png %%WWWDIR%%/images/vbox/add_host_iface_disabled_16px.png -%%WWWDIR%%/images/vbox/add_shared_folder_16px.png -%%WWWDIR%%/images/vbox/add_shared_folder_disabled_16px.png %%WWWDIR%%/images/vbox/arrow_down_10px.png %%WWWDIR%%/images/vbox/arrow_left_10px.png %%WWWDIR%%/images/vbox/arrow_right_10px.png @@ -97,24 +97,21 @@ %%WWWDIR%%/images/vbox/controller_remove_16px.png %%WWWDIR%%/images/vbox/controller_remove_disabled_16px.png %%WWWDIR%%/images/vbox/cpu_16px.png -%%WWWDIR%%/images/vbox/delete_16px.png -%%WWWDIR%%/images/vbox/delete_dis_16px.png -%%WWWDIR%%/images/vbox/delete_snapshot_16px.png -%%WWWDIR%%/images/vbox/delete_snapshot_22px.png -%%WWWDIR%%/images/vbox/delete_snapshot_dis_16px.png -%%WWWDIR%%/images/vbox/delete_snapshot_dis_22px.png %%WWWDIR%%/images/vbox/description_16px.png %%WWWDIR%%/images/vbox/description_disabled_16px.png -%%WWWDIR%%/images/vbox/discard_16px.png +%%WWWDIR%%/images/vbox/description_edit_16px.png +%%WWWDIR%%/images/vbox/description_edit_disabled_16px.png %%WWWDIR%%/images/vbox/discard_cur_state_16px.png %%WWWDIR%%/images/vbox/discard_cur_state_22px.png %%WWWDIR%%/images/vbox/discard_cur_state_dis_16px.png %%WWWDIR%%/images/vbox/discard_cur_state_dis_22px.png -%%WWWDIR%%/images/vbox/discard_dis_16px.png +%%WWWDIR%%/images/vbox/discard_cur_state_snapshot_16px.png +%%WWWDIR%%/images/vbox/discard_cur_state_snapshot_22px.png +%%WWWDIR%%/images/vbox/discard_cur_state_snapshot_dis_16px.png +%%WWWDIR%%/images/vbox/discard_cur_state_snapshot_dis_22px.png %%WWWDIR%%/images/vbox/diskimage_16px.png -%%WWWDIR%%/images/vbox/edit_shared_folder_16px.png -%%WWWDIR%%/images/vbox/edit_shared_folder_disabled_16px.png %%WWWDIR%%/images/vbox/exit_16px.png +%%WWWDIR%%/images/vbox/expanding_collapsing_16px.png %%WWWDIR%%/images/vbox/export_16px.png %%WWWDIR%%/images/vbox/fd_16px.png %%WWWDIR%%/images/vbox/fd_32px.png @@ -132,6 +129,7 @@ %%WWWDIR%%/images/vbox/fullscreen_16px.png %%WWWDIR%%/images/vbox/global_settings_16px.png %%WWWDIR%%/images/vbox/global_settings_disabled_16px.png +%%WWWDIR%%/images/vbox/group_abstract_16px.png %%WWWDIR%%/images/vbox/guesttools_16px.png %%WWWDIR%%/images/vbox/guesttools_disabled_16px.png %%WWWDIR%%/images/vbox/hd_16px.png @@ -167,19 +165,17 @@ %%WWWDIR%%/images/vbox/list_moveup_disabled_16px.png %%WWWDIR%%/images/vbox/machine_16px.png %%WWWDIR%%/images/vbox/machine_32px.png +%%WWWDIR%%/images/vbox/machine_abstract_16px.png %%WWWDIR%%/images/vbox/machine_disabled_16px.png %%WWWDIR%%/images/vbox/machine_disabled_32px.png %%WWWDIR%%/images/vbox/menuArrow.gif %%WWWDIR%%/images/vbox/menuArrow_w.gif %%WWWDIR%%/images/vbox/name_16px.png -%%WWWDIR%%/images/vbox/new_16px.png %%WWWDIR%%/images/vbox/node.gif %%WWWDIR%%/images/vbox/nw_16px.png %%WWWDIR%%/images/vbox/nw_32px.png %%WWWDIR%%/images/vbox/nw_disabled_16px.png %%WWWDIR%%/images/vbox/nw_disabled_32px.png -%%WWWDIR%%/images/vbox/offline_snapshot_16px.png -%%WWWDIR%%/images/vbox/online_snapshot_16px.png %%WWWDIR%%/images/vbox/os_archlinux.png %%WWWDIR%%/images/vbox/os_archlinux_64.png %%WWWDIR%%/images/vbox/os_debian.png @@ -221,6 +217,7 @@ %%WWWDIR%%/images/vbox/os_os2warp4.png %%WWWDIR%%/images/vbox/os_os2warp45.png %%WWWDIR%%/images/vbox/os_other.png +%%WWWDIR%%/images/vbox/os_other_64.png %%WWWDIR%%/images/vbox/os_qnx.png %%WWWDIR%%/images/vbox/os_redhat.png %%WWWDIR%%/images/vbox/os_redhat_64.png @@ -255,12 +252,8 @@ %%WWWDIR%%/images/vbox/os_xandros.png %%WWWDIR%%/images/vbox/os_xandros_64.png %%WWWDIR%%/images/vbox/parallel_port_16px.png -%%WWWDIR%%/images/vbox/pause_16px.png -%%WWWDIR%%/images/vbox/pause_disabled_16px.png -%%WWWDIR%%/images/vbox/pause_on_16px.png -%%WWWDIR%%/images/vbox/pause_on_disabled_16px.png -%%WWWDIR%%/images/vbox/poweroff_16px.png -%%WWWDIR%%/images/vbox/poweroff_disabled_16px.png +%%WWWDIR%%/images/vbox/preview_empty_228x168px.png +%%WWWDIR%%/images/vbox/preview_full_228x168px.png %%WWWDIR%%/images/vbox/progress_clone_90px.png %%WWWDIR%%/images/vbox/progress_delete_90px.png %%WWWDIR%%/images/vbox/progress_export_90px.png @@ -285,10 +278,6 @@ %%WWWDIR%%/images/vbox/register_16px.png %%WWWDIR%%/images/vbox/remove_host_iface_16px.png %%WWWDIR%%/images/vbox/remove_host_iface_disabled_16px.png -%%WWWDIR%%/images/vbox/remove_shared_folder_16px.png -%%WWWDIR%%/images/vbox/remove_shared_folder_disabled_16px.png -%%WWWDIR%%/images/vbox/reset_16px.png -%%WWWDIR%%/images/vbox/reset_disabled_16px.png %%WWWDIR%%/images/vbox/sata_16px.png %%WWWDIR%%/images/vbox/sata_add_16px.png %%WWWDIR%%/images/vbox/sata_add_disabled_16px.png @@ -300,26 +289,43 @@ %%WWWDIR%%/images/vbox/scsi_collapse_16px.png %%WWWDIR%%/images/vbox/scsi_expand_16px.png %%WWWDIR%%/images/vbox/select_file_16px.png -%%WWWDIR%%/images/vbox/select_file_dis_16px.png +%%WWWDIR%%/images/vbox/select_file_disabled_16px.png %%WWWDIR%%/images/vbox/serial_port_16px.png %%WWWDIR%%/images/vbox/serial_port_disabled_16px.png -%%WWWDIR%%/images/vbox/settings_16px.png -%%WWWDIR%%/images/vbox/settings_dis_16px.png -%%WWWDIR%%/images/vbox/shared_folder_16px.png -%%WWWDIR%%/images/vbox/shared_folder_disabled_16px.png -%%WWWDIR%%/images/vbox/show_logs_16px.png -%%WWWDIR%%/images/vbox/show_logs_disabled_16px.png -%%WWWDIR%%/images/vbox/show_snapshot_details_16px.png -%%WWWDIR%%/images/vbox/show_snapshot_details_22px.png -%%WWWDIR%%/images/vbox/show_snapshot_details_dis_16px.png -%%WWWDIR%%/images/vbox/show_snapshot_details_dis_22px.png +%%WWWDIR%%/images/vbox/sf_16px.png +%%WWWDIR%%/images/vbox/sf_add_16px.png +%%WWWDIR%%/images/vbox/sf_add_disabled_16px.png +%%WWWDIR%%/images/vbox/sf_disabled_16px.png +%%WWWDIR%%/images/vbox/sf_edit_16px.png +%%WWWDIR%%/images/vbox/sf_edit_disabled_16px.png +%%WWWDIR%%/images/vbox/sf_remove_16px.png +%%WWWDIR%%/images/vbox/sf_remove_disabled_16px.png +%%WWWDIR%%/images/vbox/sf_settings_16px.png +%%WWWDIR%%/images/vbox/sf_settings_disabled_16px.png %%WWWDIR%%/images/vbox/site_16px.png %%WWWDIR%%/images/vbox/site_32px.png -%%WWWDIR%%/images/vbox/site_disabled_16px.png +%%WWWDIR%%/images/vbox/snapshot_delete_16px.png +%%WWWDIR%%/images/vbox/snapshot_delete_22px.png +%%WWWDIR%%/images/vbox/snapshot_delete_disabled_16px.png +%%WWWDIR%%/images/vbox/snapshot_delete_disabled_22px.png +%%WWWDIR%%/images/vbox/snapshot_offline_16px.png +%%WWWDIR%%/images/vbox/snapshot_online_16px.png +%%WWWDIR%%/images/vbox/snapshot_restore_16px.png +%%WWWDIR%%/images/vbox/snapshot_restore_22px.png +%%WWWDIR%%/images/vbox/snapshot_restore_disabled_16px.png +%%WWWDIR%%/images/vbox/snapshot_restore_disabled_22px.png +%%WWWDIR%%/images/vbox/snapshot_show_details_16px.png +%%WWWDIR%%/images/vbox/snapshot_show_details_22px.png +%%WWWDIR%%/images/vbox/snapshot_show_details_disabled_16px.png +%%WWWDIR%%/images/vbox/snapshot_show_details_disabled_22px.png +%%WWWDIR%%/images/vbox/snapshot_take_16px.png +%%WWWDIR%%/images/vbox/snapshot_take_22px.png +%%WWWDIR%%/images/vbox/snapshot_take_disabled_16px.png +%%WWWDIR%%/images/vbox/snapshot_take_disabled_22px.png +%%WWWDIR%%/images/vbox/sort_16px.png +%%WWWDIR%%/images/vbox/sort_disabled_16px.png %%WWWDIR%%/images/vbox/sound_16px.png %%WWWDIR%%/images/vbox/sound_disabled_16px.png -%%WWWDIR%%/images/vbox/start_16px.png -%%WWWDIR%%/images/vbox/start_dis_16px.png %%WWWDIR%%/images/vbox/state_aborted_16px.png %%WWWDIR%%/images/vbox/state_discarding_16px.png %%WWWDIR%%/images/vbox/state_paused_16px.png @@ -330,12 +336,6 @@ %%WWWDIR%%/images/vbox/state_saving_16px.png %%WWWDIR%%/images/vbox/state_stuck_16px.png %%WWWDIR%%/images/vbox/status_error_16px.png -%%WWWDIR%%/images/vbox/take_snapshot_16px.png -%%WWWDIR%%/images/vbox/take_snapshot_22px.png -%%WWWDIR%%/images/vbox/take_snapshot_dis_16px.png -%%WWWDIR%%/images/vbox/take_snapshot_dis_22px.png -%%WWWDIR%%/images/vbox/tpixel.png -%%WWWDIR%%/images/vbox/transparent_16px.png %%WWWDIR%%/images/vbox/usb_16px.png %%WWWDIR%%/images/vbox/usb_add_16px.png %%WWWDIR%%/images/vbox/usb_add_disabled_16px.png @@ -368,6 +368,11 @@ %%WWWDIR%%/images/vbox/vdm_remove_22px.png %%WWWDIR%%/images/vbox/vdm_remove_disabled_16px.png %%WWWDIR%%/images/vbox/vdm_remove_disabled_22px.png +%%WWWDIR%%/images/vbox/video_capture_16px.png +%%WWWDIR%%/images/vbox/video_capture_disabled_16px.png +%%WWWDIR%%/images/vbox/video_capture_on_16px.png +%%WWWDIR%%/images/vbox/video_capture_on_disabled_16px.png +%%WWWDIR%%/images/vbox/video_capture_settings_16px.png %%WWWDIR%%/images/vbox/virtualbox-hdd.png %%WWWDIR%%/images/vbox/virtualbox-ova.png %%WWWDIR%%/images/vbox/virtualbox-ovf.png @@ -377,16 +382,49 @@ %%WWWDIR%%/images/vbox/virtualbox-vmdk.png %%WWWDIR%%/images/vbox/vm_add_16px.png %%WWWDIR%%/images/vbox/vm_clone_16px.png +%%WWWDIR%%/images/vbox/vm_clone_22px.png %%WWWDIR%%/images/vbox/vm_clone_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_clone_disabled_22px.png +%%WWWDIR%%/images/vbox/vm_delete_16px.png +%%WWWDIR%%/images/vbox/vm_delete_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_discard_16px.png %%WWWDIR%%/images/vbox/vm_discard_32px.png +%%WWWDIR%%/images/vbox/vm_discard_disabled_16px.png %%WWWDIR%%/images/vbox/vm_discard_disabled_32px.png +%%WWWDIR%%/images/vbox/vm_group_create_16px.png +%%WWWDIR%%/images/vbox/vm_group_create_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_group_name_16px.png +%%WWWDIR%%/images/vbox/vm_group_name_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_group_remove_16px.png +%%WWWDIR%%/images/vbox/vm_group_remove_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_new_16px.png %%WWWDIR%%/images/vbox/vm_new_32px.png %%WWWDIR%%/images/vbox/vm_new_disabled_32px.png +%%WWWDIR%%/images/vbox/vm_open_filemanager_16px.png +%%WWWDIR%%/images/vbox/vm_open_filemanager_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_pause_16px.png +%%WWWDIR%%/images/vbox/vm_pause_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_pause_on_16px.png +%%WWWDIR%%/images/vbox/vm_pause_on_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_poweroff_16px.png %%WWWDIR%%/images/vbox/vm_poweroff_32px.png +%%WWWDIR%%/images/vbox/vm_poweroff_disabled_16px.png %%WWWDIR%%/images/vbox/vm_poweroff_disabled_32px.png +%%WWWDIR%%/images/vbox/vm_reset_16px.png +%%WWWDIR%%/images/vbox/vm_reset_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_save_state_16px.png +%%WWWDIR%%/images/vbox/vm_save_state_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_settings_16px.png %%WWWDIR%%/images/vbox/vm_settings_32px.png +%%WWWDIR%%/images/vbox/vm_settings_disabled_16px.png %%WWWDIR%%/images/vbox/vm_settings_disabled_32px.png +%%WWWDIR%%/images/vbox/vm_show_logs_16px.png +%%WWWDIR%%/images/vbox/vm_show_logs_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_shutdown_16px.png +%%WWWDIR%%/images/vbox/vm_shutdown_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_start_16px.png %%WWWDIR%%/images/vbox/vm_start_32px.png +%%WWWDIR%%/images/vbox/vm_start_disabled_16px.png %%WWWDIR%%/images/vbox/vm_start_disabled_32px.png %%WWWDIR%%/images/vbox/vmw_clone_bg.png %%WWWDIR%%/images/vbox/vmw_first_run_bg.png @@ -399,6 +437,9 @@ %%WWWDIR%%/images/vbox/vrdp_disabled_16px.png %%WWWDIR%%/images/vbox/vrdp_disabled_32px.png %%WWWDIR%%/images/vbox/vrdp_on_16px.png +%%WWWDIR%%/images/vbox/vrdp_on_disabled_16px.png +%%WWWDIR%%/images/vbox/vtx_amdv_16px.png +%%WWWDIR%%/images/vbox/vtx_amdv_disabled_16px.png %%WWWDIR%%/images/vbox/welcome.png %%WWWDIR%%/images/wizard_bg.png %%WWWDIR%%/index.html @@ -455,8 +496,8 @@ %%WWWDIR%%/lib/utils.php %%WWWDIR%%/lib/vboxServiceWrappers.php %%WWWDIR%%/lib/vboxconnector.php -%%WWWDIR%%/lib/vboxweb-4.2.wsdl -%%WWWDIR%%/lib/vboxwebService-4.2.wsdl +%%WWWDIR%%/lib/vboxweb-4.3.wsdl +%%WWWDIR%%/lib/vboxwebService-4.3.wsdl %%WWWDIR%%/panes/about.html %%WWWDIR%%/panes/chooser.html %%WWWDIR%%/panes/guestNetAdapters.html @@ -467,6 +508,7 @@ %%WWWDIR%%/panes/settingsGlobalGeneral.html %%WWWDIR%%/panes/settingsGlobalLanguage.html %%WWWDIR%%/panes/settingsGlobalNetwork.html +%%WWWDIR%%/panes/settingsGlobalNetworkNATPortForwarding.html %%WWWDIR%%/panes/settingsGlobalUsers.html %%WWWDIR%%/panes/settingsNetwork.html %%WWWDIR%%/panes/settingsParallelPorts.html From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 18:00:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C26039C; Thu, 23 Jan 2014 18:00:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 48313188A; Thu, 23 Jan 2014 18:00:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NI0bM0051722; Thu, 23 Jan 2014 18:00:37 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NI0ao4051581; Thu, 23 Jan 2014 18:00:36 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201401231800.s0NI0ao4051581@svn.freebsd.org> From: Steven Kreuzer Date: Thu, 23 Jan 2014 18:00:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340842 - head/www/p5-HTTP-BrowserDetect X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 18:00:37 -0000 Author: skreuzer Date: Thu Jan 23 18:00:36 2014 New Revision: 340842 URL: http://svnweb.freebsd.org/changeset/ports/340842 QAT: https://qat.redports.org/buildarchive/r340842/ Log: Update to 1.67 Modified: head/www/p5-HTTP-BrowserDetect/Makefile head/www/p5-HTTP-BrowserDetect/distinfo Modified: head/www/p5-HTTP-BrowserDetect/Makefile ============================================================================== --- head/www/p5-HTTP-BrowserDetect/Makefile Thu Jan 23 17:19:17 2014 (r340841) +++ head/www/p5-HTTP-BrowserDetect/Makefile Thu Jan 23 18:00:36 2014 (r340842) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= HTTP-BrowserDetect -PORTVERSION= 1.66 +PORTVERSION= 1.67 CATEGORIES= www perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:OALDERS Modified: head/www/p5-HTTP-BrowserDetect/distinfo ============================================================================== --- head/www/p5-HTTP-BrowserDetect/distinfo Thu Jan 23 17:19:17 2014 (r340841) +++ head/www/p5-HTTP-BrowserDetect/distinfo Thu Jan 23 18:00:36 2014 (r340842) @@ -1,2 +1,2 @@ -SHA256 (HTTP-BrowserDetect-1.66.tar.gz) = c35614b3bfdb7f51f439f66af327ca23c23bebf3b9ac69c86ecf936da02a07cc -SIZE (HTTP-BrowserDetect-1.66.tar.gz) = 44902 +SHA256 (HTTP-BrowserDetect-1.67.tar.gz) = d0740e579c91bb8790bf91d7b72132a526b82e95b3b992611e728522a8cf9c05 +SIZE (HTTP-BrowserDetect-1.67.tar.gz) = 45048 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 18:06:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15123658; Thu, 23 Jan 2014 18:06:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 003F7193A; Thu, 23 Jan 2014 18:06:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NI6Ouq055129; Thu, 23 Jan 2014 18:06:24 GMT (envelope-from dbn@svn.freebsd.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NI6NKd055122; Thu, 23 Jan 2014 18:06:23 GMT (envelope-from dbn@svn.freebsd.org) Message-Id: <201401231806.s0NI6NKd055122@svn.freebsd.org> From: David Naylor Date: Thu, 23 Jan 2014 18:06:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340843 - in head/multimedia: . py-ffmpeg py-ffmpeg/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.17 Precedence: list List-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, 23 Jan 2014 18:06:25 -0000 Author: dbn Date: Thu Jan 23 18:06:23 2014 New Revision: 340843 URL: http://svnweb.freebsd.org/changeset/ports/340843 QAT: https://qat.redports.org/buildarchive/r340843/ Log: Add emulators/py-ffmpeg 1.2.4. This is python bindings for ffmpeg, specifically designed for Android for use by Kivy (x11-toolkits/py-kivy). Added: head/multimedia/py-ffmpeg/ head/multimedia/py-ffmpeg/Makefile (contents, props changed) head/multimedia/py-ffmpeg/distinfo (contents, props changed) head/multimedia/py-ffmpeg/files/ head/multimedia/py-ffmpeg/files/patch-setup.py (contents, props changed) head/multimedia/py-ffmpeg/pkg-descr (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Thu Jan 23 18:00:36 2014 (r340842) +++ head/multimedia/Makefile Thu Jan 23 18:06:23 2014 (r340843) @@ -282,6 +282,7 @@ SUBDIR += pwcbsd SUBDIR += pwcview SUBDIR += py-enzyme + SUBDIR += py-ffmpeg SUBDIR += py-guessit SUBDIR += py-gstreamer SUBDIR += py-kaa-base Added: head/multimedia/py-ffmpeg/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-ffmpeg/Makefile Thu Jan 23 18:06:23 2014 (r340843) @@ -0,0 +1,36 @@ +# Created by: David Naylor +# $FreeBSD$ + +PORTNAME= ffmpeg +PORTVERSION= 1.2.4 +CATEGORIES= multimedia python +MASTER_SITES= LOCAL/dbn/${PORTNAME} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME}-android-${PORTVERSION} + +MAINTAINER= dbn@FreeBSD.org +COMMENT= Python bindings for FFmpeg + +LICENSE= LGPL20 LGPL21 LGPL3 +LICENSE_COMB= dual + +BUILD_DEPENDS= cython:${PORTSDIR}/lang/cython +LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg + +MAKE_ENV= FFMPEG_LIBRARIES="SDL SDL_mixer" FFMPEG_LIBRARY_DIRS=${LOCALBASE}/lib \ + FFMPEG_INCLUDES=${LOCALBASE}/include/SDL FFMPEG_ROOT=${LOCALBASE} +GH_ACCOUNT= tito +GH_PROJECT= ${PORTNAME}-android +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 6636c3a +USE_GITHUB= yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_SDL= mixer +WRKSRC_SUBDIR= python + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/ffmpeg/_ffmpeg.so + +.include Added: head/multimedia/py-ffmpeg/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-ffmpeg/distinfo Thu Jan 23 18:06:23 2014 (r340843) @@ -0,0 +1,2 @@ +SHA256 (ffmpeg-android-1.2.4.tar.gz) = 1b3692bcc06765794e78b8906617b6ce697dd8044ad6c9ca620666908f2c8c7a +SIZE (ffmpeg-android-1.2.4.tar.gz) = 7380012 Added: head/multimedia/py-ffmpeg/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-ffmpeg/files/patch-setup.py Thu Jan 23 18:06:23 2014 (r340843) @@ -0,0 +1,32 @@ +--- setup.py.orig 2013-10-28 18:04:02.000000000 +0200 ++++ setup.py 2014-01-22 21:29:49.000000000 +0200 +@@ -15,7 +15,7 @@ + library_dirs = [] + include_dirs = [] + extra_objects = [] +-extra_compile_args=['-ggdb', '-O0'] ++extra_compile_args=['-fPIC'] + + ext_files = ['ffmpeg/_ffmpeg.pyx'] + root_ffmpeg = environ.get('FFMPEG_ROOT') +@@ -29,14 +29,13 @@ + if environ.get('FFMPEG_LIBRARY_DIRS'): + library_dirs += environ.get('FFMPEG_LIBRARY_DIRS').split(' ') + libraries = environ.get('FFMPEG_LIBRARIES', 'gcc z sdl sdl_mixer m').split(' ') +- extra_compile_args = ['-ggdb', '-O0'] + p = join(root_ffmpeg, 'lib') +- extra_objects = [ +- join(p, 'libavformat.a'), +- join(p, 'libavcodec.a'), +- join(p, 'libswscale.a'), +- join(p, 'libavresample.a'), +- join(p, 'libavutil.a')] ++ libraries += [ ++ 'avformat', ++ 'avcodec', ++ 'swscale', ++ 'avresample', ++ 'avutil'] + + elif not have_cython: + # Special hack for PGS4A-android, should we deprecated it ? Added: head/multimedia/py-ffmpeg/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/py-ffmpeg/pkg-descr Thu Jan 23 18:06:23 2014 (r340843) @@ -0,0 +1,5 @@ +py-ffmpeg includes a specific Python wrapper to decode audio / video, +implemented to be as portable as possible. The goal is to use it for a +core provider in the Kivy project, on android platform. + +WWW: http://txzone.net/ From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 18:09:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCB86784; Thu, 23 Jan 2014 18:09:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9D683195B; Thu, 23 Jan 2014 18:09:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NI93QL055565; Thu, 23 Jan 2014 18:09:03 GMT (envelope-from dbn@svn.freebsd.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NI93Da055563; Thu, 23 Jan 2014 18:09:03 GMT (envelope-from dbn@svn.freebsd.org) Message-Id: <201401231809.s0NI93Da055563@svn.freebsd.org> From: David Naylor Date: Thu, 23 Jan 2014 18:09:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340844 - head/x11-toolkits/py-kivy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 18:09:03 -0000 Author: dbn Date: Thu Jan 23 18:09:03 2014 New Revision: 340844 URL: http://svnweb.freebsd.org/changeset/ports/340844 QAT: https://qat.redports.org/buildarchive/r340844/ Log: Add py-ffmpeg as an optional dependency for x11-toolkits/py-kivy. While here simplify the port by using more option macros. Modified: head/x11-toolkits/py-kivy/Makefile Modified: head/x11-toolkits/py-kivy/Makefile ============================================================================== --- head/x11-toolkits/py-kivy/Makefile Thu Jan 23 18:06:23 2014 (r340843) +++ head/x11-toolkits/py-kivy/Makefile Thu Jan 23 18:09:03 2014 (r340844) @@ -31,13 +31,13 @@ USE_PYTHON= 2 SHEBANG_FILES= kivy/lib/osc/OSC.py OPTIONS_DEFINE= DOCS PDF TEST -OPTIONS_SET= ENCHANT OPENCV PYGAME # FFMPEG +OPTIONS_SET= ENCHANT OPENCV PYGAME OPTIONS_SUB= yes OPTIONS_GROUP= VIDEO AUDIO IMAGE CAMERA SPELLING CLIPBOARD OPTIONS_MULTI= WINDOW TEXT OPTIONS_MULTI_WINDOW= PYGAME X11 SDL2 OPTIONS_MULTI_TEXT= PIL PYGAME SDL2 -OPTIONS_GROUP_VIDEO= GSTREAMER # FFMPEG +OPTIONS_GROUP_VIDEO= GSTREAMER FFMPEG OPTIONS_GROUP_AUDIO= GSTREAMER PYGAME SDL2 OPTIONS_GROUP_IMAGE= PIL PYGAME OPTIONS_GROUP_CAMERA= OPENCV GSTREAMER @@ -64,10 +64,12 @@ WINDOW_DESC= Window support (compulsory) DOCS_BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx ENCHANT_DESC= Spell checking support via Enchant ENCHANT_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}enchant>=0:${PORTSDIR}/textproc/py-enchant +FFMPEG_RUN_DEPENDS= ${PYTHON_SITELIBDIR}/ffmpeg/__init__.py:${PORTSDIR}/multimedia/py-ffmpeg GSTREAMER_RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygst.py:${PORTSDIR}/multimedia/py-gstreamer OPENCV_RUN_DEPENDS= ${PYTHON_SITELIBDIR}/cv.py:${PORTSDIR}/graphics/py-opencv PDF_DESC= Build PDF documentation (required TeXLive, DOCS) PDF_BUILD_DEPENDS= sphinx-build:${PORTSDIR}/textproc/py-sphinx +PDF_USE= TEX=texlive,pdftex:build,dvipsk:build PDF_USES= gmake PIL_DESC= Text and window rendering support via PIL PIL_RUN_DEPENDS= ${PYTHON_SITELIBDIR}/PIL:${PORTSDIR}/graphics/py-imaging @@ -76,18 +78,15 @@ PYGAME_RUN_DEPENDS= ${PYTHON_SITELIBDIR} PYGLET_RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pyglet:${PORTSDIR}/graphics/py-pyglet SDL2_DESC= Simple Direct Media Layer v2.0 support SDL2_MAKE_ENV= USE_SDL=1 +SDL2_USE= SDL=sdl2,ttf2,mixer2 TEST_BUILD_DEPENDS= nosetests:${PORTSDIR}/devel/py-nose TEST_USES= display:build -X11_MAKE_ENV+= USE_X11=1 - -.if defined(NOT_IMPLEMENTED) -FFMPEG_RUN_DEPENDS= ${PYTHON_SITELIBDIR}/ffmpeg:${PORTSDIR}/multimedia/py-ffmpeg -.endif +X11_MAKE_ENV= USE_X11=1 +X11_USE= XORG=x11 .include .if ${PORT_OPTIONS:MPDF} -USE_TEX= texlive pdftex:build dvipsk:build .if empty(PORT_OPTIONS:MDOCS) IGNORE= option PDF requires DOCS .endif @@ -97,14 +96,6 @@ IGNORE= option PDF requires DOCS NOSE_ARGS+= --exclude=test_fbo_pixels .endif -.if ${PORT_OPTIONS:MSDL2} -USE_SDL= sdl2 ttf2 mixer2 -.endif - -.if ${PORT_OPTIONS:MX11} -USE_XORG= x11 -.endif - .if ${PORT_OPTIONS:MTEST} post-build: do-test-build From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 18:32:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0463CE1B; Thu, 23 Jan 2014 18:32:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CB9581B7D; Thu, 23 Jan 2014 18:32:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NIWW10066354; Thu, 23 Jan 2014 18:32:32 GMT (envelope-from riggs@svn.freebsd.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NIWWav066351; Thu, 23 Jan 2014 18:32:32 GMT (envelope-from riggs@svn.freebsd.org) Message-Id: <201401231832.s0NIWWav066351@svn.freebsd.org> From: Thomas Zander Date: Thu, 23 Jan 2014 18:32:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340845 - in head/audio/pms: . 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.17 Precedence: list List-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, 23 Jan 2014 18:32:33 -0000 Author: riggs Date: Thu Jan 23 18:32:31 2014 New Revision: 340845 URL: http://svnweb.freebsd.org/changeset/ports/340845 QAT: https://qat.redports.org/buildarchive/r340845/ Log: Fix build failure on FreeBSD 10 Approved by: maintainer (ashish), mentor (thierry) Added: head/audio/pms/files/patch-src_message.h (contents, props changed) Modified: head/audio/pms/Makefile head/audio/pms/pkg-descr Modified: head/audio/pms/Makefile ============================================================================== --- head/audio/pms/Makefile Thu Jan 23 18:09:03 2014 (r340844) +++ head/audio/pms/Makefile Thu Jan 23 18:32:31 2014 (r340845) @@ -10,16 +10,17 @@ MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTNA MAINTAINER= ashish@FreeBSD.org COMMENT= A ncurses-based client for the Music Player Daemon +LICENSE= GPLv3 + LIB_DEPENDS= libboost_regex.so:${PORTSDIR}/devel/boost-libs USES= pkgconfig -NO_STAGE= yes USE_BZIP2= yes GNU_CONFIGURE= yes USE_GNOME= glib20 -MAN1= ${PORTNAME}.1 -PLIST_FILES= bin/${PORTNAME} +PLIST_FILES= bin/${PORTNAME} \ + man/man1/pms.1.gz CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Added: head/audio/pms/files/patch-src_message.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/pms/files/patch-src_message.h Thu Jan 23 18:32:31 2014 (r340845) @@ -0,0 +1,10 @@ +--- src/message.h.orig 2010-01-02 21:53:36.000000000 +0100 ++++ src/message.h 2014-01-19 16:59:54.616726275 +0100 +@@ -25,6 +25,7 @@ + #define _PMS_MESSAGE_H_ + + #include ++#include + + using namespace std; + Modified: head/audio/pms/pkg-descr ============================================================================== --- head/audio/pms/pkg-descr Thu Jan 23 18:09:03 2014 (r340844) +++ head/audio/pms/pkg-descr Thu Jan 23 18:32:31 2014 (r340845) @@ -4,4 +4,4 @@ need an MPD client that is highly config features a simple but powerful interface similar to Vim, and runs on (at least) Linux and Mac OS X. -WWW: http://pms.sourceforge.net/ +WWW: http://pms.sourceforge.net/ From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 18:36:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B9824FCD; Thu, 23 Jan 2014 18:36:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C1271CA4; Thu, 23 Jan 2014 18:36:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NIaLEF066907; Thu, 23 Jan 2014 18:36:21 GMT (envelope-from thierry@svn.freebsd.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NIaKuS066904; Thu, 23 Jan 2014 18:36:20 GMT (envelope-from thierry@svn.freebsd.org) Message-Id: <201401231836.s0NIaKuS066904@svn.freebsd.org> From: Thierry Thomas Date: Thu, 23 Jan 2014 18:36:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340846 - head/www/bugmenot-firefox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 18:36:21 -0000 Author: thierry Date: Thu Jan 23 18:36:20 2014 New Revision: 340846 URL: http://svnweb.freebsd.org/changeset/ports/340846 QAT: https://qat.redports.org/buildarchive/r340846/ Log: Trying to fix it, but mark it as IGNORE, because ATM it is uncompatible with Firefox. Modified: head/www/bugmenot-firefox/Makefile head/www/bugmenot-firefox/distinfo head/www/bugmenot-firefox/pkg-descr Modified: head/www/bugmenot-firefox/Makefile ============================================================================== --- head/www/bugmenot-firefox/Makefile Thu Jan 23 18:32:31 2014 (r340845) +++ head/www/bugmenot-firefox/Makefile Thu Jan 23 18:36:20 2014 (r340846) @@ -2,19 +2,30 @@ # $FreeBSD$ PORTNAME= bugmenot -PORTVERSION= 1.3 +PORTVERSION= 2.2 +DISTVERSIONSUFFIX= -fx CATEGORIES= www -MASTER_SITES= http://extensions.roachfiend.com/ -DISTNAME= ${PORTNAME} -DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}_${PORTREVISION} MAINTAINER= thierry@FreeBSD.org COMMENT= Firefox extension to bypass compulsory web registration -XPI_ID= {987311C6-B504-4aa2-90BF-60CC49808D42} -XPI_FILES= chrome/bugmenot.jar install.js install.rdf license.txt chrome.manifest -XPI_DIRS= chrome +LICENSE= MPL GPLv2 LGPL21 +LICENSE_COMB= dual +LICENSE_FILE= license.txt + +IGNORE= bugmenot is incompatible with Firefox 26+ NO_STAGE= yes + +XPI_NUM= 6349 +XPI_ID= {987311C6-B504-4aa2-90BF-60CC49808D42} + +USES= dos2unix +DOS2UNIX_FILES= license.txt + +XPI_FILES= chrome/bugmenot.jar install.rdf chrome.manifest license.txt \ + defaults/preferences/prefs.js +XPI_DIRS= chrome defaults/preferences defaults + .include "${.CURDIR}/../xpi-adblock/Makefile.xpi" .include Modified: head/www/bugmenot-firefox/distinfo ============================================================================== --- head/www/bugmenot-firefox/distinfo Thu Jan 23 18:32:31 2014 (r340845) +++ head/www/bugmenot-firefox/distinfo Thu Jan 23 18:36:20 2014 (r340846) @@ -1,2 +1,2 @@ -SHA256 (bugmenot-1.3_0/bugmenot.xpi) = 278cb953299e5423ed90c342c228aaa411eaa00fd6518bd73235212084703c18 -SIZE (bugmenot-1.3_0/bugmenot.xpi) = 19249 +SHA256 (xpi/bugmenot-2.2-fx.xpi) = 0a0dce7ba2e97bfb3c64d53cd03cb1e84a3e8b295f48bc5c3f32b6c808067c0c +SIZE (xpi/bugmenot-2.2-fx.xpi) = 22573 Modified: head/www/bugmenot-firefox/pkg-descr ============================================================================== --- head/www/bugmenot-firefox/pkg-descr Thu Jan 23 18:32:31 2014 (r340845) +++ head/www/bugmenot-firefox/pkg-descr Thu Jan 23 18:36:20 2014 (r340846) @@ -3,4 +3,4 @@ Compatibile with Mozilla and current Fir Visit bugmenot.com for full details of their service. -WWW: http://roachfiend.com/archives/2005/02/07/bugmenot/ +WWW: https://addons.mozilla.org/en-US/firefox/addon/6349 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 18:42:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B403294; Thu, 23 Jan 2014 18:42:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1BD111D5C; Thu, 23 Jan 2014 18:42:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NIglak070207; Thu, 23 Jan 2014 18:42:47 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NIglUd070206; Thu, 23 Jan 2014 18:42:47 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201401231842.s0NIglUd070206@svn.freebsd.org> From: Juergen Lock Date: Thu, 23 Jan 2014 18:42:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340847 - head/multimedia/avidemux2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 18:42:48 -0000 Author: nox Date: Thu Jan 23 18:42:47 2014 New Revision: 340847 URL: http://svnweb.freebsd.org/changeset/ports/340847 QAT: https://qat.redports.org/buildarchive/r340847/ Log: - Use gcc and LDFLAGS+=-lc++ on 10+, this seems to fix build as well as runtime. [1] - Use new LIB_DEPENDS syntax. PR: ports/185997 [1] (inspired by) Submitted by: Mathias Picker [1] Modified: head/multimedia/avidemux2/Makefile.common Modified: head/multimedia/avidemux2/Makefile.common ============================================================================== --- head/multimedia/avidemux2/Makefile.common Thu Jan 23 18:36:20 2014 (r340846) +++ head/multimedia/avidemux2/Makefile.common Thu Jan 23 18:42:47 2014 (r340847) @@ -8,12 +8,12 @@ MASTER_SITES= BERLIOS \ DISTNAME= avidemux_${PORTVERSION} BUILD_DEPENDS+= yasm:${PORTSDIR}/devel/yasm -LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad \ - a52.0:${PORTSDIR}/audio/liba52 \ - png15:${PORTSDIR}/graphics/png \ - samplerate.1:${PORTSDIR}/audio/libsamplerate \ - dca.0:${PORTSDIR}/multimedia/libdca \ - execinfo.1:${PORTSDIR}/devel/libexecinfo +LIB_DEPENDS+= libmad.so:${PORTSDIR}/audio/libmad \ + liba52.so:${PORTSDIR}/audio/liba52 \ + libpng15.so:${PORTSDIR}/graphics/png \ + libsamplerate.so:${PORTSDIR}/audio/libsamplerate \ + libdca.so:${PORTSDIR}/multimedia/libdca \ + libexecinfo.so:${PORTSDIR}/devel/libexecinfo LICENSE= GPLv2 @@ -22,9 +22,8 @@ CONFLICTS= avidemux2-2.[0-46-9].* USE_GNOME= libxml2 USE_QT4= # empty -USE_GMAKE= yes WANT_SDL= yes -USES= cmake:outsource pkgconfig iconv +USES= cmake:outsource pkgconfig iconv gmake compiler:features CMAKE_USE_PTHREAD=yes CMAKE_ARGS+= -DTHREADS_HAVE_PTHREAD_ARG:STRING="${PTHREAD_LIBS}" CFLAGS+= -Wno-return-type @@ -59,6 +58,15 @@ PLIST_SUB+= NLS="@comment " QT_NLS="@com .include +# is this kosher? the result seems to run tho... (see ports/185997) +.if $(COMPILER_FEATURES:Mlibc++) +LDFLAGS+= -lc++ +.endif + +.if ${COMPILER_TYPE} == clang +USE_GCC= yes +.endif + # for libexecinfo: (so that __builtin_frame_address() finds the top # of the stack) .if ${ARCH} == "amd64" @@ -106,7 +114,7 @@ PLIST_SUB+= ESD="@comment " .endif .if ${PORT_OPTIONS:MJACK} -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack +LIB_DEPENDS+= libjack.so:${PORTSDIR}/audio/jack PLIST_SUB+= JACK="" .else CMAKE_ARGS+= -DJACK:BOOL=OFF @@ -114,7 +122,7 @@ PLIST_SUB+= JACK="@comment " .endif .if ${PORT_OPTIONS:MPULSEAUDIO} -LIB_DEPENDS+= pulse:${PORTSDIR}/audio/pulseaudio +LIB_DEPENDS+= libpulse.so:${PORTSDIR}/audio/pulseaudio PLIST_SUB+= PULSE="" .else CMAKE_ARGS+= -DPULSEAUDIOSIMPLE:BOOL=OFF @@ -122,7 +130,7 @@ PLIST_SUB+= PULSE="@comment " .endif .if ${PORT_OPTIONS:MFREETYPE} -LIB_DEPENDS+= freetype:${PORTSDIR}/print/freetype2 +LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 PLIST_SUB+= FREETYPE="" .else CMAKE_ARGS+= -DFREETYPE2:BOOL=OFF @@ -130,19 +138,20 @@ PLIST_SUB+= FREETYPE="@comment " .endif .if ${PORT_OPTIONS:MFONTCONFIG} -LIB_DEPENDS+= fontconfig:${PORTSDIR}/x11-fonts/fontconfig +LIB_DEPENDS+= libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig .else CMAKE_ARGS+= -DFONTCONFIG:BOOL=OFF .endif .if ${PORT_OPTIONS:MXVIDEO} -LIB_DEPENDS+= Xv:${PORTSDIR}/x11/libXv +#LIB_DEPENDS+= Xv:${PORTSDIR}/x11/libXv +USE_XORG+= xv .else CMAKE_ARGS+= -DXVIDEO:BOOL=OFF .endif .if ${PORT_OPTIONS:MFAAC} -LIB_DEPENDS+= faac:${PORTSDIR}/audio/faac +LIB_DEPENDS+= libfaac.so:${PORTSDIR}/audio/faac PLIST_SUB+= FAAC="" .else CMAKE_ARGS+= -DFAAC:BOOL=OFF @@ -150,7 +159,7 @@ PLIST_SUB+= FAAC="@comment " .endif .if ${PORT_OPTIONS:MLAME} -LIB_DEPENDS+= mp3lame:${PORTSDIR}/audio/lame +LIB_DEPENDS+= libmp3lame.so:${PORTSDIR}/audio/lame PLIST_SUB+= LAME="" .else CMAKE_ARGS+= -DLAME:BOOL=OFF @@ -158,7 +167,7 @@ PLIST_SUB+= LAME="@comment " .endif .if ${PORT_OPTIONS:MFAAD} -LIB_DEPENDS+= faad:${PORTSDIR}/audio/faad +LIB_DEPENDS+= libfaad.so:${PORTSDIR}/audio/faad PLIST_SUB+= FAAD="" .else CMAKE_ARGS+= -DFAAD:BOOL=OFF -DNeAAC:BOOL=OFF @@ -166,7 +175,7 @@ PLIST_SUB+= FAAD="@comment " .endif .if ${PORT_OPTIONS:MX264} -LIB_DEPENDS+= x264:${PORTSDIR}/multimedia/x264 +LIB_DEPENDS+= libx264.so:${PORTSDIR}/multimedia/x264 PLIST_SUB+= X264="" .else CMAKE_ARGS+= -DX264:BOOL=OFF @@ -174,13 +183,13 @@ PLIST_SUB+= X264="@comment " .endif .if ${PORT_OPTIONS:MVPX} -LIB_DEPENDS+= vpx:${PORTSDIR}/multimedia/libvpx +LIB_DEPENDS+= libvpx.so:${PORTSDIR}/multimedia/libvpx .else CMAKE_ARGS+= -DVPXDEC:BOOL=OFF .endif .if ${PORT_OPTIONS:MXVID} -LIB_DEPENDS+= xvidcore:${PORTSDIR}/multimedia/xvid +LIB_DEPENDS+= libxvidcore.so:${PORTSDIR}/multimedia/xvid PLIST_SUB+= XVID="" .else CMAKE_ARGS+= -DXVID:BOOL=OFF @@ -196,7 +205,7 @@ PLIST_SUB+= SDL="@comment " .endif .if ${PORT_OPTIONS:MVORBIS} -LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis +LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis PLIST_SUB+= VORBIS="" .else CMAKE_ARGS+= -DLIBVORBIS:BOOL=OFF -DVORBIS:BOOL=OFF @@ -204,7 +213,7 @@ PLIST_SUB+= VORBIS="@comment " .endif .if ${PORT_OPTIONS:MAMR} -LIB_DEPENDS+= opencore-amrnb:${PORTSDIR}/audio/opencore-amr +LIB_DEPENDS+= libopencore-amrnb.so:${PORTSDIR}/audio/opencore-amr PLIST_SUB+= AMRNB="" PLIST_SUB+= AMRWB="" .else From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 18:52:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1DF7A851; Thu, 23 Jan 2014 18:52:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E39A91E43; Thu, 23 Jan 2014 18:52:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NIqV0i073961; Thu, 23 Jan 2014 18:52:31 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NIqVuW073958; Thu, 23 Jan 2014 18:52:31 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401231852.s0NIqVuW073958@svn.freebsd.org> From: Mathieu Arnold Date: Thu, 23 Jan 2014 18:52:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340848 - in head/devel: subversion16 subversion17 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 18:52:32 -0000 Author: mat Date: Thu Jan 23 18:52:31 2014 New Revision: 340848 URL: http://svnweb.freebsd.org/changeset/ports/340848 QAT: https://qat.redports.org/buildarchive/r340848/ Log: Add PKGNAMESUFFIX to subversion1{6,7} With hat: portmgr Sponsored by: Absolight Modified: head/devel/subversion16/Makefile.common head/devel/subversion17/Makefile.common Modified: head/devel/subversion16/Makefile.common ============================================================================== --- head/devel/subversion16/Makefile.common Thu Jan 23 18:42:47 2014 (r340847) +++ head/devel/subversion16/Makefile.common Thu Jan 23 18:52:31 2014 (r340848) @@ -5,6 +5,7 @@ PORTNAME= subversion PORTVERSION= #please edit Makefile.inc for PORTVERSION, so ../svnmerge can stay in sync. PORTREVISION?= 2 CATEGORIES+= devel +PKGNAMESUFFIX= 16 MASTER_SITES= http://subversion.tigris.org/downloads/ DIST_SUBDIR= subversion @@ -19,8 +20,6 @@ LICENSE= APACHE20 CONFLICTS_INSTALL+= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-1.[^6].[0-9]* -LATEST_LINK= ${PKGNAMEPREFIX}${PORTNAME}16${PKGNAMESUFFIX} - LIB_DEPENDS+= libapr-1.so:${PORTSDIR}/devel/apr1 \ libsqlite3.so:${PORTSDIR}/databases/sqlite3 \ libexpat.so:${PORTSDIR}/textproc/expat2 Modified: head/devel/subversion17/Makefile.common ============================================================================== --- head/devel/subversion17/Makefile.common Thu Jan 23 18:42:47 2014 (r340847) +++ head/devel/subversion17/Makefile.common Thu Jan 23 18:52:31 2014 (r340848) @@ -7,12 +7,9 @@ PORTREVISION?= 0 CATEGORIES+= devel MASTER_SITES= ${MASTER_SITE_APACHE} DIST_SUBDIR= subversion17 +PKGNAMESUFFIX= 17 MASTER_SITE_SUBDIR= subversion -#·setting·PKGSUFFIX·not·possible·wo.·having·a·Mk/Uses·file·and·fixing·a·bunch·of·ports -#PKGNAMESUFFIX= 17 - - USE_BZIP2= yes USE_AUTOTOOLS= libtool USE_KDE4= # Used below if KWallet support is enabled @@ -21,7 +18,6 @@ USES+= pkgconfig LICENSE= APACHE20 CONFLICTS_INSTALL+= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-1.[^7].[0-9]* -LATEST_LINK= ${PKGNAMEPREFIX}${PORTNAME}17${PKGNAMESUFFIX} LIB_DEPENDS+= libapr-1.so:${PORTSDIR}/devel/apr1 \ libsqlite3.so:${PORTSDIR}/databases/sqlite3 \ From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 18:59:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A826ACE; Thu, 23 Jan 2014 18:59:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 453481E9C; Thu, 23 Jan 2014 18:59:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NIxoVh074824; Thu, 23 Jan 2014 18:59:50 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NIxosu074820; Thu, 23 Jan 2014 18:59:50 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401231859.s0NIxosu074820@svn.freebsd.org> From: John Marino Date: Thu, 23 Jan 2014 18:59:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340849 - head/lang/gcc-aux/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.17 Precedence: list List-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, 23 Jan 2014 18:59:50 -0000 Author: marino Date: Thu Jan 23 18:59:49 2014 New Revision: 340849 URL: http://svnweb.freebsd.org/changeset/ports/340849 QAT: https://qat.redports.org/buildarchive/r340849/ Log: lang/gcc-aux: Update diff-ada, diff-core for Android The majority of these changes affect the android cross-compiler builds. The only build change for the host compiler is builds convert_addresses within a separate file rather than as part of adaint.c. Given that this does not represent a functional change in any way, I just don't see the need to bump PORTREVISION as a result. Modified: head/lang/gcc-aux/files/diff-ada head/lang/gcc-aux/files/diff-core Modified: head/lang/gcc-aux/files/diff-ada ============================================================================== --- head/lang/gcc-aux/files/diff-ada Thu Jan 23 18:52:31 2014 (r340848) +++ head/lang/gcc-aux/files/diff-ada Thu Jan 23 18:59:49 2014 (r340849) @@ -512,7 +512,7 @@ || (defined (__alpha__) && defined (_osf_)) || defined (__APPLE__) cores = (int) sysconf (_SC_NPROCESSORS_ONLN); -@@ -3530,26 +3575,214 @@ +@@ -3530,37 +3575,6 @@ } #endif @@ -535,217 +535,62 @@ -/* Dummy function to satisfy g-trasym.o. See the preprocessor conditional - just above for a list of native platforms that provide a non-dummy - version of this procedure in libaddr2line.a. */ -+/* run-time symbolic traceback support */ -+#if defined (__DragonFly__) \ -+ || defined (__FreeBSD__) \ -+ || defined (__OpenBSD__) \ -+ || defined (__NetBSD__) \ -+ || (defined (__sun__) && defined (__i386__) && defined (__SVR4)) -+ -+/* The above platforms use the external program /usr/bin/addr2line */ -+#define EXTERNAL_SYMTRACE -+ -+#elif defined (VMS) \ -+ || defined (_AIX) \ -+ || defined (__Lynx__) \ -+ || defined (__hpux__) \ -+ || defined (__APPLE__) \ -+ || defined (__MINGW32__) \ -+ || (defined (__mips) && defined (__sgi)) \ -+ || (defined (__alpha__) && defined (__osf__)) \ -+ || (defined (linux) && defined (i386)) \ -+ || (defined (linux) && defined (powerpc)) \ -+ || (defined (linux) && defined (__ia64__)) \ -+ || (defined (linux) && defined (__x86_64__)) \ -+ || (defined (__SVR4) && defined (__sun__) && defined (sparc)) -+ -+/* The above platforms use the system library libaddr2line.a */ -+#define NATIVE_SYMTRACE -+#endif -+ -+#if defined (EXTERNAL_SYMTRACE) && !defined (IS_CROSS) -+ -+/* -+ Copyright (C) 1999 by Juergen Pfeifer -+ Ada for Linux Team (ALT) -+ Heavily modified by John Marino -+ -+ Permission is hereby granted, free of charge, to any person obtaining a -+ copy of this software and associated documentation files (the -+ "Software"), to deal in the Software without restriction, including -+ without limitation the rights to use, copy, modify, merge, publish, -+ distribute, distribute with modifications, sublicense, and/or sell -+ copies of the Software, and to permit persons to whom the Software is -+ furnished to do so, subject to the following conditions: -+ -+ The above copyright notice and this permission notice shall be included -+ in all copies or substantial portions of the Software. -+ -+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -+ IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -+ THE USE OR OTHER DEALINGS IN THE SOFTWARE. -+ -+ Except as contained in this notice, the name(s) of the above copyright -+ holders shall not be used in advertising or otherwise to promote the -+ sale, use or other dealings in this Software without prior written -+ authorization. -+*/ -+ -+#include -+#include -+#include -+#include -+#include -+ -+#define CLOSE_SENDPIPE close(sendpipe[0]); close(sendpipe[1]) -+#define CLOSE_READPIPE close(readpipe[0]); close(readpipe[1]) -+#define DUP2CLOSE(oldfd, newfd) dup2(oldfd, newfd); close(oldfd); -+#define RESTSIG sigaction(SIGPIPE,&oact,NULL) -+ -+#define MAX_LINE 1024 -+#define PARENT_READ readpipe[0] -+#define CHILD_WRITE readpipe[1] -+#define CHILD_READ sendpipe[0] -+#define PARENT_WRITE sendpipe[1] -+ -+#if defined (__sun__) -+#define ADDR2LINE_PROG "/usr/gnu/bin/addr2line" -+#else -+#define ADDR2LINE_PROG "/usr/bin/addr2line" -+#endif +- +-void +-convert_addresses (const char *file_name ATTRIBUTE_UNUSED, +- void *addrs ATTRIBUTE_UNUSED, +- int n_addr ATTRIBUTE_UNUSED, +- void *buf ATTRIBUTE_UNUSED, +- int *len ATTRIBUTE_UNUSED) +-{ +- *len = 0; +-} +-#endif +- + #if defined (_WIN32) + int __gnat_argument_needs_quote = 1; + #else +@@ -3864,6 +3878,17 @@ + CPU_SET (cpu - 1, set); + } + #endif + -+void -+convert_addresses (const char *file_name, -+ void *addrs, -+ int n_addr, -+ void *buf, -+ int *len) ++#ifdef __ANDROID__ ++/* No-op, Android doesn't support pthread_rwlockattr_setkind_np, but we want ++ to use the s-taprop-linux.ads without modification */ ++int __gnat_set_threadlock_kind (pthread_rwlockattr_t *attr ATTRIBUTE_UNUSED, ++ int pref ATTRIBUTE_UNUSED) +{ -+ int max_len = *len; -+ pid_t childpid; -+ -+ struct sigaction act, oact; -+ -+ int sendpipe[2] = {-1,-1}, /* parent -> child */ -+ readpipe[2] = {-1,-1}; /* parent <- child */ -+ -+ *len = 0; -+ act.sa_handler = SIG_IGN; -+ sigemptyset(&act.sa_mask); -+ act.sa_flags = 0; -+ if (sigaction(SIGPIPE,&act,&oact) < 0) -+ return; -+ -+ if (pipe(sendpipe) < 0) { RESTSIG; return; } -+ if (pipe(readpipe) < 0) { CLOSE_SENDPIPE; RESTSIG; return; } -+ if ((childpid = fork()) < 0) { -+ CLOSE_READPIPE; -+ CLOSE_SENDPIPE; -+ RESTSIG; -+ return; -+ } -+ -+ if (childpid == 0) { /* child process */ -+ close(PARENT_WRITE); -+ close(PARENT_READ); -+ if ((CHILD_READ != STDIN_FILENO) && (CHILD_WRITE != STDOUT_FILENO)) { -+ if ((CHILD_READ == STDOUT_FILENO) && (CHILD_WRITE == STDIN_FILENO)) { -+ const int temp_fd = dup(CHILD_WRITE); -+ close (CHILD_WRITE); -+ DUP2CLOSE (CHILD_READ, STDIN_FILENO); -+ DUP2CLOSE (temp_fd, STDOUT_FILENO); -+ } -+ else if ((CHILD_READ == STDIN_FILENO) && (CHILD_WRITE > 1)) { -+ DUP2CLOSE (CHILD_WRITE, STDOUT_FILENO); -+ } -+ else if ((CHILD_READ > 1) && (CHILD_WRITE == STDOUT_FILENO)) { -+ DUP2CLOSE (CHILD_READ, STDIN_FILENO); -+ } -+ else if ((CHILD_READ > 1) && (CHILD_WRITE == STDIN_FILENO)) { -+ DUP2CLOSE (CHILD_WRITE, STDOUT_FILENO); -+ DUP2CLOSE (CHILD_READ, STDIN_FILENO); -+ } -+ else { -+ /* CHILD_READ >= 1 and CHILD_WRITE > 1 */ -+ DUP2CLOSE (CHILD_READ, STDIN_FILENO); -+ DUP2CLOSE (CHILD_WRITE, STDOUT_FILENO); -+ } -+ } -+ /* As pointed out by Florian Weimer to JP, it is a security threat to call -+ the script with a user defined environment and using the path. That -+ would be Trojans pleasure. Therefore the absolute path to addr2line -+ and an empty environment is used. That should be safe. -+ */ -+ char *const argv[] = { "addr2line", -+ "-e", file_name, -+ "--demangle=gnat", -+ "--functions", -+ "--basenames", -+ NULL }; -+ char *const envp[] = { NULL }; -+ if (execve(ADDR2LINE_PROG, argv, envp) < 0) { -+ close (CHILD_WRITE); -+ close (CHILD_READ); -+ RESTSIG; -+ exit (1); -+ } -+ } -+ -+ /* Below this line is parent process */ -+ int i, n; -+ char hex[16]; -+ char line[MAX_LINE + 1]; -+ char *p; -+ char *s = buf; -+ long *trace_address = addrs; -+ -+ close(CHILD_WRITE); -+ close(CHILD_READ); -+ -+ for(i=0; i < n_addr; i++) { -+ snprintf(hex,sizeof(hex),"%#lx\n",*trace_address); -+ write(PARENT_WRITE,hex,strlen(hex)); -+ n = read(PARENT_READ,line,MAX_LINE); -+ if (n<=0) -+ break; -+ -+ line[n]=0; -+ /* We have approx. 16 additional chars for "%#lx in " clause. -+ We use this info to prevent a buffer overrun. */ -+ if (n + 16 + (*len) > max_len) -+ break; -+ -+ p = strchr(line,'\n'); -+ if (p) { -+ if (*(p+1)) { -+ *p = 0; -+ *len += snprintf(s, (max_len - (*len)), "%#lx in %s at %s", -+ *trace_address, line, p+1); -+ } -+ else { -+ *len += snprintf(s, (max_len - (*len)), "%#lx at %s", -+ *trace_address, line); -+ } -+ s = buf + (*len); -+ } -+ trace_address += 1; -+ } -+ close (PARENT_WRITE); -+ close (PARENT_READ); -+ RESTSIG; ++ return 0; +} ++#endif + -+#elif defined (IS_CROSS) || !defined (NATIVE_SYMTRACE) + #endif -+/* run-time symbolic traceback support -+ Dummy function to satisfy g-trasym.o. */ - void - convert_addresses (const char *file_name ATTRIBUTE_UNUSED, - void *addrs ATTRIBUTE_UNUSED, + #ifdef __cplusplus +--- gcc/ada/adaint.h.orig ++++ gcc/ada/adaint.h +@@ -257,6 +257,20 @@ + + #include + ++#ifdef __ANDROID__ ++struct pthread_rwlockattr; ++typedef struct pthread_rwlockattr *pthread_rwlockattr_t; ++typedef struct { ++ unsigned long int __bits[ 1 ]; ++} cpu_set_t; ++# define __CPU_MASK(x) ((unsigned long int)1 << ((x) & 31)) ++# define CPU_ZERO(set_) do { (set_)->__bits[0] = 0; } while(0) ++# define CPU_SET(cpu_,set_) \ ++ do { size_t __cpu = (cpu_); \ ++ if (__cpu < 32) (set_)->__bits[0] |= __CPU_MASK(__cpu); } while (0) ++int __gnat_set_threadlock_kind (pthread_rwlockattr_t *, int); ++#endif ++ + extern cpu_set_t *__gnat_cpu_alloc (size_t); + extern size_t __gnat_cpu_alloc_size (size_t); + extern void __gnat_cpu_free (cpu_set_t *); --- gcc/ada/cio.c.orig +++ gcc/ada/cio.c @@ -46,7 +46,8 @@ @@ -2361,7 +2206,7 @@ -- Take a task lock, to protect the global data value Open_Files --- /dev/null +++ gcc/ada/s-osinte-android.ads -@@ -0,0 +1,566 @@ +@@ -0,0 +1,647 @@ +------------------------------------------------------------------------------ +-- -- +-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- @@ -2371,25 +2216,23 @@ +-- S p e c -- +-- -- +-- Copyright (C) 1991-1994, Florida State University -- -+-- Copyright (C) 1995-2010, Free Software Foundation, Inc. -- ++-- Copyright (C) 1995-2011, Free Software Foundation, Inc. -- +-- -- -+-- GNARL is free software; you can redistribute it and/or modify it under -- ++-- GNAT is free software; you can redistribute it and/or modify it under -- +-- terms of the GNU General Public License as published by the Free Soft- -- -+-- ware Foundation; either version 2, or (at your option) any later ver- -- -+-- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- ++-- ware Foundation; either version 3, or (at your option) any later ver- -- ++-- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- +-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -+-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -+-- for more details. You should have received a copy of the GNU General -- -+-- Public License distributed with GNARL; see file COPYING. If not, write -- -+-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -+-- Boston, MA 02110-1301, USA. -- ++-- or FITNESS FOR A PARTICULAR PURPOSE. -- +-- -- -+-- As a special exception, if other files instantiate generics from this -- -+-- unit, or you link this unit with other files to produce an executable, -- -+-- this unit does not by itself cause the resulting executable to be -- -+-- covered by the GNU General Public License. This exception does not -- -+-- however invalidate any other reasons why the executable file might be -- -+-- covered by the GNU Public License. -- ++-- As a special exception under Section 7 of GPL version 3, you are granted -- ++-- additional permissions described in the GCC Runtime Library Exception, -- ++-- version 3.1, as published by the Free Software Foundation. -- ++-- -- ++-- You should have received a copy of the GNU General Public License and -- ++-- a copy of the GCC Runtime Library Exception along with this program; -- ++-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- ++-- . -- +-- -- +-- GNARL was developed by the GNARL team at Florida State University. -- +-- Extensive contributions were provided by Ada Core Technologies, Inc. -- @@ -2407,6 +2250,7 @@ +with Ada.Unchecked_Conversion; +with Interfaces.C; +with System.Linux; ++with System.OS_Constants; + +package System.OS_Interface is + pragma Preelaborate; @@ -2484,12 +2328,12 @@ + SIGLTHRDBG : constant := System.Linux.SIGLTHRDBG; + + SIGADAABORT : constant := SIGABRT; -+ -- Change this if you want to use another signal for task abort. -+ -- SIGTERM might be a good one. ++ -- Change this to use another signal for task abort. SIGTERM might be a ++ -- good one. + + type Signal_Set is array (Natural range <>) of Signal; + -+ Unmasked : constant Signal_Set := ( ++ Unmasked : constant Signal_Set := ( + SIGTRAP, + -- To enable debugging on multithreaded applications, mark SIGTRAP to + -- be kept unmasked. @@ -2497,24 +2341,22 @@ + SIGBUS, + + SIGTTIN, SIGTTOU, SIGTSTP, -+ -- Keep these three signals unmasked so that background processes -+ -- and IO behaves as normal "C" applications ++ -- Keep these three signals unmasked so that background processes and IO ++ -- behaves as normal "C" applications + + SIGPROF, + -- To avoid confusing the profiler + + SIGKILL, SIGSTOP, -+ -- These two signals actually cannot be masked; -+ -- POSIX simply won't allow it. ++ -- These two signals actually can't be masked (POSIX won't allow it) + + SIGLTHRRES, SIGLTHRCAN, SIGLTHRDBG); -+ -- These three signals are used by GNU/LinuxThreads starting from -+ -- glibc 2.1 (future 2.2). ++ -- These three signals are used by GNU/LinuxThreads starting from glibc ++ -- 2.1 (future 2.2). + -+ Reserved : constant Signal_Set := -+ -- I am not sure why the following two signals are reserved. -+ -- I guess they are not supported by this version of GNU/Linux. -+ (SIGVTALRM, SIGUNUSED); ++ Reserved : constant Signal_Set := (SIGVTALRM, SIGUNUSED); ++ -- Not clear why these two signals are reserved. Perhaps they are not ++ -- supported by this version of GNU/Linux ??? + + type sigset_t is private; + @@ -2632,17 +2474,19 @@ + Ada.Unchecked_Conversion (System.Address, Thread_Body); + + type pthread_t is new unsigned_long; -+ subtype Thread_Id is pthread_t; ++ subtype Thread_Id is pthread_t; + -+ function To_pthread_t is new Ada.Unchecked_Conversion -+ (unsigned_long, pthread_t); ++ function To_pthread_t is ++ new Ada.Unchecked_Conversion (unsigned_long, pthread_t); + -+ type pthread_mutex_t is limited private; -+ type pthread_cond_t is limited private; -+ type pthread_attr_t is limited private; -+ type pthread_mutexattr_t is limited private; -+ type pthread_condattr_t is limited private; -+ type pthread_key_t is private; ++ type pthread_mutex_t is limited private; ++ type pthread_rwlock_t is limited private; ++ type pthread_cond_t is limited private; ++ type pthread_attr_t is limited private; ++ type pthread_mutexattr_t is limited private; ++ type pthread_rwlockattr_t is limited private; ++ type pthread_condattr_t is limited private; ++ type pthread_key_t is private; + + PTHREAD_CREATE_DETACHED : constant := 1; + @@ -2723,6 +2567,42 @@ + function pthread_mutex_unlock (mutex : access pthread_mutex_t) return int; + pragma Import (C, pthread_mutex_unlock, "pthread_mutex_unlock"); + ++ function pthread_rwlockattr_init ++ (attr : access pthread_rwlockattr_t) return int; ++ pragma Import (C, pthread_rwlockattr_init, "pthread_rwlockattr_init"); ++ ++ function pthread_rwlockattr_destroy ++ (attr : access pthread_rwlockattr_t) return int; ++ pragma Import (C, pthread_rwlockattr_destroy, "pthread_rwlockattr_destroy"); ++ ++ PTHREAD_RWLOCK_PREFER_READER_NP : constant := 0; ++ PTHREAD_RWLOCK_PREFER_WRITER_NP : constant := 1; ++ PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP : constant := 2; ++ ++ function pthread_rwlockattr_setkind_np ++ (attr : access pthread_rwlockattr_t; ++ pref : int) return int; ++ pragma Import ++ (C, pthread_rwlockattr_setkind_np, "__gnat_set_threadlock_kind"); ++ ++ function pthread_rwlock_init ++ (mutex : access pthread_rwlock_t; ++ attr : access pthread_rwlockattr_t) return int; ++ pragma Import (C, pthread_rwlock_init, "pthread_rwlock_init"); ++ ++ function pthread_rwlock_destroy ++ (mutex : access pthread_rwlock_t) return int; ++ pragma Import (C, pthread_rwlock_destroy, "pthread_rwlock_destroy"); ++ ++ function pthread_rwlock_rdlock (mutex : access pthread_rwlock_t) return int; ++ pragma Import (C, pthread_rwlock_rdlock, "pthread_rwlock_rdlock"); ++ ++ function pthread_rwlock_wrlock (mutex : access pthread_rwlock_t) return int; ++ pragma Import (C, pthread_rwlock_wrlock, "pthread_rwlock_wrlock"); ++ ++ function pthread_rwlock_unlock (mutex : access pthread_rwlock_t) return int; ++ pragma Import (C, pthread_rwlock_unlock, "pthread_rwlock_unlock"); ++ + function pthread_condattr_init + (attr : access pthread_condattr_t) return int; + pragma Import (C, pthread_condattr_init, "pthread_condattr_init"); @@ -2837,6 +2717,10 @@ + pragma Import (C, pthread_key_create, "pthread_key_create"); + + CPU_SETSIZE : constant := 1_024; ++ -- Size of the cpu_set_t mask on most linux systems (SUSE 11 uses 4_096). ++ -- This is kept for backward compatibility (System.Task_Info uses it), but ++ -- the run-time library does no longer rely on static masks, using ++ -- dynamically allocated masks instead. + + type bit_field is array (1 .. CPU_SETSIZE) of Boolean; + for bit_field'Size use CPU_SETSIZE; @@ -2848,10 +2732,36 @@ + end record; + pragma Convention (C, cpu_set_t); + ++ type cpu_set_t_ptr is access all cpu_set_t; ++ -- In the run-time library we use this pointer because the size of type ++ -- cpu_set_t varies depending on the glibc version. Hence, objects of type ++ -- cpu_set_t are allocated dynamically using the number of processors ++ -- available in the target machine (value obtained at execution time). ++ ++ function CPU_ALLOC (count : size_t) return cpu_set_t_ptr; ++ pragma Import (C, CPU_ALLOC, "__gnat_cpu_alloc"); ++ -- Wrapper around the CPU_ALLOC C macro ++ ++ function CPU_ALLOC_SIZE (count : size_t) return size_t; ++ pragma Import (C, CPU_ALLOC_SIZE, "__gnat_cpu_alloc_size"); ++ -- Wrapper around the CPU_ALLOC_SIZE C macro ++ ++ procedure CPU_FREE (cpuset : cpu_set_t_ptr); ++ pragma Import (C, CPU_FREE, "__gnat_cpu_free"); ++ -- Wrapper around the CPU_FREE C macro ++ ++ procedure CPU_ZERO (count : size_t; cpuset : cpu_set_t_ptr); ++ pragma Import (C, CPU_ZERO, "__gnat_cpu_zero"); ++ -- Wrapper around the CPU_ZERO_S C macro ++ ++ procedure CPU_SET (cpu : int; count : size_t; cpuset : cpu_set_t_ptr); ++ pragma Import (C, CPU_SET, "__gnat_cpu_set"); ++ -- Wrapper around the CPU_SET_S C macro ++ + function pthread_setaffinity_np + (thread : pthread_t; + cpusetsize : size_t; -+ cpuset : access cpu_set_t) return int; ++ cpuset : cpu_set_t_ptr) return int; + pragma Import (C, pthread_setaffinity_np, "pthread_setaffinity_np"); + pragma Weak_External (pthread_setaffinity_np); + -- Use a weak symbol because this function may be available or not, @@ -2860,7 +2770,7 @@ + function pthread_attr_setaffinity_np + (attr : access pthread_attr_t; + cpusetsize : size_t; -+ cpuset : access cpu_set_t) return int; ++ cpuset : cpu_set_t_ptr) return int; + pragma Import (C, pthread_attr_setaffinity_np, + "pthread_attr_setaffinity_np"); + pragma Weak_External (pthread_attr_setaffinity_np); @@ -2869,7 +2779,8 @@ + +private + -+ type sigset_t is array (0 .. 127) of unsigned_char; ++ type sigset_t is ++ array (0 .. OS_Constants.SIZEOF_sigset - 1) of unsigned_char; + pragma Convention (C, sigset_t); + for sigset_t'Alignment use Interfaces.C.unsigned_long'Alignment; + @@ -2893,35 +2804,50 @@ + end record; + pragma Convention (C, timespec); + ++ type unsigned_long_long_t is mod 2 ** 64; ++ -- Local type only used to get the alignment of this type below ++ ++ subtype char_array is Interfaces.C.char_array; ++ + type pthread_attr_t is record -+ detachstate : int; -+ schedpolicy : int; -+ schedparam : struct_sched_param; -+ inheritsched : int; -+ scope : int; -+ guardsize : size_t; -+ stackaddr_set : int; -+ stackaddr : System.Address; -+ stacksize : size_t; ++ Data : char_array (1 .. OS_Constants.PTHREAD_ATTR_SIZE); + end record; + pragma Convention (C, pthread_attr_t); ++ for pthread_attr_t'Alignment use Interfaces.C.unsigned_long'Alignment; + + type pthread_condattr_t is record -+ dummy : int; ++ Data : char_array (1 .. OS_Constants.PTHREAD_CONDATTR_SIZE); + end record; + pragma Convention (C, pthread_condattr_t); ++ for pthread_condattr_t'Alignment use Interfaces.C.int'Alignment; + + type pthread_mutexattr_t is record -+ mutexkind : int; -+ end record; ++ Data : char_array (1 .. OS_Constants.PTHREAD_MUTEXATTR_SIZE); ++ end record; + pragma Convention (C, pthread_mutexattr_t); ++ for pthread_mutexattr_t'Alignment use Interfaces.C.int'Alignment; + -+ type pthread_mutex_t is new System.Linux.pthread_mutex_t; ++ type pthread_mutex_t is record ++ Data : char_array (1 .. OS_Constants.PTHREAD_MUTEX_SIZE); ++ end record; ++ pragma Convention (C, pthread_mutex_t); ++ for pthread_mutex_t'Alignment use Interfaces.C.unsigned_long'Alignment; + -+ type unsigned_long_long_t is mod 2 ** 64; -+ -- Interfaces.C.Extensions isn't preelaborated so cannot be with-ed ++ type pthread_rwlockattr_t is record ++ Data : char_array (1 .. OS_Constants.PTHREAD_RWLOCKATTR_SIZE); ++ end record; ++ pragma Convention (C, pthread_rwlockattr_t); ++ for pthread_rwlockattr_t'Alignment use Interfaces.C.unsigned_long'Alignment; ++ ++ type pthread_rwlock_t is record ++ Data : char_array (1 .. OS_Constants.PTHREAD_RWLOCK_SIZE); ++ end record; ++ pragma Convention (C, pthread_rwlock_t); ++ for pthread_rwlock_t'Alignment use Interfaces.C.unsigned_long'Alignment; + -+ type pthread_cond_t is array (0 .. 47) of unsigned_char; ++ type pthread_cond_t is record ++ Data : char_array (1 .. OS_Constants.PTHREAD_COND_SIZE); ++ end record; + pragma Convention (C, pthread_cond_t); + for pthread_cond_t'Alignment use unsigned_long_long_t'Alignment; + @@ -8993,6 +8919,224 @@ + ZCX_By_Default : constant Boolean := False; + +end System; +--- gcc/ada/terminals.c.orig ++++ gcc/ada/terminals.c +@@ -1015,7 +1015,11 @@ + # include + #endif + ++#ifdef __ANDROID__ ++#define CDISABLE _PC_VDISABLE ++#else + #define CDISABLE _POSIX_VDISABLE ++#endif + + /* On HP-UX and Sun system, there is a bzero function but with a different + signature. Use memset instead */ +--- /dev/null ++++ gcc/ada/traceback_symbolic.c +@@ -0,0 +1,201 @@ ++/* ++ Copyright (C) 1999 by Juergen Pfeifer ++ Ada for Linux Team (ALT) ++ Heavily modified by John Marino ++ ++ Permission is hereby granted, free of charge, to any person obtaining a ++ copy of this software and associated documentation files (the ++ "Software"), to deal in the Software without restriction, including ++ without limitation the rights to use, copy, modify, merge, publish, ++ distribute, distribute with modifications, sublicense, and/or sell ++ copies of the Software, and to permit persons to whom the Software is ++ furnished to do so, subject to the following conditions: ++ ++ The above copyright notice and this permission notice shall be included ++ in all copies or substantial portions of the Software. ++ ++ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ++ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ++ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. ++ IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, ++ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR ++ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR ++ THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++ ++ Except as contained in this notice, the name(s) of the above copyright ++ holders shall not be used in advertising or otherwise to promote the ++ sale, use or other dealings in this Software without prior written ++ authorization. ++*/ ++ ++#ifdef IS_CROSS ++ ++ ++/* ++ * Running addr2line doesn't make sense for cross-compiled objects. ++ * Create a dummy function to satisfy g-trasym.o ++ */ ++ ++void ++convert_addresses (const char *file_name ATTRIBUTE_UNUSED, ++ void *addrs ATTRIBUTE_UNUSED, ++ int n_addr ATTRIBUTE_UNUSED, ++ void *buf ATTRIBUTE_UNUSED, ++ int *len ATTRIBUTE_UNUSED) ++{ ++ *len = 0; ++} ++ ++#else ++ ++ ++/* ++ * use the external program /usr/bin/addr2line to convert addresses ++ * into file names and line numbers ++ */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++#define CLOSE_SENDPIPE close(sendpipe[0]); close(sendpipe[1]) ++#define CLOSE_READPIPE close(readpipe[0]); close(readpipe[1]) ++#define DUP2CLOSE(oldfd, newfd) dup2(oldfd, newfd); close(oldfd); ++#define RESTSIG sigaction(SIGPIPE,&oact,NULL) ++ ++#define MAX_LINE 1024 ++#define PARENT_READ readpipe[0] ++#define CHILD_WRITE readpipe[1] ++#define CHILD_READ sendpipe[0] ++#define PARENT_WRITE sendpipe[1] ++ ++#if defined (__sun__) ++#define ADDR2LINE_PROG "/usr/gnu/bin/addr2line" ++#else ++#define ADDR2LINE_PROG "/usr/bin/addr2line" ++#endif ++ ++void ++convert_addresses (const char *file_name, ++ void *addrs, ++ int n_addr, ++ void *buf, ++ int *len) ++{ ++ int max_len = *len; ++ pid_t childpid; ++ ++ struct sigaction act, oact; ++ ++ int sendpipe[2] = {-1,-1}, /* parent -> child */ ++ readpipe[2] = {-1,-1}; /* parent <- child */ ++ ++ *len = 0; ++ act.sa_handler = SIG_IGN; ++ sigemptyset(&act.sa_mask); ++ act.sa_flags = 0; ++ if (sigaction(SIGPIPE,&act,&oact) < 0) ++ return; ++ ++ if (pipe(sendpipe) < 0) { RESTSIG; return; } ++ if (pipe(readpipe) < 0) { CLOSE_SENDPIPE; RESTSIG; return; } ++ if ((childpid = fork()) < 0) { ++ CLOSE_READPIPE; ++ CLOSE_SENDPIPE; ++ RESTSIG; ++ return; ++ } ++ ++ if (childpid == 0) { /* child process */ ++ close(PARENT_WRITE); ++ close(PARENT_READ); ++ if ((CHILD_READ != STDIN_FILENO) && (CHILD_WRITE != STDOUT_FILENO)) { ++ if ((CHILD_READ == STDOUT_FILENO) && (CHILD_WRITE == STDIN_FILENO)) { ++ const int temp_fd = dup(CHILD_WRITE); ++ close (CHILD_WRITE); ++ DUP2CLOSE (CHILD_READ, STDIN_FILENO); ++ DUP2CLOSE (temp_fd, STDOUT_FILENO); ++ } ++ else if ((CHILD_READ == STDIN_FILENO) && (CHILD_WRITE > 1)) { ++ DUP2CLOSE (CHILD_WRITE, STDOUT_FILENO); ++ } ++ else if ((CHILD_READ > 1) && (CHILD_WRITE == STDOUT_FILENO)) { ++ DUP2CLOSE (CHILD_READ, STDIN_FILENO); ++ } ++ else if ((CHILD_READ > 1) && (CHILD_WRITE == STDIN_FILENO)) { ++ DUP2CLOSE (CHILD_WRITE, STDOUT_FILENO); ++ DUP2CLOSE (CHILD_READ, STDIN_FILENO); ++ } ++ else { ++ /* CHILD_READ >= 1 and CHILD_WRITE > 1 */ ++ DUP2CLOSE (CHILD_READ, STDIN_FILENO); ++ DUP2CLOSE (CHILD_WRITE, STDOUT_FILENO); ++ } ++ } ++ /* As pointed out by Florian Weimer to JP, it is a security threat to call ++ the script with a user defined environment and using the path. That ++ would be Trojans pleasure. Therefore the absolute path to addr2line ++ and an empty environment is used. That should be safe. ++ */ ++ char *const argv[] = { "addr2line", ++ "-e", file_name, ++ "--demangle=gnat", ++ "--functions", ++ "--basenames", ++ NULL }; ++ char *const envp[] = { NULL }; ++ if (execve(ADDR2LINE_PROG, argv, envp) < 0) { ++ close (CHILD_WRITE); ++ close (CHILD_READ); ++ RESTSIG; ++ exit (1); ++ } ++ } ++ ++ /* Below this line is parent process */ ++ int i, n; ++ char hex[16]; ++ char line[MAX_LINE + 1]; ++ char *p; ++ char *s = buf; ++ long *trace_address = addrs; ++ ++ close(CHILD_WRITE); ++ close(CHILD_READ); ++ ++ for(i=0; i < n_addr; i++) { ++ snprintf(hex,sizeof(hex),"%#lx\n",*trace_address); ++ write(PARENT_WRITE,hex,strlen(hex)); ++ n = read(PARENT_READ,line,MAX_LINE); ++ if (n<=0) ++ break; ++ ++ line[n]=0; ++ /* We have approx. 16 additional chars for "%#lx in " clause. ++ We use this info to prevent a buffer overrun. */ ++ if (n + 16 + (*len) > max_len) ++ break; ++ ++ p = strchr(line,'\n'); ++ if (p) { ++ if (*(p+1)) { ++ *p = 0; ++ *len += snprintf(s, (max_len - (*len)), "%#lx in %s at %s", ++ *trace_address, line, p+1); ++ } ++ else { ++ *len += snprintf(s, (max_len - (*len)), "%#lx at %s", ++ *trace_address, line); ++ } ++ s = buf + (*len); ++ } ++ trace_address += 1; ++ } ++ close (PARENT_WRITE); ++ close (PARENT_READ); ++ RESTSIG; ++} ++ ++#endif --- gcc/ada/tracebak.c.orig +++ gcc/ada/tracebak.c @@ -217,6 +217,23 @@ @@ -9029,7 +9173,16 @@ s-inmaop.adb Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00BF24E8; Thu, 23 Jan 2014 19:35:04 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B352911BB; Thu, 23 Jan 2014 19:35:04 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 4E1EEBDC3E; Thu, 23 Jan 2014 20:35:03 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 47E2FBDC24; Thu, 23 Jan 2014 20:35:03 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id CE2DB6119; Thu, 23 Jan 2014 20:35:02 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 6DE996841B00; Thu, 23 Jan 2014 20:35:02 +0100 (CET) Date: Thu, 23 Jan 2014 20:35:02 +0100 From: Mathieu Arnold To: Thomas Zander , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340845 - in head/audio/pms: . files Message-ID: In-Reply-To: <201401231832.s0NIWWav066351@svn.freebsd.org> References: <201401231832.s0NIWWav066351@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 19:35:05 -0000 +--On 23 janvier 2014 18:32:32 +0000 Thomas Zander wrote: | Author: riggs | Date: Thu Jan 23 18:32:31 2014 | New Revision: 340845 | URL: http://svnweb.freebsd.org/changeset/ports/340845 | QAT: https://qat.redports.org/buildarchive/r340845/ | | Log: | Fix build failure on FreeBSD 10 | | Approved by: maintainer (ashish), mentor (thierry) Please try and be thorough in your commit messages, this lacks "add staging support", "add license", and the pkg-descr WWW change, which I usually write down as "pet portlint" :-) -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 19:49:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C415619C; Thu, 23 Jan 2014 19:49:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF9731314; Thu, 23 Jan 2014 19:49:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NJnb7R093953; Thu, 23 Jan 2014 19:49:37 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NJnbrn093951; Thu, 23 Jan 2014 19:49:37 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201401231949.s0NJnbrn093951@svn.freebsd.org> From: Frederic Culot Date: Thu, 23 Jan 2014 19:49:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340850 - head/sysutils/p5-BSD-Sysctl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 19:49:37 -0000 Author: culot Date: Thu Jan 23 19:49:36 2014 New Revision: 340850 URL: http://svnweb.freebsd.org/changeset/ports/340850 QAT: https://qat.redports.org/buildarchive/r340850/ Log: - Update to 0.11 [1] - Add LICENSE (Artistic 1 & GPL 1) PR: ports/185988 [1] Submitted by: David Landgren (maintainer) Modified: head/sysutils/p5-BSD-Sysctl/Makefile head/sysutils/p5-BSD-Sysctl/distinfo Modified: head/sysutils/p5-BSD-Sysctl/Makefile ============================================================================== --- head/sysutils/p5-BSD-Sysctl/Makefile Thu Jan 23 18:59:49 2014 (r340849) +++ head/sysutils/p5-BSD-Sysctl/Makefile Thu Jan 23 19:49:36 2014 (r340850) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= BSD-Sysctl -PORTVERSION= 0.10 +PORTVERSION= 0.11 CATEGORIES= sysutils perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= david@landgren.net COMMENT= Fetch sysctl values from BSD-like systems +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure Modified: head/sysutils/p5-BSD-Sysctl/distinfo ============================================================================== --- head/sysutils/p5-BSD-Sysctl/distinfo Thu Jan 23 18:59:49 2014 (r340849) +++ head/sysutils/p5-BSD-Sysctl/distinfo Thu Jan 23 19:49:36 2014 (r340850) @@ -1,2 +1,2 @@ -SHA256 (BSD-Sysctl-0.10.tar.gz) = 19dd258db0748534b591a562c7eebe2ac0aa64854abb414de8b9bbcf54027645 -SIZE (BSD-Sysctl-0.10.tar.gz) = 23829 +SHA256 (BSD-Sysctl-0.11.tar.gz) = f527c53137c0f9c348699273eee9b54b508555e9b83b2622e0f4c759f4260985 +SIZE (BSD-Sysctl-0.11.tar.gz) = 24166 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 19:55:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5FBD877C; Thu, 23 Jan 2014 19:55:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 48A6113D5; Thu, 23 Jan 2014 19:55:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NJtFYj000243; Thu, 23 Jan 2014 19:55:15 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NJtFPP000242; Thu, 23 Jan 2014 19:55:15 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401231955.s0NJtFPP000242@svn.freebsd.org> From: Mathieu Arnold Date: Thu, 23 Jan 2014 19:55:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340851 - in head: Templates Templates/Licenses Tools Tools/scripts Tools/scripts/mkptools Tools/scripts/release Tools/scripts/sunshar accessibility/eflite/files accessibility/gnopernic... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 19:55:15 -0000 Author: mat Date: Thu Jan 23 19:55:14 2014 New Revision: 340851 URL: http://svnweb.freebsd.org/changeset/ports/340851 QAT: https://qat.redports.org/buildarchive/r340851/ Log: More props fixes, Templates, Tools, categories [abc]. With hat: portmgr Sponsored by: Absolight Modified: Directory Properties: head/Templates/BSD.local.dist (props changed) head/Templates/Licenses/APACHE20 (props changed) head/Templates/Licenses/ART10 (props changed) head/Templates/Licenses/ART20 (props changed) head/Templates/Licenses/GPLv1 (props changed) head/Templates/Licenses/GPLv2 (props changed) head/Templates/Licenses/GPLv3 (props changed) head/Templates/Licenses/LGPL20 (props changed) head/Templates/Licenses/LGPL21 (props changed) head/Templates/Licenses/LGPL3 (props changed) head/Templates/Licenses/LPPL10 (props changed) head/Templates/Licenses/MPL (props changed) head/Templates/Licenses/OFL10 (props changed) head/Templates/Licenses/OFL11 (props changed) head/Templates/Licenses/PHP301 (props changed) head/Templates/Licenses/RUBY (props changed) head/Templates/Licenses/ZPL21 (props changed) head/Templates/README.category (props changed) head/Templates/README.port (props changed) head/Templates/README.top (props changed) head/Templates/config.guess (props changed) head/Templates/config.site (props changed) head/Templates/config.sub (props changed) head/Tools/make_index (props changed) head/Tools/make_readmes (props changed) head/Tools/scripts/MOVEDlint.awk (props changed) head/Tools/scripts/README.patchtool (props changed) head/Tools/scripts/README.portsearch (props changed) head/Tools/scripts/ardiff (props changed) head/Tools/scripts/bad-pkgdescrs.sh (props changed) head/Tools/scripts/bump_revision.pl (props changed) head/Tools/scripts/check-latest-link (props changed) head/Tools/scripts/checkcats.py (props changed) head/Tools/scripts/checknewver.sh (props changed) head/Tools/scripts/checksize.sh (props changed) head/Tools/scripts/checksum.sh (props changed) head/Tools/scripts/chkdepschain.py (props changed) head/Tools/scripts/chkorigin.sh (props changed) head/Tools/scripts/close-pr (props changed) head/Tools/scripts/consistency-check (props changed) head/Tools/scripts/distclean.sh (props changed) head/Tools/scripts/distinfochecker (props changed) head/Tools/scripts/domakedescribe (props changed) head/Tools/scripts/doportlint (props changed) head/Tools/scripts/explicit_lib_depends.sh (props changed) head/Tools/scripts/getpr (props changed) head/Tools/scripts/gnomedepends.py (props changed) head/Tools/scripts/mark_safe.pl (props changed) head/Tools/scripts/mkptools/mkpbuild (props changed) head/Tools/scripts/mkptools/mkpclean (props changed) head/Tools/scripts/mkptools/mkpextr (props changed) head/Tools/scripts/mkptools/mkpinstall (props changed) head/Tools/scripts/mkptools/mkpmerge (props changed) head/Tools/scripts/mkptools/mkppackage (props changed) head/Tools/scripts/mkptools/mkpskel (props changed) head/Tools/scripts/neededlibs.sh (props changed) head/Tools/scripts/notconnected (props changed) head/Tools/scripts/options2ng.sh (props changed) head/Tools/scripts/parse-kdump.tcl (props changed) head/Tools/scripts/patchtool.py (props changed) head/Tools/scripts/plist (props changed) head/Tools/scripts/portsearch (props changed) head/Tools/scripts/portsvar.sh (props changed) head/Tools/scripts/release/README (props changed) head/Tools/scripts/release/checkdeps.pl (props changed) head/Tools/scripts/release/config (props changed) head/Tools/scripts/release/doit.sh (props changed) head/Tools/scripts/release/oneshot.pl (props changed) head/Tools/scripts/release/scrubindex.pl (props changed) head/Tools/scripts/release/setup.sh (props changed) head/Tools/scripts/resolveportsfromlibs.sh (props changed) head/Tools/scripts/rmport (props changed) head/Tools/scripts/security-check.awk (props changed) head/Tools/scripts/splitpatch.pl (props changed) head/Tools/scripts/sunshar.rb (props changed) head/Tools/scripts/sunshar/sunshar.1 (props changed) head/Tools/scripts/update-patches (props changed) head/accessibility/eflite/files/es.conf.sample (props changed) head/accessibility/gnopernicus/files/gnopernicus-mag-config (props changed) head/archivers/bzip/files/COPYRIGHT (props changed) head/archivers/deb2targz/files/deb2targz.sh (props changed) head/archivers/deco/files/extract (props changed) head/archivers/jzip.org/files/jzip.org.sh.in (props changed) head/archivers/ocaml-zip/files/META (props changed) head/archivers/p7zip/files/7z (props changed) head/archivers/paq/files/patch_zpsfx.cpp (props changed) head/archivers/pixz/files/pixz.1 (props changed) head/archivers/rpm2cpio/files/rpm2cpio (props changed) head/archivers/unarj/files/sanitize.c (props changed) head/archivers/unmakeself/files/unmakeself.c (props changed) head/archivers/zip-ada/files/zip-ada.gpr (props changed) head/astro/astrometry/files/os-features-config.h (props changed) head/astro/glunarclock/scripts/pre-configure (props changed) head/astro/google-earth/files/browserwrapper (props changed) head/astro/gpscorrelate/files/gpscorrelate.1 (props changed) head/astro/gpsd/files/gpsd.in (props changed) head/astro/gpsprune/files/gpsprune.sh.in (props changed) head/astro/gpxloggerd/files/gpxloggerd.in (props changed) head/astro/josm/files/josm.sh.in (props changed) head/astro/mkgmap-splitter/files/splitter.sh.in (props changed) head/astro/mkgmap/files/mkgmap.sh.in (props changed) head/astro/openmap/files/openmap.sh.in (props changed) head/astro/xearth/files/freebsd.ftp.markers (props changed) head/astro/xtide/files/xtide.conf.example (props changed) head/audio/atunes/files/atunes.in (props changed) head/audio/aureal-kmod/files/aureal.in (props changed) head/audio/aureal-kmod/files/extra_800000_patch-au88x0.c (props changed) head/audio/autocd/files/autocd.in (props changed) head/audio/csound/files/custom.py.in (props changed) head/audio/csound6/files/custom.py.in (props changed) head/audio/darkice/files/darkice.in (props changed) head/audio/eawplus/files/timidity.cfg (props changed) head/audio/ezstream/files/ezstream.in (props changed) head/audio/festival/files/festival.sh (props changed) head/audio/festival/files/festival_client.sh (props changed) head/audio/festival/files/sitevars.scm (props changed) head/audio/firefly/files/mt-daapd.in (props changed) head/audio/fmio/files/bktrctl.sh (props changed) head/audio/gramofile/files/post-patch-Makefile (props changed) head/audio/gramofile/files/post-patch-bplay.c (props changed) head/audio/gramofile/files/post-patch-playwav.c (props changed) head/audio/gramofile/files/post-patch-reclp_main.c (props changed) head/audio/gsi/files/configure.sh (props changed) head/audio/icecast2/files/icecast2.in (props changed) head/audio/jxm/files/jxm.sh.in (props changed) head/audio/last.fm/files/last.fm.desktop (props changed) head/audio/last.fm/files/lastfm.protocol (props changed) head/audio/lastfm-desktop/files/lastfm-desktop.sh.in (props changed) head/audio/lingot/files/extra-lingot-config-scale.h (props changed) head/audio/linux-musicipserver/files/musicipserver.in (props changed) head/audio/linux-musicipserver/files/recipes.xml.sample (props changed) head/audio/liquidsoap/files/liquidsoap.in (props changed) head/audio/madfufw/files/maudio-devd.conf.in (props changed) head/audio/madfufw/files/maudio.in (props changed) head/audio/mcplay/files/mcplay.1 (props changed) head/audio/mpdas/files/mpdas.in (props changed) head/audio/mpdscribble/files/mpdscribble.in (props changed) head/audio/musiccontrol/files/musiccontrol (props changed) head/audio/musicpd/files/musicpd.in (props changed) head/audio/oss/files/oss.in (props changed) head/audio/praat/files/praat.1 (props changed) head/audio/pulseaudio/files/extra-src_modules_oss_module-oss.c (props changed) head/audio/raop_play/files/getline.c (props changed) head/audio/raop_play/files/getline.h (props changed) head/audio/rplay/files/rplayd.in (props changed) head/audio/rsynth/files/freebsdplay.c (props changed) head/audio/scrobbler/files/extra-encodings-patch (props changed) head/audio/shairport/files/shairport.in (props changed) head/audio/shoutcast/files/shoutcast.in (props changed) head/audio/squeezeboxserver/files/Custom.pm.in (props changed) head/audio/squeezeboxserver/files/custom-convert.conf.in (props changed) head/audio/squeezeboxserver/files/softsqueeze.sh.in (props changed) head/audio/squeezeboxserver/files/squeezeboxserver.in (props changed) head/audio/stymulator/files/ym2wav.1 (props changed) head/audio/stymulator/files/ymplayer.1 (props changed) head/audio/tclmidi/files/BSDmakefile (props changed) head/audio/tclmidi/files/strstream.h (props changed) head/audio/teamspeak3-server/files/teamspeak.in (props changed) head/audio/teamspeak_client/files/TeamSpeak.in (props changed) head/audio/teamspeak_server/files/teamspeak-server.in (props changed) head/audio/tuxguitar/files/tuxguitar.in (props changed) head/audio/umurmur/files/umurmur.in (props changed) head/audio/ventrilo-server/files/ventrilo-server.in (props changed) head/audio/x11amp/files/main.xpm (props changed) head/audio/xcdplayer/files/app.h (props changed) head/audio/xcdplayer/files/cdrom_freebsd.c (props changed) head/audio/xcdplayer/files/cdrom_freebsd.h (props changed) head/audio/zinf/files/sdr2.plugin.S100.audio.rtp.mpa.zinf (props changed) head/benchmarks/bonnie/files/bonnie.1 (props changed) head/benchmarks/himenobench/files/run_benchmark (props changed) head/benchmarks/raidtest/files/raidtest.c (props changed) head/benchmarks/siege/files/siege.config.in (props changed) head/benchmarks/sipp/files/sipp.1 (props changed) head/benchmarks/slowloris/files/extra-nothreads (props changed) head/benchmarks/tcpblast/src/tcpblast.c (props changed) head/benchmarks/thrulay/files/thrulayd.in (props changed) head/benchmarks/unixbench/files/unixbench.in (props changed) head/benchmarks/xdd/files/freebsd.makefile (props changed) head/biology/babel/files/babel.sh (props changed) head/biology/boinc-simap/files/app_info.xml.in (props changed) head/biology/emboss/files/pre-install.in (props changed) head/biology/jalview/files/jalview.sh.in (props changed) head/biology/linux-foldingathome/scripts/FoldingAtHome (props changed) head/biology/p5-AcePerl/files/FREEBSD_DEF (props changed) head/biology/rasmol/files/rasmol (props changed) head/biology/rasmol/scripts/build_viewer (props changed) head/cad/brlcad/files/mged.sh (props changed) head/cad/cider/files/FreeBSD (props changed) head/cad/electric-ng/files/electric-ng.in (props changed) head/cad/fidocadj/files/fidocadj.sh.in (props changed) head/cad/linux-eagle5/files/eagle.sh (props changed) head/cad/netgen/files/netgen_copy_include_for_salome (props changed) head/cad/salome/files/runSalome.csh.in (props changed) head/cad/spice/files/FreeBSD (props changed) head/cad/spice/files/FreeBSD.without_x11 (props changed) head/cad/sweethome3d/files/sweethome3d.sh.in (props changed) head/cad/z88/files/z88.sh (props changed) head/chinese/celvis/files/celvis.1 (props changed) head/chinese/cwtex/files/config.ps (props changed) head/chinese/docproj/src/cjktexsty/cjktexsty.l (props changed) head/chinese/enscript/files/README.BIG5 (props changed) head/chinese/fcitx/files/getline-src_lib_fcitx-utils_utils.c (props changed) head/chinese/fcitx/files/getline-src_lib_fcitx-utils_utils.h (props changed) head/chinese/fcitx/files/nodocs-doc_CMakeLists.txt (props changed) head/chinese/fcitx/files/tpunc-data_punc.mb.zh_CN (props changed) head/chinese/fireflyttf/files/local.conf-sung (props changed) head/chinese/moefonts-cid/files/MOEKai-Regular-ETen-B5-H.gsf (props changed) head/chinese/moefonts-cid/files/MOEKai-Regular-ETen-B5-V.gsf (props changed) head/chinese/moefonts-cid/files/MOESung-Regular-ETen-B5-H.gsf (props changed) head/chinese/moefonts-cid/files/MOESung-Regular-ETen-B5-V.gsf (props changed) head/chinese/opendesktop-fonts/files/local.conf-odo (props changed) head/chinese/pine4/files/dot.pinerc.pgp.sample (props changed) head/chinese/pine4/files/dot.pinerc.sample (props changed) head/chinese/pine4/files/pgpdecode (props changed) head/chinese/pine4/files/pgpencrypt (props changed) head/chinese/pine4/files/pgpsign (props changed) head/chinese/pine4/files/pine.conf (props changed) head/chinese/srecite/files/srecite.desktop (props changed) head/chinese/xemacs21/files/Emacs (props changed) head/chinese/xemacs21/files/sample.emacs (props changed) head/chinese/xpdf/files/dot.xpdfrc.in (props changed) head/chinese/xsim/files/xsim.sh.in (props changed) head/comms/aprsd/files/aprsd (props changed) head/comms/atslog/files/atslogd.in (props changed) head/comms/conserver-com/files/conserver.in (props changed) head/comms/conserver/files/conserver.in (props changed) head/comms/esmska/files/esmska.in (props changed) head/comms/gnokii/files/smsd-Makefile-WITH_GLIB.diff (props changed) head/comms/hylafax/files/README (props changed) head/comms/hylafax/files/hylafax.in (props changed) head/comms/kb/files/README_TIPS (props changed) head/comms/kb/files/kb (props changed) head/comms/kb/files/kb.1 (props changed) head/comms/linrad/files/linrad (props changed) head/comms/lirc/files/lircd.conf.in (props changed) head/comms/lirc/files/lircd.in (props changed) head/comms/mgetty+sendfax/files/mgettycfg.in (props changed) head/comms/mgetty+sendfax/scripts/configure (props changed) head/comms/nec2c/files/carg.c (props changed) head/comms/predict/files/predict.h (props changed) head/comms/predict/files/vocalizer.h (props changed) head/comms/pyla/files/pyla.sh (props changed) head/comms/qpage/files/libwrap_ident_patch-srvrsnpp.c (props changed) head/comms/qpage/files/qpage.in (props changed) head/comms/ser2net/files/ser2net.in (props changed) head/comms/soundmodem/files/soundmodem (props changed) head/comms/thebridge/files/tbd.in (props changed) head/comms/tits/files/tits.in (props changed) head/comms/uarduno/files/ids.txt (props changed) head/comms/viewfax/scripts/pre-configure (props changed) head/comms/wspr/files/wspr (props changed) head/comms/yfklog/files/yfklog.1 (props changed) head/converters/fribidi/files/fribidi-config (props changed) head/converters/recode/files/ru.po (props changed) head/converters/ta2as/files/strtolower.c (props changed) head/converters/uudeview/files/porting.notes (props changed) head/converters/uulib/files/porting.notes (props changed) head/converters/uulib/files/uulib.3 (props changed) head/converters/xdeview/files/porting.notes (props changed) From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 19:57:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4CEB949; Thu, 23 Jan 2014 19:57:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 913DB143B; Thu, 23 Jan 2014 19:57:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NJvWMX000539; Thu, 23 Jan 2014 19:57:32 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NJvWGf000538; Thu, 23 Jan 2014 19:57:32 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401231957.s0NJvWGf000538@svn.freebsd.org> From: Marcus von Appen Date: Thu, 23 Jan 2014 19:57:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340852 - head/audio/py-shout X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 19:57:32 -0000 Author: mva Date: Thu Jan 23 19:57:32 2014 New Revision: 340852 URL: http://svnweb.freebsd.org/changeset/ports/340852 QAT: https://qat.redports.org/buildarchive/r340852/ Log: - Enable stagedir support - Add LICENSE - Convert to PYDISTUTILS_AUTOPLIST - Restrict the supported python versions Deleted: head/audio/py-shout/pkg-plist Modified: head/audio/py-shout/Makefile Modified: head/audio/py-shout/Makefile ============================================================================== --- head/audio/py-shout/Makefile Thu Jan 23 19:55:14 2014 (r340851) +++ head/audio/py-shout/Makefile Thu Jan 23 19:57:32 2014 (r340852) @@ -11,20 +11,21 @@ DISTNAME= ${PORTNAME}-python-${PORTVERSI MAINTAINER= python@FreeBSD.org COMMENT= Python bindings for libshout2 +LICENSE= LGPL20 + LIB_DEPENDS= libshout.so:${PORTSDIR}/audio/libshout2 EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} USES= pkgconfig -NO_STAGE= yes -USE_PYTHON= yes +USE_PYTHON= 2 USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= ${PORTNAME}-python +PYDISTUTILS_AUTOPLIST= yes + +PORTEXAMPLES= example.py -.if !defined(NOPORTEXAMPLES) post-install: - @${MKDIR} ${EXAMPLESDIR} - ${CP} ${WRKSRC}/example.py ${EXAMPLESDIR} -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${CP} ${WRKSRC}/example.py ${STAGEDIR}${EXAMPLESDIR} .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 20:02:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mandree.no-ip.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9194FB92; Thu, 23 Jan 2014 20:02:33 +0000 (UTC) Received: from [IPv6:::1] (localhost6.localdomain6 [IPv6:::1]) by apollo.emma.line.org (Postfix) with ESMTP id 4962823D0FE; Thu, 23 Jan 2014 21:02:31 +0100 (CET) Message-ID: <52E17557.3040208@FreeBSD.org> Date: Thu, 23 Jan 2014 21:02:31 +0100 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Remko Lodder , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340819 - head/security/vuxml References: <201401231003.s0NA3XaT070054@svn.freebsd.org> In-Reply-To: <201401231003.s0NA3XaT070054@svn.freebsd.org> X-Enigmail-Version: 1.5.2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 20:02:33 -0000 Am 23.01.2014 11:03, schrieb Remko Lodder: > Author: remko (src,doc committer) > Date: Thu Jan 23 10:03:33 2014 > New Revision: 340819 > URL: http://svnweb.freebsd.org/changeset/ports/340819 > QAT: https://qat.redports.org/buildarchive/r340819/ > > Log: > Cleanup the HTMLDOC entry, long lines and remove the ... > entries because I think it's not needed. Also adjust > the previous entry by indenting correctly. Could we have a format normalizer that emits the desired format, so we can have "normal format" before the commit? "make validate" did not complain... From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 20:07:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD1E0D71; Thu, 23 Jan 2014 20:07:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 992F11529; Thu, 23 Jan 2014 20:07:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NK7V9h004838; Thu, 23 Jan 2014 20:07:31 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NK7Vdc004836; Thu, 23 Jan 2014 20:07:31 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401232007.s0NK7Vdc004836@svn.freebsd.org> From: Marcus von Appen Date: Thu, 23 Jan 2014 20:07:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340853 - head/databases/py-dbutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 20:07:31 -0000 Author: mva Date: Thu Jan 23 20:07:31 2014 New Revision: 340853 URL: http://svnweb.freebsd.org/changeset/ports/340853 QAT: https://qat.redports.org/buildarchive/r340853/ Log: - Enable stagedir support - Convert to PYDISTUTILS_AUTOPLIST - Convert USE_PYDISTUTILS=easy_install to USE_PYDISTUTILS=yes Deleted: head/databases/py-dbutils/pkg-plist Modified: head/databases/py-dbutils/Makefile Modified: head/databases/py-dbutils/Makefile ============================================================================== --- head/databases/py-dbutils/Makefile Thu Jan 23 19:57:32 2014 (r340852) +++ head/databases/py-dbutils/Makefile Thu Jan 23 20:07:31 2014 (r340853) @@ -13,9 +13,8 @@ DISTNAME= DBUtils-${PORTVERSION} MAINTAINER= python@FreeBSD.org COMMENT= Providing solid, persistent, and pooled connections to a database -USE_PYTHON= 2 -USE_PYDISTUTILS=easy_install -PYDISTUTILS_PKGNAME= DBUtils +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 20:07:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6829DE5E; Thu, 23 Jan 2014 20:07:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3AF681531; Thu, 23 Jan 2014 20:07:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NK7qj9004968; Thu, 23 Jan 2014 20:07:52 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NK7qeW004967; Thu, 23 Jan 2014 20:07:52 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401232007.s0NK7qeW004967@svn.freebsd.org> From: Mathieu Arnold Date: Thu, 23 Jan 2014 20:07:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340854 - in head: . Keywords X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 20:07:52 -0000 Author: mat Date: Thu Jan 23 20:07:51 2014 New Revision: 340854 URL: http://svnweb.freebsd.org/changeset/ports/340854 QAT: https://qat.redports.org/buildarchive/r340854/ Log: Fixup props here too. With hat: portmgr Sponsored by: Absolight Modified: Directory Properties: head/COPYRIGHT (props changed) head/Keywords/info.yaml (props changed) head/README (props changed) From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 20:08:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1B31F73; Thu, 23 Jan 2014 20:08:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 73EBE1542; Thu, 23 Jan 2014 20:08:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NK8h9U005175; Thu, 23 Jan 2014 20:08:43 GMT (envelope-from mandree@svn.freebsd.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NK8hxE005170; Thu, 23 Jan 2014 20:08:43 GMT (envelope-from mandree@svn.freebsd.org) Message-Id: <201401232008.s0NK8hxE005170@svn.freebsd.org> From: Matthias Andree Date: Thu, 23 Jan 2014 20:08:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340855 - head/sysutils/busybox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 20:08:43 -0000 Author: mandree Date: Thu Jan 23 20:08:42 2014 New Revision: 340855 URL: http://svnweb.freebsd.org/changeset/ports/340855 QAT: https://qat.redports.org/buildarchive/r340855/ Log: - Chase busybox-1.22.1-ash.patch size/checksum differences because the file was replaced (The maintainer had previously pulled the wrong file from the repository.) - Add two new fixes. - Bump PORTREVISION. Modified: head/sysutils/busybox/Makefile head/sysutils/busybox/distinfo Modified: head/sysutils/busybox/Makefile ============================================================================== --- head/sysutils/busybox/Makefile Thu Jan 23 20:07:51 2014 (r340854) +++ head/sysutils/busybox/Makefile Thu Jan 23 20:08:42 2014 (r340855) @@ -3,12 +3,16 @@ PORTNAME= busybox PORTVERSION= 1.22.1 +PORTREVISION= 1 CATEGORIES= sysutils misc shells MASTER_SITES= http://www.busybox.net/downloads/ PATCH_SITES= http://www.busybox.net/downloads/fixes-${PORTVERSION}/ PATCH_DIST_STRIP= -p1 -PATCHFILES= busybox-1.22.1-ash.patch +PATCHFILES= busybox-1.22.1-ash.patch \ + busybox-1.22.1-date.patch \ + busybox-1.22.1-iplink.patch \ + # MAINTAINER= mandree@FreeBSD.org COMMENT= Busybox for FreeBSD Modified: head/sysutils/busybox/distinfo ============================================================================== --- head/sysutils/busybox/distinfo Thu Jan 23 20:07:51 2014 (r340854) +++ head/sysutils/busybox/distinfo Thu Jan 23 20:08:42 2014 (r340855) @@ -1,4 +1,8 @@ SHA256 (busybox-1.22.1.tar.bz2) = ae0b029d0a9e4dd71a077a790840e496dd838998e4571b87b60fed7462b6678b SIZE (busybox-1.22.1.tar.bz2) = 2218650 -SHA256 (busybox-1.22.1-ash.patch) = 9917257771ab715480427a6b744785b035d381e7ec0de381faf945bc7abadb97 -SIZE (busybox-1.22.1-ash.patch) = 423 +SHA256 (busybox-1.22.1-ash.patch) = c3b5b5c5522fda8014b12a23c370d7f70f6d1625fefa93a62c5c14414528ad12 +SIZE (busybox-1.22.1-ash.patch) = 344 +SHA256 (busybox-1.22.1-date.patch) = 8502dd7454e948a56fcd8201f4fe9d629d2844b9df2bacff7ee0bb09398d12e8 +SIZE (busybox-1.22.1-date.patch) = 1008 +SHA256 (busybox-1.22.1-iplink.patch) = 186b41734e43ee117cb367055ce6a4d5b3aac671c09d71f2a6347793874d653b +SIZE (busybox-1.22.1-iplink.patch) = 425 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 20:12:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0A3D2E0; Thu, 23 Jan 2014 20:12:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 806F215E3; Thu, 23 Jan 2014 20:12:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NKCJK9008530; Thu, 23 Jan 2014 20:12:19 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NKCIca008526; Thu, 23 Jan 2014 20:12:18 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201401232012.s0NKCIca008526@svn.freebsd.org> From: Cy Schubert Date: Thu, 23 Jan 2014 20:12:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340856 - head/security/krb5-maint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 20:12:19 -0000 Author: cy Date: Thu Jan 23 20:12:18 2014 New Revision: 340856 URL: http://svnweb.freebsd.org/changeset/ports/340856 QAT: https://qat.redports.org/buildarchive/r340856/ Log: Update 1.11.3 --> 1.11.5 Fix build. Modified: head/security/krb5-maint/Makefile head/security/krb5-maint/distinfo head/security/krb5-maint/pkg-plist Modified: head/security/krb5-maint/Makefile ============================================================================== --- head/security/krb5-maint/Makefile Thu Jan 23 20:08:42 2014 (r340855) +++ head/security/krb5-maint/Makefile Thu Jan 23 20:12:18 2014 (r340856) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= krb5-maint -PORTVERSION= 1.11.3 -PORTREVISION= 2 +PORTVERSION= 1.11.5 CATEGORIES= security -MASTER_SITES= http://web.mit.edu/kerberos/dist/${PORTNAME}/${PORTVERSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ +MASTER_SITES= http://web.mit.edu/kerberos/dist/krb5/${PORTVERSION:C/^[0-9]*\.[0-9]*/&X/:C/X\.[0-9]*$//:C/X//}/ DISTNAME= krb5-${PORTVERSION}-signed EXTRACT_SUFX= .tar @@ -79,20 +78,20 @@ MAN8= krb5kdc.8 kadmin.local.8 kdb5_ld CONFIGURE_ARGS+= --program-transform-name="${PROGRAM_TRANSFORM_NAME}" .endif -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src +WRKSRC= ${WRKDIR}/krb5-${PORTVERSION}/src -HTML_DOC_DIR= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/doc/html -PDF_DOC_DIR= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/doc/pdf +HTML_DOC_DIR= ${WRKDIR}/krb5-${PORTVERSION}/doc/html +PDF_DOC_DIR= ${WRKDIR}/krb5-${PORTVERSION}/doc/pdf CONFIGURE_ARGS+= CPPFLAGS="-I${OPENSSLINC} -L${OPENSSLLIB} -L${LOCALBASE}/include" post-extract: - @${TAR} -C ${WRKDIR} -xzf ${WRKDIR}/${PORTNAME}-${PORTVERSION}.tar.gz - @${RM} ${WRKDIR}/${PORTNAME}-${PORTVERSION}.tar.gz ${WRKDIR}/${PORTNAME}-${PORTVERSION}.tar.gz.asc + @${TAR} -C ${WRKDIR} -xzf ${WRKDIR}/krb5-${PORTVERSION}.tar.gz + @${RM} ${WRKDIR}/krb5-${PORTVERSION}.tar.gz ${WRKDIR}/krb5-${PORTVERSION}.tar.gz.asc .if !defined(EXTRACT_PRESERVE_OWNERSHIP) @if [ `id -u` = 0 ]; then \ - ${CHMOD} -R ug-s,go-w ${WRKDIR}/${PORTNAME}-${PORTVERSION}; \ - ${CHOWN} -R 0:0 ${WRKDIR}/${PORTNAME}-${PORTVERSION}; \ + ${CHMOD} -R ug-s,go-w ${WRKDIR}/krb5-${PORTVERSION}; \ + ${CHOWN} -R 0:0 ${WRKDIR}/krb5-${PORTVERSION}; \ fi .endif Modified: head/security/krb5-maint/distinfo ============================================================================== --- head/security/krb5-maint/distinfo Thu Jan 23 20:08:42 2014 (r340855) +++ head/security/krb5-maint/distinfo Thu Jan 23 20:12:18 2014 (r340856) @@ -1,2 +1,2 @@ -SHA256 (krb5-1.11.3-signed.tar) = 9abd94bb94a70996da0f8d90408957154bb543271b097e86c63eb33e5f5751b5 -SIZE (krb5-1.11.3-signed.tar) = 11673600 +SHA256 (krb5-1.11.5-signed.tar) = d3cee29a50b510526fa692c7c23832df60d4d1cfa66de21e288a897bed6b98c2 +SIZE (krb5-1.11.5-signed.tar) = 11714560 Modified: head/security/krb5-maint/pkg-plist ============================================================================== --- head/security/krb5-maint/pkg-plist Thu Jan 23 20:08:42 2014 (r340855) +++ head/security/krb5-maint/pkg-plist Thu Jan 23 20:12:18 2014 (r340856) @@ -38,7 +38,7 @@ include/gssrpc/svc_auth.h include/gssrpc/types.h include/gssrpc/xdr.h include/krb5.h -%%LDAP%%include/krb5/ccselect_plugin.h +include/krb5/ccselect_plugin.h include/krb5/kadm5_hook_plugin.h include/krb5/krb5.h include/krb5/locate_plugin.h From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 20:12:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C8273D8; Thu, 23 Jan 2014 20:12:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D18115F2; Thu, 23 Jan 2014 20:12:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NKCssN008719; Thu, 23 Jan 2014 20:12:54 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NKCsoP008713; Thu, 23 Jan 2014 20:12:54 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401232012.s0NKCsoP008713@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Thu, 23 Jan 2014 20:12:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340857 - in head/dns/powerdns: . 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.17 Precedence: list List-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, 23 Jan 2014 20:12:55 -0000 Author: danilo Date: Thu Jan 23 20:12:54 2014 New Revision: 340857 URL: http://svnweb.freebsd.org/changeset/ports/340857 QAT: https://qat.redports.org/buildarchive/r340857/ Log: - Update from 3.3 to 3.3.1 - Add some experimental backends while here - Convert USE_LUA to USES PR: ports/185824 Submitted by: Ralf van der Enden (maintainer) Added: head/dns/powerdns/files/patch-pdns__Makefile.in (contents, props changed) Deleted: head/dns/powerdns/files/patch-pdns_Makefile_in Modified: head/dns/powerdns/Makefile head/dns/powerdns/distinfo Modified: head/dns/powerdns/Makefile ============================================================================== --- head/dns/powerdns/Makefile Thu Jan 23 20:12:18 2014 (r340856) +++ head/dns/powerdns/Makefile Thu Jan 23 20:12:54 2014 (r340857) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= powerdns -PORTVERSION= 3.3 -PORTREVISION?= 1 +PORTVERSION= 3.3.1 +PORTREVISION?= 0 CATEGORIES= dns ipv6 MASTER_SITES= http://downloads.powerdns.com/releases/ DISTNAME= pdns-${PORTVERSION} @@ -14,12 +14,9 @@ LICENSE= GPLv2 LIB_DEPENDS= libboost_serialization.so:${PORTSDIR}/devel/boost-libs -USE_LUA= 5.1 -LUA_COMPS= lua - CONFLICTS= powerdns-devel-[2-3].[0-9]* -USES= pkgconfig gmake +USES= gmake lua:51 pkgconfig USE_SUBMAKE= YES USE_AUTOTOOLS= libtool USE_LDCONFIG= YES @@ -39,10 +36,11 @@ SUB_FILES= pkg-message USE_RC_SUBR= pdns -OPTIONS_DEFINE= PGSQL PGSQL_LOCAL MYSQL MYSQL_LOCAL \ - OPENDBX OPENLDAP OPENLDAP_LOCAL GEO POLARSSL SQLITE3 TOOLS -OPTIONS_MULTI= DNSSEC -OPTIONS_MULTI_DNSSEC= BOTAN110 CRYPTOPP +OPTIONS_DEFINE= GEO MYSQL MYSQL_LOCAL OPENDBX OPENLDAP OPENLDAP_LOCAL \ + PGSQL PGSQL_LOCAL POLARSSL SQLITE3 TOOLS +OPTIONS_GROUP= DNSSEC EXPERIMENTAL +OPTIONS_GROUP_DNSSEC= BOTAN110 CRYPTOPP +OPTIONS_GROUP_EXPERIMENTAL= LUA MYDNS REMOTE REMOTE_HTTP TINYDNS PGSQL_DESC= PostgreSQL backend PGSQL_LOCAL_DESC= RUN_DEPEND on PostgreSQL server @@ -57,13 +55,21 @@ DNSSEC_DESC= Extra DNSSEC options BOTAN110_DESC= Faster signing + ECDSA & GOST algorithms CRYPTOPP_DESC= ECDSA algorithms POLARSSL_DESC= Use embedded PolarSSL +LUA_DESC= Lua backend +MYDNS_DESC= MyDNS backend +REMOTE_DESC= Remote backend +REMOTE_HTTP_DESC= Enable HTTP for the Remote backed +TINYDNS_DESC= TinyDNS backend TOOLS_DESC= Build extra tools OPTIONS_DEFAULT= PGSQL DNSSEC BOTAN110 POLARSSL OPTIONS_SUB= yes -TOOLS_CONFIGURE_ENABLE= tools +# Don't use CONFIGURE_ENABLE, the configure script +# has a bug. The options are being enabled even using --disable- + +TOOLS_CONFIGURE_ON= --enable-tools PGSQL_CONFIGURE_ON= --with-pgsql=${LOCALBASE} PGSQL_CONFIGURE_OFF= --without-pgsql @@ -75,29 +81,41 @@ MYSQL_CONFIGURE_OFF= --without-mysql MYSQL_USE= MYSQL=YES MYSQL_LOCAL_USE= MYSQL=server +MYDNS_CONFIGURE_ON= --with-mysql=${LOCALBASE} +MYDNS_USE= MYSQL=YES +MYDNS_LOCAL_USE= MYSQL=server + OPENLDAP_CXXFLAGS= -DLDAP_DEPRECATED=1 OPENLDAP_USE= OPENLDAP=YES OPENLDAP_LOCAL_RUN_DEPENDS= openldap-server>=0:${PORTSDIR}/net/openldap24-server +REMOTE_HTTP_CONFIGURE_ON= --enable-remotebackend-http +REMOTE_HTTP_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl + +CRYPTOPP_CONFIGURE_ON= --enable-cryptopp + SQLITE3_USE= SQLITE=3 OPENDBX_LIB_DEPENDS= libopendbx.so:${PORTSDIR}/databases/opendbx -BOTAN110_CONFIGURE_ENABLE= botan1.10 +BOTAN110_CONFIGURE_ON= --enable-botan1.10 BOTAN110_LIB_DEPENDS= libbotan-1.10.so:${PORTSDIR}/security/botan110 +TINYDNS_LIB_DEPENDS= libcdb.so:${PORTSDIR}/databases/tinycdb +TINYDNS_CONFIGURE_ON= CDB_LIBS="-L${LOCALBASE}/lib -lcdb" CDB_CFLAGS="-I${LOCALBASE}/include" + .include .if ${PORT_OPTIONS:MGEO} -MODULES+= "geo" +MODULES+= geo .endif .if ${PORT_OPTIONS:MPGSQL} -MODULES+= "gpgsql" +MODULES+= gpgsql .endif .if ${PORT_OPTIONS:MMYSQL} -MODULES+= "gmysql" +MODULES+= gmysql .endif .if ${PORT_OPTIONS:MPGSQL_LOCAL} @@ -113,7 +131,7 @@ SUB_LIST+= MYSQL_REQ= .endif .if ${PORT_OPTIONS:MOPENLDAP} -MODULES+= "ldap" +MODULES+= ldap .endif .if ${PORT_OPTIONS:MOPENLDAP_LOCAL} @@ -123,15 +141,30 @@ SUB_LIST+= SLAPD_REQ= .endif .if ${PORT_OPTIONS:MSQLITE3} -MODULES+= "gsqlite3" +MODULES+= gsqlite3 +.endif + +.if ${PORT_OPTIONS:MLUA} +MODULES+= lua +.endif + +.if ${PORT_OPTIONS:MMYDNS} +MODULES+= mydns +.endif + +.if ${PORT_OPTIONS:MREMOTE} +MODULES+= remote +.endif + +.if ${PORT_OPTIONS:MTINYDNS} +MODULES+= tinydns .endif .if ${PORT_OPTIONS:MOPENDBX} -MODULES+= "opendbx" +MODULES+= opendbx .endif .if ${PORT_OPTIONS:MCRYPTOPP} -CONFIGURE_ARGS+= --enable-cryptopp . if exists(${LOCALBASE}/lib/libcryptopp.so) LIB_DEPENDS+= libcryptopp.so:${PORTSDIR}/security/cryptopp . else Modified: head/dns/powerdns/distinfo ============================================================================== --- head/dns/powerdns/distinfo Thu Jan 23 20:12:18 2014 (r340856) +++ head/dns/powerdns/distinfo Thu Jan 23 20:12:54 2014 (r340857) @@ -1,2 +1,2 @@ -SHA256 (pdns-3.3.tar.gz) = 93417bb418ccd1eaf85fc98aa9f687ed175de388fa2624a1978b7cd40dc2b0b6 -SIZE (pdns-3.3.tar.gz) = 1360167 +SHA256 (pdns-3.3.1.tar.gz) = feb566994725e049391e9b862c9437ca545f1bb970143d2387e474a6ff645bf3 +SIZE (pdns-3.3.1.tar.gz) = 1403435 Added: head/dns/powerdns/files/patch-pdns__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/powerdns/files/patch-pdns__Makefile.in Thu Jan 23 20:12:54 2014 (r340857) @@ -0,0 +1,49 @@ +--- ./pdns/Makefile.in.orig 2013-12-17 14:47:45.000000000 +0100 ++++ ./pdns/Makefile.in 2014-01-16 13:37:09.328942976 +0100 +@@ -66,7 +66,7 @@ + nproxy$(EXEEXT) notify$(EXEEXT) pdnssec$(EXEEXT) \ + dnsbulktest$(EXEEXT) nsec3dig$(EXEEXT) + @BOTAN110_TRUE@am__append_4 = botan110signers.cc botansigners.cc +-@BOTAN110_TRUE@am__append_5 = $(BOTAN110_LIBS) -lgmp -lrt ++@BOTAN110_TRUE@am__append_5 = $(BOTAN110_LIBS) + @BOTAN18_TRUE@am__append_6 = botan18signers.cc botansigners.cc + @BOTAN18_TRUE@am__append_7 = $(BOTAN18_LIBS) -lgmp + @CRYPTOPP_TRUE@am__append_8 = cryptoppsigners.cc +@@ -74,7 +74,7 @@ + @SQLITE3_TRUE@am__append_10 = ssqlite3.cc ssqlite3.hh + @ORACLE_TRUE@am__append_11 = $(ORACLE_LIBS) + @BOTAN110_TRUE@am__append_12 = botan110signers.cc botansigners.cc +-@BOTAN110_TRUE@am__append_13 = $(BOTAN110_LIBS) -lgmp -lrt ++@BOTAN110_TRUE@am__append_13 = $(BOTAN110_LIBS) + @BOTAN18_TRUE@am__append_14 = botan18signers.cc botansigners.cc + @BOTAN18_TRUE@am__append_15 = $(BOTAN18_LIBS) -lgmp + @CRYPTOPP_TRUE@am__append_16 = cryptoppsigners.cc +@@ -750,8 +750,8 @@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ + AM_CXXFLAGS = -DSYSCONFDIR=\"@sysconfdir@\" -DLIBDIR=\"@libdir@\" -DLOCALSTATEDIR=\"@socketdir@\" -Ibackends/bind @THREADFLAGS@ $(LUA_CFLAGS) $(SQLITE3_CFLAGS) $(POLARSSL_CFLAGS) -Iext/rapidjson/include +-AM_CPPFLAGS = -Ibackends/bind $(BOOST_CPPFLAGS) @THREADFLAGS@ \ +- $(LIBCURL_CFLAGS) $(am__append_1) $(am__append_2) ++AM_CPPFLAGS = -Ibackends/bind @THREADFLAGS@ \ ++ $(am__append_1) $(am__append_2) $(BOOST_CPPFLAGS) + EXTRA_DIST = dnslabeltext.rl dnslabeltext.cc mtasker.cc inflighter.cc docs/pdns_control.8 \ + docs/pdns_server.8 docs/zone2sql.8 docs/zone2ldap.8 docs/pdnssec.8 \ + docs/dnsreplay.8 docs/dnsscope.8 docs/dnswasher.8 docs/pdnssec.8 docs/zone2ldap.8 \ +@@ -797,7 +797,7 @@ + # + pdns_server_LDFLAGS = @moduleobjects@ @modulelibs@ @DYNLINKFLAGS@ @LIBDL@ @THREADFLAGS@ $(BOOST_SERIALIZATION_LDFLAGS) -rdynamic + pdns_server_LDADD = $(POLARSSL_LIBS) $(BOOST_SERIALIZATION_LIBS) \ +- $(LUA_LIBS) $(SQLITE3_LIBS) $(LIBCURL_LIBS) $(am__append_5) \ ++ $(LUA_LIBS) $(SQLITE3_LIBS) $(am__append_5) \ + $(am__append_7) $(am__append_9) $(am__append_11) + pdnssec_SOURCES = pdnssec.cc dbdnsseckeeper.cc sstuff.hh dnsparser.cc \ + dnsparser.hh dnsrecords.cc dnswriter.cc dnswriter.hh misc.cc \ +@@ -819,7 +819,7 @@ + $(am__append_18) + pdnssec_LDFLAGS = @moduleobjects@ @modulelibs@ @DYNLINKFLAGS@ @LIBDL@ @THREADFLAGS@ $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_SERIALIZATION_LDFLAGS) + pdnssec_LDADD = $(POLARSSL_LIBS) $(BOOST_PROGRAM_OPTIONS_LIBS) \ +- $(BOOST_SERIALIZATION_LIBS) $(SQLITE3_LIBS) $(LIBCURL_LIBS) \ ++ $(BOOST_SERIALIZATION_LIBS) $(SQLITE3_LIBS) \ + $(am__append_13) $(am__append_15) $(am__append_17) \ + $(am__append_19) + sdig_SOURCES = sdig.cc sstuff.hh dnsparser.cc dnsparser.hh dnsrecords.cc dnswriter.cc dnslabeltext.cc dnswriter.hh \ From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 20:16:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD65D666; Thu, 23 Jan 2014 20:16:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A7A1E1626; Thu, 23 Jan 2014 20:16:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NKGwGL009556; Thu, 23 Jan 2014 20:16:58 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NKGv2e009550; Thu, 23 Jan 2014 20:16:57 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401232016.s0NKGv2e009550@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Thu, 23 Jan 2014 20:16:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340859 - in head/dns/powerdns-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.17 Precedence: list List-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, 23 Jan 2014 20:16:58 -0000 Author: danilo Date: Thu Jan 23 20:16:57 2014 New Revision: 340859 URL: http://svnweb.freebsd.org/changeset/ports/340859 QAT: https://qat.redports.org/buildarchive/r340859/ Log: - Update from 3.3 to 3.3.1 - Add some experimental backends while here - Convert USE_LUA to USES PR: ports/185824 Submitted by: Ralf van der Enden (maintainer) Added: head/dns/powerdns-devel/files/pdns.in (contents, props changed) Deleted: head/dns/powerdns-devel/files/pdns-devel.in Modified: head/dns/powerdns-devel/Makefile head/dns/powerdns-devel/distinfo head/dns/powerdns-devel/pkg-plist Modified: head/dns/powerdns-devel/Makefile ============================================================================== --- head/dns/powerdns-devel/Makefile Thu Jan 23 20:13:09 2014 (r340858) +++ head/dns/powerdns-devel/Makefile Thu Jan 23 20:16:57 2014 (r340859) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= powerdns -PORTVERSION= 3.3 +PORTVERSION= 3.3.1 PORTREVISION?= 0 PORTEPOCH= 1 CATEGORIES= dns ipv6 @@ -20,17 +20,14 @@ LIB_DEPENDS= libboost_serialization.so:$ USE_GITHUB= YES GH_ACCOUNT= PowerDNS GH_PROJECT= pdns -GH_TAGNAME= auth-3.3 -GH_COMMIT= b8fe1df - -USE_LUA= 5.1 -LUA_COMPS= lua +GH_TAGNAME= auth-3.3.1 +GH_COMMIT= 8e1c18b CONFLICTS= powerdns-[2-3].[0-9]* NO_LATEST_LINK= YES -USES= bison gmake pkgconfig +USES= bison gmake lua:51 pkgconfig USE_SUBMAKE= YES USE_AUTOTOOLS= autoconf:env automake:env libtool:env USE_LDCONFIG= YES @@ -49,14 +46,14 @@ SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFI SUB_FILES= pkg-message -USE_RC_SUBR+= pdns-devel +USE_RC_SUBR+= pdns OPTIONS_DEFINE= GEO MYSQL MYSQL_LOCAL OPENDBX OPENLDAP OPENLDAP_LOCAL \ PGSQL PGSQL_LOCAL POLARSSL SQLITE3 TOOLS -OPTIONS_MULTI= DNSSEC -OPTIONS_MULTI_DNSSEC= BOTAN110 CRYPTOPP +OPTIONS_GROUP= DNSSEC EXPERIMENTAL +OPTIONS_GROUP_DNSSEC= BOTAN110 CRYPTOPP +OPTIONS_GROUP_EXPERIMENTAL= LUA MYDNS REMOTE REMOTE_HTTP TINYDNS -BACKENDS_DESC= Choose backend(s) PGSQL_DESC= PostgreSQL backend PGSQL_LOCAL_DESC= RUN_DEPEND on PostgreSQL server MYSQL_DESC= MySQL backend @@ -67,16 +64,25 @@ OPENLDAP_LOCAL_DESC= RUN_DEPEND on OpenL SQLITE3_DESC= SQLite 3 backend GEO_DESC= Geo backend DNSSEC_DESC= Enable extra DNSSEC options +EXPERIMENTAL_DESC= Experimental backends BOTAN110_DESC= Faster signing + ECDSA & GOST algorithms CRYPTOPP_DESC= ECDSA algorithms POLARSSL_DESC= Use embedded PolarSSL +LUA_DESC= Lua backend +MYDNS_DESC= MyDNS backend +REMOTE_DESC= Remote backend +REMOTE_HTTP_DESC= Enable HTTP for the Remote backend +TINYDNS_DESC= TinyDNS backend TOOLS_DESC= Build extra tools OPTIONS_DEFAULT= PGSQL DNSSEC BOTAN110 POLARSSL OPTIONS_SUB= yes -TOOLS_CONFIGURE_ENABLE= tools +# Don't use CONFIGURE_ENABLE, the configure script +# has a bug. The options are being enabled even using --disable- + +TOOLS_CONFIGURE_ON= --enable-tools PGSQL_CONFIGURE_ON= --with-pgsql=${LOCALBASE} PGSQL_CONFIGURE_OFF= --without-pgsql @@ -88,29 +94,41 @@ MYSQL_CONFIGURE_OFF= --without-mysql MYSQL_USE= MYSQL=YES MYSQL_LOCAL_USE= MYSQL=server +MYDNS_CONFIGURE_ON= --with-mysql=${LOCALBASE} +MYDNS_USE= MYSQL=YES +MYDNS_LOCAL_USE= MYSQL=server + OPENLDAP_CXXFLAGS= -DLDAP_DEPRECATED=1 OPENLDAP_USE= OPENLDAP=YES OPENLDAP_LOCAL_RUN_DEPENDS= openldap-server>=0:${PORTSDIR}/net/openldap24-server +REMOTE_HTTP_CONFIGURE_ON= --enable-remotebackend-http +REMOTE_HTTP_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl + SQLITE3_USE= SQLITE=3 OPENDBX_LIB_DEPENDS= libopendbx.so:${PORTSDIR}/databases/opendbx -BOTAN110_CONFIGURE_ENABLE= botan1.10 +BOTAN110_CONFIGURE_ON= --enable-botan1.10 BOTAN110_LIB_DEPENDS= libbotan-1.10.so:${PORTSDIR}/security/botan110 -.include +TINYDNS_LIB_DEPENDS= libcdb.so:${PORTSDIR}/databases/tinycdb +TINYDNS_CONFIGURE_ON= CDB_LIBS="-L${LOCALBASE}/lib -lcdb" CDB_CFLAGS="-I${LOCALBASE}/include" + +CRYPTOPP_CONFIGURE_ON= --enable-cryptopp + +.include .if ${PORT_OPTIONS:MGEO} -MODULES+= "geo" +MODULES+= geo .endif .if ${PORT_OPTIONS:MPGSQL} -MODULES+= "gpgsql" +MODULES+= gpgsql .endif .if ${PORT_OPTIONS:MMYSQL} -MODULES+= "gmysql" +MODULES+= gmysql .endif .if ${PORT_OPTIONS:MPGSQL_LOCAL} @@ -126,7 +144,7 @@ SUB_LIST+= MYSQL_REQ= .endif .if ${PORT_OPTIONS:MOPENLDAP} -MODULES+= "ldap" +MODULES+= ldap .endif .if ${PORT_OPTIONS:MOPENLDAP_LOCAL} @@ -136,11 +154,27 @@ SUB_LIST+= SLAPD_REQ= .endif .if ${PORT_OPTIONS:MSQLITE3} -MODULES+= "gsqlite3" +MODULES+= gsqlite3 +.endif + +.if ${PORT_OPTIONS:MLUA} +MODULES+= lua +.endif + +.if ${PORT_OPTIONS:MMYDNS} +MODULES+= mydns +.endif + +.if ${PORT_OPTIONS:MREMOTE} +MODULES+= remote +.endif + +.if ${PORT_OPTIONS:MTINYDNS} +MODULES+= tinydns .endif .if ${PORT_OPTIONS:MOPENDBX} -MODULES+= "opendbx" +MODULES+= opendbx .endif .if ${PORT_OPTIONS:MPOLARSSL} @@ -155,13 +189,11 @@ LIB_DEPENDS+= libcryptopp.so:${PORTSDIR . else BUILD_DEPENDS+= ${LOCALBASE}/lib/libcryptopp.a:${PORTSDIR}/security/cryptopp . endif -CONFIGURE_ARGS+= --enable-cryptopp .endif pre-patch: - ${ECHO_CMD} ${BARBA} @${REINPLACE_CMD} -e "s;/bin/bash;/usr/bin/env bash;" \ - -e "s;ssed -r;sed -E -e;g" \ + -e "s;sed -r;sed -E -e;g" \ -e "s;-i;-i \.bak;g" \ ${WRKSRC}/build-scripts/set-version-auth @${REINPLACE_CMD} -e 's;\$$(LIBCURL_LIBS) \$$(MYSQL_lib);;g' \ @@ -182,21 +214,25 @@ pre-patch: @${REINPLACE_CMD} -E -e 's;(PGSQL_inc_check="\$$withval/include/pgsql)";\1 \$$withval/include";' \ ${WRKSRC}/configure.ac .endif +.if ${PORT_OPTIONS:MREMOTE_HTTP} + @${REINPLACE_CMD} -E -e 's;-module -avoid-version;-module -avoid-version \$$(LIBCURL_LIBS);' \ + ${WRKSRC}/modules/remotebackend/Makefile.am +.endif pre-configure: - @(cd ${WRKSRC} && ${WRKSRC}/build-scripts/set-version-auth git-${GH_TAGNAME} 0.0.${GH_TAGNAME} 0.0.${GH_TAGNAME} && ${WRKSRC}/bootstrap) + (cd ${WRKSRC} && ${WRKSRC}/build-scripts/set-version-auth git-${GH_TAGNAME} 0.0.${GH_TAGNAME} 0.0.${GH_TAGNAME} && ${WRKSRC}/bootstrap) post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for i in pdns.conf ${INSTALL_DATA} ${FILESDIR}/$i ${STAGEDIR}${EXAMPLESDIR}/ .endfor -.for j in libgpgsqlbackend.so libgmysqlbackend.so libgsqlite3backend.so \ - libldapbackend.so libopendbxbackend.so libgeobackend.so \ - libpipebackend.so +.for j in libtinydnsbackend.so libremotebackend.so libmydnsbackend.so libgpgsqlbackend.so \ + libgmysqlbackend.so libgsqlite3backend.so libldapbackend.so libopendbxbackend.so \ + libgeobackend.so libpipebackend.so @if ([ -f ${STAGEDIR}${PREFIX}/lib/$j ] && [ ! -f ${STAGEDIR}${PREFIX}/lib/$j.0 ]); then \ ${LN} -sf ${PREFIX}/lib/$j ${STAGEDIR}${PREFIX}/lib/$j.0; \ fi .endfor -.include +.include Modified: head/dns/powerdns-devel/distinfo ============================================================================== --- head/dns/powerdns-devel/distinfo Thu Jan 23 20:13:09 2014 (r340858) +++ head/dns/powerdns-devel/distinfo Thu Jan 23 20:16:57 2014 (r340859) @@ -1,2 +1,2 @@ -SHA256 (auth-3.3.tar.gz) = 0f6e85f6ee3041718dcc5d3aa97c8e48f7dc5ab33678c5c40b2bc4e585c6a4d6 -SIZE (auth-3.3.tar.gz) = 1794516 +SHA256 (auth-3.3.1.tar.gz) = 1ea90c58ffcb0c048bc952b3edf234a763f43fcb35adefe5b4448e185f0568c0 +SIZE (auth-3.3.1.tar.gz) = 1809736 Added: head/dns/powerdns-devel/files/pdns.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/dns/powerdns-devel/files/pdns.in Thu Jan 23 20:16:57 2014 (r340859) @@ -0,0 +1,38 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: pdns_server +# REQUIRE: DAEMON %%MYSQL_REQ%% %%PGSQL_REQ%% %%SLAPD_REQ%% +# KEYWORD: shutdown + +# +# Add the following lines to /etc/rc.conf to enable powerdns: +# +# pdns_enable="YES" +# pdns_flags="" +# +# See pdns_server(8) for flags. +# + +. /etc/rc.subr + +name=pdns +rcvar=pdns_enable + +command=%%PREFIX%%/sbin/pdns_server + +# set defaults + +pdns_enable=${pdns_enable:-"NO"} +pdns_conf=${pdns_conf:-"%%PREFIX%%/etc/pdns/pdns.conf"} + +load_rc_config ${name} + +required_files=${pdns_conf} + +monitor_cmd="${command} --daemon=no --guardian=no --control-console --loglevel=9" +extra_commands="monitor" + +run_rc_command "$1" Modified: head/dns/powerdns-devel/pkg-plist ============================================================================== --- head/dns/powerdns-devel/pkg-plist Thu Jan 23 20:13:09 2014 (r340858) +++ head/dns/powerdns-devel/pkg-plist Thu Jan 23 20:16:57 2014 (r340859) @@ -36,6 +36,18 @@ sbin/pdns_server %%GEO%%lib/libgeobackend.la %%GEO%%lib/libgeobackend.so %%GEO%%lib/libgeobackend.so.0 +%%TINYDNS%%lib/libtinydnsbackend.a +%%TINYDNS%%lib/libtinydnsbackend.la +%%TINYDNS%%lib/libtinydnsbackend.so +%%TINYDNS%%lib/libtinydnsbackend.so.0 +%%REMOTE%%lib/libremotebackend.a +%%REMOTE%%lib/libremotebackend.la +%%REMOTE%%lib/libremotebackend.so +%%REMOTE%%lib/libremotebackend.so.0 +%%MYDNS%%lib/libmydnsbackend.a +%%MYDNS%%lib/libmydnsbackend.la +%%MYDNS%%lib/libmydnsbackend.so +%%MYDNS%%lib/libmydnsbackend.so.0 lib/libpipebackend.a lib/libpipebackend.la lib/libpipebackend.so From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 20:46:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F32ABDD7; Thu, 23 Jan 2014 20:46:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DEBBB1903; Thu, 23 Jan 2014 20:46:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NKkFHo021140; Thu, 23 Jan 2014 20:46:15 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NKkFd9021133; Thu, 23 Jan 2014 20:46:15 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401232046.s0NKkFd9021133@svn.freebsd.org> From: John Marino Date: Thu, 23 Jan 2014 20:46:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340860 - in head/lang: gnatdroid-armv5 gnatdroid-armv7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 20:46:16 -0000 Author: marino Date: Thu Jan 23 20:46:14 2014 New Revision: 340860 URL: http://svnweb.freebsd.org/changeset/ports/340860 QAT: https://qat.redports.org/buildarchive/r340860/ Log: lang/gnatdroid-armv(5,7): Use lang/gcc-aux as base, not lang/gnat-aux After a few additional patches for gcc-aux, gnatdroid-armv5 (and -armv7) build and execute well when built and based on gcc 4.7-based gcc-aux. The previous version was based on gcc 4.6-based gnat-aux. This was the final port requiring gnat-aux, and now its part of the Ada framework. Running acats using an ASUS Transformer XF101 (Android 4.0.3) as a target results in a nearly perfect result. Only test cb1010a fails, which is a failure to detect running out of stack space (-fstack-check). I intend to investigate further, but as the only problem, gnatdroid remains a highly capable compiler despite the small regression. Potentially zero-cost exceptions were gained as a trade-off. Deleted: head/lang/gnatdroid-armv5/distinfo head/lang/gnatdroid-armv7/distinfo Modified: head/lang/gnatdroid-armv5/Makefile head/lang/gnatdroid-armv5/pkg-descr head/lang/gnatdroid-armv7/Makefile head/lang/gnatdroid-armv7/pkg-descr Modified: head/lang/gnatdroid-armv5/Makefile ============================================================================== --- head/lang/gnatdroid-armv5/Makefile Thu Jan 23 20:16:57 2014 (r340859) +++ head/lang/gnatdroid-armv5/Makefile Thu Jan 23 20:46:14 2014 (r340860) @@ -3,15 +3,12 @@ PORTNAME= armv5 PORTVERSION= ${SNAPSHOT} -PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= releases/gcc-${GCC_VERSION} PKGNAMEPREFIX= gnatdroid- DISTNAME= arm-gnat-${PORTVERSION} -DISTFILES= gcc-core-${GCC_VERSION}.tar.bz2 \ - gcc-ada-${GCC_VERSION}.tar.bz2 \ - gcc-testsuite-${GCC_VERSION}.tar.bz2 +DISTFILES= gcc-${GCC_VERSION}.tar.bz2 MAINTAINER= marino@FreeBSD.org COMMENT= C/Ada cross-compiler, target: Android ARMv5 @@ -19,18 +16,22 @@ COMMENT= C/Ada cross-compiler, target: A LICENSE= GPLv3 BUILD_DEPENDS= gnatdroid-sysroot>=9:${PORTSDIR}/lang/gnatdroid-sysroot \ - gnatdroid-binutils>=2.21:${PORTSDIR}/lang/gnatdroid-binutils \ - gnat-aux>=20110325:${PORTSDIR}/lang/gnat-aux -RUN_DEPENDS:= gnatdroid-sysroot>=9:${PORTSDIR}/lang/gnatdroid-sysroot \ gnatdroid-binutils>=2.21:${PORTSDIR}/lang/gnatdroid-binutils +RUN_DEPENDS:= ${BUILD_DEPENDS} NO_LICENSES_INSTALL= yes -.include "${.CURDIR}/../gnat-aux/Makefile.common" +.include "${.CURDIR}/../gcc-aux/Makefile.common" +# DELETE NEXT LINE AFTER NEXT UPDATE TO GCC-AUX 4.7 TO AVOID PORTEPOCH +# Without it, this port version regresses by a day +SNAPSHOT:= 20130413 # last portversion + 1 + +USES+= ada gmake LANGS= c ada APPLY_DIFFS= core ada ada-testsuite gcc-testsuite NO_MTREE= YES +DISTINFO_FILE= ${.CURDIR}/../gcc-aux/distinfo # Disable C++ until arm.cc/no-rtti issue resolved for libsupc++ @@ -47,12 +48,11 @@ ARMVERSION= ARMv5 FPU= vfp WRKSRC= ${WRKDIR}/gcc-${GCC_VERSION} BUILD_WRKSRC= ${WRKDIR}/build -PATCHDIR= ${.CURDIR}/../gnat-aux/files +PATCHDIR= ${.CURDIR}/../gcc-aux/files CFG_SCRIPT= ${WRKSRC}/configure REVFILE= ${WRKSRC}/gcc/REVISION SRPREFIX= ${LOCALBASE}/android9 PREFIX= ${SRPREFIX}/${ARMVERSION} -FULL_GNATGCC= ${LOCALBASE}/bin/gnatgcc INSTALLDIRS= lib libexec share INSTALLDIRS+= ${DROID_TARGET}/lib PLIST_SUB+= TARGET="${DROID_TARGET}" @@ -60,7 +60,6 @@ PLIST_SUB+= GCCVERS="${GCC_VERSION}" SUB_FILES= pkg-message SUB_LIST= TARGET="${DROID_TARGET}" -ADA_CONFIGURE_ENV= CC=${FULL_GNATGCC} ALL_TARGET= all .include @@ -78,7 +77,6 @@ OS_LABEL4VERS= "[${OPSYS}32 x Android ${ .if ${PORT_OPTIONS:MCXX} LANGS+= c++ APPLY_DIFFS+= cxx cxx-testsuite -DISTFILES+= gcc-g++-${GCC_VERSION}.tar.bz2 INSTALLDIRS+= include/c++/${GCC_VERSION} .endif @@ -89,7 +87,6 @@ INSTALLDIRS+= include/c++/${GCC_VERSION} .if ${PORT_OPTIONS:MFORT} LANGS+= fortran APPLY_DIFFS+= fortran -DISTFILES+= gcc-fortran-${GCC_VERSION}.tar.bz2 .endif ################### @@ -98,7 +95,6 @@ DISTFILES+= gcc-fortran-${GCC_VERSION}.t .if ${PORT_OPTIONS:MOBJC} LANGS+= objc -DISTFILES+= gcc-objc-${GCC_VERSION}.tar.bz2 .endif CONFIGURE_ARGS= --enable-languages=${LANGS:Q} @@ -144,7 +140,7 @@ post-extract: do-configure: ${MKDIR} ${BUILD_WRKSRC} - cd ${BUILD_WRKSRC} && ${SETENV} ${ADA_CONFIGURE_ENV} \ + cd ${BUILD_WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ ${CFG_SCRIPT} ${CONFIGURE_ARGS} pre-install: Modified: head/lang/gnatdroid-armv5/pkg-descr ============================================================================== --- head/lang/gnatdroid-armv5/pkg-descr Thu Jan 23 20:16:57 2014 (r340859) +++ head/lang/gnatdroid-armv5/pkg-descr Thu Jan 23 20:46:14 2014 (r340860) @@ -1,4 +1,4 @@ -The gnatdroid-armv5 port builds a C/Ada cross-compiler based on GCC 4.6 that +The gnatdroid-armv5 port builds a C/Ada cross-compiler based on GCC 4.7 that targets the Android operating system (version 2.3, API level 9) running on ARM architecture (version 5). This produces binaries that run natively on Android devices as well as the Android SDK emulator. Modified: head/lang/gnatdroid-armv7/Makefile ============================================================================== --- head/lang/gnatdroid-armv7/Makefile Thu Jan 23 20:16:57 2014 (r340859) +++ head/lang/gnatdroid-armv7/Makefile Thu Jan 23 20:46:14 2014 (r340860) @@ -3,15 +3,12 @@ PORTNAME= armv7 PORTVERSION= ${SNAPSHOT} -PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= releases/gcc-${GCC_VERSION} PKGNAMEPREFIX= gnatdroid- DISTNAME= arm-gnat-${PORTVERSION} -DISTFILES= gcc-core-${GCC_VERSION}.tar.bz2 \ - gcc-ada-${GCC_VERSION}.tar.bz2 \ - gcc-testsuite-${GCC_VERSION}.tar.bz2 +DISTFILES= gcc-${GCC_VERSION}.tar.bz2 MAINTAINER= marino@FreeBSD.org COMMENT= C/Ada cross-compiler, target: Android ARMv7 @@ -19,18 +16,22 @@ COMMENT= C/Ada cross-compiler, target: A LICENSE= GPLv3 BUILD_DEPENDS= gnatdroid-sysroot>=9:${PORTSDIR}/lang/gnatdroid-sysroot \ - gnatdroid-binutils>=2.21:${PORTSDIR}/lang/gnatdroid-binutils \ - gnat-aux>=20110325:${PORTSDIR}/lang/gnat-aux -RUN_DEPENDS:= gnatdroid-sysroot>=9:${PORTSDIR}/lang/gnatdroid-sysroot \ gnatdroid-binutils>=2.21:${PORTSDIR}/lang/gnatdroid-binutils +RUN_DEPENDS:= ${BUILD_DEPENDS} NO_LICENSES_INSTALL= yes -.include "${.CURDIR}/../gnat-aux/Makefile.common" +.include "${.CURDIR}/../gcc-aux/Makefile.common" +# DELETE NEXT LINE AFTER NEXT UPDATE TO GCC-AUX 4.7 TO AVOID PORTEPOCH +# Without it, this port version regresses by a day +SNAPSHOT:= 20130413 # last portversion + 1 + +USES+= ada gmake LANGS= c ada APPLY_DIFFS= core ada ada-testsuite gcc-testsuite NO_MTREE= YES +DISTINFO_FILE= ${.CURDIR}/../gcc-aux/distinfo # Disable C++ until arm.cc/no-rtti issue resolved for libsupc++ @@ -47,12 +48,11 @@ ARMVERSION= ARMv7 FPU= neon WRKSRC= ${WRKDIR}/gcc-${GCC_VERSION} BUILD_WRKSRC= ${WRKDIR}/build -PATCHDIR= ${.CURDIR}/../gnat-aux/files +PATCHDIR= ${.CURDIR}/../gcc-aux/files CFG_SCRIPT= ${WRKSRC}/configure REVFILE= ${WRKSRC}/gcc/REVISION SRPREFIX= ${LOCALBASE}/android9 PREFIX= ${SRPREFIX}/${ARMVERSION} -FULL_GNATGCC= ${LOCALBASE}/bin/gnatgcc INSTALLDIRS= lib libexec share INSTALLDIRS+= ${DROID_TARGET}/lib PLIST_SUB+= TARGET="${DROID_TARGET}" @@ -60,7 +60,6 @@ PLIST_SUB+= GCCVERS="${GCC_VERSION}" SUB_FILES= pkg-message SUB_LIST= TARGET="${DROID_TARGET}" -ADA_CONFIGURE_ENV= CC=${FULL_GNATGCC} ALL_TARGET= all .include @@ -78,7 +77,6 @@ OS_LABEL4VERS= "[${OPSYS}32 x Android ${ .if ${PORT_OPTIONS:MCXX} LANGS+= c++ APPLY_DIFFS+= cxx cxx-testsuite -DISTFILES+= gcc-g++-${GCC_VERSION}.tar.bz2 INSTALLDIRS+= include/c++/${GCC_VERSION} .endif @@ -89,7 +87,6 @@ INSTALLDIRS+= include/c++/${GCC_VERSION} .if ${PORT_OPTIONS:MFORT} LANGS+= fortran APPLY_DIFFS+= fortran -DISTFILES+= gcc-fortran-${GCC_VERSION}.tar.bz2 .endif ################### @@ -98,7 +95,6 @@ DISTFILES+= gcc-fortran-${GCC_VERSION}.t .if ${PORT_OPTIONS:MOBJC} LANGS+= objc -DISTFILES+= gcc-objc-${GCC_VERSION}.tar.bz2 .endif CONFIGURE_ARGS= --enable-languages=${LANGS:Q} @@ -144,7 +140,7 @@ post-extract: do-configure: ${MKDIR} ${BUILD_WRKSRC} - cd ${BUILD_WRKSRC} && ${SETENV} ${ADA_CONFIGURE_ENV} \ + cd ${BUILD_WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \ ${CFG_SCRIPT} ${CONFIGURE_ARGS} pre-install: Modified: head/lang/gnatdroid-armv7/pkg-descr ============================================================================== --- head/lang/gnatdroid-armv7/pkg-descr Thu Jan 23 20:16:57 2014 (r340859) +++ head/lang/gnatdroid-armv7/pkg-descr Thu Jan 23 20:46:14 2014 (r340860) @@ -1,4 +1,4 @@ -The gnatdroid-armv7 port builds a C/Ada cross-compiler based on GCC 4.6 that +The gnatdroid-armv7 port builds a C/Ada cross-compiler based on GCC 4.7 that targets the Android operating system (version 2.3, API level 9) running on ARM architecture (version 7). This produces binaries that run natively on Android devices built with Cortex-A series chips. From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 20:55:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0875281; Thu, 23 Jan 2014 20:55:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C31EE19E3; Thu, 23 Jan 2014 20:55:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NKtOd1024781; Thu, 23 Jan 2014 20:55:24 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NKtOr8024778; Thu, 23 Jan 2014 20:55:24 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201401232055.s0NKtOr8024778@svn.freebsd.org> From: Pawel Pekala Date: Thu, 23 Jan 2014 20:55:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340861 - head/textproc/meld X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 20:55:25 -0000 Author: pawel Date: Thu Jan 23 20:55:24 2014 New Revision: 340861 URL: http://svnweb.freebsd.org/changeset/ports/340861 QAT: https://qat.redports.org/buildarchive/r340861/ Log: - Update to version 1.8.4 - Fix shebang line - Remove cruft not needed when staged Fixes: * Fix crash when scanning CVS-only folders (Kai Willadsen) * Fix crash on Windows when missing cdll.intl (Bartosz Dziewonski) * Fix crash with Italian (it_IT.utf8) locale (Balint Reczey) Translations: * Andika Triwidada (id) * Benjamin Steinwender (de) * Daniel Mustieles (es) Modified: head/textproc/meld/Makefile head/textproc/meld/distinfo Modified: head/textproc/meld/Makefile ============================================================================== --- head/textproc/meld/Makefile Thu Jan 23 20:46:14 2014 (r340860) +++ head/textproc/meld/Makefile Thu Jan 23 20:55:24 2014 (r340861) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= meld -PORTVERSION= 1.8.3 +PORTVERSION= 1.8.4 CATEGORIES= textproc devel python MASTER_SITES= GNOME @@ -13,7 +13,10 @@ LICENSE= GPLv2 USE_XZ= yes USE_GNOME= pygnome2 -USES= desktop-file-utils gmake shared-mime-info +USES= desktop-file-utils gmake shared-mime-info shebangfix +python_OLD_CMD= ${SETENV} python +python_CMD= ${PYTHON_CMD} +SHEBANG_FILES= bin/meld USE_PYTHON= 2 MAKE_ARGS= prefix=${PREFIX} INSTALLS_ICONS= yes @@ -25,21 +28,12 @@ OPTIONS_SUB= yes NLS_USES= gettext PYGNOMEDESKTOP_DESC= Code syntax highlighting (many dependencies) -PYGNOMEDESKTOP_USE= gnome=pygnomedesktop - -.include +PYGNOMEDESKTOP_USE= GNOME=pygnomedesktop post-patch: - @${REINPLACE_CMD} '/docdir_/d' ${WRKSRC}/Makefile -.if !${PORT_OPTIONS:MNLS} - @${REINPLACE_CMD} '/po install/d' ${WRKSRC}/Makefile -.endif - -.for file in help/C/Makefile help/es/Makefile help/fr/Makefile - @${REINPLACE_CMD} -e \ - 's|$$(localstatedir)/lib/scrollkeeper|/var/db/scrollkeeper|g ; \ - s|^LANG :=|LANG_ :=|g ; \ - s|$$(LANG)|$$(LANG_)|g' ${WRKSRC}/${file} -.endfor + @${REINPLACE_CMD} -e 's|^LANG :=|LANG_ :=|g ; s|$$(LANG)|$$(LANG_)|g ; \ + s|$$(localstatedir)/lib/scrollkeeper|/var/db/scrollkeeper|g' \ + ${WRKSRC}/help/C/Makefile ${WRKSRC}/help/es/Makefile \ + ${WRKSRC}/help/fr/Makefile .include Modified: head/textproc/meld/distinfo ============================================================================== --- head/textproc/meld/distinfo Thu Jan 23 20:46:14 2014 (r340860) +++ head/textproc/meld/distinfo Thu Jan 23 20:55:24 2014 (r340861) @@ -1,2 +1,2 @@ -SHA256 (meld-1.8.3.tar.xz) = 42ba344cacfe4c5afaf5db8a43df2c877ec9e5b8e66621b92f2f9e0dcbf6fed7 -SIZE (meld-1.8.3.tar.xz) = 415704 +SHA256 (meld-1.8.4.tar.xz) = b46e5786343f236d203037a7ace8f1b28145a51a3f84fa527efcf62f47b5b8de +SIZE (meld-1.8.4.tar.xz) = 421332 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 21:24:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C77C3CDD; Thu, 23 Jan 2014 21:24:49 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [IPv6:2a01:4f8:141:5ffd::25]) by mx1.freebsd.org (Postfix) with ESMTP id 86C4E1D77; Thu, 23 Jan 2014 21:24:49 +0000 (UTC) Received: from [10.0.2.17] (a44084.upc-a.chello.nl [62.163.44.84]) by mail.jr-hosting.nl (Postfix) with ESMTPSA id D2BEE3F486; Thu, 23 Jan 2014 22:24:47 +0100 (CET) Content-Type: multipart/signed; boundary="Apple-Mail=_6C135790-7A81-4D38-8CFC-7DCA39EB2D0B"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: svn commit: r340819 - head/security/vuxml From: Remko Lodder In-Reply-To: <52E17557.3040208@FreeBSD.org> Date: Thu, 23 Jan 2014 22:24:45 +0100 Message-Id: <0231531E-F8BA-4053-B2DC-C1CD081309DB@FreeBSD.org> References: <201401231003.s0NA3XaT070054@svn.freebsd.org> <52E17557.3040208@FreeBSD.org> To: Matthias Andree X-Mailer: Apple Mail (2.1827) 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.17 Precedence: list List-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, 23 Jan 2014 21:24:49 -0000 --Apple-Mail=_6C135790-7A81-4D38-8CFC-7DCA39EB2D0B Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii On 23 Jan 2014, at 21:02, Matthias Andree wrote: > Am 23.01.2014 11:03, schrieb Remko Lodder: >> Author: remko (src,doc committer) >> Date: Thu Jan 23 10:03:33 2014 >> New Revision: 340819 >> URL: http://svnweb.freebsd.org/changeset/ports/340819 >> QAT: https://qat.redports.org/buildarchive/r340819/ >>=20 >> Log: >> Cleanup the HTMLDOC entry, long lines and remove the ... >> entries because I think it's not needed. Also adjust >> the previous entry by indenting correctly. >=20 > Could we have a format normalizer that emits the desired format, so we > can have "normal format" before the commit? >=20 > "make validate" did not complain... Make validate checks whether the correct tags had been used at the right = places. Documentation follows the FDP primer, which states how this works. = Perhaps igor can be used to suggest a better strategy, most of the desired = format is already included, all you have to do is properly fill it in, or = sneakpeak at an already written entry. http://www.freebsd.org/doc/en/books/fdp-primer/overview-quick-start.html --=20 /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_6C135790-7A81-4D38-8CFC-7DCA39EB2D0B Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJS4YidAAoJEKjD27JZ84ywgzkQAKPpV5Jyz+fGlYRXc+DmY8eX epKHhc0It+TJUFzTPiEy1o3o3W0YP/L1aAqiluGWTqwApuzciDAD626mOjqxyOL4 1JHv/xBAXJSKcWwr4gYyDd6C0Bvy9xpTc9u02eWA4CvjpIs0XT+zy/ShJMFsLMaH Y5GgsSkfErHPAf4r2txobeKnroTbJd90kLtqAFG6v4jiFz5ScbNMbYCLOdc2rgBQ l41M4WbU/zbadgbtcJwDoqUvGHoJ8HcJOU+Ac8ztKbAAcQUz/aUvBbxqA8w80gbR S++HTS8eCuwKa5RqkFpjmosX4kDJoVbkEyZ0c6w7nk9Ss1pxFwvN2WITwC2gA7m+ /I1CfkBVhh/DWtTwJUEKG4I04S0kUCDANx8rfsnlesvsEDr4GOX6X5avEK2nMJJ7 x9CJalQv6xRIvtERF6l34UDZHxDxPk+mMzJLpaM8xlyL4CFM5apMvp+KRiZ96G4k xKjVT1bEUGSKstS7PfpWGFiN3zLzLmGL0hARAcVv5yDIYwbqML2R8g/Z+8dE5V+q MAR0I2XMGf8L0SxPI221Eb6k1FhbNXazfqgTk1bUF630FC4LUPvhmP889ocSM1e4 +MPRzVJmF36aAtspcfGfJdX0y/dc2EaO+Af4uXKdePdGIOem5ZHtZJiriHS/O1dF HGOEhpUBCZ7M3EmGiRsx =GqFe -----END PGP SIGNATURE----- --Apple-Mail=_6C135790-7A81-4D38-8CFC-7DCA39EB2D0B-- From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 21:39:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8050C4EA; Thu, 23 Jan 2014 21:39:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 52D651E9A; Thu, 23 Jan 2014 21:39:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NLdfrx040650; Thu, 23 Jan 2014 21:39:41 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NLdfF9040649; Thu, 23 Jan 2014 21:39:41 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401232139.s0NLdfF9040649@svn.freebsd.org> From: Raphael Kubo da Costa Date: Thu, 23 Jan 2014 21:39:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340862 - head/x11-fonts/fira X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 21:39:41 -0000 Author: rakuco Date: Thu Jan 23 21:39:40 2014 New Revision: 340862 URL: http://svnweb.freebsd.org/changeset/ports/340862 QAT: https://qat.redports.org/buildarchive/r340862/ Log: Remove stray file that is not part of the port. It was not sent as part of the PR that originated the port, and most likely was added by mistake (it is also not referenced by the other files in the port). Deleted: head/x11-fonts/fira/fonts.scale From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 21:47:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C93E8B6A; Thu, 23 Jan 2014 21:47:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B58F01F88; Thu, 23 Jan 2014 21:47:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NLlffU044330; Thu, 23 Jan 2014 21:47:41 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NLlfx1044329; Thu, 23 Jan 2014 21:47:41 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401232147.s0NLlfx1044329@svn.freebsd.org> From: Antoine Brodin Date: Thu, 23 Jan 2014 21:47:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340864 - head/devel/py-pydasm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 21:47:41 -0000 Author: antoine Date: Thu Jan 23 21:47:41 2014 New Revision: 340864 URL: http://svnweb.freebsd.org/changeset/ports/340864 QAT: https://qat.redports.org/buildarchive/r340864/ Log: - Use PYDISTUTILS_AUTOPLIST (instead of using a plist that doesn't work with pkg_install) - Remove DOCS/EXAMPLES conditionals Modified: head/devel/py-pydasm/Makefile Modified: head/devel/py-pydasm/Makefile ============================================================================== --- head/devel/py-pydasm/Makefile Thu Jan 23 21:41:46 2014 (r340863) +++ head/devel/py-pydasm/Makefile Thu Jan 23 21:47:41 2014 (r340864) @@ -17,23 +17,17 @@ LICENSE= BSD2CLAUSE WRKSRC_SUBDIR= ${PORTNAME} USE_PYTHON= yes USE_PYDISTUTILS=yes +PYDISTUTILS_AUTOPLIST=yes -PLIST_FILES= ${PYTHON_SITELIBDIR}/pydasm.so PORTDOCS= README.txt PORTEXAMPLES= das.py OPTIONS_DEFINE= DOCS EXAMPLES -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} -.endif -.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${PORTEXAMPLES:S,^,${WRKSRC}/,} ${STAGEDIR}${EXAMPLESDIR} -.endif .include From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 22:03:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 070DC5BA; Thu, 23 Jan 2014 22:03:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CCE6E1161; Thu, 23 Jan 2014 22:03:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NM3gKL051507; Thu, 23 Jan 2014 22:03:42 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NM3gYh051504; Thu, 23 Jan 2014 22:03:42 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401232203.s0NM3gYh051504@svn.freebsd.org> From: Raphael Kubo da Costa Date: Thu, 23 Jan 2014 22:03:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340865 - head/x11-fonts/alegreya-sans X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 22:03:43 -0000 Author: rakuco Date: Thu Jan 23 22:03:42 2014 New Revision: 340865 URL: http://svnweb.freebsd.org/changeset/ports/340865 QAT: https://qat.redports.org/buildarchive/r340865/ Log: Switch to fetching the font from GitHub. Upstream pointed out that the font is also hosted on GitHub, which is easier to fetch and more reliable than the download link on their website. We can also track the version numbers more easily now, so switch to using them instead of a date in PORTVERSION. Modified: head/x11-fonts/alegreya-sans/Makefile head/x11-fonts/alegreya-sans/distinfo Modified: head/x11-fonts/alegreya-sans/Makefile ============================================================================== --- head/x11-fonts/alegreya-sans/Makefile Thu Jan 23 21:47:41 2014 (r340864) +++ head/x11-fonts/alegreya-sans/Makefile Thu Jan 23 22:03:42 2014 (r340865) @@ -1,26 +1,28 @@ # $FreeBSD$ PORTNAME= alegreya-sans -PORTVERSION= 20140108 +PORTVERSION= 1.002 +PORTEPOCH= 1 CATEGORIES= x11-fonts -MASTER_SITES= http://www.huertatipografica.com/free_download/G4oDzW61NXb23OxBa8XL?dummy= MAINTAINER= rakuco@FreeBSD.org COMMENT= Humanist sans serif font with a calligraphic feeling LICENSE= OFL11 -FETCH_BEFORE_ARGS= -o ${DISTFILES} +USE_GITHUB= yes +GH_ACCOUNT= juandelperal +GH_PROJECT= Alegreya-Sans +GH_TAGNAME= 2d2a4b0 +GH_COMMIT= 2d2a4b0 NO_BUILD= yes -NO_WRKSUBDIR= yes -USE_ZIP= yes FONTDIR= ${STAGEDIR}${PREFIX}/lib/X11/fonts/${PORTNAME} do-install: ${MKDIR} ${FONTDIR} - cd ${WRKSRC} && \ + cd ${WRKSRC}/otf && \ ${INSTALL_DATA} *.otf ${FONTDIR} .include Modified: head/x11-fonts/alegreya-sans/distinfo ============================================================================== --- head/x11-fonts/alegreya-sans/distinfo Thu Jan 23 21:47:41 2014 (r340864) +++ head/x11-fonts/alegreya-sans/distinfo Thu Jan 23 22:03:42 2014 (r340865) @@ -1,2 +1,2 @@ -SHA256 (alegreya-sans-20140108.zip) = 6fe20e1857bda2fa6b5b33147c84c4975b5fa4ec1ce6459d160c3d394d162b37 -SIZE (alegreya-sans-20140108.zip) = 1573210 +SHA256 (alegreya-sans-1.002.tar.gz) = e5a81b22aa8f7cf35583b051cee78ce5f9dba7dbcc75f2f8bc2508d03043c722 +SIZE (alegreya-sans-1.002.tar.gz) = 4954547 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 22:10:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 846A1AD4 for ; Thu, 23 Jan 2014 22:10:12 +0000 (UTC) Received: from mail-qa0-x236.google.com (mail-qa0-x236.google.com [IPv6:2607:f8b0:400d:c00::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1086A1212 for ; Thu, 23 Jan 2014 22:10:11 +0000 (UTC) Received: by mail-qa0-f54.google.com with SMTP id i13so3000541qae.27 for ; Thu, 23 Jan 2014 14:10:11 -0800 (PST) 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:message-id :subject:to:cc:content-type; bh=rAGtM4SvSsZvzAMbHudVshiE3CadimYnGtnPBiWmR/I=; b=VLBypkmWFW8+6zVTfT3G1nRFU3PTW1ejEoTor8kUj2HfQkyNWR1dRNYqdWKzHiV+Yd VHgAo/GaTRrmCsh6pYzcFdiwr+fDdL8zB3HTWHDodhCMgJOFZHg1PXuYCXq6964aetq0 +SvocnWcxrFbdF3v9GzXbGrQSRtQJz1gxmEHA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=rAGtM4SvSsZvzAMbHudVshiE3CadimYnGtnPBiWmR/I=; b=gyMTHp5MKkk8Y17UIKq3YCjzBEkbjDR+Xy7YT5tKfQ8XCmPNA+dSheasS/FQiLE03I 9i+mhd/8TOurYu2fsjC56qFs592VyIsX/UPlOt7geDfsoTwMTWLVg8Q7hbcSpk4oUJ+x UO8oF/uIYbSiWwCIS8moD8roGGIBI/Stdh0yyxJqpKQxtyutnpId4P/fFN0yYsV/O9Zj Vw3ui4eQ4Vc7euuynxM398WqK1X4Xw7Ux3MuumBnNLSezBrvWDxt7tFw7JC2qUCsScwu JeB+CewKN78t453VX2aIQZbiDwiNEaGeptIyCDpFBhlMs4uSHW+MTN4Y+tFbixgq/Sqn BiKg== X-Gm-Message-State: ALoCoQmrX5PTP3y4fJzs+Zts7KO7eomkSKERWoRutn6tIx66JOagAdW2UXoIOgIqJXJCW1BuZu7z X-Received: by 10.224.36.82 with SMTP id s18mr15604213qad.23.1390515011116; Thu, 23 Jan 2014 14:10:11 -0800 (PST) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.96.85.138 with HTTP; Thu, 23 Jan 2014 14:09:41 -0800 (PST) In-Reply-To: <20131226224813.GW40122@ithaqua.etoilebsd.net> References: <201312262215.rBQMF1ZF002032@svn.freebsd.org> <20131226223743.GV40122@ithaqua.etoilebsd.net> <52BCB084.3040504@marino.st> <20131226224813.GW40122@ithaqua.etoilebsd.net> From: Eitan Adler Date: Thu, 23 Jan 2014 17:09:41 -0500 X-Google-Sender-Auth: Ca9aaN4VE6zP8lJ-dRQhiyd9Ucw Message-ID: Subject: Re: svn commit: r337624 - head/games/daimonin-music To: Baptiste Daroussin Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , marino@freebsd.org, "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 22:10:12 -0000 On Thu, Dec 26, 2013 at 5:48 PM, Baptiste Daroussin wrote: > On Thu, Dec 26, 2013 at 11:41:08PM +0100, John Marino wrote: >> On 12/26/2013 23:37, Baptiste Daroussin wrote: >> > On Thu, Dec 26, 2013 at 10:15:01PM +0000, John Marino wrote: >> >> Author: marino >> >> Date: Thu Dec 26 22:15:01 2013 >> >> New Revision: 337624 >> >> URL: http://svnweb.freebsd.org/changeset/ports/337624 >> >> >> > The port itself is still wrong, NO_CHECKSUM is still being used, while >> > bsd.port.mk specifically says it is not to be used inside a port, so this should >> > either be fixed or the port should remain broken. >> > >> >> I saw later this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=170052 >> >> It is taken by eadler@. The patch itself is no longer good but at least >> there was some attempt to fix it. I did not know NO_CHECKSUM was >> internal use only. It built fine in poudriere, which is where I tested >> it. Is eadler going to follow up? or at least release the PR? >> >> John > > eadler is afk for a moment, just take the pr ;) > if he complains tell him that s my fault late reply! PRs should never be considered hard locks. I was looking into a solution that would ensure security but also not generate regular work for the maintainer. Mere data files *could* cause security issues if not validated for example if maliciously altered to cause the program to crash or run arbitrary code. -- Eitan Adler Source, Ports, Doc committer Bugmeister, Ports Security teams From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 22:16:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCC48E46; Thu, 23 Jan 2014 22:16:11 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 26690125B; Thu, 23 Jan 2014 22:16:10 +0000 (UTC) Received: from [192.168.0.23] (unknown [130.255.19.191]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 75E3B438BE; Thu, 23 Jan 2014 16:15:51 -0600 (CST) Message-ID: <52E19485.2090206@marino.st> Date: Thu, 23 Jan 2014 23:15:33 +0100 From: John Marino User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130509 Thunderbird/17.0.6 MIME-Version: 1.0 To: Eitan Adler Subject: Re: svn commit: r337624 - head/games/daimonin-music References: <201312262215.rBQMF1ZF002032@svn.freebsd.org> <20131226223743.GV40122@ithaqua.etoilebsd.net> <52BCB084.3040504@marino.st> <20131226224813.GW40122@ithaqua.etoilebsd.net> In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: "svn-ports-head@freebsd.org" , Baptiste Daroussin , marino@freebsd.org, "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: marino@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, 23 Jan 2014 22:16:11 -0000 On 1/23/2014 23:09, Eitan Adler wrote: > On Thu, Dec 26, 2013 at 5:48 PM, Baptiste Daroussin wrote: >> On Thu, Dec 26, 2013 at 11:41:08PM +0100, John Marino wrote: >>> On 12/26/2013 23:37, Baptiste Daroussin wrote: >>>> On Thu, Dec 26, 2013 at 10:15:01PM +0000, John Marino wrote: >>>>> Author: marino >>>>> Date: Thu Dec 26 22:15:01 2013 >>>>> New Revision: 337624 >>>>> URL: http://svnweb.freebsd.org/changeset/ports/337624 >>>>> >>>> The port itself is still wrong, NO_CHECKSUM is still being used, while >>>> bsd.port.mk specifically says it is not to be used inside a port, so this should >>>> either be fixed or the port should remain broken. >>>> >>> >>> I saw later this PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=170052 >>> >>> It is taken by eadler@. The patch itself is no longer good but at least >>> there was some attempt to fix it. I did not know NO_CHECKSUM was >>> internal use only. It built fine in poudriere, which is where I tested >>> it. Is eadler going to follow up? or at least release the PR? >>> >>> John >> >> eadler is afk for a moment, just take the pr ;) >> if he complains tell him that s my fault > > late reply! > > PRs should never be considered hard locks. > > I was looking into a solution that would ensure security but also not > generate regular work for the maintainer. Mere data files *could* > cause security issues if not validated for example if maliciously > altered to cause the program to crash or run arbitrary code. If I remember correctly, the entire concept was flawed. The original maintainer recognized that the distfile could get rerolled. He was setting up a method where the port would not break if/when it was rerolled. Obviously that's absurd and opens the door wide open for attack. The solution was to generate distinfo and just let a reroll temporarily break the port. Incidentally, it was not rerolled in the last couple of years. John From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 22:40:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B4ACB88; Thu, 23 Jan 2014 22:40:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 27943149A; Thu, 23 Jan 2014 22:40:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NMeOjH063947; Thu, 23 Jan 2014 22:40:24 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NMeN3P063945; Thu, 23 Jan 2014 22:40:23 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201401232240.s0NMeN3P063945@svn.freebsd.org> From: Eitan Adler Date: Thu, 23 Jan 2014 22:40:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340866 - 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.17 Precedence: list List-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, 23 Jan 2014 22:40:24 -0000 Author: eadler Date: Thu Jan 23 22:40:23 2014 New Revision: 340866 URL: http://svnweb.freebsd.org/changeset/ports/340866 QAT: https://qat.redports.org/buildarchive/r340866/ Log: Update igor to 1.419 Changes: Some code improvements and additional misspelling detection. PR: ports/185872 Submitted by: wblock (maintainer) Modified: head/textproc/igor/Makefile head/textproc/igor/distinfo Modified: head/textproc/igor/Makefile ============================================================================== --- head/textproc/igor/Makefile Thu Jan 23 22:03:42 2014 (r340865) +++ head/textproc/igor/Makefile Thu Jan 23 22:40:23 2014 (r340866) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= igor -PORTVERSION= 1.397 +PORTVERSION= 1.419 CATEGORIES= textproc MASTER_SITES= http://docscripts.glenbarber.us/tags/${PORTNAME}/${PORTVERSION}/ Modified: head/textproc/igor/distinfo ============================================================================== --- head/textproc/igor/distinfo Thu Jan 23 22:03:42 2014 (r340865) +++ head/textproc/igor/distinfo Thu Jan 23 22:40:23 2014 (r340866) @@ -1,2 +1,2 @@ -SHA256 (igor-1.397.tar.gz) = f548b19244bc7529bd59b856d5a17b8435d218ccd2473185781e52725c9c8fe6 -SIZE (igor-1.397.tar.gz) = 23737 +SHA256 (igor-1.419.tar.gz) = 92328d567e3efec6cdb9b03ee9eca77355822768c01eba1f2f30629c32efc216 +SIZE (igor-1.419.tar.gz) = 23695 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 22:41:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mandree.no-ip.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F85DC88; Thu, 23 Jan 2014 22:41:15 +0000 (UTC) Received: from [IPv6:::1] (localhost6.localdomain6 [IPv6:::1]) by apollo.emma.line.org (Postfix) with ESMTP id C64DD23D0FE; Thu, 23 Jan 2014 23:41:13 +0100 (CET) Message-ID: <52E19A89.1080700@FreeBSD.org> Date: Thu, 23 Jan 2014 23:41:13 +0100 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Remko Lodder Subject: Re: svn commit: r340819 - head/security/vuxml References: <201401231003.s0NA3XaT070054@svn.freebsd.org> <52E17557.3040208@FreeBSD.org> <0231531E-F8BA-4053-B2DC-C1CD081309DB@FreeBSD.org> In-Reply-To: <0231531E-F8BA-4053-B2DC-C1CD081309DB@FreeBSD.org> X-Enigmail-Version: 1.5.2 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u27EqWnIOgDSO25dblukhs2toxw9rfp50" 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.17 Precedence: list List-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, 23 Jan 2014 22:41:15 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --u27EqWnIOgDSO25dblukhs2toxw9rfp50 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Am 23.01.2014 22:24, schrieb Remko Lodder: > Make validate checks whether the correct tags had been used at the righ= t places. > Documentation follows the FDP primer, which states how this works. Perh= aps > igor can be used to suggest a better strategy, most of the desired form= at is > already included, all you have to do is properly fill it in, or sneakpe= ak at > an already written entry. It's not the "I can" but that we'd as a whole be more productive if I could verify the style, or even better have it automatically reformatted to style (of course your ellipsis removal is another thing that requires a manual step), and then commit a properly styled entry. With a very strong inclination towards "reformat", surely there must be some tweakable XML formatter in ports that we can beat into shape. --u27EqWnIOgDSO25dblukhs2toxw9rfp50 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iEYEARECAAYFAlLhmokACgkQvmGDOQUufZX5/wCggEEb+ju+0Er/hA0EzfpBCuzZ vb4AoIQKvmGf77rRhoLy6MrhhvIJtR5d =Sieb -----END PGP SIGNATURE----- --u27EqWnIOgDSO25dblukhs2toxw9rfp50-- From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 22:42:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A44F8FAC for ; Thu, 23 Jan 2014 22:42:35 +0000 (UTC) Received: from mail-qc0-x235.google.com (mail-qc0-x235.google.com [IPv6:2607:f8b0:400d:c01::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 57E80151B for ; Thu, 23 Jan 2014 22:42:35 +0000 (UTC) Received: by mail-qc0-f181.google.com with SMTP id e9so3368148qcy.40 for ; Thu, 23 Jan 2014 14:42:34 -0800 (PST) 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:message-id :subject:to:cc:content-type; bh=CV09g6SCYbLeYqs3ufcCdm87WaZN/cANb91cJQ4J4II=; b=iVTI+9noUnnWZNvgZjAjSo+I8y2ZBdGLC9RjRXCxZ2nrOOWalzt/1ZArJQNq+ZBJLQ Mw8xDMlQbQ3vIJqzpuEC6vei3MKBUxvzSpE3FR+0sKm6pjVT+xsz4rtC0s8PvN0eNDH+ s5d2vyjazvcsk7eQsTkrZI0JSgjn1ifC4Nx0k= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=CV09g6SCYbLeYqs3ufcCdm87WaZN/cANb91cJQ4J4II=; b=UEsur4RDtY69cKuKOpk9pURhvZEbZ2BnZ2EkLx5bhMO1EGvpzIK/IzuKfjAbNLTGIn e3h10AAek30vqMKc8snAUZArKY/ez/+D27xNWHonYLo3RO2tECskz0GsNi+2az0RGsV5 IABNRxUwHIAlvmXEWqIdWAK7r79jwqHMY5tjxzgYFbNbWkD6lL0C21+mmxPBito+X5Us 3237WWwaHPtuzhld44XnD7gjmRSzSNgWetowLG8zhFt4H5w0RWzSW52MY1GtZaOzAc14 JpbkVm1OsJG1QpghqXWj4bJ4Hsmg2v9UFkmFwrjnOCiXjQX8FT1IM2tLitSLc0bqbUrJ e94g== X-Gm-Message-State: ALoCoQmH8j54ukc/vorDUt9YOI7kuhy1V9nkQB6aGJdnEK3RTvjRO0GdbT6W2jwYVBw2rp14kniJ X-Received: by 10.224.44.9 with SMTP id y9mr15651905qae.45.1390516954530; Thu, 23 Jan 2014 14:42:34 -0800 (PST) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.96.85.138 with HTTP; Thu, 23 Jan 2014 14:42:04 -0800 (PST) In-Reply-To: <52E19485.2090206@marino.st> References: <201312262215.rBQMF1ZF002032@svn.freebsd.org> <20131226223743.GV40122@ithaqua.etoilebsd.net> <52BCB084.3040504@marino.st> <20131226224813.GW40122@ithaqua.etoilebsd.net> <52E19485.2090206@marino.st> From: Eitan Adler Date: Thu, 23 Jan 2014 17:42:04 -0500 X-Google-Sender-Auth: 8y81Uuw_8VF_1_UH6l8PmH91wL4 Message-ID: Subject: Re: svn commit: r337624 - head/games/daimonin-music To: marino@freebsd.org Content-Type: text/plain; charset=UTF-8 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.17 Precedence: list List-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, 23 Jan 2014 22:42:35 -0000 On Thu, Jan 23, 2014 at 5:15 PM, John Marino wrote: > If I remember correctly, the entire concept was flawed. The original > maintainer recognized that the distfile could get rerolled. He was > setting up a method where the port would not break if/when it was rerolled. Agreed. > Obviously that's absurd and opens the door wide open for attack. The > solution was to generate distinfo and just let a reroll temporarily > break the port. Generally, agreed. > Incidentally, it was not rerolled in the last couple of > years. My understanding is that the maintainer claimed a re-roll fairly often, even daily at times. Its been a while since I looked into this port and am happy for you to handle it. :) -- Eitan Adler Source, Ports, Doc committer Bugmeister, Ports Security teams From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 22:52:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 180234BB; Thu, 23 Jan 2014 22:52:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0414F160C; Thu, 23 Jan 2014 22:52:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NMqWgV070464; Thu, 23 Jan 2014 22:52:32 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NMqWw5070460; Thu, 23 Jan 2014 22:52:32 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401232252.s0NMqWw5070460@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Thu, 23 Jan 2014 22:52:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340867 - head/mail/dbmail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 23 Jan 2014 22:52:33 -0000 Author: danilo Date: Thu Jan 23 22:52:32 2014 New Revision: 340867 URL: http://svnweb.freebsd.org/changeset/ports/340867 QAT: https://qat.redports.org/buildarchive/r340867/ Log: - Update from 3.1.9 to 3.1.10 while here - Convert all "if's" in options helpers PR: ports/186047 Submitted by: Alan Hicks (maintainer) Modified: head/mail/dbmail/Makefile head/mail/dbmail/distinfo Modified: head/mail/dbmail/Makefile ============================================================================== --- head/mail/dbmail/Makefile Thu Jan 23 22:40:23 2014 (r340866) +++ head/mail/dbmail/Makefile Thu Jan 23 22:52:32 2014 (r340867) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dbmail -PORTVERSION= 3.1.9 +PORTVERSION= 3.1.10 CATEGORIES= mail MASTER_SITES= http://www.dbmail.org/download/3.1/ \ http://git.dbmail.eu/paul/dbmail/snapshot/ @@ -17,7 +17,7 @@ LIB_DEPENDS= libgmime-2.6.so:${PORTSDIR} libmhash.so:${PORTSDIR}/security/mhash \ libevent-2.0.so:${PORTSDIR}/devel/libevent2 -BUILD_DEPENDS+= asciidoc:${PORTSDIR}/textproc/asciidoc \ +BUILD_DEPENDS= asciidoc:${PORTSDIR}/textproc/asciidoc \ xmlto:${PORTSDIR}/textproc/xmlto \ ${LOCALBASE}/share/sgml/docbook/4.5/docbookx.dtd:${PORTSDIR}/textproc/docbook-450 @@ -27,6 +27,8 @@ OPTIONS_DEFINE= DOCS LDAP SIEVE THREADS OPTIONS_DEFAULT= THREADS SIEVE_DESC= Build with support for Sieve mail sorting language +OPTIONS_SUB= yes + USE_AUTOTOOLS= libtool autoheader autoconf USE_LDCONFIG= ${PREFIX}/lib/dbmail USE_RC_SUBR= dbmail-pop3d dbmail-lmtpd dbmail-imapd dbmail-timsieved @@ -43,7 +45,13 @@ MAKE_ARGS+= mandir=${MANPREFIX}/man DOCS= AUTHORS BUGS INSTALL THANKS UPGRADING -.include +SIEVE_CONFIGURE_WITH= sieve +SIEVE_LIB_DEPENDS= libsieve.so:${PORTSDIR}/mail/libsieve + +LDAP_CONFIGURE_WITH= ldap +LDAP_USE= OPENLDAP=yes + +THREADS_EXTRA_PATCHES= ${FILESDIR}/extra-patch-acinclude.m4 DBMAIL_USER?= mailnull DBMAIL_GROUP?= mail @@ -53,28 +61,6 @@ PLIST_SUB+= DBMAIL_USER="${DBMAIL_USER}" DBMAIL_GROUP="${DBMAIL_GROUP}" \ PIDDIR="${PIDDIR}" -.if ${PORT_OPTIONS:MSIEVE} -CONFIGURE_ARGS+=--with-sieve=${LOCALBASE} -LIB_DEPENDS+= libsieve.so:${PORTSDIR}/mail/libsieve -PLIST_SUB+= SIEVE="" -.else -CONFIGURE_ARGS+=--without-sieve -PLIST_SUB+= SIEVE="@comment " -.endif - -.if ${PORT_OPTIONS:MLDAP} -CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} -USE_OPENLDAP= yes -PLIST_SUB+= LDAP="" -.else -CONFIGURE_ARGS+=--without-ldap -PLIST_SUB+= LDAP="@comment " -.endif - -.if ${PORT_OPTIONS:MTHREADS} -EXTRA_PATCHES= ${FILESDIR}/extra-patch-acinclude.m4 -.endif - post-install: ${INSTALL_DATA} ${WRKSRC}/dbmail.conf ${STAGEDIR}${PREFIX}/etc/dbmail.conf-dist @${MKDIR} ${STAGEDIR}${DATADIR} @@ -86,6 +72,6 @@ post-install: @${MKDIR} ${STAGEDIR}${PIDDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} - @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) + (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .include Modified: head/mail/dbmail/distinfo ============================================================================== --- head/mail/dbmail/distinfo Thu Jan 23 22:40:23 2014 (r340866) +++ head/mail/dbmail/distinfo Thu Jan 23 22:52:32 2014 (r340867) @@ -1,2 +1,2 @@ -SHA256 (dbmail-3.1.9.tar.gz) = 665f42700654aae767d24647dde284a4df7aec1702a00d1122d55b3f9f4318dd -SIZE (dbmail-3.1.9.tar.gz) = 2397293 +SHA256 (dbmail-3.1.10.tar.gz) = 7a5b82eb8feb45faf215bebee7fb648092e5eaa71b2d5acd5826ca36d8e63f4f +SIZE (dbmail-3.1.10.tar.gz) = 2397512 From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 23:09:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E413ACC; Thu, 23 Jan 2014 23:09:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ECB951725; Thu, 23 Jan 2014 23:09:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NN9jKS075491; Thu, 23 Jan 2014 23:09:45 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NN9iqh075481; Thu, 23 Jan 2014 23:09:44 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401232309.s0NN9iqh075481@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Thu, 23 Jan 2014 23:09:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340868 - in head/audio/csound: . 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.17 Precedence: list List-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, 23 Jan 2014 23:09:46 -0000 Author: danilo Date: Thu Jan 23 23:09:44 2014 New Revision: 340868 URL: http://svnweb.freebsd.org/changeset/ports/340868 QAT: https://qat.redports.org/buildarchive/r340868/ Log: - Update from 5.18.02 to 5.19.01 - Convert USE_SCONS to USES PR: ports/185715 Submitted by: KATO Tsuguru Deleted: head/audio/csound/files/patch-H__sysdep.h Modified: head/audio/csound/Makefile head/audio/csound/distinfo head/audio/csound/files/custom.py.in head/audio/csound/files/patch-InOut-rtalsa.c head/audio/csound/files/patch-Top-csound.c head/audio/csound/pkg-plist Modified: head/audio/csound/Makefile ============================================================================== --- head/audio/csound/Makefile Thu Jan 23 22:52:32 2014 (r340867) +++ head/audio/csound/Makefile Thu Jan 23 23:09:44 2014 (r340868) @@ -2,28 +2,27 @@ # $FreeBSD$ PORTNAME= csound -PORTVERSION= 5.18.02 -PORTREVISION= 1 +PORTVERSION= 5.19.01 CATEGORIES= audio lang -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}5.18/ \ +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION:R} \ SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION:R}/manual:manual -DISTNAME= ${PORTNAME:S/c/C/}${PORTVERSION} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} +DISTFILES= ${PORTNAME:S/c/C/}${PORTVERSION}${EXTRACT_SUFX} \ + ${CSOUND_DOCS:S/$/:manual/} +DIST_SUBDIR= csound MAINTAINER= ports@FreeBSD.org COMMENT= Sound synthesizer LICENSE= LGPL21 -DIST_SUBDIR= csound -BUILD_DEPENDS= ${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13 \ - ${LOCALBASE}/include/gmm/gmm.h:${PORTSDIR}/math/gmm++ \ - ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex +BUILD_DEPENDS= swig13>0:${PORTSDIR}/devel/swig13 \ + eigen>0:${PORTSDIR}/math/eigen3 \ + gmm++>0:${PORTSDIR}/math/gmm++ LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile -OPTIONS_DEFINE= ALSA DSSI FLUIDSYNTH JACK OSC PORTAUDIO PULSEAUDIO FLTK +OPTIONS_DEFINE= ALSA DSSI FLTK FLUIDSYNTH JACK OSC PORTAUDIO PULSEAUDIO OPTIONS_DEFAULT=FLTK +OPTIONS_SUB= yes ALSA_DESC= Build ALSA I/O module DSSI_DESC= Build DSSI/LADSPA host opcodes FLUIDSYNTH_DESC=Building FluidSynth opcodes @@ -33,21 +32,24 @@ PORTAUDIO_DESC= Build the PortAudio I/O PULSEAUDIO_DESC=Build the PulseAudio I/O module FLTK_DESC= Build FLTK plugin and GUI -CONFLICTS_INSTALL= outguess-* +CONFLICTS_INSTALL= outguess-* csound6 -SSP_UNSAFE= yes +WRKSRC= ${WRKDIR}/${PORTNAME:S/c/C/}${PORTVERSION} + +USES= bison gettext scons USE_PYTHON= yes -USES= bison gettext -NO_STAGE= yes -USE_SCONS= yes -SCONS_BUILDENV= PATH=${LOCALBASE}/bin:$$PATH -SCONS_ARGS= prefix="${PREFIX}" CC="${CC}" CXX="${CXX}" \ - CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ +USE_GCC= yes +MAKE_ARGS= instdir="${STAGEDIR}" prefix="${PREFIX}" \ + CC="${CC}" CXX="${CXX}" \ buildCsoundAC=0 buildCsoundVST=0 buildInterfaces=1 \ buildRelease=1 buildVirtual=1 dynamicCsoundLibrary=1 \ install=1 noDebug=1 useDouble=1 \ useGettext=1 usePortMIDI=0 USE_LDCONFIG= yes +SSP_UNSAFE= yes + +CFLAGS+= -fPIC -fopenmp -DUSE_OPENMP +LDFLAGS+= -pthread -Wl,-export-dynamic SUB_FILES= pkg-message @@ -55,105 +57,94 @@ SUB_FILES= pkg-message .if ${PORT_OPTIONS:MALSA} LIB_DEPENDS+= libasound.so:${PORTSDIR}/audio/alsa-lib -SCONS_ARGS+= useALSA=1 -PLIST_SUB+= ALSA="" +MAKE_ARGS+= useALSA=1 ALSA_H= alsa/asoundlib.h .else -SCONS_ARGS+= useALSA=0 -PLIST_SUB+= ALSA="@comment " +MAKE_ARGS+= useALSA=0 ALSA_H= ##alsa/asoundlib.h## .endif .if ${PORT_OPTIONS:MDSSI} BUILD_DEPENDS+= dssi>=0:${PORTSDIR}/audio/dssi RUN_DEPENDS+= dssi>=0:${PORTSDIR}/audio/dssi -SCONS_ARGS+= buildDSSI=1 -PLIST_SUB+= DSSI="" +MAKE_ARGS+= buildDSSI=1 .else -SCONS_ARGS+= buildDSSI=0 -PLIST_SUB+= DSSI="@comment " +MAKE_ARGS+= buildDSSI=0 .endif .if ${PORT_OPTIONS:MFLUIDSYNTH} LIB_DEPENDS+= libfluidsynth.so:${PORTSDIR}/audio/fluidsynth -PLIST_SUB+= FLUIDSYNTH="" FLUIDSYNTH_H= fluidsynth.h .else -PLIST_SUB+= FLUIDSYNTH="@comment " FLUIDSYNTH_H= ##fluidsynth.h## .endif .if ${PORT_OPTIONS:MJACK} LIB_DEPENDS+= libjack.so:${PORTSDIR}/audio/jack -SCONS_ARGS+= useJack=1 -PLIST_SUB+= JACK="" +MAKE_ARGS+= useJack=1 .else -SCONS_ARGS+= useJack=0 -PLIST_SUB+= JACK="@comment " +MAKE_ARGS+= useJack=0 .endif .if ${PORT_OPTIONS:MOSC} LIB_DEPENDS+= liblo.so:${PORTSDIR}/audio/liblo -SCONS_ARGS+= useOSC=1 -PLIST_SUB+= OSC="" +MAKE_ARGS+= useOSC=1 .else -SCONS_ARGS+= useOSC=0 -PLIST_SUB+= OSC="@comment " +MAKE_ARGS+= useOSC=0 .endif .if ${PORT_OPTIONS:MPORTAUDIO} BUILD_DEPENDS+= portaudio2>=0:${PORTSDIR}/audio/portaudio2 RUN_DEPENDS+= portaudio2>=0:${PORTSDIR}/audio/portaudio2 -SCONS_ARGS+= usePortAudio=1 -PLIST_SUB+= PORTAUDIO="" +MAKE_ARGS+= usePortAudio=1 PORTAUDIO_L= "${LOCALBASE}/lib/portaudio2" PORTAUDIO_R= "-Wl,-rpath,${LOCALBASE}/lib/portaudio2" .else -SCONS_ARGS+= usePortAudio=0 -PLIST_SUB+= PORTAUDIO="@comment " +MAKE_ARGS+= usePortAudio=0 PORTAUDIO_L= # empty PORTAUDIO_R= # empty .endif .if ${PORT_OPTIONS:MPULSEAUDIO} LIB_DEPENDS+= libpulse-simple.so:${PORTSDIR}/audio/pulseaudio -PLIST_SUB+= PULSEAUDIO="" PULSEAUDIO_H= pulse/simple.h .else -PLIST_SUB+= PULSEAUDIO="@comment " PULSEAUDIO_H= ##pulse/simple.h## .endif .if ${PORT_OPTIONS:MFLTK} LIB_DEPENDS+= libfltk.so:${PORTSDIR}/x11-toolkits/fltk -PLIST_SUB+= FLTK="" -SCONS_ARGS+= buildCsound5GUI=1 buildCSEditor=1 buildWinsound=1 useFLTK=1 +MAKE_ARGS+= buildCsound5GUI=1 buildCSEditor=1 buildWinsound=1 useFLTK=1 .else -PLIST_SUB+= FLTK="@comment " -SCONS_ARGS+= buildCsound5GUI=0 buildCSEditor=0 buildWinsound=0 useFLTK=0 +MAKE_ARGS+= buildCsound5GUI=0 buildCSEditor=0 buildWinsound=0 useFLTK=0 .endif .if ${PORT_OPTIONS:MDOCS} -EXTRACT_DEPENDS+=${LOCALBASE}/bin/unzip:${PORTSDIR}/archivers/unzip -DISTFILES+= Csound${PORTVERSION:R}_manual_html.zip:manual +CSOUND_DOCS= Csound${PORTVERSION:R}_manual_html.zip .endif +.include + .if ${ARCH} == amd64 || ${ARCH} == sparc64 || ${ARCH} == ia64 -CMAKE_ARGS+= Word64=1 +MAKE_ARGS+= Word64=1 .endif -post-extract: -.if ${PORT_OPTIONS:MDOCS} - @(cd ${DISTDIR}/${DIST_SUBDIR} && ${UNZIP_CMD} -qo \ - Csound${PORTVERSION:R}_manual_html.zip -d ${WRKDIR}) +.if ${OSVERSION} < 1000033 +BUILD_DEPENDS+= flex>0:${PORTSDIR}/textproc/flex +MAKE_ENV+= PATH=${LOCALBASE}/bin:$$PATH +.endif + +.if ${OSVERSION} >= 1000054 +CXXLIB= c++ +.else +CXXLIB= # empty .endif post-patch: @${SED} -e "s|%%LOCALBASE%%|${LOCALBASE}|g; \ s|%%PYTHON_INCLUDEDIR%%|${PYTHON_INCLUDEDIR}|; \ s|%%PORTAUDIO_L%%|${PORTAUDIO_L}|; \ - s|%%PORTAUDIO_R%%|${PORTAUDIO_R}|; \ - s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|" \ + s|%%PORTAUDIO_R%%|${PORTAUDIO_R}|" \ < ${FILESDIR}/custom.py.in > ${WRKSRC}/custom.py @${REINPLACE_CMD} -e "s|'unsupported'|'linux'|; \ s|Exit(-1)|print \"\"|; \ @@ -161,7 +152,8 @@ post-patch: /CXXFLAGS/s|\['-Wno-format'\]|Split('${CXXFLAGS}')|; \ s|/usr/local|${LOCALBASE}|; \ s|/usr/X11R6|${LOCALBASE}|; \ - /\"pthread\"/d; \ + /LINKFLAGS/s|\['-Wl,-Bdynamic'\]|Split('${LDFLAGS}')|; \ + s|\"pthread\"|\"\"|; \ s|'pthread'|''|; \ s|\"portaudio.h\"|\"portaudio2/portaudio.h\"|; \ s|\"boost/any.hpp\"|\"##boost/any.hpp##\"|; \ @@ -172,29 +164,21 @@ post-patch: s|\"tcl.h\"|\"##tcl.h##\"|; \ s|'5.2'|'5'|; \ s|'dl'|''|; \ - s|'stdc++'|''|; \ - s|'-DNO_FLTK_THREADS'|''|; \ + s|'stdc++'|'${CXXLIB}'|; \ + /linuxjoystick/s|^.*| print \"\"|; \ s|\"fluidsynth.h\"|\"${FLUIDSYNTH_H}\"|; \ /mixer_main.c/s|'mixer'|'csmixer'|; \ /jpluginEnvironment/s|'asound'|''|; \ /portaudioEnvironment/s|'asound'|''|; \ - /jackEnvironment/s|'asound'|''|; \ - s| stdc++ | |; \ - s| pthread | |" ${WRKSRC}/SConstruct + /jackEnvironment/s|'asound'|''|" ${WRKSRC}/SConstruct @${REINPLACE_CMD} -e "s|||" \ ${WRKSRC}/InOut/rtpa.c @${REINPLACE_CMD} -e "s|linux/if.h|sys/types.h|" \ ${WRKSRC}/OOps/remote.c - @${REINPLACE_CMD} '1658,1659d' \ - ${WRKSRC}/SConstruct + post-install: - @${LN} -sf libcsound64.so.5 ${PREFIX}/lib/libcsound64.so -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @${ECHO_MSG} " Installing manual ${PORTVERSION}. " - @(cd ${WRKDIR}/html && ${COPYTREE_SHARE} . ${DOCSDIR}) - @${ECHO_MSG} " Done." -.endif - @${CAT} ${PKGMESSAGE} + ${LN} -sf libcsound64.so.5 ${STAGEDIR}${PREFIX}/lib/libcsound64.so + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKDIR}/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) -.include +.include Modified: head/audio/csound/distinfo ============================================================================== --- head/audio/csound/distinfo Thu Jan 23 22:52:32 2014 (r340867) +++ head/audio/csound/distinfo Thu Jan 23 23:09:44 2014 (r340868) @@ -1,4 +1,4 @@ -SHA256 (csound/Csound5.18.02.tar.gz) = 4c461cf3bf60b83671224949dd33805379b7121bf2c0ad6af5e191e7f6f8adc8 -SIZE (csound/Csound5.18.02.tar.gz) = 9211491 -SHA256 (csound/Csound5.18_manual_html.zip) = a7347bb1a6b5af3497de95a2df36217a6a42219e2f36a3d6d505cd53b2719cd4 -SIZE (csound/Csound5.18_manual_html.zip) = 9773269 +SHA256 (csound/Csound5.19.01.tar.gz) = c918fbdfa7a65cefd080966ba4b44aadb2e36f80c83a5714efb5a9c76532111d +SIZE (csound/Csound5.19.01.tar.gz) = 9302526 +SHA256 (csound/Csound5.19_manual_html.zip) = ba198155bee31cfe27e54ba313453bf100af8f22cc57b7dbcd4edbfe8fb99af5 +SIZE (csound/Csound5.19_manual_html.zip) = 9860517 Modified: head/audio/csound/files/custom.py.in ============================================================================== --- head/audio/csound/files/custom.py.in Thu Jan 23 22:52:32 2014 (r340867) +++ head/audio/csound/files/custom.py.in Thu Jan 23 23:09:44 2014 (r340868) @@ -7,6 +7,6 @@ customCCFLAGS = [ ] customCXXFLAGS = [ ] customLIBS = [ 'intl' ] customLIBPATH = [ '%%PORTAUDIO_L%%', '%%LOCALBASE%%/lib' ] -customSHLINKFLAGS = [ '%%PORTAUDIO_R%%', '%%PTHREAD_LIBS%%' ] +customSHLINKFLAGS = [ '%%PORTAUDIO_R%%' ] customSWIGFLAGS = [] platform = 'linux' Modified: head/audio/csound/files/patch-InOut-rtalsa.c ============================================================================== --- head/audio/csound/files/patch-InOut-rtalsa.c Thu Jan 23 22:52:32 2014 (r340867) +++ head/audio/csound/files/patch-InOut-rtalsa.c Thu Jan 23 23:09:44 2014 (r340868) @@ -1,18 +1,12 @@ --- InOut/rtalsa.c.orig 2011-12-22 19:41:53.000000000 +0900 +++ InOut/rtalsa.c 2011-12-27 23:53:00.000000000 +0900 -@@ -22,6 +22,7 @@ - 02111-1307 USA - */ - -+/* - #ifndef _ISOC99_SOURCE - #define _ISOC99_SOURCE 1 - #endif -@@ -35,6 +36,7 @@ - #ifndef _POSIX_C_SOURCE - #define _POSIX_C_SOURCE 1 - #endif -+*/ +@@ -35,9 +35,6 @@ + /* #ifndef _BSD_SOURCE */ + /* #define _BSD_SOURCE 1 */ + /* #endif */ +-#include +-#include +-#include #include "csdl.h" Modified: head/audio/csound/files/patch-Top-csound.c ============================================================================== --- head/audio/csound/files/patch-Top-csound.c Thu Jan 23 22:52:32 2014 (r340867) +++ head/audio/csound/files/patch-Top-csound.c Thu Jan 23 23:09:44 2014 (r340868) @@ -1,12 +1,12 @@ --- Top/csound.c.orig 2011-10-16 22:59:03.000000000 +0900 +++ Top/csound.c 2011-12-07 01:15:33.000000000 +0900 -@@ -67,11 +67,14 @@ +@@ -70,11 +70,14 @@ + **** MAJOR PROBLEM: PTHREAD_SPINLOCK_INITIALIZER is not defined in + Linux or Haiku */ - /* **** MAJOR PROBLEM: PTHREAD_SPINLOCK_INITIALIZER is not defined in Linux */ - --#ifdef linux -+#if defined(linux) || defined(__FreeBSD__) - #define PTHREAD_SPINLOCK_INITIALIZER 0 +-#if defined(linux) || defined(__HAIKU__) ++#if defined(linux) || defined(__HAIKU__) || defined(__FreeBSD__) + #define PTHREAD_SPINLOCK_INITIALIZER 0 #endif #endif /* PARCS */ @@ -16,50 +16,49 @@ #if defined(USE_OPENMP) #include #endif /* USE_OPENMP */ -@@ -383,7 +386,7 @@ - 0.0, /* curBeat */ - 0.0, /* curBeat_inc */ - 0.0, /* beatTime */ --#if defined(HAVE_PTHREAD_SPIN_LOCK) && defined(PARCS) -+#if defined(__GNUC__) && defined(HAVE_PTHREAD_SPIN_LOCK) && defined(PARCS) - PTHREAD_SPINLOCK_INITIALIZER, /* spoutlock */ - PTHREAD_SPINLOCK_INITIALIZER, /* spinlock */ +@@ -430,7 +433,7 @@ + NULL, /* csRandState */ + 0, /* randSeed1 */ + 0, /* randSeed2 */ +-#if defined(HAVE_PTHREAD_SPIN_LOCK) && (defined(PARCS)) ++#if defined(__GNUC__) && defined(HAVE_PTHREAD_SPIN_LOCK) && (defined(PARCS)) + PTHREAD_SPINLOCK_INITIALIZER, /* memlock */ #else -@@ -2854,7 +2857,7 @@ - /* ------------------------------------ */ + 0, /* memlock */ +@@ -2914,7 +2917,7 @@ + /* ------------------------------------ */ #if defined(HAVE_RDTSC) -#if !(defined(LINUX) && defined(__GNUC__) && defined(__i386__)) -+#if !(defined(LINUX) && defined(__GNUC__) && defined(__i386__)) || !(defined(__FreeBSD__) && defined(__i386__)) ++#if !(defined(LINUX) && defined(__GNUC__) && defined(__i386__)) || !(defined(LINUX) && defined(__i386__)) #undef HAVE_RDTSC #endif #endif -@@ -2867,6 +2870,13 @@ - static int getTimeResolution(void) - { +@@ -2927,6 +2930,12 @@ + static int getTimeResolution(void) + { #if defined(HAVE_RDTSC) +#if defined(__FreeBSD__) -+ size_t size; -+ int timeResolutionSeconds; -+ size = sizeof timeResolutionSeconds; -+ sysctlbyname("hw.clockrate", &timeResolutionSeconds, &size, NULL, 0); -+ ++ size_t size; ++ int timeResolutionSeconds; ++ size = sizeof timeResolutionSeconds; ++ sysctlbyname("hw.clockrate", &timeResolutionSeconds, &size, NULL, 0); +#else - FILE *f; - char buf[256]; + FILE *f; + char buf[256]; -@@ -2923,9 +2933,14 @@ - } +@@ -2967,9 +2976,14 @@ } - fclose(f); + } + fclose(f); +#endif /* __FreeBSD__ */ - if (UNLIKELY(timeResolutionSeconds <= 0.0)) { - fprintf(stderr, Str("No valid CPU frequency entry " + if (UNLIKELY(timeResolutionSeconds <= 0.0)) { + fprintf(stderr, Str("No valid CPU frequency entry " +#if defined(__FreeBSD__) -+ "was found.\n")); ++ "was found.\n")); +#else - "was found in /proc/cpuinfo.\n")); + "was found in /proc/cpuinfo.\n")); +#endif /* __FreeBSD__ */ - return -1; - } - /* MHz -> seconds */ + return -1; + } + /* MHz -> seconds */ Modified: head/audio/csound/pkg-plist ============================================================================== --- head/audio/csound/pkg-plist Thu Jan 23 22:52:32 2014 (r340867) +++ head/audio/csound/pkg-plist Thu Jan 23 23:09:44 2014 (r340868) @@ -41,6 +41,7 @@ include/csound/csoundCore.h include/csound/cwindow.h include/csound/filebuilding.h include/csound/float-version.h +include/csound/interlocks.h include/csound/msg_attr.h include/csound/pstream.h include/csound/pvfileio.h @@ -48,8 +49,6 @@ include/csound/soundio.h include/csound/sysdep.h include/csound/text.h include/csound/version.h -include/csound/interlocks.h -lib/csound/plugins64/libplaterev.so lib/csound/plugins64/libampmidid.so lib/csound/plugins64/libcellular.so lib/csound/plugins64/libcontrol.so @@ -60,11 +59,13 @@ lib/csound/plugins64/libfareygen.so %%FLUIDSYNTH%%lib/csound/plugins64/libfluidOpcodes.so lib/csound/plugins64/libfractalnoise.so lib/csound/plugins64/libimage.so +lib/csound/plugins64/libipmidi.so %%JACK%%lib/csound/plugins64/libjackTransport.so %%JACK%%lib/csound/plugins64/libjacko.so lib/csound/plugins64/liblinear_algebra.so lib/csound/plugins64/libmixer.so %%OSC%%lib/csound/plugins64/libosc.so +lib/csound/plugins64/libplaterev.so %%ALSA%%lib/csound/plugins64/librtalsa.so %%JACK%%lib/csound/plugins64/librtjack.so %%PORTAUDIO%%lib/csound/plugins64/librtpa.so @@ -128,6 +129,8 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/CscoreMain.html %%PORTDOCS%%%%DOCSDIR%%/CscoreTop.html %%PORTDOCS%%%%DOCSDIR%%/CsoundLinks.html +%%PORTDOCS%%%%DOCSDIR%%/DeprecatedGensRef.html +%%PORTDOCS%%%%DOCSDIR%%/DeprecatedTop.html %%PORTDOCS%%%%DOCSDIR%%/FLbox.html %%PORTDOCS%%%%DOCSDIR%%/FLbutBank.html %%PORTDOCS%%%%DOCSDIR%%/FLbutton.html @@ -240,6 +243,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/GENfarey.html %%PORTDOCS%%%%DOCSDIR%%/GENsone.html %%PORTDOCS%%%%DOCSDIR%%/GENtanh.html +%%PORTDOCS%%%%DOCSDIR%%/GENwave.html %%PORTDOCS%%%%DOCSDIR%%/ImageopcodesTop.html %%PORTDOCS%%%%DOCSDIR%%/Introduction.html %%PORTDOCS%%%%DOCSDIR%%/JackoAudioIn.html @@ -347,6 +351,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/STKSimple.html %%PORTDOCS%%%%DOCSDIR%%/STKSitar.html %%PORTDOCS%%%%DOCSDIR%%/STKStifKarp.html +%%PORTDOCS%%%%DOCSDIR%%/STKTop.html %%PORTDOCS%%%%DOCSDIR%%/STKTubeBell.html %%PORTDOCS%%%%DOCSDIR%%/STKVoicForm.html %%PORTDOCS%%%%DOCSDIR%%/STKWhistle.html @@ -486,6 +491,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/ceil.html %%PORTDOCS%%%%DOCSDIR%%/cell.html %%PORTDOCS%%%%DOCSDIR%%/cent.html +%%PORTDOCS%%%%DOCSDIR%%/centroid.html %%PORTDOCS%%%%DOCSDIR%%/cggoto.html %%PORTDOCS%%%%DOCSDIR%%/chanctrl.html %%PORTDOCS%%%%DOCSDIR%%/changed.html @@ -513,6 +519,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/clockon.html %%PORTDOCS%%%%DOCSDIR%%/cngoto.html %%PORTDOCS%%%%DOCSDIR%%/comb.html +%%PORTDOCS%%%%DOCSDIR%%/combinv.html %%PORTDOCS%%%%DOCSDIR%%/compress.html %%PORTDOCS%%%%DOCSDIR%%/connect.html %%PORTDOCS%%%%DOCSDIR%%/contents.html @@ -525,6 +532,9 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/cos.html %%PORTDOCS%%%%DOCSDIR%%/cosh.html %%PORTDOCS%%%%DOCSDIR%%/cosinv.html +%%PORTDOCS%%%%DOCSDIR%%/cosseg.html +%%PORTDOCS%%%%DOCSDIR%%/cossegb.html +%%PORTDOCS%%%%DOCSDIR%%/cossegr.html %%PORTDOCS%%%%DOCSDIR%%/cps2pch.html %%PORTDOCS%%%%DOCSDIR%%/cpsmidi.html %%PORTDOCS%%%%DOCSDIR%%/cpsmidib.html @@ -678,6 +688,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/HRTFcompact %%PORTDOCS%%%%DOCSDIR%%/examples/JackoInfo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/JackoInit.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/Mixer.csd %%PORTDOCS%%%%DOCSDIR%%/examples/OSCmidircv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/OSCmidisend.csd %%PORTDOCS%%%%DOCSDIR%%/examples/PartikkelExample1.csd @@ -708,6 +719,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/STKVoicForm.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKWhistle.csd %%PORTDOCS%%%%DOCSDIR%%/examples/STKWurley.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/a.csd %%PORTDOCS%%%%DOCSDIR%%/examples/abs.csd %%PORTDOCS%%%%DOCSDIR%%/examples/active.csd %%PORTDOCS%%%%DOCSDIR%%/examples/active_k.csd @@ -731,6 +743,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/atone.csd %%PORTDOCS%%%%DOCSDIR%%/examples/atonek.csd %%PORTDOCS%%%%DOCSDIR%%/examples/atonex.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/b.csd %%PORTDOCS%%%%DOCSDIR%%/examples/babo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/babo_expert.csd %%PORTDOCS%%%%DOCSDIR%%/examples/balance.csd @@ -762,6 +775,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/ceil.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cell.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cent.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/centroid.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cggoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/chanctrl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/changed.csd @@ -783,12 +797,16 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/clockon.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cngoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/comb.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/combinv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/compress.csd %%PORTDOCS%%%%DOCSDIR%%/examples/connect.csd %%PORTDOCS%%%%DOCSDIR%%/examples/convolve.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cos.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cosh.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cosinv.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/cosseg.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/cossegb.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/cossegr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cps2pch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cps2pch_19et.csd %%PORTDOCS%%%%DOCSDIR%%/examples/cps2pch_ftable.csd @@ -865,6 +883,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/duserrnd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dust.csd %%PORTDOCS%%%%DOCSDIR%%/examples/dust2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/e.csd %%PORTDOCS%%%%DOCSDIR%%/examples/eee.aiff %%PORTDOCS%%%%DOCSDIR%%/examples/else.csd %%PORTDOCS%%%%DOCSDIR%%/examples/elseif.csd @@ -891,6 +910,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/expsegba.csd %%PORTDOCS%%%%DOCSDIR%%/examples/expsegr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/farey7shuffled.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/fareyleni.csd %%PORTDOCS%%%%DOCSDIR%%/examples/fdl.txt %%PORTDOCS%%%%DOCSDIR%%/examples/fibonacci.txt %%PORTDOCS%%%%DOCSDIR%%/examples/ficlose.csd @@ -992,13 +1012,16 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/gen15.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen16.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen17.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/gen18.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen19.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen20.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen21.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/gen23.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen24.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen25.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen27.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen28.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/gen30.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen32.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen33.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gen34.csd @@ -1014,9 +1037,11 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/gendyx-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gendyx.csd %%PORTDOCS%%%%DOCSDIR%%/examples/genexp.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/genfarey-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/genfarey.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gensone.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gentanh.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/genwave.csd %%PORTDOCS%%%%DOCSDIR%%/examples/getcfg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/gogobel.csd %%PORTDOCS%%%%DOCSDIR%%/examples/goto.csd @@ -1028,6 +1053,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/greaterthan.csd %%PORTDOCS%%%%DOCSDIR%%/examples/guiro.csd %%PORTDOCS%%%%DOCSDIR%%/examples/harmon.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/harmon3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hilbert.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hilbert_barberpole.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hrtfearly.csd @@ -1041,6 +1067,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/hvs1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hvs2-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/hvs2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/i_statement.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ifthen.csd %%PORTDOCS%%%%DOCSDIR%%/examples/igoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ihold.csd @@ -1062,10 +1089,13 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/int.csd %%PORTDOCS%%%%DOCSDIR%%/examples/integ.csd %%PORTDOCS%%%%DOCSDIR%%/examples/interp.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/invalue.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jacko.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jacktransport.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jitter.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jitter2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/joystick-2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/joystick.csd %%PORTDOCS%%%%DOCSDIR%%/examples/jspline.csd %%PORTDOCS%%%%DOCSDIR%%/examples/kgoto.csd %%PORTDOCS%%%%DOCSDIR%%/examples/kickroll.het @@ -1089,8 +1119,10 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/locsig_stereo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/log.csd %%PORTDOCS%%%%DOCSDIR%%/examples/log10.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/log2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/logbtwo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/logcurve.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/logicOR.csd %%PORTDOCS%%%%DOCSDIR%%/examples/loop_le.csd %%PORTDOCS%%%%DOCSDIR%%/examples/loop_lt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/loopseg.csd @@ -1120,7 +1152,9 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/lpshold.csd %%PORTDOCS%%%%DOCSDIR%%/examples/luamoog.csd %%PORTDOCS%%%%DOCSDIR%%/examples/luaopcode.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/m.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mac.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/maca.csd %%PORTDOCS%%%%DOCSDIR%%/examples/madsr-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/madsr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/makecsd.py @@ -1134,6 +1168,8 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/max.csd %%PORTDOCS%%%%DOCSDIR%%/examples/max_k.csd %%PORTDOCS%%%%DOCSDIR%%/examples/maxabs.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/maxabsaccum.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/maxaccum.csd %%PORTDOCS%%%%DOCSDIR%%/examples/maxalloc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/maxtab.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mclock.csd @@ -1150,6 +1186,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/midichn_advanced.mid %%PORTDOCS%%%%DOCSDIR%%/examples/midicontrolchange.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midictrl.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/mididefault.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midiin.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midinoteoff.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midinoteoncps.csd @@ -1161,10 +1198,14 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/midion_simple.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midiout.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midipitchbend.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/midipolyaftertouch.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/midiprogramchange.csd %%PORTDOCS%%%%DOCSDIR%%/examples/miditempo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/midremot.csd %%PORTDOCS%%%%DOCSDIR%%/examples/min.csd %%PORTDOCS%%%%DOCSDIR%%/examples/minabs.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/minabsaccum.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/minaccum.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mincer.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mintab.csd %%PORTDOCS%%%%DOCSDIR%%/examples/mirror.csd @@ -1191,6 +1232,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/nchnls_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/nestedap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/nlfilt.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/nlfilt2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/noise-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/noise.csd %%PORTDOCS%%%%DOCSDIR%%/examples/noteondur.csd @@ -1210,6 +1252,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/octpch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ooo.aiff %%PORTDOCS%%%%DOCSDIR%%/examples/opa.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/opand.csd %%PORTDOCS%%%%DOCSDIR%%/examples/opcode1.xml %%PORTDOCS%%%%DOCSDIR%%/examples/opcode_example.csd %%PORTDOCS%%%%DOCSDIR%%/examples/oscbnk.csd @@ -1243,9 +1286,11 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/outq2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/outq3.csd %%PORTDOCS%%%%DOCSDIR%%/examples/outq4.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outrg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/outs.csd %%PORTDOCS%%%%DOCSDIR%%/examples/outs1.csd %%PORTDOCS%%%%DOCSDIR%%/examples/outs2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/outvalue.csd %%PORTDOCS%%%%DOCSDIR%%/examples/p.csd %%PORTDOCS%%%%DOCSDIR%%/examples/p5g.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pan.csd @@ -1282,6 +1327,8 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/pitch.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pitchamdf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/planet.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/plate.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/plltrack.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pluck.csd %%PORTDOCS%%%%DOCSDIR%%/examples/plustab.csd %%PORTDOCS%%%%DOCSDIR%%/examples/poisson.csd @@ -1312,6 +1359,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/ptablei.csd %%PORTDOCS%%%%DOCSDIR%%/examples/ptrack.csd %%PORTDOCS%%%%DOCSDIR%%/examples/push.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/puts.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvadd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvbufread.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvcross.csd @@ -1356,6 +1404,8 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/pvsvoc.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvswarp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/pvsynth.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/pwd.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/q.csd %%PORTDOCS%%%%DOCSDIR%%/examples/qinf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/qnan.csd %%PORTDOCS%%%%DOCSDIR%%/examples/r.csd @@ -1368,6 +1418,8 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/randomi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rbjeq.csd %%PORTDOCS%%%%DOCSDIR%%/examples/readclock.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/readf.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/readfi.csd %%PORTDOCS%%%%DOCSDIR%%/examples/readk-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/readk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/readk2.csd @@ -1385,6 +1437,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/resyn.csd %%PORTDOCS%%%%DOCSDIR%%/examples/reverb.csd %%PORTDOCS%%%%DOCSDIR%%/examples/reverbsc.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/rewindscore.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rezzy.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rms.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rnd.csd @@ -1397,6 +1450,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/rtclock.csd %%PORTDOCS%%%%DOCSDIR%%/examples/rv_mono.wav %%PORTDOCS%%%%DOCSDIR%%/examples/rv_stereo.wav +%%PORTDOCS%%%%DOCSDIR%%/examples/s.csd %%PORTDOCS%%%%DOCSDIR%%/examples/samphold.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sandpaper.csd %%PORTDOCS%%%%DOCSDIR%%/examples/scale.csd @@ -1418,6 +1472,9 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/sensekey.csd %%PORTDOCS%%%%DOCSDIR%%/examples/seqtime.csd %%PORTDOCS%%%%DOCSDIR%%/examples/seqtime2.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/serialBegin.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/serialRead.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/serialWrite.csd %%PORTDOCS%%%%DOCSDIR%%/examples/setctrl.csd %%PORTDOCS%%%%DOCSDIR%%/examples/setscorepos.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sfilist.csd @@ -1451,6 +1508,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/spat3d_stereo.csd %%PORTDOCS%%%%DOCSDIR%%/examples/spat3dt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/spdist.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/spectrum.txt %%PORTDOCS%%%%DOCSDIR%%/examples/sprintf.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sprintfk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/spsend.csd @@ -1463,11 +1521,15 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/statvar.csd %%PORTDOCS%%%%DOCSDIR%%/examples/stix.csd %%PORTDOCS%%%%DOCSDIR%%/examples/strcat.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/strcatk.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/strcmp.csd %%PORTDOCS%%%%DOCSDIR%%/examples/strcpyk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/streson.csd %%PORTDOCS%%%%DOCSDIR%%/examples/strget.csd %%PORTDOCS%%%%DOCSDIR%%/examples/strindexk.csd %%PORTDOCS%%%%DOCSDIR%%/examples/string-128.matrix +%%PORTDOCS%%%%DOCSDIR%%/examples/strlower.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/strrindex.csd %%PORTDOCS%%%%DOCSDIR%%/examples/strset.csd %%PORTDOCS%%%%DOCSDIR%%/examples/strsub.csd %%PORTDOCS%%%%DOCSDIR%%/examples/subinstr.csd @@ -1476,25 +1538,33 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/sum.csd %%PORTDOCS%%%%DOCSDIR%%/examples/sumtab.csd %%PORTDOCS%%%%DOCSDIR%%/examples/svfilter.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/sym10.txt %%PORTDOCS%%%%DOCSDIR%%/examples/syncgrain.csd %%PORTDOCS%%%%DOCSDIR%%/examples/syncloop.csd %%PORTDOCS%%%%DOCSDIR%%/examples/syncphasor-CZresonance.csd %%PORTDOCS%%%%DOCSDIR%%/examples/syncphasor.csd %%PORTDOCS%%%%DOCSDIR%%/examples/system.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/t.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tab.csd %%PORTDOCS%%%%DOCSDIR%%/examples/table.csd %%PORTDOCS%%%%DOCSDIR%%/examples/table1.inc +%%PORTDOCS%%%%DOCSDIR%%/examples/tablecopy.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tablefilter.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tablei.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tableikt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tableimix.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tableiw.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tablekt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tablemix.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tableng.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tableseg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tablexkt.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tablexseg.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tabmorph.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tabmorpha.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tabmorphak.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tabmorphi.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/tabsum.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tambourine.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tan.csd %%PORTDOCS%%%%DOCSDIR%%/examples/tanh.csd @@ -1554,6 +1624,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/urandom.csd %%PORTDOCS%%%%DOCSDIR%%/examples/urandom_krate.csd %%PORTDOCS%%%%DOCSDIR%%/examples/urd.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/v.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vadd.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vadd_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vaddv.csd @@ -1561,11 +1632,14 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/valpass-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/valpass.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vaset.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vbap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vbap4.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vbap4move.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vbap8.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vbap8move.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vbapg.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vbaplsinit.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vbapmove.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vcella.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vco.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vco2.csd @@ -1603,7 +1677,9 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/vmultv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/voice.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vosim.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vpow-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vpow.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/vpow_i-2.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vpow_i.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vpowv.csd %%PORTDOCS%%%%DOCSDIR%%/examples/vpvoc.csd @@ -1631,6 +1707,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/examples/wii.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wrap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/wterrain.csd +%%PORTDOCS%%%%DOCSDIR%%/examples/x.csd %%PORTDOCS%%%%DOCSDIR%%/examples/xadsr.csd %%PORTDOCS%%%%DOCSDIR%%/examples/xscanmap.csd %%PORTDOCS%%%%DOCSDIR%%/examples/xscans.csd @@ -1887,6 +1964,10 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/images/gen13_6.png %%PORTDOCS%%%%DOCSDIR%%/images/gen13_7.png %%PORTDOCS%%%%DOCSDIR%%/images/gen14.png +%%PORTDOCS%%%%DOCSDIR%%/images/gen14_1.png +%%PORTDOCS%%%%DOCSDIR%%/images/gen14_2.png +%%PORTDOCS%%%%DOCSDIR%%/images/gen14_3.png +%%PORTDOCS%%%%DOCSDIR%%/images/gen14_4.png %%PORTDOCS%%%%DOCSDIR%%/images/gen15-1.png %%PORTDOCS%%%%DOCSDIR%%/images/gen15-2.png %%PORTDOCS%%%%DOCSDIR%%/images/gen15-3.png @@ -1894,6 +1975,9 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/images/gen15-5.png %%PORTDOCS%%%%DOCSDIR%%/images/gen16_types.png %%PORTDOCS%%%%DOCSDIR%%/images/gen17.png +%%PORTDOCS%%%%DOCSDIR%%/images/gen18_1.png +%%PORTDOCS%%%%DOCSDIR%%/images/gen18_2.png +%%PORTDOCS%%%%DOCSDIR%%/images/gen18_3.png %%PORTDOCS%%%%DOCSDIR%%/images/gen19.png %%PORTDOCS%%%%DOCSDIR%%/images/gen19_1.png %%PORTDOCS%%%%DOCSDIR%%/images/gen20_1.png @@ -1903,6 +1987,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/images/gen21_3.png %%PORTDOCS%%%%DOCSDIR%%/images/gen21_4.png %%PORTDOCS%%%%DOCSDIR%%/images/gen21_5.png +%%PORTDOCS%%%%DOCSDIR%%/images/gen23.png %%PORTDOCS%%%%DOCSDIR%%/images/gen25.png %%PORTDOCS%%%%DOCSDIR%%/images/gen27.png %%PORTDOCS%%%%DOCSDIR%%/images/gen33.png @@ -1917,7 +2002,14 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/images/gen52.png %%PORTDOCS%%%%DOCSDIR%%/images/gendy.png %%PORTDOCS%%%%DOCSDIR%%/images/gendyx.png +%%PORTDOCS%%%%DOCSDIR%%/images/genexp_1.png +%%PORTDOCS%%%%DOCSDIR%%/images/genexp_2.png +%%PORTDOCS%%%%DOCSDIR%%/images/genfarey-2_1.png +%%PORTDOCS%%%%DOCSDIR%%/images/genfarey-2_2.png %%PORTDOCS%%%%DOCSDIR%%/images/gensone.png +%%PORTDOCS%%%%DOCSDIR%%/images/gentanh_1.png +%%PORTDOCS%%%%DOCSDIR%%/images/gentanh_2.png +%%PORTDOCS%%%%DOCSDIR%%/images/gentanh_3.png %%PORTDOCS%%%%DOCSDIR%%/images/grain2_rand-448x289.png %%PORTDOCS%%%%DOCSDIR%%/images/grain3_2.png %%PORTDOCS%%%%DOCSDIR%%/images/image1.png @@ -2015,6 +2107,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/jacktransport.html %%PORTDOCS%%%%DOCSDIR%%/jitter.html %%PORTDOCS%%%%DOCSDIR%%/jitter2.html +%%PORTDOCS%%%%DOCSDIR%%/joystick.html %%PORTDOCS%%%%DOCSDIR%%/jspline.html %%PORTDOCS%%%%DOCSDIR%%/kbetarand.html %%PORTDOCS%%%%DOCSDIR%%/kbexprnd.html @@ -2066,6 +2159,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/locsig.html %%PORTDOCS%%%%DOCSDIR%%/log.html %%PORTDOCS%%%%DOCSDIR%%/log10.html +%%PORTDOCS%%%%DOCSDIR%%/log2.html %%PORTDOCS%%%%DOCSDIR%%/logbtwo.html %%PORTDOCS%%%%DOCSDIR%%/logcurve.html %%PORTDOCS%%%%DOCSDIR%%/loop_ge.html @@ -2182,6 +2276,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/nchnls_i.html %%PORTDOCS%%%%DOCSDIR%%/nestedap.html %%PORTDOCS%%%%DOCSDIR%%/nlfilt.html +%%PORTDOCS%%%%DOCSDIR%%/nlfilt2.html %%PORTDOCS%%%%DOCSDIR%%/noise.html %%PORTDOCS%%%%DOCSDIR%%/noteoff.html %%PORTDOCS%%%%DOCSDIR%%/noteon.html @@ -2291,6 +2386,8 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/pitch.html %%PORTDOCS%%%%DOCSDIR%%/pitchamdf.html %%PORTDOCS%%%%DOCSDIR%%/planet.html +%%PORTDOCS%%%%DOCSDIR%%/platerev.html +%%PORTDOCS%%%%DOCSDIR%%/plltrack.html %%PORTDOCS%%%%DOCSDIR%%/pluck.html %%PORTDOCS%%%%DOCSDIR%%/plustab.html %%PORTDOCS%%%%DOCSDIR%%/poisson.html @@ -2376,6 +2473,7 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/pvsvoc.html %%PORTDOCS%%%%DOCSDIR%%/pvswarp.html %%PORTDOCS%%%%DOCSDIR%%/pvsynth.html +%%PORTDOCS%%%%DOCSDIR%%/pwd.html %%PORTDOCS%%%%DOCSDIR%%/py.html %%PORTDOCS%%%%DOCSDIR%%/pyassign.html %%PORTDOCS%%%%DOCSDIR%%/pycall.html @@ -2396,6 +2494,8 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/randomi.html %%PORTDOCS%%%%DOCSDIR%%/rbjeq.html %%PORTDOCS%%%%DOCSDIR%%/readclock.html +%%PORTDOCS%%%%DOCSDIR%%/readf.html +%%PORTDOCS%%%%DOCSDIR%%/readfi.html %%PORTDOCS%%%%DOCSDIR%%/readk.html %%PORTDOCS%%%%DOCSDIR%%/readk2.html %%PORTDOCS%%%%DOCSDIR%%/readk3.html @@ -2666,13 +2766,16 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/vaget.html %%PORTDOCS%%%%DOCSDIR%%/valpass.html %%PORTDOCS%%%%DOCSDIR%%/vaset.html +%%PORTDOCS%%%%DOCSDIR%%/vbap.html %%PORTDOCS%%%%DOCSDIR%%/vbap16.html %%PORTDOCS%%%%DOCSDIR%%/vbap16move.html %%PORTDOCS%%%%DOCSDIR%%/vbap4.html %%PORTDOCS%%%%DOCSDIR%%/vbap4move.html %%PORTDOCS%%%%DOCSDIR%%/vbap8.html %%PORTDOCS%%%%DOCSDIR%%/vbap8move.html +%%PORTDOCS%%%%DOCSDIR%%/vbapg.html %%PORTDOCS%%%%DOCSDIR%%/vbaplsinit.html +%%PORTDOCS%%%%DOCSDIR%%/vbapmove.html %%PORTDOCS%%%%DOCSDIR%%/vbapz.html %%PORTDOCS%%%%DOCSDIR%%/vbapzmove.html %%PORTDOCS%%%%DOCSDIR%%/vcella.html @@ -2801,61 +2904,6 @@ lib/libcsound64.so.5 %%PORTDOCS%%%%DOCSDIR%%/zkr.html %%PORTDOCS%%%%DOCSDIR%%/zkw.html %%PORTDOCS%%%%DOCSDIR%%/zkwm.html -%%PORTDOCS%%%%DOCSDIR%%/platerev.html -%%PORTDOCS%%%%DOCSDIR%%/cosseg.html -%%PORTDOCS%%%%DOCSDIR%%/images/gen18_2.png -%%PORTDOCS%%%%DOCSDIR%%/images/gentanh_3.png -%%PORTDOCS%%%%DOCSDIR%%/images/gen14_3.png -%%PORTDOCS%%%%DOCSDIR%%/images/gentanh_1.png -%%PORTDOCS%%%%DOCSDIR%%/images/gen14_4.png -%%PORTDOCS%%%%DOCSDIR%%/images/gen14_2.png -%%PORTDOCS%%%%DOCSDIR%%/images/genexp_2.png -%%PORTDOCS%%%%DOCSDIR%%/images/gen18_1.png -%%PORTDOCS%%%%DOCSDIR%%/images/gen18_3.png -%%PORTDOCS%%%%DOCSDIR%%/images/gentanh_2.png -%%PORTDOCS%%%%DOCSDIR%%/images/gen14_1.png -%%PORTDOCS%%%%DOCSDIR%%/images/gen23.png -%%PORTDOCS%%%%DOCSDIR%%/images/genexp_1.png -%%PORTDOCS%%%%DOCSDIR%%/log2.html -%%PORTDOCS%%%%DOCSDIR%%/vbapg.html -%%PORTDOCS%%%%DOCSDIR%%/examples/logicOR.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/Mixer.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/genwave.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/cossegb.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/cossegr.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/spectrum.txt -%%PORTDOCS%%%%DOCSDIR%%/examples/plate.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/log2.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/readf.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/readfi.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/pwd.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/maxaccum.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/midipolyaftertouch.csd -%%PORTDOCS%%%%DOCSDIR%%/examples/sym10.txt *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 23:13:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34E9EC48; Thu, 23 Jan 2014 23:13:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 210C7179F; Thu, 23 Jan 2014 23:13:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NNDdM3078776; Thu, 23 Jan 2014 23:13:40 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NNDdsi078774; Thu, 23 Jan 2014 23:13:39 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401232313.s0NNDdsi078774@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Thu, 23 Jan 2014 23:13:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340869 - in head/audio/smasher: . 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.17 Precedence: list List-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, 23 Jan 2014 23:13:40 -0000 Author: danilo Date: Thu Jan 23 23:13:39 2014 New Revision: 340869 URL: http://svnweb.freebsd.org/changeset/ports/340869 QAT: https://qat.redports.org/buildarchive/r340869/ Log: - Add stage support - Fix build - Add USE_GCC. clang fails with a lot of c++ erros - Bump PORTREVISION Added: head/audio/smasher/files/ head/audio/smasher/files/patch-src__replace.cpp (contents, props changed) Modified: head/audio/smasher/Makefile Modified: head/audio/smasher/Makefile ============================================================================== --- head/audio/smasher/Makefile Thu Jan 23 23:09:44 2014 (r340868) +++ head/audio/smasher/Makefile Thu Jan 23 23:13:39 2014 (r340869) @@ -3,7 +3,7 @@ PORTNAME= smasher PORTVERSION= 1.1.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-source @@ -16,8 +16,8 @@ LIB_DEPENDS= libsndfile.so:${PORTSDIR}/a libcsound64.so:${PORTSDIR}/audio/csound GNU_CONFIGURE= yes -USES= gmake pkgconfig -NO_STAGE= yes +USES= desktop-file-utils gmake pkgconfig +#USE_GCC= yes USE_WX= yes WX_CONF_ARGS= absolute Added: head/audio/smasher/files/patch-src__replace.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/smasher/files/patch-src__replace.cpp Thu Jan 23 23:13:39 2014 (r340869) @@ -0,0 +1,8 @@ +--- ./src/replace.cpp.orig 2014-01-20 16:50:27.000000000 -0200 ++++ ./src/replace.cpp 2014-01-20 16:50:38.000000000 -0200 +@@ -1,4 +1,5 @@ + #include ++#include + #include "replace.h" + + int Replace::run ( From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 23:34:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBCC03CC; Thu, 23 Jan 2014 23:34:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B5B5B193A; Thu, 23 Jan 2014 23:34:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NNY8hF086331; Thu, 23 Jan 2014 23:34:08 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NNY70F086321; Thu, 23 Jan 2014 23:34:07 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201401232334.s0NNY70F086321@svn.freebsd.org> From: Jung-uk Kim Date: Thu, 23 Jan 2014 23:34:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340870 - in head/java: openjdk6 openjdk6-jre openjdk6/files openjdk6/files/icedtea/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.17 Precedence: list List-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, 23 Jan 2014 23:34:08 -0000 Author: jkim Date: Thu Jan 23 23:34:07 2014 New Revision: 340870 URL: http://svnweb.freebsd.org/changeset/ports/340870 QAT: https://qat.redports.org/buildarchive/r340870/ Log: - Update to b30. - Implement sigset(2) for libjsig. All supported FreeBSD releases have it. - Turn UseMembar back on by default until we find better solution. Deleted: head/java/openjdk6/files/icedtea/openjdk/ Modified: head/java/openjdk6-jre/Makefile head/java/openjdk6/Makefile head/java/openjdk6/Makefile.icedtea head/java/openjdk6/distinfo head/java/openjdk6/files/patch-set Modified: head/java/openjdk6-jre/Makefile ============================================================================== --- head/java/openjdk6-jre/Makefile Thu Jan 23 23:13:39 2014 (r340869) +++ head/java/openjdk6-jre/Makefile Thu Jan 23 23:34:07 2014 (r340870) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 7 +PORTREVISION= 0 CATEGORIES= java devel PKGNAMESUFFIX= -jre Modified: head/java/openjdk6/Makefile ============================================================================== --- head/java/openjdk6/Makefile Thu Jan 23 23:13:39 2014 (r340869) +++ head/java/openjdk6/Makefile Thu Jan 23 23:34:07 2014 (r340870) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= openjdk6 -PORTVERSION= b28 -PORTREVISION?= 7 +PORTVERSION= b30 +PORTREVISION?= 0 PORTEPOCH= 1 CATEGORIES= java devel MASTER_SITES= ${MASTER_SITE_APACHE:S,%SUBDIR%/,ant/binaries/:ant,} \ http://download.java.net/openjdk/jtreg/promoted/4.1/b05/:jtreg \ - https://java.net/projects/openjdk6/downloads/download/ \ + https://java.net/downloads/openjdk6/ \ LOCAL MASTER_SITE_SUBDIR= jkim DISTNAME= openjdk-6-src-${PORTVERSION}-${OPENJDK_BUILDDATE} @@ -30,7 +30,7 @@ LIB_DEPENDS= libfreetype.so:${PORTSDIR}/ RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper \ ${LOCALBASE}/lib/X11/fonts/dejavu:${PORTSDIR}/x11-fonts/dejavu -OPENJDK_BUILDDATE= 04_oct_2013 +OPENJDK_BUILDDATE= 21_jan_2014 OPTIONS_DEFINE= ICEDTEA IPV6 POLICY SOUND TZUPDATE OPTIONS_DEFAULT=ICEDTEA IPV6 TZUPDATE @@ -51,6 +51,7 @@ TEST_DESC= Add support for running regre PKGDEINSTALL= ${WRKDIR}/pkg-deinstall PKGINSTALL= ${WRKDIR}/pkg-install +USE_XZ= yes USES= compiler gmake iconv motif .include @@ -228,6 +229,12 @@ post-patch: @${REINPLACE_CMD} -e "s|%%CXX_LIBS%%|${CXX_LIBS}|" \ ${WRKSRC}/corba/make/common/Defs-bsd.gmk \ ${WRKSRC}/jdk/make/common/Defs-bsd.gmk +.if ${COMPILER_TYPE} == "clang" + @${REINPLACE_CMD} -e "s|-fno-omit-frame-pointer|-fno-omit-frame-pointer -mno-omit-leaf-frame-pointer|" \ + ${WRKSRC}/corba/make/common/Defs-bsd.gmk \ + ${WRKSRC}/hotspot/make/bsd/makefiles/amd64.make \ + ${WRKSRC}/jdk/make/common/Defs-bsd.gmk +.endif @${REINPLACE_CMD} -e "s|%%ICONV_INC%%|${ICONV_INCLUDE}|" \ -e "s|%%ICONV_LIB%%|${ICONV_LIBS}|" \ ${WRKSRC}/Makefile ${WRKSRC}/jdk/make/java/instrument/Makefile \ Modified: head/java/openjdk6/Makefile.icedtea ============================================================================== --- head/java/openjdk6/Makefile.icedtea Thu Jan 23 23:13:39 2014 (r340869) +++ head/java/openjdk6/Makefile.icedtea Thu Jan 23 23:34:07 2014 (r340870) @@ -1,108 +1,6 @@ # $FreeBSD$ -_PATCHES= \ - openjdk/8017196-ensure_proxies_are_handled_appropriately.patch \ - openjdk/8011157-improve_corba_portability.patch \ - openjdk/8022940-enhance_corba_translations.patch \ - openjdk/8013503-improve_stream_factories.patch \ - openjdk/8012425-transform_transformfactory.patch \ - openjdk/8017298-better_xml_support.patch \ - openjdk/8014530-better_dsp.patch \ - openjdk/8021366-jaxp_test_fix-01.patch \ - openjdk/8021933-jaxp_test_fix-02.patch \ - openjdk/8022682-supporting_xom.patch \ - openjdk/8015978-incorrect_transformation.patch \ - openjdk/oj6-20-merge.patch \ - openjdk/8024914-swapped_usage.patch \ - openjdk/8017505-better_client_service.patch \ - openjdk/8015614-update_build.patch \ - openjdk/8016256-finalization_final.patch \ - openjdk/8023683-enhance_class_file_parsing.patch \ - openjdk/8023457-tracing_mutex.patch \ - openjdk/8020943-memory_leak.patch \ - openjdk/8023478-hs_crash.patch \ - openjdk/4075303-javap_update.patch \ - openjdk/6819246-javap_instruction_decoding.patch \ - openjdk/6715767-javap_crash.patch \ - openjdk/6841420-classfile_methods.patch \ - openjdk/6841419-classfile_iterator.patch \ - openjdk/4111861-static_fields.patch \ - openjdk/4884240-javap_additional_option.patch \ - openjdk/6852856-javap_subclasses.patch \ - openjdk/6867671-javap_whitespace.patch \ - openjdk/6868539-constant_pool_tags.patch \ - openjdk/4501661-disallow_mixing.patch \ - openjdk/6824493-experimental.patch \ - openjdk/6843013-missing_experimental.patch \ - openjdk/6902264-fix_indentation.patch \ - openjdk/8016675-robust_javadoc.patch \ - openjdk/8016653-ignoreable_characters.patch \ - openjdk/7196533-timezone_bottleneck.patch \ - openjdk/8006900-new_date_time.patch \ - openjdk/8008589-better_mbean_permission_validation.patch \ - openjdk/8011071-better_crypto_provider_handling.patch \ - openjdk/8011081-improve_jhat.patch \ - openjdk/8011157-improve_corba_portability-jdk.patch \ - openjdk/8012071-better_bean_building.patch \ - openjdk/8012147-improve_tool.patch \ - openjdk/8012277-improve_dataflavour.patch \ - openjdk/8013506-better_pack200.patch \ - openjdk/8013510-augment_image_writing.patch \ - openjdk/8013514-improve_cmap_stability.patch \ - openjdk/8013744-better_tabling.patch \ - openjdk/8014085-better_serialization.patch \ - openjdk/8014093-improve_image_parsing.patch \ - openjdk/8014102-improve_image_conversion.patch \ - openjdk/8014341-better_kerberos_service.patch \ - openjdk/8014534-better_profiling.patch \ - openjdk/8014987-augment_serialization.patch \ - openjdk/8015731-auth_improvements.patch \ - openjdk/8015743-address_internet_addresses.patch \ - openjdk/8016357-update_hs_diagnostic_class.patch \ - openjdk/8002070-remove_logger_stack_search.patch \ - openjdk/6708729-javap_makefile_update.patch \ - openjdk/8010118-caller_sensitive.patch \ - openjdk/oj6-19-fix_8010118_test_cases.patch \ - openjdk/8010727-empty_logger_name.patch \ - openjdk/8010939-logmanager_deadlock.patch \ - openjdk/8011990-logger_test_urls.patch \ - openjdk/8013380-logger_stack_walk_glassfish.patch \ - openjdk/8014745-logger_stack_walk_switch.patch \ - openjdk/8012243-serial_regression.patch \ - openjdk/8014718-remove_logging_suntoolkit.patch \ - openjdk/8011139-revise_checking_getenclosingclass.patch \ - openjdk/8017196-ensure_proxies_are_handled_appropriately-jdk.patch \ - openjdk/8017287-better_resource_disposal.patch \ - openjdk/8017291-cast_proxies_aside.patch \ - openjdk/7146431-java.security_files.patch \ - openjdk/8006882-jmockit.patch \ - openjdk/8000450-restrict_access.patch \ - openjdk/8019979-better_access_test.patch \ - openjdk/8004188-rename_java.security.patch \ - openjdk/8017566-backout_part_of_8000450.patch \ - openjdk/8017300-improve_interface_implementation.patch \ - openjdk/8019292-better_attribute_value_exceptions.patch \ - openjdk/8019617-better_view_of_objects.patch \ - openjdk/8012617-arrayindexoutofbounds_linebreakmeasurer.patch \ - openjdk/8020293-jvm_crash.patch \ - openjdk/8013739-better_ldap_resource_management.patch \ - openjdk/8014349-getdeclaredclass_fix.patch \ - openjdk/6954275-big_xml_signatures.patch \ - openjdk/8021290-signature_validation.patch \ - openjdk/8012453-runtime.exec.patch \ - openjdk/8015965-typo_in_property_name.patch \ - openjdk/8015144-performance_regression.patch \ - openjdk/8019969-inet6_test_case_fix.patch \ - openjdk/8019584-invalid_notification_fix.patch \ - openjdk/8021577-bean_serialization_fix.patch \ - openjdk/8021969-jnlp_load_failure.patch \ - openjdk/8021355-splashscreen_regression.patch \ - openjdk/8022661-writeobject_flush.patch \ - openjdk/8023964-ignore_test.patch \ - openjdk/8003992-embedded_nulls.patch \ - openjdk/8013827-createtempfile_hang.patch \ - openjdk/8025128-createtempfile_absolute_prefix.patch \ - openjdk/oj6-21-overrides.patch +_PATCHES= .if ${PORT_OPTIONS:MICEDTEA} _PATCHES+= \ Modified: head/java/openjdk6/distinfo ============================================================================== --- head/java/openjdk6/distinfo Thu Jan 23 23:13:39 2014 (r340869) +++ head/java/openjdk6/distinfo Thu Jan 23 23:34:07 2014 (r340870) @@ -1,6 +1,6 @@ SHA256 (apache-ant-1.9.3-bin.tar.bz2) = ca14a31b2b47edd069624520f64957ad502c0905421da5f46dd41229b8ba4cbf SIZE (apache-ant-1.9.3-bin.tar.bz2) = 4320310 -SHA256 (openjdk-6-src-b28-04_oct_2013.tar.gz) = ac4fceed060ad61dab938c41181455fb0910f58f6944f820f0637b0f0c64bf75 -SIZE (openjdk-6-src-b28-04_oct_2013.tar.gz) = 53599044 +SHA256 (openjdk-6-src-b30-21_jan_2014.tar.xz) = ebd9fdf39c8590cd620cb78c481ca233f5919f2819237b5d2b440666f1dd3475 +SIZE (openjdk-6-src-b30-21_jan_2014.tar.xz) = 33106516 SHA256 (jtreg-4.1-bin-b05_29_nov_2012.zip) = 9291eb4a14501232b35614e88686ff66ad8b69d0098dbd4322b28f97b672653d SIZE (jtreg-4.1-bin-b05_29_nov_2012.zip) = 5993382 Modified: head/java/openjdk6/files/patch-set ============================================================================== --- head/java/openjdk6/files/patch-set Thu Jan 23 23:13:39 2014 (r340869) +++ head/java/openjdk6/files/patch-set Thu Jan 23 23:34:07 2014 (r340870) @@ -579,23 +579,34 @@ HOSTCXX = $(CXX) HOSTCC = $(CC) endif ---- hotspot/src/cpu/x86/vm/globals_x86.hpp -+++ hotspot/src/cpu/x86/vm/globals_x86.hpp -@@ -70,11 +70,7 @@ - define_pd_global(bool, RewriteBytecodes, true); - define_pd_global(bool, RewriteFrequentPairs, true); +--- hotspot/src/os/bsd/vm/jsig.c ++++ hotspot/src/os/bsd/vm/jsig.c +@@ -140,9 +140,13 @@ + } --#ifdef _ALLBSD_SOURCE --define_pd_global(bool, UseMembar, true); --#else - define_pd_global(bool, UseMembar, false); --#endif + sa_handler_t sigset(int sig, sa_handler_t disp) { ++#ifdef __FreeBSD__ ++ return set_signal(sig, disp, true); ++#else + printf("sigset() is not supported by BSD"); + exit(0); +- } ++#endif ++} - // GC Ergo Flags - define_pd_global(intx, CMSYoungGenPerWorker, 64*M); // default max size of CMS young gen, per GC worker thread + static int call_os_sigaction(int sig, const struct sigaction *act, + struct sigaction *oact) { --- hotspot/src/os/bsd/vm/jvm_bsd.cpp +++ hotspot/src/os/bsd/vm/jvm_bsd.cpp -@@ -110,71 +110,30 @@ +@@ -50,6 +50,7 @@ + case INTERRUPT_SIGNAL: + case SIGFPE: + case SIGILL: ++ case SIGBUS: + case SIGSEGV: + + /* The following signal is used by the VM to dump thread stacks unless +@@ -110,71 +111,29 @@ JVM_END /* @@ -617,9 +628,8 @@ - CLD, CHLD, CONT, TSTP, TTIN, TTOU, URG, XCPU, XFSZ, VTALRM, PROF, - WINCH, POLL, IO, PWR, SYS - -+ HUP, INT, TRAP, ABRT, EMT, BUS, SYS, PIPE, ALRM, TERM, URG, TSTP, -+ CONT, CHLD, TTIN, TTOU, IO, XCPU, XFSZ, VTALRM, PROF, WINCH, INFO, -+ USR2 ++ HUP, INT, TRAP, ABRT, EMT, SYS, PIPE, ALRM, TERM, URG, TSTP, CONT, ++ CHLD, TTIN, TTOU, IO, XCPU, XFSZ, VTALRM, PROF, WINCH, INFO, USR2 */ -struct siglabel { @@ -780,7 +790,31 @@ #if defined(__FreeBSD__) || defined(__NetBSD__) # include #endif -@@ -205,6 +217,28 @@ +@@ -162,8 +174,10 @@ + #endif + + int (*os::Bsd::_clock_gettime)(clockid_t, struct timespec *) = NULL; +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + int (*os::Bsd::_pthread_getcpuclockid)(pthread_t, clockid_t *) = NULL; ++#endif ++#ifndef _ALLBSD_SOURCE + Mutex* os::Bsd::_createThread_lock = NULL; + #endif + pthread_t os::Bsd::_main_thread; +@@ -171,7 +185,11 @@ + #ifndef _ALLBSD_SOURCE + bool os::Bsd::_is_floating_stack = false; + bool os::Bsd::_is_NPTL = false; ++#endif ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + bool os::Bsd::_supports_fast_thread_cpu_time = false; ++#endif ++#ifndef _ALLBSD_SOURCE + const char * os::Bsd::_glibc_version = NULL; + const char * os::Bsd::_libpthread_version = NULL; + #endif +@@ -205,6 +223,28 @@ julong os::Bsd::available_memory() { #ifdef _ALLBSD_SOURCE @@ -809,7 +843,7 @@ // XXXBSD: this is just a stopgap implementation return physical_memory() >> 2; #else -@@ -221,6 +255,17 @@ +@@ -221,6 +261,17 @@ } julong os::allocatable_physical_memory(julong size) { @@ -827,7 +861,7 @@ #ifdef _LP64 return size; #else -@@ -308,16 +353,22 @@ +@@ -308,16 +359,22 @@ #define COMPILER_VARIANT "client" #endif @@ -854,7 +888,7 @@ int rslt = syscall(SYS_gettid); if (rslt == -1) { // old kernel, no NPTL support -@@ -325,6 +376,7 @@ +@@ -325,6 +382,7 @@ } else { return (pid_t)rslt; } @@ -862,7 +896,7 @@ } // Most versions of bsd have a bug where the number of processors are -@@ -337,7 +389,35 @@ +@@ -337,7 +395,35 @@ "environment on Bsd when /proc filesystem is not mounted."; #endif @@ -899,7 +933,7 @@ void os::Bsd::initialize_system_info() { int mib[2]; size_t len; -@@ -452,7 +532,7 @@ +@@ -452,7 +538,7 @@ * 7: The default directories, normally /lib and /usr/lib. */ #ifndef DEFAULT_LIBPATH @@ -908,7 +942,7 @@ #endif #define EXTENSIONS_DIR "/lib/ext" -@@ -997,7 +1077,7 @@ +@@ -997,7 +1083,7 @@ return NULL; } @@ -917,7 +951,7 @@ #ifdef __APPLE__ // thread_id is mach thread on macos osthread->set_thread_id(::mach_thread_self()); -@@ -1009,6 +1089,7 @@ +@@ -1009,6 +1095,7 @@ // thread_id is kernel thread id (similar to Solaris LWP id) osthread->set_thread_id(os::Bsd::gettid()); @@ -925,7 +959,7 @@ if (UseNUMA) { int lgrp_id = os::numa_get_group_id(); if (lgrp_id != -1) { -@@ -1016,6 +1097,7 @@ +@@ -1016,6 +1103,7 @@ } } #endif @@ -933,7 +967,16 @@ // initialize signal mask for this thread os::Bsd::hotspot_sigmask(thread); -@@ -1194,7 +1276,7 @@ +@@ -1105,7 +1193,7 @@ + // let pthread_create() pick the default value. + } + +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + // glibc guard page + pthread_attr_setguardsize(&attr, os::Bsd::default_guard_size(thr_type)); + #endif +@@ -1194,7 +1282,7 @@ } // Store pthread info into the OSThread @@ -942,7 +985,27 @@ #ifdef __APPLE__ osthread->set_thread_id(::mach_thread_self()); #else -@@ -1817,8 +1899,10 @@ +@@ -1630,7 +1718,10 @@ + } + #endif + +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) ++#ifdef __FreeBSD__ ++#define sys_clock_getres clock_getres ++#else + #ifndef SYS_clock_getres + + #if defined(IA32) || defined(AMD64) +@@ -1644,6 +1735,7 @@ + #else + #define sys_clock_getres(x,y) ::syscall(SYS_clock_getres, x, y) + #endif ++#endif + + void os::Bsd::fast_thread_clock_init() { + if (!UseBsdPosixThreadCPUClocks) { +@@ -1817,8 +1909,10 @@ } intx os::current_thread_id() { @@ -954,7 +1017,7 @@ #else return (intx)::pthread_self(); #endif -@@ -2341,14 +2425,16 @@ +@@ -2341,14 +2435,16 @@ } void os::print_os_info_brief(outputStream* st) { @@ -973,7 +1036,7 @@ os::Posix::print_uname_info(st); -@@ -2366,7 +2452,23 @@ +@@ -2366,7 +2462,23 @@ st->print("Memory:"); st->print(" %dk page", os::vm_page_size()>>10); @@ -998,7 +1061,7 @@ // values in struct sysinfo are "unsigned long" struct sysinfo si; sysinfo(&si); -@@ -2376,17 +2478,22 @@ +@@ -2376,17 +2488,22 @@ os::physical_memory() >> 10); st->print("(" UINT64_FORMAT "k free)", os::available_memory() >> 10); @@ -1023,7 +1086,25 @@ st->cr(); } -@@ -2533,10 +2640,17 @@ +@@ -2399,7 +2516,7 @@ + + const char *fpe_names[] = { "FPE0", "FPE_INTDIV", "FPE_INTOVF", "FPE_FLTDIV", + "FPE_FLTOVF", "FPE_FLTUND", "FPE_FLTRES", +- "FPE_FLTINV", "FPE_FLTSUB", "FPE_FLTDEN" }; ++ "FPE_FLTINV", "FPE_FLTSUB" }; + + const char *segv_names[] = { "SEGV0", "SEGV_MAPERR", "SEGV_ACCERR" }; + +@@ -2425,7 +2542,7 @@ + st->print(", si_addr=" PTR_FORMAT, si->si_addr); + break; + case SIGFPE: +- st->print(", si_code=%d (%s)", c, c > 9 ? "" : fpe_names[c]); ++ st->print(", si_code=%d (%s)", c, c > 8 ? "" : fpe_names[c]); + st->print(", si_addr=" PTR_FORMAT, si->si_addr); + break; + case SIGSEGV: +@@ -2533,10 +2650,17 @@ jrelib_p = buf + len; // Add the appropriate library subdir @@ -1041,7 +1122,7 @@ // Add the appropriate client or server subdir len = strlen(buf); -@@ -2997,9 +3111,10 @@ +@@ -2997,9 +3121,10 @@ flags |= MAP_FIXED; } @@ -1055,7 +1136,7 @@ flags, -1, 0); if (addr != MAP_FAILED) { -@@ -3156,7 +3271,9 @@ +@@ -3156,7 +3281,9 @@ static size_t _large_page_size = 0; void os::large_page_init() { @@ -1066,7 +1147,7 @@ if (!UseLargePages) { UseHugeTLBFS = false; UseSHM = false; -@@ -3654,8 +3771,8 @@ +@@ -3654,8 +3781,8 @@ return OS_OK; #else int ret = setpriority(PRIO_PROCESS, thread->osthread()->thread_id(), newpri); @@ -1076,7 +1157,25 @@ } OSReturn os::get_native_priority(const Thread* const thread, int *priority_ptr) { -@@ -4634,6 +4751,20 @@ +@@ -4171,7 +4298,7 @@ + } + } + +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + // This is the fastest way to get thread cpu time on Bsd. + // Returns cpu time (user+sys) for any thread, not only for current. + // POSIX compliant clocks are implemented in the kernels 2.6.16+. +@@ -4450,7 +4577,7 @@ + // this is called _after_ the global arguments have been parsed + jint os::init_2(void) + { +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + Bsd::fast_thread_clock_init(); + #endif + +@@ -4634,6 +4761,20 @@ int os::active_processor_count() { #ifdef _ALLBSD_SOURCE @@ -1097,9 +1196,110 @@ return _processor_count; #else // Bsd doesn't yet have a (official) notion of processor sets, +@@ -5033,7 +5174,7 @@ + return munmap(addr, bytes) == 0; + } + +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + static jlong slow_thread_cpu_time(Thread *thread, bool user_sys_cpu_time); + + static clockid_t thread_cpu_clockid(Thread* thread) { +@@ -5057,7 +5198,7 @@ + jlong os::current_thread_cpu_time() { + #ifdef __APPLE__ + return os::thread_cpu_time(Thread::current(), true /* user + sys */); +-#elif !defined(_ALLBSD_SOURCE) ++#elif !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + if (os::Bsd::supports_fast_thread_cpu_time()) { + return os::Bsd::fast_thread_cpu_time(CLOCK_THREAD_CPUTIME_ID); + } else { +@@ -5068,7 +5209,7 @@ + } + + jlong os::thread_cpu_time(Thread* thread) { +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + // consistent with what current_thread_cpu_time() returns + if (os::Bsd::supports_fast_thread_cpu_time()) { + return os::Bsd::fast_thread_cpu_time(thread_cpu_clockid(thread)); +@@ -5081,7 +5222,7 @@ + jlong os::current_thread_cpu_time(bool user_sys_cpu_time) { + #ifdef __APPLE__ + return os::thread_cpu_time(Thread::current(), user_sys_cpu_time); +-#elif !defined(_ALLBSD_SOURCE) ++#elif !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + if (user_sys_cpu_time && os::Bsd::supports_fast_thread_cpu_time()) { + return os::Bsd::fast_thread_cpu_time(CLOCK_THREAD_CPUTIME_ID); + } else { +@@ -5110,7 +5251,7 @@ + } else { + return ((jlong)tinfo.user_time.seconds * 1000000000) + ((jlong)tinfo.user_time.microseconds * (jlong)1000); + } +-#elif !defined(_ALLBSD_SOURCE) ++#elif !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + if (user_sys_cpu_time && os::Bsd::supports_fast_thread_cpu_time()) { + return os::Bsd::fast_thread_cpu_time(thread_cpu_clockid(thread)); + } else { +@@ -5119,12 +5260,15 @@ + #endif + } + +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + // + // -1 on error. + // + + static jlong slow_thread_cpu_time(Thread *thread, bool user_sys_cpu_time) { ++#ifdef __FreeBSD__ ++ return -1; ++#else + static bool proc_pid_cpu_avail = true; + static bool proc_task_unchecked = true; + static const char *proc_stat_path = "/proc/%d/stat"; +@@ -5208,6 +5352,7 @@ + } else { + return (jlong)user_time * (1000000000 / clock_tics_per_sec); + } ++#endif + } + #endif + +@@ -5226,7 +5371,7 @@ + } + + bool os::is_thread_cpu_time_supported() { +-#ifdef __APPLE__ ++#if defined(__APPLE__) || defined(__FreeBSD__) + return true; + #elif defined(_ALLBSD_SOURCE) + return false; --- hotspot/src/os/bsd/vm/os_bsd.hpp +++ hotspot/src/os/bsd/vm/os_bsd.hpp -@@ -112,13 +112,15 @@ +@@ -56,9 +56,11 @@ + static int sigflags[MAXSIGNUM]; + + static int (*_clock_gettime)(clockid_t, struct timespec *); +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + static int (*_pthread_getcpuclockid)(pthread_t, clockid_t *); ++#endif + ++#ifndef _ALLBSD_SOURCE + static address _initial_thread_stack_bottom; + static uintptr_t _initial_thread_stack_size; + +@@ -67,6 +69,8 @@ + + static bool _is_floating_stack; + static bool _is_NPTL; ++#endif ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + static bool _supports_fast_thread_cpu_time; + #endif + +@@ -112,13 +116,15 @@ #endif static pthread_t main_thread(void) { return _main_thread; } @@ -1116,7 +1316,13 @@ static void hotspot_sigmask(Thread* thread); #ifndef _ALLBSD_SOURCE -@@ -202,7 +204,7 @@ +@@ -197,12 +203,12 @@ + // Real-time clock functions + static void clock_init(void); + +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + // fast POSIX clocks support static void fast_thread_clock_init(void); #endif @@ -1125,6 +1331,15 @@ return _clock_gettime != NULL; } +@@ -210,7 +216,7 @@ + return _clock_gettime ? _clock_gettime(clock_id, tp) : -1; + } + +-#ifndef _ALLBSD_SOURCE ++#if !defined(_ALLBSD_SOURCE) || defined(__FreeBSD__) + static int pthread_getcpuclockid(pthread_t tid, clockid_t *clock_id) { + return _pthread_getcpuclockid ? _pthread_getcpuclockid(tid, clock_id) : -1; + } --- hotspot/src/os/bsd/vm/threadCritical_bsd.cpp +++ hotspot/src/os/bsd/vm/threadCritical_bsd.cpp @@ -33,35 +33,36 @@ @@ -1945,6 +2160,17 @@ void* result = (void*) tp->area_top; tp->area_top += size; +--- hotspot/src/share/vm/runtime/globals.hpp ++++ hotspot/src/share/vm/runtime/globals.hpp +@@ -1125,7 +1125,7 @@ + product(intx, hashCode, 0, \ + "(Unstable) select hashCode generation algorithm" ) \ + \ +- product(intx, WorkAroundNPTLTimedWaitHang, 1, \ ++ product(intx, WorkAroundNPTLTimedWaitHang, 0, \ + "(Unstable, Linux-specific)" \ + " avoid NPTL-FUTEX hang pthread_cond_timedwait" ) \ + \ --- hotspot/src/share/vm/runtime/interfaceSupport.hpp +++ hotspot/src/share/vm/runtime/interfaceSupport.hpp @@ -67,7 +67,7 @@ From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 23:48:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E2C5F7D3; Thu, 23 Jan 2014 23:48:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C38801A1E; Thu, 23 Jan 2014 23:48:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NNmsc3091505; Thu, 23 Jan 2014 23:48:54 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NNms8v091500; Thu, 23 Jan 2014 23:48:54 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401232348.s0NNms8v091500@svn.freebsd.org> From: Rusmir Dusko Date: Thu, 23 Jan 2014 23:48:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340871 - in head/devel/gdb: . 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.17 Precedence: list List-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, 23 Jan 2014 23:48:55 -0000 Author: nemysis Date: Thu Jan 23 23:48:53 2014 New Revision: 340871 URL: http://svnweb.freebsd.org/changeset/ports/340871 QAT: https://qat.redports.org/buildarchive/r340871/ Log: - Update to 7.6.2 - Change CONFIGURE_ARGS - Reordering Options - Use the new format for LIB_DEPENDS - Break lines around 80 characters PR: ports/184796 Submitted by: Luca Pizzamiglio Added: head/devel/gdb/files/patch-sigev (contents, props changed) Modified: head/devel/gdb/Makefile head/devel/gdb/distinfo Modified: head/devel/gdb/Makefile ============================================================================== --- head/devel/gdb/Makefile Thu Jan 23 23:34:07 2014 (r340870) +++ head/devel/gdb/Makefile Thu Jan 23 23:48:53 2014 (r340871) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gdb -PORTVERSION= 7.6.1 -PORTREVISION= 1 +PORTVERSION= 7.6.2 CATEGORIES= devel MASTER_SITES= GNU @@ -13,52 +12,56 @@ COMMENT= GNU GDB of newer version than c LICENSE= GPLv3 USE_BZIP2= yes -USE_CSTD= gnu89 USES= iconv gmake +USE_CSTD= gnu89 GNU_CONFIGURE= yes CONFIGURE_ENV= CONFIGURED_M4=m4 CONFIGURED_BISON=byacc CONFIGURE_ARGS= --program-suffix=${PORTVERSION:S/.//g} \ --with-gdb-datadir=${PREFIX}/share/gdb${PORTVERSION:S/.//g} \ + --with-separate-debug-dir=/usr/lib/debug \ ${ICONV_CONFIGURE_ARG} \ --without-libunwind-ia64 \ --enable-targets=all CFLAGS:= ${CFLAGS:C/ +$//} # blanks at EOL creep in sometimes CFLAGS+= -DRL_NO_COMPAT EXCLUDE= dejagnu expect sim texinfo intl +EXTRACT_AFTER_ARGS= ${EXCLUDE:S/^/--exclude /} + VER= ${PORTVERSION:S/.//g} PLIST_SUB= VER=${VER} -EXTRACT_AFTER_ARGS= ${EXCLUDE:S/^/--exclude /} ONLY_FOR_ARCHS= i386 amd64 powerpc powerpc64 # untested elsewhere, might work -OPTIONS_DEFINE= DEBUG EXPAT PYTHON THREADS TUI GDB_LINK -OPTIONS_SINGLE_READLINE= BASE_READLINE BUNDLED_READLINE PORT_READLINE +OPTIONS_DEFINE= DEBUG EXPAT GDB_LINK PYTHON THREADS TUI + +OPTIONS_DEFAULT= GDB_LINK THREADS TUI PORT_READLINE + OPTIONS_SINGLE= READLINE +OPTIONS_SINGLE_READLINE= BASE_READLINE BUNDLED_READLINE PORT_READLINE + +GDB_LINK_DESC= Create the gdb link BASE_READLINE_DESC= from base system(EXPERIMENTAL) BUNDLED_READLINE_DESC= from gdb distfile PORT_READLINE_DESC= from devel/readline port -GDB_LINK_DESC= Create the gdb link TUI_DESC= Text User Interface enabled -OPTIONS_DEFAULT= THREADS TUI GDB_LINK PORT_READLINE -# Activating the plist -OPTIONS_SUB=yes +OPTIONS_SUB= yes +BASE_READLINE_USES= readline +BASE_READLINE_CFLAGS= -D_rl_echoing_p=readline_echoing_p +BUNDLED_READLINE_CONFIGURE_OFF= --with-system-readline DEBUG_CFLAGS= -g EXPAT_CONFIGURE_ON= --with-expat=yes EXPAT_CONFIGURE_OFF= --without-expat -EXPAT_LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 -TUI_CONFIGURE_ENABLE= tui +EXPAT_LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 PYTHON_CONFIGURE_ON= --with-python=${PYTHON_CMD} PYTHON_CONFIGURE_OFF= --without-python PORT_READLINE_USES= readline:port -BASE_READLINE_USES= readline -BASE_READLINE_CFLAGS= -D_rl_echoing_p=readline_echoing_p -BUNDLED_READLINE_CONFIGURE_OFF= --with-system-readline +TUI_CONFIGURE_ENABLE= tui .include -.if empty(PORT_OPTIONS:MBUNDLED_READLINE) +.if ! ${PORT_OPTIONS:MBUNDLED_READLINE} EXCLUDE+= readline .endif @@ -67,7 +70,8 @@ USE_PYTHON= 2 .endif .if ${PORT_OPTIONS:MTHREADS} -EXTRA_PATCHES= ${FILESDIR}/extrapatch-gdb-configure.tgt ${FILESDIR}/extrapatch-gdb-Makefile.in +EXTRA_PATCHES= ${FILESDIR}/extrapatch-gdb-configure.tgt \ + ${FILESDIR}/extrapatch-gdb-Makefile.in .endif .if ${ARCH} == "amd64" @@ -75,31 +79,37 @@ CONFIGURE_TARGET= x86_64-portbld-freebsd .endif post-patch: - @${REINPLACE_CMD} -e 's/$$/ [GDB v${PORTVERSION} for FreeBSD]/' \ + @${REINPLACE_CMD} -e 's|$$| [GDB v${PORTVERSION} for FreeBSD]|' \ ${WRKSRC}/gdb/version.in + .if ${PORT_OPTIONS:MTHREADS} @${CP} ${FILESDIR}/fbsd-threads.c ${WRKSRC}/gdb/ .endif do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb ${STAGEDIR}${PREFIX}/bin/gdb${VER} - ${INSTALL_MAN} ${WRKSRC}/gdb/gdb.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/gdb${VER}.1 + ${INSTALL_PROGRAM} ${WRKSRC}/gdb/gdb \ + ${STAGEDIR}${PREFIX}/bin/gdb${VER} + ${INSTALL_MAN} ${WRKSRC}/gdb/gdb.1 \ + ${STAGEDIR}${MAN1PREFIX}/man/man1/gdb${VER}.1 + .if ${PORT_OPTIONS:MTUI} ${LN} -sf gdb${VER} ${STAGEDIR}${PREFIX}/bin/gdbtui${VER} .endif + .if ${PORT_OPTIONS:MGDB_LINK} ${LN} -sf gdb${VER} ${STAGEDIR}${PREFIX}/bin/gdb .endif + .if ${PORT_OPTIONS:MPYTHON} (cd ${WRKSRC}/gdb; ${GMAKE} DESTDIR=${STAGEDIR} install-python ) - (cd ${WRKSRC}/gdb/data-directory; ${GMAKE} DESTDIR=${STAGEDIR} install-python ) + (cd ${WRKSRC}/gdb/data-directory ; \ + ${GMAKE} DESTDIR=${STAGEDIR} install-python ) .endif -post-install: .if ${PORT_OPTIONS:MPYTHON} - ${CHMOD} u+w ${STAGEDIR}${PREFIX}/share/gdb${VER}/python/gdb/*.py* - ${CHMOD} u+w ${STAGEDIR}${PREFIX}/share/gdb${VER}/python/gdb/command/*.py* - ${CHMOD} u+w ${STAGEDIR}${PREFIX}/share/gdb${VER}/python/gdb/function/*.py* +. for f in gdb gdb/command gdb/function + @(cd ${STAGEDIR}${PREFIX}/share/gdb${VER}/python/${f} ; ${CHMOD} 644 *.py* ) +. endfor .endif .include Modified: head/devel/gdb/distinfo ============================================================================== --- head/devel/gdb/distinfo Thu Jan 23 23:34:07 2014 (r340870) +++ head/devel/gdb/distinfo Thu Jan 23 23:48:53 2014 (r340871) @@ -1,2 +1,2 @@ -SHA256 (gdb-7.6.1.tar.bz2) = e3dfa38a14a5457f9b8b26f7b5080ba5491bd10ae4d69bfe357cea87b7d162e4 -SIZE (gdb-7.6.1.tar.bz2) = 24338919 +SHA256 (gdb-7.6.2.tar.bz2) = 2f6a0e2ce1c66c9dedeb7f58a8d1298ad602ddcdaf15d23104e1f7832b96d0e8 +SIZE (gdb-7.6.2.tar.bz2) = 24269334 Added: head/devel/gdb/files/patch-sigev ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gdb/files/patch-sigev Thu Jan 23 23:48:53 2014 (r340871) @@ -0,0 +1,59 @@ +--- gdb/common/signals.c.orig 2013-01-01 07:32:54.000000000 +0100 ++++ gdb/common/signals.c 2013-11-25 16:12:56.000000000 +0100 +@@ -46,6 +46,12 @@ + # endif + #endif + ++#ifdef __FreeBSD__ ++# ifndef SIGLIBRT ++# define SIGLIBRT 33 /* Older versions do not define the constant */ ++# endif ++#endif ++ + /* This table must match in order and size the signals in enum + gdb_signal. */ + +@@ -334,6 +340,11 @@ + return GDB_SIGNAL_INFO; + #endif + ++#if defined (SIGLIBRT) ++ if ( hostsig == SIGLIBRT ) ++ return GDB_SIGNAL_FBSD_LIBRT; ++#endif ++ + #if defined (REALTIME_LO) + if (hostsig >= REALTIME_LO && hostsig < REALTIME_HI) + { +@@ -591,6 +602,11 @@ + return SIGINFO; + #endif + ++#if defined (SIGLIBRT) ++ case GDB_SIGNAL_FBSD_LIBRT: ++ return SIGLIBRT; ++#endif ++ + default: + #if defined (REALTIME_LO) + retsig = 0; +--- gdb/infrun.c.orig 2013-08-30 17:58:55.000000000 +0200 ++++ gdb/infrun.c 2013-11-22 16:12:58.000000000 +0100 +@@ -7291,6 +7291,8 @@ + signal_print[GDB_SIGNAL_WINCH] = 0; + signal_stop[GDB_SIGNAL_PRIO] = 0; + signal_print[GDB_SIGNAL_PRIO] = 0; ++ signal_stop[GDB_SIGNAL_FBSD_LIBRT] = 0; ++ signal_print[GDB_SIGNAL_FBSD_LIBRT] = 0; + + /* These signals are used internally by user-level thread + implementations. (See signal(5) on Solaris.) Like the above +--- include/gdb/signals.def.orig 2013-01-01 07:41:30.000000000 +0100 ++++ include/gdb/signals.def 2013-11-25 16:13:42.000000000 +0100 +@@ -197,4 +197,5 @@ + /* If you are adding a new signal, add it just above this comment. */ + + /* Last and unused enum value, for sizing arrays, etc. */ +-SET (GDB_SIGNAL_LAST, 151, NULL, "GDB_SIGNAL_MAGIC") ++SET (GDB_SIGNAL_FBSD_LIBRT, 151, "SIGLIBRT", "GDB_SIGNAL_FBSD_LIBRT") ++SET (GDB_SIGNAL_LAST, 152, NULL, "GDB_SIGNAL_MAGIC") From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 00:14:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84C38841; Fri, 24 Jan 2014 00:14:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6B5A11D46; Fri, 24 Jan 2014 00:14:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O0EE6N038286; Fri, 24 Jan 2014 00:14:14 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O0EDp6038250; Fri, 24 Jan 2014 00:14:13 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401240014.s0O0EDp6038250@svn.freebsd.org> From: Mathieu Arnold Date: Fri, 24 Jan 2014 00:14:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340872 - in head: databases/cassandra/files databases/cego/files databases/couchdb/files databases/cyrus-imspd/files databases/datamodeler/files databases/db47/files databases/dbXML/fi... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 00:14:14 -0000 Author: mat Date: Fri Jan 24 00:14:07 2014 New Revision: 340872 URL: http://svnweb.freebsd.org/changeset/ports/340872 QAT: https://qat.redports.org/buildarchive/r340872/ Log: Yet another props cleanup commit. With hat: portmgr Sponsored by: Absolight Modified: head/textproc/jaxup/files/DOMXUpdater.java (contents, props changed) head/www/pebble/files/pebble.properties.in (contents, props changed) Directory Properties: head/databases/cassandra/files/repaircluster.in (props changed) head/databases/cego/files/cego.in (props changed) head/databases/couchdb/files/couchdb.in (props changed) head/databases/cyrus-imspd/files/imspd.conf (props changed) head/databases/cyrus-imspd/files/imspd.in (props changed) head/databases/datamodeler/files/datamodeler.script.sh.in (props changed) head/databases/db47/files/patch.4.7.25.4 (props changed) head/databases/dbXML/files/dbxml.in (props changed) head/databases/dbXML/files/dbxmlctl.in (props changed) head/databases/exist/files/eXist.in (props changed) head/databases/firebird20-server/files/aliases.conf.in (props changed) head/databases/firebird20-server/files/icu.m4 (props changed) head/databases/firebird21-server/files/aliases.conf.in (props changed) head/databases/firebird21-server/files/icu.m4 (props changed) head/databases/firebird25-server/files/firebird.in (props changed) head/databases/flare/files/flared.in (props changed) head/databases/flare/files/flarei.in (props changed) head/databases/frontbase/files/LICENSE.txt (props changed) head/databases/frontbase/files/frontbase.in (props changed) head/databases/hk_classes/files/hk_classes.sh (props changed) head/databases/isql-viewer/files/iSQL-Viewer.sh (props changed) head/databases/jasperserver/files/jasperserverCreateDefaultSecurity-mysql.sql (props changed) head/databases/jasperserver/files/jasperserverCreateDefaultSecurity-postgresql.sql (props changed) head/databases/kumofs/files/kumofs-gateway.in (props changed) head/databases/kumofs/files/kumofs-manager.in (props changed) head/databases/kumofs/files/kumofs-server.in (props changed) head/databases/mariadb-server/files/mysql-server.in (props changed) head/databases/mariadb-server/files/scripts__Makefile.in (props changed) head/databases/memcached/files/memcached.in (props changed) head/databases/memcachedb/files/memcachedb.in (props changed) head/databases/memcacheq/files/memcacheq.in (props changed) head/databases/msql/files/msql2.sh (props changed) head/databases/msql/files/post-install-notes (props changed) head/databases/msql/files/slibinstall.mm (props changed) head/databases/msql/files/slibrary_unix.mm (props changed) head/databases/msql/scripts/check_old_version (props changed) head/databases/msql/scripts/customize_scripts (props changed) head/databases/msql3/files/msql3.sh (props changed) head/databases/msql3/scripts/customize_scripts (props changed) head/databases/mysql-proxy/files/mysql-proxy.in (props changed) head/databases/mysql-workbench51/files/extra-51-modules__wb.utils__Makefile.am (props changed) head/databases/mysql51-server/files/mysql-server.in (props changed) head/databases/mysql55-server/files/mysql-server.in (props changed) head/databases/mysql56-server/files/mysql-server.in (props changed) head/databases/mysqlard/files/mysqlard.in (props changed) head/databases/pear-Doctrine12/files/pear-install.in (props changed) head/databases/pgaccess/files/run-tcl-file (props changed) head/databases/pgbouncer/files/pgbouncer.in (props changed) head/databases/pgpool-II-22/files/pgpool.in (props changed) head/databases/pgpool-II-22/files/pgpool_copy_backup (props changed) head/databases/pgpool-II-22/files/pgpool_remote_start (props changed) head/databases/pgpool-II-22/files/pgpool_switch_xlog (props changed) head/databases/pgpool-II-23/files/pgpool.in (props changed) head/databases/pgpool-II-23/files/pgpool_copy_backup (props changed) head/databases/pgpool-II-23/files/pgpool_remote_start (props changed) head/databases/pgpool-II-23/files/pgpool_switch_xlog (props changed) head/databases/pgpool-II-30/files/pgpool.in (props changed) head/databases/pgpool-II-30/files/pgpool_copy_backup (props changed) head/databases/pgpool-II-30/files/pgpool_remote_start (props changed) head/databases/pgpool-II-30/files/pgpool_switch_xlog (props changed) head/databases/pgpool-II/files/pgpool.in (props changed) head/databases/pgpool-II/files/pgpool_copy_backup (props changed) head/databases/pgpool-II/files/pgpool_remote_start (props changed) head/databases/pgpool-II/files/pgpool_switch_xlog (props changed) head/databases/pgpool/files/pgpool.in (props changed) head/databases/phpmyadmin/files/config.inc.php.sample (props changed) head/databases/postgresql-plruby/files/createlang.sql (props changed) head/databases/postgresql-relay/files/postgresql-relay.in (props changed) head/databases/postgresql84-server/files/502.pgsql.in (props changed) head/databases/postgresql84-server/files/dot.cshrc.in (props changed) head/databases/postgresql84-server/files/dot.profile.in (props changed) head/databases/postgresql84-server/files/postgresql.in (props changed) head/databases/postgresql90-server/files/502.pgsql.in (props changed) head/databases/postgresql90-server/files/dot.cshrc.in (props changed) head/databases/postgresql90-server/files/dot.profile.in (props changed) head/databases/postgresql90-server/files/postgresql.in (props changed) head/databases/postgresql91-server/files/502.pgsql.in (props changed) head/databases/postgresql91-server/files/dot.cshrc.in (props changed) head/databases/postgresql91-server/files/dot.profile.in (props changed) head/databases/postgresql91-server/files/postgresql.in (props changed) head/databases/postgresql92-server/files/502.pgsql.in (props changed) head/databases/postgresql92-server/files/dot.cshrc.in (props changed) head/databases/postgresql92-server/files/dot.profile.in (props changed) head/databases/postgresql92-server/files/postgresql.in (props changed) head/databases/postgresql93-server/files/502.pgsql.in (props changed) head/databases/postgresql93-server/files/dot.cshrc.in (props changed) head/databases/postgresql93-server/files/dot.profile.in (props changed) head/databases/postgresql93-server/files/postgresql.in (props changed) head/databases/powerarchitect/files/powerarchitect.in (props changed) head/databases/py-bsddb/files/setup.py (props changed) head/databases/py-bsddb3/files/py3k-fix-pkg-plist.inc (props changed) head/databases/py-carbon/files/carbon.in (props changed) head/databases/py-fdb/files/py3k-fix-pkg-plist.inc (props changed) head/databases/py-gdbm/files/setup.py (props changed) head/databases/py-gdbm/files/setup3.py (props changed) head/databases/py-postgresql/files/py3k-fix-pkg-plist.inc (props changed) head/databases/rdfdb/files/rdfdb-server.sh.tmpl (props changed) head/databases/redis-devel/files/redis.in (props changed) head/databases/redis/files/redis.in (props changed) head/databases/rrdtool/files/rrdcached.in (props changed) head/databases/rrdtool/files/thirdparty-json.diff (props changed) head/databases/rubygem-rubyrep/files/rubyrep.in (props changed) head/databases/slony1/files/slon-mkservice.sh.in (props changed) head/databases/slony1/files/slon.conf-sample (props changed) head/databases/slony1/files/slon.in (props changed) head/databases/slony1v2/files/slon-mkservice.sh.in (props changed) head/databases/slony1v2/files/slon.conf-sample (props changed) head/databases/slony1v2/files/slon.in (props changed) head/databases/sqldeveloper/files/sqldeveloper.sh.in (props changed) head/databases/sqlite-ext-miscfuncs/files/README.in (props changed) head/databases/sqlite2/files/example.tcl (props changed) head/databases/squirrel-sql/files/squirrel-sql.in (props changed) head/databases/tcl-sqlite3/files/example.tcl.in (props changed) head/databases/tdb/files/tdbbackup.8 (props changed) head/databases/tdb/files/tdbdump.8 (props changed) head/databases/tdb/files/tdbrestore.8 (props changed) head/databases/tdb/files/tdbtool.8 (props changed) head/databases/tokyotyrant/files/ttserver.in (props changed) head/databases/virtuoso/files/virtuoso.in (props changed) head/deskutils/docear/files/docear.xml (props changed) head/deskutils/freemind/files/freemind.sh.in (props changed) head/deskutils/ganttproject/files/ganttproject.sh.in (props changed) head/deskutils/gworkspace-gwmetadata/files/MDFinder-GNUmakefile (props changed) head/deskutils/gworkspace-gwmetadata/files/Preferences-GNUmakefile (props changed) head/deskutils/kdepim4-runtime/files/qt3to4headers.txt (props changed) head/deskutils/kdepim44-runtime/files/qt3to4headers.txt (props changed) head/deskutils/kdeplasma-addons/files/qt3to4headers.txt (props changed) head/deskutils/openproj/files/openproj.sh.in (props changed) head/deskutils/plan/files/utmpx-src-daemon.c (props changed) head/deskutils/xcalendar/files/xcalendar-uj.hlp.sed (props changed) head/deskutils/xcalendar/files/xcalendar-uj.hol (props changed) head/deskutils/xcalendar/files/xcalendar-uj.man.sed (props changed) head/devel/adacurses/files/adacurses-config (props changed) head/devel/antlr/files/antlr.sh (props changed) head/devel/antlrworks/files/antlrworks.sh (props changed) head/devel/apache-ant/files/ant.sh.in (props changed) head/devel/arduino-mk/files/version.sh (props changed) head/devel/arduino/files/arduino.in (props changed) head/devel/argouml/files/argouml.sh.in (props changed) head/devel/autoconf-wrapper/files/autotools-wrapper.sh (props changed) head/devel/bcc/files/as86.1 (props changed) head/devel/bcc/files/bcc-cc1.1 (props changed) head/devel/bcc/files/bcc.1 (props changed) head/devel/bcc/files/ld86.1 (props changed) head/devel/bcc/scripts/configure (props changed) head/devel/bennugd-core/files/bgdc.in (props changed) head/devel/bennugd-core/files/bgdi.in (props changed) head/devel/ccache/files/ccache-howto-freebsd.txt.in (props changed) head/devel/ccache/files/ccache-update-links.sh.in (props changed) head/devel/ccache/files/world-ccache.in (props changed) head/devel/cl-asdf/files/asdf-init.lisp (props changed) head/devel/colorgcc/files/colorgccrc (props changed) head/devel/cvs-devel/files/missing (props changed) head/devel/cvschk/files/cvschk.1 (props changed) head/devel/cvsd/files/cvsd.in (props changed) head/devel/cvsd/files/extra-cvsd-buildroot.in (props changed) head/devel/dbus/files/dbus.in (props changed) head/devel/distcc/files/distccd.in (props changed) head/devel/e2fsprogs-libss/files/fix-ss_err.h.sed (props changed) head/devel/eiffelstudio/files/eiffelstudio.in (props changed) head/devel/eric4/files/config (props changed) head/devel/eric4/files/eric4.desktop.in (props changed) head/devel/fam/files/mntent.h (props changed) head/devel/fb303/files/extra_patch-cpp__Makefile.am (props changed) head/devel/firmware-utils/files/freebsd.h (props changed) head/devel/flex-sdk/files/aasdoc.sh.in (props changed) head/devel/flex-sdk/files/acompc.sh.in (props changed) head/devel/flex-sdk/files/amxmlc.sh.in (props changed) head/devel/flex-sdk/files/asdoc.sh.in (props changed) head/devel/flex-sdk/files/compc.sh.in (props changed) head/devel/flex-sdk/files/copylocale.sh.in (props changed) head/devel/flex-sdk/files/digest.sh.in (props changed) head/devel/flex-sdk/files/fcsh.sh.in (props changed) head/devel/flex-sdk/files/fdb.sh.in (props changed) head/devel/flex-sdk/files/mxmlc.sh.in (props changed) head/devel/flex-sdk/files/optimizer.sh.in (props changed) head/devel/flex-sdk2/files/asdoc.sh.in (props changed) head/devel/flex-sdk2/files/compc.sh.in (props changed) head/devel/flex-sdk2/files/fdb.sh.in (props changed) head/devel/flex-sdk2/files/mxmlc.sh.in (props changed) head/devel/flex-sdk35/files/aasdoc.sh.in (props changed) head/devel/flex-sdk35/files/acompc.sh.in (props changed) head/devel/flex-sdk35/files/amxmlc.sh.in (props changed) head/devel/flex-sdk35/files/asdoc.sh.in (props changed) head/devel/flex-sdk35/files/compc.sh.in (props changed) head/devel/flex-sdk35/files/copylocale.sh.in (props changed) head/devel/flex-sdk35/files/digest.sh.in (props changed) head/devel/flex-sdk35/files/fcsh.sh.in (props changed) head/devel/flex-sdk35/files/fdb.sh.in (props changed) head/devel/flex-sdk35/files/mxmlc.sh.in (props changed) head/devel/flex-sdk35/files/optimizer.sh.in (props changed) head/devel/flex_compiler_shell/files/fcsh.in (props changed) head/devel/florist-gpl/files/pconfig.DragonFly (props changed) head/devel/florist-gpl/files/pconfig.NetBSD (props changed) head/devel/flyspray/files/README.FreeBSD (props changed) head/devel/fujaba/files/fujaba.sh.in (props changed) head/devel/gdb66/files/itcl33-patch (props changed) head/devel/gearmand-devel/files/gearmand.in (props changed) head/devel/gearmand/files/gearmand.in (props changed) head/devel/geoip-java/files/build.xml (props changed) head/devel/ireport/files/startup.sh (props changed) head/devel/itext/files/itext-rups (props changed) head/devel/jech-dht/files/BSDmakefile (props changed) head/devel/jenkins-lts/files/jenkins.in (props changed) head/devel/jenkins/files/jenkins.in (props changed) head/devel/jiic/files/build.xml (props changed) head/devel/jline/files/JLineCompleter.py (props changed) head/devel/jline/files/jython.sh (props changed) head/devel/kaptain/files/CREDITS (props changed) head/devel/kickassembler/files/kickassembler.sh.in (props changed) head/devel/libev/files/libev.pc.in (props changed) head/devel/libgpc/files/BSDmakefile (props changed) head/devel/libowfat/files/manpages (props changed) head/devel/libreadline-java/files/JReadlineCompleter.py (props changed) head/devel/libreadline-java/files/jython.sh.in (props changed) head/devel/libtai/files/leapsecs-update.txt (props changed) head/devel/libtecla/scripts/genmanlist.sh (props changed) head/devel/log4net/files/log4net.pc.in (props changed) head/devel/lxr/files/upgrade-0.9.10-mysql.in (props changed) head/devel/lxr/files/upgrade-0.9.10-postgres.in (props changed) head/devel/maven-wrapper/files/mvn.sh.in (props changed) head/devel/maven2/files/m2.sh.in (props changed) head/devel/maven3/files/mvn.sh.in (props changed) head/devel/maven31/files/mvn.sh.in (props changed) head/devel/ml-doc/files/fix-cml-doc.sh.in (props changed) head/devel/ml-doc/files/lib-Makefile (props changed) head/devel/ml-doc/files/mkdoc.1.in (props changed) head/devel/ml-doc/files/ml-doc.1.in (props changed) head/devel/nini/files/nini.pc.in (props changed) head/devel/obfuscatejs/files/obfuscatejs.in (props changed) head/devel/ocaml-classes/files/META (props changed) head/devel/oniguruma/files/onig-config (props changed) head/devel/oniguruma4/files/onig-config (props changed) head/devel/opengrok/files/opengrok.in (props changed) head/devel/p4d/files/p4d.in (props changed) head/devel/p4ftpd/files/p4ftpd.in (props changed) head/devel/p4genpatch/files/bin/p4d2p (props changed) head/devel/p4genpatch/files/bin/p4genpatch (props changed) head/devel/p4p/files/p4p.in (props changed) head/devel/p4web/files/p4web.in (props changed) head/devel/p5-Data-TemporaryBag/files/500503-TemporaryBag.pm (props changed) head/devel/p5-ExtUtils-PkgConfig/files/500600-Makefile.PL (props changed) head/devel/p5-Gearman-Server/files/gearmand-perl.in (props changed) head/devel/p5-Java/files/javaserver.in (props changed) head/devel/p5-Test-Reporter/files/500503-Test::Reporter.pm (props changed) head/devel/p5-perlqt/files/perl-kdebindings-env.sh.in (props changed) head/devel/pcsc-lite/files/pcscd.in (props changed) head/devel/pear-channel-doctrine/files/pear.doctrine-project.org.reg (props changed) head/devel/pear-channel-ezc/files/components.ez.no.reg (props changed) head/devel/pear-channel-htmlpurifier/files/htmlpurifier.org.reg (props changed) head/devel/pear-channel-pdepend/files/pear.pdepend.org.reg (props changed) head/devel/pear-channel-phing/files/pear.phing.info.reg (props changed) head/devel/pear-channel-phpdoc/files/pear.phpdoc.org.reg (props changed) head/devel/pear-channel-phpmd/files/pear.phpmd.org.reg (props changed) head/devel/pear-channel-pirum/files/pear.pirum-project.org.reg (props changed) head/devel/pear-channel-symfony2/files/pear.symfony.com.reg (props changed) head/devel/pear-channel-theseer/files/pear.netpirates.net.reg (props changed) head/devel/pear/pear-deinstall.in (props changed) head/devel/pear/pear-install (props changed) head/devel/pecl-statgrab/files/php_statgrab.h.patch (props changed) head/devel/publib/files/Default.config (props changed) head/devel/py-fam/files/setup.py (props changed) head/devel/py-freebsd/files/freebsd8_patch-src-jail.c (props changed) head/devel/py-freebsd/files/freebsd9_patch-src-sysctl.c (props changed) head/devel/py-phpserialize/files/setup.py (props changed) head/devel/py-plex/files/setup.py (props changed) head/devel/py-pqueue/files/setup.py (props changed) head/devel/py-pykde4/files/kdebindings4.pth.in (props changed) head/devel/py-qt4-core/files/Qt.py (props changed) head/devel/py-setuptools/files/easy-install.pth.dist (props changed) head/devel/py-urlimport/files/setup.py (props changed) head/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc (props changed) head/devel/qmake/files/qconfig.cpp (props changed) head/devel/qross/files/CMakeLists.txt (props changed) head/devel/qt4-libqtassistantclient/files/QAssistantClient (props changed) head/devel/qt4-libqtassistantclient/files/QtAssistant (props changed) head/devel/raknet/files/SpecialAuth.mbox (props changed) head/devel/rcs57/files/freebsd-src-ident.c (props changed) head/devel/rcs57/files/freebsd-src-maketime.c (props changed) head/devel/rcs57/files/freebsd-src-rcsbase.h (props changed) head/devel/rcs57/files/freebsd-src-rcsdiff.c (props changed) head/devel/rcs57/files/freebsd-src-rcsedit.c (props changed) head/devel/rcs57/files/freebsd-src-rcsfnms.c (props changed) head/devel/rcs57/files/freebsd-src-rcskeep.c (props changed) head/devel/rcs57/files/freebsd-src-rcskeys.c (props changed) head/devel/rcs57/files/freebsd-src-rcsrev.c (props changed) head/devel/rcs57/files/freebsd-src-rcsutil.c (props changed) head/devel/rcs57/files/freebsd-src-rlog.c (props changed) head/devel/ruby-qtruby/files/ruby-kdebindings-env.sh.in (props changed) head/devel/sbt/files/sbt.sh.in (props changed) head/devel/seed/files/Seed.js (props changed) head/devel/seed3/files/Seed.js (props changed) head/devel/simian/files/simian.in (props changed) head/devel/sml_tk/files/sml_tk.1.in (props changed) head/devel/sml_tk/files/src-mlton.sml (props changed) head/devel/sml_tk/files/src-sml_tk.mlb (props changed) head/devel/sml_tk/files/src-std_lib-std_lib.mlb (props changed) head/devel/sml_tk/files/src-sys_conf.sml (props changed) head/devel/sml_tk/files/src-toolkit-regExp-regexp.mlb (props changed) head/devel/sml_tk/files/src-toolkit-toolkit.mlb (props changed) head/devel/subversion/files/svnserve.in (props changed) head/devel/subversion/files/svnserve.wrapper (props changed) head/devel/subversion16/files/svnserve.in (props changed) head/devel/subversion16/files/svnserve.wrapper (props changed) head/devel/subversion17/files/svnserve.in (props changed) head/devel/subversion17/files/svnserve.wrapper (props changed) head/devel/svnkit/files/javasvn.sh.in (props changed) head/devel/svnkit/files/jsvnadmin.sh.in (props changed) head/devel/svnkit/files/jsvndumpfilter.sh.in (props changed) head/devel/svnkit/files/jsvnlook.sh.in (props changed) head/devel/svnkit/files/jsvnversion.sh.in (props changed) head/devel/svnkit/files/svnsync.sh.in (props changed) head/devel/talloc/files/talloc.3 (props changed) head/devel/trac-bitten/files/bitten-slave.in (props changed) head/devel/trac-bitten/files/bitten-slave.sample (props changed) head/devel/uclmmbase/files/btree.h.bsd (props changed) head/devel/uclmmbase/files/crypt_random.h.bsd (props changed) head/devel/uclmmbase/files/hmac.h.bsd (props changed) head/devel/uclmmbase/files/md5.h.bsd (props changed) head/devel/uppaal/files/uppaal.in (props changed) head/devel/uppaal/files/verifyta.in (props changed) head/devel/viewvc/files/viewvc.in (props changed) head/devel/zookeeper/files/zookeeper.in (props changed) head/devel/zpu-binutils/files/install.sh (props changed) head/devel/zpu-gcc/files/configure.sh (props changed) head/devel/zpu-gcc/files/install.sh (props changed) head/dns/adsuck/files/adsuck.in (props changed) head/dns/bind10/files/LICENSE (props changed) head/dns/bind96/files/empty.db (props changed) head/dns/bind96/files/localhost-forward.db (props changed) head/dns/bind96/files/localhost-reverse.db (props changed) head/dns/bind96/files/named.conf (props changed) head/dns/bind96/files/named.root (props changed) head/dns/bind98/files/empty.db (props changed) head/dns/bind98/files/localhost-forward.db (props changed) head/dns/bind98/files/localhost-reverse.db (props changed) head/dns/bind98/files/named.conf (props changed) head/dns/bind98/files/named.root (props changed) head/dns/bind99/files/empty.db (props changed) head/dns/bind99/files/localhost-forward.db (props changed) head/dns/bind99/files/localhost-reverse.db (props changed) head/dns/bind99/files/named.conf (props changed) head/dns/bind99/files/named.root (props changed) head/dns/bindgraph/files/bindgraph.in (props changed) head/dns/credns/files/credns.in (props changed) head/dns/crossip/files/crossip.sh.in (props changed) head/dns/curvedns/files/freebsd.patch (props changed) head/dns/ddclient/files/ddclient.in (props changed) head/dns/ddclient/files/ddclient_force.in (props changed) head/dns/dhisd/files/INSTALL.bsd (props changed) head/dns/dhisd/files/dhisd.sh (props changed) head/dns/djbdns/files/djbdns-ipv6-ooyama.patch (props changed) head/dns/djbdns/files/uint32.patch (props changed) head/dns/dnrd/files/dnrd.in (props changed) head/dns/dns_balance/files/dns_balance.in (props changed) head/dns/dnscrypt-proxy/files/dnscrypt-proxy.in (props changed) head/dns/dnsflood/files/dnsflood.in (props changed) head/dns/dnsmasq-devel/files/dnsmasq.in (props changed) head/dns/dnsmasq/files/dnsmasq.in (props changed) head/dns/dnsproxy/files/dnsproxy.in (props changed) head/dns/dnsreflector/files/dnsreflector.in (props changed) head/dns/dualserver/files/dualserver.in (props changed) head/dns/ez-ipupdate/files/ez-ipupdate.in (props changed) head/dns/inadyn/files/inadyn.in (props changed) head/dns/knot/files/knotd.in (props changed) head/dns/maradns/files/maradns.in (props changed) head/dns/maradns/files/zoneserver.in (props changed) head/dns/mydns-ng/files/mydns.in (props changed) head/dns/mydns/files/mydns.in (props changed) head/dns/noip/files/noip.in (props changed) head/dns/opendd/files/opendd.in (props changed) head/dns/opendnssec/files/opendnssec.in (props changed) head/dns/opendnssec13/files/opendnssec.in (props changed) head/dns/pdnsd/files/pdnsd.in (props changed) head/dns/powerdns-devel/files/pdns.conf (props changed) head/dns/powerdns-recursor/files/pdns-recursor.in (props changed) head/dns/powerdns/files/pdns.conf (props changed) head/dns/powerdns/files/pdns.in (props changed) head/dns/radns/files/radns.in (props changed) head/dns/rbldnsd/files/example (props changed) head/dns/rbldnsd/files/rbldnsd.in (props changed) head/dns/totd/files/totd.conf.sample (props changed) head/dns/totd/files/totd.in (props changed) head/dns/unbound/files/unbound.in (props changed) head/dns/yadifa/files/yadifad.in (props changed) head/editors/color-mate/files/theme_build.sh (props changed) head/editors/diakonos/files/installation.rb.in (props changed) head/editors/drjava/files/drjava.in (props changed) head/editors/flim/files/_pkg.el (props changed) head/editors/jedit/files/jedit.sh.in (props changed) head/editors/jext/files/jext.sh.in (props changed) head/editors/leo/files/leo.in (props changed) head/editors/manedit/files/mntent.h (props changed) head/editors/manedit/files/mntent_compat.c (props changed) head/editors/omegaT/files/omegaT.sh.in (props changed) head/editors/omegaT/files/omegat.prefs.in (props changed) head/editors/openoffice-3/files/generate.pl (props changed) head/editors/openoffice-3/files/ooo.sh (props changed) head/editors/openoffice-3/files/openoffice-wrapper (props changed) head/editors/openoffice-4/files/generate.pl (props changed) head/editors/openoffice-4/files/ooo.sh (props changed) head/editors/openoffice-4/files/openoffice-wrapper (props changed) head/editors/openoffice-devel/files/generate.pl (props changed) head/editors/openoffice-devel/files/openoffice-wrapper (props changed) head/editors/psgml/files/post-patch-psgml.el (props changed) head/editors/psgml/files/psgml-startup.el.in (props changed) head/editors/semi/files/_pkg.el (props changed) head/editors/ted/files/configure (props changed) head/editors/thoteditor/files/thoteditor (props changed) head/editors/treeform/files/treeform.in (props changed) head/editors/vim/files/vietnamese_viscii.vim (props changed) head/editors/vim/options (props changed) head/editors/xemacs/files/xemacs.desktop.in (props changed) head/emulators/aftp/files/aftp.1 (props changed) head/emulators/atari800/files/atari800.cfg (props changed) head/emulators/darcnes/files/endian.h (props changed) head/emulators/fmsx/files/fmsx (props changed) head/emulators/frodo/files/frodo (props changed) head/emulators/its/files/MIT-ITS-papers (props changed) head/emulators/its/files/README.FIRST (props changed) head/emulators/its/files/its-user-install.sh (props changed) head/emulators/its/files/its.sh (props changed) head/emulators/its/files/klh10-kn-freebsd.ini.in (props changed) head/emulators/klh10/files/PDPs (props changed) head/emulators/kqemu-kmod-devel/files/kqemu.in (props changed) head/emulators/kqemu-kmod/files/kqemu.in (props changed) head/emulators/linux-geepee32/scripts/wrapper.sh (props changed) head/emulators/linux_base-c6/files/lp (props changed) head/emulators/linux_base-c6/files/yp.conf.sample (props changed) head/emulators/linux_base-f10/files/lp (props changed) head/emulators/linux_base-f10/files/yp.conf.sample (props changed) head/emulators/linux_dist-gentoo-stage3/files/update.sh (props changed) head/emulators/m2000/files/m2000.sh.in (props changed) head/emulators/mame/files/mame.ini (props changed) head/emulators/mess/files/mess.ini (props changed) head/emulators/pcemu/files/README.FreeBSD (props changed) head/emulators/pcemu/files/bootstrap.shar (props changed) head/emulators/pcemu/files/bootstrapper.uu (props changed) head/emulators/pcemu/scripts/configure (props changed) head/emulators/pearpc/files/mbrtowc.c (props changed) head/emulators/pearpc/files/wcrtomb.c (props changed) head/emulators/psim-freebsd/files/HOW-TO (props changed) head/emulators/psim-freebsd/files/README.patches (props changed) head/emulators/psim-freebsd/files/dot.gdbinit (props changed) head/emulators/qemu-devel/files/cdrom-dma-patch (props changed) head/emulators/qemu-devel/files/qemu-ifdown.sample (props changed) head/emulators/qemu-devel/files/qemu-ifup.sample (props changed) head/emulators/qemu/files/cdrom-dma-patch (props changed) head/emulators/qemu/files/gns3-patch (props changed) head/emulators/qemu/files/pcap-patch (props changed) head/emulators/qemu/files/qemu-ifdown.sample (props changed) head/emulators/qemu/files/qemu-ifup.sample (props changed) head/emulators/qemu/files/rtl8139-re-patch (props changed) head/emulators/rtc/files/rtc.c (props changed) head/emulators/rtc/files/rtc.h (props changed) head/emulators/rtc/files/rtc.sh (props changed) head/emulators/rtc/files/rtc_linux.c (props changed) head/emulators/rtc/files/test.c (props changed) head/emulators/ski/files/ia64.cmd (props changed) head/emulators/svr4_base/files/README (props changed) head/emulators/svr4_base/files/SVR4_MAKEDEV (props changed) head/emulators/svr4_base/files/netconfig (props changed) head/emulators/svr4_base/files/nsswitch.conf (props changed) head/emulators/tpm-emulator/files/tpmd.in (props changed) head/emulators/vMac/files/dos2unx (props changed) head/emulators/vboxtool/files/machines.conf (props changed) head/emulators/vboxtool/files/vboxtool.conf (props changed) head/emulators/virtualbox-ose-additions/files/vboxservice.in (props changed) head/emulators/virtualbox-ose-legacy/files/vboxheadless.in (props changed) head/emulators/virtualbox-ose-legacy/files/vboxwebsrv.in (props changed) head/emulators/virtualbox-ose/files/vboxheadless.in (props changed) head/emulators/virtualbox-ose/files/vboxwebsrv.in (props changed) head/emulators/wine-doors/files/preferences.xml.in (props changed) head/emulators/x49gp/files/config-hp49g+ (props changed) head/emulators/x49gp/files/config-hp50g (props changed) head/emulators/x49gp/files/hp50g.sh.in (props changed) head/finance/jgnash/files/jgnash.desktop.in (props changed) head/finance/ledgersmb/files/ledger-smb-httpd.conf.in (props changed) head/finance/ledgersmb12/files/ledger-smb-httpd.conf.in (props changed) head/finance/openerp-server/files/openerp-server.conf.in (props changed) head/finance/openerp-server/files/openerpd.in (props changed) head/finance/openerp-web/files/openerp-web.conf (props changed) head/finance/openerp-web/files/openerp-web.in (props changed) head/finance/openerp-web/files/openerp-web.py (props changed) head/finance/openerp-web/files/openerp-web.wrapper (props changed) head/finance/sabernetdcs-client/files/sndcs2.conf (props changed) head/finance/sql-ledger/files/sql-ledger-httpd.conf.in (props changed) head/french/belote/files/belote.in (props changed) head/french/facturier/files/facturier.conf.in (props changed) head/ftp/atftp/files/atftpd.in (props changed) head/ftp/bbftp/files/bbftp.patch (props changed) head/ftp/bbftp/files/bbftpd.in (props changed) head/ftp/bsdftpd-ssl/files/README.examples (props changed) head/ftp/bsdftpd-ssl/files/bsdftpd-ssl.in (props changed) head/ftp/bsdftpd-ssl/files/ftpchroot (props changed) head/ftp/bsdftpd-ssl/files/ftpusers (props changed) head/ftp/bsdftpd-ssl/files/rc_conf_d.bsdftpd_ssl (props changed) head/ftp/dmachine/files/dmachine.sh.in (props changed) head/ftp/frox/files/frox.in (props changed) head/ftp/ftpsesame/files/ftpsesame.in (props changed) head/ftp/jftp/files/jftp.sh.in (props changed) head/ftp/jftpgw/files/jftpgw.in (props changed) head/ftp/mirror/scripts/configure (props changed) head/ftp/ncftpd/files/ncftpd.in (props changed) head/ftp/proftpd/files/proftpd.in (props changed) head/ftp/pure-ftpd/files/pam.conf.5 (props changed) head/ftp/pure-ftpd/files/pure-ftpd.in (props changed) head/ftp/smbftpd/files/smbftpd.in (props changed) head/ftp/tftp-hpa/files/tftpd.in (props changed) head/ftp/vsftpd-ext/files/vsftpd.in (props changed) head/ftp/vsftpd/files/pidfile.patch (props changed) head/ftp/vsftpd/files/vsftpd.in (props changed) head/games/4stattack/scripts/py-compile (props changed) head/games/54321/files/54321.sh (props changed) head/games/54321/files/variables.GNU (props changed) head/games/aestats/files/fbsd_stub.c (props changed) head/games/alephone-data/files/wrapper.in (props changed) head/games/alephone-scenarios/files/wrapper.in (props changed) head/games/annelid/files/annelid-sh.in (props changed) head/games/apricots/files/apricots.in (props changed) head/games/armagetron/files/armagetronad_dedicated.in (props changed) head/games/assaultcube/files/assaultcube_client.in (props changed) head/games/assaultcube/files/assaultcube_master.in (props changed) head/games/assaultcube/files/assaultcube_server.in (props changed) head/games/atitd/files/atitd.sh (props changed) head/games/battletanks/files/btanks.6 (props changed) head/games/bloodfrontier/files/bfclient.in (props changed) head/games/bloodfrontier/files/bfserver.in (props changed) head/games/bluemoon/files/bluemoon.desktop (props changed) head/games/bsdgames/files/share.mtree (props changed) head/games/bsdgames/files/var.mtree (props changed) head/games/bsdtris/files/mkbsdtristarball (props changed) head/games/cowsay/files/box.cow (props changed) head/games/cowsay/files/jkh.cow (props changed) head/games/cowsay/files/tux-stab.cow (props changed) head/games/crafty-open-enormous/files/book-building (props changed) head/games/crafty-open-large/files/book-building (props changed) head/games/crafty-open-medium/files/book-building (props changed) head/games/crafty-tablebase-no-pawn/scripts/configure (props changed) head/games/crafty-tablebase-pawn/scripts/configure (props changed) head/games/crafty/files/books-building (props changed) head/games/crafty/scripts/configure (props changed) head/games/cube/files/cube_client.in (props changed) head/games/cube/files/cube_server.in (props changed) head/games/daimonin/files/daimonin.sh.in (props changed) head/games/djgame2/files/djgame2.desktop.in (props changed) head/games/djgame2/files/startdjg.in (props changed) head/games/domination/files/domination-FlashGUI.in (props changed) head/games/domination/files/domination-Increment1GUI.in (props changed) head/games/domination/files/domination-SimpleGUI.in (props changed) head/games/domination/files/domination-SwingGUI.in (props changed) head/games/doom-hr/scripts/lowercase.sh (props changed) head/games/duel/files/duel-sh.in (props changed) head/games/editss/files/editss.in (props changed) head/games/falconseye/files/substitute (props changed) head/games/falconseye/files/x-config (props changed) head/games/fargoal/files/fargoal-sh.in (props changed) head/games/freera/files/SConstruct (props changed) head/games/fretsonfire/files/FretsOnFire.in (props changed) head/games/ftjava/files/ftjava.sh.in (props changed) head/games/fuhquake/files/cd_freebsd.c (props changed) head/games/fuhquake/files/nonintel.c (props changed) head/games/fuhquake/files/snd_freebsd.c (props changed) head/games/funnyboat/files/funnyboat_.in (props changed) head/games/fxsudoku/files/config.freebsd (props changed) head/games/galaxyhack/files/galaxyhack-sh.in (props changed) head/games/gish-demo/files/rungish.sh.in (props changed) head/games/glest/files/glest-wrapper.in (props changed) head/games/gondola/files/gondola.in (props changed) head/games/gtkradiant/files/gtkradiant.in (props changed) head/games/gunfudeadlands/files/gunfudeadlands.in (props changed) head/games/hohlin/files/hoh.sh (props changed) head/games/java-games-suite/files/java-games-suite.sh.in (props changed) head/games/jin/files/jin.in (props changed) head/games/jtans/files/jtans.sh.in (props changed) head/games/jvgs/files/jvgs.in (props changed) head/games/ldmud/files/ldmud.in (props changed) head/games/linux-candycruncher-demo/files/candycruncher.in (props changed) head/games/linux-coldwar-demo/files/coldwar.in (props changed) head/games/linux-darwinia-demo/files/darwinia.in (props changed) head/games/linux-defcon/files/defcon.in (props changed) head/games/linux-doom3-demo/files/doom3-demo.in (props changed) head/games/linux-doom3/files/doom3-ded.in (props changed) head/games/linux-doom3/files/doom3.in (props changed) head/games/linux-enemyterritory/files/et.in (props changed) head/games/linux-enemyterritory/files/etded.in (props changed) head/games/linux-etqw-demo-server/files/etqwded-demo.in (props changed) head/games/linux-etqw-server/files/etqwded.in (props changed) head/games/linux-gorky17-demo/files/gorky17.in (props changed) head/games/linux-hdb-demo/files/hdb.in (props changed) head/games/linux-majesty-demo/files/majesty.in (props changed) head/games/linux-nerogame/files/nerogame.in (props changed) head/games/linux-ningpo-demo/files/ningpo.in (props changed) head/games/linux-nwnclient/files/nwmovies.pl (props changed) head/games/linux-nwnclient/files/nwn.sh (props changed) head/games/linux-quake3-demo/files/q3demo.in (props changed) head/games/linux-quake4-demo/files/run.sh.in (props changed) head/games/linux-quake4/files/run.sh.in (props changed) head/games/linux-savage/files/savage.in (props changed) head/games/linux-savage/files/savage_editor.in (props changed) head/games/linux-skulltag/files/skulltag.sh.in (props changed) head/games/linux-uplink-demo/files/uplink.in (props changed) head/games/linux-ut2003-demo/files/ut2003-demo.in (props changed) head/games/linux-ut2004-demo/files/ut2004-demo.in (props changed) head/games/linux-virtual-jay-peak/files/virtual-jay-peak.in (props changed) head/games/linux-warsow/files/warsow-wrapper.in (props changed) head/games/linux-warsow/files/wsw_server-wrapper.in (props changed) head/games/maelstrom/files/Makeflags (props changed) head/games/mangos/files/ScriptDev2.patch (props changed) head/games/marsnomercy/files/mars-nomercy.in (props changed) head/games/minecraft-server/files/banned-ips.txt.sample (props changed) head/games/minecraft-server/files/banned-players.txt.sample (props changed) head/games/minecraft-server/files/minecraft.in (props changed) head/games/minecraft-server/files/ops.txt.sample (props changed) head/games/minecraft-server/files/server.properties.sample (props changed) head/games/minecraft-server/files/white-list.txt.sample (props changed) head/games/motogt/files/motogt.in (props changed) head/games/mtaserver/files/mtad.in (props changed) head/games/netradiant/files/netradiant.in (props changed) head/games/netris/files/netris.1 (props changed) head/games/noegnud-littlehack/files/noegnud-littlehack.patch (props changed) head/games/noegnud-nethack-deet/files/noegnud-nethack-deet.patch (props changed) head/games/noegnud-nethack/files/noegnud-nethack.patch (props changed) head/games/noegnud-slashem/files/noegnud-slashem.patch (props changed) head/games/nonsense/files/nonsense.6 (props changed) head/games/openttd/files/liblzma.pc (props changed) head/games/openttd/files/openttd.in (props changed) head/games/outerspace/files/outerspace.in (props changed) head/games/pcgen/files/pcgen.sh.in (props changed) head/games/pink-pony/files/pink-pony.sh.in (props changed) head/games/plutocracy/files/plutocracy_.in (props changed) head/games/ptkei/files/ptkei (props changed) head/games/pvpgn/files/bnetd.in (props changed) head/games/pycadia/files/pycadia.conf (props changed) head/games/quaqut/files/quaqut.in (props changed) head/games/railroad-rampage/files/railroad-rampage.in (props changed) head/games/redeclipse/files/redeclipse.in (props changed) head/games/redeclipse/files/redeclipse_server.in (props changed) head/games/rescue/files/rescue.in (props changed) head/games/robotfindskitten/files/freebsd.nki.in (props changed) head/games/robotfindskitten/files/nethack.nki.in (props changed) head/games/sampsvr/files/sampd.in (props changed) head/games/sauerbraten/files/sauer_client.in (props changed) head/games/sauerbraten/files/sauer_master.in (props changed) head/games/sauerbraten/files/sauer_server.in (props changed) head/games/sea-defender/files/sea-defender.sh.in (props changed) head/games/slashem-tty/files/sample.slashemrc (props changed) head/games/spacejunk/files/spacejunk.in (props changed) head/games/spicetrade/files/spicetrade.in (props changed) head/games/stonesoup/files/README.FreeBSD.in (props changed) head/games/tetrinet-x/files/tetrinet-x.sh (props changed) head/games/tractorgen/files/tractorgen.6 (props changed) head/games/ufoai/files/run.sh.in (props changed) head/games/unnethack/files/sample.unnethackrc (props changed) head/games/utserver/files/excludefiles (props changed) head/games/utserver/files/template-patch-ngstatsut (props changed) head/games/utserver/files/ucc.in (props changed) head/games/wargus/files/wargus.in (props changed) head/games/warsow/files/keysym2ucs.c (props changed) head/games/warsow/files/keysym2ucs.h (props changed) head/games/wolfpack/files/wolfpack.in (props changed) head/games/xinvaders/files/Vaders.ad (props changed) head/games/xmris/scripts/pre-configure (props changed) head/games/xpipeman/files/xpipescores (props changed) head/games/xrobots/files/xrobotscores (props changed) head/games/xrobots/scripts/pre-configure (props changed) head/games/xtrojka/files/old-patch-Makefile (props changed) head/games/yamsweeper/files/Imakefile (props changed) head/graphics/EZWGL/files/manpages (props changed) head/graphics/blender/files/blender.in (props changed) head/graphics/blender/files/blenderplayer.in (props changed) head/graphics/curator/files/curator.1 (props changed) head/graphics/gcolor2/files/gcolor2.desktop.in (props changed) head/graphics/gd/files/makefonts (props changed) head/graphics/geoserver/files/geoserver.in (props changed) head/graphics/giflib/files/quantize.c (props changed) head/graphics/gnash/files/ffmpeg0.patch (props changed) head/graphics/jalbum/files/jalbum.sh.in (props changed) head/graphics/jasper/files/uuid.patch (props changed) head/graphics/jbig2dec/files/simpler-test-patch (props changed) head/graphics/jdraw/files/jdraw.in (props changed) head/graphics/jpatch/files/jpatch.sh.in (props changed) head/graphics/libdrm/files/extra-xf86drmMode.c (props changed) head/graphics/libimg/files/pre-tk84-warnings (props changed) head/graphics/libimg/files/tk84-Tk_PhotoPutBlock (props changed) head/graphics/libimg/files/tk84-warnings (props changed) head/graphics/libimg/files/tk85-Tk_PhotoPutBlock (props changed) head/graphics/maverik/scripts/genman3list.sh (props changed) head/graphics/metacam/files/getopt.h (props changed) head/graphics/metacam/files/metacam.1 (props changed) head/graphics/p5-PGPLOT/scripts/configure (props changed) head/graphics/pencil/files/src-external-freebsd-freebsd.cpp (props changed) head/graphics/pfstools/files/epatch-src-octave-pfsopen.cpp (props changed) head/graphics/pgplot/files/drivers.list (props changed) head/graphics/pgplot/files/drivers_64bit_patch (props changed) head/graphics/pgplot/files/grexec.f (props changed) head/graphics/picturebook/files/README.FreeBSD (props changed) head/graphics/povray31/files/script (props changed) head/graphics/processing/files/processing.in (props changed) head/graphics/rawtherapee/files/rawtherapee.in (props changed) head/graphics/rayshade/files/config.ans (props changed) head/graphics/sane-backends/files/saned.in (props changed) head/graphics/svgalib/files/man1 (props changed) head/graphics/svgalib/files/man3 (props changed) head/graphics/svgalib/files/man5 (props changed) head/graphics/svgalib/files/man6 (props changed) head/graphics/svgalib/files/man7 (props changed) head/graphics/svgalib/files/man8 (props changed) head/graphics/swfdec/files/swfdec_playback_oss.c (props changed) head/graphics/telak/files/install-user (props changed) head/graphics/tgif/files/Tgif.tmpl-freebsdports (props changed) head/graphics/tifmerge/files/tifmerge.3 (props changed) head/graphics/tintfu/files/tintfu.sh.in (props changed) head/graphics/uDrawGraph/files/uDrawGraph.in (props changed) head/graphics/vcg/files/conf (props changed) head/graphics/vcg/files/demo.csh (props changed) head/graphics/vcg/files/globals.h (props changed) head/graphics/vcg/files/tMakefile (props changed) head/graphics/vips/files/nodoc-patch (props changed) head/graphics/wings/files/wings.sh.in (props changed) head/graphics/xfractint/files/extra-unix__fpu087.c (props changed) head/graphics/xoris/files/xoris-run.sh (props changed) head/graphics/yed/files/yed.in (props changed) head/hungarian/ispell/files/ispell-hu.sh (props changed) head/irc/anope/files/anope.in (props changed) head/irc/bitlbee/files/bitlbee.in (props changed) head/irc/bopm/files/bopm.in (props changed) head/irc/charybdis/files/charybdis.in (props changed) head/irc/hybserv/files/hybserv.sh (props changed) head/irc/irc/files/ircd.in (props changed) head/irc/irc2dc/files/irc2dc.in (props changed) head/irc/ircd-hybrid/files/ircd-hybrid.in (props changed) head/irc/ircd-ratbox-devel/files/ircd-ratbox.in (props changed) head/irc/ircd-ratbox/files/ircd-ratbox.in (props changed) head/irc/ircd-ru/files/ircd.in (props changed) head/irc/ircservices/files/ircservices.in (props changed) head/irc/iroffer-dinoex/files/iroffer-dinoex.in (props changed) head/irc/minbif/files/minbif.in (props changed) head/irc/ngircd/files/ngircd.in (props changed) head/irc/quassel/files/quasselcore.in (props changed) head/irc/ratbox-services/files/ratbox-services.in (props changed) head/irc/sirc/files/dsirc-ipv6 (props changed) head/irc/sirc/files/dsirc-minimal (props changed) head/irc/sirc/files/sirc.in (props changed) head/irc/thales/files/thales.in (props changed) head/irc/tircd/files/tircd.in (props changed) head/irc/undernet-ircu/files/undernet.in (props changed) head/irc/unreal/files/unrealircd.in (props changed) head/irc/xchat-ruby/files/rubypath.rb (props changed) head/irc/znc/files/znc.in (props changed) head/japanese/FreeWnn-server/files/cwnn.in (props changed) head/japanese/FreeWnn-server/files/kwnn.in (props changed) head/japanese/FreeWnn-server/files/twnn.in (props changed) head/japanese/FreeWnn-server/files/wnn.in (props changed) head/japanese/another-htmllint/files/htmllint (props changed) head/japanese/awffull/files/awffull-ja.diff (props changed) head/japanese/canna-server/files/canna.in (props changed) head/japanese/cannadic/files/README.FreeBSD.in (props changed) head/japanese/dvipsk/files/ptex-kanji.map (props changed) head/japanese/ebnetd/files/ebhttpd.in (props changed) head/japanese/ebnetd/files/ebnetd.in (props changed) head/japanese/ebnetd/files/ndtpd.in (props changed) head/japanese/ebview-gtk2/files/ebview.desktop.in (props changed) head/japanese/elvis/files/ja-elvis.sh (props changed) head/japanese/emacs-emcws/files/emcws-message (props changed) head/japanese/emacs-emcws/files/site-init.el.tmpl (props changed) head/japanese/emacs-emcws/scripts/configure (props changed) head/japanese/esecanna/files/esecanna.in (props changed) head/japanese/flex-sdk/files/asdoc.sh.in (props changed) head/japanese/flex-sdk/files/compc.sh.in (props changed) head/japanese/flex-sdk/files/fdb.sh.in (props changed) head/japanese/flex-sdk/files/mxmlc.sh.in (props changed) head/japanese/font-ipa-uigothic/files/20-unhint-ipa-uigothic.conf (props changed) head/japanese/font-ipa-uigothic/files/62-fonts-ipa-uigothic.conf (props changed) head/japanese/font-ipa/files/20-unhint-ipa.conf (props changed) head/japanese/font-ipa/files/62-fonts-ipa.conf (props changed) head/japanese/font-ipaex/files/20-unhint-ipaex.conf (props changed) head/japanese/font-ipaex/files/62-fonts-ipaex.conf (props changed) head/japanese/font-kochi/files/20-unhint-kochi.conf (props changed) head/japanese/font-kochi/files/62-fonts-kochi.conf (props changed) head/japanese/font-migmix/files/20-unhint-migmix.conf (props changed) head/japanese/font-migmix/files/62-fonts-migmix.conf (props changed) head/japanese/font-migu/files/20-unhint-migu.conf (props changed) head/japanese/font-migu/files/62-fonts-migu.conf (props changed) head/japanese/font-mona-ipa/files/20-unhint-mona-ipa.conf (props changed) head/japanese/font-mona-ipa/files/62-fonts-mona-ipa.conf (props changed) head/japanese/font-motoya-al/files/20-unhint-motoya-al.conf (props changed) head/japanese/font-motoya-al/files/62-fonts-motoya-al.conf (props changed) head/japanese/font-mplus-ipa/files/20-unhint-mplus-ipa.conf (props changed) head/japanese/font-mplus-ipa/files/62-fonts-mplus-ipa.conf (props changed) head/japanese/font-mplus/files/20-unhint-mplus.conf (props changed) head/japanese/font-mplus/files/62-fonts-mplus.conf (props changed) head/japanese/font-ricty/files/20-unhint-ricty.conf (props changed) head/japanese/font-ricty/files/20-unhint-rictydiscord.conf (props changed) head/japanese/font-ricty/files/62-fonts-ricty.conf (props changed) head/japanese/font-ricty/files/62-fonts-rictydiscord.conf (props changed) head/japanese/font-sazanami/files/20-unhint-sazanami.conf (props changed) head/japanese/font-sazanami/files/62-fonts-sazanami.conf (props changed) head/japanese/font-takao/files/20-unhint-takao.conf (props changed) head/japanese/font-takao/files/62-fonts-takao.conf (props changed) head/japanese/font-ume/files/20-unhint-ume.conf (props changed) head/japanese/font-ume/files/62-fonts-ume.conf (props changed) head/japanese/font-vlgothic/files/20-unhint-vlgothic.conf (props changed) head/japanese/font-vlgothic/files/62-fonts-vlgothic.conf (props changed) head/japanese/groff/files/mdoc.local.in (props changed) head/japanese/gskk/files/README.FreeBSD.in (props changed) head/japanese/gskk/files/dics.dir.gskk (props changed) head/japanese/hns/files/hns-setup.sh (props changed) head/japanese/hns/scripts/configure (props changed) head/japanese/jadetex-ptex/files/texmf.cnf (props changed) head/japanese/jstrings/files/jstrings.1 (props changed) head/japanese/kanji18/files/DEINSTALL.tmpl (props changed) head/japanese/kanji18/files/INSTALL.tmpl (props changed) head/japanese/kanji26/files/DEINSTALL.tmpl (props changed) head/japanese/kanji26/files/INSTALL.tmpl (props changed) head/japanese/kappa20/files/fonts.alias.ayu (props changed) head/japanese/kinput2/files/Kinput2.conf.in (props changed) head/japanese/kon2-16dot/files/dotconfig (props changed) head/japanese/kterm/files/dot.termcap (props changed) head/japanese/lambdamoo/files/README.FreeBSD (props changed) head/japanese/leafrogue/files/leafrogue (props changed) head/japanese/mailman/files/FreeBSD-post-install-notes (props changed) head/japanese/mailman/files/mailman.in (props changed) head/japanese/mailman/files/postfix-verp.diff (props changed) head/japanese/mailman/files/powerlogo.gif.uue (props changed) head/japanese/marumoji-fonts/files/LICENSE (props changed) head/japanese/mikachan-ttfonts/files/fonts.dir.mika (props changed) head/japanese/monafonts-ttf/files/fonts.dir.mona (props changed) head/japanese/mozc-additions/files/ibus-daemon_restart (props changed) head/japanese/mozc-additions/files/ibus-daemon_start (props changed) head/japanese/mozc-additions/files/ibus-daemon_stop (props changed) head/japanese/mozc-additions/files/mozc_server_restart (props changed) head/japanese/mozc-additions/files/mozc_server_start (props changed) head/japanese/mozc-additions/files/mozc_server_stop (props changed) head/japanese/mozc-additions/files/mozc_tool_character_palette (props changed) head/japanese/mozc-additions/files/mozc_tool_config (props changed) head/japanese/mozc-additions/files/mozc_tool_dictionary (props changed) head/japanese/mozc-additions/files/mozc_tool_hand_writing (props changed) head/japanese/mozc-additions/files/mozc_tool_word_register (props changed) head/japanese/mozc-server/files/leim-list.el (props changed) head/japanese/mozc-server/files/mozc_tool.in (props changed) head/japanese/multiskkserv/files/multiskkserv.in (props changed) head/japanese/onew/files/ONEW_CONF-for-canna+freewnn.in (props changed) head/japanese/onew/files/ONEW_CONF-for-canna+wnn6.in (props changed) head/japanese/onew/files/ONEW_CONF-for-canna+wnn7.in (props changed) head/japanese/onew/files/ONEW_CONF-for-canna.in (props changed) head/japanese/onew/files/ONEW_CONF-for-freewnn.in (props changed) head/japanese/onew/files/ONEW_CONF-for-wnn.in (props changed) head/japanese/onew/files/ONEW_CONF-for-wnn6.in (props changed) head/japanese/onew/files/ONEW_CONF-for-wnn7.in (props changed) head/japanese/p5-Mail-SpamAssassin/files/spamassassin-3.3.2-ja-1.patch (props changed) head/japanese/p5-Mail-SpamAssassin/files/spamassassin-3.3.2-ja-1.plist (props changed) head/japanese/p5-Mail-SpamAssassin/files/tokenizer.pre (props changed) head/japanese/plan/files/plan_calEUC.ps (props changed) head/japanese/platex-otf/files/cid-otf-noembed.map (props changed) head/japanese/ptex/files/tcfmgr.map (props changed) head/japanese/ptex/files/updmap-ptex.in (props changed) head/japanese/rogue_s/files/rogue_s.6.in (props changed) head/japanese/rskkserv/files/rskkserv.in (props changed) head/japanese/scim-tables/files/T-Code.txt.in (props changed) head/japanese/scim-tables/files/TUT-Code.txt.in (props changed) head/japanese/sj3-lib/files/post-patch-Imakefile (props changed) head/japanese/sj3-lib/files/sj3_freebsd.tmpl.in (props changed) head/japanese/sj3-server/files/post-patch-Imakefile (props changed) head/japanese/sj3-server/files/post-patch-doc-doc-Imakefile.nodocports (props changed) head/japanese/sj3-server/files/post-patch-include-Const.h (props changed) head/japanese/sj3-server/files/post-patch-server-comuni.c (props changed) head/japanese/sj3-server/files/post-patch-server-serverrc (props changed) head/japanese/sj3-server/files/post-patch-server-setup.c (props changed) head/japanese/sj3-server/files/post-patch-server-sj3serv.h (props changed) head/japanese/sj3-server/files/post-patch-sj3-sj3.c (props changed) head/japanese/sj3-server/files/post-patch-sj3lib-Imakefile (props changed) head/japanese/sj3-server/files/sj3.in (props changed) head/japanese/sj3-server/files/sj3_freebsd.tmpl.in (props changed) head/japanese/skkserv/files/skkserv.in (props changed) head/japanese/tcl80/files/README.FreeBSD.in (props changed) head/japanese/tgif/files/Tgif.in (props changed) head/japanese/tiarra/files/tiarra.in (props changed) head/japanese/tk80/files/README.FreeBSD.in (props changed) head/japanese/vftool/scripts/configure (props changed) head/japanese/wdic-fpw/files/MOE_RAIL.H (props changed) head/japanese/wdic-fpw/files/YOGOPASO.H (props changed) head/japanese/xdvik/files/vfontmap.freetype (props changed) head/japanese/xpdf/files/dot.xpdfrc.in (props changed) head/japanese/zangband/files/makefile-adjust.patch (props changed) head/japanese/zipcodes/scripts/gennew.pl (props changed) head/japanese/zipcodes/scripts/genold.pl (props changed) head/java/avis/files/avisd.in (props changed) head/java/bootstrap-openjdk/files/bootstrap.patch (props changed) head/java/eclipse-cdt/scripts/pre-patch (props changed) head/java/eclipse-devel/files/BindingModel.java.patch (props changed) head/java/eclipse-devel/files/eclipse-build-config-upstream.patch (props changed) head/java/eclipse-devel/files/eclipse.in (props changed) head/java/eclipse-ecj/files/ecj.sh.in (props changed) head/java/eclipse-langpack/files/install.sh (props changed) head/java/eclipse/files/eclipse-build-config-upstream.patch (props changed) head/java/eclipse/files/eclipse-build-upstream.patch (props changed) head/java/eclipse/files/eclipse.in (props changed) head/java/jasmin/files/jasmin.sh.in (props changed) head/java/java-checkstyle/files/checkstyle.sh.in (props changed) head/java/javavmwrapper/files/javavm_opts.conf.dist (props changed) head/java/javavmwrapper/src/checkvms.1 (props changed) head/java/javavmwrapper/src/classpath.sh (props changed) head/java/javavmwrapper/src/javavm.1 (props changed) head/java/javavmwrapper/src/javavm_opts.conf.5 (props changed) head/java/javavmwrapper/src/javavms.5 (props changed) head/java/javavmwrapper/src/javavmwrapper.sh (props changed) head/java/javavmwrapper/src/manvm.1 (props changed) head/java/javavmwrapper/src/registervm.1 (props changed) head/java/jboss5/files/jboss5.in (props changed) head/java/jflex/files/jflex.sh.in (props changed) head/java/jlex/files/jlex.sh.in (props changed) head/java/jrosetta/files/settings.xml (props changed) head/java/openjdk6/files/alsa-disable.patch (props changed) head/java/openjdk6/files/alsa-enable.patch (props changed) head/java/openjdk6/files/fontconfig.properties (props changed) head/java/openjdk6/files/test_gamma-disable.patch (props changed) head/java/poseidon/files/poseidon.sh.in (props changed) head/java/proguard/files/proguard-gui.sh.in (props changed) head/java/proguard/files/proguard.sh.in (props changed) head/java/proguard/files/retrace.sh.in (props changed) head/korean/hpscat/files/hpscat.sh.in (props changed) head/korean/munhwafonts-cid/files/Munhwa-Bold-KSC-EUC-H.gsf (props changed) head/korean/munhwafonts-cid/files/Munhwa-Regular-KSC-EUC-H.gsf (props changed) head/korean/munhwafonts-cid/files/MunhwaGothic-Bold-KSC-EUC-H.gsf (props changed) head/korean/munhwafonts-cid/files/MunhwaGothic-Regular-KSC-EUC-H.gsf (props changed) head/korean/nanumcoding-ttf/files/LICENSE (props changed) head/korean/nanumfonts-otf/files/LICENSE (props changed) head/korean/unfonts-core/files/COPYING (props changed) head/korean/xpdf/files/dot.xpdfrc.in (props changed) head/lang/abcl/files/abcl.in (props changed) head/lang/bsh/files/bsh.sh.in (props changed) head/lang/ccl/files/ccl.sh.in (props changed) head/lang/clojure/files/clojure-bin.in (props changed) head/lang/erlang-runtime15/files/epmd.in (props changed) head/lang/erlang-runtime16/files/epmd.in (props changed) head/lang/erlang/files/epmd.in (props changed) head/lang/ezm3/scripts/check_conflicts (props changed) head/lang/ezm3/scripts/configure (props changed) head/lang/gcc-aux/files/diff-ada (props changed) head/lang/gcc-aux/files/diff-ada-testsuite (props changed) head/lang/gcc-aux/files/diff-core (props changed) head/lang/gcc-aux/files/diff-cxx (props changed) head/lang/gcc-aux/files/diff-cxx-testsuite (props changed) head/lang/gcc-aux/files/diff-fortran (props changed) head/lang/gcc-aux/files/diff-fortran-testsuite (props changed) head/lang/gcc-aux/files/diff-gcc-testsuite (props changed) head/lang/gcc-aux/files/diff-static-version (props changed) head/lang/gcc/files/java-patch-hier (props changed) head/lang/gcc44/files/java-patch-hier (props changed) head/lang/gcc46/files/java-patch-hier (props changed) head/lang/gcc47/files/java-patch-hier (props changed) head/lang/gcc48/files/java-patch-hier (props changed) head/lang/gcc49/files/java-patch-hier (props changed) head/lang/ghc/files/nopatch-.._ghc-7.4.1-boot_rts_package.conf.in (props changed) head/lang/ghc/files/nopatch-.._ghc-7.6.3-boot_rts_package.conf.in (props changed) head/lang/gnat-aux/files/diff-ada (props changed) head/lang/gnat-aux/files/diff-ada-testsuite (props changed) head/lang/gnat-aux/files/diff-core (props changed) head/lang/gnat-aux/files/diff-cxx (props changed) head/lang/gnat-aux/files/diff-cxx-testsuite (props changed) head/lang/gnat-aux/files/diff-fortran (props changed) head/lang/gnat-aux/files/diff-fortran-testsuite (props changed) head/lang/gnat-aux/files/diff-gcc-testsuite (props changed) head/lang/gnat_util/files/gnat_util.gpr (props changed) head/lang/gnat_util/files/sdefault_adb.gnat_util (props changed) head/lang/gnustep-base/files/gdomap_if (props changed) head/lang/gnustep-guile/files/NSConcreteNumber.h (props changed) head/lang/groovy/files/set-groovy_home.sed.in (props changed) head/lang/hiphop-php/files/LICENSE.UNICODE (props changed) head/lang/icc/files/_types.h (props changed) head/lang/icc/files/assert_fail.c (props changed) head/lang/icc/files/cdefs.h (props changed) head/lang/icc/files/cxa_atexit.c (props changed) head/lang/icc/files/errno_location.c (props changed) head/lang/icc/files/exclude (props changed) head/lang/icc/files/exclude_noportdocs (props changed) head/lang/icc/files/ld.c (props changed) head/lang/icc/files/mcount.S (props changed) head/lang/icc/files/stdarg.h (props changed) head/lang/icc/files/stderr.c (props changed) head/lang/icc/files/stdin.c (props changed) head/lang/icc/files/stdout.c (props changed) head/lang/ifc/files/assert_fail.c (props changed) head/lang/ifc/files/cxa_atexit.c (props changed) head/lang/ifc/files/errno_location.c (props changed) head/lang/ifc/files/exclude (props changed) head/lang/ifc/files/exclude_noportdocs (props changed) head/lang/ifc/files/ld.c (props changed) head/lang/ifc/files/linux_file.c (props changed) head/lang/ifc/files/linux_stat.c (props changed) head/lang/ifc/files/mcount.S (props changed) head/lang/ifc/files/memalign.c (props changed) head/lang/ifc/files/stderr.c (props changed) head/lang/ifc/files/stdin.c (props changed) head/lang/ifc/files/stdout.c (props changed) head/lang/ifc/files/sysconf.c (props changed) head/lang/jakarta-commons-jelly/files/jelly.sh.in (props changed) head/lang/klone/files/freebsd (props changed) head/lang/linux-j/files/j-jconsole.sh.in (props changed) head/lang/linux-j/files/jw.sh.in (props changed) head/lang/lua52/files/lua-5.2.pc.in (props changed) head/lang/mlton/files/add-local-cross (props changed) head/lang/mlton/files/ml.grm.sig (props changed) head/lang/mlton/files/ml.grm.sml (props changed) head/lang/mlton/files/ml.lex.sml (props changed) head/lang/mlton/files/mlb.grm.sig (props changed) head/lang/mlton/files/mlb.grm.sml (props changed) head/lang/mlton/files/mlb.lex.sml (props changed) head/lang/mlton/files/upgrade-basis.sml (props changed) head/lang/mlton/files/yacc.grm.sig (props changed) head/lang/mlton/files/yacc.grm.sml (props changed) head/lang/mlton/files/yacc.lex.sml (props changed) head/lang/ocaml/files/manfiles (props changed) head/lang/pcc/files/ccconfig.h (props changed) head/lang/pcc/files/f77config.h (props changed) head/lang/php5/files/php-fpm.in (props changed) head/lang/php52/files/php-fpm.conf.sample.in (props changed) head/lang/php52/files/php-fpm.in (props changed) head/lang/php53/files/php-fpm.in (props changed) head/lang/php55/files/php-fpm.in (props changed) head/lang/py-mx-base/files/index.html.in (props changed) head/lang/rexx-regina/files/rxstack.in (props changed) head/lang/rexx-regutil/files/regutil.1.in (props changed) head/lang/rhino/files/rhinoc.in (props changed) head/lang/rhino/files/rhinodbg.in (props changed) head/lang/rhino/files/rhinosh.in (props changed) head/lang/schemetoc/files/README.FreeBSD (props changed) head/lang/schemetoc/files/main.c (props changed) head/lang/schemetoc/files/makefile-head (props changed) head/lang/schemetoc/files/options-server.h (props changed) head/lang/schemetoc/files/options.h (props changed) head/lang/schemetoc/files/x86.s (props changed) head/lang/scm/files/require.scm.in (props changed) head/lang/sml-nj-devel/files/plist-everything (props changed) head/lang/sml-nj/scripts/get-cm (props changed) head/lang/stalin/files/stalin.sh.in (props changed) head/lang/starlogo/files/starlogo.sh.in (props changed) head/lang/tcc/files/README.tccelf (props changed) head/lang/tcc/files/texi2pod.pl (props changed) head/lang/tcl-wrapper/files/conf.sample.in (props changed) head/lang/tcl-wrapper/files/wrapper.in (props changed) head/lang/tclX/files/tcl85-test-patch (props changed) head/lang/xds-c/files/plist (props changed) head/lang/xds-c/files/plist-doc (props changed) head/lang/xds/files/plist (props changed) head/lang/xds/files/plist-doc (props changed) head/mail/alpine/files/cons25-alpine_keymenu.c (props changed) head/mail/anomy-sanitizer/files/sanitizer.cfg.sample (props changed) head/mail/anomy-sanitizer/files/sanitizer.cfg.sample2 (props changed) head/mail/antivirus-milter/files/antivirus-milter.in (props changed) head/mail/antivirus-milter/files/antivirus.conf (props changed) head/mail/antivirus-milter/files/clamav.conf (props changed) head/mail/anubis/files/anubis.in (props changed) head/mail/archiveopteryx/files/archiveopteryx.in (props changed) head/mail/archivesmtp/files/archivesmtp.in (props changed) head/mail/archivesmtp/files/src-Makefile (props changed) head/mail/archivesmtp/files/top-Makefile (props changed) head/mail/assp/files/510.assp.in (props changed) head/mail/assp/files/assp.8.in (props changed) head/mail/assp/files/assp.in (props changed) head/mail/assp/files/assplog.8.in (props changed) head/mail/assp/files/assplog.pl.in (props changed) head/mail/autorespond/files/autorespond.1 (props changed) head/mail/batv-milter/files/milter-batv.in (props changed) head/mail/batv-milter/files/site.config.m4 (props changed) head/mail/bsfilter/files/bsfilter.conf.sample (props changed) head/mail/bsfilter/files/dot-qmail.sample (props changed) head/mail/bsmtp/files/bsmtp.m4.8.11.in (props changed) head/mail/bsmtp/files/bsmtp.m4.8.12.in (props changed) head/mail/bsmtp/files/config.sed (props changed) head/mail/cone/scripts/c_rehash (props changed) head/mail/courier-imap/files/courier-imap-imapd-ssl.in (props changed) head/mail/courier-imap/files/courier-imap-imapd.in (props changed) head/mail/courier-imap/files/courier-imap-pop3d-ssl.in (props changed) head/mail/courier-imap/files/courier-imap-pop3d.in (props changed) head/mail/courier/files/courier.in (props changed) head/mail/courier/files/crontab.in (props changed) head/mail/courier/files/sharedindexupdate.in (props changed) head/mail/couriergraph/files/couriergraph.in (props changed) head/mail/cucipop/scripts/configure (props changed) head/mail/cucipop/scripts/pre-install (props changed) head/mail/cyrus-imapd2/files/imapd.conf (props changed) head/mail/cyrus-imapd2/files/imapd.in (props changed) head/mail/cyrus-imapd22/files/drac_auth.patch (props changed) head/mail/cyrus-imapd22/files/imapd.conf (props changed) head/mail/cyrus-imapd22/files/imapd.in (props changed) head/mail/cyrus-imapd22/files/pass8bit.diff (props changed) head/mail/cyrus-imapd23/files/imapd.conf (props changed) head/mail/cyrus-imapd23/files/imapd.in (props changed) head/mail/cyrus-imapd24/files/imapd.conf (props changed) head/mail/cyrus-imapd24/files/imapd.in (props changed) head/mail/davmail/files/davmail.in (props changed) head/mail/davmail/files/davmail.properties.sample (props changed) head/mail/davmail/files/davmail.sh.in (props changed) head/mail/dbmail/files/dbmail-imapd.in (props changed) head/mail/dbmail/files/dbmail-lmtpd.in (props changed) head/mail/dbmail/files/dbmail-pop3d.in (props changed) head/mail/dbmail/files/dbmail-timsieved.in (props changed) head/mail/dbmail22/files/dbmail-imapd.in (props changed) head/mail/dbmail22/files/dbmail-lmtpd.in (props changed) head/mail/dbmail22/files/dbmail-pop3d.in (props changed) head/mail/dbmail22/files/dbmail-timsieved.in (props changed) head/mail/dcc-dccd/files/dccd.in (props changed) head/mail/dcc-dccd/files/dccgrey.in (props changed) head/mail/dcc-dccd/files/dccifd.in (props changed) head/mail/dcc-dccd/files/dccm.in (props changed) head/mail/dk-milter/files/milter-dk.in (props changed) head/mail/dk-milter/files/site.config.m4 (props changed) head/mail/dk-milter/files/site.config.m4.milter (props changed) head/mail/dkfilter/files/dkfilter_in.in (props changed) head/mail/dkfilter/files/dkfilter_out.in (props changed) head/mail/dkimproxy/files/dkimproxy_in.in (props changed) head/mail/dkimproxy/files/dkimproxy_out.in (props changed) head/mail/dma/files/dma_flushq.in (props changed) head/mail/dovecot/files/dovecot.in (props changed) head/mail/dovecot2/files/dovecot.in (props changed) head/mail/drac/files/dracd.in (props changed) head/mail/dspam-devel/files/UPDATING (props changed) head/mail/dspam-devel/files/dspam-devel.in (props changed) head/mail/dspam/files/UPDATING (props changed) head/mail/dspam/files/dspam.in (props changed) head/mail/elm+ME/files/elm.mimetypes (props changed) head/mail/elm/scripts/pre-configure (props changed) head/mail/enma/files/milter-enma.in (props changed) head/mail/evolution/files/fix-plugins.sh (props changed) head/mail/exact/files/exact.sh (props changed) head/mail/exilog/files/exilog.in (props changed) head/mail/exilog/files/htaccess (props changed) head/mail/exim/files/150.exim-tidydb.sh (props changed) head/mail/exim/files/460.exim-mail-rejects.sh (props changed) head/mail/exim/files/POST-INSTALL-NOTES (props changed) head/mail/exim/files/POST-INSTALL-NOTES.clamd (props changed) head/mail/exim/files/exim.in (props changed) head/mail/exim/options (props changed) head/mail/exmh2/files/config.mh (props changed) head/mail/exmh2/files/config.nmh (props changed) head/mail/exmh2/scripts/build (props changed) head/mail/exmh2/scripts/install (props changed) head/mail/faces/files/ikon2xbm (props changed) head/mail/faces/files/xbm2ikon (props changed) head/mail/faces/files/xbmcut48 (props changed) head/mail/faces/files/xbmsize48 (props changed) head/mail/fetchmail/files/fetchmail.in (props changed) head/mail/fetchmail/files/fetchmailrc.sample (props changed) head/mail/getlive/files/getlive.conf.sample (props changed) head/mail/gld/files/gld.in (props changed) head/mail/gmail-notify/files/config.h (props changed) head/mail/gmail-notify/files/gmail-notifier (props changed) head/mail/imap-uw/files/imap-uw.cnf (props changed) head/mail/james/files/james.in (props changed) head/mail/mailagent/scripts/pre-configure (props changed) head/mail/mailgraph/files/mailgraph.in (props changed) head/mail/mailman/files/powerlogo.gif.uue (props changed) head/mail/mailscanner/files/CHANGES.port (props changed) head/mail/mailscanner/files/MailScanner.8.in (props changed) head/mail/mailscanner/files/README.FreeBSD.port (props changed) head/mail/mailscanner/files/Sophos.install.freebsd (props changed) head/mail/mailscanner/files/mailscanner.in (props changed) head/mail/mailscanner/files/mta.in (props changed) head/mail/majordomo/files/aliases.majordomo (props changed) head/mail/majordomo/files/post-install-notes (props changed) head/mail/majordomo/files/postfix-approve-patch (props changed) head/mail/majordomo/files/test-l.info (props changed) head/mail/majordomo/files/test-l.passwd (props changed) head/mail/majordomo/scripts/adaptwrapper (props changed) head/mail/majordomo/scripts/configure (props changed) head/mail/majordomo/scripts/makeseed (props changed) head/mail/masqmail/files/masqmail.in (props changed) head/mail/milter-bogom/files/milter-bogom.in (props changed) head/mail/milter-callback/files/milter-callback.in (props changed) head/mail/milter-greylist-devel/files/milter-greylist.in (props changed) head/mail/milter-greylist/files/milter-greylist.in (props changed) head/mail/milter-manager/files/milter-manager.in (props changed) head/mail/milter-regex/files/COPYRIGHT (props changed) head/mail/milter-regex/files/milterregex.in (props changed) head/mail/milter-skem/files/timet.patch (props changed) head/mail/missey/files/mps.in (props changed) head/mail/mu/files/mu-ask (props changed) head/mail/mulberry/files/mailcap (props changed) head/mail/mulberry/files/url.helpers (props changed) head/mail/mutt/scripts/generate-plist (props changed) head/mail/noattach/files/noattach.in (props changed) head/mail/nullmailer/files/nullmailer.in (props changed) head/mail/nullmailer/files/remotes.sample (props changed) head/mail/opendkim/files/milter-opendkim.in (props changed) head/mail/opensmtpd-devel/files/smtpd.in (props changed) head/mail/opensmtpd/files/smtpd.in (props changed) head/mail/ovs/files/ovs.in (props changed) head/mail/p3scan/files/p3scan.in (props changed) head/mail/p5-Mail-SpamAssassin/files/sa-spamd.in (props changed) head/mail/p5-qpsmtpd/files/qpsmtpd.in (props changed) head/mail/perdition/files/perdition.imap4.in (props changed) head/mail/perdition/files/perdition.imap4s.in (props changed) head/mail/perdition/files/perdition.imaps.in (props changed) head/mail/perdition/files/perdition.in (props changed) head/mail/perdition/files/perdition.pop3.in (props changed) head/mail/perdition/files/perdition.pop3s.in (props changed) head/mail/phplist/files/phplist.in (props changed) head/mail/policyd2/files/policyd2.in (props changed) head/mail/pop-before-smtp/files/pop-before-smtp.in (props changed) head/mail/pop3gwd/files/SECURITY (props changed) head/mail/pop3proxy/files/pop3proxyd.conf (props changed) head/mail/pop3proxy/files/pop3proxyd.in (props changed) head/mail/pop3vscan/files/pop3vscan.sh (props changed) head/mail/popa3d/files/POPAUTH (props changed) head/mail/popa3d/files/pop-before-sendmail.patch (props changed) head/mail/popa3d/files/popa3d.in (props changed) head/mail/popa3d/files/popauth.m4 (props changed) head/mail/popa3d/files/setproctitle.patch (props changed) head/mail/popfile/files/popfile.sh (props changed) head/mail/poppassd/files/poppassd.8 (props changed) head/mail/popper/files/sendto.c (props changed) head/mail/popular/files/0ringd.in (props changed) head/mail/popular/files/pcheckd.in (props changed) head/mail/popular/files/pproxy.in (props changed) head/mail/popular/files/pserv.in (props changed) head/mail/postfix-current/files/postfix.in (props changed) head/mail/postfix-policyd-sf/files/policyd.in (props changed) head/mail/postfix-policyd-weight/files/policyd-weight.in (props changed) head/mail/postfix-postfwd/files/postfwd.in (props changed) head/mail/postfix/files/postfix.in (props changed) head/mail/postfix210/files/postfix.in (props changed) head/mail/postfix27/files/postfix.in (props changed) head/mail/postfix28/files/postfix.in (props changed) head/mail/postfix29/files/postfix.in (props changed) head/mail/postpals/files/postpals-taillog.in (props changed) head/mail/postpals/files/postpals.in (props changed) head/mail/prayer/files/prayer.in (props changed) head/mail/prom-wl/files/byte-compile (props changed) head/mail/prom-wl/files/dot.emacs (props changed) head/mail/prom-wl/files/dot.procmailrc (props changed) head/mail/proxsmtp/files/proxsmtpd.in (props changed) head/mail/py-apolicy/files/apolicyd.in (props changed) head/mail/py-ppolicy/files/ppolicyd.in (props changed) head/mail/py-spambayes/files/pyspamd.in (props changed) head/mail/pysieved/files/pysieved.in (props changed) head/mail/qmail/files/bootfiles.sed.in (props changed) head/mail/qmail/files/enable-qmail.in (props changed) head/mail/qmail/files/maildir (props changed) head/mail/qmail/files/mailer.conf.sample.in (props changed) head/mail/qmail/files/mkaliasdir (props changed) head/mail/qmail/files/qmailsmtpd.in (props changed) head/mail/qmailadmin/files/extra-ezmlm-idx7.patch (props changed) head/mail/qmhandle/files/qmHandle.conf.in (props changed) head/mail/qpopper/files/qpopper.in (props changed) head/mail/qpopper/scripts/pre-install (props changed) head/mail/quickml/files/quickml.in (props changed) head/mail/quickml/files/with-mta.en.rd (props changed) head/mail/rabl_server/files/rabl_server.in (props changed) head/mail/rbl-milter/files/rblmilter.in (props changed) head/mail/rblcheck/files/rblcheckrc.sample (props changed) head/mail/roundcube/files/spellchecker.php (props changed) head/mail/rspamd/files/rspamd.in (props changed) head/mail/rspamd/files/rspamd_redirector.in (props changed) head/mail/sa-utils/files/sa-utils.in (props changed) head/mail/sastatd/files/sastatd.in (props changed) head/mail/scam-backscatter/files/scam-backscatter.in (props changed) head/mail/sendmail/files/CYRUS_LOOKUP (props changed) head/mail/sendmail/files/cyruslookup.patch (props changed) head/mail/sendmail/files/sharedlibrary.m4 (props changed) head/mail/sendmail/files/site.config.m4 (props changed) head/mail/sendmail/files/site.config.m4.ipv6 (props changed) head/mail/sendmail/files/site.config.m4.ldap (props changed) head/mail/sendmail/files/site.config.m4.milter (props changed) head/mail/sendmail/files/site.config.m4.pre4 (props changed) head/mail/sendmail/files/site.config.m4.sasl2 (props changed) head/mail/sendmail/files/site.config.m4.ssl (props changed) head/mail/sendmail/files/site.config.m4.tls (props changed) head/mail/sendmail/files/tls-install.sh (props changed) head/mail/sentinel/files/000.sentinel.sh (props changed) head/mail/serialmail/files/maildirsmtps (props changed) head/mail/sid-milter/files/milter-sid.in (props changed) head/mail/sid-milter/files/site.config.m4 (props changed) head/mail/sid-milter/files/site.config.m4.milter (props changed) head/mail/smail/files/freebsd5.in (props changed) head/mail/smfsav/files/smfsav.in (props changed) head/mail/smtptrapd/files/smtptrapd.in (props changed) head/mail/spamass-milter/files/activation.txt (props changed) head/mail/spamass-milter/files/spamass-milter.in (props changed) head/mail/spamd/files/obspamd.in (props changed) head/mail/spamd/files/obspamlogd.in (props changed) head/mail/spamilter/files/spamilter.in (props changed) head/mail/spampd/files/spampd.in (props changed) head/mail/sqlgrey/files/sqlgrey.in (props changed) head/mail/squirrelmail/files/111.clean-squirrelmail (props changed) head/mail/squirrelmail/files/plugin-pkg-message.in (props changed) head/mail/sqwebmail/files/sqwebmail-sqwebmaild.in (props changed) head/mail/ssmtp/files/remote-addr.patch (props changed) head/mail/synonym/files/synonym.in (props changed) head/mail/tkrat2/files/ratatoskrc (props changed) head/mail/tpop3d/files/tpop3d.conf.dist (props changed) head/mail/tpop3d/files/tpop3d.in (props changed) head/mail/up-imapproxy/files/imapproxyd.in (props changed) head/mail/vbsfilter/files/vbsfilter.in (props changed) head/mail/vm-pop3d/files/vm-pop3d.sh (props changed) head/mail/vpopmail/files/sql-remove-deleted.patch (props changed) head/mail/vpopmail/files/vchkpw-smtp-auth.patch (props changed) head/mail/wanderlust-devel/files/WL-CFG (props changed) head/mail/wanderlust-devel/files/wanderlust-startup.el (props changed) head/mail/wanderlust/files/WL-CFG (props changed) head/mail/wanderlust/files/_pkg.el (props changed) head/mail/wanderlust/files/wanderlust-startup.emacs20.el.tmpl (props changed) head/mail/wanderlust/files/wanderlust-startup.emacs21.el.tmpl (props changed) head/mail/wanderlust/files/wanderlust-startup.emacs22.el.tmpl (props changed) head/mail/wanderlust/files/wanderlust-startup.emacs23.el.tmpl (props changed) head/mail/wanderlust/files/wanderlust-startup.emacs24.el.tmpl (props changed) head/mail/wanderlust/files/wanderlust-startup.xemacs21-mule.el.tmpl (props changed) head/mail/whoson/files/whoson.in (props changed) head/mail/xpbiff/files/LocPixmap.c (props changed) head/mail/xpbiff/files/xpbiff.youbin.diff (props changed) head/mail/xpi-displayquota/files/chrome.manifest (props changed) head/mail/zmailer/files/extra-utmpx (props changed) head/mail/zmailer/files/zmailer.in (props changed) head/math/arpack/files/arpack.h (props changed) head/math/atlas-devel/files/alpha-patch (props changed) head/math/atlas-devel/files/thread-patch (props changed) head/math/atlas/files/tuning-message (props changed) head/math/bihar/files/makefile.lib (props changed) head/math/blacs/files/Bmake.inc-mpich.diff (props changed) head/math/blacs/files/Bmake.inc-openmpi.diff (props changed) head/math/blocksolve95/files/BSman3.inc (props changed) head/math/grace/files/mini-xmgr3.xpm (props changed) head/math/javanns/files/javanns.sh (props changed) head/math/jts/files/testJTS.sh.in (props changed) head/math/kash3/files/kash3.in (props changed) head/math/lapack/files/manpages (props changed) head/math/ldouble/files/128-makefile-patch (props changed) head/math/ldouble/files/i386-makefile-patch (props changed) head/math/mprime/files/wrapper.sh.in (props changed) head/math/octave-forge-base/files/load-octave-pkg.in (props changed) head/math/py-numpy/files/fenv.patch (props changed) head/math/py-numpy/files/site.cfg (props changed) head/math/qtiplot/files/build.conf (props changed) head/math/rapid/files/rapid.1 (props changed) head/math/sage/files/gcc.in (props changed) head/math/sage/files/optional-packages.txt (props changed) head/math/sage/files/spkg-patch-pycrypto_-_patches_src.libtom.tomcrypt_pk.h (props changed) head/math/sage/files/spkg-patch-pycrypto_-_spkg-install (props changed) head/math/sage/files/spkg-patch-python_-_src_Doc_library_fcntl.rst (props changed) head/math/sage/files/spkg-patch-python_-_src_Modules__ctypes_libffi_configure (props changed) head/math/sage/files/spkg-patch-python_-_src_Modules_fcntlmodule.c (props changed) head/math/sage/files/spkg-patch-python_-_src_Python_thread_pthread.h (props changed) head/math/sage/files/spkg-patch-python_-_src_setup.py (props changed) head/math/sage/files/spkg-patch-sage_-_doc_common_builder.py (props changed) head/math/sage/files/spkg-patch-sympow_-_src_disk.c (props changed) head/math/scalapack/files/PBtools.h.patch (props changed) head/math/scalapack/files/SLmake.inc-mpich.diff (props changed) head/math/scalapack/files/SLmake.inc-openmpi.diff (props changed) head/math/scalapack/files/example1.cc (props changed) head/math/scalapack/files/example1.f (props changed) head/math/scalapack/files/manpages (props changed) head/math/slatec/files/makefile.lib (props changed) head/math/slatec/files/makefile.test (props changed) head/math/truthtable/files/truthtable.in (props changed) head/math/vtk5/files/vtk.3.in (props changed) head/math/wingz3/files/Wingz3 (props changed) head/misc/amanda-perl-wrapper/files/perl-amanda.c.in (props changed) head/misc/biblical-curse/src/biblical-curse (props changed) head/misc/dahdi-kmod/files/dahdi.in (props changed) head/misc/dahdi-kmod26/files/dahdi.in (props changed) head/misc/digitemp/files/digitemp.conf.sample (props changed) head/misc/dnetc/files/dnetc.in (props changed) head/misc/dnetc/files/dnetc.ini (props changed) head/misc/e2fsprogs-libuuid/files/uuidd.in (props changed) head/misc/estic/files/README (props changed) head/misc/estic/files/dtr-off.patch (props changed) head/misc/estic/files/estic.ini (props changed) head/misc/fxload/files/xilinx.conf (props changed) head/misc/gctpc/files/for_init.h (props changed) head/misc/gctpc/files/gctp.h (props changed) head/misc/gctpc/files/gctpc.h (props changed) head/misc/gctpc/files/inv_init.h (props changed) head/misc/gctpc/files/report.h (props changed) head/misc/gctpc/files/sphdz.h (props changed) head/misc/gctpc/files/untfz.h (props changed) head/misc/hotkeys/files/eliteduo.def (props changed) head/misc/hotkeys/files/error.h (props changed) head/misc/hotkeys/files/logitech-ultrax.def (props changed) head/misc/jbidwatcher/files/jbidwatcher.in (props changed) head/misc/kbdscan/files/LICENSE-kbdscan (props changed) head/misc/kde-xdg-env/files/xdg-env.sh.in (props changed) head/misc/kde4-l10n/files/kde4-lang-names (props changed) head/misc/kde4-xdg-env/files/xdg-env.sh.in (props changed) head/misc/kdehier4/files/mtree-dirlist (props changed) head/misc/kdehier4/files/session-kde4.conf.in (props changed) head/misc/kdehier4/files/system-kde4.conf.in (props changed) head/misc/lr/files/lesspipe.sh (props changed) head/misc/man.el/files/byte-compile (props changed) head/misc/metalink-editor/files/setup.py (props changed) head/misc/orville-write/files/utmpx-amin.c (props changed) head/misc/orville-write/files/utmpx-getutent.c (props changed) head/misc/orville-write/files/utmpx-getutent.h (props changed) head/misc/orville-write/files/utmpx-helpers.c (props changed) head/misc/orville-write/files/utmpx-huh.c (props changed) head/misc/orville-write/files/utmpx-lib_common.c (props changed) head/misc/orville-write/files/utmpx-lib_common.h (props changed) head/misc/orville-write/files/utmpx-mesg.c (props changed) head/misc/orville-write/files/utmpx-wrt_him.c (props changed) head/misc/orville-write/files/utmpx-wrt_me.c (props changed) head/misc/orville-write/files/utmpx-wrttmp.h (props changed) head/misc/pauker/files/pauker.sh (props changed) head/misc/pipe/files/pipe.sh.in (props changed) head/misc/proxyper/files/proxyper.in (props changed) head/misc/tkman/files/310.index_manpages (props changed) head/misc/tvbrowser/files/tvbrowser.in (props changed) head/misc/upclient/files/upclient.in (props changed) head/misc/yaunc/files/yaunc.in (props changed) head/misc/zoneinfo/files/patchremove-ax (props changed) head/misc/zoneinfo/files/patchremove-bl (props changed) head/misc/zoneinfo/files/patchremove-bq (props changed) head/misc/zoneinfo/files/patchremove-cw (props changed) head/misc/zoneinfo/files/patchremove-gg (props changed) head/misc/zoneinfo/files/patchremove-im (props changed) head/misc/zoneinfo/files/patchremove-je (props changed) head/misc/zoneinfo/files/patchremove-me (props changed) head/misc/zoneinfo/files/patchremove-mf (props changed) head/misc/zoneinfo/files/patchremove-rs (props changed) head/misc/zoneinfo/files/patchremove-ss (props changed) head/misc/zoneinfo/files/patchremove-sx (props changed) head/multimedia/avidemux2/files/avidemux2.desktop.in (props changed) head/multimedia/avidemux2/files/execinfo.cpp (props changed) head/multimedia/avidemux2/files/ffmpeg-configure.patch (props changed) head/multimedia/avidemux2/files/ffmpeg-libavcodec-Makefile.patch (props changed) head/multimedia/avidemux2/files/ffmpeg-libavutil-common.h.patch (props changed) head/multimedia/devede/files/extra-psyco-patch-devede.py (props changed) head/multimedia/dvbsnoop/files/dmx.h (props changed) head/multimedia/dvbsnoop/files/frontend.h (props changed) head/multimedia/dvdauthor/files/README.FreeBSD.in (props changed) head/multimedia/ffmpeg/files/ffserver.in (props changed) head/multimedia/ffmpegthumbnailer/files/ffmpegthumbnailer.schemas (props changed) head/multimedia/freevo/files/freevo-rcsubr.in (props changed) head/multimedia/freevo/files/freevo.in (props changed) head/multimedia/gdialog/files/gdialog.in (props changed) head/multimedia/kissdx/files/kissdx.in (props changed) head/multimedia/linux-huludesktop/files/huludesktop.in (props changed) head/multimedia/linux-realplayer/files/realplay (props changed) head/multimedia/linux_dvbwrapper-kmod/files/linux_dvb.h (props changed) head/multimedia/linux_dvbwrapper-kmod/files/linux_dvb_compat.h (props changed) head/multimedia/linux_dvbwrapper-kmod/files/linux_dvb_ioctl.h (props changed) head/multimedia/mmsclient/files/mmsclient.1 (props changed) head/multimedia/mplex/files/mplex.1 (props changed) head/multimedia/mythtv/files/mythbackend.in (props changed) head/multimedia/plexmediaserver/files/plexmediaserver.in (props changed) head/multimedia/projectx/files/project-x.sh.in (props changed) head/multimedia/ptx-kmod/files/ptx.in (props changed) head/multimedia/pvr250/files/cxm.txt (props changed) head/multimedia/py-pybmp/files/setup.cfg.port (props changed) head/multimedia/qt-faststart/files/qt-faststart.c (props changed) head/multimedia/v4l-utils/files/extra-strnlen (props changed) head/multimedia/vdr-plugin-iptv/files/channels.conf.iptv (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/3Sat.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio1.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio1xtra.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio2.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio3.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio4.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio4lw.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio5liveint.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio5livesport.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio6music.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/BBC-radio7.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/Bundesligen-TV.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/Daytona-Beach.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/NASA-1200-Kbit.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/NASA-500-Kbit.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/NASA.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/Sky-News.conf (props changed) head/multimedia/vdr-plugin-iptv/files/vlcinput/THE_VOICE.conf (props changed) head/multimedia/vdr-plugin-wirbelscan/files/types.sed (props changed) head/multimedia/vdr-plugin-xineliboutput/files/keymap (props changed) head/multimedia/vdr/files/remote.conf (props changed) head/multimedia/vdr/files/stb0899-signalstrength.patch (props changed) head/multimedia/vdr/files/vdr-1.7.15-disable_ca_updates.patch (props changed) head/multimedia/vdr/files/vdr-1.7.15-disable_eitscan.patch (props changed) head/multimedia/vdr/files/vdr-1.7.17-fix_na_dvbs_ac3.diff (props changed) head/multimedia/vdr/files/vdr-1.7.21-ttxtsubs.patch-1 (props changed) head/multimedia/vdr/files/vdr-1.7.21-ttxtsubs.patch-2 (props changed) head/multimedia/vdr/files/vdr-1.7.27-pat.diff (props changed) head/multimedia/vdr/files/vdr-waitdvb.in (props changed) head/multimedia/vdr/files/vdr.in (props changed) head/multimedia/vtkmpeg2encode/files/vtkmpeg2encode.3.in (props changed) head/multimedia/w_scan/files/types.sed (props changed) head/multimedia/webcamd/files/webcamd.conf.in (props changed) head/multimedia/zoneminder/files/README.FreeBSD (props changed) head/multimedia/zoneminder/files/videodev.h (props changed) head/multimedia/zoneminder/files/zm_fbsd_camera.cpp (props changed) head/multimedia/zoneminder/files/zoneminder.in (props changed) head/net-im/convey/files/convey.sh.in (props changed) head/net-im/ejabberd/files/ejabberd.in (props changed) head/net-im/ejabberd/files/pam_ejabberd (props changed) head/net-im/imspector/files/imspector.in (props changed) head/net-im/iserverd/files/iserverd.in (props changed) head/net-im/jabber-pyaim/files/jabber-pyaim-transport.in (props changed) head/net-im/jabber-pyicq/files/README.jabberd14.in (props changed) head/net-im/jabber-pyicq/files/README.jabberd2.in (props changed) head/net-im/jabber-pyicq/files/jabber-pyicq-transport.in (props changed) head/net-im/jabber/files/jabber.in (props changed) head/net-im/jabberd/files/jabberd.in (props changed) head/net-im/jggtrans/files/jggtrans.in (props changed) head/net-im/jitsi/files/jitsi.1 (props changed) head/net-im/jitsi/files/jitsi.sh (props changed) head/net-im/mercury/files/Mercury_Messenger.in (props changed) head/net-im/mikutter/files/mikutter.desktop.in (props changed) head/net-im/mu-conference/files/README.FreeBSD.external.in (props changed) head/net-im/mu-conference/files/README.FreeBSD.jabberd14.in (props changed) head/net-im/mu-conference/files/README.FreeBSD.jabberd2.in (props changed) head/net-im/mu-conference/files/mu-conference.in (props changed) head/net-im/openfire-devel/files/openfire.in (props changed) head/net-im/prosody/files/prosody.in (props changed) head/net-im/py-punjab/files/punjab.in (props changed) head/net-im/py-punjab/files/punjab.tac.in (props changed) head/net-im/py-xmpppy-irc/files/xmpppyirc.in (props changed) head/net-im/py-xmpppy-yahoo/files/xmpppy_yahoo.in (props changed) head/net-im/qq/files/qq.sh.in (props changed) head/net-im/skype-devel/files/skype.sh.in (props changed) head/net-im/skype/files/skype.sh.in (props changed) head/net-im/vicq/files/p5.8-patch-sigalrm (props changed) head/net-im/yoono/files/yoono.in (props changed) head/net-im/zephyr/files/zhm.in (props changed) head/net-mgmt/airport/files/airport.sh.in (props changed) head/net-mgmt/argus-monitor/files/patch.001 (props changed) head/net-mgmt/argus3/files/argus.in (props changed) head/net-mgmt/arpwatch/files/arpwatch.in (props changed) head/net-mgmt/bandwidthd/files/bandwidthd.sh (props changed) head/net-mgmt/bigsister/files/bigsister.in (props changed) head/net-mgmt/cdpd/files/cdpd.in (props changed) head/net-mgmt/cflowd/files/cflowd.sh (props changed) head/net-mgmt/chillispot/files/chillispot.in (props changed) head/net-mgmt/chillispot/files/installguide.txt.in (props changed) head/net-mgmt/chillispot/files/ipfw-config.sample (props changed) head/net-mgmt/chillispot/files/pf.conf.sample (props changed) head/net-mgmt/choparp/files/choparp.in (props changed) head/net-mgmt/collectd/files/collectd.in (props changed) head/net-mgmt/collectd/files/collectdmon.in (props changed) head/net-mgmt/collectd5/files/collectd.in (props changed) head/net-mgmt/collectd5/files/collectdmon.in (props changed) head/net-mgmt/confregdecode/files/confregdecode.in (props changed) head/net-mgmt/coovachilli/files/coovachilli.in (props changed) head/net-mgmt/coovachilli/files/ipfw-config.sample (props changed) head/net-mgmt/coovachilli/files/main.conf.sample (props changed) head/net-mgmt/coovachilli/files/pf.conf.sample (props changed) head/net-mgmt/darkstat/files/darkstat.in (props changed) head/net-mgmt/ehnt/files/ehntserv.sh.sample (props changed) head/net-mgmt/flow-tools-ng/files/flow_capture.in (props changed) head/net-mgmt/flow-tools-ng/files/flow_fanout.in (props changed) head/net-mgmt/flow-tools/files/flow_capture.in (props changed) head/net-mgmt/flow-tools/files/flow_fanout.in (props changed) head/net-mgmt/flowd/files/flowd.in (props changed) head/net-mgmt/fruity/files/fruity.config.inc.in (props changed) head/net-mgmt/hawk/files/create_hawk_db.sql (props changed) head/net-mgmt/hawk/files/create_hawk_user.sql (props changed) head/net-mgmt/hawk/files/favicon.ico (props changed) head/net-mgmt/hawk/files/hawk.in (props changed) head/net-mgmt/icinga/files/ido2db.in (props changed) head/net-mgmt/ifgraph/files/crontab.in (props changed) head/net-mgmt/ipacctd/files/ipacctd.in (props changed) head/net-mgmt/ipcad/files/ipcad.in (props changed) head/net-mgmt/ipv6mon/files/ipv6mon.in (props changed) head/net-mgmt/kismet/files/suid_pkg-message.in (props changed) head/net-mgmt/macroscope/files/macroscope.in (props changed) head/net-mgmt/mrtg/files/mrtg_daemon.in (props changed) head/net-mgmt/nagios-check_cpu_usage/src/check_cpu_usage (props changed) head/net-mgmt/nagios-check_hdd_health/src/check_hdd_health (props changed) head/net-mgmt/nagios-check_kumofs/files/check_kumomgr.in (props changed) head/net-mgmt/nagios-check_kumofs/files/check_kumosvr.in (props changed) head/net-mgmt/nagios-check_memcached_paranoid/files/check_memcached_paranoid.c (props changed) head/net-mgmt/nagios-check_netsnmp/files/check_netsnmp (props changed) head/net-mgmt/nagios-check_netsnmp/files/check_netsnmp.html (props changed) head/net-mgmt/nagios-devel/files/nagios.in (props changed) head/net-mgmt/nagios/files/nagios.in (props changed) head/net-mgmt/nagircbot/files/nagircbot.in (props changed) head/net-mgmt/ndoutils/files/ndo2db.in (props changed) head/net-mgmt/ndpmon/files/ndpmonitor.in (props changed) head/net-mgmt/nefu/files/nefu.in (props changed) head/net-mgmt/net-snmp/files/snmpd.in (props changed) head/net-mgmt/net-snmp/files/snmptrapd.in (props changed) head/net-mgmt/net-snmp/files/test.t (props changed) head/net-mgmt/netams/files/netams.in (props changed) head/net-mgmt/netmond/files/README.eng (props changed) head/net-mgmt/netmond/files/README.port.eng (props changed) head/net-mgmt/netmond/files/README.port.ru (props changed) head/net-mgmt/netmond/files/netmond.in (props changed) head/net-mgmt/netmond/files/netmond_watchdog.in (props changed) head/net-mgmt/netmond/files/netmondctl.in (props changed) head/net-mgmt/netmond/files/pipe.c (props changed) head/net-mgmt/netustad/files/netustad.in (props changed) head/net-mgmt/netxms/files/netxmsd.in (props changed) head/net-mgmt/netxms/files/nxagentd.in (props changed) head/net-mgmt/netxms/files/nxhttpd.in (props changed) head/net-mgmt/nfsen/files/nfsen.in (props changed) head/net-mgmt/ng_ipacct/files/ng_ipacct.conf (props changed) head/net-mgmt/ng_ipacct/files/ng_ipacct.in (props changed) head/net-mgmt/nrpe/files/nrpe2.in (props changed) head/net-mgmt/nsca/files/nsca.in (props changed) head/net-mgmt/nsca27/files/nsca.in (props changed) head/net-mgmt/openlldp/files/lldpd.8 (props changed) head/net-mgmt/openlldp/files/lldpd.in (props changed) head/net-mgmt/ourmon/files/ourmon.in (props changed) head/net-mgmt/p5-SNMP-Util/files/extra-net-snmp-patch-Makefile.PL (props changed) head/net-mgmt/pandorafms_agent/files/pandora_agent.in (props changed) head/net-mgmt/pandorafms_console/files/pandora_console.conf.in (props changed) head/net-mgmt/pandorafms_server/files/199.clean-pandoradb.in (props changed) head/net-mgmt/pandorafms_server/files/pandora_server.in (props changed) head/net-mgmt/pandorafms_server/files/tentacle_server.in (props changed) head/net-mgmt/pftabled/files/pftabled.in (props changed) head/net-mgmt/pnp/files/npcd.in (props changed) head/net-mgmt/ramond/files/ramon.in (props changed) head/net-mgmt/rotorouter/files/rotorouter.c (props changed) head/net-mgmt/rotorouter/files/rotorouter.conf-example (props changed) head/net-mgmt/rotorouter/files/rotorouter.in (props changed) head/net-mgmt/rrdbot/files/rrdbot.in (props changed) head/net-mgmt/smokeping/files/smokeping.in (props changed) head/net-mgmt/snmptt/files/snmptt.in (props changed) head/net-mgmt/softflowd/files/softflowd.in (props changed) head/net-mgmt/ssgless/files/lesspipe-ssg.awk.in (props changed) head/net-mgmt/ssgless/files/ssgless.in (props changed) head/net-mgmt/torrus/files/torrus_collector.in (props changed) head/net-mgmt/torrus/files/torrus_monitor.in (props changed) head/net-mgmt/wide-dhcp/files/wide-dhcps.sh.sample (props changed) head/net-mgmt/xymon-client/files/xymon-client.in (props changed) head/net-mgmt/xymon-server/files/xymon-server.in (props changed) head/net-mgmt/zabbix2-server/files/zabbix_agentd.in (props changed) head/net-mgmt/zabbix2-server/files/zabbix_proxy.in (props changed) head/net-mgmt/zabbix2-server/files/zabbix_server.in (props changed) head/net-mgmt/zabbix22-server/files/zabbix_agentd.in (props changed) head/net-mgmt/zabbix22-server/files/zabbix_proxy.in (props changed) head/net-mgmt/zabbix22-server/files/zabbix_server.in (props changed) head/net-mgmt/zenoss/files/libsmi-0.4.8.all.patch01 (props changed) head/net-mgmt/zenoss/files/local.conf.in (props changed) head/net-mgmt/zenoss/files/profile.in (props changed) head/net-mgmt/zenoss/files/zenoss.in (props changed) head/net-p2p/amule-devel/files/amuled.in (props changed) head/net-p2p/amule/files/amuled.in (props changed) head/net-p2p/azureus2/files/azureus2.in (props changed) head/net-p2p/azureus2/files/build.xml (props changed) head/net-p2p/bittyrant/files/bittyrant.in (props changed) head/net-p2p/bnbt/files/bnbt.in (props changed) head/net-p2p/btqueue/files/FBSD4-patch-BitTorrent_defaultargs.py (props changed) head/net-p2p/deluge/files/deluged.in (props changed) head/net-p2p/frost/files/wrapper.sh (props changed) head/net-p2p/i2p/files/i2p.in (props changed) head/net-p2p/i2p/files/wrapper.sh.in (props changed) head/net-p2p/liberator/files/wrapper.sh (props changed) head/net-p2p/minder/files/minder.cfg.sample (props changed) head/net-p2p/mldonkey/files/kill_mldonkey (props changed) head/net-p2p/mldonkey/files/mlnet.in (props changed) head/net-p2p/mldonkey/files/wrapper.sh (props changed) head/net-p2p/opennap/files/opennap.sh (props changed) head/net-p2p/phex/files/phex.sh.in (props changed) head/net-p2p/py-kenosis/files/python2.3-Queue.py (props changed) head/net-p2p/transmission-cli/files/disable-web (props changed) head/net-p2p/transmission-cli/files/transmission.in (props changed) head/net-p2p/uhub/files/uhub.in (props changed) head/net-p2p/verlihub/files/verlihub.in (props changed) head/net-p2p/vuze/files/build.xml (props changed) head/net-p2p/vuze/files/vuze.in (props changed) head/net-p2p/xnap/files/wrapper.sh (props changed) head/net-p2p/zetacoin/files/zetacoin.conf.sample (props changed) head/net-p2p/zetacoin/files/zetacoin.in (props changed) head/net/3proxy/files/3proxy.in (props changed) head/net/AquaGatekeeper/files/agk.sh.sample (props changed) head/net/DarwinStreamingServer/files/darwin_streaming_server.in (props changed) head/net/DarwinStreamingServer/files/streamingadminserver.in (props changed) head/net/GeoIP/files/geoipupdate.sh.in (props changed) head/net/activemq/files/activemq.in (props changed) head/net/aoe/files/aoe.in (props changed) head/net/apinger/files/apinger.in (props changed) head/net/asterisk-oh323/files/codecnego.diff (props changed) head/net/asterisk14-addons/files/codecnego.diff (props changed) head/net/asterisk14/files/asterisk.in (props changed) head/net/asterisk14/files/codecnego-patch-Makefile (props changed) head/net/asterisk14/files/dtmf_debug.diff (props changed) head/net/asterisk14/files/ilbc_enable.diff (props changed) head/net/asterisk14/files/nocodecnego-patch-Makefile (props changed) head/net/asterisk14/files/rtp_force_dtmf-codecnego.diff (props changed) head/net/asterisk14/files/rtp_force_dtmf-nocodecnego.diff (props changed) head/net/asterisk14/files/sip_force_callid.diff (props changed) head/net/asterisk14/files/sip_set_auth.diff (props changed) head/net/avahi-app/files/org.freedesktop.Avahi.service (props changed) head/net/balance/files/balance.in (props changed) head/net/beanstalkd/files/beanstalkd.in (props changed) head/net/binkd/files/binkd.in (props changed) head/net/bird-devel/files/bird.in (props changed) head/net/bird/files/agg_support.patch (props changed) head/net/bird/files/bird.in (props changed) head/net/bird/files/firewall_support.patch (props changed) head/net/bld/files/bld.in (props changed) head/net/bounce/files/bounce.in (props changed) head/net/callweaver/files/callweaver.in (props changed) head/net/ccxstream/files/ccxstream.in (props changed) head/net/citrix_ica/files/wfcmgr.in (props changed) head/net/citrix_ica/files/wfica.in (props changed) head/net/cnupm/files/cnupm.in (props changed) head/net/crtmpserver/files/crtmpserver.in (props changed) head/net/csync2/files/csync2.in (props changed) head/net/cvsup-mirror/files/cvsupd.in (props changed) head/net/cvsup-mirror/files/refuse.self (props changed) head/net/cvsup-mirror/files/supfile (props changed) head/net/cvsup-mirror/files/update.sh.in (props changed) head/net/cvsup-mirror/scripts/configure (props changed) head/net/cvsup/files/p-amd64-aa (props changed) head/net/cvsup/files/p-amd64-zlib (props changed) head/net/cvsup/scripts/configure (props changed) head/net/cvsync/files/cvsyncd.in (props changed) head/net/daemonlogger/files/daemonlogger.in (props changed) head/net/dante/files/sockd.in (props changed) head/net/dbeacon/files/dbeacon.in (props changed) head/net/delegate/files/delegated.sh (props changed) head/net/dgd-kernel/files/dgd-kernel.sh (props changed) head/net/dgd-lpmud/files/dgd-lpmud.sh (props changed) head/net/dgd-lpmud/files/oconv.c (props changed) head/net/dgd/files/dgd.sh (props changed) head/net/dhcp6/files/dhcp6c.in (props changed) head/net/dhcp6/files/dhcp6relay.in (props changed) head/net/dhcp6/files/dhcp6s.in (props changed) head/net/dhcpcd/files/dhcpcd.in (props changed) head/net/dhcprelay/files/dhcprelay.in (props changed) head/net/dhcprelya/files/dhcprelya.in (props changed) head/net/dictd/files/dictd.conf.in (props changed) head/net/dictd/files/dictd.in (props changed) head/net/dtcp/files/dtcpc.in (props changed) head/net/dtcp/files/dtcps.in (props changed) head/net/dtcpclient/files/dtcpclient.in (props changed) head/net/exabgp/files/exabgp.sh.in (props changed) head/net/findmtu/files/findmtu.in (props changed) head/net/freebsd-uucp/files/uucp-pam.conf (props changed) head/net/freenet6/files/freenet6.in (props changed) head/net/freeradius2/files/radiusd.in (props changed) head/net/freeradius3/files/radiusd.in (props changed) head/net/freewais-sf/files/freebsd.sh (props changed) head/net/frickin/files/frickin.in (props changed) head/net/get_iplayer/files/get_iplayer.in (props changed) head/net/gini/files/gini.sh.sample (props changed) head/net/gnu-dico/files/dicod.conf (props changed) head/net/gnu-dico/files/dicod.in (props changed) head/net/gnu-radius/files/extra-utmpx (props changed) head/net/gnu-radius/files/radiusd.in (props changed) head/net/gogoc/files/gogoc.in (props changed) head/net/hornetq/files/hornetq.in (props changed) head/net/hostapd/files/config (props changed) head/net/howl/files/mdnsresponder.in (props changed) head/net/httpry/files/httpry.in (props changed) head/net/iaxmodem/files/iaxmodem.in (props changed) head/net/iet/files/ietd.in (props changed) head/net/ifdepd/files/ifdepd.in (props changed) head/net/ifstated/files/ifstated.in (props changed) head/net/igmpproxy/files/igmpproxy.in (props changed) head/net/iodine/files/iodined.in (props changed) head/net/iplog/files/iplog.in (props changed) head/net/irrd/files/irrd.in (props changed) head/net/isc-dhcp41-server/files/isc-dhcpd.in (props changed) head/net/isc-dhcp41-server/files/isc-dhcrelay.in (props changed) head/net/isc-dhcp42-server/files/isc-dhcpd.in (props changed) head/net/isc-dhcp42-server/files/isc-dhcrelay.in (props changed) head/net/iscsi-target/files/iscsi_target.in (props changed) head/net/jrdesktop/files/jrdesktop.in (props changed) head/net/jwhois/files/jwhois.conf (props changed) head/net/ladvd/files/ladvd.in (props changed) head/net/lambdamoo/files/README.FreeBSD (props changed) head/net/libutp/files/BSDmakefile (props changed) head/net/linknx/files/linknx.in (props changed) head/net/linuxigd/files/linuxigd.in (props changed) head/net/lvwimax/files/lvwimax.conf.in (props changed) head/net/lvwimax/files/lvwimax.in (props changed) head/net/mDNSResponder/files/mdnsd.in (props changed) head/net/mars_nwe/files/nwserv.sh (props changed) head/net/mars_nwe/scripts/configure (props changed) head/net/mcast-tools/files/pim6dd.conf.sample (props changed) head/net/mediaproxy/files/mediaproxy.in (props changed) head/net/mediaproxy/files/proxydispatcher.in (props changed) head/net/mediatomb/files/config.xml.dist.in (props changed) head/net/mediatomb/files/mediatomb.in (props changed) head/net/minidlna/files/minidlna.in (props changed) head/net/minisapserver/files/sapserver.in (props changed) head/net/minissdpd/files/minissdpd.in (props changed) head/net/miniupnpc/files/miniupnpc.in (props changed) head/net/miniupnpd/files/miniupnpd.conf.sample.in (props changed) head/net/miniupnpd/files/miniupnpd.in (props changed) head/net/miniupnpd/files/pf_enable_filter_rules.patch (props changed) head/net/miredo/files/ip6addrctl.conf (props changed) head/net/miredo/files/miredo-server.in (props changed) head/net/miredo/files/miredo.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/dhcp6c.conf.in.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/dhcp6c_pd.sh.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/linkdown.sh.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/linkup.sh.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/mpd.conf.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/mpd.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/mpd.links.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/mpd.secret.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/mpd5.conf.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/rtadvd.conf.in (props changed) head/net/mpd-l2tp-ipv6pd-client/scripts/setting (props changed) head/net/mpd5/files/mpd5.in (props changed) head/net/mpich2/files/manpages (props changed) head/net/mrouted/files/mrouted.in (props changed) head/net/msend/files/mesgd.in (props changed) head/net/nakenchat/files/nakenchat.in (props changed) head/net/ncplib/scripts/configure (props changed) head/net/ndisc6/files/rdnssd.in (props changed) head/net/netatalk/files/netatalk.in (props changed) head/net/netatalk3/files/netatalk.in (props changed) head/net/netcat/files/nc.1 (props changed) head/net/neubot/files/neubotd.in (props changed) head/net/nss_ldap/files/bsdnss.c (props changed) head/net/nstxd/files/nstxd.in (props changed) head/net/ntop/files/ntop.in (props changed) head/net/nxproxy/files/setsid.c (props changed) head/net/nylon/files/nylon.conf (props changed) head/net/nylon/files/nylon.in (props changed) head/net/olsrd/files/olsrd.in (props changed) head/net/onioncat/files/onioncat.in (props changed) head/net/openafs/files/afsd.in (props changed) head/net/openafs/files/afsserver.in (props changed) head/net/openbgpd/files/openbgpd.in (props changed) head/net/openldap24-server/files/manpages.client (props changed) head/net/openldap24-server/files/manpages.server (props changed) head/net/openldap24-server/files/slapd.in (props changed) head/net/openmcu/files/openmcu.ini.sample (props changed) head/net/openmq/files/imq.in (props changed) head/net/openntpd/files/adjfreq.c (props changed) head/net/openntpd/files/compat.h (props changed) head/net/openntpd/files/ntpd.conf (props changed) head/net/openntpd/files/openntpd.in (props changed) head/net/openospfd/files/openospfd.in (props changed) head/net/openradius/files/openradius.in (props changed) head/net/openradius/scripts/configure (props changed) head/net/openslp/files/slpd.in (props changed) head/net/opentracker/files/opentracker.in (props changed) head/net/openvswitch/files/ovs-vswitchd.in (props changed) head/net/openvswitch/files/ovsdb-server.in (props changed) head/net/openvswitch/files/threaded.diff (props changed) head/net/osrtspproxy/files/rtspproxy.sh (props changed) head/net/pcnfsd/scripts/configure (props changed) head/net/pen/files/pen.in (props changed) head/net/pfflowd/files/pfflowd.in (props changed) head/net/pfflowd/files/pidfile.c (props changed) head/net/pfflowd/files/pidfile.h (props changed) head/net/pmf/files/pmfrc.default.in (props changed) head/net/poptop/files/pptpd.in (props changed) head/net/pppoa/files/quick-install (props changed) head/net/pptpclient/files/README (props changed) head/net/pptpclient/files/ppp.conf (props changed) head/net/ptpd2-devel/files/ptpd2.in (props changed) head/net/ptpd2/files/ptpd2.in (props changed) head/net/pxe-pdhcp/files/pxe-pdhcp.8 (props changed) head/net/pxe/files/pxe.in (props changed) head/net/qadsl/files/qadsl.in (props changed) head/net/quagga-re/files/quagga.in (props changed) head/net/quagga-re/files/watchquagga.in (props changed) head/net/quagga/files/watchquagga.in (props changed) head/net/quoted/files/quoted.in (props changed) head/net/radiusd-cistron/files/radiusd-cistron.in (props changed) head/net/radiusd-cistron/files/radrelay-cistron.in (props changed) head/net/radsecproxy/files/radsecproxy.in (props changed) head/net/radvd/files/radvd.in (props changed) head/net/redir/files/redir.in (props changed) head/net/relayd/files/relayd.in (props changed) head/net/repeater/files/repeater.in (props changed) head/net/rinetd/files/rinetd.in (props changed) head/net/ris/files/binlsrv.in (props changed) head/net/ris/files/tftp.map (props changed) head/net/rp-pppoe/files/04pppoe-relay.sh.sample (props changed) head/net/rp-pppoe/files/04pppoe-server.sh.sample (props changed) head/net/rsmb/files/broker.cfg (props changed) head/net/rsmb/files/rsmbd.in (props changed) head/net/rsync/files/rsyncd.conf.sample (props changed) head/net/rsync/files/rsyncd.in (props changed) head/net/rtg/files/rtgpoll.in (props changed) head/net/rwhoisd/files/rwhoisd.in (props changed) head/net/samba-smbclient/files/smb-client.conf.sample (props changed) head/net/samba36/files/README.FreeBSD (props changed) head/net/samba36/files/samba.in (props changed) head/net/samba36/files/sernet.patch (props changed) head/net/samba36/files/smb.conf.sample.in (props changed) head/net/samba4/files/README.FreeBSD.in (props changed) head/net/samba4/files/man/gentest.1 (props changed) head/net/samba4/files/man/locktest.1 (props changed) head/net/samba4/files/man/masktest.1 (props changed) head/net/samba4/files/man/ndrdump.1 (props changed) head/net/samba4/files/man/nmblookup4.1 (props changed) head/net/samba4/files/man/ntlm_auth4.1 (props changed) head/net/samba4/files/man/oLschema2ldif.1 (props changed) head/net/samba4/files/man/regdiff.1 (props changed) head/net/samba4/files/man/regpatch.1 (props changed) head/net/samba4/files/man/regshell.1 (props changed) head/net/samba4/files/man/regtree.1 (props changed) head/net/samba4/files/man/smbtorture.1 (props changed) head/net/samba4/files/samba4.in (props changed) head/net/samba41/files/README.FreeBSD.in (props changed) head/net/samba41/files/man/gentest.1 (props changed) head/net/samba41/files/man/locktest.1 (props changed) head/net/samba41/files/man/masktest.1 (props changed) head/net/samba41/files/man/ndrdump.1 (props changed) head/net/samba41/files/man/nmblookup4.1 (props changed) head/net/samba41/files/man/ntdb.3 (props changed) head/net/samba41/files/man/ntdbbackup.8 (props changed) head/net/samba41/files/man/ntdbdump.8 (props changed) head/net/samba41/files/man/ntdbrestore.8 (props changed) head/net/samba41/files/man/ntdbtool.8 (props changed) head/net/samba41/files/man/ntlm_auth4.1 (props changed) head/net/samba41/files/man/oLschema2ldif.1 (props changed) head/net/samba41/files/man/regdiff.1 (props changed) head/net/samba41/files/man/regpatch.1 (props changed) head/net/samba41/files/man/regshell.1 (props changed) head/net/samba41/files/man/regtree.1 (props changed) head/net/samba41/files/man/smbtorture.1 (props changed) head/net/samba41/files/samba_server.in (props changed) head/net/samba4wins/files/samba4wins.conf.sample (props changed) head/net/samba4wins/files/smbd4wins.in (props changed) head/net/scribe/files/scribe.in (props changed) head/net/seda/files/build.xml (props changed) head/net/sendfile/files/sendfiled.in (props changed) head/net/ser/files/ser.in (props changed) head/net/serviio/files/console-log4j.properties (props changed) head/net/serviio/files/serviio-console.in (props changed) head/net/serviio/files/serviio.in (props changed) head/net/serviio/files/serviiod.in (props changed) head/net/sflowtool/files/sflowtool.in (props changed) head/net/sharity-light/files/unshlight.c (props changed) head/net/silc-server/files/silcd.in (props changed) head/net/siproxd/files/siproxd.in (props changed) head/net/sixxs-aiccu/files/sixxs-aiccu.in (props changed) head/net/smb4k-kde4/files/README.FreeBSD (props changed) head/net/smb4k-kde4/files/smb2awk (props changed) head/net/smb4k-kde4/files/smb2nsmbrc (props changed) head/net/socat/files/socat.in (props changed) head/net/socketbind/files/socketbind.c (props changed) head/net/splatd/files/splatd.in (props changed) head/net/ss5/files/ss5.in (props changed) head/net/sslh/files/sslh.in (props changed) head/net/stone/files/stone.1 (props changed) head/net/stone/files/stone.1.ja (props changed) head/net/stone/files/stone.cnf (props changed) head/net/stone/files/stone.in (props changed) head/net/stund/files/stund.in (props changed) head/net/tac_plus-libradius/files/tac_plus.in (props changed) head/net/tac_plus4/files/tac_plus.conf.example (props changed) head/net/tac_plus4/files/tac_plus.in (props changed) head/net/tcpmssd/src/tcpmssd.8 (props changed) head/net/tcpmssd/src/tcpmssd.c (props changed) head/net/tcpproxy/files/tcpproxy.in (props changed) head/net/tdetect/files/tdetect.sh (props changed) head/net/throttled/files/throttled.in (props changed) head/net/tn5250j/files/tn5250j.in (props changed) head/net/toonel/files/toonel.sh.in (props changed) head/net/traff/files/traff.in (props changed) head/net/trickle/files/trickled.conf (props changed) head/net/ucarp/files/ucarp.in (props changed) head/net/udt/files/BSDmakefile (props changed) head/net/usbredir/files/libusb-1.0.pc (props changed) head/net/vnc/files/FreeBSD.cf-patch (props changed) head/net/vnc/files/vnc.def-patch (props changed) head/net/vncreflector/files/vncreflector.in (props changed) head/net/vserver/files/vserver.in (props changed) head/net/vtun/files/extra-tun_dev.c (props changed) head/net/vtun/files/vtunclient.in (props changed) head/net/vtun/files/vtund.in (props changed) head/net/wired-tracker/files/trackerd.in (props changed) head/net/wired/files/wired.in (props changed) head/net/wowzamediaserverpro/files/wowza.in (props changed) head/net/xboxproxy/files/xboxproxy.in (props changed) head/net/xorp-devel/files/xorp.in (props changed) head/net/xorp/files/xorp.in (props changed) head/net/yate/files/yate.in (props changed) head/net/zebra/files/zebractl.in (props changed) head/news/cnews/files/sendmail.patch (props changed) head/news/diablo/scripts/diablo.sh-sample (props changed) head/news/dnews/files/dnews.sh (props changed) head/news/dnews/files/faq.html (props changed) head/news/gup/files/freebsd (props changed) head/news/inn/files/innd.in (props changed) head/news/knews/scripts/pre-configure (props changed) head/news/newscache/files/newscache.in (props changed) head/news/nntpbtr/files/dbz/dbz.3z (props changed) head/news/nntpbtr/files/dbz/dbz.c (props changed) head/news/nntpbtr/files/dbz/dbz.h (props changed) head/news/nntpcache/files/nntpcached.in (props changed) head/news/papercut/files/papercut-wrapper (props changed) head/news/plor/files/plor.1 (props changed) head/news/slnr/files/porting.notes (props changed) head/news/trn/scripts/pre-configure (props changed) head/news/trn4/scripts/preconf (props changed) head/news/xpn/files/xpn.in (props changed) head/palm/iSiloXC/files/iSiloXC.1 (props changed) head/palm/iSiloXC/files/ixl.5 (props changed) head/palm/jpilot-db/files/jpilot-db.sh.in (props changed) head/ports-mgmt/bpkg/files/bpkg.8 (props changed) head/ports-mgmt/bpkg/files/bpkg.sh.in (props changed) head/ports-mgmt/bpm/files/bpm.desktop.in (props changed) head/ports-mgmt/fbsdmon/files/600.fbsdmon.in (props changed) head/ports-mgmt/fbsdmon/files/fbsdmon.in (props changed) head/ports-mgmt/lsknobs/files/lsknobs.sh.in (props changed) head/ports-mgmt/pkg_jail/files/README (props changed) head/ports-mgmt/portaudit-db/database/portaudit.txt (props changed) head/ports-mgmt/portaudit-db/database/portaudit.xlist (props changed) head/ports-mgmt/portaudit-db/database/portaudit.xml (props changed) head/ports-mgmt/portaudit-db/database/portaudit2vuxml.pl (props changed) head/ports-mgmt/portaudit-db/files/packaudit.conf (props changed) head/ports-mgmt/portaudit-db/files/packaudit.sh (props changed) head/ports-mgmt/portaudit-db/files/portaudit2vuxml.awk (props changed) head/ports-mgmt/portaudit-db/files/vuxml2html.xslt (props changed) head/ports-mgmt/portaudit-db/files/vuxml2portaudit.xslt (props changed) head/ports-mgmt/portaudit/files/portaudit-cmd.sh (props changed) head/ports-mgmt/portaudit/files/portaudit.1 (props changed) head/ports-mgmt/portaudit/files/portaudit.conf (props changed) head/ports-mgmt/portaudit/files/portaudit.pubkey (props changed) head/ports-mgmt/portaudit/files/portaudit.sh (props changed) head/ports-mgmt/portdowngrade/files/portdowngrade (props changed) head/ports-mgmt/porteasy/src/porteasy.8 (props changed) head/ports-mgmt/porteasy/src/porteasy.pl (props changed) head/ports-mgmt/portless/files/portless.1 (props changed) head/ports-mgmt/portless/files/portless.sh (props changed) head/ports-mgmt/portlint/src/portlint.1 (props changed) head/ports-mgmt/portlint/src/portlint.pl (props changed) head/ports-mgmt/portlint/src/portlintgrep.pl (props changed) head/ports-mgmt/portupdate-scan/src/portupdate-scan (props changed) head/ports-mgmt/portupdate-scan/src/portupdate-scan.8 (props changed) head/ports-mgmt/tinderbox-devel/files/extra-parallel.patch (props changed) head/ports-mgmt/tinderbox-devel/files/extra-tmpfs.patch (props changed) head/ports-mgmt/tinderbox-devel/files/extra-tmpfs_para.patch (props changed) head/ports-mgmt/wanted-ports/files/wanted-ports.1.in (props changed) head/ports-mgmt/wanted-ports/files/wanted-ports.in (props changed) head/ports-mgmt/wanted-ports/files/wanted-ports.pod (props changed) head/portuguese/irpf-pt_BR/files/wrapper.sh (props changed) head/print/acrobatviewer/files/AcrobatViewer.in (props changed) head/print/acroread8/files/ln.in (props changed) head/print/acroread8/files/mv.in (props changed) head/print/acroread8/files/rm.in (props changed) head/print/acroread9/files/ln.in (props changed) head/print/acroread9/files/mv.in (props changed) head/print/acroread9/files/rm.in (props changed) head/print/acroreadwrapper/files/acroread.in (props changed) head/print/acroreadwrapper/files/linux_adobe.in (props changed) head/print/cups-base/files/cupsd.in (props changed) head/print/cups-base/files/ulpt-cupsd.conf.in (props changed) head/print/cups-base/files/ulpt-cupsd.sh.in (props changed) head/print/cups-pstoraster/files/cups.contrib.mak (props changed) head/print/dvips/scripts/configure (props changed) head/print/dviselect/scripts/configure (props changed) head/print/epsonepl/files/epsonepl.apsfilter (props changed) head/print/epsonepl/files/epsonepl.conf.sample (props changed) head/print/ghostscript7-commfont/files/template.cidfont.in (props changed) head/print/ghostscript7-commfont/files/template.font.in (props changed) head/print/ghostscript7-commfont/files/template.ttcidfont.in (props changed) head/print/ghostscript7/files/bjc250.contrib.mak (props changed) head/print/ghostscript7/files/cdj850.contrib.mak (props changed) head/print/ghostscript7/files/epag.contrib.mak (props changed) head/print/ghostscript7/files/lex7000.contrib.mak (props changed) head/print/ghostscript7/files/lqx70ch.upp (props changed) head/print/ghostscript7/files/lqx70cl.upp (props changed) head/print/ghostscript7/files/lqx70cm.upp (props changed) head/print/ghostscript7/files/lx5000.contrib.mak (props changed) head/print/ghostscript7/files/lxm3200.contrib.mak (props changed) head/print/ghostscript7/files/stc740ih.upp (props changed) head/print/ghostscript7/files/stc740p.upp (props changed) head/print/ghostscript7/files/stc740pl.upp (props changed) head/print/ghostscript7/files/stp.contrib.mak (props changed) head/print/ghostscript8/files/epag.contrib.mak (props changed) head/print/ghostscript8/files/lqx70ch.upp (props changed) head/print/ghostscript8/files/lqx70cl.upp (props changed) head/print/ghostscript8/files/lqx70cm.upp (props changed) head/print/ghostscript9-agpl/files/epag.contrib.mak (props changed) head/print/ghostscript9-agpl/files/lqx70ch.upp (props changed) head/print/ghostscript9-agpl/files/lqx70cl.upp (props changed) head/print/ghostscript9-agpl/files/lqx70cm.upp (props changed) head/print/ghostscript9/files/epag.contrib.mak (props changed) head/print/ghostscript9/files/lqx70ch.upp (props changed) head/print/ghostscript9/files/lqx70cl.upp (props changed) head/print/ghostscript9/files/lqx70cm.upp (props changed) head/print/gnome-cups-manager/files/gnome-cups-manager.desktop (props changed) head/print/gsfonts/files/Fontmap (props changed) head/print/gsfonts/files/fonts.scale (props changed) head/print/hpijs/files/ifhp (props changed) head/print/hpijs/files/printcap.sample (props changed) head/print/html2ps/files/html2psrc.in (props changed) head/print/jabref/files/JabRef-icon-48.png (props changed) head/print/jabref/files/jabref.sh.in (props changed) head/print/latex-cjk/scripts/fddiff.sh (props changed) head/print/latex-cjk/scripts/installt1enc.sh (props changed) head/print/latex-cjk/scripts/installtfm.sh (props changed) head/print/latex-cjk/scripts/pre-build (props changed) head/print/lyx/files/lyx.desktop (props changed) head/print/makeindex/scripts/configure (props changed) head/print/musixtex/scripts/configure (props changed) head/print/pnm2ppa/files/asciippafilter.SH (props changed) head/print/pnm2ppa/files/ppafilter.SH (props changed) head/print/teTeX-base/files/texdoctk.wrapper.in (props changed) head/print/teTeX-base/files/updmap.wrapper.in (props changed) head/print/teTeX-texmf/files/cslatex.ini (props changed) head/print/teTeX-texmf/files/csplain.ini (props changed) head/print/teTeX-texmf/files/t1code.tex (props changed) head/print/tex-dvipdfmx/files/m4-cho-libs.m4 (props changed) head/print/tex-dvipsk/files/m4-cho-libs.m4 (props changed) head/print/tex-texmflocal/files/dirlist (props changed) head/print/tex-texmflocal/files/tetex-modesw.in (props changed) head/print/xdvi/scripts/configure (props changed) head/print/xmltex/files/texmf.cnf (props changed) head/print/yatex/files/yatex-startup.el.in (props changed) head/russian/ircd-hybrid/files/ircd-hybrid-ru.sh.sample (props changed) head/russian/koi2koi/src/algoreco.h (props changed) head/russian/koi2koi/src/koi2koi.1 (props changed) head/russian/koi2koi/src/koi2koi.c (props changed) head/russian/mueller-dic/files/mueller.in (props changed) head/russian/muttprint/files/translation-ru.pl (props changed) head/russian/napster/files/extra-win2koi (props changed) head/russian/rus-ispell/files/ispell-ru.sh (props changed) head/russian/tac+ia/files/tac_plus.sh (props changed) head/science/abinit/files/makefile_macros (props changed) head/science/afni/files/afni.cshrc.in (props changed) head/science/afni/files/afni.profile.in (props changed) head/science/devisor/files/devisorgrid.sh.in (props changed) head/science/dlpoly-classic/files/dlpoly-gui.in (props changed) head/science/dtiquery/files/dtiquery.1 (props changed) head/science/gamess/files/install.info (props changed) head/science/mol2ps/files/color.conf (props changed) head/science/mpqc/files/manpages (props changed) head/science/nifticlib/files/nifticlib.1 (props changed) head/science/py-ws2300/files/ws2300 (props changed) head/security/aide/files/aide.conf.freebsd (props changed) head/security/amavis-stats/files/DEINSTALL.in (props changed) head/security/amavis-stats/files/INSTALL.in (props changed) head/security/amavisd-milter/files/amavisd-milter.in (props changed) head/security/amavisd-new/files/amavis-milter.in (props changed) head/security/amavisd-new/files/amavis-p0fanalyzer.in (props changed) head/security/amavisd-new/files/amavisd-snmp.in (props changed) head/security/amavisd-new/files/amavisd.in (props changed) head/security/arpCounterattack/files/arpCounterattack.in (props changed) head/security/bdc/files/bdc (props changed) head/security/blindelephant/files/blindelephant.sh.in (props changed) head/security/bruteblock/files/bruteblockd.in (props changed) head/security/burpsuite/files/burpsuite.sh (props changed) head/security/cfs/files/cfsd.in (props changed) head/security/clamav-devel/files/clamav-clamd.in (props changed) head/security/clamav-devel/files/clamav-freshclam.in (props changed) head/security/clamav-devel/files/clamav-milter.in (props changed) head/security/clamav/files/clamav-clamd.in (props changed) head/security/clamav/files/clamav-freshclam.in (props changed) head/security/clamav/files/clamav-milter.in (props changed) head/security/clamsmtp/files/clamsmtpd.in (props changed) head/security/courier-authlib/files/courier-authdaemond.in (props changed) head/security/crack/files/pw-md5.test (props changed) head/security/crack/files/pw.freebsd (props changed) head/security/cracklib/files/cracklib.3 (props changed) head/security/cyrus-sasl2-saslauthd/files/saslauthd.in (props changed) head/security/cyrus-sasl2/files/Sendmail.README (props changed) head/security/denyhosts/files/denyhosts.in (props changed) head/security/dirbuster/files/dirbuster.sh (props changed) head/security/distcache-devel/files/dc_server.in (props changed) head/security/distcache/files/dc_server.in (props changed) head/security/doorman/files/doorman.in (props changed) head/security/doorman/files/doormand.cf.EXAMPLE.in (props changed) head/security/doorman/files/ipf_add.atend (props changed) head/security/doorman/files/ipf_add.before_block (props changed) head/security/doorman/files/ipf_delete (props changed) head/security/doscan/files/freebsd4.diff (props changed) head/security/dradis/files/dradis.in (props changed) head/security/dropbear/files/dropbear.in (props changed) head/security/expiretable/files/expiretable.in (props changed) head/security/f-prot/files/900.fpupdate.in (props changed) head/security/f-prot/files/fpscan.in (props changed) head/security/f-prot/files/fpupdate.in (props changed) head/security/fakeident/files/fakeident.sh (props changed) head/security/fbopenssl/files/BSDMakefile (props changed) head/security/fwknop/files/fwknopd.in (props changed) head/security/fwlogwatch/files/fwlogwatch.sh.sample (props changed) head/security/gorilla/files/gorilla.in (props changed) head/security/hamachi/files/hamachi.in (props changed) head/security/heimdal/files/kdc.sh (props changed) head/security/heimdal/files/kpasswdd-cracklib.c.in (props changed) head/security/hotssh/files/waf.diff (props changed) head/security/ike/files/iked.in (props changed) head/security/ipguard/files/ipguard.in (props changed) head/security/ipsec-tools/files/patch8-utmp.diff (props changed) head/security/ipsec-tools/files/racoon.in (props changed) head/security/ipv6toolkit/files/BSDMakefile.in (props changed) head/security/isakmpd/files/isakmpd.in (props changed) head/security/jbrofuzz/files/jbrofuzz.sh.in (props changed) head/security/knock/files/knockd.in (props changed) head/security/krb5-appl/files/README.FreeBSD (props changed) head/security/krb5-maint/files/README.FreeBSD (props changed) head/security/krb5/files/README.FreeBSD (props changed) head/security/libgnomesu/files/gnomesu-pam.sample (props changed) head/security/maia/files/maiad.in (props changed) head/security/munge/files/munged.in (props changed) head/security/nbaudit/files/nbaudition.pl (props changed) head/security/nessus-libraries/files/README.BPF (props changed) head/security/nessus/files/nessusd.in (props changed) head/security/nessus/files/nessusd.rules (props changed) head/security/oidentd/files/oidentd.conf.sample (props changed) head/security/oidentd/files/oidentd.in (props changed) head/security/oidentd/files/oidentd_masq.conf.sample (props changed) head/security/opencryptoki/files/pkcsslotd.in (props changed) head/security/openct/files/etoken.conf.in (props changed) head/security/openct/files/openct.in (props changed) head/security/openssh-portable/files/openssh.in (props changed) head/security/openvas-server/files/openvasd.in (props changed) head/security/openvpn-beta/files/openvpn.in (props changed) head/security/openvpn-devel/files/openvpn.in (props changed) head/security/openvpn/files/openvpn.in (props changed) head/security/ossec-hids-server/files/ossec-hids.in (props changed) head/security/p5-openxpki-deployment/files/openxpki.in (props changed) head/security/pam_abl/files/190.clean-pam-abl.in (props changed) head/security/pam_abl/files/pam_abl.8.in (props changed) head/security/pam_kde/files/kde (props changed) head/security/pam_kde/files/kde-np (props changed) head/security/pam_pwdfile/files/_pam_macros.h (props changed) head/security/pam_smb/files/pam_smbd.sh.sample (props changed) head/security/pgpin/files/CHANGES (props changed) head/security/pidentd/files/idecrypt.8 (props changed) head/security/pks/files/pksd.in (props changed) head/security/portsentry/files/portsentry.sh.in (props changed) head/security/prelude-lml/files/prelude-lml.in (props changed) head/security/prelude-manager/files/prelude-manager.in (props changed) head/security/prelude-pflogger/files/prelude-pflogger.in (props changed) head/security/putty/files/mbrtowc.c (props changed) head/security/putty/files/wcrtomb.c (props changed) head/security/py-fail2ban/files/fail2ban.in (props changed) head/security/py-pysha3/files/py3k-fix-pkg-plist.inc (props changed) head/security/quantis/files/quantis.conf (props changed) head/security/razorback-dispatcher/files/dispatcher.in (props changed) head/security/razorback-dispatcher/files/dispatcher_safed.in (props changed) head/security/razorback-masterNugget/files/masterNugget.in (props changed) head/security/razorback-masterNugget/files/masterNugget_safed.in (props changed) head/security/rkhunter/files/415.rkhunter.in (props changed) head/security/safesh/src/cvs-safesh.sh (props changed) head/security/safesh/src/safesh.1 (props changed) head/security/safesh/src/safesh.sh (props changed) head/security/saint/files/excludefiles (props changed) head/security/samhain/files/fixsamhainrc.patch (props changed) head/security/samhain/files/fixyulerc.patch (props changed) head/security/sancp/files/sancp.in (props changed) head/security/scamp/files/default.sample (props changed) head/security/scanlogd/files/scanlogd.in (props changed) head/security/scannedonly/files/scannedonly.in (props changed) head/security/sguil-sensor/files/example_agent.in (props changed) head/security/shibboleth2-sp/files/shibboleth-sp.in (props changed) head/security/snort/files/snort.in (props changed) head/security/snortsam/files/snortsam.in (props changed) head/security/snortsam/files/ssp_ipfw2_no_table_check.patch (props changed) head/security/spike-proxy/scripts/spkproxy.sh (props changed) head/security/spybye/files/spybye.in (props changed) head/security/sqlmap/files/sqlmap.sh.in (props changed) head/security/ssh-copy-id/files/ssh-copy-id (props changed) head/security/ssh-copy-id/files/ssh-copy-id.1 (props changed) head/security/sshblock/files/sshblock.in (props changed) head/security/sssd/files/bsdnss.c (props changed) head/security/sssd/files/pam_macros.h (props changed) head/security/sssd/files/sss_bsd_errno.h (props changed) head/security/sssd/files/sssd.in (props changed) head/security/strongswan/files/strongswan.in (props changed) head/security/stunnel/files/stunnel.in (props changed) head/security/sudo/files/pam.conf (props changed) head/security/super/files/sample.cdmount (props changed) head/security/super/files/sample.tab (props changed) head/security/suricata/files/suricata.in (props changed) head/security/swatch/files/swatch.in (props changed) head/security/termlog/files/termlog.in (props changed) head/security/tinc/files/tincd.in (props changed) head/security/tripwire-131/files/conf-freebsd2.h (props changed) head/security/tripwire-131/files/tw.conf.freebsd2 (props changed) head/security/tripwire-131/files/twcheck (props changed) head/security/tripwire/files/twpol.m4 (props changed) head/security/tripwire12/files/conf-freebsd2.h (props changed) head/security/tripwire12/files/tw.conf.freebsd2 (props changed) head/security/tripwire12/files/twcheck (props changed) head/security/trousers/files/tcsd.in (props changed) head/security/vpnc/files/vpnc.in (props changed) head/security/vuxml/files/newentry.sh (props changed) head/security/vuxml/files/tidy.sh (props changed) head/security/vuxml/files/validate.sh (props changed) head/security/w3af/files/w3af_console.sh (props changed) head/security/w3af/files/w3af_gui.sh (props changed) head/security/webscarab/files/webscarab.sh (props changed) head/security/xinetd/files/xinetd.in (props changed) head/security/yafic/files/yafic.conf.sample (props changed) head/shells/bash/files/xpatch-colonbreakswords (props changed) head/shells/bash/files/xpatch-implicitcd (props changed) head/shells/ch/files/ch.in (props changed) head/shells/nologinmsg/files/nologinmsg.8 (props changed) head/shells/nologinmsg/files/nologinmsg.c (props changed) head/shells/nologinmsg/files/pathnames.h (props changed) head/shells/scponly/files/scponlyc.in (props changed) head/shells/v7sh/files/pathnames.h (props changed) head/shells/v7sh/files/test.c (props changed) head/shells/wapsh/files/htshd.in (props changed) head/sysutils/3dm/files/3dm2.conf.sample (props changed) head/sysutils/3dm/files/3dm2.in (props changed) head/sysutils/44bsd-more/files/queue.h (props changed) head/sysutils/915resolution/files/915resolution.in (props changed) head/sysutils/LPRng/files/lprng.in (props changed) head/sysutils/afbinit/files/afbinit.in (props changed) head/sysutils/afio/files/afiodump.example (props changed) head/sysutils/aird/files/aird.in (props changed) head/sysutils/amrstat/files/407.status-amr-raid.in (props changed) head/sysutils/anacron/files/anacron.in (props changed) head/sysutils/anacron/files/anacrontab.default (props changed) head/sysutils/apcupsd/files/apcupsd.conf.net-slave.sample (props changed) head/sysutils/apcupsd/files/apcupsd.in (props changed) head/sysutils/apt/files/https.cc (props changed) head/sysutils/apt/files/https.h (props changed) head/sysutils/arcconf/files/410.status-aac-raid.in (props changed) head/sysutils/areca-cli/files/407.status-areca-raid.in (props changed) head/sysutils/asr-utils/files/dptmgr.sh.in (props changed) head/sysutils/asusoled/files/asusoled.in (props changed) head/sysutils/asusoled/files/oled_clock.in (props changed) head/sysutils/ataidle/files/ataidle.in (props changed) head/sysutils/atop/files/atop.in (props changed) head/sysutils/backuppc/files/backuppc.in (props changed) head/sysutils/bacula-server/files/bacula-barcodes (props changed) head/sysutils/bacula-server/files/chio-bacula (props changed) head/sysutils/be_agent/files/be-agent.in (props changed) head/sysutils/be_agent/files/config_example (props changed) head/sysutils/blimitd/files/blimitd.sh (props changed) head/sysutils/boxbackup-devel/files/999.boxbackup.in (props changed) head/sysutils/boxbackup-devel/files/bbackupd.in (props changed) head/sysutils/boxbackup-devel/files/bbstored.in (props changed) head/sysutils/boxbackup/files/999.boxbackup.in (props changed) head/sysutils/boxbackup/files/bbackupd.in (props changed) head/sysutils/boxbackup/files/bbstored.in (props changed) head/sysutils/bsd-splash-changer/files/change_splash.in (props changed) head/sysutils/bsdstats/files/bsdstats.in (props changed) head/sysutils/cfengine-devel/files/cf-execd.in (props changed) head/sysutils/cfengine-devel/files/cf-serverd.in (props changed) head/sysutils/cfengine22/files/cfexecd.in (props changed) head/sysutils/cfengine22/files/cfservd.in (props changed) head/sysutils/cfengine32/files/cf-execd.in (props changed) head/sysutils/cfengine32/files/cf-serverd.in (props changed) head/sysutils/cfengine33/files/cf-execd.in (props changed) head/sysutils/cfengine33/files/cf-serverd.in (props changed) head/sysutils/cfengine34/files/cf-execd.in (props changed) head/sysutils/cfengine34/files/cf-serverd.in (props changed) head/sysutils/cfengine35/files/cf-execd.in (props changed) head/sysutils/cfengine35/files/cf-monitord.in (props changed) head/sysutils/cfengine35/files/cf-serverd.in (props changed) head/sysutils/ckl/files/cloudkick.conf.example (props changed) head/sysutils/clockspeed-conf/files/create_ids.sh (props changed) head/sysutils/clockspeed/files/clockspeed.sh.sample (props changed) head/sysutils/clockspeed/files/tryclock_gettime.c (props changed) head/sysutils/condor/files/condor.in (props changed) head/sysutils/condor/files/condor_config.in (props changed) head/sysutils/condor/files/condor_config.local.in (props changed) head/sysutils/consolekit/files/ck-get-x11-display-device (props changed) head/sysutils/consolekit/files/ck-get-x11-server-pid (props changed) head/sysutils/cpupowerd/files/cpupowerd.in (props changed) head/sysutils/dae/files/dae.1 (props changed) head/sysutils/dae/files/dae.sh (props changed) head/sysutils/daedalus/files/daedalus.sh (props changed) head/sysutils/daemontools/files/rts-skip.patch (props changed) head/sysutils/daemontools/files/svscan.in (props changed) head/sysutils/devcpu-data/files/microcode_update.in (props changed) head/sysutils/dirvish/files/default.conf.dist (props changed) head/sysutils/dirvish/files/header.pl (props changed) head/sysutils/dirvish/files/master.conf.dist (props changed) head/sysutils/diskcheckd/files/diskcheckd.8 (props changed) head/sysutils/diskcheckd/files/diskcheckd.c (props changed) head/sysutils/diskcheckd/files/diskcheckd.conf (props changed) head/sysutils/diskcheckd/files/diskcheckd.in (props changed) head/sysutils/doinkd/files/doinkd.in (props changed) head/sysutils/dolly/files/extra-bzip2-patch-dolly.c (props changed) head/sysutils/downtimed/files/downtimed.in (props changed) head/sysutils/dtc/files/dtc-deinstall.in (props changed) head/sysutils/dtc/files/dtc-install.in (props changed) head/sysutils/e2fsprogs/files/fsck_ext2fs.8 (props changed) head/sysutils/e2fsprogs/files/fsck_ext2fs.c (props changed) head/sysutils/env4801/files/env4801.sh (props changed) head/sysutils/etcmerge/src/etcmerge.8 (props changed) head/sysutils/etcmerge/src/etcmerge.sh (props changed) head/sysutils/etcupdate/src/etcupdate.8 (props changed) head/sysutils/etcupdate/src/etcupdate.sh (props changed) head/sysutils/fcron/files/fcron.in (props changed) head/sysutils/fcron/files/fcrontab-operator (props changed) head/sysutils/fcron/files/fcrontab-root (props changed) head/sysutils/filewatcherd/files/watchtab.sample (props changed) head/sysutils/firstboot-freebsd-update/files/firstboot_freebsd_update.in (props changed) head/sysutils/flyback/files/flyback.sh.in (props changed) head/sysutils/freqsdwn/files/000.freqshpk.in (props changed) head/sysutils/freqsdwn/files/UPSFILE (props changed) head/sysutils/freqsdwn/files/freqshpd.in (props changed) head/sysutils/fusefs-kmod/files/fusefs.in (props changed) head/sysutils/fusefs-kmod/files/setup.sh.in (props changed) head/sysutils/fusefs-ntfs/files/README.FreeBSD (props changed) head/sysutils/fvcool/files/fvcool.in (props changed) head/sysutils/gaffitter/files/gaffitter.1 (props changed) head/sysutils/ganglia-monitor-core/files/gmetad.in (props changed) head/sysutils/ganglia-monitor-core/files/gmetasnap.sh (props changed) head/sysutils/geomWatch/files/geomWatch.in (props changed) head/sysutils/gkrellm2/files/gkrellmd.in (props changed) head/sysutils/gnome_subr/files/gnome.subr (props changed) head/sysutils/hal/files/10-mouse-sysmouse.fdi (props changed) head/sysutils/hal/files/README.fuse (props changed) head/sysutils/hal/files/mount-fuse (props changed) head/sysutils/healthd/files/healthd.in (props changed) head/sysutils/heartbeat/files/heartbeat.in (props changed) head/sysutils/heirloom/files/extra-utmpx (props changed) head/sysutils/ipa/files/ipa.in (props changed) head/sysutils/ipad_charge/files/ipad_charge.conf.in (props changed) head/sysutils/ipad_charge/files/ipad_charge.in (props changed) head/sysutils/ipsc/files/ipsc.8 (props changed) head/sysutils/istatd/files/istatd.in (props changed) head/sysutils/jail2/files/jail2.in (props changed) head/sysutils/jailrc/files/README (props changed) head/sysutils/jailrc/files/jailrc.in (props changed) head/sysutils/jdiskreport/files/jdiskreport.sh (props changed) head/sysutils/jfbterm/files/BSDmakefile (props changed) head/sysutils/jvmtop/files/jvmtop.sh.in (props changed) head/sysutils/lcdproc/files/LCDd.in (props changed) head/sysutils/lcdproc/files/lcdexec.in (props changed) head/sysutils/lcdproc/files/lcdproc.in (props changed) head/sysutils/libieee1284/files/man3 (props changed) head/sysutils/linuxfdisk/files/linuxfdisk-Makefile (props changed) head/sysutils/linuxfdisk/files/linuxfdisk-sys_bsd.c (props changed) head/sysutils/logrotate/files/logrotate.conf.sample (props changed) head/sysutils/logrotate/files/syslog.sample (props changed) head/sysutils/logstash/files/elasticsearch.yml.sample (props changed) head/sysutils/lookupd/files/lookupd.in (props changed) head/sysutils/mbmon/files/mbmon.in (props changed) head/sysutils/mcelog/files/memstream.c (props changed) head/sysutils/metalog/files/metalog.in (props changed) head/sysutils/mfid/files/mfid.in (props changed) head/sysutils/mgeupsd/files/mgeupsd.sh (props changed) head/sysutils/mgeupsd/files/powerhandler (props changed) head/sysutils/mixer/files/mixer.sh (props changed) head/sysutils/monit/files/monit.in (props changed) head/sysutils/monitord/files/monitord.in (props changed) head/sysutils/monitorix/files/monitorix.in (props changed) head/sysutils/moosefs-chunkserver/files/mfschunkserver.in (props changed) head/sysutils/moosefs-master/files/mfscgiserv.in (props changed) head/sysutils/moosefs-master/files/mfsmaster.in (props changed) head/sysutils/moosefs-master/files/mfsmetalogger.in (props changed) head/sysutils/moreutils-parallel/files/parallel.1 (props changed) head/sysutils/moreutils/files/ifne.1 (props changed) head/sysutils/moreutils/files/isutf8.1 (props changed) head/sysutils/moreutils/files/mispipe.1 (props changed) head/sysutils/moreutils/files/pee.1 (props changed) head/sysutils/mptd/files/mptd.in (props changed) head/sysutils/msyslog/files/msyslogd.in (props changed) head/sysutils/msyslog/files/utmpx-src-modules-om_classic.c (props changed) head/sysutils/munin-node/files/plugins.conf (props changed) head/sysutils/nagios-statd/files/nagiosstatd.in (props changed) head/sysutils/ntfsprogs/files/README.FreeBSD (props changed) head/sysutils/nut/files/nut.in (props changed) head/sysutils/nut/files/nut_upslog.in (props changed) head/sysutils/nut/files/nut_upsmon.in (props changed) head/sysutils/nut22/files/nut.in (props changed) head/sysutils/nut22/files/nut_upslog.in (props changed) head/sysutils/nut22/files/nut_upsmon.in (props changed) head/sysutils/oak/files/oak.in (props changed) head/sysutils/openupsd/files/openupsd.in (props changed) head/sysutils/p5-MogileFS-Server/files/mogilefsd.in (props changed) head/sysutils/p5-MogileFS-Server/files/mogstored.in (props changed) head/sysutils/p5-Tail-Stat/files/tstatd.in (props changed) head/sysutils/pc-sysinstall/files/pc-sysinstall.mtree (props changed) head/sysutils/pcfclock/files/pcfdate.in (props changed) head/sysutils/personality/src/personality (props changed) head/sysutils/personality/src/personality.8 (props changed) head/sysutils/pfstat/files/pfstatd.in (props changed) head/sysutils/pfstat/files/pre41-patch-pf.c (props changed) head/sysutils/pftop/files/queue.h (props changed) head/sysutils/powerman/files/powerman.in (props changed) head/sysutils/pprotectd/files/pprotectd.in (props changed) head/sysutils/procmap/files/procmap.8 (props changed) head/sysutils/procmap/files/procmap.c (props changed) head/sysutils/puppet27/files/optpatch-package_root (props changed) head/sysutils/puppet27/files/puppet.in (props changed) head/sysutils/puppet27/files/puppetmaster.in (props changed) head/sysutils/py-bcfg2/files/bcfg2.in (props changed) head/sysutils/py-supervisor/files/supervisord.conf.sample (props changed) head/sysutils/py-supervisor/files/supervisord.in (props changed) head/sysutils/py-zfs/files/compile.py.in (props changed) head/sysutils/radmind/files/config.sample (props changed) head/sysutils/radmind/files/optpatch-ignore_timestamps (props changed) head/sysutils/radmind/files/radmind.in (props changed) head/sysutils/readlink/files/tarignore (props changed) head/sysutils/rsyncmanager/files/rsyncmanager.in (props changed) head/sysutils/rsyslog7-devel/files/rsyslogd.in (props changed) head/sysutils/rsyslog7/files/rsyslogd.in (props changed) head/sysutils/rsyslog8-devel/files/rsyslogd.in (props changed) head/sysutils/rubygem-chef/files/chef_client.in (props changed) head/sysutils/rubygem-fluentd/files/fluentd.in (props changed) head/sysutils/runit/files/runsvdir.in (props changed) head/sysutils/samesame/files/samesame.sh (props changed) head/sysutils/screen/files/opt-cjkwidth (props changed) head/sysutils/screen/files/opt-hostinlocked (props changed) head/sysutils/screen/files/opt-showencoding (props changed) head/sysutils/sensors-applet/files/mbmon-sensors-interface.c (props changed) head/sysutils/sensors-applet/files/mbmon-sensors-interface.h (props changed) head/sysutils/sensors-applet/files/smartctl-helper.c (props changed) head/sysutils/sensors-applet/files/smartctl-sensors-interface.c (props changed) head/sysutils/sensors-applet/files/smartctl-sensors-interface.h (props changed) head/sysutils/setcdboot/files/setcdboot.c (props changed) head/sysutils/slurm-hpc/files/slurm.conf.in (props changed) head/sysutils/slurm-hpc/files/slurmctld.in (props changed) head/sysutils/slurm-hpc/files/slurmd.in (props changed) head/sysutils/smartmontools/files/smartd.in (props changed) head/sysutils/spiped/files/spiped.in (props changed) head/sysutils/swapd/files/swapd.in (props changed) head/sysutils/swapd/files/swapd_swapoff (props changed) head/sysutils/swapd/files/swapd_swapon (props changed) head/sysutils/swapmon/files/swapmon.1 (props changed) head/sysutils/swapmon/files/swapmon.in (props changed) head/sysutils/swapmon/files/swapmon.sh.in (props changed) head/sysutils/symon/files/symon.in (props changed) head/sysutils/symon/files/symux.in (props changed) head/sysutils/syslog-ng-devel/files/syslog-ng.conf.sample (props changed) head/sysutils/syslog-ng-devel/files/syslog-ng.in (props changed) head/sysutils/syslog-ng/files/syslog-ng.conf.sample (props changed) head/sysutils/syslog-ng/files/syslog-ng.in (props changed) head/sysutils/syslog-ng2/files/syslog-ng.conf.sample (props changed) head/sysutils/syslog-ng2/files/syslog-ng.in (props changed) head/sysutils/syslog-ng33/files/syslog-ng.conf.sample (props changed) head/sysutils/syslog-ng33/files/syslog-ng.in (props changed) head/sysutils/tenshi/files/tenshi.in (props changed) head/sysutils/tw_cli/files/407.status-3ware-raid.in (props changed) head/sysutils/upsd/files/upsd.conf (props changed) head/sysutils/upsd/files/upsd.sh (props changed) head/sysutils/upsdaemon/files/upsdaemon.in (props changed) head/sysutils/uptimed/files/uptimed.in (props changed) head/sysutils/userlist/files/userlist (props changed) head/sysutils/usermin/files/usermin.in (props changed) head/sysutils/volman/files/volmand.in (props changed) head/sysutils/watchfolder/files/watchd.in (props changed) head/sysutils/webmin/files/webmin.in (props changed) head/sysutils/whowatch/files/utmpx-whowatch.c (props changed) head/sysutils/whowatch/files/utmpx-whowatch.h (props changed) head/sysutils/wmbluecpu/files/cpu_freebsd.c (props changed) head/sysutils/wmbluecpu/files/cpu_freebsd.h (props changed) head/sysutils/wmmemfree/files/mem_freebsd.c (props changed) head/sysutils/wmmemfree/files/mem_freebsd.h (props changed) head/sysutils/xe-guest-utilities/files/xenguest.in (props changed) head/sysutils/xlogmaster/files/xlogmasterrc (props changed) head/sysutils/xsi/files/xsi.in (props changed) head/textproc/amberfish/files/porter.cc (props changed) head/textproc/aspell/files/aspell.ver.in (props changed) head/textproc/coco/files/unexfreebsd.c (props changed) head/textproc/dict/files/dict.conf (props changed) head/textproc/docbook-241/files/catalog (props changed) head/textproc/docbook-300/files/catalog (props changed) head/textproc/docbook-310/files/catalog (props changed) head/textproc/docbook-400/files/catalog (props changed) head/textproc/docbook-410/files/catalog (props changed) head/textproc/docbook-420/files/catalog.in (props changed) head/textproc/docbook-tdg/files/index.html (props changed) head/textproc/extract_url/files/extract_urlview (props changed) head/textproc/fixrtf/src/fixrtf.l (props changed) head/textproc/groff/files/mdoc.local (props changed) head/textproc/intltool/files/OrigTree.pm (props changed) head/textproc/iso12083/files/catalog (props changed) head/textproc/iso8879/files/catalog (props changed) head/textproc/ispell/files/AF.patch (props changed) head/textproc/ispell/files/BR.patch (props changed) head/textproc/ispell/files/DA.patch (props changed) head/textproc/ispell/files/DENEU.makefile (props changed) head/textproc/ispell/files/DENEU.patch (props changed) head/textproc/ispell/files/ES.patch (props changed) head/textproc/ispell/files/FR.patch (props changed) head/textproc/ispell/files/IT.patch (props changed) head/textproc/ispell/files/NL.patch (props changed) head/textproc/ispell/files/NO.patch (props changed) head/textproc/ispell/files/SE.patch (props changed) head/textproc/ispell/files/unsq.pl (props changed) head/textproc/ispell/scripts/configure (props changed) head/textproc/jalingo/files/jalingo.in (props changed) head/textproc/jaxup/files/build.xml (props changed) head/textproc/jaxup/files/jaxup-xupdater.sh (props changed) head/textproc/jdictionary/files/jdictionary.sh.in (props changed) head/textproc/jing/files/jing.sh.in (props changed) head/textproc/kmfl-european-latin/files/latin.png.base64.txt (props changed) head/textproc/latex2html/files/latex2html.1 (props changed) head/textproc/mkcatalog/scripts/configure (props changed) head/textproc/mkcatalog/src/mkcatalog.in (props changed) head/textproc/nux/files/fire-xquery.sh.in (props changed) head/textproc/p5-SGMLSpm/files/noportexamples-patch-Makefile (props changed) head/textproc/p5-Text-Reflow/files/5.8-Reflow.pm (props changed) head/textproc/p5-XML-Parser/files/check_nfs.pl (props changed) head/textproc/p5-xmltv/files/extra-noportdocs-patch-Makefile.PL (props changed) head/textproc/pootle/files/pootle.in (props changed) head/textproc/ppower4/files/ppower4.sh.in (props changed) head/textproc/py-tvgrab/files/timezone.py (props changed) head/textproc/s5/files/s5.1 (props changed) head/textproc/s5/files/s5.sh (props changed) head/textproc/saxon-devel/files/saxon.sh.in (props changed) head/textproc/saxon-he/files/saxon.sh.in (props changed) head/textproc/saxon/files/saxon.sh.in (props changed) head/textproc/sdocbook-xml/files/catalog (props changed) head/textproc/sdocbook-xml/files/catalog.xml (props changed) head/textproc/sml-fxp/files/sml-nj-devel-plist (props changed) head/textproc/sml-fxp/files/sml-nj-plist (props changed) head/textproc/sml-fxp/files/src-Apps-Canon-canon.mlb (props changed) head/textproc/sml-fxp/files/src-Apps-Canon-runcanon.sml (props changed) head/textproc/sml-fxp/files/src-Apps-Copy-copy.mlb (props changed) head/textproc/sml-fxp/files/src-Apps-Copy-runcopy.sml (props changed) head/textproc/sml-fxp/files/src-Apps-Esis-esis.mlb (props changed) head/textproc/sml-fxp/files/src-Apps-Esis-runesis.sml (props changed) head/textproc/sml-fxp/files/src-Apps-Null-null.mlb (props changed) head/textproc/sml-fxp/files/src-Apps-Null-runnull.sml (props changed) head/textproc/sml-fxp/files/src-Apps-Viz-runviz.sml (props changed) head/textproc/sml-fxp/files/src-Apps-Viz-viz.mlb (props changed) head/textproc/sml-fxp/files/src-Catalog-catalog.cm (props changed) head/textproc/sml-fxp/files/src-Parser-Base-base.cm (props changed) head/textproc/sml-fxp/files/src-Parser-Dfa-dfa.cm (props changed) head/textproc/sml-fxp/files/src-Parser-Dtd-dtd.cm (props changed) head/textproc/sml-fxp/files/src-Parser-Error-error.cm (props changed) head/textproc/sml-fxp/files/src-Parser-Params-params.cm (props changed) head/textproc/sml-fxp/files/src-Parser-Parse-parse.cm (props changed) head/textproc/sml-fxp/files/src-Parser-entities.cm (props changed) head/textproc/sml-fxp/files/src-Parser-parser.cm (props changed) head/textproc/sml-fxp/files/src-Unicode-Chars-chars.cm (props changed) head/textproc/sml-fxp/files/src-Unicode-Decode-decode.cm (props changed) head/textproc/sml-fxp/files/src-Unicode-Encode-encode.cm (props changed) head/textproc/sml-fxp/files/src-Unicode-Uri-uri.cm (props changed) head/textproc/sml-fxp/files/src-Unicode-encoding.cm (props changed) head/textproc/sml-fxp/files/src-Unicode-unicode.cm (props changed) head/textproc/sml-fxp/files/src-Util-SymDict-symdict.cm (props changed) head/textproc/sml-fxp/files/src-Util-util.cm (props changed) head/textproc/sml-fxp/files/src-config.cm (props changed) head/textproc/sml-fxp/files/src-fxlib.mlb (props changed) head/textproc/spellutils/files/aspell.sl (props changed) head/textproc/sphinxsearch-devel/files/sphinxsearch.in (props changed) head/textproc/sphinxsearch/files/sphinxsearch.in (props changed) head/textproc/tei-p3/files/catalog (props changed) head/textproc/trang/files/trang.sh.in (props changed) head/textproc/weka/files/weka.sh.in (props changed) head/textproc/wordnet/files/dict.Makefile (props changed) head/textproc/wordnet/files/include.Makefile (props changed) head/textproc/wordnet/files/man.Makefile (props changed) head/textproc/wordnet/files/src.lib.Makefile (props changed) head/textproc/wordnet/files/src.wn.Makefile (props changed) head/textproc/wordnet/files/src.wnb.Makefile (props changed) head/textproc/wordnet/scripts/configure (props changed) head/textproc/words/files/words (props changed) head/textproc/xalan-j/files/xalan-j.sh.in (props changed) head/textproc/xerces-c2-devel/scripts/check-config-options (props changed) head/textproc/xhtml-11/files/catalog.xml (props changed) head/textproc/xhtml-basic/contents.inc (props changed) head/textproc/xhtml-basic/files/catalog.xml (props changed) head/textproc/xhtml-modularization/contents.inc (props changed) head/textproc/xhtml-modularization/files/catalog.xml (props changed) head/textproc/xhtml/files/catalog.xml (props changed) head/textproc/xincluder/files/xincluder.sh.in (props changed) head/textproc/xmlcharent/files/catalog (props changed) head/textproc/xmlcharent/files/catalog.xml (props changed) head/textproc/xt/files/xt.sh (props changed) head/ukrainian/emacs-koi8u/files/ukr-koi8u.el (props changed) head/ukrainian/ispell/files/ispell-uk (props changed) head/vietnamese/vn7to8/files/vn7to8.1 (props changed) head/vietnamese/vn7to8/files/vn80to81.1 (props changed) head/vietnamese/vn7to8/files/vn8to7.1 (props changed) head/vietnamese/vnconvert/files/vnconvert.1 (props changed) head/vietnamese/vnpstext/files/vnpstext.1 (props changed) head/vietnamese/vnxfonts/files/fonts.alias (props changed) head/vietnamese/xvnkb/files/xvnkb.1 (props changed) head/www/MT/files/MT.conf.in (props changed) head/www/abyssws/files/abyssws.in (props changed) head/www/adzap/files/adzap.conf.in (props changed) head/www/amphetadesk/files/amphetadesk.in (props changed) head/www/amphetadesk/files/wrapper.sh (props changed) head/www/anyterm/files/anytermd.in (props changed) head/www/anyterm/files/mime.types (props changed) head/www/aolserver/files/aolserver.in (props changed) head/www/apache22-peruser-mpm/files/httpd-2.2.3-peruser-0.3.0-dc3-r57.patch (props changed) head/www/apache22-peruser-mpm/files/httpd-2.2.3-peruser-0.3.0-dc3.patch (props changed) head/www/apache22-peruser-mpm/files/httpd-2.2.3-peruser-0.3.0.patch (props changed) head/www/apache22/files/htcacheclean.in (props changed) head/www/apache22/files/no-accf.conf (props changed) head/www/asterisk-stat/files/cdr_mysql.tbl (props changed) head/www/asterisk-stat/files/cdr_pgsql.tbl (props changed) head/www/asterisk-stat/files/mysql__patch-cdr.php (props changed) head/www/asterisk-stat/files/mysql__patch-defines.php (props changed) head/www/asterisk-stat/files/pgsql__patch-call.log.php (props changed) head/www/asterisk-stat/files/pgsql__patch-cdr.php (props changed) head/www/asterisk-stat/files/pgsql__patch-defines.php (props changed) head/www/bigbluebutton/files/bbb-conf.in (props changed) head/www/bigbluebutton/files/nginx.conf-dist.in (props changed) head/www/bigbluebutton/files/nopdfmark.ps (props changed) head/www/bigbluebutton/files/openoffice.in (props changed) head/www/boa/files/boa.sh.sample (props changed) head/www/bozohttpd/files/bozohttpd.in (props changed) head/www/bugmenot-firefox/files/chrome.manifest (props changed) head/www/c-icap/files/c-icap.in (props changed) head/www/cacheboy16/files/squid.in (props changed) head/www/cakephp11/files/cakephp-development-cgi.conf.in (props changed) head/www/cakephp11/files/cakephp-development.conf.in (props changed) head/www/cakephp11/files/cakephp-production-cgi.conf.in (props changed) head/www/cakephp11/files/cakephp-production.conf.in (props changed) head/www/cakephp11/files/development-app-config-core.php.patch (props changed) head/www/cakephp12/files/cakephp-development-cgi.conf.in (props changed) head/www/cakephp12/files/cakephp-development.conf.in (props changed) head/www/cakephp12/files/cakephp-production-cgi.conf.in (props changed) head/www/cakephp12/files/cakephp-production.conf.in (props changed) head/www/cakephp13/files/cakephp-development-cgi.conf.in (props changed) head/www/cakephp13/files/cakephp-development.conf.in (props changed) head/www/cakephp13/files/cakephp-production-cgi.conf.in (props changed) head/www/cakephp13/files/cakephp-production.conf.in (props changed) head/www/cakephp21/files/cakephp-development-cgi.conf.in (props changed) head/www/cakephp21/files/cakephp-development.conf.in (props changed) head/www/cakephp21/files/cakephp-production-cgi.conf.in (props changed) head/www/cakephp21/files/cakephp-production.conf.in (props changed) head/www/cakephp22/files/cakephp-development-cgi.conf.in (props changed) head/www/cakephp22/files/cakephp-development.conf.in (props changed) head/www/cakephp22/files/cakephp-production-cgi.conf.in (props changed) head/www/cakephp22/files/cakephp-production.conf.in (props changed) head/www/cakephp23/files/cakephp-development-cgi.conf.in (props changed) head/www/cakephp23/files/cakephp-development.conf.in (props changed) head/www/cakephp23/files/cakephp-production-cgi.conf.in (props changed) head/www/cakephp23/files/cakephp-production.conf.in (props changed) head/www/cblog/files/cblog.in (props changed) head/www/cherokee/files/cherokee.in (props changed) head/www/chimera/scripts/configure (props changed) head/www/closure-compiler/files/closure-compiler.in (props changed) head/www/cntlm/files/cntlm.in (props changed) head/www/cocoon/files/cocoon.in (props changed) head/www/cocoon/files/cocoonctl.in (props changed) head/www/cocoon/files/message-advanced.in (props changed) head/www/cocoon/files/message.in (props changed) head/www/cocoon/files/upstreams-cocoon.sh.in (props changed) head/www/codeigniter/files/codeigniter-development-cgi.conf.in (props changed) head/www/codeigniter/files/codeigniter-development.conf.in (props changed) head/www/codeigniter/files/codeigniter-production-cgi.conf.in (props changed) head/www/codeigniter/files/codeigniter-production.conf.in (props changed) head/www/dansguardian-devel/files/dansguardian.in (props changed) head/www/dansguardian/files/dansguardian.in (props changed) head/www/davical/files/httpd-davical.conf.in (props changed) head/www/dhttpd/files/dhttpd.in (props changed) head/www/dojo-shrinksafe/files/dojo-shrinksafe.in (props changed) head/www/dojo/files/dojo.conf.in (props changed) head/www/elog/files/elogd.in (props changed) head/www/emacs-w3m/files/_pkg.el (props changed) head/www/fcgiwrap/files/fcgiwrap.in (props changed) head/www/fhttpd/files/fhttpd.sh (props changed) head/www/fnord/files/fnord.inetd.in (props changed) head/www/foswiki/files/LocalSite.cfg.in (props changed) head/www/fswiki/files/setup.sh (props changed) head/www/gatling/files/gatling.in (props changed) head/www/gatling/files/gatling_wrapper (props changed) head/www/geneweb/files/install.sh (props changed) head/www/geronimo/files/geronimo3.in (props changed) head/www/grails/files/edit-startGrails.sed.in (props changed) head/www/havp/files/havp.in (props changed) head/www/helma/files/helma.in (props changed) head/www/helma/files/helma.sh.in (props changed) head/www/hiawatha/files/hiawatha.in (props changed) head/www/horde3-meta/files/post-configure-message (props changed) head/www/http_get/files/Makefile.bsd (props changed) head/www/http_post/files/Makefile.bsd (props changed) head/www/httptunnel/files/htc.in (props changed) head/www/httptunnel/files/hts.in (props changed) head/www/hudson/files/hudson.in (props changed) head/www/hydra/files/hydra.in (props changed) head/www/interchange/files/interchange.in (props changed) head/www/jetty/files/jetty.in (props changed) head/www/jetty/files/message-advanced.in (props changed) head/www/jetty/files/message.in (props changed) head/www/jmeter/files/jmeter.sh.in (props changed) head/www/jspacker/files/jspacker.in (props changed) head/www/junkbuster/files/junkbuster.in (props changed) head/www/kannel/files/kannel.in (props changed) head/www/lighttpd/files/COPYING.mod_h264_streaming (props changed) head/www/lighttpd/files/README.mysqlauth (props changed) head/www/lighttpd/files/h264_streaming.conf (props changed) head/www/lighttpd/files/lighttpd.in (props changed) head/www/lighttpd/files/mysql_auth.sql (props changed) head/www/links/files/extra-terminal.c.diff (props changed) head/www/lusca-head/files/squid.in (props changed) head/www/man2web/files/freebsd.h (props changed) head/www/mathopd/files/mathopd.sh (props changed) head/www/mod_antiloris/files/mod_antiloris.conf.in (props changed) head/www/mod_chroot/files/post-install-notes (props changed) head/www/mod_encoding/files/apache22_patch (props changed) head/www/mod_encoding/files/iconv_hook-20040430.patch (props changed) head/www/mod_encoding/files/queryfix-patch22 (props changed) head/www/mod_jk/files/mod_jk.conf.sample.in (props changed) head/www/mod_jk/files/workers.properties.sample (props changed) head/www/mod_pagespeed/files/extra-gperf.gypi (props changed) head/www/mod_security/files/mod_security2.conf.in (props changed) head/www/mod_spdy/files/mod_spdy.conf.in (props changed) head/www/mohawk/files/mohawk.in (props changed) head/www/monast/files/monast.in (props changed) head/www/nginx-devel/files/nginx.in (props changed) head/www/nginx/files/nginx.in (props changed) head/www/nostromo/files/nostromo.in (props changed) head/www/nspluginwrapper/files/npviewer.in (props changed) head/www/oops/files/oops.in (props changed) head/www/openacs/files/adjust_pgsql_conf.sh.in (props changed) head/www/openacs/files/create_sampledb.sh.in (props changed) head/www/openacs/files/dotlrn.in (props changed) head/www/openacs/files/openacs.in (props changed) head/www/opera-devel/files/operapluginwrapper (props changed) head/www/p5-CGI-SpeedyCGI/files/speedy_dump.c (props changed) head/www/p5-FCGI-Spawn/files/fcgi_spawn.in (props changed) head/www/p5-Starman/files/starman.in (props changed) head/www/perlbal/files/perlbal.in (props changed) head/www/pglogd/files/020.pglogd.sh (props changed) head/www/polipo/files/400.polipo.in (props changed) head/www/polipo/files/polipo.in (props changed) head/www/pound/files/pound.in (props changed) head/www/prado/files/prado-development-cgi.conf.in (props changed) head/www/prado/files/prado-development.conf.in (props changed) head/www/prado/files/prado-production-cgi.conf.in (props changed) head/www/prado/files/prado-production.conf.in (props changed) head/www/pserv/files/pserv.sh (props changed) head/www/publicfile/files/publicfile-0.52-commonlog-2.patch (props changed) head/www/publicfile/files/publicfile-0.52-filetype-diff (props changed) head/www/publicfile/files/publicfile-0.52_basicauth.patch (props changed) head/www/publicfile/files/publicfile-0.52_basicauth.patch.in (props changed) head/www/publicfile/files/publicfile.sslserver (props changed) head/www/publicfile/files/redirect-slash-patch (props changed) head/www/py-webware/files/webkit.sh.tmpl (props changed) head/www/pylot/files/pylot.in (props changed) head/www/quickie/files/freebsd.h (props changed) head/www/quixote/scripts/compile_ptl.py (props changed) head/www/radicale/files/radicale.in (props changed) head/www/red5/files/red5.in (props changed) head/www/redmine/files/redmine.in (props changed) head/www/resin3/files/resin3.in (props changed) head/www/resin3/files/resin3ctl.in (props changed) head/www/sahi/files/sahi.sh.in (props changed) head/www/sams/files/sams.in (props changed) head/www/sams/files/setup.sh (props changed) head/www/scloader/files/scloader.sh (props changed) head/www/seamonkey/files/moz_pis_S50cleanhome (props changed) head/www/shellinabox/files/shellinaboxd.in (props changed) head/www/smb_auth/files/README (props changed) head/www/spawn-fcgi/files/spawn-fcgi.in (props changed) head/www/spreadlogd/files/spreadlogd.in (props changed) head/www/squid/files/squid.in (props changed) head/www/surfraw/manpages (props changed) head/www/swish++/files/swish++.sh (props changed) head/www/tclhttpd/files/httpdate.c (props changed) head/www/tclhttpd/files/metaPackage.c (props changed) head/www/tclhttpd/files/tclhttpd.in (props changed) head/www/tclhttpd/scripts/post-patch (props changed) head/www/tdiary/files/tdiaryinst.rb.in (props changed) head/www/thttpd/files/thttpd.conf.sample.in (props changed) head/www/thttpd/files/thttpd.in (props changed) head/www/thundercache/files/log.sh.in (props changed) head/www/thundercache/files/test-deps.sh.in (props changed) head/www/thundercache/files/thundercache.in (props changed) head/www/tidy/files/COPYRIGHT (props changed) head/www/tinyproxy/files/tinyproxy.8 (props changed) head/www/tinyproxy/files/tinyproxy.conf.5 (props changed) head/www/tinyproxy/files/tinyproxy.in (props changed) head/www/tinytinyhttpd/files/example.conf.in (props changed) head/www/tomcat6/files/tomcat6.in (props changed) head/www/tomcat7/files/tomcat7.in (props changed) head/www/trac-pendingticket/files/close_old_pending.py.patch (props changed) head/www/trac-pendingticket/files/migrate_pending_attrib_to_status.py.patch (props changed) head/www/trac/files/tracd.in (props changed) head/www/trafficserver/files/trafficserver.in (props changed) head/www/transproxy/files/tproxy.in (props changed) head/www/tt-rss/files/httpd-tt-rss.conf.in (props changed) head/www/tt-rss/files/ttrssd.in (props changed) head/www/twms/files/twms.in (props changed) head/www/uwsgi/files/uwsgi.in (props changed) head/www/validator/files/validator.conf.sample.in (props changed) head/www/varnish/files/varnishd.in (props changed) head/www/varnish/files/varnishlog.in (props changed) head/www/varnish/files/varnishncsa.in (props changed) head/www/vdr-plugin-live/files/gen_version_suffix.h (props changed) head/www/vdradmin-am/files/vdradmind.conf (props changed) head/www/vdradmin-am/files/vdradmind.in (props changed) head/www/videocache/files/squid.conf.example (props changed) head/www/webalizer/files/ja-webalizer.conf-dist.patch (props changed) head/www/webalizer/files/webalizer-a-urasim_2.patch (props changed) head/www/webcalendar-devel/files/webcalendar-cgi.conf.in (props changed) head/www/webcalendar-devel/files/webcalendar.conf.in (props changed) head/www/webfs/files/webfsd.in (props changed) head/www/webobjects/files/JavaMonitor.in (props changed) head/www/webobjects/files/wotaskd.in (props changed) head/www/websh/files/httpd.conf.in (props changed) head/www/wikicalc/files/setup.sh.in (props changed) head/www/www6to4/files/www6to4.in (props changed) head/www/wwwoffle/files/wwwoffled.in (props changed) head/www/xpi-delicious/files/chrome.manifest (props changed) head/www/xpi-flatbmark/files/chrome.manifest (props changed) head/www/xpi-formfox/files/chrome.manifest (props changed) head/www/xpi-informenter/files/chrome.manifest (props changed) head/www/xpi-mldonkey/files/chrome.manifest (props changed) head/www/xpi-searchstatus/files/chrome.manifest (props changed) head/www/xpi-tabletools/files/chrome.manifest (props changed) head/www/xpi-tagzilla/files/chrome.manifest (props changed) head/www/xpi-wmlbrowser/files/chrome.manifest (props changed) head/www/xshttpd-devel/files/xshttpd.in (props changed) head/www/xshttpd/files/xshttpd.in (props changed) head/www/yahoo-ui/files/yui.conf.in (props changed) head/www/yaws/files/yaws.conf.sample (props changed) head/www/zerowait-httpd/files/0W-httpd.in (props changed) head/www/zope213/files/instance-message.in (props changed) head/www/zope213/files/package-pkg-message.in (props changed) head/www/zope213/files/zope.conf_changes (props changed) head/www/zope213/files/zope213.in (props changed) head/x11-clocks/gdesklets-clock/files/Clock::__init__.py (props changed) head/x11-drivers/input-wacom/files/wacom.in (props changed) head/x11-drivers/xf86-video-intel/files/extra-clang (props changed) head/x11-drivers/xf86-video-intel/files/extra-i915kms (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_ch7017_ch7017.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_ch7xxx_ch7xxx.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i810_driver.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i810_hwmc.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i810_video.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i830_dri.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i830_driver.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i830_dvo.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i830_i2c.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i830_render.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i830_video.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i915_hwmc.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i915_render.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_i965_render.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_ivch_ivch.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_sil164_sil164.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-src_tfp410_tfp410.c (props changed) head/x11-drivers/xf86-video-intel/files/extra-uxa_uxa-priv.h (props changed) head/x11-fm/asfiles/files/last-patch-aa (props changed) head/x11-fm/asfiles/scripts/post-configure (props changed) head/x11-fm/rox-filer/files/rox (props changed) head/x11-fm/rox-session/files/rox.desktop.in (props changed) head/x11-fonts/artwiz-fonts/files/fonts.dir (props changed) head/x11-fonts/bitstream-vera/files/fonts.dir (props changed) head/x11-fonts/cyberbit-ttfonts/files/fonts.dir.cyberbit (props changed) head/x11-fonts/fontconfig/files/fc-cache.1 (props changed) head/x11-fonts/fontconfig/files/fc-cat.1 (props changed) head/x11-fonts/fontconfig/files/fc-list.1 (props changed) head/x11-fonts/fontconfig/files/fc-match.1 (props changed) head/x11-fonts/intlfonts/files/DEINSTALL.tmpl (props changed) head/x11-fonts/intlfonts/files/INSTALL.tmpl (props changed) head/x11-fonts/webfonts/files/fonts.dir (props changed) head/x11-fonts/webfonts/files/tahoma.dir (props changed) head/x11-fonts/wqy/files/85-wqy.conf (props changed) head/x11-fonts/xfs/files/xfs.in (props changed) head/x11-servers/Xfstt/files/xfstt.sh (props changed) head/x11-servers/xorg-server/files/extra-Xserver-hw-xfree86-common-xf86Config.c (props changed) head/x11-servers/xorg-server/files/extra-arch-ia64 (props changed) head/x11-servers/xorg-server/files/extra-dix_events.c (props changed) head/x11-servers/xorg-server/files/extra-include_eventstr.h (props changed) head/x11-servers/xorg-server/files/extra-new-arch-i386 (props changed) head/x11-servers/xorg-server/files/extra-new-arch-powerpc (props changed) head/x11-servers/xorg-server/files/extra-old-arch-i386 (props changed) head/x11-servers/xorg-server/files/extra-old-arch-powerpc (props changed) head/x11-themes/gtk-envy-theme/files/index.theme.in (props changed) head/x11-themes/icon-bluecurve-theme/scripts/do-build (props changed) head/x11-themes/kde4-wallpapers-freebsd/files/05-freebsdWallpaper.js (props changed) head/x11-toolkits/gnustep-gui/files/AudioOutputSink.m.patch (props changed) head/x11-toolkits/gnustep-gui/files/GNUmakefile.patch (props changed) head/x11-toolkits/gnustep-gui/files/GNUmakefile.speech.patch (props changed) head/x11-toolkits/plib/files/jsBSDCal.c (props changed) head/x11-toolkits/py-tkinter/files/setup.py (props changed) head/x11-toolkits/py-tkinter/files/setup3.py (props changed) head/x11-toolkits/swt-devel/files/build.xml (props changed) head/x11-wm/afterstep-i18n/files/steprc.ja.diff (props changed) head/x11-wm/afterstep-i18n/scripts/configure (props changed) head/x11-wm/compiz/files/compiz-manager.in (props changed) head/x11-wm/ctwm/files/Imakefile.local-additional (props changed) head/x11-wm/icewm/files/bsd-daemon.xpm (props changed) head/x11-wm/icewm/files/extra-menu-icon-fix.patch (props changed) head/x11-wm/lxmed/files/pc-su (props changed) head/x11-wm/qlwm/files/qlwm.in (props changed) head/x11-wm/ratpoison/files/ratpoison.desktop.in (props changed) head/x11-wm/xfce4/files/XFce4 (props changed) head/x11-wm/xfce4/files/XFce4.desktop (props changed) head/x11/apwal/files/group_member.c (props changed) head/x11/bricons/files/DOTbriconsrc (props changed) head/x11/decurs/files/decurs.exec (props changed) head/x11/eaglemode/files/eaglemode.sh.in (props changed) head/x11/gcb/files/gcb.desktop (props changed) head/x11/gdm/files/gdm.in (props changed) head/x11/gdm/files/gdm.pam.in (props changed) head/x11/gnome-menus/files/KDE.directory (props changed) head/x11/gnome-screensaver/files/gnome-screensaver.pam.in (props changed) head/x11/gpctool/files/BSDmakefile (props changed) head/x11/kde4-workspace/files/kdm4.in (props changed) head/x11/linux-f10-xorg-libs/files/xorg-x11-i386.conf (props changed) head/x11/mate-menus/files/GNOME.directory (props changed) head/x11/mate-menus/files/KDE.directory (props changed) head/x11/mate-screensaver/files/mate-screensaver.pam.in (props changed) head/x11/nvidia-driver/files/legacy-patch-nvidia.lib.mk (props changed) head/x11/nvidia-driver/files/security-patch-CVE-2012-0946 (props changed) head/x11/nvidia-driver/files/security-patch-CVE-2012-4225 (props changed) head/x11/printscreen/files/printscreen.in (props changed) head/x11/rxvt-devel/files/utmp_patch-src::logging.c (props changed) head/x11/rxvt-devel/files/utmpx_patch-src::logging.c (props changed) head/x11/slim/files/pam.conf (props changed) head/x11/wdm/files/wdm.pam (props changed) head/x11/xco/files/copyright (props changed) head/x11/xkeycaps/scripts/configure (props changed) head/x11/xmove/files/Imakefile (props changed) head/x11/xscreensaver-gnome/files/xscreensaver.pam.in (props changed) head/x11/xscreensaver/files/xaos.xml (props changed) head/x11/xscreensaver/files/xdaliclock.xml (props changed) head/x11/xscreensaver/files/xearth.xml (props changed) head/x11/xscreensaver/files/xmountains.xml (props changed) head/x11/xscreensaver/files/xplanet.xml (props changed) head/x11/xscreensaver/files/xscreensaver.pam (props changed) head/x11/xscreensaver/files/xsnow.xml (props changed) head/x11/xvmcinfo/files/xvmcinfo.c (props changed) Modified: head/textproc/jaxup/files/DOMXUpdater.java ============================================================================== --- head/textproc/jaxup/files/DOMXUpdater.java Thu Jan 23 23:48:53 2014 (r340871) +++ head/textproc/jaxup/files/DOMXUpdater.java Fri Jan 24 00:14:07 2014 (r340872) @@ -1,52 +1,52 @@ -/** - * DOMXUpdater: a command-line XUpdate processor. - * - * $FreeBSD$ - */ -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; - -import org.apache.xml.serialize.OutputFormat; -import org.apache.xml.serialize.XMLSerializer; -import org.jaxen.dom.DocumentNavigator; -import org.jaxup.dom.DOMDocumentUpdater; -import org.jaxup.xupdate.XUpdate; -import org.w3c.dom.Document; - -public class DOMXUpdater -{ - public static void main(String[] args) - { - if (args.length != 2) - { - System.out.println("usage: DOMXUpdater "); - System.exit(1); - } - - try - { - DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance(); - factory.setNamespaceAware(true); - DocumentBuilder builder=factory.newDocumentBuilder(); - - Document doc=builder.parse(args[0]); - Document updateDoc=builder.parse(args[1]); - - XUpdate updater=new XUpdate(new DOMDocumentUpdater(), DocumentNavigator.getInstance()); - updater.runUpdate(doc, updateDoc.getDocumentElement()); - - OutputFormat o=new OutputFormat("xml", "ISO-8859-1", true); - o.setIndenting(true); - o.setIndent(2); - o.setPreserveSpace(true); - XMLSerializer serial=new XMLSerializer(System.out, o); - serial.serialize(doc); - System.out.println(); - } - catch (Exception e) - { - e.printStackTrace(); - System.exit(1); - } - } -} +/** + * DOMXUpdater: a command-line XUpdate processor. + * + * $FreeBSD$ + */ +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; + +import org.apache.xml.serialize.OutputFormat; +import org.apache.xml.serialize.XMLSerializer; +import org.jaxen.dom.DocumentNavigator; +import org.jaxup.dom.DOMDocumentUpdater; +import org.jaxup.xupdate.XUpdate; +import org.w3c.dom.Document; + +public class DOMXUpdater +{ + public static void main(String[] args) + { + if (args.length != 2) + { + System.out.println("usage: DOMXUpdater "); + System.exit(1); + } + + try + { + DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance(); + factory.setNamespaceAware(true); + DocumentBuilder builder=factory.newDocumentBuilder(); + + Document doc=builder.parse(args[0]); + Document updateDoc=builder.parse(args[1]); + + XUpdate updater=new XUpdate(new DOMDocumentUpdater(), DocumentNavigator.getInstance()); + updater.runUpdate(doc, updateDoc.getDocumentElement()); + + OutputFormat o=new OutputFormat("xml", "ISO-8859-1", true); + o.setIndenting(true); + o.setIndent(2); + o.setPreserveSpace(true); + XMLSerializer serial=new XMLSerializer(System.out, o); + serial.serialize(doc); + System.out.println(); + } + catch (Exception e) + { + e.printStackTrace(); + System.exit(1); + } + } +} Modified: head/www/pebble/files/pebble.properties.in ============================================================================== --- head/www/pebble/files/pebble.properties.in Thu Jan 23 23:48:53 2014 (r340871) +++ head/www/pebble/files/pebble.properties.in Fri Jan 24 00:14:07 2014 (r340872) @@ -1,22 +1,22 @@ -# $FreeBSD$ - -# the location where your Pebble data is stored, default is ${pebble.home}/pebble -dataDirectory=%%PEBBLE_HOME%% - -# the base URL (can start http:// or https://) where your blog is hosted, default is auto-discover at runtime -url= - -# the secure URL (starting https://), which should only be set if you intend to use secure login -secureUrl= - -# a flag to indicate whether Pebble is running in multi-blog mode, default is false -multiBlog=false - -# the name/IP address of the server through which e-mail is sent, or a JNDI name starting java:/comp/env pointing to a preconfigured javax.mail.Session instance -smtpHost=java:comp/env/mail/Session - -# the maximum file upload size in KB -fileUploadSize=10240 - -# a flag to indicate whether user themes are enabled, default is true -userThemesEnabled=true +# $FreeBSD$ + +# the location where your Pebble data is stored, default is ${pebble.home}/pebble +dataDirectory=%%PEBBLE_HOME%% + +# the base URL (can start http:// or https://) where your blog is hosted, default is auto-discover at runtime +url= + +# the secure URL (starting https://), which should only be set if you intend to use secure login +secureUrl= + +# a flag to indicate whether Pebble is running in multi-blog mode, default is false +multiBlog=false + +# the name/IP address of the server through which e-mail is sent, or a JNDI name starting java:/comp/env pointing to a preconfigured javax.mail.Session instance +smtpHost=java:comp/env/mail/Session + +# the maximum file upload size in KB +fileUploadSize=10240 + +# a flag to indicate whether user themes are enabled, default is true +userThemesEnabled=true From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 01:01:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4DCE7D55; Fri, 24 Jan 2014 01:01:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37F4F110D; Fri, 24 Jan 2014 01:01:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O11s84057138; Fri, 24 Jan 2014 01:01:54 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O11rRs057135; Fri, 24 Jan 2014 01:01:53 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201401240101.s0O11rRs057135@svn.freebsd.org> From: Jason Helfman Date: Fri, 24 Jan 2014 01:01:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340873 - in head/sysutils/coreutils: . 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.17 Precedence: list List-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, 24 Jan 2014 01:01:54 -0000 Author: jgh Date: Fri Jan 24 01:01:53 2014 New Revision: 340873 URL: http://svnweb.freebsd.org/changeset/ports/340873 QAT: https://qat.redports.org/buildarchive/r340873/ Log: - update to 8.22 - support staging, strip libraries - trim master_site - use option helpers - shift away from inclusion of bsd.port.pre.mk as bsd.port.options.mk can test OSVERSION (less expensive) - patch of Makefile was merged upstream so removed patch PR: 185599 Submitted by: jgh@ (myself) Approved by: maintainer timeout, jharris@widomaker.com ( 15 days ) Deleted: head/sysutils/coreutils/files/patch-Makefile.in Modified: head/sysutils/coreutils/Makefile head/sysutils/coreutils/distinfo head/sysutils/coreutils/pkg-plist Modified: head/sysutils/coreutils/Makefile ============================================================================== --- head/sysutils/coreutils/Makefile Fri Jan 24 00:14:07 2014 (r340872) +++ head/sysutils/coreutils/Makefile Fri Jan 24 01:01:53 2014 (r340873) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= coreutils -PORTVERSION= 8.20 -PORTREVISION= 2 +PORTVERSION= 8.22 CATEGORIES= sysutils textproc -MASTER_SITES= ${MASTER_SITE_GNU} +MASTER_SITES= GNU MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= jharris@widomaker.com @@ -30,47 +29,19 @@ USES= gmake perl5 USE_PERL5= build # build - required for tests and man page generation USE_XZ= yes USE_LDCONFIG= yes -#USE_BISON= yes INFO= coreutils -MAN1= gbasename.1 gcat.1 gchcon.1 gchgrp.1 gchmod.1 gchown.1 gchroot.1 \ - gcksum.1 gcomm.1 gcp.1 gcsplit.1 gcut.1 gdate.1 gdd.1 gdf.1 gdir.1 \ - gdircolors.1 gdirname.1 gdu.1 gecho.1 genv.1 gexpand.1 gexpr.1 \ - gfactor.1 gfalse.1 gfmt.1 gfold.1 ggroups.1 ghead.1 ghostid.1 \ - gid.1 ginstall.1 gjoin.1 gkill.1 glink.1 gln.1 \ - glogname.1 gls.1 gmd5sum.1 gmkdir.1 gmkfifo.1 gmknod.1 gmktemp.1 \ - gmv.1 gnice.1 gnl.1 gnohup.1 god.1 gpaste.1 gpathchk.1 gpinky.1 \ - gpr.1 gprintenv.1 gprintf.1 gptx.1 gpwd.1 greadlink.1 grealpath.1 grm.1 \ - grmdir.1 gruncon.1 gseq.1 gsha1sum.1 gshred.1 gsleep.1 gsort.1 \ - gsplit.1 gstdbuf.1 gnustat.1 gstty.1 gsum.1 gsync.1 gtac.1 \ - gtail.1 gtee.1 gtest.1 gtimeout.1 gtouch.1 gtr.1 gtrue.1 gtruncate.1 \ - gtsort.1 gtty.1 guname.1 gunexpand.1 guniq.1 gunlink.1 guptime.1 \ - gusers.1 gvdir.1 gwc.1 gwho.1 gwhoami.1 gyes.1 gbase64.1 gsha224sum.1 \ - gsha256sum.1 gsha384sum.1 gsha512sum.1 gshuf.1 gnproc.1 - OPTIONS_DEFINE= GMP NLS OPTIONS_DEFAULT=NLS +OPTIONS_SUB= yes +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls +GMP_LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp +GMP_CONFIGURE_ENABLE= gmp -NO_STAGE= yes .include -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -.if ${PORT_OPTIONS:MGMP} -LIB_DEPENDS+= gmp:${PORTSDIR}/math/gmp -.else -CONFIGURE_ARGS+=--without-gmp -.endif - -.include - .if ${OSVERSION} >= 800039 EXTRA_PATCHES= ${PATCHDIR}/extra-patch-stty.c .endif @@ -78,7 +49,11 @@ EXTRA_PATCHES= ${PATCHDIR}/extra-patch-s post-build: @${REINPLACE_CMD} -e "s/ lib / /g" ${WRKSRC}/Makefile +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/g* \ + ${STAGEDIR}${PREFIX}/libexec/coreutils/glibstdbuf.so + #regression-test: build # (cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} check) -.include +.include Modified: head/sysutils/coreutils/distinfo ============================================================================== --- head/sysutils/coreutils/distinfo Fri Jan 24 00:14:07 2014 (r340872) +++ head/sysutils/coreutils/distinfo Fri Jan 24 01:01:53 2014 (r340873) @@ -1,2 +1,2 @@ -SHA256 (coreutils-8.20.tar.xz) = dbcb798764827a0f74be738662ecb516705cf520330cd3d7b2640fdffa499eb2 -SIZE (coreutils-8.20.tar.xz) = 5273788 +SHA256 (coreutils-8.22.tar.xz) = 5b3e94998152c017e6c75d56b9b994188eb71bf46d4038a642cb9141f6ff1212 +SIZE (coreutils-8.22.tar.xz) = 5335124 Modified: head/sysutils/coreutils/pkg-plist ============================================================================== --- head/sysutils/coreutils/pkg-plist Fri Jan 24 00:14:07 2014 (r340872) +++ head/sysutils/coreutils/pkg-plist Fri Jan 24 01:01:53 2014 (r340873) @@ -101,6 +101,108 @@ bin/gwho bin/gwhoami bin/gyes libexec/coreutils/glibstdbuf.so +man/man1/gbase64.1.gz +man/man1/gbasename.1.gz +man/man1/gcat.1.gz +man/man1/gchcon.1.gz +man/man1/gchgrp.1.gz +man/man1/gchmod.1.gz +man/man1/gchown.1.gz +man/man1/gchroot.1.gz +man/man1/gcksum.1.gz +man/man1/gcomm.1.gz +man/man1/gcp.1.gz +man/man1/gcsplit.1.gz +man/man1/gcut.1.gz +man/man1/gdate.1.gz +man/man1/gdd.1.gz +man/man1/gdf.1.gz +man/man1/gdir.1.gz +man/man1/gdircolors.1.gz +man/man1/gdirname.1.gz +man/man1/gdu.1.gz +man/man1/gecho.1.gz +man/man1/genv.1.gz +man/man1/gexpand.1.gz +man/man1/gexpr.1.gz +man/man1/gfactor.1.gz +man/man1/gfalse.1.gz +man/man1/gfmt.1.gz +man/man1/gfold.1.gz +man/man1/ggroups.1.gz +man/man1/ghead.1.gz +man/man1/ghostid.1.gz +man/man1/gid.1.gz +man/man1/ginstall.1.gz +man/man1/gjoin.1.gz +man/man1/gkill.1.gz +man/man1/glink.1.gz +man/man1/gln.1.gz +man/man1/glogname.1.gz +man/man1/gls.1.gz +man/man1/gmd5sum.1.gz +man/man1/gmkdir.1.gz +man/man1/gmkfifo.1.gz +man/man1/gmknod.1.gz +man/man1/gmktemp.1.gz +man/man1/gmv.1.gz +man/man1/gnice.1.gz +man/man1/gnl.1.gz +man/man1/gnohup.1.gz +man/man1/gnproc.1.gz +man/man1/gnumfmt.1.gz +man/man1/gnustat.1.gz +man/man1/god.1.gz +man/man1/gpaste.1.gz +man/man1/gpathchk.1.gz +man/man1/gpinky.1.gz +man/man1/gpr.1.gz +man/man1/gprintenv.1.gz +man/man1/gprintf.1.gz +man/man1/gptx.1.gz +man/man1/gpwd.1.gz +man/man1/greadlink.1.gz +man/man1/grealpath.1.gz +man/man1/grm.1.gz +man/man1/grmdir.1.gz +man/man1/gruncon.1.gz +man/man1/gseq.1.gz +man/man1/gsha1sum.1.gz +man/man1/gsha224sum.1.gz +man/man1/gsha256sum.1.gz +man/man1/gsha384sum.1.gz +man/man1/gsha512sum.1.gz +man/man1/gshred.1.gz +man/man1/gshuf.1.gz +man/man1/gsleep.1.gz +man/man1/gsort.1.gz +man/man1/gsplit.1.gz +man/man1/gstdbuf.1.gz +man/man1/gstty.1.gz +man/man1/gsum.1.gz +man/man1/gsync.1.gz +man/man1/gtac.1.gz +man/man1/gtail.1.gz +man/man1/gtee.1.gz +man/man1/gtest.1.gz +man/man1/gtimeout.1.gz +man/man1/gtouch.1.gz +man/man1/gtr.1.gz +man/man1/gtrue.1.gz +man/man1/gtruncate.1.gz +man/man1/gtsort.1.gz +man/man1/gtty.1.gz +man/man1/guname.1.gz +man/man1/gunexpand.1.gz +man/man1/guniq.1.gz +man/man1/gunlink.1.gz +man/man1/guptime.1.gz +man/man1/gusers.1.gz +man/man1/gvdir.1.gz +man/man1/gwc.1.gz +man/man1/gwho.1.gz +man/man1/gwhoami.1.gz +man/man1/gyes.1.gz %%NLS%%share/locale/af/LC_MESSAGES/coreutils.mo %%NLS%%share/locale/af/LC_TIME/coreutils.mo %%NLS%%share/locale/be/LC_MESSAGES/coreutils.mo From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 01:23:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93C645C4; Fri, 24 Jan 2014 01:23:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7E221127A; Fri, 24 Jan 2014 01:23:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O1N0WW064860; Fri, 24 Jan 2014 01:23:00 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O1MxPL064847; Fri, 24 Jan 2014 01:22:59 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401240122.s0O1MxPL064847@svn.freebsd.org> From: Dmitry Marakasov Date: Fri, 24 Jan 2014 01:22:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340874 - in head/graphics/osg-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.17 Precedence: list List-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, 24 Jan 2014 01:23:00 -0000 Author: amdmi3 Date: Fri Jan 24 01:22:59 2014 New Revision: 340874 URL: http://svnweb.freebsd.org/changeset/ports/340874 QAT: https://qat.redports.org/buildarchive/r340874/ Log: - Update to 3.3.0 Based on r340402 (graphics/osg version 3.2.0), additional changes include - Add new V8, LUA and PYTHON options PR: 185228 Submitted by: Hardy Schumacher Added: head/graphics/osg-devel/files/patch-CMakeModules-FindGTA.cmake (contents, props changed) Deleted: head/graphics/osg-devel/files/patch-src-osgPlugins-xine-video__out__rgb.c Modified: head/graphics/osg-devel/Makefile head/graphics/osg-devel/distinfo head/graphics/osg-devel/files/patch-CMakeLists.txt head/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.cpp head/graphics/osg-devel/pkg-plist Modified: head/graphics/osg-devel/Makefile ============================================================================== --- head/graphics/osg-devel/Makefile Fri Jan 24 01:01:53 2014 (r340873) +++ head/graphics/osg-devel/Makefile Fri Jan 24 01:22:59 2014 (r340874) @@ -2,19 +2,23 @@ # $FreeBSD$ PORTNAME= osg -PORTVERSION= 3.1.3 -PORTREVISION= 6 +PORTVERSION= 3.3.0 CATEGORIES= graphics -MASTER_SITES= http://www.openscenegraph.org/downloads/developer_releases/ \ +MASTER_SITES= http://trac.openscenegraph.org/downloads/developer_releases/ \ http://mirror.amdmi3.ru/distfiles/ -PKGNAMESUFFIX= -devel DISTNAME= OpenSceneGraph-${PORTVERSION} +PKGNAMESUFFIX= -devel MAINTAINER= amdmi3@FreeBSD.org COMMENT= C++ OpenGL scene graph library for real-time rendering +LICENSE= OSGPL +LICENSE_NAME= OpenSceneGraph Public License +LICENSE_FILE= ${WRKSRC}/LICENSE.txt +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ - libpng15.so:${PORTSDIR}/graphics/png \ + libpng.so:${PORTSDIR}/graphics/png \ libtiff.so:${PORTSDIR}/graphics/tiff CONFLICTS= osg-[0-9]* @@ -26,187 +30,179 @@ USE_XORG= x11 USE_LDCONFIG= yes PLIST_SUB= OSG_VERSION=${PORTVERSION} \ - OSG_SHLIBVER=93 \ - OPENTHREADS_VERSION=2.6.0 \ - OPENTHREADS_SHLIBVER=12 + OSG_SHLIBVER=110 \ + OPENTHREADS_VERSION=${PORTVERSION} \ + OPENTHREADS_SHLIBVER=14 PORTSCOUT= limitw:1,odd -OPTIONS_DEFINE= CURL FREETYPE GDAL GIF INVENTOR JASPER XINE ITK \ - VNC OPENEXR FFMPEG SVG PDF XRANDR SDL +OPTIONS_DEFINE= CURL FREETYPE GDAL GIF INVENTOR JASPER XINE GTA \ + VNC OPENEXR FFMPEG SVG PDF SDL NVTT QT4 XRANDR \ + LUA V8 PYTHON +OPTIONS_DEFAULT=FREETYPE GIF FFMPEG XRANDR + GDAL_DESC= GDAL support INVENTOR_DESC= SGI OpenInventor support -ITK_DESC= InsightToolkit support +GTA_DESC= GTA file format support VNC_DESC= LibVNCServer support SDL_DESC= Use SDL (joystick support in present3d) - -OPTIONS_DEFAULT= FREETYPE GIF XRANDR - -# broken (openvrml from ports is too old) -# OPENVRML "Support for OpenVRML" off +NVTT_DESC= Use NVidia texture tools +LUA_DESC= Lua strict engine support +V8_DESC= V8 script engine support +PYTHON_DESC= Python strict engine support + +OPTIONS_SUB= yes + +CURL_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl +FREETYPE_LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 +GDAL_LIB_DEPENDS= libgdal.so:${PORTSDIR}/graphics/gdal +GIF_LIB_DEPENDS= libgif.so:${PORTSDIR}/graphics/giflib +INVENTOR_LIB_DEPENDS= libInventor.so:${PORTSDIR}/graphics/inventor +JASPER_LIB_DEPENDS= libjasper.so:${PORTSDIR}/graphics/jasper +XINE_LIB_DEPENDS= libxine.so:${PORTSDIR}/multimedia/libxine +GTA_LIB_DEPENDS= libgta.so:${PORTSDIR}/devel/libgta +VNC_LIB_DEPENDS= libvncserver.so:${PORTSDIR}/net/libvncserver +OPENEXR_LIB_DEPENDS= libIlmImf.so:${PORTSDIR}/graphics/OpenEXR +FFMPEG_LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg +SVG_LIB_DEPENDS= librsvg-2.so:${PORTSDIR}/graphics/librsvg2 +PDF_LIB_DEPENDS= libpoppler-glib.so:${PORTSDIR}/graphics/poppler-glib +SDL_USE= SDL=sdl +NVTT_LIB_DEPENDS= libnvtt.so:${PORTSDIR}/graphics/nvidia-texture-tools +XRANDR_CMAKE_ON= -DOSGVIEWER_USE_XRANDR:BOOL=ON +XRANDR_CMAKE_OFF= -DOSGVIEWER_USE_XRANDR:BOOL=OFF +QT4_USE= QT4=corelib,gui,opengl,qmake_build,moc_build,uic_build,rcc_build +QT4_CMAKE_ON= -DOSG_USE_QT=ON +QT4_CMAKE_OFF= -DOSG_USE_QT=OFF +LUA_USE= LUA=5.1 +V8_LIB_DEPENDS= libv8.so:${PORTSDIR}/lang/v8 +PYTHON_USE= PYTHON=2 .include # GUI toolkits are only needed for building examples, which are not even installed -FORCE_IGNORE= FLTK GLUT FOX Qt3 Qt4 wxWidgets OpenAL GtkGl # only for examples -FORCE_IGNORE+= COLLADA Performer OurDCMTK XUL FBX GTA # not in ports +FORCE_IGNORE= FLTK GLUT FOX Qt3 Qt5Widgets wxWidgets OpenAL GtkGl # only for examples +FORCE_IGNORE+= COLLADA Performer OurDCMTK XUL FBX # not in ports +FORCE_IGNORE+= OpenVRML # ports version too old +FORCE_IGNORE+= ITK # ports version doesn't build on 10.x FORCE_REQUIRE= Threads OpenGL X11 JPEG PNG TIFF ZLIB # common & lightweight # options that affect FIND_PACKAGE .if ${PORT_OPTIONS:MCURL} FORCE_REQUIRE+= CURL -LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl -PLIST_SUB+= CURL="" .else FORCE_IGNORE+= CURL -PLIST_SUB+= CURL="@comment " .endif .if ${PORT_OPTIONS:MFREETYPE} FORCE_REQUIRE+= FreeType -LIB_DEPENDS+= libfreetype.so:${PORTSDIR}/print/freetype2 -PLIST_SUB+= FREETYPE="" .else FORCE_IGNORE+= FreeType -PLIST_SUB+= FREETYPE="@comment " .endif .if ${PORT_OPTIONS:MGDAL} FORCE_REQUIRE+= GDAL -LIB_DEPENDS+= libgdal.so:${PORTSDIR}/graphics/gdal -PLIST_SUB+= GDAL="" .else FORCE_IGNORE+= GDAL -PLIST_SUB+= GDAL="@comment " .endif .if ${PORT_OPTIONS:MGIF} FORCE_REQUIRE+= GIFLIB -LIB_DEPENDS+= libgif.so:${PORTSDIR}/graphics/giflib -PLIST_SUB+= GIF="" .else FORCE_IGNORE+= GIFLIB -PLIST_SUB+= GIF="@comment " .endif .if ${PORT_OPTIONS:MINVENTOR} FORCE_REQUIRE+= Inventor -BUILD_DEPENDS+= ${LOCALBASE}/lib/libInventor.so:${PORTSDIR}/graphics/inventor -RUN_DEPENDS+= ${LOCALBASE}/lib/libInventor.so:${PORTSDIR}/graphics/inventor -PLIST_SUB+= INVENTOR="" .else FORCE_IGNORE+= Inventor -PLIST_SUB+= INVENTOR="@comment " .endif .if ${PORT_OPTIONS:MJASPER} FORCE_REQUIRE+= Jasper -LIB_DEPENDS+= libjasper.so:${PORTSDIR}/graphics/jasper -PLIST_SUB+= JASPER="" .else FORCE_IGNORE+= Jasper -PLIST_SUB+= JASPER="@comment " .endif -#.if ${PORT_OPTIONS:MOPENVRML} -#FORCE_REQUIRE+= OpenVRML -#LIB_DEPENDS+= libopenvrml.so:${PORTSDIR}/www/openvrml -#PLIST_SUB+= OPENVRML="" -#.else -FORCE_IGNORE+= OpenVRML -PLIST_SUB+= OPENVRML="@comment " -#.endif - .if ${PORT_OPTIONS:MXINE} FORCE_REQUIRE+= Xine -LIB_DEPENDS+= libxine.so:${PORTSDIR}/multimedia/libxine -PLIST_SUB+= XINE="" .else FORCE_IGNORE+= Xine -PLIST_SUB+= XINE="@comment " .endif -.if ${PORT_OPTIONS:MITK} -FORCE_REQUIRE+= ITK -BUILD_DEPENDS+= ${LOCALBASE}/lib/InsightToolkit/UseITK.cmake:${PORTSDIR}/science/InsightToolkit -RUN_DEPENDS+= ${LOCALBASE}/lib/InsightToolkit/UseITK.cmake:${PORTSDIR}/science/InsightToolkit -PLIST_SUB+= ITK="" -CXXFLAGS+= -DVCL_CAN_STATIC_CONST_INIT_FLOAT=0 +.if ${PORT_OPTIONS:MGTA} +FORCE_REQUIRE+= GTA .else -FORCE_IGNORE+= ITK -PLIST_SUB+= ITK="@comment " +FORCE_IGNORE+= GTA .endif .if ${PORT_OPTIONS:MVNC} FORCE_REQUIRE+= LibVNCServer -LIB_DEPENDS+= libvncserver.so:${PORTSDIR}/net/libvncserver -PLIST_SUB+= VNC="" .else FORCE_IGNORE+= LibVNCServer -PLIST_SUB+= VNC="@comment " .endif .if ${PORT_OPTIONS:MOPENEXR} FORCE_REQUIRE+= OpenEXR -LIB_DEPENDS+= libIlmImf.so:${PORTSDIR}/graphics/OpenEXR -PLIST_SUB+= OPENEXR="" .else FORCE_IGNORE+= OpenEXR -PLIST_SUB+= OPENEXR="@comment " .endif .if ${PORT_OPTIONS:MFFMPEG} FORCE_REQUIRE+= FFmpeg -LIB_DEPENDS+= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg -PLIST_SUB+= FFMPEG="" .else FORCE_IGNORE+= FFmpeg -PLIST_SUB+= FFMPEG="@comment " .endif .if ${PORT_OPTIONS:MSDL} FORCE_REQUIRE+= SDL -USE_SDL= sdl .else FORCE_IGNORE+= SDL .endif +.if ${PORT_OPTIONS:MNVTT} +FORCE_REQUIRE+= NVTT +.else +FORCE_IGNORE+= NVTT +.endif + +.if ${PORT_OPTIONS:MLUA} +FORCE_REQUIRE+= Lua51 +.else +FORCE_IGNORE+= Lua51 +.endif + +.if ${PORT_OPTIONS:MV8} +FORCE_REQUIRE+= V8 +.else +FORCE_IGNORE+= V8 +.endif + +.if ${PORT_OPTIONS:MPYTHON} +FORCE_REQUIRE+= PythonLibs +.else +FORCE_IGNORE+= PythonLibs +.endif + # options that affect PKG_CHECK_MODULES .if ${PORT_OPTIONS:MSVG} FORCE_REQUIRE+= RSVG -LIB_DEPENDS+= librsvg-2.so:${PORTSDIR}/graphics/librsvg2 -PLIST_SUB+= SVG="" .else FORCE_IGNORE+= RSVG -PLIST_SUB+= SVG="@comment " .endif .if ${PORT_OPTIONS:MPDF} FORCE_REQUIRE+= Poppler-glib -LIB_DEPENDS+= libpoppler-glib.so:${PORTSDIR}/graphics/poppler-glib -PLIST_SUB+= PDF="" .else FORCE_IGNORE+= Poppler-glib -PLIST_SUB+= PDF="@comment " .endif .if ${PORT_OPTIONS:MSVG} || ${PORT_OPTIONS:MPDF} -LIB_DEPENDS+= libcairo.so:${PORTSDIR}/graphics/cairo +USE_GNOME= cairo .endif # other options .if ${PORT_OPTIONS:MXRANDR} -CMAKE_ARGS+= -DOSGVIEWER_USE_XRANDR:BOOL=ON USE_XORG+= xrandr -.else -CMAKE_ARGS+= -DOSGVIEWER_USE_XRANDR:BOOL=OFF -.endif - -.if ${PORT_OPTIONS:MXRANDR} -CMAKE_ARGS+= -DOSGVIEWER_USE_XRANDR:BOOL=ON -USE_XORG+= xrandr -.else -CMAKE_ARGS+= -DOSGVIEWER_USE_XRANDR:BOOL=OFF .endif post-patch: Modified: head/graphics/osg-devel/distinfo ============================================================================== --- head/graphics/osg-devel/distinfo Fri Jan 24 01:01:53 2014 (r340873) +++ head/graphics/osg-devel/distinfo Fri Jan 24 01:22:59 2014 (r340874) @@ -1,2 +1,2 @@ -SHA256 (OpenSceneGraph-3.1.3.zip) = 59a5fecd19aa3c642309363a6c355bc6984615f3b1eb1a1545bfb14cc22f9de9 -SIZE (OpenSceneGraph-3.1.3.zip) = 7218005 +SHA256 (OpenSceneGraph-3.3.0.zip) = 55224da955d58705d1cf9ec46a4129f29e8f37e69f4e9430c28f978594e1a5c6 +SIZE (OpenSceneGraph-3.3.0.zip) = 7627299 Modified: head/graphics/osg-devel/files/patch-CMakeLists.txt ============================================================================== --- head/graphics/osg-devel/files/patch-CMakeLists.txt Fri Jan 24 01:01:53 2014 (r340873) +++ head/graphics/osg-devel/files/patch-CMakeLists.txt Fri Jan 24 01:22:59 2014 (r340874) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2009-05-22 12:31:58.000000000 +0400 -+++ CMakeLists.txt 2009-06-25 17:51:06.000000000 +0400 -@@ -486,7 +486,7 @@ +--- CMakeLists.txt.orig 2011-07-31 11:50:34.000000000 +0400 ++++ CMakeLists.txt 2012-03-05 05:54:52.485029323 +0400 +@@ -588,7 +588,7 @@ IF(UNIX AND NOT WIN32 AND NOT APPLE) IF(CMAKE_SIZEOF_VOID_P MATCHES "8") @@ -9,7 +9,7 @@ MARK_AS_ADVANCED(LIB_POSTFIX) ENDIF() ENDIF() -@@ -822,7 +822,7 @@ +@@ -972,7 +972,7 @@ ${PROJECT_BINARY_DIR}/packaging/pkgconfig/${PKGCONFIG_FILE}.pc @ONLY ) Added: head/graphics/osg-devel/files/patch-CMakeModules-FindGTA.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/osg-devel/files/patch-CMakeModules-FindGTA.cmake Fri Jan 24 01:22:59 2014 (r340874) @@ -0,0 +1,25 @@ +--- CMakeModules/FindGTA.cmake.orig 2014-01-19 17:46:13.693927259 +0400 ++++ CMakeModules/FindGTA.cmake 2014-01-19 18:38:17.868997891 +0400 +@@ -8,16 +8,6 @@ + # correspond to the ./configure --prefix=$GTA_DIR + # used in building libgta. + +-INCLUDE(FindPkgConfig OPTIONAL) +- +-IF(PKG_CONFIG_FOUND) +- +- INCLUDE(FindPkgConfig) +- +- PKG_CHECK_MODULES(GTA gta) +- +-ELSE(PKG_CONFIG_FOUND) +- + FIND_PATH(GTA_INCLUDE_DIRS gta/gta.hpp + $ENV{GTA_DIR}/include + $ENV{GTA_DIR} +@@ -52,5 +42,3 @@ + IF(GTA_LIBRARIES AND GTA_INCLUDE_DIRS) + SET(GTA_FOUND "YES") + ENDIF(GTA_LIBRARIES AND GTA_INCLUDE_DIRS) +- +-ENDIF(PKG_CONFIG_FOUND) Modified: head/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.cpp ============================================================================== --- head/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.cpp Fri Jan 24 01:01:53 2014 (r340873) +++ head/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.cpp Fri Jan 24 01:22:59 2014 (r340874) @@ -1,5 +1,5 @@ ---- src/OpenThreads/pthreads/PThread.cpp.orig 2009-11-20 13:27:43.000000000 +0300 -+++ src/OpenThreads/pthreads/PThread.cpp 2009-12-15 20:26:51.000000000 +0300 +--- src/OpenThreads/pthreads/PThread.cpp.orig 2011-06-24 00:09:26.000000000 +0400 ++++ src/OpenThreads/pthreads/PThread.cpp 2012-03-05 05:57:02.886704932 +0400 @@ -21,6 +21,7 @@ #include #include @@ -7,8 +7,8 @@ +#include #include - #if defined __linux || defined __sun || defined __APPLE__ -@@ -123,7 +124,7 @@ + #if defined __linux || defined __sun || defined __APPLE__ || ANDROID +@@ -136,7 +137,7 @@ #if defined(__sgi) pthread_setrunon_np( pd->cpunum ); #elif defined(HAVE_PTHREAD_SETAFFINITY_NP) || defined(HAVE_THREE_PARAM_SCHED_SETAFFINITY) || defined(HAVE_TWO_PARAM_SCHED_SETAFFINITY) @@ -17,7 +17,7 @@ CPU_ZERO( &cpumask ); CPU_SET( pd->cpunum, &cpumask ); -@@ -539,7 +540,7 @@ +@@ -569,7 +570,7 @@ if (pd->isRunning && Thread::CurrentThread()==this) { @@ -26,7 +26,7 @@ CPU_ZERO( &cpumask ); CPU_SET( pd->cpunum, &cpumask ); #if defined(HAVE_PTHREAD_SETAFFINITY_NP) -@@ -969,7 +970,7 @@ +@@ -1031,7 +1032,7 @@ else { #if defined(HAVE_PTHREAD_SETAFFINITY_NP) || defined(HAVE_THREE_PARAM_SCHED_SETAFFINITY) || defined(HAVE_TWO_PARAM_SCHED_SETAFFINITY) @@ -34,4 +34,4 @@ + cpuset_t cpumask; CPU_ZERO( &cpumask ); CPU_SET( cpunum, &cpumask ); - + #if defined(HAVE_PTHREAD_SETAFFINITY_NP) Modified: head/graphics/osg-devel/pkg-plist ============================================================================== --- head/graphics/osg-devel/pkg-plist Fri Jan 24 01:01:53 2014 (r340873) +++ head/graphics/osg-devel/pkg-plist Fri Jan 24 01:22:59 2014 (r340874) @@ -34,7 +34,6 @@ include/osg/BoundsChecking include/osg/BufferIndexBinding include/osg/BufferObject include/osg/Camera -include/osg/CameraNode include/osg/CameraView include/osg/ClampColor include/osg/ClearNode @@ -112,6 +111,7 @@ include/osg/OccluderNode include/osg/OcclusionQueryNode include/osg/OperationThread include/osg/PagedLOD +include/osg/PatchParameter include/osg/Plane include/osg/Point include/osg/PointSprite @@ -120,6 +120,7 @@ include/osg/PolygonOffset include/osg/PolygonStipple include/osg/Polytope include/osg/PositionAttitudeTransform +include/osg/PrimitiveRestartIndex include/osg/PrimitiveSet include/osg/Program include/osg/Projection @@ -127,7 +128,9 @@ include/osg/ProxyNode include/osg/Quat include/osg/Referenced include/osg/RenderInfo +include/osg/SampleMaski include/osg/Scissor +include/osg/ScriptEngine include/osg/Sequence include/osg/ShadeModel include/osg/Shader @@ -157,6 +160,7 @@ include/osg/Texture2D include/osg/Texture2DArray include/osg/Texture2DMultisample include/osg/Texture3D +include/osg/TextureBuffer include/osg/TextureCubeMap include/osg/TextureRectangle include/osg/Timer @@ -171,18 +175,29 @@ include/osg/Vec2 include/osg/Vec2b include/osg/Vec2d include/osg/Vec2f +include/osg/Vec2i include/osg/Vec2s +include/osg/Vec2ub +include/osg/Vec2ui +include/osg/Vec2us include/osg/Vec3 include/osg/Vec3b include/osg/Vec3d include/osg/Vec3f +include/osg/Vec3i include/osg/Vec3s +include/osg/Vec3ub +include/osg/Vec3ui +include/osg/Vec3us include/osg/Vec4 include/osg/Vec4b include/osg/Vec4d include/osg/Vec4f +include/osg/Vec4i include/osg/Vec4s include/osg/Vec4ub +include/osg/Vec4ui +include/osg/Vec4us include/osg/Version include/osg/VertexProgram include/osg/View @@ -288,6 +303,7 @@ include/osgFX/Version include/osgGA/AnimationPathManipulator include/osgGA/CameraManipulator include/osgGA/CameraViewSwitchManipulator +include/osgGA/Device include/osgGA/DriveManipulator include/osgGA/EventQueue include/osgGA/EventVisitor @@ -379,12 +395,36 @@ include/osgParticle/SmokeTrailEffect include/osgParticle/VariableRateCounter include/osgParticle/Version include/osgParticle/range +include/osgPresentation/Action include/osgPresentation/AnimationMaterial +include/osgPresentation/Audio include/osgPresentation/CompileSlideCallback +include/osgPresentation/Cursor +include/osgPresentation/Element include/osgPresentation/Export +include/osgPresentation/Group +include/osgPresentation/Image +include/osgPresentation/KeyEventHandler +include/osgPresentation/Layer +include/osgPresentation/Model +include/osgPresentation/Movie include/osgPresentation/PickEventHandler +include/osgPresentation/Presentation +include/osgPresentation/PropertyManager +include/osgPresentation/Section +include/osgPresentation/Slide include/osgPresentation/SlideEventHandler include/osgPresentation/SlideShowConstructor +include/osgPresentation/Text +include/osgPresentation/Timeout +include/osgPresentation/Volume +%%QT4%%include/osgQt/Export +%%QT4%%include/osgQt/GraphicsWindowQt +%%QT4%%include/osgQt/QFontImplementation +%%QT4%%include/osgQt/QGraphicsViewAdapter +%%QT4%%include/osgQt/QWebViewImage +%%QT4%%include/osgQt/QWidgetImage +include/osgDB/PropertyInterface include/osgShadow/ConvexPolyhedron include/osgShadow/DebugShadowMap include/osgShadow/Export @@ -474,6 +514,7 @@ include/osgUtil/PlaneIntersector include/osgUtil/PolytopeIntersector include/osgUtil/PositionalStateContainer include/osgUtil/PrintVisitor +include/osgUtil/RayIntersector include/osgUtil/ReflectionMapGenerator include/osgUtil/RenderBin include/osgUtil/RenderLeaf @@ -496,6 +537,7 @@ include/osgUtil/Version include/osgViewer/CompositeViewer include/osgViewer/Export include/osgViewer/GraphicsWindow +include/osgViewer/Keystone include/osgViewer/Renderer include/osgViewer/Scene include/osgViewer/Version @@ -567,6 +609,9 @@ lib/libosgParticle.so.%%OSG_SHLIBVER%% lib/libosgPresentation.so lib/libosgPresentation.so.%%OSG_VERSION%% lib/libosgPresentation.so.%%OSG_SHLIBVER%% +%%QT4%%lib/libosgQt.so +%%QT4%%lib/libosgQt.so.%%OSG_VERSION%% +%%QT4%%lib/libosgQt.so.%%OSG_SHLIBVER%% lib/libosgShadow.so lib/libosgShadow.so.%%OSG_VERSION%% lib/libosgShadow.so.%%OSG_SHLIBVER%% @@ -618,24 +663,28 @@ lib/osgPlugins-%%OSG_VERSION%%/osgdb_dxf %%FFMPEG%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_ffmpeg.so %%FREETYPE%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_freetype.so %%GDAL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gdal.so -lib/osgPlugins-%%OSG_VERSION%%/osgdb_geo.so %%GIF%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gif.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_glsl.so +%%GTA%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_gta.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_gz.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_hdr.so %%INVENTOR%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_iv.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_ive.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_jpeg.so %%JASPER%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_jp2.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_ktx.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_logo.so +%%LUA%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_lua.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_lwo.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_lws.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_md2.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_mdl.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_normals.so +%%NVTT%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_nvtt.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_obj.so %%GDAL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_ogr.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_openflight.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_osc.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_osg.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_osga.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_osgshadow.so @@ -650,6 +699,8 @@ lib/osgPlugins-%%OSG_VERSION%%/osgdb_png lib/osgPlugins-%%OSG_VERSION%%/osgdb_pnm.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_pov.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_pvr.so +%%PYTHON%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_python.so +%%QT4%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_qfont.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_revisions.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_rgb.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_rot.so @@ -657,13 +708,17 @@ lib/osgPlugins-%%OSG_VERSION%%/osgdb_sca lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osg.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osganimation.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgfx.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgga.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgmanipulator.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgparticle.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgpresentation.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgshadow.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgsim.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgterrain.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgtext.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgviewer.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_serializers_osgvolume.so +%%SDL%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_sdl.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_shp.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_stl.so %%SVG%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_svg.so @@ -671,10 +726,11 @@ lib/osgPlugins-%%OSG_VERSION%%/osgdb_tga lib/osgPlugins-%%OSG_VERSION%%/osgdb_tgz.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_tiff.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_trans.so +lib/osgPlugins-%%OSG_VERSION%%/osgdb_trk.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_txf.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_txp.so +%%V8%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_v8.so %%VNC%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_vnc.so -%%OPENVRML%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_vrml.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_vtf.so lib/osgPlugins-%%OSG_VERSION%%/osgdb_x.so %%XINE%%lib/osgPlugins-%%OSG_VERSION%%/osgdb_xine.so @@ -686,6 +742,7 @@ libdata/pkgconfig/openscenegraph-osgFX.p libdata/pkgconfig/openscenegraph-osgGA.pc libdata/pkgconfig/openscenegraph-osgManipulator.pc libdata/pkgconfig/openscenegraph-osgParticle.pc +%%QT4%%libdata/pkgconfig/openscenegraph-osgQt.pc libdata/pkgconfig/openscenegraph-osgShadow.pc libdata/pkgconfig/openscenegraph-osgSim.pc libdata/pkgconfig/openscenegraph-osgTerrain.pc @@ -707,6 +764,7 @@ libdata/pkgconfig/openthreads.pc @dirrm include/osgTerrain @dirrm include/osgSim @dirrm include/osgShadow +%%QT4%%@dirrm include/osgQt @dirrm include/osgPresentation @dirrm include/osgParticle @dirrm include/osgManipulator From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 01:25:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 946A36E3; Fri, 24 Jan 2014 01:25:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7FFEE1291; Fri, 24 Jan 2014 01:25:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O1PcP7065307; Fri, 24 Jan 2014 01:25:38 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O1PcNR065306; Fri, 24 Jan 2014 01:25:38 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201401240125.s0O1PcNR065306@svn.freebsd.org> From: Dmitry Marakasov Date: Fri, 24 Jan 2014 01:25:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340875 - head/graphics/py-pyglet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 01:25:38 -0000 Author: amdmi3 Date: Fri Jan 24 01:25:37 2014 New Revision: 340875 URL: http://svnweb.freebsd.org/changeset/ports/340875 QAT: https://qat.redports.org/buildarchive/r340875/ Log: - Add dependency on avbin - Install more docs PR: 182517 Submitted by: nemysis Modified: head/graphics/py-pyglet/Makefile Modified: head/graphics/py-pyglet/Makefile ============================================================================== --- head/graphics/py-pyglet/Makefile Fri Jan 24 01:22:59 2014 (r340874) +++ head/graphics/py-pyglet/Makefile Fri Jan 24 01:25:37 2014 (r340875) @@ -3,7 +3,7 @@ PORTNAME= pyglet PORTVERSION= 1.1.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics multimedia x11-toolkits python MASTER_SITES= GOOGLE_CODE PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,8 @@ COMMENT= Cross-platform windowing and mu LICENSE= BSD LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ - libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ +RUN_DEPENDS= ${LOCALBASE}/lib/libavbin.so:${PORTSDIR}/multimedia/avbin USE_PYTHON= yes USE_PYDISTUTILS=yes @@ -33,6 +34,8 @@ IGNORE= crashes or doesn't work on !i38 .endif post-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} CHANGELOG NOTICE README ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/ From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 03:20:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 74102717; Fri, 24 Jan 2014 03:20:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F4051D15; Fri, 24 Jan 2014 03:20:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O3KOjH011274; Fri, 24 Jan 2014 03:20:24 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O3KNZF011271; Fri, 24 Jan 2014 03:20:23 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201401240320.s0O3KNZF011271@svn.freebsd.org> From: Eitan Adler Date: Fri, 24 Jan 2014 03:20:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340876 - head/x11/xbindkeys X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 03:20:24 -0000 Author: eadler Date: Fri Jan 24 03:20:23 2014 New Revision: 340876 URL: http://svnweb.freebsd.org/changeset/ports/340876 QAT: https://qat.redports.org/buildarchive/r340876/ Log: Update to 1.8.6 Modified: head/x11/xbindkeys/Makefile head/x11/xbindkeys/distinfo Modified: head/x11/xbindkeys/Makefile ============================================================================== --- head/x11/xbindkeys/Makefile Fri Jan 24 01:25:37 2014 (r340875) +++ head/x11/xbindkeys/Makefile Fri Jan 24 03:20:23 2014 (r340876) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xbindkeys -PORTVERSION= 1.8.5 +PORTVERSION= 1.8.6 CATEGORIES= x11 MASTER_SITES= http://www.nongnu.org/xbindkeys/ Modified: head/x11/xbindkeys/distinfo ============================================================================== --- head/x11/xbindkeys/distinfo Fri Jan 24 01:25:37 2014 (r340875) +++ head/x11/xbindkeys/distinfo Fri Jan 24 03:20:23 2014 (r340876) @@ -1,2 +1,2 @@ -SHA256 (xbindkeys-1.8.5.tar.gz) = d62f78709406971e9630bf8a94df7572b0d1df1934afdec37cd8fb64e4f6fc81 -SIZE (xbindkeys-1.8.5.tar.gz) = 138179 +SHA256 (xbindkeys-1.8.6.tar.gz) = 6c0d18be19fc19ab9b4595edf3a23c0a6946c8a5eb5c1bc395471c8f9a710d18 +SIZE (xbindkeys-1.8.6.tar.gz) = 151941 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 05:05:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBB4DEC8; Fri, 24 Jan 2014 05:05:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C71F81423; Fri, 24 Jan 2014 05:05:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O55bBw050005; Fri, 24 Jan 2014 05:05:37 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O55buw050001; Fri, 24 Jan 2014 05:05:37 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201401240505.s0O55buw050001@svn.freebsd.org> From: Eitan Adler Date: Fri, 24 Jan 2014 05:05:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340877 - in head: security/vuxml www/linux-f10-flashplugin11 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 05:05:38 -0000 Author: eadler Date: Fri Jan 24 05:05:36 2014 New Revision: 340877 URL: http://svnweb.freebsd.org/changeset/ports/340877 QAT: https://qat.redports.org/buildarchive/r340877/ Log: Update flash to 11.2r202.335 Report security issues PR: ports/185790 Reported by: Tsurutani Naoki Modified: head/security/vuxml/vuln.xml head/www/linux-f10-flashplugin11/Makefile head/www/linux-f10-flashplugin11/distinfo Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Jan 24 03:20:23 2014 (r340876) +++ head/security/vuxml/vuln.xml Fri Jan 24 05:05:36 2014 (r340877) @@ -51,6 +51,34 @@ Note: Please add new entries to the beg --> + + linux-flashplugin -- multiple vulnerabilities + + + linux-f10-flashplugin + 11.2r202.335 + + + + +

Adobe reports:

+
+

These updates address vulnerabilities that could cause a crash + and potentially allow an attacker to take control of the affected system.

+
+ +
+ + CVE-2014-0491 + CVE-2014-0492 + http://helpx.adobe.com/security/products/flash-player/apsb14-02.html + + + 2014-01-14 + 2014-01-24 + +
+ HTMLDOC -- buffer overflow issues when reading AFM files and parsing page sizes Modified: head/www/linux-f10-flashplugin11/Makefile ============================================================================== --- head/www/linux-f10-flashplugin11/Makefile Fri Jan 24 03:20:23 2014 (r340876) +++ head/www/linux-f10-flashplugin11/Makefile Fri Jan 24 05:05:36 2014 (r340877) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= flashplugin -PORTVERSION= 11.2r202.327 -PORTREVISION= 1 +PORTVERSION= 11.2r202.335 CATEGORIES= www multimedia linux MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:C/r/\./}/:plugin \ LOCAL/nox:suplib Modified: head/www/linux-f10-flashplugin11/distinfo ============================================================================== --- head/www/linux-f10-flashplugin11/distinfo Fri Jan 24 03:20:23 2014 (r340876) +++ head/www/linux-f10-flashplugin11/distinfo Fri Jan 24 05:05:36 2014 (r340877) @@ -1,4 +1,4 @@ -SHA256 (flashplugin/11.2r202.327/install_flash_player_11_linux.i386.tar.gz) = 1fbbadf17c86b3fd52bbf1df299f52c0b2eb7a0b9aca1d55756bc884c9270f62 -SIZE (flashplugin/11.2r202.327/install_flash_player_11_linux.i386.tar.gz) = 6923587 -SHA256 (flashplugin/11.2r202.327/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/11.2r202.327/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 +SHA256 (flashplugin/11.2r202.335/install_flash_player_11_linux.i386.tar.gz) = 71d403cdca7a0a13a37c024da28d8e07d765290e1df0e1b1e05482a7d4a27d46 +SIZE (flashplugin/11.2r202.335/install_flash_player_11_linux.i386.tar.gz) = 6923385 +SHA256 (flashplugin/11.2r202.335/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf +SIZE (flashplugin/11.2r202.335/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 05:40:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6D72C4B6; Fri, 24 Jan 2014 05:40:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 59FF9168C; Fri, 24 Jan 2014 05:40:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O5erWg064112; Fri, 24 Jan 2014 05:40:53 GMT (envelope-from ohauer@svn.freebsd.org) Received: (from ohauer@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O5erbK064111; Fri, 24 Jan 2014 05:40:53 GMT (envelope-from ohauer@svn.freebsd.org) Message-Id: <201401240540.s0O5erbK064111@svn.freebsd.org> From: Olli Hauer Date: Fri, 24 Jan 2014 05:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340878 - head/graphics/py-pyglet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 05:40:53 -0000 Author: ohauer Date: Fri Jan 24 05:40:52 2014 New Revision: 340878 URL: http://svnweb.freebsd.org/changeset/ports/340878 QAT: https://qat.redports.org/buildarchive/r340878/ Log: - fix INDEX building (remove forgotten \ in r340875) Modified: head/graphics/py-pyglet/Makefile Modified: head/graphics/py-pyglet/Makefile ============================================================================== --- head/graphics/py-pyglet/Makefile Fri Jan 24 05:05:36 2014 (r340877) +++ head/graphics/py-pyglet/Makefile Fri Jan 24 05:40:52 2014 (r340878) @@ -14,7 +14,7 @@ COMMENT= Cross-platform windowing and mu LICENSE= BSD LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ - libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig RUN_DEPENDS= ${LOCALBASE}/lib/libavbin.so:${PORTSDIR}/multimedia/avbin USE_PYTHON= yes From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 06:35:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 277F7994; Fri, 24 Jan 2014 06:35:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1447619AB; Fri, 24 Jan 2014 06:35:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O6ZTlU083870; Fri, 24 Jan 2014 06:35:29 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O6ZTil083868; Fri, 24 Jan 2014 06:35:29 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201401240635.s0O6ZTil083868@svn.freebsd.org> From: Alex Kozlov Date: Fri, 24 Jan 2014 06:35:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340879 - head/security/dropbear X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 06:35:30 -0000 Author: ak Date: Fri Jan 24 06:35:29 2014 New Revision: 340879 URL: http://svnweb.freebsd.org/changeset/ports/340879 QAT: https://qat.redports.org/buildarchive/r340879/ Log: - Update to 2013.62 Modified: head/security/dropbear/Makefile head/security/dropbear/distinfo Modified: head/security/dropbear/Makefile ============================================================================== --- head/security/dropbear/Makefile Fri Jan 24 05:40:52 2014 (r340878) +++ head/security/dropbear/Makefile Fri Jan 24 06:35:29 2014 (r340879) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dropbear -PORTVERSION= 2013.60 +PORTVERSION= 2013.62 CATEGORIES= security ipv6 MASTER_SITES= http://matt.ucc.asn.au/dropbear/releases/ Modified: head/security/dropbear/distinfo ============================================================================== --- head/security/dropbear/distinfo Fri Jan 24 05:40:52 2014 (r340878) +++ head/security/dropbear/distinfo Fri Jan 24 06:35:29 2014 (r340879) @@ -1,2 +1,2 @@ -SHA256 (dropbear-2013.60.tar.bz2) = 4c0c52453b4dd96ef79e5968ed3676de008ee0cf133632acae12bbad588681bb -SIZE (dropbear-2013.60.tar.bz2) = 1584837 +SHA256 (dropbear-2013.62.tar.bz2) = c6656302bbcc54b0a9c361f505822f6994039117ec32d2897ead3364da079ffa +SIZE (dropbear-2013.62.tar.bz2) = 1598084 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 07:02:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3326CD06; Fri, 24 Jan 2014 07:02:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1EEDB1B63; Fri, 24 Jan 2014 07:02:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O726C9094732; Fri, 24 Jan 2014 07:02:06 GMT (envelope-from matthew@svn.freebsd.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O726EK094729; Fri, 24 Jan 2014 07:02:06 GMT (envelope-from matthew@svn.freebsd.org) Message-Id: <201401240702.s0O726EK094729@svn.freebsd.org> From: Matthew Seaman Date: Fri, 24 Jan 2014 07:02:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340880 - head/textproc/sphinxsearch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 07:02:07 -0000 Author: matthew Date: Fri Jan 24 07:02:06 2014 New Revision: 340880 URL: http://svnweb.freebsd.org/changeset/ports/340880 QAT: https://qat.redports.org/buildarchive/r340880/ Log: Update to 4.1.5 Announcement: http://sphinxsearch.com/blog/2014/01/23/sphinx-2-1-5-release-and-sphinx-2-0-10-release/ Modified: head/textproc/sphinxsearch/Makefile head/textproc/sphinxsearch/distinfo Modified: head/textproc/sphinxsearch/Makefile ============================================================================== --- head/textproc/sphinxsearch/Makefile Fri Jan 24 06:35:29 2014 (r340879) +++ head/textproc/sphinxsearch/Makefile Fri Jan 24 07:02:06 2014 (r340880) @@ -6,7 +6,7 @@ # See http://www.infracaninophile.co.uk/articles/sphinxse.html PORTNAME= sphinxsearch -PORTVERSION= 2.1.4 +PORTVERSION= 2.1.5 CATEGORIES= textproc databases MASTER_SITES= http://sphinxsearch.com/files/ \ http://snowball.tartarus.org/dist/:libstemmer Modified: head/textproc/sphinxsearch/distinfo ============================================================================== --- head/textproc/sphinxsearch/distinfo Fri Jan 24 06:35:29 2014 (r340879) +++ head/textproc/sphinxsearch/distinfo Fri Jan 24 07:02:06 2014 (r340880) @@ -1,4 +1,4 @@ -SHA256 (sphinx-2.1.4-release.tar.gz) = d57b97f39ed302da68399e55363e8c69a299ddddc20573995c8e4897c1b1e434 -SIZE (sphinx-2.1.4-release.tar.gz) = 2410073 +SHA256 (sphinx-2.1.5-release.tar.gz) = a69ed011c0ae993582d5c4cb902469fb4797c26e3143abbad63827f054a19f72 +SIZE (sphinx-2.1.5-release.tar.gz) = 2414784 SHA256 (libstemmer_c.tgz) = 5adcf6432fd3d5ba51c8674d833d851b5aa6e532d52ff95e57102033edcd285f SIZE (libstemmer_c.tgz) = 129496 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 07:04:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A436E1A; Fri, 24 Jan 2014 07:04:59 +0000 (UTC) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C39691C7D; Fri, 24 Jan 2014 07:04:58 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [81.2.117.99]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.7/8.14.7) with ESMTP id s0O74ptA000906 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 24 Jan 2014 07:04:52 GMT (envelope-from matthew@FreeBSD.org) DKIM-Filter: OpenDKIM Filter v2.8.3 smtp.infracaninophile.co.uk s0O74ptA000906 Authentication-Results: smtp.infracaninophile.co.uk/s0O74ptA000906; dkim=none reason="no signature"; dkim-adsp=none Message-ID: <52E21085.4020705@FreeBSD.org> Date: Fri, 24 Jan 2014 07:04:37 +0000 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340880 - head/textproc/sphinxsearch References: <201401240702.s0O726EK094729@svn.freebsd.org> In-Reply-To: <201401240702.s0O726EK094729@svn.freebsd.org> X-Enigmail-Version: 1.6 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="RxKPrp0vWGW51w5GKDJ4VvWB7LIfH9UBG" X-Virus-Scanned: clamav-milter 0.98 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-1.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DCC_CHECK autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 07:04:59 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --RxKPrp0vWGW51w5GKDJ4VvWB7LIfH9UBG Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 24/01/2014 07:02, Matthew Seaman wrote: > Author: matthew > Date: Fri Jan 24 07:02:06 2014 > New Revision: 340880 > URL: http://svnweb.freebsd.org/changeset/ports/340880 > QAT: https://qat.redports.org/buildarchive/r340880/ >=20 > Log: > Update to 4.1.5 Errr.... update to 2.1.5. Ooops Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --RxKPrp0vWGW51w5GKDJ4VvWB7LIfH9UBG Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.20 (Darwin) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQJ8BAEBCgBmBQJS4hCSXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ2NTNBNjhCOTEzQTRFNkNGM0UxRTEzMjZC QjIzQUY1MThFMUE0MDEzAAoJELsjr1GOGkATi24P/i2jvmGOSZa7CStZfzZYTRUj xEqqXMYd1d7KM5Gaez5bQ0zDaY62C3POjh4ImoN8miQ07jDay5F2nSywWa+4hcgJ m+fgQqo2OxZ2PeLqEcTsb9sP94ZMlR9IwzKTZli0yDmbX5r1tBma+xMiy9iAQOud D9wrWtqH9WFQMt2cFsb8IXWRufNshiVzPqAodojeJHUAmRyRVmZCBCzD1MQWHVKX 0f/3dGAtOKkiX7iUH0+DPOv5KfbKsrz6PpESiCUUULZ9M87v7EvrkmMpu1j2n5Ob mu6Q8hOF7zoHCc9T0EUeRnpk0GKkVbYTpBhaoZpVDcrLwQbU/gVb88Gunqoq1UvB e+mKof6FiayJBlyhbom1uf6wtkJ//uk3gjL/p6yAXE4YUNwjrfp32O8pajCN6P1L 8IRuqJQuQm1PvNqp9BWvdTwvQKSRQwfDp6N60bWGg675MQwJzg2dG+zcvja4Byc/ Zz5DY/gg75NL68aDJ6xwyCjze8ixLJvkVnJORIvtj9D6oWmGlZpcJ0gp4xCHE6xr hnA4C+zHYBqIOmwRPPi7mOpJ7FswZeiUSj6BOEM90KxmGMhBtdBNIJ3jbk+AiPBR 2mjJaPnIuxbRl7ePyMnd05Pr40pNw3u2Um3pvvLzIg/tu4wSInKUPhuYKKPhgO37 pLzFgI2wfvYaGJPWL8Q5 =dtoE -----END PGP SIGNATURE----- --RxKPrp0vWGW51w5GKDJ4VvWB7LIfH9UBG-- From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 07:25:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82DCC221; Fri, 24 Jan 2014 07:25:58 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [IPv6:2a01:4f8:141:5ffd::25]) by mx1.freebsd.org (Postfix) with ESMTP id 405CC1DA9; Fri, 24 Jan 2014 07:25:58 +0000 (UTC) Received: from scn-lan63.snowcn.snow.nl (gw.snow.nl [213.154.248.74]) by mail.jr-hosting.nl (Postfix) with ESMTPSA id 201483F623; Fri, 24 Jan 2014 08:25:55 +0100 (CET) Content-Type: multipart/signed; boundary="Apple-Mail=_F095F046-22CD-434F-B293-F2226E4F4B0C"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: svn commit: r340819 - head/security/vuxml From: Remko Lodder In-Reply-To: <52E19A89.1080700@FreeBSD.org> Date: Fri, 24 Jan 2014 08:25:54 +0100 Message-Id: <3AB46F29-CD84-4E4B-949B-CB99CFDC572D@FreeBSD.org> References: <201401231003.s0NA3XaT070054@svn.freebsd.org> <52E17557.3040208@FreeBSD.org> <0231531E-F8BA-4053-B2DC-C1CD081309DB@FreeBSD.org> <52E19A89.1080700@FreeBSD.org> To: Matthias Andree X-Mailer: Apple Mail (2.1827) 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.17 Precedence: list List-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, 24 Jan 2014 07:25:58 -0000 --Apple-Mail=_F095F046-22CD-434F-B293-F2226E4F4B0C Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=iso-8859-1 On 23 Jan 2014, at 23:41, Matthias Andree wrote: > Am 23.01.2014 22:24, schrieb Remko Lodder: >=20 >> Make validate checks whether the correct tags had been used at the = right places. >> Documentation follows the FDP primer, which states how this works. = Perhaps >> igor can be used to suggest a better strategy, most of the desired = format is >> already included, all you have to do is properly fill it in, or = sneakpeak at >> an already written entry. >=20 > It's not the "I can" but that we'd as a whole be more productive if I > could verify the style, or even better have it automatically = reformatted > to style (of course your ellipsis removal is another thing that = requires > a manual step), and then commit a properly styled entry. >=20 > With a very strong inclination towards "reformat", surely there must = be > some tweakable XML formatter in ports that we can beat into shape. >=20 >=20 Sure, someone[tm] might be able to do just that ;-). I welcome to review and test patches that will work this out. But I do not have the time nor focus at the moment to do that work. And yes I agree that things to make it easier are welcomed and might lower the bar, but then again we do not have that (yet?) and until that time we need to work with what we have and how things have been going for the last period of time. Cheers remko --=20 /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_F095F046-22CD-434F-B293-F2226E4F4B0C Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJS4hWCAAoJEKjD27JZ84ywgUUP/0v2WlvXtYPNjLKa7bTHCcP8 0UgAXgNzws4heKWlzM1UEiyA73ZrtbFbNr2a4rXy1Q3Gc0Iz6es/g8AkLuh9p9UD mDEHSi9KK6LUCKuwgO52bFQv8ONIAP4jQCm+h2xQa4u6OrTd11l54rbcO7hT7yis KkL3A0lOpTVcMLFmnBSKMXQFMkD1+GaxmaU5YnJwlOiuLXA53uQiwgIGYIcvG5hX ldxIddj61yMMSbVC6Gtc3p4x7PuYoe74EHNlrlWVO28qAH4gcm2Uwe7s4G5TuUkC JtVssCmLsTAm5glDqSBbL417fvPdv+TG3zQYhwSgUwwHaDBwktuNjmm3la0D5/ja UuZrm98Noi7YiWzTYthOa59BE/2W8u5uV5+C1zbqD3gurMOEWY5P7roSm2x6PTeL igYrpntGL2VDhCI/nWOZ1VAjAI5GCoss02CK0GYR+IbVE0KWLiV6hFb9JBY7ZPar E2YOxX0mFkdj0a4FYxpdVg98XpCPWbp5M2TJRe5nfuePIclME1/XxGMw+EetsowE GF3qhOHz4bU86+4qO8jaIzJuBUa0gTm13eCEWD3XPQu/8RQ9/p35uAn03oOEDtuP l/xFeBqyOHQwH3JNQiShyoqw1bHiEmN0HJV9WaSiFys6sJxmIfRySbtaFPXo7csm eTeoHszL1NR6rtvZsBs+ =vrhX -----END PGP SIGNATURE----- --Apple-Mail=_F095F046-22CD-434F-B293-F2226E4F4B0C-- From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 07:58:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E1664EC; Fri, 24 Jan 2014 07:58:21 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [78.47.69.234]) by mx1.freebsd.org (Postfix) with ESMTP id 848B41FBF; Fri, 24 Jan 2014 07:58:20 +0000 (UTC) Received: from scn-lan63.snowcn.snow.nl (gw.snow.nl [213.154.248.74]) by mail.jr-hosting.nl (Postfix) with ESMTPSA id 380BE3F486; Fri, 24 Jan 2014 08:58:11 +0100 (CET) Content-Type: multipart/signed; boundary="Apple-Mail=_7C2CD859-C3D3-455C-A229-FE617194504D"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: svn commit: r340819 - head/security/vuxml From: Remko Lodder In-Reply-To: <3AB46F29-CD84-4E4B-949B-CB99CFDC572D@FreeBSD.org> Date: Fri, 24 Jan 2014 08:58:09 +0100 Message-Id: References: <201401231003.s0NA3XaT070054@svn.freebsd.org> <52E17557.3040208@FreeBSD.org> <0231531E-F8BA-4053-B2DC-C1CD081309DB@FreeBSD.org> <52E19A89.1080700@FreeBSD.org> <3AB46F29-CD84-4E4B-949B-CB99CFDC572D@FreeBSD.org> To: Matthias Andree , Warren Block X-Mailer: Apple Mail (2.1827) 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.17 Precedence: list List-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, 24 Jan 2014 07:58:21 -0000 --Apple-Mail=_7C2CD859-C3D3-455C-A229-FE617194504D Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=iso-8859-1 On 24 Jan 2014, at 08:25, Remko Lodder wrote: >=20 > On 23 Jan 2014, at 23:41, Matthias Andree wrote: >=20 >> Am 23.01.2014 22:24, schrieb Remko Lodder: >>=20 >>> Make validate checks whether the correct tags had been used at the = right places. >>> Documentation follows the FDP primer, which states how this works. = Perhaps >>> igor can be used to suggest a better strategy, most of the desired = format is >>> already included, all you have to do is properly fill it in, or = sneakpeak at >>> an already written entry. >>=20 >> It's not the "I can" but that we'd as a whole be more productive if I >> could verify the style, or even better have it automatically = reformatted >> to style (of course your ellipsis removal is another thing that = requires >> a manual step), and then commit a properly styled entry. >>=20 >> With a very strong inclination towards "reformat", surely there must = be >> some tweakable XML formatter in ports that we can beat into shape. >>=20 >>=20 >=20 > Sure, someone[tm] might be able to do just that ;-). I welcome to = review > and test patches that will work this out. But I do not have the time = nor > focus at the moment to do that work. And yes I agree that things to = make > it easier are welcomed and might lower the bar, but then again we do = not > have that (yet?) and until that time we need to work with what we have > and how things have been going for the last period of time. >=20 > Cheers > remko It seems that igor can do some of the checking already; [remko@speeltuin /virtual/workspace/subversion/ports/security/vuxml]$ = igor vuln.xml | more vuln.xml:55:wrap long line: HTMLDOC -- buffer overflow issues = when reading AFM files[ ]and parsing page sizes vuln.xml:67:use two spaces at sentence start: formatting bugs.[ = ]Changes include:

vuln.xml:73:bad tag indent:[ ] vuln.xml:96:wrap long line: vuln.xml:100:wrap long line: users to affect confidentiality, = integrity, and[ ]availability vuln.xml:103:bad tag indent:[ ] vuln.xml:112:bad tag indent:[ ] Not yet perfect[tm] but it was not intended from start for vuxml, but we = might lure wblock into perhaps have a look at that? Cheers Remko >=20 >=20 > --=20 >=20 > /"\ Best regards, | remko@FreeBSD.org > \ / Remko Lodder | remko@EFnet > X http://www.evilcoder.org/ | > / \ ASCII Ribbon Campaign | Against HTML Mail and News >=20 --=20 /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_7C2CD859-C3D3-455C-A229-FE617194504D Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJS4h0RAAoJEKjD27JZ84ywikgQAJbyeWTsA+V+uloyCCdlGFbL 59QCv5v4LKPD5hHUT5WNgrli7qHVQcstBBqzpzRbjS6+X1QA8ppSFdr4mYPE7x1s q2HVzOUBNJACbWIIO9wwFRgJWkxn6PxxmW490U5TQ1z//lJf+O5gJIg5QCnKZCmV VV0bi8TpgMpx/D8Q3xBd8/E/PxXJI4DExKXIY+kf1XNfFudAfyiwrWxWcBvCENvR LNOfcVL2R3aW/lUyfuhTVqrkEuetzqAD0ehzHip09Ym05b6yL0qM7e/lYyHgOl69 MQ3ZGuX6YyPXCPT/scBkGL5J646zrrcwWhi7uH0YBcuETOjZP/wEbsoNDbc7mqPG JDgrM8/rVDAAXDLVv0S88+S1F47Uqbs+wZHEr4sDaH1XxXfGmlSufaU3HloCMM27 LpHtNNfwEMYAewW5FnRsjIQAlJl9fTCsGVuHUv590uZeiCOHRI6cqVC8p7EV6bC6 QbM3MF0TBxHOp9hhvlMfU3A4h5pSUAnQhWtbZCLfsipwNzENdL3jp6mnkbPQyuWQ cJhuHpEKgIbwo3sT3fhuRD7Z8OUnhny5bEvXCNh0z9xRDc445sin5FDFwV0diPoJ LTqeVuZJUp1urJSjAKfHM1IYvUU604qGM6vCqpbPIV1OvRhfneUgd72hvzfvK8FS UTe94fwq/MOTFm8CtzuS =Fs/1 -----END PGP SIGNATURE----- --Apple-Mail=_7C2CD859-C3D3-455C-A229-FE617194504D-- From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 08:35:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3F86A30; Fri, 24 Jan 2014 08:35:30 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 751B21347; Fri, 24 Jan 2014 08:35:30 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 1487ABDC56; Fri, 24 Jan 2014 09:35:29 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id E5FF2BDC2E; Fri, 24 Jan 2014 09:35:28 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 81172CCE2B7D; Fri, 24 Jan 2014 09:35:26 +0100 (CET) Date: Fri, 24 Jan 2014 09:35:24 +0100 From: Mathieu Arnold To: Dmitry Marakasov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340875 - head/graphics/py-pyglet Message-ID: <02676048890BF03180E6CFAB@atuin.in.mat.cc> In-Reply-To: <201401240125.s0O1PcNR065306@svn.freebsd.org> References: <201401240125.s0O1PcNR065306@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 08:35:30 -0000 +--On 24 janvier 2014 01:25:38 +0000 Dmitry Marakasov wrote: | LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ | - libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig | + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ | +RUN_DEPENDS= ${LOCALBASE}/lib/libavbin.so:${PORTSDIR}/multimedia/avbin Hum, I think you have a \ too many. | post-install: | + ${MKDIR} ${STAGEDIR}${DOCSDIR} | + cd ${WRKSRC} && ${INSTALL_DATA} CHANGELOG NOTICE README | ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . | ${STAGEDIR}${DOCSDIR}/ | cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/ When doing cd foo && bar, you should always enclose it inside parenthesis, like this : (cd foo && bar) so that the following commands don't run in in a non default directory. (I know here it doesn't really matter right now because all the lines do cd, but it's a good habit to have.) -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:00:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 214E1CBD; Fri, 24 Jan 2014 09:00:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E7840151C; Fri, 24 Jan 2014 09:00:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O90ZLQ040848; Fri, 24 Jan 2014 09:00:35 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O90Z75040845; Fri, 24 Jan 2014 09:00:35 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401240900.s0O90Z75040845@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Fri, 24 Jan 2014 09:00:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340881 - head/devel/py-pyro X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:00:36 -0000 Author: rm Date: Fri Jan 24 09:00:35 2014 New Revision: 340881 URL: http://svnweb.freebsd.org/changeset/ports/340881 QAT: https://qat.redports.org/buildarchive/r340881/ Log: - update to 4.23 - convert USE_DOS2UNIX to USES equivalent - covert to using autogenerated packing list - support staging Deleted: head/devel/py-pyro/pkg-plist Modified: head/devel/py-pyro/Makefile head/devel/py-pyro/distinfo Modified: head/devel/py-pyro/Makefile ============================================================================== --- head/devel/py-pyro/Makefile Fri Jan 24 07:02:06 2014 (r340880) +++ head/devel/py-pyro/Makefile Fri Jan 24 09:00:35 2014 (r340881) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pyro -PORTVERSION= 4.22 +PORTVERSION= 4.23 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,27 +15,20 @@ LICENSE= MIT RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}serpent>=1.3:${PORTSDIR}/devel/py-serpent -USE_DOS2UNIX= yes -USE_PYTHON= yes -USE_PYDISTUTILS= easy_install -PYDISTUTILS_PKGNAME= Pyro4 - -NO_STAGE= yes -.include - -.if ${PYTHON_REL} >= 320 -.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" -.endif +USES= dos2unix +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +DOCSDIR= ${PREFIX}/share/docs/${PYTHON_PKGNAMEPREFIX}${PORTNAME} +EXAMPLESDIR= ${PREFIX}/share/examples/${PYTHON_PKGNAMEPREFIX}${PORTNAME} +PORTDOCS= * +PORTEXAMPLES= * post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${DOCSDIR} -.endif - -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} -.include +.include Modified: head/devel/py-pyro/distinfo ============================================================================== --- head/devel/py-pyro/distinfo Fri Jan 24 07:02:06 2014 (r340880) +++ head/devel/py-pyro/distinfo Fri Jan 24 09:00:35 2014 (r340881) @@ -1,2 +1,2 @@ -SHA256 (Pyro4-4.22.tar.gz) = d8f611f384edbd240006d8c0f56135e74199ab88e9416cfc78cf5472f1ff337d -SIZE (Pyro4-4.22.tar.gz) = 291287 +SHA256 (Pyro4-4.23.tar.gz) = 57d6feee20a565f9de3302376a2531cfda50755088442102963b16e6f70b2e3b +SIZE (Pyro4-4.23.tar.gz) = 293182 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:04:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 07F90DF5; Fri, 24 Jan 2014 09:04:29 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BEDAF15B3; Fri, 24 Jan 2014 09:04:28 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 717FCBDC71; Fri, 24 Jan 2014 10:04:27 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 5292FBDC56; Fri, 24 Jan 2014 10:04:27 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id D7065CCE348C; Fri, 24 Jan 2014 10:04:24 +0100 (CET) Date: Fri, 24 Jan 2014 10:04:22 +0100 From: Mathieu Arnold To: Ruslan Makhmatkhanov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340881 - head/devel/py-pyro Message-ID: In-Reply-To: <201401240900.s0O90Z75040845@svn.freebsd.org> References: <201401240900.s0O90Z75040845@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:04:29 -0000 +--On 24 janvier 2014 09:00:35 +0000 Ruslan Makhmatkhanov wrote: | + @${MKDIR} ${STAGEDIR}${DOCSDIR} | + cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} | + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} | + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} You should try to always enclose cd foo && bar lines with parenthesis, like this : (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) so that the current directory isn't changed for the next lines. -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:08:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E33DBFB1; Fri, 24 Jan 2014 09:08:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CF21715DD; Fri, 24 Jan 2014 09:08:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O98Qpg043082; Fri, 24 Jan 2014 09:08:26 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O98Qra043081; Fri, 24 Jan 2014 09:08:26 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401240908.s0O98Qra043081@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Fri, 24 Jan 2014 09:08:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340882 - head/devel/py-pyro X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:08:27 -0000 Author: rm Date: Fri Jan 24 09:08:26 2014 New Revision: 340882 URL: http://svnweb.freebsd.org/changeset/ports/340882 QAT: https://qat.redports.org/buildarchive/r340882/ Log: - enclose docs and examples installation command with parenthesis Submitted by: mat Modified: head/devel/py-pyro/Makefile Modified: head/devel/py-pyro/Makefile ============================================================================== --- head/devel/py-pyro/Makefile Fri Jan 24 09:00:35 2014 (r340881) +++ head/devel/py-pyro/Makefile Fri Jan 24 09:08:26 2014 (r340882) @@ -27,8 +27,8 @@ PORTEXAMPLES= * post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:14:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B0A82F2; Fri, 24 Jan 2014 09:14:21 +0000 (UTC) Received: from forward1l.mail.yandex.net (forward1l.mail.yandex.net [IPv6:2a02:6b8:0:1819::1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F3A63165D; Fri, 24 Jan 2014 09:14:20 +0000 (UTC) Received: from smtp1h.mail.yandex.net (smtp1h.mail.yandex.net [84.201.187.144]) by forward1l.mail.yandex.net (Yandex) with ESMTP id 4C3551520F4C; Fri, 24 Jan 2014 13:14:18 +0400 (MSK) Received: from smtp1h.mail.yandex.net (localhost [127.0.0.1]) by smtp1h.mail.yandex.net (Yandex) with ESMTP id 80003134059F; Fri, 24 Jan 2014 13:14:17 +0400 (MSK) Received: from unknown (unknown [77.66.224.37]) by smtp1h.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id YRTrzOp3nL-EGleZxVu; Fri, 24 Jan 2014 13:14:17 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: c747bfc7-d6b3-4699-82eb-63f1934382d7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390554857; bh=ush7ZopMPXT3YbVALqhLl3DYOEdN98Mu8r9b9CRAAbE=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=C9X5LvHYvouIMwArLfGuZKUYN7lR8aubbJY6SayU6X2qTu5ZM5E+GQUs4zS7PcQx3 KkGxxR92Qlzp/NH292XaoMhRlk6QoI9fWkQMj+DXQTn29D3JiWvPy8/XfiNeUi1a/j 6hC5HMTiIRS493U2G7W0F5DPgaGm3770nCdgVKz0= Authentication-Results: smtp1h.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52E22EE2.3030903@yandex.ru> Date: Fri, 24 Jan 2014 13:14:10 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Mathieu Arnold , Ruslan Makhmatkhanov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340881 - head/devel/py-pyro References: <201401240900.s0O90Z75040845@svn.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:14:21 -0000 Mathieu Arnold wrote on 24.01.2014 13:04: > +--On 24 janvier 2014 09:00:35 +0000 Ruslan Makhmatkhanov > wrote: > | + @${MKDIR} ${STAGEDIR}${DOCSDIR} > | + cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} > | + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} > | + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} > > You should try to always enclose cd foo && bar lines with parenthesis, like > this : (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . > ${STAGEDIR}${EXAMPLESDIR}) so that the current directory isn't changed for > the next lines. Just done thanks. Now I have leftover for DOCSDIR, which I hadn't in my local poudriere test. Shoud I add DOCSDIR to PLIST_DIRSTRY or this is something unrelated to the port itself? https://qat.redports.org/~rm@FreeBSD.org/20140124091000-2538-260692/py27-pyro-4.23.log -- Regards, Ruslan T.O.S. Of Reality From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:16:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C38A2400; Fri, 24 Jan 2014 09:16:04 +0000 (UTC) Received: from forward10l.mail.yandex.net (forward10l.mail.yandex.net [IPv6:2a02:6b8:0:1819::a]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 77E3B166D; Fri, 24 Jan 2014 09:16:04 +0000 (UTC) Received: from smtp4h.mail.yandex.net (smtp4h.mail.yandex.net [84.201.186.21]) by forward10l.mail.yandex.net (Yandex) with ESMTP id E9202BA0DFC; Fri, 24 Jan 2014 13:16:01 +0400 (MSK) Received: from smtp4h.mail.yandex.net (localhost [127.0.0.1]) by smtp4h.mail.yandex.net (Yandex) with ESMTP id 358152C311C; Fri, 24 Jan 2014 13:16:01 +0400 (MSK) Received: from unknown (unknown [77.66.224.37]) by smtp4h.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id WjEDH0JDCb-G0iecils; Fri, 24 Jan 2014 13:16:00 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: c5753c42-af88-4fe5-91ce-d5d6bab6272c DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390554960; bh=1jJjcWkWGsx7hdjTNCT484BZJl3SXWwivHi+7vVYtY8=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=Smdk8YMwTLopof3aGEVFPjTJVPB8okl1rPQdCOCoMdRxdti7I9pmsuw5bNuMAd3X7 tGys9OeXhyf2afvTLNfHeiprD1ciZf51LxaqxLyGZR2wuiA4V8u40xAdynTyGfe/i+ wkWD2pwsJUTFAKcFH/pCa8znk1qkjn6A0LHnhWsA= Authentication-Results: smtp4h.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52E22F4A.3050100@yandex.ru> Date: Fri, 24 Jan 2014 13:15:54 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Mathieu Arnold , Ruslan Makhmatkhanov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340881 - head/devel/py-pyro References: <201401240900.s0O90Z75040845@svn.freebsd.org> <52E22EE2.3030903@yandex.ru> In-Reply-To: <52E22EE2.3030903@yandex.ru> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:16:04 -0000 Ruslan Makhmatkhanov wrote on 24.01.2014 13:14: > Mathieu Arnold wrote on 24.01.2014 13:04: >> +--On 24 janvier 2014 09:00:35 +0000 Ruslan Makhmatkhanov >> >> wrote: >> | + @${MKDIR} ${STAGEDIR}${DOCSDIR} >> | + cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} >> | + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} >> | + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . >> ${STAGEDIR}${EXAMPLESDIR} >> >> You should try to always enclose cd foo && bar lines with parenthesis, >> like >> this : (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . >> ${STAGEDIR}${EXAMPLESDIR}) so that the current directory isn't changed >> for >> the next lines. > > Just done thanks. > Now I have leftover for DOCSDIR, which I hadn't in my local poudriere > test. Shoud I add DOCSDIR to PLIST_DIRSTRY or this is something > unrelated to the port itself? > > https://qat.redports.org/~rm@FreeBSD.org/20140124091000-2538-260692/py27-pyro-4.23.log Not DOCSDIR but rather usr/local/share/docs. -- Regards, Ruslan T.O.S. Of Reality From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:21:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CED82A18; Fri, 24 Jan 2014 09:21:01 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 90A1616E9; Fri, 24 Jan 2014 09:21:01 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 4133ABDC70; Fri, 24 Jan 2014 10:21:00 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 210E6BDC6B; Fri, 24 Jan 2014 10:21:00 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 68A7FCCE57E3; Fri, 24 Jan 2014 10:20:58 +0100 (CET) Date: Fri, 24 Jan 2014 10:20:56 +0100 From: Mathieu Arnold To: Ruslan Makhmatkhanov , Ruslan Makhmatkhanov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340881 - head/devel/py-pyro Message-ID: <553E3474F51BC075A4F422A8@atuin.in.mat.cc> In-Reply-To: <52E22F4A.3050100@yandex.ru> References: <201401240900.s0O90Z75040845@svn.freebsd.org> <52E22EE2.3030903@yandex.ru> <52E22F4A.3050100@yandex.ru> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:21:01 -0000 +--On 24 janvier 2014 13:15:54 +0400 Ruslan Makhmatkhanov wrote: | Ruslan Makhmatkhanov wrote on 24.01.2014 13:14: |> Mathieu Arnold wrote on 24.01.2014 13:04: |>> +--On 24 janvier 2014 09:00:35 +0000 Ruslan Makhmatkhanov |>> |>> wrote: |>> | + @${MKDIR} ${STAGEDIR}${DOCSDIR} |>> | + cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} |>> | + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} |>> | + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . |>> ${STAGEDIR}${EXAMPLESDIR} |>> |>> You should try to always enclose cd foo && bar lines with parenthesis, |>> like |>> this : (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . |>> ${STAGEDIR}${EXAMPLESDIR}) so that the current directory isn't changed |>> for |>> the next lines. |> |> Just done thanks. |> Now I have leftover for DOCSDIR, which I hadn't in my local poudriere |> test. Shoud I add DOCSDIR to PLIST_DIRSTRY or this is something |> unrelated to the port itself? |> |> https://qat.redports.org/~rm@FreeBSD.org/20140124091000-2538-260692/py27 |> -pyro-4.23.log | | Not DOCSDIR but rather usr/local/share/docs. It's supposed to be share/doc, not share/docs :-) -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:25:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C1E6B5C; Fri, 24 Jan 2014 09:25:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 281B0176C; Fri, 24 Jan 2014 09:25:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O9PgMp050536; Fri, 24 Jan 2014 09:25:42 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O9PfhN050534; Fri, 24 Jan 2014 09:25:41 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401240925.s0O9PfhN050534@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Fri, 24 Jan 2014 09:25:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340883 - head/devel/py-pyro X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:25:42 -0000 Author: rm Date: Fri Jan 24 09:25:41 2014 New Revision: 340883 URL: http://svnweb.freebsd.org/changeset/ports/340883 QAT: https://qat.redports.org/buildarchive/r340883/ Log: - correct the DOCSDIR value Submitted by: mat Modified: head/devel/py-pyro/Makefile Modified: head/devel/py-pyro/Makefile ============================================================================== --- head/devel/py-pyro/Makefile Fri Jan 24 09:08:26 2014 (r340882) +++ head/devel/py-pyro/Makefile Fri Jan 24 09:25:41 2014 (r340883) @@ -20,7 +20,7 @@ USE_PYTHON= yes USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes -DOCSDIR= ${PREFIX}/share/docs/${PYTHON_PKGNAMEPREFIX}${PORTNAME} +DOCSDIR= ${PREFIX}/share/doc/${PYTHON_PKGNAMEPREFIX}${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/${PYTHON_PKGNAMEPREFIX}${PORTNAME} PORTDOCS= * PORTEXAMPLES= * From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:26:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6DF92C53; Fri, 24 Jan 2014 09:26:42 +0000 (UTC) Received: from forward2l.mail.yandex.net (forward2l.mail.yandex.net [IPv6:2a02:6b8:0:1819::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 207F1177B; Fri, 24 Jan 2014 09:26:42 +0000 (UTC) Received: from smtp3h.mail.yandex.net (smtp3h.mail.yandex.net [84.201.186.20]) by forward2l.mail.yandex.net (Yandex) with ESMTP id 6C2061AC0DC7; Fri, 24 Jan 2014 13:26:39 +0400 (MSK) Received: from smtp3h.mail.yandex.net (localhost [127.0.0.1]) by smtp3h.mail.yandex.net (Yandex) with ESMTP id F20C71B429F0; Fri, 24 Jan 2014 13:26:37 +0400 (MSK) Received: from unknown (unknown [77.66.224.37]) by smtp3h.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id 01kXKAF8ul-QbY0CCkT; Fri, 24 Jan 2014 13:26:37 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: 1fa11e43-941b-425b-a7c3-afd63067583e DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390555597; bh=lkSQCXIcf158WAoXqHg5mXkzcCe1rUHXetJoBA7KcFU=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=Kbr4MywuvnjKEv6tFJzdd1S9Cb3FgCb1PQUeJl1O6TOjnOEiuRMNJwboPBHmsDI7O o4w+KYHrTnNLL0XpHzVCasqjcjQmnA6U+biiLX+4d1PjEGf5UR7QIJPUFDwxAWxJtu F8CX6BPCEREwNDWZset/AGsmNqm/7vPClF/Ksa4A= Authentication-Results: smtp3h.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52E231C5.9010908@yandex.ru> Date: Fri, 24 Jan 2014 13:26:29 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Mathieu Arnold , Ruslan Makhmatkhanov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340881 - head/devel/py-pyro References: <201401240900.s0O90Z75040845@svn.freebsd.org> <52E22EE2.3030903@yandex.ru> <52E22F4A.3050100@yandex.ru> <553E3474F51BC075A4F422A8@atuin.in.mat.cc> In-Reply-To: <553E3474F51BC075A4F422A8@atuin.in.mat.cc> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:26:42 -0000 Mathieu Arnold wrote on 24.01.2014 13:20: > +--On 24 janvier 2014 13:15:54 +0400 Ruslan Makhmatkhanov > wrote: > | Ruslan Makhmatkhanov wrote on 24.01.2014 13:14: > |> Mathieu Arnold wrote on 24.01.2014 13:04: > |>> +--On 24 janvier 2014 09:00:35 +0000 Ruslan Makhmatkhanov > |>> > |>> wrote: > |>> | + @${MKDIR} ${STAGEDIR}${DOCSDIR} > |>> | + cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} > |>> | + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} > |>> | + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . > |>> ${STAGEDIR}${EXAMPLESDIR} > |>> > |>> You should try to always enclose cd foo && bar lines with parenthesis, > |>> like > |>> this : (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . > |>> ${STAGEDIR}${EXAMPLESDIR}) so that the current directory isn't changed > |>> for > |>> the next lines. > |> > |> Just done thanks. > |> Now I have leftover for DOCSDIR, which I hadn't in my local poudriere > |> test. Shoud I add DOCSDIR to PLIST_DIRSTRY or this is something > |> unrelated to the port itself? > |> > |> https://qat.redports.org/~rm@FreeBSD.org/20140124091000-2538-260692/py27 > |> -pyro-4.23.log > | > | Not DOCSDIR but rather usr/local/share/docs. > > It's supposed to be share/doc, not share/docs :-) Oops. Fixed, thank you. -- Regards, Ruslan T.O.S. Of Reality From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:29:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E4BBD52; Fri, 24 Jan 2014 09:29:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3A6161786; Fri, 24 Jan 2014 09:29:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O9T1Gh051253; Fri, 24 Jan 2014 09:29:01 GMT (envelope-from bsam@svn.freebsd.org) Received: (from bsam@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O9T11b051252; Fri, 24 Jan 2014 09:29:01 GMT (envelope-from bsam@svn.freebsd.org) Message-Id: <201401240929.s0O9T11b051252@svn.freebsd.org> From: Boris Samorodov Date: Fri, 24 Jan 2014 09:29:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340884 - head/www/web2ldap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:29:01 -0000 Author: bsam Date: Fri Jan 24 09:29:00 2014 New Revision: 340884 URL: http://svnweb.freebsd.org/changeset/ports/340884 QAT: https://qat.redports.org/buildarchive/r340884/ Log: Add MASTER_SITE_LOCAL since a previous version disappears as long as a new one is released. Requested by: marino (via e-mail) Reminded by: pkg-fallout@ Modified: head/www/web2ldap/Makefile Modified: head/www/web2ldap/Makefile ============================================================================== --- head/www/web2ldap/Makefile Fri Jan 24 09:25:41 2014 (r340883) +++ head/www/web2ldap/Makefile Fri Jan 24 09:29:00 2014 (r340884) @@ -5,7 +5,8 @@ PORTNAME= web2ldap PORTVERSION= 1.1.47 CATEGORIES= www MASTER_SITES= http://www.web2ldap.de/download/ \ - http://www.sfr-fresh.com/unix/www/ + http://www.sfr-fresh.com/unix/www/ \ + LOCAL/bsam MAINTAINER= bsam@FreeBSD.org COMMENT= Python-based WWW gateway to LDAP servers From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:32:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1403E64; Fri, 24 Jan 2014 09:32:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 817B61818; Fri, 24 Jan 2014 09:32:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O9W1QN054653; Fri, 24 Jan 2014 09:32:01 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O9W0sn054645; Fri, 24 Jan 2014 09:32:00 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201401240932.s0O9W0sn054645@svn.freebsd.org> From: Rene Ladan Date: Fri, 24 Jan 2014 09:32:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340885 - in head: . cad cad/salome cad/salome-geom cad/salome-gui cad/salome-jobmanager cad/salome-kernel cad/salome-light cad/salome-med cad/salome-multipr cad/salome-netgenplugin cad... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 09:32:01 -0000 Author: rene Date: Fri Jan 24 09:32:00 2014 New Revision: 340885 URL: http://svnweb.freebsd.org/changeset/ports/340885 QAT: https://qat.redports.org/buildarchive/r340885/ Log: Remove expired ports: 2013-12-22 devel/mico: Broken for more than 6 month 2014-01-22 cad/salome: depends on expired cad/salome-kernel 2014-01-22 cad/salome-netgenplugin: depends on expired cad/salome-kernel 2014-01-22 cad/salome-jobmanager: depends on expired cad/salome-kernel 2014-01-22 cad/salome-visu: depends on expired cad/salome-kernel 2014-01-22 cad/salome-kernel: does not configure 2014-01-22 cad/salome-multipr: depends on expired cad/salome-kernel 2014-01-22 cad/salome-smesh: depends on expired cad/salome-kernel 2014-01-22 cad/salome-gui: depends on expired cad/salome-kernel 2014-01-22 cad/salome-yacs: depends on expired cad/salome-kernel 2014-01-22 cad/salome-med: depends on expired cad/salome-kernel 2014-01-22 cad/salome-light: depends on expired cad/salome-kernel 2014-01-22 cad/salome-randomizer: depends on expired cad/salome-kernel 2014-01-22 cad/salome-sierpinsky: depends on expired cad/salome-kernel 2014-01-22 cad/salome-geom: depends on expired cad/salome-kernel 2014-01-22 devel/combat: depends on expired devel/mico Deleted: head/cad/salome/ head/cad/salome-geom/ head/cad/salome-gui/ head/cad/salome-jobmanager/ head/cad/salome-kernel/ head/cad/salome-light/ head/cad/salome-med/ head/cad/salome-multipr/ head/cad/salome-netgenplugin/ head/cad/salome-randomizer/ head/cad/salome-sierpinsky/ head/cad/salome-smesh/ head/cad/salome-visu/ head/cad/salome-yacs/ head/devel/combat/ head/devel/mico/ Modified: head/MOVED head/cad/Makefile head/devel/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jan 24 09:29:00 2014 (r340884) +++ head/MOVED Fri Jan 24 09:32:00 2014 (r340885) @@ -5382,3 +5382,19 @@ www/suphp||2014-01-17|Has expired: Upstr databases/postgis||2014-01-17|Has expired: EOLed upstream textproc/redland-bindings-python||2014-01-19|Use textproc/redland-bindings directly instead emulators/seabios-devel||2014-01-19|Has expired: Outdated, no longer needed, broken on 10+ +devel/mico||2014-01-24|Has expired: Broken for more than 6 month +cad/salome||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-netgenplugin||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-jobmanager||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-visu||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-kernel||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-multipr||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-smesh||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-gui||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-yacs||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-med||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-light||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-randomizer||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-sierpinsky||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-geom||2014-01-24|Has expired: depends on expired cad/salome-kernel +devel/combat||2014-01-24|Has expired: depends on expired devel/mico Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Fri Jan 24 09:29:00 2014 (r340884) +++ head/cad/Makefile Fri Jan 24 09:32:00 2014 (r340885) @@ -77,20 +77,6 @@ SUBDIR += qfsm SUBDIR += qmls SUBDIR += repsnapper - SUBDIR += salome - SUBDIR += salome-geom - SUBDIR += salome-gui - SUBDIR += salome-jobmanager - SUBDIR += salome-kernel - SUBDIR += salome-light - SUBDIR += salome-med - SUBDIR += salome-multipr - SUBDIR += salome-netgenplugin - SUBDIR += salome-randomizer - SUBDIR += salome-sierpinsky - SUBDIR += salome-smesh - SUBDIR += salome-visu - SUBDIR += salome-yacs SUBDIR += sceptre SUBDIR += scotch SUBDIR += scv Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jan 24 09:29:00 2014 (r340884) +++ head/devel/Makefile Fri Jan 24 09:32:00 2014 (r340885) @@ -255,7 +255,6 @@ SUBDIR += codeworker SUBDIR += colorgcc SUBDIR += colormake - SUBDIR += combat SUBDIR += commit-patch SUBDIR += common_lib SUBDIR += commoncpp @@ -1212,7 +1211,6 @@ SUBDIR += mercurial SUBDIR += mercurialeclipse SUBDIR += meta-cvs - SUBDIR += mico SUBDIR += mime SUBDIR += mimir SUBDIR += mingw32-bin-msvcrt From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 09:33:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1932F60; Fri, 24 Jan 2014 09:33:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8D654182E; Fri, 24 Jan 2014 09:33:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0O9XeAM054937; Fri, 24 Jan 2014 09:33:40 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0O9Xe7v054936; Fri, 24 Jan 2014 09:33:40 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201401240933.s0O9Xe7v054936@svn.freebsd.org> From: Rene Ladan Date: Fri, 24 Jan 2014 09:33:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340886 - 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.17 Precedence: list List-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, 24 Jan 2014 09:33:40 -0000 Author: rene Date: Fri Jan 24 09:33:40 2014 New Revision: 340886 URL: http://svnweb.freebsd.org/changeset/ports/340886 QAT: https://qat.redports.org/buildarchive/r340886/ Log: Correct reason for removal of cad/salome-kernel caused by copy/paste error. Modified: head/MOVED Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jan 24 09:32:00 2014 (r340885) +++ head/MOVED Fri Jan 24 09:33:40 2014 (r340886) @@ -5387,7 +5387,7 @@ cad/salome||2014-01-24|Has expired: depe cad/salome-netgenplugin||2014-01-24|Has expired: depends on expired cad/salome-kernel cad/salome-jobmanager||2014-01-24|Has expired: depends on expired cad/salome-kernel cad/salome-visu||2014-01-24|Has expired: depends on expired cad/salome-kernel -cad/salome-kernel||2014-01-24|Has expired: depends on expired cad/salome-kernel +cad/salome-kernel||2014-01-24|Has expired: does not configure cad/salome-multipr||2014-01-24|Has expired: depends on expired cad/salome-kernel cad/salome-smesh||2014-01-24|Has expired: depends on expired cad/salome-kernel cad/salome-gui||2014-01-24|Has expired: depends on expired cad/salome-kernel From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 10:36:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63E8DB42; Fri, 24 Jan 2014 10:36:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4FD1F1EDD; Fri, 24 Jan 2014 10:36:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OAaYVd078238; Fri, 24 Jan 2014 10:36:34 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OAaX34078236; Fri, 24 Jan 2014 10:36:33 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201401241036.s0OAaX34078236@svn.freebsd.org> From: Jimmy Olgeni Date: Fri, 24 Jan 2014 10:36:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340888 - head/net/rabbitmq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 10:36:34 -0000 Author: olgeni Date: Fri Jan 24 10:36:33 2014 New Revision: 340888 URL: http://svnweb.freebsd.org/changeset/ports/340888 QAT: https://qat.redports.org/buildarchive/r340888/ Log: Upgrade to version 3.2.3 and add LICENSE. Modified: head/net/rabbitmq/Makefile head/net/rabbitmq/distinfo (contents, props changed) Modified: head/net/rabbitmq/Makefile ============================================================================== --- head/net/rabbitmq/Makefile Fri Jan 24 09:54:10 2014 (r340887) +++ head/net/rabbitmq/Makefile Fri Jan 24 10:36:33 2014 (r340888) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= rabbitmq -PORTVERSION= 3.2.2 -PORTREVISION= 2 +PORTVERSION= 3.2.3 CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-server-${PORTVERSION} @@ -11,6 +10,8 @@ DISTNAME= ${PORTNAME}-server-${PORTVERSI MAINTAINER= olgeni@FreeBSD.org COMMENT= RabbitMQ is an implementation of AMQP +LICENSE= MPL + BUILD_DEPENDS= erl:${PORTSDIR}/lang/erlang \ ${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:${PORTSDIR}/devel/py-simplejson \ xmlto:${PORTSDIR}/textproc/xmlto \ Modified: head/net/rabbitmq/distinfo ============================================================================== --- head/net/rabbitmq/distinfo Fri Jan 24 09:54:10 2014 (r340887) +++ head/net/rabbitmq/distinfo Fri Jan 24 10:36:33 2014 (r340888) @@ -1,2 +1,2 @@ -SHA256 (rabbitmq-server-3.2.2.tar.gz) = c6f985d2bf69de60fa543ebfff190f233d2ab8faee78a10cfb065b4e4d1406ba -SIZE (rabbitmq-server-3.2.2.tar.gz) = 3583974 +SHA256 (rabbitmq-server-3.2.3.tar.gz) = eb2c73338f4c477ea4ba496c4c5e18793b42f3abbd23010133b0163f85faf868 +SIZE (rabbitmq-server-3.2.3.tar.gz) = 3586619 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 10:37:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78D1FC31; Fri, 24 Jan 2014 10:37:29 +0000 (UTC) Received: from mailrelay001.isp.belgacom.be (mailrelay001.isp.belgacom.be [195.238.6.51]) by mx1.freebsd.org (Postfix) with ESMTP id 947871EE9; Fri, 24 Jan 2014 10:37:28 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AnYGAE1B4lJbs45y/2dsb2JhbABagww4SrxDgQ0XdIIlAQEBAwE6HB4FBQsLFAQJJQ8qHgaIEAwBCMdwF45NMweEOASYJYEzkGyDLjs Received: from 114.142-179-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.179.142.114]) by relay.skynet.be with ESMTP; 24 Jan 2014 11:36:14 +0100 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.7/8.14.7) with ESMTP id s0OAaESB010051; Fri, 24 Jan 2014 11:36:14 +0100 (CET) (envelope-from tijl@FreeBSD.org) Date: Fri, 24 Jan 2014 11:36:14 +0100 From: Tijl Coosemans To: Danilo Egea Gondolfo Subject: Re: svn commit: r340869 - in head/audio/smasher: . files Message-ID: <20140124113614.5d47a38c@kalimero.tijl.coosemans.org> In-Reply-To: <201401232313.s0NNDdsi078774@svn.freebsd.org> References: <201401232313.s0NNDdsi078774@svn.freebsd.org> 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.17 Precedence: list List-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, 24 Jan 2014 10:37:29 -0000 On Thu, 23 Jan 2014 23:13:39 +0000 (UTC) Danilo Egea Gondolfo wrote: > Author: danilo > Date: Thu Jan 23 23:13:39 2014 > New Revision: 340869 > URL: http://svnweb.freebsd.org/changeset/ports/340869 > QAT: https://qat.redports.org/buildarchive/r340869/ > > Log: > - Add stage support > - Fix build > - Add USE_GCC. clang fails with a lot of c++ erros > - Bump PORTREVISION The USE_GCC line is a comment. > Modified: head/audio/smasher/Makefile > ============================================================================== > --- head/audio/smasher/Makefile Thu Jan 23 23:09:44 2014 (r340868) > +++ head/audio/smasher/Makefile Thu Jan 23 23:13:39 2014 (r340869) > @@ -3,7 +3,7 @@ > > PORTNAME= smasher > PORTVERSION= 1.1.6 > -PORTREVISION= 3 > +PORTREVISION= 4 > CATEGORIES= audio > MASTER_SITES= SF > DISTNAME= ${PORTNAME}-${PORTVERSION}-source > @@ -16,8 +16,8 @@ LIB_DEPENDS= libsndfile.so:${PORTSDIR}/a > libcsound64.so:${PORTSDIR}/audio/csound > > GNU_CONFIGURE= yes > -USES= gmake pkgconfig > -NO_STAGE= yes > +USES= desktop-file-utils gmake pkgconfig > +#USE_GCC= yes > USE_WX= yes > WX_CONF_ARGS= absolute From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 10:57:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7742139; Fri, 24 Jan 2014 10:57:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 935EE105D; Fri, 24 Jan 2014 10:57:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OAvBAu085738; Fri, 24 Jan 2014 10:57:11 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OAvBVK085737; Fri, 24 Jan 2014 10:57:11 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201401241057.s0OAvBVK085737@svn.freebsd.org> From: Jimmy Olgeni Date: Fri, 24 Jan 2014 10:57:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340889 - head/devel/jzmq X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 10:57:11 -0000 Author: olgeni Date: Fri Jan 24 10:57:11 2014 New Revision: 340889 URL: http://svnweb.freebsd.org/changeset/ports/340889 QAT: https://qat.redports.org/buildarchive/r340889/ Log: Drop maintainership. Modified: head/devel/jzmq/Makefile Modified: head/devel/jzmq/Makefile ============================================================================== --- head/devel/jzmq/Makefile Fri Jan 24 10:36:33 2014 (r340888) +++ head/devel/jzmq/Makefile Fri Jan 24 10:57:11 2014 (r340889) @@ -7,7 +7,7 @@ CATEGORIES= devel java MASTER_SITES= LOCAL/olgeni DISTNAME= zeromq-${PORTNAME}-${PORTVERSION} -MAINTAINER= olgeni@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Java bindings for ZeroMQ LIB_DEPENDS= zmq.1:${PORTSDIR}/net/libzmq2 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 11:22:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3835480F; Fri, 24 Jan 2014 11:22:33 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E82E512B5; Fri, 24 Jan 2014 11:22:32 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 772EBBDC64; Fri, 24 Jan 2014 12:22:31 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 534B8BDC5D; Fri, 24 Jan 2014 12:22:31 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id D018E613D; Fri, 24 Jan 2014 12:22:30 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 736DF68457C8; Fri, 24 Jan 2014 12:22:30 +0100 (CET) Date: Fri, 24 Jan 2014 12:22:30 +0100 From: Mathieu Arnold To: Danilo Egea Gondolfo , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, Ralf van der Enden Subject: Re: svn commit: r340859 - in head/dns/powerdns-devel: . files Message-ID: In-Reply-To: <201401232016.s0NKGv2e009550@svn.freebsd.org> References: <201401232016.s0NKGv2e009550@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 11:22:33 -0000 Hi +--On 23 janvier 2014 20:16:57 +0000 Danilo Egea Gondolfo wrote: | Log: | - Update from 3.3 to 3.3.1 | - Add some experimental backends After that, I get failed builds : -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 11:35:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B01879BC; Fri, 24 Jan 2014 11:35:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BB28136A; Fri, 24 Jan 2014 11:35:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OBZGo5000921; Fri, 24 Jan 2014 11:35:16 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OBZGWJ000920; Fri, 24 Jan 2014 11:35:16 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401241135.s0OBZGWJ000920@svn.freebsd.org> From: Alex Dupre Date: Fri, 24 Jan 2014 11:35:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340890 - 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.17 Precedence: list List-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, 24 Jan 2014 11:35:16 -0000 Author: ale Date: Fri Jan 24 11:35:16 2014 New Revision: 340890 URL: http://svnweb.freebsd.org/changeset/ports/340890 QAT: https://qat.redports.org/buildarchive/r340890/ Log: Replace a redirect URL (containing multiple query params) with the actual site address. This is a workaround to fix eclipse port download: => doesn't seem to exist in /distfiles/. eval: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/: not found *** [do-fetch] Error code 2 Modified: head/Mk/bsd.sites.mk Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Fri Jan 24 10:57:11 2014 (r340889) +++ head/Mk/bsd.sites.mk Fri Jan 24 11:35:16 2014 (r340890) @@ -210,7 +210,7 @@ MASTER_SITE_ECLIPSE+= \ ftp://sunsite.cnlab-switch.ch/mirror/eclipse/%SUBDIR%/ \ ftp://sunsite.cnlab-switch.ch/mirror/eclipse/eclipse/downloads/drops/%SUBDIR%/ \ ftp://sunsite.cnlab-switch.ch/mirror/eclipse/eclipse/downloads/drops4/%SUBDIR%/ \ - http://eclipse.org/downloads/download.php?mirror_id=96&r=1&file=/%SUBDIR%/ + http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_EXIM) From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 12:23:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67C856D; Fri, 24 Jan 2014 12:23:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 53840170F; Fri, 24 Jan 2014 12:23:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OCNheb019907; Fri, 24 Jan 2014 12:23:43 GMT (envelope-from olivierd@svn.freebsd.org) Received: (from olivierd@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OCNgXE019905; Fri, 24 Jan 2014 12:23:42 GMT (envelope-from olivierd@svn.freebsd.org) Message-Id: <201401241223.s0OCNgXE019905@svn.freebsd.org> From: Olivier Duchateau Date: Fri, 24 Jan 2014 12:23:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340891 - head/security/py-certify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 12:23:43 -0000 Author: olivierd Date: Fri Jan 24 12:23:42 2014 New Revision: 340891 URL: http://svnweb.freebsd.org/changeset/ports/340891 QAT: https://qat.redports.org/buildarchive/r340891/ Log: - Update to 1.0.0 - Add LICENSE - Update maintainer address - Use PYDISTUTILS_AUTOPLIST Deleted: head/security/py-certify/pkg-plist Modified: head/security/py-certify/Makefile head/security/py-certify/distinfo Modified: head/security/py-certify/Makefile ============================================================================== --- head/security/py-certify/Makefile Fri Jan 24 11:35:16 2014 (r340890) +++ head/security/py-certify/Makefile Fri Jan 24 12:23:42 2014 (r340891) @@ -2,16 +2,18 @@ # $FreeBSD$ PORTNAME= certifi -PORTVERSION= 0.0.8 +PORTVERSION= 1.0.0 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= duchateau.olivier@gmail.com +MAINTAINER= olivierd@FreeBSD.org COMMENT= Mozilla's SSL certificates +LICENSE= ISCL + USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/security/py-certify/distinfo ============================================================================== --- head/security/py-certify/distinfo Fri Jan 24 11:35:16 2014 (r340890) +++ head/security/py-certify/distinfo Fri Jan 24 12:23:42 2014 (r340891) @@ -1,2 +1,2 @@ -SHA256 (certifi-0.0.8.tar.gz) = 46ecf5f7526a08cc1f8bc8232adf0cffce046f46ceff95539daec42ebc4849ef -SIZE (certifi-0.0.8.tar.gz) = 118129 +SHA256 (certifi-1.0.0.tar.gz) = d4f8e89c9e709f67221bf21231d0fa66a00d3712bcb69d4b5aef3705339c8dcd +SIZE (certifi-1.0.0.tar.gz) = 164836 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 12:27:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03D071B0; Fri, 24 Jan 2014 12:27:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C9FDC1725; Fri, 24 Jan 2014 12:27:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OCRu4d020426; Fri, 24 Jan 2014 12:27:56 GMT (envelope-from olivierd@svn.freebsd.org) Received: (from olivierd@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OCRuBu020421; Fri, 24 Jan 2014 12:27:56 GMT (envelope-from olivierd@svn.freebsd.org) Message-Id: <201401241227.s0OCRuBu020421@svn.freebsd.org> From: Olivier Duchateau Date: Fri, 24 Jan 2014 12:27:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340892 - head/graphics/pysvg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 12:27:57 -0000 Author: olivierd Date: Fri Jan 24 12:27:55 2014 New Revision: 340892 URL: http://svnweb.freebsd.org/changeset/ports/340892 QAT: https://qat.redports.org/buildarchive/r340892/ Log: - Update to 0.2.2 - Add LICENSE - Fix Python version - Update maintainer address Modified: head/graphics/pysvg/Makefile head/graphics/pysvg/distinfo head/graphics/pysvg/pkg-descr Modified: head/graphics/pysvg/Makefile ============================================================================== --- head/graphics/pysvg/Makefile Fri Jan 24 12:23:42 2014 (r340891) +++ head/graphics/pysvg/Makefile Fri Jan 24 12:27:55 2014 (r340892) @@ -2,18 +2,19 @@ # $FreeBSD$ PORTNAME= pysvg -PORTVERSION= 0.2.1 -PORTREVISION= 1 +PORTVERSION= 0.2.2 CATEGORIES= graphics python -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= CHEESESHOP -MAINTAINER= duchateau.olivier@gmail.com +MAINTAINER= olivierd@FreeBSD.org COMMENT= pySVG - creating svg with python +LICENSE= BSD2CLAUSE + +USE_PYTHON= 2 USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes -USE_PYTHON= 2 USE_ZIP= yes .include Modified: head/graphics/pysvg/distinfo ============================================================================== --- head/graphics/pysvg/distinfo Fri Jan 24 12:23:42 2014 (r340891) +++ head/graphics/pysvg/distinfo Fri Jan 24 12:27:55 2014 (r340892) @@ -1,2 +1,2 @@ -SHA256 (pysvg-0.2.1.zip) = f447d39d47674176d277a21616597812c662d62834e136360e86d3f914270f36 -SIZE (pysvg-0.2.1.zip) = 24216 +SHA256 (pysvg-0.2.2.zip) = e7dd51244cd201279dba577704149e5195d4a69d6e6681bda1edb32fac24f2ed +SIZE (pysvg-0.2.2.zip) = 623804 Modified: head/graphics/pysvg/pkg-descr ============================================================================== --- head/graphics/pysvg/pkg-descr Fri Jan 24 12:23:42 2014 (r340891) +++ head/graphics/pysvg/pkg-descr Fri Jan 24 12:27:55 2014 (r340892) @@ -1,3 +1,3 @@ pySVG is a pure Python library to create SVG documents. -WWW: http://codeboje.de/pysvg/ +WWW: http://codeboje.de/pysvg/ From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 12:49:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0152461C; Fri, 24 Jan 2014 12:49:28 +0000 (UTC) Received: from smtpout3.timeweb.ru (smtpout3.timeweb.ru [92.53.117.25]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A81F318C0; Fri, 24 Jan 2014 12:49:26 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1W6gCK-0001iR-K6; Fri, 24 Jan 2014 16:49:24 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 4D0749BD; Fri, 24 Jan 2014 16:49:24 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 41C0997BF; Fri, 24 Jan 2014 16:49:24 +0400 (MSK) Date: Fri, 24 Jan 2014 16:49:24 +0400 From: Dmitry Marakasov To: Mathieu Arnold Subject: Re: svn commit: r340875 - head/graphics/py-pyglet Message-ID: <20140124124924.GF28542@hades.panopticon> References: <201401240125.s0O1PcNR065306@svn.freebsd.org> <02676048890BF03180E6CFAB@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <02676048890BF03180E6CFAB@atuin.in.mat.cc> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 24 Jan 2014 12:49:28 -0000 * Mathieu Arnold (mat@FreeBSD.org) wrote: > +--On 24 janvier 2014 01:25:38 +0000 Dmitry Marakasov > wrote: > | LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ > | - libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig > | + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ > | +RUN_DEPENDS= ${LOCALBASE}/lib/libavbin.so:${PORTSDIR}/multimedia/avbin > > Hum, I think you have a \ too many. My bad, sorry. > | post-install: > | + ${MKDIR} ${STAGEDIR}${DOCSDIR} > | + cd ${WRKSRC} && ${INSTALL_DATA} CHANGELOG NOTICE README > | ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . > | ${STAGEDIR}${DOCSDIR}/ > | cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/ > > When doing cd foo && bar, you should always enclose it inside parenthesis, > like this : (cd foo && bar) so that the following commands don't run in in > a non default directory. (I know here it doesn't really matter right now > because all the lines do cd, but it's a good habit to have.) I don't think that matters unless ${WRKSRC} is deleted in the process. Actually, it's even better, as if for some reason some command leaves something behind (a corefile or a log) in it's current directory, it'll end up in ${WRKSRC} and to a ports' directory. -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://www.amdmi3.ru From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 12:50:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86EC07AE; Fri, 24 Jan 2014 12:50:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7356A18E4; Fri, 24 Jan 2014 12:50:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OCosA5029199; Fri, 24 Jan 2014 12:50:54 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OCosPo029197; Fri, 24 Jan 2014 12:50:54 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401241250.s0OCosPo029197@svn.freebsd.org> From: Pietro Cerutti Date: Fri, 24 Jan 2014 12:50:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340893 - head/editors/codelite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 12:50:54 -0000 Author: gahr Date: Fri Jan 24 12:50:53 2014 New Revision: 340893 URL: http://svnweb.freebsd.org/changeset/ports/340893 QAT: https://qat.redports.org/buildarchive/r340893/ Log: - Fix distinfo and WRKSRC, now that the distfile is fetched from github Reported by: John J. Rushford Modified: head/editors/codelite/Makefile head/editors/codelite/distinfo Modified: head/editors/codelite/Makefile ============================================================================== --- head/editors/codelite/Makefile Fri Jan 24 12:27:55 2014 (r340892) +++ head/editors/codelite/Makefile Fri Jan 24 12:50:53 2014 (r340893) @@ -35,8 +35,6 @@ CXXFLAGS+= -I${LOCALBASE}/include CMAKE_ARGS+= -DIS_FREEBSD=1 \ -DPREFIX=${PREFIX} -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - .include .if ${PORT_OPTIONS:MCSCOPE} Modified: head/editors/codelite/distinfo ============================================================================== --- head/editors/codelite/distinfo Fri Jan 24 12:27:55 2014 (r340892) +++ head/editors/codelite/distinfo Fri Jan 24 12:50:53 2014 (r340893) @@ -1,2 +1,2 @@ -SHA256 (codelite-5.4.tar.gz) = 2bdb6cfd1239a7fcaf476a215c9f7d775e8814f0930828b66e9acd4799cc5002 -SIZE (codelite-5.4.tar.gz) = 37950862 +SHA256 (codelite-5.4.tar.gz) = 53253fd4406a455dc8389a1bacd52ee0ee5407c90c3f682e30b97f5532a4992a +SIZE (codelite-5.4.tar.gz) = 37946071 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 13:10:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65CEFCDC; Fri, 24 Jan 2014 13:10:22 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 168D11A78; Fri, 24 Jan 2014 13:10:22 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 50848BDC5D; Fri, 24 Jan 2014 14:10:20 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 2A27CBDC56; Fri, 24 Jan 2014 14:10:20 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id A1825613D; Fri, 24 Jan 2014 14:10:19 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 317156846C76; Fri, 24 Jan 2014 14:10:19 +0100 (CET) Date: Fri, 24 Jan 2014 14:10:18 +0100 From: Mathieu Arnold To: Dmitry Marakasov , Mathieu Arnold Subject: Re: svn commit: r340875 - head/graphics/py-pyglet Message-ID: <08A02A920829DC4130029A7F@ogg.in.absolight.net> In-Reply-To: <20140124124924.GF28542@hades.panopticon> References: <201401240125.s0O1PcNR065306@svn.freebsd.org> <02676048890BF03180E6CFAB@atuin.in.mat.cc> <20140124124924.GF28542@hades.panopticon> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline 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.17 Precedence: list List-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, 24 Jan 2014 13:10:22 -0000 +--On 24 janvier 2014 16:49:24 +0400 Dmitry Marakasov wrote: | I don't think that matters unless ${WRKSRC} is deleted in the | process. Actually, it's even better, as if for some reason some | command leaves something behind (a corefile or a log) in it's current | directory, it'll end up in ${WRKSRC} and to a ports' directory. Well, yes, but no, you're missing the point, the idea is to have a stable and consistent way of doing things, so that if anyone needs to touch any port, (s)he doesn't have figure out what the current directory currently is. I was fine before because each line was executed in its own shell, but now, the whole bloc is executed in one shell invocation. -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 13:34:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6429C245; Fri, 24 Jan 2014 13:34:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C4A61D62; Fri, 24 Jan 2014 13:34:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ODYZhZ046969; Fri, 24 Jan 2014 13:34:35 GMT (envelope-from olivierd@svn.freebsd.org) Received: (from olivierd@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ODYVxH046946; Fri, 24 Jan 2014 13:34:31 GMT (envelope-from olivierd@svn.freebsd.org) Message-Id: <201401241334.s0ODYVxH046946@svn.freebsd.org> From: Olivier Duchateau Date: Fri, 24 Jan 2014 13:34:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340894 - in head: databases/py-flask-sqlalchemy devel/py-flask-babel devel/py-gdata devel/py-speaklater graphics/py-wand net/py-ndg_httpsclient net/py-urllib3 security/py-itsdangerous ... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 13:34:35 -0000 Author: olivierd Date: Fri Jan 24 13:34:31 2014 New Revision: 340894 URL: http://svnweb.freebsd.org/changeset/ports/340894 QAT: https://qat.redports.org/buildarchive/r340894/ Log: Convert my own Python ports to: - STAGEDIR - Replace USE_PYDISTUTILS= easy_install by USE_PYDISTUTILS= yes While I'm here - Use PYDISTUTILS_AUTOPLIST - Adjust or add LICENSE Deleted: head/databases/py-flask-sqlalchemy/pkg-plist head/devel/py-flask-babel/pkg-plist head/devel/py-speaklater/pkg-plist head/net/py-ndg_httpsclient/pkg-plist head/security/py-itsdangerous/pkg-plist head/sysutils/py-iowait/pkg-plist head/textproc/py-rst2html5/pkg-plist head/textproc/py-rstyoutube/pkg-plist head/www/py-flask-uploads/pkg-plist head/www/py-flask/pkg-plist Modified: head/databases/py-flask-sqlalchemy/Makefile head/devel/py-flask-babel/Makefile head/devel/py-gdata/Makefile head/devel/py-speaklater/Makefile head/graphics/py-wand/Makefile head/net/py-ndg_httpsclient/Makefile head/net/py-urllib3/Makefile head/net/py-urllib3/pkg-plist head/security/py-itsdangerous/Makefile head/sysutils/py-iowait/Makefile head/textproc/py-docutils/Makefile head/textproc/py-rst2html5/Makefile head/textproc/py-rstyoutube/Makefile head/textproc/py-rstyoutube/pkg-descr head/www/py-bjoern/Makefile head/www/py-flask-uploads/Makefile head/www/py-flask/Makefile Modified: head/databases/py-flask-sqlalchemy/Makefile ============================================================================== --- head/databases/py-flask-sqlalchemy/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/databases/py-flask-sqlalchemy/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -16,7 +16,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flas ${PYTHON_PKGNAMEPREFIX}sqlalchemy>=0.7:${PORTSDIR}/databases/py-sqlalchemy USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/py-flask-babel/Makefile ============================================================================== --- head/devel/py-flask-babel/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/devel/py-flask-babel/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -17,13 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flas ${PYTHON_PKGNAMEPREFIX}speaklater>=1.3:${PORTSDIR}/devel/py-speaklater USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes -.include - -.if ${PYTHON_REL} >= 320 -.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" -.endif - -.include +.include Modified: head/devel/py-gdata/Makefile ============================================================================== --- head/devel/py-gdata/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/devel/py-gdata/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -27,7 +27,6 @@ OPTIONSFILE?= ${PORT_DBDIR}/py-${PORTNAM EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} -NO_STAGE= yes .include .if ${PORT_OPTIONS:MM2CRYPTO} @@ -42,8 +41,9 @@ RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}gmp post-install: .if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR}/ - ${CP} -R ${WRKSRC}/samples/ ${EXAMPLESDIR}/ + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ + @cd ${WRKSRC}/samples && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .endif .include Modified: head/devel/py-speaklater/Makefile ============================================================================== --- head/devel/py-speaklater/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/devel/py-speaklater/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -14,13 +14,7 @@ COMMENT= Lazy string Python module for t LICENSE= BSD USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes -.include - -.if ${PYTHON_REL} >= 320 -.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" -.endif - -.include +.include Modified: head/graphics/py-wand/Makefile ============================================================================== --- head/graphics/py-wand/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/graphics/py-wand/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -9,14 +9,14 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= olivierd@FreeBSD.org COMMENT= MagickWand Python binding -LIB_DEPENDS= MagickWand:${PORTSDIR}/graphics/ImageMagick +LICENSE= MIT -USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +LIB_DEPENDS= libMagickWand.so:${PORTSDIR}/graphics/ImageMagick -PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s|cmdclass={'upload_doc': upload_doc}||" \ ${WRKSRC}/setup.py Modified: head/net/py-ndg_httpsclient/Makefile ============================================================================== --- head/net/py-ndg_httpsclient/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/net/py-ndg_httpsclient/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -15,7 +15,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}open ${PYTHON_PKGNAMEPREFIX}asn1>=0.1.4:${PORTSDIR}/devel/py-asn1 USE_PYTHON= 2 -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/py-urllib3/Makefile ============================================================================== --- head/net/py-urllib3/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/net/py-urllib3/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -3,6 +3,7 @@ PORTNAME= urllib3 PORTVERSION= 1.7.1 +PORTREVISION= 1 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,10 +14,9 @@ COMMENT= Enhance HTTP Python's standard LICENSE= MIT USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes PYTHON_PY3K_PLIST_HACK= yes -NO_STAGE= yes .include # ndg_httpclient is only available for Python 2 @@ -27,7 +27,6 @@ PLIST_SUB+= SSL="" PLIST_SUB+= SSL="@comment " .endif -# distutils module can't exclude file (during install step) post-extract: .if ${PYTHON_REL} >= 300 @${RM} ${WRKSRC}/urllib3/contrib/pyopenssl.py Modified: head/net/py-urllib3/pkg-plist ============================================================================== --- head/net/py-urllib3/pkg-plist Fri Jan 24 12:50:53 2014 (r340893) +++ head/net/py-urllib3/pkg-plist Fri Jan 24 13:34:31 2014 (r340894) @@ -1,78 +1,71 @@ -%%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/not-zip-safe -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/handlers.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/handlers.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/handlers.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/proxy.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/proxy.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/proxy.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/server.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/server.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/server.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/testcase.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/testcase.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver/testcase.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/_collections.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/_collections.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/_collections.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/connectionpool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/connectionpool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/connectionpool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib/ntlmpool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib/ntlmpool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib/ntlmpool.pyo -%%SSL%%%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib/pyopenssl.py -%%SSL%%%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib/pyopenssl.pyc -%%SSL%%%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib/pyopenssl.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/exceptions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/exceptions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/exceptions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/fields.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/fields.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/fields.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/filepost.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/filepost.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/filepost.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/ordered_dict.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/ordered_dict.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/ordered_dict.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/six.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/six.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/six.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/ssl_match_hostname/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/ssl_match_hostname/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/ssl_match_hostname/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/poolmanager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/poolmanager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/poolmanager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/request.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/request.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/request.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/response.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/response.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/response.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/util.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/util.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/util.pyo -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages/ssl_match_hostname -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/packages -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3/contrib -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/urllib3 -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/dummyserver -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% +%%PYTHON_SITELIBDIR%%/dummyserver/__init__.py +%%PYTHON_SITELIBDIR%%/dummyserver/__init__.pyc +%%PYTHON_SITELIBDIR%%/dummyserver/__init__.pyo +%%PYTHON_SITELIBDIR%%/dummyserver/handlers.py +%%PYTHON_SITELIBDIR%%/dummyserver/handlers.pyc +%%PYTHON_SITELIBDIR%%/dummyserver/handlers.pyo +%%PYTHON_SITELIBDIR%%/dummyserver/proxy.py +%%PYTHON_SITELIBDIR%%/dummyserver/proxy.pyc +%%PYTHON_SITELIBDIR%%/dummyserver/proxy.pyo +%%PYTHON_SITELIBDIR%%/dummyserver/server.py +%%PYTHON_SITELIBDIR%%/dummyserver/server.pyc +%%PYTHON_SITELIBDIR%%/dummyserver/server.pyo +%%PYTHON_SITELIBDIR%%/dummyserver/testcase.py +%%PYTHON_SITELIBDIR%%/dummyserver/testcase.pyc +%%PYTHON_SITELIBDIR%%/dummyserver/testcase.pyo +%%PYTHON_SITELIBDIR%%/urllib3/__init__.py +%%PYTHON_SITELIBDIR%%/urllib3/__init__.pyc +%%PYTHON_SITELIBDIR%%/urllib3/__init__.pyo +%%PYTHON_SITELIBDIR%%/urllib3/_collections.py +%%PYTHON_SITELIBDIR%%/urllib3/_collections.pyc +%%PYTHON_SITELIBDIR%%/urllib3/_collections.pyo +%%PYTHON_SITELIBDIR%%/urllib3/connectionpool.py +%%PYTHON_SITELIBDIR%%/urllib3/connectionpool.pyc +%%PYTHON_SITELIBDIR%%/urllib3/connectionpool.pyo +%%PYTHON_SITELIBDIR%%/urllib3/contrib/__init__.py +%%PYTHON_SITELIBDIR%%/urllib3/contrib/__init__.pyc +%%PYTHON_SITELIBDIR%%/urllib3/contrib/__init__.pyo +%%PYTHON_SITELIBDIR%%/urllib3/contrib/ntlmpool.py +%%PYTHON_SITELIBDIR%%/urllib3/contrib/ntlmpool.pyc +%%PYTHON_SITELIBDIR%%/urllib3/contrib/ntlmpool.pyo +%%SSL%%%%PYTHON_SITELIBDIR%%/urllib3/contrib/pyopenssl.py +%%SSL%%%%PYTHON_SITELIBDIR%%/urllib3/contrib/pyopenssl.pyc +%%SSL%%%%PYTHON_SITELIBDIR%%/urllib3/contrib/pyopenssl.pyo +%%PYTHON_SITELIBDIR%%/urllib3/exceptions.py +%%PYTHON_SITELIBDIR%%/urllib3/exceptions.pyc +%%PYTHON_SITELIBDIR%%/urllib3/exceptions.pyo +%%PYTHON_SITELIBDIR%%/urllib3/fields.py +%%PYTHON_SITELIBDIR%%/urllib3/fields.pyc +%%PYTHON_SITELIBDIR%%/urllib3/fields.pyo +%%PYTHON_SITELIBDIR%%/urllib3/filepost.py +%%PYTHON_SITELIBDIR%%/urllib3/filepost.pyc +%%PYTHON_SITELIBDIR%%/urllib3/filepost.pyo +%%PYTHON_SITELIBDIR%%/urllib3/packages/__init__.py +%%PYTHON_SITELIBDIR%%/urllib3/packages/__init__.pyc +%%PYTHON_SITELIBDIR%%/urllib3/packages/__init__.pyo +%%PYTHON_SITELIBDIR%%/urllib3/packages/ordered_dict.py +%%PYTHON_SITELIBDIR%%/urllib3/packages/ordered_dict.pyc +%%PYTHON_SITELIBDIR%%/urllib3/packages/ordered_dict.pyo +%%PYTHON_SITELIBDIR%%/urllib3/packages/six.py +%%PYTHON_SITELIBDIR%%/urllib3/packages/six.pyc +%%PYTHON_SITELIBDIR%%/urllib3/packages/six.pyo +%%PYTHON_SITELIBDIR%%/urllib3/packages/ssl_match_hostname/__init__.py +%%PYTHON_SITELIBDIR%%/urllib3/packages/ssl_match_hostname/__init__.pyc +%%PYTHON_SITELIBDIR%%/urllib3/packages/ssl_match_hostname/__init__.pyo +%%PYTHON_SITELIBDIR%%/urllib3/poolmanager.py +%%PYTHON_SITELIBDIR%%/urllib3/poolmanager.pyc +%%PYTHON_SITELIBDIR%%/urllib3/poolmanager.pyo +%%PYTHON_SITELIBDIR%%/urllib3/request.py +%%PYTHON_SITELIBDIR%%/urllib3/request.pyc +%%PYTHON_SITELIBDIR%%/urllib3/request.pyo +%%PYTHON_SITELIBDIR%%/urllib3/response.py +%%PYTHON_SITELIBDIR%%/urllib3/response.pyc +%%PYTHON_SITELIBDIR%%/urllib3/response.pyo +%%PYTHON_SITELIBDIR%%/urllib3/util.py +%%PYTHON_SITELIBDIR%%/urllib3/util.pyc +%%PYTHON_SITELIBDIR%%/urllib3/util.pyo +@dirrm %%PYTHON_SITELIBDIR%%/urllib3/packages/ssl_match_hostname +@dirrm %%PYTHON_SITELIBDIR%%/urllib3/packages +@dirrm %%PYTHON_SITELIBDIR%%/urllib3/contrib +@dirrm %%PYTHON_SITELIBDIR%%/urllib3 +@dirrm %%PYTHON_SITELIBDIR%%/dummyserver Modified: head/security/py-itsdangerous/Makefile ============================================================================== --- head/security/py-itsdangerous/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/security/py-itsdangerous/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -11,22 +11,16 @@ MAINTAINER= olivierd@FreeBSD.org COMMENT= Various helpers to pass data in untrusted environments USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options OPTIONS_DEFINE= JSON -NO_STAGE= yes .include -.include - .if ${PORT_OPTIONS:MJSON} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}simplejson>=3.0:${PORTSDIR}/devel/py-simplejson .endif -.if ${PYTHON_REL} >= 320 -.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" -.endif - -.include +.include Modified: head/sysutils/py-iowait/Makefile ============================================================================== --- head/sysutils/py-iowait/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/sysutils/py-iowait/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -10,14 +10,10 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= olivierd@FreeBSD.org COMMENT= Python module for I/O completion events +LICENSE= GPLv3 + USE_PYTHON= yes USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes -.include - -.if ${PYTHON_REL} >= 320 -.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" -.endif - -.include +.include Modified: head/textproc/py-docutils/Makefile ============================================================================== --- head/textproc/py-docutils/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/textproc/py-docutils/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -13,6 +13,7 @@ COMMENT= Python Documentation Utilities USE_PYTHON= yes USE_PYDISTUTILS= yes +PYTHON_PY3K_PLIST_HACK= yes OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options OPTIONS_DEFINE= PYGMENTS @@ -22,22 +23,15 @@ BIN_SCRIPTS= rst2html.py rst2s5.py rst2l rst2man.py rst2xml.py rst2pseudoxml.py rstpep2html.py \ rst2odt.py rst2odt_prepstyles.py -NO_STAGE= yes .include -.include - .if ${PORT_OPTIONS:MPYGMENTS} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>=1.6:${PORTSDIR}/textproc/py-pygments .endif -.if ${PYTHON_REL} >= 320 -.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" -.endif - post-install: .for script in ${BIN_SCRIPTS} - @cd ${PREFIX}/bin && ${LN} -sf ${script} ${script:C/\.py//} + @cd ${STAGEDIR}${PREFIX}/bin && ${LN} -sf ${script} ${script:C/\.py//} .endfor -.include +.include Modified: head/textproc/py-rst2html5/Makefile ============================================================================== --- head/textproc/py-rst2html5/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/textproc/py-rst2html5/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -10,12 +10,14 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= olivierd@FreeBSD.org COMMENT= Produces HTML5 documents from reStructuredText sources +LICENSE= MIT + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Genshi>=0.7:${PORTSDIR}/textproc/py-genshi \ ${PYTHON_PKGNAMEPREFIX}pygments>=1.6:${PORTSDIR}/textproc/py-pygments \ - ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:${PORTSDIR}/textproc/py-docutils + ${PYTHON_PKGNAMEPREFIX}docutils>=0.11:${PORTSDIR}/textproc/py-docutils USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/textproc/py-rstyoutube/Makefile ============================================================================== --- head/textproc/py-rstyoutube/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/textproc/py-rstyoutube/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -7,13 +7,15 @@ CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= duchateau.olivier@gmail.com +MAINTAINER= olivierd@FreeBSD.org COMMENT= Embed YouTube videos in reStructuredText documents -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/docutils/__init__.py:${PORTSDIR}/textproc/py-docutils +LICENSE= MIT -USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>=0.11:${PORTSDIR}/textproc/py-docutils + +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/textproc/py-rstyoutube/pkg-descr ============================================================================== --- head/textproc/py-rstyoutube/pkg-descr Fri Jan 24 12:50:53 2014 (r340893) +++ head/textproc/py-rstyoutube/pkg-descr Fri Jan 24 13:34:31 2014 (r340894) @@ -1,4 +1,4 @@ rstyoutube is a package for embedding YouTube videos in reStructuredText documents. -WWW: http://bitbucket.org/cliff/rstyoutube +WWW: http://bitbucket.org/cliff/rstyoutube Modified: head/www/py-bjoern/Makefile ============================================================================== --- head/www/py-bjoern/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/www/py-bjoern/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -10,17 +10,15 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= olivierd@FreeBSD.org COMMENT= Fast Python WSGI server -LICENSE= BSD +LICENSE= BSD2CLAUSE LIB_DEPENDS= ev:${PORTSDIR}/devel/libev USE_PYTHON= 2 USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lc -PLIST_FILES= %%PYTHON_SITELIBDIR%%/${PORTNAME}.so - -NO_STAGE= yes .include Modified: head/www/py-flask-uploads/Makefile ============================================================================== --- head/www/py-flask-uploads/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/www/py-flask-uploads/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -7,15 +7,15 @@ CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= duchateau.olivier@gmail.com +MAINTAINER= olivierd@FreeBSD.org COMMENT= Flexible and efficient upload handling for Flask LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.6:${PORTSDIR}/www/py-flask +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.10:${PORTSDIR}/www/py-flask -USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/py-flask/Makefile ============================================================================== --- head/www/py-flask/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/www/py-flask/Makefile Fri Jan 24 13:34:31 2014 (r340894) @@ -12,18 +12,12 @@ COMMENT= Micro web framework LICENSE= BSD -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}werkzeug>=0.8:${PORTSDIR}/www/py-werkzeug \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}werkzeug>=0.9:${PORTSDIR}/www/py-werkzeug \ ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.6:${PORTSDIR}/devel/py-Jinja2 \ ${PYTHON_PKGNAMEPREFIX}itsdangerous>=0.21:${PORTSDIR}/security/py-itsdangerous USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes -.include - -.if ${PYTHON_REL} >= 320 -.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc" -.endif - -.include +.include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 13:54:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BC948BD; Fri, 24 Jan 2014 13:54:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37ADD1EFE; Fri, 24 Jan 2014 13:54:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ODsFqk054443; Fri, 24 Jan 2014 13:54:15 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ODsFPY054442; Fri, 24 Jan 2014 13:54:15 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201401241354.s0ODsFPY054442@svn.freebsd.org> From: Jimmy Olgeni Date: Fri, 24 Jan 2014 13:54:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340895 - head/databases/slony1/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.17 Precedence: list List-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, 24 Jan 2014 13:54:15 -0000 Author: olgeni Date: Fri Jan 24 13:54:14 2014 New Revision: 340895 URL: http://svnweb.freebsd.org/changeset/ports/340895 QAT: https://qat.redports.org/buildarchive/r340895/ Log: Fix databases/slony1 to compile on FreeBSD 10. PR: ports/186048 Submitted by: maintainer Added: head/databases/slony1/files/patch-slonik-Makefile.patch (contents, props changed) Added: head/databases/slony1/files/patch-slonik-Makefile.patch ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/slony1/files/patch-slonik-Makefile.patch Fri Jan 24 13:54:14 2014 (r340895) @@ -0,0 +1,11 @@ +--- src/slonik/Makefile.orig 2014-01-23 14:14:12.352062131 -0500 ++++ src/slonik/Makefile 2014-01-23 14:14:12.352750379 -0500 +@@ -18,7 +18,7 @@ + + CFLAGS += -I$(slony_top_builddir) -DPGSHARE="\"$(pgsharedir)\"" -DPG_VERSION_MAJOR=$(PG_VERSION_MAJOR) + ifneq ($(PG_VERSION_MAJOR), 7) +-LDFLAGS += -lpgport ++LDFLAGS += `$(pgbindir)/pg_config --libs` + endif + + PROG = slonik From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 13:54:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E32279A7; Fri, 24 Jan 2014 13:54:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B5A361F08; Fri, 24 Jan 2014 13:54:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ODsgv2054572; Fri, 24 Jan 2014 13:54:42 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ODsg2l054570; Fri, 24 Jan 2014 13:54:42 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401241354.s0ODsg2l054570@svn.freebsd.org> From: Alex Dupre Date: Fri, 24 Jan 2014 13:54:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340896 - head/java/eclipse-windowbuilder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 13:54:43 -0000 Author: ale Date: Fri Jan 24 13:54:42 2014 New Revision: 340896 URL: http://svnweb.freebsd.org/changeset/ports/340896 QAT: https://qat.redports.org/buildarchive/r340896/ Log: Update to 1.6.1 release and stagify. Modified: head/java/eclipse-windowbuilder/Makefile head/java/eclipse-windowbuilder/distinfo Modified: head/java/eclipse-windowbuilder/Makefile ============================================================================== --- head/java/eclipse-windowbuilder/Makefile Fri Jan 24 13:54:14 2014 (r340895) +++ head/java/eclipse-windowbuilder/Makefile Fri Jan 24 13:54:42 2014 (r340896) @@ -1,15 +1,15 @@ # Created by: Alex Dupre # $FreeBSD$ -PORTNAME= windowsbuilder -PORTVERSION= 1.1.0 +PORTNAME= windowbuilder +PORTVERSION= 1.6.1 CATEGORIES= java devel MASTER_SITES= ${MASTER_SITE_ECLIPSE:S,/eclipse/downloads/drops/,/windowbuilder/WB/release/,} \ ${MASTER_SITE_LOCAL:S,%SUBDIR%/,ale/:native,} -MASTER_SITE_SUBDIR= R201109201200 +MASTER_SITE_SUBDIR= R201309271200 PKGNAMEPREFIX= eclipse- DISTFILES= WB_v${PORTVERSION}_UpdateSite_for_Eclipse3.7.zip \ - org.eclipse.wb.os.freebsd_1.1.0.r37x201109091012.jar:native + org.eclipse.wb.os.freebsd_1.6.1.r37x201309092314.jar:native DIST_SUBDIR= eclipse EXTRACT_ONLY= WB_v${PORTVERSION}_UpdateSite_for_Eclipse3.7.zip @@ -22,11 +22,10 @@ RUN_DEPENDS= eclipse:${PORTSDIR}/java/ec WRKSRC= ${WRKDIR} -NO_STAGE= yes .include "${.CURDIR}/../eclipse/Makefile.plugins" post-extract: - @${CP} ${_DISTDIR}/org.eclipse.wb.os.freebsd_1.1.0.r37x201109091012.jar \ + @${CP} ${_DISTDIR}/org.eclipse.wb.os.freebsd_1.6.1.r37x201309092314.jar \ ${WRKSRC}/plugins .include Modified: head/java/eclipse-windowbuilder/distinfo ============================================================================== --- head/java/eclipse-windowbuilder/distinfo Fri Jan 24 13:54:14 2014 (r340895) +++ head/java/eclipse-windowbuilder/distinfo Fri Jan 24 13:54:42 2014 (r340896) @@ -1,4 +1,4 @@ -SHA256 (eclipse/WB_v1.1.0_UpdateSite_for_Eclipse3.7.zip) = 3614c30aba4e8c02aa527e79deffd4cdc13f37d7d93604f1778ed9c1ec2aec32 -SIZE (eclipse/WB_v1.1.0_UpdateSite_for_Eclipse3.7.zip) = 38898666 -SHA256 (eclipse/org.eclipse.wb.os.freebsd_1.1.0.r37x201109091012.jar) = 797b4549e382554d50ea49ad2727aaa955956181614ce0418c5802347f2de0d9 -SIZE (eclipse/org.eclipse.wb.os.freebsd_1.1.0.r37x201109091012.jar) = 44195 +SHA256 (eclipse/WB_v1.6.1_UpdateSite_for_Eclipse3.7.zip) = 671aa98367bb1763d611b819a265b451b040dd950e23c0a58bec6185005a3097 +SIZE (eclipse/WB_v1.6.1_UpdateSite_for_Eclipse3.7.zip) = 39752867 +SHA256 (eclipse/org.eclipse.wb.os.freebsd_1.6.1.r37x201309092314.jar) = 797b4549e382554d50ea49ad2727aaa955956181614ce0418c5802347f2de0d9 +SIZE (eclipse/org.eclipse.wb.os.freebsd_1.6.1.r37x201309092314.jar) = 44195 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 13:55:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96CC0AC1; Fri, 24 Jan 2014 13:55:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 695261F18; Fri, 24 Jan 2014 13:55:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ODtifS054835; Fri, 24 Jan 2014 13:55:44 GMT (envelope-from ale@svn.freebsd.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ODtiAF054833; Fri, 24 Jan 2014 13:55:44 GMT (envelope-from ale@svn.freebsd.org) Message-Id: <201401241355.s0ODtiAF054833@svn.freebsd.org> From: Alex Dupre Date: Fri, 24 Jan 2014 13:55:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340897 - head/devel/subversive X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 13:55:44 -0000 Author: ale Date: Fri Jan 24 13:55:43 2014 New Revision: 340897 URL: http://svnweb.freebsd.org/changeset/ports/340897 QAT: https://qat.redports.org/buildarchive/r340897/ Log: Update to 1.1.2 release and stagify. Modified: head/devel/subversive/Makefile head/devel/subversive/distinfo Modified: head/devel/subversive/Makefile ============================================================================== --- head/devel/subversive/Makefile Fri Jan 24 13:54:42 2014 (r340896) +++ head/devel/subversive/Makefile Fri Jan 24 13:55:43 2014 (r340897) @@ -2,27 +2,26 @@ # $FreeBSD$ PORTNAME= subversive -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.2 PORTEPOCH= 1 CATEGORIES= devel java -MASTER_SITES= ${MASTER_SITE_ECLIPSE:S,%SUBDIR%,technology/subversive/1.0/builds,:S,$,:core,} \ +MASTER_SITES= ${MASTER_SITE_ECLIPSE:S,%SUBDIR%,technology/subversive/1.1/builds,:S,$,:core,} \ http://community.polarion.com/projects/subversive/download/eclipse/3.0/builds/:connectors -DISTNAME= Subversive-${PORTVERSION}.I20121109-1700 +DISTNAME= Subversive-${PORTVERSION}.I20131116-1700 DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:core ${CONNECTORS}:connectors MAINTAINER= ale@FreeBSD.org COMMENT= An Eclipse plug-in that provides Subversion support -RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse - LICENSE= EPL -CONNECTORS= Subversive-connectors-3.0.0.I20121109-1700.zip +RUN_DEPENDS= eclipse:${PORTSDIR}/java/eclipse + +CONNECTORS= Subversive-connectors-allplatforms-3.0.5.I20140122-1700.zip NO_WRKSUBDIR= yes USE_ZIP= yes -NO_STAGE= yes .include "${.CURDIR}/../../java/eclipse/Makefile.plugins" .include Modified: head/devel/subversive/distinfo ============================================================================== --- head/devel/subversive/distinfo Fri Jan 24 13:54:42 2014 (r340896) +++ head/devel/subversive/distinfo Fri Jan 24 13:55:43 2014 (r340897) @@ -1,4 +1,4 @@ -SHA256 (Subversive-1.0.0.I20121109-1700.zip) = f61309c481ae0bdb7175634549c1e1e65fad89f52097a4e0843d4efc5278cf57 -SIZE (Subversive-1.0.0.I20121109-1700.zip) = 20058585 -SHA256 (Subversive-connectors-3.0.0.I20121109-1700.zip) = c51438e6b926afbfd3aaa2fbaed8ca9294b4aad107beb9f87e739164f25dc4aa -SIZE (Subversive-connectors-3.0.0.I20121109-1700.zip) = 21403440 +SHA256 (Subversive-1.1.2.I20131116-1700.zip) = 390e701eae93b751c74a54cf9f285ee1ada7387d434a8bc9c872f39b21521623 +SIZE (Subversive-1.1.2.I20131116-1700.zip) = 20052086 +SHA256 (Subversive-connectors-allplatforms-3.0.5.I20140122-1700.zip) = d93a20c554300d68fcaccd7c91c1ced22f0fb171b3820e261056e42eabd389b4 +SIZE (Subversive-connectors-allplatforms-3.0.5.I20140122-1700.zip) = 38551819 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 13:58:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C992DBE4; Fri, 24 Jan 2014 13:58:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B5EC61F36; Fri, 24 Jan 2014 13:58:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ODwTaX055202; Fri, 24 Jan 2014 13:58:29 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ODwTSn055200; Fri, 24 Jan 2014 13:58:29 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401241358.s0ODwTSn055200@svn.freebsd.org> From: Mathieu Arnold Date: Fri, 24 Jan 2014 13:58:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340898 - head/textproc/p5-Text-FixedLength-Extra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 13:58:29 -0000 Author: mat Date: Fri Jan 24 13:58:29 2014 New Revision: 340898 URL: http://svnweb.freebsd.org/changeset/ports/340898 QAT: https://qat.redports.org/buildarchive/r340898/ Log: - Convert to staging - Kill patching that was needed before perl 5.6. Sponsored by: Absolight Modified: head/textproc/p5-Text-FixedLength-Extra/Makefile head/textproc/p5-Text-FixedLength-Extra/pkg-plist Modified: head/textproc/p5-Text-FixedLength-Extra/Makefile ============================================================================== --- head/textproc/p5-Text-FixedLength-Extra/Makefile Fri Jan 24 13:55:43 2014 (r340897) +++ head/textproc/p5-Text-FixedLength-Extra/Makefile Fri Jan 24 13:58:29 2014 (r340898) @@ -16,13 +16,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure patch -MAN3= Text::FixedLength::Extra.3 - -NO_STAGE= yes -post-patch: - ${PERL} -pi -e 's/^our\s+([\$$\@\%]\w+)/use vars qw($$1);$$1/;' \ - -e '$$_="" if /require 5/;' \ - -e '$$_="" if /use warnings/;' \ - ${WRKSRC}/Extra.pm - .include Modified: head/textproc/p5-Text-FixedLength-Extra/pkg-plist ============================================================================== --- head/textproc/p5-Text-FixedLength-Extra/pkg-plist Fri Jan 24 13:55:43 2014 (r340897) +++ head/textproc/p5-Text-FixedLength-Extra/pkg-plist Fri Jan 24 13:58:29 2014 (r340898) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::FixedLength::Extra.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/FixedLength/Extra/.packlist %%SITE_PERL%%/Text/FixedLength/Extra.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/FixedLength/Extra From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:46:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EAD2195D; Fri, 24 Jan 2014 14:46:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CB725138A; Fri, 24 Jan 2014 14:46:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OEk0Up074302; Fri, 24 Jan 2014 14:46:00 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OEjwPD074280; Fri, 24 Jan 2014 14:45:58 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401241445.s0OEjwPD074280@svn.freebsd.org> From: Martin Wilke Date: Fri, 24 Jan 2014 14:45:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340899 - in head: audio/rubygem-librmpd audio/rubygem-ruby-mp3info converters/rubygem-bsdconv databases/rubygem-activerecord-jdbc-adapter databases/rubygem-activerecord-jdbcmysql-adapt... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:46:01 -0000 Author: miwi Date: Fri Jan 24 14:45:58 2014 New Revision: 340899 URL: http://svnweb.freebsd.org/changeset/ports/340899 QAT: https://qat.redports.org/buildarchive/r340899/ Log: - Stage safe Modified: head/audio/rubygem-librmpd/Makefile head/audio/rubygem-ruby-mp3info/Makefile head/converters/rubygem-bsdconv/Makefile head/databases/rubygem-activerecord-jdbc-adapter/Makefile head/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile head/databases/rubygem-data_objects/Makefile head/databases/rubygem-do_mysql/Makefile head/databases/rubygem-do_postgres/Makefile head/databases/rubygem-do_sqlite3/Makefile head/databases/rubygem-jdbc-mysql/Makefile head/databases/rubygem-rubyrep/Makefile Modified: head/audio/rubygem-librmpd/Makefile ============================================================================== --- head/audio/rubygem-librmpd/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/audio/rubygem-librmpd/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -10,7 +10,6 @@ MAINTAINER= vg@FreeBSD.org COMMENT= Is a simple yet powerful Music Player Daemon library USE_RUBY= yes -NO_STAGE= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/audio/rubygem-ruby-mp3info/Makefile ============================================================================== --- head/audio/rubygem-ruby-mp3info/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/audio/rubygem-ruby-mp3info/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -10,7 +10,6 @@ MAINTAINER= tha_walka@hotmail.com COMMENT= A Ruby library to access information on mp3 files USE_RUBY= yes -NO_STAGE= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/converters/rubygem-bsdconv/Makefile ============================================================================== --- head/converters/rubygem-bsdconv/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/converters/rubygem-bsdconv/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -18,7 +18,6 @@ CONFIGURE_ARGS+=--with-bsdconv-dir=${LOC GEM_NAME= ${DISTNAME} -NO_STAGE= yes USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/databases/rubygem-activerecord-jdbc-adapter/Makefile ============================================================================== --- head/databases/rubygem-activerecord-jdbc-adapter/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/databases/rubygem-activerecord-jdbc-adapter/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile ============================================================================== --- head/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -17,5 +17,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/databases/rubygem-data_objects/Makefile ============================================================================== --- head/databases/rubygem-data_objects/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/databases/rubygem-data_objects/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/databases/rubygem-do_mysql/Makefile ============================================================================== --- head/databases/rubygem-do_mysql/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/databases/rubygem-do_mysql/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/databases/rubygem-do_postgres/Makefile ============================================================================== --- head/databases/rubygem-do_postgres/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/databases/rubygem-do_postgres/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -17,5 +17,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/databases/rubygem-do_sqlite3/Makefile ============================================================================== --- head/databases/rubygem-do_sqlite3/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/databases/rubygem-do_sqlite3/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -18,5 +18,4 @@ RUBYGEM_AUTOPLIST= yes CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE} -NO_STAGE= yes .include Modified: head/databases/rubygem-jdbc-mysql/Makefile ============================================================================== --- head/databases/rubygem-jdbc-mysql/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/databases/rubygem-jdbc-mysql/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/databases/rubygem-rubyrep/Makefile ============================================================================== --- head/databases/rubygem-rubyrep/Makefile Fri Jan 24 13:58:29 2014 (r340898) +++ head/databases/rubygem-rubyrep/Makefile Fri Jan 24 14:45:58 2014 (r340899) @@ -26,7 +26,6 @@ OPTIONS_DEFAULT= PGSQL PLIST_FILES= bin/rubyrep -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPGSQL} From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:46:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E24FA3A; Fri, 24 Jan 2014 14:46:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3E8261390; Fri, 24 Jan 2014 14:46:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OEkVsa074572; Fri, 24 Jan 2014 14:46:31 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OEkSws074556; Fri, 24 Jan 2014 14:46:28 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401241446.s0OEkSws074556@svn.freebsd.org> From: Martin Wilke Date: Fri, 24 Jan 2014 14:46:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340900 - in head/devel: rubygem-annoy rubygem-app_config rubygem-atoulme-antwrap rubygem-awesome_print rubygem-bin_utils rubygem-bugspots rubygem-caesars rubygem-childprocess rubygem-c... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:46:31 -0000 Author: miwi Date: Fri Jan 24 14:46:28 2014 New Revision: 340900 URL: http://svnweb.freebsd.org/changeset/ports/340900 QAT: https://qat.redports.org/buildarchive/r340900/ Log: - Stage safe Modified: head/devel/rubygem-annoy/Makefile head/devel/rubygem-app_config/Makefile head/devel/rubygem-atoulme-antwrap/Makefile head/devel/rubygem-awesome_print/Makefile head/devel/rubygem-bin_utils/Makefile head/devel/rubygem-bugspots/Makefile head/devel/rubygem-caesars/Makefile head/devel/rubygem-childprocess/Makefile head/devel/rubygem-clio/Makefile head/devel/rubygem-cool.io/Makefile head/devel/rubygem-daemon_controller/Makefile head/devel/rubygem-ditz/Makefile Modified: head/devel/rubygem-annoy/Makefile ============================================================================== --- head/devel/rubygem-annoy/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-annoy/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-app_config/Makefile ============================================================================== --- head/devel/rubygem-app_config/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-app_config/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -17,7 +17,6 @@ MONGO_DESC= mongo backend support SQLITE3_DESC= sqlite3 backend support OPTIONSFILE= ${PORT_DBDIR}/rubygem-${PORTNAME}/options -NO_STAGE= yes .include .if ${PORT_OPTIONS:MSQLITE3} Modified: head/devel/rubygem-atoulme-antwrap/Makefile ============================================================================== --- head/devel/rubygem-atoulme-antwrap/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-atoulme-antwrap/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST=yes -NO_STAGE= yes .include Modified: head/devel/rubygem-awesome_print/Makefile ============================================================================== --- head/devel/rubygem-awesome_print/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-awesome_print/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-bin_utils/Makefile ============================================================================== --- head/devel/rubygem-bin_utils/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-bin_utils/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-bugspots/Makefile ============================================================================== --- head/devel/rubygem-bugspots/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-bugspots/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -18,5 +18,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/bugspots bin/git-bugspots -NO_STAGE= yes .include Modified: head/devel/rubygem-caesars/Makefile ============================================================================== --- head/devel/rubygem-caesars/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-caesars/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-childprocess/Makefile ============================================================================== --- head/devel/rubygem-childprocess/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-childprocess/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-clio/Makefile ============================================================================== --- head/devel/rubygem-clio/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-clio/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-cool.io/Makefile ============================================================================== --- head/devel/rubygem-cool.io/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-cool.io/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-daemon_controller/Makefile ============================================================================== --- head/devel/rubygem-daemon_controller/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-daemon_controller/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -14,5 +14,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-ditz/Makefile ============================================================================== --- head/devel/rubygem-ditz/Makefile Fri Jan 24 14:45:58 2014 (r340899) +++ head/devel/rubygem-ditz/Makefile Fri Jan 24 14:46:28 2014 (r340900) @@ -17,5 +17,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/ditz -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:46:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC3EAB1B; Fri, 24 Jan 2014 14:46:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 96E901397; Fri, 24 Jan 2014 14:46:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OEkriG074839; Fri, 24 Jan 2014 14:46:53 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OEko7V074821; Fri, 24 Jan 2014 14:46:50 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401241446.s0OEko7V074821@svn.freebsd.org> From: Martin Wilke Date: Fri, 24 Jan 2014 14:46:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340901 - in head/devel: rubygem-edavis10-object_daddy rubygem-errand rubygem-getopt rubygem-gettext rubygem-hashie rubygem-holidays rubygem-iobuffer rubygem-locale rubygem-metaid rubyg... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:46:53 -0000 Author: miwi Date: Fri Jan 24 14:46:50 2014 New Revision: 340901 URL: http://svnweb.freebsd.org/changeset/ports/340901 QAT: https://qat.redports.org/buildarchive/r340901/ Log: - Stage safe Modified: head/devel/rubygem-edavis10-object_daddy/Makefile head/devel/rubygem-errand/Makefile head/devel/rubygem-getopt/Makefile head/devel/rubygem-gettext/Makefile head/devel/rubygem-hashie/Makefile head/devel/rubygem-holidays/Makefile head/devel/rubygem-iobuffer/Makefile head/devel/rubygem-locale/Makefile head/devel/rubygem-metaid/Makefile head/devel/rubygem-mixlib-authentication/Makefile head/devel/rubygem-mixlib-cli/Makefile head/devel/rubygem-mixlib-config/Makefile head/devel/rubygem-mixlib-log/Makefile head/devel/rubygem-mixlib-shellout/Makefile Modified: head/devel/rubygem-edavis10-object_daddy/Makefile ============================================================================== --- head/devel/rubygem-edavis10-object_daddy/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-edavis10-object_daddy/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-errand/Makefile ============================================================================== --- head/devel/rubygem-errand/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-errand/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-getopt/Makefile ============================================================================== --- head/devel/rubygem-getopt/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-getopt/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -14,5 +14,4 @@ USE_RAKE= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-gettext/Makefile ============================================================================== --- head/devel/rubygem-gettext/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-gettext/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -16,5 +16,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rmsgfmt bin/rmsginit bin/rmsgmerge bin/rxgettext -NO_STAGE= yes .include Modified: head/devel/rubygem-hashie/Makefile ============================================================================== --- head/devel/rubygem-hashie/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-hashie/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST=yes -NO_STAGE= yes .include Modified: head/devel/rubygem-holidays/Makefile ============================================================================== --- head/devel/rubygem-holidays/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-holidays/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-iobuffer/Makefile ============================================================================== --- head/devel/rubygem-iobuffer/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-iobuffer/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -12,5 +12,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-locale/Makefile ============================================================================== --- head/devel/rubygem-locale/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-locale/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-metaid/Makefile ============================================================================== --- head/devel/rubygem-metaid/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-metaid/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -14,5 +14,4 @@ USE_RUBYGEMS= yes USE_RAKE= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-mixlib-authentication/Makefile ============================================================================== --- head/devel/rubygem-mixlib-authentication/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-mixlib-authentication/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-mixlib-cli/Makefile ============================================================================== --- head/devel/rubygem-mixlib-cli/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-mixlib-cli/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-mixlib-config/Makefile ============================================================================== --- head/devel/rubygem-mixlib-config/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-mixlib-config/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-mixlib-log/Makefile ============================================================================== --- head/devel/rubygem-mixlib-log/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-mixlib-log/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-mixlib-shellout/Makefile ============================================================================== --- head/devel/rubygem-mixlib-shellout/Makefile Fri Jan 24 14:46:28 2014 (r340900) +++ head/devel/rubygem-mixlib-shellout/Makefile Fri Jan 24 14:46:50 2014 (r340901) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:47:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 43E03BF8; Fri, 24 Jan 2014 14:47:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 24C4C139D; Fri, 24 Jan 2014 14:47:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OElEB4075093; Fri, 24 Jan 2014 14:47:14 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OElBHm075080; Fri, 24 Jan 2014 14:47:11 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401241447.s0OElBHm075080@svn.freebsd.org> From: Martin Wilke Date: Fri, 24 Jan 2014 14:47:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340902 - in head/devel: rubygem-moneta rubygem-msgpack rubygem-murmurhash3 rubygem-mutter rubygem-notify rubygem-piston rubygem-platform rubygem-prototype-rails rubygem-ptreloaded ruby... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:47:14 -0000 Author: miwi Date: Fri Jan 24 14:47:11 2014 New Revision: 340902 URL: http://svnweb.freebsd.org/changeset/ports/340902 QAT: https://qat.redports.org/buildarchive/r340902/ Log: - Stage safe Modified: head/devel/rubygem-moneta/Makefile head/devel/rubygem-msgpack/Makefile head/devel/rubygem-murmurhash3/Makefile head/devel/rubygem-mutter/Makefile head/devel/rubygem-notify/Makefile head/devel/rubygem-piston/Makefile head/devel/rubygem-platform/Makefile head/devel/rubygem-prototype-rails/Makefile head/devel/rubygem-ptreloaded/Makefile head/devel/rubygem-racc/Makefile head/devel/rubygem-rainbow/Makefile Modified: head/devel/rubygem-moneta/Makefile ============================================================================== --- head/devel/rubygem-moneta/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-moneta/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-msgpack/Makefile ============================================================================== --- head/devel/rubygem-msgpack/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-msgpack/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -12,5 +12,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-murmurhash3/Makefile ============================================================================== --- head/devel/rubygem-murmurhash3/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-murmurhash3/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-mutter/Makefile ============================================================================== --- head/devel/rubygem-mutter/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-mutter/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -14,5 +14,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-notify/Makefile ============================================================================== --- head/devel/rubygem-notify/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-notify/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -17,5 +17,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/notify -NO_STAGE= yes .include Modified: head/devel/rubygem-piston/Makefile ============================================================================== --- head/devel/rubygem-piston/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-piston/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -14,5 +14,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/piston -NO_STAGE= yes .include Modified: head/devel/rubygem-platform/Makefile ============================================================================== --- head/devel/rubygem-platform/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-platform/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-prototype-rails/Makefile ============================================================================== --- head/devel/rubygem-prototype-rails/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-prototype-rails/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-ptreloaded/Makefile ============================================================================== --- head/devel/rubygem-ptreloaded/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-ptreloaded/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -20,5 +20,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-racc/Makefile ============================================================================== --- head/devel/rubygem-racc/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-racc/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -18,5 +18,4 @@ PLIST_FILES= bin/racc bin/racc2y bin/y2r CONFLICTS= ruby1[89]-racc-1\.4\* -NO_STAGE= yes .include Modified: head/devel/rubygem-rainbow/Makefile ============================================================================== --- head/devel/rubygem-rainbow/Makefile Fri Jan 24 14:46:50 2014 (r340901) +++ head/devel/rubygem-rainbow/Makefile Fri Jan 24 14:47:11 2014 (r340902) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:49:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4175ECF8; Fri, 24 Jan 2014 14:49:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 21AC413B2; Fri, 24 Jan 2014 14:49:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OEnYR5075668; Fri, 24 Jan 2014 14:49:34 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OEnUQG075640; Fri, 24 Jan 2014 14:49:30 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401241449.s0OEnUQG075640@svn.freebsd.org> From: Martin Wilke Date: Fri, 24 Jan 2014 14:49:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340903 - in head: devel/rubygem-rash devel/rubygem-rcov devel/rubygem-ruby-bugzilla devel/rubygem-ruby-prof devel/rubygem-ruby_parser devel/rubygem-rubyinlineaccel devel/rubygem-sumbur... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:49:35 -0000 Author: miwi Date: Fri Jan 24 14:49:29 2014 New Revision: 340903 URL: http://svnweb.freebsd.org/changeset/ports/340903 QAT: https://qat.redports.org/buildarchive/r340903/ Log: - Stage Safe Modified: head/devel/rubygem-rash/Makefile head/devel/rubygem-rcov/Makefile head/devel/rubygem-ruby-bugzilla/Makefile head/devel/rubygem-ruby-prof/Makefile head/devel/rubygem-ruby_parser/Makefile head/devel/rubygem-rubyinlineaccel/Makefile head/devel/rubygem-sumbur/Makefile head/devel/rubygem-systemu/Makefile head/devel/rubygem-thrift/Makefile head/devel/rubygem-trollop/Makefile head/devel/rubygem-typed-array/Makefile head/devel/rubygem-unicode/Makefile head/devel/rubygem-validatable/Makefile head/devel/rubygem-webby/Makefile head/graphics/rubygem-ezprint/Makefile head/graphics/rubygem-gruff/Makefile head/graphics/rubygem-objectdetect/Makefile head/irc/rubygem-net-irc/Makefile head/japanese/rubygem-jpmobile-ipaddresses/Makefile head/japanese/rubygem-jpmobile-terminfo/Makefile head/japanese/rubygem-jpmobile/Makefile head/java/rubygem-rjb/Makefile Modified: head/devel/rubygem-rash/Makefile ============================================================================== --- head/devel/rubygem-rash/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-rash/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST=yes -NO_STAGE= yes .include Modified: head/devel/rubygem-rcov/Makefile ============================================================================== --- head/devel/rubygem-rcov/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-rcov/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -17,8 +17,6 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rcov -NO_STAGE= yes - .include .if ${RUBY_VER} == 2.0 Modified: head/devel/rubygem-ruby-bugzilla/Makefile ============================================================================== --- head/devel/rubygem-ruby-bugzilla/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-ruby-bugzilla/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -19,5 +19,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/bzconsole -NO_STAGE= yes .include Modified: head/devel/rubygem-ruby-prof/Makefile ============================================================================== --- head/devel/rubygem-ruby-prof/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-ruby-prof/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -14,5 +14,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/ruby-prof -NO_STAGE= yes .include Modified: head/devel/rubygem-ruby_parser/Makefile ============================================================================== --- head/devel/rubygem-ruby_parser/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-ruby_parser/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -19,5 +19,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/ruby_parse \ bin/ruby_parse_extract_error -NO_STAGE= yes .include Modified: head/devel/rubygem-rubyinlineaccel/Makefile ============================================================================== --- head/devel/rubygem-rubyinlineaccel/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-rubyinlineaccel/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -20,5 +20,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-sumbur/Makefile ============================================================================== --- head/devel/rubygem-sumbur/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-sumbur/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-systemu/Makefile ============================================================================== --- head/devel/rubygem-systemu/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-systemu/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-thrift/Makefile ============================================================================== --- head/devel/rubygem-thrift/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-thrift/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -14,6 +14,5 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include "../thrift/bsd.thrift.mk" .include Modified: head/devel/rubygem-trollop/Makefile ============================================================================== --- head/devel/rubygem-trollop/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-trollop/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -14,5 +14,4 @@ USE_RUBYGEMS= yes USE_RAKE= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-typed-array/Makefile ============================================================================== --- head/devel/rubygem-typed-array/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-typed-array/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-unicode/Makefile ============================================================================== --- head/devel/rubygem-unicode/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-unicode/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-validatable/Makefile ============================================================================== --- head/devel/rubygem-validatable/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-validatable/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -14,5 +14,4 @@ USE_RUBYGEMS= yes USE_RAKE= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/rubygem-webby/Makefile ============================================================================== --- head/devel/rubygem-webby/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/devel/rubygem-webby/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -27,5 +27,4 @@ USE_RAKE= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/webby bin/webby-gen -NO_STAGE= yes .include Modified: head/graphics/rubygem-ezprint/Makefile ============================================================================== --- head/graphics/rubygem-ezprint/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/graphics/rubygem-ezprint/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/graphics/rubygem-gruff/Makefile ============================================================================== --- head/graphics/rubygem-gruff/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/graphics/rubygem-gruff/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/graphics/rubygem-objectdetect/Makefile ============================================================================== --- head/graphics/rubygem-objectdetect/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/graphics/rubygem-objectdetect/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -19,7 +19,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include .if ${OSVERSION} < 700000 Modified: head/irc/rubygem-net-irc/Makefile ============================================================================== --- head/irc/rubygem-net-irc/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/irc/rubygem-net-irc/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/japanese/rubygem-jpmobile-ipaddresses/Makefile ============================================================================== --- head/japanese/rubygem-jpmobile-ipaddresses/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/japanese/rubygem-jpmobile-ipaddresses/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -15,7 +15,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}rubygem- Modified: head/japanese/rubygem-jpmobile-terminfo/Makefile ============================================================================== --- head/japanese/rubygem-jpmobile-terminfo/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/japanese/rubygem-jpmobile-terminfo/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -15,7 +15,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}rubygem- Modified: head/japanese/rubygem-jpmobile/Makefile ============================================================================== --- head/japanese/rubygem-jpmobile/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/japanese/rubygem-jpmobile/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -24,7 +24,6 @@ TERMINFO_DESC= terminal information sup OPTIONS_DEFAULT= IPADDRESSES TERMINFO -NO_STAGE= yes .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}rubygem- Modified: head/java/rubygem-rjb/Makefile ============================================================================== --- head/java/rubygem-rjb/Makefile Fri Jan 24 14:47:11 2014 (r340902) +++ head/java/rubygem-rjb/Makefile Fri Jan 24 14:49:29 2014 (r340903) @@ -18,5 +18,4 @@ GEM_ENV= JAVA_HOME=${JAVA_HOME} #On amd64, rjb hangs in umtxn ONLY_FOR_ARCHS= i386 -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:53:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF4FEF2C; Fri, 24 Jan 2014 14:53:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A91A01488; Fri, 24 Jan 2014 14:53:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OErBbT079129; Fri, 24 Jan 2014 14:53:11 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OEr4Zc079086; Fri, 24 Jan 2014 14:53:04 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401241453.s0OEr4Zc079086@svn.freebsd.org> From: Martin Wilke Date: Fri, 24 Jan 2014 14:53:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340904 - in head: mail/rubygem-qmail mail/rubygem-tmail mail/rubygem-vmail misc/rubygem-rabbit net-im/rubygem-earthquake net-im/rubygem-termtter net-mgmt/rubygem-snmp net/rubygem-amazo... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:53:11 -0000 Author: miwi Date: Fri Jan 24 14:53:03 2014 New Revision: 340904 URL: http://svnweb.freebsd.org/changeset/ports/340904 QAT: https://qat.redports.org/buildarchive/r340904/ Log: - Stage Safe Modified: head/mail/rubygem-qmail/Makefile head/mail/rubygem-tmail/Makefile head/mail/rubygem-vmail/Makefile head/misc/rubygem-rabbit/Makefile head/net-im/rubygem-earthquake/Makefile head/net-im/rubygem-termtter/Makefile head/net-mgmt/rubygem-snmp/Makefile head/net/rubygem-amazon-ec2/Makefile head/net/rubygem-amq-client/Makefile head/net/rubygem-amq-protocol/Makefile head/net/rubygem-amqp-utils/Makefile head/net/rubygem-amqp/Makefile head/net/rubygem-aws-s3/Makefile head/net/rubygem-bunny060/Makefile head/net/rubygem-iproto/Makefile head/net/rubygem-net-netrc/Makefile head/net/rubygem-rabbiter/Makefile head/net/rubygem-rightaws/Makefile head/net/rubygem-rightflexiscale/Makefile head/net/rubygem-rightgogrid/Makefile head/net/rubygem-righthttpconnection/Makefile head/net/rubygem-rightslicehost/Makefile head/net/rubygem-rubytter/Makefile head/net/rubygem-rudy/Makefile head/net/rubygem-rye/Makefile head/net/rubygem-simple_oauth/Makefile head/net/rubygem-twitter/Makefile head/security/rubygem-ezcrypto/Makefile head/security/rubygem-gpgr/Makefile head/security/rubygem-jugyo-twitter_oauth/Makefile head/security/rubygem-metasploit_data_models/Makefile head/security/rubygem-net-ssh-multi/Makefile head/security/rubygem-razorback-scriptNugget/Makefile head/security/rubygem-roauth/Makefile head/sysutils/rubygem-bundler/Makefile Modified: head/mail/rubygem-qmail/Makefile ============================================================================== --- head/mail/rubygem-qmail/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/mail/rubygem-qmail/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/mail/rubygem-tmail/Makefile ============================================================================== --- head/mail/rubygem-tmail/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/mail/rubygem-tmail/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -14,5 +14,4 @@ USE_RUBYGEMS= yes USE_RUBY_FEATURES= racc-runtime RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/mail/rubygem-vmail/Makefile ============================================================================== --- head/mail/rubygem-vmail/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/mail/rubygem-vmail/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -22,5 +22,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/vmail bin/vmail_client bin/vmailsend -NO_STAGE= yes .include Modified: head/misc/rubygem-rabbit/Makefile ============================================================================== --- head/misc/rubygem-rabbit/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/misc/rubygem-rabbit/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -34,7 +34,6 @@ PLIST_FILES= bin/rabbit bin/rabbirc bin/ OPTIONS_DEFINE= MIMETEX MIMETEX_DESC= Run with mimetex -NO_STAGE= yes .include .if ${PORT_OPTIONS:MMIMETEX} Modified: head/net-im/rubygem-earthquake/Makefile ============================================================================== --- head/net-im/rubygem-earthquake/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net-im/rubygem-earthquake/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -26,5 +26,4 @@ USE_RAKE= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/earthquake -NO_STAGE= yes .include Modified: head/net-im/rubygem-termtter/Makefile ============================================================================== --- head/net-im/rubygem-termtter/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net-im/rubygem-termtter/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -21,5 +21,4 @@ USE_RAKE= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/termtter bin/termtter_frame -NO_STAGE= yes .include Modified: head/net-mgmt/rubygem-snmp/Makefile ============================================================================== --- head/net-mgmt/rubygem-snmp/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net-mgmt/rubygem-snmp/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -12,5 +12,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/rubygem-amazon-ec2/Makefile ============================================================================== --- head/net/rubygem-amazon-ec2/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-amazon-ec2/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -16,5 +16,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/awshell bin/ec2-gem-example.rb bin/ec2-gem-profile.rb bin/ec2sh bin/setup.rb -NO_STAGE= yes .include Modified: head/net/rubygem-amq-client/Makefile ============================================================================== --- head/net/rubygem-amq-client/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-amq-client/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/rubygem-amq-protocol/Makefile ============================================================================== --- head/net/rubygem-amq-protocol/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-amq-protocol/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/rubygem-amqp-utils/Makefile ============================================================================== --- head/net/rubygem-amqp-utils/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-amqp-utils/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -25,5 +25,4 @@ PLIST_FILES+= bin/amqp-deleteq bin/amqp- bin/amqp-purge bin/amqp-spy bin/amqp-statq bin/amqp-unbind \ bin/amqp-delexch bin/amqp-exchange -NO_STAGE= yes .include Modified: head/net/rubygem-amqp/Makefile ============================================================================== --- head/net/rubygem-amqp/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-amqp/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -17,5 +17,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/rubygem-aws-s3/Makefile ============================================================================== --- head/net/rubygem-aws-s3/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-aws-s3/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -18,5 +18,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/s3sh -NO_STAGE= yes .include Modified: head/net/rubygem-bunny060/Makefile ============================================================================== --- head/net/rubygem-bunny060/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-bunny060/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -17,5 +17,4 @@ RUBYGEM_AUTOPLIST= yes PKGNAMESUFFIX= 060 -NO_STAGE= yes .include Modified: head/net/rubygem-iproto/Makefile ============================================================================== --- head/net/rubygem-iproto/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-iproto/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/rubygem-net-netrc/Makefile ============================================================================== --- head/net/rubygem-net-netrc/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-net-netrc/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/rubygem-rabbiter/Makefile ============================================================================== --- head/net/rubygem-rabbiter/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-rabbiter/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -22,5 +22,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rabbiter -NO_STAGE= yes .include Modified: head/net/rubygem-rightaws/Makefile ============================================================================== --- head/net/rubygem-rightaws/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-rightaws/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -23,7 +23,6 @@ UNIQUENAME= ${PORTNAME} OPTIONS_DEFINE= LIBXML LIBXML_DESC= Use libxml instead of REXML -NO_STAGE= yes .include .if ${PORT_OPTIONS:MLIBXML} Modified: head/net/rubygem-rightflexiscale/Makefile ============================================================================== --- head/net/rubygem-rightflexiscale/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-rightflexiscale/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -19,5 +19,4 @@ GEM_NAME= ${DISTNAME} RUBYGEM_AUTOPLIST= yes UNIQUENAME= ${PORTNAME} -NO_STAGE= yes .include Modified: head/net/rubygem-rightgogrid/Makefile ============================================================================== --- head/net/rubygem-rightgogrid/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-rightgogrid/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -18,5 +18,4 @@ GEM_NAME= ${DISTNAME} RUBYGEM_AUTOPLIST= yes UNIQUENAME= ${PORTNAME} -NO_STAGE= yes .include Modified: head/net/rubygem-righthttpconnection/Makefile ============================================================================== --- head/net/rubygem-righthttpconnection/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-righthttpconnection/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -17,5 +17,4 @@ RUBYGEM_AUTOPLIST= yes LICENSE= MIT -NO_STAGE= yes .include Modified: head/net/rubygem-rightslicehost/Makefile ============================================================================== --- head/net/rubygem-rightslicehost/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-rightslicehost/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -18,5 +18,4 @@ GEM_NAME= ${DISTNAME} RUBYGEM_AUTOPLIST= yes UNIQUENAME= ${PORTNAME} -NO_STAGE= yes .include Modified: head/net/rubygem-rubytter/Makefile ============================================================================== --- head/net/rubygem-rubytter/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-rubytter/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -17,5 +17,4 @@ USE_RUBYGEMS= yes USE_RAKE= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/rubygem-rudy/Makefile ============================================================================== --- head/net/rubygem-rudy/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-rudy/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -26,5 +26,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rudy bin/rudy-ec2 bin/rudy-s3 bin/rudy-sdb -NO_STAGE= yes .include Modified: head/net/rubygem-rye/Makefile ============================================================================== --- head/net/rubygem-rye/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-rye/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -20,5 +20,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/rubygem-simple_oauth/Makefile ============================================================================== --- head/net/rubygem-simple_oauth/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-simple_oauth/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/net/rubygem-twitter/Makefile ============================================================================== --- head/net/rubygem-twitter/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/net/rubygem-twitter/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -17,5 +17,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/security/rubygem-ezcrypto/Makefile ============================================================================== --- head/security/rubygem-ezcrypto/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/security/rubygem-ezcrypto/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/security/rubygem-gpgr/Makefile ============================================================================== --- head/security/rubygem-gpgr/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/security/rubygem-gpgr/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/security/rubygem-jugyo-twitter_oauth/Makefile ============================================================================== --- head/security/rubygem-jugyo-twitter_oauth/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/security/rubygem-jugyo-twitter_oauth/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -18,5 +18,4 @@ USE_RUBYGEMS= yes GEM_NAME= ${PORTNAME}-${DISTVERSION} RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/security/rubygem-metasploit_data_models/Makefile ============================================================================== --- head/security/rubygem-metasploit_data_models/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/security/rubygem-metasploit_data_models/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -19,5 +19,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST=yes PLIST_FILES= bin/mdm_console -NO_STAGE= yes .include Modified: head/security/rubygem-net-ssh-multi/Makefile ============================================================================== --- head/security/rubygem-net-ssh-multi/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/security/rubygem-net-ssh-multi/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/security/rubygem-razorback-scriptNugget/Makefile ============================================================================== --- head/security/rubygem-razorback-scriptNugget/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/security/rubygem-razorback-scriptNugget/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/security/rubygem-roauth/Makefile ============================================================================== --- head/security/rubygem-roauth/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/security/rubygem-roauth/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/sysutils/rubygem-bundler/Makefile ============================================================================== --- head/sysutils/rubygem-bundler/Makefile Fri Jan 24 14:49:29 2014 (r340903) +++ head/sysutils/rubygem-bundler/Makefile Fri Jan 24 14:53:03 2014 (r340904) @@ -15,5 +15,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/bundle -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:55:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E93BC6; Fri, 24 Jan 2014 14:55:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F31D714BF; Fri, 24 Jan 2014 14:55:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OEtoxw079870; Fri, 24 Jan 2014 14:55:50 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OEtiYL079836; Fri, 24 Jan 2014 14:55:44 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401241455.s0OEtiYL079836@svn.freebsd.org> From: Martin Wilke Date: Fri, 24 Jan 2014 14:55:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340905 - in head: graphics/rubygem-gd2 sysutils/rubygem-god sysutils/rubygem-ohai sysutils/rubygem-teamocil textproc/rubygem-charlock_holmes textproc/rubygem-ezamar textproc/rubygem-he... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:55:51 -0000 Author: miwi Date: Fri Jan 24 14:55:44 2014 New Revision: 340905 URL: http://svnweb.freebsd.org/changeset/ports/340905 QAT: https://qat.redports.org/buildarchive/r340905/ Log: - Stage safe Modified: head/graphics/rubygem-gd2/Makefile head/sysutils/rubygem-god/Makefile head/sysutils/rubygem-ohai/Makefile head/sysutils/rubygem-teamocil/Makefile head/textproc/rubygem-charlock_holmes/Makefile head/textproc/rubygem-ezamar/Makefile head/textproc/rubygem-heredoc_unindent/Makefile head/textproc/rubygem-htmlentities/Makefile head/textproc/rubygem-markaby/Makefile head/textproc/rubygem-multi_xml/Makefile head/textproc/rubygem-opml/Makefile head/textproc/rubygem-rak/Makefile head/textproc/rubygem-termcolor/Makefile head/textproc/rubygem-tidy/Makefile head/www/rubygem-acts-as-taggable-on/Makefile head/www/rubygem-amazon-ecs/Makefile head/www/rubygem-cookiejar/Makefile head/www/rubygem-faraday/Makefile head/www/rubygem-faraday_middleware/Makefile head/www/rubygem-feed-normalizer/Makefile head/www/rubygem-haml-coderay/Makefile head/www/rubygem-haml-rails/Makefile head/www/rubygem-jruby-rack/Makefile head/www/rubygem-less/Makefile head/www/rubygem-multipart-post/Makefile head/www/rubygem-nanoc/Makefile head/www/rubygem-nicovideo/Makefile head/www/rubygem-scrapi/Makefile Modified: head/graphics/rubygem-gd2/Makefile ============================================================================== --- head/graphics/rubygem-gd2/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/graphics/rubygem-gd2/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -18,8 +18,7 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes post-install: - @${REINPLACE_CMD} 's|so.2|so.4|' ${PREFIX}/${GEM_LIB_DIR}/lib/gd2.rb + @${REINPLACE_CMD} 's|so.2|so.4|' ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/gd2.rb .include Modified: head/sysutils/rubygem-god/Makefile ============================================================================== --- head/sysutils/rubygem-god/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/sysutils/rubygem-god/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -16,5 +16,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/god -NO_STAGE= yes .include Modified: head/sysutils/rubygem-ohai/Makefile ============================================================================== --- head/sysutils/rubygem-ohai/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/sysutils/rubygem-ohai/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -23,5 +23,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/ohai -NO_STAGE= yes .include Modified: head/sysutils/rubygem-teamocil/Makefile ============================================================================== --- head/sysutils/rubygem-teamocil/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/sysutils/rubygem-teamocil/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -15,5 +15,4 @@ USE_RAKE= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/teamocil -NO_STAGE= yes .include Modified: head/textproc/rubygem-charlock_holmes/Makefile ============================================================================== --- head/textproc/rubygem-charlock_holmes/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-charlock_holmes/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -16,5 +16,4 @@ 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 -NO_STAGE= yes .include Modified: head/textproc/rubygem-ezamar/Makefile ============================================================================== --- head/textproc/rubygem-ezamar/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-ezamar/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -14,5 +14,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/textproc/rubygem-heredoc_unindent/Makefile ============================================================================== --- head/textproc/rubygem-heredoc_unindent/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-heredoc_unindent/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -17,5 +17,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/textproc/rubygem-htmlentities/Makefile ============================================================================== --- head/textproc/rubygem-htmlentities/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-htmlentities/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/textproc/rubygem-markaby/Makefile ============================================================================== --- head/textproc/rubygem-markaby/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-markaby/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -16,5 +16,4 @@ USE_RUBYGEMS= yes USE_RAKE= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/textproc/rubygem-multi_xml/Makefile ============================================================================== --- head/textproc/rubygem-multi_xml/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-multi_xml/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -16,7 +16,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include .if ${PORT_OPTIONS:MNOKOGIRI} Modified: head/textproc/rubygem-opml/Makefile ============================================================================== --- head/textproc/rubygem-opml/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-opml/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/textproc/rubygem-rak/Makefile ============================================================================== --- head/textproc/rubygem-rak/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-rak/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -17,5 +17,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rak -NO_STAGE= yes .include Modified: head/textproc/rubygem-termcolor/Makefile ============================================================================== --- head/textproc/rubygem-termcolor/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-termcolor/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -16,5 +16,4 @@ USE_RUBYGEMS= yes USE_RAKE= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/textproc/rubygem-tidy/Makefile ============================================================================== --- head/textproc/rubygem-tidy/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/textproc/rubygem-tidy/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-acts-as-taggable-on/Makefile ============================================================================== --- head/www/rubygem-acts-as-taggable-on/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-acts-as-taggable-on/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -14,5 +14,4 @@ USE_RUBY= YES USE_RUBYGEMS= YES RUBYGEM_AUTOPLIST= YES -NO_STAGE= yes .include Modified: head/www/rubygem-amazon-ecs/Makefile ============================================================================== --- head/www/rubygem-amazon-ecs/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-amazon-ecs/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -18,5 +18,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-cookiejar/Makefile ============================================================================== --- head/www/rubygem-cookiejar/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-cookiejar/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-faraday/Makefile ============================================================================== --- head/www/rubygem-faraday/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-faraday/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-faraday_middleware/Makefile ============================================================================== --- head/www/rubygem-faraday_middleware/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-faraday_middleware/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-feed-normalizer/Makefile ============================================================================== --- head/www/rubygem-feed-normalizer/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-feed-normalizer/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -17,5 +17,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-haml-coderay/Makefile ============================================================================== --- head/www/rubygem-haml-coderay/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-haml-coderay/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-haml-rails/Makefile ============================================================================== --- head/www/rubygem-haml-rails/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-haml-rails/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -17,6 +17,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes - .include Modified: head/www/rubygem-jruby-rack/Makefile ============================================================================== --- head/www/rubygem-jruby-rack/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-jruby-rack/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -15,5 +15,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-less/Makefile ============================================================================== --- head/www/rubygem-less/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-less/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -19,5 +19,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/lessc -NO_STAGE= yes .include Modified: head/www/rubygem-multipart-post/Makefile ============================================================================== --- head/www/rubygem-multipart-post/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-multipart-post/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-nanoc/Makefile ============================================================================== --- head/www/rubygem-nanoc/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-nanoc/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -18,5 +18,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/nanoc -NO_STAGE= yes .include Modified: head/www/rubygem-nicovideo/Makefile ============================================================================== --- head/www/rubygem-nicovideo/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-nicovideo/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -16,5 +16,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-scrapi/Makefile ============================================================================== --- head/www/rubygem-scrapi/Makefile Fri Jan 24 14:53:03 2014 (r340904) +++ head/www/rubygem-scrapi/Makefile Fri Jan 24 14:55:44 2014 (r340905) @@ -18,12 +18,11 @@ USE_LDCONFIG= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= ${GEM_LIB_DIR}/lib/tidy/libtidy.so -NO_STAGE= yes .include post-install: ${RM} -f ${LOCALBASE}/${GEM_LIB_DIR}/lib/tidy/libtidy.dll ${RM} -f ${LOCALBASE}/${GEM_LIB_DIR}/lib/tidy/libtidy.so - ${LN} -sf ${LOCALBASE}/lib/libtidy.so ${PREFIX}/${GEM_LIB_DIR}/lib/tidy/ + ${LN} -sf ${LOCALBASE}/lib/libtidy.so ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/tidy/ .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:56:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E637235; Fri, 24 Jan 2014 14:56:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0597714CD; Fri, 24 Jan 2014 14:56:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OEuddW080103; Fri, 24 Jan 2014 14:56:39 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OEuciY080096; Fri, 24 Jan 2014 14:56:38 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401241456.s0OEuciY080096@svn.freebsd.org> From: Martin Wilke Date: Fri, 24 Jan 2014 14:56:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340906 - in head: graphics/rubygem-pdfkit www/rubygem-rabbirack www/rubygem-rest-client www/rubygem-rfeedfinder www/rubygem-scrubyt www/rubygem-simple-rss www/rubygem-tinymce-rails X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:56:40 -0000 Author: miwi Date: Fri Jan 24 14:56:38 2014 New Revision: 340906 URL: http://svnweb.freebsd.org/changeset/ports/340906 QAT: https://qat.redports.org/buildarchive/r340906/ Log: - Stage safe Modified: head/graphics/rubygem-pdfkit/Makefile head/www/rubygem-rabbirack/Makefile head/www/rubygem-rest-client/Makefile head/www/rubygem-rfeedfinder/Makefile head/www/rubygem-scrubyt/Makefile head/www/rubygem-simple-rss/Makefile head/www/rubygem-tinymce-rails/Makefile Modified: head/graphics/rubygem-pdfkit/Makefile ============================================================================== --- head/graphics/rubygem-pdfkit/Makefile Fri Jan 24 14:55:44 2014 (r340905) +++ head/graphics/rubygem-pdfkit/Makefile Fri Jan 24 14:56:38 2014 (r340906) @@ -18,8 +18,7 @@ RUBYGEM_AUTOPLIST= yes REINPLACE_ARGS= -i '' -NO_STAGE= yes post-install: - @${REINPLACE_CMD} -e '/s.date/d' ${PREFIX}/${GEM_SPEC} + @${REINPLACE_CMD} -e '/s.date/d' ${STAGEDIR}${PREFIX}/${GEM_SPEC} .include Modified: head/www/rubygem-rabbirack/Makefile ============================================================================== --- head/www/rubygem-rabbirack/Makefile Fri Jan 24 14:55:44 2014 (r340905) +++ head/www/rubygem-rabbirack/Makefile Fri Jan 24 14:56:38 2014 (r340906) @@ -23,5 +23,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rabbirack -NO_STAGE= yes .include Modified: head/www/rubygem-rest-client/Makefile ============================================================================== --- head/www/rubygem-rest-client/Makefile Fri Jan 24 14:55:44 2014 (r340905) +++ head/www/rubygem-rest-client/Makefile Fri Jan 24 14:56:38 2014 (r340906) @@ -16,5 +16,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/restclient -NO_STAGE= yes .include Modified: head/www/rubygem-rfeedfinder/Makefile ============================================================================== --- head/www/rubygem-rfeedfinder/Makefile Fri Jan 24 14:55:44 2014 (r340905) +++ head/www/rubygem-rfeedfinder/Makefile Fri Jan 24 14:56:38 2014 (r340906) @@ -17,5 +17,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-scrubyt/Makefile ============================================================================== --- head/www/rubygem-scrubyt/Makefile Fri Jan 24 14:55:44 2014 (r340905) +++ head/www/rubygem-scrubyt/Makefile Fri Jan 24 14:56:38 2014 (r340906) @@ -18,7 +18,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes post-patch: ${REINPLACE_CMD} 's/0.4.1/${PORTVERSION}/' ${BUILD_WRKSRC}/${GEMFILES}spec Modified: head/www/rubygem-simple-rss/Makefile ============================================================================== --- head/www/rubygem-simple-rss/Makefile Fri Jan 24 14:55:44 2014 (r340905) +++ head/www/rubygem-simple-rss/Makefile Fri Jan 24 14:56:38 2014 (r340906) @@ -13,5 +13,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/www/rubygem-tinymce-rails/Makefile ============================================================================== --- head/www/rubygem-tinymce-rails/Makefile Fri Jan 24 14:55:44 2014 (r340905) +++ head/www/rubygem-tinymce-rails/Makefile Fri Jan 24 14:56:38 2014 (r340906) @@ -16,5 +16,4 @@ USE_RUBYGEMS= yes USE_RAKE= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:56:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2161530D; Fri, 24 Jan 2014 14:56:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C94214D0; Fri, 24 Jan 2014 14:56:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OEunOd080187; Fri, 24 Jan 2014 14:56:49 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OEunJf080186; Fri, 24 Jan 2014 14:56:49 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401241456.s0OEunJf080186@svn.freebsd.org> From: Mathieu Arnold Date: Fri, 24 Jan 2014 14:56:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340907 - head/textproc/p5-Text-FixedLength-Extra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:56:50 -0000 Author: mat Date: Fri Jan 24 14:56:48 2014 New Revision: 340907 URL: http://svnweb.freebsd.org/changeset/ports/340907 QAT: https://qat.redports.org/buildarchive/r340907/ Log: And now, perl's not needed during patch. Sponsored by: Absolight Modified: head/textproc/p5-Text-FixedLength-Extra/Makefile Modified: head/textproc/p5-Text-FixedLength-Extra/Makefile ============================================================================== --- head/textproc/p5-Text-FixedLength-Extra/Makefile Fri Jan 24 14:56:38 2014 (r340906) +++ head/textproc/p5-Text-FixedLength-Extra/Makefile Fri Jan 24 14:56:48 2014 (r340907) @@ -14,6 +14,6 @@ BUILD_DEPENDS= p5-Text-FixedLength>=0:${ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 -USE_PERL5= configure patch +USE_PERL5= configure .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 14:59:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AC724B3; Fri, 24 Jan 2014 14:59:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2446B14FC; Fri, 24 Jan 2014 14:59:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OExILO080929; Fri, 24 Jan 2014 14:59:18 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OExAVN080882; Fri, 24 Jan 2014 14:59:10 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401241459.s0OExAVN080882@svn.freebsd.org> From: Mathieu Arnold Date: Fri, 24 Jan 2014 14:59:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340908 - in head/textproc: p5-Text-DoubleMetaphone p5-Text-Emoticon p5-Text-Extract-Word p5-Text-FillIn p5-Text-Filter p5-Text-Filter-Chain p5-Text-FixEOL p5-Text-FixedLength p5-Text-F... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 14:59:18 -0000 Author: mat Date: Fri Jan 24 14:59:10 2014 New Revision: 340908 URL: http://svnweb.freebsd.org/changeset/ports/340908 QAT: https://qat.redports.org/buildarchive/r340908/ Log: - Convert to staging (as a user) - Add license - Pet portlint Sponsored by: Absolight Modified: head/textproc/p5-Text-DoubleMetaphone/Makefile head/textproc/p5-Text-DoubleMetaphone/pkg-plist head/textproc/p5-Text-Emoticon/Makefile head/textproc/p5-Text-Emoticon/pkg-descr head/textproc/p5-Text-Emoticon/pkg-plist head/textproc/p5-Text-Extract-Word/Makefile head/textproc/p5-Text-Extract-Word/pkg-plist head/textproc/p5-Text-FillIn/Makefile head/textproc/p5-Text-FillIn/pkg-plist head/textproc/p5-Text-Filter-Chain/Makefile head/textproc/p5-Text-Filter-Chain/pkg-plist head/textproc/p5-Text-Filter/Makefile head/textproc/p5-Text-Filter/pkg-plist head/textproc/p5-Text-FixEOL/Makefile head/textproc/p5-Text-FixEOL/pkg-plist head/textproc/p5-Text-FixedLength/Makefile head/textproc/p5-Text-FixedLength/pkg-plist head/textproc/p5-Text-Flowchart/Makefile head/textproc/p5-Text-Flowchart/pkg-plist head/textproc/p5-Text-Format/Makefile head/textproc/p5-Text-Format/pkg-plist head/textproc/p5-Text-Graphics/Makefile head/textproc/p5-Text-Graphics/pkg-plist head/textproc/p5-Text-HikiDoc/Makefile head/textproc/p5-Text-HikiDoc/pkg-plist head/textproc/p5-Text-Hyphen/Makefile head/textproc/p5-Text-Hyphen/pkg-plist head/textproc/p5-Text-Language-Guess/Makefile head/textproc/p5-Text-Language-Guess/pkg-descr head/textproc/p5-Text-Language-Guess/pkg-plist head/textproc/p5-Text-Match-FastAlternatives/Makefile head/textproc/p5-Text-Match-FastAlternatives/pkg-plist head/textproc/p5-Text-MicroMason/Makefile head/textproc/p5-Text-MicroMason/pkg-plist head/textproc/p5-Text-MicroTemplate/Makefile head/textproc/p5-Text-MicroTemplate/pkg-plist Modified: head/textproc/p5-Text-DoubleMetaphone/Makefile ============================================================================== --- head/textproc/p5-Text-DoubleMetaphone/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-DoubleMetaphone/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -13,7 +13,4 @@ COMMENT= Phonetic encoding of words USES= perl5 USE_PERL5= configure -MAN3= Text::DoubleMetaphone.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-DoubleMetaphone/pkg-plist ============================================================================== --- head/textproc/p5-Text-DoubleMetaphone/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-DoubleMetaphone/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::DoubleMetaphone.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/DoubleMetaphone/DoubleMetaphone.so %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/DoubleMetaphone/DoubleMetaphone.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/DoubleMetaphone/autosplit.ix Modified: head/textproc/p5-Text-Emoticon/Makefile ============================================================================== --- head/textproc/p5-Text-Emoticon/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Emoticon/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -16,7 +16,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::Emoticon.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Emoticon/pkg-descr ============================================================================== --- head/textproc/p5-Text-Emoticon/pkg-descr Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Emoticon/pkg-descr Fri Jan 24 14:59:10 2014 (r340908) @@ -3,4 +3,4 @@ It's made to become handy to be used in Kwiki/MT plugins. Author: Tatsuhiko Miyagawa -WWW: http://search.cpan.org/dist/Text-Emoticon/ +WWW: http://search.cpan.org/dist/Text-Emoticon/ Modified: head/textproc/p5-Text-Emoticon/pkg-plist ============================================================================== --- head/textproc/p5-Text-Emoticon/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Emoticon/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Emoticon.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Emoticon/.packlist %%SITE_PERL%%/Text/Emoticon.pm @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Emoticon Modified: head/textproc/p5-Text-Extract-Word/Makefile ============================================================================== --- head/textproc/p5-Text-Extract-Word/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Extract-Word/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -18,7 +18,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::Extract::Word.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Extract-Word/pkg-plist ============================================================================== --- head/textproc/p5-Text-Extract-Word/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Extract-Word/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Extract::Word.3.gz %%SITE_PERL%%/Text/Extract/Word.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Extract/Word/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Extract/Word Modified: head/textproc/p5-Text-FillIn/Makefile ============================================================================== --- head/textproc/p5-Text-FillIn/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-FillIn/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -13,7 +13,4 @@ COMMENT= A class implementing a fill-in USES= perl5 USE_PERL5= configure -MAN3= Text::FillIn.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-FillIn/pkg-plist ============================================================================== --- head/textproc/p5-Text-FillIn/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-FillIn/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::FillIn.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/FillIn/.packlist %%SITE_PERL%%/Text/FillIn.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/FillIn Modified: head/textproc/p5-Text-Filter-Chain/Makefile ============================================================================== --- head/textproc/p5-Text-Filter-Chain/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Filter-Chain/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -15,7 +15,4 @@ BUILD_DEPENDS= p5-Text-Filter>=0:${PORTS USES= perl5 USE_PERL5= configure -MAN3= Text::Filter::Chain.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Filter-Chain/pkg-plist ============================================================================== --- head/textproc/p5-Text-Filter-Chain/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Filter-Chain/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,4 +1,8 @@ +%%PERL5_MAN3%%/Text::Filter::Chain.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Filter/Chain/.packlist %%SITE_PERL%%/Text/Filter/Chain.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Filter/Chain +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Filter +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text @dirrmtry %%SITE_PERL%%/Text/Filter +@dirrmtry %%SITE_PERL%%/Text Modified: head/textproc/p5-Text-Filter/Makefile ============================================================================== --- head/textproc/p5-Text-Filter/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Filter/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -13,7 +13,4 @@ COMMENT= Base class for objects that can USES= perl5 USE_PERL5= configure -MAN3= Text::Filter.3 Text::Filter::Cooked.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Filter/pkg-plist ============================================================================== --- head/textproc/p5-Text-Filter/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Filter/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Text::Filter.3.gz +%%PERL5_MAN3%%/Text::Filter::Cooked.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Filter/.packlist %%SITE_PERL%%/Text/Filter.pm %%SITE_PERL%%/Text/Filter/Cooked.pm Modified: head/textproc/p5-Text-FixEOL/Makefile ============================================================================== --- head/textproc/p5-Text-FixEOL/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-FixEOL/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -11,10 +11,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Canonicalizes text to a specified EOL/EOF convention -MAN3= Text::FixEOL.3 +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual USES= perl5 USE_PERL5= modbuild -NO_STAGE= yes .include Modified: head/textproc/p5-Text-FixEOL/pkg-plist ============================================================================== --- head/textproc/p5-Text-FixEOL/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-FixEOL/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::FixEOL.3.gz %%SITE_PERL%%/Text/FixEOL.pm %%SITE_PERL%%/Text/FixEOL.pod @dirrmtry %%SITE_PERL%%/Text Modified: head/textproc/p5-Text-FixedLength/Makefile ============================================================================== --- head/textproc/p5-Text-FixedLength/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-FixedLength/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -13,7 +13,4 @@ COMMENT= Parse and create fixed length f USES= perl5 USE_PERL5= configure -MAN3= Text::FixedLength.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-FixedLength/pkg-plist ============================================================================== --- head/textproc/p5-Text-FixedLength/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-FixedLength/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::FixedLength.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/FixedLength/.packlist %%SITE_PERL%%/Text/FixedLength.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/FixedLength Modified: head/textproc/p5-Text-Flowchart/Makefile ============================================================================== --- head/textproc/p5-Text-Flowchart/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Flowchart/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -13,7 +13,4 @@ COMMENT= ASCII Flowchart maker USES= perl5 USE_PERL5= configure -MAN3= Text::Flowchart.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Flowchart/pkg-plist ============================================================================== --- head/textproc/p5-Text-Flowchart/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Flowchart/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Flowchart.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Flowchart/.packlist %%SITE_PERL%%/Text/Flowchart.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Flowchart Modified: head/textproc/p5-Text-Format/Makefile ============================================================================== --- head/textproc/p5-Text-Format/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Format/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -9,10 +9,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Various subroutines to format text +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= Text::Format.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Format/pkg-plist ============================================================================== --- head/textproc/p5-Text-Format/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Format/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Format.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Format/.packlist %%SITE_PERL%%/Text/Format.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Format Modified: head/textproc/p5-Text-Graphics/Makefile ============================================================================== --- head/textproc/p5-Text-Graphics/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Graphics/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -17,10 +17,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::Graphics.3 - -NO_STAGE= yes -post-patch: - @${RM} ${WRKSRC}/lib/Text/Graphics.pm.orig - .include Modified: head/textproc/p5-Text-Graphics/pkg-plist ============================================================================== --- head/textproc/p5-Text-Graphics/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Graphics/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Graphics.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Graphics/.packlist %%SITE_PERL%%/Text/Graphics.pm @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Graphics Modified: head/textproc/p5-Text-HikiDoc/Makefile ============================================================================== --- head/textproc/p5-Text-HikiDoc/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-HikiDoc/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -16,7 +16,4 @@ LICENSE_COMB= dual USES= perl5 USE_PERL5= modbuild -MAN3= Text::HikiDoc::Plugin.3 Text::HikiDoc.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-HikiDoc/pkg-plist ============================================================================== --- head/textproc/p5-Text-HikiDoc/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-HikiDoc/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Text::HikiDoc.3.gz +%%PERL5_MAN3%%/Text::HikiDoc::Plugin.3.gz %%SITE_PERL%%/Text/HikiDoc.pm %%SITE_PERL%%/Text/HikiDoc/Plugin.pm %%SITE_PERL%%/Text/HikiDoc/Plugin/aa.pm Modified: head/textproc/p5-Text-Hyphen/Makefile ============================================================================== --- head/textproc/p5-Text-Hyphen/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Hyphen/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -12,10 +12,7 @@ COMMENT= Determine positions for hyphens LICENSE= BSD -NO_STAGE= yes USE_PERL5= configure USES= perl5 -MAN3= Text::Hyphen.3 - .include Modified: head/textproc/p5-Text-Hyphen/pkg-plist ============================================================================== --- head/textproc/p5-Text-Hyphen/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Hyphen/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Hyphen.3.gz %%SITE_PERL%%/Text/Hyphen.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Hyphen/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Hyphen Modified: head/textproc/p5-Text-Language-Guess/Makefile ============================================================================== --- head/textproc/p5-Text-Language-Guess/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Language-Guess/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -19,8 +19,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN1= language-guess.1 -MAN3= Text::Language::Guess.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Language-Guess/pkg-descr ============================================================================== --- head/textproc/p5-Text-Language-Guess/pkg-descr Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Language-Guess/pkg-descr Fri Jan 24 14:59:10 2014 (r340908) @@ -11,4 +11,4 @@ returns the abbreviation of the language in. Author: Mike Schilli -WWW: http://search.cpan.org/dist/Text-Language-Guess/ +WWW: http://search.cpan.org/dist/Text-Language-Guess/ Modified: head/textproc/p5-Text-Language-Guess/pkg-plist ============================================================================== --- head/textproc/p5-Text-Language-Guess/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Language-Guess/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,6 +1,8 @@ +%%PERL5_MAN3%%/Text::Language::Guess.3.gz bin/language-guess %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Language/Guess/.packlist %%SITE_PERL%%/Text/Language/Guess.pm +man/man1/language-guess.1.gz @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Language/Guess @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Language @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text Modified: head/textproc/p5-Text-Match-FastAlternatives/Makefile ============================================================================== --- head/textproc/p5-Text-Match-FastAlternatives/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Match-FastAlternatives/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -13,7 +13,4 @@ COMMENT= Efficient search for many strin USES= perl5 USE_PERL5= configure -MAN3= Text::Match::FastAlternatives.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Match-FastAlternatives/pkg-plist ============================================================================== --- head/textproc/p5-Text-Match-FastAlternatives/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-Match-FastAlternatives/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Match::FastAlternatives.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Match/FastAlternatives/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Match/FastAlternatives/FastAlternatives.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Match/FastAlternatives/FastAlternatives.so Modified: head/textproc/p5-Text-MicroMason/Makefile ============================================================================== --- head/textproc/p5-Text-MicroMason/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-MicroMason/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -9,6 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for simple and extensible templating +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= \ p5-Class-MixinFactory>=0.9:${PORTSDIR}/devel/p5-Class-MixinFactory BUILD_DEPENDS= ${RUN_DEPENDS} @@ -16,40 +19,4 @@ BUILD_DEPENDS= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::MicroMason.3 \ - Text::MicroMason::AllowGlobals.3 \ - Text::MicroMason::ApacheHandler.3 \ - Text::MicroMason::Base.3 \ - Text::MicroMason::Cache::File.3 \ - Text::MicroMason::Cache::Null.3 \ - Text::MicroMason::Cache::Simple.3 \ - Text::MicroMason::CatchErrors.3 \ - Text::MicroMason::CompileCache.3 \ - Text::MicroMason::Debug.3 \ - Text::MicroMason::Docs::Changes.3 \ - Text::MicroMason::Docs::ReadMe.3 \ - Text::MicroMason::Docs::Related.3 \ - Text::MicroMason::Docs::ToDo.3 \ - Text::MicroMason::DoubleQuote.3 \ - Text::MicroMason::Embperl.3 \ - Text::MicroMason::ExecuteCache.3 \ - Text::MicroMason::Filters.3 \ - Text::MicroMason::Functions.3 \ - Text::MicroMason::HTMLMason.3 \ - Text::MicroMason::HTMLTemplate.3 \ - Text::MicroMason::HasParams.3 \ - Text::MicroMason::LineNumbers.3 \ - Text::MicroMason::PLP.3 \ - Text::MicroMason::PassVariables.3 \ - Text::MicroMason::PostProcess.3 \ - Text::MicroMason::QuickTemplate.3 \ - Text::MicroMason::Safe.3 \ - Text::MicroMason::ServerPages.3 \ - Text::MicroMason::Sprintf.3 \ - Text::MicroMason::StoreOne.3 \ - Text::MicroMason::TemplateDir.3 \ - Text::MicroMason::TemplatePath.3 \ - Text::MicroMason::TextTemplate.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-MicroMason/pkg-plist ============================================================================== --- head/textproc/p5-Text-MicroMason/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-MicroMason/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,37 @@ +%%PERL5_MAN3%%/Text::MicroMason.3.gz +%%PERL5_MAN3%%/Text::MicroMason::AllowGlobals.3.gz +%%PERL5_MAN3%%/Text::MicroMason::ApacheHandler.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Base.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Cache::File.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Cache::Null.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Cache::Simple.3.gz +%%PERL5_MAN3%%/Text::MicroMason::CatchErrors.3.gz +%%PERL5_MAN3%%/Text::MicroMason::CompileCache.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Debug.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Docs::Changes.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Docs::ReadMe.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Docs::Related.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Docs::ToDo.3.gz +%%PERL5_MAN3%%/Text::MicroMason::DoubleQuote.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Embperl.3.gz +%%PERL5_MAN3%%/Text::MicroMason::ExecuteCache.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Filters.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Functions.3.gz +%%PERL5_MAN3%%/Text::MicroMason::HTMLMason.3.gz +%%PERL5_MAN3%%/Text::MicroMason::HTMLTemplate.3.gz +%%PERL5_MAN3%%/Text::MicroMason::HasParams.3.gz +%%PERL5_MAN3%%/Text::MicroMason::LineNumbers.3.gz +%%PERL5_MAN3%%/Text::MicroMason::PLP.3.gz +%%PERL5_MAN3%%/Text::MicroMason::PassVariables.3.gz +%%PERL5_MAN3%%/Text::MicroMason::PostProcess.3.gz +%%PERL5_MAN3%%/Text::MicroMason::QuickTemplate.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Safe.3.gz +%%PERL5_MAN3%%/Text::MicroMason::ServerPages.3.gz +%%PERL5_MAN3%%/Text::MicroMason::Sprintf.3.gz +%%PERL5_MAN3%%/Text::MicroMason::StoreOne.3.gz +%%PERL5_MAN3%%/Text::MicroMason::TemplateDir.3.gz +%%PERL5_MAN3%%/Text::MicroMason::TemplatePath.3.gz +%%PERL5_MAN3%%/Text::MicroMason::TextTemplate.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/MicroMason/.packlist %%SITE_PERL%%/Text/MicroMason.pm %%SITE_PERL%%/Text/MicroMason/AllowGlobals.pm Modified: head/textproc/p5-Text-MicroTemplate/Makefile ============================================================================== --- head/textproc/p5-Text-MicroTemplate/Makefile Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-MicroTemplate/Makefile Fri Jan 24 14:59:10 2014 (r340908) @@ -9,13 +9,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for standalone, fast and intelligent template engine +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + TEST_DEPENDS= p5-IO-stringy>0:${PORTSDIR}/devel/p5-IO-stringy USES= perl5 USE_PERL5= configure -MAN3= Text::MicroTemplate.3 \ - Text::MicroTemplate::File.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-MicroTemplate/pkg-plist ============================================================================== --- head/textproc/p5-Text-MicroTemplate/pkg-plist Fri Jan 24 14:56:48 2014 (r340907) +++ head/textproc/p5-Text-MicroTemplate/pkg-plist Fri Jan 24 14:59:10 2014 (r340908) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Text::MicroTemplate.3.gz +%%PERL5_MAN3%%/Text::MicroTemplate::File.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/MicroTemplate/.packlist %%SITE_PERL%%/Text/MicroTemplate.pm %%SITE_PERL%%/Text/MicroTemplate/EncodedString.pm From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:06:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C6AB9C2; Fri, 24 Jan 2014 15:06:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 37FE915B0; Fri, 24 Jan 2014 15:06:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OF6jPo084844; Fri, 24 Jan 2014 15:06:45 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OF6jO0084843; Fri, 24 Jan 2014 15:06:45 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401241506.s0OF6jO0084843@svn.freebsd.org> From: Rusmir Dusko Date: Fri, 24 Jan 2014 15:06:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340909 - head/games/xarchon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 15:06:45 -0000 Author: nemysis Date: Fri Jan 24 15:06:44 2014 New Revision: 340909 URL: http://svnweb.freebsd.org/changeset/ports/340909 QAT: https://qat.redports.org/buildarchive/r340909/ Log: - Mark DEPRECATED, set EXPIRATION_DATE Modified: head/games/xarchon/Makefile Modified: head/games/xarchon/Makefile ============================================================================== --- head/games/xarchon/Makefile Fri Jan 24 14:59:10 2014 (r340908) +++ head/games/xarchon/Makefile Fri Jan 24 15:06:44 2014 (r340909) @@ -18,6 +18,9 @@ GNU_CONFIGURE= yes MAN6= xarchon.6 +DEPRECATED= Unusable, development ceased, not works with stage +EXPIRATION_DATE= 2014-03-25 + NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \ From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:41:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 149527A9; Fri, 24 Jan 2014 15:41:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 013831971; Fri, 24 Jan 2014 15:41:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OFfTfS099332; Fri, 24 Jan 2014 15:41:29 GMT (envelope-from vsevolod@svn.freebsd.org) Received: (from vsevolod@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OFfTvv099331; Fri, 24 Jan 2014 15:41:29 GMT (envelope-from vsevolod@svn.freebsd.org) Message-Id: <201401241541.s0OFfTvv099331@svn.freebsd.org> From: Vsevolod Stakhov Date: Fri, 24 Jan 2014 15:41:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340910 - head/mail/rmilter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 15:41:30 -0000 Author: vsevolod Date: Fri Jan 24 15:41:29 2014 New Revision: 340910 URL: http://svnweb.freebsd.org/changeset/ports/340910 QAT: https://qat.redports.org/buildarchive/r340910/ Log: - Add missing bison dependency. Modified: head/mail/rmilter/Makefile Modified: head/mail/rmilter/Makefile ============================================================================== --- head/mail/rmilter/Makefile Fri Jan 24 15:06:44 2014 (r340909) +++ head/mail/rmilter/Makefile Fri Jan 24 15:41:29 2014 (r340910) @@ -16,7 +16,7 @@ GH_TAG= ${PORTVERSION} GH_COMMIT= 9814531 USE_RC_SUBR= yes -USES= cmake +USES= cmake bison USE_OPENSSL= yes PLIST_FILES= sbin/rmilter etc/rc.d/rmilter.sh \ From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:43:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B90D894; Fri, 24 Jan 2014 15:43:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 060AE197D; Fri, 24 Jan 2014 15:43:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OFh6aC099576; Fri, 24 Jan 2014 15:43:06 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OFh6gb099575; Fri, 24 Jan 2014 15:43:06 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401241543.s0OFh6gb099575@svn.freebsd.org> From: Raphael Kubo da Costa Date: Fri, 24 Jan 2014 15:43:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340911 - 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.17 Precedence: list List-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, 24 Jan 2014 15:43:07 -0000 Author: rakuco Date: Fri Jan 24 15:43:06 2014 New Revision: 340911 URL: http://svnweb.freebsd.org/changeset/ports/340911 QAT: https://qat.redports.org/buildarchive/r340911/ Log: Use only the official CDNs in MASTER_SITE_{KDE,QT}. Now that FETCH_ARGS accepts redirections by default, we can use only the official CDNs used by KDE and Qt, and they care of choosing an appropriate mirror. We didn't keep our lists very up-to-date, nor did we correctly prioritize the entries there anyway. With hat: kde@, acknowledged by makc@. Modified: head/Mk/bsd.sites.mk Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Fri Jan 24 15:41:29 2014 (r340910) +++ head/Mk/bsd.sites.mk Fri Jan 24 15:43:06 2014 (r340911) @@ -665,63 +665,9 @@ MASTER_SITE_KENAI+= \ http://projectkenai.com/downloads/%SUBDIR%/ .endif -# List: http://download.kde.org/extra/mirrors.html -# Updated: 2012-10-26 .if !defined(IGNORE_MASTER_SITE_KDE) MASTER_SITE_KDE+= \ - http://download.kde.org/%SUBDIR%/ \ - ftp://ftp.gtlib.gatech.edu/pub/kde/%SUBDIR%/ \ - ftp://ftp.informatik.hu-berlin.de/pub/Mirrors/ftp.kde.org/%SUBDIR%/ \ - http://ftp.gtlib.gatech.edu/pub/kde/%SUBDIR%/ \ - ftp://ftp.solnet.ch/mirror/KDE/%SUBDIR%/ \ - ftp://gd.tuwien.ac.at/kde/%SUBDIR%/ \ - http://gd.tuwien.ac.at/kde/%SUBDIR%/ \ - http://kde.mirrors.tds.net/pub/kde/%SUBDIR%/ \ - ftp://ftp.rz.uni-wuerzburg.de/pub/unix/kde/%SUBDIR%/ \ - http://mirrors.dotsrc.org/kde/%SUBDIR%/ \ - ftp://mirrors.dotsrc.org/kde/%SUBDIR%/ \ - ftp://ftp.fi.muni.cz/pub/kde/%SUBDIR%/ \ - http://ftp.fi.muni.cz/pub/kde/%SUBDIR%/ \ - ftp://sunsite.icm.edu.pl/pub/unix/kde/%SUBDIR%/ \ - http://sunsite.icm.edu.pl/pub/unix/kde/%SUBDIR%/ \ - ftp://ftp.sunet.se/pub/X11/kde/%SUBDIR%/ \ - http://ftp.sunet.se/pub/X11/kde/%SUBDIR%/ \ - ftp://ftp.kde.org/pub/kde/%SUBDIR%/ \ - ftp://ftp.belnet.be/packages/kde/%SUBDIR%/ \ - http://ftp.belnet.be/packages/kde/%SUBDIR%/ \ - ftp://ftp.lip6.fr/pub/X11/kde/%SUBDIR%/ \ - http://www-ftp.lip6.fr/pub/X11/kde/%SUBDIR%/ \ - ftp://ftp.rhnet.is/pub/kde/%SUBDIR%/ \ - http://ftp.rhnet.is/pub/kde/%SUBDIR%/ \ - http://ftp-stud.fht-esslingen.de/Mirrors/ftp.kde.org/pub/kde/%SUBDIR%/ \ - ftp://ftp.cronyx.ru/pub/mirror/kde/%SUBDIR%/ \ - http://ftp.twaren.net/Unix/X/KDE/%SUBDIR%/ \ - ftp://ftp.na.kde.org/pub/kde/%SUBDIR%/ \ - ftp://ftp.fu-berlin.de/pub/unix/X11/gui/kde/%SUBDIR%/ \ - ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/kde/%SUBDIR%/ \ - ftp://ftp.ntua.gr/pub/X11/kde/%SUBDIR%/ \ - http://ftp.ntua.gr/pub/X11/kde/%SUBDIR%/ \ - ftp://ftp.heanet.ie/mirrors/ftp.kde.org/%SUBDIR%/ \ - http://ftp.heanet.ie/mirrors/ftp.kde.org/%SUBDIR%/ \ - ftp://ftp.kddlabs.co.jp/pub/X11/kde/%SUBDIR%/ \ - http://ftp.kddlabs.co.jp/pub/X11/kde/%SUBDIR%/ \ - http://kde.mirror.uber.com.au/%SUBDIR%/ \ - ftp://ftp.ussg.iu.edu/pub/kde/%SUBDIR%/ \ - http://ftp.ussg.iu.edu/kde/%SUBDIR%/ \ - ftp://ftp.sayclub.com/pub/X/KDE/%SUBDIR%/ \ - http://ftp.sayclub.com/pub/X/KDE/%SUBDIR%/ \ - ftp://carroll.aset.psu.edu/pub/kde/%SUBDIR%/ \ - http://mirror.cc.columbia.edu/pub/software/kde/%SUBDIR%/ \ - ftp://ftp.mirrorservice.org/sites/ftp.kde.org/pub/kde/%SUBDIR%/ \ - http://www.mirrorservice.org/sites/ftp.kde.org/pub/kde/%SUBDIR%/ \ - http://master.kde.org/%SUBDIR%/ \ - http://ftp.icm.edu.pl/pub/unix/kde/%SUBDIR%/ \ - http://kde-mirror.freenux.org/%SUBDIR%/ \ - http://ftp.fi.muni.cz/pub/kde/%SUBDIR%/ \ - ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/ftp.kde.org/pub/kde/%SUBDIR%/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,X/kde/&,} \ - ftp://ftp.funet.fi/pub/mirrors/ftp.kde.org/pub/kde/%SUBDIR%/ \ - http://ftp.funet.fi/pub/mirrors/ftp.kde.org/pub/kde/%SUBDIR%/ + http://download.kde.org/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_LOGILAB) @@ -1053,16 +999,7 @@ MASTER_SITE_QMAIL+= \ .if !defined(IGNORE_MASTER_SITE_QT) MASTER_SITE_QT+= \ - http://download.qt-project.org/%SUBDIR%/ \ - http://master.qt-project.org/%SUBDIR%/ \ - http://www.mirrorservice.org/sites/download.qt-project.org/%SUBDIR%/ \ - http://www.nic.funet.fi/pub/mirrors/download.qt-project.org/%SUBDIR%/ \ - http://qtmirror.ics.com/pub/qtproject/%SUBDIR%/ \ - http://anychimirror101.mirrors.tds.net/pub/Qt/%SUBDIR%/ \ - http://www.las.ic.unicamp.br/pub/qtproject/%SUBDIR%/ \ - http://linorg.usp.br/Qt/%SUBDIR%/ \ - http://ftp.jaist.ac.jp/pub/qtproject/%SUBDIR%/ \ - http://mirrors.neusoft.edu.cn/qt/%SUBDIR%/ + http://download.qt-project.org/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_REDHAT_LINUX) From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:43:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8BCBD978; Fri, 24 Jan 2014 15:43:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D0451987; Fri, 24 Jan 2014 15:43:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OFhj0q099704; Fri, 24 Jan 2014 15:43:45 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OFhjmu099703; Fri, 24 Jan 2014 15:43:45 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201401241543.s0OFhjmu099703@svn.freebsd.org> From: Eitan Adler Date: Fri, 24 Jan 2014 15:43:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340912 - 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.17 Precedence: list List-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, 24 Jan 2014 15:43:45 -0000 Author: eadler Date: Fri Jan 24 15:43:44 2014 New Revision: 340912 URL: http://svnweb.freebsd.org/changeset/ports/340912 QAT: https://qat.redports.org/buildarchive/r340912/ Log: - Remove devel/ppl line missed in r328035 - Fix likely timezone issue (date going backwards) - Remove final '.' from MOVED reason Modified: head/MOVED Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jan 24 15:43:06 2014 (r340911) +++ head/MOVED Fri Jan 24 15:43:44 2014 (r340912) @@ -4964,7 +4964,6 @@ ftp/ncftp2|ftp/ncftp3|2013-10-02|Outdate irc/keitairc|irc/keitairc2|2013-10-02|Outdated, consider using a newer version java/netbeans55|java/netbeans|2013-10-02|Outdated, consider using a newer version java/netbeans61|java/netbeans|2013-10-02|Outdated, consider using a newer version -devel/ppl||2013-10-02|expired: fails to build devel/py-importlib||2013-10-02|expired: Python 2.6 port will reach it's EoL upstream soon graphics/gkrellkam|graphics/gkrellkam2|2013-10-02|Outdated, consider using a newer version mail/gkrellmmailwatch|mail/gkrellmmailwatch2|2013-10-02|Outdated, consider using a newer version @@ -5297,7 +5296,7 @@ games/flare|games/flare-game|2013-12-10| audio/liteamp||2013-12-15|Has expired: Dead upstream since 2004, does not build with clang security/opieprint||2013-12-15|Has expired: No more active upstream security/bubblegum||2013-12-15|Has expired: No more active upstream -security/snortsms||2013-12-15|Has expired: Not active since several years. +security/snortsms||2013-12-15|Has expired: Not active since several years sysutils/hammerhead||2013-12-15|Has expired: Development no more active net-p2p/libtorrent-rasterbar-15-python||2013-12-15|Has expired: Unusable, development ceased graphics/openexr_ctl||2013-12-15|Has expired: Now distributed with ampasCTL-1.5 @@ -5340,13 +5339,13 @@ math/freemat-mpi||2013-12-23|Obsolete si devel/py-pmock||2013-12-27|Does not work with python 2.6 and beyond devel/ncurses-devel|devel/ncurses|2013-12-28|regular ncurses ports is more recent databases/mird||2013-12-28|Has expired: No longer maintained upstream -net-mgmt/unifi|net-mgmt/unifi3|2014-01-01|Rename to unifi3; unifi2 is coming to ports tree as well security/dazuko||2013-12-31|Has expired: Currently, the project has not an active development and maintainer mail/p5-Mail-SPF-Query||2013-12-31|Has expired: Use mail/p5-Mail-SPF instead x11-fonts/etlfonts||2013-12-31|Has expired: master site gone net/gateway6||2013-12-31|Has expired: Unsupported upstream, consider using net/gogoc misc/bibletime-devel|misc/bibletime|2013-12-31|Has expired: use misc/bibletime multimedia/linux-ov511-kmod||2013-12-31|Removed, broken and only for 6.X / 7.X +net-mgmt/unifi|net-mgmt/unifi3|2014-01-01|Rename to unifi3; unifi2 is coming to ports tree as well net/pypvm||2014-01-01|Has expired: Dead upstream and suspected that there are no users of port www/mawstats||2014-01-01|Has expired: Upstream development dead, use www/[j]awstats instead devel/p5-Dialog|devel/p5-UI-Dialog|2014-01-01|Has expired From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:44:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99D48A5F; Fri, 24 Jan 2014 15:44:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 860151993; Fri, 24 Jan 2014 15:44:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OFiXwx099912; Fri, 24 Jan 2014 15:44:33 GMT (envelope-from vsevolod@svn.freebsd.org) Received: (from vsevolod@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OFiXLM099911; Fri, 24 Jan 2014 15:44:33 GMT (envelope-from vsevolod@svn.freebsd.org) Message-Id: <201401241544.s0OFiXLM099911@svn.freebsd.org> From: Vsevolod Stakhov Date: Fri, 24 Jan 2014 15:44:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340913 - head/math/gringo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 15:44:33 -0000 Author: vsevolod Date: Fri Jan 24 15:44:33 2014 New Revision: 340913 URL: http://svnweb.freebsd.org/changeset/ports/340913 QAT: https://qat.redports.org/buildarchive/r340913/ Log: - Unbreak on FreeBSD < 10 - Disable lua support as it is terribly broken - Add license - Update portrevision accordingly Modified: head/math/gringo/Makefile Modified: head/math/gringo/Makefile ============================================================================== --- head/math/gringo/Makefile Fri Jan 24 15:43:44 2014 (r340912) +++ head/math/gringo/Makefile Fri Jan 24 15:44:33 2014 (r340913) @@ -4,6 +4,7 @@ PORTNAME= gringo PORTVERSION= 4.2.1 DISTVERSIONSUFFIX= -source +PORTREVISION= 1 CATEGORIES= math devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= potassco/${PORTNAME}/${PORTVERSION} @@ -11,17 +12,24 @@ MASTER_SITE_SUBDIR= potassco/${PORTNAME} MAINTAINER= vsevolod@FreeBSD.org COMMENT= Grounding algorithm based on semi-naive database evaluation +LICENSE= GPLv3 + BUILD_DEPENDS= re2c:${PORTSDIR}/devel/re2c -USES= scons lua:51+ bison +USES= scons bison -MAKE_ARGS+= ${MAKE_ENV} WITH_LUA="lua-${LUA_VER}" -CXXFLAGS+= -std=c++11 -I${LUA_INCDIR} -LDFLAGS+= -L${LUA_LIBDIR} +MAKE_ARGS+= ${MAKE_ENV} +CXXFLAGS+= -std=c++11 PLIST_FILES= bin/${PORTNAME} +.include + +.if ${OSVERSION} < 1000000 +USE_GCC= 4.8+ +.endif + do-install: ${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/build/release/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:44:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 737EDB44; Fri, 24 Jan 2014 15:44:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 60490199E; Fri, 24 Jan 2014 15:44:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OFitX0000112; Fri, 24 Jan 2014 15:44:55 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OFitn4000111; Fri, 24 Jan 2014 15:44:55 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201401241544.s0OFitn4000111@svn.freebsd.org> From: Eitan Adler Date: Fri, 24 Jan 2014 15:44:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340914 - 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.17 Precedence: list List-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, 24 Jan 2014 15:44:55 -0000 Author: eadler Date: Fri Jan 24 15:44:54 2014 New Revision: 340914 URL: http://svnweb.freebsd.org/changeset/ports/340914 QAT: https://qat.redports.org/buildarchive/r340914/ Log: Make MOVEDLint output more consistent Modified: head/Tools/scripts/MOVEDlint.awk Modified: head/Tools/scripts/MOVEDlint.awk ============================================================================== --- head/Tools/scripts/MOVEDlint.awk Fri Jan 24 15:44:33 2014 (r340913) +++ head/Tools/scripts/MOVEDlint.awk Fri Jan 24 15:44:54 2014 (r340914) @@ -88,7 +88,7 @@ $3 !~ /^20[0-3][0-9]-[01][0-9]-[0-3][0-9 # printf "Initial value of 'reason' is lowercase: %5d (%s)\n", NR, $4 if ($4 ~ /\.$/) - printf "Final character is a dot: %5d (%s)\n", NR, $4 + printf "%5d: Final character is a dot: (%s)\n", NR, $4 } END { From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:52:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2511BD25; Fri, 24 Jan 2014 15:52:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0E4101A78; Fri, 24 Jan 2014 15:52:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OFqKov004007; Fri, 24 Jan 2014 15:52:20 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OFqDUD003963; Fri, 24 Jan 2014 15:52:13 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401241552.s0OFqDUD003963@svn.freebsd.org> From: Mathieu Arnold Date: Fri, 24 Jan 2014 15:52:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340915 - in head/textproc: p5-Text-MicroTemplate-Extended p5-Text-Netstring p5-Text-Patch p5-Text-Pipe p5-Text-Query p5-Text-RecordParser p5-Text-Report p5-Text-Sass p5-Text-SimpleTemp... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 15:52:21 -0000 Author: mat Date: Fri Jan 24 15:52:12 2014 New Revision: 340915 URL: http://svnweb.freebsd.org/changeset/ports/340915 QAT: https://qat.redports.org/buildarchive/r340915/ Log: - Support staging - Add license - Pet portlint Sponsored by: Absolight Modified: head/textproc/p5-Text-MicroTemplate-Extended/Makefile head/textproc/p5-Text-MicroTemplate-Extended/pkg-plist head/textproc/p5-Text-Netstring/Makefile head/textproc/p5-Text-Netstring/pkg-plist head/textproc/p5-Text-Patch/Makefile head/textproc/p5-Text-Patch/pkg-plist head/textproc/p5-Text-Pipe/Makefile head/textproc/p5-Text-Pipe/pkg-plist head/textproc/p5-Text-Query/Makefile head/textproc/p5-Text-Query/pkg-plist head/textproc/p5-Text-RecordParser/Makefile head/textproc/p5-Text-RecordParser/pkg-plist head/textproc/p5-Text-Report/Makefile head/textproc/p5-Text-Report/pkg-plist head/textproc/p5-Text-Sass/Makefile head/textproc/p5-Text-Sass/pkg-plist head/textproc/p5-Text-SimpleTemplate/Makefile head/textproc/p5-Text-SimpleTemplate/pkg-plist head/textproc/p5-Text-SpellChecker-GUI/Makefile head/textproc/p5-Text-SpellChecker-GUI/pkg-plist head/textproc/p5-Text-SpellChecker/Makefile head/textproc/p5-Text-SpellChecker/pkg-plist head/textproc/p5-Text-Striphigh/Makefile head/textproc/p5-Text-Striphigh/pkg-plist head/textproc/p5-Text-TabularDisplay/Makefile head/textproc/p5-Text-TabularDisplay/pkg-plist head/textproc/p5-Text-Tags/Makefile head/textproc/p5-Text-Tags/pkg-descr head/textproc/p5-Text-Tags/pkg-plist head/textproc/p5-Text-TestBase/Makefile head/textproc/p5-Text-TestBase/pkg-plist head/textproc/p5-Text-Textile/Makefile head/textproc/p5-Text-Textile/pkg-plist head/textproc/p5-Text-Tmpl/Makefile head/textproc/p5-Text-Tmpl/pkg-plist head/textproc/p5-Text-Trim/Makefile head/textproc/p5-Text-Trim/pkg-plist Modified: head/textproc/p5-Text-MicroTemplate-Extended/Makefile ============================================================================== --- head/textproc/p5-Text-MicroTemplate-Extended/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-MicroTemplate-Extended/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -9,6 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for extended MicroTemplate +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= \ p5-Text-MicroTemplate>=0.18:${PORTSDIR}/textproc/p5-Text-MicroTemplate BUILD_DEPENDS= ${RUN_DEPENDS} @@ -16,8 +19,4 @@ BUILD_DEPENDS= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::MicroTemplate::Extended.3 \ - Text::MicroTemplate::Extended.ja.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-MicroTemplate-Extended/pkg-plist ============================================================================== --- head/textproc/p5-Text-MicroTemplate-Extended/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-MicroTemplate-Extended/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,4 +1,10 @@ +%%PERL5_MAN3%%/Text::MicroTemplate::Extended.3.gz +%%PERL5_MAN3%%/Text::MicroTemplate::Extended.ja.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/MicroTemplate/Extended/.packlist %%SITE_PERL%%/Text/MicroTemplate/Extended.ja.pod %%SITE_PERL%%/Text/MicroTemplate/Extended.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/MicroTemplate/Extended +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/MicroTemplate +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text +@dirrmtry %%SITE_PERL%%/Text/MicroTemplate +@dirrmtry %%SITE_PERL%%/Text Modified: head/textproc/p5-Text-Netstring/Makefile ============================================================================== --- head/textproc/p5-Text-Netstring/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Netstring/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= james@now.ie COMMENT= Perl module to create and manipulate netstring encoded strings +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= Text::Netstring.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Netstring/pkg-plist ============================================================================== --- head/textproc/p5-Text-Netstring/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Netstring/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Netstring.3.gz %%SITE_PERL%%/Text/Netstring.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Netstring/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Netstring Modified: head/textproc/p5-Text-Patch/Makefile ============================================================================== --- head/textproc/p5-Text-Patch/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Patch/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -15,7 +15,4 @@ BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::Patch.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Patch/pkg-plist ============================================================================== --- head/textproc/p5-Text-Patch/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Patch/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Patch.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Patch/.packlist %%SITE_PERL%%/Text/Patch.pm @dirrmtry %%SITE_PERL%%/Text Modified: head/textproc/p5-Text-Pipe/Makefile ============================================================================== --- head/textproc/p5-Text-Pipe/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Pipe/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -9,6 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for common text filter API +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= \ p5-Class-Accessor-Complex>0:${PORTSDIR}/devel/p5-Class-Accessor-Complex \ p5-Class-Accessor-Constructor>0:${PORTSDIR}/devel/p5-Class-Accessor-Constructor \ @@ -21,40 +24,4 @@ USE_PERL5= configure # Hack to avoid invoking CPAN.pm downloading... CONFIGURE_ENV= PERL5_CPANPLUS_IS_RUNNING=1 -MAN3= Text::Pipe.3 \ - Text::Pipe::Append.3 \ - Text::Pipe::Base.3 \ - Text::Pipe::Chomp.3 \ - Text::Pipe::Chop.3 \ - Text::Pipe::Code.3 \ - Text::Pipe::List::First.3 \ - Text::Pipe::List::Grep.3 \ - Text::Pipe::List::Map.3 \ - Text::Pipe::List::Max.3 \ - Text::Pipe::List::MaxStr.3 \ - Text::Pipe::List::Min.3 \ - Text::Pipe::List::MinStr.3 \ - Text::Pipe::List::Pop.3 \ - Text::Pipe::List::Reduce.3 \ - Text::Pipe::List::Shift.3 \ - Text::Pipe::List::Shuffle.3 \ - Text::Pipe::List::Size.3 \ - Text::Pipe::List::Sort.3 \ - Text::Pipe::List::Sum.3 \ - Text::Pipe::Lowercase.3 \ - Text::Pipe::LowercaseFirst.3 \ - Text::Pipe::Multiplex.3 \ - Text::Pipe::Prepend.3 \ - Text::Pipe::Print.3 \ - Text::Pipe::Repeat.3 \ - Text::Pipe::Reverse.3 \ - Text::Pipe::Say.3 \ - Text::Pipe::Split.3 \ - Text::Pipe::Stackable.3 \ - Text::Pipe::Tester.3 \ - Text::Pipe::Trim.3 \ - Text::Pipe::Uppercase.3 \ - Text::Pipe::UppercaseFirst.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Pipe/pkg-plist ============================================================================== --- head/textproc/p5-Text-Pipe/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Pipe/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,37 @@ +%%PERL5_MAN3%%/Text::Pipe.3.gz +%%PERL5_MAN3%%/Text::Pipe::Append.3.gz +%%PERL5_MAN3%%/Text::Pipe::Base.3.gz +%%PERL5_MAN3%%/Text::Pipe::Chomp.3.gz +%%PERL5_MAN3%%/Text::Pipe::Chop.3.gz +%%PERL5_MAN3%%/Text::Pipe::Code.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::First.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Grep.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Map.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Max.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::MaxStr.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Min.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::MinStr.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Pop.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Reduce.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Shift.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Shuffle.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Size.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Sort.3.gz +%%PERL5_MAN3%%/Text::Pipe::List::Sum.3.gz +%%PERL5_MAN3%%/Text::Pipe::Lowercase.3.gz +%%PERL5_MAN3%%/Text::Pipe::LowercaseFirst.3.gz +%%PERL5_MAN3%%/Text::Pipe::Multiplex.3.gz +%%PERL5_MAN3%%/Text::Pipe::Prepend.3.gz +%%PERL5_MAN3%%/Text::Pipe::Print.3.gz +%%PERL5_MAN3%%/Text::Pipe::Repeat.3.gz +%%PERL5_MAN3%%/Text::Pipe::Reverse.3.gz +%%PERL5_MAN3%%/Text::Pipe::Say.3.gz +%%PERL5_MAN3%%/Text::Pipe::Split.3.gz +%%PERL5_MAN3%%/Text::Pipe::Stackable.3.gz +%%PERL5_MAN3%%/Text::Pipe::Tester.3.gz +%%PERL5_MAN3%%/Text::Pipe::Trim.3.gz +%%PERL5_MAN3%%/Text::Pipe::Uppercase.3.gz +%%PERL5_MAN3%%/Text::Pipe::UppercaseFirst.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Pipe/.packlist %%SITE_PERL%%/Text/Pipe.pm %%SITE_PERL%%/Text/Pipe/Append.pm Modified: head/textproc/p5-Text-Query/Makefile ============================================================================== --- head/textproc/p5-Text-Query/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Query/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -13,15 +13,6 @@ COMMENT= Query processing framework USES= perl5 USE_PERL5= configure patch -MAN3= Text::Query.3 Text::Query::Build.3 \ - Text::Query::BuildAdvancedString.3 \ - Text::Query::BuildSimpleString.3 Text::Query::Optimize.3 \ - Text::Query::Parse.3 Text::Query::ParseAdvanced.3 \ - Text::Query::ParseSimple.3 Text::Query::Solve.3 \ - Text::Query::SolveAdvancedString.3 \ - Text::Query::SolveSimpleString.3 - -NO_STAGE= yes pre-patch: @${PERL} -pi -e 's/factor\(\$$self\)/\&factor(\$$self)/' \ ${WRKSRC}/lib/Text/Query/ParseAdvanced.pm Modified: head/textproc/p5-Text-Query/pkg-plist ============================================================================== --- head/textproc/p5-Text-Query/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Query/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,14 @@ +%%PERL5_MAN3%%/Text::Query.3.gz +%%PERL5_MAN3%%/Text::Query::Build.3.gz +%%PERL5_MAN3%%/Text::Query::BuildAdvancedString.3.gz +%%PERL5_MAN3%%/Text::Query::BuildSimpleString.3.gz +%%PERL5_MAN3%%/Text::Query::Optimize.3.gz +%%PERL5_MAN3%%/Text::Query::Parse.3.gz +%%PERL5_MAN3%%/Text::Query::ParseAdvanced.3.gz +%%PERL5_MAN3%%/Text::Query::ParseSimple.3.gz +%%PERL5_MAN3%%/Text::Query::Solve.3.gz +%%PERL5_MAN3%%/Text::Query::SolveAdvancedString.3.gz +%%PERL5_MAN3%%/Text::Query::SolveSimpleString.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Query/.packlist %%SITE_PERL%%/Text/Query.pm %%SITE_PERL%%/Text/Query/Advanced.pm Modified: head/textproc/p5-Text-RecordParser/Makefile ============================================================================== --- head/textproc/p5-Text-RecordParser/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-RecordParser/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -11,6 +11,8 @@ DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= lth@FreeBSD.org COMMENT= Read record-oriented files +LICENSE= GPLv2 + BUILD_DEPENDS= p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ p5-IO-stringy>=0:${PORTSDIR}/devel/p5-IO-stringy \ p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ @@ -26,12 +28,6 @@ TEST_DEPENDS= p5-Test-Exception>=0:${POR USES= perl5 USE_PERL5= modbuild -MAN1= tablify.1 tabmerge.1 tab2graph.1 -MAN3= Text::RecordParser.3 \ - Text::RecordParser::Tab.3 \ - Text::RecordParser::Object.3 - -NO_STAGE= yes post-extract: # workaround for https://rt.cpan.org/Public/Bug/Display.html?id=87855 ${CHMOD} +w ${WRKSRC}/README.md Modified: head/textproc/p5-Text-RecordParser/pkg-plist ============================================================================== --- head/textproc/p5-Text-RecordParser/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-RecordParser/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,8 +1,14 @@ bin/tablify bin/tab2graph bin/tabmerge +%%PERL5_MAN3%%/Text::RecordParser.3.gz +%%PERL5_MAN3%%/Text::RecordParser::Tab.3.gz +%%PERL5_MAN3%%/Text::RecordParser::Object.3.gz %%SITE_PERL%%/Text/RecordParser.pm %%SITE_PERL%%/Text/RecordParser/Tab.pm %%SITE_PERL%%/Text/RecordParser/Object.pm +man/man1/tablify.1.gz +man/man1/tabmerge.1.gz +man/man1/tab2graph.1.gz @dirrm %%SITE_PERL%%/Text/RecordParser @dirrmtry %%SITE_PERL%%/Text Modified: head/textproc/p5-Text-Report/Makefile ============================================================================== --- head/textproc/p5-Text-Report/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Report/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -16,7 +16,4 @@ BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::Report.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Report/pkg-plist ============================================================================== --- head/textproc/p5-Text-Report/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Report/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Report.3.gz %%SITE_PERL%%/Text/Report.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Report/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Report Modified: head/textproc/p5-Text-Sass/Makefile ============================================================================== --- head/textproc/p5-Text-Sass/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Sass/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl implementation of http://sass-lang.com/ +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= \ p5-Readonly>=1.03:${PORTSDIR}/devel/p5-Readonly \ p5-Convert-Color>0:${PORTSDIR}/graphics/p5-Convert-Color @@ -19,9 +22,4 @@ TEST_DEPENDS= p5-Try-Tiny>0:${PORTSDIR}/ USES= perl5 USE_PERL5= modbuild -MAN3= Text::Sass.3 \ - Text::Sass::Expr.3 \ - Text::Sass::Functions.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Sass/pkg-plist ============================================================================== --- head/textproc/p5-Text-Sass/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Sass/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/Text::Sass.3.gz +%%PERL5_MAN3%%/Text::Sass::Expr.3.gz +%%PERL5_MAN3%%/Text::Sass::Functions.3.gz bin/sass2css.pl %%SITE_PERL%%/Text/Sass.pm %%SITE_PERL%%/Text/Sass/Expr.pm Modified: head/textproc/p5-Text-SimpleTemplate/Makefile ============================================================================== --- head/textproc/p5-Text-SimpleTemplate/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-SimpleTemplate/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -13,7 +13,4 @@ COMMENT= Yet another Perl module for tem USES= perl5 USE_PERL5= configure -MAN3= Text::SimpleTemplate.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-SimpleTemplate/pkg-plist ============================================================================== --- head/textproc/p5-Text-SimpleTemplate/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-SimpleTemplate/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::SimpleTemplate.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/SimpleTemplate/.packlist %%SITE_PERL%%/Text/SimpleTemplate.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/SimpleTemplate Modified: head/textproc/p5-Text-SpellChecker-GUI/Makefile ============================================================================== --- head/textproc/p5-Text-SpellChecker-GUI/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-SpellChecker-GUI/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= vvelox@vvelox.net COMMENT= Implements a user interface to Text::SpellChecker using ZConf::GUI +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Curses-UI>=0:${PORTSDIR}/devel/p5-Curses-UI \ p5-String-ShellQuote>=0:${PORTSDIR}/textproc/p5-String-ShellQuote \ p5-ZConf-GUI>=0:${PORTSDIR}/devel/p5-ZConf-GUI \ @@ -19,8 +22,4 @@ BUILD_DEPENDS= p5-Curses-UI>=0:${PORTSDI USES= perl5 USE_PERL5= configure -MAN3= Text::SpellChecker::GUI.3 \ - Text::SpellChecker::GUI::Curses.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-SpellChecker-GUI/pkg-plist ============================================================================== --- head/textproc/p5-Text-SpellChecker-GUI/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-SpellChecker-GUI/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,11 +1,13 @@ bin/textspellchecker bin/curses-textspellchecker +%%PERL5_MAN3%%/Text::SpellChecker::GUI.3.gz +%%PERL5_MAN3%%/Text::SpellChecker::GUI::Curses.3.gz %%SITE_PERL%%/Text/SpellChecker/GUI.pm %%SITE_PERL%%/Text/SpellChecker/GUI/Curses.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/SpellChecker/GUI/.packlist @dirrmtry %%SITE_PERL%%/Text/SpellChecker/GUI -@dirrmtry %%SITE_PERL%%/Text/SpellChecker/ -@dirrmtry %%SITE_PERL%%/Text/ +@dirrmtry %%SITE_PERL%%/Text/SpellChecker +@dirrmtry %%SITE_PERL%%/Text @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/SpellChecker/GUI @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/SpellChecker @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text Modified: head/textproc/p5-Text-SpellChecker/Makefile ============================================================================== --- head/textproc/p5-Text-SpellChecker/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-SpellChecker/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -15,7 +15,4 @@ RUN_DEPENDS= p5-Text-Aspell>=0:${PORTSDI USES= perl5 USE_PERL5= configure -MAN3= Text::SpellChecker.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-SpellChecker/pkg-plist ============================================================================== --- head/textproc/p5-Text-SpellChecker/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-SpellChecker/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::SpellChecker.3.gz %%SITE_PERL%%/Text/SpellChecker.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/SpellChecker/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/SpellChecker Modified: head/textproc/p5-Text-Striphigh/Makefile ============================================================================== --- head/textproc/p5-Text-Striphigh/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Striphigh/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -14,7 +14,4 @@ USES= perl5 USE_PERL5= configure WRKSRC= ${WRKDIR}/Striphigh-${PORTVERSION} -MAN3= Text::Striphigh.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Striphigh/pkg-plist ============================================================================== --- head/textproc/p5-Text-Striphigh/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Striphigh/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Striphigh.3.gz %%SITE_PERL%%/Text/Striphigh.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Striphigh/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Striphigh Modified: head/textproc/p5-Text-TabularDisplay/Makefile ============================================================================== --- head/textproc/p5-Text-TabularDisplay/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-TabularDisplay/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -9,10 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Display text in formatted table output +LICENSE= GPLv2 + USES= perl5 USE_PERL5= configure -MAN3= Text::TabularDisplay.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-TabularDisplay/pkg-plist ============================================================================== --- head/textproc/p5-Text-TabularDisplay/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-TabularDisplay/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::TabularDisplay.3.gz %%SITE_PERL%%/Text/TabularDisplay.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/TabularDisplay/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/TabularDisplay Modified: head/textproc/p5-Text-Tags/Makefile ============================================================================== --- head/textproc/p5-Text-Tags/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Tags/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= Parses folksonomy space-separated tags +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= Text::Tags.3 Text::Tags::Parser.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Tags/pkg-descr ============================================================================== --- head/textproc/p5-Text-Tags/pkg-descr Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Tags/pkg-descr Fri Jan 24 15:52:12 2014 (r340915) @@ -3,4 +3,4 @@ quoted tag lists. See Text::Tags::Parser Text::Tags may be used in a future version of the distribution. Author: Best Practical Solutions, LLC. -WWW: http://search.cpan.org/dist/Text-Tags/ +WWW: http://search.cpan.org/dist/Text-Tags/ Modified: head/textproc/p5-Text-Tags/pkg-plist ============================================================================== --- head/textproc/p5-Text-Tags/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Tags/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,5 @@ +%%PERL5_MAN3%%/Text::Tags.3.gz +%%PERL5_MAN3%%/Text::Tags::Parser.3.gz %%SITE_PERL%%/Text/Tags.pm %%SITE_PERL%%/Text/Tags/Parser.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Tags/.packlist Modified: head/textproc/p5-Text-TestBase/Makefile ============================================================================== --- head/textproc/p5-Text-TestBase/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-TestBase/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -20,12 +20,6 @@ TEST_DEPENDS= p5-Test-Requires>0:${PORTS USES= perl5 USE_PERL5= modbuild -MAN3= Data::Section::TestBase.3 \ - Test::Base::Less.3 \ - Text::TestBase.3 \ - Text::TestBase::Block.3 - -NO_STAGE= yes .include .if ${PERL_LEVEL} < 501400 Modified: head/textproc/p5-Text-TestBase/pkg-plist ============================================================================== --- head/textproc/p5-Text-TestBase/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-TestBase/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,7 @@ +%%PERL5_MAN3%%/Data::Section::TestBase.3.gz +%%PERL5_MAN3%%/Test::Base::Less.3.gz +%%PERL5_MAN3%%/Text::TestBase.3.gz +%%PERL5_MAN3%%/Text::TestBase::Block.3.gz %%SITE_PERL%%/Data/Section/TestBase.pm %%SITE_PERL%%/Test/Base/Less.pm %%SITE_PERL%%/Text/TestBase.pm Modified: head/textproc/p5-Text-Textile/Makefile ============================================================================== --- head/textproc/p5-Text-Textile/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Textile/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= hcoyote@ghostar.org COMMENT= A perl-based implementation of the Textile syntax by Dean Allen +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= Text::Textile.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Textile/pkg-plist ============================================================================== --- head/textproc/p5-Text-Textile/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Textile/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Textile.3.gz %%SITE_PERL%%/Text/Textile.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Textile/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Textile Modified: head/textproc/p5-Text-Tmpl/Makefile ============================================================================== --- head/textproc/p5-Text-Tmpl/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Tmpl/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -13,9 +13,6 @@ COMMENT= Templating system perl library USES= perl5 USE_PERL5= configure patch -MAN3= template_syntax.3 Text::Tmpl.3 template_extend.3 - -NO_STAGE= yes pre-patch: @${PERL} -pi -e '/OPTIMIZE|libtmpl.pod/ and $$_=""' \ ${WRKSRC}/Makefile.PL Modified: head/textproc/p5-Text-Tmpl/pkg-plist ============================================================================== --- head/textproc/p5-Text-Tmpl/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Tmpl/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,3 +1,6 @@ +%%PERL5_MAN3%%/template_syntax.3.gz +%%PERL5_MAN3%%/Text::Tmpl.3.gz +%%PERL5_MAN3%%/template_extend.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Tmpl/Tmpl.so %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Tmpl/Tmpl.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Tmpl/autosplit.ix Modified: head/textproc/p5-Text-Trim/Makefile ============================================================================== --- head/textproc/p5-Text-Trim/Makefile Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Trim/Makefile Fri Jan 24 15:52:12 2014 (r340915) @@ -11,13 +11,13 @@ PKGNAMEPREFIX= p5- MAINTAINER= miwi@FreeBSD.org COMMENT= Extract the structure of a quoted mail message +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Test-Simple>=0:${PORTSDIR}/devel/p5-Test-Simple RUN_DEPENDS= p5-Test-Simple>=0:${PORTSDIR}/devel/p5-Test-Simple USES= perl5 USE_PERL5= modbuild -MAN3= Text::Trim.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Trim/pkg-plist ============================================================================== --- head/textproc/p5-Text-Trim/pkg-plist Fri Jan 24 15:44:54 2014 (r340914) +++ head/textproc/p5-Text-Trim/pkg-plist Fri Jan 24 15:52:12 2014 (r340915) @@ -1,2 +1,3 @@ +%%PERL5_MAN3%%/Text::Trim.3.gz %%SITE_PERL%%/Text/Trim.pm @dirrmtry %%SITE_PERL%%/Text From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:55:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46EB2EB4; Fri, 24 Jan 2014 15:55:52 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 04E351ADA; Fri, 24 Jan 2014 15:55:52 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 80AB5BDC64; Fri, 24 Jan 2014 16:55:50 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 5C9A3BDC5D; Fri, 24 Jan 2014 16:55:50 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id D22C4613D; Fri, 24 Jan 2014 16:55:49 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 4264F684A004; Fri, 24 Jan 2014 16:55:49 +0100 (CET) Date: Fri, 24 Jan 2014 16:55:48 +0100 From: Mathieu Arnold To: Raphael Kubo da Costa , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340911 - head/Mk Message-ID: In-Reply-To: <201401241543.s0OFh6gb099575@svn.freebsd.org> References: <201401241543.s0OFh6gb099575@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 15:55:52 -0000 +--On 24 janvier 2014 15:43:06 +0000 Raphael Kubo da Costa wrote: | Log: | Use only the official CDNs in MASTER_SITE_{KDE,QT}. The advantage of having multiple sites is that if the first didn't work, the second might. Now, there's only one, and if for some reason something goes wrong when fetching, it will fail. Which is a problem on package builders, it can mean no binary packages depending on QT/KDE for a week, or more... -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:56:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84007F9F for ; Fri, 24 Jan 2014 15:56:06 +0000 (UTC) Received: from mail-qa0-x229.google.com (mail-qa0-x229.google.com [IPv6:2607:f8b0:400d:c00::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3BC281AE8 for ; Fri, 24 Jan 2014 15:56:06 +0000 (UTC) Received: by mail-qa0-f41.google.com with SMTP id w8so4126180qac.28 for ; Fri, 24 Jan 2014 07:56:05 -0800 (PST) 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:message-id :subject:to:cc:content-type; bh=vwl4ZhsZEag1rFuMfQk13/HeoFe+heLHL5rEPBv0W5c=; b=pOz3FPUv4hkScjzxMXYoZ11FiFVj4FgLTtv85f006b08hvQ6p0gyV+v5ZONBXrVEfG wgVnPEShRwy6Mu/aAngk70Pa4NB+KTPFwZXmTGLPcEun2QS6rbACsZDexWMH+D/R2ZFZ rhleH+4AdZI5ZSDCs0suSyN5qwiNElPGP26uQ= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=vwl4ZhsZEag1rFuMfQk13/HeoFe+heLHL5rEPBv0W5c=; b=bYhxH000h78nn55dwbMq3zkBsi8GuWus4JBTGYpwXQsV9vd/CI2DVIUuyPMCZmkzP0 wkF/P2IzxDY3GjT++hoywrwm2R0sjHRhp9/yLnteUCI8NfrC4PEZgqkPUClfv8zhF4gB IkRlaQsvLUWRjgGH7DYShzNmh6Qpjy8Va6MHZOfYJmRJNQ3oZGITdE0lJU0ZTGFFEjxc E5w9OPpukIY5pxGyuVICE+Lqmp4URn3Z6mvZ5WAAXdr/8YT0Ybfp3I7lG4Bm96PYTqxK jJTttHHWv/cNs6upUJCD1CZGRJeF3jazbaKP0vStq7sq5RXPiLPVsTpw0dSjLNKVawON 3GwQ== X-Gm-Message-State: ALoCoQlQx4pt8OajbC0qzdEAqoHpJUI9vAchmN5Y8St2UN+OxfoB3rHDa1ChTUI+HMzrrMsYIXBj X-Received: by 10.224.165.133 with SMTP id i5mr21624891qay.75.1390578965315; Fri, 24 Jan 2014 07:56:05 -0800 (PST) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.96.85.138 with HTTP; Fri, 24 Jan 2014 07:55:34 -0800 (PST) In-Reply-To: <201312302256.rBUMu0Fe064888@svn.freebsd.org> References: <201312302256.rBUMu0Fe064888@svn.freebsd.org> From: Eitan Adler Date: Fri, 24 Jan 2014 10:55:34 -0500 X-Google-Sender-Auth: smyVwOgvCE4DlPnj3RXANg5XEH8 Message-ID: Subject: Re: svn commit: r338192 - in head: Mk textproc/libkolabxml To: Olli Hauer Content-Type: text/plain; charset=UTF-8 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.17 Precedence: list List-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, 24 Jan 2014 15:56:06 -0000 On Mon, Dec 30, 2013 at 5:56 PM, Olli Hauer wrote: > Author: ohauer > Date: Mon Dec 30 22:56:00 2013 > New Revision: 338192 > URL: http://svnweb.freebsd.org/changeset/ports/338192 > > Log: > - APACHE10 is not OSI Approved [1] > - fix AL2 in comment > > [1] Regarding https://spdx.org/licenses/ > [2] follow-up > > Noted by mat@ > > PR: ports/184785 [2] http://www.FreeBSD.org/cgi/query-pr.cgi?pr=184785 > Approved by: portmgr (tabthorpe@) implicit > > Modified: > head/Mk/bsd.licenses.db.mk > head/textproc/libkolabxml/Makefile > > Modified: head/Mk/bsd.licenses.db.mk > ============================================================================== > --- head/Mk/bsd.licenses.db.mk Mon Dec 30 22:50:38 2013 (r338191) > +++ head/Mk/bsd.licenses.db.mk Mon Dec 30 22:56:00 2013 (r338192) > @@ -76,7 +76,7 @@ _LICENSE_NAME_AGPLv3= GNU Affero General > _LICENSE_GROUPS_AGPLv3= FSF GPL OSI > > _LICENSE_NAME_APACHE10= Apache License 1.0 > -_LICENSE_GROUPS_APACHE10= FSF OSI > +_LICENSE_GROUPS_APACHE10= FSF The apache 1.0 license is not FSF approved either. -- Eitan Adler Source, Ports, Doc committer Bugmeister, Ports Security teams From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:56:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A932FA5; Fri, 24 Jan 2014 15:56:08 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E3C8A1AEC; Fri, 24 Jan 2014 15:56:07 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.7/8.14.7) with ESMTP id s0OFu6dN088407; Fri, 24 Jan 2014 08:56:06 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.7/8.14.7/Submit) with ESMTP id s0OFu6MU088404; Fri, 24 Jan 2014 08:56:06 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Fri, 24 Jan 2014 08:56:06 -0700 (MST) From: Warren Block To: Remko Lodder Subject: Re: svn commit: r340819 - head/security/vuxml In-Reply-To: Message-ID: References: <201401231003.s0NA3XaT070054@svn.freebsd.org> <52E17557.3040208@FreeBSD.org> <0231531E-F8BA-4053-B2DC-C1CD081309DB@FreeBSD.org> <52E19A89.1080700@FreeBSD.org> <3AB46F29-CD84-4E4B-949B-CB99CFDC572D@FreeBSD.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Fri, 24 Jan 2014 08:56:06 -0700 (MST) Cc: svn-ports-head@freebsd.org, pgj@FreeBSD.org, svn-ports-all@freebsd.org, Warren Block , ports-committers@freebsd.org, Matthias Andree X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 15:56:08 -0000 On Fri, 24 Jan 2014, Remko Lodder wrote: > On 24 Jan 2014, at 08:25, Remko Lodder wrote: >> On 23 Jan 2014, at 23:41, Matthias Andree wrote: >>> Am 23.01.2014 22:24, schrieb Remko Lodder: >>> >>>> Make validate checks whether the correct tags had been used at the right places. >>>> Documentation follows the FDP primer, which states how this works. Perhaps >>>> igor can be used to suggest a better strategy, most of the desired format is >>>> already included, all you have to do is properly fill it in, or sneakpeak at >>>> an already written entry. >>> >>> It's not the "I can" but that we'd as a whole be more productive if I >>> could verify the style, or even better have it automatically reformatted >>> to style (of course your ellipsis removal is another thing that requires >>> a manual step), and then commit a properly styled entry. >>> >>> With a very strong inclination towards "reformat", surely there must be >>> some tweakable XML formatter in ports that we can beat into shape. Vuxml seems like a can of worms, and I've never really looked at it much. But given that nobody should be expected to be familiar with a particular style or usage of XML, I personally would lean towards writing a script that would take the information, then wrap it with the right XML markup and format it as desired. pgj@ mentioned recently that he was using fmt(1) for the project reports, and that could be a start. >> Sure, someone[tm] might be able to do just that ;-). I welcome to review >> and test patches that will work this out. But I do not have the time nor >> focus at the moment to do that work. And yes I agree that things to make >> it easier are welcomed and might lower the bar, but then again we do not >> have that (yet?) and until that time we need to work with what we have >> and how things have been going for the last period of time. > > It seems that igor can do some of the checking already; > > [remko@speeltuin /virtual/workspace/subversion/ports/security/vuxml]$ igor vuln.xml | more > vuln.xml:55:wrap long line: HTMLDOC -- buffer overflow issues when reading AFM files[ ]and parsing page sizes > vuln.xml:67:use two spaces at sentence start: formatting bugs.[ ]Changes include:

> vuln.xml:73:bad tag indent:[ ] > vuln.xml:96:wrap long line: > vuln.xml:100:wrap long line: users to affect confidentiality, integrity, and[ ]availability > vuln.xml:103:bad tag indent:[ ] > vuln.xml:112:bad tag indent:[ ] > > Not yet perfect[tm] but it was not intended from start for vuxml, but we might lure wblock into perhaps have a look at that? Sorry, I missed the earlier part of this thread, and am not sure what would need to be added. As is, igor will check for whitespace problems, spelling, and indentation. The last is a horrible hack, sometimes giving false positives with uglier usage of XML. ( I've been trying to coax someone other than me to rewrite it for quite a while now.) Some tags would need to be added to igor to check the indenting. Are there new tests that would need to be added? One advantage of a formatting script is that it can just do what is desired with the input. igor will warn about problems, but the user has to run it and then correct those problems. From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:57:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D286A24A; Fri, 24 Jan 2014 15:57:29 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 90A3F1B1D; Fri, 24 Jan 2014 15:57:29 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 3B763BDC3E; Fri, 24 Jan 2014 16:57:28 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 358A8BDC2E; Fri, 24 Jan 2014 16:57:28 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id ED8E1613D; Fri, 24 Jan 2014 16:57:27 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id E6E37684A01A; Fri, 24 Jan 2014 16:57:27 +0100 (CET) Date: Fri, 24 Jan 2014 16:57:27 +0100 From: Mathieu Arnold To: Vsevolod Stakhov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340913 - head/math/gringo Message-ID: In-Reply-To: <201401241544.s0OFiXLM099911@svn.freebsd.org> References: <201401241544.s0OFiXLM099911@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 15:57:29 -0000 +--On 24 janvier 2014 15:44:33 +0000 Vsevolod Stakhov wrote: | +.if ${OSVERSION} < 1000000 | +USE_GCC= 4.8+ | +.endif Can't this be replaced with just : USES= compiler:c++11-lang or -lib ? -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 15:58:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23EB6343; Fri, 24 Jan 2014 15:58:07 +0000 (UTC) Received: from mail-gg0-x234.google.com (mail-gg0-x234.google.com [IPv6:2607:f8b0:4002:c02::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A29B71B33; Fri, 24 Jan 2014 15:58:06 +0000 (UTC) Received: by mail-gg0-f180.google.com with SMTP id q3so1069771gge.11 for ; Fri, 24 Jan 2014 07:58:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=dt5FRKtzIws7FS1pLkO5Ssko9my3dEFbT92zvdPxkL8=; b=DixgTJCwBh60N9Eep7C82ViWMU93zjoRIhNF6bn3/R0zA4cwP15yJ6PumAv3MvGJWI tTlS/jqjk++tT9DFhsgfa2D+giGYF87S83qAdalquuz1dhLICmDOhQmRLBkW2XsZVcMR Guv+t72gOD6+mts08E8UoGOo4TlnUnblGfwXbf5UIg6s3P3fyEuR5+CaH9PRtDEG+60T FCZwxe7bi0oIuuMCNOa53vVwSCA5phnZ/2Llw/05J6IH8yk/bQHGvKo9EuFHLdAIs2ZO lLHjb3l0jsU1P1LSnG6AM8sCtpqoxJ2M7Vr4/GWHLSGm+3oIbLPNaZvtsAZ1SToBRmEl bLQg== X-Received: by 10.236.158.226 with SMTP id q62mr13566256yhk.2.1390579085746; Fri, 24 Jan 2014 07:58:05 -0800 (PST) Received: from [192.168.137.178] ([201.55.128.238]) by mx.google.com with ESMTPSA id s21sm3851441yhk.9.2014.01.24.07.57.49 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 24 Jan 2014 07:58:05 -0800 (PST) Sender: =?UTF-8?Q?Danilo_Eg=C3=AAa_Gondolfo?= Message-ID: <52E28E28.6070201@freebsd.org> Date: Fri, 24 Jan 2014 14:00:40 -0200 From: "Danilo E. Gondolfo" User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Tijl Coosemans Subject: Re: svn commit: r340869 - in head/audio/smasher: . files References: <201401232313.s0NNDdsi078774@svn.freebsd.org> <20140124113614.5d47a38c@kalimero.tijl.coosemans.org> In-Reply-To: <20140124113614.5d47a38c@kalimero.tijl.coosemans.org> 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.17 Precedence: list List-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, 24 Jan 2014 15:58:07 -0000 On 01/24/14 08:36, Tijl Coosemans wrote: > On Thu, 23 Jan 2014 23:13:39 +0000 (UTC) Danilo Egea Gondolfo wrote: >> Author: danilo >> Date: Thu Jan 23 23:13:39 2014 >> New Revision: 340869 >> URL: http://svnweb.freebsd.org/changeset/ports/340869 >> QAT: https://qat.redports.org/buildarchive/r340869/ >> >> Log: >> - Add stage support >> - Fix build >> - Add USE_GCC. clang fails with a lot of c++ erros >> - Bump PORTREVISION > > The USE_GCC line is a comment. Oops!!! I've committed it after try a last time build with clang. Thanks! > > >> Modified: head/audio/smasher/Makefile >> ============================================================================== >> --- head/audio/smasher/Makefile Thu Jan 23 23:09:44 2014 (r340868) >> +++ head/audio/smasher/Makefile Thu Jan 23 23:13:39 2014 (r340869) >> @@ -3,7 +3,7 @@ >> >> PORTNAME= smasher >> PORTVERSION= 1.1.6 >> -PORTREVISION= 3 >> +PORTREVISION= 4 >> CATEGORIES= audio >> MASTER_SITES= SF >> DISTNAME= ${PORTNAME}-${PORTVERSION}-source >> @@ -16,8 +16,8 @@ LIB_DEPENDS= libsndfile.so:${PORTSDIR}/a >> libcsound64.so:${PORTSDIR}/audio/csound >> >> GNU_CONFIGURE= yes >> -USES= gmake pkgconfig >> -NO_STAGE= yes >> +USES= desktop-file-utils gmake pkgconfig >> +#USE_GCC= yes >> USE_WX= yes >> WX_CONF_ARGS= absolute > From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 16:02:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 999DD4FB; Fri, 24 Jan 2014 16:02:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 85BB11D0D; Fri, 24 Jan 2014 16:02:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OG2DPT007910; Fri, 24 Jan 2014 16:02:13 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OG2DHe007909; Fri, 24 Jan 2014 16:02:13 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401241602.s0OG2DHe007909@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Fri, 24 Jan 2014 16:02:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340916 - head/audio/smasher X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 16:02:13 -0000 Author: danilo Date: Fri Jan 24 16:02:13 2014 New Revision: 340916 URL: http://svnweb.freebsd.org/changeset/ports/340916 QAT: https://qat.redports.org/buildarchive/r340916/ Log: - Remove the comment from USE_GCC Reported by: tijl Modified: head/audio/smasher/Makefile Modified: head/audio/smasher/Makefile ============================================================================== --- head/audio/smasher/Makefile Fri Jan 24 15:52:12 2014 (r340915) +++ head/audio/smasher/Makefile Fri Jan 24 16:02:13 2014 (r340916) @@ -17,7 +17,7 @@ LIB_DEPENDS= libsndfile.so:${PORTSDIR}/a GNU_CONFIGURE= yes USES= desktop-file-utils gmake pkgconfig -#USE_GCC= yes +USE_GCC= yes USE_WX= yes WX_CONF_ARGS= absolute From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 16:03:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C41D25E0; Fri, 24 Jan 2014 16:03:11 +0000 (UTC) Received: from wonkity.com (wonkity.com [67.158.26.137]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6CA6F1D19; Fri, 24 Jan 2014 16:03:11 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.7/8.14.7) with ESMTP id s0OG3Amk088483; Fri, 24 Jan 2014 09:03:10 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.7/8.14.7/Submit) with ESMTP id s0OG3A4E088480; Fri, 24 Jan 2014 09:03:10 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Fri, 24 Jan 2014 09:03:10 -0700 (MST) From: Warren Block To: Remko Lodder Subject: Re: svn commit: r340819 - head/security/vuxml In-Reply-To: Message-ID: References: <201401231003.s0NA3XaT070054@svn.freebsd.org> <52E17557.3040208@FreeBSD.org> <0231531E-F8BA-4053-B2DC-C1CD081309DB@FreeBSD.org> <52E19A89.1080700@FreeBSD.org> <3AB46F29-CD84-4E4B-949B-CB99CFDC572D@FreeBSD.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (wonkity.com [127.0.0.1]); Fri, 24 Jan 2014 09:03:10 -0700 (MST) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, Warren Block , Matthias Andree , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 16:03:11 -0000 On Fri, 24 Jan 2014, Remko Lodder wrote: > It seems that igor can do some of the checking already; > > [remko@speeltuin /virtual/workspace/subversion/ports/security/vuxml]$ igor vuln.xml | more > vuln.xml:55:wrap long line: HTMLDOC -- buffer overflow issues when reading AFM files[ ]and parsing page sizes ... > Not yet perfect[tm] but it was not intended from start for vuxml, but we might lure wblock into perhaps have a look at that? A quick version that adds the missing tags is available here: http://www.wonkity.com/~wblock/tmp/vux/igor If there are special tests needed just for vuln.xml, a -V option could be added. For ANSI color (my preferred mode) % igor -R /usr/ports/security/vuxml/vuln.xml | less -RS From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 16:15:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8A7975B; Fri, 24 Jan 2014 16:15:22 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9454B1DC0; Fri, 24 Jan 2014 16:15:22 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 3AFF4BDC71; Fri, 24 Jan 2014 17:15:21 +0100 (CET) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 0A144BDC64; Fri, 24 Jan 2014 17:15:21 +0100 (CET) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 5D0C6613D; Fri, 24 Jan 2014 17:15:20 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id DC798684A30D; Fri, 24 Jan 2014 17:15:19 +0100 (CET) Date: Fri, 24 Jan 2014 17:15:19 +0100 From: Mathieu Arnold To: Eitan Adler , Olli Hauer Subject: Re: svn commit: r338192 - in head: Mk textproc/libkolabxml Message-ID: In-Reply-To: References: <201312302256.rBUMu0Fe064888@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline 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.17 Precedence: list List-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, 24 Jan 2014 16:15:22 -0000 +--On 24 janvier 2014 10:55:34 -0500 Eitan Adler wrote: | The apache 1.0 license is not FSF approved either. If you have a pointer to that, please do remove the GROUPS line then :-) -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 16:18:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDC5388C for ; Fri, 24 Jan 2014 16:18:38 +0000 (UTC) Received: from mail-qc0-x22c.google.com (mail-qc0-x22c.google.com [IPv6:2607:f8b0:400d:c01::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A24821DE5 for ; Fri, 24 Jan 2014 16:18:38 +0000 (UTC) Received: by mail-qc0-f172.google.com with SMTP id c9so4652825qcz.3 for ; Fri, 24 Jan 2014 08:18:37 -0800 (PST) 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:message-id :subject:to:cc:content-type; bh=BHmsla3010havOkbeUioNP6TBKD8LPm4VcyB2iCg6Ds=; b=ZBlk97dJPpII6NAnOuq0WgXQ+v/UAGGEDWTxRtMyflWuOdoiPC+vkdH4LP4a9tW8hn XQP0BGOdF5F7J+Awj4PGN8S2xK0t3S1GUAFI0ckX4zDWliNgdxAv14I6v7wKqioX8KCl fNOcXlqTDVtElWt+e32q5jx84+oPVKl3wzmGA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=BHmsla3010havOkbeUioNP6TBKD8LPm4VcyB2iCg6Ds=; b=FB/s0ZYAnXiyb1cmf2cNzLLd2RQmf2v/mpJXst4M4QwUzMNCQFaU4l2287/Jym0LuB n2FfSMHIeTthmiRaCsCgvaWZnGNK1QbOsVXyRlDqnrzqhExTAOYqvRDjjqrrge0x4R9d bcc/OjHvl8hIrBhzR+RK/xuCbyelCZ5IrQkchVfQabcUNOSi7iO7VCT73/St1g2Qm46m 7HyBJhqgrJBRII69kv+8+Dz9SDb+7gdDLB/nn2y+QX/51LlqSa12LOfrEYXUOK0vVfrb b6aZxd3HSs1E5nYVani7GzbCCYVSv9cZbO0FSe4ib+MsKh1IHQjYuWZ3mRCgS7R587aq 2skg== X-Gm-Message-State: ALoCoQkeRC2HjsISgX6vS3qhvoqGnytjQj0DMjhrhVllgtJVdOsFSYzK9Ajbe7D+99iFXMwEgAJB X-Received: by 10.140.85.179 with SMTP id n48mr20296245qgd.91.1390580317817; Fri, 24 Jan 2014 08:18:37 -0800 (PST) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.96.85.138 with HTTP; Fri, 24 Jan 2014 08:18:07 -0800 (PST) In-Reply-To: References: <201312302256.rBUMu0Fe064888@svn.freebsd.org> From: Eitan Adler Date: Fri, 24 Jan 2014 11:18:07 -0500 X-Google-Sender-Auth: ZHzm-Lc-29DzsnIsxgphFnBqT1I Message-ID: Subject: Re: svn commit: r338192 - in head: Mk textproc/libkolabxml To: Mathieu Arnold Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , Olli Hauer , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 16:18:39 -0000 On Fri, Jan 24, 2014 at 11:15 AM, Mathieu Arnold wrote: > +--On 24 janvier 2014 10:55:34 -0500 Eitan Adler wrote: > | The apache 1.0 license is not FSF approved either. > > If you have a pointer to that, please do remove the GROUPS line then :-) Sorry, I misunderstood the FSF page. It is considered 'FSF free' but is not GPL compatible. -- Eitan Adler Source, Ports, Doc committer Bugmeister, Ports Security teams From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 16:23:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 17076A14; Fri, 24 Jan 2014 16:23:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 027691E92; Fri, 24 Jan 2014 16:23:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OGNONV016047; Fri, 24 Jan 2014 16:23:24 GMT (envelope-from demon@svn.freebsd.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OGNOci016044; Fri, 24 Jan 2014 16:23:24 GMT (envelope-from demon@svn.freebsd.org) Message-Id: <201401241623.s0OGNOci016044@svn.freebsd.org> From: Dmitry Sivachenko Date: Fri, 24 Jan 2014 16:23:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340917 - head/net-mgmt/nagios-plugins X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 16:23:25 -0000 Author: demon Date: Fri Jan 24 16:23:24 2014 New Revision: 340917 URL: http://svnweb.freebsd.org/changeset/ports/340917 QAT: https://qat.redports.org/buildarchive/r340917/ Log: This was not a move but rather a divorce. Point master-site and WWW back to nagios-plugins.org. monitoring-plugins probably deserves another port (if they release new version). Pointer out by: lme and others. Modified: head/net-mgmt/nagios-plugins/Makefile head/net-mgmt/nagios-plugins/pkg-descr Modified: head/net-mgmt/nagios-plugins/Makefile ============================================================================== --- head/net-mgmt/nagios-plugins/Makefile Fri Jan 24 16:02:13 2014 (r340916) +++ head/net-mgmt/nagios-plugins/Makefile Fri Jan 24 16:23:24 2014 (r340917) @@ -6,7 +6,7 @@ PORTVERSION= 1.5 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= net-mgmt -MASTER_SITES= https://www.monitoring-plugins.org/download/ +MASTER_SITES= https://www.nagios-plugins.org/download/ MAINTAINER= demon@FreeBSD.org COMMENT= Plugins for Nagios Modified: head/net-mgmt/nagios-plugins/pkg-descr ============================================================================== --- head/net-mgmt/nagios-plugins/pkg-descr Fri Jan 24 16:02:13 2014 (r340916) +++ head/net-mgmt/nagios-plugins/pkg-descr Fri Jan 24 16:23:24 2014 (r340917) @@ -12,4 +12,4 @@ contacts in a variety of different ways etc.). Current status information, historical logs, and reports can all be accessed via a web browser. -WWW: http://www.monitoring-plugins.org/ +WWW: https://www.nagios-plugins.org/ From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 16:30:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5B73EF6; Fri, 24 Jan 2014 16:30:56 +0000 (UTC) Received: from h.highsecure.ru (unknown [IPv6:2a01:4f8:191:22a6:e928:fc48:498d:51c9]) (using TLSv1.1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 76B7D1F97; Fri, 24 Jan 2014 16:30:56 +0000 (UTC) Received: from medway.cl.cam.ac.uk (medway.cl.cam.ac.uk [128.232.64.24]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: vsevolod@highsecure.ru) by h.highsecure.ru (Postfix) with ESMTPSA id E2F09300047; Fri, 24 Jan 2014 17:30:53 +0100 (CET) Message-ID: <52E2953D.7000507@FreeBSD.org> Date: Fri, 24 Jan 2014 16:30:53 +0000 From: Vsevolod Stakhov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340913 - head/math/gringo References: <201401241544.s0OFiXLM099911@svn.freebsd.org> In-Reply-To: X-Enigmail-Version: 1.5.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 16:30:56 -0000 On 24/01/14 15:57, Mathieu Arnold wrote: > +--On 24 janvier 2014 15:44:33 +0000 Vsevolod Stakhov > wrote: > | +.if ${OSVERSION} < 1000000 > | +USE_GCC= 4.8+ > | +.endif > > Can't this be replaced with just : > > USES= compiler:c++11-lang > > or -lib ? > Unfortunately, it cannot. This port is broken with both clang and libstdc++ from gcc 4.2 (c++11-lang) and with gcc 4.7 (c++11-lib). Actually, it works only with clang + libc++ (from the base) and with gcc>4.8 and the corresponding libstdc++. -- Vsevolod Stakhov From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 16:40:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B8D732D; Fri, 24 Jan 2014 16:40:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 06C5510FE; Fri, 24 Jan 2014 16:40:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OGeE12020550; Fri, 24 Jan 2014 16:40:14 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OGeEeI020549; Fri, 24 Jan 2014 16:40:14 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401241640.s0OGeEeI020549@svn.freebsd.org> From: Raphael Kubo da Costa Date: Fri, 24 Jan 2014 16:40:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340918 - 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.17 Precedence: list List-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, 24 Jan 2014 16:40:15 -0000 Author: rakuco Date: Fri Jan 24 16:40:14 2014 New Revision: 340918 URL: http://svnweb.freebsd.org/changeset/ports/340918 QAT: https://qat.redports.org/buildarchive/r340918/ Log: Revert r340911 for now. CDN redirection is not working well with IPv6 (it either times out or fails with 'No address record'), so back out the commit until there's time to investigate this issue. Modified: head/Mk/bsd.sites.mk Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Fri Jan 24 16:23:24 2014 (r340917) +++ head/Mk/bsd.sites.mk Fri Jan 24 16:40:14 2014 (r340918) @@ -665,9 +665,63 @@ MASTER_SITE_KENAI+= \ http://projectkenai.com/downloads/%SUBDIR%/ .endif +# List: http://download.kde.org/extra/mirrors.html +# Updated: 2012-10-26 .if !defined(IGNORE_MASTER_SITE_KDE) MASTER_SITE_KDE+= \ - http://download.kde.org/%SUBDIR%/ + http://download.kde.org/%SUBDIR%/ \ + ftp://ftp.gtlib.gatech.edu/pub/kde/%SUBDIR%/ \ + ftp://ftp.informatik.hu-berlin.de/pub/Mirrors/ftp.kde.org/%SUBDIR%/ \ + http://ftp.gtlib.gatech.edu/pub/kde/%SUBDIR%/ \ + ftp://ftp.solnet.ch/mirror/KDE/%SUBDIR%/ \ + ftp://gd.tuwien.ac.at/kde/%SUBDIR%/ \ + http://gd.tuwien.ac.at/kde/%SUBDIR%/ \ + http://kde.mirrors.tds.net/pub/kde/%SUBDIR%/ \ + ftp://ftp.rz.uni-wuerzburg.de/pub/unix/kde/%SUBDIR%/ \ + http://mirrors.dotsrc.org/kde/%SUBDIR%/ \ + ftp://mirrors.dotsrc.org/kde/%SUBDIR%/ \ + ftp://ftp.fi.muni.cz/pub/kde/%SUBDIR%/ \ + http://ftp.fi.muni.cz/pub/kde/%SUBDIR%/ \ + ftp://sunsite.icm.edu.pl/pub/unix/kde/%SUBDIR%/ \ + http://sunsite.icm.edu.pl/pub/unix/kde/%SUBDIR%/ \ + ftp://ftp.sunet.se/pub/X11/kde/%SUBDIR%/ \ + http://ftp.sunet.se/pub/X11/kde/%SUBDIR%/ \ + ftp://ftp.kde.org/pub/kde/%SUBDIR%/ \ + ftp://ftp.belnet.be/packages/kde/%SUBDIR%/ \ + http://ftp.belnet.be/packages/kde/%SUBDIR%/ \ + ftp://ftp.lip6.fr/pub/X11/kde/%SUBDIR%/ \ + http://www-ftp.lip6.fr/pub/X11/kde/%SUBDIR%/ \ + ftp://ftp.rhnet.is/pub/kde/%SUBDIR%/ \ + http://ftp.rhnet.is/pub/kde/%SUBDIR%/ \ + http://ftp-stud.fht-esslingen.de/Mirrors/ftp.kde.org/pub/kde/%SUBDIR%/ \ + ftp://ftp.cronyx.ru/pub/mirror/kde/%SUBDIR%/ \ + http://ftp.twaren.net/Unix/X/KDE/%SUBDIR%/ \ + ftp://ftp.na.kde.org/pub/kde/%SUBDIR%/ \ + ftp://ftp.fu-berlin.de/pub/unix/X11/gui/kde/%SUBDIR%/ \ + ftp://sunsite.informatik.rwth-aachen.de/pub/Linux/kde/%SUBDIR%/ \ + ftp://ftp.ntua.gr/pub/X11/kde/%SUBDIR%/ \ + http://ftp.ntua.gr/pub/X11/kde/%SUBDIR%/ \ + ftp://ftp.heanet.ie/mirrors/ftp.kde.org/%SUBDIR%/ \ + http://ftp.heanet.ie/mirrors/ftp.kde.org/%SUBDIR%/ \ + ftp://ftp.kddlabs.co.jp/pub/X11/kde/%SUBDIR%/ \ + http://ftp.kddlabs.co.jp/pub/X11/kde/%SUBDIR%/ \ + http://kde.mirror.uber.com.au/%SUBDIR%/ \ + ftp://ftp.ussg.iu.edu/pub/kde/%SUBDIR%/ \ + http://ftp.ussg.iu.edu/kde/%SUBDIR%/ \ + ftp://ftp.sayclub.com/pub/X/KDE/%SUBDIR%/ \ + http://ftp.sayclub.com/pub/X/KDE/%SUBDIR%/ \ + ftp://carroll.aset.psu.edu/pub/kde/%SUBDIR%/ \ + http://mirror.cc.columbia.edu/pub/software/kde/%SUBDIR%/ \ + ftp://ftp.mirrorservice.org/sites/ftp.kde.org/pub/kde/%SUBDIR%/ \ + http://www.mirrorservice.org/sites/ftp.kde.org/pub/kde/%SUBDIR%/ \ + http://master.kde.org/%SUBDIR%/ \ + http://ftp.icm.edu.pl/pub/unix/kde/%SUBDIR%/ \ + http://kde-mirror.freenux.org/%SUBDIR%/ \ + http://ftp.fi.muni.cz/pub/kde/%SUBDIR%/ \ + ftp://ftp-stud.fht-esslingen.de/pub/Mirrors/ftp.kde.org/pub/kde/%SUBDIR%/ \ + ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,X/kde/&,} \ + ftp://ftp.funet.fi/pub/mirrors/ftp.kde.org/pub/kde/%SUBDIR%/ \ + http://ftp.funet.fi/pub/mirrors/ftp.kde.org/pub/kde/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_LOGILAB) @@ -999,7 +1053,16 @@ MASTER_SITE_QMAIL+= \ .if !defined(IGNORE_MASTER_SITE_QT) MASTER_SITE_QT+= \ - http://download.qt-project.org/%SUBDIR%/ + http://download.qt-project.org/%SUBDIR%/ \ + http://master.qt-project.org/%SUBDIR%/ \ + http://www.mirrorservice.org/sites/download.qt-project.org/%SUBDIR%/ \ + http://www.nic.funet.fi/pub/mirrors/download.qt-project.org/%SUBDIR%/ \ + http://qtmirror.ics.com/pub/qtproject/%SUBDIR%/ \ + http://anychimirror101.mirrors.tds.net/pub/Qt/%SUBDIR%/ \ + http://www.las.ic.unicamp.br/pub/qtproject/%SUBDIR%/ \ + http://linorg.usp.br/Qt/%SUBDIR%/ \ + http://ftp.jaist.ac.jp/pub/qtproject/%SUBDIR%/ \ + http://mirrors.neusoft.edu.cn/qt/%SUBDIR%/ .endif .if !defined(IGNORE_MASTER_SITE_REDHAT_LINUX) From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 16:50:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 529F496B; Fri, 24 Jan 2014 16:50:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3EEC51233; Fri, 24 Jan 2014 16:50:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OGoswT026316; Fri, 24 Jan 2014 16:50:54 GMT (envelope-from vsevolod@svn.freebsd.org) Received: (from vsevolod@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OGosBU026315; Fri, 24 Jan 2014 16:50:54 GMT (envelope-from vsevolod@svn.freebsd.org) Message-Id: <201401241650.s0OGosBU026315@svn.freebsd.org> From: Vsevolod Stakhov Date: Fri, 24 Jan 2014 16:50:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340919 - head/math/aspcud X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 16:50:54 -0000 Author: vsevolod Date: Fri Jan 24 16:50:53 2014 New Revision: 340919 URL: http://svnweb.freebsd.org/changeset/ports/340919 QAT: https://qat.redports.org/buildarchive/r340919/ Log: - Unbreak on FreeBSD < 10 by depending on c++11 compiler - Add license Modified: head/math/aspcud/Makefile Modified: head/math/aspcud/Makefile ============================================================================== --- head/math/aspcud/Makefile Fri Jan 24 16:40:14 2014 (r340918) +++ head/math/aspcud/Makefile Fri Jan 24 16:50:53 2014 (r340919) @@ -11,6 +11,8 @@ MASTER_SITE_SUBDIR= potassco/${PORTNAME} MAINTAINER= vsevolod@FreeBSD.org COMMENT= Advanced solver for package dependencies +LICENSE= GPLv3 + BUILD_DEPENDS= re2c:${PORTSDIR}/devel/re2c LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs RUN_DEPENDS= gringo:${PORTSDIR}/math/gringo \ @@ -18,7 +20,7 @@ RUN_DEPENDS= gringo:${PORTSDIR}/math/gri bash:${PORTSDIR}/shells/bash USE_PYTHON_RUN= yes -USES= cmake:outsource shebangfix +USES= compiler:c++11-lang cmake:outsource shebangfix SHEBANG_FILES= ${WRKSRC}/scripts/aspcud.sh post-patch: From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 16:53:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3BDDFB67; Fri, 24 Jan 2014 16:53:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 25D611250; Fri, 24 Jan 2014 16:53:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OGrolh027355; Fri, 24 Jan 2014 16:53:50 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OGrnFh027350; Fri, 24 Jan 2014 16:53:49 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201401241653.s0OGrnFh027350@svn.freebsd.org> From: Eitan Adler Date: Fri, 24 Jan 2014 16:53:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340920 - head/games/pcgen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 16:53:50 -0000 Author: eadler Date: Fri Jan 24 16:53:49 2014 New Revision: 340920 URL: http://svnweb.freebsd.org/changeset/ports/340920 QAT: https://qat.redports.org/buildarchive/r340920/ Log: - Update to 6.02.00 - Upstream has some issues with the filename so add a workaround - Use makeplist to generate plist Modified: head/games/pcgen/Makefile head/games/pcgen/distinfo head/games/pcgen/pkg-plist Modified: head/games/pcgen/Makefile ============================================================================== --- head/games/pcgen/Makefile Fri Jan 24 16:50:53 2014 (r340919) +++ head/games/pcgen/Makefile Fri Jan 24 16:53:49 2014 (r340920) @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= pcgen -PORTVERSION= 6.00.1 +PORTVERSION= 6.02.0 CATEGORIES= games java MASTER_SITES= SF/${PORTNAME}/PCGen%20Stable/${PORTVERSION} -DISTNAME= pcgen${PORTVERSION:S/.//g}_full +DISTNAME= pcgen${PORTVERSION:S/.//g}0_full MAINTAINER= eadler@FreeBSD.org COMMENT= Java-based RPG character generator and maintenance program @@ -12,7 +12,7 @@ COMMENT= Java-based RPG character genera RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper USE_ZIP= YES -WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION:S/.//g} +WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION:S/.//g}0 USE_JAVA= YES JAVA_VERSION= 1.6+ NO_BUILD= YES Modified: head/games/pcgen/distinfo ============================================================================== --- head/games/pcgen/distinfo Fri Jan 24 16:50:53 2014 (r340919) +++ head/games/pcgen/distinfo Fri Jan 24 16:53:49 2014 (r340920) @@ -1,2 +1,2 @@ -SHA256 (pcgen6001_full.zip) = 97efeece54d6d7cff837594c37028a1a983f5eb9e0993966cb1dc9a54da0d0a2 -SIZE (pcgen6001_full.zip) = 55937370 +SHA256 (pcgen60200_full.zip) = f108e483c785a5c0488b9e96d4ad4b8d494974aba8cfcebb9998649580b45874 +SIZE (pcgen60200_full.zip) = 62768411 Modified: head/games/pcgen/pkg-plist ============================================================================== --- head/games/pcgen/pkg-plist Fri Jan 24 16:50:53 2014 (r340919) +++ head/games/pcgen/pkg-plist Fri Jan 24 16:53:49 2014 (r340920) @@ -1,4187 +1,5458 @@ bin/pcgen +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/acknowledgments.html +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/bod.html +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/bylaws.html +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/contributors.html +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/gnulicense.html +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/licenses.html +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/ogllicense.html +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/outputsheets.html +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/publishersandsources.html +%%PORTDOCS%%%%DOCSDIR%%/acknowledgments/skinlflicense.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqcharcreateissues.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqdatasources.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqiwannahelp.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqmonkeyteamsexplained.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqotherissues.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqoutofmemoryandjavaissues.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqprintingissues.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqskinningpcgen.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqstartupinstallissues.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqsubmittingabugreport.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqsubmittingafeaturerequest.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqwotcoglsrdd20.html +%%PORTDOCS%%%%DOCSDIR%%/faqpages/faqyahooandhelping.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/characters.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/charactersheet.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/dicebag.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/encounter.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/experience.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/gmgen.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/initiative.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/network.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/notes.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/overlandtravel.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/preferences.html +%%PORTDOCS%%%%DOCSDIR%%/gmgen/randomnames.html +%%PORTDOCS%%%%DOCSDIR%%/greetings.html +%%PORTDOCS%%%%DOCSDIR%%/images/editors/class/abilitiestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/class/add.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/class/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/class/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/class/languagestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/class/levelstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/class/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/class/skillstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/class/weaponstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/deity/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/deity/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/deity/domainstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/deity/followerstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/deity/languagestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/deity/racestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/deity/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/deity/skillstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/deity/weaponstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/domain/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/domain/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/domain/languagestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/domain/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/domain/skillstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/domain/weaponstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/feat/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/feat/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/feat/languagestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/feat/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/feat/skillstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/feat/weaponstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/language/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/language/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/language/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/lsteditors.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/agetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/appearancetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/bonuslangtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/classestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/featstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/languagestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/movementtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/naturalweaponstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/skillstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/templatestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/virtualfeatstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/visiontab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/race/weaponstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/skill/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/skill/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/skill/classestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/skill/languagestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/skill/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/skill/skillstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/skill/synergytab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/skill/weapontab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/source/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/source/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/source/filetypetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/source/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/spell/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/spell/base2tab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/spell/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/spell/classestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/spell/domainstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/spell/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/abilitiestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/advancedtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/basetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/bonuslangtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/classestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/featstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/languagestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/movementtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/sectionheading.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/skillstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/templatestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/editors/template/weaponstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/filters/customization.png +%%PORTDOCS%%%%DOCSDIR%%/images/filters/edit_filter.png +%%PORTDOCS%%%%DOCSDIR%%/images/filters/filter_options.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/menu/activate_icon.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/menu/file.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/menu/preferences.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/menu/tools.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/characters/characterstab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/characters/gmgen_00_chartrackertab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/charactersheet/gmgen_09_charsheettab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/dicebag/dicebag_default.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/dicebag/dicebag_edit.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/dicebag/dicebag_saved.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/dicebag/dicebag_used.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/dicebag/gmgen_08_dicebagtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/dicebag/gmgen_08_edit.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/dicebag/gmgen_08_mydicebag.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/encounter/encountertab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/encounter/gmgen_07_encountertab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/experience/add_enemy_button.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/experience/experience.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/experience/gmgen_05_addenemy.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/experience/gmgen_05_experiencetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/add_combatant.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/cast_spell.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/combatant_type.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/end_event.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/end_spell.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/event_timer.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/gmgen_06_castexpired.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/gmgen_06_castspell.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/gmgen_06_combatant.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/gmgen_06_event.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/gmgen_06_eventexpired.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/gmgen_06_initiativetab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/gmgen_06_save.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/gmgen_06_saveresult.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/gmgen_06_showevents.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/initiative1.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/initiative2.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/initiative/saving_throw.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/network/gmgen_04_networkclient.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/network/gmgen_04_networkserver.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/network/gmgen_04_networktab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/network/network1.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/notes/files.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/notes/gmgen_03_notesbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/notes/gmgen_03_notesfile.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/notes/gmgen_03_notestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/notes/note_tools.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/notes/notes.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/overlandtravel/gmgen_01_overlandtab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/overlandtravel/overlandtravel.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/randomnames/gmgen_02_namestab.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/plugins/randomnames/randomnames.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/preferences/damage.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/preferences/experience.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/preferences/general.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/preferences/massivedamage.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/preferences/network.png +%%PORTDOCS%%%%DOCSDIR%%/images/gmgen/preferences/performance.png +%%PORTDOCS%%%%DOCSDIR%%/images/kits/kit_new.png +%%PORTDOCS%%%%DOCSDIR%%/images/kits/kit_warning.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/debug.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/debug_logging.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/edit/menu_edit_0.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/edit/menu_edit_1_addkit.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/edit/menu_edit_1_addkiterror.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_0.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_0_open.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_1_save.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_2_party.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_2_partyopen.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_2_partysave.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_3_export.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_4_1_print.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_4_2_selectsheet.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_4_3_1_preview.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_4_3_2_preview.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_4_3_3_preview.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file/menu_file_4_print.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file_export.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/file_party.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/help.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/help/menu_help_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/help/menu_help_06_01_credits.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/help/menu_help_06_02_libraries.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/help/menu_help_06_03_licensing.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/help/menu_help_06_04_awards.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/help/menu_help_06_05_sponsors.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/help/menu_help_07_tip.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/menu_menubar.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/menubar.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/settings.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/settings_gamemode.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/settings_loadsources.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/sources/menu_sources_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/sources/menu_sources_01_advanced.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/sources/menu_sources_01_basic.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/sources/menu_sources_01_gamemodes.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/sources/menu_sources_01_savecustom.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/sources/menu_sources_01_visible.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/sources/menu_sources_02_loadsources.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/sources/menu_sources_03_installdata.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_01_charstats.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_01_purchasemode.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_02_hp.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_03_rules.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_04_monsters.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_05_defaults.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_06_colors.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_07_display.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_08_levelup.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_09_looknfeel.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_10_equipment.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_11_language.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_12_location.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_13_input.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_14_output.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_15_sources.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_16_copysettings.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_03_17_plugins.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_05_lognmem.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_06_logginglevel.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools/menu_tools_07_console.png +%%PORTDOCS%%%%DOCSDIR%%/images/menus/tools_filters.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/abilities.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/appearance.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/appearancecolors1.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/appearancecolors2.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/appearancecolors3.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/character.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/charactersheet.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/colors.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/displayoptions.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/equipment.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/hitpoints.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/houserules.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/language.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/levelupoptions.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/location.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/lookandfeel.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/monsters.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/output.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/pcgen.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/purchasemethod.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/purchasemethod_name.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/sources.png +%%PORTDOCS%%%%DOCSDIR%%/images/preferences/tabs.png +%%PORTDOCS%%%%DOCSDIR%%/images/system/pcgen_main_logo.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/system/pcgen_main_logo_510.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/system/pcgen_small_logo.jpg +%%PORTDOCS%%%%DOCSDIR%%/images/system/valid-html401.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/character_sheet_page1.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/character_sheet_page2.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/character_sheet_page3.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/charactersheettab/tab_charsheet_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/charactersheettab/tab_charsheet_01_closedleft.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/charactersheettab/tab_charsheet_02_sheetselection.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/class.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/classestab/tab_classes_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/classestab/tab_classes_00_qualified.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/classestab/tab_classes_00_search.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/classestab/tab_classes_01_things.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/column_icon.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/companionstab/tab_companions_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/companionstab/tab_companions_01_select.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/companionstab/tab_companions_02_levels.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/companionstab/tab_companions_03_created.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/companionstab/tab_companions_04_companion.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/description.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/descriptiontab/tab_description_00_adddetails.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/descriptiontab/tab_description_00_details.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/descriptiontab/tab_description_01_portrait.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/descriptiontab/tab_description_02_history.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/descriptiontab/tab_description_03_other.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/domains.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/domainstab/tab_domains_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/domainstab/tab_domains_00_deityselection.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/domainstab/tab_domains_00_domainselection.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/domainstab/tab_domains_00_leftpanecolumns.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/domainstab/tab_domains_01.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/featandabilitiestab/tab_featsandabilities_00_class.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/featandabilitiestab/tab_featsandabilities_00_feats.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/featandabilitiestab/tab_featsandabilities_00_racial.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/feats.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventory_equipping.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventory_gear.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventory_resources.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventory_temporarybonuses.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_affordable.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_btn_add_custom.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_btn_add_equipment.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_btn_rmv_equipment.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_buymult.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_buymultn.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_customizer.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_customizeroops.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_modifycharges.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_outfit.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_purchase.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_qualifyoff.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_qualifyon.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_00_search.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_container.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_containermult.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_equipedarmor.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_equipedpane.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_equipment.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_equipped1.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_equipped2.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_equipselected.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_equipselection.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/inventorytab/tab_inventory_01_equipsets.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/preview_page1.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/preview_page1a.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/preview_page2.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/preview_page3.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/race.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/racestab/tab_race_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/racestab/tab_race_01_noracialhd.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/racestab/tab_race_02_search.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/skills.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/skillstab/tab_skills_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/sourcematerial.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/sourcematerial_basic.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/spellbooks.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/spells_known.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/spells_prepared.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/spellstab/tab_spells_00_known.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/spellstab/tab_spells_00_prepared.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/spellstab/tab_spells_00_spellbook.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summary.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summary_buttons.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_01_things.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_01_things2.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_02_name.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_03_race.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_03_raceselect.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_04_abilityscores.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_04_method.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_05_lang.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_05_langtaken.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_06_class.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_06_classselect.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_06_classtaken.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_06_hp.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_06_hplevelup.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_06_statwarning.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_08_statistics.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_09_monster.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_10_save.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/summarytab/tab_summary_12_freeclothes.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/tabs.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/tabscommonfeatures.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/tempbonustab/tab_tempbonus_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/tempbonustab/tab_tempbonus_00_upperleftpane.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/tempbonustab/tab_tempbonus_01.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/tempbonustab/tab_tempbonus_02_applied.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/tempbonustab/tab_tempbonus_02_applying.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/tempbonustab/tab_tempbonus_02_target.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/template.png +%%PORTDOCS%%%%DOCSDIR%%/images/tabs/templatestab/tab_template_00.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/Close16.gif +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/Export16.gif +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/New16.gif +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/Open16.gif +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/Preferences16.gif +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/Print16.gif +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/Save16.gif +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/close16.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/closetoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/compoundfiltertoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/customizefiltertoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/export16.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/filtertoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/gmgentoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/helptoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/kitstoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/new16.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/newnpctoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/newtoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/open16.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/opentoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/preferences16.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/preferencestoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/previewtoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/print16.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/printtoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/removefiltertoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/save16.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/savetoolbar.png +%%PORTDOCS%%%%DOCSDIR%%/images/toolbar/toolbarquickicons.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_00_file_new.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_01_summary.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_02_name.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_03_race.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_04_search.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_05_language.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_06_class.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_07_warning.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_08_abilities.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_09_selected.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_10_clothing.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_11_leveling.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_12_favoredclass.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_13_favoredbonus.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_14_bonusspell.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_15_skills.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_16_feats.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_17_traits.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_18_knownspells.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_18_knownwarning.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_19_preparedspells.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_19_preparedwarning.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_20_spellbooks.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_21_domain.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_22_companions.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_23_companionselect.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_24_companionlevel.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_25_companionlanguage.png +%%PORTDOCS%%%%DOCSDIR%%/images/walkthrough/walkthrough_26_companioninfo.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/abilities.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/aboutpcgen.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/add_sa.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/add_value.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/adjust_hitpoints.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/adjust_xp.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/choose_language.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/choose_weaponprof.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/createnewsourcecollection1.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/createnewsourcecollection2.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/customise_sources.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/customizer.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/data_installer.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/debugconsole.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/enter_charges.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/export_pdf.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/export_standard.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/export_text.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/feat_choice.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/find_item.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/follower.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/follower_hitpoints.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/follower_name.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/follower_saving.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/load_sources.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/npc_generator.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/print_preview.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/random_name.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/save_file.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/save_slayer.png +%%PORTDOCS%%%%DOCSDIR%%/images/windows/treasure_generator.png +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/installationpages/installationjava.html +%%PORTDOCS%%%%DOCSDIR%%/installationpages/installationpcgen.html +%%PORTDOCS%%%%DOCSDIR%%/installationpages/installationsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/installationpages/requirements.html +%%PORTDOCS%%%%DOCSDIR%%/installationpages/upgradepcgen.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesability.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesabilitycategory.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesarmorproficiencies.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesclasses.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilescompanionmodifiers.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesdeities.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesdomains.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesequipment.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesequipmentmodifiers.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesfeats.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesinstall.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafileslanguages.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilespcc.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesraces.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesshieldproficiencies.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesskills.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesspells.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesstartingkits.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilestags.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilestemplates.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/datafilestagpages/datafilesweaponproficiencies.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfilesadd.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfilesbonus.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfileschoose.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfilesdefine.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfilesformulas.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfileskey.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfilesother.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfilesprexxx.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfilestype.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/globalfilestagpages/globalfilesvariables.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfileLSTstandards.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfileLSTwalkthrough.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfiledatadevelopment.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfilegamemodefiles.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfileglobaldatafiles.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfileimportanttoknow.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfilesectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfilesystemfiles.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfiletagindex.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listfiletagsbydatafile.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/listindex.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson00_homebrew.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson01_pcc.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson02_pcc.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson03_race1.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson04_race2.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson05_race3.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson06_race4.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson07_spells.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson08_biosettings.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson09_weaponprofs.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson10_languages.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson11_kits_default_monster.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson12_feat1.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson13_feat2.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson14_deities.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson15_domains1.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson16_domains2.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson17_converting_feats_to_abilities.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson18_HD_LEVEL_conversion.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson19_companion_mods.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson_abilities.txt +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson_companionmods.txt +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_lesson_variables.txt +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lfc_style_guide.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/lstfileclass/lstfileclass_heading.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/rulesguide/game_rules_implement_heading.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/rulesguide/game_rules_reading_instructions.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/rulesguide/grig_abilities_by_skill_ranks.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/rulesguide/grig_negative_levels.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/rulesguide/grig_priesthoods1.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodeequipicons.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodeequipmentslots.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodelevel.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodeloadlist.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodelocationslist.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodemigrationlist.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodemiscinfolist.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodepointbuymethodlist.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemoderules.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodestatsandcheckslist.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/gamemodetips.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/systemfilesbiosettingslist.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/systemfilessizeadjustment.html +%%PORTDOCS%%%%DOCSDIR%%/listfilepages/systemfilestagpages/systemfilestraitslist.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/debug/debugoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/edit/editaddkitoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/edit/editequipmentsetoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/edit/editgenerateoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/edit/editsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/edit/edittemporarybonusoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/fileaddkitoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/fileexportoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/fileexportpdf.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/fileexportstandard.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/fileexporttxt.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/filenpcgen.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/filenpcgendatafiles.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/filenpcgennpccreation.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/filepartyoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/file/filesectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/help/helpaboutpcgen.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/help/helpsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/menusectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/appearance/appearancecolors.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/appearance/appearancedisplay.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/appearance/appearancelevelup.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/appearance/appearancelookandfeel.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/appearance/appearancesectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/appearance/appearancetabs.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/character/characterabilityscoreoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/character/characterhitpointsoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/character/characterhouserulesoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/character/charactermonstersoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/character/characterpurchasemethodoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/character/charactersectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/pcgen/pcgenequipoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/pcgen/pcgenlanguage.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/pcgen/pcgenlocation.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/pcgen/pcgenoutput.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/pcgen/pcgensectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/pcgen/pcgensources.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/plugins/plugins_charactersheet.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/settingscampaignoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/settingsgamemodeoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/settingspreferencesoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/settingssectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/settings/settingssourceloadingoption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/sources/sourcesinstalldataoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/sources/sourcesloadoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/sources/sourcessectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/sources/sourcesselectionoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/class/classeditorabilitiestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/class/classeditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/class/classeditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/class/classeditorlanguagestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/class/classeditorlevelstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/class/classeditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/class/classeditorskillstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/class/classeditorweaponstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/deity/deityeditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/deity/deityeditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/deity/deityeditordomainstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/deity/deityeditorfollowerstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/deity/deityeditorlanguagestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/deity/deityeditorracestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/deity/deityeditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/deity/deityeditorskillstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/deity/deityeditorweaponstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/domain/domaineditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/domain/domaineditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/domain/domaineditorlanguagestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/domain/domaineditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/domain/domaineditorskillstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/domain/domaineditorweaponstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/feat/featseditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/feat/featseditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/feat/featseditorlanguagestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/feat/featseditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/feat/featseditorskillstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/feat/featseditorweaponstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/language/languageeditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/language/languageeditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/language/languageeditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/preferences/preferencesapearanceoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/preferences/preferencesappearanceoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/preferences/preferencescharacteroptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/preferences/preferencesgamemodeoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/preferences/preferencespcgenoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/preferences/preferencespluginoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/preferences/preferencessectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditoragetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorappearancetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorbonuslangtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorclassestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorfeatstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorlanguagestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditormovementtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditornaturalweaponstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorskillstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditortemplatestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorvirtualfeatstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorvisiontab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/race/raceeditorweaponstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/skill/skilleditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/skill/skilleditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/skill/skilleditorclassestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/skill/skilleditorlanguagestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/skill/skilleditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/skill/skilleditorskillstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/skill/skilleditorsynergytab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/skill/skilleditorweaponstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/source/sourceeditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/source/sourceeditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/source/sourceeditorfiletypetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/source/sourceeditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/spell/spelleditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/spell/spelleditorbase2tab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/spell/spelleditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/spell/spelleditorclassestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/spell/spelleditordomainstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/spell/spelleditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditorabilitiestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditoradvancedtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditorbasetab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditorbonuslangtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditorclassestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditorfeatstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditorlanguagestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditormovementtab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditorsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditorskillstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditortemplatestab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/template/templateeditorweaponstab.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolsdebugingoptions.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolsfiltercustom.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolsfilteredit.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolsfilteropen.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolsfilteroption.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolsinstalldataset.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolslisteditors.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolslstconverter.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolssectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/menupages/tools/toolstreasuregenerator.html +%%PORTDOCS%%%%DOCSDIR%%/navlistindex.html +%%PORTDOCS%%%%DOCSDIR%%/navtokenindex.html +%%PORTDOCS%%%%DOCSDIR%%/navtree.html +%%PORTDOCS%%%%DOCSDIR%%/navtree/bullet.png +%%PORTDOCS%%%%DOCSDIR%%/navtree/bullet_red.png +%%PORTDOCS%%%%DOCSDIR%%/navtree/list.png +%%PORTDOCS%%%%DOCSDIR%%/navtree/minus.png +%%PORTDOCS%%%%DOCSDIR%%/navtree/minus_red.png +%%PORTDOCS%%%%DOCSDIR%%/navtree/navtree.css +%%PORTDOCS%%%%DOCSDIR%%/navtree/navtree.js +%%PORTDOCS%%%%DOCSDIR%%/navtree/plus.png +%%PORTDOCS%%%%DOCSDIR%%/navtree/plus_red.png +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/csheetexamplehtml.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/csheetexampleoutput.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/faqpages/faqdatasources.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/faqpages/faqstartupinstallissues.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/outputsheetbasexml.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/outputsheetsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/outputsheetspdf.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/outputsheetsstd.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/outputsheetstokensused.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/outputsheetstutorial.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/outputsheetstxt.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokensability.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokensattack.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokensequip.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokensfeat-skill.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokensgeneral.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokensmisc.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokenssaves-hp.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokensspecialability.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokensspell.html +%%PORTDOCS%%%%DOCSDIR%%/outputsheetpages/tokens/outputsheettokensweapon.html +%%PORTDOCS%%%%DOCSDIR%%/pcgen-release-notes-60200.html +%%PORTDOCS%%%%DOCSDIR%%/pcgen.css +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/4e_docs/4e_doc_sectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/fantasy/fantasy_header.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/fantasy/midnight_help.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/fantasy/pathfinder.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/fantasy/playersguidearcanis.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/fantasy/relicsrituals.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/fantasy/rsrd_help.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/fantasy/sorcery_and_steam_help.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/fantasy/srd_help.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/modern/msrd_future_help.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/modern/msrd_help.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/pathfinder/pathfinder_header.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/pathfinder/pathfinder_rpg.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/pathfinder/pathfinder_traits.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/pcgen_ogc_help.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/pcgen_ogc_psicrystal_hd.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/sourcehelp_sectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/spycraft/shadowforce_archer_help.html +%%PORTDOCS%%%%DOCSDIR%%/sourcehelp/spycraft/spycraft_help.html +%%PORTDOCS%%%%DOCSDIR%%/standards.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/inventory/inventoryequipping.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/inventory/inventorygear.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/inventory/inventorysectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/players/playerssectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/players/tabability.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/players/tabpreview.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/source/buttoncustomise.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/source/sourcesectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabcharactersheet.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabclasses.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabcompanions.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabdescription.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabdomains.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabfeatsandabilities.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabinventory.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabraces.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabsectionheading.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabskills.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabspells.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabsummary.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabtemplates.html +%%PORTDOCS%%%%DOCSDIR%%/tabpages/tabtemporarybonuses.html +%%PORTDOCS%%%%DOCSDIR%%/walkthroughpages/toolbarquickicons.html +%%PORTDOCS%%%%DOCSDIR%%/walkthroughpages/walkthroughcreatecharacter.html +%%PORTDOCS%%%%DOCSDIR%%/walkthroughpages/walkthroughcreatenew.html +%%PORTDOCS%%%%DOCSDIR%%/walkthroughpages/walkthroughheadingstartup.html +%%PORTDOCS%%%%DOCSDIR%%/walkthroughpages/walkthroughloadcampaign.html +%%PORTDOCS%%%%DOCSDIR%%/walkthroughpages/walkthroughloadcampaignadvanced.html +%%PORTDOCS%%%%DOCSDIR%%/walkthroughpages/walkthroughloadcampaignbasic.html +%%PORTDOCS%%%%DOCSDIR%%/walkthroughpages/walkthroughprintnew.html +%%PORTDOCS%%%%DOCSDIR%%/walkthroughpages/walkthroughsectionheading.html %%DATADIR%%/batch-convert.jar +%%DATADIR%%/data/35e/12_to_midnight/50_new_ways_to_blow_things_up/50newwaystoblowthingsup.jpg +%%DATADIR%%/data/35e/12_to_midnight/50_new_ways_to_blow_things_up/50newwaystoblowthingsup.pcc +%%DATADIR%%/data/35e/12_to_midnight/50_new_ways_to_blow_things_up/50newwaystoblowthingsup_feats.lst +%%DATADIR%%/data/35e/12_to_midnight/50_new_ways_to_blow_things_up/50newwaystoblowthingsup_spells.lst +%%DATADIR%%/data/35e/12_to_midnight/50_new_ways_to_blow_things_up/OGL.txt +%%DATADIR%%/data/35e/12_to_midnight/curses/OGL.txt +%%DATADIR%%/data/35e/12_to_midnight/curses/curses.jpg +%%DATADIR%%/data/35e/12_to_midnight/curses/curses.pcc +%%DATADIR%%/data/35e/12_to_midnight/curses/curses_abilities_class.lst +%%DATADIR%%/data/35e/12_to_midnight/curses/curses_abilitycategories.lst +%%DATADIR%%/data/35e/12_to_midnight/curses/curses_classes.lst +%%DATADIR%%/data/35e/12_to_midnight/curses/curses_feats.lst +%%DATADIR%%/data/35e/12_to_midnight/curses/curses_skills.lst +%%DATADIR%%/data/35e/12_to_midnight/curses/curses_spells.lst +%%DATADIR%%/data/35e/12_to_midnight/curses/curses_templates.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/OGL.txt +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragons.jpg +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragons_35e/dragons_35e.pcc +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragons_35e/dragons_ability_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragons_35e/dragonsclasses_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragons_35e/dragonsequipweapons_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragons_35e/dragonsfeats_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragons_35e/dragonsskills_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragons_ability_class.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsabilitycategories.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsclasses.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsdeities.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsequip.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsequipmods.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsequippotionspoisons.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsequipweapammospecific.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsequipweapmelee.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsequipweapmeleespecific.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsequipwondrousitems.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsfeats.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsspells.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dragons/dragonsweapprofs.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/OGL.txt +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeons.jpg +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeons_35e/dungeons_35e.pcc +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeons_35e/dungeonsclasses_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeons_35e/dungeonsfeats_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeons_abilities_class.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeons_abilitycategories.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeonsclasses.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeonsclassfeats.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeonsequip.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeonsequipwondrousitems.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeonsfeats.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeonsskills.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/dungeons/dungeonsspells.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/empire/OGL.txt +%%DATADIR%%/data/35e/alderac_entertainment_group/empire/empire.pcc +%%DATADIR%%/data/35e/alderac_entertainment_group/empire/empire_abilities.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/empire/empire_ability_categories.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/empire/empire_classes.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/empire/empire_feats.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/empire/empire_skills.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/OGL.txt +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil.jpg +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_35e/evil_35e.pcc +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_35e/evil_classes_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_35e/evil_spells_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_abilities_class.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_abilitycategories.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_classes.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_deities.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_domains.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_equip_artifacts.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_equip_potionsscrolls.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_equip_rodsstaffswands.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_equip_wondrousitems.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_feats.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_kits_races.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_languages.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_races.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/evil/evil_skills.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/OGL.txt +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats.jpg +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e.pcc +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_equipment_modifiers.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_feats_appendix.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_feats_background.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_feats_general.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_feats_infernal.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_feats_magic.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_feats_quest.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_skills.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_spells.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/35e/aeg_feats_35e_template_hidden.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/OGL.txt +%%DATADIR%%/data/35e/alderac_entertainment_group/feats/aeg_feats.jpg +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/OGL.txt +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/aeg_gods.jpg +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/aeg_gods_abilities.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/aeg_gods_abilitycategory.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/aeg_gods_classes_prestige.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/aeg_gods_domains.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/aeg_gods_equip_magic.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/aeg_gods_skills.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/aeg_gods_spells.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/aeg_gods_templates.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/gods_35e/aeg_gods_35e.pcc +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/gods_35e/aeg_gods_abilities_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/gods_35e/aeg_gods_classes_prestige_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/gods_35e/aeg_gods_deities_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/gods_35e/aeg_gods_domains_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/gods_35e/aeg_gods_equip_magic_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/gods/gods_35e/aeg_gods_feats_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/OGL.txt +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undead.jpg +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undead_35e/undead_35e.pcc +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undead_35e/undeadclasses_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undead_abilities_class.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undead_abilitycategories.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadclasses.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeaddeities.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeaddomains.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadequip.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadequipmods.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadequippotionspoisons.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadequiprings.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadequiprodstaffwands.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadequipwondrousitems.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadfeats.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadskills.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadspells.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/undead/undeadtemplates.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/OGL.txt +%%DATADIR%%/data/35e/alderac_entertainment_group/war/war.jpg +%%DATADIR%%/data/35e/alderac_entertainment_group/war/war_35e/war_35e.pcc +%%DATADIR%%/data/35e/alderac_entertainment_group/war/war_35e/warclasses_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/war_35e/wardomains_35e.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/war_abilities_class.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/war_abilitycategories.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/war_profs_weapon.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/warclasses.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/wardeities.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/warfeats.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/warskills.lst +%%DATADIR%%/data/35e/alderac_entertainment_group/war/warspells.lst +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/OGL.txt +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests.pcc +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests_abilities_class.lst +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests_abilitycategories.lst +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests_class_prestige.lst +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests_equipmod.lst +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests_feat.lst +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests_kit.lst +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests_race.lst +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests_skill.lst +%%DATADIR%%/data/35e/alea_publishing_group/game_enhancement/quests/quests_spell.lst +%%DATADIR%%/data/35e/alea_publishing_group/honor_and_corruption/OGL.txt +%%DATADIR%%/data/35e/alea_publishing_group/honor_and_corruption/honorcorruption.pcc +%%DATADIR%%/data/35e/alea_publishing_group/honor_and_corruption/honorcorruption_abilities_template.lst +%%DATADIR%%/data/35e/alea_publishing_group/honor_and_corruption/honorcorruption_abilitycategories.lst +%%DATADIR%%/data/35e/alea_publishing_group/honor_and_corruption/honorcorruption_feats.lst +%%DATADIR%%/data/35e/alea_publishing_group/honor_and_corruption/honorcorruption_races.lst +%%DATADIR%%/data/35e/alea_publishing_group/honor_and_corruption/honorcorruption_templates.lst +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/OGL.txt +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty.pcc +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty_abilities.lst +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty_categories_core.lst +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty_class_prestige.lst +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty_class_prestige_epic.lst +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty_feats.lst +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty_races_monsters.lst +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty_skills.lst +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty_spells.lst +%%DATADIR%%/data/35e/alea_publishing_group/question_of_loyalty/questionloyalty_templates.lst *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 17:25:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B53FB7A1; Fri, 24 Jan 2014 17:25:35 +0000 (UTC) Received: from mail-wg0-x236.google.com (mail-wg0-x236.google.com [IPv6:2a00:1450:400c:c00::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8654814FA; Fri, 24 Jan 2014 17:25:34 +0000 (UTC) Received: by mail-wg0-f54.google.com with SMTP id x13so3370038wgg.9 for ; Fri, 24 Jan 2014 09:25:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=94FzWvKO39JUWp94Q+OUrpG9mFBhUPPVAZHvIVGTNFg=; b=iVVq0UMY7OL9CFDzoSD2/c8dPCPTmLs4vtJaxE71uYrxVoh1xTF0cFUm3epsVKxAGH nKX+5CrpyLdSMNyuStSk4ANTwtCW/jdwM36O2yVbvIWyTUlABgS5eC4bjGu+gPjGR338 CUxjMIIQDSliFrb8Tzt9JcfV1Pl1pKGp6koHn6C5LhOweDv8uXVmbacMxdc/Ja61FPRB 1bo5jCWz2NJDaFM5NJC+keSlCjzyS3fWd0zMs454FkWgkihmpzy/F+5R4YuUyWig28hY 9ACVuaPK+QgeJETacn88lYGY2wn/0NGH5Z9p96v4kJVSCT+7rN//cZGqNZ7i8Vyh43Iy 61Ew== MIME-Version: 1.0 X-Received: by 10.194.81.196 with SMTP id c4mr2283241wjy.57.1390584332913; Fri, 24 Jan 2014 09:25:32 -0800 (PST) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.194.58.74 with HTTP; Fri, 24 Jan 2014 09:25:32 -0800 (PST) In-Reply-To: References: <201312302256.rBUMu0Fe064888@svn.freebsd.org> Date: Fri, 24 Jan 2014 18:25:32 +0100 X-Google-Sender-Auth: _XWnrBrIDlQPQSBjHI8LU-d_ppM Message-ID: Subject: Re: svn commit: r338192 - in head: Mk textproc/libkolabxml From: Antoine Brodin To: Eitan Adler Content-Type: text/plain; charset=ISO-8859-1 Cc: Mathieu Arnold , Olli Hauer , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 17:25:35 -0000 On Fri, Jan 24, 2014 at 5:18 PM, Eitan Adler wrote: > On Fri, Jan 24, 2014 at 11:15 AM, Mathieu Arnold wrote: >> +--On 24 janvier 2014 10:55:34 -0500 Eitan Adler wrote: >> | The apache 1.0 license is not FSF approved either. >> >> If you have a pointer to that, please do remove the GROUPS line then :-) > > Sorry, I misunderstood the FSF page. It is considered 'FSF free' but > is not GPL compatible. If I understand the FSF page correctly, BSD4CLAUSE is FSF free but not GPL compatible too? Cheers, Antoine From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 17:32:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6A49A13 for ; Fri, 24 Jan 2014 17:32:14 +0000 (UTC) Received: from mail-qa0-x229.google.com (mail-qa0-x229.google.com [IPv6:2607:f8b0:400d:c00::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 88D5C1650 for ; Fri, 24 Jan 2014 17:32:14 +0000 (UTC) Received: by mail-qa0-f41.google.com with SMTP id w8so4287949qac.14 for ; Fri, 24 Jan 2014 09:32:13 -0800 (PST) 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:message-id :subject:to:cc:content-type; bh=qCfgzklvos3gcCC7oQRObGf41BIy6khLVtuN6MylLBs=; b=iiVVHpD3vCLQ60aP9Ecycep45Qg7V3GAJbCok94YpnAx6l33usClonujp5NuRDq4cQ 4eoNMKwTGr4GTarXAYDDbfXP+1lsPqaGqejfs+ue3unUXFSVqvNxpbD4QAdFuO+ZoXbp 99JddEZ3fgcoakyx9xoYq/fys4xkfT8f+K1+Y= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc:content-type; bh=qCfgzklvos3gcCC7oQRObGf41BIy6khLVtuN6MylLBs=; b=N/DFjzi2hmYtq7FcaEapeM1m6IU0TosdkPaPtutMIaOEwDKFeywnJKn2pFtsxtkAc7 KSWwQ0ybXABnxcegpoB4bvBTibamNU/RrIwgrvjGn1oEP0mdoX4qpnBtcu1T869jdL7x QORD0Lt9i+Z1xh1UtO7hTWdZYBPO1wGaHMQ5c9V+9o8SGjHXNn7qWJrIDKl3Bsd0ha5b wrq/OWQ5ElFmMgGi6lqi7a2khEmcGntkGDlVkdZi+Uw95Dl0B7ofZ6AOgFJxLwCFhw7A GHwYMUXM/jvxrvJXUdv6IEM8F4EhG2/VSPEvVffnNgYmYn7i/Ho9BW0Q47og3YGlAbty Qf9w== X-Gm-Message-State: ALoCoQnpnJYOHYmHerTOZX7V0wls4XttIO76+FzBdR929dcNq61QNJz1ttMZ79BswQvT4ycjdWSA X-Received: by 10.224.165.133 with SMTP id i5mr22463420qay.75.1390584733733; Fri, 24 Jan 2014 09:32:13 -0800 (PST) MIME-Version: 1.0 Sender: lists@eitanadler.com Received: by 10.96.85.138 with HTTP; Fri, 24 Jan 2014 09:31:43 -0800 (PST) In-Reply-To: References: <201312302256.rBUMu0Fe064888@svn.freebsd.org> From: Eitan Adler Date: Fri, 24 Jan 2014 12:31:43 -0500 X-Google-Sender-Auth: UCiC3G9wCv-SBPKiDt7r0XwVxkI Message-ID: Subject: Re: svn commit: r338192 - in head: Mk textproc/libkolabxml To: Antoine Brodin Content-Type: text/plain; charset=UTF-8 Cc: Mathieu Arnold , Olli Hauer , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 17:32:14 -0000 On Fri, Jan 24, 2014 at 12:25 PM, Antoine Brodin wrote: > On Fri, Jan 24, 2014 at 5:18 PM, Eitan Adler wrote: >> On Fri, Jan 24, 2014 at 11:15 AM, Mathieu Arnold wrote: >>> +--On 24 janvier 2014 10:55:34 -0500 Eitan Adler wrote: >>> | The apache 1.0 license is not FSF approved either. >>> >>> If you have a pointer to that, please do remove the GROUPS line then :-) >> >> Sorry, I misunderstood the FSF page. It is considered 'FSF free' but >> is not GPL compatible. > > > If I understand the FSF page correctly, BSD4CLAUSE is FSF free but > not GPL compatible too? Yes. -- Eitan Adler Source, Ports, Doc committer Bugmeister, Ports Security teams From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 17:34:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99855BFB; Fri, 24 Jan 2014 17:34:20 +0000 (UTC) Received: from smtpout6.timeweb.ru (smtpout6.timeweb.ru [92.53.117.39]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C78E16E1; Fri, 24 Jan 2014 17:34:20 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1W6kdu-0006yH-7w; Fri, 24 Jan 2014 21:34:10 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 3FD3DC5E; Fri, 24 Jan 2014 21:34:09 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 1D2BE9C49; Fri, 24 Jan 2014 21:34:04 +0400 (MSK) Date: Fri, 24 Jan 2014 21:34:04 +0400 From: Dmitry Marakasov To: Mathieu Arnold Subject: Re: svn commit: r340875 - head/graphics/py-pyglet Message-ID: <20140124173403.GA33026@hades.panopticon> References: <201401240125.s0O1PcNR065306@svn.freebsd.org> <02676048890BF03180E6CFAB@atuin.in.mat.cc> <20140124124924.GF28542@hades.panopticon> <08A02A920829DC4130029A7F@ogg.in.absolight.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <08A02A920829DC4130029A7F@ogg.in.absolight.net> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 24 Jan 2014 17:34:20 -0000 * Mathieu Arnold (mat@FreeBSD.org) wrote: > | I don't think that matters unless ${WRKSRC} is deleted in the > | process. Actually, it's even better, as if for some reason some > | command leaves something behind (a corefile or a log) in it's current > | directory, it'll end up in ${WRKSRC} and to a ports' directory. > > Well, yes, but no, you're missing the point, the idea is to have a stable > and consistent way of doing things, so that if anyone needs to touch any > port, (s)he doesn't have figure out what the current directory currently is. One should _never_ depend on current directory unless he changes it in the same line. Because it's handling is (as you say) inconsistent among make versions, and because it's highly error prone (changing or reordering lines will break unrelated stuff). Also, all talk about this is useless unless whole portstree is converted and then keept consistent, which IHMO is completely useless. > I was fine before because each line was executed in its own shell, but now, > the whole bloc is executed in one shell invocation. Has this `now' happened in HEAD? Both 9.0-RELEASE and 10.0-RELEASE (after bmake switch) behave like this: % cat /tmp/Makefile all: @pwd @cd ..; pwd @pwd % make -C tmp /tmp / /tmp Although I remember having cd in one line affect pwd in another some time ago. -- Dmitry Marakasov . 55B5 0596 FF1E 8D84 5F56 9510 D35A 80DD F9D2 F77D amdmi3@amdmi3.ru ..: jabber: amdmi3@jabber.ru http://www.amdmi3.ru From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 17:45:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 280D1117; Fri, 24 Jan 2014 17:45:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 144BB182B; Fri, 24 Jan 2014 17:45:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OHjrXc047338; Fri, 24 Jan 2014 17:45:53 GMT (envelope-from kwm@svn.freebsd.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OHjrdd047337; Fri, 24 Jan 2014 17:45:53 GMT (envelope-from kwm@svn.freebsd.org) Message-Id: <201401241745.s0OHjrdd047337@svn.freebsd.org> From: Koop Mast Date: Fri, 24 Jan 2014 17:45:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340921 - head/net/py-avahi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 17:45:54 -0000 Author: kwm Date: Fri Jan 24 17:45:53 2014 New Revision: 340921 URL: http://svnweb.freebsd.org/changeset/ports/340921 QAT: https://qat.redports.org/buildarchive/r340921/ Log: Fix file conflict with avahi-app. PR: ports/185998 Submitted by: Volodymyr Kostyrko Modified: head/net/py-avahi/pkg-plist Modified: head/net/py-avahi/pkg-plist ============================================================================== --- head/net/py-avahi/pkg-plist Fri Jan 24 16:53:49 2014 (r340920) +++ head/net/py-avahi/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) @@ -13,6 +13,5 @@ lib/avahi/service-types.db man/man1/avahi-bookmarks.1.gz man/man1/avahi-discover.1.gz share/applications/avahi-discover.desktop -%%DATADIR%%/service-types @dirrm %%PYTHON_SITELIBDIR%%/avahi_discover @dirrm %%PYTHON_SITELIBDIR%%/avahi From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 18:10:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 89A148E0; Fri, 24 Jan 2014 18:10:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6AA9B1A4F; Fri, 24 Jan 2014 18:10:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OIAlJS058164; Fri, 24 Jan 2014 18:10:47 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OIAdRF058116; Fri, 24 Jan 2014 18:10:39 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401241810.s0OIAdRF058116@svn.freebsd.org> From: Mathieu Arnold Date: Fri, 24 Jan 2014 18:10:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340922 - in head/textproc: p5-Text-Truncate p5-Text-VimColor p5-Text-Wrapper p5-Text-Xslate p5-Text-Xslate-Bridge-TT2Like p5-Tk-XMLViewer p5-Unicode-CheckUTF8 p5-Unicode-Unihan p5-Vers... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 18:10:47 -0000 Author: mat Date: Fri Jan 24 18:10:39 2014 New Revision: 340922 URL: http://svnweb.freebsd.org/changeset/ports/340922 QAT: https://qat.redports.org/buildarchive/r340922/ Log: - Convert to staging - Add license - Pet portlint Sponsored by: Absolight Modified: head/textproc/p5-Text-Truncate/Makefile head/textproc/p5-Text-Truncate/pkg-plist head/textproc/p5-Text-VimColor/Makefile head/textproc/p5-Text-VimColor/pkg-plist head/textproc/p5-Text-Wrapper/Makefile head/textproc/p5-Text-Wrapper/pkg-plist head/textproc/p5-Text-Xslate-Bridge-TT2Like/Makefile head/textproc/p5-Text-Xslate-Bridge-TT2Like/pkg-plist head/textproc/p5-Text-Xslate/Makefile head/textproc/p5-Text-Xslate/pkg-plist head/textproc/p5-Tk-XMLViewer/Makefile head/textproc/p5-Tk-XMLViewer/pkg-plist head/textproc/p5-Unicode-CheckUTF8/Makefile head/textproc/p5-Unicode-CheckUTF8/pkg-plist head/textproc/p5-Unicode-Unihan/Makefile head/textproc/p5-Unicode-Unihan/pkg-plist head/textproc/p5-Version-Next/Makefile head/textproc/p5-Version-Next/pkg-plist head/textproc/p5-Vroom/Makefile head/textproc/p5-Vroom/pkg-plist head/textproc/p5-WWW-Wordnik-API/Makefile head/textproc/p5-XML-Atom-SimpleFeed/Makefile head/textproc/p5-XML-Atom-SimpleFeed/pkg-plist head/textproc/p5-XML-AutoWriter/Makefile head/textproc/p5-XML-AutoWriter/pkg-plist head/textproc/p5-XML-Canonical/Makefile head/textproc/p5-XML-Canonical/pkg-descr head/textproc/p5-XML-Canonical/pkg-plist head/textproc/p5-XML-CanonicalizeXML/Makefile head/textproc/p5-XML-CanonicalizeXML/pkg-descr head/textproc/p5-XML-CanonicalizeXML/pkg-plist head/textproc/p5-XML-Clean/Makefile head/textproc/p5-XML-Clean/pkg-plist head/textproc/p5-XML-Compile-Dumper/Makefile head/textproc/p5-XML-Compile-Dumper/pkg-descr head/textproc/p5-XML-Compile-Dumper/pkg-plist Modified: head/textproc/p5-Text-Truncate/Makefile ============================================================================== --- head/textproc/p5-Text-Truncate/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-Truncate/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -13,7 +13,4 @@ COMMENT= Perl module with simple string USES= perl5 USE_PERL5= configure -MAN3= Text::Truncate.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Truncate/pkg-plist ============================================================================== --- head/textproc/p5-Text-Truncate/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-Truncate/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Truncate.3.gz %%SITE_PERL%%/Text/Truncate.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Truncate/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Truncate Modified: head/textproc/p5-Text-VimColor/Makefile ============================================================================== --- head/textproc/p5-Text-VimColor/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-VimColor/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= ychsiao@ychsiao.org COMMENT= Syntax color text in HTML or XML using Vim +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-File-ShareDir>=0:${PORTSDIR}/devel/p5-File-ShareDir \ p5-File-ShareDir-Install>=0.03:${PORTSDIR}/devel/p5-File-ShareDir-Install \ p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \ @@ -22,10 +25,6 @@ RUN_DEPENDS= p5-File-ShareDir>=0:${PORTS USES= perl5 USE_PERL5= configure -MAN1= text-vimcolor.1 -MAN3= Text::VimColor.3 - -NO_STAGE= yes .include .if ${PERL_LEVEL} < 501400 Modified: head/textproc/p5-Text-VimColor/pkg-plist ============================================================================== --- head/textproc/p5-Text-VimColor/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-VimColor/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,9 +1,11 @@ bin/text-vimcolor +%%PERL5_MAN3%%/Text::VimColor.3.gz %%SITE_PERL%%/Text/VimColor.pm %%SITE_PERL%%/auto/share/dist/Text-VimColor/light.css %%SITE_PERL%%/auto/share/dist/Text-VimColor/light.xsl %%SITE_PERL%%/auto/share/dist/Text-VimColor/mark.vim %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/VimColor/.packlist +man/man1/text-vimcolor.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/VimColor @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text @dirrm %%SITE_PERL%%/auto/share/dist/Text-VimColor Modified: head/textproc/p5-Text-Wrapper/Makefile ============================================================================== --- head/textproc/p5-Text-Wrapper/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-Wrapper/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -9,10 +9,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= Simple word wrapping routine +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= Text::Wrapper.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Wrapper/pkg-plist ============================================================================== --- head/textproc/p5-Text-Wrapper/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-Wrapper/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Wrapper.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Wrapper/.packlist %%SITE_PERL%%/Text/Wrapper.pm @dirrmtry %%SITE_PERL%%/Text Modified: head/textproc/p5-Text-Xslate-Bridge-TT2Like/Makefile ============================================================================== --- head/textproc/p5-Text-Xslate-Bridge-TT2Like/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-Xslate-Bridge-TT2Like/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -9,6 +9,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension of TT2 Variable Method Clone for Text::Xslate +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= \ p5-Text-Xslate>=1.3000:${PORTSDIR}/textproc/p5-Text-Xslate BUILD_DEPENDS= ${RUN_DEPENDS} @@ -16,7 +19,4 @@ BUILD_DEPENDS= ${RUN_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Text::Xslate::Bridge::TT2Like.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Text-Xslate-Bridge-TT2Like/pkg-plist ============================================================================== --- head/textproc/p5-Text-Xslate-Bridge-TT2Like/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-Xslate-Bridge-TT2Like/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Text::Xslate::Bridge::TT2Like.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Xslate/Bridge/TT2Like/.packlist %%SITE_PERL%%/Text/Xslate/Bridge/TT2Like.pm %%SITE_PERL%%/Text/Xslate/Bridge/TT2Like.pod Modified: head/textproc/p5-Text-Xslate/Makefile ============================================================================== --- head/textproc/p5-Text-Xslate/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-Xslate/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -28,35 +28,6 @@ MAKE_JOBS_UNSAFE= yes USES= perl5 USE_PERL5= configure -MAN1= xslate.1 -MAN3= Text::Xslate.3 \ - Text::Xslate::Bridge.3 \ - Text::Xslate::Bridge::Star.3 \ - Text::Xslate::Compiler.3 \ - Text::Xslate::HashWithDefault.3 \ - Text::Xslate::Manual.3 \ - Text::Xslate::Manual::Builtin.3 \ - Text::Xslate::Manual::Cookbook.3 \ - Text::Xslate::Manual::Debugging.3 \ - Text::Xslate::Manual::FAQ.3 \ - Text::Xslate::PP.3 \ - Text::Xslate::PP::Const.3 \ - Text::Xslate::PP::Method.3 \ - Text::Xslate::PP::Opcode.3 \ - Text::Xslate::PP::State.3 \ - Text::Xslate::PP::Type::Macro.3 \ - Text::Xslate::PP::Type::Pair.3 \ - Text::Xslate::PP::Type::Raw.3 \ - Text::Xslate::Parser.3 \ - Text::Xslate::Runner.3 \ - Text::Xslate::Symbol.3 \ - Text::Xslate::Syntax::Kolon.3 \ - Text::Xslate::Syntax::Metakolon.3 \ - Text::Xslate::Syntax::TTerse.3 \ - Text::Xslate::Type::Raw.3 \ - Text::Xslate::Util.3 - -NO_STAGE= yes .include .if ${PERL_LEVEL} < 501600 Modified: head/textproc/p5-Text-Xslate/pkg-plist ============================================================================== --- head/textproc/p5-Text-Xslate/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Text-Xslate/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,29 @@ +%%PERL5_MAN3%%/Text::Xslate.3.gz +%%PERL5_MAN3%%/Text::Xslate::Bridge.3.gz +%%PERL5_MAN3%%/Text::Xslate::Bridge::Star.3.gz +%%PERL5_MAN3%%/Text::Xslate::Compiler.3.gz +%%PERL5_MAN3%%/Text::Xslate::HashWithDefault.3.gz +%%PERL5_MAN3%%/Text::Xslate::Manual.3.gz +%%PERL5_MAN3%%/Text::Xslate::Manual::Builtin.3.gz +%%PERL5_MAN3%%/Text::Xslate::Manual::Cookbook.3.gz +%%PERL5_MAN3%%/Text::Xslate::Manual::Debugging.3.gz +%%PERL5_MAN3%%/Text::Xslate::Manual::FAQ.3.gz +%%PERL5_MAN3%%/Text::Xslate::PP.3.gz +%%PERL5_MAN3%%/Text::Xslate::PP::Const.3.gz +%%PERL5_MAN3%%/Text::Xslate::PP::Method.3.gz +%%PERL5_MAN3%%/Text::Xslate::PP::Opcode.3.gz +%%PERL5_MAN3%%/Text::Xslate::PP::State.3.gz +%%PERL5_MAN3%%/Text::Xslate::PP::Type::Macro.3.gz +%%PERL5_MAN3%%/Text::Xslate::PP::Type::Pair.3.gz +%%PERL5_MAN3%%/Text::Xslate::PP::Type::Raw.3.gz +%%PERL5_MAN3%%/Text::Xslate::Parser.3.gz +%%PERL5_MAN3%%/Text::Xslate::Runner.3.gz +%%PERL5_MAN3%%/Text::Xslate::Symbol.3.gz +%%PERL5_MAN3%%/Text::Xslate::Syntax::Kolon.3.gz +%%PERL5_MAN3%%/Text::Xslate::Syntax::Metakolon.3.gz +%%PERL5_MAN3%%/Text::Xslate::Syntax::TTerse.3.gz +%%PERL5_MAN3%%/Text::Xslate::Type::Raw.3.gz +%%PERL5_MAN3%%/Text::Xslate::Util.3.gz bin/xslate %%SITE_PERL%%/%%PERL_ARCH%%/Text/Xslate.pm %%SITE_PERL%%/%%PERL_ARCH%%/Text/Xslate/Bridge.pm @@ -28,6 +54,7 @@ bin/xslate %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Xslate/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Xslate/Xslate.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Xslate/Xslate.so +man/man1/xslate.1.gz @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Xslate @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Text/Xslate/Type Modified: head/textproc/p5-Tk-XMLViewer/Makefile ============================================================================== --- head/textproc/p5-Tk-XMLViewer/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Tk-XMLViewer/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -18,8 +18,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Tk::XMLViewer.3 -MAN1= tkxmlview.1 - -NO_STAGE= yes .include Modified: head/textproc/p5-Tk-XMLViewer/pkg-plist ============================================================================== --- head/textproc/p5-Tk-XMLViewer/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Tk-XMLViewer/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,6 +1,8 @@ bin/tkxmlview +%%PERL5_MAN3%%/Tk::XMLViewer.3.gz %%SITE_PERL%%/Tk/XMLViewer.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Tk/XMLViewer/.packlist +man/man1/tkxmlview.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Tk/XMLViewer @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Tk @dirrmtry %%SITE_PERL%%/Tk Modified: head/textproc/p5-Unicode-CheckUTF8/Makefile ============================================================================== --- head/textproc/p5-Unicode-CheckUTF8/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Unicode-CheckUTF8/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -13,7 +13,4 @@ COMMENT= Check if scalar is valid UTF-8 USES= perl5 USE_PERL5= configure -MAN3= Unicode::CheckUTF8.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Unicode-CheckUTF8/pkg-plist ============================================================================== --- head/textproc/p5-Unicode-CheckUTF8/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Unicode-CheckUTF8/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Unicode::CheckUTF8.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/Unicode/CheckUTF8.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Unicode/CheckUTF8/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Unicode/CheckUTF8/CheckUTF8.bs Modified: head/textproc/p5-Unicode-Unihan/Makefile ============================================================================== --- head/textproc/p5-Unicode-Unihan/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Unicode-Unihan/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -13,10 +13,4 @@ COMMENT= The Unihan Data Base 5.1.0 USES= perl5 USE_PERL5= configure -MAN3= Unicode::Unihan.3 - -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e '/use 5.008001;/d' ${WRKSRC}/Unihan.pm - .include Modified: head/textproc/p5-Unicode-Unihan/pkg-plist ============================================================================== --- head/textproc/p5-Unicode-Unihan/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Unicode-Unihan/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Unicode::Unihan.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/Unicode/Unihan/.packlist %%SITE_PERL%%/Unicode/Unihan.pm %%SITE_PERL%%/Unicode/Unihan/AccountingNumeric.db Modified: head/textproc/p5-Version-Next/Makefile ============================================================================== --- head/textproc/p5-Version-Next/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Version-Next/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -10,13 +10,12 @@ PKGNAMEPREFIX= p5- MAINTAINER= lth@FreeBSD.org COMMENT= Increment module version numbers simply and correctly +LICENSE= APACHE20 + BUILD_DEPENDS= p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Version::Next.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-Version-Next/pkg-plist ============================================================================== --- head/textproc/p5-Version-Next/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Version-Next/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Version::Next.3.gz %%SITE_PERL%%/Version/Next.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Version/Next/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Version/Next Modified: head/textproc/p5-Vroom/Makefile ============================================================================== --- head/textproc/p5-Vroom/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Vroom/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= lwhsu@FreeBSD.org COMMENT= Slide Shows in Vim +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-File-HomeDir>=0:${PORTSDIR}/devel/p5-File-HomeDir \ p5-IO-All>=0:${PORTSDIR}/devel/p5-IO-All \ p5-Template-Toolkit-Simple>=0:${PORTSDIR}/www/p5-Template-Toolkit-Simple \ @@ -21,8 +24,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= Vroom.3 - -NO_STAGE= yes - .include Modified: head/textproc/p5-Vroom/pkg-plist ============================================================================== --- head/textproc/p5-Vroom/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-Vroom/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,4 +1,5 @@ bin/vroom +%%PERL5_MAN3%%/Vroom.3.gz %%SITE_PERL%%/Vroom.pm %%SITE_PERL%%/Vroom.pod %%SITE_PERL%%/Vroom/Mo.pm Modified: head/textproc/p5-WWW-Wordnik-API/Makefile ============================================================================== --- head/textproc/p5-WWW-Wordnik-API/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-WWW-Wordnik-API/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -13,19 +13,20 @@ DISTNAME= ${PORTNAME}-v${PORTVERSION} MAINTAINER= swills@FreeBSD.org COMMENT= Wordnik API implementation +LICENSE= GPLv3 + RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww TEST_DEPENDS= p5-JSON>=0:${PORTSDIR}/converters/p5-JSON USES= perl5 USE_PERL5= configure -MAN3= WWW::Wordnik::API.3 PLIST_FILES= %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Wordnik/API/.packlist \ - %%SITE_PERL%%/WWW/Wordnik/API.pm + %%SITE_PERL%%/WWW/Wordnik/API.pm \ + %%PERL5_MAN3%%/WWW::Wordnik::API.3.gz PLIST_DIRS= %%SITE_PERL%%/WWW/Wordnik %%SITE_PERL%%/WWW \ %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Wordnik/API \ %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Wordnik \ %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW -NO_STAGE= yes .include Modified: head/textproc/p5-XML-Atom-SimpleFeed/Makefile ============================================================================== --- head/textproc/p5-XML-Atom-SimpleFeed/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Atom-SimpleFeed/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -10,10 +10,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= tobez@FreeBSD.org COMMENT= XML::Atom::SimpleFeed - Generate simple Atom syndication feeds +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + USES= perl5 USE_PERL5= configure -MAN3= XML::Atom::SimpleFeed.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-XML-Atom-SimpleFeed/pkg-plist ============================================================================== --- head/textproc/p5-XML-Atom-SimpleFeed/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Atom-SimpleFeed/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/XML::Atom::SimpleFeed.3.gz %%SITE_PERL%%/XML/Atom/SimpleFeed.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Atom/SimpleFeed/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Atom/SimpleFeed Modified: head/textproc/p5-XML-AutoWriter/Makefile ============================================================================== --- head/textproc/p5-XML-AutoWriter/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-AutoWriter/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -4,24 +4,20 @@ PORTNAME= XML-AutoWriter PORTVERSION= 0.40 CATEGORIES= textproc perl5 MASTER_SITES= CPAN -DISTNAME= ${PORTNAME}-0.4 PKGNAMEPREFIX= p5- +DISTNAME= ${PORTNAME}-0.4 MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl module for DOCTYPE based XML output +LICENSE= ART10 GPLv1 BSD4CLAUSE +LICENSE_COMB= dual + TEST_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser USES= perl5 USE_PERL5= configure -MAN3= XML::AutoWriter.3 \ - XML::Doctype::AttDef.3 \ - XML::ValidWriter.3 \ - XML::Doctype::ElementDecl.3 \ - XML::Doctype.3 - -NO_STAGE= yes post-patch: ${RM} ${WRKSRC}/lib/XML/*.orig Modified: head/textproc/p5-XML-AutoWriter/pkg-plist ============================================================================== --- head/textproc/p5-XML-AutoWriter/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-AutoWriter/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,8 @@ +%%PERL5_MAN3%%/XML::AutoWriter.3.gz +%%PERL5_MAN3%%/XML::Doctype::AttDef.3.gz +%%PERL5_MAN3%%/XML::ValidWriter.3.gz +%%PERL5_MAN3%%/XML::Doctype::ElementDecl.3.gz +%%PERL5_MAN3%%/XML::Doctype.3.gz %%SITE_PERL%%/XML/AutoWriter.pm %%SITE_PERL%%/XML/Doctype.pm %%SITE_PERL%%/XML/Doctype/AttDef.pm Modified: head/textproc/p5-XML-Canonical/Makefile ============================================================================== --- head/textproc/p5-XML-Canonical/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Canonical/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -19,7 +19,4 @@ LIB_DEPENDS= gdome:${PORTSDIR}/textproc/ USES= perl5 pkgconfig USE_PERL5= configure -MAN3= XML::Canonical.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-XML-Canonical/pkg-descr ============================================================================== --- head/textproc/p5-XML-Canonical/pkg-descr Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Canonical/pkg-descr Fri Jan 24 18:10:39 2014 (r340922) @@ -4,4 +4,4 @@ XPath nodes. It provides a XS wrapper around libxml2's Canonical XML code. -WWW: http://search.cpan.org/dist/XML-Canonical/ +WWW: http://search.cpan.org/dist/XML-Canonical/ Modified: head/textproc/p5-XML-Canonical/pkg-plist ============================================================================== --- head/textproc/p5-XML-Canonical/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Canonical/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/XML::Canonical.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/XML/Canonical.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Canonical/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Canonical/Canonical.bs Modified: head/textproc/p5-XML-CanonicalizeXML/Makefile ============================================================================== --- head/textproc/p5-XML-CanonicalizeXML/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-CanonicalizeXML/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -16,7 +16,4 @@ LIB_DEPENDS= xml2:${PORTSDIR}/textproc/l USES= perl5 USE_PERL5= configure -MAN3= XML::CanonicalizeXML.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-XML-CanonicalizeXML/pkg-descr ============================================================================== --- head/textproc/p5-XML-CanonicalizeXML/pkg-descr Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-CanonicalizeXML/pkg-descr Fri Jan 24 18:10:39 2014 (r340922) @@ -1,4 +1,4 @@ Perl extension for inclusive and exclusive canonicalization of XML using libxml2. -WWW: http://search.cpan.org/dist/XML-CanonicalizeXML/ +WWW: http://search.cpan.org/dist/XML-CanonicalizeXML/ Modified: head/textproc/p5-XML-CanonicalizeXML/pkg-plist ============================================================================== --- head/textproc/p5-XML-CanonicalizeXML/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-CanonicalizeXML/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/XML::CanonicalizeXML.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/XML/CanonicalizeXML.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/CanonicalizeXML/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/CanonicalizeXML/CanonicalizeXML.bs Modified: head/textproc/p5-XML-Clean/Makefile ============================================================================== --- head/textproc/p5-XML-Clean/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Clean/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -13,7 +13,4 @@ COMMENT= Ensure, that *(HTML)* text pass USES= perl5 USE_PERL5= configure -MAN3= XML::Clean.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-XML-Clean/pkg-plist ============================================================================== --- head/textproc/p5-XML-Clean/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Clean/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/XML::Clean.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Clean/.packlist %%SITE_PERL%%/XML/Clean.pm @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Clean Modified: head/textproc/p5-XML-Compile-Dumper/Makefile ============================================================================== --- head/textproc/p5-XML-Compile-Dumper/Makefile Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Compile-Dumper/Makefile Fri Jan 24 18:10:39 2014 (r340922) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= papowell@astart.com COMMENT= Dump Compiled XML Translators +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-Data-Dump-Streamer>=2.08:${PORTSDIR}/devel/p5-Data-Dump-Streamer \ p5-Log-Report>=0.19:${PORTSDIR}/devel/p5-Log-Report \ p5-Test-Pod>=1.00:${PORTSDIR}/devel/p5-Test-Pod \ @@ -22,7 +25,4 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 USE_PERL5= configure -MAN3= XML::Compile::Dumper.3 - -NO_STAGE= yes .include Modified: head/textproc/p5-XML-Compile-Dumper/pkg-descr ============================================================================== --- head/textproc/p5-XML-Compile-Dumper/pkg-descr Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Compile-Dumper/pkg-descr Fri Jan 24 18:10:39 2014 (r340922) @@ -1,4 +1,4 @@ p5-XML-Compile-Dumper is a perl module to dump compiled XML translators. -WWW: http://search.cpan.org/dist/XML-Compile-Dumper/ +WWW: http://search.cpan.org/dist/XML-Compile-Dumper/ Modified: head/textproc/p5-XML-Compile-Dumper/pkg-plist ============================================================================== --- head/textproc/p5-XML-Compile-Dumper/pkg-plist Fri Jan 24 17:45:53 2014 (r340921) +++ head/textproc/p5-XML-Compile-Dumper/pkg-plist Fri Jan 24 18:10:39 2014 (r340922) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/XML::Compile::Dumper.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/XML/Compile/Dumper/.packlist %%SITE_PERL%%/XML/Compile/Dumper.pod %%SITE_PERL%%/XML/Compile/Dumper.pm From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 18:45:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8749061D; Fri, 24 Jan 2014 18:45:48 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [78.47.69.234]) by mx1.freebsd.org (Postfix) with ESMTP id 0BE3B1DD4; Fri, 24 Jan 2014 18:45:47 +0000 (UTC) Received: from [10.0.2.17] (a44084.upc-a.chello.nl [62.163.44.84]) by mail.jr-hosting.nl (Postfix) with ESMTPSA id 83B453F486; Fri, 24 Jan 2014 19:45:45 +0100 (CET) Content-Type: multipart/signed; boundary="Apple-Mail=_002A286F-87A5-4125-B496-53D4569607C8"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: svn commit: r340819 - head/security/vuxml From: Remko Lodder In-Reply-To: Date: Fri, 24 Jan 2014 19:45:40 +0100 Message-Id: <9A578734-9E5A-45C5-B250-41A4CE6B78BC@FreeBSD.org> References: <201401231003.s0NA3XaT070054@svn.freebsd.org> <52E17557.3040208@FreeBSD.org> <0231531E-F8BA-4053-B2DC-C1CD081309DB@FreeBSD.org> <52E19A89.1080700@FreeBSD.org> <3AB46F29-CD84-4E4B-949B-CB99CFDC572D@FreeBSD.org> To: Warren Block X-Mailer: Apple Mail (2.1827) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, Warren Block , Matthias Andree , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 18:45:48 -0000 --Apple-Mail=_002A286F-87A5-4125-B496-53D4569607C8 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 On 24 Jan 2014, at 17:03, Warren Block wrote: > On Fri, 24 Jan 2014, Remko Lodder wrote: >=20 >> It seems that igor can do some of the checking already; >>=20 >> [remko@speeltuin /virtual/workspace/subversion/ports/security/vuxml]$ = igor vuln.xml | more >> vuln.xml:55:wrap long line: HTMLDOC -- buffer overflow = issues when reading AFM files[ ]and parsing page sizes > ... >> Not yet perfect[tm] but it was not intended from start for vuxml, but = we might lure wblock into perhaps have a look at that? >=20 > A quick version that adds the missing tags is available here: > http://www.wonkity.com/~wblock/tmp/vux/igor >=20 > If there are special tests needed just for vuln.xml, a -V option could = be added. >=20 > For ANSI color (my preferred mode) > % igor -R /usr/ports/security/vuxml/vuln.xml | less -RS Ah this looks promising already! I got more =93complaints=94 today from = koobs that the current way to add a new entry is too difficult. I understand the problem(s) and igor is a promising way to = verify some things already before something else is created to do this better (before verification is actually taking = place) Thanks a lot for quickly jumping into this! Cheers Remko > _______________________________________________ > 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" --=20 /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_002A286F-87A5-4125-B496-53D4569607C8 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJS4rTVAAoJEKjD27JZ84ywSFEP/R02Qz21jQWzTpyMryR8XNrU relEJVuvyg7x9RuZs4jZcrx99Fxf+MltlKYbdAiD9oT/lx8YdqA3Xmppnu39Dhkm r6xM/YZZY25x2wpkxsAt0V2rVav/7pY5K1KM0Avkj2EeK/6Up/72mqniHFkpfS6j blT7VO1LzXkLbRGsFc1TYRlVXSe75tes0M8z/hk+FvLuYcWusEYep/KGC3HjIgZL odP/WrZaN4nXuQcOHwRuEO87toH39BlB8IPcHyC/u/TFDx5vEQTeYsq0Vdj54YJ4 NbG8G8m21cn4OdmnHTiJSJOXljIV1qOQ2LmC4tR1hrFfz70y0JHSlZOiiOBPjBpN rLrAvoy/7j52jjCTZR5zgBJH0xmhZqsWINxODOiqRqFlf4Kdnzo4AcY9PLB9l9FP AofuiGmIIC3QPrp/3Hjkiml/QCE7tgEUfJhX/g0IQKvOdajCLmBDemZimf0OaFGx jsIMfcoBwLjtjoY7D846Omrk9QWP0qnSmOO6wsBUI6ts2hp7s8NphieXA3Jc/R8i nKQXFeLVPIUJqx7c3xOjoYB1aRVyq4HLT7FVSyMmYsY16ZGdNtDj1PJzl7RvPGvb Ci13y+XFwqbbc2IMh0Uf5j/exzTNapDidTJL9lH0xhJmDZ7yNVxM6AmKqkE2Lkqa W09KdFDYyyLij5oL55/s =qg3K -----END PGP SIGNATURE----- --Apple-Mail=_002A286F-87A5-4125-B496-53D4569607C8-- From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 19:02:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63926BF1; Fri, 24 Jan 2014 19:02:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F55E1F56; Fri, 24 Jan 2014 19:02:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OJ2mQi077951; Fri, 24 Jan 2014 19:02:48 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OJ2mZP077950; Fri, 24 Jan 2014 19:02:48 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401241902.s0OJ2mZP077950@svn.freebsd.org> From: Marcus von Appen Date: Fri, 24 Jan 2014 19:02:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340923 - head/databases/py-pyPgSQL X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 19:02:48 -0000 Author: mva Date: Fri Jan 24 19:02:47 2014 New Revision: 340923 URL: http://svnweb.freebsd.org/changeset/ports/340923 QAT: https://qat.redports.org/buildarchive/r340923/ Log: - Enable stagedir support Modified: head/databases/py-pyPgSQL/Makefile Modified: head/databases/py-pyPgSQL/Makefile ============================================================================== --- head/databases/py-pyPgSQL/Makefile Fri Jan 24 18:10:39 2014 (r340922) +++ head/databases/py-pyPgSQL/Makefile Fri Jan 24 19:02:47 2014 (r340923) @@ -29,7 +29,6 @@ BYTEA_CONN_DESC= Apply Bytea connection # bypass infrastructure bug OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options -NO_STAGE= yes .include .if ${PORT_OPTIONS:MBYTEA_CONN} @@ -41,17 +40,13 @@ DOCSDIR= ${PREFIX}/share/doc/py-pyPgSQL EXAMPLESDIR= ${PREFIX}/share/examples/py-pyPgSQL post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for f in ${EXAMPLES} - @${INSTALL_DATA} ${WRKSRC}/${f} ${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${EXAMPLESDIR} .endfor -.endif .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 19:04:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2AD1ACF1; Fri, 24 Jan 2014 19:04:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F07AD1F69; Fri, 24 Jan 2014 19:04:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OJ4oU1078308; Fri, 24 Jan 2014 19:04:50 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OJ4omW078307; Fri, 24 Jan 2014 19:04:50 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401241904.s0OJ4omW078307@svn.freebsd.org> From: Rusmir Dusko Date: Fri, 24 Jan 2014 19:04:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340924 - in head/games/xgalaga++: . 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.17 Precedence: list List-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, 24 Jan 2014 19:04:51 -0000 Author: nemysis Date: Fri Jan 24 19:04:50 2014 New Revision: 340924 URL: http://svnweb.freebsd.org/changeset/ports/340924 QAT: https://qat.redports.org/buildarchive/r340924/ Log: - Bump PORTREVISION - Disable all warnings with -w - Support STAGEDIR - Change Desktop entry file - Add REINPLACE_CMD to store highscore in $HOME - Remove not needed pkg-install.in Reviewed by: horia Deleted: head/games/xgalaga++/files/ Modified: head/games/xgalaga++/Makefile Modified: head/games/xgalaga++/Makefile ============================================================================== --- head/games/xgalaga++/Makefile Fri Jan 24 19:02:47 2014 (r340923) +++ head/games/xgalaga++/Makefile Fri Jan 24 19:04:50 2014 (r340924) @@ -3,6 +3,7 @@ PORTNAME= xgalaga++ PORTVERSION= 0.8.4 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ \ SF/nemysisfreebsdp/:icons @@ -20,39 +21,32 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER USES= gmake ALL_TARGET= ${PORTNAME} USE_XORG= x11 xpm -MAN6= xgalaga++.6 - -SUB_FILES= pkg-install +CFLAGS+= -w PLIST_FILES= bin/${PORTNAME} \ + man/man6/${PORTNAME}.6.gz \ share/pixmaps/${PORTNAME}.png PORTDOCS= README -DESKTOP_ENTRIES="XGalaga++" "${COMMENT}" "${PORTNAME}" \ - "${PORTNAME}" "Game;ArcadeGame;" false - OPTIONS_DEFINE= DOCS -NO_STAGE= yes -.include +DESKTOP_ENTRIES="XGalaga++" "" "${PORTNAME}" \ + "${PORTNAME}" "Game;ArcadeGame;" "" post-patch: - @${REINPLACE_CMD} -e '/^CXX =/ d; s|/usr/local|${LOCALBASE}|' \ + @${REINPLACE_CMD} -e 's|CXX =|CXX ?=|; \ + s|HIGH_SCORES_FILE=/|#HIGH_SCORES_FILE=/|; \ + s|#HIGH_SCORES_FILE=.|HIGH_SCORES_FILE=.|; \ + s|/usr/local|${LOCALBASE}|' \ ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/ - ${INSTALL_MAN} ${WRKSRC}/xgalaga++.6x ${MAN6PREFIX}/man/man6/xgalaga++.6 - @${CHGRP} games ${PREFIX}/bin/${PORTNAME} - @${CHMOD} g+s ${PREFIX}/bin/${PORTNAME} - ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps/ - -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/xgalaga++.6x ${STAGEDIR}${MAN6PREFIX}/man/man6/xgalaga++.6 + ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png ${STAGEDIR}${PREFIX}/share/pixmaps/ - @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 19:06:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC3FCDD6; Fri, 24 Jan 2014 19:06:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B7EAE1F75; Fri, 24 Jan 2014 19:06:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OJ64Bo078577; Fri, 24 Jan 2014 19:06:04 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OJ64Gf078576; Fri, 24 Jan 2014 19:06:04 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401241906.s0OJ64Gf078576@svn.freebsd.org> From: Marcus von Appen Date: Fri, 24 Jan 2014 19:06:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340925 - head/devel/py-singledispatch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 19:06:04 -0000 Author: mva Date: Fri Jan 24 19:06:04 2014 New Revision: 340925 URL: http://svnweb.freebsd.org/changeset/ports/340925 QAT: https://qat.redports.org/buildarchive/r340925/ Log: - Convert USE_PYDISTUTILS=easy_install to yes Modified: head/devel/py-singledispatch/Makefile Modified: head/devel/py-singledispatch/Makefile ============================================================================== --- head/devel/py-singledispatch/Makefile Fri Jan 24 19:04:50 2014 (r340924) +++ head/devel/py-singledispatch/Makefile Fri Jan 24 19:06:04 2014 (r340925) @@ -13,7 +13,7 @@ COMMENT= provides single-dispatch generi LICENSE= MIT USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 19:16:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 22105166; Fri, 24 Jan 2014 19:16:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E7F4E1033; Fri, 24 Jan 2014 19:16:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OJGDfh082729; Fri, 24 Jan 2014 19:16:13 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OJGD9A082727; Fri, 24 Jan 2014 19:16:13 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401241916.s0OJGD9A082727@svn.freebsd.org> From: Marcus von Appen Date: Fri, 24 Jan 2014 19:16:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340926 - in head/devel: py-freebsd py-urwid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 19:16:14 -0000 Author: mva Date: Fri Jan 24 19:16:13 2014 New Revision: 340926 URL: http://svnweb.freebsd.org/changeset/ports/340926 QAT: https://qat.redports.org/buildarchive/r340926/ Log: - Enable stagedir support - Convert to PYDISTUTILS_AUTOPLIST Deleted: head/devel/py-urwid/pkg-plist Modified: head/devel/py-freebsd/Makefile head/devel/py-urwid/Makefile Modified: head/devel/py-freebsd/Makefile ============================================================================== --- head/devel/py-freebsd/Makefile Fri Jan 24 19:06:04 2014 (r340925) +++ head/devel/py-freebsd/Makefile Fri Jan 24 19:16:13 2014 (r340926) @@ -16,14 +16,8 @@ COMMENT= Python interface to FreeBSD-spe USE_PYTHON= 2 USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= py-freebsd +PYDISTUTILS_AUTOPLIST= yes -PLIST_FILES= %%PYTHON_SITELIBDIR%%/freebsd.so \ - %%PYTHON_SITELIBDIR%%/freebsd_compat02.py \ - %%PYTHON_SITELIBDIR%%/freebsd_compat02.pyc \ - %%PYTHON_SITELIBDIR%%/freebsd_compat02.pyo - -NO_STAGE= yes .include # Multi-IPv4/v6/no-IP jails. Modified: head/devel/py-urwid/Makefile ============================================================================== --- head/devel/py-urwid/Makefile Fri Jan 24 19:06:04 2014 (r340925) +++ head/devel/py-urwid/Makefile Fri Jan 24 19:16:13 2014 (r340926) @@ -16,8 +16,9 @@ LICENSE= LGPL21 OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options OPTIONS_DEFINE= EXAMPLES -USE_PYTHON= 2 -USE_PYDISTUTILS=yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes PORTEXAMPLES= bigtext.py \ browse.py \ @@ -35,7 +36,6 @@ PORTEXAMPLES= bigtext.py \ treesample.py EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} -NO_STAGE= yes .include post-patch: @@ -44,8 +44,8 @@ post-patch: post-install: .if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR}/ - @cd ${WRKSRC}/examples && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR}/ + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ + (cd ${WRKSRC}/examples && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/) .endif regression-test: build From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 19:26:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF97D2A9; Fri, 24 Jan 2014 19:26:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AB6C610E4; Fri, 24 Jan 2014 19:26:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OJQ4hn086426; Fri, 24 Jan 2014 19:26:04 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OJQ4EZ086424; Fri, 24 Jan 2014 19:26:04 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201401241926.s0OJQ4EZ086424@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Fri, 24 Jan 2014 19:26:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340927 - head/sysutils/entr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 19:26:04 -0000 Author: danilo Date: Fri Jan 24 19:26:03 2014 New Revision: 340927 URL: http://svnweb.freebsd.org/changeset/ports/340927 QAT: https://qat.redports.org/buildarchive/r340927/ Log: - Update from 2.5 to 2.6 Modified: head/sysutils/entr/Makefile head/sysutils/entr/distinfo Modified: head/sysutils/entr/Makefile ============================================================================== --- head/sysutils/entr/Makefile Fri Jan 24 19:16:13 2014 (r340926) +++ head/sysutils/entr/Makefile Fri Jan 24 19:26:03 2014 (r340927) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= entr -PORTVERSION= 2.5 +PORTVERSION= 2.6 CATEGORIES= sysutils MASTER_SITES= http://entrproject.org/code/ \ https://bitbucket.org/eradman/entr/get/ @@ -13,7 +13,7 @@ COMMENT= Runs arbitrary commands when fi # All the code used in FreeBSD is under ISCL license. LICENSE= ISCL -WRKSRC= ${WRKDIR}/eradman-entr-7821588c309c +WRKSRC= ${WRKDIR}/eradman-entr-8f83875c37be MAKEFILE= Makefile.bsd MAKE_ARGS= MANPREFIX=${MANPREFIX}/man Modified: head/sysutils/entr/distinfo ============================================================================== --- head/sysutils/entr/distinfo Fri Jan 24 19:16:13 2014 (r340926) +++ head/sysutils/entr/distinfo Fri Jan 24 19:26:03 2014 (r340927) @@ -1,2 +1,2 @@ -SHA256 (entr-2.5.tar.gz) = 1b68dc0e009f25c0373cd9e9dd18c61c80d16d91a86a205ca21a3a4cefe0b577 -SIZE (entr-2.5.tar.gz) = 16245 +SHA256 (entr-2.6.tar.gz) = 73229916b0119f2957524f9034da1464276f0d503c26ae9fd717312e3177e5e8 +SIZE (entr-2.6.tar.gz) = 17416 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 19:38:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCB165A0; Fri, 24 Jan 2014 19:38:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C77FE11A7; Fri, 24 Jan 2014 19:38:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OJcbt2090417; Fri, 24 Jan 2014 19:38:37 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OJcbKe090416; Fri, 24 Jan 2014 19:38:37 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401241938.s0OJcbKe090416@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Fri, 24 Jan 2014 19:38:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340928 - head/devel/py-liblarch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 19:38:37 -0000 Author: rm Date: Fri Jan 24 19:38:37 2014 New Revision: 340928 URL: http://svnweb.freebsd.org/changeset/ports/340928 QAT: https://qat.redports.org/buildarchive/r340928/ Log: - convert to auto-generated packing list Deleted: head/devel/py-liblarch/pkg-plist Modified: head/devel/py-liblarch/Makefile Modified: head/devel/py-liblarch/Makefile ============================================================================== --- head/devel/py-liblarch/Makefile Fri Jan 24 19:26:03 2014 (r340927) +++ head/devel/py-liblarch/Makefile Fri Jan 24 19:38:37 2014 (r340928) @@ -14,10 +14,10 @@ USE_GITHUB= yes USE_GNOME= pygobject USE_PYTHON= 2 USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes GH_ACCOUNT= ${PORTNAME} GH_TAGNAME= v${PORTVERSION} GH_COMMIT= 76d6490 -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 19:46:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC8698A1; Fri, 24 Jan 2014 19:46:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ACCDC1249; Fri, 24 Jan 2014 19:46:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OJkwHt094057; Fri, 24 Jan 2014 19:46:58 GMT (envelope-from jmmv@svn.freebsd.org) Received: (from jmmv@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OJkv5m094049; Fri, 24 Jan 2014 19:46:57 GMT (envelope-from jmmv@svn.freebsd.org) Message-Id: <201401241946.s0OJkv5m094049@svn.freebsd.org> From: Julio Merino Date: Fri, 24 Jan 2014 19:46:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340929 - in head/devel: kyua kyua-atf-compat kyua-testers lutok X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 19:46:59 -0000 Author: jmmv (src committer) Date: Fri Jan 24 19:46:56 2014 New Revision: 340929 URL: http://svnweb.freebsd.org/changeset/ports/340929 QAT: https://qat.redports.org/buildarchive/r340929/ Log: Add staging support to kyua* and lutok. While doing this, consolidate file handling into pkg-plist (instead of the previous split between the Makefile and the pkg-plist) for simplicity. Reviewed by: asomers (ex-maintainer) Approved by: bdrewery (ports) Added: head/devel/kyua-testers/pkg-plist (contents, props changed) head/devel/kyua/pkg-plist (contents, props changed) Modified: head/devel/kyua-atf-compat/Makefile head/devel/kyua-atf-compat/pkg-plist head/devel/kyua-testers/Makefile head/devel/kyua/Makefile head/devel/lutok/Makefile head/devel/lutok/pkg-plist Modified: head/devel/kyua-atf-compat/Makefile ============================================================================== --- head/devel/kyua-atf-compat/Makefile Fri Jan 24 19:38:37 2014 (r340928) +++ head/devel/kyua-atf-compat/Makefile Fri Jan 24 19:46:56 2014 (r340929) @@ -19,7 +19,6 @@ USES= pkgconfig OPTIONS_DEFINE= DOCS -NO_STAGE= yes .include CONFIGURE_ARGS+= --docdir=${DOCSDIR} @@ -29,18 +28,10 @@ CONFIGURE_ARGS+= --without-atf .if ! ${PORT_OPTIONS:MDOCS} MAKE_FLAGS+= doc_DATA= .endif -PLIST_SUBST+= TESTS="@comment " -PORTDATA= lib.subr tests_lib.subr -PORTDOCS= AUTHORS COPYING NEWS README -MAN1= atf-report.1 atf-run.1 atf2kyua.1 - -# Eliminate empty directories -remove-docsdir: .SILENT - ${RMDIR} ${DOCSDIR} - -.if ! ${PORT_OPTIONS:MDOCS} -post-install: remove-docsdir -.endif +post-stage: + # TODO(jmmv): Should not be necessary after updating this to 0.2. + rmdir ${STAGEDIR}${PREFIX}/tests/kyua-atf-compat + rmdir ${STAGEDIR}${PREFIX}/tests .include Modified: head/devel/kyua-atf-compat/pkg-plist ============================================================================== --- head/devel/kyua-atf-compat/pkg-plist Fri Jan 24 19:38:37 2014 (r340928) +++ head/devel/kyua-atf-compat/pkg-plist Fri Jan 24 19:46:56 2014 (r340929) @@ -1,5 +1,15 @@ +@comment $FreeBSD$ bin/atf-report bin/atf-run bin/atf2kyua -@dirrmtry tests/kyua-atf-compat -@dirrmtry tests +man/man1/atf-report.1.gz +man/man1/atf-run.1.gz +man/man1/atf2kyua.1.gz +%%DATADIR%%/lib.subr +%%DATADIR%%/tests_lib.subr +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%% Modified: head/devel/kyua-testers/Makefile ============================================================================== --- head/devel/kyua-testers/Makefile Fri Jan 24 19:38:37 2014 (r340928) +++ head/devel/kyua-testers/Makefile Fri Jan 24 19:46:56 2014 (r340929) @@ -16,26 +16,16 @@ GNU_CONFIGURE= yes OPTIONS_DEFINE= DOCS -NO_STAGE= yes .include CONFIGURE_ARGS+= --docdir=${DOCSDIR} # TODO: install the tests, once FreeBSD has a system for ports to install tests CONFIGURE_ARGS+= --without-atf -PLIST_FILES= libdata/pkgconfig/kyua-testers.pc libexec/kyua-atf-tester -PLIST_FILES+= libexec/kyua-plain-tester libexec/kyua-tap-tester +MAKE_FLAGS+= pkgconfigdir=${PREFIX}/libdata/pkgconfig + .if ! ${PORT_OPTIONS:MDOCS} MAKE_FLAGS+= doc_DATA= .endif -PORTDOCS= AUTHORS COPYING NEWS README -MAN1= kyua-atf-tester.1 kyua-plain-tester.1 kyua-tap-tester.1 kyua-tester.1 -MAN5= kyua-tester-list.5 kyua-tester-result.5 -MAN7= kyua-atf-interface.7 kyua-plain-interface.7 kyua-tap-interface.7 - -post-patch: .SILENT - @${REINPLACE_CMD} -e 's|@pkgconfigdir@|${PREFIX}/libdata/pkgconfig|' \ - ${WRKSRC}/Makefile.in - .include Added: head/devel/kyua-testers/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kyua-testers/pkg-plist Fri Jan 24 19:46:56 2014 (r340929) @@ -0,0 +1,19 @@ +@comment $FreeBSD$ +libdata/pkgconfig/kyua-testers.pc +libexec/kyua-atf-tester +libexec/kyua-plain-tester +libexec/kyua-tap-tester +man/man1/kyua-atf-tester.1.gz +man/man1/kyua-plain-tester.1.gz +man/man1/kyua-tap-tester.1.gz +man/man1/kyua-tester.1.gz +man/man5/kyua-tester-list.5.gz +man/man5/kyua-tester-result.5.gz +man/man7/kyua-atf-interface.7.gz +man/man7/kyua-plain-interface.7.gz +man/man7/kyua-tap-interface.7.gz +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%@dirrm %%DOCSDIR%% Modified: head/devel/kyua/Makefile ============================================================================== --- head/devel/kyua/Makefile Fri Jan 24 19:38:37 2014 (r340928) +++ head/devel/kyua/Makefile Fri Jan 24 19:46:56 2014 (r340929) @@ -28,13 +28,13 @@ SUB_FILES= kyua.conf SUB_LIST= TESTS_USER=${TESTS_USER} OPTIONS_DEFINE= DOCS EXAMPLES -NO_STAGE= yes .include CONFIGURE_ARGS+= --without-doxygen CONFIGURE_ARGS+= --docdir=${DOCSDIR} # TODO: install the tests, once FreeBSD has a system for ports to install tests CONFIGURE_ARGS+= --without-atf +MAKE_FLAGS+= examplesdir=${EXAMPLESDIR} MAKE_FLAGS+= pkgdatadir=${DATADIR} .if ! ${PORT_OPTIONS:MDOCS} @@ -43,20 +43,9 @@ MAKE_FLAGS+= doc_DATA= .if ! ${PORT_OPTIONS:MEXAMPLES} MAKE_FLAGS+= dist_examples_DATA= .endif -PLIST_FILES= bin/kyua -PLIST_DIRS= etc/kyua -PLIST_FILES+= etc/kyua/kyua.conf - -PORTDATA= misc store examples -PORTDOCS= AUTHORS COPYING NEWS README -MAN1= kyua-about.1 kyua-config.1 kyua-db-exec.1 kyua-db-migrate.1 -MAN1+= kyua-debug.1 kyua-help.1 kyua-list.1 kyua-report-html.1 -MAN1+= kyua-report.1 kyua-test.1 kyua.1 -MAN5= kyua.conf.5 kyuafile.5 -MAN7= kyua-build-root.7 kyua-test-filters.7 post-install: - ${MKDIR} ${PREFIX}/etc/kyua/ - ${INSTALL_DATA} ${WRKDIR}/kyua.conf ${PREFIX}/etc/kyua/ + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/kyua/ + ${INSTALL_DATA} ${WRKDIR}/kyua.conf ${STAGEDIR}${PREFIX}/etc/kyua/ .include Added: head/devel/kyua/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kyua/pkg-plist Fri Jan 24 19:46:56 2014 (r340929) @@ -0,0 +1,36 @@ +@comment $FreeBSD$ +bin/kyua +etc/kyua/kyua.conf +man/man1/kyua-about.1.gz +man/man1/kyua-config.1.gz +man/man1/kyua-db-exec.1.gz +man/man1/kyua-db-migrate.1.gz +man/man1/kyua-debug.1.gz +man/man1/kyua-help.1.gz +man/man1/kyua-list.1.gz +man/man1/kyua-report-html.1.gz +man/man1/kyua-report.1.gz +man/man1/kyua-test.1.gz +man/man1/kyua.1.gz +man/man5/kyua.conf.5.gz +man/man5/kyuafile.5.gz +man/man7/kyua-build-root.7.gz +man/man7/kyua-test-filters.7.gz +%%DATADIR%%/misc/context.html +%%DATADIR%%/misc/index.html +%%DATADIR%%/misc/report.css +%%DATADIR%%/misc/test_result.html +%%DATADIR%%/store/migrate_v1_v2.sql +%%DATADIR%%/store/schema_v2.sql +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Kyuafile.top +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kyua.conf +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% +@dirrm %%DATADIR%%/store +@dirrm %%DATADIR%%/misc +@dirrm %%DATADIR%% +@dirrm etc/kyua Modified: head/devel/lutok/Makefile ============================================================================== --- head/devel/lutok/Makefile Fri Jan 24 19:38:37 2014 (r340928) +++ head/devel/lutok/Makefile Fri Jan 24 19:46:56 2014 (r340929) @@ -18,6 +18,8 @@ USES= pkgconfig lua OPTIONS_DEFINE= DOCS EXAMPLES +.include + CONFIGURE_ARGS+= --docdir=${DOCSDIR} CONFIGURE_ARGS+= --htmldir=${DOCSDIR}/html # The distfile contains prebuilt doxygen files. Specify --without_doxygen so @@ -33,14 +35,19 @@ CONFIGURE_ARGS+= LUA_CFLAGS="-I${LUA_INC CONFIGURE_ARGS+= LUA_LIBS="-L${LUA_LIBDIR} -llua-${LUA_VER} -lm" MAKE_FLAGS+= examplesdir=${EXAMPLESDIR} - -PORTDOCS= AUTHORS COPYING NEWS README html -PORTEXAMPLES= Makefile bindings.cpp hello.cpp interpreter.cpp raii.cpp +MAKE_FLAGS+= pkgconfigdir=${PREFIX}/libdata/pkgconfig +.if ! ${PORT_OPTIONS:MDOCS} +MAKE_FLAGS+= doc_DATA= +.endif +.if ! ${PORT_OPTIONS:MEXAMPLES} +MAKE_FLAGS+= examples_DATA= +.endif PLIST_SUB+= TESTS="@comment " -post-patch: .SILENT - @${REINPLACE_CMD} -e 's|@pkgconfigdir@|${PREFIX}/libdata/pkgconfig|' \ - ${WRKSRC}/Makefile.in +.if ! ${PORT_OPTIONS:MDOCS} +pre-install: .SILENT + ${RM} -rf ${WRKSRC}/api-docs +.endif .include Modified: head/devel/lutok/pkg-plist ============================================================================== --- head/devel/lutok/pkg-plist Fri Jan 24 19:38:37 2014 (r340928) +++ head/devel/lutok/pkg-plist Fri Jan 24 19:46:56 2014 (r340929) @@ -1,3 +1,4 @@ +@comment $FreeBSD$ include/lutok/c_gate.hpp include/lutok/debug.hpp include/lutok/exceptions.hpp @@ -11,7 +12,223 @@ lib/liblutok.la lib/liblutok.so lib/liblutok.so.3 libdata/pkgconfig/lutok.pc -%%TESTS%%@exec mkdir -p %D/tests/lutok -%%TESTS%%@dirrm tests/lutok -%%TESTS%%@dirrmtry tests +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/html/tabs.css +%%PORTDOCS%%%%DOCSDIR%%/html/jquery.js +%%PORTDOCS%%%%DOCSDIR%%/html/dynsections.js +%%PORTDOCS%%%%DOCSDIR%%/html/tab_a.png +%%PORTDOCS%%%%DOCSDIR%%/html/tab_b.png +%%PORTDOCS%%%%DOCSDIR%%/html/tab_h.png +%%PORTDOCS%%%%DOCSDIR%%/html/tab_s.png +%%PORTDOCS%%%%DOCSDIR%%/html/nav_h.png +%%PORTDOCS%%%%DOCSDIR%%/html/nav_f.png +%%PORTDOCS%%%%DOCSDIR%%/html/bc_s.png +%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.png +%%PORTDOCS%%%%DOCSDIR%%/html/closed.png +%%PORTDOCS%%%%DOCSDIR%%/html/open.png +%%PORTDOCS%%%%DOCSDIR%%/html/bdwn.png +%%PORTDOCS%%%%DOCSDIR%%/html/nav_g.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2blank.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2doc.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2folderclosed.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2folderopen.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2ns.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2mo.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2cl.png +%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.css +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2lastnode.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2link.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2mlastnode.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2mnode.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2node.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2plastnode.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2pnode.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2vertline.png +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2splitbar.png +%%PORTDOCS%%%%DOCSDIR%%/html/search/mag_sel.png +%%PORTDOCS%%%%DOCSDIR%%/html/search/search_l.png +%%PORTDOCS%%%%DOCSDIR%%/html/search/search_m.png +%%PORTDOCS%%%%DOCSDIR%%/html/search/search_r.png +%%PORTDOCS%%%%DOCSDIR%%/html/search/close.png +%%PORTDOCS%%%%DOCSDIR%%/html/search/search.css +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_5f.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_5f.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_61.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_61.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_63.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_63.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_64.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_64.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_65.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_65.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_66.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_66.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_67.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_67.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_68.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_68.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_69.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_69.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6c.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6c.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6e.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6e.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6f.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6f.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_70.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_70.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_72.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_72.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_73.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_73.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_74.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_74.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_75.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_75.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_77.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_77.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_7e.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_7e.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_61.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_61.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_64.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_63.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_64.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_65.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_65.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_66.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_66.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_69.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_69.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_73.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_73.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/namespaces_61.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/namespaces_61.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_63.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_64.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_64.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_65.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_65.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_6f.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_6f.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_73.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_73.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_74.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_74.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_61.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_61.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_63.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_63.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_64.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_64.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_65.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_65.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_66.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_66.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_67.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_67.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_68.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_68.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_69.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_69.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6c.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6c.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6e.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6e.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6f.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6f.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_70.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_70.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_72.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_72.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_73.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_73.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_74.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_74.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_75.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_75.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_77.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_77.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_7e.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_7e.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_5f.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_5f.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_6c.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_6c.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_6f.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_6f.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_73.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_73.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/defines_72.html +%%PORTDOCS%%%%DOCSDIR%%/html/search/defines_72.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/search.js +%%PORTDOCS%%%%DOCSDIR%%/html/search/nomatches.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00013_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00016_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00019_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00022_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00025_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00028_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00031_source.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00013.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00016.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00019.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00022.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00025.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00028.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00031.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00032.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00033.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00034.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00035.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00001.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00039.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00011.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00040.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00003.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00041.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00004.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00042.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00005.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00005.png +%%PORTDOCS%%%%DOCSDIR%%/html/a00043.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00002.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00002.png +%%PORTDOCS%%%%DOCSDIR%%/html/a00044.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00006.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00006.png +%%PORTDOCS%%%%DOCSDIR%%/html/a00045.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00007.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00046.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00008.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00047.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00009.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00048.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00010.html +%%PORTDOCS%%%%DOCSDIR%%/html/a00049.html +%%PORTDOCS%%%%DOCSDIR%%/html/index.html +%%PORTDOCS%%%%DOCSDIR%%/html/namespaces.html +%%PORTDOCS%%%%DOCSDIR%%/html/namespacemembers.html +%%PORTDOCS%%%%DOCSDIR%%/html/namespacemembers_func.html +%%PORTDOCS%%%%DOCSDIR%%/html/annotated.html +%%PORTDOCS%%%%DOCSDIR%%/html/classes.html +%%PORTDOCS%%%%DOCSDIR%%/html/hierarchy.html +%%PORTDOCS%%%%DOCSDIR%%/html/functions.html +%%PORTDOCS%%%%DOCSDIR%%/html/functions_func.html +%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars.html +%%PORTDOCS%%%%DOCSDIR%%/html/files.html +%%PORTDOCS%%%%DOCSDIR%%/html/globals.html +%%PORTDOCS%%%%DOCSDIR%%/html/globals_defs.html +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/search +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bindings.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/interpreter.cpp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/raii.cpp +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% @dirrm include/lutok From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 19:53:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F23CA88; Fri, 24 Jan 2014 19:53:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 115E912EA; Fri, 24 Jan 2014 19:53:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OJrgif097378; Fri, 24 Jan 2014 19:53:42 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OJrgDe097376; Fri, 24 Jan 2014 19:53:42 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201401241953.s0OJrgDe097376@svn.freebsd.org> From: Juergen Lock Date: Fri, 24 Jan 2014 19:53:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340930 - head/multimedia/livestreamer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 19:53:43 -0000 Author: nox Date: Fri Jan 24 19:53:42 2014 New Revision: 340930 URL: http://svnweb.freebsd.org/changeset/ports/340930 QAT: https://qat.redports.org/buildarchive/r340930/ Log: - Update to 1.7.2 . - Clarify BSD part of LICENSE. (BSD2CLAUSE) - Switch USE_PYDISTUTILS from deprecated easy_install to yes. Modified: head/multimedia/livestreamer/Makefile head/multimedia/livestreamer/distinfo Modified: head/multimedia/livestreamer/Makefile ============================================================================== --- head/multimedia/livestreamer/Makefile Fri Jan 24 19:46:56 2014 (r340929) +++ head/multimedia/livestreamer/Makefile Fri Jan 24 19:53:42 2014 (r340930) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= livestreamer -PORTVERSION= 1.7.1 +PORTVERSION= 1.7.2 CATEGORIES= multimedia python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,7 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= multimedia@FreeBSD.org COMMENT= Extract web streams and pipe them into video player of choice -LICENSE= BSD MIT APACHE20 +LICENSE= BSD2CLAUSE MIT APACHE20 LICENSE_COMB= multi RUN_DEPENDS= rtmpdump:${PORTSDIR}/multimedia/rtmpdump \ @@ -18,7 +18,7 @@ RUN_DEPENDS= rtmpdump:${PORTSDIR}/multim ${PYTHON_PKGNAMEPREFIX}librtmp>=0:${PORTSDIR}/multimedia/py-librtmp USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS=yes PYDISTUTILS_AUTOPLIST= yes .include Modified: head/multimedia/livestreamer/distinfo ============================================================================== --- head/multimedia/livestreamer/distinfo Fri Jan 24 19:46:56 2014 (r340929) +++ head/multimedia/livestreamer/distinfo Fri Jan 24 19:53:42 2014 (r340930) @@ -1,2 +1,2 @@ -SHA256 (livestreamer-1.7.1.tar.gz) = c847d39f4f3ade17ad03e2b43d4e3153424e65511fbddd68d61ac1efa6135113 -SIZE (livestreamer-1.7.1.tar.gz) = 88498 +SHA256 (livestreamer-1.7.2.tar.gz) = a740d3db72e9bd3527220c1b0b93c73e6252a5695842b30e4b91ef069c14fee0 +SIZE (livestreamer-1.7.2.tar.gz) = 88737 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 19:58:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9748C9B; Fri, 24 Jan 2014 19:58:35 +0000 (UTC) Received: from forward4l.mail.yandex.net (forward4l.mail.yandex.net [IPv6:2a02:6b8:0:1819::4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7828A1320; Fri, 24 Jan 2014 19:58:35 +0000 (UTC) Received: from smtp12.mail.yandex.net (smtp12.mail.yandex.net [95.108.131.191]) by forward4l.mail.yandex.net (Yandex) with ESMTP id 57DFA1440CDE; Fri, 24 Jan 2014 23:58:33 +0400 (MSK) Received: from smtp12.mail.yandex.net (localhost [127.0.0.1]) by smtp12.mail.yandex.net (Yandex) with ESMTP id D585A16A001C; Fri, 24 Jan 2014 23:58:32 +0400 (MSK) Received: from unknown (unknown [178.76.234.16]) by smtp12.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id UCjLpr80CK-wWaSN0b7; Fri, 24 Jan 2014 23:58:32 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: e43ddbbd-4549-4d9c-8488-0b98d2157929 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390593512; bh=u3nMOmO/JAJJz9lmkzYNgjuBx7V44AOYnF+JBcJ3Y6I=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=bk8rswl5iLUofP9pzi/C6zdwlcKl9xCy3FNVFHPFB7zyWnyDGav+t845RY+wb7UHx m/IDc6Z98YtpYZMmLqEd2hwLDpnV60SyLVlQ+8iwDHEf1iqTqi2AK+UgD5ar66nXdC Ch9P3n3P8jskndeNga4oux7xnl9FB1O9TDzNykeg= Authentication-Results: smtp12.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52E2C5E0.7070401@yandex.ru> Date: Fri, 24 Jan 2014 23:58:24 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Olivier Duchateau , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340894 - in head: databases/py-flask-sqlalchemy devel/py-flask-babel devel/py-gdata devel/py-speaklater graphics/py-wand net/py-ndg_httpsclient net/py-urllib3 security/py-itsdangerous ... References: <201401241334.s0ODYVxH046946@svn.freebsd.org> In-Reply-To: <201401241334.s0ODYVxH046946@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 19:58:36 -0000 Olivier Duchateau wrote on 24.01.2014 17:34: > Author: olivierd > Date: Fri Jan 24 13:34:31 2014 > New Revision: 340894 > URL: http://svnweb.freebsd.org/changeset/ports/340894 > QAT: https://qat.redports.org/buildarchive/r340894/ > > Log: > Convert my own Python ports to: > - STAGEDIR > - Replace USE_PYDISTUTILS= easy_install by USE_PYDISTUTILS= yes > > While I'm here > - Use PYDISTUTILS_AUTOPLIST > - Adjust or add LICENSE Olivier, I believe converting from python egg (easy_install) to plain python package format requires a PORTREVISION bump, because resulting package will be changed significantly. Here is, for example what the package contents looked before the change: ./site-packages: total 4 drwxr-xr-x 4 rm rm 512 24 Ñнв 23:51 Flask_Babel-0.9-py2.7.egg ./site-packages/Flask_Babel-0.9-py2.7.egg: total 8 drwxr-xr-x 2 rm rm 512 24 Ñнв 23:51 EGG-INFO drwxr-xr-x 2 rm rm 512 24 Ñнв 23:51 flask_babel ./site-packages/Flask_Babel-0.9-py2.7.egg/EGG-INFO: total 24 -rw-r--r-- 1 rm rm 1173 24 Ñнв 23:51 PKG-INFO -rw-r--r-- 1 rm rm 584 24 Ñнв 23:51 SOURCES.txt -rw-r--r-- 1 rm rm 1 24 Ñнв 23:51 dependency_links.txt -rw-r--r-- 1 rm rm 1 24 Ñнв 23:51 not-zip-safe -rw-r--r-- 1 rm rm 44 24 Ñнв 23:51 requires.txt -rw-r--r-- 1 rm rm 12 24 Ñнв 23:51 top_level.txt ./site-packages/Flask_Babel-0.9-py2.7.egg/flask_babel: total 80 -rw-r--r-- 1 rm rm 18797 24 Ñнв 23:51 __init__.py -rw-r--r-- 1 rm rm 21376 24 Ñнв 23:51 __init__.pyc -rw-r--r-- 1 rm rm 21163 24 Ñнв 23:51 __init__.pyo -rw-r--r-- 1 rm rm 366 24 Ñнв 23:51 _compat.py -rw-r--r-- 1 rm rm 553 24 Ñнв 23:51 _compat.pyc -rw-r--r-- 1 rm rm 553 24 Ñнв 23:51 _compat.pyo And here is how it looks after converting to USE_PYDISTUTILS=yes: [rm@smeshariki4 site-packages]> ls -lR total 8 drwxr-xr-x 2 rm rm 512 24 Ñнв 23:56 Flask_Babel-0.9-py2.7.egg-info drwxr-xr-x 2 rm rm 512 24 Ñнв 23:56 flask_babel ./Flask_Babel-0.9-py2.7.egg-info: total 28 -rw-r--r-- 1 rm rm 1173 24 Ñнв 23:56 PKG-INFO -rw-r--r-- 1 rm rm 584 24 Ñнв 23:56 SOURCES.txt -rw-r--r-- 1 rm rm 1 24 Ñнв 23:56 dependency_links.txt -rw-r--r-- 1 rm rm 1 27 июл 15:10 not-zip-safe -rw-r--r-- 1 rm rm 44 24 Ñнв 23:56 requires.txt -rw-r--r-- 1 rm rm 69 24 Ñнв 23:56 test_info.txt -rw-r--r-- 1 rm rm 12 24 Ñнв 23:56 top_level.txt ./flask_babel: total 72 -rw-r--r-- 1 rm rm 18797 28 июл 11:52 __init__.py -rw-r--r-- 1 rm rm 20462 24 Ñнв 23:56 __init__.pyc -rw-r--r-- 1 rm rm 20253 24 Ñнв 23:56 __init__.pyo -rw-r--r-- 1 rm rm 366 28 июл 11:51 _compat.py -rw-r--r-- 1 rm rm 527 24 Ñнв 23:56 _compat.pyc -rw-r--r-- 1 rm rm 527 24 Ñнв 23:56 _compat.pyo Would you please bump all the affected ports, you changed? -- Regards, Ruslan T.O.S. Of Reality From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 20:02:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0208EECA; Fri, 24 Jan 2014 20:02:57 +0000 (UTC) Received: from forward10l.mail.yandex.net (forward10l.mail.yandex.net [84.201.143.143]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A999A13B2; Fri, 24 Jan 2014 20:02:55 +0000 (UTC) Received: from smtp12.mail.yandex.net (smtp12.mail.yandex.net [95.108.131.191]) by forward10l.mail.yandex.net (Yandex) with ESMTP id 082C6BA0D4E; Sat, 25 Jan 2014 00:02:46 +0400 (MSK) Received: from smtp12.mail.yandex.net (localhost [127.0.0.1]) by smtp12.mail.yandex.net (Yandex) with ESMTP id 8488816A00C4; Sat, 25 Jan 2014 00:02:46 +0400 (MSK) Received: from unknown (unknown [178.76.234.16]) by smtp12.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id KC4HunlZ5T-2ka0TS3l; Sat, 25 Jan 2014 00:02:46 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: 20202a41-a4ea-4935-8c7f-32e7be8a3149 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390593766; bh=EyloYSXp3e9ltDRG1zvG8u2nlqZlbmBq4LKT0hr0qJo=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=Irxaj6AXw0n2nuGtcN3LyvGZcZ7TRJmxwpy/yVBsbEZwZLpzp4YdAne0W4GSO9S8Y zqmEK8+PYiCAoNjUhsmElS0VM+lASGoPudLhjq0yPZ1E/IWY0uojSWuRz7v9SdMueY r22EXuMsnR6w7tb7aBaWcVXPMBRM4MM10BKQ8ztY= Authentication-Results: smtp12.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52E2C6DE.6030900@yandex.ru> Date: Sat, 25 Jan 2014 00:02:38 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Marcus von Appen , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340925 - head/devel/py-singledispatch References: <201401241906.s0OJ64Gf078576@svn.freebsd.org> In-Reply-To: <201401241906.s0OJ64Gf078576@svn.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 20:02:57 -0000 Marcus von Appen wrote on 24.01.2014 23:06: > Author: mva > Date: Fri Jan 24 19:06:04 2014 > New Revision: 340925 > URL: http://svnweb.freebsd.org/changeset/ports/340925 > QAT: https://qat.redports.org/buildarchive/r340925/ > > Log: > - Convert USE_PYDISTUTILS=easy_install to yes > > Modified: > head/devel/py-singledispatch/Makefile > > Modified: head/devel/py-singledispatch/Makefile > ============================================================================== > --- head/devel/py-singledispatch/Makefile Fri Jan 24 19:04:50 2014 (r340924) > +++ head/devel/py-singledispatch/Makefile Fri Jan 24 19:06:04 2014 (r340925) > @@ -13,7 +13,7 @@ COMMENT= provides single-dispatch generi > LICENSE= MIT > > USE_PYTHON= yes > -USE_PYDISTUTILS= easy_install > +USE_PYDISTUTILS= yes > PYDISTUTILS_AUTOPLIST= yes > > .include Marcus, shouldn't changes like that follow PORTREVISION bump or I misunderstand something? -- Regards, Ruslan T.O.S. Of Reality From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 20:05:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EAD47FDC; Fri, 24 Jan 2014 20:05:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D712213D3; Fri, 24 Jan 2014 20:05:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OK5ls2001884; Fri, 24 Jan 2014 20:05:47 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OK5llK001882; Fri, 24 Jan 2014 20:05:47 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401242005.s0OK5llK001882@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Fri, 24 Jan 2014 20:05:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340931 - head/devel/py-msgpack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 20:05:48 -0000 Author: rm Date: Fri Jan 24 20:05:47 2014 New Revision: 340931 URL: http://svnweb.freebsd.org/changeset/ports/340931 QAT: https://qat.redports.org/buildarchive/r340931/ Log: - update to 0.4.0 - convert to using auto-generated packing list Submitted by: rm (myself) Approved by: zont (maintainer, by mail) Deleted: head/devel/py-msgpack/pkg-plist Modified: head/devel/py-msgpack/Makefile head/devel/py-msgpack/distinfo Modified: head/devel/py-msgpack/Makefile ============================================================================== --- head/devel/py-msgpack/Makefile Fri Jan 24 19:53:42 2014 (r340930) +++ head/devel/py-msgpack/Makefile Fri Jan 24 20:05:47 2014 (r340931) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= msgpack -PORTVERSION= 0.2.2 +PORTVERSION= 0.4.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,11 +13,8 @@ COMMENT= MessagePack (de)serializer for LICENSE= APACHE20 -USE_PYTHON= yes -USE_PYDISTUTILS= easy_install -PYDISTUTILS_INSTALLARGS= -O 1 -N -Z -S ${PYTHON_SITELIBDIR} -d ${PYEASYINSTALL_SITELIBDIR} ${WRKSRC}/dist/${PYEASYINSTALL_EGG} -PYDISTUTILS_PKGNAME= ${PORTNAME}_python -PYEASYINSTALL_ARCHDEP= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Modified: head/devel/py-msgpack/distinfo ============================================================================== --- head/devel/py-msgpack/distinfo Fri Jan 24 19:53:42 2014 (r340930) +++ head/devel/py-msgpack/distinfo Fri Jan 24 20:05:47 2014 (r340931) @@ -1,2 +1,2 @@ -SHA256 (msgpack-python-0.2.2.tar.gz) = 75cedc4d667a4e4d9eb5757544a7f6e6774b533760d8ea4c1b24fb844550a11c -SIZE (msgpack-python-0.2.2.tar.gz) = 57956 +SHA256 (msgpack-python-0.4.0.tar.gz) = d078094f0b29b2b93cb96a76febc70fbe90ae4eb131ff60a6dc038edda92c278 +SIZE (msgpack-python-0.4.0.tar.gz) = 111411 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 20:08:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80263164; Fri, 24 Jan 2014 20:08:33 +0000 (UTC) Received: from mail-wg0-x22d.google.com (mail-wg0-x22d.google.com [IPv6:2a00:1450:400c:c00::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6F87A13E5; Fri, 24 Jan 2014 20:08:32 +0000 (UTC) Received: by mail-wg0-f45.google.com with SMTP id n12so3402690wgh.0 for ; Fri, 24 Jan 2014 12:08:30 -0800 (PST) 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=pHNbuDTMy4MQRAPsgsikf0+VS9DsoG4mdYaJkb8H5zo=; b=I6WXjidPJh52oDCJ4Q2UnqNiRWnSqQ6QUgA7AY3UBsL6XdAI4zXhz5XE1ZWs9+z8NT 0GKghyiFII1omTiGyzvhuM9LSdhUvJzgX+F8z28X8YuB7MAd/rj+jjJvDSOvnMbWWmx+ QduXk2K99orzSIdyY0WZDuOUj0c+6TTLT0wpfIcHqVe4pt/siqQCJj+XOxQpStYuau1G pRjj56N5tw1fM12sfJBVl05eqfjQXkgSh/OHDER3puu7D1K4mHWLPN2ymOWMbsqcVBIf Hr8aCQSEMkp3DeCpb5+lrQwwybcIRVSg3KJtn1L3kI+1Y2k0gZXVDe9kyUEWzaR9Sa+Q UNyQ== X-Received: by 10.180.73.196 with SMTP id n4mr4443842wiv.24.1390594110873; Fri, 24 Jan 2014 12:08:30 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id co15sm4597643wjb.12.2014.01.24.12.08.29 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 24 Jan 2014 12:08:29 -0800 (PST) Sender: Baptiste Daroussin Date: Fri, 24 Jan 2014 21:08:27 +0100 From: Baptiste Daroussin To: Julio Merino Subject: Re: svn commit: r340929 - in head/devel: kyua kyua-atf-compat kyua-testers lutok Message-ID: <20140124200827.GF37299@ithaqua.etoilebsd.net> References: <201401241946.s0OJkv5m094049@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Zi0sgQQBxRFxMTsj" Content-Disposition: inline In-Reply-To: <201401241946.s0OJkv5m094049@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.17 Precedence: list List-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, 24 Jan 2014 20:08:33 -0000 --Zi0sgQQBxRFxMTsj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 24, 2014 at 07:46:57PM +0000, Julio Merino wrote: > Author: jmmv (src committer) > Date: Fri Jan 24 19:46:56 2014 > New Revision: 340929 > URL: http://svnweb.freebsd.org/changeset/ports/340929 > QAT: https://qat.redports.org/buildarchive/r340929/ >=20 > Log: > Add staging support to kyua* and lutok. > =20 > While doing this, consolidate file handling into pkg-plist (instead of > the previous split between the Makefile and the pkg-plist) for simplici= ty. > =20 > Reviewed by: asomers (ex-maintainer) > Approved by: bdrewery (ports) >=20 > Added: > head/devel/kyua-testers/pkg-plist (contents, props changed) > head/devel/kyua/pkg-plist (contents, props changed) > Modified: > head/devel/kyua-atf-compat/Makefile > head/devel/kyua-atf-compat/pkg-plist > head/devel/kyua-testers/Makefile > head/devel/kyua/Makefile > head/devel/lutok/Makefile > head/devel/lutok/pkg-plist >=20 > Modified: head/devel/kyua-atf-compat/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/kyua-atf-compat/Makefile Fri Jan 24 19:38:37 2014 (r340928) > +++ head/devel/kyua-atf-compat/Makefile Fri Jan 24 19:46:56 2014 (r340929) > @@ -19,7 +19,6 @@ USES=3D pkgconfig > =20 > OPTIONS_DEFINE=3D DOCS > =20 > -NO_STAGE=3D yes > .include > =20 > CONFIGURE_ARGS+=3D --docdir=3D${DOCSDIR} > @@ -29,18 +28,10 @@ CONFIGURE_ARGS+=3D --without-atf > .if ! ${PORT_OPTIONS:MDOCS} > MAKE_FLAGS+=3D doc_DATA=3D > .endif > -PLIST_SUBST+=3D TESTS=3D"@comment " > =20 > -PORTDATA=3D lib.subr tests_lib.subr > -PORTDOCS=3D AUTHORS COPYING NEWS README > -MAN1=3D atf-report.1 atf-run.1 atf2kyua.1 > - > -# Eliminate empty directories > -remove-docsdir: .SILENT > - ${RMDIR} ${DOCSDIR} > - > -.if ! ${PORT_OPTIONS:MDOCS} > -post-install: remove-docsdir > -.endif > +post-stage: > + # TODO(jmmv): Should not be necessary after updating this to 0.2. > + rmdir ${STAGEDIR}${PREFIX}/tests/kyua-atf-compat > + rmdir ${STAGEDIR}${PREFIX}/tests > =20 > .include >=20 > Modified: head/devel/kyua-atf-compat/pkg-plist > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=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/kyua-atf-compat/pkg-plist Fri Jan 24 19:38:37 2014 (r34092= 8) > +++ head/devel/kyua-atf-compat/pkg-plist Fri Jan 24 19:46:56 2014 (r34092= 9) > @@ -1,5 +1,15 @@ > +@comment $FreeBSD$ > bin/atf-report > bin/atf-run > bin/atf2kyua > -@dirrmtry tests/kyua-atf-compat > -@dirrmtry tests > +man/man1/atf-report.1.gz > +man/man1/atf-run.1.gz > +man/man1/atf2kyua.1.gz > +%%DATADIR%%/lib.subr > +%%DATADIR%%/tests_lib.subr > +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS > +%%PORTDOCS%%%%DOCSDIR%%/COPYING > +%%PORTDOCS%%%%DOCSDIR%%/NEWS > +%%PORTDOCS%%%%DOCSDIR%%/README > +%%PORTDOCS%%@dirrm %%DOCSDIR%% > +@dirrm %%DATADIR%% >=20 > Modified: head/devel/kyua-testers/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/kyua-testers/Makefile Fri Jan 24 19:38:37 2014 (r340928) > +++ head/devel/kyua-testers/Makefile Fri Jan 24 19:46:56 2014 (r340929) > @@ -16,26 +16,16 @@ GNU_CONFIGURE=3D yes > =20 > OPTIONS_DEFINE=3D DOCS > =20 > -NO_STAGE=3D yes > .include > =20 > CONFIGURE_ARGS+=3D --docdir=3D${DOCSDIR} > # TODO: install the tests, once FreeBSD has a system for ports to instal= l tests > CONFIGURE_ARGS+=3D --without-atf > =20 > -PLIST_FILES=3D libdata/pkgconfig/kyua-testers.pc libexec/kyua-atf-tester > -PLIST_FILES+=3D libexec/kyua-plain-tester libexec/kyua-tap-tester > +MAKE_FLAGS+=3D pkgconfigdir=3D${PREFIX}/libdata/pkgconfig > + > .if ! ${PORT_OPTIONS:MDOCS} > MAKE_FLAGS+=3D doc_DATA=3D > .endif > =20 > -PORTDOCS=3D AUTHORS COPYING NEWS README > -MAN1=3D kyua-atf-tester.1 kyua-plain-tester.1 kyua-tap-tester.1 kyua-tes= ter.1 > -MAN5=3D kyua-tester-list.5 kyua-tester-result.5 > -MAN7=3D kyua-atf-interface.7 kyua-plain-interface.7 kyua-tap-interface.7 > - > -post-patch: .SILENT > - @${REINPLACE_CMD} -e 's|@pkgconfigdir@|${PREFIX}/libdata/pkgconfig|' \ > - ${WRKSRC}/Makefile.in > - > .include >=20 > Added: head/devel/kyua-testers/pkg-plist > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/kyua-testers/pkg-plist Fri Jan 24 19:46:56 2014 (r340929) > @@ -0,0 +1,19 @@ > +@comment $FreeBSD$ > +libdata/pkgconfig/kyua-testers.pc > +libexec/kyua-atf-tester > +libexec/kyua-plain-tester > +libexec/kyua-tap-tester > +man/man1/kyua-atf-tester.1.gz > +man/man1/kyua-plain-tester.1.gz > +man/man1/kyua-tap-tester.1.gz > +man/man1/kyua-tester.1.gz > +man/man5/kyua-tester-list.5.gz > +man/man5/kyua-tester-result.5.gz > +man/man7/kyua-atf-interface.7.gz > +man/man7/kyua-plain-interface.7.gz > +man/man7/kyua-tap-interface.7.gz > +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS > +%%PORTDOCS%%%%DOCSDIR%%/COPYING > +%%PORTDOCS%%%%DOCSDIR%%/NEWS > +%%PORTDOCS%%%%DOCSDIR%%/README > +%%PORTDOCS%%@dirrm %%DOCSDIR%% >=20 > Modified: head/devel/kyua/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/kyua/Makefile Fri Jan 24 19:38:37 2014 (r340928) > +++ head/devel/kyua/Makefile Fri Jan 24 19:46:56 2014 (r340929) > @@ -28,13 +28,13 @@ SUB_FILES=3D kyua.conf > SUB_LIST=3D TESTS_USER=3D${TESTS_USER} > =20 > OPTIONS_DEFINE=3D DOCS EXAMPLES > -NO_STAGE=3D yes > .include > =20 > CONFIGURE_ARGS+=3D --without-doxygen > CONFIGURE_ARGS+=3D --docdir=3D${DOCSDIR} > # TODO: install the tests, once FreeBSD has a system for ports to instal= l tests > CONFIGURE_ARGS+=3D --without-atf > +MAKE_FLAGS+=3D examplesdir=3D${EXAMPLESDIR} > MAKE_FLAGS+=3D pkgdatadir=3D${DATADIR} > =20 > .if ! ${PORT_OPTIONS:MDOCS} > @@ -43,20 +43,9 @@ MAKE_FLAGS+=3D doc_DATA=3D > .if ! ${PORT_OPTIONS:MEXAMPLES} > MAKE_FLAGS+=3D dist_examples_DATA=3D > .endif > -PLIST_FILES=3D bin/kyua > -PLIST_DIRS=3D etc/kyua > -PLIST_FILES+=3D etc/kyua/kyua.conf > - > -PORTDATA=3D misc store examples > -PORTDOCS=3D AUTHORS COPYING NEWS README > -MAN1=3D kyua-about.1 kyua-config.1 kyua-db-exec.1 kyua-db-migrate.1 > -MAN1+=3D kyua-debug.1 kyua-help.1 kyua-list.1 kyua-report-html.1 > -MAN1+=3D kyua-report.1 kyua-test.1 kyua.1 > -MAN5=3D kyua.conf.5 kyuafile.5 > -MAN7=3D kyua-build-root.7 kyua-test-filters.7 > =20 > post-install: > - ${MKDIR} ${PREFIX}/etc/kyua/ > - ${INSTALL_DATA} ${WRKDIR}/kyua.conf ${PREFIX}/etc/kyua/ > + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/kyua/ > + ${INSTALL_DATA} ${WRKDIR}/kyua.conf ${STAGEDIR}${PREFIX}/etc/kyua/ > =20 > .include >=20 > Added: head/devel/kyua/pkg-plist > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/kyua/pkg-plist Fri Jan 24 19:46:56 2014 (r340929) > @@ -0,0 +1,36 @@ > +@comment $FreeBSD$ > +bin/kyua > +etc/kyua/kyua.conf > +man/man1/kyua-about.1.gz > +man/man1/kyua-config.1.gz > +man/man1/kyua-db-exec.1.gz > +man/man1/kyua-db-migrate.1.gz > +man/man1/kyua-debug.1.gz > +man/man1/kyua-help.1.gz > +man/man1/kyua-list.1.gz > +man/man1/kyua-report-html.1.gz > +man/man1/kyua-report.1.gz > +man/man1/kyua-test.1.gz > +man/man1/kyua.1.gz > +man/man5/kyua.conf.5.gz > +man/man5/kyuafile.5.gz > +man/man7/kyua-build-root.7.gz > +man/man7/kyua-test-filters.7.gz > +%%DATADIR%%/misc/context.html > +%%DATADIR%%/misc/index.html > +%%DATADIR%%/misc/report.css > +%%DATADIR%%/misc/test_result.html > +%%DATADIR%%/store/migrate_v1_v2.sql > +%%DATADIR%%/store/schema_v2.sql > +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS > +%%PORTDOCS%%%%DOCSDIR%%/COPYING > +%%PORTDOCS%%%%DOCSDIR%%/NEWS > +%%PORTDOCS%%%%DOCSDIR%%/README > +%%PORTDOCS%%@dirrm %%DOCSDIR%% > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Kyuafile.top > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kyua.conf > +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% > +@dirrm %%DATADIR%%/store > +@dirrm %%DATADIR%%/misc > +@dirrm %%DATADIR%% > +@dirrm etc/kyua >=20 > Modified: head/devel/lutok/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/lutok/Makefile Fri Jan 24 19:38:37 2014 (r340928) > +++ head/devel/lutok/Makefile Fri Jan 24 19:46:56 2014 (r340929) > @@ -18,6 +18,8 @@ USES=3D pkgconfig lua > =20 > OPTIONS_DEFINE=3D DOCS EXAMPLES > =20 > +.include > + > CONFIGURE_ARGS+=3D --docdir=3D${DOCSDIR} > CONFIGURE_ARGS+=3D --htmldir=3D${DOCSDIR}/html > # The distfile contains prebuilt doxygen files. Specify --without_doxyg= en so > @@ -33,14 +35,19 @@ CONFIGURE_ARGS+=3D LUA_CFLAGS=3D"-I${LUA_INC > CONFIGURE_ARGS+=3D LUA_LIBS=3D"-L${LUA_LIBDIR} -llua-${LUA_VER} -lm" > =20 > MAKE_FLAGS+=3D examplesdir=3D${EXAMPLESDIR} > - > -PORTDOCS=3D AUTHORS COPYING NEWS README html > -PORTEXAMPLES=3D Makefile bindings.cpp hello.cpp interpreter.cpp raii.cpp > +MAKE_FLAGS+=3D pkgconfigdir=3D${PREFIX}/libdata/pkgconfig > +.if ! ${PORT_OPTIONS:MDOCS} > +MAKE_FLAGS+=3D doc_DATA=3D > +.endif > +.if ! ${PORT_OPTIONS:MEXAMPLES} > +MAKE_FLAGS+=3D examples_DATA=3D > +.endif > =20 > PLIST_SUB+=3D TESTS=3D"@comment " > =20 > -post-patch: .SILENT > - @${REINPLACE_CMD} -e 's|@pkgconfigdir@|${PREFIX}/libdata/pkgconfig|' \ > - ${WRKSRC}/Makefile.in > +.if ! ${PORT_OPTIONS:MDOCS} > +pre-install: .SILENT > + ${RM} -rf ${WRKSRC}/api-docs > +.endif > =20 > .include >=20 > Modified: head/devel/lutok/pkg-plist > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=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/lutok/pkg-plist Fri Jan 24 19:38:37 2014 (r340928) > +++ head/devel/lutok/pkg-plist Fri Jan 24 19:46:56 2014 (r340929) > @@ -1,3 +1,4 @@ > +@comment $FreeBSD$ > include/lutok/c_gate.hpp > include/lutok/debug.hpp > include/lutok/exceptions.hpp > @@ -11,7 +12,223 @@ lib/liblutok.la > lib/liblutok.so > lib/liblutok.so.3 > libdata/pkgconfig/lutok.pc > -%%TESTS%%@exec mkdir -p %D/tests/lutok > -%%TESTS%%@dirrm tests/lutok > -%%TESTS%%@dirrmtry tests > +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS > +%%PORTDOCS%%%%DOCSDIR%%/COPYING > +%%PORTDOCS%%%%DOCSDIR%%/NEWS > +%%PORTDOCS%%%%DOCSDIR%%/README > +%%PORTDOCS%%%%DOCSDIR%%/html/tabs.css > +%%PORTDOCS%%%%DOCSDIR%%/html/jquery.js > +%%PORTDOCS%%%%DOCSDIR%%/html/dynsections.js > +%%PORTDOCS%%%%DOCSDIR%%/html/tab_a.png > +%%PORTDOCS%%%%DOCSDIR%%/html/tab_b.png > +%%PORTDOCS%%%%DOCSDIR%%/html/tab_h.png > +%%PORTDOCS%%%%DOCSDIR%%/html/tab_s.png > +%%PORTDOCS%%%%DOCSDIR%%/html/nav_h.png > +%%PORTDOCS%%%%DOCSDIR%%/html/nav_f.png > +%%PORTDOCS%%%%DOCSDIR%%/html/bc_s.png > +%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.png > +%%PORTDOCS%%%%DOCSDIR%%/html/closed.png > +%%PORTDOCS%%%%DOCSDIR%%/html/open.png > +%%PORTDOCS%%%%DOCSDIR%%/html/bdwn.png > +%%PORTDOCS%%%%DOCSDIR%%/html/nav_g.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2blank.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2doc.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2folderclosed.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2folderopen.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2ns.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2mo.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2cl.png > +%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.css > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2lastnode.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2link.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2mlastnode.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2mnode.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2node.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2plastnode.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2pnode.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2vertline.png > +%%PORTDOCS%%%%DOCSDIR%%/html/ftv2splitbar.png > +%%PORTDOCS%%%%DOCSDIR%%/html/search/mag_sel.png > +%%PORTDOCS%%%%DOCSDIR%%/html/search/search_l.png > +%%PORTDOCS%%%%DOCSDIR%%/html/search/search_m.png > +%%PORTDOCS%%%%DOCSDIR%%/html/search/search_r.png > +%%PORTDOCS%%%%DOCSDIR%%/html/search/close.png > +%%PORTDOCS%%%%DOCSDIR%%/html/search/search.css > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_5f.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_5f.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_61.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_61.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_63.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_63.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_64.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_64.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_65.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_65.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_66.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_66.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_67.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_67.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_68.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_68.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_69.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_69.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6c.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6c.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6e.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6e.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6f.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_6f.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_70.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_70.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_72.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_72.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_73.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_73.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_74.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_74.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_75.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_75.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_77.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_77.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_7e.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/all_7e.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_61.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_61.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_64.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_63.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_64.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_65.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_65.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_66.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_66.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_69.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_69.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_73.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/classes_73.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/namespaces_61.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/namespaces_61.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_63.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_64.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_64.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_65.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_65.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_6f.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_6f.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_73.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_73.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_74.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/files_74.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_61.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_61.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_63.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_63.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_64.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_64.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_65.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_65.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_66.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_66.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_67.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_67.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_68.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_68.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_69.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_69.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6c.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6c.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6e.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6e.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6f.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_6f.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_70.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_70.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_72.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_72.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_73.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_73.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_74.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_74.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_75.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_75.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_77.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_77.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_7e.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/functions_7e.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_5f.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_5f.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_6c.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_6c.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_6f.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_6f.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_73.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/variables_73.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/defines_72.html > +%%PORTDOCS%%%%DOCSDIR%%/html/search/defines_72.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/search.js > +%%PORTDOCS%%%%DOCSDIR%%/html/search/nomatches.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00013_source.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00016_source.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00019_source.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00022_source.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00025_source.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00028_source.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00031_source.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00013.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00016.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00019.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00022.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00025.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00028.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00031.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00032.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00033.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00034.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00035.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00001.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00039.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00011.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00040.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00003.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00041.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00004.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00042.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00005.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00005.png > +%%PORTDOCS%%%%DOCSDIR%%/html/a00043.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00002.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00002.png > +%%PORTDOCS%%%%DOCSDIR%%/html/a00044.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00006.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00006.png > +%%PORTDOCS%%%%DOCSDIR%%/html/a00045.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00007.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00046.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00008.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00047.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00009.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00048.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00010.html > +%%PORTDOCS%%%%DOCSDIR%%/html/a00049.html > +%%PORTDOCS%%%%DOCSDIR%%/html/index.html > +%%PORTDOCS%%%%DOCSDIR%%/html/namespaces.html > +%%PORTDOCS%%%%DOCSDIR%%/html/namespacemembers.html > +%%PORTDOCS%%%%DOCSDIR%%/html/namespacemembers_func.html > +%%PORTDOCS%%%%DOCSDIR%%/html/annotated.html > +%%PORTDOCS%%%%DOCSDIR%%/html/classes.html > +%%PORTDOCS%%%%DOCSDIR%%/html/hierarchy.html > +%%PORTDOCS%%%%DOCSDIR%%/html/functions.html > +%%PORTDOCS%%%%DOCSDIR%%/html/functions_func.html > +%%PORTDOCS%%%%DOCSDIR%%/html/functions_vars.html > +%%PORTDOCS%%%%DOCSDIR%%/html/files.html > +%%PORTDOCS%%%%DOCSDIR%%/html/globals.html > +%%PORTDOCS%%%%DOCSDIR%%/html/globals_defs.html > +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/search > +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html > +%%PORTDOCS%%@dirrm %%DOCSDIR%% > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bindings.cpp > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello.cpp > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/interpreter.cpp > +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/raii.cpp > +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% > @dirrm include/lutok @comment $FreeBSD$ is wrong in pkg-plist regards, Bapt --Zi0sgQQBxRFxMTsj Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (FreeBSD) iEYEARECAAYFAlLiyDoACgkQ8kTtMUmk6ExizwCfVsd8dOsq82XNOowubVjJOa+K +yAAn1XrCuhXuR1WuDDyQznwQqsTyovZ =G2sX -----END PGP SIGNATURE----- --Zi0sgQQBxRFxMTsj-- From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 20:32:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3021A7AA; Fri, 24 Jan 2014 20:32:36 +0000 (UTC) Received: from smtprelay03.ispgateway.de (smtprelay03.ispgateway.de [80.67.29.28]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B00DD162C; Fri, 24 Jan 2014 20:32:35 +0000 (UTC) Received: from [89.182.99.57] (helo=localhost) by smtprelay03.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1W6nQR-0000fV-DO; Fri, 24 Jan 2014 21:32:27 +0100 Date: Fri, 24 Jan 2014 21:32:26 +0100 From: Marcus von Appen To: Ruslan Makhmatkhanov Subject: Re: svn commit: r340925 - head/devel/py-singledispatch Message-ID: <20140124203226.GA1396@medusa.sysfault.org> Mail-Followup-To: Ruslan Makhmatkhanov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201401241906.s0OJ64Gf078576@svn.freebsd.org> <52E2C6DE.6030900@yandex.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline In-Reply-To: <52E2C6DE.6030900@yandex.ru> User-Agent: Mutt/1.5.22 (2013-10-16) X-Df-Sender: MTEyNTc0Mg== 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.17 Precedence: list Reply-To: Marcus von Appen List-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, 24 Jan 2014 20:32:36 -0000 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On, Fri Jan 24, 2014, Ruslan Makhmatkhanov wrote: > Marcus von Appen wrote on 24.01.2014 23:06: > > Author: mva > > Date: Fri Jan 24 19:06:04 2014 > > New Revision: 340925 > > URL: http://svnweb.freebsd.org/changeset/ports/340925 > > QAT: https://qat.redports.org/buildarchive/r340925/ > > > > Log: > > - Convert USE_PYDISTUTILS=easy_install to yes > > > > Modified: > > head/devel/py-singledispatch/Makefile > > > > Modified: head/devel/py-singledispatch/Makefile > > ============================================================================== > > --- head/devel/py-singledispatch/Makefile Fri Jan 24 19:04:50 2014 (r340924) > > +++ head/devel/py-singledispatch/Makefile Fri Jan 24 19:06:04 2014 (r340925) > > @@ -13,7 +13,7 @@ COMMENT= provides single-dispatch generi > > LICENSE= MIT > > > > USE_PYTHON= yes > > -USE_PYDISTUTILS= easy_install > > +USE_PYDISTUTILS= yes > > PYDISTUTILS_AUTOPLIST= yes > > > > .include > > Marcus, shouldn't changes like that follow PORTREVISION bump or I > misunderstand something? The package contents change, but it does not have any influence on dependent ports nor on functionality nor on requirements. Thus I do not see it as necessary to bump the port revision. I'm fine however with bumping PORTREVISION, if that's the desired approach of dealing with that. Cheers Marcus --17pEHd4RhPHOinZp Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iEYEARECAAYFAlLizdoACgkQi68/ErJnpkeQHACfU5xZ5WIbf+oNKgedgoVl4Y8/ eLsAnA0t/lnpMv2I5IrB9GofOGSznjHI =sn9Y -----END PGP SIGNATURE----- --17pEHd4RhPHOinZp-- From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 21:15:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1AC116D; Fri, 24 Jan 2014 21:15:14 +0000 (UTC) Received: from forward9l.mail.yandex.net (forward9l.mail.yandex.net [84.201.143.142]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8615A192C; Fri, 24 Jan 2014 21:15:14 +0000 (UTC) Received: from smtp13.mail.yandex.net (smtp13.mail.yandex.net [95.108.130.68]) by forward9l.mail.yandex.net (Yandex) with ESMTP id BD92BE60EBF; Sat, 25 Jan 2014 01:15:05 +0400 (MSK) Received: from smtp13.mail.yandex.net (localhost [127.0.0.1]) by smtp13.mail.yandex.net (Yandex) with ESMTP id 583BDE40057; Sat, 25 Jan 2014 01:15:05 +0400 (MSK) Received: from unknown (unknown [178.76.234.16]) by smtp13.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id zkTyHekikJ-F4smiQ2l; Sat, 25 Jan 2014 01:15:04 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: a3dd7a5c-b8aa-49e0-bb51-e6cf02578c17 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390598104; bh=u07wdrhTZJ06MUJ5mmdc5lG5OuakVZEB53vOA/C7oK0=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=h0fc3OwwXSJM9C5VoyfN2JtQA5wCy/Ho7ar2OsUDKpPsXZg2TJwFLBuMQKWG/85i3 38FC+TxQe1W7zq3QxeeZqjNXWTvNsJVVFgesIQC5GdThTq1cnN3YgYcsR4/YKHS40+ +Lr4tql6mzpdeN9psqR6vr5XQxV1lJzON1XtZXMM= Authentication-Results: smtp13.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52E2D7D0.40908@yandex.ru> Date: Sat, 25 Jan 2014 01:14:56 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340925 - head/devel/py-singledispatch References: <201401241906.s0OJ64Gf078576@svn.freebsd.org> <52E2C6DE.6030900@yandex.ru> <20140124203226.GA1396@medusa.sysfault.org> In-Reply-To: <20140124203226.GA1396@medusa.sysfault.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 21:15:14 -0000 Marcus von Appen wrote on 25.01.2014 00:32: > On, Fri Jan 24, 2014, Ruslan Makhmatkhanov wrote: > >> Marcus von Appen wrote on 24.01.2014 23:06: >>> Author: mva >>> Date: Fri Jan 24 19:06:04 2014 >>> New Revision: 340925 >>> URL: http://svnweb.freebsd.org/changeset/ports/340925 >>> QAT: https://qat.redports.org/buildarchive/r340925/ >>> >>> Log: >>> - Convert USE_PYDISTUTILS=easy_install to yes >>> >>> Modified: >>> head/devel/py-singledispatch/Makefile >>> >>> Modified: head/devel/py-singledispatch/Makefile >>> ============================================================================== >>> --- head/devel/py-singledispatch/Makefile Fri Jan 24 19:04:50 2014 (r340924) >>> +++ head/devel/py-singledispatch/Makefile Fri Jan 24 19:06:04 2014 (r340925) >>> @@ -13,7 +13,7 @@ COMMENT= provides single-dispatch generi >>> LICENSE= MIT >>> >>> USE_PYTHON= yes >>> -USE_PYDISTUTILS= easy_install >>> +USE_PYDISTUTILS= yes >>> PYDISTUTILS_AUTOPLIST= yes >>> >>> .include >> >> Marcus, shouldn't changes like that follow PORTREVISION bump or I >> misunderstand something? > > The package contents change, but it does not have any influence on > dependent ports nor on functionality nor on requirements. Thus > I do not see it as necessary to bump the port revision. > > I'm fine however with bumping PORTREVISION, if that's the desired > approach of dealing with that. > > Cheers > Marcus I think it's better to bump to ease bug reports investigation - there will be no situation where users and ports tree will have different packages. -- Regards, Ruslan T.O.S. Of Reality From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 21:22:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D91FB3D5; Fri, 24 Jan 2014 21:22:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C587A19D7; Fri, 24 Jan 2014 21:22:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OLM90I032213; Fri, 24 Jan 2014 21:22:09 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OLM9Z8032212; Fri, 24 Jan 2014 21:22:09 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401242122.s0OLM9Z8032212@svn.freebsd.org> From: Antoine Brodin Date: Fri, 24 Jan 2014 21:22:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340932 - 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.17 Precedence: list List-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, 24 Jan 2014 21:22:09 -0000 Author: antoine Date: Fri Jan 24 21:22:09 2014 New Revision: 340932 URL: http://svnweb.freebsd.org/changeset/ports/340932 QAT: https://qat.redports.org/buildarchive/r340932/ Log: BSD4CLAUSE is FSF approved With hat: portmgr Modified: head/Mk/bsd.licenses.db.mk Modified: head/Mk/bsd.licenses.db.mk ============================================================================== --- head/Mk/bsd.licenses.db.mk Fri Jan 24 20:05:47 2014 (r340931) +++ head/Mk/bsd.licenses.db.mk Fri Jan 24 21:22:09 2014 (r340932) @@ -103,7 +103,7 @@ _LICENSE_NAME_BSD3CLAUSE= BSD 3-clause " _LICENSE_GROUPS_BSD3CLAUSE= FSF OSI COPYFREE _LICENSE_NAME_BSD4CLAUSE= BSD 4-clause "Original" or "Old" License -_LICENSE_GROUPS_BSD4CLAUSE= +_LICENSE_GROUPS_BSD4CLAUSE= FSF _LICENSE_NAME_BSL= Boost Software License _LICENSE_GROUPS_BSL= FSF OSI COPYFREE From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 21:28:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B770F6C6; Fri, 24 Jan 2014 21:28:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A38AB1A12; Fri, 24 Jan 2014 21:28:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OLSOMX033078; Fri, 24 Jan 2014 21:28:24 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OLSN7q033071; Fri, 24 Jan 2014 21:28:23 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401242128.s0OLSN7q033071@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Fri, 24 Jan 2014 21:28:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340933 - in head/devel: py-Acquisition py-DateTime py-DocumentTemplate py-ExtensionClass py-Missing py-MultiMapping py-Persistence X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 21:28:24 -0000 Author: rm Date: Fri Jan 24 21:28:22 2014 New Revision: 340933 URL: http://svnweb.freebsd.org/changeset/ports/340933 QAT: https://qat.redports.org/buildarchive/r340933/ Log: - convert to auto-generated packing list - bump PORTREVISION Deleted: head/devel/py-Acquisition/pkg-plist head/devel/py-DateTime/pkg-plist head/devel/py-DocumentTemplate/pkg-plist head/devel/py-ExtensionClass/pkg-plist head/devel/py-Missing/pkg-plist head/devel/py-MultiMapping/pkg-plist head/devel/py-Persistence/pkg-plist Modified: head/devel/py-Acquisition/Makefile head/devel/py-DateTime/Makefile head/devel/py-DocumentTemplate/Makefile head/devel/py-ExtensionClass/Makefile head/devel/py-Missing/Makefile head/devel/py-MultiMapping/Makefile head/devel/py-Persistence/Makefile Modified: head/devel/py-Acquisition/Makefile ============================================================================== --- head/devel/py-Acquisition/Makefile Fri Jan 24 21:22:09 2014 (r340932) +++ head/devel/py-Acquisition/Makefile Fri Jan 24 21:28:22 2014 (r340933) @@ -2,6 +2,7 @@ PORTNAME= Acquisition PORTVERSION= 4.0a1 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,11 +16,9 @@ LICENSE= ZPL21 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ExtensionClass>=4.0:${PORTSDIR}/devel/py-ExtensionClass \ ${PYTHON_PKGNAMEPREFIX}zope.interface>=0:${PORTSDIR}/devel/py-zope.interface -PYEASYINSTALL_ARCHDEP= yes USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes USE_ZIP= yes -NO_STAGE= yes - .include Modified: head/devel/py-DateTime/Makefile ============================================================================== --- head/devel/py-DateTime/Makefile Fri Jan 24 21:22:09 2014 (r340932) +++ head/devel/py-DateTime/Makefile Fri Jan 24 21:28:22 2014 (r340933) @@ -2,6 +2,7 @@ PORTNAME= DateTime PORTVERSION= 3.0.3 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP @@ -16,10 +17,9 @@ LICENSE= ZPL21 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>=0:${PORTSDIR}/devel/py-pytz \ ${PYTHON_PKGNAMEPREFIX}zope.interface>=0:${PORTSDIR}/devel/py-zope.interface -USE_PYTHON= 2 -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes .include Modified: head/devel/py-DocumentTemplate/Makefile ============================================================================== --- head/devel/py-DocumentTemplate/Makefile Fri Jan 24 21:22:09 2014 (r340932) +++ head/devel/py-DocumentTemplate/Makefile Fri Jan 24 21:28:22 2014 (r340933) @@ -2,6 +2,7 @@ PORTNAME= DocumentTemplate PORTVERSION= 2.13.2 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,11 +21,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Acce ${PYTHON_PKGNAMEPREFIX}zope.sequencesort>=0:${PORTSDIR}/devel/py-zope.sequencesort \ ${PYTHON_PKGNAMEPREFIX}zope.structuredtext>=0:${PORTSDIR}/textproc/py-zope.structuredtext -PYEASYINSTALL_ARCHDEP= yes USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes USE_ZIP= yes -NO_STAGE= yes - .include Modified: head/devel/py-ExtensionClass/Makefile ============================================================================== --- head/devel/py-ExtensionClass/Makefile Fri Jan 24 21:22:09 2014 (r340932) +++ head/devel/py-ExtensionClass/Makefile Fri Jan 24 21:28:22 2014 (r340933) @@ -2,6 +2,7 @@ PORTNAME= ExtensionClass PORTVERSION= 4.0a1 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,11 +13,9 @@ COMMENT= Metaclass for subclassable exte LICENSE= ZPL21 -PYEASYINSTALL_ARCHDEP= yes USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes USE_ZIP= yes -NO_STAGE= yes - .include Modified: head/devel/py-Missing/Makefile ============================================================================== --- head/devel/py-Missing/Makefile Fri Jan 24 21:22:09 2014 (r340932) +++ head/devel/py-Missing/Makefile Fri Jan 24 21:28:22 2014 (r340933) @@ -2,6 +2,7 @@ PORTNAME= Missing PORTVERSION= 2.13.1 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,11 +15,9 @@ LICENSE= ZPL21 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ExtensionClass>=0:${PORTSDIR}/devel/py-ExtensionClass -PYEASYINSTALL_ARCHDEP= yes USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes USE_ZIP= yes -NO_STAGE= yes - .include Modified: head/devel/py-MultiMapping/Makefile ============================================================================== --- head/devel/py-MultiMapping/Makefile Fri Jan 24 21:22:09 2014 (r340932) +++ head/devel/py-MultiMapping/Makefile Fri Jan 24 21:28:22 2014 (r340933) @@ -2,6 +2,7 @@ PORTNAME= MultiMapping PORTVERSION= 2.13.0 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,11 +15,9 @@ LICENSE= ZPL21 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ExtensionClass>=0:${PORTSDIR}/devel/py-ExtensionClass -PYEASYINSTALL_ARCHDEP= yes USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes USE_ZIP= yes -NO_STAGE= yes - .include Modified: head/devel/py-Persistence/Makefile ============================================================================== --- head/devel/py-Persistence/Makefile Fri Jan 24 21:22:09 2014 (r340932) +++ head/devel/py-Persistence/Makefile Fri Jan 24 21:28:22 2014 (r340933) @@ -2,6 +2,7 @@ PORTNAME= Persistence PORTVERSION= 2.13.2 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,11 +16,9 @@ LICENSE= ZPL21 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ExtensionClass>=0:${PORTSDIR}/devel/py-ExtensionClass \ zodb${PYTHON_PKGNAMESUFFIX}>=0:${PORTSDIR}/databases/zodb3 -PYEASYINSTALL_ARCHDEP= yes USE_PYTHON= yes -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes USE_ZIP= yes -NO_STAGE= yes - .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 21:56:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8E31F45; Fri, 24 Jan 2014 21:56:26 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 692AA1D2D; Fri, 24 Jan 2014 21:56:26 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id B2BC2BDC77; Fri, 24 Jan 2014 22:56:22 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id 8DB01BDC56; Fri, 24 Jan 2014 22:56:22 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id 32EADCCEF116; Fri, 24 Jan 2014 22:56:20 +0100 (CET) Date: Fri, 24 Jan 2014 22:56:18 +0100 From: Mathieu Arnold To: Marcus von Appen , Ruslan Makhmatkhanov Subject: Re: svn commit: r340925 - head/devel/py-singledispatch Message-ID: In-Reply-To: <20140124203226.GA1396@medusa.sysfault.org> References: <201401241906.s0OJ64Gf078576@svn.freebsd.org> <52E2C6DE.6030900@yandex.ru> <20140124203226.GA1396@medusa.sysfault.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline 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.17 Precedence: list List-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, 24 Jan 2014 21:56:26 -0000 +--On 24 janvier 2014 21:32:26 +0100 Marcus von Appen wrote: |> > USE_PYTHON= yes |> > -USE_PYDISTUTILS= easy_install |> > +USE_PYDISTUTILS= yes |> > PYDISTUTILS_AUTOPLIST= yes |> > |> > .include |> |> Marcus, shouldn't changes like that follow PORTREVISION bump or I |> misunderstand something? | | The package contents change, but it does not have any influence on | dependent ports nor on functionality nor on requirements. Thus | I do not see it as necessary to bump the port revision. | | I'm fine however with bumping PORTREVISION, if that's the desired | approach of dealing with that. It *is* the desired approach, the rule is simple, if the package can changes, whatever option or knob being used, PORTREVISION is to be bumped. -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 22:01:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 89E55314; Fri, 24 Jan 2014 22:01:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7319A1DD9; Fri, 24 Jan 2014 22:01:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OM1nER047228; Fri, 24 Jan 2014 22:01:49 GMT (envelope-from netchild@svn.freebsd.org) Received: (from netchild@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OM1mRV047225; Fri, 24 Jan 2014 22:01:48 GMT (envelope-from netchild@svn.freebsd.org) Message-Id: <201401242201.s0OM1mRV047225@svn.freebsd.org> From: Alexander Leidinger Date: Fri, 24 Jan 2014 22:01:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340934 - head/emulators/linux_base-c6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 22:01:49 -0000 Author: netchild Date: Fri Jan 24 22:01:48 2014 New Revision: 340934 URL: http://svnweb.freebsd.org/changeset/ports/340934 QAT: https://qat.redports.org/buildarchive/r340934/ Log: Update to 6.4. Submitted by: Johannes Meixner Modified: head/emulators/linux_base-c6/Makefile head/emulators/linux_base-c6/distinfo.i686 head/emulators/linux_base-c6/pkg-plist Modified: head/emulators/linux_base-c6/Makefile ============================================================================== --- head/emulators/linux_base-c6/Makefile Fri Jan 24 21:28:22 2014 (r340933) +++ head/emulators/linux_base-c6/Makefile Fri Jan 24 22:01:48 2014 (r340934) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= c6 -PORTVERSION= 6.2 +PORTVERSION= 6.4 CATEGORIES= emulators linux MASTER_SITES= http://vault.centos.org/${PORTVERSION}/os/i386/Packages/ PKGNAMEPREFIX= linux_base- @@ -14,85 +14,85 @@ MAINTAINER= emulation@FreeBSD.org COMMENT= Base set of packages needed in Linux mode for i386/amd64 (Linux CentOS 6.2) BIN_DISTFILES= basesystem-10.0-4.el6.noarch.rpm \ - bash-4.1.2-8.el6.centos.${LINUX_RPM_ARCH}.rpm \ + bash-4.1.2-14.el6.${LINUX_RPM_ARCH}.rpm \ bzip2-1.0.5-7.el6_0.${LINUX_RPM_ARCH}.rpm \ bzip2-libs-1.0.5-7.el6_0.${LINUX_RPM_ARCH}.rpm \ compat-db43-4.3.29-15.el6.${LINUX_RPM_ARCH}.rpm \ compat-libstdc++-33-3.2.3-69.el6.${LINUX_RPM_ARCH}.rpm \ compat-libstdc++-296-2.96-144.el6.${LINUX_RPM_ARCH}.rpm \ - coreutils-8.4-16.el6.${LINUX_RPM_ARCH}.rpm \ - db4-4.7.25-16.el6.${LINUX_RPM_ARCH}.rpm \ - e2fsprogs-1.41.12-11.el6.${LINUX_RPM_ARCH}.rpm \ - e2fsprogs-libs-1.41.12-11.el6.${LINUX_RPM_ARCH}.rpm \ + coreutils-8.4-19.el6.${LINUX_RPM_ARCH}.rpm \ + db4-4.7.25-17.el6.${LINUX_RPM_ARCH}.rpm \ + e2fsprogs-1.41.12-14.el6.${LINUX_RPM_ARCH}.rpm \ + e2fsprogs-libs-1.41.12-14.el6.${LINUX_RPM_ARCH}.rpm \ elfutils-0.152-1.el6.${LINUX_RPM_ARCH}.rpm \ - centos-release-6-2.el6.centos.7.${LINUX_RPM_ARCH}.rpm \ + centos-release-6-4.el6.centos.10.${LINUX_RPM_ARCH}.rpm \ filesystem-2.4.30-3.el6.${LINUX_RPM_ARCH}.rpm \ - freetype-2.3.11-6.el6_1.7.${LINUX_RPM_ARCH}.rpm \ + freetype-2.3.11-6.el6_2.9.${LINUX_RPM_ARCH}.rpm \ gdbm-1.8.0-36.el6.${LINUX_RPM_ARCH}.rpm \ - glib2-2.22.5-6.el6.${LINUX_RPM_ARCH}.rpm \ - glibc-2.12-1.47.el6.${LINUX_RPM_ARCH}.rpm \ - glibc-common-2.12-1.47.el6.${LINUX_RPM_ARCH}.rpm \ - grep-2.6.3-2.el6.${LINUX_RPM_ARCH}.rpm \ + glib2-2.22.5-7.el6.${LINUX_RPM_ARCH}.rpm \ + glibc-2.12-1.107.el6.${LINUX_RPM_ARCH}.rpm \ + glibc-common-2.12-1.107.el6.${LINUX_RPM_ARCH}.rpm \ + grep-2.6.3-3.el6.${LINUX_RPM_ARCH}.rpm \ info-4.13a-8.el6.${LINUX_RPM_ARCH}.rpm \ - keyutils-1.4-3.el6.${LINUX_RPM_ARCH}.rpm \ - krb5-libs-1.9-22.el6.${LINUX_RPM_ARCH}.rpm \ + keyutils-1.4-4.el6.${LINUX_RPM_ARCH}.rpm \ + krb5-libs-1.10.3-10.el6.${LINUX_RPM_ARCH}.rpm \ libacl-2.2.49-6.el6.${LINUX_RPM_ARCH}.rpm \ libattr-2.4.44-7.el6.${LINUX_RPM_ARCH}.rpm \ libcap-2.16-5.5.el6.${LINUX_RPM_ARCH}.rpm \ - libgcc-4.4.6-3.el6.${LINUX_RPM_ARCH}.rpm \ + libgcc-4.4.7-3.el6.${LINUX_RPM_ARCH}.rpm \ libidn-1.18-2.el6.${LINUX_RPM_ARCH}.rpm \ - libselinux-2.0.94-5.2.el6.${LINUX_RPM_ARCH}.rpm \ + libselinux-2.0.94-5.3.el6.${LINUX_RPM_ARCH}.rpm \ libsepol-2.0.41-4.el6.${LINUX_RPM_ARCH}.rpm \ - libstdc++-4.4.6-3.el6.${LINUX_RPM_ARCH}.rpm \ + libstdc++-4.4.7-3.el6.${LINUX_RPM_ARCH}.rpm \ ncurses-5.7-3.20090208.el6.${LINUX_RPM_ARCH}.rpm \ ncurses-libs-5.7-3.20090208.el6.${LINUX_RPM_ARCH}.rpm \ - pcre-7.8-3.1.el6.${LINUX_RPM_ARCH}.rpm \ + pcre-7.8-6.el6.${LINUX_RPM_ARCH}.rpm \ popt-1.13-7.el6.${LINUX_RPM_ARCH}.rpm \ - readline-6.0-3.el6.${LINUX_RPM_ARCH}.rpm \ + readline-6.0-4.el6.${LINUX_RPM_ARCH}.rpm \ setserial-2.17-25.el6.${LINUX_RPM_ARCH}.rpm \ - setup-2.8.14-13.el6.noarch.rpm \ + setup-2.8.14-20.el6.noarch.rpm \ slang-2.2.1-1.el6.${LINUX_RPM_ARCH}.rpm \ - zlib-1.2.3-27.el6.${LINUX_RPM_ARCH}.rpm + zlib-1.2.3-29.el6.${LINUX_RPM_ARCH}.rpm .if defined(PACKAGE_BUILDING) MASTER_SITES+= http://vault.centos.org/${PORTVERSION}/os/Source/SPackages/ SRC_DISTFILES= basesystem-10.0-4.el6.src.rpm \ - bash-4.1.2-8.el6.centos.src.rpm \ + bash-4.1.2-14.el6.src.rpm \ bzip2-1.0.5-7.el6_0.src.rpm \ - coreutils-8.4-16.el6.src.rpm \ + coreutils-8.4-19.el6.src.rpm \ compat-db-4.6.21-15.el6.src.rpm \ compat-gcc-296-2.96-144.el6.src.rpm \ compat-gcc-32-3.2.3-69.el6.src.rpm \ - db4-4.7.25-16.el6.src.rpm \ - e2fsprogs-1.41.12-11.el6.src.rpm \ + db4-4.7.25-17.el6.src.rpm \ + e2fsprogs-1.41.12-14.el6.src.rpm \ elfutils-0.152-1.el6.src.rpm \ - centos-release-6-2.el6.centos.7.src.rpm \ + centos-release-6-4.el6.centos.10.src.rpm \ filesystem-2.4.30-3.el6.src.rpm \ - freetype-2.3.11-6.el6_1.7.src.rpm \ + freetype-2.3.11-6.el6_2.9.src.rpm \ gdbm-1.8.0-36.el6.src.rpm \ - glib2-2.22.5-6.el6.src.rpm \ - glibc-2.12-1.47.el6.src.rpm \ - grep-2.6.3-2.el6.src.rpm \ + glib2-2.22.5-7.el6.src.rpm \ + glibc-2.12-1.107.el6.src.rpm \ + grep-2.6.3-3.el6.src.rpm \ texinfo-4.13a-8.el6.src.rpm \ - keyutils-1.4-3.el6.src.rpm \ - krb5-1.9-22.el6.src.rpm \ + keyutils-1.4-4.el6.src.rpm \ + krb5-1.10.3-10.el6.src.rpm \ acl-2.2.49-6.el6.src.rpm \ attr-2.4.44-7.el6.src.rpm \ libcap-2.16-5.5.el6.src.rpm \ - gcc-4.4.6-3.el6.src.rpm \ + gcc-4.4.7-3.el6.src.rpm \ libidn-1.18-2.el6.src.rpm \ - libselinux-2.0.94-5.2.el6.src.rpm \ + libselinux-2.0.94-5.3.el6.src.rpm \ libsepol-2.0.41-4.el6.src.rpm \ ncurses-5.7-3.20090208.el6.src.rpm \ - pcre-7.8-3.1.el6.src.rpm \ + pcre-7.8-6.el6.src.rpm \ popt-1.13-7.el6.src.rpm \ - readline-6.0-3.el6.src.rpm \ + readline-6.0-4.el6.src.rpm \ setserial-2.17-25.el6.src.rpm \ - setup-2.8.14-13.el6.src.rpm \ + setup-2.8.14-20.el6.src.rpm \ slang-2.2.1-1.el6.src.rpm \ - zlib-1.2.3-27.el6.src.rpm + zlib-1.2.3-29.el6.src.rpm ALWAYS_KEEP_DISTFILES= yes .endif Modified: head/emulators/linux_base-c6/distinfo.i686 ============================================================================== --- head/emulators/linux_base-c6/distinfo.i686 Fri Jan 24 21:28:22 2014 (r340933) +++ head/emulators/linux_base-c6/distinfo.i686 Fri Jan 24 22:01:48 2014 (r340934) @@ -1,150 +1,150 @@ -SHA256 (rpm/i686/centos/6.2/basesystem-10.0-4.el6.noarch.rpm) = 18860007697438e375733bb4a36a599daac2e2ae95d98a74c436a10d0974710e -SIZE (rpm/i686/centos/6.2/basesystem-10.0-4.el6.noarch.rpm) = 4784 -SHA256 (rpm/i686/centos/6.2/bash-4.1.2-8.el6.centos.i686.rpm) = cc9f3d41c450840aac7fd0cb88dd041944a411c42955e52b050afdbcbf7ddbf1 -SIZE (rpm/i686/centos/6.2/bash-4.1.2-8.el6.centos.i686.rpm) = 906588 -SHA256 (rpm/i686/centos/6.2/bzip2-1.0.5-7.el6_0.i686.rpm) = 37883219612b1ffa199f5a7227fcd165687a24e5c7c291c579647d1563777e47 -SIZE (rpm/i686/centos/6.2/bzip2-1.0.5-7.el6_0.i686.rpm) = 49428 -SHA256 (rpm/i686/centos/6.2/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = d3424f4610860e7f8f444cc3cddf51cd75f5e58ca0ecffc8bdbbcb5f8fe1b0d1 -SIZE (rpm/i686/centos/6.2/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = 37204 -SHA256 (rpm/i686/centos/6.2/compat-db43-4.3.29-15.el6.i686.rpm) = 202767fa03ff58947d6a2ec2437e52fc9179f3995fa77264753fde03f2737d0a -SIZE (rpm/i686/centos/6.2/compat-db43-4.3.29-15.el6.i686.rpm) = 914280 -SHA256 (rpm/i686/centos/6.2/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 894abcc5f0b28e39c71d4b0ca27d19540e7eb9d3c32664d5621324c9efbfe11e -SIZE (rpm/i686/centos/6.2/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 193328 -SHA256 (rpm/i686/centos/6.2/compat-libstdc++-296-2.96-144.el6.i686.rpm) = a0d7cba8cf0fcb625ce3181d64fa59ca018b562350c30b3a13fd8b858f21f134 -SIZE (rpm/i686/centos/6.2/compat-libstdc++-296-2.96-144.el6.i686.rpm) = 78832 -SHA256 (rpm/i686/centos/6.2/coreutils-8.4-16.el6.i686.rpm) = 73fd3df2d6339449d50d283df979e85e845a085bf0218bf4934662a811a56f67 -SIZE (rpm/i686/centos/6.2/coreutils-8.4-16.el6.i686.rpm) = 3138728 -SHA256 (rpm/i686/centos/6.2/db4-4.7.25-16.el6.i686.rpm) = 7996aa08f9c3f7d4c2525a282f862520485f6da1ca39740c37413de446d0bd09 -SIZE (rpm/i686/centos/6.2/db4-4.7.25-16.el6.i686.rpm) = 593968 -SHA256 (rpm/i686/centos/6.2/e2fsprogs-1.41.12-11.el6.i686.rpm) = d99e2baa4bea3266913b520d26cac3bcdf36cdb13e38fdd2efd5ce7ceae03444 -SIZE (rpm/i686/centos/6.2/e2fsprogs-1.41.12-11.el6.i686.rpm) = 564144 -SHA256 (rpm/i686/centos/6.2/e2fsprogs-libs-1.41.12-11.el6.i686.rpm) = 5b3318d702fd1851c1352fcf6c7cbdf5e54c9e4e917a7a0686d951f72db115b8 -SIZE (rpm/i686/centos/6.2/e2fsprogs-libs-1.41.12-11.el6.i686.rpm) = 128712 -SHA256 (rpm/i686/centos/6.2/elfutils-0.152-1.el6.i686.rpm) = 039215109881fbbae7b398786873c51026e2e1bf6d1611b52bc9fa1bb60b488a -SIZE (rpm/i686/centos/6.2/elfutils-0.152-1.el6.i686.rpm) = 218636 -SHA256 (rpm/i686/centos/6.2/centos-release-6-2.el6.centos.7.i686.rpm) = 65499b7ef65c6ea77e8e16631b13d5acfcfced2d4cde37a148ae3b56154ef682 -SIZE (rpm/i686/centos/6.2/centos-release-6-2.el6.centos.7.i686.rpm) = 19972 -SHA256 (rpm/i686/centos/6.2/filesystem-2.4.30-3.el6.i686.rpm) = 28fd3898f5882048a6105a4637fffa17bc0a634c8ff4268a35b870d084212dea -SIZE (rpm/i686/centos/6.2/filesystem-2.4.30-3.el6.i686.rpm) = 1056668 -SHA256 (rpm/i686/centos/6.2/freetype-2.3.11-6.el6_1.7.i686.rpm) = ce4eed9a6e9ab7986ad67e0cb3327194d3f73b54484ce2ff966dc5c767b8ed1e -SIZE (rpm/i686/centos/6.2/freetype-2.3.11-6.el6_1.7.i686.rpm) = 370804 -SHA256 (rpm/i686/centos/6.2/gdbm-1.8.0-36.el6.i686.rpm) = 6b7a558334b4ef442ef7495a1421ff0f4783ef250d64ba7fe0afb54a62c23404 -SIZE (rpm/i686/centos/6.2/gdbm-1.8.0-36.el6.i686.rpm) = 29536 -SHA256 (rpm/i686/centos/6.2/glib2-2.22.5-6.el6.i686.rpm) = 5f4da44f59a6d70aab7bcb0e5552adb56212cb54aaa2e5cc709cdee853e9d9f9 -SIZE (rpm/i686/centos/6.2/glib2-2.22.5-6.el6.i686.rpm) = 1161064 -SHA256 (rpm/i686/centos/6.2/glibc-2.12-1.47.el6.i686.rpm) = c0d6e7f61c07dc1f5364d5d7bf1345062958d41285ba27e9da9193ae7925ae9b -SIZE (rpm/i686/centos/6.2/glibc-2.12-1.47.el6.i686.rpm) = 4483896 -SHA256 (rpm/i686/centos/6.2/glibc-common-2.12-1.47.el6.i686.rpm) = f951850e285bfec5d218e30c2a8cb38d58dde80add4fa06551f331ac70a61ac4 -SIZE (rpm/i686/centos/6.2/glibc-common-2.12-1.47.el6.i686.rpm) = 14848000 -SHA256 (rpm/i686/centos/6.2/grep-2.6.3-2.el6.i686.rpm) = 3995d8722c6a94a739062aae2a5366b9c4a197d6eb80e5105bb027d8d4d7d607 -SIZE (rpm/i686/centos/6.2/grep-2.6.3-2.el6.i686.rpm) = 232344 -SHA256 (rpm/i686/centos/6.2/info-4.13a-8.el6.i686.rpm) = 544b65b829fd4f8195dc131e773296f922bc218c756ec6d8e143ae0715f830b1 -SIZE (rpm/i686/centos/6.2/info-4.13a-8.el6.i686.rpm) = 176524 -SHA256 (rpm/i686/centos/6.2/keyutils-1.4-3.el6.i686.rpm) = 349a7513d32917fcb694f15a1c34b020e8138fc40f40e0184117c5fde775c61d -SIZE (rpm/i686/centos/6.2/keyutils-1.4-3.el6.i686.rpm) = 38512 -SHA256 (rpm/i686/centos/6.2/krb5-libs-1.9-22.el6.i686.rpm) = b9ec769a229421995373789a04dcd08e40f4822ede45c866d7ce2d3b968b5747 -SIZE (rpm/i686/centos/6.2/krb5-libs-1.9-22.el6.i686.rpm) = 732752 -SHA256 (rpm/i686/centos/6.2/libacl-2.2.49-6.el6.i686.rpm) = 64c400f31986db7f085e85454a305344da141872b6f3ac7922caa2fa656d3c12 -SIZE (rpm/i686/centos/6.2/libacl-2.2.49-6.el6.i686.rpm) = 24480 -SHA256 (rpm/i686/centos/6.2/libattr-2.4.44-7.el6.i686.rpm) = 16f9cba06fcbdf5163c1ae48e3d8df5b2a26eec1c8bfa3f7907718931ff8b93b -SIZE (rpm/i686/centos/6.2/libattr-2.4.44-7.el6.i686.rpm) = 15640 -SHA256 (rpm/i686/centos/6.2/libcap-2.16-5.5.el6.i686.rpm) = 8d972a4332b8f942258e489574929de3ee660315dc6ca945939d54a99ec4398c -SIZE (rpm/i686/centos/6.2/libcap-2.16-5.5.el6.i686.rpm) = 31516 -SHA256 (rpm/i686/centos/6.2/libgcc-4.4.6-3.el6.i686.rpm) = 93f716fa7c716e6c3b311927409dbf49b9271977b2508c9d0463b9a24687a106 -SIZE (rpm/i686/centos/6.2/libgcc-4.4.6-3.el6.i686.rpm) = 112236 -SHA256 (rpm/i686/centos/6.2/libidn-1.18-2.el6.i686.rpm) = a72cdffdb6aeeb5f94eeaeb6db3b4ac88eb0688760b2b75d2c5086d987d78e27 -SIZE (rpm/i686/centos/6.2/libidn-1.18-2.el6.i686.rpm) = 210260 -SHA256 (rpm/i686/centos/6.2/libselinux-2.0.94-5.2.el6.i686.rpm) = 83aa26d47049b233a5987eb14230921c09745d662b89537c39c95668d16a68d2 -SIZE (rpm/i686/centos/6.2/libselinux-2.0.94-5.2.el6.i686.rpm) = 110016 -SHA256 (rpm/i686/centos/6.2/libsepol-2.0.41-4.el6.i686.rpm) = 0f7b3c09a89b4f943faefc73bc5664f075146f6b96c8d1d38da06ed02cc2f21b -SIZE (rpm/i686/centos/6.2/libsepol-2.0.41-4.el6.i686.rpm) = 128032 -SHA256 (rpm/i686/centos/6.2/libstdc++-4.4.6-3.el6.i686.rpm) = a0f5edb90401b36b51f447006a27a4db6a532d24aca3e2e3f614af89508e432a -SIZE (rpm/i686/centos/6.2/libstdc++-4.4.6-3.el6.i686.rpm) = 304788 -SHA256 (rpm/i686/centos/6.2/ncurses-5.7-3.20090208.el6.i686.rpm) = 755e6f14019e1484417bb6b3220d1384f80f897ff67a0125c1799d9620469260 -SIZE (rpm/i686/centos/6.2/ncurses-5.7-3.20090208.el6.i686.rpm) = 274756 -SHA256 (rpm/i686/centos/6.2/ncurses-libs-5.7-3.20090208.el6.i686.rpm) = 8e8c71cf6e1b45a592bf5705714e34c167b6e2b9e9b4cf4b6c8e41f6ebd5a392 -SIZE (rpm/i686/centos/6.2/ncurses-libs-5.7-3.20090208.el6.i686.rpm) = 256940 -SHA256 (rpm/i686/centos/6.2/pcre-7.8-3.1.el6.i686.rpm) = 75d4b2e203d3dfb57d505e4a29b1327c68ea7f91c51e99b44750e8978951ab1e -SIZE (rpm/i686/centos/6.2/pcre-7.8-3.1.el6.i686.rpm) = 199404 -SHA256 (rpm/i686/centos/6.2/popt-1.13-7.el6.i686.rpm) = 617f8ee4d7776bb46a3a489ea10ac45831fd44947a30ef8d2126490ca2aa7a90 -SIZE (rpm/i686/centos/6.2/popt-1.13-7.el6.i686.rpm) = 39636 -SHA256 (rpm/i686/centos/6.2/readline-6.0-3.el6.i686.rpm) = d8a31ab0d655ea51ca6a4ba331497a41f8ab29ee1b3455ef2a267c3ae5e231e8 -SIZE (rpm/i686/centos/6.2/readline-6.0-3.el6.i686.rpm) = 180544 -SHA256 (rpm/i686/centos/6.2/setserial-2.17-25.el6.i686.rpm) = c3537e6d2122f43674413742fcba524beb4dc9778efc7d25515f120dde79ba70 -SIZE (rpm/i686/centos/6.2/setserial-2.17-25.el6.i686.rpm) = 23568 -SHA256 (rpm/i686/centos/6.2/setup-2.8.14-13.el6.noarch.rpm) = 752c7c749af0c94a746c0c28e38ac890a1397a4319518331cec0d25c269759ec -SIZE (rpm/i686/centos/6.2/setup-2.8.14-13.el6.noarch.rpm) = 152488 -SHA256 (rpm/i686/centos/6.2/slang-2.2.1-1.el6.i686.rpm) = c6886d071eb63651df939c19f12363a1a68d112cedaa02019c94f53d39dd2f1f -SIZE (rpm/i686/centos/6.2/slang-2.2.1-1.el6.i686.rpm) = 483404 -SHA256 (rpm/i686/centos/6.2/zlib-1.2.3-27.el6.i686.rpm) = 458605522b81ed9cff61751be6756d5719168bc78d40cc0a93ef3a996741eb49 -SIZE (rpm/i686/centos/6.2/zlib-1.2.3-27.el6.i686.rpm) = 73548 -SHA256 (rpm/i686/centos/6.2/basesystem-10.0-4.el6.src.rpm) = 18d3bd0580f40bdc208773f26b424fa1975fad70fae9f179c52337a8f80ade76 -SIZE (rpm/i686/centos/6.2/basesystem-10.0-4.el6.src.rpm) = 5949 -SHA256 (rpm/i686/centos/6.2/bash-4.1.2-8.el6.centos.src.rpm) = ec22b92d2a37935dbcbc35cfc0fef107dded67113a191da83d06beb835095a6b -SIZE (rpm/i686/centos/6.2/bash-4.1.2-8.el6.centos.src.rpm) = 6659443 -SHA256 (rpm/i686/centos/6.2/bzip2-1.0.5-7.el6_0.src.rpm) = 99a3d6a620f9f427aaeba974ae06234d0a771231730de7e203b97dce1dbf1931 -SIZE (rpm/i686/centos/6.2/bzip2-1.0.5-7.el6_0.src.rpm) = 855419 -SHA256 (rpm/i686/centos/6.2/coreutils-8.4-16.el6.src.rpm) = d16c9512494d77463b01bda12a59d03cd45c7823bef5e102535ee460a466219f -SIZE (rpm/i686/centos/6.2/coreutils-8.4-16.el6.src.rpm) = 4607963 -SHA256 (rpm/i686/centos/6.2/compat-db-4.6.21-15.el6.src.rpm) = d35d08e52defe404712b9d4f2cb6475e05ed170676c090d5e05325c346abcb0f -SIZE (rpm/i686/centos/6.2/compat-db-4.6.21-15.el6.src.rpm) = 9862622 -SHA256 (rpm/i686/centos/6.2/compat-gcc-296-2.96-144.el6.src.rpm) = a2ad7ba6160eada6a669732187affa35110ac26d0bbd709474e476e4d3892370 -SIZE (rpm/i686/centos/6.2/compat-gcc-296-2.96-144.el6.src.rpm) = 13430070 -SHA256 (rpm/i686/centos/6.2/compat-gcc-32-3.2.3-69.el6.src.rpm) = 7ff0c6e00ad06876e10cb79fb87cb57b251e6710c63258e6850e990d9ea49917 -SIZE (rpm/i686/centos/6.2/compat-gcc-32-3.2.3-69.el6.src.rpm) = 21622433 -SHA256 (rpm/i686/centos/6.2/db4-4.7.25-16.el6.src.rpm) = 70190e3a4755f2ec864ce67b5287af755feda50e215b3b283a1af9d9242612e2 -SIZE (rpm/i686/centos/6.2/db4-4.7.25-16.el6.src.rpm) = 13409993 -SHA256 (rpm/i686/centos/6.2/e2fsprogs-1.41.12-11.el6.src.rpm) = 3a5799521961995f79e2f6db2483d248620dbcb0fe6520e4db274f3e57006b1e -SIZE (rpm/i686/centos/6.2/e2fsprogs-1.41.12-11.el6.src.rpm) = 5517244 -SHA256 (rpm/i686/centos/6.2/elfutils-0.152-1.el6.src.rpm) = cb8c7188713b406e980757c6c802102e14d4f27820ab18b616d31889d55f4e14 -SIZE (rpm/i686/centos/6.2/elfutils-0.152-1.el6.src.rpm) = 1927305 -SHA256 (rpm/i686/centos/6.2/centos-release-6-2.el6.centos.7.src.rpm) = 3c611a0883359a9a804090f3d481a13cad249e2aa98d2567ff2225118f96c213 -SIZE (rpm/i686/centos/6.2/centos-release-6-2.el6.centos.7.src.rpm) = 18540 -SHA256 (rpm/i686/centos/6.2/filesystem-2.4.30-3.el6.src.rpm) = fa8ab9b1a2f23933d6e2f9e2308601c4ee61dd5829f5edcb094aedee194d02e1 -SIZE (rpm/i686/centos/6.2/filesystem-2.4.30-3.el6.src.rpm) = 20457 -SHA256 (rpm/i686/centos/6.2/freetype-2.3.11-6.el6_1.7.src.rpm) = 3e31c55ba60a6f329dabf395f0a924d196914d6ecd3ceac71a34be5c097cf13d -SIZE (rpm/i686/centos/6.2/freetype-2.3.11-6.el6_1.7.src.rpm) = 1754513 -SHA256 (rpm/i686/centos/6.2/gdbm-1.8.0-36.el6.src.rpm) = ee6ffd96549d5924966869b9fef5813fb8eb17a76b2a6a35c53eb02d0ed1dc01 -SIZE (rpm/i686/centos/6.2/gdbm-1.8.0-36.el6.src.rpm) = 150845 -SHA256 (rpm/i686/centos/6.2/glib2-2.22.5-6.el6.src.rpm) = d398fcf50c5309dc9bd5dabb5099e0c7ab4475a0d6ad59d61804ecd88b0e86ba -SIZE (rpm/i686/centos/6.2/glib2-2.22.5-6.el6.src.rpm) = 5311287 -SHA256 (rpm/i686/centos/6.2/glibc-2.12-1.47.el6.src.rpm) = bcd5fad24fb8b8c649ee940fe3b1ba9508610f8b216bb6a03a63824bfc15a2bf -SIZE (rpm/i686/centos/6.2/glibc-2.12-1.47.el6.src.rpm) = 15951482 -SHA256 (rpm/i686/centos/6.2/grep-2.6.3-2.el6.src.rpm) = 27eee5b634907b9fec81b25731049add64fc4764d5dae90f5837aeab2c42be82 -SIZE (rpm/i686/centos/6.2/grep-2.6.3-2.el6.src.rpm) = 857527 -SHA256 (rpm/i686/centos/6.2/texinfo-4.13a-8.el6.src.rpm) = c7cc4a48a8b429fe93f9462233a9d18cfbd33b994593b5e9cdcbde0a8c3c85db -SIZE (rpm/i686/centos/6.2/texinfo-4.13a-8.el6.src.rpm) = 1589200 -SHA256 (rpm/i686/centos/6.2/keyutils-1.4-3.el6.src.rpm) = 3024a7bc10b104a6a533dff974e834ff8ba7019fd8388f0ce1ddb1661b9b2d90 -SIZE (rpm/i686/centos/6.2/keyutils-1.4-3.el6.src.rpm) = 48878 -SHA256 (rpm/i686/centos/6.2/krb5-1.9-22.el6.src.rpm) = 01d9c1fa6cdc4dcbc985a0c7018d32f141ce67aef60c2e83aa58f00e6a54ec51 -SIZE (rpm/i686/centos/6.2/krb5-1.9-22.el6.src.rpm) = 12791653 -SHA256 (rpm/i686/centos/6.2/acl-2.2.49-6.el6.src.rpm) = f1feabe034da5a12be746d4bcfe12c5d15bdfc3f53f203880311aaa18ba9ec0d -SIZE (rpm/i686/centos/6.2/acl-2.2.49-6.el6.src.rpm) = 385956 -SHA256 (rpm/i686/centos/6.2/attr-2.4.44-7.el6.src.rpm) = 5f5440619e0109d9f8d913de1100f259296f62a38075bbc8d8608d6988695890 -SIZE (rpm/i686/centos/6.2/attr-2.4.44-7.el6.src.rpm) = 335725 -SHA256 (rpm/i686/centos/6.2/libcap-2.16-5.5.el6.src.rpm) = a0eb99aa04952657fc19541dd70ab185dd00594001a90d0ee138925f2bc3ab6a -SIZE (rpm/i686/centos/6.2/libcap-2.16-5.5.el6.src.rpm) = 69497 -SHA256 (rpm/i686/centos/6.2/gcc-4.4.6-3.el6.src.rpm) = 71b69feab74972213dc47e8d6f15742b342367165af1d964725d7ee2eb6550c8 -SIZE (rpm/i686/centos/6.2/gcc-4.4.6-3.el6.src.rpm) = 52134253 -SHA256 (rpm/i686/centos/6.2/libidn-1.18-2.el6.src.rpm) = a98516bd92453044dd497cce3c05aefe9bf5ec96a04eaf924b765d3038432054 -SIZE (rpm/i686/centos/6.2/libidn-1.18-2.el6.src.rpm) = 2959181 -SHA256 (rpm/i686/centos/6.2/libselinux-2.0.94-5.2.el6.src.rpm) = 07834a223349747b5a8aa2076c4412913a34880df9853683d616c26ca7692918 -SIZE (rpm/i686/centos/6.2/libselinux-2.0.94-5.2.el6.src.rpm) = 292637 -SHA256 (rpm/i686/centos/6.2/libsepol-2.0.41-4.el6.src.rpm) = ac1799bd0a70a93f771942ebb489eab4eb6a67422a624f925ba4080f98f73b13 -SIZE (rpm/i686/centos/6.2/libsepol-2.0.41-4.el6.src.rpm) = 248004 -SHA256 (rpm/i686/centos/6.2/ncurses-5.7-3.20090208.el6.src.rpm) = 56adadf667f294a57602cde47141b75a0bee8c6401fbf002295f59891d1663ff -SIZE (rpm/i686/centos/6.2/ncurses-5.7-3.20090208.el6.src.rpm) = 2646949 -SHA256 (rpm/i686/centos/6.2/pcre-7.8-3.1.el6.src.rpm) = 2533c3d874dc4b113c3974b4745ab76e5931206ae83f89b874a310a2f94561f9 -SIZE (rpm/i686/centos/6.2/pcre-7.8-3.1.el6.src.rpm) = 847931 -SHA256 (rpm/i686/centos/6.2/popt-1.13-7.el6.src.rpm) = 3b1b1c6e47e84d387b58899dbbc3bf24e45ae09fb79cf975c011aae245091406 -SIZE (rpm/i686/centos/6.2/popt-1.13-7.el6.src.rpm) = 687631 -SHA256 (rpm/i686/centos/6.2/readline-6.0-3.el6.src.rpm) = 90bed16f6f74aa737b723baf279ebe8a1be2d50fe0644563a819581e93ee4f98 -SIZE (rpm/i686/centos/6.2/readline-6.0-3.el6.src.rpm) = 2288326 -SHA256 (rpm/i686/centos/6.2/setserial-2.17-25.el6.src.rpm) = 1c09e38c61498be4014b102d5b4c79fff4f69eb24d012f7b38926e678880dffa -SIZE (rpm/i686/centos/6.2/setserial-2.17-25.el6.src.rpm) = 64567 -SHA256 (rpm/i686/centos/6.2/setup-2.8.14-13.el6.src.rpm) = f7ed0efb93ab4beb74eb8b8a253f0c5d99f8f419006b5588857a3f06d151e818 -SIZE (rpm/i686/centos/6.2/setup-2.8.14-13.el6.src.rpm) = 178747 -SHA256 (rpm/i686/centos/6.2/slang-2.2.1-1.el6.src.rpm) = 3ab2551b5d7d75a1d28d63fea1c48b9e83a87b8f2ba4cd6bd2c5ecb5dd91eda9 -SIZE (rpm/i686/centos/6.2/slang-2.2.1-1.el6.src.rpm) = 1367444 -SHA256 (rpm/i686/centos/6.2/zlib-1.2.3-27.el6.src.rpm) = e56d8e496df9da96f8e34975cc6eb0ae163486331efb85be17415e108c8b07dc -SIZE (rpm/i686/centos/6.2/zlib-1.2.3-27.el6.src.rpm) = 513958 +SHA256 (rpm/i686/centos/6.4/basesystem-10.0-4.el6.noarch.rpm) = 18860007697438e375733bb4a36a599daac2e2ae95d98a74c436a10d0974710e +SIZE (rpm/i686/centos/6.4/basesystem-10.0-4.el6.noarch.rpm) = 4784 +SHA256 (rpm/i686/centos/6.4/bash-4.1.2-14.el6.i686.rpm) = 66e7fa2cad7e10c21c4aa0f26a6f62df528969da2954c5a3c84b4cd983db9884 +SIZE (rpm/i686/centos/6.4/bash-4.1.2-14.el6.i686.rpm) = 907568 +SHA256 (rpm/i686/centos/6.4/bzip2-1.0.5-7.el6_0.i686.rpm) = 37883219612b1ffa199f5a7227fcd165687a24e5c7c291c579647d1563777e47 +SIZE (rpm/i686/centos/6.4/bzip2-1.0.5-7.el6_0.i686.rpm) = 49428 +SHA256 (rpm/i686/centos/6.4/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = d3424f4610860e7f8f444cc3cddf51cd75f5e58ca0ecffc8bdbbcb5f8fe1b0d1 +SIZE (rpm/i686/centos/6.4/bzip2-libs-1.0.5-7.el6_0.i686.rpm) = 37204 +SHA256 (rpm/i686/centos/6.4/compat-db43-4.3.29-15.el6.i686.rpm) = 202767fa03ff58947d6a2ec2437e52fc9179f3995fa77264753fde03f2737d0a +SIZE (rpm/i686/centos/6.4/compat-db43-4.3.29-15.el6.i686.rpm) = 914280 +SHA256 (rpm/i686/centos/6.4/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 894abcc5f0b28e39c71d4b0ca27d19540e7eb9d3c32664d5621324c9efbfe11e +SIZE (rpm/i686/centos/6.4/compat-libstdc++-33-3.2.3-69.el6.i686.rpm) = 193328 +SHA256 (rpm/i686/centos/6.4/compat-libstdc++-296-2.96-144.el6.i686.rpm) = a0d7cba8cf0fcb625ce3181d64fa59ca018b562350c30b3a13fd8b858f21f134 +SIZE (rpm/i686/centos/6.4/compat-libstdc++-296-2.96-144.el6.i686.rpm) = 78832 +SHA256 (rpm/i686/centos/6.4/coreutils-8.4-19.el6.i686.rpm) = 626fa3e117defb9aff3f2501e17f1d8ef930619a97eec2b96b1f3590df922c59 +SIZE (rpm/i686/centos/6.4/coreutils-8.4-19.el6.i686.rpm) = 3138608 +SHA256 (rpm/i686/centos/6.4/db4-4.7.25-17.el6.i686.rpm) = 0a466556f5dd693a22fe8b60a17f36ee520a86709a2bb8f9890892a744b5f744 +SIZE (rpm/i686/centos/6.4/db4-4.7.25-17.el6.i686.rpm) = 593584 +SHA256 (rpm/i686/centos/6.4/e2fsprogs-1.41.12-14.el6.i686.rpm) = 239a337ed1215e52cc8839e3c23722bf9d844e224792c630e4edccd1988f0bd4 +SIZE (rpm/i686/centos/6.4/e2fsprogs-1.41.12-14.el6.i686.rpm) = 565008 +SHA256 (rpm/i686/centos/6.4/e2fsprogs-libs-1.41.12-14.el6.i686.rpm) = 519043019d4a9758e11066a2e2d529c2c64734954d8ccabdefd9728b63778b44 +SIZE (rpm/i686/centos/6.4/e2fsprogs-libs-1.41.12-14.el6.i686.rpm) = 129224 +SHA256 (rpm/i686/centos/6.4/elfutils-0.152-1.el6.i686.rpm) = 039215109881fbbae7b398786873c51026e2e1bf6d1611b52bc9fa1bb60b488a +SIZE (rpm/i686/centos/6.4/elfutils-0.152-1.el6.i686.rpm) = 218636 +SHA256 (rpm/i686/centos/6.4/centos-release-6-4.el6.centos.10.i686.rpm) = 0c6b801c150359678a0fbc1508846867d189f218d58ed843c00c91206358353f +SIZE (rpm/i686/centos/6.4/centos-release-6-4.el6.centos.10.i686.rpm) = 20748 +SHA256 (rpm/i686/centos/6.4/filesystem-2.4.30-3.el6.i686.rpm) = 28fd3898f5882048a6105a4637fffa17bc0a634c8ff4268a35b870d084212dea +SIZE (rpm/i686/centos/6.4/filesystem-2.4.30-3.el6.i686.rpm) = 1056668 +SHA256 (rpm/i686/centos/6.4/freetype-2.3.11-6.el6_2.9.i686.rpm) = 94f34641498c450a113a276feb32c587b04a1c4372f25ea0b1043c07867e59cf +SIZE (rpm/i686/centos/6.4/freetype-2.3.11-6.el6_2.9.i686.rpm) = 371588 +SHA256 (rpm/i686/centos/6.4/gdbm-1.8.0-36.el6.i686.rpm) = 6b7a558334b4ef442ef7495a1421ff0f4783ef250d64ba7fe0afb54a62c23404 +SIZE (rpm/i686/centos/6.4/gdbm-1.8.0-36.el6.i686.rpm) = 29536 +SHA256 (rpm/i686/centos/6.4/glib2-2.22.5-7.el6.i686.rpm) = a2180607b7928b599f64f889b03b35ef1e0d0e566d14e07ff3b1dc8a90a92b68 +SIZE (rpm/i686/centos/6.4/glib2-2.22.5-7.el6.i686.rpm) = 1160816 +SHA256 (rpm/i686/centos/6.4/glibc-2.12-1.107.el6.i686.rpm) = 61f43fdf66ebe89c76981141e0327c642c7de1fd347ef0613ab8c92dc4a8175a +SIZE (rpm/i686/centos/6.4/glibc-2.12-1.107.el6.i686.rpm) = 4537416 +SHA256 (rpm/i686/centos/6.4/glibc-common-2.12-1.107.el6.i686.rpm) = 0783bb2a27b59ed2aff8e46ec3be1d29ec8b82efef96693a3f8e3dfe5fc25668 +SIZE (rpm/i686/centos/6.4/glibc-common-2.12-1.107.el6.i686.rpm) = 14860552 +SHA256 (rpm/i686/centos/6.4/grep-2.6.3-3.el6.i686.rpm) = aba433970262abd92efb5b2f75ec1584b1bf07f173d05fe59e1cda82d4491b56 +SIZE (rpm/i686/centos/6.4/grep-2.6.3-3.el6.i686.rpm) = 232324 +SHA256 (rpm/i686/centos/6.4/info-4.13a-8.el6.i686.rpm) = 544b65b829fd4f8195dc131e773296f922bc218c756ec6d8e143ae0715f830b1 +SIZE (rpm/i686/centos/6.4/info-4.13a-8.el6.i686.rpm) = 176524 +SHA256 (rpm/i686/centos/6.4/keyutils-1.4-4.el6.i686.rpm) = b37f25808fe9840ea880a42bb5b1a17a54c0a8212133fbc1c84529638df3119b +SIZE (rpm/i686/centos/6.4/keyutils-1.4-4.el6.i686.rpm) = 38948 +SHA256 (rpm/i686/centos/6.4/krb5-libs-1.10.3-10.el6.i686.rpm) = 68b7f70438a457e7351188096d4c9b296e913020c1bd9dc7b247002d175a1c54 +SIZE (rpm/i686/centos/6.4/krb5-libs-1.10.3-10.el6.i686.rpm) = 786168 +SHA256 (rpm/i686/centos/6.4/libacl-2.2.49-6.el6.i686.rpm) = 64c400f31986db7f085e85454a305344da141872b6f3ac7922caa2fa656d3c12 +SIZE (rpm/i686/centos/6.4/libacl-2.2.49-6.el6.i686.rpm) = 24480 +SHA256 (rpm/i686/centos/6.4/libattr-2.4.44-7.el6.i686.rpm) = 16f9cba06fcbdf5163c1ae48e3d8df5b2a26eec1c8bfa3f7907718931ff8b93b +SIZE (rpm/i686/centos/6.4/libattr-2.4.44-7.el6.i686.rpm) = 15640 +SHA256 (rpm/i686/centos/6.4/libcap-2.16-5.5.el6.i686.rpm) = 8d972a4332b8f942258e489574929de3ee660315dc6ca945939d54a99ec4398c +SIZE (rpm/i686/centos/6.4/libcap-2.16-5.5.el6.i686.rpm) = 31516 +SHA256 (rpm/i686/centos/6.4/libgcc-4.4.7-3.el6.i686.rpm) = 443d92d823fd9f36ca9bc223b81c0090a59a2f736cab370d5edd1cd74a60e6d0 +SIZE (rpm/i686/centos/6.4/libgcc-4.4.7-3.el6.i686.rpm) = 114272 +SHA256 (rpm/i686/centos/6.4/libidn-1.18-2.el6.i686.rpm) = a72cdffdb6aeeb5f94eeaeb6db3b4ac88eb0688760b2b75d2c5086d987d78e27 +SIZE (rpm/i686/centos/6.4/libidn-1.18-2.el6.i686.rpm) = 210260 +SHA256 (rpm/i686/centos/6.4/libselinux-2.0.94-5.3.el6.i686.rpm) = 0877749e6fc415ed7ccf36df71c630d17916fa78b098aef2cc77d73ff7fdcaac +SIZE (rpm/i686/centos/6.4/libselinux-2.0.94-5.3.el6.i686.rpm) = 110172 +SHA256 (rpm/i686/centos/6.4/libsepol-2.0.41-4.el6.i686.rpm) = 0f7b3c09a89b4f943faefc73bc5664f075146f6b96c8d1d38da06ed02cc2f21b +SIZE (rpm/i686/centos/6.4/libsepol-2.0.41-4.el6.i686.rpm) = 128032 +SHA256 (rpm/i686/centos/6.4/libstdc++-4.4.7-3.el6.i686.rpm) = 3d492a18977be5e97e33d91ee4537d32addc546e97df88a4f80563b0685833e9 +SIZE (rpm/i686/centos/6.4/libstdc++-4.4.7-3.el6.i686.rpm) = 306876 +SHA256 (rpm/i686/centos/6.4/ncurses-5.7-3.20090208.el6.i686.rpm) = 755e6f14019e1484417bb6b3220d1384f80f897ff67a0125c1799d9620469260 +SIZE (rpm/i686/centos/6.4/ncurses-5.7-3.20090208.el6.i686.rpm) = 274756 +SHA256 (rpm/i686/centos/6.4/ncurses-libs-5.7-3.20090208.el6.i686.rpm) = 8e8c71cf6e1b45a592bf5705714e34c167b6e2b9e9b4cf4b6c8e41f6ebd5a392 +SIZE (rpm/i686/centos/6.4/ncurses-libs-5.7-3.20090208.el6.i686.rpm) = 256940 +SHA256 (rpm/i686/centos/6.4/pcre-7.8-6.el6.i686.rpm) = 3f2bc72b2a672249e7195c7a0a7932eaa9623745c4b314dd88262fc8dcc401dd +SIZE (rpm/i686/centos/6.4/pcre-7.8-6.el6.i686.rpm) = 200028 +SHA256 (rpm/i686/centos/6.4/popt-1.13-7.el6.i686.rpm) = 617f8ee4d7776bb46a3a489ea10ac45831fd44947a30ef8d2126490ca2aa7a90 +SIZE (rpm/i686/centos/6.4/popt-1.13-7.el6.i686.rpm) = 39636 +SHA256 (rpm/i686/centos/6.4/readline-6.0-4.el6.i686.rpm) = 29fae06e31b73f4e5e0cd5f4431a3927c0e80b204e3fbcf0a6ccfc30720e8452 +SIZE (rpm/i686/centos/6.4/readline-6.0-4.el6.i686.rpm) = 180296 +SHA256 (rpm/i686/centos/6.4/setserial-2.17-25.el6.i686.rpm) = c3537e6d2122f43674413742fcba524beb4dc9778efc7d25515f120dde79ba70 +SIZE (rpm/i686/centos/6.4/setserial-2.17-25.el6.i686.rpm) = 23568 +SHA256 (rpm/i686/centos/6.4/setup-2.8.14-20.el6.noarch.rpm) = d4257fb7919125c8b4366385c263c105e9284e51d3744077a89f0a7bd5e40f32 +SIZE (rpm/i686/centos/6.4/setup-2.8.14-20.el6.noarch.rpm) = 153608 +SHA256 (rpm/i686/centos/6.4/slang-2.2.1-1.el6.i686.rpm) = c6886d071eb63651df939c19f12363a1a68d112cedaa02019c94f53d39dd2f1f +SIZE (rpm/i686/centos/6.4/slang-2.2.1-1.el6.i686.rpm) = 483404 +SHA256 (rpm/i686/centos/6.4/zlib-1.2.3-29.el6.i686.rpm) = 1e40dce8a497f740b22d2035a76a92a34885613652c4b33262f04e2d12a00caa +SIZE (rpm/i686/centos/6.4/zlib-1.2.3-29.el6.i686.rpm) = 74284 +SHA256 (rpm/i686/centos/6.4/basesystem-10.0-4.el6.src.rpm) = 18d3bd0580f40bdc208773f26b424fa1975fad70fae9f179c52337a8f80ade76 +SIZE (rpm/i686/centos/6.4/basesystem-10.0-4.el6.src.rpm) = 5949 +SHA256 (rpm/i686/centos/6.4/bash-4.1.2-14.el6.src.rpm) = afaa32a92246a05294b8e69c106659cbd675d5c8d779f94583779810c98c4699 +SIZE (rpm/i686/centos/6.4/bash-4.1.2-14.el6.src.rpm) = 6662680 +SHA256 (rpm/i686/centos/6.4/bzip2-1.0.5-7.el6_0.src.rpm) = 99a3d6a620f9f427aaeba974ae06234d0a771231730de7e203b97dce1dbf1931 +SIZE (rpm/i686/centos/6.4/bzip2-1.0.5-7.el6_0.src.rpm) = 855419 +SHA256 (rpm/i686/centos/6.4/coreutils-8.4-19.el6.src.rpm) = 8899898c5c4d59cc9ad84fd5005ac17fb68d67c1eeac638d7c271c8ee0f15483 +SIZE (rpm/i686/centos/6.4/coreutils-8.4-19.el6.src.rpm) = 4614613 +SHA256 (rpm/i686/centos/6.4/compat-db-4.6.21-15.el6.src.rpm) = d35d08e52defe404712b9d4f2cb6475e05ed170676c090d5e05325c346abcb0f +SIZE (rpm/i686/centos/6.4/compat-db-4.6.21-15.el6.src.rpm) = 9862622 +SHA256 (rpm/i686/centos/6.4/compat-gcc-296-2.96-144.el6.src.rpm) = a2ad7ba6160eada6a669732187affa35110ac26d0bbd709474e476e4d3892370 +SIZE (rpm/i686/centos/6.4/compat-gcc-296-2.96-144.el6.src.rpm) = 13430070 +SHA256 (rpm/i686/centos/6.4/compat-gcc-32-3.2.3-69.el6.src.rpm) = 7ff0c6e00ad06876e10cb79fb87cb57b251e6710c63258e6850e990d9ea49917 +SIZE (rpm/i686/centos/6.4/compat-gcc-32-3.2.3-69.el6.src.rpm) = 21622433 +SHA256 (rpm/i686/centos/6.4/db4-4.7.25-17.el6.src.rpm) = 4d7e1cfb9d369a22052f4f1d519b28a2ce6c54eee67ce243a530b038f4b4b887 +SIZE (rpm/i686/centos/6.4/db4-4.7.25-17.el6.src.rpm) = 13410100 +SHA256 (rpm/i686/centos/6.4/e2fsprogs-1.41.12-14.el6.src.rpm) = 51ba616c1e20e32cae46c16d406cffe0dd2a04b66c699ff1ce409926d4b26a1c +SIZE (rpm/i686/centos/6.4/e2fsprogs-1.41.12-14.el6.src.rpm) = 5531308 +SHA256 (rpm/i686/centos/6.4/elfutils-0.152-1.el6.src.rpm) = cb8c7188713b406e980757c6c802102e14d4f27820ab18b616d31889d55f4e14 +SIZE (rpm/i686/centos/6.4/elfutils-0.152-1.el6.src.rpm) = 1927305 +SHA256 (rpm/i686/centos/6.4/centos-release-6-4.el6.centos.10.src.rpm) = f97e19c55c86a850820707e36ee7cab8f019705016c560d5d230d6f322ff69b5 +SIZE (rpm/i686/centos/6.4/centos-release-6-4.el6.centos.10.src.rpm) = 19210 +SHA256 (rpm/i686/centos/6.4/filesystem-2.4.30-3.el6.src.rpm) = fa8ab9b1a2f23933d6e2f9e2308601c4ee61dd5829f5edcb094aedee194d02e1 +SIZE (rpm/i686/centos/6.4/filesystem-2.4.30-3.el6.src.rpm) = 20457 +SHA256 (rpm/i686/centos/6.4/freetype-2.3.11-6.el6_2.9.src.rpm) = 3f27f46aa39d8ccaf29dcf4b369e090ca561d8d1af72266a52723a46025c762a +SIZE (rpm/i686/centos/6.4/freetype-2.3.11-6.el6_2.9.src.rpm) = 1764297 +SHA256 (rpm/i686/centos/6.4/gdbm-1.8.0-36.el6.src.rpm) = ee6ffd96549d5924966869b9fef5813fb8eb17a76b2a6a35c53eb02d0ed1dc01 +SIZE (rpm/i686/centos/6.4/gdbm-1.8.0-36.el6.src.rpm) = 150845 +SHA256 (rpm/i686/centos/6.4/glib2-2.22.5-7.el6.src.rpm) = 7f76057982aff823fe9107914319ec3722627835cf1d9d43d6e4f7526d611400 +SIZE (rpm/i686/centos/6.4/glib2-2.22.5-7.el6.src.rpm) = 5311438 +SHA256 (rpm/i686/centos/6.4/glibc-2.12-1.107.el6.src.rpm) = a12a7215b8e7a8c7de5337df5e556ab16b58639551becdc36b63bec0826ad444 +SIZE (rpm/i686/centos/6.4/glibc-2.12-1.107.el6.src.rpm) = 16053712 +SHA256 (rpm/i686/centos/6.4/grep-2.6.3-3.el6.src.rpm) = d69103ee2dd2e5a3a82b8ef129104a7a3fdcd447db640626c64c64fa472f3c15 +SIZE (rpm/i686/centos/6.4/grep-2.6.3-3.el6.src.rpm) = 859052 +SHA256 (rpm/i686/centos/6.4/texinfo-4.13a-8.el6.src.rpm) = c7cc4a48a8b429fe93f9462233a9d18cfbd33b994593b5e9cdcbde0a8c3c85db +SIZE (rpm/i686/centos/6.4/texinfo-4.13a-8.el6.src.rpm) = 1589200 +SHA256 (rpm/i686/centos/6.4/keyutils-1.4-4.el6.src.rpm) = 01d53c1530342933eb9248ab399ee10c29d5eb141b0157dc69c306bdf6445916 +SIZE (rpm/i686/centos/6.4/keyutils-1.4-4.el6.src.rpm) = 53286 +SHA256 (rpm/i686/centos/6.4/krb5-1.10.3-10.el6.src.rpm) = f71ff9337b7444cf446d7727395361c3532e96f29a02716632f71fa27797e171 +SIZE (rpm/i686/centos/6.4/krb5-1.10.3-10.el6.src.rpm) = 12031180 +SHA256 (rpm/i686/centos/6.4/acl-2.2.49-6.el6.src.rpm) = f1feabe034da5a12be746d4bcfe12c5d15bdfc3f53f203880311aaa18ba9ec0d +SIZE (rpm/i686/centos/6.4/acl-2.2.49-6.el6.src.rpm) = 385956 +SHA256 (rpm/i686/centos/6.4/attr-2.4.44-7.el6.src.rpm) = 5f5440619e0109d9f8d913de1100f259296f62a38075bbc8d8608d6988695890 +SIZE (rpm/i686/centos/6.4/attr-2.4.44-7.el6.src.rpm) = 335725 +SHA256 (rpm/i686/centos/6.4/libcap-2.16-5.5.el6.src.rpm) = a0eb99aa04952657fc19541dd70ab185dd00594001a90d0ee138925f2bc3ab6a +SIZE (rpm/i686/centos/6.4/libcap-2.16-5.5.el6.src.rpm) = 69497 +SHA256 (rpm/i686/centos/6.4/gcc-4.4.7-3.el6.src.rpm) = a213c969de19096c13a494b581e8851114f240bafa1a6e738c979cf8a36098cd +SIZE (rpm/i686/centos/6.4/gcc-4.4.7-3.el6.src.rpm) = 52320971 +SHA256 (rpm/i686/centos/6.4/libidn-1.18-2.el6.src.rpm) = a98516bd92453044dd497cce3c05aefe9bf5ec96a04eaf924b765d3038432054 +SIZE (rpm/i686/centos/6.4/libidn-1.18-2.el6.src.rpm) = 2959181 +SHA256 (rpm/i686/centos/6.4/libselinux-2.0.94-5.3.el6.src.rpm) = 1d5bbbc0a5fbce0385308c9acb3e320f14afdecda63e2d4e48d2bb2cc6dc7a21 +SIZE (rpm/i686/centos/6.4/libselinux-2.0.94-5.3.el6.src.rpm) = 293165 +SHA256 (rpm/i686/centos/6.4/libsepol-2.0.41-4.el6.src.rpm) = ac1799bd0a70a93f771942ebb489eab4eb6a67422a624f925ba4080f98f73b13 +SIZE (rpm/i686/centos/6.4/libsepol-2.0.41-4.el6.src.rpm) = 248004 +SHA256 (rpm/i686/centos/6.4/ncurses-5.7-3.20090208.el6.src.rpm) = 56adadf667f294a57602cde47141b75a0bee8c6401fbf002295f59891d1663ff +SIZE (rpm/i686/centos/6.4/ncurses-5.7-3.20090208.el6.src.rpm) = 2646949 +SHA256 (rpm/i686/centos/6.4/pcre-7.8-6.el6.src.rpm) = 2d4e0474b7a23df5502f47050c049090ede151921d848486203e47604bd5104d +SIZE (rpm/i686/centos/6.4/pcre-7.8-6.el6.src.rpm) = 861403 +SHA256 (rpm/i686/centos/6.4/popt-1.13-7.el6.src.rpm) = 3b1b1c6e47e84d387b58899dbbc3bf24e45ae09fb79cf975c011aae245091406 +SIZE (rpm/i686/centos/6.4/popt-1.13-7.el6.src.rpm) = 687631 +SHA256 (rpm/i686/centos/6.4/readline-6.0-4.el6.src.rpm) = 898f831df1f1d566091317598cc5caeb3cb451347aaacfc52cc87895f449f5f0 +SIZE (rpm/i686/centos/6.4/readline-6.0-4.el6.src.rpm) = 2290548 +SHA256 (rpm/i686/centos/6.4/setserial-2.17-25.el6.src.rpm) = 1c09e38c61498be4014b102d5b4c79fff4f69eb24d012f7b38926e678880dffa +SIZE (rpm/i686/centos/6.4/setserial-2.17-25.el6.src.rpm) = 64567 +SHA256 (rpm/i686/centos/6.4/setup-2.8.14-20.el6.src.rpm) = 34b56a659ff50390845fd6f93ca8463df88439f7a4b6f823b540e39bf1f30316 +SIZE (rpm/i686/centos/6.4/setup-2.8.14-20.el6.src.rpm) = 181953 +SHA256 (rpm/i686/centos/6.4/slang-2.2.1-1.el6.src.rpm) = 3ab2551b5d7d75a1d28d63fea1c48b9e83a87b8f2ba4cd6bd2c5ecb5dd91eda9 +SIZE (rpm/i686/centos/6.4/slang-2.2.1-1.el6.src.rpm) = 1367444 +SHA256 (rpm/i686/centos/6.4/zlib-1.2.3-29.el6.src.rpm) = ccdc3260d2b1ee35c3d224154878f9f632fa2153ce7908ffaabd10b3e216d26e +SIZE (rpm/i686/centos/6.4/zlib-1.2.3-29.el6.src.rpm) = 516080 Modified: head/emulators/linux_base-c6/pkg-plist ============================================================================== --- head/emulators/linux_base-c6/pkg-plist Fri Jan 24 21:28:22 2014 (r340933) +++ head/emulators/linux_base-c6/pkg-plist Fri Jan 24 22:01:48 2014 (r340934) @@ -137,7 +137,7 @@ lib/libe2p.so.2 lib/libe2p.so.2.3 lib/libext2fs.so.2 lib/libext2fs.so.2.4 -lib/libgcc_s-4.4.6-20110824.so.1 +lib/libgcc_s-4.4.7-20120601.so.1 lib/libgcc_s.so.1 lib/libgio-2.0.so.0 lib/libgio-2.0.so.0.2200.5 @@ -622,7 +622,6 @@ usr/lib/gconv/libJISX0213.so usr/lib/gconv/libKSC.so usr/lib/gio/modules/libgiofam.so usr/lib/krb5/plugins/kdb/db2.so -usr/lib/krb5/plugins/preauth/encrypted_challenge.so usr/lib/libdb-4.7.so usr/lib/libform.so.5 usr/lib/libform.so.5.7 @@ -638,8 +637,8 @@ usr/lib/libkadm5clnt_mit.so.8 usr/lib/libkadm5clnt_mit.so.8.0 usr/lib/libkadm5srv_mit.so.8 usr/lib/libkadm5srv_mit.so.8.0 -usr/lib/libkdb5.so.5 -usr/lib/libkdb5.so.5.0 +usr/lib/libkdb5.so.6 +usr/lib/libkdb5.so.6.0 usr/lib/libmenu.so.5 usr/lib/libmenu.so.5.7 usr/lib/libmenuw.so.5 @@ -760,12 +759,12 @@ usr/share/doc/grep-2.6.3/TODO usr/share/doc/info-4.13a/COPYING usr/share/doc/keyutils-1.4/LICENCE.GPL usr/share/doc/keyutils-1.4/README -usr/share/doc/krb5-libs-1.9/LICENSE -usr/share/doc/krb5-libs-1.9/NOTICE -usr/share/doc/krb5-libs-1.9/README +usr/share/doc/krb5-libs-1.10.3/LICENSE +usr/share/doc/krb5-libs-1.10.3/NOTICE +usr/share/doc/krb5-libs-1.10.3/README usr/share/doc/libcap-2.16/License usr/share/doc/libcap-2.16/capability.notes -usr/share/doc/libgcc-4.4.6/COPYING.LIB +usr/share/doc/libgcc-4.4.7/COPYING.LIB usr/share/doc/libidn-1.18/AUTHORS usr/share/doc/libidn-1.18/COPYING usr/share/doc/libidn-1.18/COPYING.LIB @@ -3146,9 +3145,9 @@ var/mail @dirrm usr/share/doc/pcre-7.8 @dirrm usr/share/doc/ncurses-5.7 @dirrm usr/share/doc/libidn-1.18 -@dirrm usr/share/doc/libgcc-4.4.6 +@dirrm usr/share/doc/libgcc-4.4.7 @dirrm usr/share/doc/libcap-2.16 -@dirrm usr/share/doc/krb5-libs-1.9 +@dirrm usr/share/doc/krb5-libs-1.10.3 @dirrm usr/share/doc/keyutils-1.4 @dirrm usr/share/doc/info-4.13a @dirrm usr/share/doc/grep-2.6.3 From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 22:12:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47C8E769; Fri, 24 Jan 2014 22:12:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 27FE51E94; Fri, 24 Jan 2014 22:12:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OMC4sw054198; Fri, 24 Jan 2014 22:12:04 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OMC3SB054177; Fri, 24 Jan 2014 22:12:03 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401242212.s0OMC3SB054177@svn.freebsd.org> From: John Marino Date: Fri, 24 Jan 2014 22:12:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340935 - in head/finance/openerp-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.17 Precedence: list List-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, 24 Jan 2014 22:12:04 -0000 Author: marino Date: Fri Jan 24 22:12:02 2014 New Revision: 340935 URL: http://svnweb.freebsd.org/changeset/ports/340935 QAT: https://qat.redports.org/buildarchive/r340935/ Log: finance/openerp: Update version from 6.0.3 to 7.0 (LTS) Port maintenance assigned to Pakhom Golynga. PR: ports/185844 Submitted by: Pakhom Golynga Modified by: marino@ Modified: head/finance/openerp-server/Makefile head/finance/openerp-server/distinfo head/finance/openerp-server/files/openerpd.in head/finance/openerp-server/files/patch-setup.py head/finance/openerp-server/files/pkg-message.in Modified: head/finance/openerp-server/Makefile ============================================================================== --- head/finance/openerp-server/Makefile Fri Jan 24 22:01:48 2014 (r340934) +++ head/finance/openerp-server/Makefile Fri Jan 24 22:12:02 2014 (r340935) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= openerp-server -PORTVERSION= 6.0.3 -PORTREVISION= 2 +PORTVERSION= 7.0 PORTEPOCH= 1 CATEGORIES= finance python -MASTER_SITES= http://www.openerp.com/download/stable/source/ +MASTER_SITES= http://nightly.openerp.com/7.0/nightly/src/ +DISTNAME= openerp-${PORTVERSION}-${NIGHTLY} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= pakhom706@gmail.com COMMENT= Open source application ERP & CRM in Python using Postgresql BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging \ @@ -24,61 +24,32 @@ BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/PIL/ ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml \ ${PYTHON_PKGNAMEPREFIX}mako>0:${PORTSDIR}/textproc/py-mako \ ${PYTHON_PKGNAMEPREFIX}dateutil>0:${PORTSDIR}/devel/py-dateutil \ + ${PYTHON_PKGNAMEPREFIX}ldap2>0:${PORTSDIR}/net/py-ldap2 \ ${PYTHON_SITELIBDIR}/reportlab/__init__.py:${PORTSDIR}/print/py-reportlab2 RUN_DEPENDS:= ${BUILD_DEPENDS} +NIGHTLY= 20140115-002435 +NIGHTLY_= ${NIGHTLY:S/-/_/g} +WRKSRC= ${WRKDIR}/openerp-${PORTVERSION}-${NIGHTLY} + USE_RC_SUBR= openerpd SUB_FILES= openerp-server.conf pkg-message SUB_LIST= PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_EGGINFODIR= ${PYTHON_SITELIBDIR}/openerp_server-${PORTVERSION}-${PYTHON_VERSION:S/thon//}.egg-info -PYDISTUTILS_EGGINFO= PKG-INFO +PYDISTUTILS_NOEGGINFO= yes +PYDISTUTILS_AUTOPLIST= yes USERS= openerpd GROUPS= openerpd -MAN1= openerp-server.1 -MAN5= openerp_serverrc.5 - -NO_STAGE= yes -.include - -post-patch: - @${REINPLACE_CMD} -e 's|/usr/bin/env python|${PYTHON_CMD}|g' ${WRKSRC}/bin/openerp-server.py - post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - @cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${DOCSDIR} - @${FIND} -s -d ${DOCSDIR} -type f | ${SED} 's#${PREFIX}/##g' >> ${TMPPLIST} - @${FIND} -s -d ${DOCSDIR} -type d | ${SED} 's#${PREFIX}/#@dirrm #g' >> ${TMPPLIST} -.endif - - ${INSTALL_MAN} ${WRKSRC}/man/openerp-server.1 ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/man/openerp_serverrc.5 ${PREFIX}/man/man5 - - ${INSTALL_DATA} ${WRKDIR}/openerp-server.conf ${PREFIX}/etc/openerp-server.conf.sample - @if [ ! -f ${PREFIX}/etc/openerp-server.conf ]; then \ - ${CP} -p ${PREFIX}/etc/openerp-server.conf.sample ${PREFIX}/etc/openerp-server.conf ; \ - fi - @${ECHO} '@unexec if cmp -s %D/etc/openerp-server.conf.sample %D/etc/openerp-server.conf; then rm -f %D/etc/openerp-server.conf; fi' >> ${TMPPLIST} + @${REINPLACE_CMD} -e 's|site-packages/openerp-server|site-packages/openerp-${PORTVERSION}_${NIGHTLY_}-${PYTHON_VERSION:S/thon//}.egg/openerp|g' \ + ${WRKDIR}/openerp-server.conf + ${INSTALL_DATA} ${WRKDIR}/openerp-server.conf \ + ${STAGEDIR}${PREFIX}/etc/openerp-server.conf.sample @${ECHO} etc/openerp-server.conf.sample >> ${TMPPLIST} - @${ECHO} '@exec if [ ! -f %D/etc/openerp-server.conf ]; then cp -p %D/%F %B/openerp-server.conf; fi' >> ${TMPPLIST} - - @${CHMOD} a+x ${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/openerp-server.py - - @${ECHO} bin/openerp-server >> ${TMPPLIST} - @${FIND} -s -d ${PYTHON_SITELIBDIR}/${PORTNAME} \ - -type f | ${SED} 's#${PREFIX}/##g' >> ${TMPPLIST} - @${FIND} -s -d ${PYTHON_SITELIBDIR}/${PORTNAME} \ - -type d | ${SED} 's#${PREFIX}/#@dirrm #g' >> ${TMPPLIST} - @${FIND} -s -d ${PYDISTUTILS_EGGINFODIR} \ - -type f -print |grep -v PKG-INFO| ${SED} 's#${PREFIX}/##g' >> ${TMPPLIST} - @${FIND} -s -d ${PYDISTUTILS_EGGINFODIR} \ - -type d | ${SED} 's#${PREFIX}/#@dirrm #g' >> ${TMPPLIST} - - @${CAT} ${PKGMESSAGE} + @${CHMOD} a+x ${STAGEDIR}${PREFIX}/bin/openerp-server -.include +.include Modified: head/finance/openerp-server/distinfo ============================================================================== --- head/finance/openerp-server/distinfo Fri Jan 24 22:01:48 2014 (r340934) +++ head/finance/openerp-server/distinfo Fri Jan 24 22:12:02 2014 (r340935) @@ -1,2 +1,2 @@ -SHA256 (openerp-server-6.0.3.tar.gz) = 763296aef9967848506daa23dca017b2f341d12936d1db9df1f2ba1412b218a9 -SIZE (openerp-server-6.0.3.tar.gz) = 28477345 +SHA256 (openerp-7.0-20140115-002435.tar.gz) = 462f7ce568fe9ffb5b2dc429df53e19b8effd8237b2de5af1213d97e5dad56f1 +SIZE (openerp-7.0-20140115-002435.tar.gz) = 64096565 Modified: head/finance/openerp-server/files/openerpd.in ============================================================================== --- head/finance/openerp-server/files/openerpd.in Fri Jan 24 22:01:48 2014 (r340934) +++ head/finance/openerp-server/files/openerpd.in Fri Jan 24 22:12:02 2014 (r340935) @@ -48,6 +48,8 @@ stop_cmd="${name}_stop" status_cmd="${name}_status" getval_cmd="${name}_getval" +export PYTHON_EGG_DIR=/tmp + openerpd_prestart() { local d Modified: head/finance/openerp-server/files/patch-setup.py ============================================================================== --- head/finance/openerp-server/files/patch-setup.py Fri Jan 24 22:01:48 2014 (r340934) +++ head/finance/openerp-server/files/patch-setup.py Fri Jan 24 22:12:02 2014 (r340935) @@ -1,29 +1,10 @@ ---- setup.py 2011-08-21 16:34:59.526991138 +0200 -+++ setup.diffs 2011-08-21 16:35:49.515560426 +0200 -@@ -145,16 +145,16 @@ - # files.append((root, [join(root, name) for name in names])) - files.append(('.', [join('bin', 'import_xml.rng'),])) - else: -- man_directory = join('share', 'man') -- files.append((join(man_directory, 'man1'), ['man/openerp-server.1'])) -- files.append((join(man_directory, 'man5'), ['man/openerp_serverrc.5'])) -- -- doc_directory = join('share', 'doc', 'openerp-server-%s' % version) -- files.append((doc_directory, filter(isfile, glob.glob('doc/*')))) -- files.append((join(doc_directory, 'migrate', '3.3.0-3.4.0'), -- filter(isfile, glob.glob('doc/migrate/3.3.0-3.4.0/*')))) -- files.append((join(doc_directory, 'migrate', '3.4.0-4.0.0'), -- filter(isfile, glob.glob('doc/migrate/3.4.0-4.0.0/*')))) -+# man_directory = join('share', 'man') -+# files.append((join(man_directory, 'man1'), ['man/openerp-server.1'])) -+# files.append((join(man_directory, 'man5'), ['man/openerp_serverrc.5'])) -+# -+# doc_directory = join('share', 'doc', 'openerp-server-%s' % version) -+# files.append((doc_directory, filter(isfile, glob.glob('doc/*')))) -+# files.append((join(doc_directory, 'migrate', '3.3.0-3.4.0'), -+# filter(isfile, glob.glob('doc/migrate/3.3.0-3.4.0/*')))) -+# files.append((join(doc_directory, 'migrate', '3.4.0-4.0.0'), -+# filter(isfile, glob.glob('doc/migrate/3.4.0-4.0.0/*')))) - - openerp_site_packages = join(get_python_lib(prefix=''), 'openerp-server') - +--- setup.py.orig 2013-05-15 03:10:46.000000000 +0400 ++++ setup.py 2014-01-15 10:13:59.067058613 +0400 +@@ -128,7 +128,6 @@ + 'psycopg2 >= 2.2', + 'pydot', + 'python-dateutil < 2', +- 'python-ldap', # optional + 'python-openid', + 'pytz', + 'pywebdav', Modified: head/finance/openerp-server/files/pkg-message.in ============================================================================== --- head/finance/openerp-server/files/pkg-message.in Fri Jan 24 22:01:48 2014 (r340934) +++ head/finance/openerp-server/files/pkg-message.in Fri Jan 24 22:12:02 2014 (r340935) @@ -16,4 +16,10 @@ You can try something like this : [PGSQL] $ createuser $openerp_dbuser [PGSQL] $ createdb --owner=${openerp_dbuser} --encoding=UTF-8 --locale=en_EN.UTF-8 ${openerp_dbname} "OpenERP initial database" +Setuping you first database +--------------------------- + +Point your browser to http://localhost:8069/ and click "Manage Databases", the +default master password is "admin". + ************************************************************************ From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 22:15:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B89CD955 for ; Fri, 24 Jan 2014 22:15:30 +0000 (UTC) Received: from mail-qc0-f171.google.com (mail-qc0-f171.google.com [209.85.216.171]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 742C51EAF for ; Fri, 24 Jan 2014 22:15:30 +0000 (UTC) Received: by mail-qc0-f171.google.com with SMTP id n7so5179750qcx.16 for ; Fri, 24 Jan 2014 14:15:23 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=mqlF0bpDvWZ6/KgsxkqHmBbr7kNgm2pRxRQsegtpvpI=; b=gFNISpKwE5S1Bt0YbMIGO8br9nesbwYd3Jg74CcImtGTcK+6F2KGMY6ObdVZZAUBop LUnQrtd3yMLAXyC3Vm26M6+fbg5/sV1dBb9kX6Nl/puMpSIUwK7+n5noweZjB76WVdmc 2wLfKoM87tZ5KfOjk5hgbNDBEWnFkimxe2OwGnKl/HmDDw4RX2Dic7JzOcseEbFrMlEK 0uAj8p5/emfWFboGZbRmIf98uBTl2cSEQwivFcql2TLyp6lawqdDUT+BueXdYfZWLvbx bphB1vpqx1nS1LI5yZngRccsQsWYZDo5QEylfYTxuDh4BxRfICr8Sqnrr4TNgoSWD4xB eb1g== X-Received: by 10.224.20.9 with SMTP id d9mr1124736qab.100.1390601723776; Fri, 24 Jan 2014 14:15:23 -0800 (PST) Received: from barcelona.nyc.corp.google.com (barcelona.nyc.corp.google.com [172.26.105.74]) by mx.google.com with ESMTPSA id 30sm1810797qgt.4.2014.01.24.14.15.19 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 24 Jan 2014 14:15:19 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 7.1 \(1827\)) Subject: Re: svn commit: r340929 - in head/devel: kyua kyua-atf-compat kyua-testers lutok From: Julio Merino In-Reply-To: <20140124200827.GF37299@ithaqua.etoilebsd.net> Date: Fri, 24 Jan 2014 17:15:17 -0500 Content-Transfer-Encoding: quoted-printable Message-Id: <448D0D58-0AA2-4437-B671-EABA06B0D1EC@meroh.net> References: <201401241946.s0OJkv5m094049@svn.freebsd.org> <20140124200827.GF37299@ithaqua.etoilebsd.net> To: Baptiste Daroussin X-Mailer: Apple Mail (2.1827) 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.17 Precedence: list List-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, 24 Jan 2014 22:15:30 -0000 On Jan 24, 2014, at 15:08, Baptiste Daroussin wrote: > @comment $FreeBSD$ is wrong in pkg-plist Why? Also, can I just go ahead and delete it? (I.e. do you approve of the = change?) Thanks.= From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 22:20:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 750D9AD1; Fri, 24 Jan 2014 22:20:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 603431ED9; Fri, 24 Jan 2014 22:20:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OMKhm2060687; Fri, 24 Jan 2014 22:20:43 GMT (envelope-from netchild@svn.freebsd.org) Received: (from netchild@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OMKhG3060686; Fri, 24 Jan 2014 22:20:43 GMT (envelope-from netchild@svn.freebsd.org) Message-Id: <201401242220.s0OMKhG3060686@svn.freebsd.org> From: Alexander Leidinger Date: Fri, 24 Jan 2014 22:20:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340936 - head/audio/lame X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 22:20:43 -0000 Author: netchild Date: Fri Jan 24 22:20:42 2014 New Revision: 340936 URL: http://svnweb.freebsd.org/changeset/ports/340936 QAT: https://qat.redports.org/buildarchive/r340936/ Log: Cleanup (the stagedir part allows to install everything and let the plist take care about the docs-install or not). Submitted by: bapb Modified: head/audio/lame/Makefile Modified: head/audio/lame/Makefile ============================================================================== --- head/audio/lame/Makefile Fri Jan 24 22:12:02 2014 (r340935) +++ head/audio/lame/Makefile Fri Jan 24 22:20:42 2014 (r340936) @@ -15,7 +15,6 @@ USE_AUTOTOOLS= libtool USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-nasm --enable-mp3rtp --disable-gtktest -CONFIGURE_ARGS_PREFIX= ${STAGEDIR}${PREFIX} RESTRICTED= patent issues, see http://www.mp3licensing.com/ @@ -32,22 +31,11 @@ post-patch: @${REINPLACE_CMD} -e 's,test -d \.libs || mkdir,mkdir -p,' \ ${WRKSRC}/libmp3lame/i386/Makefile.in -.if !${PORT_OPTIONS:MDOCS} -do-install: - @cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-exec - @cd ${INSTALL_WRKSRC}/include && ${SETENV} ${MAKE_ENV} ${GMAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-data - @cd ${INSTALL_WRKSRC}/doc/man && ${SETENV} ${MAKE_ENV} ${GMAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install-data -.else -post-install: install-doc - -install-doc: +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmp3lame.so.0 @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 22:23:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 358E7C0B; Fri, 24 Jan 2014 22:23:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 15FB01F46; Fri, 24 Jan 2014 22:23:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OMNpkf064321; Fri, 24 Jan 2014 22:23:51 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OMNpPP064316; Fri, 24 Jan 2014 22:23:51 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401242223.s0OMNpPP064316@svn.freebsd.org> From: Antoine Brodin Date: Fri, 24 Jan 2014 22:23:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340937 - head/sysutils/rubygem-capistrano X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 22:23:52 -0000 Author: antoine Date: Fri Jan 24 22:23:51 2014 New Revision: 340937 URL: http://svnweb.freebsd.org/changeset/ports/340937 QAT: https://qat.redports.org/buildarchive/r340937/ Log: - Update to 3.1.0 - Remove obsolete message about SwitchTower, it was removed in 2006 - Add message about 3.1.0 change: With Capistrano version 3.1, deploy:restart task is no longer run by default. From this version, developers who restart the app on each deploy need to declare it in their deploy flow (eg after 'deploy:publishing', 'deploy:restart'). PR: ports/185983 Submitted by: Rustem Alimov Added: head/sysutils/rubygem-capistrano/pkg-message (contents, props changed) Modified: head/sysutils/rubygem-capistrano/Makefile head/sysutils/rubygem-capistrano/distinfo Modified: head/sysutils/rubygem-capistrano/Makefile ============================================================================== --- head/sysutils/rubygem-capistrano/Makefile Fri Jan 24 22:20:42 2014 (r340936) +++ head/sysutils/rubygem-capistrano/Makefile Fri Jan 24 22:23:51 2014 (r340937) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= capistrano -PORTVERSION= 3.0.1 +PORTVERSION= 3.1.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG @@ -13,23 +13,13 @@ LICENSE= MIT RUN_DEPENDS= rubygem-i18n>=0:${PORTSDIR}/devel/rubygem-i18n \ rubygem-rake>=10:${PORTSDIR}/devel/rubygem-rake \ - rubygem-sshkit>=0.0.23:${PORTSDIR}/security/rubygem-sshkit + rubygem-sshkit>=1.3:${PORTSDIR}/security/rubygem-sshkit USE_RUBY= yes USE_RAKE= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -PLIST_FILES= bin/cap - -post-install: - @${ECHO_MSG} "======================================================================" - @${ECHO_MSG} - @${ECHO_MSG} "If upgrading/switching from SwitchTower to Capistrano, be sure to:" - @${ECHO_MSG} " - pkg_delete ${PKG_DBDIR}/rubygem-switchtower-*" - @${ECHO_MSG} " - for all Rails projects, execute \"cap -A .\", keeping deploy.rb" - @${ECHO_MSG} " - for all Rails projects, remove lib/tasks/switchtower.rake" - @${ECHO_MSG} - @${ECHO_MSG} "======================================================================" +PLIST_FILES= bin/cap bin/capify .include Modified: head/sysutils/rubygem-capistrano/distinfo ============================================================================== --- head/sysutils/rubygem-capistrano/distinfo Fri Jan 24 22:20:42 2014 (r340936) +++ head/sysutils/rubygem-capistrano/distinfo Fri Jan 24 22:23:51 2014 (r340937) @@ -1,2 +1,2 @@ -SHA256 (rubygem/capistrano-3.0.1.gem) = 1abbb653c9213ace344dd86d9cee03115be47b5a3724e6a79ddbd75217f78408 -SIZE (rubygem/capistrano-3.0.1.gem) = 31232 +SHA256 (rubygem/capistrano-3.1.0.gem) = 1050effddeb41c587c0798bdbd4caaca86115d4291089b01e889a5e3fe93fdd5 +SIZE (rubygem/capistrano-3.1.0.gem) = 38400 Added: head/sysutils/rubygem-capistrano/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-capistrano/pkg-message Fri Jan 24 22:23:51 2014 (r340937) @@ -0,0 +1,5 @@ +=== +With Capistrano version 3.1, deploy:restart task is no longer run by default. +From this version, developers who restart the app on each deploy need to declare +it in their deploy flow (eg after 'deploy:publishing', 'deploy:restart'). +=== From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 22:41:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96E153AE; Fri, 24 Jan 2014 22:41:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 68952102C; Fri, 24 Jan 2014 22:41:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OMfMi3071777; Fri, 24 Jan 2014 22:41:22 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OMfMi7071775; Fri, 24 Jan 2014 22:41:22 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401242241.s0OMfMi7071775@svn.freebsd.org> From: Antoine Brodin Date: Fri, 24 Jan 2014 22:41:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340938 - 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.17 Precedence: list List-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, 24 Jan 2014 22:41:22 -0000 Author: antoine Date: Fri Jan 24 22:41:21 2014 New Revision: 340938 URL: http://svnweb.freebsd.org/changeset/ports/340938 QAT: https://qat.redports.org/buildarchive/r340938/ Log: Fix plist after upgrade to 0.74 Modified: head/dns/p5-Net-DNS/Makefile head/dns/p5-Net-DNS/pkg-plist Modified: head/dns/p5-Net-DNS/Makefile ============================================================================== --- head/dns/p5-Net-DNS/Makefile Fri Jan 24 22:23:51 2014 (r340937) +++ head/dns/p5-Net-DNS/Makefile Fri Jan 24 22:41:21 2014 (r340938) @@ -3,6 +3,7 @@ PORTNAME= Net-DNS PORTVERSION= 0.74 +PORTREVISION= 1 CATEGORIES= dns net perl5 ipv6 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/dns/p5-Net-DNS/pkg-plist ============================================================================== --- head/dns/p5-Net-DNS/pkg-plist Fri Jan 24 22:23:51 2014 (r340937) +++ head/dns/p5-Net-DNS/pkg-plist Fri Jan 24 22:41:21 2014 (r340938) @@ -13,11 +13,15 @@ %%PERL5_MAN3%%/Net::DNS::RR::AAAA.3.gz %%PERL5_MAN3%%/Net::DNS::RR::AFSDB.3.gz %%PERL5_MAN3%%/Net::DNS::RR::APL.3.gz +%%PERL5_MAN3%%/Net::DNS::RR::CAA.3.gz %%PERL5_MAN3%%/Net::DNS::RR::CERT.3.gz %%PERL5_MAN3%%/Net::DNS::RR::CNAME.3.gz %%PERL5_MAN3%%/Net::DNS::RR::DHCID.3.gz %%PERL5_MAN3%%/Net::DNS::RR::DNAME.3.gz %%PERL5_MAN3%%/Net::DNS::RR::EID.3.gz +%%PERL5_MAN3%%/Net::DNS::RR::EUI48.3.gz +%%PERL5_MAN3%%/Net::DNS::RR::EUI64.3.gz +%%PERL5_MAN3%%/Net::DNS::RR::GPOS.3.gz %%PERL5_MAN3%%/Net::DNS::RR::HINFO.3.gz %%PERL5_MAN3%%/Net::DNS::RR::HIP.3.gz %%PERL5_MAN3%%/Net::DNS::RR::IPSECKEY.3.gz @@ -77,11 +81,15 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/AAAA.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/AFSDB.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/APL.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/CAA.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/CERT.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/CNAME.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/DHCID.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/DNAME.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/EID.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/EUI48.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/EUI64.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/GPOS.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/HINFO.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/HIP.pm %%SITE_PERL%%/%%PERL_ARCH%%/Net/DNS/RR/IPSECKEY.pm From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 22:47:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1388852C; Fri, 24 Jan 2014 22:47:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F377310D3; Fri, 24 Jan 2014 22:47:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OMl69F072505; Fri, 24 Jan 2014 22:47:06 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OMl6Wh072504; Fri, 24 Jan 2014 22:47:06 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401242247.s0OMl6Wh072504@svn.freebsd.org> From: Antoine Brodin Date: Fri, 24 Jan 2014 22:47:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340939 - head/dns/udns X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 22:47:07 -0000 Author: antoine Date: Fri Jan 24 22:47:06 2014 New Revision: 340939 URL: http://svnweb.freebsd.org/changeset/ports/340939 QAT: https://qat.redports.org/buildarchive/r340939/ Log: Fix a broken symlink With hat: portmgr Modified: head/dns/udns/Makefile Modified: head/dns/udns/Makefile ============================================================================== --- head/dns/udns/Makefile Fri Jan 24 22:41:21 2014 (r340938) +++ head/dns/udns/Makefile Fri Jan 24 22:47:06 2014 (r340939) @@ -3,6 +3,7 @@ PORTNAME= udns PORTVERSION= 0.3 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= http://www.corpit.ru/mjt/udns/ @@ -37,7 +38,7 @@ post-build: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/libudns.so.${SHLIB_MAJOR} \ ${STAGEDIR}${PREFIX}/lib/libudns.so.${SHLIB_MAJOR} - ${LN} -sf ${STAGEDIR}${PREFIX}/lib/libudns.so.${SHLIB_MAJOR} \ + ${LN} -sf libudns.so.${SHLIB_MAJOR} \ ${STAGEDIR}${PREFIX}/lib/libudns.so ${INSTALL_DATA} ${WRKSRC}/udns.h ${STAGEDIR}${PREFIX}/include/udns.h ${INSTALL_DATA} ${WRKSRC}/libudns.a ${STAGEDIR}${PREFIX}/lib/libudns.a From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 22:56:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8277176A; Fri, 24 Jan 2014 22:56:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6ECFD117F; Fri, 24 Jan 2014 22:56:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0OMulrA076178; Fri, 24 Jan 2014 22:56:47 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0OMulB7076177; Fri, 24 Jan 2014 22:56:47 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201401242256.s0OMulB7076177@svn.freebsd.org> From: Rene Ladan Date: Fri, 24 Jan 2014 22:56:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340940 - head/net-mgmt/ng_ipacct X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 22:56:47 -0000 Author: rene Date: Fri Jan 24 22:56:46 2014 New Revision: 340940 URL: http://svnweb.freebsd.org/changeset/ports/340940 QAT: https://qat.redports.org/buildarchive/r340940/ Log: Do not set variables already set by USES=kmod Approved by: maintainer silence (vsevolod@) Modified: head/net-mgmt/ng_ipacct/Makefile Modified: head/net-mgmt/ng_ipacct/Makefile ============================================================================== --- head/net-mgmt/ng_ipacct/Makefile Fri Jan 24 22:47:06 2014 (r340939) +++ head/net-mgmt/ng_ipacct/Makefile Fri Jan 24 22:56:46 2014 (r340940) @@ -15,7 +15,7 @@ LICENSE= BSD USES= kmod uidfix -MAKE_ENV= BINDIR="${PREFIX}/sbin" KMODDIR=${KMODDIR} NO_XREF=yes +MAKE_ENV= BINDIR="${PREFIX}/sbin" USE_RC_SUBR= ng_ipacct SUB_FILES= pkg-message From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:00:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D330B922; Fri, 24 Jan 2014 23:00:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A5EB7119B; Fri, 24 Jan 2014 23:00:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ON09OJ076802; Fri, 24 Jan 2014 23:00:09 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ON09xm076799; Fri, 24 Jan 2014 23:00:09 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401242300.s0ON09xm076799@svn.freebsd.org> From: Antoine Brodin Date: Fri, 24 Jan 2014 23:00:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340941 - head/devel/p5-File-ChangeNotify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:00:09 -0000 Author: antoine Date: Fri Jan 24 23:00:08 2014 New Revision: 340941 URL: http://svnweb.freebsd.org/changeset/ports/340941 QAT: https://qat.redports.org/buildarchive/r340941/ Log: Finish stage support Approved by: maintainer timeout (via email, 3 weeks) Modified: head/devel/p5-File-ChangeNotify/Makefile head/devel/p5-File-ChangeNotify/pkg-plist Modified: head/devel/p5-File-ChangeNotify/Makefile ============================================================================== --- head/devel/p5-File-ChangeNotify/Makefile Fri Jan 24 22:56:46 2014 (r340940) +++ head/devel/p5-File-ChangeNotify/Makefile Fri Jan 24 23:00:08 2014 (r340941) @@ -3,6 +3,7 @@ PORTNAME= File-ChangeNotify PORTVERSION= 0.24 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -20,14 +21,6 @@ RUN_DEPENDS= p5-Moose>=2:${PORTSDIR}/dev BUILD_DEPENDS:= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Exception>0:${PORTSDIR}/devel/p5-Test-Exception -MAN3= File::ChangeNotify.3 \ - File::ChangeNotify::ConfigData.3 \ - File::ChangeNotify::Event.3 \ - File::ChangeNotify::Watcher.3 \ - File::ChangeNotify::Watcher::Default.3 \ - File::ChangeNotify::Watcher::Inotify.3 \ - File::ChangeNotify::Watcher::KQueue.3 - USES= perl5 USE_PERL5= modbuild Modified: head/devel/p5-File-ChangeNotify/pkg-plist ============================================================================== --- head/devel/p5-File-ChangeNotify/pkg-plist Fri Jan 24 22:56:46 2014 (r340940) +++ head/devel/p5-File-ChangeNotify/pkg-plist Fri Jan 24 23:00:08 2014 (r340941) @@ -5,6 +5,13 @@ %%SITE_PERL%%/File/ChangeNotify/Watcher/Default.pm %%SITE_PERL%%/File/ChangeNotify/Watcher/Inotify.pm %%SITE_PERL%%/File/ChangeNotify/Watcher/KQueue.pm +%%PERL5_MAN3%%/File::ChangeNotify.3.gz +%%PERL5_MAN3%%/File::ChangeNotify::ConfigData.3.gz +%%PERL5_MAN3%%/File::ChangeNotify::Event.3.gz +%%PERL5_MAN3%%/File::ChangeNotify::Watcher.3.gz +%%PERL5_MAN3%%/File::ChangeNotify::Watcher::Default.3.gz +%%PERL5_MAN3%%/File::ChangeNotify::Watcher::Inotify.3.gz +%%PERL5_MAN3%%/File::ChangeNotify::Watcher::KQueue.3.gz @dirrmtry %%SITE_PERL%%/File/ChangeNotify/Watcher @dirrmtry %%SITE_PERL%%/File/ChangeNotify @dirrmtry %%SITE_PERL%%/File From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:08:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B25AEA5; Fri, 24 Jan 2014 23:08:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 771C0123C; Fri, 24 Jan 2014 23:08:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ON8IQW080602; Fri, 24 Jan 2014 23:08:18 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ON8IdX080601; Fri, 24 Jan 2014 23:08:18 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201401242308.s0ON8IdX080601@svn.freebsd.org> From: Rene Ladan Date: Fri, 24 Jan 2014 23:08:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340942 - head/Mk/Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:08:18 -0000 Author: rene Date: Fri Jan 24 23:08:17 2014 New Revision: 340942 URL: http://svnweb.freebsd.org/changeset/ports/340942 QAT: https://qat.redports.org/buildarchive/r340942/ Log: - kernel modules support SSP natively, so change the description of SSP_UNSAFE [1] - take advantage of rmdir -p to remove nested instances of KMODDIR if empty. Some ports have KMODDIR=dir1/dir2 Submitted by: antoine [1] Approved by: portmgr (bapt) Modified: head/Mk/Uses/kmod.mk Modified: head/Mk/Uses/kmod.mk ============================================================================== --- head/Mk/Uses/kmod.mk Fri Jan 24 23:00:08 2014 (r340941) +++ head/Mk/Uses/kmod.mk Fri Jan 24 23:08:17 2014 (r340942) @@ -23,7 +23,7 @@ IGNORE= requires kernel source files in CATEGORIES+= kld -SSP_UNSAFE= kernel module does not support SSP +SSP_UNSAFE= kernel module supports SSP natively KMODDIR?= /boot/modules .if ${KMODDIR} == /boot/kernel @@ -51,7 +51,7 @@ kmod-post-install: /usr/sbin/kldxref ${KMODDIR} .endif .if ${KMODDIR} != /boot/modules - @${ECHO_CMD} "@unexec rmdir ${KMODDIR} 2>/dev/null || true" \ + @${ECHO_CMD} "@unexec rmdir -p ${KMODDIR} 2>/dev/null || true" \ >> ${TMPPLIST} .endif From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:14:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 29BCA28F; Fri, 24 Jan 2014 23:14:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 15BBA12C3; Fri, 24 Jan 2014 23:14:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONEeRv084190; Fri, 24 Jan 2014 23:14:40 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONEecI084188; Fri, 24 Jan 2014 23:14:40 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401242314.s0ONEecI084188@svn.freebsd.org> From: Antoine Brodin Date: Fri, 24 Jan 2014 23:14:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340943 - head/net-mgmt/p5-Net-IPAddress X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:14:41 -0000 Author: antoine Date: Fri Jan 24 23:14:40 2014 New Revision: 340943 URL: http://svnweb.freebsd.org/changeset/ports/340943 QAT: https://qat.redports.org/buildarchive/r340943/ Log: - Stage support - Remove non existent directories from plist Modified: head/net-mgmt/p5-Net-IPAddress/Makefile head/net-mgmt/p5-Net-IPAddress/pkg-plist Modified: head/net-mgmt/p5-Net-IPAddress/Makefile ============================================================================== --- head/net-mgmt/p5-Net-IPAddress/Makefile Fri Jan 24 23:08:17 2014 (r340942) +++ head/net-mgmt/p5-Net-IPAddress/Makefile Fri Jan 24 23:14:40 2014 (r340943) @@ -14,7 +14,4 @@ COMMENT= Perl functions used to manipula USES= perl5 USE_PERL5= configure -MAN3= Net::IPAddress.3 - -NO_STAGE= yes .include Modified: head/net-mgmt/p5-Net-IPAddress/pkg-plist ============================================================================== --- head/net-mgmt/p5-Net-IPAddress/pkg-plist Fri Jan 24 23:08:17 2014 (r340942) +++ head/net-mgmt/p5-Net-IPAddress/pkg-plist Fri Jan 24 23:14:40 2014 (r340943) @@ -1,7 +1,6 @@ %%SITE_PERL%%/Net/IPAddress.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/IPAddress/.packlist +%%PERL5_MAN3%%/Net::IPAddress.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/IPAddress -@dirrm %%SITE_PERL%%/auto/Net/IPAddress @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net -@dirrmtry %%SITE_PERL%%/auto/Net @dirrmtry %%SITE_PERL%%/Net From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:23:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 639F363B; Fri, 24 Jan 2014 23:23:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 35E0A137F; Fri, 24 Jan 2014 23:23:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONNoY5087868; Fri, 24 Jan 2014 23:23:50 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONNnvf087864; Fri, 24 Jan 2014 23:23:49 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201401242323.s0ONNnvf087864@svn.freebsd.org> From: Pawel Pekala Date: Fri, 24 Jan 2014 23:23:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340944 - head/x11-toolkits/c++-gtk-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.17 Precedence: list List-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, 24 Jan 2014 23:23:50 -0000 Author: pawel Date: Fri Jan 24 23:23:49 2014 New Revision: 340944 URL: http://svnweb.freebsd.org/changeset/ports/340944 QAT: https://qat.redports.org/buildarchive/r340944/ Log: - Update to version 2.2.5 - Strip library when DEBUG=off Modified: head/x11-toolkits/c++-gtk-utils/Makefile head/x11-toolkits/c++-gtk-utils/distinfo head/x11-toolkits/c++-gtk-utils/pkg-plist Modified: head/x11-toolkits/c++-gtk-utils/Makefile ============================================================================== --- head/x11-toolkits/c++-gtk-utils/Makefile Fri Jan 24 23:14:40 2014 (r340943) +++ head/x11-toolkits/c++-gtk-utils/Makefile Fri Jan 24 23:23:49 2014 (r340944) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= c++-gtk-utils -PORTVERSION= 2.2.4 +PORTVERSION= 2.2.5 CATEGORIES= x11-toolkits MASTER_SITES= SF/cxx-gtk-utils/cxx-gtk-utils/${PORTVERSION}/ DISTNAME= c%2B%2B-gtk-utils-${PORTVERSION} @@ -28,4 +28,11 @@ OPTIONS_DEFINE= DEBUG DOCS DEBUG_CONFIGURE_ON= --enable-debug +.include + +post-install: +.if ! ${PORT_OPTIONS:MDEBUG} + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcxx-gtk-utils-2-2.2.so.1 +.endif + .include Modified: head/x11-toolkits/c++-gtk-utils/distinfo ============================================================================== --- head/x11-toolkits/c++-gtk-utils/distinfo Fri Jan 24 23:14:40 2014 (r340943) +++ head/x11-toolkits/c++-gtk-utils/distinfo Fri Jan 24 23:23:49 2014 (r340944) @@ -1,2 +1,2 @@ -SHA256 (c%2B%2B-gtk-utils-2.2.4.tar.gz) = 9ae102696ff259936fe0a295e3eb6f7bec2779d4368eacf181b37fa919358dc9 -SIZE (c%2B%2B-gtk-utils-2.2.4.tar.gz) = 2487225 +SHA256 (c%2B%2B-gtk-utils-2.2.5.tar.gz) = 6974671940bc4edcd3614dea69724b500d83dc1940cbc7f98c2811e018660353 +SIZE (c%2B%2B-gtk-utils-2.2.5.tar.gz) = 2563416 Modified: head/x11-toolkits/c++-gtk-utils/pkg-plist ============================================================================== --- head/x11-toolkits/c++-gtk-utils/pkg-plist Fri Jan 24 23:14:40 2014 (r340943) +++ head/x11-toolkits/c++-gtk-utils/pkg-plist Fri Jan 24 23:23:49 2014 (r340944) @@ -6,6 +6,7 @@ include/c++-gtk-utils-2-2.2/c++-gtk-util include/c++-gtk-utils-2-2.2/c++-gtk-utils/convert.h include/c++-gtk-utils-2-2.2/c++-gtk-utils/do_if.h include/c++-gtk-utils-2-2.2/c++-gtk-utils/emitter.h +include/c++-gtk-utils-2-2.2/c++-gtk-utils/extension.h include/c++-gtk-utils-2-2.2/c++-gtk-utils/fdstream.h include/c++-gtk-utils-2-2.2/c++-gtk-utils/fdstream.tpp include/c++-gtk-utils-2-2.2/c++-gtk-utils/file_print_manager.h From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:24:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF3C071B; Fri, 24 Jan 2014 23:24:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C96DC1386; Fri, 24 Jan 2014 23:24:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONOvPJ088255; Fri, 24 Jan 2014 23:24:57 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONOsF9088234; Fri, 24 Jan 2014 23:24:54 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401242324.s0ONOsF9088234@svn.freebsd.org> From: Mathieu Arnold Date: Fri, 24 Jan 2014 23:24:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340945 - in head/net-mgmt: . nagios nagios4 nagios4/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.17 Precedence: list List-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, 24 Jan 2014 23:24:58 -0000 Author: mat Date: Fri Jan 24 23:24:53 2014 New Revision: 340945 URL: http://svnweb.freebsd.org/changeset/ports/340945 QAT: https://qat.redports.org/buildarchive/r340945/ Log: Add nagios4, the next version of the nagios monitoring system. While there, garbage collect the UID/GID in nagios. Sponsored by: Absolight Added: head/net-mgmt/nagios4/ - copied from r340893, head/net-mgmt/nagios/ Modified: head/net-mgmt/Makefile head/net-mgmt/nagios/Makefile head/net-mgmt/nagios4/Makefile head/net-mgmt/nagios4/distinfo head/net-mgmt/nagios4/files/patch-Makefile.in head/net-mgmt/nagios4/files/patch-base__Makefile.in head/net-mgmt/nagios4/files/patch-cgi__Makefile.in head/net-mgmt/nagios4/files/patch-configure.in head/net-mgmt/nagios4/files/patch-contrib__Makefile.in head/net-mgmt/nagios4/files/patch-html__Makefile.in head/net-mgmt/nagios4/files/patch-html__index.php head/net-mgmt/nagios4/files/patch-html__main.php head/net-mgmt/nagios4/files/patch-include__locations.h.in head/net-mgmt/nagios4/files/patch-sample-config__cgi.cfg.in head/net-mgmt/nagios4/files/patch-sample-config__nagios.cfg.in head/net-mgmt/nagios4/files/patch-sample-config__template-object__localhost.cfg.in head/net-mgmt/nagios4/files/patch-sample-config__template-object__templates.cfg.in head/net-mgmt/nagios4/pkg-plist Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Fri Jan 24 23:23:49 2014 (r340944) +++ head/net-mgmt/Makefile Fri Jan 24 23:24:53 2014 (r340945) @@ -139,6 +139,7 @@ SUBDIR += nagios-snmp-plugins SUBDIR += nagios-snmp-plugins-extras SUBDIR += nagios-spamd-plugin + SUBDIR += nagios4 SUBDIR += nagiosagent SUBDIR += nagiosgraph SUBDIR += nagiosql Modified: head/net-mgmt/nagios/Makefile ============================================================================== --- head/net-mgmt/nagios/Makefile Fri Jan 24 23:23:49 2014 (r340944) +++ head/net-mgmt/nagios/Makefile Fri Jan 24 23:24:53 2014 (r340945) @@ -3,7 +3,7 @@ PORTNAME= nagios PORTVERSION= 3.5.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-mgmt MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-3.x/${PORTNAME}-${PORTVERSION} @@ -21,7 +21,7 @@ USE_AUTOTOOLS= autoconf libltdl USE_PHP= yes USE_RC_SUBR= nagios -CONFLICTS= nagios-[12].* nagios-devel-* +CONFLICTS= nagios-[12].* nagios-devel-* nagios4-* GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-command-user=${NAGIOSUSER} \ @@ -52,8 +52,6 @@ PLIST_SUB= NAGIOSDIR=${NAGIOSDIR} \ NAGIOSWWWDIR=${NAGIOSWWWDIR} \ NAGIOSUSER=${NAGIOSUSER} \ NAGIOSGROUP=${NAGIOSGROUP} \ - NAGIOSUID=${NAGIOSUID} \ - NAGIOSGID=${NAGIOSGID} \ NAGIOSHTMURL=${NAGIOSHTMURL} \ NAGIOSCGIURL=${NAGIOSCGIURL} \ WWWGRP=${WWWGRP} @@ -68,9 +66,6 @@ NAGIOSUSER?= nagios NAGIOSGROUP?= nagios NAGIOSDIR?= /var/spool/nagios -NAGIOSUID= 181 -NAGIOSGID= ${NAGIOSUID} - NAGIOSWWWDIR?= www/nagios NAGIOSHTMURL?= /nagios NAGIOSCGIURL?= ${NAGIOSHTMURL}/cgi-bin Modified: head/net-mgmt/nagios4/Makefile ============================================================================== --- head/net-mgmt/nagios/Makefile Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/Makefile Fri Jan 24 23:24:53 2014 (r340945) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= nagios -PORTVERSION= 3.5.1 -PORTREVISION= 3 +PORTVERSION= 4.0.2 +PKGNAMESUFFIX= 4 CATEGORIES= net-mgmt -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-3.x/${PORTNAME}-${PORTVERSION} +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-4.x/${PORTNAME}-${PORTVERSION} MAINTAINER= mat@FreeBSD.org COMMENT= Powerful network monitoring system @@ -13,9 +13,8 @@ COMMENT= Powerful network monitoring sys LICENSE= GPLv2 LIB_DEPENDS= libgd.so:${PORTSDIR}/graphics/gd -RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net-mgmt/nagios-plugins -USES= iconv perl5 uidfix +USES= gmake iconv perl5 uidfix USE_PERL5= build USE_AUTOTOOLS= autoconf libltdl USE_PHP= yes @@ -45,15 +44,11 @@ CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" CPPFLAGS+= -I${LOCALBASE}/include -fPIC CFLAGS+= ${CPPFLAGS} -MAKE_JOBS_UNSAFE= yes - INSTALL_TARGET= install install-commandmode install-config PLIST_SUB= NAGIOSDIR=${NAGIOSDIR} \ NAGIOSWWWDIR=${NAGIOSWWWDIR} \ NAGIOSUSER=${NAGIOSUSER} \ NAGIOSGROUP=${NAGIOSGROUP} \ - NAGIOSUID=${NAGIOSUID} \ - NAGIOSGID=${NAGIOSGID} \ NAGIOSHTMURL=${NAGIOSHTMURL} \ NAGIOSCGIURL=${NAGIOSCGIURL} \ WWWGRP=${WWWGRP} @@ -68,9 +63,6 @@ NAGIOSUSER?= nagios NAGIOSGROUP?= nagios NAGIOSDIR?= /var/spool/nagios -NAGIOSUID= 181 -NAGIOSGID= ${NAGIOSUID} - NAGIOSWWWDIR?= www/nagios NAGIOSHTMURL?= /nagios NAGIOSCGIURL?= ${NAGIOSHTMURL}/cgi-bin @@ -78,23 +70,16 @@ NAGIOSCGIURL?= ${NAGIOSHTMURL}/cgi-bin USERS= ${NAGIOSUSER} GROUPS= ${NAGIOSGROUP} -OPTIONS_DEFINE= EMBEDDED_PERL NANOSLEEP EVENT_BROKER UNHANDLED_HACK -EMBEDDED_PERL_DESC= Enable embedded Perl [requires Perl 5.8.0+] +OPTIONS_DEFINE= NANOSLEEP EVENT_BROKER UNHANDLED_HACK NANOSLEEP_DESC= Use nanosleep in event timing EVENT_BROKER_DESC= Enable event broker functionality UNHANDLED_HACK_DESC= Display passive checks in unhandled queries OPTIONS_SUB= -EMBEDDED_PERL_USE= perl5=run -EMBEDDED_PERL_CONFIGURE_ENABLE= embedded-perl -EMBEDDED_PERL_CONFIGURE_WITH= perlcache NANOSLEEP_CONFIGURE_ENABLE= nanosleep EVENT_BROKER_CONFIGURE_ENABLE= event-broker -post-extract: - @${MV} ${WRKDIR}/${PORTNAME} ${WRKSRC} - .include post-patch: Modified: head/net-mgmt/nagios4/distinfo ============================================================================== --- head/net-mgmt/nagios/distinfo Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/distinfo Fri Jan 24 23:24:53 2014 (r340945) @@ -1,2 +1,2 @@ -SHA256 (nagios-3.5.1.tar.gz) = ca9dd68234fa090b3c35ecc8767b2c9eb743977eaf32612fa9b8341cc00a0f99 -SIZE (nagios-3.5.1.tar.gz) = 1763584 +SHA256 (nagios-4.0.2.tar.gz) = 01a3865301cb57ffec57247a2a23ea43d9cf2d21a480a89e9070546fdd366629 +SIZE (nagios-4.0.2.tar.gz) = 1696847 Modified: head/net-mgmt/nagios4/files/patch-Makefile.in ============================================================================== --- head/net-mgmt/nagios/files/patch-Makefile.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-Makefile.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,15 +1,6 @@ ---- ./Makefile.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./Makefile.in 2014-01-14 13:57:06.000000000 +0100 -@@ -30,8 +30,6 @@ - LIBEXECDIR=@libexecdir@ - HTMLDIR=@datadir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ --COMMAND_OPTS=@COMMAND_OPTS@ - HTTPD_CONF=@HTTPD_CONF@ - INIT_DIR=@init_dir@ - INIT_OPTS=-o root -g root -@@ -234,12 +232,12 @@ +--- ./Makefile.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./Makefile.in 2014-01-24 22:43:01.000000000 +0000 +@@ -245,7 +245,7 @@ $(MAKE) install-basic install-basic: @@ -18,13 +9,7 @@ $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR) $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR)/archives $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CHECKRESULTDIR) - if [ $(INSTALLPERLSTUFF) = yes ]; then \ -- $(INSTALL) -m 664 $(INSTALL_OPTS) p1.pl $(DESTDIR)$(BINDIR); \ -+ $(INSTALL) -m 644 $(INSTALL_OPTS) p1.pl $(DESTDIR)$(BINDIR); \ - fi; - - @echo "" -@@ -261,19 +259,18 @@ +@@ -269,19 +269,18 @@ install-config: @@ -56,7 +41,7 @@ @echo "" @echo "*** Config files installed ***" -@@ -321,7 +318,6 @@ +@@ -329,7 +328,6 @@ install-commandmode: $(INSTALL) -m 775 $(COMMAND_OPTS) -d $(DESTDIR)$(LOGDIR)/rw Modified: head/net-mgmt/nagios4/files/patch-base__Makefile.in ============================================================================== --- head/net-mgmt/nagios/files/patch-base__Makefile.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-base__Makefile.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,15 +1,6 @@ ---- ./base/Makefile.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./base/Makefile.in 2014-01-14 13:57:06.000000000 +0100 -@@ -39,8 +39,6 @@ - CGIDIR=@sbindir@ - HTMLDIR=@datarootdir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ --COMMAND_OPTS=@COMMAND_OPTS@ - STRIP=@STRIP@ - - CGIURL=@cgiurl@ -@@ -204,9 +202,9 @@ +--- ./base/Makefile.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./base/Makefile.in 2014-01-24 22:43:21.000000000 +0000 +@@ -180,9 +180,9 @@ $(MAKE) install-basic install-basic: Modified: head/net-mgmt/nagios4/files/patch-cgi__Makefile.in ============================================================================== --- head/net-mgmt/nagios/files/patch-cgi__Makefile.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-cgi__Makefile.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,15 +1,6 @@ ---- ./cgi/Makefile.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./cgi/Makefile.in 2014-01-14 13:57:06.000000000 +0100 -@@ -18,8 +18,6 @@ - CGIDIR=@sbindir@ - HTMLDIR=@datarootdir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ --COMMAND_OPTS=@COMMAND_OPTS@ - STRIP=@STRIP@ - - CGIEXTRAS=@CGIEXTRAS@ -@@ -201,9 +199,9 @@ +--- ./cgi/Makefile.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./cgi/Makefile.in 2014-01-24 22:43:36.000000000 +0000 +@@ -182,9 +182,9 @@ $(MAKE) install-basic install-basic: Modified: head/net-mgmt/nagios4/files/patch-configure.in ============================================================================== --- head/net-mgmt/nagios/files/patch-configure.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-configure.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,53 +1,27 @@ ---- ./configure.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./configure.in 2014-01-14 13:57:06.000000000 +0100 +--- ./configure.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./configure.in 2014-01-24 22:41:15.000000000 +0000 @@ -6,7 +6,6 @@ AC_INIT(base/nagios.c) - AC_CONFIG_HEADER(include/config.h include/snprintf.h) + AC_CONFIG_HEADER(include/config.h lib/snprintf.h lib/iobroker.h) -AC_PREFIX_DEFAULT(/usr/local/nagios) PKG_NAME=nagios - PKG_VERSION="3.5.1" -@@ -125,7 +124,15 @@ - dnl Test for pthreads support - taken from ICU FreeBSD Port configure script - THREADLIBS="" - have_pthreads="no" -+have_thr="no" - -+dnl Prefer libthr(3) over libpthread(3) due to serious process hanging issues -+AC_CHECK_LIB(thr,pthread_create) -+if test $ac_cv_lib_thr_pthread_create = yes; then -+ THREADLIBS="-lthr" -+ have_pthreads="yes" -+ have_thr="yes" -+else - dnl FreeBSD: Try ports/linuxthreads first - Mammad Zadeh - dnl FreeBSD -pthread check - Jonathan McDowell - AC_DEFUN([AC_PTHREAD_FREEBSD],[ -@@ -186,6 +193,7 @@ - if test $have_pthreads = "no"; then - AC_PTHREAD_FREEBSD - fi -+fi - - AC_SUBST(THREADLIBS) - -@@ -201,7 +209,7 @@ + PKG_VERSION="4.0.2" +@@ -134,14 +133,14 @@ AC_SUBST(nagios_grp) AC_DEFINE_UNQUOTED(DEFAULT_NAGIOS_USER,"$nagios_user",[user name to run nagios]) AC_DEFINE_UNQUOTED(DEFAULT_NAGIOS_GROUP,"$nagios_grp",[group name to run nagios]) -INSTALL_OPTS="-o $nagios_user -g $nagios_grp" -+INSTALL_OPTS="-o root -g wheel" ++INSTALL_OPTS="" AC_SUBST(INSTALL_OPTS) AC_ARG_WITH(command_user,AC_HELP_STRING([--with-command-user=],[sets user name for command access]),command_user=$withval,command_user=$nagios_user) -@@ -668,6 +676,9 @@ + AC_ARG_WITH(command_group,AC_HELP_STRING([--with-command-group=],[sets group name for command access]),command_grp=$withval,command_grp=$nagios_grp) + AC_SUBST(command_user) + AC_SUBST(command_grp) +-COMMAND_OPTS="-o $command_user -g $command_grp" ++COMMAND_OPTS="" + AC_SUBST(COMMAND_OPTS) - AC_DEFINE_UNQUOTED(EMBEDDEDPERL,,[Is embedded Perl being compiled in?]) - PERLLIBS="`perl -MExtUtils::Embed -e ldopts`" -+ if test x$have_thr = xyes; then -+ PERLLIBS="`echo $PERLLIBS | sed 's#pthread #lthr #'`" -+ fi - PERLDIR="`perl -MConfig -e 'print $Config{installsitearch}'`" - CFLAGS="${CFLAGS} `perl -MExtUtils::Embed -e ccopts`" - USEPERL=yes + dnl Check for location of mail program Modified: head/net-mgmt/nagios4/files/patch-contrib__Makefile.in ============================================================================== --- head/net-mgmt/nagios/files/patch-contrib__Makefile.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-contrib__Makefile.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,14 +1,6 @@ ---- ./contrib/Makefile.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./contrib/Makefile.in 2014-01-14 13:57:06.000000000 +0100 -@@ -16,7 +16,6 @@ - # Generated automatically from configure script - SNPRINTF_O=@SNPRINTF_O@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ - - - prefix=@prefix@ -@@ -51,10 +50,10 @@ +--- ./contrib/Makefile.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./contrib/Makefile.in 2014-01-24 22:44:01.000000000 +0000 +@@ -52,10 +52,10 @@ devclean: distclean install: Modified: head/net-mgmt/nagios4/files/patch-html__Makefile.in ============================================================================== --- head/net-mgmt/nagios/files/patch-html__Makefile.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-html__Makefile.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,15 +1,6 @@ ---- ./html/Makefile.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./html/Makefile.in 2014-01-14 13:57:06.000000000 +0100 -@@ -10,8 +10,6 @@ - CGIDIR=@sbindir@ - HTMLDIR=@datadir@ - INSTALL=@INSTALL@ --INSTALL_OPTS=@INSTALL_OPTS@ --COMMAND_OPTS=@COMMAND_OPTS@ - - CP=@CP@ - -@@ -34,55 +32,55 @@ +--- ./html/Makefile.in.orig 2014-01-24 22:44:21.000000000 +0000 ++++ ./html/Makefile.in 2014-01-24 22:44:31.000000000 +0000 +@@ -35,55 +35,55 @@ devclean: distclean install: Modified: head/net-mgmt/nagios4/files/patch-html__index.php ============================================================================== --- head/net-mgmt/nagios/files/patch-html__index.php Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-html__index.php Fri Jan 24 23:24:53 2014 (r340945) @@ -1,5 +1,5 @@ ---- ./html/index.php.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./html/index.php 2014-01-14 13:57:06.000000000 +0100 +--- ./html/index.php.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./html/index.php 2014-01-24 22:40:43.000000000 +0000 @@ -8,8 +8,9 @@ Modified: head/net-mgmt/nagios4/files/patch-html__main.php ============================================================================== --- head/net-mgmt/nagios/files/patch-html__main.php Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-html__main.php Fri Jan 24 23:24:53 2014 (r340945) @@ -1,10 +1,10 @@ ---- ./html/main.php.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./html/main.php 2014-01-14 13:57:06.000000000 +0100 -@@ -40,36 +40,10 @@ +--- ./html/main.php.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./html/main.php 2014-01-24 22:40:43.000000000 +0000 +@@ -40,37 +40,10 @@
Nagios® Core
-
Version 3.5.1
-
August 30, 2013
-- +
Version 4.0.2
+
November 25, 2013
+- @@ -34,6 +34,7 @@ -?> - - - +-
+
Modified: head/net-mgmt/nagios4/files/patch-include__locations.h.in ============================================================================== --- head/net-mgmt/nagios/files/patch-include__locations.h.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-include__locations.h.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,6 +1,6 @@ ---- ./include/locations.h.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./include/locations.h.in 2014-01-14 13:57:06.000000000 +0100 -@@ -20,7 +20,7 @@ +--- ./include/locations.h.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./include/locations.h.in 2014-01-24 22:40:43.000000000 +0000 +@@ -19,7 +19,7 @@ #define DEFAULT_TEMP_FILE "@localstatedir@/tempfile" #define DEFAULT_TEMP_PATH "/tmp" Modified: head/net-mgmt/nagios4/files/patch-sample-config__cgi.cfg.in ============================================================================== --- head/net-mgmt/nagios/files/patch-sample-config__cgi.cfg.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-sample-config__cgi.cfg.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,6 +1,6 @@ ---- ./sample-config/cgi.cfg.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./sample-config/cgi.cfg.in 2014-01-14 13:57:06.000000000 +0100 -@@ -264,7 +264,7 @@ +--- ./sample-config/cgi.cfg.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./sample-config/cgi.cfg.in 2014-01-24 22:40:43.000000000 +0000 +@@ -263,7 +263,7 @@ # OS and distribution, so you may have to tweak this to # work on your system. Modified: head/net-mgmt/nagios4/files/patch-sample-config__nagios.cfg.in ============================================================================== --- head/net-mgmt/nagios/files/patch-sample-config__nagios.cfg.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-sample-config__nagios.cfg.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,6 +1,6 @@ ---- ./sample-config/nagios.cfg.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./sample-config/nagios.cfg.in 2014-01-14 13:57:06.000000000 +0100 -@@ -32,7 +32,7 @@ +--- ./sample-config/nagios.cfg.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./sample-config/nagios.cfg.in 2014-01-24 22:40:43.000000000 +0000 +@@ -31,7 +31,7 @@ cfg_file=@sysconfdir@/objects/timeperiods.cfg cfg_file=@sysconfdir@/objects/templates.cfg Modified: head/net-mgmt/nagios4/files/patch-sample-config__template-object__localhost.cfg.in ============================================================================== --- head/net-mgmt/nagios/files/patch-sample-config__template-object__localhost.cfg.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-sample-config__template-object__localhost.cfg.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,6 +1,6 @@ ---- ./sample-config/template-object/localhost.cfg.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./sample-config/template-object/localhost.cfg.in 2014-01-14 13:57:06.000000000 +0100 -@@ -5,7 +5,7 @@ +--- ./sample-config/template-object/localhost.cfg.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./sample-config/template-object/localhost.cfg.in 2014-01-24 22:40:43.000000000 +0000 +@@ -4,7 +4,7 @@ # # NOTE: This config file is intended to serve as an *extremely* simple # example of how you can create configuration entries to monitor @@ -9,7 +9,7 @@ # ############################################################################### -@@ -23,9 +23,9 @@ +@@ -22,9 +22,9 @@ # Define a host for the local machine define host{ @@ -21,7 +21,7 @@ host_name localhost alias localhost address 127.0.0.1 -@@ -41,12 +41,12 @@ +@@ -40,12 +40,12 @@ ############################################################################### ############################################################################### Modified: head/net-mgmt/nagios4/files/patch-sample-config__template-object__templates.cfg.in ============================================================================== --- head/net-mgmt/nagios/files/patch-sample-config__template-object__templates.cfg.in Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/files/patch-sample-config__template-object__templates.cfg.in Fri Jan 24 23:24:53 2014 (r340945) @@ -1,6 +1,6 @@ ---- ./sample-config/template-object/templates.cfg.in.orig 2013-08-30 19:46:14.000000000 +0200 -+++ ./sample-config/template-object/templates.cfg.in 2014-01-14 13:57:06.000000000 +0100 -@@ -63,17 +63,17 @@ +--- ./sample-config/template-object/templates.cfg.in.orig 2013-11-25 14:16:25.000000000 +0000 ++++ ./sample-config/template-object/templates.cfg.in 2014-01-24 22:40:43.000000000 +0000 +@@ -61,17 +61,17 @@ } Modified: head/net-mgmt/nagios4/pkg-plist ============================================================================== --- head/net-mgmt/nagios/pkg-plist Fri Jan 24 12:50:53 2014 (r340893) +++ head/net-mgmt/nagios4/pkg-plist Fri Jan 24 23:24:53 2014 (r340945) @@ -7,7 +7,6 @@ @exec chown %%NAGIOSUSER%%:%%WWWGRP%% %%NAGIOSDIR%%/rw bin/nagios bin/nagiostats -%%EMBEDDED_PERL%%bin/p1.pl etc/nagios/cgi.cfg-sample etc/nagios/nagios.cfg-sample etc/nagios/objects/commands.cfg-sample From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:31:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1499CA96; Fri, 24 Jan 2014 23:31:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E95841469; Fri, 24 Jan 2014 23:31:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONV7uF091225; Fri, 24 Jan 2014 23:31:07 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONV7QO091223; Fri, 24 Jan 2014 23:31:07 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201401242331.s0ONV7QO091223@svn.freebsd.org> From: Rene Ladan Date: Fri, 24 Jan 2014 23:31:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340946 - in head/audio/aureal-kmod: . 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.17 Precedence: list List-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, 24 Jan 2014 23:31:08 -0000 Author: rene Date: Fri Jan 24 23:31:07 2014 New Revision: 340946 URL: http://svnweb.freebsd.org/changeset/ports/340946 QAT: https://qat.redports.org/buildarchive/r340946/ Log: - Stagify - Remove NO_PACKAGE, not useful with pkg(8) anymore [1] - Apply patch for 8+ unconditionally - Fix typo in pkg-message.in - Remove pkg-plist entry now handled by kmod.mk - Mark broken on 10+ wrkdirs/usr/ports/audio/aureal-kmod/work/au88x0.c:330:3: error: member reference base type 'void' is not a structure or union snd_mtxlock(au->lock); ^~~~~~~~~~~~~~~~~~~~~ [...] /wrkdirs/usr/ports/audio/aureal-kmod/work/au88x0.c:342:3: error: member reference base type 'void' is not a structure or union snd_mtxunlock(au->lock); ^~~~~~~~~~~~~~~~~~~~~~~ [...] 2 errors generated. Approved by: portmgr (infrastructure blanket) Modified: head/audio/aureal-kmod/Makefile head/audio/aureal-kmod/files/pkg-message.in head/audio/aureal-kmod/pkg-plist Modified: head/audio/aureal-kmod/Makefile ============================================================================== --- head/audio/aureal-kmod/Makefile Fri Jan 24 23:24:53 2014 (r340945) +++ head/audio/aureal-kmod/Makefile Fri Jan 24 23:31:07 2014 (r340946) @@ -13,15 +13,12 @@ DISTNAME= au88x0-${PORTVERSION}_4 MAINTAINER= c.kworr@gmail.com COMMENT= Driver for Aureal Vortex based soundcards -NO_PACKAGE= should be in sync with the kernel to work correctly - ONLY_FOR_ARCHS= i386 STRAYFILES= au88x0.h au88x0.c asp10.o asp20.o asp30.o KMODDIR= ${PREFIX}/modules/au88x0 KMODDIR_REL= ${KMODDIR:S%${PREFIX}/%%} -NO_STAGE= yes USE_RC_SUBR= ${PORTNAME} SUB_FILES= pkg-message SUB_LIST= KMODDIR=${KMODDIR} @@ -35,8 +32,10 @@ USES= kmod .include -.if ${OSVERSION} >= 800000 EXTRA_PATCHES+= ${PATCHDIR}/extra_800000_patch-au88x0.c + +.if ${OSVERSION} >= 1000000 +BROKEN= does not build .endif pre-everything:: @@ -56,7 +55,4 @@ pre-everything:: .endif .endfor -post-install: - @${CAT} ${PKGMESSAGE} - .include Modified: head/audio/aureal-kmod/files/pkg-message.in ============================================================================== --- head/audio/aureal-kmod/files/pkg-message.in Fri Jan 24 23:24:53 2014 (r340945) +++ head/audio/aureal-kmod/files/pkg-message.in Fri Jan 24 23:31:07 2014 (r340946) @@ -27,6 +27,6 @@ aureal_viakx133fix="YES" in your /etc/rc.conf. -Please note that you also need to have the 'sound.ko' moduld loaded already. +Please note that you also need to have the 'sound.ko' module loaded already. ------------------------------------------------------------------------------- Modified: head/audio/aureal-kmod/pkg-plist ============================================================================== --- head/audio/aureal-kmod/pkg-plist Fri Jan 24 23:24:53 2014 (r340945) +++ head/audio/aureal-kmod/pkg-plist Fri Jan 24 23:31:07 2014 (r340946) @@ -2,4 +2,3 @@ /%%KMODDIR%%/snd_au8810.ko /%%KMODDIR%%/snd_au8820.ko /%%KMODDIR%%/snd_au8830.ko -@dirrmtry modules From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:37:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0ED7E54; Fri, 24 Jan 2014 23:37:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DDA9C14B1; Fri, 24 Jan 2014 23:37:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONbA0n092358; Fri, 24 Jan 2014 23:37:10 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONbAo1092356; Fri, 24 Jan 2014 23:37:10 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401242337.s0ONbAo1092356@svn.freebsd.org> From: Mathieu Arnold Date: Fri, 24 Jan 2014 23:37:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340947 - in head: . net-mgmt net-mgmt/nagios-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.17 Precedence: list List-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, 24 Jan 2014 23:37:11 -0000 Author: mat Date: Fri Jan 24 23:37:10 2014 New Revision: 340947 URL: http://svnweb.freebsd.org/changeset/ports/340947 QAT: https://qat.redports.org/buildarchive/r340947/ Log: Remove net-mgmt/nagios-devel, it's been outdated for a long time now. Sponsored by: Absolight Deleted: head/net-mgmt/nagios-devel/ Modified: head/MOVED head/net-mgmt/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jan 24 23:31:07 2014 (r340946) +++ head/MOVED Fri Jan 24 23:37:10 2014 (r340947) @@ -5397,3 +5397,4 @@ cad/salome-randomizer||2014-01-24|Has ex cad/salome-sierpinsky||2014-01-24|Has expired: depends on expired cad/salome-kernel cad/salome-geom||2014-01-24|Has expired: depends on expired cad/salome-kernel devel/combat||2014-01-24|Has expired: depends on expired devel/mico +net-mgmt/nagios-devel|net-mgmt/nagios|2014-01-25|Master site gone, outdated Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Fri Jan 24 23:31:07 2014 (r340946) +++ head/net-mgmt/Makefile Fri Jan 24 23:37:10 2014 (r340947) @@ -129,7 +129,6 @@ SUBDIR += nagios-check_puppet SUBDIR += nagios-check_smartmon SUBDIR += nagios-check_tftp - SUBDIR += nagios-devel SUBDIR += nagios-geom SUBDIR += nagios-openldap-plugins SUBDIR += nagios-pf-plugin From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:42:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81D3E183; Fri, 24 Jan 2014 23:42:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 542381558; Fri, 24 Jan 2014 23:42:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONgafC095570; Fri, 24 Jan 2014 23:42:36 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONgZMr095566; Fri, 24 Jan 2014 23:42:35 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401242342.s0ONgZMr095566@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 24 Jan 2014 23:42:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340948 - head/devel/z80asm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:42:36 -0000 Author: bapt Date: Fri Jan 24 23:42:35 2014 New Revision: 340948 URL: http://svnweb.freebsd.org/changeset/ports/340948 QAT: https://qat.redports.org/buildarchive/r340948/ Log: Support stage Modified: head/devel/z80asm/Makefile head/devel/z80asm/pkg-plist Modified: head/devel/z80asm/Makefile ============================================================================== --- head/devel/z80asm/Makefile Fri Jan 24 23:37:10 2014 (r340947) +++ head/devel/z80asm/Makefile Fri Jan 24 23:42:35 2014 (r340948) @@ -10,27 +10,24 @@ MASTER_SITES= http://nongnu.mirror.ironi MAINTAINER= sigma.zx@gmail.com COMMENT= Assembler for the Z80 microprocessor -USE_GMAKE= yes -MAN1= z80asm.1 +OPTIONS_DEFINE= EXAMPLES + +USES= gmake -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's#/bin/bash#/bin/sh#' ${WRKSRC}/Makefile do-install: - ${INSTALL_MAN} ${WRKSRC}/z80asm.1 ${PREFIX}/man/man1 - ${INSTALL_PROGRAM} ${WRKSRC}/z80asm ${PREFIX}/bin - -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} -m 444 ${WRKSRC}/examples/hello.asm ${EXAMPLESDIR} - ${INSTALL_DATA} -m 444 ${WRKSRC}/examples/macro.asm ${EXAMPLESDIR} - ${INSTALL_DATA} -m 444 ${WRKSRC}/examples/seek.asm ${EXAMPLESDIR} - ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msx-bios.asm ${EXAMPLESDIR} - ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msx2+-bios.asm ${EXAMPLESDIR} - ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msx2-bios.asm ${EXAMPLESDIR} - ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msx2-subrom.asm ${EXAMPLESDIR} - ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msxturbor-bios.asm ${EXAMPLESDIR} -.endif + ${INSTALL_MAN} ${WRKSRC}/z80asm.1 ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/z80asm ${STAGEDIR}${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} -m 444 ${WRKSRC}/examples/hello.asm ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} -m 444 ${WRKSRC}/examples/macro.asm ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} -m 444 ${WRKSRC}/examples/seek.asm ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msx-bios.asm ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msx2+-bios.asm ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msx2-bios.asm ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msx2-subrom.asm ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} -m 444 ${WRKSRC}/headers/msxturbor-bios.asm ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/devel/z80asm/pkg-plist ============================================================================== --- head/devel/z80asm/pkg-plist Fri Jan 24 23:37:10 2014 (r340947) +++ head/devel/z80asm/pkg-plist Fri Jan 24 23:42:35 2014 (r340948) @@ -1,4 +1,5 @@ bin/z80asm +man/man1/z80asm.1.gz %%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello.asm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/macro.asm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/msx-bios.asm From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:47:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7223831C; Fri, 24 Jan 2014 23:47:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 526C21587; Fri, 24 Jan 2014 23:47:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONlCrv096195; Fri, 24 Jan 2014 23:47:12 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONlBXl096193; Fri, 24 Jan 2014 23:47:11 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401242347.s0ONlBXl096193@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 24 Jan 2014 23:47:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340949 - head/devel/z80-asm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:47:12 -0000 Author: bapt Date: Fri Jan 24 23:47:11 2014 New Revision: 340949 URL: http://svnweb.freebsd.org/changeset/ports/340949 QAT: https://qat.redports.org/buildarchive/r340949/ Log: Support stage Use pkg-plist to simplify tracking Added: head/devel/z80-asm/pkg-plist (contents, props changed) Modified: head/devel/z80-asm/Makefile Modified: head/devel/z80-asm/Makefile ============================================================================== --- head/devel/z80-asm/Makefile Fri Jan 24 23:42:35 2014 (r340948) +++ head/devel/z80-asm/Makefile Fri Jan 24 23:47:11 2014 (r340949) @@ -13,20 +13,12 @@ PATCHFILES= diff_2.3_2.4-pre3.gz PATCH_DIST_STRIP= -p1 MAINTAINER= ports@FreeBSD.org -COMMENT= A Z80 assembly code assembler and disassembler +COMMENT= Z80 assembly code assembler and disassembler -USE_GMAKE= yes +OPTIONS_DEFINE= DOCS -MAN1= z80-asm.1 z80-mon.1 -MAN3= z80-cpu.3 z80-memory.3 -MAN5= z80-asm.5 z80-banks.5 z80-file.5 z80-keyboard.5 \ - z80-memory.5 z80-ports.5 -PORTDOCS= CHANGELOG README TODO z80-asm.html z80-mon.html -PLIST_FILES= ${BINS:S,^,bin/,} +USES= gmake -BINS= z80-asm z80-mon - -NO_STAGE= yes post-extract: @${TOUCH} ${WRKSRC}/hardware/bus_masters @@ -45,23 +37,14 @@ post-patch: s|-lc ||g' ${WRKSRC}/hardware/Makefile do-install: -.for file in ${BINS} - ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin -.endfor -.for file in ${MAN1} - ${INSTALL_MAN} ${WRKSRC}/doc/man/${file} ${MAN1PREFIX}/man/man1 -.endfor -.for file in ${MAN3} - ${INSTALL_MAN} ${WRKSRC}/doc/man/${file} ${MAN3PREFIX}/man/man3 -.endfor -.for file in ${MAN5} - ${INSTALL_MAN} ${WRKSRC}/doc/man/${file} ${MAN5PREFIX}/man/man5 -.endfor -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/z80-asm ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/z80-mon ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/doc/man/*.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/man/*.3 ${STAGEDIR}${MAN3PREFIX}/man/man3 + ${INSTALL_MAN} ${WRKSRC}/doc/man/*.5 ${STAGEDIR}${MAN5PREFIX}/man/man5 + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/${file} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include Added: head/devel/z80-asm/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/z80-asm/pkg-plist Fri Jan 24 23:47:11 2014 (r340949) @@ -0,0 +1,18 @@ +bin/z80-asm +bin/z80-mon +man/man1/z80-asm.1.gz +man/man1/z80-mon.1.gz +man/man3/z80-cpu.3.gz +man/man3/z80-memory.3.gz +man/man5/z80-asm.5.gz +man/man5/z80-banks.5.gz +man/man5/z80-file.5.gz +man/man5/z80-keyboard.5.gz +man/man5/z80-memory.5.gz +man/man5/z80-ports.5.gz +%%PORTDOCS%%%%DOCSDIR%%/CHANGELOG +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/z80-asm.html +%%PORTDOCS%%%%DOCSDIR%%/z80-mon.html +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:51:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 722DA538; Fri, 24 Jan 2014 23:51:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5EA0B1606; Fri, 24 Jan 2014 23:51:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONpiEN099282; Fri, 24 Jan 2014 23:51:44 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONpi7c099281; Fri, 24 Jan 2014 23:51:44 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401242351.s0ONpi7c099281@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 24 Jan 2014 23:51:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340950 - head/devel/xparam X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:51:44 -0000 Author: bapt Date: Fri Jan 24 23:51:43 2014 New Revision: 340950 URL: http://svnweb.freebsd.org/changeset/ports/340950 QAT: https://qat.redports.org/buildarchive/r340950/ Log: Support stage Modified: head/devel/xparam/Makefile Modified: head/devel/xparam/Makefile ============================================================================== --- head/devel/xparam/Makefile Fri Jan 24 23:47:11 2014 (r340949) +++ head/devel/xparam/Makefile Fri Jan 24 23:51:43 2014 (r340950) @@ -12,9 +12,8 @@ COMMENT= General-purpose tool for parame LICENSE= GPLv2 # (or later) -USE_GMAKE= yes +USES= gmake USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:52:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60EC861B; Fri, 24 Jan 2014 23:52:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4D233160F; Fri, 24 Jan 2014 23:52:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONqbMt099451; Fri, 24 Jan 2014 23:52:37 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONqbnJ099450; Fri, 24 Jan 2014 23:52:37 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401242352.s0ONqbnJ099450@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 24 Jan 2014 23:52:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340951 - head/devel/wand-libconfig X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:52:37 -0000 Author: bapt Date: Fri Jan 24 23:52:36 2014 New Revision: 340951 URL: http://svnweb.freebsd.org/changeset/ports/340951 QAT: https://qat.redports.org/buildarchive/r340951/ Log: Support stage Modified: head/devel/wand-libconfig/Makefile Modified: head/devel/wand-libconfig/Makefile ============================================================================== --- head/devel/wand-libconfig/Makefile Fri Jan 24 23:51:43 2014 (r340950) +++ head/devel/wand-libconfig/Makefile Fri Jan 24 23:52:36 2014 (r340951) @@ -13,17 +13,16 @@ COMMENT= C library for parsing config fi CONFLICTS= libconfig-[0-9]* +USES= gmake USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes USE_LDCONFIG= yes -USE_GMAKE= yes LDFLAGS+= -L${LOCALBASE}/lib PLIST_FILES= include/libconfig.h lib/libconfig.a lib/libconfig.la \ lib/libconfig.so lib/libconfig.so.1 -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ ${WRKSRC}/configure From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:57:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D50427B2; Fri, 24 Jan 2014 23:57:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A66C01649; Fri, 24 Jan 2014 23:57:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONvnbk000184; Fri, 24 Jan 2014 23:57:49 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONvnsN000182; Fri, 24 Jan 2014 23:57:49 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401242357.s0ONvnsN000182@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 24 Jan 2014 23:57:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340952 - head/devel/vstr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:57:49 -0000 Author: bapt Date: Fri Jan 24 23:57:48 2014 New Revision: 340952 URL: http://svnweb.freebsd.org/changeset/ports/340952 QAT: https://qat.redports.org/buildarchive/r340952/ Log: Support stage Modified: head/devel/vstr/Makefile head/devel/vstr/pkg-plist Modified: head/devel/vstr/Makefile ============================================================================== --- head/devel/vstr/Makefile Fri Jan 24 23:52:36 2014 (r340951) +++ head/devel/vstr/Makefile Fri Jan 24 23:57:48 2014 (r340952) @@ -12,31 +12,20 @@ MASTER_SITES= http://freebsd.unixfreunde MAINTAINER= ports@FreeBSD.org COMMENT= General purpose string library for C +OPTIONS_DEFINE= DOCS + USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes USE_BZIP2= yes -USE_GMAKE= yes USE_CSTD= gnu89 -USES= pathfix pkgconfig +USES= gmake pathfix pkgconfig USE_LDCONFIG= yes -MAN3= vstr.3 vstr_const.3 - -NO_STAGE= yes -.include - -post-patch: -.if !${PORT_OPTIONS:MDOCS} - ${REINPLACE_CMD} -e 's| Documentation||' ${WRKSRC}/Makefile.in -.endif - post-install: -.if !${PORT_OPTIONS:MDOCS} - cd ${WRKSRC}/Documentation && ${GMAKE} install-man3 -.endif + cd ${WRKSRC}/Documentation && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_fLAGS} ${MAKEFILE} ${MAKE_ARGS} install-man3 regression-test: (cd ${WRKSRC} && \ - ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check) + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} check) .include Modified: head/devel/vstr/pkg-plist ============================================================================== --- head/devel/vstr/pkg-plist Fri Jan 24 23:52:36 2014 (r340951) +++ head/devel/vstr/pkg-plist Fri Jan 24 23:57:48 2014 (r340952) @@ -12,6 +12,8 @@ lib/libvstr.a lib/libvstr.la lib/libvstr.so libdata/pkgconfig/vstr.pc +man/man3/vstr.3.gz +man/man3/vstr_const.3.gz %%PORTDOCS%%%%DOCSDIR%%/basic_cat.c.html %%PORTDOCS%%%%DOCSDIR%%/compare_licenses/SafeStr.txt %%PORTDOCS%%%%DOCSDIR%%/compare_licenses/bstring.txt From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:58:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0EA588C; Fri, 24 Jan 2014 23:58:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8DDE9164B; Fri, 24 Jan 2014 23:58:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONw19Q000284; Fri, 24 Jan 2014 23:58:01 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONw11x000283; Fri, 24 Jan 2014 23:58:01 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401242358.s0ONw11x000283@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 24 Jan 2014 23:58:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340953 - head/devel/upslug X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:58:01 -0000 Author: bapt Date: Fri Jan 24 23:58:01 2014 New Revision: 340953 URL: http://svnweb.freebsd.org/changeset/ports/340953 QAT: https://qat.redports.org/buildarchive/r340953/ Log: Support stage Modified: head/devel/upslug/Makefile Modified: head/devel/upslug/Makefile ============================================================================== --- head/devel/upslug/Makefile Fri Jan 24 23:57:48 2014 (r340952) +++ head/devel/upslug/Makefile Fri Jan 24 23:58:01 2014 (r340953) @@ -10,7 +10,7 @@ DISTNAME= upslug2-11 MAINTAINER= ports@FreeBSD.org COMMENT= Firmware upload tool for Linksys NSLU2 -USE_GMAKE= yes +USES= gmake GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-libpcap @@ -19,5 +19,4 @@ NO_MAN= defined PLIST_FILES= sbin/upslug2 -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Fri Jan 24 23:59:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24286A12; Fri, 24 Jan 2014 23:59:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1098F1667; Fri, 24 Jan 2014 23:59:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0ONxVQg000507; Fri, 24 Jan 2014 23:59:31 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0ONxVlv000506; Fri, 24 Jan 2014 23:59:31 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401242359.s0ONxVlv000506@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 24 Jan 2014 23:59:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340954 - head/devel/ultragetopt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 24 Jan 2014 23:59:32 -0000 Author: bapt Date: Fri Jan 24 23:59:31 2014 New Revision: 340954 URL: http://svnweb.freebsd.org/changeset/ports/340954 QAT: https://qat.redports.org/buildarchive/r340954/ Log: Support stage Modified: head/devel/ultragetopt/Makefile Modified: head/devel/ultragetopt/Makefile ============================================================================== --- head/devel/ultragetopt/Makefile Fri Jan 24 23:58:01 2014 (r340953) +++ head/devel/ultragetopt/Makefile Fri Jan 24 23:59:31 2014 (r340954) @@ -11,7 +11,7 @@ COMMENT= Versatile and customizable impl LICENSE= MIT -USE_GMAKE= yes +USES= gmake GNU_CONFIGURE= yes MAKE_ARGS= PREFIX="${PREFIX}" USE_LDCONFIG= yes @@ -19,5 +19,4 @@ PLIST_FILES= include/ultragetopt.h lib/l lib/libultragetopt.la lib/libultragetopt.so \ lib/libultragetopt.so.0 -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:02:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4CEA4B2E; Sat, 25 Jan 2014 00:02:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3897B16DC; Sat, 25 Jan 2014 00:02:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P02Y8K004220; Sat, 25 Jan 2014 00:02:34 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P02YDx004219; Sat, 25 Jan 2014 00:02:34 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201401250002.s0P02YDx004219@svn.freebsd.org> From: Rene Ladan Date: Sat, 25 Jan 2014 00:02:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340955 - head/emulators/virtio-kmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:02:34 -0000 Author: rene Date: Sat Jan 25 00:02:33 2014 New Revision: 340955 URL: http://svnweb.freebsd.org/changeset/ports/340955 QAT: https://qat.redports.org/buildarchive/r340955/ Log: Support stage Approved by: portmgr (infrastructure blanket) Modified: head/emulators/virtio-kmod/Makefile Modified: head/emulators/virtio-kmod/Makefile ============================================================================== --- head/emulators/virtio-kmod/Makefile Fri Jan 24 23:59:31 2014 (r340954) +++ head/emulators/virtio-kmod/Makefile Sat Jan 25 00:02:33 2014 (r340955) @@ -17,8 +17,6 @@ WRKSRC= ${WRKDIR} NEEDSUBDIRS= amd64 cam conf contrib dev/pci geom i386 kern net netinet netinet6 \ sys tools vm x86 -NO_STAGE= yes - USES= kmod .include @@ -59,13 +57,10 @@ do-build: do-install: .for f in pci/virtio_pci virtio/virtio block/virtio_blk balloon/virtio_balloon network/if_vtnet - ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko ${KMODDIR} - ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko.symbols ${KMODDIR} + ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko ${STAGEDIR}${KMODDIR} + ${INSTALL_KLD} ${WRKSRC}/sys/modules/virtio/${f}.ko.symbols ${STAGEDIR}${KMODDIR} .endfor -post-install: - ${CAT} ${PKGMESSAGE} - # For maintainer only. SVN_MIRROR?= http://svn.freebsd.org/base EXPDIR= ${WRKSRC}/src/sys From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:04:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB7F9DE6; Sat, 25 Jan 2014 00:04:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9773716F5; Sat, 25 Jan 2014 00:04:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P04Q3T004960; Sat, 25 Jan 2014 00:04:26 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P04QF5004959; Sat, 25 Jan 2014 00:04:26 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250004.s0P04QF5004959@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:04:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340956 - head/devel/tijmp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:04:26 -0000 Author: bapt Date: Sat Jan 25 00:04:26 2014 New Revision: 340956 URL: http://svnweb.freebsd.org/changeset/ports/340956 QAT: https://qat.redports.org/buildarchive/r340956/ Log: Support stage Modified: head/devel/tijmp/Makefile Modified: head/devel/tijmp/Makefile ============================================================================== --- head/devel/tijmp/Makefile Sat Jan 25 00:02:33 2014 (r340955) +++ head/devel/tijmp/Makefile Sat Jan 25 00:04:26 2014 (r340956) @@ -12,7 +12,7 @@ COMMENT= Tools Interface Java Memory Pro OPTIONS_DEFINE= OPTIMIZED_CFLAGS -USE_GMAKE= yes +USES= gmake USE_JAVA= yes JAVA_VERSION= 1.6+ JAVA_OS= native @@ -28,22 +28,15 @@ PLIST_FILES= lib/lib${PORTNAME}.la \ lib/lib${PORTNAME}.so lib/lib${PORTNAME}.so.0 \ %%JAVAJARDIR%%/${PORTNAME}.jar -NO_STAGE= yes -.include -.include - -.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} -CFLAGS?= -O3 -.endif +OPTIMIZED_CFLAGS_CFLAGS= -O3 post-extract:: @${SED} -i "" -e 's|/../share/java|${JAVAJARDIR}|' ${WRKSRC}/src/tijmp.c do-install:: - @${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..." - ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${JAVAJARDIR}/${PORTNAME}.jar - ${INSTALL_DATA} ${WRKSRC}/src/.libs/lib${PORTNAME}.la ${PREFIX}/lib/ - ${INSTALL_PROGRAM} ${WRKSRC}/src/.libs/lib${PORTNAME}.so.0 ${PREFIX}/lib/ - cd ${PREFIX}/lib && ${LN} -sf lib${PORTNAME}.so.0 lib${PORTNAME}.so + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.jar ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar + ${INSTALL_DATA} ${WRKSRC}/src/.libs/lib${PORTNAME}.la ${STAGEDIR}${PREFIX}/lib/ + ${INSTALL_PROGRAM} ${WRKSRC}/src/.libs/lib${PORTNAME}.so.0 ${STAGEDIR}${PREFIX}/lib/ + ${LN} -sf lib${PORTNAME}.so.0 ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:05:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9FDE9ECB; Sat, 25 Jan 2014 00:05:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8B8BE16FB; Sat, 25 Jan 2014 00:05:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P05chx005223; Sat, 25 Jan 2014 00:05:38 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P05c2c005221; Sat, 25 Jan 2014 00:05:38 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250005.s0P05c2c005221@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:05:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340957 - head/devel/tla X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:05:38 -0000 Author: bapt Date: Sat Jan 25 00:05:37 2014 New Revision: 340957 URL: http://svnweb.freebsd.org/changeset/ports/340957 QAT: https://qat.redports.org/buildarchive/r340957/ Log: Support stage Use pkg-plist Added: head/devel/tla/pkg-plist (contents, props changed) Modified: head/devel/tla/Makefile Modified: head/devel/tla/Makefile ============================================================================== --- head/devel/tla/Makefile Sat Jan 25 00:04:26 2014 (r340956) +++ head/devel/tla/Makefile Sat Jan 25 00:05:37 2014 (r340957) @@ -11,13 +11,15 @@ MASTER_SITES= GNU/gnu-arch \ MAINTAINER= ports@FreeBSD.org COMMENT= The original arch source control management CLI written in C +OPTIONS_DEFINE= DOCS + BUILD_DEPENDS= gpatch:${PORTSDIR}/devel/patch \ gdiff:${PORTSDIR}/textproc/diffutils \ gtar:${PORTSDIR}/archivers/gtar RUN_DEPENDS:= ${BUILD_DEPENDS} +USES= gmake HAS_CONFIGURE= yes -USE_GMAKE= yes MAKE_JOBS_UNSAFE= yes CONFIGURE_SCRIPT= ../configure @@ -30,10 +32,7 @@ CONFIGURE_ARGS= --prefix=${PREFIX} \ ORIGWRKSRC= ${WRKDIR}/${DISTNAME}/src PATCH_WRKSRC= ${ORIGWRKSRC}/.. WRKSRC= ${ORIGWRKSRC}/=build -PLIST= ${WRKDIR}/plist -PLIST_FILES= bin/tla bin/tla-gpg-check -NO_STAGE= yes pre-patch: ${MKDIR} ${WRKSRC} @@ -41,26 +40,16 @@ test: cd ${WRKSRC} ; ${GMAKE} test pre-install: -.if !defined(NOPORTDOCS) ${RM} -rf ${ORIGWRKSRC}/docs-tla/PLUGIN \ ${ORIGWRKSRC}/docs-tla/{arch} ${ORIGWRKSRC}/docs-tla/.arch-ids - cd ${ORIGWRKSRC}/docs-tla && ${FIND} . -type f -name '*.html' \ - -exec ${ECHO_CMD} "%%DOCSDIR%%/{}" \; > ${PLIST} - cd ${ORIGWRKSRC}/docs-tla && ${FIND} -d . -mindepth 1 -maxdepth 1 \ - -type d -exec ${ECHO_CMD} "@dirrm %%DOCSDIR%%/{}" \; >> ${PLIST} - ${ECHO} @dirrm %%DOCSDIR%% >> ${PLIST} -.endif do-install: - ${INSTALL_PROGRAM} ${ORIGWRKSRC}/=build/tla/tla/tla ${PREFIX}/bin + ${INSTALL_PROGRAM} ${ORIGWRKSRC}/=build/tla/tla/tla ${STAGEDIR}${PREFIX}/bin ${SED} 's,^#!.*$$,#!${AWK} -f,' ${ORIGWRKSRC}/tla/=gpg-check.awk \ > ${WRKDIR}/tla-gpg-check - ${INSTALL_SCRIPT} ${WRKDIR}/tla-gpg-check ${PREFIX}/bin -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + ${INSTALL_SCRIPT} ${WRKDIR}/tla-gpg-check ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${ORIGWRKSRC}/docs-tla && ${FIND} . -name '*.html' | \ - ${CPIO} -pdm -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} - ${CHMOD} -R a=rX ${DOCSDIR} -.endif + ${CPIO} -pdm -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${DOCSDIR} .include Added: head/devel/tla/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/tla/pkg-plist Sat Jan 25 00:05:37 2014 (r340957) @@ -0,0 +1,45 @@ +bin/tla +bin/tla-gpg-check +%%PORTDOCS%%%%DOCSDIR%%/COPYING.html +%%PORTDOCS%%%%DOCSDIR%%/archreg/coords.html +%%PORTDOCS%%%%DOCSDIR%%/archreg/mirrormgt.html +%%PORTDOCS%%%%DOCSDIR%%/archreg/register.html +%%PORTDOCS%%%%DOCSDIR%%/archreg/top-nav.html +%%PORTDOCS%%%%DOCSDIR%%/build/help.html +%%PORTDOCS%%%%DOCSDIR%%/build/install.html +%%PORTDOCS%%%%DOCSDIR%%/build/othertools.html +%%PORTDOCS%%%%DOCSDIR%%/build/sources.html +%%PORTDOCS%%%%DOCSDIR%%/build/top-nav.html +%%PORTDOCS%%%%DOCSDIR%%/build/why.html +%%PORTDOCS%%%%DOCSDIR%%/checkout/checkout-config.html +%%PORTDOCS%%%%DOCSDIR%%/checkout/checkout.html +%%PORTDOCS%%%%DOCSDIR%%/checkout/top-nav.html +%%PORTDOCS%%%%DOCSDIR%%/checkout/tree-state.html +%%PORTDOCS%%%%DOCSDIR%%/hacking/branch-publishing.html +%%PORTDOCS%%%%DOCSDIR%%/hacking/changes.html +%%PORTDOCS%%%%DOCSDIR%%/hacking/commit.html +%%PORTDOCS%%%%DOCSDIR%%/hacking/merge-from-upstream.html +%%PORTDOCS%%%%DOCSDIR%%/hacking/my-archive.html +%%PORTDOCS%%%%DOCSDIR%%/hacking/my-branch.html +%%PORTDOCS%%%%DOCSDIR%%/hacking/my-config.html +%%PORTDOCS%%%%DOCSDIR%%/hacking/top-nav.html +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/my/archloc.html +%%PORTDOCS%%%%DOCSDIR%%/my/id.html +%%PORTDOCS%%%%DOCSDIR%%/my/mirrorloc.html +%%PORTDOCS%%%%DOCSDIR%%/my/revlib.html +%%PORTDOCS%%%%DOCSDIR%%/my/top-nav.html +%%PORTDOCS%%%%DOCSDIR%%/top-nav.html +%%PORTDOCS%%%%DOCSDIR%%/treedelta/add.html +%%PORTDOCS%%%%DOCSDIR%%/treedelta/delete.html +%%PORTDOCS%%%%DOCSDIR%%/treedelta/inventory.html +%%PORTDOCS%%%%DOCSDIR%%/treedelta/naming-conventions.html +%%PORTDOCS%%%%DOCSDIR%%/treedelta/rename.html +%%PORTDOCS%%%%DOCSDIR%%/treedelta/top-nav.html +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/treedelta +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/my +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/hacking +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/checkout +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/build +%%PORTDOCS%%@dirrmtry %%DOCSDIR%%/archreg +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:08:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDF31FD4; Sat, 25 Jan 2014 00:08:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C9B151712; Sat, 25 Jan 2014 00:08:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P08R8p005692; Sat, 25 Jan 2014 00:08:27 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P08RtB005691; Sat, 25 Jan 2014 00:08:27 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250008.s0P08RtB005691@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:08:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340958 - head/devel/styx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:08:27 -0000 Author: bapt Date: Sat Jan 25 00:08:27 2014 New Revision: 340958 URL: http://svnweb.freebsd.org/changeset/ports/340958 QAT: https://qat.redports.org/buildarchive/r340958/ Log: Support stage Modified: head/devel/styx/Makefile Modified: head/devel/styx/Makefile ============================================================================== --- head/devel/styx/Makefile Sat Jan 25 00:05:37 2014 (r340957) +++ head/devel/styx/Makefile Sat Jan 25 00:08:27 2014 (r340958) @@ -8,37 +8,25 @@ CATEGORIES= devel MASTER_SITES= http://www.speculate.de/styx/ MAINTAINER= ports@FreeBSD.org -COMMENT= A scanner/parser generator +COMMENT= Scanner/parser generator +OPTIONS_DEFINE= EXAMPLES DOCS USE_AUTOTOOLS= libtool -USES= iconv -USE_GMAKE= yes +USES= gmake iconv GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} CONFIGURE_ARGS= --includedir=${PREFIX}/include/${PORTNAME} USE_LDCONFIG= yes -NO_STAGE= yes -post-patch: -.if defined(NOPORTEXAMPLES) - ${REINPLACE_CMD} -e '/SUBDIRS/s|spexml||' ${WRKSRC}/Makefile.in -.endif - post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${TAR} -C ${WRKSRC}/doc \ --exclude "*.in" --exclude "*Makefile*" -cf - . | \ - ${TAR} -C ${DOCSDIR} --unlink -xf - - @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} -.endif -.if !defined(NOPORTEXAMPLES) - @${MKDIR} ${EXAMPLESDIR} + ${TAR} -C ${STAGEDIR}${DOCSDIR} --unlink -xf - + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${TAR} -C ${WRKSRC} \ --exclude "*.in" --exclude "*Makefile*" -cf - spe pat | \ - ${TAR} -C ${EXAMPLESDIR} --unlink -xf - - @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} -.endif + ${TAR} -C ${STAGEDIR}${EXAMPLESDIR} --unlink -xf - .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:15:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 751DF23F; Sat, 25 Jan 2014 00:15:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 611A917A7; Sat, 25 Jan 2014 00:15:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0Fx3l009514; Sat, 25 Jan 2014 00:15:59 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0FxwR009513; Sat, 25 Jan 2014 00:15:59 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250015.s0P0FxwR009513@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:15:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340959 - head/devel/streamhtmlparser X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:15:59 -0000 Author: bapt Date: Sat Jan 25 00:15:58 2014 New Revision: 340959 URL: http://svnweb.freebsd.org/changeset/ports/340959 QAT: https://qat.redports.org/buildarchive/r340959/ Log: Support stage Use options helpers Modified: head/devel/streamhtmlparser/Makefile Modified: head/devel/streamhtmlparser/Makefile ============================================================================== --- head/devel/streamhtmlparser/Makefile Sat Jan 25 00:08:27 2014 (r340958) +++ head/devel/streamhtmlparser/Makefile Sat Jan 25 00:15:58 2014 (r340959) @@ -9,10 +9,10 @@ MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} MAINTAINER= itechbear@gmail.com COMMENT= C/C++/Python streaming HTML parser library from Google -LICENSE= BSD +LICENSE= BSD2CLAUSE +USES= gmake GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes CONFIGURE_ARGS+=--enable-shared @@ -20,34 +20,15 @@ OPTIONS_DEFINE= DOCS STATIC PYBINDINGS PYBINDINGS_DESC=Install Python bindings STATIC_DESC= Install static library OPTIONS_DEFAULT=STATIC +OPTIONS_SUB= yes -NO_STAGE= yes -.include +PYBINDINGS_USE= python +PYBINDINGS_CONFIGURE_ENABLE= python +PYBINDINGS_CFLAGS= -I${PYTHON_INCLUDEDIR} -.if ${PORT_OPTIONS:MPYBINDINGS} -USE_PYTHON= yes -CONFIGURE_ARGS+=--enable-python -CFLAGS+= -I${PYTHON_INCLUDEDIR} -PLIST_SUB+= PYBINDINGS="" -.else -CONFIGURE_ARGS+=--disable-python -PLIST_SUB+= PYBINDINGS="@comment " -.endif - -.if ${PORT_OPTIONS:MSTATIC} -CONFIGURE_ARGS+=--enable-static -PLIST_SUB+= STATIC="" -.else -CONFIGURE_ARGS+=--disable-static -PLIST_SUB+= STATIC="@comment " -.endif - -.include +STATIC_CONFIGURE_ENABLE= static post-patch: @${REINPLACE_CMD} -e 's|^docdir.*|docdir = ${DOCSDIR}|' ${WRKSRC}/Makefile.in -.if defined(NOPORTDOCS) - @${REINPLACE_CMD} -E -e '/^install-data-am/,/^$$/ s,install-dist_docDATA,,g' ${WRKSRC}/Makefile.in -.endif -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:17:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61FDF338; Sat, 25 Jan 2014 00:17:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4D2E517B8; Sat, 25 Jan 2014 00:17:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0HWqO009749; Sat, 25 Jan 2014 00:17:32 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0HWDj009748; Sat, 25 Jan 2014 00:17:32 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250017.s0P0HWDj009748@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:17:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340960 - head/devel/stxxl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:17:32 -0000 Author: bapt Date: Sat Jan 25 00:17:31 2014 New Revision: 340960 URL: http://svnweb.freebsd.org/changeset/ports/340960 QAT: https://qat.redports.org/buildarchive/r340960/ Log: Support stage Avoid installing .orig file Modified: head/devel/stxxl/Makefile Modified: head/devel/stxxl/Makefile ============================================================================== --- head/devel/stxxl/Makefile Sat Jan 25 00:15:58 2014 (r340959) +++ head/devel/stxxl/Makefile Sat Jan 25 00:17:31 2014 (r340960) @@ -9,7 +9,7 @@ MASTER_SITES= SF MAINTAINER= amdmi3@FreeBSD.org COMMENT= Standard Template Library for Extra Large Data Sets -USE_GMAKE= yes +USES= gmake ALL_TARGET= library_g++ MAKE_ENV+= COMPILER_GCC="${CXX}" OPT="${CXXFLAGS}" \ @@ -20,14 +20,12 @@ PORTDOCS= * OPTIONS_DEFINE= DOCS OPTIMIZED_CFLAGS OPTIONS_DEFAULT=OPTIMIZED_CFLAGS -.include +OPTIMIZED_CFLAGS_CXXFLAGS= -O3 -.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} -CXXFLAGS+= -O3 -.endif +.include -.if ${OSVERSION} >= 1000000 post-patch: +.if ${OSVERSION} >= 1000000 @${REINPLACE_CMD} -i '' -e 's|std::tr1::|std::|' \ ${WRKSRC}/include/stxxl/bits/compat/type_traits.h \ ${WRKSRC}/include/stxxl/bits/compat/shared_ptr.h \ @@ -36,13 +34,14 @@ post-patch: do-install: ${INSTALL_DATA} ${WRKSRC}/lib/lib${PORTNAME}.a ${STAGEDIR}${PREFIX}/lib - @cd ${WRKSRC}/include && ${COPYTREE_SHARE} "${PORTNAME} ${PORTNAME}.h" \ + cd ${WRKSRC}/include && ${COPYTREE_SHARE} "${PORTNAME} ${PORTNAME}.h" \ ${STAGEDIR}${PREFIX}/include - ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${RM} -f ${STAGEDIR}${PREFIX}/include/stxxl/bits/mng/config.h.orig + @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} regression-test: - cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} tests_g++ + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} tests_g++ cd ${WRKSRC}/misc && ${SH} run-all-tests .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:19:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 665C841F; Sat, 25 Jan 2014 00:19:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 529C117C5; Sat, 25 Jan 2014 00:19:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0JL9A010009; Sat, 25 Jan 2014 00:19:21 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0JLdS010008; Sat, 25 Jan 2014 00:19:21 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250019.s0P0JLdS010008@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:19:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340961 - head/devel/stfl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:19:21 -0000 Author: bapt Date: Sat Jan 25 00:19:20 2014 New Revision: 340961 URL: http://svnweb.freebsd.org/changeset/ports/340961 QAT: https://qat.redports.org/buildarchive/r340961/ Log: Do not install license file for well known license Convert USE_GMAKE-> USES=gmake Unmute installation Modified: head/devel/stfl/Makefile Modified: head/devel/stfl/Makefile ============================================================================== --- head/devel/stfl/Makefile Sat Jan 25 00:17:31 2014 (r340960) +++ head/devel/stfl/Makefile Sat Jan 25 00:19:20 2014 (r340961) @@ -10,11 +10,9 @@ MAINTAINER= arved@FreeBSD.org COMMENT= Structured Terminal Forms Language/Library LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING USE_LDCONFIG= yes -USE_GMAKE= yes -USES= iconv ncurses +USES= gmake iconv ncurses ALL_TARGET= libstfl.so PLIST_FILES= lib/libstfl.so.1 lib/libstfl.so include/stfl.h \ libdata/pkgconfig/stfl.pc @@ -22,8 +20,6 @@ CFLAGS+= -I${LOCALBASE}/include LDLIBS+= -L${LOCALBASE}/lib MAKE_ENV= LDLIBS="${LDLIBS}" -.include - post-patch: @${REINPLACE_CMD} -e 's|\.a|.so|g;/ranlib/d;\ s|ar qc|$${CC} $${CFLAGS} $${LDLIBS} -pthread -shared -fPIC -o|;\ @@ -43,9 +39,9 @@ post-build: ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} stfl.pc do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/libstfl.so ${STAGEDIR}${PREFIX}/lib/libstfl.so.1 - @${LN} -sf ${PREFIX}/lib/libstfl.so.1 ${STAGEDIR}${PREFIX}/lib/libstfl.so - @${INSTALL_DATA} ${WRKSRC}/stfl.h ${STAGEDIR}${PREFIX}/include/ - @${INSTALL_DATA} ${WRKSRC}/stfl.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/ + ${INSTALL_PROGRAM} ${WRKSRC}/libstfl.so ${STAGEDIR}${PREFIX}/lib/libstfl.so.1 + ${LN} -sf ${PREFIX}/lib/libstfl.so.1 ${STAGEDIR}${PREFIX}/lib/libstfl.so + ${INSTALL_DATA} ${WRKSRC}/stfl.h ${STAGEDIR}${PREFIX}/include/ + ${INSTALL_DATA} ${WRKSRC}/stfl.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/ -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:23:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF9B05BB; Sat, 25 Jan 2014 00:23:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9C3EE185B; Sat, 25 Jan 2014 00:23:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0NIic013112; Sat, 25 Jan 2014 00:23:18 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0NIhb013111; Sat, 25 Jan 2014 00:23:18 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250023.s0P0NIhb013111@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:23:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340962 - head/devel/splint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:23:18 -0000 Author: bapt Date: Sat Jan 25 00:23:18 2014 New Revision: 340962 URL: http://svnweb.freebsd.org/changeset/ports/340962 QAT: https://qat.redports.org/buildarchive/r340962/ Log: Convert USE_GMAKE->USES=gmake Remove cruft Modified: head/devel/splint/Makefile Modified: head/devel/splint/Makefile ============================================================================== --- head/devel/splint/Makefile Sat Jan 25 00:19:20 2014 (r340961) +++ head/devel/splint/Makefile Sat Jan 25 00:23:18 2014 (r340962) @@ -10,12 +10,10 @@ EXTRACT_SUFX= .src.tgz MAINTAINER= lwhsu@FreeBSD.org COMMENT= Tool for statically checking sourcecode for security vulnerabilities -USE_GMAKE= yes +USES= gmake GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes -MAN1= splint.1 - post-patch: @${REINPLACE_CMD} -e \ 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/src/Headers/constants.h From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:25:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B089D6DB; Sat, 25 Jan 2014 00:25:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9C8F3187C; Sat, 25 Jan 2014 00:25:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0PsxJ013463; Sat, 25 Jan 2014 00:25:54 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0Ps6J013462; Sat, 25 Jan 2014 00:25:54 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250025.s0P0Ps6J013462@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:25:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340963 - head/devel/spatialindex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:25:54 -0000 Author: bapt Date: Sat Jan 25 00:25:54 2014 New Revision: 340963 URL: http://svnweb.freebsd.org/changeset/ports/340963 QAT: https://qat.redports.org/buildarchive/r340963/ Log: Support stage Modified: head/devel/spatialindex/Makefile Modified: head/devel/spatialindex/Makefile ============================================================================== --- head/devel/spatialindex/Makefile Sat Jan 25 00:23:18 2014 (r340962) +++ head/devel/spatialindex/Makefile Sat Jan 25 00:25:54 2014 (r340963) @@ -8,17 +8,12 @@ MASTER_SITES= http://download.osgeo.org/ DISTNAME= ${PORTNAME}-src-${PORTVERSION} MAINTAINER= wen@FreeBSD.org -COMMENT= A General Framework for Developing Spatial Indices +COMMENT= General Framework for Developing Spatial Indices +USES= gmake pathfix USE_AUTOTOOLS= libtool:env USE_BZIP2= yes GNU_CONFIGURE= yes -USE_GMAKE= yes USE_LDCONFIG= yes -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|' \ - ${WRKSRC}/src/Makefile.in - .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:28:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2BDC7D5; Sat, 25 Jan 2014 00:28:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9EB31188E; Sat, 25 Jan 2014 00:28:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0SYh5013797; Sat, 25 Jan 2014 00:28:34 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0SYp1013796; Sat, 25 Jan 2014 00:28:34 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250028.s0P0SYp1013796@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:28:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340964 - head/devel/rote X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:28:34 -0000 Author: bapt Date: Sat Jan 25 00:28:34 2014 New Revision: 340964 URL: http://svnweb.freebsd.org/changeset/ports/340964 QAT: https://qat.redports.org/buildarchive/r340964/ Log: Support stage Modified: head/devel/rote/Makefile Modified: head/devel/rote/Makefile ============================================================================== --- head/devel/rote/Makefile Sat Jan 25 00:25:54 2014 (r340963) +++ head/devel/rote/Makefile Sat Jan 25 00:28:34 2014 (r340964) @@ -10,12 +10,11 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A simple library for VT102 terminal emulation GNU_CONFIGURE= yes -USE_GMAKE= yes +USES= gmake USE_LDCONFIG= yes PLIST_FILES= bin/rote-config include/rote/rote.h \ lib/librote.so.${PORTVERSION} lib/librote.so.0 lib/librote.so PLIST_DIRS= include/rote -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:30:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 97C148BD; Sat, 25 Jan 2014 00:30:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8435518F1; Sat, 25 Jan 2014 00:30:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0UXVJ016336; Sat, 25 Jan 2014 00:30:33 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0UXvT016334; Sat, 25 Jan 2014 00:30:33 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250030.s0P0UXvT016334@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:30:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340965 - head/devel/rlog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:30:33 -0000 Author: bapt Date: Sat Jan 25 00:30:32 2014 New Revision: 340965 URL: http://svnweb.freebsd.org/changeset/ports/340965 QAT: https://qat.redports.org/buildarchive/r340965/ Log: Support stage Modified: head/devel/rlog/Makefile head/devel/rlog/pkg-plist Modified: head/devel/rlog/Makefile ============================================================================== --- head/devel/rlog/Makefile Sat Jan 25 00:28:34 2014 (r340964) +++ head/devel/rlog/Makefile Sat Jan 25 00:30:32 2014 (r340965) @@ -3,29 +3,20 @@ PORTNAME= rlog PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= GOOGLE_CODE MAINTAINER= ports@FreeBSD.org -COMMENT= A flexible message logging facility for C++ +COMMENT= Flexible message logging facility for C++ + +OPTIONS_DEFINE= DOCS LICENSE= LGPL21 LGPL3 LICENSE_COMB= dual -USES= pathfix -USE_GMAKE= yes +USES= gmake pathfix USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -NO_STAGE= yes -post-patch: - @${REINPLACE_CMD} -e \ - '/^SUBDIRS/s|docs||' ${WRKSRC}/Makefile.in - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR}/html - @(cd ${WRKSRC}/docs/html && ${COPYTREE_SHARE} . ${DOCSDIR}/html) -.endif - .include Modified: head/devel/rlog/pkg-plist ============================================================================== --- head/devel/rlog/pkg-plist Sat Jan 25 00:28:34 2014 (r340964) +++ head/devel/rlog/pkg-plist Sat Jan 25 00:30:32 2014 (r340965) @@ -87,6 +87,7 @@ libdata/pkgconfig/librlog.pc %%PORTDOCS%%%%DOCSDIR%%/html/tab_l.gif %%PORTDOCS%%%%DOCSDIR%%/html/tab_r.gif %%PORTDOCS%%%%DOCSDIR%%/html/tabs.css +%%PORTDOCS%%%%DOCSDIR%%/refman.pdf %%PORTDOCS%%@dirrm %%DOCSDIR%%/html %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm include/rlog From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:35:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26629B95; Sat, 25 Jan 2014 00:35:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 12CB9191E; Sat, 25 Jan 2014 00:35:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0ZSW4017372; Sat, 25 Jan 2014 00:35:28 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0ZSgT017371; Sat, 25 Jan 2014 00:35:28 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250035.s0P0ZSgT017371@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:35:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340966 - head/devel/ptmalloc2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:35:29 -0000 Author: bapt Date: Sat Jan 25 00:35:28 2014 New Revision: 340966 URL: http://svnweb.freebsd.org/changeset/ports/340966 QAT: https://qat.redports.org/buildarchive/r340966/ Log: Support stage Modified: head/devel/ptmalloc2/Makefile Modified: head/devel/ptmalloc2/Makefile ============================================================================== --- head/devel/ptmalloc2/Makefile Sat Jan 25 00:30:32 2014 (r340965) +++ head/devel/ptmalloc2/Makefile Sat Jan 25 00:35:28 2014 (r340966) @@ -13,21 +13,20 @@ COMMENT= Alternative threads-aware mallo USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} -USE_GMAKE= yes +USES= gmake ALL_TARGET= posix INCDIR= include/${PORTNAME} PLIST_SUB= INCDIR=${INCDIR} -do-install: all - ${MKDIR} ${PREFIX}/${INCDIR} - ${INSTALL_DATA} ${WRKSRC}/malloc.h ${PREFIX}/${INCDIR}/ - ${INSTALL_DATA} ${WRKSRC}/libmalloc.a ${PREFIX}/lib/libptmalloc2.a - ${INSTALL_DATA} ${WRKSRC}/malloc.so ${PREFIX}/lib/libptmalloc2.so.0 - ${LN} -s ${PREFIX}/lib/libptmalloc.so.0 ${PREFIX}/lib/libptmalloc2.so +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${INCDIR} + ${INSTALL_DATA} ${WRKSRC}/malloc.h ${STAGEDIR}${PREFIX}/${INCDIR}/ + ${INSTALL_DATA} ${WRKSRC}/libmalloc.a ${STAGEDIR}${PREFIX}/lib/libptmalloc2.a + ${INSTALL_DATA} ${WRKSRC}/malloc.so ${STAGEDIR}${PREFIX}/lib/libptmalloc2.so.0 + ${LN} -s libptmalloc.so.0 ${STAGEDIR}${PREFIX}/lib/libptmalloc2.so regression-test: build @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:37:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49CD1D5C; Sat, 25 Jan 2014 00:37:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 35D781934; Sat, 25 Jan 2014 00:37:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0b6R8017611; Sat, 25 Jan 2014 00:37:06 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0b69T017610; Sat, 25 Jan 2014 00:37:06 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250037.s0P0b69T017610@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:37:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340967 - head/devel/ptmalloc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:37:06 -0000 Author: bapt Date: Sat Jan 25 00:37:05 2014 New Revision: 340967 URL: http://svnweb.freebsd.org/changeset/ports/340967 QAT: https://qat.redports.org/buildarchive/r340967/ Log: Support stage Modified: head/devel/ptmalloc/Makefile Modified: head/devel/ptmalloc/Makefile ============================================================================== --- head/devel/ptmalloc/Makefile Sat Jan 25 00:35:28 2014 (r340966) +++ head/devel/ptmalloc/Makefile Sat Jan 25 00:37:05 2014 (r340967) @@ -14,27 +14,22 @@ COMMENT= Alternative threads-aware mallo USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME}3 -USE_GMAKE= yes +USES= gmake ALL_TARGET= posix INCDIR= include/${PORTNAME} PLIST_SUB= INCDIR=${INCDIR} -do-install: all - ${MKDIR} ${PREFIX}/${INCDIR} - ${INSTALL_DATA} ${WRKSRC}/malloc-2.8.3.h ${PREFIX}/${INCDIR}/malloc.h - ${INSTALL_DATA} ${WRKSRC}/libptmalloc3.a ${PREFIX}/lib/libptmalloc.a - ${INSTALL_DATA} ${WRKSRC}/ptmalloc3.so ${PREFIX}/lib/libptmalloc.so.3 - ${LN} -s ${PREFIX}/lib/libptmalloc.so.3 ${PREFIX}/lib/libptmalloc.so +BROKEN_sparc64= hangs while building on sparc64 + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${INCDIR} + ${INSTALL_DATA} ${WRKSRC}/malloc-2.8.3.h ${STAGEDIR}${PREFIX}/${INCDIR}/malloc.h + ${INSTALL_DATA} ${WRKSRC}/libptmalloc3.a ${STAGEDIR}${PREFIX}/lib/libptmalloc.a + ${INSTALL_DATA} ${WRKSRC}/ptmalloc3.so ${STAGEDIR}${PREFIX}/lib/libptmalloc.so.3 + ${LN} -sf libptmalloc.so.3 ${STAGEDIR}${PREFIX}/lib/libptmalloc.so regression-test: build @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check -NO_STAGE= yes -.include - -.if ${ARCH} == "sparc64" -BROKEN= hangs while building on sparc64 -.endif - -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:39:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2AF07EEB; Sat, 25 Jan 2014 00:39:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1740A1958; Sat, 25 Jan 2014 00:39:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0dCeY017906; Sat, 25 Jan 2014 00:39:12 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0dC67017904; Sat, 25 Jan 2014 00:39:12 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250039.s0P0dC67017904@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:39:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340968 - head/devel/pthsem X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:39:13 -0000 Author: bapt Date: Sat Jan 25 00:39:12 2014 New Revision: 340968 URL: http://svnweb.freebsd.org/changeset/ports/340968 QAT: https://qat.redports.org/buildarchive/r340968/ Log: Support stage Modified: head/devel/pthsem/Makefile head/devel/pthsem/pkg-plist Modified: head/devel/pthsem/Makefile ============================================================================== --- head/devel/pthsem/Makefile Sat Jan 25 00:37:05 2014 (r340967) +++ head/devel/pthsem/Makefile Sat Jan 25 00:39:12 2014 (r340968) @@ -11,12 +11,8 @@ COMMENT= GNU Portable Threads with semap USE_LDCONFIG= yes GNU_CONFIGURE= yes -USE_GMAKE= yes - -MAN1= pthsem-config.1 -MAN3= pthsem.3 +USES= gmake MAKE_JOBS_UNSAFE= yes -NO_STAGE= yes .include Modified: head/devel/pthsem/pkg-plist ============================================================================== --- head/devel/pthsem/pkg-plist Sat Jan 25 00:37:05 2014 (r340967) +++ head/devel/pthsem/pkg-plist Sat Jan 25 00:39:12 2014 (r340968) @@ -4,4 +4,6 @@ lib/libpthsem.a lib/libpthsem.la lib/libpthsem.so lib/libpthsem.so.20 +man/man1/pthsem-config.1.gz +man/man3/pthsem.3.gz share/aclocal/pthsem.m4 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:41:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB32D6E; Sat, 25 Jan 2014 00:41:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C707D19CC; Sat, 25 Jan 2014 00:41:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0fgB6020809; Sat, 25 Jan 2014 00:41:42 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0fg2G020808; Sat, 25 Jan 2014 00:41:42 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250041.s0P0fg2G020808@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:41:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340969 - head/devel/premake4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:41:42 -0000 Author: bapt Date: Sat Jan 25 00:41:42 2014 New Revision: 340969 URL: http://svnweb.freebsd.org/changeset/ports/340969 QAT: https://qat.redports.org/buildarchive/r340969/ Log: Support stage Use bsdtar to extract zip Modified: head/devel/premake4/Makefile Modified: head/devel/premake4/Makefile ============================================================================== --- head/devel/premake4/Makefile Sat Jan 25 00:39:12 2014 (r340968) +++ head/devel/premake4/Makefile Sat Jan 25 00:41:42 2014 (r340969) @@ -6,36 +6,33 @@ PORTVERSION= 4.3 CATEGORIES= devel MASTER_SITES= SF/premake/Premake/${PORTVERSION} DISTNAME= premake-${PORTVERSION}-src +EXTRACT_SUFX= .zip MAINTAINER= vmagerya@gmail.com COMMENT= Writes build scripts +OPTIONS_DEFINE= DOCS + WRKSRC= ${WRKDIR}/premake-${PORTVERSION} BUILD_WRKSRC= ${WRKSRC}/build/gmake.unix -USE_ZIP= yes -USE_GMAKE= yes +USES= gmake MAKE_ARGS= ARCH="" PLIST_FILES= bin/premake4 PORTDOCS= CHANGES.txt LICENSE.txt README.txt -NO_STAGE= yes -.include - post-patch: ${REINPLACE_CMD} -e 's|-ldl||' ${BUILD_WRKSRC}/Premake4.make ${REINPLACE_CMD} -e 's|debug|release|' ${WRKSRC}/tests/test do-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} -.endif - ${INSTALL_PROGRAM} ${WRKSRC}/bin/release/premake4 ${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/bin/release/premake4 ${STAGEDIR}${PREFIX}/bin regression-test: build cd ${WRKSRC}/tests && ./test -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:43:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5B49193; Sat, 25 Jan 2014 00:43:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1E6B19D7; Sat, 25 Jan 2014 00:43:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0h0pR021018; Sat, 25 Jan 2014 00:43:00 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0h0RO021017; Sat, 25 Jan 2014 00:43:00 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250043.s0P0h0RO021017@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:43:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340970 - head/devel/premake X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:43:01 -0000 Author: bapt Date: Sat Jan 25 00:43:00 2014 New Revision: 340970 URL: http://svnweb.freebsd.org/changeset/ports/340970 QAT: https://qat.redports.org/buildarchive/r340970/ Log: Support stage Modified: head/devel/premake/Makefile Modified: head/devel/premake/Makefile ============================================================================== --- head/devel/premake/Makefile Sat Jan 25 00:41:42 2014 (r340969) +++ head/devel/premake/Makefile Sat Jan 25 00:43:00 2014 (r340970) @@ -7,28 +7,24 @@ PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/Premake/${PORTVERSION} DISTNAME= ${PORTNAME}-src-${PORTVERSION} +EXTRACT_SUFX= .zip MAINTAINER= lippe@FreeBSD.org COMMENT= Writes build scripts +OPTIONS_DEFINE= DOCS + WRKSRC= ${WRKDIR}/Premake-${PORTVERSION} -USE_DOS2UNIX= yes -USE_ZIP= yes -USE_GMAKE= yes +USES= gmake dos2unix PLIST_FILES= bin/premake PORTDOCS= CHANGES.txt LICENSE.txt README.txt -NO_STAGE= yes -.include - do-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} -.endif - @${INSTALL_PROGRAM} ${WRKSRC}/bin/premake ${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + @${INSTALL_PROGRAM} ${WRKSRC}/bin/premake ${STAGEDIR}${PREFIX}/bin -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:46:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1873A33A; Sat, 25 Jan 2014 00:46:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 03D9719FE; Sat, 25 Jan 2014 00:46:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0kLtB021510; Sat, 25 Jan 2014 00:46:21 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0kL9S021509; Sat, 25 Jan 2014 00:46:21 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250046.s0P0kL9S021509@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:46:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340971 - head/devel/picprog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:46:22 -0000 Author: bapt Date: Sat Jan 25 00:46:21 2014 New Revision: 340971 URL: http://svnweb.freebsd.org/changeset/ports/340971 QAT: https://qat.redports.org/buildarchive/r340971/ Log: Support stage Modified: head/devel/picprog/Makefile Modified: head/devel/picprog/Makefile ============================================================================== --- head/devel/picprog/Makefile Sat Jan 25 00:43:00 2014 (r340970) +++ head/devel/picprog/Makefile Sat Jan 25 00:46:21 2014 (r340971) @@ -9,35 +9,30 @@ MASTER_SITES= http://hyvatti.iki.fi/~jaa MAINTAINER= erik@bz.bzflag.bz COMMENT= Serial port pic16c84 programmer -USE_GMAKE= yes +OPTIONS_DEFINE= DOCS -PLIST_FILES= bin/picprog -MAN1= picprog.1 +USES= gmake -NO_STAGE= yes -.include +PLIST_FILES= bin/picprog \ + man/man1/picprog.1.gz -.if ${PORT_OPTIONS:MDOCS} PORTDOCS= README anybrowser3.png jdm84ne3.png jdm84pcb6.png picprog.html -.endif + +.for a in ia64 powerpc sparc64 +BROKEN_${a}= Does not compile on ia64, powerpc, or sparc64 +.endfor post-patch: @${REINPLACE_CMD} -e 's|^CXX=.*||; s|^CXXFLAGS=.*||; s|^LDFLAGS=.*||' \ ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/picprog ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/picprog.1 ${MAN1PREFIX}/man/man1 - -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/picprog ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/picprog.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in README *.png picprog.html - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor -.endif -.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" -BROKEN= Does not compile on ia64, powerpc, or sparc64 -.endif -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:47:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0169A42C; Sat, 25 Jan 2014 00:47:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E0F7C1A07; Sat, 25 Jan 2014 00:47:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0lgbc021730; Sat, 25 Jan 2014 00:47:42 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0lgmk021728; Sat, 25 Jan 2014 00:47:42 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250047.s0P0lgmk021728@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:47:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340972 - head/devel/pcl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:47:43 -0000 Author: bapt Date: Sat Jan 25 00:47:42 2014 New Revision: 340972 URL: http://svnweb.freebsd.org/changeset/ports/340972 QAT: https://qat.redports.org/buildarchive/r340972/ Log: Support stage Modified: head/devel/pcl/Makefile head/devel/pcl/pkg-plist Modified: head/devel/pcl/Makefile ============================================================================== --- head/devel/pcl/Makefile Sat Jan 25 00:46:21 2014 (r340971) +++ head/devel/pcl/Makefile Sat Jan 25 00:47:42 2014 (r340972) @@ -9,19 +9,12 @@ MASTER_SITES= http://www.xmailserver.org MAINTAINER= manuel.giraud@gmail.com COMMENT= Portable Coroutine Library -USE_GMAKE= yes +USES= gmake GNU_CONFIGURE= yes USE_LDCONFIG= yes -MAN3= pcl.3 - WRKSRC= ${WRKDIR}/lib${PORTNAME}-${PORTVERSION} -NO_STAGE= yes -.include - -.if ${ARCH} == "sparc64" -BROKEN= Does not compile on sparc64 -.endif +BROKEN_sparc64= Does not compile on sparc64 -.include +.include Modified: head/devel/pcl/pkg-plist ============================================================================== --- head/devel/pcl/pkg-plist Sat Jan 25 00:46:21 2014 (r340971) +++ head/devel/pcl/pkg-plist Sat Jan 25 00:47:42 2014 (r340972) @@ -3,3 +3,4 @@ lib/libpcl.a lib/libpcl.la lib/libpcl.so lib/libpcl.so.1 +man/man3/pcl.3.gz From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:50:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 693E45B7; Sat, 25 Jan 2014 00:50:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 55B551A1C; Sat, 25 Jan 2014 00:50:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0oOJP024135; Sat, 25 Jan 2014 00:50:24 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0oODn024134; Sat, 25 Jan 2014 00:50:24 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250050.s0P0oODn024134@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:50:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340973 - head/devel/ncnf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:50:24 -0000 Author: bapt Date: Sat Jan 25 00:50:23 2014 New Revision: 340973 URL: http://svnweb.freebsd.org/changeset/ports/340973 QAT: https://qat.redports.org/buildarchive/r340973/ Log: Support stage Modified: head/devel/ncnf/Makefile Modified: head/devel/ncnf/Makefile ============================================================================== --- head/devel/ncnf/Makefile Sat Jan 25 00:47:42 2014 (r340972) +++ head/devel/ncnf/Makefile Sat Jan 25 00:50:23 2014 (r340973) @@ -10,21 +10,12 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Generic configuration management library -LIB_DEPENDS= strfunc.9:${PORTSDIR}/devel/libstrfunc +OPTIONS_DEFINE= DOCS + +LIB_DEPENDS= libstrfunc.so:${PORTSDIR}/devel/libstrfunc USE_AUTOTOOLS= libtool USE_LDCONFIG= YES GNU_CONFIGURE= yes -.if defined(.PARSEDIR) -USE_GMAKE= yes -.endif - -.include - -post-patch: -.if ! ${PORT_OPTIONS:MDOCS} - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/doc//' ${WRKSRC}/Makefile.in -.endif - .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:54:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B44FC749; Sat, 25 Jan 2014 00:54:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9FB421A99; Sat, 25 Jan 2014 00:54:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0sMTG025141; Sat, 25 Jan 2014 00:54:22 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0sMC9025140; Sat, 25 Jan 2014 00:54:22 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250054.s0P0sMC9025140@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:54:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340974 - head/dns/dnstracer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:54:22 -0000 Author: bapt Date: Sat Jan 25 00:54:22 2014 New Revision: 340974 URL: http://svnweb.freebsd.org/changeset/ports/340974 QAT: https://qat.redports.org/buildarchive/r340974/ Log: Support stage Modified: head/dns/dnstracer/Makefile Modified: head/dns/dnstracer/Makefile ============================================================================== --- head/dns/dnstracer/Makefile Sat Jan 25 00:50:23 2014 (r340973) +++ head/dns/dnstracer/Makefile Sat Jan 25 00:54:22 2014 (r340974) @@ -11,18 +11,13 @@ COMMENT= Trace a chain of DNS servers to HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} -USE_GMAKE= yes +USES= gmake -MAN8= dnstracer.8 -PLIST_FILES= bin/dnstracer +PLIST_FILES= bin/dnstracer \ + man/man8/dnstracer.8.gz OPTIONS_DEFINE= IPV6 -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MIPV6} -CONFIGURE_ARGS+=--disable-ipv6 -.endif +IPV6_CONFIGURE_ENABLE= --disable-ipv6 .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:56:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 39ABB834; Sat, 25 Jan 2014 00:56:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 19A4F1AA7; Sat, 25 Jan 2014 00:56:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0urmn025549; Sat, 25 Jan 2014 00:56:53 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0urJV025546; Sat, 25 Jan 2014 00:56:53 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401250056.s0P0urJV025546@svn.freebsd.org> From: Rusmir Dusko Date: Sat, 25 Jan 2014 00:56:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340975 - in head/shells/fish: . 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.17 Precedence: list List-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, 25 Jan 2014 00:56:54 -0000 Author: nemysis Date: Sat Jan 25 00:56:53 2014 New Revision: 340975 URL: http://svnweb.freebsd.org/changeset/ports/340975 QAT: https://qat.redports.org/buildarchive/r340975/ Log: - Update to 2.1.0 - Simplify master site - Take maintainership - Add PORTDOCS=* and remove DOCS from pkg-plist - Remove obsolete patches, changed by Upstream - Change REINPLACE_CMD for proper pkg message Reviewed by: horia Deleted: head/shells/fish/files/ Modified: head/shells/fish/Makefile head/shells/fish/distinfo head/shells/fish/pkg-plist Modified: head/shells/fish/Makefile ============================================================================== --- head/shells/fish/Makefile Sat Jan 25 00:54:22 2014 (r340974) +++ head/shells/fish/Makefile Sat Jan 25 00:56:53 2014 (r340975) @@ -2,25 +2,24 @@ # $FreeBSD$ PORTNAME= fish -PORTVERSION= 2.0.0 +PORTVERSION= 2.1.0 CATEGORIES= shells -MASTER_SITES= http://fishshell.com/files/%SUBDIR%/ -MASTER_SITE_SUBDIR= ${PORTVERSION} +MASTER_SITES= http://fishshell.com/files/${PORTVERSION}/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= nemysis@FreeBSD.org COMMENT= User friendly command line shell -OPTIONS_DEFINE= DOCS NLS -OPTIONS_SUB= yes - -WRKSRC= ${WRKDIR}/${PORTNAME} - USES= gmake iconv USE_AUTOTOOLS= autoconf CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -pthread ${ICONV_LIB} +PORTDOCS= * + +OPTIONS_DEFINE= DOCS NLS +OPTIONS_SUB= yes + NLS_USES= gettext NLS_CONFIGURE_ENV= ac_cv_func_gettext=yes NLS_CONFIGURE_OFF= --without-gettext @@ -30,6 +29,7 @@ post-patch: '/^all:/s|user_doc|| ; \ s| "$$(HAVE_GETTEXT)" = 1| x$$(HAVE_GETTEXT) = x1| ; \ s| $$(HAVE_GETTEXT) = 1| x$$(HAVE_GETTEXT) = x1| ; \ + s|$$(DESTDIR)$$(bindir)/fish|$$(bindir)/fish|g ; \ /fish\/man\/man1/d' ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e \ 's|-rdynamic|-Wl,--export-dynamic| ; \ Modified: head/shells/fish/distinfo ============================================================================== --- head/shells/fish/distinfo Sat Jan 25 00:54:22 2014 (r340974) +++ head/shells/fish/distinfo Sat Jan 25 00:56:53 2014 (r340975) @@ -1,2 +1,2 @@ -SHA256 (fish-2.0.0.tar.gz) = 7e4c4a0b3c518769a3d31b235e743de7a8d52f851ad19d2df9d53534e6238303 -SIZE (fish-2.0.0.tar.gz) = 1540652 +SHA256 (fish-2.1.0.tar.gz) = af527af9d145df5675ca3031c1a87007d4f4753a1cde49da88f4eb883a1cf044 +SIZE (fish-2.1.0.tar.gz) = 1707921 Modified: head/shells/fish/pkg-plist ============================================================================== --- head/shells/fish/pkg-plist Sat Jan 25 00:54:22 2014 (r340974) +++ head/shells/fish/pkg-plist Sat Jan 25 00:56:53 2014 (r340975) @@ -9,20 +9,6 @@ man/man1/fish_indent.1.gz man/man1/fish_pager.1.gz man/man1/fishd.1.gz man/man1/mimedb.1.gz -%%PORTDOCS%%%%DOCSDIR%%/commands.html -%%PORTDOCS%%%%DOCSDIR%%/design.html -%%PORTDOCS%%%%DOCSDIR%%/doc_8h_source.html -%%PORTDOCS%%%%DOCSDIR%%/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/faq.html -%%PORTDOCS%%%%DOCSDIR%%/files.html -%%PORTDOCS%%%%DOCSDIR%%/index.html -%%PORTDOCS%%%%DOCSDIR%%/license.html -%%PORTDOCS%%%%DOCSDIR%%/pages.html -%%PORTDOCS%%%%DOCSDIR%%/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/tabs.css %%DATADIR%%/completions/abook.fish %%DATADIR%%/completions/acat.fish %%DATADIR%%/completions/accept.fish @@ -50,6 +36,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/apt-key.fish %%DATADIR%%/completions/apt-listbugs.fish %%DATADIR%%/completions/apt-listchanges.fish +%%DATADIR%%/completions/apt-mark.fish %%DATADIR%%/completions/apt-move.fish %%DATADIR%%/completions/apt-proxy-import.fish %%DATADIR%%/completions/apt-rdepends.fish @@ -82,6 +69,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/btdownloadcurses.py.fish %%DATADIR%%/completions/btdownloadheadless.py.fish %%DATADIR%%/completions/builtin.fish +%%DATADIR%%/completions/bundle.fish %%DATADIR%%/completions/bunzip2.fish %%DATADIR%%/completions/bzcat.fish %%DATADIR%%/completions/bzip2.fish @@ -90,6 +78,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/cabal-dev.fish %%DATADIR%%/completions/cabal.fish %%DATADIR%%/completions/cancel.fish +%%DATADIR%%/completions/canto.fish %%DATADIR%%/completions/case.fish %%DATADIR%%/completions/cat.fish %%DATADIR%%/completions/cd.fish @@ -184,6 +173,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/gvim.fish %%DATADIR%%/completions/gvimdiff.fish %%DATADIR%%/completions/gzip.fish +%%DATADIR%%/completions/head.fish %%DATADIR%%/completions/help.fish %%DATADIR%%/completions/hg.fish %%DATADIR%%/completions/highlight.fish @@ -225,6 +215,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/lsof.fish %%DATADIR%%/completions/lua.fish %%DATADIR%%/completions/lualatex.fish +%%DATADIR%%/completions/lunchy.fish %%DATADIR%%/completions/lxpanel.fish %%DATADIR%%/completions/m4.fish %%DATADIR%%/completions/make.fish @@ -249,6 +240,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/namei.fish %%DATADIR%%/completions/ncdu.fish %%DATADIR%%/completions/netcat.fish +%%DATADIR%%/completions/netctl.fish %%DATADIR%%/completions/nextd.fish %%DATADIR%%/completions/nice.fish %%DATADIR%%/completions/nl.fish @@ -283,11 +275,13 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/pkill.fish %%DATADIR%%/completions/poff.fish %%DATADIR%%/completions/pon.fish +%%DATADIR%%/completions/portmaster.fish %%DATADIR%%/completions/ports.fish %%DATADIR%%/completions/prevd.fish %%DATADIR%%/completions/prt-get.fish %%DATADIR%%/completions/ps.fish %%DATADIR%%/completions/ps2pdf.fish +%%DATADIR%%/completions/psql.fish %%DATADIR%%/completions/psub.fish %%DATADIR%%/completions/pushd.fish %%DATADIR%%/completions/pydf.fish @@ -340,6 +334,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/sudo.fish %%DATADIR%%/completions/svn.fish %%DATADIR%%/completions/sylpheed.fish +%%DATADIR%%/completions/systemctl.fish %%DATADIR%%/completions/tail.fish %%DATADIR%%/completions/tar.fish %%DATADIR%%/completions/tee.fish @@ -365,9 +360,11 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/update-eix-remote.fish %%DATADIR%%/completions/update-eix.fish %%DATADIR%%/completions/useradd.fish +%%DATADIR%%/completions/vagrant.fish %%DATADIR%%/completions/valgrind.fish %%DATADIR%%/completions/vared.fish %%DATADIR%%/completions/vi.fish +%%DATADIR%%/completions/vim-addons.fish %%DATADIR%%/completions/vim.fish %%DATADIR%%/completions/vimdiff.fish %%DATADIR%%/completions/w.fish @@ -400,6 +397,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/completions/yum.fish %%DATADIR%%/completions/zcat.fish %%DATADIR%%/completions/zip.fish +%%DATADIR%%/completions/zypper.fish %%DATADIR%%/config.fish %%DATADIR%%/functions/N_.fish %%DATADIR%%/functions/_.fish @@ -494,8 +492,10 @@ man/man1/mimedb.1.gz %%DATADIR%%/functions/__fish_prt_ports.fish %%DATADIR%%/functions/__fish_prt_use_package.fish %%DATADIR%%/functions/__fish_prt_use_port.fish +%%DATADIR%%/functions/__fish_pwd.fish %%DATADIR%%/functions/__fish_seen_subcommand_from.fish %%DATADIR%%/functions/__fish_test_arg.fish +%%DATADIR%%/functions/__fish_urlencode.fish %%DATADIR%%/functions/__fish_use_subcommand.fish %%DATADIR%%/functions/__terlar_git_prompt.fish %%DATADIR%%/functions/alias.fish @@ -516,6 +516,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/functions/grep.fish %%DATADIR%%/functions/help.fish %%DATADIR%%/functions/history.fish +%%DATADIR%%/functions/hostname.fish %%DATADIR%%/functions/isatty.fish %%DATADIR%%/functions/la.fish %%DATADIR%%/functions/ll.fish @@ -549,6 +550,7 @@ man/man1/mimedb.1.gz %%DATADIR%%/tools/web_config/sample_prompts/classic_git.fish %%DATADIR%%/tools/web_config/sample_prompts/classic_status.fish %%DATADIR%%/tools/web_config/sample_prompts/informative.fish +%%DATADIR%%/tools/web_config/sample_prompts/informative_git.fish %%DATADIR%%/tools/web_config/sample_prompts/justadollar.fish %%DATADIR%%/tools/web_config/sample_prompts/lonetwin.fish %%DATADIR%%/tools/web_config/sample_prompts/minimalist.fish @@ -560,16 +562,15 @@ man/man1/mimedb.1.gz %%DATADIR%%/tools/web_config/sample_prompts/user_host_path.fish %%DATADIR%%/tools/web_config/webconfig.py %%NLS%%share/locale/de/LC_MESSAGES/fish.mo +%%NLS%%share/locale/en/LC_MESSAGES/fish.mo %%NLS%%share/locale/fr/LC_MESSAGES/fish.mo %%NLS%%share/locale/sv/LC_MESSAGES/fish.mo -%%NLS%%share/locale/en/LC_MESSAGES/fish.mo @dirrm %%DATADIR%%/tools/web_config/sample_prompts @dirrm %%DATADIR%%/tools/web_config @dirrm %%DATADIR%%/tools @dirrm %%DATADIR%%/functions @dirrm %%DATADIR%%/completions @dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm %%ETCDIR%% @exec cp /etc/shells /etc/shells.bak; (grep -v %D/bin/fish /etc/shells.bak; echo %D/bin/fish) > /etc/shells; rm -f /etc/shells.bak @unexec cp /etc/shells /etc/shells.bak; (grep -v %D/bin/fish /etc/shells.bak) > /etc/shells; rm -f /etc/shells.bak From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 00:59:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6EE489BA; Sat, 25 Jan 2014 00:59:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 59F991ABF; Sat, 25 Jan 2014 00:59:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P0xu1W025923; Sat, 25 Jan 2014 00:59:56 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P0xuP9025921; Sat, 25 Jan 2014 00:59:56 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250059.s0P0xuP9025921@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 00:59:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340976 - head/dns/updatedd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 00:59:56 -0000 Author: bapt Date: Sat Jan 25 00:59:55 2014 New Revision: 340976 URL: http://svnweb.freebsd.org/changeset/ports/340976 QAT: https://qat.redports.org/buildarchive/r340976/ Log: Support stage Modified: head/dns/updatedd/Makefile head/dns/updatedd/pkg-plist Modified: head/dns/updatedd/Makefile ============================================================================== --- head/dns/updatedd/Makefile Sat Jan 25 00:56:53 2014 (r340975) +++ head/dns/updatedd/Makefile Sat Jan 25 00:59:55 2014 (r340976) @@ -11,23 +11,13 @@ DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= geniusj@ods.org COMMENT= Dynamic DNS Update Client supporting multiple services -USES= perl5 -USE_GMAKE= yes +OPTIONS_DEFINE= DOCS + +USES= gmake perl5 GNU_CONFIGURE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -MAN1= updatedd.1 updatedd-wrapper.1 -MAN5= updatedd-wrapper.conf.5 - -.if defined(NOPORTDOCS) -EXTRA_PATCHES+= ${PATCHDIR}/extrapatch-disable-portdocs -.endif - -NO_STAGE= yes -post-install: - @if [ ! -f ${PREFIX}/etc/updatedd-wrapper.conf ]; then \ - ${CP} -p ${PREFIX}/etc/updatedd-wrapper.conf.sample ${PREFIX}/etc/updatedd-wrapper.conf ; \ - fi +DOCS_EXTRA_PATCHES+= ${PATCHDIR}/extrapatch-disable-portdocs .include Modified: head/dns/updatedd/pkg-plist ============================================================================== --- head/dns/updatedd/pkg-plist Sat Jan 25 00:56:53 2014 (r340975) +++ head/dns/updatedd/pkg-plist Sat Jan 25 00:59:55 2014 (r340976) @@ -51,6 +51,9 @@ include/libregfish.h include/libtzo.h %%DATADIR%%/interface.pl %%DATADIR%%/ipserv.pl +man/man1/updatedd-wrapper.1.gz +man/man1/updatedd.1.gz +man/man5/updatedd-wrapper.conf.5.gz @dirrm %%DATADIR%% %%PORTDOCS%%%%DOCSDIR%%/updatedd-2.4-english.pdf %%PORTDOCS%%%%DOCSDIR%%/updatedd-2.4-german.pdf From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 01:04:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 554FBBCF; Sat, 25 Jan 2014 01:04:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4120B1B7D; Sat, 25 Jan 2014 01:04:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P14fFv029426; Sat, 25 Jan 2014 01:04:41 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P14f7g029425; Sat, 25 Jan 2014 01:04:41 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250104.s0P14f7g029425@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 01:04:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340977 - head/editors/zile X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 01:04:41 -0000 Author: bapt Date: Sat Jan 25 01:04:40 2014 New Revision: 340977 URL: http://svnweb.freebsd.org/changeset/ports/340977 QAT: https://qat.redports.org/buildarchive/r340977/ Log: Support stage Modified: head/editors/zile/Makefile Modified: head/editors/zile/Makefile ============================================================================== --- head/editors/zile/Makefile Sat Jan 25 00:59:55 2014 (r340976) +++ head/editors/zile/Makefile Sat Jan 25 01:04:40 2014 (r340977) @@ -9,17 +9,16 @@ MASTER_SITES= GNU MAINTAINER= culot@FreeBSD.org COMMENT= Small emacs-like text editor -LIB_DEPENDS= gc:${PORTSDIR}/devel/boehm-gc +LIB_DEPENDS= libgc.so:${PORTSDIR}/devel/boehm-gc BUILD_DEPENDS= ${LOCALBASE}/bin/help2man:${PORTSDIR}/misc/help2man -USE_GMAKE= yes -USES= perl5 +USES= gmake perl5 USE_PERL5= build GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-included-regex -MAN1= ${PORTNAME}.1 PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz \ %%DOCSDIR%%/AUTHORS \ %%DOCSDIR%%/FAQ \ %%DOCSDIR%%/NEWS \ @@ -29,7 +28,6 @@ PLIST_DIRS= %%DOCSDIR%% CPPFLAGS+= -I${LOCALBASE}/include -isystem /usr/include/gnu LDFLAGS+= -L${LOCALBASE}/lib -lgnuregex -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ '/need_charset_alias=/s|true|false|g' ${WRKSRC}/lib/Makefile.in From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 01:16:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D4814C8; Sat, 25 Jan 2014 01:16:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5EE0B1D7A; Sat, 25 Jan 2014 01:16:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P1G0UL033832; Sat, 25 Jan 2014 01:16:00 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P1G0pR033825; Sat, 25 Jan 2014 01:16:00 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250116.s0P1G0pR033825@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 01:16:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340978 - head/editors/mined X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 01:16:00 -0000 Author: bapt Date: Sat Jan 25 01:15:59 2014 New Revision: 340978 URL: http://svnweb.freebsd.org/changeset/ports/340978 QAT: https://qat.redports.org/buildarchive/r340978/ Log: Support stage Modified: head/editors/mined/Makefile head/editors/mined/pkg-plist Modified: head/editors/mined/Makefile ============================================================================== --- head/editors/mined/Makefile Sat Jan 25 01:04:40 2014 (r340977) +++ head/editors/mined/Makefile Sat Jan 25 01:15:59 2014 (r340978) @@ -9,29 +9,23 @@ MASTER_SITES= http://towo.net/mined/down MAINTAINER= thierry@FreeBSD.org COMMENT= Text mode editor with Unicode support +OPTIONS_DEFINE= DOCS + LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/LICENCE.GPL -.if defined(NOPORTDOCS) -ALL_TARGET= mined manual -.else PORTDOCS= * -.endif -USE_GMAKE= yes +USES= gmake MAKEFILE= makefile REINPLACE_ARGS= -i "" MAKE_ARGS= GMAKE=${MAKE_CMD} CC=${CC:T} OPT="${CFLAGS}" INSTALL_TARGET= localinstall MAKE_JOBS_UNSAFE= yes -MAN1= mined.1 minmacs.1 mpico.1 mstar.1 umined.1 uterm.1 xmined.1 - PRFX2FIX= src/makefile.bsd usrshare/conf_user/xinitrc.mined \ src/minedaux.c man/mined.1 src/mkinclud.mak \ src/makefile.gcc -NO_STAGE= yes pre-configure: .for FILE in ${PRFX2FIX} ${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' ${WRKSRC}/${FILE} @@ -45,16 +39,12 @@ pre-build: fi) post-install: - ${MKDIR} ${DESKTOPDIR} ${INSTALL_DATA} ${WRKSRC}/usrshare/setup_install/mined.desktop \ - ${DESKTOPDIR} -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC}/doc && ${INSTALL_DATA} * ${DOCSDIR} - cd ${WRKSRC}/usrshare/package_doc && ${INSTALL_DATA} * ${DOCSDIR} - @${RM} ${DOCSDIR}/CHANGES ${DOCSDIR}/LICENCE.GPL -.endif -# @${RM} ${DATADIR}/bin/*.bat - @${RM} -rf ${DATADIR}/doc_user ${DATADIR}/package_doc + ${STAGEDIR}${DESKTOPDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/doc && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/usrshare/package_doc && ${INSTALL_DATA} * ${STAGEDIR}${DOCSDIR} + @${RM} ${STAGEDIR}${DOCSDIR}/CHANGES ${STAGEDIR}${DOCSDIR}/LICENCE.GPL + @${RM} -rf ${STAGEDIR}${DATADIR}/doc_user ${STAGEDIR}${DATADIR}/package_doc .include Modified: head/editors/mined/pkg-plist ============================================================================== --- head/editors/mined/pkg-plist Sat Jan 25 01:04:40 2014 (r340977) +++ head/editors/mined/pkg-plist Sat Jan 25 01:15:59 2014 (r340978) @@ -5,6 +5,13 @@ bin/mstar bin/umined bin/uterm bin/xmined +man/man1/mined.1.gz +man/man1/minmacs.1.gz +man/man1/mpico.1.gz +man/man1/mstar.1.gz +man/man1/umined.1.gz +man/man1/uterm.1.gz +man/man1/xmined.1.gz share/applications/mined.desktop %%DATADIR%%/bin/mterm %%DATADIR%%/bin/umined From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 01:19:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6F0D5DE; Sat, 25 Jan 2014 01:19:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D33101D98; Sat, 25 Jan 2014 01:19:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P1JRcm034246; Sat, 25 Jan 2014 01:19:27 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P1JR3r034245; Sat, 25 Jan 2014 01:19:27 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401250119.s0P1JR3r034245@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 01:19:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340979 - head/editors/aewan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 01:19:28 -0000 Author: bapt Date: Sat Jan 25 01:19:27 2014 New Revision: 340979 URL: http://svnweb.freebsd.org/changeset/ports/340979 QAT: https://qat.redports.org/buildarchive/r340979/ Log: Support stage Modified: head/editors/aewan/Makefile Modified: head/editors/aewan/Makefile ============================================================================== --- head/editors/aewan/Makefile Sat Jan 25 01:15:59 2014 (r340978) +++ head/editors/aewan/Makefile Sat Jan 25 01:19:27 2014 (r340979) @@ -9,27 +9,26 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Curses-based program for the creation and editing of ASCII art +OPTIONS_DEFINE= DOCS + GNU_CONFIGURE= yes -USE_GMAKE= yes +USES= gmake -MAN1= aecat.1 aewan.1 aemakeflic.1 -MAN5= aewan.5 -PLIST_FILES= bin/aecat bin/aewan bin/aemakeflic +PLIST_FILES= bin/aecat bin/aewan bin/aemakeflic \ + man/man1/aecat.1.gz \ + man/man1/aewan.1.gz \ + man/man1/aemakeflic.1.gz \ + man/man5/aewan.5.gz -.if !defined(NOPORTDOCS) PORTDOCS= * -.endif -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|OSTYPE == |OSTYPE = |g' ${WRKSRC}/configure -.if !defined(NOPORTDOCS) post-install: - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in README - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 01:36:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A6B38971; Sat, 25 Jan 2014 01:36:37 +0000 (UTC) Received: from mail-we0-x22d.google.com (mail-we0-x22d.google.com [IPv6:2a00:1450:400c:c03::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E285F1F02; Sat, 25 Jan 2014 01:36:36 +0000 (UTC) Received: by mail-we0-f173.google.com with SMTP id t60so3361170wes.18 for ; Fri, 24 Jan 2014 17:36:35 -0800 (PST) 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=RKZU8cissLKcZJqj+sMtPvg+1ZgyL1OGY7JlMZANgBw=; b=feR0Je+tQ1wpT0SO5EIZgzAQIJXGdIviOdUfOvfo4eCgtfy5xSH1D1GHz73cGIigHo W7EY5sTNRM5WWqE5WlpaIVbL0W8rbEHW/HB0YiNSYxLJpHOwARWD4sRNEHGEUBIP43YN Wtc8ai9DgO/Anw3BIBh8erzRDsPRogTgdAnBbik5LlMXszni60JY3rzQb/VSt9ZNKToG 2SabrlBpKpT5A3tKwAZBaDjf7uHOpjy/jYYrnJerIj2GcaAT0XRfdps1X3PR2/VNY+Ga B7NCJy+33mpox5sBxxpS/jBxNyPRdW98+B+XHwW0D0vghPKh7DuPRUEXpF8JJr3kUs9B 4l4A== X-Received: by 10.180.105.65 with SMTP id gk1mr5124291wib.12.1390613795259; Fri, 24 Jan 2014 17:36:35 -0800 (PST) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id k10sm6282649wjf.11.2014.01.24.17.36.33 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 24 Jan 2014 17:36:33 -0800 (PST) Sender: Baptiste Daroussin Date: Sat, 25 Jan 2014 02:36:31 +0100 From: Baptiste Daroussin To: Julio Merino Subject: Re: svn commit: r340929 - in head/devel: kyua kyua-atf-compat kyua-testers lutok Message-ID: <20140125013631.GJ37299@ithaqua.etoilebsd.net> References: <201401241946.s0OJkv5m094049@svn.freebsd.org> <20140124200827.GF37299@ithaqua.etoilebsd.net> <448D0D58-0AA2-4437-B671-EABA06B0D1EC@meroh.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="g3RkK9jYN81zD2N+" Content-Disposition: inline In-Reply-To: <448D0D58-0AA2-4437-B671-EABA06B0D1EC@meroh.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.17 Precedence: list List-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, 25 Jan 2014 01:36:37 -0000 --g3RkK9jYN81zD2N+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 24, 2014 at 05:15:17PM -0500, Julio Merino wrote: > On Jan 24, 2014, at 15:08, Baptiste Daroussin wrote: >=20 > > @comment $FreeBSD$ is wrong in pkg-plist >=20 > Why? we only track keywords on Makefiles by convention >=20 > Also, can I just go ahead and delete it? (I.e. do you approve of the cha= nge?) >=20 yes approved regards, Bapt --g3RkK9jYN81zD2N+ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (FreeBSD) iEYEARECAAYFAlLjFR4ACgkQ8kTtMUmk6Ey2cACfduWhphdtOjWj1H6uNbo92WZX V4cAoKRDYSNHWLmuBhvf5fAbi6c4HVMt =xLV2 -----END PGP SIGNATURE----- --g3RkK9jYN81zD2N+-- From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 02:08:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81877E15; Sat, 25 Jan 2014 02:08:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6DCD410F8; Sat, 25 Jan 2014 02:08:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P283dl052964; Sat, 25 Jan 2014 02:08:03 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P283Cu052961; Sat, 25 Jan 2014 02:08:03 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201401250208.s0P283Cu052961@svn.freebsd.org> From: Ryan Steinmetz Date: Sat, 25 Jan 2014 02:08:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340980 - head/net/freeradius3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 02:08:03 -0000 Author: zi Date: Sat Jan 25 02:08:02 2014 New Revision: 340980 URL: http://svnweb.freebsd.org/changeset/ports/340980 QAT: https://qat.redports.org/buildarchive/r340980/ Log: - Fix dhcp-related error at launch with default configuration - Bump PORTREVISION PR: ports/186086 [1] Submitted by: Dave Duchscher [1] Reported by: Darrel Modified: head/net/freeradius3/Makefile head/net/freeradius3/pkg-plist Modified: head/net/freeradius3/Makefile ============================================================================== --- head/net/freeradius3/Makefile Sat Jan 25 01:19:27 2014 (r340979) +++ head/net/freeradius3/Makefile Sat Jan 25 02:08:02 2014 (r340980) @@ -3,7 +3,7 @@ PORTNAME= freeradius DISTVERSION= 3.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= ftp://ftp.freeradius.org/pub/freeradius/%SUBDIR%/ \ ftp://ftp.ntua.gr/pub/net/radius/freeradius/%SUBDIR%/ \ @@ -40,12 +40,11 @@ MAKE_JOBS_SAFE= yes PLIST_SUB= PORTVERSION=${DISTVERSION} LIBVER=0${PORTVERSION:C/\./0/g} OPTIONS_DEFINE= USER KERBEROS HEIMDAL HEIMDAL_PORT LDAP MYSQL \ - PGSQL UNIXODBC FIREBIRD REDIS PYTHON RUBY DHCP \ + PGSQL UNIXODBC FIREBIRD REDIS PYTHON RUBY \ EXPERIMENTAL UDPFROMTO DEVELOPER EDIR PERL REST \ FREETDS IDN SSL_PORT OPTIONS_DEFAULT=USER PERL -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 @@ -202,18 +201,6 @@ PLIST_SUB+= RLMRUBY="@comment " EXPM= yes .endif -.if ${PORT_OPTIONS:MDHCP} -IGNORE= currently fails to build properly with DHCP support -CONFIGURE_ARGS+=--with-dhcp -.else -CONFIGURE_ARGS+=--without-dhcp --without-rlm_dhcp --without-proto_dhcp -.endif - -# DHCP is still experimental -.if ${PORT_OPTIONS:MDHCP} && empty(PORT_OPTIONS:MEXPERIMENTAL) -EXPM= yes -.endif - # No SMB option yet; rlm_smb is still unbuildable .if ${PORT_OPTIONS:MSMB} LIB_DEPENDS= smbclient:${PORTSDIR}/net/samba-libsmbclient @@ -411,17 +398,6 @@ post-patch: @${REINPLACE_CMD} -e 's|-lkrb5|$$(${KRB5_CONFIG})|g' \ ${WRKSRC}/src/modules/rlm_krb5/configure .endif -# 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) - @${FIND} -E ${WRKSRC}/share \ - -regex '.*/dictionary\.(orig|bak)$$' \ - -delete -.else - @${RM} -fr ${WRKSRC}/src/modules/proto_dhcp/ -.endif .if empty(PORT_OPTIONS:MRUBY) @${RM} -fr ${WRKSRC}/src/modules/rlm_ruby/ .endif Modified: head/net/freeradius3/pkg-plist ============================================================================== --- head/net/freeradius3/pkg-plist Sat Jan 25 01:19:27 2014 (r340979) +++ head/net/freeradius3/pkg-plist Sat Jan 25 02:08:02 2014 (r340980) @@ -1,4 +1,5 @@ @stopdaemon radiusd +bin/dhcpclient bin/radcrypt bin/radclient bin/radconf2xml @@ -25,6 +26,9 @@ bin/smbencrypt %%LIBDIR%%/libfreeradius-server.a %%LIBDIR%%/libfreeradius-server.la %%LIBDIR%%/libfreeradius-server.so +%%LIBDIR%%/proto_dhcp.a +%%LIBDIR%%/proto_dhcp.la +%%LIBDIR%%/proto_dhcp.so %%LIBDIR%%/proto_vmps.a %%LIBDIR%%/proto_vmps.la %%LIBDIR%%/proto_vmps.so @@ -49,6 +53,9 @@ bin/smbencrypt %%LIBDIR%%/rlm_detail.a %%LIBDIR%%/rlm_detail.la %%LIBDIR%%/rlm_detail.so +%%LIBDIR%%/rlm_dhcp.a +%%LIBDIR%%/rlm_dhcp.la +%%LIBDIR%%/rlm_dhcp.so %%LIBDIR%%/rlm_digest.a %%LIBDIR%%/rlm_digest.la %%LIBDIR%%/rlm_digest.so From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 02:24:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A9A9A27C; Sat, 25 Jan 2014 02:24:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 956CC1212; Sat, 25 Jan 2014 02:24:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P2OdDJ060500; Sat, 25 Jan 2014 02:24:39 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P2OdrR060499; Sat, 25 Jan 2014 02:24:39 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201401250224.s0P2OdrR060499@svn.freebsd.org> From: Ryan Steinmetz Date: Sat, 25 Jan 2014 02:24:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340981 - head/net-mgmt/net-snmp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 02:24:39 -0000 Author: zi Date: Sat Jan 25 02:24:39 2014 New Revision: 340981 URL: http://svnweb.freebsd.org/changeset/ports/340981 QAT: https://qat.redports.org/buildarchive/r340981/ Log: - Fix python build PR: ports/186074 Submitted by: Jimmy Olgeni Modified: head/net-mgmt/net-snmp/Makefile Modified: head/net-mgmt/net-snmp/Makefile ============================================================================== --- head/net-mgmt/net-snmp/Makefile Sat Jan 25 02:08:02 2014 (r340980) +++ head/net-mgmt/net-snmp/Makefile Sat Jan 25 02:24:39 2014 (r340981) @@ -72,6 +72,7 @@ USE_PYTHON= yes RUN_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools CONFIGURE_ARGS+=--with-python-modules +CONFIGURE_ENV+= PYTHONPROG="${LOCALBASE}/bin/${PYTHON_DEFAULT_VERSION}" PLIST_SUB+= WITH_PYTHON="" PYTHON_VER=${PYTHON_VER} PLIST_SUB+= PYDISTUTILS_PKGVERSION=${PYDISTUTILS_PKGVERSION} PLIST_SUB+= PYINSTALL="@exec ${SETENV} PYTHONPATH=${PYEASYINSTALL_SITELIBDIR} ${PYEASYINSTALL_CMD} ${PYEASYINSTALL_INSTALLARGS}" From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 02:40:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B9A8D49B; Sat, 25 Jan 2014 02:40:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8BDB81314; Sat, 25 Jan 2014 02:40:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P2eIT7065121; Sat, 25 Jan 2014 02:40:18 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P2eIZh065119; Sat, 25 Jan 2014 02:40:18 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401250240.s0P2eIZh065119@svn.freebsd.org> From: Rusmir Dusko Date: Sat, 25 Jan 2014 02:40:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340982 - in head/shells/fish: . 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.17 Precedence: list List-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, 25 Jan 2014 02:40:18 -0000 Author: nemysis Date: Sat Jan 25 02:40:17 2014 New Revision: 340982 URL: http://svnweb.freebsd.org/changeset/ports/340982 QAT: https://qat.redports.org/buildarchive/r340982/ Log: - Add licenses (GPLv2) - Fix DOCS Option, add extra-patch-Makefile.in Reviewed by: horia Added: head/shells/fish/files/ head/shells/fish/files/extra-patch-Makefile.in (contents, props changed) Modified: head/shells/fish/Makefile Modified: head/shells/fish/Makefile ============================================================================== --- head/shells/fish/Makefile Sat Jan 25 02:24:39 2014 (r340981) +++ head/shells/fish/Makefile Sat Jan 25 02:40:17 2014 (r340982) @@ -9,6 +9,8 @@ MASTER_SITES= http://fishshell.com/files MAINTAINER= nemysis@FreeBSD.org COMMENT= User friendly command line shell +LICENSE= GPLv2 + USES= gmake iconv USE_AUTOTOOLS= autoconf @@ -24,6 +26,8 @@ NLS_USES= gettext NLS_CONFIGURE_ENV= ac_cv_func_gettext=yes NLS_CONFIGURE_OFF= --without-gettext +.include + post-patch: @${REINPLACE_CMD} -e \ '/^all:/s|user_doc|| ; \ @@ -37,6 +41,10 @@ post-patch: s|ncurses curses|curses| ; \ s|ncurses.h||' ${WRKSRC}/configure.ac +.if ! ${PORT_OPTIONS:MDOCS} +EXTRA_PATCHES+=${FILESDIR}/extra-patch-Makefile.in +.endif + post-install: .for i in fish fish_indent fish_pager fishd mimedb @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${i} Added: head/shells/fish/files/extra-patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/fish/files/extra-patch-Makefile.in Sat Jan 25 02:40:17 2014 (r340982) @@ -0,0 +1,21 @@ +--- ./Makefile.in.orig 2013-10-19 22:10:26.000000000 +0200 ++++ ./Makefile.in 2014-01-25 02:35:57.000000000 +0100 +@@ -639,12 +639,12 @@ + true; \ + done; + +- $(INSTALL) -m 755 -d $(DESTDIR)$(docdir) +- for i in user_doc/html/* ChangeLog; do \ +- if test -f $$i; then \ +- $(INSTALL) -m 644 $$i $(DESTDIR)$(docdir); \ +- fi; \ +- done; ++# $(INSTALL) -m 755 -d $(DESTDIR)$(docdir) ++# for i in user_doc/html/* ChangeLog; do \ ++# if test -f $$i; then \ ++# $(INSTALL) -m 644 $$i $(DESTDIR)$(docdir); \ ++# fi; \ ++# done; + $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1 + for i in $(MANUALS); do \ + $(INSTALL) -m 644 $$i $(DESTDIR)$(mandir)/man1/; \ From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 02:42:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76D0F58C; Sat, 25 Jan 2014 02:42:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 487D7131E; Sat, 25 Jan 2014 02:42:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P2gNsp068017; Sat, 25 Jan 2014 02:42:23 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P2gMQr068014; Sat, 25 Jan 2014 02:42:22 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201401250242.s0P2gMQr068014@svn.freebsd.org> From: Ryan Steinmetz Date: Sat, 25 Jan 2014 02:42:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340983 - head/devel/libcidr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 02:42:23 -0000 Author: zi Date: Sat Jan 25 02:42:22 2014 New Revision: 340983 URL: http://svnweb.freebsd.org/changeset/ports/340983 QAT: https://qat.redports.org/buildarchive/r340983/ Log: - Update to 1.2.2 - Pass maintainership to author/submitter - Add STAGE support PR: ports/185735 Submitted by: Matthew D.Fuller Modified: head/devel/libcidr/Makefile head/devel/libcidr/distinfo head/devel/libcidr/pkg-plist Modified: head/devel/libcidr/Makefile ============================================================================== --- head/devel/libcidr/Makefile Sat Jan 25 02:40:17 2014 (r340982) +++ head/devel/libcidr/Makefile Sat Jan 25 02:42:22 2014 (r340983) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= libcidr -DISTVERSION= 1.2.1 +DISTVERSION= 1.2.2 CATEGORIES= devel MASTER_SITES= http://www.over-yonder.net/~fullermd/projects/${PORTNAME}/ \ http://distfiles.over-yonder.net/${PORTNAME}/ \ http://mirrors.rit.edu/zi/ -MAINTAINER= zi@FreeBSD.org +MAINTAINER= fullermd@over-yonder.net COMMENT= A library to handle manipulating CIDR netblocks LICENSE= BSD @@ -16,17 +16,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_XZ= yes USE_LDCONFIG= yes -MAKE_ENV+= CIDR_DOCDIR=${DOCSDIR} CIDR_EXDIR=${EXAMPLESDIR} - -MAN3= libcidr.3 - -.if defined(NOPORTDOCS) -MAKE_ENV+= NO_DOCS=yes -.endif +MAKE_ENV+= CIDR_DOCDIR=${DOCSDIR} CIDR_EXDIR=${EXAMPLESDIR} NO_DOCS=yes .if defined(NOPORTEXAMPLES) MAKE_ENV+= NO_EXAMPLES=yes .endif -NO_STAGE= yes .include Modified: head/devel/libcidr/distinfo ============================================================================== --- head/devel/libcidr/distinfo Sat Jan 25 02:40:17 2014 (r340982) +++ head/devel/libcidr/distinfo Sat Jan 25 02:42:22 2014 (r340983) @@ -1,2 +1,2 @@ -SHA256 (libcidr-1.2.1.tar.xz) = 4f2e2cb2f70d9af023e1cb0ec24d129ba1311c4e8ef629e80b4c1606605f1ac8 -SIZE (libcidr-1.2.1.tar.xz) = 151444 +SHA256 (libcidr-1.2.2.tar.xz) = 918b76f80ed1a3a2f44adc5956b3a56417175c2856f380980049becba52e5d24 +SIZE (libcidr-1.2.2.tar.xz) = 151800 Modified: head/devel/libcidr/pkg-plist ============================================================================== --- head/devel/libcidr/pkg-plist Sat Jan 25 02:40:17 2014 (r340982) +++ head/devel/libcidr/pkg-plist Sat Jan 25 02:42:22 2014 (r340983) @@ -2,13 +2,7 @@ lib/libcidr.so lib/libcidr.so.0 bin/cidrcalc include/libcidr.h -%%PORTDOCS%%%%DOCSDIR%%/libcidr-big.html -%%PORTDOCS%%%%DOCSDIR%%/libcidr.dvi -%%PORTDOCS%%%%DOCSDIR%%/libcidr.pdf -%%PORTDOCS%%%%DOCSDIR%%/libcidr.ps -%%PORTDOCS%%%%DOCSDIR%%/libcidr.rtf -%%PORTDOCS%%%%DOCSDIR%%/libcidr.txt -%%PORTDOCS%%%%DOCSDIR%%/codelibrary-html.css +man/man3/libcidr.3.gz %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.inc %%PORTEXAMPLES%%%%EXAMPLESDIR%%/README %%PORTEXAMPLES%%%%EXAMPLESDIR%%/cidrcalc/cidrcalc.c From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 05:06:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87A1365E; Sat, 25 Jan 2014 05:06:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 735321F45; Sat, 25 Jan 2014 05:06:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P56VZZ023424; Sat, 25 Jan 2014 05:06:31 GMT (envelope-from lx@svn.freebsd.org) Received: (from lx@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P56Vg4023422; Sat, 25 Jan 2014 05:06:31 GMT (envelope-from lx@svn.freebsd.org) Message-Id: <201401250506.s0P56Vg4023422@svn.freebsd.org> From: David Thiel Date: Sat, 25 Jan 2014 05:06:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340984 - in head/net-im/prosody: . 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.17 Precedence: list List-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, 25 Jan 2014 05:06:31 -0000 Author: lx Date: Sat Jan 25 05:06:30 2014 New Revision: 340984 URL: http://svnweb.freebsd.org/changeset/ports/340984 QAT: https://qat.redports.org/buildarchive/r340984/ Log: Fix on 10 and tweak rc script. Modified: head/net-im/prosody/Makefile head/net-im/prosody/files/prosody.in Modified: head/net-im/prosody/Makefile ============================================================================== --- head/net-im/prosody/Makefile Sat Jan 25 02:42:22 2014 (r340983) +++ head/net-im/prosody/Makefile Sat Jan 25 05:06:30 2014 (r340984) @@ -26,7 +26,7 @@ WANT_LUA_VER= 5.1 USE_GMAKE= yes HAS_CONFIGURE= yes -CONFIGURE_ARGS+="--ostype=freebsd" +CONFIGURE_ARGS+= --ostype=freebsd --c-compiler="${CC}" --linker="${LD}" CONFIGURE_ENV+= LOCALBASE="${LOCALBASE}" PREFIX="${PREFIX}" LUA_SUFFIX="-${LUA_VER}" LUA_LIBDIR="${LUA_LIBDIR}" LUA_INCDIR="${LUA_INCDIR}" SUB_FILES= pkg-install pkg-deinstall Modified: head/net-im/prosody/files/prosody.in ============================================================================== --- head/net-im/prosody/files/prosody.in Sat Jan 25 02:42:22 2014 (r340983) +++ head/net-im/prosody/files/prosody.in Sat Jan 25 05:06:30 2014 (r340984) @@ -16,12 +16,12 @@ name="prosody" rcvar=prosody_enable -pidfile="%%PREFIX%%/var/lib/prosody/prosody.pid" command="%%PREFIX%%/bin/prosodyctl" load_rc_config $name -prosody=${prosody_enable-"NO"} +prosody_enable=${prosody_enable:-"NO"} +pidfile=${prosody_pidfile:-"%%PREFIX%%/var/lib/prosody/prosody.pid"} extra_commands="status" From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 05:34:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8BC28B8; Sat, 25 Jan 2014 05:34:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94A1A10F7; Sat, 25 Jan 2014 05:34:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P5YDIq034448; Sat, 25 Jan 2014 05:34:13 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P5YD1P034446; Sat, 25 Jan 2014 05:34:13 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201401250534.s0P5YD1P034446@svn.freebsd.org> From: Alex Kozlov Date: Sat, 25 Jan 2014 05:34:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340985 - head/sysutils/rclean X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 05:34:13 -0000 Author: ak Date: Sat Jan 25 05:34:12 2014 New Revision: 340985 URL: http://svnweb.freebsd.org/changeset/ports/340985 QAT: https://qat.redports.org/buildarchive/r340985/ Log: - Support STAGEDIR [1] - Remove gratuitous whitespaces at end of line in pkg-descr - Unmute install command PR: ports/186081 [1] Submitted by: Lapo Luchini (maintainer) Modified: head/sysutils/rclean/Makefile head/sysutils/rclean/pkg-descr Modified: head/sysutils/rclean/Makefile ============================================================================== --- head/sysutils/rclean/Makefile Sat Jan 25 05:06:30 2014 (r340984) +++ head/sysutils/rclean/Makefile Sat Jan 25 05:34:12 2014 (r340985) @@ -12,11 +12,10 @@ COMMENT= Command-line rc.conf ordering a PLIST_FILES= bin/rclean USE_BZIP2= yes -NO_STAGE= yes do-build: @(cd ${WRKSRC}; ${CC} -o ${PORTNAME} ${PORTNAME}.c) do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include Modified: head/sysutils/rclean/pkg-descr ============================================================================== --- head/sysutils/rclean/pkg-descr Sat Jan 25 05:06:30 2014 (r340984) +++ head/sysutils/rclean/pkg-descr Sat Jan 25 05:34:12 2014 (r340985) @@ -1,5 +1,5 @@ -rclean provides a command-line tool to order and clean content of -rc.conf, using option order from /etc/defaults/rc.conf and printing only +rclean provides a command-line tool to order and clean content of +rc.conf, using option order from /etc/defaults/rc.conf and printing only choices that were different by the default value in /etc/rc.conf. Output is customizable from "only used values" to "full listing". From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 05:38:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41F379FD; Sat, 25 Jan 2014 05:38:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 13DCB1118; Sat, 25 Jan 2014 05:38:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P5cpT9034972; Sat, 25 Jan 2014 05:38:51 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P5cpEr034971; Sat, 25 Jan 2014 05:38:51 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401250538.s0P5cpEr034971@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 05:38:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340986 - head/net/icpld X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 05:38:52 -0000 Author: miwi Date: Sat Jan 25 05:38:51 2014 New Revision: 340986 URL: http://svnweb.freebsd.org/changeset/ports/340986 QAT: https://qat.redports.org/buildarchive/r340986/ Log: - Stage support Modified: head/net/icpld/Makefile Modified: head/net/icpld/Makefile ============================================================================== --- head/net/icpld/Makefile Sat Jan 25 05:34:12 2014 (r340985) +++ head/net/icpld/Makefile Sat Jan 25 05:38:51 2014 (r340986) @@ -3,7 +3,7 @@ PORTNAME= icpld PORTVERSION= 1.1.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 MASTER_SITES= http://www.ibiblio.org/icpld/download/ \ http://freebsd.unixfreunde.de/sources/ @@ -14,14 +14,12 @@ COMMENT= Internet connection performance USE_BZIP2= yes GNU_CONFIGURE= yes -MAN1= ${PORTNAME}.1 - PORTDOCS= README -PLIST_FILES= bin/icpld etc/icpld.conf.sample etc/rc.d/icpld.sh.sample +PLIST_FILES= bin/icpld etc/icpld.conf.sample etc/rc.d/icpld.sh.sample \ + man/man1/${PORTNAME}.1.gz OPTIONS_DEFINE= IPV6 DOCS -NO_STAGE= yes .include .if ${PORT_OPTIONS:MIPV6} @@ -31,18 +29,18 @@ CONFIGURE_ARGS+= --disable-ipv6 .endif do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${MANPREFIX}/man/man1 - @${ECHO_MSG} '===> Installing ${PREFIX}/etc/icpld.conf.sample file.' - ${INSTALL_DATA} ${WRKSRC}/icpld.conf.sample ${PREFIX}/etc - @${ECHO_MSG} '===> Installing ${PREFIX}/etc/rc.d/icpld.sh.sample' - ${INSTALL_SCRIPT} ${WRKSRC}/contrib/icpld.sh.sample ${PREFIX}/etc/rc.d + ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + @${ECHO_MSG} '===> Installing ${STAGEDIR}${PREFIX}/etc/icpld.conf.sample file.' + ${INSTALL_DATA} ${WRKSRC}/icpld.conf.sample ${STAGEDIR}${PREFIX}/etc + @${ECHO_MSG} '===> Installing ${STAGEDIR}${PREFIX}/etc/rc.d/icpld.sh.sample' + ${INSTALL_SCRIPT} ${WRKSRC}/contrib/icpld.sh.sample ${STAGEDIR}${PREFIX}/etc/rc.d post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in README - ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 05:39:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B57D8AD7; Sat, 25 Jan 2014 05:39:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A1D71111C; Sat, 25 Jan 2014 05:39:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P5d9Kk035083; Sat, 25 Jan 2014 05:39:09 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P5d99q035082; Sat, 25 Jan 2014 05:39:09 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401250539.s0P5d99q035082@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 05:39:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340987 - head/textproc/py-texttable X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 05:39:09 -0000 Author: miwi Date: Sat Jan 25 05:39:09 2014 New Revision: 340987 URL: http://svnweb.freebsd.org/changeset/ports/340987 QAT: https://qat.redports.org/buildarchive/r340987/ Log: - Stage support Modified: head/textproc/py-texttable/Makefile Modified: head/textproc/py-texttable/Makefile ============================================================================== --- head/textproc/py-texttable/Makefile Sat Jan 25 05:38:51 2014 (r340986) +++ head/textproc/py-texttable/Makefile Sat Jan 25 05:39:09 2014 (r340987) @@ -17,5 +17,4 @@ PLIST_FILES= %%PYTHON_SITELIBDIR%%/textt %%PYTHON_SITELIBDIR%%/texttable.pyc \ %%PYTHON_SITELIBDIR%%/texttable.pyo -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 05:47:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D458C84; Sat, 25 Jan 2014 05:47:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 08CEE11A1; Sat, 25 Jan 2014 05:47:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P5ll1v038691; Sat, 25 Jan 2014 05:47:47 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P5ll9c038690; Sat, 25 Jan 2014 05:47:47 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201401250547.s0P5ll9c038690@svn.freebsd.org> From: Alex Kozlov Date: Sat, 25 Jan 2014 05:47:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340988 - head/graphics/wmgrabimage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 05:47:48 -0000 Author: ak Date: Sat Jan 25 05:47:47 2014 New Revision: 340988 URL: http://svnweb.freebsd.org/changeset/ports/340988 QAT: https://qat.redports.org/buildarchive/r340988/ Log: - Deprecate and set expiration date to 2014-02-25: No more public distfiles PR: ports/186073 Submitted by: Sascha Holzleiter (maintainer) Modified: head/graphics/wmgrabimage/Makefile Modified: head/graphics/wmgrabimage/Makefile ============================================================================== --- head/graphics/wmgrabimage/Makefile Sat Jan 25 05:39:09 2014 (r340987) +++ head/graphics/wmgrabimage/Makefile Sat Jan 25 05:47:47 2014 (r340988) @@ -11,6 +11,9 @@ EXTRACT_SUFX= .tgz MAINTAINER= sascha@root-login.org COMMENT= Monitor your favorite web image +DEPRECATED= No more public distfiles +EXPIRATION_DATE= 2014-02-25 + RUN_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick WRKSRC= ${WRKDIR}/${DISTNAME}/wmGrabImage From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 06:04:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D46BE21; Sat, 25 Jan 2014 06:04:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 38C2B12A5; Sat, 25 Jan 2014 06:04:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P64o0S045956; Sat, 25 Jan 2014 06:04:50 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P64nq7045953; Sat, 25 Jan 2014 06:04:49 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401250604.s0P64nq7045953@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 06:04:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340989 - head/databases/p5-Rose-DBx-Object-MoreHelpers X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 06:04:50 -0000 Author: miwi Date: Sat Jan 25 06:04:49 2014 New Revision: 340989 URL: http://svnweb.freebsd.org/changeset/ports/340989 QAT: https://qat.redports.org/buildarchive/r340989/ Log: - Stage support Modified: head/databases/p5-Rose-DBx-Object-MoreHelpers/Makefile head/databases/p5-Rose-DBx-Object-MoreHelpers/pkg-plist Modified: head/databases/p5-Rose-DBx-Object-MoreHelpers/Makefile ============================================================================== --- head/databases/p5-Rose-DBx-Object-MoreHelpers/Makefile Sat Jan 25 05:47:47 2014 (r340988) +++ head/databases/p5-Rose-DBx-Object-MoreHelpers/Makefile Sat Jan 25 06:04:49 2014 (r340989) @@ -3,6 +3,7 @@ PORTNAME= Rose-DBx-Object-MoreHelpers PORTVERSION= 0.09 +PORTREVISION= 1 CATEGORIES= databases perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= Rose/KARMAN @@ -17,7 +18,4 @@ RUN_DEPENDS= p5-Rose-DB-Object>=0.7730,1 USES= perl5 USE_PERL5= configure -MAN3= Rose::DBx::Object::MoreHelpers.3 - -NO_STAGE= yes .include Modified: head/databases/p5-Rose-DBx-Object-MoreHelpers/pkg-plist ============================================================================== --- head/databases/p5-Rose-DBx-Object-MoreHelpers/pkg-plist Sat Jan 25 05:47:47 2014 (r340988) +++ head/databases/p5-Rose-DBx-Object-MoreHelpers/pkg-plist Sat Jan 25 06:04:49 2014 (r340989) @@ -1,3 +1,4 @@ +%%PERL5_MAN3%%/Rose::DBx::Object::MoreHelpers.3.gz %%SITE_PERL%%/Rose/DBx/Object/MoreHelpers.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Rose/DBx/Object/MoreHelpers/.packlist @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Rose/DBx/Object/MoreHelpers From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 06:05:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9084A6B; Sat, 25 Jan 2014 06:05:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7CC6212B5; Sat, 25 Jan 2014 06:05:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P65aT5046239; Sat, 25 Jan 2014 06:05:36 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P65aam046238; Sat, 25 Jan 2014 06:05:36 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401250605.s0P65aam046238@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 06:05:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340991 - head/databases/py-psycopg2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 06:05:36 -0000 Author: miwi Date: Sat Jan 25 06:05:35 2014 New Revision: 340991 URL: http://svnweb.freebsd.org/changeset/ports/340991 QAT: https://qat.redports.org/buildarchive/r340991/ Log: - Stage support Modified: head/databases/py-psycopg2/Makefile Modified: head/databases/py-psycopg2/Makefile ============================================================================== --- head/databases/py-psycopg2/Makefile Sat Jan 25 06:05:16 2014 (r340990) +++ head/databases/py-psycopg2/Makefile Sat Jan 25 06:05:35 2014 (r340991) @@ -26,18 +26,17 @@ EXAMPLES= binary.py copy_from.py copy_to DOCS= AUTHORS INSTALL README NEWS PKG-INFO -NO_STAGE= yes post-install: .if !defined(NOPORTEXAMPLES) - @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for f in ${EXAMPLES} - @${INSTALL_DATA} ${WRKSRC}/examples/${f} ${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR} .endfor .endif .if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor .endif From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 06:05:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28444F1E; Sat, 25 Jan 2014 06:05:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 14B1B12B0; Sat, 25 Jan 2014 06:05:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P65Gqo046127; Sat, 25 Jan 2014 06:05:16 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P65GOE046126; Sat, 25 Jan 2014 06:05:16 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401250605.s0P65GOE046126@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 06:05:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340990 - head/net/ipsumdump X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 06:05:17 -0000 Author: miwi Date: Sat Jan 25 06:05:16 2014 New Revision: 340990 URL: http://svnweb.freebsd.org/changeset/ports/340990 QAT: https://qat.redports.org/buildarchive/r340990/ Log: - Stage support Modified: head/net/ipsumdump/Makefile Modified: head/net/ipsumdump/Makefile ============================================================================== --- head/net/ipsumdump/Makefile Sat Jan 25 06:04:49 2014 (r340989) +++ head/net/ipsumdump/Makefile Sat Jan 25 06:05:16 2014 (r340990) @@ -3,7 +3,7 @@ PORTNAME= ipsumdump PORTVERSION= 1.82 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://www.cs.ucla.edu/~kohler/ipsumdump/ @@ -14,10 +14,10 @@ USES= gmake perl5 GNU_CONFIGURE= yes USE_PERL5= build -MAN1= ${PORTNAME}.1 ipaggcreate.1 ipaggmanip.1 - PORTDOCS= README -PLIST_FILES= bin/ipaggcreate bin/ipsumdump bin/ipaggmanip +PLIST_FILES= bin/ipaggcreate bin/ipsumdump bin/ipaggmanip \ + man/man1/${PORTNAME}.1 man/man1/ipaggmanip.1 \ + man/man1/ipaggcreate.1 OPTIONS_DEFINE= IPV6 DOCS OPTIONS_SUB= yes @@ -37,8 +37,8 @@ CATEGORIES+= ipv6 post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .endif .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 06:46:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 765775B2; Sat, 25 Jan 2014 06:46:31 +0000 (UTC) Date: Sat, 25 Jan 2014 06:46:31 +0000 From: Alexey Dokuchaev To: Baptiste Daroussin Subject: Re: svn commit: r340970 - head/devel/premake Message-ID: <20140125064631.GA96178@FreeBSD.org> References: <201401250043.s0P0h0RO021017@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401250043.s0P0h0RO021017@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 25 Jan 2014 06:46:31 -0000 On Sat, Jan 25, 2014 at 12:43:00AM +0000, Baptiste Daroussin wrote: > New Revision: 340970 > URL: http://svnweb.freebsd.org/changeset/ports/340970 > QAT: https://qat.redports.org/buildarchive/r340970/ > > @@ -7,28 +7,24 @@ PORTREVISION= 1 > CATEGORIES= devel > MASTER_SITES= SF/${PORTNAME}/Premake/${PORTVERSION} > DISTNAME= ${PORTNAME}-src-${PORTVERSION} > +EXTRACT_SUFX= .zip > > MAINTAINER= lippe@FreeBSD.org > COMMENT= Writes build scripts > > +OPTIONS_DEFINE= DOCS This change was not reflected in commit log. > -USE_DOS2UNIX= yes > -USE_ZIP= yes > -USE_GMAKE= yes > +USES= gmake dos2unix Ditto. Guys, I know some of you are working on stagifying the tree very actively these days, making tens to hundreds commits a day. This is all much appreciated, cool, and awesome, but it does not mean commit messages can become sloppy. Moreover, it gives a bad example for other people. ./danfe From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 07:19:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67C13DB2; Sat, 25 Jan 2014 07:19:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5195F16F4; Sat, 25 Jan 2014 07:19:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P7JZRR073953; Sat, 25 Jan 2014 07:19:35 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P7JYgL073949; Sat, 25 Jan 2014 07:19:34 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401250719.s0P7JYgL073949@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sat, 25 Jan 2014 07:19:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340992 - in head/devel: py-Products.BTreeFolder2 py-Products.ExtendedPathIndex py-Products.ExternalEditor py-Products.ExternalMethod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 07:19:35 -0000 Author: rm Date: Sat Jan 25 07:19:34 2014 New Revision: 340992 URL: http://svnweb.freebsd.org/changeset/ports/340992 QAT: https://qat.redports.org/buildarchive/r340992/ Log: - convert to auto-generated packing list - move DIST_SUBDIR upper, where appropriate - bump PORTREVISION Deleted: head/devel/py-Products.BTreeFolder2/pkg-plist head/devel/py-Products.ExtendedPathIndex/pkg-plist head/devel/py-Products.ExternalEditor/pkg-plist head/devel/py-Products.ExternalMethod/pkg-plist Modified: head/devel/py-Products.BTreeFolder2/Makefile head/devel/py-Products.ExtendedPathIndex/Makefile head/devel/py-Products.ExternalEditor/Makefile head/devel/py-Products.ExternalMethod/Makefile Modified: head/devel/py-Products.BTreeFolder2/Makefile ============================================================================== --- head/devel/py-Products.BTreeFolder2/Makefile Sat Jan 25 06:05:35 2014 (r340991) +++ head/devel/py-Products.BTreeFolder2/Makefile Sat Jan 25 07:19:34 2014 (r340992) @@ -2,6 +2,7 @@ PORTNAME= Products.BTreeFolder2 PORTVERSION= 2.13.4 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -20,10 +21,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Acce ${PYTHON_PKGNAMEPREFIX}zope.event>=0:${PORTSDIR}/devel/py-zope.event \ ${PYTHON_PKGNAMEPREFIX}zope.lifecycleevent>=0:${PORTSDIR}/devel/py-zope.lifecycleevent -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes .include Modified: head/devel/py-Products.ExtendedPathIndex/Makefile ============================================================================== --- head/devel/py-Products.ExtendedPathIndex/Makefile Sat Jan 25 06:05:35 2014 (r340991) +++ head/devel/py-Products.ExtendedPathIndex/Makefile Sat Jan 25 07:19:34 2014 (r340992) @@ -2,9 +2,11 @@ PORTNAME= Products.ExtendedPathIndex PORTVERSION= 3.1 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Zope catalog index for paths @@ -15,12 +17,10 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Acce ${PYTHON_PKGNAMEPREFIX}transaction>0:${PORTSDIR}/devel/py-transaction \ zodb${PYTHON_PKGNAMESUFFIX}>0:${PORTSDIR}/databases/zodb3 -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -USE_ZIP= yes -USES= zope - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes +USES= zope .include Modified: head/devel/py-Products.ExternalEditor/Makefile ============================================================================== --- head/devel/py-Products.ExternalEditor/Makefile Sat Jan 25 06:05:35 2014 (r340991) +++ head/devel/py-Products.ExternalEditor/Makefile Sat Jan 25 07:19:34 2014 (r340992) @@ -2,20 +2,20 @@ PORTNAME= Products.ExternalEditor PORTVERSION= 1.1.0 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Zope external editor LICENSE= ZPL21 -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes .include Modified: head/devel/py-Products.ExternalMethod/Makefile ============================================================================== --- head/devel/py-Products.ExternalMethod/Makefile Sat Jan 25 06:05:35 2014 (r340991) +++ head/devel/py-Products.ExternalMethod/Makefile Sat Jan 25 07:19:34 2014 (r340992) @@ -2,6 +2,7 @@ PORTNAME= Products.ExternalMethod PORTVERSION= 2.13.0 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,10 +19,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Acce ${PYTHON_PKGNAMEPREFIX}Persistence>=0:${PORTSDIR}/devel/py-Persistence \ zodb${PYTHON_PKGNAMESUFFIX}>=0:${PORTSDIR}/databases/zodb3 -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 07:22:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 07B1DEB6; Sat, 25 Jan 2014 07:22:32 +0000 (UTC) Date: Sat, 25 Jan 2014 07:22:32 +0000 From: Alexey Dokuchaev To: Rusmir Dusko Subject: Re: svn commit: r340982 - in head/shells/fish: . files Message-ID: <20140125072231.GA13904@FreeBSD.org> References: <201401250240.s0P2eIZh065119@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401250240.s0P2eIZh065119@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 25 Jan 2014 07:22:32 -0000 On Sat, Jan 25, 2014 at 02:40:18AM +0000, Rusmir Dusko wrote: > New Revision: 340982 > URL: http://svnweb.freebsd.org/changeset/ports/340982 > QAT: https://qat.redports.org/buildarchive/r340982/ > > Log: > - Add licenses (GPLv2) > - Fix DOCS Option, add extra-patch-Makefile.in > > Reviewed by: horia $ finger horia@freebsd.org [freebsd.org] Trying 8.8.178.110... finger: horia: no such user ./danfe From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 07:46:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90DB24BE; Sat, 25 Jan 2014 07:46:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7CBE6189B; Sat, 25 Jan 2014 07:46:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P7k3bD084665; Sat, 25 Jan 2014 07:46:03 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P7k381084664; Sat, 25 Jan 2014 07:46:03 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201401250746.s0P7k381084664@svn.freebsd.org> From: Alexey Dokuchaev Date: Sat, 25 Jan 2014 07:46:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340993 - head/devel/pcl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 07:46:03 -0000 Author: danfe Date: Sat Jan 25 07:46:02 2014 New Revision: 340993 URL: http://svnweb.freebsd.org/changeset/ports/340993 QAT: https://qat.redports.org/buildarchive/r340993/ Log: Fix the build on sparc64. Modified: head/devel/pcl/Makefile Modified: head/devel/pcl/Makefile ============================================================================== --- head/devel/pcl/Makefile Sat Jan 25 07:19:34 2014 (r340992) +++ head/devel/pcl/Makefile Sat Jan 25 07:46:02 2014 (r340993) @@ -15,6 +15,8 @@ USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/lib${PORTNAME}-${PORTVERSION} -BROKEN_sparc64= Does not compile on sparc64 +post-patch: # required at least on sparc64 + @${REINPLACE_CMD} -e '/, ; G ; }' ${WRKSRC}/pcl/pcl.c .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 08:25:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44449A1B; Sat, 25 Jan 2014 08:25:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 30AD71AD6; Sat, 25 Jan 2014 08:25:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P8PgGG000107; Sat, 25 Jan 2014 08:25:42 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P8Pfbt000106; Sat, 25 Jan 2014 08:25:41 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401250825.s0P8Pfbt000106@svn.freebsd.org> From: Marcus von Appen Date: Sat, 25 Jan 2014 08:25:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340994 - head/devel/py-singledispatch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 08:25:42 -0000 Author: mva Date: Sat Jan 25 08:25:41 2014 New Revision: 340994 URL: http://svnweb.freebsd.org/changeset/ports/340994 QAT: https://qat.redports.org/buildarchive/r340994/ Log: - Bump PORTREVISION, since the package changed Discused with: rm, mat Modified: head/devel/py-singledispatch/Makefile Modified: head/devel/py-singledispatch/Makefile ============================================================================== --- head/devel/py-singledispatch/Makefile Sat Jan 25 07:46:02 2014 (r340993) +++ head/devel/py-singledispatch/Makefile Sat Jan 25 08:25:41 2014 (r340994) @@ -3,6 +3,7 @@ PORTNAME= singledispatch PORTVERSION= 3.4.0.2 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 08:40:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 05497DE1; Sat, 25 Jan 2014 08:40:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E65281C97; Sat, 25 Jan 2014 08:40:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P8eUDE005007; Sat, 25 Jan 2014 08:40:30 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P8eUJt005006; Sat, 25 Jan 2014 08:40:30 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201401250840.s0P8eUJt005006@svn.freebsd.org> From: Alex Kozlov Date: Sat, 25 Jan 2014 08:40:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340995 - head/devel/commit-patch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 08:40:31 -0000 Author: ak Date: Sat Jan 25 08:40:30 2014 New Revision: 340995 URL: http://svnweb.freebsd.org/changeset/ports/340995 QAT: https://qat.redports.org/buildarchive/r340995/ Log: - Support STAGEDIR PR: ports/186084 Submitted by: Lapo Luchini (maintainer) Modified: head/devel/commit-patch/Makefile Modified: head/devel/commit-patch/Makefile ============================================================================== --- head/devel/commit-patch/Makefile Sat Jan 25 08:25:41 2014 (r340994) +++ head/devel/commit-patch/Makefile Sat Jan 25 08:40:30 2014 (r340995) @@ -17,6 +17,7 @@ RUN_DEPENDS= interdiff:${PORTSDIR}/misc/ USE_GITHUB= yes USES= gmake perl5 USE_PERL5= build # pod2man +MAKE_ARGS= BASEDIR="${STAGEDIR}" GH_ACCOUNT= caldwell GH_PROJECT= commit-patch @@ -24,13 +25,14 @@ GH_TAGNAME= 2.5 GH_COMMIT= fb3a8c5 PLIST_FILES= bin/commit-partial bin/commit-patch \ - share/emacs/site-lisp/commit-patch-buffer.el -MAN1= commit-partial.1 commit-patch.1 + share/emacs/site-lisp/commit-patch-buffer.el \ + man/man1/commit-partial.1.gz man/man1/commit-patch.1.gz PORTDOCS= * -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e 's/share[/]man/man/' \ - -e 's/PREFIX=/PREFIX?=/' ${WRKSRC}/Makefile + -e 's/PREFIX=/PREFIX?=/' \ + -e 's/$$(PREFIX)/$$(BASEDIR)$$(PREFIX)/' \ + ${WRKSRC}/Makefile .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 08:46:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CCDFF33; Sat, 25 Jan 2014 08:46:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7829D1D10; Sat, 25 Jan 2014 08:46:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P8kCrA007672; Sat, 25 Jan 2014 08:46:12 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P8kBI1007669; Sat, 25 Jan 2014 08:46:11 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401250846.s0P8kBI1007669@svn.freebsd.org> From: Marcus von Appen Date: Sat, 25 Jan 2014 08:46:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340996 - in head/lang: python python2 python3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 08:46:12 -0000 Author: mva Date: Sat Jan 25 08:46:11 2014 New Revision: 340996 URL: http://svnweb.freebsd.org/changeset/ports/340996 QAT: https://qat.redports.org/buildarchive/r340996/ Log: - Enable stagedir support Modified: head/lang/python/Makefile head/lang/python2/Makefile head/lang/python3/Makefile Modified: head/lang/python/Makefile ============================================================================== --- head/lang/python/Makefile Sat Jan 25 08:40:30 2014 (r340995) +++ head/lang/python/Makefile Sat Jan 25 08:46:11 2014 (r340996) @@ -25,7 +25,6 @@ PLIST_FILES= bin/2to3 \ bin/python-shared \ bin/python-shared-config -NO_STAGE= yes .include .if ${PYTHON_MAJOR_VER} == 2 @@ -37,21 +36,28 @@ RUN_DEPENDS+= python3:${PORTSDIR}/lang/p do-install: .for file in python python-shared - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} ${PREFIX}/bin/${file} + ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} \ + ${STAGEDIR}${PREFIX}/bin/${file} .endfor - ${LN} -sf ${PREFIX}/bin/2to3-${PYTHON_MAJOR_VER} ${PREFIX}/bin/2to3 + ${LN} -sf ${PREFIX}/bin/2to3-${PYTHON_MAJOR_VER} \ + ${STAGEDIR}${PREFIX}/bin/2to3 .if ${PYTHON_MAJOR_VER} == 2 - ${LN} -sf ${PREFIX}/bin/smtpd${PYTHON_MAJOR_VER}.py ${PREFIX}/bin/smtpd.py + ${LN} -sf ${PREFIX}/bin/smtpd${PYTHON_MAJOR_VER}.py \ + ${STAGEDIR}${PREFIX}/bin/smtpd.py .for file in idle pydoc - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} ${PREFIX}/bin/${file} + ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} \ + ${STAGEDIR}${PREFIX}/bin/${file} .endfor .elif ${PYTHON_MAJOR_VER} == 3 .for file in idle pydoc - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER}-${PYTHON_VER} ${PREFIX}/bin/${file} + ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER}-${PYTHON_VER} \ + ${STAGEDIR}${PREFIX}/bin/${file} .endfor .endif - ${LN} -sf ${PREFIX}/bin/python${PYTHON_MAJOR_VER}-config ${PREFIX}/bin/python-config - ${LN} -sf ${PREFIX}/bin/python-shared${PYTHON_MAJOR_VER}-config ${PREFIX}/bin/python-shared-config + ${LN} -sf ${PREFIX}/bin/python${PYTHON_MAJOR_VER}-config \ + ${STAGEDIR}${PREFIX}/bin/python-config + ${LN} -sf ${PREFIX}/bin/python-shared${PYTHON_MAJOR_VER}-config \ + ${STAGEDIR}${PREFIX}/bin/python-shared-config # Major upgrade support PORTUPGRADE_CMD= ${LOCALBASE}/sbin/portupgrade Modified: head/lang/python2/Makefile ============================================================================== --- head/lang/python2/Makefile Sat Jan 25 08:40:30 2014 (r340995) +++ head/lang/python2/Makefile Sat Jan 25 08:46:11 2014 (r340996) @@ -26,20 +26,25 @@ PLIST_FILES= bin/2to3-${PYTHON_MAJOR_VER bin/smtpd${PYTHON_MAJOR_VER}.py \ libdata/pkgconfig/python${PYTHON_MAJOR_VER}.pc -NO_STAGE= yes .include RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} do-install: .for file in idle pydoc python python-shared - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_VER} ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} + ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_VER} \ + ${STAGEDIR}${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} .endfor - ${LN} -sf ${PREFIX}/bin/2to3-${PYTHON_VER} ${PREFIX}/bin/2to3-${PYTHON_MAJOR_VER} - ${LN} -sf ${PREFIX}/bin/smtpd${PYTHON_VER}.py ${PREFIX}/bin/smtpd${PYTHON_MAJOR_VER}.py - ${LN} -sf ${PREFIX}/bin/python${PYTHON_VER}-config ${PREFIX}/bin/python${PYTHON_MAJOR_VER}-config - ${LN} -sf ${PREFIX}/bin/python-shared${PYTHON_VER}-config ${PREFIX}/bin/python-shared${PYTHON_MAJOR_VER}-config - ${LN} -sf ${PREFIX}/libdata/pkgconfig/python-${PYTHON_VER}.pc ${PREFIX}/libdata/pkgconfig/python${PYTHON_MAJOR_VER}.pc + ${LN} -sf ${PREFIX}/bin/2to3-${PYTHON_VER} \ + ${STAGEDIR}${PREFIX}/bin/2to3-${PYTHON_MAJOR_VER} + ${LN} -sf ${PREFIX}/bin/smtpd${PYTHON_VER}.py \ + ${STAGEDIR}${PREFIX}/bin/smtpd${PYTHON_MAJOR_VER}.py + ${LN} -sf ${PREFIX}/bin/python${PYTHON_VER}-config \ + ${STAGEDIR}${PREFIX}/bin/python${PYTHON_MAJOR_VER}-config + ${LN} -sf ${PREFIX}/bin/python-shared${PYTHON_VER}-config \ + ${STAGEDIR}${PREFIX}/bin/python-shared${PYTHON_MAJOR_VER}-config + ${LN} -sf ${PREFIX}/libdata/pkgconfig/python-${PYTHON_VER}.pc \ + ${STAGEDIR}${PREFIX}/libdata/pkgconfig/python${PYTHON_MAJOR_VER}.pc # Major upgrade support PORTUPGRADE_CMD= ${LOCALBASE}/sbin/portupgrade Modified: head/lang/python3/Makefile ============================================================================== --- head/lang/python3/Makefile Sat Jan 25 08:40:30 2014 (r340995) +++ head/lang/python3/Makefile Sat Jan 25 08:46:11 2014 (r340996) @@ -25,22 +25,27 @@ PLIST_FILES= bin/2to3-${PYTHON_MAJOR_VER bin/python-shared${PYTHON_MAJOR_VER}-config \ libdata/pkgconfig/python${PYTHON_MAJOR_VER}.pc -NO_STAGE= yes .include RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_PORTSDIR} do-install: .for file in python python-shared - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_VER} ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} + ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_VER} \ + ${STAGEDIR}${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} .endfor - ${LN} -sf ${PREFIX}/bin/2to3-${PYTHON_VER} ${PREFIX}/bin/2to3-${PYTHON_MAJOR_VER} + ${LN} -sf ${PREFIX}/bin/2to3-${PYTHON_VER} \ + ${STAGEDIR}${PREFIX}/bin/2to3-${PYTHON_MAJOR_VER} .for file in idle pydoc - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER}-${PYTHON_VER} ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} + ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER}-${PYTHON_VER} \ + ${STAGEDIR}${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} .endfor - ${LN} -sf ${PREFIX}/bin/python${PYTHON_VER}-config ${PREFIX}/bin/python${PYTHON_MAJOR_VER}-config - ${LN} -sf ${PREFIX}/bin/python-shared${PYTHON_VER}-config ${PREFIX}/bin/python-shared${PYTHON_MAJOR_VER}-config - ${LN} -sf ${PREFIX}/libdata/pkgconfig/python-${PYTHON_VER}.pc ${PREFIX}/libdata/pkgconfig/python${PYTHON_MAJOR_VER}.pc + ${LN} -sf ${PREFIX}/bin/python${PYTHON_VER}-config \ + ${STAGEDIR}${PREFIX}/bin/python${PYTHON_MAJOR_VER}-config + ${LN} -sf ${PREFIX}/bin/python-shared${PYTHON_VER}-config \ + ${STAGEDIR}${PREFIX}/bin/python-shared${PYTHON_MAJOR_VER}-config + ${LN} -sf ${PREFIX}/libdata/pkgconfig/python-${PYTHON_VER}.pc \ + ${STAGEDIR}${PREFIX}/libdata/pkgconfig/python${PYTHON_MAJOR_VER}.pc # Major upgrade support PORTUPGRADE_CMD= ${LOCALBASE}/sbin/portupgrade From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 08:56:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 5A5E91B1; Sat, 25 Jan 2014 08:56:10 +0000 (UTC) Date: Sat, 25 Jan 2014 08:56:10 +0000 From: Alexey Dokuchaev To: Marcus von Appen Subject: Re: svn commit: r340996 - in head/lang: python python2 python3 Message-ID: <20140125085610.GA38716@FreeBSD.org> References: <201401250846.s0P8kBI1007669@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401250846.s0P8kBI1007669@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 25 Jan 2014 08:56:10 -0000 On Sat, Jan 25, 2014 at 08:46:11AM +0000, Marcus von Appen wrote: > New Revision: 340996 > URL: http://svnweb.freebsd.org/changeset/ports/340996 > QAT: https://qat.redports.org/buildarchive/r340996/ > > - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} ${PREFIX}/bin/${file} > + ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} \ > + ${STAGEDIR}${PREFIX}/bin/${file} > [ ... lots of similar changes skipped ... ] Per our own wiki.freebsd.org/ports/StageDir: "When creating a symlink, prepend ${STAGEDIR} to the target path only (and generally try to avoid using absolute paths in source). [...] Note that source of ${PREFIX}/lib/libfoo.so.42, while seemingly okay, could be in fact incorrect, since absolute path can potentially point to a wrong location, e.g. when remote filesystem (with installed package) is mounted via NFS under non-root mount point. Relative paths are less fragile (and often much shorter)." ./danfe From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:14:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F27A4FF; Sat, 25 Jan 2014 09:14:12 +0000 (UTC) Received: from mail-ie0-x236.google.com (mail-ie0-x236.google.com [IPv6:2607:f8b0:4001:c03::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 449381EB3; Sat, 25 Jan 2014 09:14:12 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id lx4so3929613iec.41 for ; Sat, 25 Jan 2014 01:14:11 -0800 (PST) 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=yVaBaHu11MM1QPr2JKcCE5GE+qXlDVEIzL/p9NB3GRE=; b=y249JhsU7GIe6HfJW8UAV3Ci4zzOBnA8nJN8PXJx/FHgTcEPEksb5vOswcSWa93TR2 jBEU4+zaAIgrI85BD6zgOyvYRu3/ZEeuP/TM2lZdU2e2Nf3gW8N/5+XStskXLGr+zbK1 rcWgcnXuLcLHtpvRUEfEM8GXTZ4cvG3Dcw0bpZhjLnwjeB4cy7HSYMHwYFF3R5ANVfVR SD/c/mhTZeLPZ42qmMW3W8ksGLYyBzHUokbXcBWe93lhPXNaC58fIy3E8lb26B38dg66 l9Nh1hBG6NXVBt1lqw5udik8fk+uPcPBu3GLFyM5f0RNfL2mztmRRdQycMUYS1inCUzm cd9w== MIME-Version: 1.0 X-Received: by 10.50.161.132 with SMTP id xs4mr8516735igb.38.1390641251603; Sat, 25 Jan 2014 01:14:11 -0800 (PST) Received: by 10.64.246.71 with HTTP; Sat, 25 Jan 2014 01:14:11 -0800 (PST) In-Reply-To: <20140125064631.GA96178@FreeBSD.org> References: <201401250043.s0P0h0RO021017@svn.freebsd.org> <20140125064631.GA96178@FreeBSD.org> Date: Sat, 25 Jan 2014 17:14:11 +0800 Message-ID: Subject: Re: svn commit: r340970 - head/devel/premake From: Martin Wilke To: Alexey Dokuchaev Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 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.17 Precedence: list List-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, 25 Jan 2014 09:14:12 -0000 And your commenting about style worries maintainer and committers so better reread last line in motd at freefall. thanks ;) On Sat, Jan 25, 2014 at 2:46 PM, Alexey Dokuchaev wrote: > On Sat, Jan 25, 2014 at 12:43:00AM +0000, Baptiste Daroussin wrote: > > New Revision: 340970 > > URL: http://svnweb.freebsd.org/changeset/ports/340970 > > QAT: https://qat.redports.org/buildarchive/r340970/ > > > > @@ -7,28 +7,24 @@ PORTREVISION= 1 > > CATEGORIES= devel > > MASTER_SITES= SF/${PORTNAME}/Premake/${PORTVERSION} > > DISTNAME= ${PORTNAME}-src-${PORTVERSION} > > +EXTRACT_SUFX= .zip > > > > MAINTAINER= lippe@FreeBSD.org > > COMMENT= Writes build scripts > > > > +OPTIONS_DEFINE= DOCS > > This change was not reflected in commit log. > > > -USE_DOS2UNIX= yes > > -USE_ZIP= yes > > -USE_GMAKE= yes > > +USES= gmake dos2unix > > Ditto. Guys, I know some of you are working on stagifying the tree very > actively these days, making tens to hundreds commits a day. This is all > much appreciated, cool, and awesome, but it does not mean commit messages > can become sloppy. Moreover, it gives a bad example for other people. > > ./danfe > From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:15:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64635691; Sat, 25 Jan 2014 09:15:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 50E9D1EC5; Sat, 25 Jan 2014 09:15:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P9FDsZ019400; Sat, 25 Jan 2014 09:15:13 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P9FCMU019395; Sat, 25 Jan 2014 09:15:12 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401250915.s0P9FCMU019395@svn.freebsd.org> From: Marcus von Appen Date: Sat, 25 Jan 2014 09:15:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340997 - in head/lang: python python2 python3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 09:15:13 -0000 Author: mva Date: Sat Jan 25 09:15:12 2014 New Revision: 340997 URL: http://svnweb.freebsd.org/changeset/ports/340997 QAT: https://qat.redports.org/buildarchive/r340997/ Log: - Do not use absolute source paths for the symlinks to the stagedir Noticed by: danfe Modified: head/lang/python/Makefile head/lang/python2/Makefile head/lang/python3/Makefile Modified: head/lang/python/Makefile ============================================================================== --- head/lang/python/Makefile Sat Jan 25 08:46:11 2014 (r340996) +++ head/lang/python/Makefile Sat Jan 25 09:15:12 2014 (r340997) @@ -36,27 +36,23 @@ RUN_DEPENDS+= python3:${PORTSDIR}/lang/p do-install: .for file in python python-shared - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} \ - ${STAGEDIR}${PREFIX}/bin/${file} + ${LN} -sf ${file}${PYTHON_MAJOR_VER} ${STAGEDIR}${PREFIX}/bin/${file} .endfor - ${LN} -sf ${PREFIX}/bin/2to3-${PYTHON_MAJOR_VER} \ - ${STAGEDIR}${PREFIX}/bin/2to3 + ${LN} -sf 2to3-${PYTHON_MAJOR_VER} ${STAGEDIR}${PREFIX}/bin/2to3 .if ${PYTHON_MAJOR_VER} == 2 - ${LN} -sf ${PREFIX}/bin/smtpd${PYTHON_MAJOR_VER}.py \ - ${STAGEDIR}${PREFIX}/bin/smtpd.py + ${LN} -sf smtpd${PYTHON_MAJOR_VER}.py ${STAGEDIR}${PREFIX}/bin/smtpd.py .for file in idle pydoc - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} \ - ${STAGEDIR}${PREFIX}/bin/${file} + ${LN} -sf ${file}${PYTHON_MAJOR_VER} ${STAGEDIR}${PREFIX}/bin/${file} .endfor .elif ${PYTHON_MAJOR_VER} == 3 .for file in idle pydoc - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER}-${PYTHON_VER} \ + ${LN} -sf ${file}${PYTHON_MAJOR_VER}-${PYTHON_VER} \ ${STAGEDIR}${PREFIX}/bin/${file} .endfor .endif - ${LN} -sf ${PREFIX}/bin/python${PYTHON_MAJOR_VER}-config \ + ${LN} -sf python${PYTHON_MAJOR_VER}-config \ ${STAGEDIR}${PREFIX}/bin/python-config - ${LN} -sf ${PREFIX}/bin/python-shared${PYTHON_MAJOR_VER}-config \ + ${LN} -sf python-shared${PYTHON_MAJOR_VER}-config \ ${STAGEDIR}${PREFIX}/bin/python-shared-config # Major upgrade support Modified: head/lang/python2/Makefile ============================================================================== --- head/lang/python2/Makefile Sat Jan 25 08:46:11 2014 (r340996) +++ head/lang/python2/Makefile Sat Jan 25 09:15:12 2014 (r340997) @@ -32,18 +32,18 @@ RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_POR do-install: .for file in idle pydoc python python-shared - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_VER} \ + ${LN} -sf ${file}${PYTHON_VER} \ ${STAGEDIR}${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} .endfor - ${LN} -sf ${PREFIX}/bin/2to3-${PYTHON_VER} \ + ${LN} -sf 2to3-${PYTHON_VER} \ ${STAGEDIR}${PREFIX}/bin/2to3-${PYTHON_MAJOR_VER} - ${LN} -sf ${PREFIX}/bin/smtpd${PYTHON_VER}.py \ + ${LN} -sf smtpd${PYTHON_VER}.py \ ${STAGEDIR}${PREFIX}/bin/smtpd${PYTHON_MAJOR_VER}.py - ${LN} -sf ${PREFIX}/bin/python${PYTHON_VER}-config \ + ${LN} -sf python${PYTHON_VER}-config \ ${STAGEDIR}${PREFIX}/bin/python${PYTHON_MAJOR_VER}-config - ${LN} -sf ${PREFIX}/bin/python-shared${PYTHON_VER}-config \ + ${LN} -sf python-shared${PYTHON_VER}-config \ ${STAGEDIR}${PREFIX}/bin/python-shared${PYTHON_MAJOR_VER}-config - ${LN} -sf ${PREFIX}/libdata/pkgconfig/python-${PYTHON_VER}.pc \ + ${LN} -sf python-${PYTHON_VER}.pc \ ${STAGEDIR}${PREFIX}/libdata/pkgconfig/python${PYTHON_MAJOR_VER}.pc # Major upgrade support Modified: head/lang/python3/Makefile ============================================================================== --- head/lang/python3/Makefile Sat Jan 25 08:46:11 2014 (r340996) +++ head/lang/python3/Makefile Sat Jan 25 09:15:12 2014 (r340997) @@ -31,20 +31,20 @@ RUN_DEPENDS+= ${PYTHON_CMD}:${PYTHON_POR do-install: .for file in python python-shared - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_VER} \ + ${LN} -sf ${file}${PYTHON_VER} \ ${STAGEDIR}${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} .endfor - ${LN} -sf ${PREFIX}/bin/2to3-${PYTHON_VER} \ + ${LN} -sf 2to3-${PYTHON_VER} \ ${STAGEDIR}${PREFIX}/bin/2to3-${PYTHON_MAJOR_VER} .for file in idle pydoc - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER}-${PYTHON_VER} \ + ${LN} -sf ${file}${PYTHON_MAJOR_VER}-${PYTHON_VER} \ ${STAGEDIR}${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} .endfor - ${LN} -sf ${PREFIX}/bin/python${PYTHON_VER}-config \ + ${LN} -sf python${PYTHON_VER}-config \ ${STAGEDIR}${PREFIX}/bin/python${PYTHON_MAJOR_VER}-config - ${LN} -sf ${PREFIX}/bin/python-shared${PYTHON_VER}-config \ + ${LN} -sf python-shared${PYTHON_VER}-config \ ${STAGEDIR}${PREFIX}/bin/python-shared${PYTHON_MAJOR_VER}-config - ${LN} -sf ${PREFIX}/libdata/pkgconfig/python-${PYTHON_VER}.pc \ + ${LN} -sf python-${PYTHON_VER}.pc \ ${STAGEDIR}${PREFIX}/libdata/pkgconfig/python${PYTHON_MAJOR_VER}.pc # Major upgrade support From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:15:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76A3879A; Sat, 25 Jan 2014 09:15:56 +0000 (UTC) Received: from smtprelay06.ispgateway.de (smtprelay06.ispgateway.de [80.67.31.102]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2FA5F1ED6; Sat, 25 Jan 2014 09:15:56 +0000 (UTC) Received: from [89.182.93.127] (helo=localhost) by smtprelay06.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1W6zL9-0006KJ-Kw; Sat, 25 Jan 2014 10:15:47 +0100 Date: Sat, 25 Jan 2014 10:15:47 +0100 From: Marcus von Appen To: Alexey Dokuchaev Subject: Re: svn commit: r340996 - in head/lang: python python2 python3 Message-ID: <20140125091547.GA1372@medusa.sysfault.org> Mail-Followup-To: Alexey Dokuchaev , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201401250846.s0P8kBI1007669@svn.freebsd.org> <20140125085610.GA38716@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline In-Reply-To: <20140125085610.GA38716@FreeBSD.org> User-Agent: Mutt/1.5.22 (2013-10-16) X-Df-Sender: MTEyNTc0Mg== 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.17 Precedence: list Reply-To: Marcus von Appen List-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, 25 Jan 2014 09:15:56 -0000 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On, Sat Jan 25, 2014, Alexey Dokuchaev wrote: > On Sat, Jan 25, 2014 at 08:46:11AM +0000, Marcus von Appen wrote: > > New Revision: 340996 > > URL: http://svnweb.freebsd.org/changeset/ports/340996 > > QAT: https://qat.redports.org/buildarchive/r340996/ > > > > - ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} ${PREFIX}/bin/${file} > > + ${LN} -sf ${PREFIX}/bin/${file}${PYTHON_MAJOR_VER} \ > > + ${STAGEDIR}${PREFIX}/bin/${file} > > [ ... lots of similar changes skipped ... ] > > Per our own wiki.freebsd.org/ports/StageDir: > > "When creating a symlink, prepend ${STAGEDIR} to the target path only (and > generally try to avoid using absolute paths in source). [...] > > Note that source of ${PREFIX}/lib/libfoo.so.42, while seemingly okay, > could be in fact incorrect, since absolute path can potentially point to > a wrong location, e.g. when remote filesystem (with installed package) > is mounted via NFS under non-root mount point. Relative paths are less > fragile (and often much shorter)." Fixed, thanks! Marcus --EeQfGwPcQSOJBaQU Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iEYEARECAAYFAlLjgMMACgkQi68/ErJnpkd5ogCfUqcc+PLZhY/8KL4nW8MW+9lR lsUAnRuTylJEbfTxqGAJta6kvSei/K6f =LxH7 -----END PGP SIGNATURE----- --EeQfGwPcQSOJBaQU-- From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:20:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0124B907; Sat, 25 Jan 2014 09:20:55 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 459F31F52; Sat, 25 Jan 2014 09:20:54 +0000 (UTC) Received: from [192.168.0.23] (unknown [130.255.19.191]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 2502343B94; Sat, 25 Jan 2014 03:20:35 -0600 (CST) Message-ID: <52E381D3.9020009@marino.st> Date: Sat, 25 Jan 2014 10:20:19 +0100 From: John Marino User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130509 Thunderbird/17.0.6 MIME-Version: 1.0 To: Martin Wilke Subject: Re: svn commit: r340970 - head/devel/premake References: <201401250043.s0P0h0RO021017@svn.freebsd.org> <20140125064631.GA96178@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, Alexey Dokuchaev , Baptiste Daroussin , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: marino@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: Sat, 25 Jan 2014 09:20:55 -0000 On 1/25/2014 10:14, Martin Wilke wrote: > And your commenting about style worries maintainer and committers so > better reread last line in motd at freefall. > > thanks ;) > > > On Sat, Jan 25, 2014 at 2:46 PM, Alexey Dokuchaev Ditto. Guys, I know some of you are working on stagifying the tree very > actively these days, making tens to hundreds commits a day. This is all > much appreciated, cool, and awesome, but it does not mean commit > messages > can become sloppy. Moreover, it gives a bad example for other people. I agree that Danfe is coming from a weak position since he's throwing stones while living in a glass house (meaning he's got plenty on his plate and I don't see many commits lately), however, that doesn't make him wrong. The majority of FreeBSD commit messages are atrocious, and that's including when they meet the standard of danfe. I just love seeing QAT message that you can't immediately tell which port failed because only a very few people (like myself) put the name of the port being changed in the first line of the message. The freebsd rationale for not doing it? "The mail list added the port name automatically so it's redundant". Except that doesn't apply to QAT or any external repository. So big fail all already. So he's right + he should get his house in order to avoid the "shut up; you're guilty too" responses. John From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:21:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 04FAB9F3; Sat, 25 Jan 2014 09:21:31 +0000 (UTC) Date: Sat, 25 Jan 2014 09:21:31 +0000 From: Alexey Dokuchaev To: Martin Wilke Subject: Re: svn commit: r340970 - head/devel/premake Message-ID: <20140125092130.GB39255@FreeBSD.org> References: <201401250043.s0P0h0RO021017@svn.freebsd.org> <20140125064631.GA96178@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 25 Jan 2014 09:21:31 -0000 On Sat, Jan 25, 2014 at 05:14:11PM +0800, Martin Wilke wrote: > And your commenting about style worries maintainer and committers so better > reread last line in motd at freefall. Maintainers and (especially) committers are expected to adhere to FreeBSD work standards; I would also take this chance to remind you that proper usage of version control system in an open source project with lifetime span over decades and hundreds of developers has nothing to do with style. ./danfe From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:23:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 57F27AF0; Sat, 25 Jan 2014 09:23:27 +0000 (UTC) Date: Sat, 25 Jan 2014 09:23:27 +0000 From: Alexey Dokuchaev To: Marcus von Appen Subject: Re: svn commit: r340997 - in head/lang: python python2 python3 Message-ID: <20140125092327.GC39255@FreeBSD.org> References: <201401250915.s0P9FCMU019395@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201401250915.s0P9FCMU019395@svn.freebsd.org> User-Agent: Mutt/1.5.22 (2013-10-16) 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.17 Precedence: list List-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, 25 Jan 2014 09:23:27 -0000 On Sat, Jan 25, 2014 at 09:15:12AM +0000, Marcus von Appen wrote: > New Revision: 340997 > URL: http://svnweb.freebsd.org/changeset/ports/340997 > QAT: https://qat.redports.org/buildarchive/r340997/ > > Log: > - Do not use absolute source paths for the symlinks to the stagedir Thanks a lot! ./danfe From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:24:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DEC70BE0; Sat, 25 Jan 2014 09:24:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B0D451F77; Sat, 25 Jan 2014 09:24:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P9Oc9N023047; Sat, 25 Jan 2014 09:24:38 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P9OcpF023046; Sat, 25 Jan 2014 09:24:38 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201401250924.s0P9OcpF023046@svn.freebsd.org> From: Kubilay Kocak Date: Sat, 25 Jan 2014 09:24:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340998 - 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.17 Precedence: list List-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, 25 Jan 2014 09:24:38 -0000 Author: koobs Date: Sat Jan 25 09:24:38 2014 New Revision: 340998 URL: http://svnweb.freebsd.org/changeset/ports/340998 QAT: https://qat.redports.org/buildarchive/r340998/ Log: Document Varnish HTTP Cache < 3.0.5 DoS Vulnerability Reviewed by: remko Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sat Jan 25 09:15:12 2014 (r340997) +++ head/security/vuxml/vuln.xml Sat Jan 25 09:24:38 2014 (r340998) @@ -51,6 +51,52 @@ Note: Please add new entries to the beg --> + + varnish -- DoS vulnerability in Varnish HTTP cache + + + varnish + 3.0.5 + + + + +

Varnish Cache Project reports:

+
+

If Varnish receives a certain illegal request, and the subroutine + 'vcl_error{}' restarts the request, the varnishd worker process + will crash with an assert. +

+

The varnishd management process will restart the worker process, but + there will be a brief interruption of service and the cache will be + emptied, causing more traffic to go to the backend. +

+

We are releasing this advisory because restarting from vcl_error{} is both fairly common and documented.

+

This is purely a denial of service vulnerability, there is no risk of privilege escalation.

+

Workaround

+

Insert this at the top of your VCL file:

+
+		sub vcl_error {
+			if (obj.status == 400 || obj.status == 413) {
+				return(deliver);
+			}
+		}
+
+		Or add this test at the top of your existing vcl_error{}.
+	  
+
+ +
+ + CVE-2013-4484 + https://www.varnish-cache.org/lists/pipermail/varnish-announce/2013-October/000686.html + + + 2013-10-30 + 2014-01-25 + +
+ linux-flashplugin -- multiple vulnerabilities From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:27:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4F07CE3; Sat, 25 Jan 2014 09:27:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A42571F8A; Sat, 25 Jan 2014 09:27:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P9RJAw023418; Sat, 25 Jan 2014 09:27:19 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P9RJgL023415; Sat, 25 Jan 2014 09:27:19 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201401250927.s0P9RJgL023415@svn.freebsd.org> From: Kubilay Kocak Date: Sat, 25 Jan 2014 09:27:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340999 - head/www/varnish X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 09:27:19 -0000 Author: koobs Date: Sat Jan 25 09:27:18 2014 New Revision: 340999 URL: http://svnweb.freebsd.org/changeset/ports/340999 QAT: https://qat.redports.org/buildarchive/r340999/ Log: www/varnish: Update to 3.0.5, Enable STAGE support - Update to 3.0.5 - Enable STAGE support, update pkg-plist accordingly - Update LICENSE - Modernize LIB_DEPENDS - Pet portlint (space->tab) Changes: * A bad interaction between -b, -c and -m in the varnishlog tool has been fixed. * A malformed request could in some configurations lead to Varnish crashing has been corrected. This is CVE-2013-4484. * Duplicate Content-Length headers were in some cases sent to clients when streaming is enabled, this has been fixed * ESI parse errors are no longer printed to standard output. * Stop segfaulting if the first part of a synthetic page is NULL. PR: ports/185188 PR: ports/185543 Submitted by: feld, Hung-Yi Chen Approved by: maintainer timeout (1 month) Security: http://www.vuxml.org/freebsd/d9dbe6e8-84da-11e3-98bd-080027f2d077.html Modified: head/www/varnish/Makefile head/www/varnish/distinfo head/www/varnish/pkg-plist Modified: head/www/varnish/Makefile ============================================================================== --- head/www/varnish/Makefile Sat Jan 25 09:24:38 2014 (r340998) +++ head/www/varnish/Makefile Sat Jan 25 09:27:18 2014 (r340999) @@ -1,16 +1,16 @@ # $FreeBSD$ PORTNAME= varnish -PORTVERSION= 3.0.4 +PORTVERSION= 3.0.5 CATEGORIES= www MASTER_SITES= http://repo.varnish-cache.org/source/ MAINTAINER= anders@FreeBSD.org COMMENT= The Varnish high-performance HTTP accelerator -LICENSE= BSD +LICENSE= BSD2CLAUSE -LIB_DEPENDS= pcre:${PORTSDIR}/devel/pcre +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre CONFLICTS= varnish-2.* @@ -20,16 +20,11 @@ USE_PYTHON_BUILD= yes CONFIGURE_ARGS= --localstatedir=${PREFIX} --enable-tests CONFIGURE_ENV= RST2MAN=true USE_LDCONFIG= yes -USE_AUTOTOOLS= aclocal libtool libtoolize automake autoconf +USE_AUTOTOOLS= aclocal libtool libtoolize automake autoconf ACLOCAL_ARGS= -I m4 LIBTOOLFLAGS= --copy --force --disable-static AUTOMAKE_ARGS= --add-missing --copy --foreign -MAN1= varnishadm.1 varnishd.1 varnishhist.1 varnishlog.1 \ - varnishncsa.1 varnishreplay.1 varnishsizes.1 \ - varnishstat.1 varnishtest.1 varnishtop.1 -MAN3= vmod_std.3 -MAN7= vcl.7 varnish-cli.7 varnish-counters.7 USE_RC_SUBR= varnishd varnishlog varnishncsa SUB_FILES= pkg-message .if defined(NO_INET6) || defined(WITHOUT_INET6) @@ -37,7 +32,6 @@ BAD_TESTS+= r00832 EXTRA_PATCHES+= ${FILESDIR}/no-inet6.patch .endif -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|\$$(libdir)/pkgconfig|\$$(prefix)/libdata/pkgconfig|' \ ${WRKSRC}/Makefile.am @@ -59,16 +53,16 @@ post-build: # post-install: - @${MKDIR} ${PREFIX}/share/varnish - @${INSTALL_SCRIPT} ${WRKSRC}/lib/libvmod_std/vmod.py ${PREFIX}/share/varnish + ${MKDIR} ${STAGEDIR}${PREFIX}/share/varnish + ${INSTALL_SCRIPT} ${WRKSRC}/lib/libvmod_std/vmod.py ${STAGEDIR}${PREFIX}/share/varnish .for f in cache.h heritage.h steps.h common.h acct_fields.h locks.h body_status.h - @${INSTALL_DATA} ${WRKSRC}/bin/varnishd/${f} ${PREFIX}/include/varnish + ${INSTALL_DATA} ${WRKSRC}/bin/varnishd/${f} ${STAGEDIR}${PREFIX}/include/varnish .endfor .for f in vct.h vmod_abi.h vre.h vrt.h vqueue.h vsb.h libvarnish.h miniobj.h vas.h vav.h http_headers.h vcl_returns.h - @${INSTALL_DATA} ${WRKSRC}/include/${f} ${PREFIX}/include/varnish + ${INSTALL_DATA} ${WRKSRC}/include/${f} ${STAGEDIR}${PREFIX}/include/varnish .endfor @${CAT} ${PKGMESSAGE} - @${RM} -f ${PREFIX}/lib/libvarnishapi.*a ${PREFIX}/lib/varnish/lib*a ${PREFIX}/lib/varnish/vmods/lib*a + @${RM} -f ${STAGEDIR}${PREFIX}/lib/libvarnishapi.*a ${STAGEDIR}${PREFIX}/lib/varnish/lib*a ${STAGEDIR}${PREFIX}/lib/varnish/vmods/lib*a .include Modified: head/www/varnish/distinfo ============================================================================== --- head/www/varnish/distinfo Sat Jan 25 09:24:38 2014 (r340998) +++ head/www/varnish/distinfo Sat Jan 25 09:27:18 2014 (r340999) @@ -1,2 +1,2 @@ -SHA256 (varnish-3.0.4.tar.gz) = 4e044ccb5c76222bddf89c808f13ea8f66977972675aecb48a920f6800ad0f79 -SIZE (varnish-3.0.4.tar.gz) = 2081361 +SHA256 (varnish-3.0.5.tar.gz) = 302fd6afc771524ca3912f5d945ab197a55762385c012b2054df7d86bf7ae2b7 +SIZE (varnish-3.0.5.tar.gz) = 2116664 Modified: head/www/varnish/pkg-plist ============================================================================== --- head/www/varnish/pkg-plist Sat Jan 25 09:24:38 2014 (r340998) +++ head/www/varnish/pkg-plist Sat Jan 25 09:27:18 2014 (r340999) @@ -43,6 +43,20 @@ lib/varnish/vmods/libvmod_std.so lib/libvarnishapi.so.1 lib/libvarnishapi.so libdata/pkgconfig/varnishapi.pc +man/man1/varnishadm.1.gz +man/man1/varnishd.1.gz +man/man1/varnishhist.1.gz +man/man1/varnishlog.1.gz +man/man1/varnishncsa.1.gz +man/man1/varnishreplay.1.gz +man/man1/varnishsizes.1.gz +man/man1/varnishstat.1.gz +man/man1/varnishtest.1.gz +man/man1/varnishtop.1.gz +man/man3/vmod_std.3.gz +man/man7/varnish-cli.7.gz +man/man7/varnish-counters.7.gz +man/man7/vcl.7.gz sbin/varnishd share/varnish/vmod.py @exec [ -d %D/varnish ] || mkdir %D/varnish From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:28:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75E2BDD8; Sat, 25 Jan 2014 09:28:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 61D891F94; Sat, 25 Jan 2014 09:28:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0P9SqxY023675; Sat, 25 Jan 2014 09:28:52 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0P9Spxs023667; Sat, 25 Jan 2014 09:28:51 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401250928.s0P9Spxs023667@svn.freebsd.org> From: John Marino Date: Sat, 25 Jan 2014 09:28:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341000 - in head/comms/xmorse: . 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.17 Precedence: list List-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, 25 Jan 2014 09:28:52 -0000 Author: marino Date: Sat Jan 25 09:28:51 2014 New Revision: 341000 URL: http://svnweb.freebsd.org/changeset/ports/341000 QAT: https://qat.redports.org/buildarchive/r341000/ Log: comms/xmorse: Fix build on F10+, support stage PR: ports/185398 Submitted by: Stephan Hurd Fixed by: marino@ Added: head/comms/xmorse/files/Makefile (contents, props changed) head/comms/xmorse/files/patch-Bargraph.cxx (contents, props changed) head/comms/xmorse/files/patch-Help.h (contents, props changed) Deleted: head/comms/xmorse/files/patch-Makefile Modified: head/comms/xmorse/Makefile head/comms/xmorse/files/patch-m.fl Modified: head/comms/xmorse/Makefile ============================================================================== --- head/comms/xmorse/Makefile Sat Jan 25 09:27:18 2014 (r340999) +++ head/comms/xmorse/Makefile Sat Jan 25 09:28:51 2014 (r341000) @@ -3,7 +3,7 @@ PORTNAME= xmorse PORTVERSION= 20041125 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= comms hamradio MASTER_SITES= http://c2.com/morse/files/SourceCode/ \ http://www.525183.com/freebsd/xmorse/ \ @@ -21,6 +21,9 @@ USE_SDL= sdl PLIST_FILES= bin/xmorse NO_WRKSUBDIR= yes +MAKE_ARGS= PREFIX="${STAGEDIR}${PREFIX}" INSTALL_PROGRAM="${INSTALL_PROGRAM}" + +post-patch: + ${CP} ${FILESDIR}/Makefile ${WRKSRC} -NO_STAGE= yes .include Added: head/comms/xmorse/files/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/xmorse/files/Makefile Sat Jan 25 09:28:51 2014 (r341000) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +CXXFLAGS+= -MMD `fltk-config --cxxflags` `sdl-config --cflags` +PREFIX ?= /usr/local +INSTALL_PROGRAM ?= ${INSTALL} -o root -g wheel -m 755 + +all: xmorse + +m.cxx: m.fl + fluid -c m.fl + +xmorse: m.o Bargraph.o Codebox.o Cw.o Knob.o + ${CXX} -o$@ $> `fltk-config --ldflags` `sdl-config --libs` + +install: xmorse + ${INSTALL_PROGRAM} xmorse ${PREFIX}/bin/xmorse + +clean: + -rm *.o + -rm *.d + -rm m.cxx m.h + -rm xmorse Added: head/comms/xmorse/files/patch-Bargraph.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/xmorse/files/patch-Bargraph.cxx Sat Jan 25 09:28:51 2014 (r341000) @@ -0,0 +1,11 @@ +--- Bargraph.cxx.orig 2004-08-25 17:18:01.000000000 -0700 ++++ Bargraph.cxx 2014-01-01 10:26:23.000000000 -0800 +@@ -82,7 +82,7 @@ + if (child(i)->visible()) nd++; + int dx = w()/nd; // Slider horizontal "period" + int width = dx*nd - gap; // Width of slider array +- int x0 = w()-width >> 1; // Inset to 1st slider ++ int x0 = (w()-width) >> 1; // Inset to 1st slider + width = dx-gap; // Width of individual Slider + for (int i = 0; i < children(); i++) { // Loop to reposition sliders + Fl_Slider* s = (Fl_Slider*) child(i); // Pointer to this Slider Added: head/comms/xmorse/files/patch-Help.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/xmorse/files/patch-Help.h Sat Jan 25 09:28:51 2014 (r341000) @@ -0,0 +1,11 @@ +--- Help.h.orig 2014-01-01 10:24:05.000000000 -0800 ++++ Help.h 2014-01-01 10:24:10.000000000 -0800 +@@ -2,7 +2,7 @@ + * generated from the original HTML file by the script, help.py. + */ + +-static char* HelpString = ++static const char* HelpString = + "\n" + "\n" + "\n" Modified: head/comms/xmorse/files/patch-m.fl ============================================================================== --- head/comms/xmorse/files/patch-m.fl Sat Jan 25 09:27:18 2014 (r340999) +++ head/comms/xmorse/files/patch-m.fl Sat Jan 25 09:28:51 2014 (r341000) @@ -1,5 +1,23 @@ ---- m.fl.orig 2011-07-17 14:56:20.000000000 -0400 -+++ m.fl 2011-07-17 14:56:31.000000000 -0400 +--- m.fl.orig 2004-08-13 16:38:24.000000000 -0700 ++++ m.fl 2014-01-01 10:25:10.000000000 -0800 +@@ -188,7 +188,7 @@ + } + menuitem {} { + label Numbers +- callback {char* nrs = "0123456789"; ++ callback {const char* nrs = "0123456789"; + if (o->mvalue()->value()) + Lesson->enable(nrs); + else +@@ -199,7 +199,7 @@ + } + menuitem {} { + label Symbols +- callback {char* syms = "./=?"; ++ callback {const char* syms = "./=?"; + if (o->mvalue()->value()) + Lesson->enable(syms); + else @@ -231,7 +231,7 @@ } } From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 09:40:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79CADE1; Sat, 25 Jan 2014 09:40:17 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3E3D11FF5; Sat, 25 Jan 2014 09:40:17 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id DAA3FBDC64; Sat, 25 Jan 2014 10:40:15 +0100 (CET) Received: from atuin.in.mat.cc (atuin.in.mat.cc [79.143.241.205]) by prod2.absolight.net (Postfix) with ESMTPA id B92C3BDC24; Sat, 25 Jan 2014 10:40:15 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by atuin.in.mat.cc (Postfix) with ESMTP id E9ACFCCF6BFC; Sat, 25 Jan 2014 10:40:13 +0100 (CET) Date: Sat, 25 Jan 2014 10:40:11 +0100 From: Mathieu Arnold To: Alex Kozlov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r340995 - head/devel/commit-patch Message-ID: <00B400AE6B3A2A5A87E8CF1F@atuin.in.mat.cc> In-Reply-To: <201401250840.s0P8eUJt005006@svn.freebsd.org> References: <201401250840.s0P8eUJt005006@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 09:40:17 -0000 Hi, +--On 25 janvier 2014 08:40:30 +0000 Alex Kozlov wrote: | +MAKE_ARGS= BASEDIR="${STAGEDIR}" | - -e 's/PREFIX=/PREFIX?=/' ${WRKSRC}/Makefile | + -e 's/PREFIX=/PREFIX?=/' \ | + -e 's/$$(PREFIX)/$$(BASEDIR)$$(PREFIX)/' \ | + ${WRKSRC}/Makefile There already is a DESTDIR in MAKE_ARGS, it would be better to use it. Regards, -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 10:31:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 788B0B54; Sat, 25 Jan 2014 10:31:20 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0EA20146B; Sat, 25 Jan 2014 10:31:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 788ADBDC64; Sat, 25 Jan 2014 11:31:18 +0100 (CET) X-Virus-Scanned: amavisd-new at absolight.net X-Spam-Flag: NO X-Spam-Score: -3.027 X-Spam-Level: X-Spam-Status: No, score=-3.027 tagged_above=-200 required=5 tests=[AWL=-0.427, BAYES_00=-2.599, NO_RELAYS=-0.001] Received: by prod2.absolight.net (Postfix, from userid 1001) id 059F6BDC5D; Sat, 25 Jan 2014 11:31:18 +0100 (CET) Date: Sat, 25 Jan 2014 11:31:18 +0100 From: Mathieu Arnold To: Dmitry Marakasov Subject: Re: svn commit: r340875 - head/graphics/py-pyglet Message-ID: <20140125103117.GA72683@prod2.absolight.net> References: <201401240125.s0O1PcNR065306@svn.freebsd.org> <02676048890BF03180E6CFAB@atuin.in.mat.cc> <20140124124924.GF28542@hades.panopticon> <08A02A920829DC4130029A7F@ogg.in.absolight.net> <20140124173403.GA33026@hades.panopticon> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="HcAYCG3uE/tztfnV" Content-Disposition: inline In-Reply-To: <20140124173403.GA33026@hades.panopticon> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: Mathieu Arnold , 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.17 Precedence: list List-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, 25 Jan 2014 10:31:20 -0000 --HcAYCG3uE/tztfnV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 24, 2014 at 09:34:04PM +0400, Dmitry Marakasov wrote: > * Mathieu Arnold (mat@FreeBSD.org) wrote: >=20 > > | I don't think that matters unless ${WRKSRC} is deleted in the > > | process. Actually, it's even better, as if for some reason some > > | command leaves something behind (a corefile or a log) in it's current > > | directory, it'll end up in ${WRKSRC} and to a ports' directory. > >=20 > > Well, yes, but no, you're missing the point, the idea is to have a stab= le > > and consistent way of doing things, so that if anyone needs to touch any > > port, (s)he doesn't have figure out what the current directory currentl= y is. >=20 > One should _never_ depend on current directory unless he changes > it in the same line. Because it's handling is (as you say) inconsistent > among make versions, and because it's highly error prone (changing > or reordering lines will break unrelated stuff). Also, all talk about > this is useless unless whole portstree is converted and then keept > consistent, which IHMO is completely useless. >=20 > > I was fine before because each line was executed in its own shell, but = now, > > the whole bloc is executed in one shell invocation. >=20 > Has this `now' happened in HEAD? >=20 > Both 9.0-RELEASE and 10.0-RELEASE (after bmake switch) behave like this: >=20 > % cat /tmp/Makefile=20 > all: > @pwd > @cd ..; pwd > @pwd > % make -C tmp > /tmp > / > /tmp >=20 > Although I remember having cd in one line affect pwd in another some > time ago. The thing is, the way it works depends on wether you do parallel building or not. $ make all /home/mat /home /home/mat $ make all -j 4 /home/mat /home /home And like I said, it's policy :-) --=20 Mathieu Arnold --HcAYCG3uE/tztfnV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iQJ8BAABCgBmBQJS45J1XxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzQUI2OTc4OUQyRUQxMjEwNjQ0MEJBNUIz QTQ1MTZGMzUxODNDRTQ4AAoJEDpFFvNRg85IccQP/15AuBBu+W56QvMMi5Ng816Q KNGx9VZS1MBkfLRRC5pGveNOIXyG1c1c2rJwTA/34zm7nuPX/AtWA8pXKR6+OdzB cf4t49vVRgAoSjCWR8EqY50agRZ9lx0uOqKZfm04pIx/r6z/FEJamefvBZK8oh+5 Wtokoe3sgGPvk1ljbZkrEHzruBaHIGPZlcOjwE0wFJhlrqwCaENpGGcFkJuDE8NN cst9FoH0yX2i1+Di3YX+d1EjHAH3cKAWjoy/wFfsAa31WSSMsD7OT3uD+A8/EKJv DddYsFGoo6A7QTf7s7HXSktyg50d1KTsnVsiUi0UcM1qm68Q/od+bhGbe6CAE9FG DsIC8kQ5pBO02XFZh2hRtgk4cHbLBvpGAOM1R7uhSgb2oOLV8ieI/0c5jwkmOAr7 6CdLfPimttkyLjrjlfcIg35o19vgV1Ig/RhKPag9+evCeziDdhmJXWr+Su2wKGIU rkXYXO8M3AeNmc3PTV2HRtsX9BMyWuzvz0jegzvzqSlZGnC28kZ/UVVL3NKStb9A uBz3OkwITTCNimJIiKqNyOtJ+mim5o/LLeRcx/oLaq/8RG0puRbM7wE9so5WM+/z 2L6zjMk8/WIbwP4wOdMXkAxpTWh/AQ0Fgdj9ZdWAEmHs5+maTXu6X+YNQhcbbJV8 8CqknFzRSxq39CSmITCM =nF3G -----END PGP SIGNATURE----- --HcAYCG3uE/tztfnV-- From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 10:42:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC10F5E0 for ; Sat, 25 Jan 2014 10:42:21 +0000 (UTC) Received: from mout.gmx.net (mout.gmx.net [212.227.17.21]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 45D7C1596 for ; Sat, 25 Jan 2014 10:42:16 +0000 (UTC) Received: from nemysis4now ([96.44.189.100]) by mail.gmx.com (mrgmx001) with ESMTPSA (Nemesis) id 0M0y8F-1VIcrS1wSd-00v9eQ for ; Sat, 25 Jan 2014 11:42:14 +0100 Date: Sat, 25 Jan 2014 11:42:07 +0100 From: nemysis To: Alexey Dokuchaev Subject: Re: svn commit: r340982 - in head/shells/fish: . files Message-ID: <20140125114207.762388ed@nemysis4now> In-Reply-To: <20140125072231.GA13904@FreeBSD.org> References: <201401250240.s0P2eIZh065119@svn.freebsd.org> <20140125072231.GA13904@FreeBSD.org> X-Mailer: Claws Mail 3.9.2 (GTK+ 2.24.22; amd64-portbld-freebsd9.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable X-Provags-ID: V03:K0:1gKY6Fxbirh/HrWjmZadUPYql4PQ9adR1808drdbxCjZleL3EVs slLVLL4afNLqr0YXYJgCnEPsCVf0X7/QZ8jVphbcmuMKImIje+t+zJ2f8mt7dNOcrNEvYTx HpgGyrJj0Rq99pJ+CHfsQ/rdgFCiPfK9SktxQxT2p05EuyoSmp0pUd1F9X0Ojwby0hU7Qbx KVwOOUr/kLfKTzyXCBdqQ== 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.17 Precedence: list List-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, 25 Jan 2014 10:42:21 -0000 On Sat, 25 Jan 2014 07:22:32 +0000 Alexey Dokuchaev wrote: > On Sat, Jan 25, 2014 at 02:40:18AM +0000, Rusmir Dusko wrote: > > New Revision: 340982 > > URL: http://svnweb.freebsd.org/changeset/ports/340982 > > QAT: https://qat.redports.org/buildarchive/r340982/ > >=20 > > Log: > > - Add licenses (GPLv2) > > - Fix DOCS Option, add extra-patch-Makefile.in > > =20 > > Reviewed by: horia >=20 > $ finger horia@freebsd.org > [freebsd.org] > Trying 8.8.178.110... > finger: horia: no such user >=20 > ./danfe = = =20 Thanks for the Report horia is only a contributor =46rom now i use full Name Horia Racoviceanu --=20 Best regards, Rusmir Dusko From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 11:06:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E5B8CF6; Sat, 25 Jan 2014 11:06:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3A63416E4; Sat, 25 Jan 2014 11:06:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PB6CcI062467; Sat, 25 Jan 2014 11:06:12 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PB6CfW062466; Sat, 25 Jan 2014 11:06:12 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201401251106.s0PB6CfW062466@svn.freebsd.org> From: Alex Kozlov Date: Sat, 25 Jan 2014 11:06:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341009 - head/devel/commit-patch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 11:06:12 -0000 Author: ak Date: Sat Jan 25 11:06:11 2014 New Revision: 341009 URL: http://svnweb.freebsd.org/changeset/ports/341009 QAT: https://qat.redports.org/buildarchive/r341009/ Log: - Use DESTDIR instead of non-standard BASEDIR Suggested by: mat Modified: head/devel/commit-patch/Makefile Modified: head/devel/commit-patch/Makefile ============================================================================== --- head/devel/commit-patch/Makefile Sat Jan 25 10:50:47 2014 (r341008) +++ head/devel/commit-patch/Makefile Sat Jan 25 11:06:11 2014 (r341009) @@ -17,7 +17,6 @@ RUN_DEPENDS= interdiff:${PORTSDIR}/misc/ USE_GITHUB= yes USES= gmake perl5 USE_PERL5= build # pod2man -MAKE_ARGS= BASEDIR="${STAGEDIR}" GH_ACCOUNT= caldwell GH_PROJECT= commit-patch @@ -32,7 +31,7 @@ PORTDOCS= * post-patch: ${REINPLACE_CMD} -e 's/share[/]man/man/' \ -e 's/PREFIX=/PREFIX?=/' \ - -e 's/$$(PREFIX)/$$(BASEDIR)$$(PREFIX)/' \ + -e 's/$$(PREFIX)/$$(DESTDIR)$$(PREFIX)/' \ ${WRKSRC}/Makefile .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 11:08:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF85ADF8; Sat, 25 Jan 2014 11:08:13 +0000 (UTC) Received: from ravenloft.kiev.ua (ravenloft.kiev.ua [94.244.131.95]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8B21816F3; Sat, 25 Jan 2014 11:08:13 +0000 (UTC) Date: Sat, 25 Jan 2014 13:08:10 +0200 From: Alex Kozlov To: Mathieu Arnold Subject: Re: svn commit: r340995 - head/devel/commit-patch Message-ID: <20140125110810.GA63035@ravenloft.kiev.ua> References: <201401250840.s0P8eUJt005006@svn.freebsd.org> <00B400AE6B3A2A5A87E8CF1F@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <00B400AE6B3A2A5A87E8CF1F@atuin.in.mat.cc> 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.17 Precedence: list List-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, 25 Jan 2014 11:08:13 -0000 On Sat, Jan 25, 2014 at 10:40:11AM +0100, Mathieu Arnold wrote: > Hi, > > +--On 25 janvier 2014 08:40:30 +0000 Alex Kozlov wrote: > | +MAKE_ARGS= BASEDIR="${STAGEDIR}" > | - -e 's/PREFIX=/PREFIX?=/' ${WRKSRC}/Makefile > | + -e 's/PREFIX=/PREFIX?=/' \ > | + -e 's/$$(PREFIX)/$$(BASEDIR)$$(PREFIX)/' \ > | + ${WRKSRC}/Makefile > > There already is a DESTDIR in MAKE_ARGS, it would be better to use it. Fixed. Thank you for suggestion. -- Alex From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 11:53:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 783EFAAC; Sat, 25 Jan 2014 11:53:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 643581A38; Sat, 25 Jan 2014 11:53:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PBrwKv081307; Sat, 25 Jan 2014 11:53:58 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PBrw3J081305; Sat, 25 Jan 2014 11:53:58 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251153.s0PBrw3J081305@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 11:53:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341012 - head/databases/tarantool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 11:53:58 -0000 Author: antoine Date: Sat Jan 25 11:53:57 2014 New Revision: 341012 URL: http://svnweb.freebsd.org/changeset/ports/341012 QAT: https://qat.redports.org/buildarchive/r341012/ Log: Finish stage support Note: this port seems broken on FreeBSD 8 Modified: head/databases/tarantool/Makefile head/databases/tarantool/pkg-plist Modified: head/databases/tarantool/Makefile ============================================================================== --- head/databases/tarantool/Makefile Sat Jan 25 11:44:53 2014 (r341011) +++ head/databases/tarantool/Makefile Sat Jan 25 11:53:57 2014 (r341012) @@ -3,7 +3,7 @@ PORTNAME= tarantool PORTVERSION= 1.5.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= http://tarantool.org/dist/ DISTNAME= ${PORTNAME}-${PORTVERSION}-${TR_REV}-src @@ -34,14 +34,11 @@ PGSQL_DESC= Install PostgreSQL plugin OPTIONS_DEFAULT=CLIENT -MAN1= tarantool_box.1 - .include .if ${PORT_OPTIONS:MCLIENT} CMAKE_ARGS+= -DENABLE_CLIENT=true PLIST_SUB+= CLIENT="" -MAN1+= tarantool.1 .else PLIST_SUB+= CLIENT="@comment " .endif @@ -78,7 +75,4 @@ PLIST_SUB+= PLUGINS="" PLIST_SUB+= PLUGINS="@comment " .endif -post-install: - @${CAT} ${PKGMESSAGE} - .include Modified: head/databases/tarantool/pkg-plist ============================================================================== --- head/databases/tarantool/pkg-plist Sat Jan 25 11:44:53 2014 (r341011) +++ head/databases/tarantool/pkg-plist Sat Jan 25 11:53:57 2014 (r341012) @@ -50,6 +50,8 @@ lib/libtarantool.so lib/libtarantoolrpl.a %%MYSQL%%lib/tarantool/plugins/libmysql.so %%PGSQL%%lib/tarantool/plugins/libpg.so +%%CLIENT%%man/man1/tarantool.1.gz +man/man1/tarantool_box.1.gz %%DOCSDIR%%/README.md %%DOCSDIR%%/box-protocol.txt %%DOCSDIR%%/LICENSE From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 12:04:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8712FCC0; Sat, 25 Jan 2014 12:04:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 728F71AE2; Sat, 25 Jan 2014 12:04:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PC4QAC085378; Sat, 25 Jan 2014 12:04:26 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PC4QvQ085376; Sat, 25 Jan 2014 12:04:26 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251204.s0PC4QvQ085376@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 12:04:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341013 - head/math/octave X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 12:04:26 -0000 Author: antoine Date: Sat Jan 25 12:04:25 2014 New Revision: 341013 URL: http://svnweb.freebsd.org/changeset/ports/341013 QAT: https://qat.redports.org/buildarchive/r341013/ Log: Finish stage support Modified: head/math/octave/Makefile head/math/octave/pkg-plist Modified: head/math/octave/Makefile ============================================================================== --- head/math/octave/Makefile Sat Jan 25 11:53:57 2014 (r341012) +++ head/math/octave/Makefile Sat Jan 25 12:04:25 2014 (r341013) @@ -3,6 +3,7 @@ PORTNAME= octave PORTVERSION= 3.8.0 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= octave @@ -46,7 +47,6 @@ CONFIGURE_ENV+= JAVA_HOME=${JAVA_HOME} USE_QT4= gui network INFO= octave liboctave -MAN1= octave.1 mkoctfile.1 octave-config.1 .include Modified: head/math/octave/pkg-plist ============================================================================== --- head/math/octave/pkg-plist Sat Jan 25 11:53:57 2014 (r341012) +++ head/math/octave/pkg-plist Sat Jan 25 12:04:25 2014 (r341013) @@ -6,6 +6,9 @@ bin/octave-cli bin/octave-cli-%%OCTAVE_VERSION%% bin/octave-config bin/octave-config-%%OCTAVE_VERSION%% +man/man1/mkoctfile.1.gz +man/man1/octave-config.1.gz +man/man1/octave.1.gz share/applications/www.octave.org-octave.desktop %%PORTDOCS%%%%DOCSDIR%%/liboctave.ps %%PORTDOCS%%%%DOCSDIR%%/refcard-a4.ps From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 12:10:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBADDE3; Sat, 25 Jan 2014 12:10:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B7EFD1B6F; Sat, 25 Jan 2014 12:10:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PCAxYG086864; Sat, 25 Jan 2014 12:10:59 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PCAxvi086863; Sat, 25 Jan 2014 12:10:59 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201401251210.s0PCAxvi086863@svn.freebsd.org> From: Johan van Selst Date: Sat, 25 Jan 2014 12:10:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341014 - head/security/sks X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 12:10:59 -0000 Author: johans Date: Sat Jan 25 12:10:59 2014 New Revision: 341014 URL: http://svnweb.freebsd.org/changeset/ports/341014 QAT: https://qat.redports.org/buildarchive/r341014/ Log: Respect CC and CFLAGS Modified: head/security/sks/Makefile Modified: head/security/sks/Makefile ============================================================================== --- head/security/sks/Makefile Sat Jan 25 12:04:25 2014 (r341013) +++ head/security/sks/Makefile Sat Jan 25 12:10:59 2014 (r341014) @@ -30,12 +30,16 @@ post-extract: @${REINPLACE_CMD} 's/-ccopt -pg //' ${WRKSRC}/Makefile @cd ${WRKSRC} && ${RM} -f .depend +post-patch: + @${REINPLACE_CMD} '/^CC=/d; /^CFLAGS=/s/=/+=/' \ + ${WRKSRC}/Makefile ${WRKSRC}/bdb/Makefile + pre-build: @cd ${WRKSRC} && test -f .depend || ${GMAKE} dep post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} - @cd ${WRKSRC} && ${INSTALL_DATA} BUGS README.md TODO UPGRADING \ + cd ${WRKSRC} && ${INSTALL_DATA} BUGS README.md TODO UPGRADING \ ${STAGEDIR}${DOCSDIR} @cd ${STAGEDIR}${PREFIX}/bin && ${STRIP_CMD} sks sks_add_mail From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 12:40:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E94AD7D2; Sat, 25 Jan 2014 12:40:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BBB021E75; Sat, 25 Jan 2014 12:40:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PCegLs097745; Sat, 25 Jan 2014 12:40:42 GMT (envelope-from lme@svn.freebsd.org) Received: (from lme@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PCeg1b097743; Sat, 25 Jan 2014 12:40:42 GMT (envelope-from lme@svn.freebsd.org) Message-Id: <201401251240.s0PCeg1b097743@svn.freebsd.org> From: Lars Engels Date: Sat, 25 Jan 2014 12:40:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341015 - head/x11-fm/mucommander X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 12:40:43 -0000 Author: lme Date: Sat Jan 25 12:40:42 2014 New Revision: 341015 URL: http://svnweb.freebsd.org/changeset/ports/341015 QAT: https://qat.redports.org/buildarchive/r341015/ Log: - stagify - add LICENSE - use a single space after WWW: Modified: head/x11-fm/mucommander/Makefile head/x11-fm/mucommander/pkg-descr Modified: head/x11-fm/mucommander/Makefile ============================================================================== --- head/x11-fm/mucommander/Makefile Sat Jan 25 12:10:59 2014 (r341014) +++ head/x11-fm/mucommander/Makefile Sat Jan 25 12:40:42 2014 (r341015) @@ -10,6 +10,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/./ MAINTAINER= lme@FreeBSD.org COMMENT= Lightweight file manager featuring a Norton Commander style interface +LICENSE= GPLv3 + USE_JAVA= yes JAVA_VERSION= 1.6+ NO_BUILD= yes @@ -22,17 +24,12 @@ PORTDOCS= readme.txt WRKSRC= ${WRKDIR}/muCommander-${PORTVERSION:S/./_/g} -NO_STAGE= yes do-install: - @${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/mucommander.jar ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/license.txt ${DATADIR} - ${INSTALL_SCRIPT} ${WRKDIR}/mucommander ${PREFIX}/bin - -post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/mucommander.jar ${STAGEDIR}${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/license.txt ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKDIR}/mucommander ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR} .include Modified: head/x11-fm/mucommander/pkg-descr ============================================================================== --- head/x11-fm/mucommander/pkg-descr Sat Jan 25 12:10:59 2014 (r341014) +++ head/x11-fm/mucommander/pkg-descr Sat Jan 25 12:40:42 2014 (r341015) @@ -13,4 +13,4 @@ Here's a non-exaustive list of what you' - Full keyboard access - Highly configurable -WWW: http://www.mucommander.com +WWW: http://www.mucommander.com From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 12:57:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB4D5C5D; Sat, 25 Jan 2014 12:57:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B71361F38; Sat, 25 Jan 2014 12:57:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PCvfL0005617; Sat, 25 Jan 2014 12:57:41 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PCvfrn005613; Sat, 25 Jan 2014 12:57:41 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251257.s0PCvfrn005613@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 12:57:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341018 - head/textproc/py-openpyxl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 12:57:41 -0000 Author: antoine Date: Sat Jan 25 12:57:41 2014 New Revision: 341018 URL: http://svnweb.freebsd.org/changeset/ports/341018 QAT: https://qat.redports.org/buildarchive/r341018/ Log: - Update to 1.8.2 - Remove DOCS conditional Modified: head/textproc/py-openpyxl/Makefile head/textproc/py-openpyxl/distinfo Modified: head/textproc/py-openpyxl/Makefile ============================================================================== --- head/textproc/py-openpyxl/Makefile Sat Jan 25 12:56:56 2014 (r341017) +++ head/textproc/py-openpyxl/Makefile Sat Jan 25 12:57:41 2014 (r341018) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openpyxl -PORTVERSION= 1.8.1 +PORTVERSION= 1.8.2 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -21,12 +21,8 @@ PORTDOCS= AUTHORS README OPTIONS_DEFINE= DOCS -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} -.endif .include Modified: head/textproc/py-openpyxl/distinfo ============================================================================== --- head/textproc/py-openpyxl/distinfo Sat Jan 25 12:56:56 2014 (r341017) +++ head/textproc/py-openpyxl/distinfo Sat Jan 25 12:57:41 2014 (r341018) @@ -1,2 +1,2 @@ -SHA256 (openpyxl-1.8.1.tar.gz) = de3f62ea407bdb441aa6e2a5f1c0c3cfca761e71b4cf25225c0a6c73cae4f312 -SIZE (openpyxl-1.8.1.tar.gz) = 78697 +SHA256 (openpyxl-1.8.2.tar.gz) = ed311d8212fc9bff67af0452c2ac50222c79ab39730002ef5169286c59419797 +SIZE (openpyxl-1.8.2.tar.gz) = 78861 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 12:58:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FA8CE13; Sat, 25 Jan 2014 12:58:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EF7D81F41; Sat, 25 Jan 2014 12:58:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PCwTsQ005888; Sat, 25 Jan 2014 12:58:29 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PCwTee005886; Sat, 25 Jan 2014 12:58:29 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251258.s0PCwTee005886@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 12:58:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341020 - head/deskutils/dosage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 12:58:30 -0000 Author: antoine Date: Sat Jan 25 12:58:29 2014 New Revision: 341020 URL: http://svnweb.freebsd.org/changeset/ports/341020 QAT: https://qat.redports.org/buildarchive/r341020/ Log: Update to 2.12 Modified: head/deskutils/dosage/Makefile head/deskutils/dosage/distinfo Modified: head/deskutils/dosage/Makefile ============================================================================== --- head/deskutils/dosage/Makefile Sat Jan 25 12:58:08 2014 (r341019) +++ head/deskutils/dosage/Makefile Sat Jan 25 12:58:29 2014 (r341020) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dosage -PORTVERSION= 2.11 +PORTVERSION= 2.12 CATEGORIES= deskutils python MASTER_SITES= http://wummel.github.io/dosage/dist/ Modified: head/deskutils/dosage/distinfo ============================================================================== --- head/deskutils/dosage/distinfo Sat Jan 25 12:58:08 2014 (r341019) +++ head/deskutils/dosage/distinfo Sat Jan 25 12:58:29 2014 (r341020) @@ -1,2 +1,2 @@ -SHA256 (dosage-2.11.tar.gz) = 5ab5b833b3ef6dfebaf8f190074d56a15ded5a4b18c3ce0820c88a5d5efa5762 -SIZE (dosage-2.11.tar.gz) = 397655 +SHA256 (dosage-2.12.tar.gz) = 8557396e3ec622a0f4dc57554fff1e6e198f65dedec3ca03f6248d1cdc8e31e5 +SIZE (dosage-2.12.tar.gz) = 390950 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 13:20:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E53FFEB; Sat, 25 Jan 2014 13:20:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1AAA81110; Sat, 25 Jan 2014 13:20:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PDKeFA017089; Sat, 25 Jan 2014 13:20:40 GMT (envelope-from blackend@svn.freebsd.org) Received: (from blackend@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PDKeSZ017088; Sat, 25 Jan 2014 13:20:40 GMT (envelope-from blackend@svn.freebsd.org) Message-Id: <201401251320.s0PDKeSZ017088@svn.freebsd.org> From: Marc Fonvieille Date: Sat, 25 Jan 2014 13:20:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341035 - 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.17 Precedence: list List-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, 25 Jan 2014 13:20:41 -0000 Author: blackend (doc committer) Date: Sat Jan 25 13:20:40 2014 New Revision: 341035 URL: http://svnweb.freebsd.org/changeset/ports/341035 QAT: https://qat.redports.org/buildarchive/r341035/ Log: Fix a typo. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Sat Jan 25 13:18:21 2014 (r341034) +++ head/UPDATING Sat Jan 25 13:20:40 2014 (r341035) @@ -152,7 +152,7 @@ you update your ports collection, before The default xorg version has been switched on FreeBSD CURRENT. To upgrade graphics/libGL, graphics/dri and related MESA ports, it is - neccessary to first remove the old versions of those ports. + necessary to first remove the old versions of those ports. No special upgrade procedure is needed for xorg port but it is necessary to recompile all xorg drivers (xf86-*) and other ports that depend on the xserver version, including From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 13:41:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6CEED6D7; Sat, 25 Jan 2014 13:41:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 592B812B7; Sat, 25 Jan 2014 13:41:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PDfRQI027014; Sat, 25 Jan 2014 13:41:27 GMT (envelope-from dinoex@svn.freebsd.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PDfREC027013; Sat, 25 Jan 2014 13:41:27 GMT (envelope-from dinoex@svn.freebsd.org) Message-Id: <201401251341.s0PDfREC027013@svn.freebsd.org> From: Dirk Meyer Date: Sat, 25 Jan 2014 13:41:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341039 - head/graphics/gnash X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 13:41:27 -0000 Author: dinoex Date: Sat Jan 25 13:41:26 2014 New Revision: 341039 URL: http://svnweb.freebsd.org/changeset/ports/341039 QAT: https://qat.redports.org/buildarchive/r341039/ Log: - set BROKEN from FreeBSD-10, fails in boost ABI Modified: head/graphics/gnash/Makefile Modified: head/graphics/gnash/Makefile ============================================================================== --- head/graphics/gnash/Makefile Sat Jan 25 13:27:29 2014 (r341038) +++ head/graphics/gnash/Makefile Sat Jan 25 13:41:26 2014 (r341039) @@ -73,6 +73,10 @@ CYGNAL_CONFIGURE_ENABLE= cygnal .include +.if ${OSVERSION} > 1000000 +BROKEN= unable to link in libboost_system +.endif + # Cygnal option processing .if ${PORT_OPTIONS:MCYGNAL} CONFIG_FILES+= cygnalrc From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 14:38:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EFC091AD; Sat, 25 Jan 2014 14:38:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C0C8D168E; Sat, 25 Jan 2014 14:38:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PEclX7047015; Sat, 25 Jan 2014 14:38:47 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PEclJH047013; Sat, 25 Jan 2014 14:38:47 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401251438.s0PEclJH047013@svn.freebsd.org> From: John Marino Date: Sat, 25 Jan 2014 14:38:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341040 - in head/sysutils/fonteditfs: . 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.17 Precedence: list List-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, 25 Jan 2014 14:38:48 -0000 Author: marino Date: Sat Jan 25 14:38:47 2014 New Revision: 341040 URL: http://svnweb.freebsd.org/changeset/ports/341040 QAT: https://qat.redports.org/buildarchive/r341040/ Log: sysutils/fonteditfs: Fix on FreeBSD 10+, support stage PR: ports/185405 Submitted by; Stephen Hurd Approved by: maintainer (Uri Shaked) Staged by: marino@ Modified: head/sysutils/fonteditfs/Makefile head/sysutils/fonteditfs/files/patch-Makefile Modified: head/sysutils/fonteditfs/Makefile ============================================================================== --- head/sysutils/fonteditfs/Makefile Sat Jan 25 13:41:26 2014 (r341039) +++ head/sysutils/fonteditfs/Makefile Sat Jan 25 14:38:47 2014 (r341040) @@ -6,17 +6,15 @@ PORTVERSION= 1.2 CATEGORIES= sysutils MASTER_SITES= SF DISTNAME= fnteditfs-${PORTVERSION} -EXTRACT_SUFX=.tgz +EXTRACT_SUFX= .tgz MAINTAINER= uri@keves.org COMMENT= Full screen syscons font editor -MAN1= fnteditfs.1 -PLIST_FILES= bin/fnteditfs +PLIST_FILES= bin/fnteditfs man/man1/fnteditfs.1.gz -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} -e 's|__PREFIX__|${PREFIX}|g ; \ + @${REINPLACE_CMD} -e 's|__PREFIX__|${STAGEDIR}${PREFIX}|g ; \ s|__INSTALL_MAN__|${INSTALL_MAN}|g ; \ s|__INSTALL_SCRIPT__|${INSTALL_SCRIPT}|g' ${WRKSRC}/Makefile Modified: head/sysutils/fonteditfs/files/patch-Makefile ============================================================================== --- head/sysutils/fonteditfs/files/patch-Makefile Sat Jan 25 13:41:26 2014 (r341039) +++ head/sysutils/fonteditfs/files/patch-Makefile Sat Jan 25 14:38:47 2014 (r341040) @@ -1,6 +1,6 @@ ---- Makefile.orig 2003-09-20 12:17:34.000000000 -0300 -+++ Makefile 2009-08-29 14:56:21.000000000 -0300 -@@ -2,12 +2,7 @@ +--- Makefile.orig 2003-09-20 08:17:34.000000000 -0700 ++++ Makefile 2014-01-01 12:27:59.000000000 -0800 +@@ -2,14 +2,9 @@ # - TODO: MAKE NEATER ONE # This makefile should work under most POSIX OSes (at least FreeBSD) @@ -12,8 +12,11 @@ - +all: fnteditfs fnteditfs: fnteditfs.o font.o stack.o - gcc -o fnteditfs fnteditfs.o font.o stack.o -lcurses +- gcc -o fnteditfs fnteditfs.o font.o stack.o -lcurses ++ ${CC} -o fnteditfs fnteditfs.o font.o stack.o -lcurses strip fnteditfs + + fnteditfs.o: fnteditfs.c font.h stack.h @@ -17,8 +12,8 @@ stack.o: stack.c stack.h From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 14:53:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 42C80436; Sat, 25 Jan 2014 14:53:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1453517C0; Sat, 25 Jan 2014 14:53:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PErhFc053951; Sat, 25 Jan 2014 14:53:43 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PErh5t053950; Sat, 25 Jan 2014 14:53:43 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401251453.s0PErh5t053950@svn.freebsd.org> From: Mathieu Arnold Date: Sat, 25 Jan 2014 14:53:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341041 - head/Mk head/Mk/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.17 Precedence: list List-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, 25 Jan 2014 14:53:44 -0000 Author: mat Date: Sat Jan 25 14:53:43 2014 New Revision: 341041 URL: http://svnweb.freebsd.org/changeset/ports/341041 QAT: https://qat.redports.org/buildarchive/r341041/ Log: There's no reason that all files don't have the svn:eol-style and svn:mime-type props by default. With hat: portmgr Sponsored by: Absolight Modified: Directory Properties: head/Mk/ (props changed) head/Mk/Scripts/ (props changed) Changes in other areas also in this revision: Modified: Directory Properties: / (props changed) From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 15:17:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E179AA6; Sat, 25 Jan 2014 15:17:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 400BB1952; Sat, 25 Jan 2014 15:17:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PFHvrF062469; Sat, 25 Jan 2014 15:17:57 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PFHv5G062468; Sat, 25 Jan 2014 15:17:57 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251517.s0PFHv5G062468@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 15:17:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341042 - head/net/gnu-dico X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 15:17:57 -0000 Author: antoine Date: Sat Jan 25 15:17:56 2014 New Revision: 341042 URL: http://svnweb.freebsd.org/changeset/ports/341042 QAT: https://qat.redports.org/buildarchive/r341042/ Log: - Fix build with clang - Fix python modules after removal of implicit lang/python dependency - Stage support Modified: head/net/gnu-dico/Makefile Modified: head/net/gnu-dico/Makefile ============================================================================== --- head/net/gnu-dico/Makefile Sat Jan 25 14:53:43 2014 (r341041) +++ head/net/gnu-dico/Makefile Sat Jan 25 15:17:56 2014 (r341042) @@ -3,7 +3,7 @@ PORTNAME= dico PORTVERSION= 2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net textproc MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -14,10 +14,11 @@ COMMENT= Flexible modular implementation USE_XZ= yes USE_LDCONFIG= yes -USE_GMAKE= yes +USES= gmake USE_AUTOTOOLS= libltdl libtool GNU_CONFIGURE= yes +CFLAGS+= -Wno-error=return-type CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS= --localstatedir=/var @@ -26,11 +27,11 @@ OPTIONS_DEFINE= PYTHON GUILE PCRE GSASL OPTIONS_DEFAULT= PYTHON GUILE PCRE GSASL_DESC= GSASL support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MPYTHON} USE_PYTHON= yes +CONFIGURE_ENV+= PYTHON_CONFIG=${PYTHON_CMD}-config PLIST_SUB+= PYTHON="" .else CONFIGURE_ARGS+=--without-python @@ -38,7 +39,7 @@ PLIST_SUB+= PYTHON="@comment " .endif .if ${PORT_OPTIONS:MGUILE} -LIB_DEPENDS+= guile.21:${PORTSDIR}/lang/guile +LIB_DEPENDS+= libguile.so:${PORTSDIR}/lang/guile PLIST_SUB+= GUILE="" .else CONFIGURE_ARGS+=--without-guile @@ -46,7 +47,7 @@ PLIST_SUB+= GUILE="@comment " .endif .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre PLIST_SUB+= PCRE="" .else CONFIGURE_ARGS+=--without-pcre @@ -54,7 +55,7 @@ PLIST_SUB+= PCRE="@comment " .endif .if ${PORT_OPTIONS:MGSASL} -LIB_DEPENDS+= gsasl.16:${PORTSDIR}/security/gsasl +LIB_DEPENDS+= libgsasl.so:${PORTSDIR}/security/gsasl CONFIGURE_ARGS+=--with-gsasl .else CONFIGURE_ARGS+=--without-gsasl @@ -94,9 +95,9 @@ post-patch: @${REINPLACE_CMD} 's/@bindir@/@sbindir@/' ${WRKSRC}/dicod/Makefile.in @${REINPLACE_CMD} 's/(bindir)..dir/&\/gdico/' ${WRKSRC}/dico/Makefile.in @${REINPLACE_CMD} '/INSTALL.*charset/d' ${WRKSRC}/gnu/Makefile.in + @${REINPLACE_CMD} 's/python-config/$${PYTHON_CONFIG}/' ${WRKSRC}/configure post-install: - @${INSTALL_DATA} ${FILESDIR}/dicod.conf ${PREFIX}/etc/dicod.conf.sample - @${CAT} ${PKGMESSAGE} + @${INSTALL_DATA} ${FILESDIR}/dicod.conf ${STAGEDIR}${PREFIX}/etc/dicod.conf.sample .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 15:35:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03A0BCE9; Sat, 25 Jan 2014 15:35:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E3AA11A71; Sat, 25 Jan 2014 15:35:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PFZhNO069637; Sat, 25 Jan 2014 15:35:43 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PFZhvE069634; Sat, 25 Jan 2014 15:35:43 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401251535.s0PFZhvE069634@svn.freebsd.org> From: John Marino Date: Sat, 25 Jan 2014 15:35:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341043 - head/devel/ioncube X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 15:35:44 -0000 Author: marino Date: Sat Jan 25 15:35:43 2014 New Revision: 341043 URL: http://svnweb.freebsd.org/changeset/ports/341043 QAT: https://qat.redports.org/buildarchive/r341043/ Log: devel/ioncube: Update from version 4.5.0 to 4.5.1, support stage Also: * reword COMMENT to satisfy portlint * Use OPSYS with OSVERSION * Remove ECHO PKGMESSAGE post-install target, redundant PR: ports/185627 Submitted by: John Marshall Approved by: maintainer (Svyatoslav Lempert) Fixed by: marino@ Modified: head/devel/ioncube/Makefile head/devel/ioncube/distinfo Modified: head/devel/ioncube/Makefile ============================================================================== --- head/devel/ioncube/Makefile Sat Jan 25 15:17:56 2014 (r341042) +++ head/devel/ioncube/Makefile Sat Jan 25 15:35:43 2014 (r341043) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ioncube -DISTVERSION= 4.5.0 +DISTVERSION= 4.5.1 CATEGORIES= devel MASTER_SITES= http://downloads3.ioncube.com/loader_downloads/ \ http://dl.ispsystem.info/ioncube/${DISTVERSION}/ \ @@ -10,7 +10,7 @@ MASTER_SITES= http://downloads3.ioncube. DISTNAME= ${PORTNAME}_loaders_fre_${VER}_${ARCH:S,i386,x86,:S,amd64,x86-64,} MAINTAINER= svyatoslav.lempert@gmail.com -COMMENT= ionCube loader for PHP code +COMMENT= Loader for ionCube-encoded PHP files ONLY_FOR_ARCHS= i386 amd64 NO_BUILD= yes @@ -21,10 +21,9 @@ SUB_FILES= pkg-message WRKSRC= ${WRKDIR}/${PORTNAME} DIST_SUBDIR= ${PORTNAME}/${DISTVERSION} -NO_STAGE= yes - .include +.if ${OPSYS} == FreeBSD # FreeBSD 10 is unsupported .if ${OSVERSION} >= 1000000 IGNORE= is unsupported on FreeBSD 10 @@ -35,21 +34,17 @@ VER= 8 .if ${OSVERSION} >= 900000 VER= 9 .endif - -.if empty(PHP_VERSION) -PHP_VERSION!= ${MAKE} -C ${PORTSDIR}/${PHP_PORT} -V PORTVERSION +.else +IGNORE= is unsupported on ${OPSYS} .endif PHP_INSTVER= ${PHP_VERSION:C/^([0-9]+\.[0-9]+).*/\1/} do-install: - @${MKDIR} ${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ ${INSTALL_DATA} ${WRKSRC}/ioncube_loader_fre_${PHP_INSTVER}.so \ - ${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader.so + ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader.so ${INSTALL_DATA} ${WRKSRC}/ioncube_loader_fre_${PHP_INSTVER}_ts.so \ - ${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader_ts.so - -post-install: - @${CAT} ${PKGMESSAGE} + ${STAGEDIR}${PREFIX}/lib/php/${PHP_EXT_DIR}/ioncube/ioncube_loader_ts.so .include Modified: head/devel/ioncube/distinfo ============================================================================== --- head/devel/ioncube/distinfo Sat Jan 25 15:17:56 2014 (r341042) +++ head/devel/ioncube/distinfo Sat Jan 25 15:35:43 2014 (r341043) @@ -1,8 +1,8 @@ -SHA256 (ioncube/4.5.0/ioncube_loaders_fre_8_x86-64.tar.bz2) = 00a4dbd78b2912a9f0614c4efb3171ab5514ad850a8409bb17ce3e7d0dbb870e -SIZE (ioncube/4.5.0/ioncube_loaders_fre_8_x86-64.tar.bz2) = 4286047 -SHA256 (ioncube/4.5.0/ioncube_loaders_fre_8_x86.tar.bz2) = c7d71b7e2ceaec6e55d4903e7260955b1fd20028bbff2f86cd4f3d73662375bd -SIZE (ioncube/4.5.0/ioncube_loaders_fre_8_x86.tar.bz2) = 4163909 -SHA256 (ioncube/4.5.0/ioncube_loaders_fre_9_x86-64.tar.bz2) = f5a89b020fdf5162c14526ea0ca795c056615b9d048579cf17fa270d04d1bb58 -SIZE (ioncube/4.5.0/ioncube_loaders_fre_9_x86-64.tar.bz2) = 4403538 -SHA256 (ioncube/4.5.0/ioncube_loaders_fre_9_x86.tar.bz2) = 8ee59169ad36175092dbcfb49af7ac9da604b0a79f645f3476f67e8a6f08366e -SIZE (ioncube/4.5.0/ioncube_loaders_fre_9_x86.tar.bz2) = 4144589 +SHA256 (ioncube/4.5.1/ioncube_loaders_fre_8_x86-64.tar.bz2) = 215b583a10a1caf1d3b5838e3536803f6937ec458d541b0970250fcc1c844d53 +SIZE (ioncube/4.5.1/ioncube_loaders_fre_8_x86-64.tar.bz2) = 4351370 +SHA256 (ioncube/4.5.1/ioncube_loaders_fre_8_x86.tar.bz2) = 15d7fbcb10091c8dbff16938201a2ae6cc77857391ce7852862b0e7b2442e8bc +SIZE (ioncube/4.5.1/ioncube_loaders_fre_8_x86.tar.bz2) = 4125316 +SHA256 (ioncube/4.5.1/ioncube_loaders_fre_9_x86-64.tar.bz2) = 2990bfd08f247ecf0dfaf9cbfd584a558a2aaad30a013473b14954686eb1055b +SIZE (ioncube/4.5.1/ioncube_loaders_fre_9_x86-64.tar.bz2) = 4528536 +SHA256 (ioncube/4.5.1/ioncube_loaders_fre_9_x86.tar.bz2) = f9415dda250af994929c7eefaea721d9b40f911c0fbff256b267c177f5527258 +SIZE (ioncube/4.5.1/ioncube_loaders_fre_9_x86.tar.bz2) = 4126011 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:18:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D004E5C1; Sat, 25 Jan 2014 16:18:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BBBDB1DF3; Sat, 25 Jan 2014 16:18:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGIVUe086000; Sat, 25 Jan 2014 16:18:31 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGIVLS085999; Sat, 25 Jan 2014 16:18:31 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251618.s0PGIVLS085999@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:18:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341046 - in head/graphics/gkrellkam2: . 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.17 Precedence: list List-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, 25 Jan 2014 16:18:31 -0000 Author: miwi Date: Sat Jan 25 16:18:31 2014 New Revision: 341046 URL: http://svnweb.freebsd.org/changeset/ports/341046 QAT: https://qat.redports.org/buildarchive/r341046/ Log: - Support CC properly - Add LICENSE - Stage support PR: 185346 Submitted by: ports fury Deleted: head/graphics/gkrellkam2/files/patch-aa Modified: head/graphics/gkrellkam2/Makefile Modified: head/graphics/gkrellkam2/Makefile ============================================================================== --- head/graphics/gkrellkam2/Makefile Sat Jan 25 16:17:42 2014 (r341045) +++ head/graphics/gkrellkam2/Makefile Sat Jan 25 16:18:31 2014 (r341046) @@ -6,23 +6,33 @@ PORTVERSION= 2.0.0 PORTREVISION= 12 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}2/${PORTVERSION} +PKGNAMESUFFIX= 2 DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= GKrellM plugin that display thumbnails of periodically updated images -BUILD_DEPENDS= ${LOCALBASE}/include/gkrellm2/gkrellm.h:${PORTSDIR}/sysutils/gkrellm2 -RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm2 +LICENSE= GPLv2 # (or later) + +BUILD_DEPENDS= gkrellm2>0:${PORTSDIR}/sysutils/gkrellm2 +RUN_DEPENDS= gkrellm2>0:${PORTSDIR}/sysutils/gkrellm2 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + USES= gmake pkgconfig -LATEST_LINK= gkrellkam2 -MAN5= gkrellkam-list.5 -PLIST_FILES= libexec/gkrellm2/plugins/gkrellkam2.so +PLIST_FILES= libexec/gkrellm2/plugins/gkrellkam2.so \ + man/man5/gkrellkam-list.5.gz -MAKE_ENV+= MKDIR="${MKDIR}" \ - INSTALL_DATA="${INSTALL_DATA}" +post-patch: + @${REINPLACE_CMD} -e \ + 's|gcc|$$(CC)|' ${WRKSRC}/Makefile + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/gkrellm2/plugins + (cd ${WRKSRC} && ${INSTALL_LIB} gkrellkam2.so \ + ${STAGEDIR}${PREFIX}/libexec/gkrellm2/plugins) + (cd ${WRKSRC} && ${INSTALL_MAN} gkrellkam-list.5 \ + ${STAGEDIR}${MAN5PREFIX}/man/man5) -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:29:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D8AF868; Sat, 25 Jan 2014 16:29:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D3F91E86; Sat, 25 Jan 2014 16:29:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGTgVh090267; Sat, 25 Jan 2014 16:29:42 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGTgBG090264; Sat, 25 Jan 2014 16:29:42 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201401251629.s0PGTgBG090264@svn.freebsd.org> From: John Marino Date: Sat, 25 Jan 2014 16:29:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341048 - in head/emulators/dynamips-community: . 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.17 Precedence: list List-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, 25 Jan 2014 16:29:43 -0000 Author: marino Date: Sat Jan 25 16:29:42 2014 New Revision: 341048 URL: http://svnweb.freebsd.org/changeset/ports/341048 QAT: https://qat.redports.org/buildarchive/r341048/ Log: emulations/dynamips-community: Update to 0.2.10, support stage Additionally from marino@: * Use OPSYS with OVERSION * Properly set LIB_DEPENDS * Treat x86-64 like amd64 * Fixed line ending on pkg-descr PR: ports/185642 Submitted by: maintainer (Pavel Volkov) Fixed by: marino@ Deleted: head/emulators/dynamips-community/files/ Modified: head/emulators/dynamips-community/Makefile head/emulators/dynamips-community/distinfo head/emulators/dynamips-community/pkg-descr Modified: head/emulators/dynamips-community/Makefile ============================================================================== --- head/emulators/dynamips-community/Makefile Sat Jan 25 16:18:54 2014 (r341047) +++ head/emulators/dynamips-community/Makefile Sat Jan 25 16:29:42 2014 (r341048) @@ -2,44 +2,42 @@ # $FreeBSD$ PORTNAME= dynamips -PORTVERSION= 0.2.8 +PORTVERSION= 0.2.10 CATEGORIES= emulators -MASTER_SITES= SF/gns-3/Dynamips/${PORTVERSION}-RC3${PKGNAMESUFFIX} +MASTER_SITES= SF/gns-3/Dynamips/${PORTVERSION} PKGNAMESUFFIX= -community -DISTNAME= ${PORTNAME}-${PORTVERSION}-RC3${PKGNAMESUFFIX} +DISTNAME= ${PORTNAME}-${PORTVERSION}-source -MAINTAINER= pavelivolkov@googlemail.com +MAINTAINER= pavelivolkov@gmail.com COMMENT= Cisco 1700/2600/3600/3700/7200 Simulator -LIB_DEPENDS= elf.0:${PORTSDIR}/devel/libelf \ - uuid.1:${PORTSDIR}/misc/e2fsprogs-libuuid - LICENSE= GPLv2 +LIB_DEPENDS= libelf.so:${PORTSDIR}/devel/libelf \ + libuuid.so:${PORTSDIR}/misc/e2fsprogs-libuuid + CONFLICTS= dynamips-[0-9]* dynamips-devel-[0-9]* -USE_GMAKE= yes +USES= gmake +USE_ZIP= yes MAKE_JOBS_UNSAFE= yes -OPTIONS_DEFINE= UNSTABLE +OPTIONS_DEFINE= DOCS UNSTABLE UNSTABLE_DESC= development code (x64 Mac) LDFLAGS+= -luuid -MAKE_ENV= \ - DYNAMIPS_CODE=${DYNAMIPS_CODE} \ +MAKE_ENV= DYNAMIPS_CODE=${DYNAMIPS_CODE} \ DYNAMIPS_ARCH=${DYNAMIPS_ARCH} \ PTHREAD_CFLAGS=${PTHREAD_CFLAGS} \ PTHREAD_LIBS=${PTHREAD_LIBS} -NO_STAGE= yes .include -PLIST_FILES= bin/${PORTNAME} bin/nvram_export +PLIST_FILES= bin/${PORTNAME} bin/nvram_export \ + man/man1/${PORTNAME}.1.gz man/man1/nvram_export.1.gz \ + man/man7/hypervisor_mode.7.gz + PORTDOCS= * -.if !defined(NO_INSTALL_MANPAGES) -MAN1= ${PORTNAME}.1 nvram_export.1 -MAN7= hypervisor_mode.7 -.endif .if ${PORT_OPTIONS:MUNSTABLE} DYNAMIPS_CODE= "unstable" @@ -47,32 +45,39 @@ DYNAMIPS_CODE= "unstable" DYNAMIPS_CODE= "stable" .endif +DYNAMIPS_ARCH= "nojit" + .if ${ARCH} == "i386" DYNAMIPS_ARCH= "x86" -.elif ${ARCH} == "amd64" +.elif ${ARCH} == "amd64" || ${ARCH} == "x86_64" DYNAMIPS_ARCH= "amd64" -.elif ${ARCH} == "sparc64" -BROKEN= Does not compile -.elif ${ARCH} == "powerpc" +.elif ${ARCH} == "powerpc" && ${DYNAMIPS_CODE} == "unstable" DYNAMIPS_ARCH= "ppc32" -BROKEN= Does not compile: uses i386 asm -.else +.endif + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 DYNAMIPS_ARCH= "nojit" .endif +#BROKEN_ia64= does not compile: invokes i386 assembler +#BROKEN_sparc64= ${BROKEN_ia64} +#BROKEN_powerpc= ${BROKEN_ia64} + +.include + do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.${DYNAMIPS_CODE} ${PREFIX}/bin/${PORTNAME} - ${INSTALL_PROGRAM} ${WRKSRC}/${DYNAMIPS_CODE}/nvram_export ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.${DYNAMIPS_CODE} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_PROGRAM} ${WRKSRC}/${DYNAMIPS_CODE}/nvram_export ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/man/nvram_export.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/man/hypervisor_mode.7 ${STAGEDIR}${MANPREFIX}/man/man7 + +post-install: .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README.community ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README.hypervisor ${DOCSDIR} -.endif -.if !defined(NO_INSTALL_MANPAGES) - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/nvram_export.1 ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/hypervisor_mode.7 ${PREFIX}/man/man7 + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.hypervisor ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/RELEASE-NOTES ${STAGEDIR}${DOCSDIR} .endif -.include +.include Modified: head/emulators/dynamips-community/distinfo ============================================================================== --- head/emulators/dynamips-community/distinfo Sat Jan 25 16:18:54 2014 (r341047) +++ head/emulators/dynamips-community/distinfo Sat Jan 25 16:29:42 2014 (r341048) @@ -1,2 +1,2 @@ -SHA256 (dynamips-0.2.8-RC3-community.tar.gz) = e808a50b6b9d24a90604885f90699f46b26a49e6ce9cf542aa288f135b2508ac -SIZE (dynamips-0.2.8-RC3-community.tar.gz) = 818199 +SHA256 (dynamips-0.2.10-source.zip) = d62f739547134aeb0ee5a6b28a52772ae79a93cb6426b712cbddc72cb0b7ba44 +SIZE (dynamips-0.2.10-source.zip) = 966018 Modified: head/emulators/dynamips-community/pkg-descr ============================================================================== --- head/emulators/dynamips-community/pkg-descr Sat Jan 25 16:18:54 2014 (r341047) +++ head/emulators/dynamips-community/pkg-descr Sat Jan 25 16:29:42 2014 (r341048) @@ -1,3 +1,3 @@ Cisco 1700/2600/3600/3700/7200 simulator. -WWW: http://www.gns3.net/content/dynamips-028-rc3-community-version-released +WWW: http://www.gns3.net/dynamips/ From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:30:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A209D97D; Sat, 25 Jan 2014 16:30:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E19D1E95; Sat, 25 Jan 2014 16:30:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGUmVp091016; Sat, 25 Jan 2014 16:30:48 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGUmm9091014; Sat, 25 Jan 2014 16:30:48 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401251630.s0PGUmm9091014@svn.freebsd.org> From: Mathieu Arnold Date: Sat, 25 Jan 2014 16:30:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341049 - head/security/p5-Mcrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 16:30:48 -0000 Author: mat Date: Sat Jan 25 16:30:47 2014 New Revision: 341049 URL: http://svnweb.freebsd.org/changeset/ports/341049 QAT: https://qat.redports.org/buildarchive/r341049/ Log: - add license - Support stage PR: ports/186069 Submitted by: Tatsuki Makino Modified: head/security/p5-Mcrypt/Makefile head/security/p5-Mcrypt/pkg-plist Modified: head/security/p5-Mcrypt/Makefile ============================================================================== --- head/security/p5-Mcrypt/Makefile Sat Jan 25 16:29:42 2014 (r341048) +++ head/security/p5-Mcrypt/Makefile Sat Jan 25 16:30:47 2014 (r341049) @@ -11,14 +11,15 @@ PKGNAMEPREFIX= p5- MAINTAINER= tatsuki_makino@hotmail.com COMMENT= Perl extension for the Mcrypt cryptography library +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + LIB_DEPENDS= libmcrypt.so:${PORTSDIR}/security/libmcrypt CONFIGURE_ENV= MCRYPT_CPPFLAGS=${CPPFLAGS} -CPPFLAGS+= -I${LOCALBASE}/include USE_PERL5= configure USES= perl5 -MAN3= Mcrypt.3 +CPPFLAGS+= -I${LOCALBASE}/include -NO_STAGE= yes .include Modified: head/security/p5-Mcrypt/pkg-plist ============================================================================== --- head/security/p5-Mcrypt/pkg-plist Sat Jan 25 16:29:42 2014 (r341048) +++ head/security/p5-Mcrypt/pkg-plist Sat Jan 25 16:30:47 2014 (r341049) @@ -1,6 +1,15 @@ +%%PERL5_MAN3%%/Mcrypt.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/Mcrypt.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Mcrypt/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Mcrypt/Mcrypt.bs %%SITE_PERL%%/%%PERL_ARCH%%/auto/Mcrypt/Mcrypt.so %%SITE_PERL%%/%%PERL_ARCH%%/auto/Mcrypt/autosplit.ix @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Mcrypt +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%% +@dirrmtry %%SITE_PERL%% +@dirrmtry lib/perl5/site_perl +@dirrmtry %%PERL5_MAN3%% +@dirrmtry lib/perl5/%%PERL_VER%%/man +@dirrmtry lib/perl5/%%PERL_VER%% +@dirrmtry lib/perl5 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:39:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A9D5CDA; Sat, 25 Jan 2014 16:39:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A3FD1F2E; Sat, 25 Jan 2014 16:39:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGdrIb094125; Sat, 25 Jan 2014 16:39:53 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGdqWl094123; Sat, 25 Jan 2014 16:39:52 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201401251639.s0PGdqWl094123@svn.freebsd.org> From: Alex Kozlov Date: Sat, 25 Jan 2014 16:39:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341050 - head/www/privoxy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 16:39:53 -0000 Author: ak Date: Sat Jan 25 16:39:52 2014 New Revision: 341050 URL: http://svnweb.freebsd.org/changeset/ports/341050 QAT: https://qat.redports.org/buildarchive/r341050/ Log: - Fix pkg-plist [1] - Use options helpers - Unmute install commands - Unconditionally install files for DOCS/PRIVOXY_TOOLS options PR: ports/186077 [1] Submitted by: Fabian Keil (maintainer) [1] Modified: head/www/privoxy/Makefile head/www/privoxy/pkg-plist Modified: head/www/privoxy/Makefile ============================================================================== --- head/www/privoxy/Makefile Sat Jan 25 16:30:47 2014 (r341049) +++ head/www/privoxy/Makefile Sat Jan 25 16:39:52 2014 (r341050) @@ -47,46 +47,25 @@ TOGGLE_DESC= Support for remote togglin OPTIONS_DEFAULT= BROKEN_STRPTIME EDITOR DOCS FORCE TOGGLE -.include +OPTIONS_SUB= yes -.if ${PORT_OPTIONS:MACCEPT_FILTER} -CONFIGURE_ARGS+= --enable-accept-filter -.endif - -.if ${PORT_OPTIONS:MCOMPRESSION} -CONFIGURE_ARGS+= --enable-compression -.endif - -.if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+= --with-debug -.endif - -.if ! ${PORT_OPTIONS:MEDITOR} -CONFIGURE_ARGS+= --disable-editor -.endif - -.if ! ${PORT_OPTIONS:MFORCE} -CONFIGURE_ARGS+= --disable-force -.endif - -.if ${PORT_OPTIONS:MBROKEN_STRPTIME} -CONFIGURE_ARGS+= --enable-strptime-sanity-checks -.endif - -.if ! ${PORT_OPTIONS:MTOGGLE} -CONFIGURE_ARGS+= --disable-toggle -.endif - -.if ${PORT_OPTIONS:MPRIVOXY_TOOLS} -USES+= perl5 -USE_PERL5= run -RUN_DEPENDS+= curl:${PORTSDIR}/ftp/curl -PLIST_SUB+= PRIVOXY_TOOLS="" -.else -PLIST_SUB+= PRIVOXY_TOOLS="@comment " -.endif +ACCEPT_FILTER_CONFIGURE_ON= --enable-accept-filter -PLIST_SUB+= MAN1PREFIX=${MAN1PREFIX} +BROKEN_STRPTIME_CONFIGURE_ON= --enable-strptime-sanity-checks + +COMPRESSION_CONFIGURE_ON= --enable-compression + +DEBUG_CONFIGURE_ON= --with-debug + +EDITOR_CONFIGURE_OFF= --disable-editor + +FORCE_CONFIGURE_OFF= --disable-force + +TOGGLE_CONFIGURE_OFF= --disable-toggle + +PRIVOXY_TOOLS_USES= perl5 +PRIVOXY_TOOLS_USE= PERL5=run +PRIVOXY_TOOLS_RUN_DEPENDS= curl:${PORTSDIR}/ftp/curl post-patch: ${REINPLACE_CMD} \ @@ -94,39 +73,33 @@ post-patch: -e 's,^\(logdir\) \.,\1 /var/log/privoxy,' \ -e 's,^\(actionsfile user\),#\1,' \ -e 's,^\(filterfile user\),#\1,' \ - ${WRKSRC}/config -.if ${PORT_OPTIONS:MDOCS} + ${WRKSRC}/config ${REINPLACE_CMD} \ -e 's,^#\(user-manual\) http://www.privoxy.org/user-manual/,\1 ${DOCSDIR}/user-manual,' \ - ${WRKSRC}/config -.endif + ${WRKSRC}/config ${REINPLACE_CMD} \ -e 's,\(/etc/privoxy\),${PREFIX}\1,' ${WRKSRC}/tools/uagen.pl pre-configure: - @cd ${WRKSRC}; ${AUTOHEADER} + @(cd ${WRKSRC}; ${AUTOHEADER}) do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/privoxy/templates - @${INSTALL_PROGRAM} ${WRKSRC}/privoxy ${STAGEDIR}${PREFIX}/sbin - @${INSTALL_DATA} ${WRKSRC}/templates/[a-z]* ${STAGEDIR}${PREFIX}/etc/privoxy/templates -.if ${PORT_OPTIONS:MPRIVOXY_TOOLS} + ${INSTALL_PROGRAM} ${WRKSRC}/privoxy ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_DATA} ${WRKSRC}/templates/[a-z]* ${STAGEDIR}${PREFIX}/etc/privoxy/templates .for privoxy_tool in privoxy-log-parser.pl privoxy-regression-test.pl uagen.pl - @${INSTALL_SCRIPT} ${WRKSRC}/tools/${privoxy_tool} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/tools/${privoxy_tool} ${STAGEDIR}${PREFIX}/bin .endfor -.endif .for defaultfile in default.action default.filter regression-tests.action - @${INSTALL_DATA} ${WRKSRC}/${defaultfile} ${STAGEDIR}${PREFIX}/etc/privoxy + ${INSTALL_DATA} ${WRKSRC}/${defaultfile} ${STAGEDIR}${PREFIX}/etc/privoxy .endfor @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for examplefile in config match-all.action trust user.action - @${INSTALL_DATA} ${WRKSRC}/${examplefile} ${STAGEDIR}${EXAMPLESDIR}/ + ${INSTALL_DATA} ${WRKSRC}/${examplefile} ${STAGEDIR}${EXAMPLESDIR}/ .endfor - @${INSTALL_MAN} ${WRKSRC}/privoxy.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 -.if ${PORT_OPTIONS:MDOCS} + ${INSTALL_MAN} ${WRKSRC}/privoxy.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${DOCSDIR}/user-manual - @${INSTALL_DATA} ${WRKSRC}/doc/webserver/user-manual/[a-z]* ${STAGEDIR}${DOCSDIR}/user-manual - @${INSTALL_DATA} ${WRKSRC}/doc/webserver/p_doc.css ${STAGEDIR}${DOCSDIR}/user-manual -.endif + ${INSTALL_DATA} ${WRKSRC}/doc/webserver/user-manual/[a-z]* ${STAGEDIR}${DOCSDIR}/user-manual + ${INSTALL_DATA} ${WRKSRC}/doc/webserver/p_doc.css ${STAGEDIR}${DOCSDIR}/user-manual .include Modified: head/www/privoxy/pkg-plist ============================================================================== --- head/www/privoxy/pkg-plist Sat Jan 25 16:30:47 2014 (r341049) +++ head/www/privoxy/pkg-plist Sat Jan 25 16:39:52 2014 (r341050) @@ -2,7 +2,7 @@ %%PRIVOXY_TOOLS%%bin/privoxy-regression-test.pl %%PRIVOXY_TOOLS%%bin/uagen.pl sbin/privoxy -%%MAN1PREFIX%%/man/man1/privoxy.1.gz +man/man1/privoxy.1.gz etc/privoxy/default.action etc/privoxy/default.filter etc/privoxy/regression-tests.action From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:45:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B161FE43; Sat, 25 Jan 2014 16:45:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 83ECB1FBB; Sat, 25 Jan 2014 16:45:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGj1MC097301; Sat, 25 Jan 2014 16:45:01 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGj1eO097300; Sat, 25 Jan 2014 16:45:01 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251645.s0PGj1eO097300@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:45:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341051 - in head/databases/wmjsql: . 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.17 Precedence: list List-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, 25 Jan 2014 16:45:01 -0000 Author: miwi Date: Sat Jan 25 16:45:01 2014 New Revision: 341051 URL: http://svnweb.freebsd.org/changeset/ports/341051 QAT: https://qat.redports.org/buildarchive/r341051/ Log: - Fix build on -current - Add LICENSE - Support PLIST_FILES - Stage support PR: 184833 Submitted by: ports fury Deleted: head/databases/wmjsql/files/ head/databases/wmjsql/pkg-plist Modified: head/databases/wmjsql/Makefile Modified: head/databases/wmjsql/Makefile ============================================================================== --- head/databases/wmjsql/Makefile Sat Jan 25 16:39:52 2014 (r341050) +++ head/databases/wmjsql/Makefile Sat Jan 25 16:45:01 2014 (r341051) @@ -11,32 +11,41 @@ MASTER_SITES= http://www.dockapps.org/fi MAINTAINER= ports@FreeBSD.org COMMENT= MySQL server status displaying dockapp -USE_MYSQL= yes +LICENSE= GPLv2 # (or later) + +WRKSRC= ${WRKDIR}/${PORTNAME}/src + USES= gmake +USE_MYSQL= yes USE_XORG= xpm - ALL_TARGET= clean all MAKE_JOBS_UNSAFE= yes -WRKSRC= ${WRKDIR}/${PORTNAME}/src +CPPFLAGS+= -I${LOCALBASE}/include/X11 -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib/mysql -L${LOCALBASE}/lib + +PORTDOCS= README +PLIST_FILES= bin/${PORTNAME} -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} -e 's,^INCDIR.*$$,INCDIR = -I${PREFIX}/include/X11 \ - -I${PREFIX}/include -I${LOCALBASE}/include,' \ - -e 's,^LIBDIR.*$$,LIBDIR = -L${PREFIX}/lib \ - -L${LOCALBASE}/lib/mysql,' -e '/^CC/d; /^CFLAGS/d' \ - -e 's,-D$$(shell echo `uname -s`),,' ${WRKSRC}/Makefile \ - ${WRKSRC}/jDockApp/Makefile ${WRKSRC}/xutils/Makefile - @${REINPLACE_CMD} -E 's,\.wmjsql([^r]),\.wmjsqlrc\1,' \ - ${WRKSRC}/wmjsql.jet ${WRKSRC}/../README +.for i in Makefile jDockApp/Makefile xutils/Makefile + @${REINPLACE_CMD} -e \ + '/^INCDIR/s|=.*|= $${CPPFLAGS}| ; \ + /^LIBDIR/s|=.*|= $${LDFLAGS}| ; \ + /^CC/d ; \ + /^CFLAGS/d ; \ + s| make | $$(MAKE) | ; \ + s|-D$$(shell echo `uname -s`)||' ${WRKSRC}/${i} +.endfor +.for i in wmjsql.jet ../README + @${REINPLACE_CMD} -E 's|\.wmjsql([^r])|\.wmjsqlrc\1|' \ + ${WRKSRC}/${i} +.endfor do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/../README ${DOCSDIR} -.endif + (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} \ + ${STAGEDIR}${PREFIX}/bin) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/.. && ${INSTALL_DATA} README ${STAGEDIR}${DOCSDIR}) .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:46:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D901CF29; Sat, 25 Jan 2014 16:46:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ABE481FC3; Sat, 25 Jan 2014 16:46:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGkfsr097584; Sat, 25 Jan 2014 16:46:41 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGkf1R097581; Sat, 25 Jan 2014 16:46:41 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251646.s0PGkf1R097581@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:46:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341052 - in head/textproc/ssddiff: . 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.17 Precedence: list List-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, 25 Jan 2014 16:46:41 -0000 Author: miwi Date: Sat Jan 25 16:46:40 2014 New Revision: 341052 URL: http://svnweb.freebsd.org/changeset/ports/341052 QAT: https://qat.redports.org/buildarchive/r341052/ Log: - Fix build PR: 184870 Submitted by: Ports Fury Added: head/textproc/ssddiff/files/ head/textproc/ssddiff/files/patch-src__rel_count.h (contents, props changed) head/textproc/ssddiff/files/patch-src__ustring.h (contents, props changed) Modified: head/textproc/ssddiff/Makefile Modified: head/textproc/ssddiff/Makefile ============================================================================== --- head/textproc/ssddiff/Makefile Sat Jan 25 16:45:01 2014 (r341051) +++ head/textproc/ssddiff/Makefile Sat Jan 25 16:46:40 2014 (r341052) @@ -8,23 +8,28 @@ CATEGORIES= textproc MASTER_SITES= http://alioth.debian.org/frs/download.php/1469/ MAINTAINER= ports@FreeBSD.org -COMMENT= A diff application for semistructured data such as XML files +COMMENT= Diff application for semistructured data such as XML files + +LICENSE= GPLv2 # (or later) -USE_AUTOTOOLS= automake14 USE_BZIP2= yes USES= pkgconfig -USE_GNOME= libxml2 -MAKE_ARGS= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \ - CPPFLAGS="-I${LOCALBASE}/include \ - -I${LOCALBASE}/include/libxml2" +USE_GNOME= libxml2 +USE_GCC= any +USE_AUTOTOOLS= automake14 + PLIST_FILES= bin/xmldiff -NO_STAGE= yes post-extract: + @${FIND} ${WRKSRC} -type l -delete + +post-patch: .for f in config.guess config.sub install-sh missing mkinstalldirs @${LN} -sf ${AUTOMAKE_DIR}/${f} ${WRKSRC}/${f} .endfor - @${REINPLACE_CMD} -e 's,"getopt\.h",,' \ - ${WRKSRC}/src/main.cc + @${REINPLACE_CMD} -e \ + 's|^CXXFLAGS|AM_CPPFLAGS|' ${WRKSRC}/src/Makefile.am + @${REINPLACE_CMD} -e \ + 's|"getopt\.h"||' ${WRKSRC}/src/main.cc .include Added: head/textproc/ssddiff/files/patch-src__rel_count.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/ssddiff/files/patch-src__rel_count.h Sat Jan 25 16:46:40 2014 (r341052) @@ -0,0 +1,10 @@ +--- src/rel_count.h.orig ++++ src/rel_count.h +@@ -13,6 +13,7 @@ + #define SSD_REL_COUNT_H + #include "config.h" + #include "rel_eqclass.h" ++#include + #include + #include + Added: head/textproc/ssddiff/files/patch-src__ustring.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/ssddiff/files/patch-src__ustring.h Sat Jan 25 16:46:40 2014 (r341052) @@ -0,0 +1,10 @@ +--- src/ustring.h.orig ++++ src/ustring.h +@@ -14,6 +14,7 @@ + + #include "config.h" + ++#include + #include + #include + #include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:48:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 466AB97; Sat, 25 Jan 2014 16:48:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 323BF1FD4; Sat, 25 Jan 2014 16:48:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGm7o8097874; Sat, 25 Jan 2014 16:48:07 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGm6hk097868; Sat, 25 Jan 2014 16:48:06 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251648.s0PGm6hk097868@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:48:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341053 - in head/biology/ssaha: . 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.17 Precedence: list List-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, 25 Jan 2014 16:48:07 -0000 Author: miwi Date: Sat Jan 25 16:48:05 2014 New Revision: 341053 URL: http://svnweb.freebsd.org/changeset/ports/341053 QAT: https://qat.redports.org/buildarchive/r341053/ Log: - Fix build on -current - Update MASTER_SITES and WWW: line - Support CXX/CXXFLAGS properly - Support PLIST_FILES - Stage support PR: 184852 Submitted by: Ports Fury Deleted: head/biology/ssaha/pkg-plist Modified: head/biology/ssaha/Makefile head/biology/ssaha/files/patch-GlobalDefinitions.h head/biology/ssaha/files/patch-SSAHAMain.h head/biology/ssaha/files/patch-makefile head/biology/ssaha/pkg-descr Modified: head/biology/ssaha/Makefile ============================================================================== --- head/biology/ssaha/Makefile Sat Jan 25 16:46:40 2014 (r341052) +++ head/biology/ssaha/Makefile Sat Jan 25 16:48:05 2014 (r341053) @@ -3,29 +3,39 @@ PORTNAME= ssaha PORTVERSION= 3.1c -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= biology -MASTER_SITES= http://www.sanger.ac.uk/Software/analysis/${PORTNAME:U}/ +MASTER_SITES= ftp://ftp.sanger.ac.uk/pub4/resources/software/ssaha/ DISTNAME= ${PORTNAME}_v${PORTVERSION:S/.//} MAINTAINER= ports@FreeBSD.org COMMENT= Very fast matching and alignment of DNA sequences NO_WRKSUBDIR= yes +BUILD_WRKSRC= ${WRKSRC}/Binary -USE_GMAKE= yes +USES= gmake +USE_GCC= any +MAKE_ENV= CCC="${CXX}" OPTIM="${CXXFLAGS}" THREAD_LIB="-pthread" MAKEFILE= makefile -BUILD_WRKSRC= ${WRKDIR}/Binary ALL_TARGET= ssaha +PLIST_FILES= bin/ssaha %%DATADIR%%/testSSAHA.csh \ + ${DATA_FILES:S,^,%%DATADIR%%/,} +PLIST_DIRS= %%DATADIR%% + DATA_FILES= test.fasta test_extract.fasta test_filter.fail \ test_filter.fastq test_protein.fasta README -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/ssaha ${PREFIX}/bin - @${MKDIR} ${DATADIR} - ${INSTALL_SCRIPT} ${BUILD_WRKSRC}/testSSAHA.csh ${DATADIR}/ - ${INSTALL_DATA} ${DATA_FILES:S,^,${BUILD_WRKSRC}/,} ${DATADIR}/ + (cd ${BUILD_WRKSRC} && ${INSTALL_PROGRAM} ssaha \ + ${STAGEDIR}${PREFIX}/bin) + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${BUILD_WRKSRC} && ${INSTALL_SCRIPT} testSSAHA.csh \ + ${STAGEDIR}${DATADIR}) +.for i in ${DATA_FILES} + (cd ${BUILD_WRKSRC} && ${INSTALL_DATA} ${i} \ + ${STAGEDIR}${DATADIR}) +.endfor .include Modified: head/biology/ssaha/files/patch-GlobalDefinitions.h ============================================================================== --- head/biology/ssaha/files/patch-GlobalDefinitions.h Sat Jan 25 16:46:40 2014 (r341052) +++ head/biology/ssaha/files/patch-GlobalDefinitions.h Sat Jan 25 16:48:05 2014 (r341053) @@ -1,6 +1,16 @@ --- ./Global/GlobalDefinitions.h.orig 2004-03-01 13:51:28.000000000 -0300 +++ ./Global/GlobalDefinitions.h 2008-06-12 15:39:31.000000000 -0300 -@@ -726,8 +726,6 @@ +@@ -79,7 +79,8 @@ + #include + #include + #include +-#include ++#include ++#include + #include + #include + #include +@@ -726,8 +727,6 @@ template class Allocator { public: @@ -9,7 +19,7 @@ Allocator( T** ptr, const string& name, ostream& monStream=cerr ) : ptr_(ptr), name_(name), size_(0), isAllocated_(false), monStream_( monStream ) -@@ -788,32 +786,34 @@ +@@ -788,32 +787,34 @@ virtual void allocate( unsigned long size ) { @@ -53,7 +63,7 @@ } protected: }; -@@ -892,7 +892,7 @@ +@@ -892,7 +893,7 @@ if (isAllocated_) return; mode_ = MemoryMapper::createMap; size_ = size; @@ -62,7 +72,7 @@ isAllocated_ = true; } -@@ -908,7 +908,7 @@ +@@ -908,7 +909,7 @@ if (isAllocated_) return; mode_ = MemoryMapper::readMap; size_ = size; @@ -71,7 +81,7 @@ isAllocated_ = true; } -@@ -921,7 +921,7 @@ +@@ -921,7 +922,7 @@ virtual void deallocate() { if (!isAllocated_) return; Modified: head/biology/ssaha/files/patch-SSAHAMain.h ============================================================================== --- head/biology/ssaha/files/patch-SSAHAMain.h Sat Jan 25 16:46:40 2014 (r341052) +++ head/biology/ssaha/files/patch-SSAHAMain.h Sat Jan 25 16:48:05 2014 (r341053) @@ -1,6 +1,14 @@ --- ./Global/SSAHAMain.h.orig 2004-03-01 13:51:28.000000000 -0300 +++ ./Global/SSAHAMain.h 2008-06-12 15:39:31.000000000 -0300 -@@ -131,7 +131,7 @@ +@@ -41,6 +41,7 @@ + #include + #include + #include ++#include + class SequenceReaderMulti; + class SequenceReader; + class HashTable; +@@ -131,7 +132,7 @@ -1, // int queryEnd; -1, // int wordLength; -1, // int stepLength; @@ -9,7 +17,7 @@ 1, // int minToPrint; -1, // int maxGap; 0, // int maxInsert; -@@ -174,6 +174,7 @@ +@@ -174,6 +175,7 @@ CommandLineArg( const string& nameLong, const string& nameShort ) : nameLong_( nameLong ), nameShort_( nameShort ) {} Modified: head/biology/ssaha/files/patch-makefile ============================================================================== --- head/biology/ssaha/files/patch-makefile Sat Jan 25 16:46:40 2014 (r341052) +++ head/biology/ssaha/files/patch-makefile Sat Jan 25 16:48:05 2014 (r341053) @@ -13,3 +13,18 @@ GLOBAL_DIR=${SSAHA_TOP_DIR}/Global SEQ_DIR=${SSAHA_TOP_DIR}/SequenceReader +@@ -22,12 +22,12 @@ + QUERY_DIR=${SSAHA_TOP_DIR}/QueryManager + EXEC_DIR=${SSAHA_TOP_DIR}/Executables + +-CCC = g++ ++CCC ?= g++ + # !!!! change -g to -O3 before making deliverable %%%% + # NB use -ggdb to get gdb to work + INCLUDE_PATHS = -I${SSAHA_TOP_DIR} \ + -I${GLOBAL_DIR} -I${SEQ_DIR} -I${HASH_DIR} -I${QUERY_DIR} +-OPTIM = -O3 ++OPTIM ?= -O3 + DEBUG_LEVEL = + # DEBUG_LEVEL = -DEBUG_LEVEL1 + # -D_REENTRANT necessary for thread safety - see pthread man page - TC 24.9.1 Modified: head/biology/ssaha/pkg-descr ============================================================================== --- head/biology/ssaha/pkg-descr Sat Jan 25 16:46:40 2014 (r341052) +++ head/biology/ssaha/pkg-descr Sat Jan 25 16:48:05 2014 (r341053) @@ -8,4 +8,4 @@ SSAHA: a fast search method for large DN Ning Z, Cox AJ, Mullikin JC. Genome Res. 11: 1725-9. PMID: 11591649 -WWW: http://www.sanger.ac.uk/Software/analysis/SSAHA/ +WWW: http://www.sanger.ac.uk/resources/software/ssaha/ From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:49:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C9301A8; Sat, 25 Jan 2014 16:49:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D46F1FE2; Sat, 25 Jan 2014 16:49:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGntGg098157; Sat, 25 Jan 2014 16:49:55 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGntnR098153; Sat, 25 Jan 2014 16:49:55 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251649.s0PGntnR098153@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:49:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341054 - in head/benchmarks/postal: . 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.17 Precedence: list List-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, 25 Jan 2014 16:49:56 -0000 Author: miwi Date: Sat Jan 25 16:49:55 2014 New Revision: 341054 URL: http://svnweb.freebsd.org/changeset/ports/341054 QAT: https://qat.redports.org/buildarchive/r341054/ Log: - Fix build - Stage support PR: 184879 Submitted by: Ports Fury Added: head/benchmarks/postal/files/patch-basictcp.h (contents, props changed) head/benchmarks/postal/files/patch-tcp.h (contents, props changed) Deleted: head/benchmarks/postal/files/patch-Makefile.in head/benchmarks/postal/files/patch-configure Modified: head/benchmarks/postal/Makefile Modified: head/benchmarks/postal/Makefile ============================================================================== --- head/benchmarks/postal/Makefile Sat Jan 25 16:48:05 2014 (r341053) +++ head/benchmarks/postal/Makefile Sat Jan 25 16:49:55 2014 (r341054) @@ -15,25 +15,28 @@ LICENSE= GPLv3 OPTIONS_DEFINE= SSL OPTIONS_DEFAULT= SSL -USE_OPENSSL= yes -GNU_CONFIGURE= yes USES= gmake +USE_GCC= any +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-gnutls -PLIST_FILES= sbin/bhm sbin/postal bin/postal-list sbin/rabid - -MAN1= postal-list.1 -MAN8= bhm.8 postal.8 rabid.8 +PLIST_FILES= sbin/bhm sbin/postal bin/postal-list sbin/rabid \ + man/man1/postal-list.1.gz man/man8/bhm.8.gz \ + man/man8/postal.8.gz man/man8/rabid.8.gz -NO_STAGE= yes .include -CONFIGURE_ARGS= --disable-gnutls - -.if empty(PORT_OPTIONS:MSSL) +.if ${PORT_OPTIONS:MSSL} +USE_OPENSSL= yes +.else CONFIGURE_ARGS+= --disable-openssl .endif -CFLAGS+= ${PTHREAD_CFLAGS} -Wno-long-long -LDFLAGS+= ${PTHREAD_LIBS} +post-patch: + @${REINPLACE_CMD} -e \ + 's|-lpthread|-pthread|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e \ + 's|-O2 -g|| ; \ + s|-lstdc|$${LDFLAGS}|' ${WRKSRC}/Makefile.in .include Added: head/benchmarks/postal/files/patch-basictcp.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/postal/files/patch-basictcp.h Sat Jan 25 16:49:55 2014 (r341054) @@ -0,0 +1,14 @@ +--- basictcp.h.orig 2013-12-08 18:49:04.000000000 +0900 ++++ basictcp.h 2013-12-08 18:49:33.000000000 +0900 +@@ -89,7 +89,11 @@ + + #ifdef USE_SSL + #ifdef USE_OPENSSL ++#if defined(OPENSSL_VERSION_NUMBER) && OPENSSL_VERSION_NUMBER >= 0x10000000L ++ const SSL_METHOD *m_sslMeth; ++#else + SSL_METHOD *m_sslMeth; ++#endif + SSL_CTX* m_sslCtx; + SSL *m_ssl; + #else Added: head/benchmarks/postal/files/patch-tcp.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/postal/files/patch-tcp.h Sat Jan 25 16:49:55 2014 (r341054) @@ -0,0 +1,14 @@ +--- tcp.h.orig ++++ tcp.h +@@ -100,7 +100,11 @@ + + #ifdef USE_SSL + #ifdef USE_OPENSSL ++#if defined(OPENSSL_VERSION_NUMBER) && OPENSSL_VERSION_NUMBER >= 0x10000000L ++ const SSL_METHOD *m_sslMeth; ++#else + SSL_METHOD *m_sslMeth; ++#endif + SSL_CTX* m_sslCtx; + SSL *m_ssl; + #else From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:51:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 879F32BE; Sat, 25 Jan 2014 16:51:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 72D7C1082; Sat, 25 Jan 2014 16:51:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGpuVZ001120; Sat, 25 Jan 2014 16:51:56 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGpuaB001119; Sat, 25 Jan 2014 16:51:56 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251651.s0PGpuaB001119@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:51:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341055 - head/devel/pas2dox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 16:51:56 -0000 Author: miwi Date: Sat Jan 25 16:51:55 2014 New Revision: 341055 URL: http://svnweb.freebsd.org/changeset/ports/341055 QAT: https://qat.redports.org/buildarchive/r341055/ Log: - Fix build on - Add LICENSE - Stage support - Switch gmake to USES PR: 184886 Submitted by: Ports Fury Modified: head/devel/pas2dox/Makefile Modified: head/devel/pas2dox/Makefile ============================================================================== --- head/devel/pas2dox/Makefile Sat Jan 25 16:49:55 2014 (r341054) +++ head/devel/pas2dox/Makefile Sat Jan 25 16:51:55 2014 (r341055) @@ -9,22 +9,34 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Preprocessor to use doxygen with Pascal sources +LICENSE= GPLv2 + WRKSRC= ${WRKDIR}/${PORTNAME} -USE_GMAKE= yes +USES= gmake ALL_TARGET= ${PORTNAME} -PLIST_FILES= bin/pas2dox +PLIST_FILES= bin/${PORTNAME} + +.include + +.if ${OSVERSION} < 1000033 +BUILD_DEPENDS= flex>0:${PORTSDIR}/textproc/flex +MAKE_ENV= LEX="${LOCALBASE}/bin/flex" +.endif -NO_STAGE= yes post-patch: - ${REINPLACE_CMD} 's,^CC=.*$$,CC=$${CXX} $${CPPFLAGS} $${CXXFLAGS},' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e \ + 's|^LEX=|LEX?=| ; \ + s|$${CC} $$<|$${CXX} $${CXXFLAGS} $$<|' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e \ + 's|yy_flex_realloc|yyrealloc|' ${WRKSRC}/${PORTNAME}.l pre-build: - ${MAKE} -C ${WRKSRC} clean + @${RM} -f ${WRKSRC}/${PORTNAME}.cpp do-install: - ${MKDIR} ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/pas2dox ${PREFIX}/bin + (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} \ + ${STAGEDIR}${PREFIX}/bin) .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:53:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC8533A9; Sat, 25 Jan 2014 16:53:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B84281092; Sat, 25 Jan 2014 16:53:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGrsHi001410; Sat, 25 Jan 2014 16:53:54 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGrsa7001408; Sat, 25 Jan 2014 16:53:54 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251653.s0PGrsa7001408@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:53:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341056 - in head/games/bastet: . 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.17 Precedence: list List-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, 25 Jan 2014 16:53:55 -0000 Author: miwi Date: Sat Jan 25 16:53:54 2014 New Revision: 341056 URL: http://svnweb.freebsd.org/changeset/ports/341056 QAT: https://qat.redports.org/buildarchive/r341056/ Log: - Fix build - Stage support PR: 184894 Submitted by: ports fury Added: head/games/bastet/files/ head/games/bastet/files/patch-BastetBlockChooser.hpp (contents, props changed) Modified: head/games/bastet/Makefile Modified: head/games/bastet/Makefile ============================================================================== --- head/games/bastet/Makefile Sat Jan 25 16:51:55 2014 (r341055) +++ head/games/bastet/Makefile Sat Jan 25 16:53:54 2014 (r341056) @@ -9,36 +9,45 @@ MASTER_SITES= http://fph.altervista.org/ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org -COMMENT= An ncurses Tetris clone which is harder than every other Tetris +COMMENT= Ncurses Tetris clone which is harder than every other Tetris LICENSE= GPLv3 # (or later) LIB_DEPENDS= libboost_program_options.so:${PORTSDIR}/devel/boost-libs -USES= ncurses -USE_GMAKE= yes +USES= gmake ncurses CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN6= bastet.6 -PLIST_FILES= bin/bastet +PLIST_FILES= bin/bastet man/man6/bastet.6.gz -NO_STAGE= yes .include -.if ${ARCH} != "i386" +.if ${OSVERSION} < 1000024 +.if exists(/usr/bin/clang) +CC= clang +CXX= clang++ +CPP= clang-cpp +.else +.if ${ARCH} == "i386" +CXXFLAGS+= -fexceptions +.else USE_GCC= yes .endif +.endif +.endif post-patch: @${REINPLACE_CMD} -e \ 's|^CXXFLAGS+=-D|CXXFLAGS+=$$(CPPFLAGS) -D| ; \ - s|$$(CXX) -MM|$$(CXX) $$(CPPFLAGS) -MM| ; \ + s|$$(CXX) -MM|$$(CXX) $$(CXXFLAGS) -MM| ; \ s| -ggdb | |' ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bastet ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/bastet.6 ${MAN6PREFIX}/man/man6 + (cd ${WRKSRC} && ${INSTALL_PROGRAM} bastet \ + ${STAGEDIR}${PREFIX}/bin) + (cd ${WRKSRC} && ${INSTALL_MAN} bastet.6 \ + ${STAGEDIR}${MAN6PREFIX}/man/man6) .include Added: head/games/bastet/files/patch-BastetBlockChooser.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/bastet/files/patch-BastetBlockChooser.hpp Sat Jan 25 16:53:54 2014 (r341056) @@ -0,0 +1,47 @@ +--- BastetBlockChooser.hpp.orig 2009-03-21 06:49:31.000000000 +0900 ++++ BastetBlockChooser.hpp 2013-11-29 22:35:48.000000000 +0900 +@@ -23,19 +23,32 @@ + + #include "Well.hpp" + ++#if !defined(_LIBCPP_VERSION) + #include ++#else ++#include ++#endif + #include + #include + ++#if !defined(_LIBCPP_VERSION) + //boilerplate to use boost::hash as std::tr1::hash + namespace std{namespace tr1{ ++#else ++//boilerplate to use boost::hash as std::hash ++namespace std{ ++#endif + template<> struct hash{ + size_t operator()(const Bastet::BlockPosition &fb) const{ + static boost::hash h; + return h(fb); + } + }; ++#if !defined(_LIBCPP_VERSION) + }} ++#else ++ } ++#endif + + namespace Bastet{ + +@@ -83,7 +96,11 @@ + public: + Searcher(BlockType b, const Well *well, Vertex v, WellVisitor *visitor); + private: ++#if !defined(_LIBCPP_VERSION) + std::tr1::unordered_set _visited; ++#else ++ std::unordered_set _visited; ++#endif + //std::set _visited; ^^ the above is more efficient, we need to do many inserts + BlockType _block; + const Well *_well; From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:54:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A62B484; Sat, 25 Jan 2014 16:54:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 05B701096; Sat, 25 Jan 2014 16:54:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGsWAu001578; Sat, 25 Jan 2014 16:54:32 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGsWex001576; Sat, 25 Jan 2014 16:54:32 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251654.s0PGsWex001576@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:54:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341057 - in head/irc/darkbot: . 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.17 Precedence: list List-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, 25 Jan 2014 16:54:33 -0000 Author: miwi Date: Sat Jan 25 16:54:32 2014 New Revision: 341057 URL: http://svnweb.freebsd.org/changeset/ports/341057 QAT: https://qat.redports.org/buildarchive/r341057/ Log: - Support CC/CFLAGS properly PR: 185312 Submitted by: Ports Fury Modified: head/irc/darkbot/Makefile head/irc/darkbot/files/patch-Makefile Modified: head/irc/darkbot/Makefile ============================================================================== --- head/irc/darkbot/Makefile Sat Jan 25 16:53:54 2014 (r341056) +++ head/irc/darkbot/Makefile Sat Jan 25 16:54:32 2014 (r341057) @@ -3,7 +3,7 @@ PORTNAME= darkbot PORTVERSION= 6f6.r6 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= irc MASTER_SITES= http://darkbot.sourceforge.net/archive/unix/ \ @@ -21,7 +21,7 @@ PLIST_DIRSTRY= %%ETCDIR%%/logs/ %%ETCDIR .include -post-patch: +pre-configure: ${CP} ${WRKSRC}/configure ${WRKSRC}/config do-install: Modified: head/irc/darkbot/files/patch-Makefile ============================================================================== --- head/irc/darkbot/files/patch-Makefile Sat Jan 25 16:53:54 2014 (r341056) +++ head/irc/darkbot/files/patch-Makefile Sat Jan 25 16:54:32 2014 (r341057) @@ -1,5 +1,17 @@ --- Makefile.orig Tue Apr 1 00:14:41 2003 +++ Makefile Tue Apr 1 00:23:28 2003 +@@ -11,9 +11,9 @@ + # ..darkbot_debug.log, 'make debug2' # + # ------------------------------------------------ # + +-CC = gcc ++CC ?= gcc + +-CFLAGS = -DFORK -O3 ++CFLAGS += -DFORK + + DFLAGS = -dm -pg -g -DDEBUG + @@ -23,14 +23,15 @@ ALL_SRC = darkbot.c From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:57:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E33E57B; Sat, 25 Jan 2014 16:57:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4A06310A8; Sat, 25 Jan 2014 16:57:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGv6o1001985; Sat, 25 Jan 2014 16:57:06 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGv6Ze001984; Sat, 25 Jan 2014 16:57:06 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251657.s0PGv6Ze001984@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:57:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341058 - head/misc/najitool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 16:57:06 -0000 Author: miwi Date: Sat Jan 25 16:57:05 2014 New Revision: 341058 URL: http://svnweb.freebsd.org/changeset/ports/341058 QAT: https://qat.redports.org/buildarchive/r341058/ Log: - Support CC/CFLAGS properly - Support shebangfix USES macro - Stage support PR: 185509 Submitted by: Ports Fury Deleted: head/misc/najitool/pkg-plist Modified: head/misc/najitool/Makefile Modified: head/misc/najitool/Makefile ============================================================================== --- head/misc/najitool/Makefile Sat Jan 25 16:54:32 2014 (r341057) +++ head/misc/najitool/Makefile Sat Jan 25 16:57:05 2014 (r341058) @@ -3,6 +3,8 @@ PORTNAME= najitool PORTVERSION= 0.8.4 +DISTVERSIONSUFFIX= .src +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= SF @@ -11,13 +13,17 @@ COMMENT= Generates, converts, and filter BUILD_DEPENDS= ${LOCALBASE}/lib/libnaji.a:${PORTSDIR}/devel/libnaji -DISTVERSIONSUFFIX= .src +PLIST_FILES= bin/najitool -NO_STAGE= yes post-patch: - ${REINPLACE_CMD} -e 's|cflags =|cflags = -I${LOCALBASE}/include|; s|libnaji.a|${LOCALBASE}/lib/libnaji.a|' ${WRKSRC}/${MAKEFILE} + @${REINPLACE_CMD} -e \ + '/^cc/s|=.*|= $${CC}| ; \ + /^ld/s|=.*|= $${CC}| ; \ + /^cflags/s|=.*|= $${CFLAGS} -I$${LOCALBASE}/include| ; \ + s| libnaji.a| $${LOCALBASE}/lib/libnaji.a|' \ + ${WRKSRC}/${MAKEFILE} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/najitool ${PREFIX}/bin + (cd ${WRKSRC} && ${INSTALL_PROGRAM} najitool ${STAGEDIR}${PREFIX}/bin) .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 16:58:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A72B2667; Sat, 25 Jan 2014 16:58:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8758910B2; Sat, 25 Jan 2014 16:58:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PGwlmi002258; Sat, 25 Jan 2014 16:58:47 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PGwk0h002254; Sat, 25 Jan 2014 16:58:46 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251658.s0PGwk0h002254@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 16:58:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341059 - in head/games/tornado: . 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.17 Precedence: list List-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, 25 Jan 2014 16:58:47 -0000 Author: miwi Date: Sat Jan 25 16:58:46 2014 New Revision: 341059 URL: http://svnweb.freebsd.org/changeset/ports/341059 QAT: https://qat.redports.org/buildarchive/r341059/ Log: - Update MASTER_SITES and WWW: line - Support CC/CFLAGS properly - Support ncurses USES macro - Stage support PR: 185341 Submitted by: Ports Fury Added: head/games/tornado/pkg-install (contents, props changed) Deleted: head/games/tornado/files/ Modified: head/games/tornado/Makefile head/games/tornado/pkg-descr head/games/tornado/pkg-plist Modified: head/games/tornado/Makefile ============================================================================== --- head/games/tornado/Makefile Sat Jan 25 16:57:05 2014 (r341058) +++ head/games/tornado/Makefile Sat Jan 25 16:58:46 2014 (r341059) @@ -3,18 +3,58 @@ PORTNAME= tornado PORTVERSION= 1.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games -MASTER_SITES= http://kiza.kcore.de/media/software/${PORTNAME}/ +MASTER_SITES= https://kiza.eu/media/software/tornado/ MAINTAINER= ports@FreeBSD.org -COMMENT= A curses-based game of weather destruction +COMMENT= Ccurses-based game of weather destruction -MAN6= tornado.6 -MANLANG= "" de fr it nl no ru +LICENSE= GPLv2 # (or later) -USES= gettext -USE_GMAKE= yes +USES= gettext gmake ncurses + +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -lintl + +post-patch: +.for i in Makefile Makefile.inc + @${REINPLACE_CMD} -e \ + '/^CC/s| =| ?=| ; \ + /^MAKE/s| =| ?=| ; \ + /^LDFLAGS/s| =| +=| ; \ + /^PREFIX/s| =| ?=| ; \ + /^LOCALEPATH/s|/usr/local|$$(PREFIX)| ; \ + /^CFLAGS/s| =| +=| ; \ + s|-O2||' ${WRKSRC}/${i} +.endfor + @${REINPLACE_CMD} -e \ + 's|/usr/local|PREFIX|' ${WRKSRC}/doc/man/tornado.6.in +.for i in de fr it nl no ru + @${REINPLACE_CMD} -e \ + 's|/usr/local|PREFIX|' ${WRKSRC}/doc/man/${i}/tornado.6.${i}.in +.endfor + +post-build: + @${LN} -sf tornado.scores ${WRKSRC}/tornado.scores.init + +do-install: + (cd ${WRKSRC} && ${INSTALL_PROGRAM} tornado \ + ${STAGEDIR}${PREFIX}/bin) + (cd ${WRKSRC}/doc/man && ${INSTALL_MAN} tornado.6 \ + ${STAGEDIR}${MAN6PREFIX}/man/man6) +.for i in de fr it nl no ru + @${MKDIR} ${STAGEDIR}${MAN6PREFIX}/man/${i}/man6 + (cd ${WRKSRC}/doc/man/${i} && ${INSTALL_MAN} tornado.6 \ + ${STAGEDIR}${MAN6PREFIX}/man/${i}/man6) +.endfor +.for i in de es fr it nl no pt ru + @${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/${i}/LC_MESSAGES + (cd ${WRKSRC}/po && ${INSTALL_DATA} ${i}.mo \ + ${STAGEDIR}${PREFIX}/share/locale/${i}/LC_MESSAGES/tornado.mo) +.endfor + @${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ${INSTALL_DATA} tornado.scores.init \ + ${STAGEDIR}${DATADIR}) -NO_STAGE= yes .include Modified: head/games/tornado/pkg-descr ============================================================================== --- head/games/tornado/pkg-descr Sat Jan 25 16:57:05 2014 (r341058) +++ head/games/tornado/pkg-descr Sat Jan 25 16:58:46 2014 (r341059) @@ -1,6 +1,6 @@ -A clone of an old C64 game. The object is to destroy your opponent's -house with the power of weather, before they do the same to you. Play +A clone of an old C64 game. The object is to destroy your opponent's +house with the power of weather, before they do the same to you. Play against the computer AI, or against another player locally or over the network. -WWW: http://kiza.kcore.de/software/tornado/ +WWW: https://kiza.eu/software/tornado/ Added: head/games/tornado/pkg-install ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/tornado/pkg-install Sat Jan 25 16:58:46 2014 (r341059) @@ -0,0 +1,7 @@ +#!/bin/sh + +FILE=/var/games/tornado.scores +[ "$2" != "POST-INSTALL" -o -f "$FILE" ] && exit 0 + +echo "===> Creating initial high score file $FILE" +install -o root -g games -m 664 ${PKG_PREFIX}/share/tornado/tornado.scores.init $FILE Modified: head/games/tornado/pkg-plist ============================================================================== --- head/games/tornado/pkg-plist Sat Jan 25 16:57:05 2014 (r341058) +++ head/games/tornado/pkg-plist Sat Jan 25 16:58:46 2014 (r341059) @@ -1,14 +1,21 @@ bin/tornado -share/games/tornado.scores +man/de/man6/tornado.6.gz +man/fr/man6/tornado.6.gz +man/it/man6/tornado.6.gz +man/man6/tornado.6.gz +man/nl/man6/tornado.6.gz +man/no/man6/tornado.6.gz +man/ru/man6/tornado.6.gz share/locale/de/LC_MESSAGES/tornado.mo share/locale/es/LC_MESSAGES/tornado.mo share/locale/fr/LC_MESSAGES/tornado.mo share/locale/it/LC_MESSAGES/tornado.mo share/locale/nl/LC_MESSAGES/tornado.mo share/locale/no/LC_MESSAGES/tornado.mo -share/locale/ru/LC_MESSAGES/tornado.mo share/locale/pt/LC_MESSAGES/tornado.mo -@dirrmtry share/games +share/locale/ru/LC_MESSAGES/tornado.mo +%%DATADIR%%/tornado.scores.init +@dirrm %%DATADIR%% @dirrmtry man/ru/man6 @dirrmtry man/ru @dirrmtry man/no/man6 @@ -21,3 +28,4 @@ share/locale/pt/LC_MESSAGES/tornado.mo @dirrmtry man/fr @dirrmtry man/de/man6 @dirrmtry man/de +@unexec if cmp -s %D/%%DATADIR%%/tornado.scores.init /var/games/tornado.scores; then rm -f /var/games/tornado.scores; else true; fi From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 17:00:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA93C789; Sat, 25 Jan 2014 17:00:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 96FF810D0; Sat, 25 Jan 2014 17:00:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PH0Fq2002715; Sat, 25 Jan 2014 17:00:15 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PH0FUu002713; Sat, 25 Jan 2014 17:00:15 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201401251700.s0PH0FUu002713@svn.freebsd.org> From: Martin Wilke Date: Sat, 25 Jan 2014 17:00:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341060 - head/misc/gkrellmlaunch2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 17:00:15 -0000 Author: miwi Date: Sat Jan 25 17:00:15 2014 New Revision: 341060 URL: http://svnweb.freebsd.org/changeset/ports/341060 QAT: https://qat.redports.org/buildarchive/r341060/ Log: - Support CC properly - Stage support - Add License PR: 185349 Submitted by: Ports Fury Modified: head/misc/gkrellmlaunch2/Makefile Modified: head/misc/gkrellmlaunch2/Makefile ============================================================================== --- head/misc/gkrellmlaunch2/Makefile Sat Jan 25 16:58:46 2014 (r341059) +++ head/misc/gkrellmlaunch2/Makefile Sat Jan 25 17:00:15 2014 (r341060) @@ -11,15 +11,26 @@ PKGNAMESUFFIX= 2 MAINTAINER= ports@FreeBSD.org COMMENT= Application launcher plugin for GKrellM2 -BUILD_DEPENDS= ${LOCALBASE}/include/gkrellm2/gkrellm.h:${PORTSDIR}/sysutils/gkrellm2 -RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm2 +LICENSE= GPLv2 # (or later) + +BUILD_DEPENDS= gkrellm2>0:${PORTSDIR}/sysutils/gkrellm2 +RUN_DEPENDS= gkrellm2>0:${PORTSDIR}/sysutils/gkrellm2 USES= pkgconfig +ALL_TARGET= gkrellmlaunch.so + PLIST_FILES= libexec/gkrellm2/plugins/gkrellmlaunch.so -ALL_TARGET= ${PORTNAME}.so -NO_STAGE= yes +post-patch: + @${REINPLACE_CMD} -e \ + '/^FLAGS/s|-O[0-9]|| ; \ + /^FLAGS/s|-g|| ; \ + /^CC/s| =| +=| ; \ + /^CC/s|gcc||' ${WRKSRC}/Makefile + do-install: - ${INSTALL_DATA} ${WRKSRC}/gkrellmlaunch.so ${PREFIX}/libexec/gkrellm2/plugins + @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/gkrellm2/plugins + (cd ${WRKSRC} && ${INSTALL_LIB} gkrellmlaunch.so \ + ${STAGEDIR}${PREFIX}/libexec/gkrellm2/plugins) .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 17:00:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E824C78D; Sat, 25 Jan 2014 17:00:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D440A10D3; Sat, 25 Jan 2014 17:00:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PH0Gp4003065; Sat, 25 Jan 2014 17:00:16 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PH0G9M003028; Sat, 25 Jan 2014 17:00:16 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401251700.s0PH0G9M003028@svn.freebsd.org> From: Steve Wills Date: Sat, 25 Jan 2014 17:00:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341061 - head/net/xrdp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 17:00:17 -0000 Author: swills Date: Sat Jan 25 17:00:15 2014 New Revision: 341061 URL: http://svnweb.freebsd.org/changeset/ports/341061 QAT: https://qat.redports.org/buildarchive/r341061/ Log: - Fix the build after recent update of net/freerdp - Follow upstream repository transfer - Remove unused files from distinfo PR: ports/186035 Submitted by: Koichiro IWAO (maintainer) Modified: head/net/xrdp/Makefile head/net/xrdp/distinfo head/net/xrdp/pkg-plist Modified: head/net/xrdp/Makefile ============================================================================== --- head/net/xrdp/Makefile Sat Jan 25 17:00:15 2014 (r341060) +++ head/net/xrdp/Makefile Sat Jan 25 17:00:15 2014 (r341061) @@ -3,7 +3,7 @@ PORTNAME= xrdp PORTVERSION= 0.6.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= GH @@ -13,7 +13,6 @@ MAINTAINER= meta+ports@vmeta.jp COMMENT= Open source Remote Desktop Protocol (RDP) server LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING USES= pkgconfig USE_XORG= x11 xfixes @@ -22,17 +21,15 @@ GNU_CONFIGURE= yes USE_RC_SUBR= xrdp USE_LDCONFIG= ${STAGEDIR}${PREFIX}/lib/xrdp USE_GITHUB= yes -GH_ACCOUNT= FreeRDP +GH_ACCOUNT= neutrinolabs GH_PROJECT= xrdp GH_COMMIT= 5d53758 GH_TAGNAME= ${GH_COMMIT} -CONFIGURE_ARGS= --localstatedir=/var \ - --enable-freerdp1 +CONFIGURE_ARGS= --localstatedir=/var LDFLAGS+= -L${LOCALBASE}/lib CPPFLAGS+= -I${LOCALBASE}/include CONFLICTS= xrdp-devel-[0-9]* -BUILD_DEPENDS+= freerdp>=1.0.2:${PORTSDIR}/net/freerdp OPTIONS_DEFINE= DEBUG OPTIONS_DEFAULT= JP106 TIGERVNC Modified: head/net/xrdp/distinfo ============================================================================== --- head/net/xrdp/distinfo Sat Jan 25 17:00:15 2014 (r341060) +++ head/net/xrdp/distinfo Sat Jan 25 17:00:15 2014 (r341061) @@ -1,12 +1,2 @@ -SHA256 (xrdp/xrdp-0.6.1.tar.gz) = ef9b223cf8a114c05d85f352bbc842468028fed33842698ba09e2bc86c21bcd0 -SIZE (xrdp/xrdp-0.6.1.tar.gz) = 1559492 -SHA256 (xrdp/patch-instfiles__Makefile.am) = 92e8a1768b63f508bc5b37cdc5723d1e03875af7fbdf064aa86a6b40b1bd2f07 -SIZE (xrdp/patch-instfiles__Makefile.am) = 710 -SHA256 (xrdp/patch-instfiles__km-0411.ini) = 58bcb7f063db4fcde9230be3013d46226b8af5c0060b7faf00250a51aa7da4fd -SIZE (xrdp/patch-instfiles__km-0411.ini) = 9576 -SHA256 (xrdp/patch-instfiles__km-e0010411.ini) = 201e55ae65c223602d66eb15ac3fd53564dc3f8e856f08183f9cf8f3fc6334c3 -SIZE (xrdp/patch-instfiles__km-e0010411.ini) = 9592 -SHA256 (xrdp/patch-instfiles__km-e0200411.ini) = d6e95d98629bf346173e97ebd9fba7910971a0165fc32c3e3cada3c5a6d01de8 -SIZE (xrdp/patch-instfiles__km-e0200411.ini) = 9592 -SHA256 (xrdp/patch-instfiles__km-e0210411.ini) = f3f29efc3541c08f60edbbb3ecf85da59abe7d745b59a7d5d0340d5940c3e723 -SIZE (xrdp/patch-instfiles__km-e0210411.ini) = 9592 +SHA256 (xrdp/xrdp-0.6.1.tar.gz) = 5a5316f9404243b2016b02f050648001987e648435927c9c965a804f233daa25 +SIZE (xrdp/xrdp-0.6.1.tar.gz) = 1559511 Modified: head/net/xrdp/pkg-plist ============================================================================== --- head/net/xrdp/pkg-plist Sat Jan 25 17:00:15 2014 (r341060) +++ head/net/xrdp/pkg-plist Sat Jan 25 17:00:15 2014 (r341061) @@ -33,10 +33,6 @@ lib/xrdp/libxup.a lib/xrdp/libxup.la lib/xrdp/libxup.so lib/xrdp/libxup.so.0 -lib/xrdp/libxrdpfreerdp1.la -lib/xrdp/libxrdpfreerdp1.a -lib/xrdp/libxrdpfreerdp1.so -lib/xrdp/libxrdpfreerdp1.so.0 man/man5/sesman.ini.5.gz man/man5/xrdp.ini.5.gz man/man8/xrdp-sesman.8.gz From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 17:25:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 646E5C11; Sat, 25 Jan 2014 17:25:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 368131220; Sat, 25 Jan 2014 17:25:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PHPC7o013213; Sat, 25 Jan 2014 17:25:12 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PHPBqC013211; Sat, 25 Jan 2014 17:25:11 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251725.s0PHPBqC013211@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 17:25:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341063 - head/databases/p5-HTML-FormHandler-Model-DBIC X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 17:25:12 -0000 Author: antoine Date: Sat Jan 25 17:25:11 2014 New Revision: 341063 URL: http://svnweb.freebsd.org/changeset/ports/341063 QAT: https://qat.redports.org/buildarchive/r341063/ Log: - Stage support - Remove inexistent directory from plist Modified: head/databases/p5-HTML-FormHandler-Model-DBIC/Makefile head/databases/p5-HTML-FormHandler-Model-DBIC/pkg-plist Modified: head/databases/p5-HTML-FormHandler-Model-DBIC/Makefile ============================================================================== --- head/databases/p5-HTML-FormHandler-Model-DBIC/Makefile Sat Jan 25 17:23:25 2014 (r341062) +++ head/databases/p5-HTML-FormHandler-Model-DBIC/Makefile Sat Jan 25 17:25:11 2014 (r341063) @@ -16,7 +16,6 @@ BUILD_DEPENDS= p5-DBIx-Class>0:${PORTSDI p5-Moose>=2.0007:${PORTSDIR}/devel/p5-Moose \ p5-namespace-autoclean>=0.09:${PORTSDIR}/devel/p5-namespace-autoclean RUN_DEPENDS:= ${BUILD_DEPENDS} - TEST_DEPENDS= p5-DateTime-Format-MySQL>0:${PORTSDIR}/devel/p5-DateTime-Format-MySQL \ p5-DateTime-Format-SQLite>0:${PORTSDIR}/devel/p5-DateTime-Format-SQLite \ p5-DateTime-Format-W3CDTF>0:${PORTSDIR}/devel/p5-DateTime-Format-W3CDTF @@ -24,13 +23,4 @@ TEST_DEPENDS= p5-DateTime-Format-MySQL>0 USES= perl5 USE_PERL5= configure -MAN1= form_generator.pl.1 - -MAN3= HTML::FormHandler::Generator::DBIC.3 \ - HTML::FormHandler::Model::DBIC.3 \ - HTML::FormHandler::Model::DBIC::TypeMap.3 \ - HTML::FormHandler::TraitFor::DBICFields.3 \ - HTML::FormHandler::TraitFor::Model::DBIC.3 - -NO_STAGE= yes .include Modified: head/databases/p5-HTML-FormHandler-Model-DBIC/pkg-plist ============================================================================== --- head/databases/p5-HTML-FormHandler-Model-DBIC/pkg-plist Sat Jan 25 17:23:25 2014 (r341062) +++ head/databases/p5-HTML-FormHandler-Model-DBIC/pkg-plist Sat Jan 25 17:25:11 2014 (r341063) @@ -5,8 +5,13 @@ bin/form_generator.pl %%SITE_PERL%%/HTML/FormHandler/TraitFor/DBICFields.pm %%SITE_PERL%%/HTML/FormHandler/TraitFor/Model/DBIC.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/FormHandler/Model/DBIC/.packlist +%%PERL5_MAN3%%/HTML::FormHandler::Generator::DBIC.3.gz +%%PERL5_MAN3%%/HTML::FormHandler::Model::DBIC.3.gz +%%PERL5_MAN3%%/HTML::FormHandler::Model::DBIC::TypeMap.3.gz +%%PERL5_MAN3%%/HTML::FormHandler::TraitFor::DBICFields.3.gz +%%PERL5_MAN3%%/HTML::FormHandler::TraitFor::Model::DBIC.3.gz +man/man1/form_generator.pl.1.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/FormHandler/Model/DBIC -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/FormHandler/Generator @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/FormHandler/Model @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/FormHandler @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 17:37:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E46381A4; Sat, 25 Jan 2014 17:37:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D0A9A12D3; Sat, 25 Jan 2014 17:37:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PHbcZB016417; Sat, 25 Jan 2014 17:37:38 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PHbciv016416; Sat, 25 Jan 2014 17:37:38 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201401251737.s0PHbciv016416@svn.freebsd.org> From: Johan van Selst Date: Sat, 25 Jan 2014 17:37:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341064 - head/mail/emil/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.17 Precedence: list List-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, 25 Jan 2014 17:37:39 -0000 Author: johans Date: Sat Jan 25 17:37:38 2014 New Revision: 341064 URL: http://svnweb.freebsd.org/changeset/ports/341064 QAT: https://qat.redports.org/buildarchive/r341064/ Log: Respect $CC in subdir as well Added: head/mail/emil/files/patch-charset_Makefile.in (contents, props changed) Added: head/mail/emil/files/patch-charset_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/emil/files/patch-charset_Makefile.in Sat Jan 25 17:37:38 2014 (r341064) @@ -0,0 +1,10 @@ +--- charset/Makefile.in.orig 2014-01-25 18:34:47.000000000 +0100 ++++ charset/Makefile.in 2014-01-25 18:34:49.000000000 +0100 +@@ -1,7 +1,6 @@ + srcdir = @srcdir@ + VPATH = @srcdir@ + +-CC = gcc + CPPFLAGS=-I. -I.. -DXERR + INSTALL = @INSTALL@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 17:38:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4000E304; Sat, 25 Jan 2014 17:38:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 13AE212DB; Sat, 25 Jan 2014 17:38:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PHc5AB016537; Sat, 25 Jan 2014 17:38:05 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PHc5Ok016536; Sat, 25 Jan 2014 17:38:05 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251738.s0PHc5Ok016536@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 17:38:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341065 - head/textproc/nux X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 17:38:06 -0000 Author: antoine Date: Sat Jan 25 17:38:05 2014 New Revision: 341065 URL: http://svnweb.freebsd.org/changeset/ports/341065 QAT: https://qat.redports.org/buildarchive/r341065/ Log: - Fix a broken RUN_DEPENDS - While here, add stage support Modified: head/textproc/nux/Makefile Modified: head/textproc/nux/Makefile ============================================================================== --- head/textproc/nux/Makefile Sat Jan 25 17:37:38 2014 (r341064) +++ head/textproc/nux/Makefile Sat Jan 25 17:38:05 2014 (r341065) @@ -23,12 +23,10 @@ JAVA_VERSION= 1.6+ NO_BUILD= yes WRKSRC= ${WRKDIR}/${PORTNAME} -NO_STAGE= yes -.include .include .if ${PORT_OPTIONS:MXQUERY_TOOL} -RUN_DEPENDS+= ${JAVALIBDIR}/getopt.jar:${PORTSDIR}/java/java-getopt \ +RUN_DEPENDS+= ${JAVALIBDIR}/java-getopt.jar:${PORTSDIR}/java/java-getopt \ classpath:${PORTSDIR}/java/javavmwrapper .endif @@ -46,20 +44,14 @@ SUB_FILES= fire-xquery.sh .endif do-install: - @${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..." - @${MKDIR} ${JAVAJARDIR} - @${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}.jar ${JAVAJARDIR}/ - @${ECHO_MSG} " [ DONE ]" + @${MKDIR} ${STAGEDIR}${JAVAJARDIR} + ${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}.jar ${STAGEDIR}${JAVAJARDIR} .if ${PORT_OPTIONS:MXQUERY_TOOL} - @${ECHO_MSG} -n ">> Installing XQuery command-line tool as ${PREFIX}/bin/fire-xquery..." - @${INSTALL_SCRIPT} ${WRKDIR}/fire-xquery.sh ${PREFIX}/bin/fire-xquery - @${ECHO_MSG} " [ DONE ]" + ${INSTALL_SCRIPT} ${WRKDIR}/fire-xquery.sh ${STAGEDIR}${PREFIX}/bin/fire-xquery .endif .if ${PORT_OPTIONS:MDOCS} - @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..." - @cd ${WRKSRC}/doc/ && ${FIND} ${PORTDOCS} -type d -exec ${MKDIR} ${DOCSDIR}/{} \; - @cd ${WRKSRC}/doc/ && ${FIND} ${PORTDOCS} -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \; - @${ECHO_MSG} " [ DONE ]" + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/doc && ${COPYTREE_SHARE} "${PORTDOCS}" ${STAGEDIR}${DOCSDIR} .endif -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 17:42:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 899DC431; Sat, 25 Jan 2014 17:42:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 714B51352; Sat, 25 Jan 2014 17:42:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PHg7RO019601; Sat, 25 Jan 2014 17:42:07 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PHg73A019600; Sat, 25 Jan 2014 17:42:07 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201401251742.s0PHg73A019600@svn.freebsd.org> From: Johan van Selst Date: Sat, 25 Jan 2014 17:42:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341066 - head/lang/swi-pl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 17:42:07 -0000 Author: johans Date: Sat Jan 25 17:42:06 2014 New Revision: 341066 URL: http://svnweb.freebsd.org/changeset/ports/341066 QAT: https://qat.redports.org/buildarchive/r341066/ Log: Correct plist Modified: head/lang/swi-pl/pkg-plist Modified: head/lang/swi-pl/pkg-plist ============================================================================== --- head/lang/swi-pl/pkg-plist Sat Jan 25 17:38:05 2014 (r341065) +++ head/lang/swi-pl/pkg-plist Sat Jan 25 17:42:06 2014 (r341066) @@ -1755,7 +1755,7 @@ libdata/pkgconfig/swipl.pc @dirrm lib/%%DISTNAME%%/xpce/bitmaps/32x32 @dirrm lib/%%DISTNAME%%/xpce/bitmaps/16x16 @dirrm lib/%%DISTNAME%%/xpce/bitmaps -@dirrm lib/%%DISTNAME%%/xpce/bin/x86_64-freebsd +@dirrm lib/%%DISTNAME%%/xpce/bin/%%ARCH%%-%%OS%% @dirrm lib/%%DISTNAME%%/xpce/bin @dirrm lib/%%DISTNAME%%/xpce/appl-help @dirrm lib/%%DISTNAME%%/xpce @@ -1784,7 +1784,7 @@ libdata/pkgconfig/swipl.pc @dirrm lib/%%DISTNAME%%/library/chr @dirrm lib/%%DISTNAME%%/library/DTD @dirrm lib/%%DISTNAME%%/library -@dirrm lib/%%DISTNAME%%/lib/x86_64-freebsd +@dirrm lib/%%DISTNAME%%/lib/%%ARCH%%-%%OS%% @dirrm lib/%%DISTNAME%%/lib @dirrm lib/%%DISTNAME%%/include/sicstus @dirrm lib/%%DISTNAME%%/include/Yap @@ -1810,6 +1810,6 @@ libdata/pkgconfig/swipl.pc @dirrm lib/%%DISTNAME%%/demo @dirrm lib/%%DISTNAME%%/customize @dirrm lib/%%DISTNAME%%/boot -@dirrm lib/%%DISTNAME%%/bin/x86_64-freebsd +@dirrm lib/%%DISTNAME%%/bin/%%ARCH%%-%%OS%% @dirrm lib/%%DISTNAME%%/bin @dirrm lib/%%DISTNAME%% From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 17:42:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4C56451B; Sat, 25 Jan 2014 17:42:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 38DE5135E; Sat, 25 Jan 2014 17:42:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PHghF8019741; Sat, 25 Jan 2014 17:42:43 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PHggvC019739; Sat, 25 Jan 2014 17:42:42 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401251742.s0PHggvC019739@svn.freebsd.org> From: Steve Wills Date: Sat, 25 Jan 2014 17:42:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341067 - head/net/xrdp-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.17 Precedence: list List-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, 25 Jan 2014 17:42:43 -0000 Author: swills Date: Sat Jan 25 17:42:42 2014 New Revision: 341067 URL: http://svnweb.freebsd.org/changeset/ports/341067 QAT: https://qat.redports.org/buildarchive/r341067/ Log: - Follow upstream repository transfer PR: ports/186036 Submitted by: Koichiro IWAO (maintainer) Modified: head/net/xrdp-devel/Makefile head/net/xrdp-devel/distinfo Modified: head/net/xrdp-devel/Makefile ============================================================================== --- head/net/xrdp-devel/Makefile Sat Jan 25 17:42:06 2014 (r341066) +++ head/net/xrdp-devel/Makefile Sat Jan 25 17:42:42 2014 (r341067) @@ -22,7 +22,7 @@ GNU_CONFIGURE= yes USE_RC_SUBR= xrdp USE_LDCONFIG= ${STAGEDIR}${PREFIX}/lib/xrdp USE_GITHUB= yes -GH_ACCOUNT= FreeRDP +GH_ACCOUNT= neutrinolabs GH_PROJECT= xrdp GH_COMMIT= 64e2291 GH_TAGNAME= ${GH_COMMIT} Modified: head/net/xrdp-devel/distinfo ============================================================================== --- head/net/xrdp-devel/distinfo Sat Jan 25 17:42:06 2014 (r341066) +++ head/net/xrdp-devel/distinfo Sat Jan 25 17:42:42 2014 (r341067) @@ -1,2 +1,2 @@ -SHA256 (xrdp/xrdp-0.7.0.b20130912.tar.gz) = 480d833b04536bde199e9a8250bdf0a7912c5c07b0120a6399ac05364e417278 -SIZE (xrdp/xrdp-0.7.0.b20130912.tar.gz) = 2892900 +SHA256 (xrdp/xrdp-0.7.0.b20130912.tar.gz) = 43e61a1a0d4c0de1da798cceaab115a1e07833de06206daf0520dad509b4e85d +SIZE (xrdp/xrdp-0.7.0.b20130912.tar.gz) = 2893085 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 17:48:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86758758; Sat, 25 Jan 2014 17:48:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 72A051399; Sat, 25 Jan 2014 17:48:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PHmUTA020477; Sat, 25 Jan 2014 17:48:30 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PHmUQZ020476; Sat, 25 Jan 2014 17:48:30 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251748.s0PHmUQZ020476@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 17:48:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341068 - head/chinese/eterm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 17:48:30 -0000 Author: antoine Date: Sat Jan 25 17:48:29 2014 New Revision: 341068 URL: http://svnweb.freebsd.org/changeset/ports/341068 QAT: https://qat.redports.org/buildarchive/r341068/ Log: Master port has been stage, add stage support here too so that the man page is correctly handled Modified: head/chinese/eterm/Makefile Modified: head/chinese/eterm/Makefile ============================================================================== --- head/chinese/eterm/Makefile Sat Jan 25 17:42:42 2014 (r341067) +++ head/chinese/eterm/Makefile Sat Jan 25 17:48:29 2014 (r341068) @@ -20,5 +20,4 @@ PLIST= ${MASTERDIR}/pkg-plist RUN_DEPENDS= ${LOCALBASE}/lib/X11/fonts/local/kc15f.pcf.gz:${PORTSDIR}/chinese/kcfonts -NO_STAGE= yes .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 17:49:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 015A58C6; Sat, 25 Jan 2014 17:49:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E1BED13A3; Sat, 25 Jan 2014 17:49:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PHn5St020608; Sat, 25 Jan 2014 17:49:05 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PHn5Mo020607; Sat, 25 Jan 2014 17:49:05 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201401251749.s0PHn5Mo020607@svn.freebsd.org> From: Johan van Selst Date: Sat, 25 Jan 2014 17:49:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341069 - head/games/ldmud X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 17:49:06 -0000 Author: johans Date: Sat Jan 25 17:49:05 2014 New Revision: 341069 URL: http://svnweb.freebsd.org/changeset/ports/341069 QAT: https://qat.redports.org/buildarchive/r341069/ Log: Add missing build dependency Modified: head/games/ldmud/Makefile Modified: head/games/ldmud/Makefile ============================================================================== --- head/games/ldmud/Makefile Sat Jan 25 17:48:29 2014 (r341068) +++ head/games/ldmud/Makefile Sat Jan 25 17:49:05 2014 (r341069) @@ -12,6 +12,7 @@ MASTER_SITES= http://www.bearnip.com/ftp MAINTAINER= johans@FreeBSD.org COMMENT= A modern version of the LPMud game driver +BUILD_DEPENDS= help2man:${PORTSDIR}/misc/help2man LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre GNU_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 18:06:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E352CB7; Sat, 25 Jan 2014 18:06:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CEE4A1583; Sat, 25 Jan 2014 18:06:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PI69wr028053; Sat, 25 Jan 2014 18:06:09 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PI694i028045; Sat, 25 Jan 2014 18:06:09 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201401251806.s0PI694i028045@svn.freebsd.org> From: Guido Falsi Date: Sat, 25 Jan 2014 18:06:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341070 - in head/devel/monotone: . 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.17 Precedence: list List-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, 25 Jan 2014 18:06:10 -0000 Author: madpilot Date: Sat Jan 25 18:06:08 2014 New Revision: 341070 URL: http://svnweb.freebsd.org/changeset/ports/341070 QAT: https://qat.redports.org/buildarchive/r341070/ Log: - Fix build on 10 and head with clang - Convert to staging - Improve library detection patch with a cleaner one - Mark jobs safe PR: ports/186060 Submitted by: Lapo Luchini (maintainer) Added: head/devel/monotone/files/patch-configure (contents, props changed) head/devel/monotone/files/patch-src_automate_reader.hh (contents, props changed) Modified: head/devel/monotone/Makefile Modified: head/devel/monotone/Makefile ============================================================================== --- head/devel/monotone/Makefile Sat Jan 25 17:49:05 2014 (r341069) +++ head/devel/monotone/Makefile Sat Jan 25 18:06:08 2014 (r341070) @@ -24,6 +24,7 @@ USE_BZIP2= yes USES= iconv pkgconfig gmake perl5 USE_PERL5= build USE_LUA= 5.1+ +MAKE_JOBS_SAFE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" @@ -50,13 +51,12 @@ PLIST_FILES= bin/mtn bin/mtn-cleanup bin "@dirrm share/monotone" .if !defined(NO_INSTALL_MANPAGES) INFO= monotone -MAN1= mtn.1 \ - mtn-cleanup.1 \ - mtnopt.1 +PLIST_FILES+= man/man1/mtn.1.gz \ + man/man1/mtn-cleanup.1.gz \ + man/man1/mtnopt.1.gz .endif PORTDOCS= * -NO_STAGE= yes .include .if ${PORT_OPTIONS:MNLS} @@ -82,19 +82,20 @@ post-patch: ${REINPLACE_CMD} -Ee '/^install-info: /s/ install-info-am$$//' \ -e '/^install-data-am:/s/ install-info-am$$//' ${WRKSRC}/doc/Makefile.in .endif - ${REINPLACE_CMD} -e "s/\"lua/\"lua-${LUA_VER}/g" \ - -e "s/\"idn/\"libidn/g" \ - -e "s/\"pcre/\"libpcre/g" \ - -e "s/\"botan/\"botan-1.10/g" \ + ${REINPLACE_CMD} \ -e "s/REBUILD_NLS=true/REBUILD_NLS=false/g" \ + -e "s/std::tr1::/std::/g" \ ${WRKSRC}/configure + ${REINPLACE_CMD} \ + -e "s/std::tr1::/std::/g" \ + ${WRKSRC}/src/hash_map.hh post-install: - ${MKDIR} ${PREFIX}/share/zsh/site-functions - ${INSTALL_DATA} ${WRKSRC}/contrib/monotone.zsh_completion ${PREFIX}/share/zsh/site-functions/_mtn + ${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions + ${INSTALL_DATA} ${WRKSRC}/contrib/monotone.zsh_completion ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_mtn .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} NEWS UPGRADE ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} NEWS UPGRADE ${STAGEDIR}${DOCSDIR} .endif @${CAT} ${PKGMESSAGE} Added: head/devel/monotone/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/monotone/files/patch-configure Sat Jan 25 18:06:08 2014 (r341070) @@ -0,0 +1,13 @@ +--- configure.orig 2014-01-22 00:48:12.855108408 +0100 ++++ configure 2014-01-22 00:48:54.244105202 +0100 +@@ -4594,9 +4594,7 @@ fi + + # The dummy "pkg-config" package is guaranteed to exist. + if test -n "$PKG_CONFIG"; then +- mtn__full_pkg_config_path=`$PKG_CONFIG --debug pkg-config 2>&1 | +- sed -ne "/^Scanning directory '/{; s///; s/'$//; p;}" | +- tr "$as_nl" ':' | sed 's/:$//'` ++ mtn__full_pkg_config_path=`$PKG_CONFIG --variable=pc_path pkg-config 2>&1 | sed 's/:.*$//'` + #AC_MSG_NOTICE([detected pkg-config path: $mtn__full_pkg_config_path]) + fi + Added: head/devel/monotone/files/patch-src_automate_reader.hh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/monotone/files/patch-src_automate_reader.hh Sat Jan 25 18:06:08 2014 (r341070) @@ -0,0 +1,10 @@ +--- src/automate_reader.hh.orig 2014-01-22 01:04:27.675051506 +0100 ++++ src/automate_reader.hh 2014-01-22 01:04:41.682040341 +0100 +@@ -13,6 +13,7 @@ + #define __AUTOMATE_READER_HH__ + + #include ++#include + + class automate_reader + { From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 18:11:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3104E2AC; Sat, 25 Jan 2014 18:11:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1CFC0161A; Sat, 25 Jan 2014 18:11:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PIBg8H031538; Sat, 25 Jan 2014 18:11:42 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PIBg6R031537; Sat, 25 Jan 2014 18:11:42 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201401251811.s0PIBg6R031537@svn.freebsd.org> From: Johan van Selst Date: Sat, 25 Jan 2014 18:11:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341071 - head/chinese/bg5ps/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.17 Precedence: list List-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, 25 Jan 2014 18:11:43 -0000 Author: johans Date: Sat Jan 25 18:11:42 2014 New Revision: 341071 URL: http://svnweb.freebsd.org/changeset/ports/341071 QAT: https://qat.redports.org/buildarchive/r341071/ Log: Respect $CC Modified: head/chinese/bg5ps/files/patch-aa Modified: head/chinese/bg5ps/files/patch-aa ============================================================================== --- head/chinese/bg5ps/files/patch-aa Sat Jan 25 18:06:08 2014 (r341070) +++ head/chinese/bg5ps/files/patch-aa Sat Jan 25 18:11:42 2014 (r341071) @@ -1,11 +1,14 @@ $FreeBSD$ ---- Makefile.orig Mon Feb 14 22:41:27 2000 -+++ Makefile Thu Mar 14 09:33:24 2002 -@@ -19,21 +19,22 @@ +--- Makefile.orig 2000-02-14 21:41:27.000000000 +0100 ++++ Makefile 2014-01-25 19:07:23.000000000 +0100 +@@ -17,23 +17,24 @@ - CC = gcc + OBJS = ttf2psm.o b5tou8.o b5_in.o gb_in.o gbtou8.o + +-CC = gcc ++CC ?= gcc INSTALL = install -CFLAGS = +CFLAGS += -I${LOCALBASE}/include/freetype1 -I${LOCALBASE}/include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 18:28:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56560A22; Sat, 25 Jan 2014 18:28:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4156D1712; Sat, 25 Jan 2014 18:28:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PIS4bv036518; Sat, 25 Jan 2014 18:28:04 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PIS3tn036515; Sat, 25 Jan 2014 18:28:03 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201401251828.s0PIS3tn036515@svn.freebsd.org> From: Renato Botelho Date: Sat, 25 Jan 2014 18:28:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341073 - in head/dns: 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.17 Precedence: list List-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, 25 Jan 2014 18:28:04 -0000 Author: garga Date: Sat Jan 25 18:28:03 2014 New Revision: 341073 URL: http://svnweb.freebsd.org/changeset/ports/341073 QAT: https://qat.redports.org/buildarchive/r341073/ Log: Add -fPIC to CFLAGS for amd64, this fix static libraries Approved by: mat@ (maintainer) Modified: head/dns/bind98/Makefile head/dns/bind99/Makefile Modified: head/dns/bind98/Makefile ============================================================================== --- head/dns/bind98/Makefile Sat Jan 25 18:20:01 2014 (r341072) +++ head/dns/bind98/Makefile Sat Jan 25 18:28:03 2014 (r341073) @@ -104,6 +104,7 @@ GSSAPI_CONFIGURE_WITH= gssapi .if (${ARCH} == "amd64") ARCH= x86_64 +CFLAGS+= -fPIC .endif .if !${PORT_OPTIONS:MLINKS} || ${PORT_OPTIONS:MREPLACE_BASE} Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Sat Jan 25 18:20:01 2014 (r341072) +++ head/dns/bind99/Makefile Sat Jan 25 18:28:03 2014 (r341073) @@ -111,6 +111,7 @@ GSSAPI_CONFIGURE_WITH= gssapi .if (${ARCH} == "amd64") ARCH= x86_64 +CFLAGS+= -fPIC .endif .if !${PORT_OPTIONS:MLINKS} || ${PORT_OPTIONS:MREPLACE_BASE} From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 18:45:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 184CB22E; Sat, 25 Jan 2014 18:45:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 042B51899; Sat, 25 Jan 2014 18:45:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PIjIlt043811; Sat, 25 Jan 2014 18:45:18 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PIjIMx043809; Sat, 25 Jan 2014 18:45:18 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251845.s0PIjIMx043809@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 18:45:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341074 - head/databases/p5-DBIx-Abstract X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 18:45:19 -0000 Author: antoine Date: Sat Jan 25 18:45:18 2014 New Revision: 341074 URL: http://svnweb.freebsd.org/changeset/ports/341074 QAT: https://qat.redports.org/buildarchive/r341074/ Log: - Stage support - Remove 1 duplicate and 1 inexistent directory from plist Modified: head/databases/p5-DBIx-Abstract/Makefile head/databases/p5-DBIx-Abstract/pkg-plist Modified: head/databases/p5-DBIx-Abstract/Makefile ============================================================================== --- head/databases/p5-DBIx-Abstract/Makefile Sat Jan 25 18:28:03 2014 (r341073) +++ head/databases/p5-DBIx-Abstract/Makefile Sat Jan 25 18:45:18 2014 (r341074) @@ -20,7 +20,4 @@ TEST_DEPENDS= p5-DBD-SQLite>=0:${PORTSDI USES= perl5 USE_PERL5= configure -MAN3= DBIx::Abstract.3 - -NO_STAGE= yes .include Modified: head/databases/p5-DBIx-Abstract/pkg-plist ============================================================================== --- head/databases/p5-DBIx-Abstract/pkg-plist Sat Jan 25 18:28:03 2014 (r341073) +++ head/databases/p5-DBIx-Abstract/pkg-plist Sat Jan 25 18:45:18 2014 (r341074) @@ -1,7 +1,6 @@ %%SITE_PERL%%/DBIx/Abstract.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Abstract/.packlist +%%PERL5_MAN3%%/DBIx::Abstract.3.gz @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Abstract -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Abstract @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx -@dirrmtry %%SITE_PERL%%/DBIx/Abstract @dirrmtry %%SITE_PERL%%/DBIx From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 18:52:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61F38478; Sat, 25 Jan 2014 18:52:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 33AB51932; Sat, 25 Jan 2014 18:52:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PIqFsJ047236; Sat, 25 Jan 2014 18:52:15 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PIqEiQ047233; Sat, 25 Jan 2014 18:52:14 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251852.s0PIqEiQ047233@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 18:52:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341075 - in head/graphics/picviz: . 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.17 Precedence: list List-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, 25 Jan 2014 18:52:15 -0000 Author: antoine Date: Sat Jan 25 18:52:14 2014 New Revision: 341075 URL: http://svnweb.freebsd.org/changeset/ports/341075 QAT: https://qat.redports.org/buildarchive/r341075/ Log: - Add explicit dependency on pkgconf (needed for cairo detection) - Patch a CMakeLists to properly change rpath during install - Add stage support Added: head/graphics/picviz/files/patch-src__bin__CMakeLists.txt (contents, props changed) Modified: head/graphics/picviz/Makefile head/graphics/picviz/pkg-plist Modified: head/graphics/picviz/Makefile ============================================================================== --- head/graphics/picviz/Makefile Sat Jan 25 18:45:18 2014 (r341074) +++ head/graphics/picviz/Makefile Sat Jan 25 18:52:14 2014 (r341075) @@ -3,7 +3,7 @@ PORTNAME= picviz PORTVERSION= 0.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics security MASTER_SITES= http://www.wallinfire.net/picviz/attachment/wiki/ReleasesDownload/ DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}?format=raw @@ -11,13 +11,10 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}${E MAINTAINER= ports@timit.nl COMMENT= Parallel coordinates plotter -LIB_DEPENDS= pcre.3:${PORTSDIR}/devel/pcre \ - cairo.2:${PORTSDIR}/graphics/cairo +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre \ + libcairo.so:${PORTSDIR}/graphics/cairo USE_LDCONFIG= yes -USES= bison cmake +USES= bison cmake pkgconfig -MAN1= pcv.1 - -NO_STAGE= yes .include Added: head/graphics/picviz/files/patch-src__bin__CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/picviz/files/patch-src__bin__CMakeLists.txt Sat Jan 25 18:52:14 2014 (r341075) @@ -0,0 +1,8 @@ +--- ./src/bin/CMakeLists.txt.orig 2008-10-27 11:39:31.000000000 +0000 ++++ ./src/bin/CMakeLists.txt 2014-01-25 16:50:49.000000000 +0000 +@@ -3,4 +3,4 @@ + add_executable(pcv pcv.c) + target_link_libraries(pcv picviz) + +-INSTALL(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/pcv DESTINATION bin) ++INSTALL(TARGETS pcv DESTINATION bin) Modified: head/graphics/picviz/pkg-plist ============================================================================== --- head/graphics/picviz/pkg-plist Sat Jan 25 18:45:18 2014 (r341074) +++ head/graphics/picviz/pkg-plist Sat Jan 25 18:52:14 2014 (r341075) @@ -29,5 +29,6 @@ lib/picviz/libpicvizoutsvg.so lib/picviz/libpicvizrendebug.so lib/picviz/libpicvizrenheatline.so libdata/pkgconfig/picviz.pc +man/man1/pcv.1.gz @dirrm lib/picviz @dirrm include/picviz From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 19:10:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9D3CA93; Sat, 25 Jan 2014 19:10:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B66141A1D; Sat, 25 Jan 2014 19:10:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PJA2vs052436; Sat, 25 Jan 2014 19:10:02 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PJA2fk052435; Sat, 25 Jan 2014 19:10:02 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251910.s0PJA2fk052435@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 19:10:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341076 - head/graphics/ImageMagick-nox11 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 19:10:02 -0000 Author: antoine Date: Sat Jan 25 19:10:02 2014 New Revision: 341076 URL: http://svnweb.freebsd.org/changeset/ports/341076 QAT: https://qat.redports.org/buildarchive/r341076/ Log: Master port was staged, so add stage support here too so that man pages are correctly handled. Modified: head/graphics/ImageMagick-nox11/Makefile Modified: head/graphics/ImageMagick-nox11/Makefile ============================================================================== --- head/graphics/ImageMagick-nox11/Makefile Sat Jan 25 18:52:14 2014 (r341075) +++ head/graphics/ImageMagick-nox11/Makefile Sat Jan 25 19:10:02 2014 (r341076) @@ -6,5 +6,4 @@ PORTSCOUT= ignore:1 MASTERDIR= ${.CURDIR}/../ImageMagick -NO_STAGE= yes .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 19:23:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F5DCFAF; Sat, 25 Jan 2014 19:23:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 898931B44; Sat, 25 Jan 2014 19:23:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PJNonA059217; Sat, 25 Jan 2014 19:23:50 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PJNo8C059215; Sat, 25 Jan 2014 19:23:50 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251923.s0PJNo8C059215@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 19:23:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341077 - head/x11-wm/jewel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 19:23:50 -0000 Author: antoine Date: Sat Jan 25 19:23:49 2014 New Revision: 341077 URL: http://svnweb.freebsd.org/changeset/ports/341077 QAT: https://qat.redports.org/buildarchive/r341077/ Log: Finish stage support Modified: head/x11-wm/jewel/Makefile head/x11-wm/jewel/pkg-plist Modified: head/x11-wm/jewel/Makefile ============================================================================== --- head/x11-wm/jewel/Makefile Sat Jan 25 19:10:02 2014 (r341076) +++ head/x11-wm/jewel/Makefile Sat Jan 25 19:23:49 2014 (r341077) @@ -3,7 +3,7 @@ PORTNAME= jewel PORTVERSION= 0.12.41 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-wm MASTER_SITES= http://mjr.towers.org.uk/comp/ @@ -15,7 +15,6 @@ OPTIONS_DEFINE= DOCS ALL_TARGET= all DOCS= Changelog Changelog.DLR Changelog.jewel INSTALL LICENSE README PORTDOCS= * -MAN1= jewel.1x USES+= gmake USE_XORG= x11 xext xpm @@ -31,7 +30,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/goodies/fspanel/fspanel ${STAGEDIR}${PREFIX}/bin/jewel-fspanel ${INSTALL_PROGRAM} ${WRKSRC}/goodies/setrootimage/setrootimage ${STAGEDIR}${PREFIX}/bin/jewel-setrootimage ${INSTALL_PROGRAM} ${WRKSRC}/goodies/xsession/xsession ${STAGEDIR}${PREFIX}/bin/jewel-xsession - ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/jewel.1x ${STAGEDIR}${PREFIX}/man/man1 .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} .for ii in ${DOCS} Modified: head/x11-wm/jewel/pkg-plist ============================================================================== --- head/x11-wm/jewel/pkg-plist Sat Jan 25 19:10:02 2014 (r341076) +++ head/x11-wm/jewel/pkg-plist Sat Jan 25 19:23:49 2014 (r341077) @@ -3,3 +3,4 @@ bin/jewel-appbar bin/jewel-fspanel bin/jewel-setrootimage bin/jewel-xsession +man/man1/jewel.1x.gz From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 19:25:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49933165; Sat, 25 Jan 2014 19:25:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D07D1B4F; Sat, 25 Jan 2014 19:25:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PJP2wm059467; Sat, 25 Jan 2014 19:25:02 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PJP2bK059462; Sat, 25 Jan 2014 19:25:02 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401251925.s0PJP2bK059462@svn.freebsd.org> From: Steve Wills Date: Sat, 25 Jan 2014 19:25:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341078 - head/textproc/rubygem-kramdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 19:25:03 -0000 Author: swills Date: Sat Jan 25 19:25:02 2014 New Revision: 341078 URL: http://svnweb.freebsd.org/changeset/ports/341078 QAT: https://qat.redports.org/buildarchive/r341078/ Log: - Update to 1.3.1 - Add LICENSE - Update homepage PR: ports/185064 Submitted by: Horia Racoviceanu Modified: head/textproc/rubygem-kramdown/Makefile head/textproc/rubygem-kramdown/distinfo head/textproc/rubygem-kramdown/pkg-descr Modified: head/textproc/rubygem-kramdown/Makefile ============================================================================== --- head/textproc/rubygem-kramdown/Makefile Sat Jan 25 19:23:49 2014 (r341077) +++ head/textproc/rubygem-kramdown/Makefile Sat Jan 25 19:25:02 2014 (r341078) @@ -2,16 +2,19 @@ # $FreeBSD$ PORTNAME= kramdown -PORTVERSION= 1.0.2 +PORTVERSION= 1.3.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Yet-another-markdown-parser but fast, pure Ruby +LICENSE= MIT + USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes + PLIST_FILES= bin/kramdown .include Modified: head/textproc/rubygem-kramdown/distinfo ============================================================================== --- head/textproc/rubygem-kramdown/distinfo Sat Jan 25 19:23:49 2014 (r341077) +++ head/textproc/rubygem-kramdown/distinfo Sat Jan 25 19:25:02 2014 (r341078) @@ -1,2 +1,2 @@ -SHA256 (rubygem/kramdown-1.0.2.gem) = 730834b6d572ae67752f49e5670af51318a5da9a386ccbfd2a92ba29ec3a60dc -SIZE (rubygem/kramdown-1.0.2.gem) = 214528 +SHA256 (rubygem/kramdown-1.3.1.gem) = b3c74547bd6d2e0f1fa34e049c7fcf3322d4a9821a72f2fad85fe6f7745da4e2 +SIZE (rubygem/kramdown-1.3.1.gem) = 224768 Modified: head/textproc/rubygem-kramdown/pkg-descr ============================================================================== --- head/textproc/rubygem-kramdown/pkg-descr Sat Jan 25 19:23:49 2014 (r341077) +++ head/textproc/rubygem-kramdown/pkg-descr Sat Jan 25 19:25:02 2014 (r341078) @@ -1,4 +1,4 @@ kramdown is yet-another-markdown-parser but fast, pure Ruby, using a strict syntax definition and supporting several common extensions. -WWW: http://kramdown.rubyforge.org/ +WWW: http://kramdown.gettalong.org/ From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 19:32:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96B7343C; Sat, 25 Jan 2014 19:32:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 685091CFD; Sat, 25 Jan 2014 19:32:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PJWFK6062873; Sat, 25 Jan 2014 19:32:15 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PJWF4d062871; Sat, 25 Jan 2014 19:32:15 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401251932.s0PJWF4d062871@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 19:32:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341079 - head/cad/atlc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 19:32:15 -0000 Author: antoine Date: Sat Jan 25 19:32:14 2014 New Revision: 341079 URL: http://svnweb.freebsd.org/changeset/ports/341079 QAT: https://qat.redports.org/buildarchive/r341079/ Log: Add a missing plist Added: head/cad/atlc/pkg-plist (contents, props changed) Modified: head/cad/atlc/Makefile Modified: head/cad/atlc/Makefile ============================================================================== --- head/cad/atlc/Makefile Sat Jan 25 19:25:02 2014 (r341078) +++ head/cad/atlc/Makefile Sat Jan 25 19:32:14 2014 (r341079) @@ -3,6 +3,7 @@ PORTNAME= atlc PORTVERSION= 4.6.1 +PORTREVISION= 1 CATEGORIES= cad MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -17,6 +18,7 @@ USE_BZIP2= yes GNU_CONFIGURE= yes PORTDOCS= * +PORTEXAMPLES= * MAKE_ARGS= examplesdir=${EXAMPLESDIR} \ htmldir=${DOCSDIR}/html-docs \ Added: head/cad/atlc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/atlc/pkg-plist Sat Jan 25 19:32:14 2014 (r341079) @@ -0,0 +1,35 @@ +bin/atlc +bin/coax +bin/create_any_bitmap +bin/create_bmp_for_circ_in_circ +bin/create_bmp_for_circ_in_rect +bin/create_bmp_for_microstrip_coupler +bin/create_bmp_for_rect_cen_in_rect +bin/create_bmp_for_rect_cen_in_rect_coupler +bin/create_bmp_for_rect_in_circ +bin/create_bmp_for_rect_in_rect +bin/create_bmp_for_stripline_coupler +bin/create_bmp_for_symmetrical_stripline +bin/design_coupler +bin/dualcoax +bin/find_optimal_dimensions_for_microstrip_coupler +bin/locatediff +bin/myfilelength +bin/mymd5sum +bin/readbin +man/man1/atlc.1.gz +man/man1/coax.1.gz +man/man1/create_bmp_for_circ_in_circ.1.gz +man/man1/create_bmp_for_circ_in_rect.1.gz +man/man1/create_bmp_for_microstrip_coupler.1.gz +man/man1/create_bmp_for_rect_cen_in_rect.1.gz +man/man1/create_bmp_for_rect_cen_in_rect_coupler.1.gz +man/man1/create_bmp_for_rect_in_circ.1.gz +man/man1/create_bmp_for_rect_in_rect.1.gz +man/man1/create_bmp_for_stripline_coupler.1.gz +man/man1/create_bmp_for_symmetrical_stripline.1.gz +man/man1/design_coupler.1.gz +man/man1/dualcoax.1.gz +man/man1/find_optimal_dimensions_for_microstrip_coupler.1.gz +man/man1/readbin.1.gz +man/man1/sysdata.1.gz From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 19:34:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F35CA561; Sat, 25 Jan 2014 19:34:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DEC471D0E; Sat, 25 Jan 2014 19:34:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PJYQi3063218; Sat, 25 Jan 2014 19:34:26 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PJYQ4J063216; Sat, 25 Jan 2014 19:34:26 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201401251934.s0PJYQ4J063216@svn.freebsd.org> From: Gerald Pfeifer Date: Sat, 25 Jan 2014 19:34:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341080 - head/lang/gcc44 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 19:34:27 -0000 Author: gerald Date: Sat Jan 25 19:34:26 2014 New Revision: 341080 URL: http://svnweb.freebsd.org/changeset/ports/341080 QAT: https://qat.redports.org/buildarchive/r341080/ Log: Update deprecation message now that no other port depends on gcc44 any more. Still convert to staging, remove a no longer necessary dependency on bison and backport some other changes (variable naming,...) from lang/gcc46 in case someone wants or needs to retain this port locally after we remove it here. Modified: head/lang/gcc44/Makefile head/lang/gcc44/pkg-plist Modified: head/lang/gcc44/Makefile ============================================================================== --- head/lang/gcc44/Makefile Sat Jan 25 19:32:14 2014 (r341079) +++ head/lang/gcc44/Makefile Sat Jan 25 19:34:26 2014 (r341080) @@ -6,7 +6,7 @@ PORTVERSION= 4.4.7 PORTEPOCH= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GCC} -MASTER_SITE_SUBDIR= releases/gcc-${VERSIONSTRING} +MASTER_SITE_SUBDIR= releases/gcc-${DISTVERSION} DISTNAME= gcc-${DISTVERSION} MAINTAINER= gerald@FreeBSD.org @@ -16,13 +16,16 @@ LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/ libmpfr.so:${PORTSDIR}/math/mpfr RUN_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils -DEPRECATED= Superseded by GCC 4.6, only kept for the sake of cad/salome +DEPRECATED= Superseded by GCC 4.6 -VERSIONSTRING= ${PORTVERSION} +# DISTVERSION relates to downloads, GCC_VERSION and SUFFIX to names +# of executables and directories once installed. +DISTVERSION= ${PORTVERSION} +GCC_VERSION= ${PORTVERSION:C/(.+)\.[0-9]{8}/\1/} SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/} ONLY_FOR_ARCHS= amd64 i386 sparc64 USE_BINUTILS= yes -USES= bison gmake iconv perl5 +USES= gmake iconv perl5 USE_BZIP2= yes USE_PERL5= build SSP_UNSAFE= yes @@ -30,7 +33,6 @@ SSP_UNSAFE= yes PATCH_WRKSRC= ${SRCDIR} CONFIGURE_SCRIPT= ../${SRCDIR:S/${WRKDIR}\///}/configure -NO_STAGE= yes .include .if ${ARCH} == "amd64" @@ -39,7 +41,7 @@ CONFIGURE_TARGET= x86_64-portbld-${OPSYS CONFIGURE_TARGET= ${ARCH}-portbld-${OPSYS:L}${OSREL} .endif -SRCDIR= ${WRKDIR}/gcc-${VERSIONSTRING} +SRCDIR= ${WRKDIR}/gcc-${DISTVERSION} WRKSRC= ${WRKDIR}/build TARGLIB= ${PREFIX}/lib/gcc${SUFFIX} LIBEXEC= ${PREFIX}/libexec/gcc${SUFFIX} @@ -61,14 +63,9 @@ CONFIGURE_ARGS+=--disable-bootstrap \ --with-system-zlib MAKE_ARGS+= MAKEINFOFLAGS="--no-split" USE_LDCONFIG= ${TARGLIB} -PLIST_SUB= GCC_VER=${PORTVERSION} \ +PLIST_SUB= GCC_VERSION=${GCC_VERSION} \ GNU_HOST=${CONFIGURE_TARGET} \ SUFFIX=${SUFFIX} -MAN1= cpp${SUFFIX}.1 \ - g++${SUFFIX}.1 \ - gcc${SUFFIX}.1 \ - gcov${SUFFIX}.1 \ - gfortran${SUFFIX}.1 INFO= gcc${SUFFIX}/cpp \ gcc${SUFFIX}/cppinternals \ gcc${SUFFIX}/gcc \ @@ -86,13 +83,11 @@ pre-configure: @${MKDIR} ${CONFIGURE_WRKSRC} post-install: - ${RM} -f ${PREFIX}/man/man7/fsf-funding.7 \ - ${PREFIX}/man/man7/gfdl.7 ${PREFIX}/man/man7/gpl.7 - ${RM} -f ${TARGLIB}/*.la + ${RM} -f ${STAGEDIR}${TARGLIB}/*.la # Add target libraries and include files to packaging list. ${RM} -f ${WRKDIR}/PLIST.lib .for d in ${TARGLIB:S/^${PREFIX}\///} ${LIBEXEC:S/^${PREFIX}\///} - cd ${PREFIX} ; if [ -d $d ]; then \ + cd ${STAGEDIR}${PREFIX} ; if [ -d $d ]; then \ ${FIND} $d -type f -o -type l >>${WRKDIR}/PLIST.lib ;\ ${FIND} $d -type d | ${SORT} -r \ | ${SED} -e 's/^/@dirrm /g' >>${WRKDIR}/PLIST.lib ;\ Modified: head/lang/gcc44/pkg-plist ============================================================================== --- head/lang/gcc44/pkg-plist Sat Jan 25 19:32:14 2014 (r341079) +++ head/lang/gcc44/pkg-plist Sat Jan 25 19:34:26 2014 (r341080) @@ -1,7 +1,7 @@ bin/%%GNU_HOST%%-c++%%SUFFIX%% bin/%%GNU_HOST%%-g++%%SUFFIX%% bin/%%GNU_HOST%%-gcc%%SUFFIX%% -bin/%%GNU_HOST%%-gcc-%%GCC_VER%% +bin/%%GNU_HOST%%-gcc-%%GCC_VERSION%% bin/%%GNU_HOST%%-gfortran%%SUFFIX%% bin/c++%%SUFFIX%% bin/cpp%%SUFFIX%% @@ -11,4 +11,9 @@ bin/gccbug%%SUFFIX%% bin/gcov%%SUFFIX%% bin/gfortran%%SUFFIX%% info/gcc%%SUFFIX%%/dir +man/man1/cpp%%SUFFIX%%.1.gz +man/man1/g++%%SUFFIX%%.1.gz +man/man1/gcc%%SUFFIX%%.1.gz +man/man1/gcov%%SUFFIX%%.1.gz +man/man1/gfortran%%SUFFIX%%.1.gz @comment Insert PLIST.lib here From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 19:42:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A325EA04; Sat, 25 Jan 2014 19:42:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8361C1DD1; Sat, 25 Jan 2014 19:42:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PJg4Mf066954; Sat, 25 Jan 2014 19:42:04 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PJg3uA066951; Sat, 25 Jan 2014 19:42:03 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401251942.s0PJg3uA066951@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sat, 25 Jan 2014 19:42:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341081 - in head/devel: py-Products.GenericSetup py-Products.MIMETools py-Products.OFSP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 19:42:04 -0000 Author: rm Date: Sat Jan 25 19:42:03 2014 New Revision: 341081 URL: http://svnweb.freebsd.org/changeset/ports/341081 QAT: https://qat.redports.org/buildarchive/r341081/ Log: - convert to auto-generated packing list - move DIST_SUBDIR upper, where appropriate - bump PORTREVISION Deleted: head/devel/py-Products.GenericSetup/pkg-plist head/devel/py-Products.MIMETools/pkg-plist head/devel/py-Products.OFSP/pkg-plist Modified: head/devel/py-Products.GenericSetup/Makefile head/devel/py-Products.MIMETools/Makefile head/devel/py-Products.OFSP/Makefile Modified: head/devel/py-Products.GenericSetup/Makefile ============================================================================== --- head/devel/py-Products.GenericSetup/Makefile Sat Jan 25 19:34:26 2014 (r341080) +++ head/devel/py-Products.GenericSetup/Makefile Sat Jan 25 19:42:03 2014 (r341081) @@ -2,9 +2,11 @@ PORTNAME= Products.GenericSetup PORTVERSION= 1.7.4 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Read Zope configuration state from profile dirs / tarballs @@ -15,11 +17,9 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}eg RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}five.localsitemanager>=0:${PORTSDIR}/devel/py-five.localsitemanager \ ${PYTHON_PKGNAMEPREFIX}zope.formlib>=0:${PORTSDIR}/devel/py-zope.formlib -DIST_SUBDIR= zope -USE_PYTHON= 2 -USE_PYDISTUTILS=easy_install -USES= zope - -NO_STAGE= yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USES= zope .include Modified: head/devel/py-Products.MIMETools/Makefile ============================================================================== --- head/devel/py-Products.MIMETools/Makefile Sat Jan 25 19:34:26 2014 (r341080) +++ head/devel/py-Products.MIMETools/Makefile Sat Jan 25 19:42:03 2014 (r341081) @@ -2,6 +2,7 @@ PORTNAME= Products.MIMETools PORTVERSION= 2.13.0 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,10 +15,9 @@ LICENSE= ZPL21 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}DocumentTemplate>=0:${PORTSDIR}/devel/py-DocumentTemplate -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes .include Modified: head/devel/py-Products.OFSP/Makefile ============================================================================== --- head/devel/py-Products.OFSP/Makefile Sat Jan 25 19:34:26 2014 (r341080) +++ head/devel/py-Products.OFSP/Makefile Sat Jan 25 19:42:03 2014 (r341081) @@ -2,6 +2,7 @@ PORTNAME= Products.OFSP PORTVERSION= 2.13.2 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,10 +16,9 @@ LICENSE= ZPL21 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}AccessControl>=0:${PORTSDIR}/security/py-AccessControl \ ${PYTHON_PKGNAMEPREFIX}Persistence>=0:${PORTSDIR}/devel/py-Persistence -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 19:43:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC059B00; Sat, 25 Jan 2014 19:43:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BC66C1DE4; Sat, 25 Jan 2014 19:43:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PJhaFc067196; Sat, 25 Jan 2014 19:43:36 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PJha5n067193; Sat, 25 Jan 2014 19:43:36 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401251943.s0PJha5n067193@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sat, 25 Jan 2014 19:43:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341082 - head/devel/py-Products.LDAPUserFolder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 19:43:36 -0000 Author: rm Date: Sat Jan 25 19:43:35 2014 New Revision: 341082 URL: http://svnweb.freebsd.org/changeset/ports/341082 QAT: https://qat.redports.org/buildarchive/r341082/ Log: - update to 2.26 - move DIST_SUBDIR upper - support stage Modified: head/devel/py-Products.LDAPUserFolder/Makefile head/devel/py-Products.LDAPUserFolder/distinfo head/devel/py-Products.LDAPUserFolder/pkg-plist Modified: head/devel/py-Products.LDAPUserFolder/Makefile ============================================================================== --- head/devel/py-Products.LDAPUserFolder/Makefile Sat Jan 25 19:42:03 2014 (r341081) +++ head/devel/py-Products.LDAPUserFolder/Makefile Sat Jan 25 19:43:35 2014 (r341082) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= Products.LDAPUserFolder -PORTVERSION= 2.23 -PORTREVISION= 1 +PORTVERSION= 2.26 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= LDAP-enabled Zope 2 user folder @@ -16,17 +16,13 @@ LICENSE= ZPL21 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools-git>=0.4.2:${PORTSDIR}/devel/py-setuptools-git RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap2>=2.0.6:${PORTSDIR}/net/py-ldap2 -OPTIONS_DEFINE= POSIXGROUP_PATCH +OPTIONS_DEFINE= POSIXGROUP_PATCH POSIXGROUP_PATCH_DESC= Use posixGroup for group membership - OPTIONS_DEFAULT= POSIXGROUP_PATCH -DIST_SUBDIR= zope -USE_PYTHON= 2 -USE_PYDISTUTILS=easy_install -#USES= zope - -NO_STAGE= yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +#USES= zope .include Modified: head/devel/py-Products.LDAPUserFolder/distinfo ============================================================================== --- head/devel/py-Products.LDAPUserFolder/distinfo Sat Jan 25 19:42:03 2014 (r341081) +++ head/devel/py-Products.LDAPUserFolder/distinfo Sat Jan 25 19:43:35 2014 (r341082) @@ -1,2 +1,2 @@ -SHA256 (zope/Products.LDAPUserFolder-2.23.tar.gz) = 258a119fd3cb0768bd3f13dbd17bb0ed1bc41497f5e93754576f5331aaeaf8c2 -SIZE (zope/Products.LDAPUserFolder-2.23.tar.gz) = 129512 +SHA256 (zope/Products.LDAPUserFolder-2.26.tar.gz) = 254066b57869b8b5f844f1151360f5440a5a6c64c23ae6e03eb226c201247903 +SIZE (zope/Products.LDAPUserFolder-2.26.tar.gz) = 121052 Modified: head/devel/py-Products.LDAPUserFolder/pkg-plist ============================================================================== --- head/devel/py-Products.LDAPUserFolder/pkg-plist Sat Jan 25 19:42:03 2014 (r341081) +++ head/devel/py-Products.LDAPUserFolder/pkg-plist Sat Jan 25 19:43:35 2014 (r341082) @@ -1,155 +1,142 @@ -%%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/namespace_packages.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%%/Products/LDAPUserFolder/LDAPDelegate.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPDelegate.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPDelegate.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPMemberDataTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPMemberDataTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPMemberDataTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPMembershipTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPMembershipTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPMembershipTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPUser.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPUser.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPUser.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPUserFolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPUserFolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPUserFolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPUserSatellite.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPUserSatellite.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/LDAPUserSatellite.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/SharedResource.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/SharedResource.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/SharedResource.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/SimpleCache.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/SimpleCache.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/SimpleCache.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/configure.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml/addLDAPUserSatellite.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml/cache.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml/groups.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml/ldapschema.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml/properties.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml/sat_cache.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml/sat_properties.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml/servers.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml/users.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/exportimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/exportimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/exportimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/AddSatellite.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/Caches.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/CachesSatellite.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/Configure.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/ConfigureSatellite.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/Groups.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/LDAPUser.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/LDAPUser.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/LDAPUser.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/LDAPUserFolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/LDAPUserFolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/LDAPUserFolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/Schema.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/Servers.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help/Users.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/interfaces.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/interfaces.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/interfaces.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/profiles/cmfldap/metadata.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/profiles/cmfldap/skins.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/profiles/cmfldap/toolset.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/skins/cmfldap/join_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/skins/cmfldap/join_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/skins/cmfldap/members_add_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/skins/cmfldap/personalize_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base/dummy.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base/dummy.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base/dummy.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base/testcase.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base/testcase.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base/testcase.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/config.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/config.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/config.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test.jpg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPDelegate.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPDelegate.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPDelegate.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPMemberDataTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPMemberDataTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPMemberDataTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPMembershipTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPMembershipTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPMembershipTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPUser.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPUser.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPUser.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPUserFolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPUserFolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPUserFolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPUserSatellite.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPUserSatellite.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_LDAPUserSatellite.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_SimpleCache.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_SimpleCache.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_SimpleCache.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_authentication.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_authentication.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_authentication.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_exportimport.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_exportimport.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_exportimport.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_functional.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_functional.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_functional.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_group_role.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_group_role.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_group_role.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_schemamanagement.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_schemamanagement.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_schemamanagement.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_servermanagement.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_servermanagement.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_servermanagement.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/test_utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tool.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/www/cmfldap_contents.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/www/cmfldap_memberProperties.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/www/ldapuserfolder.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/www/ldapusersatellite.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/__init__.pyo -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/www -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests/base -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/skins/cmfldap -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/skins -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/profiles/cmfldap -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/profiles -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/help -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder/dtml -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/LDAPUserFolder -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPDelegate.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPDelegate.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPDelegate.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPMemberDataTool.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPMemberDataTool.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPMemberDataTool.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPMembershipTool.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPMembershipTool.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPMembershipTool.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPUser.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPUser.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPUser.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPUserFolder.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPUserFolder.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPUserFolder.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPUserSatellite.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPUserSatellite.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/LDAPUserSatellite.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/SharedResource.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/SharedResource.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/SharedResource.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/SimpleCache.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/SimpleCache.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/SimpleCache.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/__init__.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/configure.zcml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml/addLDAPUserSatellite.dtml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml/cache.dtml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml/groups.dtml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml/ldapschema.dtml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml/properties.dtml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml/sat_cache.dtml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml/sat_properties.dtml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml/servers.dtml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml/users.dtml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/exportimport.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/exportimport.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/exportimport.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/AddSatellite.stx +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/Caches.stx +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/CachesSatellite.stx +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/Configure.stx +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/ConfigureSatellite.stx +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/Groups.stx +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/LDAPUser.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/LDAPUser.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/LDAPUser.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/LDAPUserFolder.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/LDAPUserFolder.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/LDAPUserFolder.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/Schema.stx +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/Servers.stx +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help/Users.stx +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/interfaces.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/interfaces.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/interfaces.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/profiles/cmfldap/metadata.xml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/profiles/cmfldap/skins.xml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/profiles/cmfldap/toolset.xml +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/skins/cmfldap/join_form.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/skins/cmfldap/join_template.pt +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/skins/cmfldap/members_add_control.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/skins/cmfldap/personalize_form.pt +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/__init__.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base/__init__.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base/dummy.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base/dummy.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base/dummy.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base/testcase.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base/testcase.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base/testcase.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/config.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/config.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/config.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test.jpg +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPDelegate.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPDelegate.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPDelegate.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPMemberDataTool.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPMemberDataTool.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPMemberDataTool.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPMembershipTool.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPMembershipTool.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPMembershipTool.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPUser.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPUser.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPUser.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPUserFolder.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPUserFolder.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPUserFolder.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPUserSatellite.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPUserSatellite.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_LDAPUserSatellite.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_SimpleCache.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_SimpleCache.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_SimpleCache.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_authentication.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_authentication.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_authentication.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_exportimport.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_exportimport.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_exportimport.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_functional.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_functional.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_functional.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_group_role.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_group_role.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_group_role.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_schemamanagement.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_schemamanagement.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_schemamanagement.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_servermanagement.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_servermanagement.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_servermanagement.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_utils.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_utils.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/test_utils.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tool.gif +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/utils.py +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/utils.pyc +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/utils.pyo +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/www/cmfldap_contents.pt +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/www/cmfldap_memberProperties.pt +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/www/ldapuserfolder.gif +%%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/www/ldapusersatellite.gif +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/www +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests/base +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/tests +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/skins/cmfldap +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/skins +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/profiles/cmfldap +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/profiles +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/help +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder/dtml +@dirrm %%PYTHON_SITELIBDIR%%/Products/LDAPUserFolder +@dirrmtry %%PYTHON_SITELIBDIR%%/Products From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 19:44:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D7CCC4B; Sat, 25 Jan 2014 19:44:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 176651DF9; Sat, 25 Jan 2014 19:44:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PJiMqX067477; Sat, 25 Jan 2014 19:44:22 GMT (envelope-from decke@svn.freebsd.org) Received: (from decke@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PJiL6k067466; Sat, 25 Jan 2014 19:44:21 GMT (envelope-from decke@svn.freebsd.org) Message-Id: <201401251944.s0PJiL6k067466@svn.freebsd.org> From: Bernhard Froehlich Date: Sat, 25 Jan 2014 19:44:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341083 - in head/multimedia/mythtv: . 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.17 Precedence: list List-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, 25 Jan 2014 19:44:23 -0000 Author: decke Date: Sat Jan 25 19:44:21 2014 New Revision: 341083 URL: http://svnweb.freebsd.org/changeset/ports/341083 QAT: https://qat.redports.org/buildarchive/r341083/ Log: - Update to latest 0.27 stable branch from github - Add patches to build with clang [1] - Use OPTIONS_SUB PR: ports/186005 [1] Submitted by: John Clark [1] Added: head/multimedia/mythtv/files/patch-libs__libmyth__remoteutil.h (contents, props changed) head/multimedia/mythtv/files/patch-libs__libmythui__mythgesture.cpp (contents, props changed) head/multimedia/mythtv/files/patch-libs__libmythui__mythpainter.cpp (contents, props changed) head/multimedia/mythtv/files/patch-libs__libmythupnp__mmulticastsocketdevice.h (contents, props changed) Modified: head/multimedia/mythtv/Makefile head/multimedia/mythtv/distinfo head/multimedia/mythtv/files/patch-libs__libmythtv__recorders__dvbdev__dvbci.cpp head/multimedia/mythtv/pkg-plist Modified: head/multimedia/mythtv/Makefile ============================================================================== --- head/multimedia/mythtv/Makefile Sat Jan 25 19:43:35 2014 (r341082) +++ head/multimedia/mythtv/Makefile Sat Jan 25 19:44:21 2014 (r341083) @@ -2,8 +2,9 @@ # $FreeBSD$ PORTNAME= mythtv -PORTVERSION= 0.27 +PORTVERSION= 0.27.0.20140121 CATEGORIES= multimedia +MASTER_SITES= http://people.freebsd.org/~decke/distfiles/ MAINTAINER= decke@FreeBSD.org COMMENT= MythTV is a homebrew PVR project @@ -21,11 +22,11 @@ CONFLICTS= mythtv-frontend-[0-9]* USE_GITHUB= yes GH_ACCOUNT= MythTV -GH_TAGNAME= v${PORTVERSION} +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 5a5e1cd -WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-e9545c0/${GH_PROJECT} +WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT}/${GH_PROJECT} -USE_GCC= any ONLY_FOR_ARCHS= i386 amd64 USES= gmake pkgconfig perl5 USE_QT4= gui sql network script linguist_build l10n sql-mysql_run \ @@ -56,7 +57,8 @@ CONFIGURE_ARGS= --prefix="${PREFIX}" --c QMAKESPEC?= ${LOCALBASE}/share/qt4/mkspecs/freebsd-g++ OPTIONS_DEFINE= BINDINGS LIRC MYSQL OPENGL VDPAU -OPTIONS_DEFAULT= BINDINGS OPENGL +OPTIONS_DEFAULT= BINDINGS OPENGL VDPAU +OPTIONS_SUB= BINDINGS BINDINGS_DESC= Perl and Python bindings LIRC_LIB_DEPENDS= liblirc_client.so:${PORTSDIR}/comms/lirc @@ -103,10 +105,8 @@ RUN_DEPENDS+= py*-lxml>=0:${PORTSDIR}/de p5-IO-Socket-INET6>=2.51:${PORTSDIR}/net/p5-IO-Socket-INET6 \ p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ p5-DBD-mysql>0:${PORTSDIR}/databases/p5-DBD-mysql -PLIST_SUB+= BINDINGS="" .else CONFIGURE_ARGS+=--without-bindings=perl,python -PLIST_SUB+= BINDINGS="@comment " .endif .if ${PORT_OPTIONS:MOPENGL} Modified: head/multimedia/mythtv/distinfo ============================================================================== --- head/multimedia/mythtv/distinfo Sat Jan 25 19:43:35 2014 (r341082) +++ head/multimedia/mythtv/distinfo Sat Jan 25 19:44:21 2014 (r341083) @@ -1,2 +1,2 @@ -SHA256 (mythtv-0.27.tar.gz) = e8d77c48f487bd057b2f887c27416d502b79c78c4e1cfb05d87ec70d690f8d0d -SIZE (mythtv-0.27.tar.gz) = 85915149 +SHA256 (mythtv-0.27.0.20140121.tar.gz) = dcc6c2401110111793999faf8f317c9036378e2a90cbb55b990f138e76a39dad +SIZE (mythtv-0.27.0.20140121.tar.gz) = 85938811 Added: head/multimedia/mythtv/files/patch-libs__libmyth__remoteutil.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mythtv/files/patch-libs__libmyth__remoteutil.h Sat Jan 25 19:44:21 2014 (r341083) @@ -0,0 +1,11 @@ +--- libs/libmyth/remoteutil.h.orig 2013-09-18 16:06:08.000000000 -0400 ++++ libs/libmyth/remoteutil.h 2014-01-22 08:26:34.000000000 -0500 +@@ -8,6 +8,7 @@ + using namespace std; + + #include "mythexp.h" ++#include + + class ProgramInfo; + class MythEvent; + Modified: head/multimedia/mythtv/files/patch-libs__libmythtv__recorders__dvbdev__dvbci.cpp ============================================================================== --- head/multimedia/mythtv/files/patch-libs__libmythtv__recorders__dvbdev__dvbci.cpp Sat Jan 25 19:43:35 2014 (r341082) +++ head/multimedia/mythtv/files/patch-libs__libmythtv__recorders__dvbdev__dvbci.cpp Sat Jan 25 19:44:21 2014 (r341083) @@ -1,11 +1,13 @@ ---- libs/libmythtv/recorders/dvbdev/dvbci.cpp.orig 2010-03-07 04:11:52.000000000 +0100 -+++ libs/libmythtv/recorders/dvbdev/dvbci.cpp 2010-04-26 23:30:52.000000000 +0200 -@@ -28,7 +28,9 @@ +--- libs/libmythtv/recorders/dvbdev/dvbci.cpp.orig 2010-04-26 23:30:52.000000000 +0200 ++++ libs/libmythtv/recorders/dvbdev/dvbci.cpp 2014-01-22 09:13:22.000000000 -0500 +@@ -28,7 +28,11 @@ #include #include #include +#ifndef __FreeBSD__ #include ++#else ++#include +#endif #include #include Added: head/multimedia/mythtv/files/patch-libs__libmythui__mythgesture.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mythtv/files/patch-libs__libmythui__mythgesture.cpp Sat Jan 25 19:44:21 2014 (r341083) @@ -0,0 +1,19 @@ +--- libs/libmythui/mythgesture.cpp.orig 2013-09-18 16:06:08.000000000 -0400 ++++ libs/libmythui/mythgesture.cpp 2014-01-22 08:20:33.000000000 -0500 +@@ -28,6 +28,7 @@ + + #include "mythgesture.h" + ++#include + #include + #include + +@@ -283,7 +284,7 @@ + int dely = p.y() - points.back().y(); + + /* step by the greatest delta direction */ +- if (abs(delx) > abs(dely)) ++ if (std::abs(delx) > std::abs(dely)) + { + float iy = points.back().y(); + Added: head/multimedia/mythtv/files/patch-libs__libmythui__mythpainter.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mythtv/files/patch-libs__libmythui__mythpainter.cpp Sat Jan 25 19:44:21 2014 (r341083) @@ -0,0 +1,9 @@ +--- libs/libmythui/mythpainter.cpp.orig 2013-09-18 16:06:08.000000000 -0400 ++++ libs/libmythui/mythpainter.cpp 2014-01-22 08:18:40.000000000 -0500 +@@ -1,5 +1,6 @@ + #include + #include ++#include + + // QT headers + #include Added: head/multimedia/mythtv/files/patch-libs__libmythupnp__mmulticastsocketdevice.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mythtv/files/patch-libs__libmythupnp__mmulticastsocketdevice.h Sat Jan 25 19:44:21 2014 (r341083) @@ -0,0 +1,11 @@ +--- libs/libmythupnp/mmulticastsocketdevice.h.orig 2013-09-18 16:06:08.000000000 -0400 ++++ libs/libmythupnp/mmulticastsocketdevice.h 2014-01-22 08:24:26.000000000 -0500 +@@ -18,6 +18,7 @@ + # include + # endif + #else ++# include + # include + # include + # include + Modified: head/multimedia/mythtv/pkg-plist ============================================================================== --- head/multimedia/mythtv/pkg-plist Sat Jan 25 19:43:35 2014 (r341082) +++ head/multimedia/mythtv/pkg-plist Sat Jan 25 19:44:21 2014 (r341083) @@ -525,16 +525,6 @@ include/mythtv/zeromq/zmq_utils.h %%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/static.pyc %%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/system.py %%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/system.pyc -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/XSLT/tmdbQuery.xsl -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/XSLT/tmdbVideo.xsl -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/__init__.py -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/__init__.pyc -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_api.py -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_api.pyc -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_exceptions.py -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_exceptions.pyc -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_ui.py -%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_ui.pyc %%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb3/__init__.py %%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb3/__init__.pyc %%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb3/cache.py @@ -1112,7 +1102,6 @@ lib/pkgconfig/libmythzmq.pc %%DATADIR%%/locales/ru_ru.xml %%DATADIR%%/locales/zh_hk.xml %%DATADIR%%/locales/zh_tw.xml -%%DATADIR%%/metadata/Movie/tmdb.py %%DATADIR%%/metadata/Movie/tmdb3.py %%DATADIR%%/metadata/Television/ttvdb.py %%DATADIR%%/mythconverg_backup.pl @@ -2334,8 +2323,6 @@ lib/pkgconfig/libmythzmq.pc %%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/ttvdb/XSLT %%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/ttvdb %%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/tmdb3 -%%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/tmdb/XSLT -%%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/tmdb %%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV %%BINDINGS%%@dirrmtry %%SITE_PERL%%/IO/Socket/INET %%BINDINGS%%@dirrmtry %%SITE_PERL%%/IO/Socket From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 19:45:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AE69D52; Sat, 25 Jan 2014 19:45:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2566D1E14; Sat, 25 Jan 2014 19:45:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PJjmXb067785; Sat, 25 Jan 2014 19:45:48 GMT (envelope-from decke@svn.freebsd.org) Received: (from decke@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PJjk4Z067772; Sat, 25 Jan 2014 19:45:46 GMT (envelope-from decke@svn.freebsd.org) Message-Id: <201401251945.s0PJjk4Z067772@svn.freebsd.org> From: Bernhard Froehlich Date: Sat, 25 Jan 2014 19:45:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341084 - in head/multimedia/mythtv-frontend: . 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.17 Precedence: list List-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, 25 Jan 2014 19:45:48 -0000 Author: decke Date: Sat Jan 25 19:45:46 2014 New Revision: 341084 URL: http://svnweb.freebsd.org/changeset/ports/341084 QAT: https://qat.redports.org/buildarchive/r341084/ Log: - Update to latest 0.27 stable branch from github - Add patches to build with clang [1] - Use OPTIONS_SUB PR: ports/186005 [1] Submitted by: John Clark [1] Added: head/multimedia/mythtv-frontend/files/patch-libs__libmyth__remoteutil.h (contents, props changed) head/multimedia/mythtv-frontend/files/patch-libs__libmythtv__recorders__dvbdev__dvbci.cpp (contents, props changed) head/multimedia/mythtv-frontend/files/patch-libs__libmythui__mythgesture.cpp (contents, props changed) head/multimedia/mythtv-frontend/files/patch-libs__libmythui__mythpainter.cpp (contents, props changed) head/multimedia/mythtv-frontend/files/patch-libs__libmythupnp__mmulticastsocketdevice.h (contents, props changed) Modified: head/multimedia/mythtv-frontend/Makefile head/multimedia/mythtv-frontend/distinfo Modified: head/multimedia/mythtv-frontend/Makefile ============================================================================== --- head/multimedia/mythtv-frontend/Makefile Sat Jan 25 19:44:21 2014 (r341083) +++ head/multimedia/mythtv-frontend/Makefile Sat Jan 25 19:45:46 2014 (r341084) @@ -2,8 +2,9 @@ # $FreeBSD$ PORTNAME= mythtv-frontend -PORTVERSION= 0.27 +PORTVERSION= 0.27.0.20140121 CATEGORIES= multimedia +MASTER_SITES= http://people.freebsd.org/~decke/distfiles/ DISTNAME= mythtv-${PORTVERSION} MAINTAINER= decke@FreeBSD.org @@ -21,11 +22,11 @@ CONFLICTS= mythtv-[0-9]* USE_GITHUB= yes GH_ACCOUNT= MythTV GH_PROJECT= mythtv -GH_TAGNAME= v${PORTVERSION} +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 5a5e1cd -WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-e9545c0/${GH_PROJECT} +WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT}/${GH_PROJECT} -USE_GCC= any ONLY_FOR_ARCHS= i386 amd64 USES= gmake pkgconfig USE_QT4= gui sql network script linguist_build l10n sql-mysql_run \ Modified: head/multimedia/mythtv-frontend/distinfo ============================================================================== --- head/multimedia/mythtv-frontend/distinfo Sat Jan 25 19:44:21 2014 (r341083) +++ head/multimedia/mythtv-frontend/distinfo Sat Jan 25 19:45:46 2014 (r341084) @@ -1,2 +1,2 @@ -SHA256 (mythtv-0.27.tar.gz) = e8d77c48f487bd057b2f887c27416d502b79c78c4e1cfb05d87ec70d690f8d0d -SIZE (mythtv-0.27.tar.gz) = 85915149 +SHA256 (mythtv-0.27.0.20140121.tar.gz) = dcc6c2401110111793999faf8f317c9036378e2a90cbb55b990f138e76a39dad +SIZE (mythtv-0.27.0.20140121.tar.gz) = 85938811 Added: head/multimedia/mythtv-frontend/files/patch-libs__libmyth__remoteutil.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mythtv-frontend/files/patch-libs__libmyth__remoteutil.h Sat Jan 25 19:45:46 2014 (r341084) @@ -0,0 +1,11 @@ +--- libs/libmyth/remoteutil.h.orig 2013-09-18 16:06:08.000000000 -0400 ++++ libs/libmyth/remoteutil.h 2014-01-22 08:26:34.000000000 -0500 +@@ -8,6 +8,7 @@ + using namespace std; + + #include "mythexp.h" ++#include + + class ProgramInfo; + class MythEvent; + Added: head/multimedia/mythtv-frontend/files/patch-libs__libmythtv__recorders__dvbdev__dvbci.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mythtv-frontend/files/patch-libs__libmythtv__recorders__dvbdev__dvbci.cpp Sat Jan 25 19:45:46 2014 (r341084) @@ -0,0 +1,14 @@ +--- libs/libmythtv/recorders/dvbdev/dvbci.cpp.orig 2010-04-26 23:30:52.000000000 +0200 ++++ libs/libmythtv/recorders/dvbdev/dvbci.cpp 2014-01-22 09:13:22.000000000 -0500 +@@ -28,7 +28,11 @@ + #include + #include + #include ++#ifndef __FreeBSD__ + #include ++#else ++#include ++#endif + #include + #include + #include Added: head/multimedia/mythtv-frontend/files/patch-libs__libmythui__mythgesture.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mythtv-frontend/files/patch-libs__libmythui__mythgesture.cpp Sat Jan 25 19:45:46 2014 (r341084) @@ -0,0 +1,19 @@ +--- libs/libmythui/mythgesture.cpp.orig 2013-09-18 16:06:08.000000000 -0400 ++++ libs/libmythui/mythgesture.cpp 2014-01-22 08:20:33.000000000 -0500 +@@ -28,6 +28,7 @@ + + #include "mythgesture.h" + ++#include + #include + #include + +@@ -283,7 +284,7 @@ + int dely = p.y() - points.back().y(); + + /* step by the greatest delta direction */ +- if (abs(delx) > abs(dely)) ++ if (std::abs(delx) > std::abs(dely)) + { + float iy = points.back().y(); + Added: head/multimedia/mythtv-frontend/files/patch-libs__libmythui__mythpainter.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mythtv-frontend/files/patch-libs__libmythui__mythpainter.cpp Sat Jan 25 19:45:46 2014 (r341084) @@ -0,0 +1,9 @@ +--- libs/libmythui/mythpainter.cpp.orig 2013-09-18 16:06:08.000000000 -0400 ++++ libs/libmythui/mythpainter.cpp 2014-01-22 08:18:40.000000000 -0500 +@@ -1,5 +1,6 @@ + #include + #include ++#include + + // QT headers + #include Added: head/multimedia/mythtv-frontend/files/patch-libs__libmythupnp__mmulticastsocketdevice.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/mythtv-frontend/files/patch-libs__libmythupnp__mmulticastsocketdevice.h Sat Jan 25 19:45:46 2014 (r341084) @@ -0,0 +1,11 @@ +--- libs/libmythupnp/mmulticastsocketdevice.h.orig 2013-09-18 16:06:08.000000000 -0400 ++++ libs/libmythupnp/mmulticastsocketdevice.h 2014-01-22 08:24:26.000000000 -0500 +@@ -18,6 +18,7 @@ + # include + # endif + #else ++# include + # include + # include + # include + From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:00:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E614431; Sat, 25 Jan 2014 20:00:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EE2DA10C7; Sat, 25 Jan 2014 20:00:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PK0XSS072654; Sat, 25 Jan 2014 20:00:33 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PK0Xkv072652; Sat, 25 Jan 2014 20:00:33 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401252000.s0PK0Xkv072652@svn.freebsd.org> From: Steve Wills Date: Sat, 25 Jan 2014 20:00:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341085 - in head/sysutils/pdumpfs: . 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.17 Precedence: list List-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, 25 Jan 2014 20:00:34 -0000 Author: swills Date: Sat Jan 25 20:00:33 2014 New Revision: 341085 URL: http://svnweb.freebsd.org/changeset/ports/341085 QAT: https://qat.redports.org/buildarchive/r341085/ Log: - Fix with Ruby 1.9 PR: ports/179611 Submitted by: Tsurutani Naoki Added: head/sysutils/pdumpfs/files/ head/sysutils/pdumpfs/files/extrapatch-pdumpfs.in (contents, props changed) Modified: head/sysutils/pdumpfs/Makefile Modified: head/sysutils/pdumpfs/Makefile ============================================================================== --- head/sysutils/pdumpfs/Makefile Sat Jan 25 19:45:46 2014 (r341084) +++ head/sysutils/pdumpfs/Makefile Sat Jan 25 20:00:33 2014 (r341085) @@ -3,7 +3,7 @@ PORTNAME= pdumpfs PORTVERSION= 1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= http://0xcc.net/pdumpfs/ Added: head/sysutils/pdumpfs/files/extrapatch-pdumpfs.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/pdumpfs/files/extrapatch-pdumpfs.in Sat Jan 25 20:00:33 2014 (r341085) @@ -0,0 +1,91 @@ +--- pdumpfs.in.orig 2004-12-21 11:43:12.000000000 +0900 ++++ pdumpfs.in 2013-06-22 08:58:34.000000000 +0900 +@@ -48,21 +48,21 @@ + # + + require 'find' +-require 'ftools' ++require 'fileutils' + require 'getoptlong' + require 'date' + + class File + def self.real_file? (path) +- File.file?(path) and not File.symlink?(path) ++ FileTest.file?(path) and not FileTest.symlink?(path) + end + + def self.anything_exist? (path) +- File.exist?(path) or File.symlink?(path) ++ FileTest.exist?(path) or FileTest.symlink?(path) + end + + def self.real_directory? (path) +- File.directory?(path) and not File.symlink?(path) ++ FileTest.directory?(path) and not FileTest.symlink?(path) + end + + def self.force_symlink (src, dest) +@@ -79,7 +79,7 @@ + end + + def self.readable_file? (path) +- File.file?(path) and File.readable?(path) ++ FileTest.file?(path) and FileTest.readable?(path) + end + + def self.split_all (path) +@@ -129,7 +129,7 @@ + GetVolumeInformation = Win32API.new("kernel32", "GetVolumeInformation", + "PPLPPPPL", "I") + def get_filesystem_type (path) +- return nil unless(File.exist?(path)) ++ return nil unless(FileTest.exist?(path)) + + drive = File.expand_path(path)[0..2] + buff = "\0" * 1024 +@@ -868,7 +868,7 @@ + today = File.join(dest, datedir(start_time), base) + + File.umask(0077) +- File.mkpath(today) unless @dry_run ++ FileUtils.mkpath(today) unless @dry_run + if latest + update_snapshot(src, latest, today) + else +@@ -1018,7 +1018,7 @@ + + case type + when "directory" +- File.mkpath(today) ++ FileUtils.mkpath(today) + when "unchanged" + File.force_link(latest, today) + when "updated" +@@ -1052,7 +1052,7 @@ + + Find.find(src) do |s| # path of the source file + if @matcher.exclude?(s) +- if File.lstat(s).directory? then Find.prune() else next end ++ if FileTest.directory?(s) then Find.prune() else next end + end + r = make_relative_path(s, src) + l = File.join(latest, r) # path of the latest snapshot +@@ -1077,7 +1077,7 @@ + + Find.find(src) do |s| + if @matcher.exclude?(s) +- if File.lstat(s).directory? then Find.prune() else next end ++ if FileTest.directory?(s) then Find.prune() else next end + end + r = make_relative_path(s, src) + t = File.join(dest, r) +@@ -1089,7 +1089,7 @@ + + case type + when "directory" +- File.mkpath(t) ++ FileUtils.mkpath(t) + when "new_file" + copy(s, t) + when "symlink" From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:22:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B51B0F02; Sat, 25 Jan 2014 20:22:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A19041288; Sat, 25 Jan 2014 20:22:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKMCXU083171; Sat, 25 Jan 2014 20:22:12 GMT (envelope-from lme@svn.freebsd.org) Received: (from lme@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKMCXU083169; Sat, 25 Jan 2014 20:22:12 GMT (envelope-from lme@svn.freebsd.org) Message-Id: <201401252022.s0PKMCXU083169@svn.freebsd.org> From: Lars Engels Date: Sat, 25 Jan 2014 20:22:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341086 - head/www/swiggle X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:22:12 -0000 Author: lme Date: Sat Jan 25 20:22:11 2014 New Revision: 341086 URL: http://svnweb.freebsd.org/changeset/ports/341086 QAT: https://qat.redports.org/buildarchive/r341086/ Log: - stagify - use new LIB_DEPENDS format - add license Modified: head/www/swiggle/Makefile head/www/swiggle/pkg-plist Modified: head/www/swiggle/Makefile ============================================================================== --- head/www/swiggle/Makefile Sat Jan 25 20:00:33 2014 (r341085) +++ head/www/swiggle/Makefile Sat Jan 25 20:22:11 2014 (r341086) @@ -11,20 +11,17 @@ MASTER_SITES= http://homepage.univie.ac. MAINTAINER= lme@FreeBSD.org COMMENT= Swiggle is a commandline web image gallery generator -LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \ - exif.12:${PORTSDIR}/graphics/libexif +LICENSE= BSD4CLAUSE + +LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libexif.so:${PORTSDIR}/graphics/libexif -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g' ${WRKSRC}/Makefile do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/swiggle ${PREFIX}/bin - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/swiggle ${STAGEDIR}${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include Modified: head/www/swiggle/pkg-plist ============================================================================== --- head/www/swiggle/pkg-plist Sat Jan 25 20:00:33 2014 (r341085) +++ head/www/swiggle/pkg-plist Sat Jan 25 20:22:11 2014 (r341086) @@ -1,3 +1,3 @@ bin/swiggle %%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:24:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A6FEFFB; Sat, 25 Jan 2014 20:24:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 25FA4129D; Sat, 25 Jan 2014 20:24:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKOV3d083497; Sat, 25 Jan 2014 20:24:31 GMT (envelope-from jmmv@svn.freebsd.org) Received: (from jmmv@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKOUjh083493; Sat, 25 Jan 2014 20:24:30 GMT (envelope-from jmmv@svn.freebsd.org) Message-Id: <201401252024.s0PKOUjh083493@svn.freebsd.org> From: Julio Merino Date: Sat, 25 Jan 2014 20:24:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341087 - in head/devel: kyua kyua-atf-compat kyua-testers lutok X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:24:31 -0000 Author: jmmv (src committer) Date: Sat Jan 25 20:24:29 2014 New Revision: 341087 URL: http://svnweb.freebsd.org/changeset/ports/341087 QAT: https://qat.redports.org/buildarchive/r341087/ Log: Remove FreeBSD svn keyword form pkg-plist files. Approved by: bapt (ports) Modified: head/devel/kyua-atf-compat/pkg-plist head/devel/kyua-testers/pkg-plist head/devel/kyua/pkg-plist head/devel/lutok/pkg-plist Modified: head/devel/kyua-atf-compat/pkg-plist ============================================================================== --- head/devel/kyua-atf-compat/pkg-plist Sat Jan 25 20:22:11 2014 (r341086) +++ head/devel/kyua-atf-compat/pkg-plist Sat Jan 25 20:24:29 2014 (r341087) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/atf-report bin/atf-run bin/atf2kyua Modified: head/devel/kyua-testers/pkg-plist ============================================================================== --- head/devel/kyua-testers/pkg-plist Sat Jan 25 20:22:11 2014 (r341086) +++ head/devel/kyua-testers/pkg-plist Sat Jan 25 20:24:29 2014 (r341087) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ libdata/pkgconfig/kyua-testers.pc libexec/kyua-atf-tester libexec/kyua-plain-tester Modified: head/devel/kyua/pkg-plist ============================================================================== --- head/devel/kyua/pkg-plist Sat Jan 25 20:22:11 2014 (r341086) +++ head/devel/kyua/pkg-plist Sat Jan 25 20:24:29 2014 (r341087) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ bin/kyua etc/kyua/kyua.conf man/man1/kyua-about.1.gz Modified: head/devel/lutok/pkg-plist ============================================================================== --- head/devel/lutok/pkg-plist Sat Jan 25 20:22:11 2014 (r341086) +++ head/devel/lutok/pkg-plist Sat Jan 25 20:24:29 2014 (r341087) @@ -1,4 +1,3 @@ -@comment $FreeBSD$ include/lutok/c_gate.hpp include/lutok/debug.hpp include/lutok/exceptions.hpp From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:30:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1B943D4; Sat, 25 Jan 2014 20:30:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BE5F612D3; Sat, 25 Jan 2014 20:30:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKUA76084339; Sat, 25 Jan 2014 20:30:10 GMT (envelope-from lme@svn.freebsd.org) Received: (from lme@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKUApx084338; Sat, 25 Jan 2014 20:30:10 GMT (envelope-from lme@svn.freebsd.org) Message-Id: <201401252030.s0PKUApx084338@svn.freebsd.org> From: Lars Engels Date: Sat, 25 Jan 2014 20:30:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341088 - head/www/dhttpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:30:10 -0000 Author: lme Date: Sat Jan 25 20:30:10 2014 New Revision: 341088 URL: http://svnweb.freebsd.org/changeset/ports/341088 QAT: https://qat.redports.org/buildarchive/r341088/ Log: - stagify - add license Modified: head/www/dhttpd/Makefile Modified: head/www/dhttpd/Makefile ============================================================================== --- head/www/dhttpd/Makefile Sat Jan 25 20:24:29 2014 (r341087) +++ head/www/dhttpd/Makefile Sat Jan 25 20:30:10 2014 (r341088) @@ -10,16 +10,15 @@ EXTRACT_SUFX= .tgz MAINTAINER= lme@FreeBSD.org COMMENT= Minimal secure webserver. Fast and efficient, no cgi-bin support +LICENSE= GPLv2 + WRKSRC= ${WRKDIR}/${PORTNAME}-1.02-4 BUILD_WRKSRC= ${WRKSRC}/src -PLIST_FILES= sbin/dhttpd - -MAN1= dhttpd.1 +PLIST_FILES= sbin/dhttpd man/man1/dhttpd.1.gz USE_RC_SUBR= dhttpd -NO_STAGE= yes pre-everything:: @${ECHO_MSG} "==============================================================" @${ECHO_MSG} "To change the default document root" @@ -33,7 +32,7 @@ post-patch: ${WRKSRC}/dhttpd.1 do-install: - ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1 - ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:30:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1567D4AC; Sat, 25 Jan 2014 20:30:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0240A12D6; Sat, 25 Jan 2014 20:30:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKULkk084456; Sat, 25 Jan 2014 20:30:21 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKULRf084454; Sat, 25 Jan 2014 20:30:21 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252030.s0PKULRf084454@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 20:30:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341089 - head/ftp/axel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:30:22 -0000 Author: bapt Date: Sat Jan 25 20:30:21 2014 New Revision: 341089 URL: http://svnweb.freebsd.org/changeset/ports/341089 QAT: https://qat.redports.org/buildarchive/r341089/ Log: Support stage USE_GMAKE -> USES=gmake Use options helpers Modified: head/ftp/axel/Makefile head/ftp/axel/pkg-plist Modified: head/ftp/axel/Makefile ============================================================================== --- head/ftp/axel/Makefile Sat Jan 25 20:30:10 2014 (r341088) +++ head/ftp/axel/Makefile Sat Jan 25 20:30:21 2014 (r341089) @@ -10,32 +10,19 @@ MASTER_SITES= https://alioth.debian.org/ http://cvs.fedoraproject.org/repo/pkgs/axel/axel-2.4.tar.gz/a2a762fce0c96781965c8f9786a3d09d/ MAINTAINER= prudhvi-krishna-bsd@surapaneni.in -COMMENT= A download accelerator +COMMENT= Download accelerator -USE_GMAKE= yes +USES= gmake HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MANPREFIX}/man OPTIONS_DEFINE= NLS DEBUG +OPTIONS_SUB= yes -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MNLS} -USES+= gettext iconv -PLIST_SUB+= NLS="" -CONFIGURE_ARGS+=--i18n=1 -.else -PLIST_SUB+= NLS="@comment " -CONFIGURE_ARGS+=--i18n=0 -.endif - -.if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+=--debug=1 --strip=0 -.endif - -MAN1= axel.1 -MANLANG= "" zh_CN +NLS_USES= gettext iconv +NLS_CONFIGURE_ON= --i18n=1 +NLS_CONFIGURE_OFF= --i18n=0 +DEBUG_CONFIGURE_ON=--debug=1 --strip=0 post-configure: @${REINPLACE_CMD} -e 's|gcc|${CC}|; \ Modified: head/ftp/axel/pkg-plist ============================================================================== --- head/ftp/axel/pkg-plist Sat Jan 25 20:30:10 2014 (r341088) +++ head/ftp/axel/pkg-plist Sat Jan 25 20:30:21 2014 (r341089) @@ -1,5 +1,7 @@ bin/axel etc/axelrc +man/man1/axel.1.gz +man/zh_CN/man1/axel.1.gz %%NLS%%share/locale/de/LC_MESSAGES/axel.mo %%NLS%%share/locale/nl/LC_MESSAGES/axel.mo %%NLS%%share/locale/ru/LC_MESSAGES/axel.mo From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:32:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D86B7DB; Sat, 25 Jan 2014 20:32:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1933D13C1; Sat, 25 Jan 2014 20:32:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKW2Il087258; Sat, 25 Jan 2014 20:32:02 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKW26L087255; Sat, 25 Jan 2014 20:32:02 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252032.s0PKW26L087255@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 20:32:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341090 - head/ftp/bbftp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:32:03 -0000 Author: bapt Date: Sat Jan 25 20:32:02 2014 New Revision: 341090 URL: http://svnweb.freebsd.org/changeset/ports/341090 QAT: https://qat.redports.org/buildarchive/r341090/ Log: Support stage USE_GMAKE -> USES=gmake Modified: head/ftp/bbftp/Makefile head/ftp/bbftp/pkg-plist Modified: head/ftp/bbftp/Makefile ============================================================================== --- head/ftp/bbftp/Makefile Sat Jan 25 20:30:21 2014 (r341089) +++ head/ftp/bbftp/Makefile Sat Jan 25 20:32:02 2014 (r341090) @@ -10,16 +10,13 @@ MASTER_SITES= http://doc.in2p3.fr/bbftp/ MAINTAINER= ports@FreeBSD.org COMMENT= Multiple stream file transfer protocol optimized for large files -USE_GMAKE= yes +USES= gmake GNU_CONFIGURE= yes EXTRA_PATCHES= ${FILESDIR}/bbftp.patch USE_RC_SUBR= bbftpd -MAN1= bbftp.1 bbftpd.1 - -NO_STAGE= yes do-configure: ${CP} -f ${TEMPLATES}/config.guess ${WRKSRC} ${CP} -f ${TEMPLATES}/config.sub ${WRKSRC} @@ -31,9 +28,9 @@ do-build: cd ${WRKSRC}/bbftpd && ${GMAKE} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bbftpc/bbftp ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/bbftpd/bbftpd ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/doc/bbftp.1 ${PREFIX}/man/man1 - ${INSTALL_MAN} ${WRKSRC}/doc/bbftpd.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/bbftpc/bbftp ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/bbftpd/bbftpd ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/doc/bbftp.1 ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/bbftpd.1 ${STAGEDIR}${PREFIX}/man/man1 .include Modified: head/ftp/bbftp/pkg-plist ============================================================================== --- head/ftp/bbftp/pkg-plist Sat Jan 25 20:30:21 2014 (r341089) +++ head/ftp/bbftp/pkg-plist Sat Jan 25 20:32:02 2014 (r341090) @@ -1,2 +1,4 @@ bin/bbftp bin/bbftpd +man/man1/bbftp.1.gz +man/man1/bbftpd.1.gz From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:39:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D18995B; Sat, 25 Jan 2014 20:39:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 688661453; Sat, 25 Jan 2014 20:39:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKdSFf088213; Sat, 25 Jan 2014 20:39:28 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKdSLe088211; Sat, 25 Jan 2014 20:39:28 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401252039.s0PKdSLe088211@svn.freebsd.org> From: Steve Wills Date: Sat, 25 Jan 2014 20:39:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341091 - head/sysutils/rubygem-facter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:39:28 -0000 Author: swills Date: Sat Jan 25 20:39:27 2014 New Revision: 341091 URL: http://svnweb.freebsd.org/changeset/ports/341091 QAT: https://qat.redports.org/buildarchive/r341091/ Log: - Update to 1.7.4 PR: ports/185550 Submitted by: Bartek Rutkowski Approved by: maintainer timeout (rouslan@rshell.net, >2 weeks) Modified: head/sysutils/rubygem-facter/Makefile head/sysutils/rubygem-facter/distinfo Modified: head/sysutils/rubygem-facter/Makefile ============================================================================== --- head/sysutils/rubygem-facter/Makefile Sat Jan 25 20:32:02 2014 (r341090) +++ head/sysutils/rubygem-facter/Makefile Sat Jan 25 20:39:27 2014 (r341091) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= facter -PORTVERSION= 1.7.3 -PORTREVISION= 1 +PORTVERSION= 1.7.4 CATEGORIES= sysutils rubygems MASTER_SITES= RG \ http://downloads.puppetlabs.com/facter/ Modified: head/sysutils/rubygem-facter/distinfo ============================================================================== --- head/sysutils/rubygem-facter/distinfo Sat Jan 25 20:32:02 2014 (r341090) +++ head/sysutils/rubygem-facter/distinfo Sat Jan 25 20:39:27 2014 (r341091) @@ -1,2 +1,2 @@ -SHA256 (rubygem/facter-1.7.3.gem) = 1122c14051c38282afde5e79f3808a441d3c00ae2d161f0fab64ddf8a8f1f5c1 -SIZE (rubygem/facter-1.7.3.gem) = 198144 +SHA256 (rubygem/facter-1.7.4.gem) = 3ba4d179b66e73dbc2416599ec17b8bbb357556fd7a24fdf6bb36cf0120a3fa0 +SIZE (rubygem/facter-1.7.4.gem) = 197632 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:39:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3CC8AB69; Sat, 25 Jan 2014 20:39:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 29C5B1458; Sat, 25 Jan 2014 20:39:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKdbHf088346; Sat, 25 Jan 2014 20:39:37 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKdav8088345; Sat, 25 Jan 2014 20:39:37 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252039.s0PKdav8088345@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 20:39:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341092 - head/ftp/frox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:39:37 -0000 Author: bapt Date: Sat Jan 25 20:39:36 2014 New Revision: 341092 URL: http://svnweb.freebsd.org/changeset/ports/341092 QAT: https://qat.redports.org/buildarchive/r341092/ Log: Support stage USE_GMAKE -> USES=gmake Use options helpers Add DOCS option No need to strip twice the binary Modified: head/ftp/frox/Makefile Modified: head/ftp/frox/Makefile ============================================================================== --- head/ftp/frox/Makefile Sat Jan 25 20:39:27 2014 (r341091) +++ head/ftp/frox/Makefile Sat Jan 25 20:39:36 2014 (r341092) @@ -14,27 +14,25 @@ COMMENT= Transparent FTP proxy with cach LICENSE= GPLv2 +USES= gmake USE_BZIP2= yes -USE_GMAKE= yes GNU_CONFIGURE= yes USE_RC_SUBR= frox SUB_FILES= pkg-message -MAN1= frox.1 -MAN5= frox.conf.5 - PORTDOCS= SECURITY CREDITS ChangeLog FAQ.html FAQ-1.html FAQ-2.html \ FAQ-3.html FAQ-4.html FAQ-5.html FAQ-6.html FAQ-7.html \ FAQ-8.html -PLIST_FILES= sbin/frox ${EXAMPLESDIR:S,${PREFIX}/,,}/frox.conf +PLIST_FILES= sbin/frox ${EXAMPLESDIR:S,${PREFIX}/,,}/frox.conf \ + man/man1/frox.1.gz man/man5/frox.conf.5.gz PLIST_DIRS= ${EXAMPLESDIR:S,${PREFIX}/,,} PKGMESSAGE= ${WRKDIR}/pkg-message CONFIGURE_ARGS= --enable-configfile=${PREFIX}/etc/frox.conf -OPTIONS_DEFINE= IPFILTER PF VIRUS_SCAN HTTP_CACHE LOCAL_CACHE CCP ROOT_RUN +OPTIONS_DEFINE= IPFILTER PF VIRUS_SCAN HTTP_CACHE LOCAL_CACHE CCP ROOT_RUN DOCS OPTIONS_DEFAULT= HTTP_CACHE CCP IPFILTER_DESC= Use ipfilter instead of ipfw @@ -45,52 +43,23 @@ LOCAL_CACHE_DESC= Enable use of local ca CCP_DESC= Ftp-proxy style command control programs ROOT_RUN_DESC= Allow frox running as root (not recomended) -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MIPFILTER} -CONFIGURE_ARGS+= --enable-ipfilter -.endif - -.if ${PORT_OPTIONS:MPF} -CPPFLAGS+= -DPF -.endif - -.if ${PORT_OPTIONS:MVIRUS_SCAN} -CONFIGURE_ARGS+= --enable-virus-scan -.endif - -.if ${PORT_OPTIONS:MHTTP_CACHE} -CONFIGURE_ARGS+= --enable-http-cache -.endif - -.if ${PORT_OPTIONS:MLOCAL_CACHE} -CONFIGURE_ARGS+= --enable-local-cache -.endif - -.if ${PORT_OPTIONS:MCCP} -CONFIGURE_ARGS+= --enable-ccp -.endif - -.if ${PORT_OPTIONS:MROOT_RUN} -CONFIGURE_ARGS+= --enable-run-as-root -.endif +IPFILTER_CONFIGURE_ENABLE= ipfilter +PF_CPPFLAGS= DPF +VIRUS_SCAN_CONFIGURE_ENABLE= virus-scan +HTTP_CACHE_CONFIGURE_ENABLE= http-cache +LOCAL_CACHE_CONFIGURE_ENABLE= local-cache +CCP_CONFIGURE_ENABLE= ccp +ROOT_RUN_CONFIGURE_ARGS= run-as-root do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/frox ${PREFIX}/sbin - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/src/frox.conf ${EXAMPLESDIR}/frox.conf - ${INSTALL_MAN} ${WRKSRC}/doc/frox.man ${MANPREFIX}/man/man1/frox.1 - ${INSTALL_MAN} ${WRKSRC}/doc/frox.conf.man ${MANPREFIX}/man/man5/frox.conf.5 - -post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/src/frox ${STAGEDIR}${PREFIX}/sbin + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/src/frox.conf ${STAGEDIR}${EXAMPLESDIR}/frox.conf + ${INSTALL_MAN} ${WRKSRC}/doc/frox.man ${STAGEDIR}${MANPREFIX}/man/man1/frox.1 + ${INSTALL_MAN} ${WRKSRC}/doc/frox.conf.man ${STAGEDIR}${MANPREFIX}/man/man5/frox.conf.5 + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR} .endfor -.endif - @${STRIP_CMD} ${PREFIX}/sbin/frox; \ - ${CAT} ${PKGMESSAGE} .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:40:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9EDA4CB8; Sat, 25 Jan 2014 20:40:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8957B147F; Sat, 25 Jan 2014 20:40:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKeYUQ090648; Sat, 25 Jan 2014 20:40:34 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKeYt5090646; Sat, 25 Jan 2014 20:40:34 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401252040.s0PKeYt5090646@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sat, 25 Jan 2014 20:40:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341093 - head/devel/py-Products.CMFCore X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:40:34 -0000 Author: rm Date: Sat Jan 25 20:40:33 2014 New Revision: 341093 URL: http://svnweb.freebsd.org/changeset/ports/341093 QAT: https://qat.redports.org/buildarchive/r341093/ Log: - move DIST_SUBDIR upper - support stage - bump PORTREVISION Modified: head/devel/py-Products.CMFCore/Makefile head/devel/py-Products.CMFCore/pkg-plist Modified: head/devel/py-Products.CMFCore/Makefile ============================================================================== --- head/devel/py-Products.CMFCore/Makefile Sat Jan 25 20:39:36 2014 (r341092) +++ head/devel/py-Products.CMFCore/Makefile Sat Jan 25 20:40:33 2014 (r341093) @@ -2,9 +2,11 @@ PORTNAME= Products.CMFCore PORTVERSION= 2.2.7 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Zope Content Management Framework core components @@ -17,11 +19,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}five ${PYTHON_PKGNAMEPREFIX}Products.ZSQLMethods>0:${PORTSDIR}/devel/py-Products.ZSQLMethods \ ${PYTHON_PKGNAMEPREFIX}zope.app.publication>0:${PORTSDIR}/devel/py-zope.app.publication -DIST_SUBDIR= zope -USE_PYTHON= 2 -USE_PYDISTUTILS=easy_install -#USES= zope # cyclic dependency - -NO_STAGE= yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +#USES= zope # cyclic dependency .include Modified: head/devel/py-Products.CMFCore/pkg-plist ============================================================================== --- head/devel/py-Products.CMFCore/pkg-plist Sat Jan 25 20:39:36 2014 (r341092) +++ head/devel/py-Products.CMFCore/pkg-plist Sat Jan 25 20:40:33 2014 (r341093) @@ -1,548 +1,534 @@ -%%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/namespace_packages.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/test_info.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ActionInformation.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ActionInformation.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ActionInformation.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ActionProviderBase.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ActionProviderBase.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ActionProviderBase.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ActionsTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ActionsTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ActionsTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CHANGES.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CMFBTreeFolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CMFBTreeFolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CMFBTreeFolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CMFCatalogAware.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CMFCatalogAware.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CMFCatalogAware.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CachingPolicyManager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CachingPolicyManager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CachingPolicyManager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CatalogTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CatalogTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CatalogTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ContentTypeRegistry.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ContentTypeRegistry.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/ContentTypeRegistry.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CookieCrumbler.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CookieCrumbler.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/CookieCrumbler.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/DirectoryView.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/DirectoryView.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/DirectoryView.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/DiscussionTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/DiscussionTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/DiscussionTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/DynamicType.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/DynamicType.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/DynamicType.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Expression.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Expression.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Expression.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Extensions/TestRecord.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Extensions/TestRecord.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Extensions/TestRecord.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSDTMLMethod.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSDTMLMethod.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSDTMLMethod.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSFile.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSFile.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSFile.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSImage.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSImage.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSImage.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSMetadata.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSMetadata.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSMetadata.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSObject.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSObject.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSObject.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSPageTemplate.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSPageTemplate.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSPageTemplate.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSPropertiesObject.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSPropertiesObject.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSPropertiesObject.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSPythonScript.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSPythonScript.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSPythonScript.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSReSTMethod.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSReSTMethod.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSReSTMethod.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSSTXMethod.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSSTXMethod.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSSTXMethod.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSZSQLMethod.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSZSQLMethod.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/FSZSQLMethod.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/MemberDataTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/MemberDataTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/MemberDataTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/MembershipTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/MembershipTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/MembershipTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/PortalContent.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/PortalContent.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/PortalContent.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/PortalFolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/PortalFolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/PortalFolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/PortalObject.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/PortalObject.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/PortalObject.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/README.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/RegistrationTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/RegistrationTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/RegistrationTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Skinnable.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Skinnable.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Skinnable.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/SkinsContainer.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/SkinsContainer.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/SkinsContainer.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/SkinsTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/SkinsTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/SkinsTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/TypesTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/TypesTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/TypesTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/URLTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/URLTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/URLTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/UndoTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/UndoTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/UndoTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/WorkflowCore.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/WorkflowCore.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/WorkflowCore.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/WorkflowTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/WorkflowTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/WorkflowTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/actions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/actions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/actions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/configure.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/typeinfo.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/typeinfo.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser/typeinfo.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/configure.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/content.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/addCC.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/addFSDirView.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/addInstance.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/cachingPolicies.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/catalogFind.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/compareResults.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/configureRegistrationTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/custdtml.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/custfile.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/custimage.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/custprops.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/custpt.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/custpy.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/custstx.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/custzsql.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/dirview_properties.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/editToolsActions.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainActionsTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainCatalogTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainDiscussionTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainMemberDataTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainMembershipTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainRegistrationTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainSkinsTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainTypesTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainURLTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainUndoTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/explainWorkflowTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/extensionWidget.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/findForm.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/findResult.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/majorMinorWidget.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/manageActionProviders.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/memberdataContents.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/membershipRolemapping.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/mimetypePredEdit.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/patternWidget.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/registryPredList.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/registryTest.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/selectWorkflows.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/skinProps.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml/zmi_workflows.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/event.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exceptions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exceptions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exceptions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/actions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/actions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/actions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/cachingpolicymgr.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/cachingpolicymgr.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/cachingpolicymgr.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/catalog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/catalog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/catalog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/configure.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/content.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/content.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/content.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/contenttyperegistry.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/contenttyperegistry.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/contenttyperegistry.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/cookieauth.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/cookieauth.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/cookieauth.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/mailhost.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/mailhost.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/mailhost.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/properties.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/properties.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/properties.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/skins.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/skins.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/skins.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/conformance.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/conformance.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/conformance.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/four/placeholder.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/one/placeholder.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_actions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_actions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_actions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_cachingpolicymgr.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_cachingpolicymgr.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_cachingpolicymgr.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_catalog.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_catalog.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_catalog.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_content.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_content.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_content.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_contenttyperegistry.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_contenttyperegistry.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_contenttyperegistry.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_cookieauth.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_cookieauth.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_cookieauth.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_mailhost.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_mailhost.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_mailhost.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_properties.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_properties.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_properties.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_skins.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_skins.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_skins.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_typeinfo.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_typeinfo.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_typeinfo.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_workflow.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_workflow.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/test_workflow.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/three/placeholder.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/two/placeholder.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/typeinfo.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/typeinfo.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/typeinfo.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/workflow.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/workflow.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/workflow.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/folderAdd.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/help/Actions.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/help/CPMPolicies.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/cmf_action.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/cmf_action_category.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/cookie.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/dirview.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/fsdtml.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/fsfile.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/fsimage.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/fsprops.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/fspt.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/fspy.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/fssqlmethod.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/registry.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images/typeinfo.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/_content.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/_content.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/_content.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/_events.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/_events.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/_events.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/_tools.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/_tools.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces/_tools.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/meta.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/namespace.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/namespace.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/namespace.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/overrides.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/permissions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/permissions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/permissions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/permissions.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/testing.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/testing.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/testing.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/testing.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/content.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/content.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/content.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/dummy.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/dummy.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/dummy.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/security.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/security.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/security.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/testcase.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/testcase.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/testcase.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/tidata.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/tidata.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/tidata.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base/utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/#test1.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/#test1.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/#test1.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/.test1.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/.test1.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/.test1.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/nested_view.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/nested_view_1.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/nested_view_2.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/nested_view_2.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/output_page_1.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/output_page_2.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/output_page_3.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/output_page_4.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test1.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test1.py~ -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test4.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test4.py.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test5.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test6.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test6.py.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testDTML.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testDTML.dtml.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testDTML_CPM3.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT.pt.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT2.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT2.pt.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT3.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT3.pt.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT4.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT4.pt.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT5.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT5.pt.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_CPM1.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_CPM2.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_multiline_python_dos.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_multiline_python_mac.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_multiline_python_unix.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_utf8.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testPTbad.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testReST.rst -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testReST.rst.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testSTX.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testSTX.stx.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testUtf8.js -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testXMLPT.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_directory.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_dos.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_dtml.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_dtml.dtml.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_file.swf -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_file.swf.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_file_two.swf -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_file_two.swf.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_image.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_image.gif.metadata -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_mac.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_manual_ignore.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_manual_ignore.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_manual_ignore.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_props.props -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_unix.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_warn.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_warn.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/test_warn.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin/testsql.zsql -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ActionInformation.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ActionInformation.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ActionInformation.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ActionProviderBase.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ActionProviderBase.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ActionProviderBase.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ActionsTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ActionsTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ActionsTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CMFBTreeFolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CMFBTreeFolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CMFBTreeFolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CMFCatalogAware.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CMFCatalogAware.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CMFCatalogAware.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CachingPolicyManager.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CachingPolicyManager.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CachingPolicyManager.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CatalogTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CatalogTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CatalogTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ContentTypeRegistry.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ContentTypeRegistry.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_ContentTypeRegistry.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CookieCrumbler.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CookieCrumbler.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_CookieCrumbler.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_DirectoryView.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_DirectoryView.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_DirectoryView.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_DiscussionTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_DiscussionTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_DiscussionTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_DynamicType.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_DynamicType.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_DynamicType.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_Expression.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_Expression.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_Expression.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSDTMLMethod.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSDTMLMethod.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSDTMLMethod.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSFile.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSFile.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSFile.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSImage.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSImage.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSImage.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSMetadata.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSMetadata.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSMetadata.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSPageTemplate.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSPageTemplate.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSPageTemplate.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSPropertiesObject.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSPropertiesObject.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSPropertiesObject.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSPythonScript.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSPythonScript.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSPythonScript.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSReSTMethod.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSReSTMethod.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSReSTMethod.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSSTXMethod.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSSTXMethod.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSSTXMethod.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSSecurity.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSSecurity.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSSecurity.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSZSQLMethod.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSZSQLMethod.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_FSZSQLMethod.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_MemberDataTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_MemberDataTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_MemberDataTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_MembershipTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_MembershipTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_MembershipTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_OpaqueItems.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_OpaqueItems.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_OpaqueItems.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_PortalContent.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_PortalContent.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_PortalContent.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_PortalFolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_PortalFolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_PortalFolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_RegistrationTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_RegistrationTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_RegistrationTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_SkinsTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_SkinsTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_SkinsTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_TypesTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_TypesTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_TypesTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_URLTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_URLTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_URLTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_UndoTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_UndoTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_UndoTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_WorkflowTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_WorkflowTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_WorkflowTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_zcml.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_zcml.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/test_zcml.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tool.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tool.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/version.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/www/cpsDiff.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/www/typeinfoAliases.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/www/typesAliases.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/zcml.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/zcml.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/zcml.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/__init__.pyo -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/www -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins/fake_skin -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/fake_skins -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests/base -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/interfaces -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/images -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/help -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/two -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/three -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/one -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests/four -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/exportimport -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/dtml -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/browser -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore/Extensions -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFCore -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ActionInformation.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ActionInformation.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ActionInformation.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ActionProviderBase.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ActionProviderBase.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ActionProviderBase.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ActionsTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ActionsTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ActionsTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CHANGES.txt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CMFBTreeFolder.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CMFBTreeFolder.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CMFBTreeFolder.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CMFCatalogAware.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CMFCatalogAware.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CMFCatalogAware.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CachingPolicyManager.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CachingPolicyManager.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CachingPolicyManager.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CatalogTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CatalogTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CatalogTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ContentTypeRegistry.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ContentTypeRegistry.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/ContentTypeRegistry.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CookieCrumbler.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CookieCrumbler.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/CookieCrumbler.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/DirectoryView.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/DirectoryView.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/DirectoryView.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/DiscussionTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/DiscussionTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/DiscussionTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/DynamicType.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/DynamicType.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/DynamicType.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/Expression.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/Expression.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/Expression.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/Extensions/TestRecord.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/Extensions/TestRecord.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/Extensions/TestRecord.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSDTMLMethod.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSDTMLMethod.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSDTMLMethod.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSFile.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSFile.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSFile.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSImage.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSImage.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSImage.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSMetadata.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSMetadata.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSMetadata.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSObject.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSObject.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSObject.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSPageTemplate.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSPageTemplate.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSPageTemplate.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSPropertiesObject.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSPropertiesObject.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSPropertiesObject.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSPythonScript.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSPythonScript.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSPythonScript.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSReSTMethod.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSReSTMethod.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSReSTMethod.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSSTXMethod.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSSTXMethod.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSSTXMethod.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSZSQLMethod.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSZSQLMethod.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/FSZSQLMethod.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/MemberDataTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/MemberDataTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/MemberDataTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/MembershipTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/MembershipTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/MembershipTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/PortalContent.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/PortalContent.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/PortalContent.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/PortalFolder.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/PortalFolder.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/PortalFolder.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/PortalObject.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/PortalObject.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/PortalObject.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/README.txt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/RegistrationTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/RegistrationTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/RegistrationTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/Skinnable.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/Skinnable.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/Skinnable.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/SkinsContainer.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/SkinsContainer.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/SkinsContainer.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/SkinsTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/SkinsTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/SkinsTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/TypesTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/TypesTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/TypesTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/URLTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/URLTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/URLTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/UndoTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/UndoTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/UndoTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/WorkflowCore.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/WorkflowCore.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/WorkflowCore.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/WorkflowTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/WorkflowTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/WorkflowTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/actions.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/actions.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/actions.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/configure.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/typeinfo.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/typeinfo.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/browser/typeinfo.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/configure.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/content.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/addCC.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/addFSDirView.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/addInstance.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/cachingPolicies.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/catalogFind.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/compareResults.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/configureRegistrationTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/custdtml.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/custfile.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/custimage.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/custprops.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/custpt.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/custpy.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/custstx.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/custzsql.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/dirview_properties.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/editToolsActions.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainActionsTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainCatalogTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainDiscussionTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainMemberDataTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainMembershipTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainRegistrationTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainSkinsTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainTypesTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainURLTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainUndoTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/explainWorkflowTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/extensionWidget.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/findForm.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/findResult.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/majorMinorWidget.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/manageActionProviders.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/memberdataContents.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/membershipRolemapping.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/mimetypePredEdit.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/patternWidget.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/registryPredList.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/registryTest.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/selectWorkflows.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/skinProps.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/dtml/zmi_workflows.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/event.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exceptions.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exceptions.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exceptions.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/actions.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/actions.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/actions.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/cachingpolicymgr.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/cachingpolicymgr.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/cachingpolicymgr.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/catalog.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/catalog.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/catalog.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/configure.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/content.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/content.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/content.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/contenttyperegistry.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/contenttyperegistry.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/contenttyperegistry.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/cookieauth.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/cookieauth.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/cookieauth.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/mailhost.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/mailhost.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/mailhost.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/properties.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/properties.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/properties.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/skins.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/skins.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/skins.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/conformance.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/conformance.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/conformance.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/four/placeholder.txt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/one/placeholder.txt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_actions.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_actions.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_actions.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_cachingpolicymgr.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_cachingpolicymgr.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_cachingpolicymgr.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_catalog.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_catalog.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_catalog.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_content.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_content.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_content.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_contenttyperegistry.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_contenttyperegistry.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_contenttyperegistry.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_cookieauth.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_cookieauth.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_cookieauth.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_mailhost.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_mailhost.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_mailhost.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_properties.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_properties.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_properties.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_skins.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_skins.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_skins.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_typeinfo.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_typeinfo.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_typeinfo.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_workflow.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_workflow.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/test_workflow.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/three/placeholder.txt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/tests/two/placeholder.txt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/typeinfo.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/typeinfo.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/typeinfo.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/workflow.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/workflow.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/exportimport/workflow.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/folderAdd.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/help/Actions.stx +%%PYTHON_SITELIBDIR%%/Products/CMFCore/help/CPMPolicies.stx +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/cmf_action.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/cmf_action_category.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/cookie.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/dirview.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/fsdtml.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/fsfile.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/fsimage.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/fsprops.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/fspt.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/fspy.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/fssqlmethod.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/registry.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/images/typeinfo.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/_content.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/_content.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/_content.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/_events.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/_events.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/_events.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/_tools.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/_tools.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/interfaces/_tools.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/meta.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/namespace.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/namespace.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/namespace.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/overrides.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/permissions.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/permissions.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/permissions.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/permissions.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/testing.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/testing.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/testing.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/testing.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/content.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/content.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/content.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/dummy.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/dummy.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/dummy.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/security.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/security.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/security.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/testcase.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/testcase.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/testcase.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/tidata.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/tidata.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/tidata.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/utils.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/utils.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/base/utils.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/#test1.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/#test1.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/#test1.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/.test1.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/.test1.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/.test1.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/nested_view.zpt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/nested_view_1.zpt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/nested_view_2.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/nested_view_2.zpt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/output_page_1.zpt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/output_page_2.zpt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/output_page_3.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/output_page_4.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test1.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test1.py~ +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test4.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test4.py.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test5.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test6.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test6.py.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testDTML.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testDTML.dtml.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testDTML_CPM3.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT.pt.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT2.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT2.pt.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT3.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT3.pt.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT4.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT4.pt.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT5.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT5.pt.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_CPM1.zpt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_CPM2.zpt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_multiline_python_dos.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_multiline_python_mac.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_multiline_python_unix.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPT_utf8.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testPTbad.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testReST.rst +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testReST.rst.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testSTX.stx +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testSTX.stx.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testUtf8.js +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testXMLPT.pt +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_directory.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_dos.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_dtml.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_dtml.dtml.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_file.swf +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_file.swf.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_file_two.swf +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_file_two.swf.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_image.gif +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_image.gif.metadata +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_mac.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_manual_ignore.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_manual_ignore.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_manual_ignore.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_props.props +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_unix.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_warn.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_warn.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/test_warn.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/fake_skins/fake_skin/testsql.zsql +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ActionInformation.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ActionInformation.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ActionInformation.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ActionProviderBase.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ActionProviderBase.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ActionProviderBase.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ActionsTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ActionsTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ActionsTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CMFBTreeFolder.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CMFBTreeFolder.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CMFBTreeFolder.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CMFCatalogAware.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CMFCatalogAware.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CMFCatalogAware.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CachingPolicyManager.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CachingPolicyManager.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CachingPolicyManager.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CatalogTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CatalogTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CatalogTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ContentTypeRegistry.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ContentTypeRegistry.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_ContentTypeRegistry.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CookieCrumbler.py +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CookieCrumbler.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_CookieCrumbler.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFCore/tests/test_DirectoryView.py *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:42:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A1080DFF; Sat, 25 Jan 2014 20:42:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 89EE114F4; Sat, 25 Jan 2014 20:42:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKgM81092837; Sat, 25 Jan 2014 20:42:22 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKgKM0092731; Sat, 25 Jan 2014 20:42:20 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401252042.s0PKgKM0092731@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sat, 25 Jan 2014 20:42:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341094 - in head/devel: py-Products.CMFActionIcons py-Products.CMFDiffTool py-Products.CMFDynamicViewFTI py-Products.CMFFormController py-Products.CMFQuickInstallerTool py-Products.CMF... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:42:22 -0000 Author: rm Date: Sat Jan 25 20:42:19 2014 New Revision: 341094 URL: http://svnweb.freebsd.org/changeset/ports/341094 QAT: https://qat.redports.org/buildarchive/r341094/ Log: - convert to auto-generated packing list - move DIST_SUBDIR upper, where appropriate - bump PORTREVISION Deleted: head/devel/py-Products.CMFActionIcons/pkg-plist head/devel/py-Products.CMFDiffTool/pkg-plist head/devel/py-Products.CMFDynamicViewFTI/pkg-plist head/devel/py-Products.CMFFormController/pkg-plist head/devel/py-Products.CMFQuickInstallerTool/pkg-plist head/devel/py-Products.CMFUid/pkg-plist head/devel/py-Products.DCWorkflow/pkg-plist head/devel/py-Products.LDAPMultiPlugins/pkg-plist head/devel/py-Products.Marshall/pkg-plist head/devel/py-Products.MimetypesRegistry/pkg-plist Modified: head/devel/py-Products.CMFActionIcons/Makefile head/devel/py-Products.CMFDiffTool/Makefile head/devel/py-Products.CMFDynamicViewFTI/Makefile head/devel/py-Products.CMFFormController/Makefile head/devel/py-Products.CMFQuickInstallerTool/Makefile head/devel/py-Products.CMFUid/Makefile head/devel/py-Products.DCWorkflow/Makefile head/devel/py-Products.LDAPMultiPlugins/Makefile head/devel/py-Products.Marshall/Makefile head/devel/py-Products.MimetypesRegistry/Makefile Modified: head/devel/py-Products.CMFActionIcons/Makefile ============================================================================== --- head/devel/py-Products.CMFActionIcons/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.CMFActionIcons/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -2,10 +2,11 @@ PORTNAME= Products.CMFActionIcons PORTVERSION= 2.1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Action icons product for the Zope CMF @@ -16,10 +17,8 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}eg RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Products.CMFCore>=0:${PORTSDIR}/devel/py-Products.CMFCore \ ${PYTHON_PKGNAMEPREFIX}Products.GenericSetup>=0:${PORTSDIR}/devel/py-Products.GenericSetup -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes .include Modified: head/devel/py-Products.CMFDiffTool/Makefile ============================================================================== --- head/devel/py-Products.CMFDiffTool/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.CMFDiffTool/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -2,9 +2,11 @@ PORTNAME= Products.CMFDiffTool PORTVERSION= 2.1 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Diff tool for Plone @@ -16,12 +18,10 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope ${PYTHON_PKGNAMEPREFIX}Products.GenericSetup>=0:${PORTSDIR}/devel/py-Products.GenericSetup \ ${PYTHON_PKGNAMEPREFIX}Acquisition>=0:${PORTSDIR}/devel/py-Acquisition -DIST_SUBDIR= zope -USE_PYTHON= 2 -USE_PYDISTUTILS=easy_install -USE_ZIP= yes -#USES= zope - -NO_STAGE= yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes +#USES= zope .include Modified: head/devel/py-Products.CMFDynamicViewFTI/Makefile ============================================================================== --- head/devel/py-Products.CMFDynamicViewFTI/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.CMFDynamicViewFTI/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -2,9 +2,11 @@ PORTNAME= Products.CMFDynamicViewFTI PORTVERSION= 4.0.5 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Product for dynamic views in CMF @@ -19,12 +21,10 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope ${PYTHON_PKGNAMEPREFIX}Acquisition>=0:${PORTSDIR}/devel/py-Acquisition \ ${PYTHON_PKGNAMEPREFIX}ExtensionClass>=0:${PORTSDIR}/devel/py-ExtensionClass -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -USE_ZIP= yes -#USES= zope - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes +#USES= zope .include Modified: head/devel/py-Products.CMFFormController/Makefile ============================================================================== --- head/devel/py-Products.CMFFormController/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.CMFFormController/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -2,9 +2,11 @@ PORTNAME= Products.CMFFormController PORTVERSION= 3.0.3 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Form validation mechanism for Zope CMF @@ -19,11 +21,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope ${PYTHON_PKGNAMEPREFIX}Acquisition>=0:${PORTSDIR}/devel/py-Acquisition \ ${PYTHON_PKGNAMEPREFIX}transaction>=0:${PORTSDIR}/devel/py-transaction -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes .include Modified: head/devel/py-Products.CMFQuickInstallerTool/Makefile ============================================================================== --- head/devel/py-Products.CMFQuickInstallerTool/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.CMFQuickInstallerTool/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -2,9 +2,11 @@ PORTNAME= Products.CMFQuickInstallerTool PORTVERSION= 3.0.6 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Facility for activation/deactivation of Zope CMF products @@ -20,10 +22,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope ${PYTHON_PKGNAMEPREFIX}Products.CMFCore>=0:${PORTSDIR}/devel/py-Products.CMFCore \ ${PYTHON_PKGNAMEPREFIX}Products.GenericSetup>=0:${PORTSDIR}/devel/py-Products.GenericSetup -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes .include Modified: head/devel/py-Products.CMFUid/Makefile ============================================================================== --- head/devel/py-Products.CMFUid/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.CMFUid/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -2,10 +2,11 @@ PORTNAME= Products.CMFUid PORTVERSION= 2.2.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Uid product for the Zope CMF @@ -16,11 +17,9 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}eg RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Products.CMFCore>=0:${PORTSDIR}/devel/py-Products.CMFCore \ ${PYTHON_PKGNAMEPREFIX}Products.GenericSetup>=0:${PORTSDIR}/devel/py-Products.GenericSetup -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -#USES= zope - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +#USES= zope .include Modified: head/devel/py-Products.DCWorkflow/Makefile ============================================================================== --- head/devel/py-Products.DCWorkflow/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.DCWorkflow/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -2,10 +2,11 @@ PORTNAME= Products.DCWorkflow PORTVERSION= 2.2.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= DCWorkflow product for the Zope Content Management Framework @@ -16,10 +17,8 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}eg RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Products.CMFCore>=0:${PORTSDIR}/devel/py-Products.CMFCore \ ${PYTHON_PKGNAMEPREFIX}Products.GenericSetup>=0:${PORTSDIR}/devel/py-Products.GenericSetup -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes .include Modified: head/devel/py-Products.LDAPMultiPlugins/Makefile ============================================================================== --- head/devel/py-Products.LDAPMultiPlugins/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.LDAPMultiPlugins/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -3,9 +3,11 @@ PORTNAME= Products.LDAPMultiPlugins PORTVERSION= 1.14 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= LDAP-backed plugins for the Zope2 PluggableAuthService @@ -16,10 +18,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap ${PYTHON_PKGNAMEPREFIX}Products.LDAPUserFolder>=2.9:${PORTSDIR}/devel/py-Products.LDAPUserFolder \ ${PYTHON_PKGNAMEPREFIX}Products.PluggableAuthService>=1.4.0:${PORTSDIR}/security/py-Products.PluggableAuthService -DIST_SUBDIR= zope -USE_PYTHON= 2 -USE_PYDISTUTILS=easy_install - -NO_STAGE= yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes .include Modified: head/devel/py-Products.Marshall/Makefile ============================================================================== --- head/devel/py-Products.Marshall/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.Marshall/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -2,9 +2,11 @@ PORTNAME= Products.Marshall PORTVERSION= 2.1.2 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Configurable Marshallers for Archetypes @@ -21,11 +23,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tran ${PYTHON_PKGNAMEPREFIX}DateTime>=0:${PORTSDIR}/devel/py-DateTime \ ${PYTHON_PKGNAMEPREFIX}ExtensionClass>=0:${PORTSDIR}/devel/py-ExtensionClass -DIST_SUBDIR= zope -USE_PYTHON= 2 -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes .include Modified: head/devel/py-Products.MimetypesRegistry/Makefile ============================================================================== --- head/devel/py-Products.MimetypesRegistry/Makefile Sat Jan 25 20:40:33 2014 (r341093) +++ head/devel/py-Products.MimetypesRegistry/Makefile Sat Jan 25 20:42:19 2014 (r341094) @@ -2,9 +2,11 @@ PORTNAME= Products.MimetypesRegistry PORTVERSION= 2.0.5 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= MIME type handling for Zope @@ -17,11 +19,9 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope ${PYTHON_PKGNAMEPREFIX}Acquisition>=0:${PORTSDIR}/devel/py-Acquisition \ zodb${PYTHON_PKGNAMESUFFIX}>=0:${PORTSDIR}/databases/zodb3 -DIST_SUBDIR= zope -USE_PYTHON= 2 -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_ATOPLIST= yes +USE_ZIP= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:43:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5613F65; Sat, 25 Jan 2014 20:43:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D19C214FD; Sat, 25 Jan 2014 20:43:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKhbRC094758; Sat, 25 Jan 2014 20:43:37 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKhbIY094752; Sat, 25 Jan 2014 20:43:37 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252043.s0PKhbIY094752@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 20:43:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341095 - head/ftp/ftplib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:43:38 -0000 Author: bapt Date: Sat Jan 25 20:43:37 2014 New Revision: 341095 URL: http://svnweb.freebsd.org/changeset/ports/341095 QAT: https://qat.redports.org/buildarchive/r341095/ Log: Support stage USE_GMAKE -> USES=gmake Simplify do-install Strip libraries Modified: head/ftp/ftplib/Makefile Modified: head/ftp/ftplib/Makefile ============================================================================== --- head/ftp/ftplib/Makefile Sat Jan 25 20:42:19 2014 (r341094) +++ head/ftp/ftplib/Makefile Sat Jan 25 20:43:37 2014 (r341095) @@ -11,14 +11,13 @@ COMMENT= Set of routines that implement WRKSRC= ${WRKDIR}/${DISTNAME}/src -USE_GMAKE= yes +USES= gmake USE_LDCONFIG= yes PLIST_FILES= bin/ftpdir bin/ftpget bin/ftplist bin/ftprm bin/ftpsend \ bin/qftp include/ftplib.h \ lib/libftp.a lib/libftp.so lib/libftp.so.4 -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ '/^SOVERSION/s|=.*|= $$(SONAME)| ; \ @@ -29,12 +28,12 @@ post-patch: /libftp.so/s|ln -sf|${TRUE}|' ${WRKSRC}/Makefile do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} qftp ${PREFIX}/bin) + ${INSTALL_PROGRAM} ${WRKSRC}/qftp ${STAGEDIR}${PREFIX}/bin .for i in ftpdir ftpget ftplist ftprm ftpsend - (cd ${PREFIX}/bin && ${LN} -sf qftp ${i}) + ${LN} -sf qftp ${STAGEDIR}${PREFIX}/bin/${i} .endfor - (cd ${WRKSRC} && ${INSTALL_DATA} ftplib.h ${PREFIX}/include) - (cd ${WRKSRC} && ${INSTALL_DATA} libftp.a libftp.so.4 ${PREFIX}/lib) - (cd ${PREFIX}/lib && ${LN} -sf libftp.so.4 libftp.so) + ${INSTALL_DATA} ${WRKSRC}/ftplib.h ${STAGEDIR}${PREFIX}/include + ${INSTALL_LIB} ${WRKSRC}/libftp.a ${WRKSRC}/libftp.so.4 ${STAGEDIR}${PREFIX}/lib + ${LN} -sf libftp.so.4 ${STAGEDIR}${PREFIX}/lib/libftp.so .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:47:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41050105; Sat, 25 Jan 2014 20:47:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2D1E91526; Sat, 25 Jan 2014 20:47:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKlVGT099201; Sat, 25 Jan 2014 20:47:31 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKlVNv099199; Sat, 25 Jan 2014 20:47:31 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252047.s0PKlVNv099199@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 20:47:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341097 - head/ftp/ftpproxy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:47:32 -0000 Author: bapt Date: Sat Jan 25 20:47:31 2014 New Revision: 341097 URL: http://svnweb.freebsd.org/changeset/ports/341097 QAT: https://qat.redports.org/buildarchive/r341097/ Log: Support stage Respect CC USE_GMAKE -> USES=gmake Modified: head/ftp/ftpproxy/Makefile Modified: head/ftp/ftpproxy/Makefile ============================================================================== --- head/ftp/ftpproxy/Makefile Sat Jan 25 20:47:28 2014 (r341096) +++ head/ftp/ftpproxy/Makefile Sat Jan 25 20:47:31 2014 (r341097) @@ -10,22 +10,21 @@ MASTER_SITES= http://www.ftpproxy.org/do EXTRACT_SUFX= .tgz MAINTAINER= philippe@le-berre.com -COMMENT= A ftp proxy +COMMENT= ftp proxy -USE_GMAKE= yes +USES= gmake MAKE_JOBS_UNSAFE= yes +MAKE_ARGS= CC=${CC} -MAN1= ftp.proxy.1 -MANCOMPRESSED= no -PLIST_FILES= sbin/ftp.proxy +PLIST_FILES= sbin/ftp.proxy \ + man/man1/ftp.proxy.1.gz -NO_STAGE= yes pre-build: @${REINPLACE_CMD} -e 's|^CFLAGS.*|CFLAGS=${CFLAGS} \ -DVERSION=\\"${PORTVERSION}\\"|' ${WRKSRC}/src/Makefile do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/src/ftp.proxy ${PREFIX}/sbin - @${INSTALL_MAN} ${WRKSRC}/doc/ftp.proxy.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/src/ftp.proxy ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/doc/ftp.proxy.1 ${STAGEDIR}${PREFIX}/man/man1 .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:47:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37D23104; Sat, 25 Jan 2014 20:47:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 09E321520; Sat, 25 Jan 2014 20:47:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKlTsF099096; Sat, 25 Jan 2014 20:47:29 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKlTqq099082; Sat, 25 Jan 2014 20:47:29 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401252047.s0PKlTqq099082@svn.freebsd.org> From: Steve Wills Date: Sat, 25 Jan 2014 20:47:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341096 - in head/lang: ruby-man ruby-programmingruby ruby-usersguide X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:47:30 -0000 Author: swills Date: Sat Jan 25 20:47:28 2014 New Revision: 341096 URL: http://svnweb.freebsd.org/changeset/ports/341096 QAT: https://qat.redports.org/buildarchive/r341096/ Log: - Documents old version of Ruby, mark for deletion PR: ports/185540 Submitted by: clutton Modified: head/lang/ruby-man/Makefile head/lang/ruby-programmingruby/Makefile head/lang/ruby-usersguide/Makefile Modified: head/lang/ruby-man/Makefile ============================================================================== --- head/lang/ruby-man/Makefile Sat Jan 25 20:43:37 2014 (r341095) +++ head/lang/ruby-man/Makefile Sat Jan 25 20:47:28 2014 (r341096) @@ -23,6 +23,10 @@ NO_BUILD= yes PLIST_SUB= LANGSUFFIX="${LANGSUFFIX}" NO_STAGE= yes + +DEPRECATED= Documents EOLd version of Ruby and unmaintained +EXPIRATION_DATE= 2014-02-25 + do-install: ${MKDIR} ${RUBY_MODDOCDIR} ${INSTALL_DATA} ${WRKSRC}/*.html ${RUBY_MODDOCDIR} Modified: head/lang/ruby-programmingruby/Makefile ============================================================================== --- head/lang/ruby-programmingruby/Makefile Sat Jan 25 20:43:37 2014 (r341095) +++ head/lang/ruby-programmingruby/Makefile Sat Jan 25 20:47:28 2014 (r341096) @@ -24,6 +24,10 @@ NO_WRKSUBDIR= yes DOCSDIR= ${RUBY_MODDOCDIR} NO_STAGE= yes + +DEPRECATED= Documents EOLd version of Ruby and unmaintained +EXPIRATION_DATE= 2014-02-25 + do-install: ${MKDIR} ${RUBY_MODDOCDIR} @${TAR} -xzf ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} -C ${RUBY_MODDOCDIR} Modified: head/lang/ruby-usersguide/Makefile ============================================================================== --- head/lang/ruby-usersguide/Makefile Sat Jan 25 20:43:37 2014 (r341095) +++ head/lang/ruby-usersguide/Makefile Sat Jan 25 20:47:28 2014 (r341096) @@ -23,6 +23,10 @@ NO_BUILD= yes DOCSDIR= ${RUBY_MODDOCDIR} NO_STAGE= yes + +DEPRECATED= Documents EOLd version of Ruby and unmaintained +EXPIRATION_DATE= 2014-02-25 + do-install: ${MKDIR} ${RUBY_MODDOCDIR} ${INSTALL_DATA} ${WRKSRC}/* ${RUBY_MODDOCDIR} From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:49:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4EB602CF; Sat, 25 Jan 2014 20:49:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3AEC4153A; Sat, 25 Jan 2014 20:49:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKnerF003135; Sat, 25 Jan 2014 20:49:40 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKndOW003134; Sat, 25 Jan 2014 20:49:39 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401252049.s0PKndOW003134@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 20:49:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341098 - 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.17 Precedence: list List-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, 25 Jan 2014 20:49:40 -0000 Author: antoine Date: Sat Jan 25 20:49:39 2014 New Revision: 341098 URL: http://svnweb.freebsd.org/changeset/ports/341098 QAT: https://qat.redports.org/buildarchive/r341098/ Log: Add WRKDIR to QA_ENV so that the paths QA check can search for it Modified: head/Mk/bsd.stage.mk Modified: head/Mk/bsd.stage.mk ============================================================================== --- head/Mk/bsd.stage.mk Sat Jan 25 20:47:31 2014 (r341097) +++ head/Mk/bsd.stage.mk Sat Jan 25 20:49:39 2014 (r341098) @@ -13,6 +13,7 @@ MAKE_ARGS+= ${DESTDIRNAME}=${STAGEDIR} QA_ENV+= STAGEDIR=${STAGEDIR} \ PREFIX=${PREFIX} \ LOCALBASE=${LOCALBASE} \ + WRKDIR=${WRKDIR} \ USESDESKTOPFILEUTILS=${USES:Mdesktop-file-utils} \ USESSHAREDMIMEINFO=${USES:Mshared-mime-info} \ "STRIP=${STRIP}" From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:50:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6061F3B3; Sat, 25 Jan 2014 20:50:25 +0000 (UTC) Received: from mail-wg0-x22b.google.com (mail-wg0-x22b.google.com [IPv6:2a00:1450:400c:c00::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A73D7154D; Sat, 25 Jan 2014 20:50:24 +0000 (UTC) Received: by mail-wg0-f43.google.com with SMTP id y10so4141314wgg.34 for ; Sat, 25 Jan 2014 12:50:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:content-type; bh=jGGbyDr7dahhecQn7pnhpxXhrbPyNqgsv4WbOmshmwQ=; b=LecU3uSTRBhpSh+6nsyOtR84JUZ9KrAadqKx77WwTyL8Q+Df41GgFu3ks8shAZ7anf O7NNVAqNkIVsQJr6h8URFCJx5hG9h5jTKZhjbjIoGpn4HzPFHU6tSzk/JfO0Zmj0X0zA 85xZ/aJb/QGoFwvM5uWtWjJ7seD5J/OW7MdWXKr1gtuTGgow9takvp6UrGyaHYHacJXo P+t0mChRU2YEsRGi8VSGfkGyrGBz5QXflb+hSOp9jBC2kasN/wl+yaYLcoOgyQMAawSh mppJWLaGXa8BJH2jVA8aHp0paofdF0TIkLflpMchzYZnZkFj9CHCHEK6Xv27opo9rCPu PNYQ== MIME-Version: 1.0 X-Received: by 10.181.13.11 with SMTP id eu11mr7188537wid.30.1390683023083; Sat, 25 Jan 2014 12:50:23 -0800 (PST) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.194.58.74 with HTTP; Sat, 25 Jan 2014 12:50:23 -0800 (PST) In-Reply-To: <201401252049.s0PKndOW003134@svn.freebsd.org> References: <201401252049.s0PKndOW003134@svn.freebsd.org> Date: Sat, 25 Jan 2014 21:50:23 +0100 X-Google-Sender-Auth: V_NGWlrChNupwZnvsFpLUK72SyQ Message-ID: Subject: Re: svn commit: r341098 - head/Mk From: Antoine Brodin To: "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:50:25 -0000 On Sat, Jan 25, 2014 at 9:49 PM, Antoine Brodin wrote: > Author: antoine > Date: Sat Jan 25 20:49:39 2014 > New Revision: 341098 > URL: http://svnweb.freebsd.org/changeset/ports/341098 > QAT: https://qat.redports.org/buildarchive/r341098/ > > Log: > Add WRKDIR to QA_ENV so that the paths QA check can search for it With hat: portmgr Cheers, Antoine From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:52:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C8DF4A8; Sat, 25 Jan 2014 20:52:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4910E15C3; Sat, 25 Jan 2014 20:52:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKqvS2010853; Sat, 25 Jan 2014 20:52:57 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKquZq010850; Sat, 25 Jan 2014 20:52:56 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201401252052.s0PKquZq010850@svn.freebsd.org> From: TAKATSU Tomonari Date: Sat, 25 Jan 2014 20:52:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341099 - head/math/R-cran-xts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:52:57 -0000 Author: tota Date: Sat Jan 25 20:52:56 2014 New Revision: 341099 URL: http://svnweb.freebsd.org/changeset/ports/341099 QAT: https://qat.redports.org/buildarchive/r341099/ Log: - Upstream rerolled tarball Reported by: pkg-fallout Modified: head/math/R-cran-xts/Makefile head/math/R-cran-xts/distinfo Modified: head/math/R-cran-xts/Makefile ============================================================================== --- head/math/R-cran-xts/Makefile Sat Jan 25 20:49:39 2014 (r341098) +++ head/math/R-cran-xts/Makefile Sat Jan 25 20:52:56 2014 (r341099) @@ -3,7 +3,7 @@ PORTNAME= xts DISTVERSION= 0.9-7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/math/R-cran-xts/distinfo ============================================================================== --- head/math/R-cran-xts/distinfo Sat Jan 25 20:49:39 2014 (r341098) +++ head/math/R-cran-xts/distinfo Sat Jan 25 20:52:56 2014 (r341099) @@ -1,2 +1,2 @@ -SHA256 (xts_0.9-7.tar.gz) = 6d065b2a50e30d3bfccdc0624d2a4c7975e59f7f7276b179c9323701fa3028f5 -SIZE (xts_0.9-7.tar.gz) = 470813 +SHA256 (xts_0.9-7.tar.gz) = f11f7cb98f4b92b7f6632a2151257914130880c267736ef5a264b5dc2dfb7098 +SIZE (xts_0.9-7.tar.gz) = 470815 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:55:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7AB045A3; Sat, 25 Jan 2014 20:55:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 639D215D7; Sat, 25 Jan 2014 20:55:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKt8Am014518; Sat, 25 Jan 2014 20:55:08 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKt8w3014515; Sat, 25 Jan 2014 20:55:08 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401252055.s0PKt8w3014515@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sat, 25 Jan 2014 20:55:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341100 - in head/devel: py-Products.CMFDefault py-Products.CMFEditions py-Products.PasswordResetTool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:55:08 -0000 Author: rm Date: Sat Jan 25 20:55:07 2014 New Revision: 341100 URL: http://svnweb.freebsd.org/changeset/ports/341100 QAT: https://qat.redports.org/buildarchive/r341100/ Log: - move DIST_SUBDIR upper - support stage - bump PORTREVISION Modified: head/devel/py-Products.CMFDefault/Makefile head/devel/py-Products.CMFDefault/pkg-plist head/devel/py-Products.CMFEditions/Makefile head/devel/py-Products.CMFEditions/pkg-plist head/devel/py-Products.PasswordResetTool/Makefile head/devel/py-Products.PasswordResetTool/pkg-plist Modified: head/devel/py-Products.CMFDefault/Makefile ============================================================================== --- head/devel/py-Products.CMFDefault/Makefile Sat Jan 25 20:52:56 2014 (r341099) +++ head/devel/py-Products.CMFDefault/Makefile Sat Jan 25 20:55:07 2014 (r341100) @@ -2,9 +2,11 @@ PORTNAME= Products.CMFDefault PORTVERSION= 2.2.3 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Default product for the Zope Content Management Framework @@ -16,10 +18,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}five ${PYTHON_PKGNAMEPREFIX}Products.CMFCore>=0:${PORTSDIR}/devel/py-Products.CMFCore \ ${PYTHON_PKGNAMEPREFIX}Products.GenericSetup>=0:${PORTSDIR}/devel/py-Products.GenericSetup -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes .include Modified: head/devel/py-Products.CMFDefault/pkg-plist ============================================================================== --- head/devel/py-Products.CMFDefault/pkg-plist Sat Jan 25 20:52:56 2014 (r341099) +++ head/devel/py-Products.CMFDefault/pkg-plist Sat Jan 25 20:55:07 2014 (r341100) @@ -1,682 +1,668 @@ -%%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/namespace_packages.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/test_info.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/CHANGES.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/COPYRIGHT.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DefaultWorkflow.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DefaultWorkflow.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DefaultWorkflow.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DiscussionItem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DiscussionItem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DiscussionItem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DiscussionTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DiscussionTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DiscussionTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Document.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Document.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Document.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DublinCore.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DublinCore.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/DublinCore.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Favorite.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Favorite.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Favorite.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/File.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/File.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/File.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Image.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Image.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Image.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/LICENSE.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Link.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Link.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Link.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/MembershipTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/MembershipTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/MembershipTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/MetadataTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/MetadataTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/MetadataTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/NewsItem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/NewsItem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/NewsItem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Portal.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Portal.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/Portal.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/PropertiesTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/PropertiesTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/PropertiesTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/README.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/RegistrationTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/RegistrationTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/RegistrationTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/SkinnedFolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/SkinnedFolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/SkinnedFolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/SyndicationInfo.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/SyndicationInfo.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/SyndicationInfo.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/SyndicationTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/SyndicationTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/SyndicationTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/URLTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/URLTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/URLTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/README.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/TODO.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/configure.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/document.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/document.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/document.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/favorite.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/favorite.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/favorite.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/file.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/file.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/file.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/folder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/folder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/folder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/interfaces.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/interfaces.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/interfaces.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/link.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/link.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/link.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/metadata.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/metadata.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/metadata.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/newsitem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/newsitem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/newsitem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/templates/batch_widgets.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/templates/document.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/templates/folder.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/templates/folder_contents.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/templates/form_widgets.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/templates/link.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/btreefolder.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/document.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/favorite.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/file.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/folder.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/folder_utest.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/link.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/metadata.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_btreefolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_btreefolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_btreefolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_document.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_document.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_document.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_favorite.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_favorite.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_favorite.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_file.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_file.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_file.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_folder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_folder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_folder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_link.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_link.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_link.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_metadata.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_metadata.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_metadata.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_ursa.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_ursa.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/test_ursa.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests/utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/ursa.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/ursa.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/ursa.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/configure.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/content.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/directories.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/explainDiscussionTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/explainMembershipTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/explainMetadataTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/explainPropertiesTool.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/membershipRolemapping.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/metadataElementPolicies.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/metadataProperties.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/synOverview.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/synPolicies.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/synProps.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/synReports.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/zmi_editDocument.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/zmi_editLink.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml/zmi_metadata.dtml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/exceptions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/exceptions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/exceptions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/exportimport.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/factory.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/factory.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/factory.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/configure.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/editform.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/form.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/form.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/form.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/schema.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/schema.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/schema.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/schema.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/tests.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/tests.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/tests.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/viewform.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/vocabulary.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/vocabulary.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/vocabulary.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/widgets.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/widgets.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/widgets.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib/widgets.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/ActorDefinitions.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Actor_ContentCreator.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Actor_MembershipManager.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Actor_Reviewer.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Actor_SiteDesigner.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Actor_SiteManager.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Actor_SiteVisitor.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/AddContentFolders.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/ApproveForPublication.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/BecomeAMember.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/BrowseCMFSiteHomepage.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/BrowseNewsItems.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/BrowseSubmittedForReview.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/ChangeContent.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/ConfigureCMFSite.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/ConfigurePersonalization.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/CreateCMFFolder.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/CreateCMFSite.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/CreateCMFTopic.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/CreateNewContent.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/LoginAsMember.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/ManageLocalRoles.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/MoveCopyContent.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/ProvideFeedback.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/RemoveContent.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/RenameContent.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/SearchCMFSite.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/SubmitContentForPublication.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Syndication-Tool_Overview.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Syndication-Tool_Policies.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Syndication-Tool_Properties.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/Syndication-Tool_Reporting.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/TODO.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/UndoChanges.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/UnpublishContent.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help/ViewMyContent.stx -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/images/portal.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/images/workflow.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces/_content.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces/_content.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces/_content.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces/_tools.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces/_tools.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces/_tools.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/locales/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/locales/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/locales/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/locales/cmf_default-manual.pot -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/locales/cmf_default.pot -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/locales/pot_header.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/meta.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/permissions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/permissions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/permissions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/actions.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/cachingpolicymgr.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/catalog.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/componentregistry.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/contenttyperegistry.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/cookieauth.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/mailhost.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/metadata.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/properties.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/rolemap.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/skins.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/skins/custom.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/toolset.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types/CMF_BTree_Folder.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types/Discussion_Item.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types/Document.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types/Favorite.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types/File.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types/Folder.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types/Image.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types/Link.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types/News_Item.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/various.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/workflows.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/workflows/default_workflow/definition.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/workflows/singlestate_workflow/definition.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/export_steps.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/import_steps.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/metadata.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/.objects -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/.preserve -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/.properties -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/.objects -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/.properties -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/a_link -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/binary_file.tgz -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/binary_image.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/html_document -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/some_news -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/stx_document -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/ursa/README.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/ursa/skins.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/metadata.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/types/CMF_BTree_Folder.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/types/Document.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/types/Favorite.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/types/File.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/types/Folder.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/types/Image.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/types/Link.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/types/News_Item.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/were/README.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/were/skins.xml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/setuphandlers.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/setuphandlers.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/setuphandlers.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skin/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skin/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skin/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skin/configure.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skin/five_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/UpFolder_icon.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/Zope_logo.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/addfavorite_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/approve_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/c.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/criteria_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/download_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/edit_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/expire_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/favorite_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/folder_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/go.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/interfaces_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/join_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/localroles_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/login_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/logo.jpg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/logo.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/logout_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/members_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/metadata_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/policies_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/preferences_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/preview_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/reject_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/reply_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/retract_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/spacer.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/submit_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/syndication_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/tinyzope.jpg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/tool_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/undo_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/user_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/worklist_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images/yank_icon.png -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/ursine/main_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/werebear/main_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/aboveInThread.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_hide_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_publish_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_reject_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_retract_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_show_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_status_history.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_status_modify.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_status_modify.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_status_modify.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/content_submit_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/discussionitem_icon.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/discussionitem_view.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/discussionitem_view_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/document_edit_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/document_edit_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/document_edit_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/document_icon.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/document_view.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/document_view_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/favorite_view.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/file_edit_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/file_edit_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/file_edit_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/file_icon.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/file_view.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/file_view_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/folder_edit_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/folder_edit_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/folder_edit_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/folder_icon.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/folder_view.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/getBaseTag.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/image_edit_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/image_edit_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/image_edit_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/image_icon.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/image_view.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/image_view_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/link_edit_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/link_edit_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/link_edit_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/link_icon.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/link_view.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/link_view_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/metadata_edit_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/metadata_edit_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/metadata_edit_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/newsitem_edit_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/newsitem_edit_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/newsitem_edit_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/newsitem_icon.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/newsitem_view.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/source_html.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/transition_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/validateHTML.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content/validateTextFile.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/addtoFavorites.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/addtoFavorites.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/addtoFavorites.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/change_password.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/disableSyndication.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/editSynProperties.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/enableSyndication.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/finish_portal_construction.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_add_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_bottom_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_copy_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_cut_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_delete_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_down_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_localrole_edit.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_localrole_edit.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_localrole_edit.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_paste_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_rename_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_sort_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_top_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/folder_up_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/logout.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/mail_password.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/members_add_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/members_delete_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/personalize.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/portal_config_control.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/setRedirect.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/setStatus.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/undo.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/undo.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/undo.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/validateClipboardData.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/validateId.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/validateItemIds.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/validateMemberIds.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/validatePassword.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control/validateType.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/RSS.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/RSS_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/TitleOrId.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/batch_widgets.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/breadcrumbs.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/clearCookie.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/clearCookie.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/clearCookie.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/content_byline.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/discitem_delete.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/discitem_delete.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/discitem_delete.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/discussion_reply.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/discussion_reply.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/discussion_reply.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/discussion_reply_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/discussion_reply_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/expanded_title.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/filterCookie.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/filterCookie.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/filterCookie.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/folder_contents.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/folder_contents_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/folder_factories.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/folder_factories_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/folder_filter_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/folder_localrole_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/folder_rename_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/folder_rename_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/form_widgets.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/getBatchItemInfos.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/getBatchNavigation.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/getMainGlobals.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/get_permalink.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/index_html.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/index_html_categorized.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/index_html_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/index_html_utils.html -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/join_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/join_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/logged_in.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/logged_in_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/logged_out.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/login_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/mail_password_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/mail_password_response.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/main_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/members_delete_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/members_delete_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/members_manage_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/members_manage_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/metadata_help.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/news_box.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/news_box_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/password_email.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/password_email_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/password_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/password_form_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/permalink.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/personalize_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/publishItems.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/publishItems.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/publishItems.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/recent_news.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/recent_news_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/reconfig_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/reconfig_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/registered_email.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/registered_email_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/rejectItems.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/rejectItems.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/rejectItems.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/review.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/roster.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/rssDisabled.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/search.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/search_form.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/search_form_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/search_results_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/setup_talkback_tree.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/standard_error_message.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/stxmethod_view.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/synPropertiesForm.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/synPropertiesForm_template.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/talkback_tree.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/truncID.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/undo_form.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/viewThreadsAtBottom.pt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic/zpt_stylesheet.css -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/testing.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/testing.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/testing.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/RegistrationTool.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/TestFile.swf -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/TestImage.jpg -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DefaultWorkflow.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DefaultWorkflow.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DefaultWorkflow.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DiscussionReply.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DiscussionReply.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DiscussionReply.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DiscussionTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DiscussionTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DiscussionTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Discussions.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Discussions.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Discussions.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Document.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Document.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Document.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DublinCore.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DublinCore.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_DublinCore.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Favorite.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Favorite.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Favorite.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_File.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_File.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_File.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Image.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Image.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Image.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Link.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Link.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Link.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_MembershipTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_MembershipTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_MembershipTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_MetadataTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_MetadataTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_MetadataTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_NewsItem.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_NewsItem.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_NewsItem.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Portal.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Portal.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_Portal.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_PropertiesTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_PropertiesTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_PropertiesTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_RegistrationTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_RegistrationTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_RegistrationTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_SkinnedFolder.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_SkinnedFolder.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_SkinnedFolder.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_SyndicationTool.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_SyndicationTool.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_SyndicationTool.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_join.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_join.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_join.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests/test_utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tool.gif -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/configure.zcml -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/tests/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/tests/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/tests/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/tests/cmf20Site.zexp -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/tests/cmf21Site.zexp -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/tests/test_upgrade.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/tests/test_upgrade.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/tests/test_upgrade.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/to20.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/to20.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/to20.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/to21.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/to21.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/to21.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/to22.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/to22.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/to22.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/utils.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/utils.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/utils.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/version.txt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/www/siteAddForm.zpt -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/__init__.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/__init__.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/__init__.pyo -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/www -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/upgrade -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_generic -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_control -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/zpt_content -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/werebear -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/ursine -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins/Images -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skins -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/skin -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/were -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support/types -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/views_support -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/ursa -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure/subfolder -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content/structure -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/sample_content -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/workflows/singlestate_workflow -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/workflows/default_workflow -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/workflows -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/types -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default/skins -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles/default -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/profiles -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/locales -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/interfaces -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/images -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/help -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/formlib -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/dtml -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/tests -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser/templates -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault/browser -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products/CMFDefault -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/Products -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO -@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/CHANGES.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/COPYRIGHT.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DefaultWorkflow.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DefaultWorkflow.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DefaultWorkflow.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DiscussionItem.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DiscussionItem.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DiscussionItem.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DiscussionTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DiscussionTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DiscussionTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Document.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Document.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Document.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DublinCore.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DublinCore.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/DublinCore.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Favorite.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Favorite.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Favorite.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/File.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/File.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/File.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Image.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Image.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Image.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/LICENSE.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Link.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Link.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Link.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/MembershipTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/MembershipTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/MembershipTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/MetadataTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/MetadataTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/MetadataTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/NewsItem.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/NewsItem.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/NewsItem.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Portal.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Portal.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/Portal.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/PropertiesTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/PropertiesTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/PropertiesTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/README.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/RegistrationTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/RegistrationTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/RegistrationTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/SkinnedFolder.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/SkinnedFolder.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/SkinnedFolder.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/SyndicationInfo.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/SyndicationInfo.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/SyndicationInfo.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/SyndicationTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/SyndicationTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/SyndicationTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/URLTool.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/URLTool.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/URLTool.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/README.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/TODO.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/configure.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/document.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/document.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/document.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/favorite.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/favorite.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/favorite.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/file.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/file.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/file.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/folder.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/folder.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/folder.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/interfaces.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/interfaces.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/interfaces.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/link.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/link.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/link.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/metadata.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/metadata.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/metadata.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/newsitem.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/newsitem.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/newsitem.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/templates/batch_widgets.pt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/templates/document.pt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/templates/folder.pt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/templates/folder_contents.pt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/templates/form_widgets.pt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/templates/link.pt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/btreefolder.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/document.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/favorite.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/file.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/folder.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/folder_utest.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/link.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/metadata.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_btreefolder.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_btreefolder.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_btreefolder.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_document.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_document.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_document.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_favorite.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_favorite.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_favorite.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_file.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_file.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_file.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_folder.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_folder.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_folder.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_link.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_link.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_link.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_metadata.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_metadata.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_metadata.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_ursa.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_ursa.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/test_ursa.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/utils.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/utils.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/tests/utils.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/ursa.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/ursa.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/ursa.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/utils.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/utils.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/browser/utils.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/configure.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/content.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/directories.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/explainDiscussionTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/explainMembershipTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/explainMetadataTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/explainPropertiesTool.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/membershipRolemapping.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/metadataElementPolicies.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/metadataProperties.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/synOverview.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/synPolicies.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/synProps.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/synReports.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/zmi_editDocument.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/zmi_editLink.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/dtml/zmi_metadata.dtml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/exceptions.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/exceptions.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/exceptions.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/exportimport.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/factory.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/factory.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/factory.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/configure.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/editform.pt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/form.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/form.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/form.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/form.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/schema.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/schema.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/schema.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/schema.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/tests.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/tests.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/tests.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/viewform.pt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/vocabulary.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/vocabulary.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/vocabulary.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/widgets.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/widgets.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/widgets.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/formlib/widgets.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/ActorDefinitions.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Actor_ContentCreator.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Actor_MembershipManager.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Actor_Reviewer.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Actor_SiteDesigner.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Actor_SiteManager.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Actor_SiteVisitor.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/AddContentFolders.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/ApproveForPublication.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/BecomeAMember.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/BrowseCMFSiteHomepage.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/BrowseNewsItems.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/BrowseSubmittedForReview.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/ChangeContent.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/ConfigureCMFSite.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/ConfigurePersonalization.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/CreateCMFFolder.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/CreateCMFSite.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/CreateCMFTopic.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/CreateNewContent.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/LoginAsMember.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/ManageLocalRoles.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/MoveCopyContent.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/ProvideFeedback.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/RemoveContent.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/RenameContent.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/SearchCMFSite.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/SubmitContentForPublication.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Syndication-Tool_Overview.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Syndication-Tool_Policies.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Syndication-Tool_Properties.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/Syndication-Tool_Reporting.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/TODO.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/UndoChanges.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/UnpublishContent.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/help/ViewMyContent.stx +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/images/portal.gif +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/images/workflow.gif +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/interfaces/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/interfaces/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/interfaces/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/interfaces/_content.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/interfaces/_content.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/interfaces/_content.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/interfaces/_tools.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/interfaces/_tools.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/interfaces/_tools.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/locales/__init__.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/locales/__init__.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/locales/__init__.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/locales/cmf_default-manual.pot +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/locales/cmf_default.pot +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/locales/pot_header.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/meta.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/permissions.py +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/permissions.pyc +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/permissions.pyo +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles.zcml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/actions.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/cachingpolicymgr.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/catalog.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/componentregistry.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/contenttyperegistry.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/cookieauth.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/mailhost.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/metadata.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/properties.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/rolemap.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/skins.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/skins/custom.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/toolset.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types/CMF_BTree_Folder.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types/Discussion_Item.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types/Document.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types/Favorite.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types/File.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types/Folder.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types/Image.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types/Link.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/types/News_Item.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/various.txt +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/workflows.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/workflows/default_workflow/definition.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/default/workflows/singlestate_workflow/definition.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/export_steps.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/import_steps.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/metadata.xml +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/structure/.objects +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/structure/.preserve +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/structure/.properties +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/.objects +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/.properties +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/a_link +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/binary_file.tgz +%%PYTHON_SITELIBDIR%%/Products/CMFDefault/profiles/sample_content/structure/subfolder/binary_image.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:55:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA41F689; Sat, 25 Jan 2014 20:55:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9591915E1; Sat, 25 Jan 2014 20:55:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKtmpA015090; Sat, 25 Jan 2014 20:55:48 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKtmCA015089; Sat, 25 Jan 2014 20:55:48 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201401252055.s0PKtmCA015089@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Sat, 25 Jan 2014 20:55:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341101 - head/devel/py-Products.ATReferenceBrowserWidget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:55:48 -0000 Author: rm Date: Sat Jan 25 20:55:47 2014 New Revision: 341101 URL: http://svnweb.freebsd.org/changeset/ports/341101 QAT: https://qat.redports.org/buildarchive/r341101/ Log: - convert to auto-generated packing list - move DIST_SUBDIR upper - bump PORTREVISION Deleted: head/devel/py-Products.ATReferenceBrowserWidget/pkg-plist Modified: head/devel/py-Products.ATReferenceBrowserWidget/Makefile Modified: head/devel/py-Products.ATReferenceBrowserWidget/Makefile ============================================================================== --- head/devel/py-Products.ATReferenceBrowserWidget/Makefile Sat Jan 25 20:55:07 2014 (r341100) +++ head/devel/py-Products.ATReferenceBrowserWidget/Makefile Sat Jan 25 20:55:47 2014 (r341101) @@ -2,9 +2,11 @@ PORTNAME= Products.ATReferenceBrowserWidget PORTVERSION= 3.0 +PORTREVISION= 1 CATEGORIES= devel python zope MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DIST_SUBDIR= zope MAINTAINER= zope@FreeBSD.org COMMENT= Reference widget for Archetypes @@ -14,11 +16,9 @@ LICENSE= GPLv2 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}archetypes.referencebrowserwidget>=0:${PORTSDIR}/devel/py-archetypes.referencebrowserwidget \ ${PYTHON_PKGNAMEPREFIX}zope.deprecation>=0:${PORTSDIR}/devel/py-zope.deprecation -DIST_SUBDIR= zope -USE_PYTHON= yes -USE_PYDISTUTILS=easy_install -USE_ZIP= yes - -NO_STAGE= yes +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes +USE_ZIP= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 20:58:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28E8186B; Sat, 25 Jan 2014 20:58:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CCD1B1602; Sat, 25 Jan 2014 20:58:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PKwCtT019284; Sat, 25 Jan 2014 20:58:12 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PKwCYh019282; Sat, 25 Jan 2014 20:58:12 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252058.s0PKwCYh019282@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 20:58:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341102 - head/ftp/gwget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 20:58:13 -0000 Author: bapt Date: Sat Jan 25 20:58:12 2014 New Revision: 341102 URL: http://svnweb.freebsd.org/changeset/ports/341102 QAT: https://qat.redports.org/buildarchive/r341102/ Log: Support stage Use options helpers USE_GNOME=desktopfileutils -> USES=desktop-file-utils USE_GMAKE -> USES=gmake Modified: head/ftp/gwget/Makefile Modified: head/ftp/gwget/Makefile ============================================================================== --- head/ftp/gwget/Makefile Sat Jan 25 20:55:47 2014 (r341101) +++ head/ftp/gwget/Makefile Sat Jan 25 20:58:12 2014 (r341102) @@ -11,7 +11,7 @@ DIST_SUBDIR= gnome2 MAINTAINER= ports@FreeBSD.org COMMENT= GNOME wget front-end -LIB_DEPENDS= dbus-glib-1:${PORTSDIR}/devel/dbus-glib +LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib RUN_DEPENDS= wget:${PORTSDIR}/ftp/wget OPTIONS_DEFINE= NOTIFY EPIPHANY @@ -19,41 +19,28 @@ OPTIONS_DEFAULT= NOTIFY EPIPHANY EPIPHANY_DESC= Epiphany extension USE_BZIP2= yes -USE_GMAKE= yes -USES= pathfix gettext -USE_GNOME= desktopfileutils gnomeprefix gtk20 gconf2 libgnomeui +USES= pathfix gettext gmake desktop-file-utils +USE_GNOME= gnomeprefix gtk20 gconf2 libgnomeui INSTALLS_ICONS= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +PLIST_SUB+= EPHY_VERSION="2.30" GCONF_SCHEMAS= ${PORTNAME}.schemas -NO_STAGE= yes -.include +OPTIONS_SUB= yes -.if ${PORT_OPTIONS:MNOTIFY} -LIB_DEPENDS+= notify:${PORTSDIR}/devel/libnotify -RUN_DEPENDS+= ${LOCALBASE}/libexec/notification-daemon:${PORTSDIR}/deskutils/notification-daemon -.else -CONFIGURE_ARGS+= --disable-libnotify -.endif - -.if ${PORT_OPTIONS:MEPIPHANY} -BUILD_DEPENDS+= epiphany:${PORTSDIR}/www/epiphany -RUN_DEPENDS+= epiphany:${PORTSDIR}/www/epiphany -CONFIGURE_ARGS+= --enable-epiphany-extension -PLIST_SUB+= EPIPHANY="" EPHY_VERSION="2.30" -.else -CONFIGURE_ARGS+= --disable-epiphany-extension -PLIST_SUB+= EPIPHANY="@comment " -.endif +NOTIFY_CONFIGURE_ENABLE= libnotify +NOTIFY_LIB_DEPENDS= libnotify.so:${PORTSDIR}/devel/libnotify +NOTIFY_RUN_DEPENDS= ${LOCALBASE}/libexec/notification-daemon:${PORTSDIR}/deskutils/notification-daemon + +EPIPHANY_BUILD_DEPENDS+= epiphany:${PORTSDIR}/www/epiphany +EPIPHANY_RUN_DEPENDS= epiphany:${PORTSDIR}/www/epiphany +EPIPHANY_CONFIGURE_ENABLE= epiphany-extension post-patch: @${REINPLACE_CMD} 's|glib/gerror|glib|' \ ${WRKSRC}/src/gwget-application.h -post-install: - @-update-desktop-database - .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:09:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18F38C11; Sat, 25 Jan 2014 21:09:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0481816D1; Sat, 25 Jan 2014 21:09:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PL9Dv8036413; Sat, 25 Jan 2014 21:09:13 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PL9DlS036397; Sat, 25 Jan 2014 21:09:13 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401252109.s0PL9DlS036397@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sat, 25 Jan 2014 21:09:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341103 - head/print/lyx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:09:14 -0000 Author: rakuco Date: Sat Jan 25 21:09:12 2014 New Revision: 341103 URL: http://svnweb.freebsd.org/changeset/ports/341103 QAT: https://qat.redports.org/buildarchive/r341103/ Log: Update to 2.0.7. Announcement and changelog: http://www.lyx.org/announce/2_0_7.txt Modified: head/print/lyx/Makefile head/print/lyx/distinfo Modified: head/print/lyx/Makefile ============================================================================== --- head/print/lyx/Makefile Sat Jan 25 20:58:12 2014 (r341102) +++ head/print/lyx/Makefile Sat Jan 25 21:09:12 2014 (r341103) @@ -21,9 +21,10 @@ LIB_DEPENDS= libboost_regex.so:${PORTSDI CONFLICTS= lyx-1.[0-9]* MAJOR_VERSION= 2.0 -MINOR_VERSION= 6 +MINOR_VERSION= 7 -USES= desktop-file-utils gmake iconv pkgconfig perl5 +USES= desktop-file-utils gmake iconv pkgconfig perl5 shebangfix +SHEBANG_FILES= lib/scripts/listerrors USE_PYTHON= 2 USE_QT4= corelib gui moc_build uic_build rcc_build USE_XZ= yes Modified: head/print/lyx/distinfo ============================================================================== --- head/print/lyx/distinfo Sat Jan 25 20:58:12 2014 (r341102) +++ head/print/lyx/distinfo Sat Jan 25 21:09:12 2014 (r341103) @@ -1,2 +1,2 @@ -SHA256 (lyx-2.0.6.tar.xz) = a5cb2bedee6e154b50881acd2316cf9d79162d6754e3aa159a6d579f5a828ad2 -SIZE (lyx-2.0.6.tar.xz) = 10390452 +SHA256 (lyx-2.0.7.tar.xz) = 0597bda734d476f59dd440c45a801e1c581ab30bf4c9ab23242b3a452beee862 +SIZE (lyx-2.0.7.tar.xz) = 10449908 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:10:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0483ECFC; Sat, 25 Jan 2014 21:10:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E4ABC16DD; Sat, 25 Jan 2014 21:10:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLAel7040277; Sat, 25 Jan 2014 21:10:40 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLAePB040272; Sat, 25 Jan 2014 21:10:40 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252110.s0PLAePB040272@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:10:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341104 - head/ftp/tftp-hpa X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:10:41 -0000 Author: bapt Date: Sat Jan 25 21:10:40 2014 New Revision: 341104 URL: http://svnweb.freebsd.org/changeset/ports/341104 QAT: https://qat.redports.org/buildarchive/r341104/ Log: Add a DOCS options Convert USE_GMAKE to USES=gmake Modified: head/ftp/tftp-hpa/Makefile Modified: head/ftp/tftp-hpa/Makefile ============================================================================== --- head/ftp/tftp-hpa/Makefile Sat Jan 25 21:09:12 2014 (r341103) +++ head/ftp/tftp-hpa/Makefile Sat Jan 25 21:10:40 2014 (r341104) @@ -7,11 +7,13 @@ MASTER_SITES= ${MASTER_SITE_KERNEL_ORG} MASTER_SITE_SUBDIR= software/network/tftp/tftp-hpa MAINTAINER= brooks@FreeBSD.org -COMMENT= An advanced tftp server +COMMENT= Advanced tftp server + +OPTIONS_DEFINE= DOCS USE_XZ= yes GNU_CONFIGURE= yes -USE_GMAKE= yes +USES= gmake USE_RC_SUBR= tftpd DESTDIRNAME= INSTALLROOT @@ -34,12 +36,10 @@ post-patch: -e 's,openlog(,tzset();openlog(,g' \ ${WRKSRC}/tftpd/tftpd.c -.ifdef PORTDOCS post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for docfile in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:12:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0B957DF9; Sat, 25 Jan 2014 21:12:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EB6E91752; Sat, 25 Jan 2014 21:12:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLCOiQ043209; Sat, 25 Jan 2014 21:12:24 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLCO31043204; Sat, 25 Jan 2014 21:12:24 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252112.s0PLCO31043204@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:12:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341105 - head/ftp/wmget X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:12:25 -0000 Author: bapt Date: Sat Jan 25 21:12:24 2014 New Revision: 341105 URL: http://svnweb.freebsd.org/changeset/ports/341105 QAT: https://qat.redports.org/buildarchive/r341105/ Log: Support stage Convert USE_GMAKE to USES=gmake Modified: head/ftp/wmget/Makefile Modified: head/ftp/wmget/Makefile ============================================================================== --- head/ftp/wmget/Makefile Sat Jan 25 21:10:40 2014 (r341104) +++ head/ftp/wmget/Makefile Sat Jan 25 21:12:24 2014 (r341105) @@ -13,22 +13,19 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-src MAINTAINER= uqs@FreeBSD.org COMMENT= Dock app for Window Maker providing wget functionality -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl USE_XORG= x11 xpm -USE_GMAKE= yes +USES= gmake WRKSRC= ${WRKDIR}/${PORTNAME} MAKE_ENV+= ${CONFIGURE_ENV} -MAN1= wmget.1 -PLIST_FILES= bin/wmget +PLIST_FILES= bin/wmget \ + man/man1/wmget.1.gz -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/wmget ${PREFIX}/bin -.if !defined(NO_INSTALL_MANPAGES) - ${INSTALL_MAN} ${WRKSRC}/wmget.1 ${PREFIX}/man/man1 -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/wmget ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/wmget.1 ${STAGEDIR}${PREFIX}/man/man1 .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:15:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 633A4EFE; Sat, 25 Jan 2014 21:15:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4F4051769; Sat, 25 Jan 2014 21:15:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLF2Jn046156; Sat, 25 Jan 2014 21:15:02 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLF1Ma046155; Sat, 25 Jan 2014 21:15:01 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252115.s0PLF1Ma046155@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:15:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341106 - head/ftp/rexx-curl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:15:02 -0000 Author: bapt Date: Sat Jan 25 21:15:01 2014 New Revision: 341106 URL: http://svnweb.freebsd.org/changeset/ports/341106 QAT: https://qat.redports.org/buildarchive/r341106/ Log: Support stage Modernize LIB_DEPENDS Add DOCS option Modified: head/ftp/rexx-curl/Makefile Modified: head/ftp/rexx-curl/Makefile ============================================================================== --- head/ftp/rexx-curl/Makefile Sat Jan 25 21:12:24 2014 (r341105) +++ head/ftp/rexx-curl/Makefile Sat Jan 25 21:15:01 2014 (r341106) @@ -12,11 +12,13 @@ DISTNAME= RexxCURL-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= External function package providing an interface to the cURL package +OPTIONS_DEFINE= DOCS + BUILD_DEPENDS= rexx:${PORTSDIR}/lang/rexx-regina -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl RUN_DEPENDS= rexx:${PORTSDIR}/lang/rexx-regina -USE_GMAKE= yes +USES= gmake GNU_CONFIGURE= yes CPPFLAGS+= ${PTHREAD_CFLAGS} LDFLAGS+= ${PTHREAD_LIBS} @@ -26,19 +28,14 @@ USE_LDCONFIG= yes DOCSDIR= ${PREFIX}/share/doc/rexx${PORTNAME} DATADIR= ${PREFIX}/share/rexx${PORTNAME} -NO_STAGE= yes -.include - post-patch: @${REINPLACE_CMD} -e "s| -lc | |g" -e "/\$(sharedir)\/images/d" \ -e "/index.html/d" -e "/rxcurl64.png/d" ${WRKSRC}/Makefile.in post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/index.html ${DOCSDIR} - @${MKDIR} ${DOCSDIR}/images - ${INSTALL_DATA} ${WRKSRC}/doc/images/rxcurl64.png ${DOCSDIR}/images -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/index.html ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR}/images + ${INSTALL_DATA} ${WRKSRC}/doc/images/rxcurl64.png ${STAGEDIR}${DOCSDIR}/images .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:18:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E8E3FEE; Sat, 25 Jan 2014 21:18:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A9AB1777; Sat, 25 Jan 2014 21:18:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLIYmc050688; Sat, 25 Jan 2014 21:18:34 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLIYKE050686; Sat, 25 Jan 2014 21:18:34 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252118.s0PLIYKE050686@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:18:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341107 - head/graphics/libgfx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:18:34 -0000 Author: bapt Date: Sat Jan 25 21:18:33 2014 New Revision: 341107 URL: http://svnweb.freebsd.org/changeset/ports/341107 QAT: https://qat.redports.org/buildarchive/r341107/ Log: Support stage Modernize LIB_DEPENDS USE_GMAKE -> USES=gmake Modified: head/graphics/libgfx/Makefile Modified: head/graphics/libgfx/Makefile ============================================================================== --- head/graphics/libgfx/Makefile Sat Jan 25 21:15:01 2014 (r341106) +++ head/graphics/libgfx/Makefile Sat Jan 25 21:18:33 2014 (r341107) @@ -12,16 +12,16 @@ COMMENT= OpenGL/FLTK development LICENSE= MIT -LIB_DEPENDS= fltk:${PORTSDIR}/x11-toolkits/fltk \ - tiff:${PORTSDIR}/graphics/tiff \ - png15:${PORTSDIR}/graphics/png \ - gzstream:${PORTSDIR}/devel/gzstream \ - jpeg:${PORTSDIR}/graphics/jpeg +LIB_DEPENDS= libfltk.so:${PORTSDIR}/x11-toolkits/fltk \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libpng15.so:${PORTSDIR}/graphics/png \ + libgzstream.so:${PORTSDIR}/devel/gzstream \ + libjpeg.so:${PORTSDIR}/graphics/jpeg BUILD_WRKSRC= ${WRKSRC}/src +USES= gmake USE_GL= glu -USE_GMAKE= yes USE_XORG= x11 xext xft xinerama GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-gzstream --with-libtiff-lzw --with-x @@ -32,7 +32,6 @@ CFLAGS+= -fPIC CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ '/^CC /d ; \ @@ -45,8 +44,8 @@ post-patch: '/^FLTK_LIBS/s|"-lfltk"|"`fltk-config --ldflags`"|' ${WRKSRC}/configure do-install: - @(cd ${WRKSRC}/include/gfx && ${COPYTREE_SHARE} . ${PREFIX}/include/gfx) - ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME}.so ${PREFIX}/lib - @${LN} -sf ${PORTNAME}.so ${PREFIX}/lib/${PORTNAME}.so.0 + @(cd ${WRKSRC}/include/gfx && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include/gfx) + ${INSTALL_LIB} ${WRKSRC}/src/${PORTNAME}.so ${STAGEDIR}${PREFIX}/lib + @${LN} -sf ${PORTNAME}.so ${STAGEDIR}${PREFIX}/lib/${PORTNAME}.so.0 .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:23:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2335D2C0; Sat, 25 Jan 2014 21:23:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0E7111814; Sat, 25 Jan 2014 21:23:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLN7Mp057788; Sat, 25 Jan 2014 21:23:07 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLN7o4057787; Sat, 25 Jan 2014 21:23:07 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401252123.s0PLN7o4057787@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 21:23:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341108 - head/devel/py-magic X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:23:08 -0000 Author: antoine Date: Sat Jan 25 21:23:07 2014 New Revision: 341108 URL: http://svnweb.freebsd.org/changeset/ports/341108 QAT: https://qat.redports.org/buildarchive/r341108/ Log: Use PYDISTUTILS_AUTOPLIST to actually package the python module Modified: head/devel/py-magic/Makefile Modified: head/devel/py-magic/Makefile ============================================================================== --- head/devel/py-magic/Makefile Sat Jan 25 21:18:33 2014 (r341107) +++ head/devel/py-magic/Makefile Sat Jan 25 21:23:07 2014 (r341108) @@ -3,6 +3,7 @@ PORTNAME= magic PORTVERSION= 5.16 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= ftp://ftp.astron.com/pub/file/ \ ftp://ftp.gw.com/mirrors/pub/unix/file/ \ @@ -15,8 +16,7 @@ COMMENT= Python module for determining f USE_PYTHON= yes USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= Magic_file_extensions -PYDISTUTILS_PKGVERSION= 0.2 +PYDISTUTILS_AUTOPLIST= yes WRKSRC= ${WRKDIR}/file-${PORTVERSION}/python From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:24:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 050B63A3; Sat, 25 Jan 2014 21:24:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E50A3181E; Sat, 25 Jan 2014 21:24:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLO2dJ058806; Sat, 25 Jan 2014 21:24:02 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLO2kN058802; Sat, 25 Jan 2014 21:24:02 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201401252124.s0PLO2kN058802@svn.freebsd.org> From: TAKATSU Tomonari Date: Sat, 25 Jan 2014 21:24:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341109 - head/math/R-cran-RcppArmadillo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:24:03 -0000 Author: tota Date: Sat Jan 25 21:24:02 2014 New Revision: 341109 URL: http://svnweb.freebsd.org/changeset/ports/341109 QAT: https://qat.redports.org/buildarchive/r341109/ Log: - Update to 0.4.000.2 Modified: head/math/R-cran-RcppArmadillo/Makefile head/math/R-cran-RcppArmadillo/distinfo Modified: head/math/R-cran-RcppArmadillo/Makefile ============================================================================== --- head/math/R-cran-RcppArmadillo/Makefile Sat Jan 25 21:23:07 2014 (r341108) +++ head/math/R-cran-RcppArmadillo/Makefile Sat Jan 25 21:24:02 2014 (r341109) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= RcppArmadillo -PORTVERSION= 0.4.000 +PORTVERSION= 0.4.000.2 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/math/R-cran-RcppArmadillo/distinfo ============================================================================== --- head/math/R-cran-RcppArmadillo/distinfo Sat Jan 25 21:23:07 2014 (r341108) +++ head/math/R-cran-RcppArmadillo/distinfo Sat Jan 25 21:24:02 2014 (r341109) @@ -1,2 +1,2 @@ -SHA256 (RcppArmadillo_0.4.000.tar.gz) = 8e32bed2d02ebd7172278c85991e78138004ed244bdf8ef09f17d3ff4064012a -SIZE (RcppArmadillo_0.4.000.tar.gz) = 892608 +SHA256 (RcppArmadillo_0.4.000.2.tar.gz) = 0da41345c2fe05b9737a653313dcd9fcb235cdcaff541d63156575ac2ce4cd8e +SIZE (RcppArmadillo_0.4.000.2.tar.gz) = 892941 From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:25:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C07AE48F; Sat, 25 Jan 2014 21:25:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ACA45182C; Sat, 25 Jan 2014 21:25:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLP9eA060360; Sat, 25 Jan 2014 21:25:09 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLP9jP060359; Sat, 25 Jan 2014 21:25:09 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252125.s0PLP9jP060359@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:25:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341110 - head/graphics/libpcd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:25:09 -0000 Author: bapt Date: Sat Jan 25 21:25:09 2014 New Revision: 341110 URL: http://svnweb.freebsd.org/changeset/ports/341110 QAT: https://qat.redports.org/buildarchive/r341110/ Log: Support stage USE_GMAKE -> USES=gmake Modified: head/graphics/libpcd/Makefile Modified: head/graphics/libpcd/Makefile ============================================================================== --- head/graphics/libpcd/Makefile Sat Jan 25 21:24:02 2014 (r341109) +++ head/graphics/libpcd/Makefile Sat Jan 25 21:25:09 2014 (r341110) @@ -8,13 +8,12 @@ MASTER_SITES= http://www.kraxel.org/rele DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= A library for reading PhotoCD images +COMMENT= Library for reading PhotoCD images WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/} -USE_GMAKE= yes -MAKEFILE= ${WRKSRC}/GNUmakefile +USES= gmake +MAKEFILE= GNUmakefile USE_LDCONFIG= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:26:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9085256F; Sat, 25 Jan 2014 21:26:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C4721834; Sat, 25 Jan 2014 21:26:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLQ6o1062773; Sat, 25 Jan 2014 21:26:06 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLQ6BM062768; Sat, 25 Jan 2014 21:26:06 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252126.s0PLQ6BM062768@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:26:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341111 - head/graphics/libspiro X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:26:06 -0000 Author: bapt Date: Sat Jan 25 21:26:05 2014 New Revision: 341111 URL: http://svnweb.freebsd.org/changeset/ports/341111 QAT: https://qat.redports.org/buildarchive/r341111/ Log: Support stage USE_GMAKE -> USES=gmake Modified: head/graphics/libspiro/Makefile Modified: head/graphics/libspiro/Makefile ============================================================================== --- head/graphics/libspiro/Makefile Sat Jan 25 21:25:09 2014 (r341110) +++ head/graphics/libspiro/Makefile Sat Jan 25 21:26:05 2014 (r341111) @@ -10,12 +10,11 @@ DISTNAME= ${PORTNAME}_src-${PORTVERSION} MAINTAINER= cyberbotx@cyberbotx.com COMMENT= Library to convert clothoid splines into Bezier splines +USES= gmake USE_BZIP2= yes -USE_GMAKE= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:26:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9771648; Sat, 25 Jan 2014 21:26:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9B5EB1838; Sat, 25 Jan 2014 21:26:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLQQop063808; Sat, 25 Jan 2014 21:26:26 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLQPrK063805; Sat, 25 Jan 2014 21:26:25 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401252126.s0PLQPrK063805@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sat, 25 Jan 2014 21:26:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341112 - in head/x11-toolkits/sdl_pango: . 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.17 Precedence: list List-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, 25 Jan 2014 21:26:26 -0000 Author: rakuco Date: Sat Jan 25 21:26:25 2014 New Revision: 341112 URL: http://svnweb.freebsd.org/changeset/ports/341112 QAT: https://qat.redports.org/buildarchive/r341112/ Log: - Add a patch to fix the build with clang (a function is used before being declared). [1] - Support staging. - Set LICENSE. - Remove tab from the WWW line in pkg-descr. PR: ports/185558 [1] Submitted by: Jan Henrik Sylvester Approved by: maintainer timeout (18 days) MFH: 2014Q1 Added: head/x11-toolkits/sdl_pango/files/patch-src_SDL_Pango.c (contents, props changed) Modified: head/x11-toolkits/sdl_pango/Makefile head/x11-toolkits/sdl_pango/pkg-descr Modified: head/x11-toolkits/sdl_pango/Makefile ============================================================================== --- head/x11-toolkits/sdl_pango/Makefile Sat Jan 25 21:26:05 2014 (r341111) +++ head/x11-toolkits/sdl_pango/Makefile Sat Jan 25 21:26:25 2014 (r341112) @@ -14,6 +14,8 @@ PATCHFILES= SDL_Pango-0.1.2-API-adds.pat MAINTAINER= edwin@mavetju.org COMMENT= SDL_Pango is the SDL API to the Pango text rendering engine of GNOME 2.x +LICENSE= LGPL21 + USES= pkgconfig USE_AUTOTOOLS= libtool USE_SDL= sdl @@ -21,5 +23,4 @@ USE_GNOME= pango GNU_CONFIGURE= yes USE_LDCONFIG= yes -NO_STAGE= yes .include Added: head/x11-toolkits/sdl_pango/files/patch-src_SDL_Pango.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/sdl_pango/files/patch-src_SDL_Pango.c Sat Jan 25 21:26:25 2014 (r341112) @@ -0,0 +1,14 @@ +--- src/SDL_Pango.c~ 2013-12-31 14:26:31.000000000 +0000 ++++ src/SDL_Pango.c 2013-12-31 14:22:36.000000000 +0000 +@@ -330,6 +330,11 @@ + @param *rect [in] Draw on this area + @param baseline [in] Horizontal location of glyphs + */ ++void SDLPango_CopyFTBitmapToSurface( ++ const FT_Bitmap *bitmap, ++ SDL_Surface *surface, ++ const SDLPango_Matrix *matrix, ++ SDL_Rect *rect); + static void + drawGlyphString( + SDLPango_Context *context, Modified: head/x11-toolkits/sdl_pango/pkg-descr ============================================================================== --- head/x11-toolkits/sdl_pango/pkg-descr Sat Jan 25 21:26:05 2014 (r341111) +++ head/x11-toolkits/sdl_pango/pkg-descr Sat Jan 25 21:26:25 2014 (r341112) @@ -14,4 +14,4 @@ your support desk. You should carefully process. Author: NAKAMURA Ken'ichi -WWW: http://sdlpango.sourceforge.net/ +WWW: http://sdlpango.sourceforge.net/ From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:34:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8346CB11; Sat, 25 Jan 2014 21:34:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6E9921908; Sat, 25 Jan 2014 21:34:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLYa14086673; Sat, 25 Jan 2014 21:34:36 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLYaNj086669; Sat, 25 Jan 2014 21:34:36 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252134.s0PLYaNj086669@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:34:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341113 - head/graphics/imc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:34:36 -0000 Author: bapt Date: Sat Jan 25 21:34:35 2014 New Revision: 341113 URL: http://svnweb.freebsd.org/changeset/ports/341113 QAT: https://qat.redports.org/buildarchive/r341113/ Log: Support stage Add DOCS and EXAMPLES options USE_GMAKE -> USES=gmake Modified: head/graphics/imc/Makefile Modified: head/graphics/imc/Makefile ============================================================================== --- head/graphics/imc/Makefile Sat Jan 25 21:26:25 2014 (r341112) +++ head/graphics/imc/Makefile Sat Jan 25 21:34:35 2014 (r341113) @@ -10,18 +10,19 @@ MASTER_SITES= http://www.peterverthez.ne MAINTAINER= ports@FreeBSD.org COMMENT= Image Compiler +OPTIONS_DEFINE= DOCS EXAMPLES + LICENSE= GPLv2 BUILD_DEPENDS= p5-GD>=0:${PORTSDIR}/graphics/p5-GD \ p5-CGI.pm>=0:${PORTSDIR}/www/p5-CGI.pm RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= perl5 +USES= gmake perl5 GNU_CONFIGURE= yes -USE_GMAKE= yes -PLIST_FILES= bin/${PORTNAME} -MAN1= ${PORTNAME}.1 +PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz PORTDOCS= * @@ -34,19 +35,12 @@ DOC_FILES2= *.html *.ref *.txt PORTEXAMPLES= * -NO_STAGE= yes -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${DOCSDIR} - ${MKDIR} ${DOCSDIR2} - ${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${DOCSDIR2} -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${EXAMPLESDIR} - @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR2} + ${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:41:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BBB08F78; Sat, 25 Jan 2014 21:41:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A69AF19C3; Sat, 25 Jan 2014 21:41:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLfFOL098996; Sat, 25 Jan 2014 21:41:15 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLfFu6098995; Sat, 25 Jan 2014 21:41:15 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401252141.s0PLfFu6098995@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sat, 25 Jan 2014 21:41:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341114 - head/x11-toolkits/sdl_pango/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.17 Precedence: list List-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, 25 Jan 2014 21:41:15 -0000 Author: rakuco Date: Sat Jan 25 21:41:14 2014 New Revision: 341114 URL: http://svnweb.freebsd.org/changeset/ports/341114 QAT: https://qat.redports.org/buildarchive/r341114/ Log: Hopefully fix `make patch' after r341112. src/SDL_Pango.c is CRLF-encoded; while we could use dos2unix here, the port's Makefile also fetches a patch from elsewhere that expects a CRLF-encoded file. PR: ports/185558 Modified: head/x11-toolkits/sdl_pango/files/patch-src_SDL_Pango.c (contents, props changed) Modified: head/x11-toolkits/sdl_pango/files/patch-src_SDL_Pango.c ============================================================================== --- head/x11-toolkits/sdl_pango/files/patch-src_SDL_Pango.c Sat Jan 25 21:34:35 2014 (r341113) +++ head/x11-toolkits/sdl_pango/files/patch-src_SDL_Pango.c Sat Jan 25 21:41:14 2014 (r341114) @@ -1,14 +1,14 @@ ---- src/SDL_Pango.c~ 2013-12-31 14:26:31.000000000 +0000 -+++ src/SDL_Pango.c 2013-12-31 14:22:36.000000000 +0000 -@@ -330,6 +330,11 @@ - @param *rect [in] Draw on this area - @param baseline [in] Horizontal location of glyphs - */ -+void SDLPango_CopyFTBitmapToSurface( -+ const FT_Bitmap *bitmap, -+ SDL_Surface *surface, -+ const SDLPango_Matrix *matrix, -+ SDL_Rect *rect); - static void - drawGlyphString( - SDLPango_Context *context, +--- src/SDL_Pango.c~ 2013-12-31 14:26:31.000000000 +0000 ++++ src/SDL_Pango.c 2013-12-31 14:22:36.000000000 +0000 +@@ -330,6 +330,11 @@ + @param *rect [in] Draw on this area + @param baseline [in] Horizontal location of glyphs + */ ++void SDLPango_CopyFTBitmapToSurface( ++ const FT_Bitmap *bitmap, ++ SDL_Surface *surface, ++ const SDLPango_Matrix *matrix, ++ SDL_Rect *rect); + static void + drawGlyphString( + SDLPango_Context *context, From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:44:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2CDFF11E; Sat, 25 Jan 2014 21:44:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 192DD19E0; Sat, 25 Jan 2014 21:44:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLiVw9003203; Sat, 25 Jan 2014 21:44:31 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLiV6J003202; Sat, 25 Jan 2014 21:44:31 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252144.s0PLiV6J003202@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:44:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341115 - head/net-im/ari-yahoo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:44:32 -0000 Author: bapt Date: Sat Jan 25 21:44:31 2014 New Revision: 341115 URL: http://svnweb.freebsd.org/changeset/ports/341115 QAT: https://qat.redports.org/buildarchive/r341115/ Log: Support stage USE_GMAKE -> USES=gmake Modified: head/net-im/ari-yahoo/Makefile Modified: head/net-im/ari-yahoo/Makefile ============================================================================== --- head/net-im/ari-yahoo/Makefile Sat Jan 25 21:41:14 2014 (r341114) +++ head/net-im/ari-yahoo/Makefile Sat Jan 25 21:44:31 2014 (r341115) @@ -8,14 +8,13 @@ CATEGORIES= net-im MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org -COMMENT= A console Yahoo! messenger client +COMMENT= Console Yahoo! messenger client +USES= gmake PLIST_FILES= bin/ari-yahoo -USE_GMAKE= yes USE_GCC= any USE_AUTOTOOLS= autoconf -NO_STAGE= yes pre-configure: @${TOUCH} ${WRKSRC}/aclocal.m4 ${WRKSRC}/Makefile.in @(cd ${WRKSRC}/libyahoo && ${SETENV} ${AUTOCONF_ENV} ${AUTOCONF} \ @@ -23,6 +22,6 @@ pre-configure: do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/ari-yahoo ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/ari-yahoo ${STAGEDIR}${PREFIX}/bin .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:47:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3990931C; Sat, 25 Jan 2014 21:47:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 251FA19FE; Sat, 25 Jan 2014 21:47:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLlls2006527; Sat, 25 Jan 2014 21:47:47 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLllgZ006522; Sat, 25 Jan 2014 21:47:47 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252147.s0PLllgZ006522@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:47:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341116 - head/net-im/icqlib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:47:48 -0000 Author: bapt Date: Sat Jan 25 21:47:47 2014 New Revision: 341116 URL: http://svnweb.freebsd.org/changeset/ports/341116 QAT: https://qat.redports.org/buildarchive/r341116/ Log: Support stage USE_GMAKE -> USES=gmake Modified: head/net-im/icqlib/Makefile Modified: head/net-im/icqlib/Makefile ============================================================================== --- head/net-im/icqlib/Makefile Sat Jan 25 21:44:31 2014 (r341115) +++ head/net-im/icqlib/Makefile Sat Jan 25 21:47:47 2014 (r341116) @@ -8,14 +8,13 @@ CATEGORIES= net-im MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org -COMMENT= A library required by kicq (not libicq) +COMMENT= Library required by kicq (not libicq) +USES= gmake USE_AUTOTOOLS= libtool USE_LDCONFIG= yes GNU_CONFIGURE= yes -USE_GMAKE= yes -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \ ${WRKSRC}/configure From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 21:58:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4256882; Sat, 25 Jan 2014 21:58:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AFD771AAB; Sat, 25 Jan 2014 21:58:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PLwWCf021968; Sat, 25 Jan 2014 21:58:32 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PLwWHR021961; Sat, 25 Jan 2014 21:58:32 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252158.s0PLwWHR021961@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 21:58:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341118 - head/net-mgmt/2ping X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 21:58:32 -0000 Author: bapt Date: Sat Jan 25 21:58:31 2014 New Revision: 341118 URL: http://svnweb.freebsd.org/changeset/ports/341118 QAT: https://qat.redports.org/buildarchive/r341118/ Log: Support stage Fix shebang USE_GMAKE -> USES=gmake Modified: head/net-mgmt/2ping/Makefile head/net-mgmt/2ping/pkg-plist Modified: head/net-mgmt/2ping/Makefile ============================================================================== --- head/net-mgmt/2ping/Makefile Sat Jan 25 21:56:28 2014 (r341117) +++ head/net-mgmt/2ping/Makefile Sat Jan 25 21:58:31 2014 (r341118) @@ -6,7 +6,7 @@ CATEGORIES= net-mgmt perl5 MASTER_SITES= http://www.finnie.org/software/2ping/ MAINTAINER= gslin@gslin.org -COMMENT= A bi-directional ping utility +COMMENT= Bi-directional ping utility LICENSE= GPLv2 @@ -15,10 +15,7 @@ RUN_DEPENDS= p5-Digest-CRC>=0:${PORTSDIR p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA \ p5-IO-Socket-INET6>=0:${PORTSDIR}/net/p5-IO-Socket-INET6 -USE_GMAKE= yes -USES= perl5 +USES= gmake perl5 shebangfix +SHEBANG_FILES= src/2ping.pl -MAN8= 2ping.8 2ping6.8 - -NO_STAGE= yes .include Modified: head/net-mgmt/2ping/pkg-plist ============================================================================== --- head/net-mgmt/2ping/pkg-plist Sat Jan 25 21:56:28 2014 (r341117) +++ head/net-mgmt/2ping/pkg-plist Sat Jan 25 21:58:31 2014 (r341118) @@ -1,2 +1,4 @@ bin/2ping bin/2ping6 +man/man8/2ping.8.gz +man/man8/2ping6.8.gz From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:02:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A19AD9C5; Sat, 25 Jan 2014 22:02:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 72CD01B1C; Sat, 25 Jan 2014 22:02:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PM2pKT029984; Sat, 25 Jan 2014 22:02:51 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PM2o2R029974; Sat, 25 Jan 2014 22:02:50 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401252202.s0PM2o2R029974@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sat, 25 Jan 2014 22:02:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341119 - in head/games/sauerbraten: . 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.17 Precedence: list List-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, 25 Jan 2014 22:02:51 -0000 Author: rakuco Date: Sat Jan 25 22:02:50 2014 New Revision: 341119 URL: http://svnweb.freebsd.org/changeset/ports/341119 QAT: https://qat.redports.org/buildarchive/r341119/ Log: - Fix the build on 10 and beyond. Since r253839 ld(1) behaves more strictly and does not pull in indirect shared library dependencies (in this case, libX11.so). Upstream correctly has -lX11 in the linker line, but r315151 removed this section in patch-src_Makefile. Based on a patch by Jan Henrik Sylvester in [1]. - While here, convert USE_GMAKE=yes to USES=gmake. PR: ports/185033 [1] Submitted by: Jan Henrik Sylvester [1] Approved by: maintainer timeout (37 days) MFH: 2014Q1 Modified: head/games/sauerbraten/Makefile head/games/sauerbraten/files/patch-src_Makefile Modified: head/games/sauerbraten/Makefile ============================================================================== --- head/games/sauerbraten/Makefile Sat Jan 25 21:58:31 2014 (r341118) +++ head/games/sauerbraten/Makefile Sat Jan 25 22:02:50 2014 (r341119) @@ -14,7 +14,7 @@ COMMENT= First person shooter based on C LICENSE_COMB= multi LICENSE= MIT ZLIB -USE_GMAKE= yes +USES= gmake GNU_CONFIGURE= yes USE_BZIP2= yes CONFIGURE_ENV= ACLOCAL=true AUTOCONF=true AUTOMAKE=true Modified: head/games/sauerbraten/files/patch-src_Makefile ============================================================================== --- head/games/sauerbraten/files/patch-src_Makefile Sat Jan 25 21:58:31 2014 (r341118) +++ head/games/sauerbraten/files/patch-src_Makefile Sat Jan 25 22:02:50 2014 (r341119) @@ -17,7 +17,7 @@ -CLIENT_INCLUDES= $(INCLUDES) -I/usr/X11R6/include `sdl-config --cflags` -CLIENT_LIBS= -Lenet/.libs -lenet -L/usr/X11R6/lib -lX11 `sdl-config --libs` -lSDL_image -lSDL_mixer -lz -lGL +CLIENT_INCLUDES= $(INCLUDES) `${SDL_CONFIG} --cflags` -I${LOCALBASE}/include -+CLIENT_LIBS= -Lenet/.libs -lenet `${SDL_CONFIG} --libs` -L${LOCALBASE}/lib -lSDL_image -lSDL_mixer -lz -lGL ++CLIENT_LIBS= -Lenet/.libs -lenet `${SDL_CONFIG} --libs` -L${LOCALBASE}/lib -lX11 -lSDL_image -lSDL_mixer -lz -lGL endif ifeq ($(PLATFORM),Linux) CLIENT_LIBS+= -lrt From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:03:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06D1AAB0; Sat, 25 Jan 2014 22:03:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E3F531B22; Sat, 25 Jan 2014 22:03:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PM3J6Y030867; Sat, 25 Jan 2014 22:03:19 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PM3F5L030753; Sat, 25 Jan 2014 22:03:15 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401252203.s0PM3F5L030753@svn.freebsd.org> From: Mathieu Arnold Date: Sat, 25 Jan 2014 22:03:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341120 - in head/textproc: add-css-links aft aiksaurus aiksaurus-gtk align ansifilter ant-xinclude-task antiword apache-solr apache-solr3 archmage artha augeas X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 22:03:20 -0000 Author: mat Date: Sat Jan 25 22:03:15 2014 New Revision: 341120 URL: http://svnweb.freebsd.org/changeset/ports/341120 QAT: https://qat.redports.org/buildarchive/r341120/ Log: - Convert to staging - Add license - Convert to options helpers Sponsored by: Absolight Deleted: head/textproc/add-css-links/pkg-plist Modified: head/textproc/add-css-links/Makefile head/textproc/aft/Makefile head/textproc/aft/pkg-plist head/textproc/aiksaurus-gtk/Makefile head/textproc/aiksaurus/Makefile head/textproc/align/Makefile head/textproc/ansifilter/Makefile head/textproc/ant-xinclude-task/Makefile head/textproc/antiword/Makefile head/textproc/antiword/pkg-plist head/textproc/apache-solr/Makefile head/textproc/apache-solr3/Makefile head/textproc/apache-solr3/pkg-descr head/textproc/archmage/Makefile head/textproc/archmage/pkg-plist head/textproc/artha/Makefile head/textproc/artha/pkg-plist head/textproc/augeas/Makefile head/textproc/augeas/pkg-plist Modified: head/textproc/add-css-links/Makefile ============================================================================== --- head/textproc/add-css-links/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/add-css-links/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -11,11 +11,13 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Add one or more CSS elements to an XHTML document NO_BUILD= yes +WRKSRC= ${WRKDIR}/xhtml + +PLIST_FILES= share/xsl/xhtml/add-css-links.xsl +PLIST_DIRSTRY= share/xsl/xhtml share/xsl -NO_STAGE= yes do-install: - @${ECHO} "Installing in ${PREFIX}/share/xsl/xhtml/" - @${MKDIR} ${PREFIX}/share/xsl/xhtml - @${CP} ${WRKDIR}/xhtml/*.xsl ${PREFIX}/share/xsl/xhtml/ + @${MKDIR} ${STAGEDIR}${PREFIX}/share/xsl/xhtml + ${CP} ${WRKSRC}/*.xsl ${STAGEDIR}${PREFIX}/share/xsl/xhtml/ .include Modified: head/textproc/aft/Makefile ============================================================================== --- head/textproc/aft/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/aft/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -10,13 +10,16 @@ MASTER_SITES= http://www.maplefish.com/t MAINTAINER= culot@FreeBSD.org COMMENT= A document preparation system using an Almost Free Text input format -USES= perl5 -USE_GMAKE= yes +LICENSE= CART +LICENSE_GROUPS= FSF OSI +LICENSE_NAME= Clarified Artistic License +LICENSE_FILE= ${WRKSRC}/LICENSE.txt +LICENSE_PERMS= auto-accept + +USES= perl5 gmake GNU_CONFIGURE= yes +OPTIONS_DEFINE= DOCS -.if defined(NOPORTDOCS) -INSTALL_TARGET= install-binSCRIPTS install-pkgdataDATA install-pkgdataSCRIPTS -.endif +PORTDOCS= * -NO_STAGE= yes .include Modified: head/textproc/aft/pkg-plist ============================================================================== --- head/textproc/aft/pkg-plist Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/aft/pkg-plist Sat Jan 25 22:03:15 2014 (r341120) @@ -13,25 +13,4 @@ bin/aft %%DATADIR%%/compile.pl %%DATADIR%%/launch_ie.pl %%DATADIR%%/postrtf.pl -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.aft -%%PORTDOCS%%%%DOCSDIR%%/aft-refman.html -%%PORTDOCS%%%%DOCSDIR%%/aft.eps -%%PORTDOCS%%%%DOCSDIR%%/aft.gif -%%PORTDOCS%%%%DOCSDIR%%/aft.jpg -%%PORTDOCS%%%%DOCSDIR%%/aft2rtf-doc.rtf -%%PORTDOCS%%%%DOCSDIR%%/backends/aft-bn-html.dat -%%PORTDOCS%%%%DOCSDIR%%/backends/aft-dbarticle.dat -%%PORTDOCS%%%%DOCSDIR%%/backends/aft-html.dat -%%PORTDOCS%%%%DOCSDIR%%/backends/aft-lout.dat -%%PORTDOCS%%%%DOCSDIR%%/backends/aft-loutbook.dat -%%PORTDOCS%%%%DOCSDIR%%/backends/aft-loutreport.dat -%%PORTDOCS%%%%DOCSDIR%%/backends/aft-rtf.dat -%%PORTDOCS%%%%DOCSDIR%%/backends/aft-tex.dat -%%PORTDOCS%%%%DOCSDIR%%/backends/aft-xhtml.dat -%%PORTDOCS%%%%DOCSDIR%%/examples/aft-refman.aft -%%PORTDOCS%%%%DOCSDIR%%/examples/aft.aft -%%PORTDOCS%%%%DOCSDIR%%/examples/aft2rtf-doc.aft -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples -%%PORTDOCS%%@dirrm %%DOCSDIR%%/backends -%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm %%DATADIR%% Modified: head/textproc/aiksaurus-gtk/Makefile ============================================================================== --- head/textproc/aiksaurus-gtk/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/aiksaurus-gtk/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -14,7 +14,6 @@ PKGDIR= ${.CURDIR} USE_GNOME= gtk20 CONFIGURE_ARGS=--with-gtk -NO_STAGE= yes pre-install: @${REINPLACE_CMD} -e 's|base [$$][(]GTKSRCDIR[)] data|$$(GTKSRCDIR)|g' \ ${WRKSRC}/Makefile Modified: head/textproc/aiksaurus/Makefile ============================================================================== --- head/textproc/aiksaurus/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/aiksaurus/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -10,6 +10,8 @@ MASTER_SITES= SF MAINTAINER?= gnome@FreeBSD.org COMMENT?= A set of libraries and applications which provide a thesaurus +LICENSE= GPLv2 + USE_AUTOTOOLS= libtool USE_CSTD= gnu89 USES= pathfix gmake pkgconfig @@ -17,7 +19,6 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS?=--without-gtk -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ ${WRKSRC}/configure Modified: head/textproc/align/Makefile ============================================================================== --- head/textproc/align/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/align/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -21,10 +21,9 @@ SHEBANG_FILES= align width PLIST_FILES= bin/align bin/width -NO_STAGE= yes do-install: .for i in align width - (cd ${WRKSRC} && ${INSTALL_SCRIPT} ${i} ${PREFIX}/bin) + (cd ${WRKSRC} && ${INSTALL_SCRIPT} ${i} ${STAGEDIR}${PREFIX}/bin) .endfor .include Modified: head/textproc/ansifilter/Makefile ============================================================================== --- head/textproc/ansifilter/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/ansifilter/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -9,34 +9,26 @@ MASTER_SITES= http://www.andre-simon.de/ MAINTAINER= ports@FreeBSD.org COMMENT= Customizable ANSI Code Converter +LICENSE= GPLv3 + USE_BZIP2= yes MAKEFILE= makefile MAKE_ARGS= CC="${CXX}" \ CFLAGS="${CXXFLAGS} ${CPPFLAGS} -c" \ LDFLAGS="${LDFLAGS}" -PLIST_FILES= bin/ansifilter - -MAN1= ${PORTNAME}.1 -MANCOMPRESSED= yes +PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz -.if !defined(NOPORTDOCS) PORTDOCS= ChangeLog README -.endif - -NO_STAGE= yes -.include post-patch: @${REINPLACE_CMD} -e \ 's|^PREFIX =|PREFIX ?=|' ${WRKSRC}/${MAKEFILE} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/man/${MAN1}.gz ${MANPREFIX}/man/man1 -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1.gz ${STAGEDIR}${MANPREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} -.include +.include Modified: head/textproc/ant-xinclude-task/Makefile ============================================================================== --- head/textproc/ant-xinclude-task/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/ant-xinclude-task/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -17,27 +17,17 @@ USE_JAVA= yes JAVA_VERSION= 1.6+ USE_ANT= yes -ALL_TARGET= jar -.if !defined(NOPORTDOCS) -ALL_TARGET+= apidocs +OPTIONS_DEFINE= DOCS + +ALL_TARGET= jar apidocs PORTDOCS= * -.endif -MAKE_ENV+= CLASSPATH=${JAVAJARDIR}/xincluder.jar +MAKE_ENV= CLASSPATH=${JAVAJARDIR}/xincluder.jar -PLIST_FILES+= %%JAVAJARDIR%%/${PORTNAME}.jar +PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar -NO_STAGE= yes do-install: - @${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..." @${MKDIR} ${JAVAJARDIR} - @${INSTALL_DATA} ${WRKSRC}/build/${PORTNAME}.jar ${JAVAJARDIR}/ - @${ECHO_MSG} " [ DONE ]" - -.if !defined(NOPORTDOCS) - @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..." - @cd ${WRKSRC}/build/apidocs && ${FIND} . -type d -exec ${MKDIR} ${DOCSDIR}/{} ";" - @cd ${WRKSRC}/build/apidocs && ${FIND} . -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} ";" - @${ECHO_MSG} " [ DONE ]" -.endif + ${INSTALL_DATA} ${WRKSRC}/build/${PORTNAME}.jar ${STAGEDIR}${JAVAJARDIR}/ + cd ${WRKSRC}/build/apidocs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .include Modified: head/textproc/antiword/Makefile ============================================================================== --- head/textproc/antiword/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/antiword/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -10,19 +10,17 @@ MASTER_SITES= http://www.winfield.demon. MAINTAINER= leeym@FreeBSD.org COMMENT= An application to display Microsoft(tm) Word files -USE_GMAKE= yes +LICENSE= GPLv2 + +USES= gmake MAKE_JOBS_UNSAFE=yes INSTALL_TARGET= global_install -MAN1= antiword.1 PORTDOCS= COPYING ChangeLog Emacs Exmh FAQ History Mozilla Mutt Netscape \ QandA ReadMe antiword.1 antiword.man antiword.php testdoc.doc CFLAGS+= -DNDEBUG -NO_STAGE= yes -.include - post-patch: @${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} \ -e 's,/usr/local,${PREFIX},g' \ @@ -32,10 +30,8 @@ post-patch: @${REINPLACE_CMD} -e 's,/usr/bin/perl,${PERL},' ${WRKSRC}/Unix-only/fontinfo.pl post-install: - @${INSTALL_MAN} ${WRKSRC}/Docs/antiword.1 ${MANPREFIX}/man/man1 -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @cd ${WRKSRC}/Docs && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} -.endif + ${INSTALL_MAN} ${WRKSRC}/Docs/antiword.1 ${STAGEDIR}${MANPREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/Docs && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include Modified: head/textproc/antiword/pkg-plist ============================================================================== --- head/textproc/antiword/pkg-plist Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/antiword/pkg-plist Sat Jan 25 22:03:15 2014 (r341120) @@ -1,5 +1,6 @@ bin/antiword bin/kantiword +man/man1/antiword.1.gz %%DATADIR%%/8859-1.txt %%DATADIR%%/8859-10.txt %%DATADIR%%/8859-11.txt Modified: head/textproc/apache-solr/Makefile ============================================================================== --- head/textproc/apache-solr/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/apache-solr/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -16,6 +16,8 @@ LICENSE= APACHE20 CONFLICT= apache-solr-3.6.* +USES= shebangfix +SHEBANG_FILES= example/etc/create-solrtest.keystore.sh JAVA_VERSION= 1.6+ NO_BUILD= yes PLIST_SUB+= PORTVERSION="${PORTVERSION}" @@ -23,14 +25,9 @@ USE_JAVA= yes PORTEXAMPLES= * LATEST_LINK= apache-solr -NO_STAGE= yes -.include - do-install: - cd ${WRKSRC}/dist && ${COPYTREE_SHARE} \* ${JAVAJARDIR} -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC}/example && ${COPYTREE_SHARE} \* ${EXAMPLESDIR} -.endif + cd ${WRKSRC}/dist && ${COPYTREE_SHARE} . ${STAGEDIR}${JAVAJARDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/example && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/textproc/apache-solr3/Makefile ============================================================================== --- head/textproc/apache-solr3/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/apache-solr3/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -6,8 +6,8 @@ PORTVERSION= 3.6.2 CATEGORIES= textproc java MASTER_SITES= APACHE MASTER_SITE_SUBDIR= lucene/solr/${PORTVERSION}/ -EXTRACT_SUFX= .tgz PKGNAMESUFFIX= 3 +EXTRACT_SUFX= .tgz MAINTAINER= gaod@hychen.org COMMENT= High performance search server built using Lucene Java @@ -22,12 +22,9 @@ PLIST_SUB+= PORTVERSION="${PORTVERSION}" USE_JAVA= yes PORTEXAMPLES= * -NO_STAGE= yes do-install: - cd ${WRKSRC}/dist && ${COPYTREE_SHARE} \* ${JAVAJARDIR} -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC}/example && ${COPYTREE_SHARE} \* ${EXAMPLESDIR} -.endif + cd ${WRKSRC}/dist && ${COPYTREE_SHARE} . ${STAGEDIR}${JAVAJARDIR} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/example && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/textproc/apache-solr3/pkg-descr ============================================================================== --- head/textproc/apache-solr3/pkg-descr Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/apache-solr3/pkg-descr Sat Jan 25 22:03:15 2014 (r341120) @@ -4,4 +4,4 @@ faceted search, caching, replication, a and many more features. It runs in a Java servlet container such as Tomcat. -WWW: http://lucene.apache.org/solr/ +WWW: http://lucene.apache.org/solr/ Modified: head/textproc/archmage/Makefile ============================================================================== --- head/textproc/archmage/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/archmage/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -10,6 +10,8 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Extensible reader/decompiler of files in CHM format +LICENSE= GPLv2 + RUN_DEPENDS= ${PYTHON_SITELIBDIR}/chm/chm.py:${PORTSDIR}/textproc/pychm \ ${PYTHON_SITELIBDIR}/BeautifulSoup.py:${PORTSDIR}/www/py-beautifulsoup32 @@ -17,9 +19,7 @@ NO_BUILD= yes USE_BZIP2= yes USE_PYTHON= yes USE_PYDISTUTILS= yes -MAN1= ${PORTNAME}.1 -NO_STAGE= yes post-extract: @${GUNZIP_CMD} ${WRKSRC}/${PORTNAME}.1.gz @@ -29,6 +29,6 @@ post-patch: @${REINPLACE_CMD} -e "s,/etc,etc,;/archmage.1/d" ${WRKSRC}/setup.py post-install: - @${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MAN1PREFIX}/man/man1/ + @${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/ .include Modified: head/textproc/archmage/pkg-plist ============================================================================== --- head/textproc/archmage/pkg-plist Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/archmage/pkg-plist Sat Jan 25 22:03:15 2014 (r341120) @@ -1,5 +1,6 @@ bin/archmage etc/archmage/arch.conf +man/man1/archmage.1.gz %%PYTHON_SITELIBDIR%%/archmod/CHM.py %%PYTHON_SITELIBDIR%%/archmod/CHM.pyc %%PYTHON_SITELIBDIR%%/archmod/CHM.pyo Modified: head/textproc/artha/Makefile ============================================================================== --- head/textproc/artha/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/artha/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -11,10 +11,8 @@ COMMENT= A free cross-platform English t LICENSE= GPLv2 -LIB_DEPENDS= dbus-glib:${PORTSDIR}/devel/dbus-glib \ - WN:${PORTSDIR}/textproc/wordnet - -MAN1= artha.1 +LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ + libWN.so:${PORTSDIR}/textproc/wordnet USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes @@ -29,11 +27,6 @@ CPPFLAGS+= -I${LOCALBASE}/include -I${LO OPTIONS_DEFINE= NOTIFY NOTIFY_DESC= Popup word definition as notification -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MNOTIFY} -LIB_DEPENDS+= notify:${PORTSDIR}/devel/libnotify -.endif +NOTIFY_LIB_DEPENDS= libnotify.so:${PORTSDIR}/devel/libnotify .include Modified: head/textproc/artha/pkg-plist ============================================================================== --- head/textproc/artha/pkg-plist Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/artha/pkg-plist Sat Jan 25 22:03:15 2014 (r341120) @@ -1,4 +1,5 @@ bin/artha +man/man1/artha.1.gz share/applications/artha.desktop share/pixmaps/artha.png %%DATADIR%%/gui.glade Modified: head/textproc/augeas/Makefile ============================================================================== --- head/textproc/augeas/Makefile Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/augeas/Makefile Sat Jan 25 22:03:15 2014 (r341120) @@ -9,6 +9,8 @@ MASTER_SITES= http://download.augeas.net MAINTAINER= swills@FreeBSD.org COMMENT= A configuration editing tool +LICENSE= LGPL21 + TEST_DEPENDS= bash:${PORTSDIR}/shells/bash \ gsed:${PORTSDIR}/textproc/gsed @@ -19,12 +21,8 @@ ACLOCAL_ARGS= -I . -I gnulib/m4 -I ${LOC AUTOMAKE_ARGS= --add-missing USE_LDCONFIG= yes -MAN1= augparse.1 augtool.1 -MANCOMPRESSED= no - LENSESDIR= ${PREFIX}/share/augeas/lenses -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's:$$(libdir)/pkgconfig:${PREFIX}/libdata/pkgconfig:' ${WRKSRC}/Makefile.am @${REINPLACE_CMD} -e 's:/bin/bash:/usr/bin/env bash:' ${WRKSRC}/tests/*.sh Modified: head/textproc/augeas/pkg-plist ============================================================================== --- head/textproc/augeas/pkg-plist Sat Jan 25 22:02:50 2014 (r341119) +++ head/textproc/augeas/pkg-plist Sat Jan 25 22:03:15 2014 (r341120) @@ -12,6 +12,8 @@ lib/libfa.la lib/libfa.so lib/libfa.so.5 libdata/pkgconfig/augeas.pc +man/man1/augparse.1.gz +man/man1/augtool.1.gz %%DATADIR%%/lenses/dist/access.aug %%DATADIR%%/lenses/dist/activemq_conf.aug %%DATADIR%%/lenses/dist/activemq_xml.aug From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:05:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 623C3CD7; Sat, 25 Jan 2014 22:05:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4CF1C1B38; Sat, 25 Jan 2014 22:05:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PM5Qer033467; Sat, 25 Jan 2014 22:05:26 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PM5Qr2033466; Sat, 25 Jan 2014 22:05:26 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252205.s0PM5Qr2033466@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 22:05:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341122 - head/x11-servers/xorg-vfbserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 22:05:26 -0000 Author: bapt Date: Sat Jan 25 22:05:25 2014 New Revision: 341122 URL: http://svnweb.freebsd.org/changeset/ports/341122 QAT: https://qat.redports.org/buildarchive/r341122/ Log: Fix packaging on FreeBSD 11 when WITH_NEW_XORG is defined by bsd.port.mk Modified: head/x11-servers/xorg-vfbserver/Makefile Modified: head/x11-servers/xorg-vfbserver/Makefile ============================================================================== --- head/x11-servers/xorg-vfbserver/Makefile Sat Jan 25 22:04:30 2014 (r341121) +++ head/x11-servers/xorg-vfbserver/Makefile Sat Jan 25 22:05:25 2014 (r341122) @@ -24,10 +24,10 @@ PLIST_FILES= bin/Xvfb man/man1/Xvfb.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/hw/vfb/Xvfb ${STAGEDIR}${PREFIX}/bin/ -.if defined(WITH_NEW_XORG) - ${INSTALL_MAN} ${WRKSRC}/hw/vfb/man/Xvfb.1 ${STAGEDIR}${PREFIX}/man/man1/ -.else - ${INSTALL_MAN} ${WRKSRC}/hw/vfb/Xvfb.1 ${STAGEDIR}${PREFIX}/man/man1/ -.endif + if [ -f ${WRKSRC}/hw/vfb/man/Xvfb.1 ] ; then \ + ${INSTALL_MAN} ${WRKSRC}/hw/vfb/man/Xvfb.1 ${STAGEDIR}${PREFIX}/man/man1/ ; \ + else \ + ${INSTALL_MAN} ${WRKSRC}/hw/vfb/Xvfb.1 ${STAGEDIR}${PREFIX}/man/man1/ ; \ + fi .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:09:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 360CBF08; Sat, 25 Jan 2014 22:09:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 21F5B1B76; Sat, 25 Jan 2014 22:09:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PM9bN3037499; Sat, 25 Jan 2014 22:09:37 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PM9bQc037498; Sat, 25 Jan 2014 22:09:37 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252209.s0PM9bQc037498@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 22:09:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341123 - 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.17 Precedence: list List-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, 25 Jan 2014 22:09:38 -0000 Author: bapt Date: Sat Jan 25 22:09:37 2014 New Revision: 341123 URL: http://svnweb.freebsd.org/changeset/ports/341123 QAT: https://qat.redports.org/buildarchive/r341123/ Log: Support stage Modified: head/net-mgmt/check_logfiles/Makefile Modified: head/net-mgmt/check_logfiles/Makefile ============================================================================== --- head/net-mgmt/check_logfiles/Makefile Sat Jan 25 22:05:25 2014 (r341122) +++ head/net-mgmt/check_logfiles/Makefile Sat Jan 25 22:09:37 2014 (r341123) @@ -8,10 +8,9 @@ MASTER_SITES= http://labs.consol.de/wp-c MAINTAINER= flo@FreeBSD.org COMMENT= Nagios plugin which scans log files for specific patterns +USES= gmake GNU_CONFIGURE= yes -USE_GMAKE= yes CONFIGURE_ARGS+= --with-trusted-path=/bin:/sbin:/usr/bin:/usr/sbin:${LOCALBASE}/bin:${LOCALBASE}/sbin \ --libexecdir=${PREFIX}/libexec/nagios \ -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:10:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 810D210A; Sat, 25 Jan 2014 22:10:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 615DF1CDB; Sat, 25 Jan 2014 22:10:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PMAvCf040782; Sat, 25 Jan 2014 22:10:57 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PMAuXZ040779; Sat, 25 Jan 2014 22:10:56 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401252210.s0PMAuXZ040779@svn.freebsd.org> From: Steve Wills Date: Sat, 25 Jan 2014 22:10:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341124 - in head: Mk lang/ruby19/files lang/ruby20/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.17 Precedence: list List-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, 25 Jan 2014 22:10:57 -0000 Author: swills Date: Sat Jan 25 22:10:56 2014 New Revision: 341124 URL: http://svnweb.freebsd.org/changeset/ports/341124 QAT: https://qat.redports.org/buildarchive/r341124/ Log: - Add patch to increase stack size to avoid crash on ppc64 - Bump PORTREVISION due to binary and package change Submitted by: jhibbits (via private email) Added: head/lang/ruby19/files/patch-thread_pthread.c (contents, props changed) head/lang/ruby20/files/patch-thread_pthread.c (contents, props changed) Modified: head/Mk/bsd.ruby.mk Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Sat Jan 25 22:09:37 2014 (r341123) +++ head/Mk/bsd.ruby.mk Sat Jan 25 22:10:56 2014 (r341124) @@ -177,7 +177,7 @@ RUBY?= ${LOCALBASE}/bin/${RUBY_NAME} # Ruby 1.9 # RUBY_RELVERSION= 1.9.3 -RUBY_PORTREVISION= 0 +RUBY_PORTREVISION= 1 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 484 @@ -204,7 +204,7 @@ RUBY20= "@comment " # Ruby 2.0 # RUBY_RELVERSION= 2.0.0 -RUBY_PORTREVISION= 3 +RUBY_PORTREVISION= 4 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 353 Added: head/lang/ruby19/files/patch-thread_pthread.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ruby19/files/patch-thread_pthread.c Sat Jan 25 22:10:56 2014 (r341124) @@ -0,0 +1,19 @@ +--- thread_pthread.c.orig 2013-03-28 10:10:00.000000000 +0000 ++++ thread_pthread.c 2014-01-25 02:59:12.085473158 +0000 +@@ -1193,13 +1193,13 @@ + + pthread_attr_init(&attr); + #ifdef PTHREAD_STACK_MIN +- if (PTHREAD_STACK_MIN < 4096 * 3) { ++ if (PTHREAD_STACK_MIN < 4096 * 4) { + /* Allocate the machine stack for the timer thread +- * at least 12KB (3 pages). FreeBSD 8.2 AMD64 causes ++ * at least 16KB (4 pages). FreeBSD 8.2 AMD64 causes + * machine stack overflow only with PTHREAD_STACK_MIN. + */ + pthread_attr_setstacksize(&attr, +- 4096 * 3 + (THREAD_DEBUG ? BUFSIZ : 0)); ++ 4096 * 4 + (THREAD_DEBUG ? BUFSIZ : 0)); + } + else { + pthread_attr_setstacksize(&attr, Added: head/lang/ruby20/files/patch-thread_pthread.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/ruby20/files/patch-thread_pthread.c Sat Jan 25 22:10:56 2014 (r341124) @@ -0,0 +1,19 @@ +--- thread_pthread.c.orig 2013-05-01 15:40:57.000000000 +0000 ++++ thread_pthread.c 2014-01-25 03:00:55.044466722 +0000 +@@ -1420,13 +1420,13 @@ + exit(EXIT_FAILURE); + } + # ifdef PTHREAD_STACK_MIN +- if (PTHREAD_STACK_MIN < 4096 * 3) { ++ if (PTHREAD_STACK_MIN < 4096 * 4) { + /* Allocate the machine stack for the timer thread +- * at least 12KB (3 pages). FreeBSD 8.2 AMD64 causes ++ * at least 16KB (4 pages). FreeBSD 8.2 AMD64 causes + * machine stack overflow only with PTHREAD_STACK_MIN. + */ + pthread_attr_setstacksize(&attr, +- 4096 * 3 + (THREAD_DEBUG ? BUFSIZ : 0)); ++ 4096 * 4 + (THREAD_DEBUG ? BUFSIZ : 0)); + } + else { + pthread_attr_setstacksize(&attr, From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:11:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98E5F1E5; Sat, 25 Jan 2014 22:11:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 85FF71CE4; Sat, 25 Jan 2014 22:11:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PMBJ8u041031; Sat, 25 Jan 2014 22:11:19 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PMBJPM041030; Sat, 25 Jan 2014 22:11:19 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252211.s0PMBJPM041030@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 22:11:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341125 - head/net-mgmt/scdp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 22:11:19 -0000 Author: bapt Date: Sat Jan 25 22:11:18 2014 New Revision: 341125 URL: http://svnweb.freebsd.org/changeset/ports/341125 QAT: https://qat.redports.org/buildarchive/r341125/ Log: Remove license file for well know license Convert USE_GMAKE -> USES=gmake Modified: head/net-mgmt/scdp/Makefile Modified: head/net-mgmt/scdp/Makefile ============================================================================== --- head/net-mgmt/scdp/Makefile Sat Jan 25 22:10:56 2014 (r341124) +++ head/net-mgmt/scdp/Makefile Sat Jan 25 22:11:18 2014 (r341125) @@ -14,9 +14,8 @@ COMMENT= Tool that sends CDP (CISCO Disc BUILD_DEPENDS= ${LIBNET_CONFIG}:${PORTSDIR}/net/libnet10 LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING -USE_GMAKE= yes +USES= gmake GNU_CONFIGURE= yes CONFIGURE_ENV= libnet_config="${LIBNET_CONFIG}" CFLAGS+= `${LIBNET_CONFIG} --cflags` From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:17:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8B5CA300; Sat, 25 Jan 2014 22:17:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 76D731D09; Sat, 25 Jan 2014 22:17:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PMH4Jh047677; Sat, 25 Jan 2014 22:17:04 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PMH4Fv047675; Sat, 25 Jan 2014 22:17:04 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252217.s0PMH4Fv047675@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 22:17:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341126 - head/net-mgmt/slate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 22:17:04 -0000 Author: bapt Date: Sat Jan 25 22:17:03 2014 New Revision: 341126 URL: http://svnweb.freebsd.org/changeset/ports/341126 QAT: https://qat.redports.org/buildarchive/r341126/ Log: Support stage USE_GMAKE -> USES=gmake Modified: head/net-mgmt/slate/Makefile Modified: head/net-mgmt/slate/Makefile ============================================================================== --- head/net-mgmt/slate/Makefile Sat Jan 25 22:11:18 2014 (r341125) +++ head/net-mgmt/slate/Makefile Sat Jan 25 22:17:03 2014 (r341126) @@ -11,8 +11,7 @@ COMMENT= Simple traffic analysis and dat PLIST_FILES= bin/sfas +USES= gmake GNU_CONFIGURE= yes -USE_GMAKE= yes -NO_STAGE= yes .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:18:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 992763ED; Sat, 25 Jan 2014 22:18:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 84DB71D16; Sat, 25 Jan 2014 22:18:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PMIlnh048135; Sat, 25 Jan 2014 22:18:47 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PMIlnW048134; Sat, 25 Jan 2014 22:18:47 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252218.s0PMIlnW048134@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 22:18:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341127 - head/net-mgmt/sjitter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 22:18:47 -0000 Author: bapt Date: Sat Jan 25 22:18:46 2014 New Revision: 341127 URL: http://svnweb.freebsd.org/changeset/ports/341127 QAT: https://qat.redports.org/buildarchive/r341127/ Log: Support stage USE_GMAKE -> USES=gmake Modified: head/net-mgmt/sjitter/Makefile Modified: head/net-mgmt/sjitter/Makefile ============================================================================== --- head/net-mgmt/sjitter/Makefile Sat Jan 25 22:17:03 2014 (r341126) +++ head/net-mgmt/sjitter/Makefile Sat Jan 25 22:18:46 2014 (r341127) @@ -8,17 +8,16 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME} EXTRACT_SUFX= .tgz MAINTAINER= dikshie@sfc.wide.ad.jp -COMMENT= A client/server jitter measurement utility +COMMENT= Client/server jitter measurement utility WRKSRC= ${WRKDIR}/${PORTNAME} GNU_CONFIGURE= yes -USE_GMAKE= yes +USES= gmake PLIST_FILES= sbin/sjitters sbin/sjitterc -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/sjitters ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/sjitterc ${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/sjitters ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/sjitterc ${STAGEDIR}${PREFIX}/sbin .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:22:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BB49C56A; Sat, 25 Jan 2014 22:22:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A609F1D92; Sat, 25 Jan 2014 22:22:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PMMtC0051781; Sat, 25 Jan 2014 22:22:55 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PMMteg051777; Sat, 25 Jan 2014 22:22:55 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201401252222.s0PMMteg051777@svn.freebsd.org> From: Johan van Selst Date: Sat, 25 Jan 2014 22:22:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341128 - head/graphics/xpaint/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.17 Precedence: list List-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, 25 Jan 2014 22:22:55 -0000 Author: johans Date: Sat Jan 25 22:22:54 2014 New Revision: 341128 URL: http://svnweb.freebsd.org/changeset/ports/341128 QAT: https://qat.redports.org/buildarchive/r341128/ Log: Fix build issue when MAKE_JOBS_UNSAFE is set Modified: head/graphics/xpaint/files/patch-Makefile.in Modified: head/graphics/xpaint/files/patch-Makefile.in ============================================================================== --- head/graphics/xpaint/files/patch-Makefile.in Sat Jan 25 22:18:46 2014 (r341127) +++ head/graphics/xpaint/files/patch-Makefile.in Sat Jan 25 22:22:54 2014 (r341128) @@ -1,5 +1,5 @@ --- Makefile.in.orig 2013-01-26 15:21:12.000000000 +0100 -+++ Makefile.in 2013-09-16 13:34:14.000000000 +0200 ++++ Makefile.in 2014-01-25 23:16:07.000000000 +0100 @@ -283,7 +283,7 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ BINDIR = $(prefix)/bin @@ -27,22 +27,23 @@ DefaultRC.txt.h: substads DefaultRC ./substads -ad2c DefaultRC $@ -@@ -1020,8 +1020,7 @@ DefaultRC.txt.h: substads DefaultRC +@@ -1020,21 +1020,20 @@ DefaultRC.txt.h: substads DefaultRC messages.h: preproc ./preproc > messages.h -XPaint.ad: app-defaults - $(CC) substads.c -o substads +- cd app-defaults ; \ +XPaint.ad: substads app-defaults - cd app-defaults ; \ ++ (cd app-defaults ; \ ../substads -appdefs \ XPAINT_VERSION $(PACKAGE_VERSION) \ -@@ -1029,12 +1028,12 @@ XPaint.ad: app-defaults + XPAINT_SHAREDIR $(SHAREDIR) \ XPAINT_PRINT_COMMAND "$(PRINT_COMMAND)" \ XPAINT_POSTSCRIPT_VIEWER "$(POSTSCRIPT_VIEWER)" \ - XPAINT_EXTERN_VIEWER "$(EXTERN_VIEWER)" -- cp -p app-defaults/out/XPaint XPaint.ad -+ cp -p out/XPaint ../XPaint.ad +- XPAINT_EXTERN_VIEWER "$(EXTERN_VIEWER)" ++ XPAINT_EXTERN_VIEWER "$(EXTERN_VIEWER)") + cp -p app-defaults/out/XPaint XPaint.ad XPaint.ad.h: substads XPaint.ad ./substads -ad2c XPaint.ad $@ From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:30:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E652471F; Sat, 25 Jan 2014 22:30:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D20911DC0; Sat, 25 Jan 2014 22:30:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PMU9FC054128; Sat, 25 Jan 2014 22:30:09 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PMU9Pp054126; Sat, 25 Jan 2014 22:30:09 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201401252230.s0PMU9Pp054126@svn.freebsd.org> From: Antoine Brodin Date: Sat, 25 Jan 2014 22:30:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341129 - head/comms/trustedqsl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 22:30:10 -0000 Author: antoine Date: Sat Jan 25 22:30:09 2014 New Revision: 341129 URL: http://svnweb.freebsd.org/changeset/ports/341129 QAT: https://qat.redports.org/buildarchive/r341129/ Log: Finish stage support Modified: head/comms/trustedqsl/Makefile head/comms/trustedqsl/pkg-plist Modified: head/comms/trustedqsl/Makefile ============================================================================== --- head/comms/trustedqsl/Makefile Sat Jan 25 22:22:54 2014 (r341128) +++ head/comms/trustedqsl/Makefile Sat Jan 25 22:30:09 2014 (r341129) @@ -2,6 +2,7 @@ PORTNAME= trustedqsl PORTVERSION= 2.0 +PORTREVISION= 1 CATEGORIES= comms hamradio MASTER_SITES= SF/${PORTNAME}/TrustedQSL/v${PORTVERSION}/ DISTNAME= tqsl-${PORTVERSION} Modified: head/comms/trustedqsl/pkg-plist ============================================================================== --- head/comms/trustedqsl/pkg-plist Sat Jan 25 22:22:54 2014 (r341128) +++ head/comms/trustedqsl/pkg-plist Sat Jan 25 22:30:09 2014 (r341129) @@ -5,6 +5,7 @@ include/tqslconvert.h include/tqslerrno.h include/tqsllib.h lib/libtqsllib.so +man/man5/tqsl.5.gz share/TrustedQSL/config.xml share/TrustedQSL/help/tqslapp/P12.bmp share/TrustedQSL/help/tqslapp/Pending.bmp From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:40:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4FCD921; Sat, 25 Jan 2014 22:40:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A0E2A1E46; Sat, 25 Jan 2014 22:40:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PMe6x8058222; Sat, 25 Jan 2014 22:40:06 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PMe6cY058221; Sat, 25 Jan 2014 22:40:06 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252240.s0PMe6cY058221@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 22:40:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341131 - head/www/yuicompressor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 22:40:06 -0000 Author: bapt Date: Sat Jan 25 22:40:05 2014 New Revision: 341131 URL: http://svnweb.freebsd.org/changeset/ports/341131 QAT: https://qat.redports.org/buildarchive/r341131/ Log: Remove non existing PORTDOCS Support stage Modified: head/www/yuicompressor/Makefile Modified: head/www/yuicompressor/Makefile ============================================================================== --- head/www/yuicompressor/Makefile Sat Jan 25 22:31:45 2014 (r341130) +++ head/www/yuicompressor/Makefile Sat Jan 25 22:40:05 2014 (r341131) @@ -3,6 +3,7 @@ PORTNAME= yuicompressor PORTVERSION= 2.4.8 +PORTREVISION= 1 CATEGORIES= www java #MASTER_SITES= http://tml.github.io/yui/ MASTER_SITES+= ${MASTER_SITE_LOCAL} @@ -24,14 +25,9 @@ PLIST_FILES= bin/yuicompressor %%JAVAJAR PLIST_DIRS= %%JAVAJARDIR%% SUB_FILES= yuicompressor -PORTDOCS= README - -NO_STAGE= yes -.include - do-install: - @${MKDIR} ${JAVAJARDIR} - ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${JAVAJARDIR}/yuicompressor.jar - ${INSTALL_SCRIPT} ${WRKDIR}/yuicompressor ${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${JAVAJARDIR} + ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${STAGEDIR}${JAVAJARDIR}/yuicompressor.jar + ${INSTALL_SCRIPT} ${WRKDIR}/yuicompressor ${STAGEDIR}${PREFIX}/bin -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:41:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8EC62A5C; Sat, 25 Jan 2014 22:41:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 796841EB0; Sat, 25 Jan 2014 22:41:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PMfhjU061006; Sat, 25 Jan 2014 22:41:43 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PMfguV061002; Sat, 25 Jan 2014 22:41:42 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201401252241.s0PMfguV061002@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sat, 25 Jan 2014 22:41:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341132 - in head/multimedia/k9copy-kde4: . 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.17 Precedence: list List-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, 25 Jan 2014 22:41:43 -0000 Author: rakuco Date: Sat Jan 25 22:41:42 2014 New Revision: 341132 URL: http://svnweb.freebsd.org/changeset/ports/341132 QAT: https://qat.redports.org/buildarchive/r341132/ Log: - Fix the build with clang and 10+'s ld(1). On the clang side, there's a non-void function missing a return statement and some wrong QString-to-char* casts that had to be fixed. On the linker side, r253839 made our ld stricter, so we had to add some shared libraries that we use since they are not being pulled in indirectly anymore. Based on a patch by Jan Henrik Sylvester [1]. - Set LICENSE - Support staging. - Remove LATEST_LINK, it is deprecated. - Use the new OPTIONS helpers for conditional RUN_DEPENDS. PR: ports/185032 [1] Submitted by: Jan Henrik Sylvester [1] Approved by: maintainer timeout (37 days) MFH: 2014Q1 Added: head/multimedia/k9copy-kde4/files/patch-src_mpeg2_kdecmpeg2.cpp (contents, props changed) Modified: head/multimedia/k9copy-kde4/Makefile head/multimedia/k9copy-kde4/files/patch-CMakeLists.txt head/multimedia/k9copy-kde4/files/patch-src-xine-k9xineplayer.cpp Modified: head/multimedia/k9copy-kde4/Makefile ============================================================================== --- head/multimedia/k9copy-kde4/Makefile Sat Jan 25 22:40:05 2014 (r341131) +++ head/multimedia/k9copy-kde4/Makefile Sat Jan 25 22:41:42 2014 (r341132) @@ -11,6 +11,8 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-Sou MAINTAINER= egoliveira@gmail.com COMMENT= DVD-9 to DVD-5 shrinking application for KDE +LICENSE= GPLv2 + LIB_DEPENDS= libxine.so:${PORTSDIR}/multimedia/libxine \ libmpeg2.so:${PORTSDIR}/multimedia/libmpeg2 \ libavcodec0.so:${PORTSDIR}/multimedia/ffmpeg0 @@ -19,8 +21,6 @@ USES= cmake gettext USE_KDE4= kdeprefix kdelibs automoc4 USE_QT4= moc_build qmake_build rcc_build uic_build -LATEST_LINK= ${PORTNAME}-kde4 - CFLAGS= -I${LOCALBASE}/include/ffmpeg0 CPPFLAGS= -I${LOCALBASE}/include/ffmpeg0 CXXFLAGS= -I${LOCALBASE}/include/ffmpeg0 @@ -30,20 +30,9 @@ MENCODER_DESC= MEncoder support MPLAYER_DESC= MPlayer support DVDAUTHOR_DESC= DVD Author support -NO_STAGE= yes -.include - -.if ${PORT_OPTIONS:MMENCODER} -RUN_DEPENDS+= mencoder:${PORTSDIR}/multimedia/mencoder -.endif - -.if ${PORT_OPTIONS:MMPLAYER} -RUN_DEPENDS+= mplayer:${PORTSDIR}/multimedia/mplayer -.endif - -.if ${PORT_OPTIONS:MDVDAUTHOR} -RUN_DEPENDS+= dvdauthor:${PORTSDIR}/multimedia/dvdauthor -.endif +MENCODER_RUN_DEPENDS= mencoder:${PORTSDIR}/multimedia/mencoder +MPLAYER_RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer +DVDAUTHOR_RUN_DEPENDS= dvdauthor:${PORTSDIR}/multimedia/dvdauthor post-patch: @${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' ${WRKSRC}/cmake/*.cmake Modified: head/multimedia/k9copy-kde4/files/patch-CMakeLists.txt ============================================================================== --- head/multimedia/k9copy-kde4/files/patch-CMakeLists.txt Sat Jan 25 22:40:05 2014 (r341131) +++ head/multimedia/k9copy-kde4/files/patch-CMakeLists.txt Sat Jan 25 22:41:42 2014 (r341132) @@ -29,10 +29,10 @@ kde4_add_executable(k9xineplayer ${k9xineplayer_SRCS}) -target_link_libraries(k9copy k9copylib ${KDE4_KDEUI_LIBS} ${KDE4_KDE3SUPPORT_LIBS} -lphonon ) -+target_link_libraries(k9copy k9copylib ${KDE4_KDEUI_LIBS} ${KDE4_KDE3SUPPORT_LIBS} ${PHONON_LIBRARY} ) ++target_link_libraries(k9copy k9copylib ${KDE4_KDEUI_LIBS} ${KDE4_KDE3SUPPORT_LIBS} ${KDE4_SOLID_LIBS} ${PHONON_LIBRARY} ) target_link_libraries(k9play k9copylib ${KDE4_KDEUI_LIBS} ${KDE4_KDE3SUPPORT_LIBS} ) -target_link_libraries(k9xineplayer ${KDE4_KDEUI_LIBS} ${KDE4_KDE3SUPPORT_LIBS} -lxine ) -+target_link_libraries(k9xineplayer ${KDE4_KDEUI_LIBS} ${KDE4_KDE3SUPPORT_LIBS} ${XINE_LIBRARY} ) ++target_link_libraries(k9xineplayer ${KDE4_KDEUI_LIBS} ${KDE4_KDE3SUPPORT_LIBS} ${XINE_LIBRARY} ${X11_LIBRARIES} ) install(TARGETS k9copy DESTINATION ${BIN_INSTALL_DIR} ) Modified: head/multimedia/k9copy-kde4/files/patch-src-xine-k9xineplayer.cpp ============================================================================== --- head/multimedia/k9copy-kde4/files/patch-src-xine-k9xineplayer.cpp Sat Jan 25 22:40:05 2014 (r341131) +++ head/multimedia/k9copy-kde4/files/patch-src-xine-k9xineplayer.cpp Sat Jan 25 22:41:42 2014 (r341132) @@ -1,6 +1,15 @@ ---- src/xine/k9xineplayer.cpp.orig -+++ src/xine/k9xineplayer.cpp -@@ -260,8 +260,10 @@ void k9xinePlayer::init(WId _wid) { +--- src/xine/k9xineplayer.cpp.orig 2009-12-06 10:13:37.000000000 +0000 ++++ src/xine/k9xineplayer.cpp 2013-12-06 15:34:35.000000000 +0000 +@@ -251,7 +251,7 @@ + + if ((vo_port = xine_open_video_driver(xine, + m_vo.toAscii(), XINE_VISUAL_TYPE_X11, (void *) &vis)) == NULL) { +- printf("I'm unable to initialize '%s' video driver. Giving up.\n", m_vo.toAscii()); ++ printf("I'm unable to initialize '%s' video driver. Giving up.\n", m_vo.toAscii().constData()); + return ; + } + +@@ -260,8 +260,10 @@ event_queue = xine_event_new_queue(stream); xine_event_create_listener_thread(event_queue, event_listener, this); @@ -13,7 +22,16 @@ m_execute=true; } -@@ -284,7 +286,8 @@ void k9xinePlayer::quit() { +@@ -270,7 +272,7 @@ + running=false; + m_title=""; + if ((!xine_open(stream, m_mrl.toUtf8())) || (!xine_play(stream, 0, 0))) { +- printf("Unable to open mrl '%s'\n", m_mrl.toUtf8()); ++ printf("Unable to open mrl '%s'\n", m_mrl.toUtf8().constData()); + return ; + } + QTimer::singleShot (500, this, SLOT (updatePosition ())); +@@ -284,7 +286,8 @@ void k9xinePlayer::update() { if (stream && !running ) { if (m_mutex.tryLock()) { Added: head/multimedia/k9copy-kde4/files/patch-src_mpeg2_kdecmpeg2.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/k9copy-kde4/files/patch-src_mpeg2_kdecmpeg2.cpp Sat Jan 25 22:41:42 2014 (r341132) @@ -0,0 +1,10 @@ +--- src/mpeg2/kdecmpeg2.cpp.orig 2009-12-06 10:13:36.000000000 +0000 ++++ src/mpeg2/kdecmpeg2.cpp 2013-12-06 15:00:15.000000000 +0000 +@@ -286,6 +286,7 @@ + } + } + } ++ return 0; + } + + void kDecMPEG2::sync() { From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 22:58:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32871EF8; Sat, 25 Jan 2014 22:58:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1C0591F7C; Sat, 25 Jan 2014 22:58:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PMwB8M065976; Sat, 25 Jan 2014 22:58:12 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PMwBC3065973; Sat, 25 Jan 2014 22:58:11 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201401252258.s0PMwBC3065973@svn.freebsd.org> From: Steve Wills Date: Sat, 25 Jan 2014 22:58:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341133 - in head/x11/xpra: . 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.17 Precedence: list List-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, 25 Jan 2014 22:58:12 -0000 Author: swills Date: Sat Jan 25 22:58:11 2014 New Revision: 341133 URL: http://svnweb.freebsd.org/changeset/ports/341133 QAT: https://qat.redports.org/buildarchive/r341133/ Log: - Update to 0.11.1 Deleted: head/x11/xpra/files/patch-xpra__scripts__server.py Modified: head/x11/xpra/Makefile head/x11/xpra/distinfo head/x11/xpra/pkg-plist Modified: head/x11/xpra/Makefile ============================================================================== --- head/x11/xpra/Makefile Sat Jan 25 22:41:42 2014 (r341132) +++ head/x11/xpra/Makefile Sat Jan 25 22:58:11 2014 (r341133) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= xpra -PORTVERSION= 0.10.10 -PORTREVISION= 1 +PORTVERSION= 0.11.1 CATEGORIES= x11 MASTER_SITES= http://xpra.org/src/ @@ -20,7 +19,8 @@ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2. Xvfb:${PORTSDIR}/x11-servers/xorg-vfbserver \ xauth:${PORTSDIR}/x11/xauth \ setxkbmap:${PORTSDIR}/x11/setxkbmap \ - pulseaudio:${PORTSDIR}/audio/pulseaudio + pulseaudio:${PORTSDIR}/audio/pulseaudio \ + ssh-askpass:${PORTSDIR}/security/openssh-askpass LIB_DEPENDS= libx264.so:${PORTSDIR}/multimedia/x264 \ libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \ libvpx.so:${PORTSDIR}/multimedia/libvpx Modified: head/x11/xpra/distinfo ============================================================================== --- head/x11/xpra/distinfo Sat Jan 25 22:41:42 2014 (r341132) +++ head/x11/xpra/distinfo Sat Jan 25 22:58:11 2014 (r341133) @@ -1,2 +1,2 @@ -SHA256 (xpra-0.10.10.tar.bz2) = 15a3fce752dabfc53eee60f3ee1ddebb3d9d5dc206fa667971aa7c28cd2ce5c7 -SIZE (xpra-0.10.10.tar.bz2) = 672848 +SHA256 (xpra-0.11.1.tar.bz2) = 4aaf475d65d4a08aca8ea639faf4cdec7f17121b038d9e0cff4ec93fcd68b5a7 +SIZE (xpra-0.11.1.tar.bz2) = 1008892 Modified: head/x11/xpra/pkg-plist ============================================================================== --- head/x11/xpra/pkg-plist Sat Jan 25 22:41:42 2014 (r341132) +++ head/x11/xpra/pkg-plist Sat Jan 25 22:58:11 2014 (r341133) @@ -23,12 +23,36 @@ %%DATADIR%%/icons/unticked-small.png %%DATADIR%%/icons/xpra.png %%DATADIR%%/webm/LICENSE +%%DATADIR%%/www/favicon.ico +%%DATADIR%%/www/favicon.png +%%DATADIR%%/www/include/bencode.js +%%DATADIR%%/www/include/close.png +%%DATADIR%%/www/include/deflate.min.js +%%DATADIR%%/www/include/inflate.min.js +%%DATADIR%%/www/include/keycodes.js +%%DATADIR%%/www/include/maximize.png +%%DATADIR%%/www/include/minimize.png +%%DATADIR%%/www/include/protocol.js +%%DATADIR%%/www/include/shapes.js +%%DATADIR%%/www/include/util.js +%%DATADIR%%/www/include/web-socket-js/README.txt +%%DATADIR%%/www/include/web-socket-js/WebSocketMain.swf +%%DATADIR%%/www/include/web-socket-js/swfobject.js +%%DATADIR%%/www/include/web-socket-js/web_socket.js +%%DATADIR%%/www/include/websock.js +%%DATADIR%%/www/include/webutil.js +%%DATADIR%%/www/include/window.js +%%DATADIR%%/www/index.html @unexec if cmp -s %D/etc/xpra/xpra.conf.sample %D/etc/xpra/xpra.conf ; then rm -f %D/etc/xpra/xpra.conf; fi @unexec if cmp -s %D/etc/xpra/xorg.conf.sample %D/etc/xpra/xorg.conf ; then rm -f %D/etc/xpra/xorg.conf; fi %%ETCDIR%%/xpra.conf.sample @exec if [ ! -f %D/etc/xpra/xpra.conf ]; then cp -p %D/%F %B/xpra.conf; fi %%ETCDIR%%/xorg.conf.sample @exec if [ ! -f %D/etc/xpra/xorg.conf ]; then cp -p %D/%F %B/xorg.conf; fi +%%PYTHON_LIBDIR%%/site-packages/xpra-0.11.1-py2.7.egg-info/PKG-INFO +%%PYTHON_LIBDIR%%/site-packages/xpra-0.11.1-py2.7.egg-info/SOURCES.txt +%%PYTHON_LIBDIR%%/site-packages/xpra-0.11.1-py2.7.egg-info/dependency_links.txt +%%PYTHON_LIBDIR%%/site-packages/xpra-0.11.1-py2.7.egg-info/top_level.txt %%PYTHON_LIBDIR%%/site-packages/xpra/__init__.py %%PYTHON_LIBDIR%%/site-packages/xpra/__init__.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/__init__.pyo @@ -80,6 +104,9 @@ %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2/client.py %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2/client.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2/client.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2/client_launcher.py +%%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2/client_launcher.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2/client_launcher.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2/client_window.py %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2/client_window.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2/client_window.pyo @@ -128,9 +155,6 @@ %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk_base/cairo_backing.py %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk_base/cairo_backing.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk_base/cairo_backing.pyo -%%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk_base/client_launcher.py -%%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk_base/client_launcher.pyc -%%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk_base/client_launcher.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk_base/gtk_client_base.py %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk_base/gtk_client_base.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk_base/gtk_client_base.pyo @@ -216,6 +240,19 @@ %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/codec_constants.py %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/codec_constants.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/codec_constants.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_cython/__init__.py +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_cython/__init__.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_cython/__init__.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_cython/colorspace_converter.so +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl/__init__.py +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl/__init__.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl/__init__.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl/colorspace_converter.py +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl/colorspace_converter.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl/colorspace_converter.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl/opencl_kernels.py +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl/opencl_kernels.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl/opencl_kernels.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_swscale/__init__.py %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_swscale/__init__.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_swscale/__init__.pyo @@ -231,9 +268,12 @@ %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/image_wrapper.py %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/image_wrapper.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/image_wrapper.pyo -%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/video_enc_pipeline.py -%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/video_enc_pipeline.pyc -%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/video_enc_pipeline.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/loader.py +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/loader.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/loader.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/video_helper.py +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/video_helper.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/codecs/video_helper.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/vpx/__init__.py %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/vpx/__init__.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/vpx/__init__.pyo @@ -325,15 +365,25 @@ %%PYTHON_LIBDIR%%/site-packages/xpra/net/__init__.py %%PYTHON_LIBDIR%%/site-packages/xpra/net/__init__.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/net/__init__.pyo -%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode.py -%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode.pyc -%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/net/avahi_publisher.py +%%PYTHON_LIBDIR%%/site-packages/xpra/net/avahi_publisher.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/net/avahi_publisher.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode/__init__.py +%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode/__init__.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode/__init__.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode/bencode.py +%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode/bencode.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode/bencode.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode/cython_bencode.so %%PYTHON_LIBDIR%%/site-packages/xpra/net/bytestreams.py %%PYTHON_LIBDIR%%/site-packages/xpra/net/bytestreams.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/net/bytestreams.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/net/mmap_pipe.py %%PYTHON_LIBDIR%%/site-packages/xpra/net/mmap_pipe.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/net/mmap_pipe.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/net/net_util.py +%%PYTHON_LIBDIR%%/site-packages/xpra/net/net_util.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/net/net_util.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/net/protocol.py %%PYTHON_LIBDIR%%/site-packages/xpra/net/protocol.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/net/protocol.pyo @@ -377,6 +427,9 @@ %%PYTHON_LIBDIR%%/site-packages/xpra/platform/shadow_server.py %%PYTHON_LIBDIR%%/site-packages/xpra/platform/shadow_server.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/platform/shadow_server.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/platform/ui_thread_watcher.py +%%PYTHON_LIBDIR%%/site-packages/xpra/platform/ui_thread_watcher.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/platform/ui_thread_watcher.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/platform/xposix/__init__.py %%PYTHON_LIBDIR%%/site-packages/xpra/platform/xposix/__init__.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/platform/xposix/__init__.pyo @@ -422,27 +475,60 @@ %%PYTHON_LIBDIR%%/site-packages/xpra/server/__init__.py %%PYTHON_LIBDIR%%/site-packages/xpra/server/__init__.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/server/__init__.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/__init__.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/__init__.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/__init__.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/allow_auth.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/allow_auth.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/allow_auth.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/fail_auth.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/fail_auth.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/fail_auth.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/file_auth.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/file_auth.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/file_auth.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/pam.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/pam.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/pam.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/pam_auth.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/pam_auth.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/pam_auth.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/sys_auth_base.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/sys_auth_base.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/sys_auth_base.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/win32_auth.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/win32_auth.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/auth/win32_auth.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/background_worker.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/background_worker.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/background_worker.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/server/batch_config.py %%PYTHON_LIBDIR%%/site-packages/xpra/server/batch_config.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/server/batch_config.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/server/batch_delay_calculator.py %%PYTHON_LIBDIR%%/site-packages/xpra/server/batch_delay_calculator.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/server/batch_delay_calculator.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/gtk_root_window_model.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/gtk_root_window_model.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/gtk_root_window_model.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/server/gtk_server_base.py %%PYTHON_LIBDIR%%/site-packages/xpra/server/gtk_server_base.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/server/gtk_server_base.pyo -%%PYTHON_LIBDIR%%/site-packages/xpra/server/gtk_shadow_server_base.py -%%PYTHON_LIBDIR%%/site-packages/xpra/server/gtk_shadow_server_base.pyc -%%PYTHON_LIBDIR%%/site-packages/xpra/server/gtk_shadow_server_base.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/server/proxy.py %%PYTHON_LIBDIR%%/site-packages/xpra/server/proxy.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/server/proxy.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/proxy_server.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/proxy_server.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/proxy_server.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/server/region.py %%PYTHON_LIBDIR%%/site-packages/xpra/server/region.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/server/region.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/server/server_base.py %%PYTHON_LIBDIR%%/site-packages/xpra/server/server_base.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/server/server_base.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/server/server_core.py +%%PYTHON_LIBDIR%%/site-packages/xpra/server/server_core.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/server/server_core.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/server/server_uuid.py %%PYTHON_LIBDIR%%/site-packages/xpra/server/server_uuid.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/server/server_uuid.pyo @@ -519,6 +605,13 @@ %%PYTHON_LIBDIR%%/site-packages/xpra/x11/bindings/randr_bindings.so %%PYTHON_LIBDIR%%/site-packages/xpra/x11/bindings/wait_for_x_server.so %%PYTHON_LIBDIR%%/site-packages/xpra/x11/bindings/window_bindings.so +%%PYTHON_LIBDIR%%/site-packages/xpra/x11/bindings/ximage.so +%%PYTHON_LIBDIR%%/site-packages/xpra/x11/dbus_common.py +%%PYTHON_LIBDIR%%/site-packages/xpra/x11/dbus_common.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/x11/dbus_common.pyo +%%PYTHON_LIBDIR%%/site-packages/xpra/x11/dbus_helper.py +%%PYTHON_LIBDIR%%/site-packages/xpra/x11/dbus_helper.pyc +%%PYTHON_LIBDIR%%/site-packages/xpra/x11/dbus_helper.pyo %%PYTHON_LIBDIR%%/site-packages/xpra/x11/dbus_notifications_forwarder.py %%PYTHON_LIBDIR%%/site-packages/xpra/x11/dbus_notifications_forwarder.pyc %%PYTHON_LIBDIR%%/site-packages/xpra/x11/dbus_notifications_forwarder.pyo @@ -595,11 +688,13 @@ man/man1/xpra_launcher.1.gz @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/x11 @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/sound @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/server/stats +@dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/server/auth @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/server @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/scripts @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/platform/xposix @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/platform @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/net/rencode +@dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/net/bencode @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/net @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/keyboard @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/gtk_common @@ -610,6 +705,8 @@ man/man1/xpra_launcher.1.gz @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/dec_avcodec @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_swscale @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/argb +@dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_opencl +@dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/codecs/csc_cython @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/codecs @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/clipboard @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/client/qt4 @@ -619,10 +716,14 @@ man/man1/xpra_launcher.1.gz @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/client/gtk2 @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/client/gl @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra/client +@dirrm %%PYTHON_LIBDIR%%/site-packages/xpra-0.11.1-py2.7.egg-info @dirrm %%PYTHON_LIBDIR%%/site-packages/xpra @dirrm %%PYTHON_LIBDIR%%/site-packages @dirrm %%PYTHON_LIBDIR%% @dirrm %%LOCALBASE%%/%%ETCDIR%% @dirrm %%DATADIR%%/webm @dirrm %%DATADIR%%/icons +@dirrm %%DATADIR%%/www/include/web-socket-js +@dirrm %%DATADIR%%/www/include +@dirrm %%DATADIR%%/www @dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 23:07:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9ADF3D9; Sat, 25 Jan 2014 23:07:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 861D2104F; Sat, 25 Jan 2014 23:07:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PN7oHi070075; Sat, 25 Jan 2014 23:07:50 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PN7nc4070072; Sat, 25 Jan 2014 23:07:49 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252307.s0PN7nc4070072@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 23:07:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341134 - in head/lang/tolua: . 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.17 Precedence: list List-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, 25 Jan 2014 23:07:50 -0000 Author: bapt Date: Sat Jan 25 23:07:49 2014 New Revision: 341134 URL: http://svnweb.freebsd.org/changeset/ports/341134 QAT: https://qat.redports.org/buildarchive/r341134/ Log: Update to 5.2.0 Bring under lua@ maintainership [1] Support stage Use MAKE_ARGS instead of patching config Convert to USES=lua Approved by: edwin@ [1] Deleted: head/lang/tolua/files/ Modified: head/lang/tolua/Makefile head/lang/tolua/distinfo head/lang/tolua/pkg-descr head/lang/tolua/pkg-plist Modified: head/lang/tolua/Makefile ============================================================================== --- head/lang/tolua/Makefile Sat Jan 25 22:58:11 2014 (r341133) +++ head/lang/tolua/Makefile Sat Jan 25 23:07:49 2014 (r341134) @@ -2,46 +2,30 @@ # $FreeBSD$ PORTNAME= tolua -PORTVERSION= 5.1.3 +PORTVERSION= 5.2.0 CATEGORIES= lang -MASTER_SITES= ftp://ftp.tecgraf.puc-rio.br/pub/users/celes/tolua/ \ - http://www.tecgraf.puc-rio.br/~celes/tolua/ +MASTER_SITES= http://www.tecgraf.puc-rio.br/~celes/tolua/ \ + ftp://ftp.tecgraf.puc-rio.br/pub/users/celes/tolua/ -MAINTAINER= edwin@mavetju.org +MAINTAINER= lua@FreeBSD.org COMMENT= toLua: accessing C/C++ code from Lua -USE_GMAKE= yes -USE_LUA= 5.1 -WRKSRC= ${WRKDIR}/${PORTNAME}-5.1.3 - -NO_STAGE= yes -post-extract: - ${RM} ${WRKSRC}/src/bin/tolua_lua.o +USES= gmake lua + +MAKE_ARGS= CC="${CC}" CCPP="${CXX}" \ + LUAINC="${LUA_INCDIR}" \ + LUALIB="${LUA_LIBDIR}" \ + WARN="${CFLAGS}" post-patch: @${REINPLACE_CMD} -e 's|make|$${MAKE}|' ${WRKSRC}/${MAKEFILE} - @${REINPLACE_CMD} -Ee \ - 's|^(CC=).*|\1 ${CC}|; \ - s|^(CCPP =).*|\1 ${CXX}|; \ - s|^(LUA=).*|\1 ${LOCALBASE}|; \ - s|^(LUA(INC\|LIB)=).*|\1 $${LUA_\2DIR}|; \ - s|^(CPPFLAGS)(=.*)|\1+\2 -lstdc++|; \ - s|^(CFLAGS)(=.*)|\1+\2|;' \ - ${WRKSRC}/config + @${REINPLACE_CMD} -e 's|llua|llua-${LUA_VER}|' \ + ${WRKSRC}/src/bin/${MAKEFILE} \ + ${WRKSRC}/src/tests/${MAKEFILE} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/tolua ${LUA_BINDIR} - ${LN} -sf ${LUA_SUBDIR}/tolua ${PREFIX}/bin/tolua-${LUA_VER} - ${INSTALL_DATA} ${WRKSRC}/include/tolua.h ${LUA_INCDIR} - ${INSTALL_DATA} ${WRKSRC}/lib/libtolua.a ${LUA_LIBDIR} - -.include - -.if ${ARCH} == "powerpc" -BROKEN= Does not compile on powerpc -.endif -.if ${ARCH} == "sparc64" && ${OSVERSION} > 900000 -BROKEN= Does not install on sparc64-9 -.endif + ${INSTALL_PROGRAM} ${WRKSRC}/bin/tolua ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/include/tolua.h ${STAGEDIR}${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/lib/libtolua.a ${STAGEDIR}${PREFIX}/lib -.include +.include Modified: head/lang/tolua/distinfo ============================================================================== --- head/lang/tolua/distinfo Sat Jan 25 22:58:11 2014 (r341133) +++ head/lang/tolua/distinfo Sat Jan 25 23:07:49 2014 (r341134) @@ -1,2 +1,2 @@ -SHA256 (tolua-5.1.3.tar.gz) = 916fd03732a677d75b515c6b804b736b9b529b5e6ab4e954e281b553a61f9596 -SIZE (tolua-5.1.3.tar.gz) = 271064 +SHA256 (tolua-5.2.0.tar.gz) = f3d3836e9d2f11177fb3230ebb4c1ad8be74eb87fa95ce03a79d10df45ef89c3 +SIZE (tolua-5.2.0.tar.gz) = 79025 Modified: head/lang/tolua/pkg-descr ============================================================================== --- head/lang/tolua/pkg-descr Sat Jan 25 22:58:11 2014 (r341133) +++ head/lang/tolua/pkg-descr Sat Jan 25 23:07:49 2014 (r341134) @@ -6,5 +6,4 @@ maps C/C++ constants, external variables classes, and methods to Lua. It also provides facilities to create Lua modules. -Author: Waldemar Celes WWW: http://www.tecgraf.puc-rio.br/~celes/tolua/ Modified: head/lang/tolua/pkg-plist ============================================================================== --- head/lang/tolua/pkg-plist Sat Jan 25 22:58:11 2014 (r341133) +++ head/lang/tolua/pkg-plist Sat Jan 25 23:07:49 2014 (r341134) @@ -1,4 +1,3 @@ -%%LUA_BINDIR%%/tolua -bin/tolua-%%LUA_VER%% -%%LUA_LIBDIR%%/libtolua.a -%%LUA_INCDIR%%/tolua.h +bin/tolua +lib/libtolua.a +include/tolua.h From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 23:08:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 09FBA1B1; Sat, 25 Jan 2014 23:08:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D0E5C1051; Sat, 25 Jan 2014 23:08:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PN80Dm070203; Sat, 25 Jan 2014 23:08:00 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PN808j070196; Sat, 25 Jan 2014 23:08:00 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201401252308.s0PN808j070196@svn.freebsd.org> From: TAKATSU Tomonari Date: Sat, 25 Jan 2014 23:08:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341135 - head/devel/rubygem-rainbow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 23:08:01 -0000 Author: tota Date: Sat Jan 25 23:07:59 2014 New Revision: 341135 URL: http://svnweb.freebsd.org/changeset/ports/341135 QAT: https://qat.redports.org/buildarchive/r341135/ Log: - Update to 2.0.0 - Add LICENSE - Replace tab with a single space after WWW: in pkg-descr Modified: head/devel/rubygem-rainbow/Makefile head/devel/rubygem-rainbow/distinfo head/devel/rubygem-rainbow/pkg-descr Modified: head/devel/rubygem-rainbow/Makefile ============================================================================== --- head/devel/rubygem-rainbow/Makefile Sat Jan 25 23:07:49 2014 (r341134) +++ head/devel/rubygem-rainbow/Makefile Sat Jan 25 23:07:59 2014 (r341135) @@ -2,13 +2,15 @@ # $FreeBSD$ PORTNAME= rainbow -PORTVERSION= 1.1.4 +PORTVERSION= 2.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Extends ruby String class enabling coloring text on ANSI terminals +LICENSE= MIT + USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes Modified: head/devel/rubygem-rainbow/distinfo ============================================================================== --- head/devel/rubygem-rainbow/distinfo Sat Jan 25 23:07:49 2014 (r341134) +++ head/devel/rubygem-rainbow/distinfo Sat Jan 25 23:07:59 2014 (r341135) @@ -1,2 +1,2 @@ -SHA256 (rubygem/rainbow-1.1.4.gem) = 2875e077a2de0dad4671b6a6fc2ef5055f5f2c80a4333135f3151a54823651e1 -SIZE (rubygem/rainbow-1.1.4.gem) = 7680 +SHA256 (rubygem/rainbow-2.0.0.gem) = 641dee203fbee5ef5304def635e5abbb56ad43f76329a9af455cc018a5fb5637 +SIZE (rubygem/rainbow-2.0.0.gem) = 14336 Modified: head/devel/rubygem-rainbow/pkg-descr ============================================================================== --- head/devel/rubygem-rainbow/pkg-descr Sat Jan 25 23:07:49 2014 (r341134) +++ head/devel/rubygem-rainbow/pkg-descr Sat Jan 25 23:07:59 2014 (r341135) @@ -13,4 +13,4 @@ Rainbow adds following methods to String * inverse * hide. -WWW: https://github.com/sickill/rainbow +WWW: https://github.com/sickill/rainbow From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 23:08:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D554D298; Sat, 25 Jan 2014 23:08:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C0804105C; Sat, 25 Jan 2014 23:08:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PN8diF070388; Sat, 25 Jan 2014 23:08:39 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PN8d35070385; Sat, 25 Jan 2014 23:08:39 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201401252308.s0PN8d35070385@svn.freebsd.org> From: Johan van Selst Date: Sat, 25 Jan 2014 23:08:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341136 - in head/games/wolfpack: . 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.17 Precedence: list List-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, 25 Jan 2014 23:08:40 -0000 Author: johans Date: Sat Jan 25 23:08:38 2014 New Revision: 341136 URL: http://svnweb.freebsd.org/changeset/ports/341136 QAT: https://qat.redports.org/buildarchive/r341136/ Log: Enable stage support Added: head/games/wolfpack/files/patch-Make.mk (contents, props changed) Modified: head/games/wolfpack/Makefile head/games/wolfpack/pkg-plist Modified: head/games/wolfpack/Makefile ============================================================================== --- head/games/wolfpack/Makefile Sat Jan 25 23:07:59 2014 (r341135) +++ head/games/wolfpack/Makefile Sat Jan 25 23:08:38 2014 (r341136) @@ -27,11 +27,6 @@ GROUPS= wolfpack USE_RC_SUBR= wolfpack SUB_FILES+= pkg-message -MAN6= empire.6 emp_server.6 empdump.6 empsched.6 \ - fairland.6 files.6 pconfig.6 - -NO_STAGE= yes - .include post-patch: @@ -43,12 +38,13 @@ post-patch: .endif post-install: - @${INSTALL_DATA} ${WRKSRC}/README ${DATADIR} - @${LN} -s ${BINDIR}/emp_server ${PREFIX}/bin/emp_server - @${LN} -s ${BINDIR}/empire ${PREFIX}/bin/emp_client - @${PREFIX}/lib/wolfpack/pconfig > ${ETCDIR}/econfig.orig - @${CHOWN} -R ${USERS}:${GROUPS} ${DATADIR} ${ETCDIR} ${VARDIR} - @${CHMOD} -R u+w,o-rx ${DATADIR} ${ETCDIR} ${VARDIR} - @${CAT} ${WRKDIR}/pkg-message + @${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DATADIR} + @${LN} -s ${BINDIR}/emp_server ${STAGEDIR}${PREFIX}/bin/emp_server + @${LN} -s ${BINDIR}/empire ${STAGEDIR}${PREFIX}/bin/emp_client + @${PREFIX}/lib/wolfpack/pconfig > ${STAGEDIR}${ETCDIR}/econfig.orig + @${CHOWN} -R ${USERS}:${GROUPS} ${STAGEDIR}${DATADIR} \ + ${STAGEDIR}${ETCDIR} ${STAGEDIR}${VARDIR} + @${CHMOD} -R u+w,o-rx ${STAGEDIR}${DATADIR} \ + ${STAGEDIR}${ETCDIR} ${STAGEDIR}${VARDIR} .include Added: head/games/wolfpack/files/patch-Make.mk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/wolfpack/files/patch-Make.mk Sat Jan 25 23:08:38 2014 (r341136) @@ -0,0 +1,82 @@ +--- Make.mk.orig 2013-08-01 21:40:42.000000000 +0200 ++++ Make.mk 2014-01-26 00:04:27.000000000 +0100 +@@ -65,12 +65,12 @@ info := $(topics) $(subjects) all TOP + scripts := $(srcdir)/src/scripts + depcomp := $(SHELL) $(srcdir)/depcomp + tarball := $(SHELL) -e $(scripts)/tarball +-econfig := $(sysconfdir)/empire/econfig +-schedule := $(sysconfdir)/empire/schedule +-gamedir := $(localstatedir)/empire +-builtindir := $(datadir)/empire/builtin +-einfodir := $(datadir)/empire/info.nr +-ehtmldir := $(datadir)/empire/info.html ++econfig := $(sysconfdir)/wolfpack/econfig ++schedule := $(sysconfdir)/wolfpack/schedule ++gamedir := $(localstatedir)/wolfpack ++builtindir := $(datadir)/wolfpack/builtin ++einfodir := $(datadir)/wolfpack/info.nr ++ehtmldir := $(datadir)/wolfpack/info.html + client/w32 := arpa/inet.h netdb.h netinet/in.h sys/time.h sys/socket.h \ + sys/uio.h unistd.h w32io.c w32sockets.c w32types.h + +@@ -198,41 +198,41 @@ distclean: clean + + .PHONY: install + install: all installdirs +- $(INSTALL_PROGRAM) $(util) $(server) $(sbindir) +- $(INSTALL_PROGRAM) $(client) $(bindir) +- $(INSTALL) -m 444 $(addprefix $(srcdir)/, $(builtins)) $(builtindir) +- $(INSTALL_DATA) $(info.nr) $(einfodir) +- $(INSTALL_DATA) $(addprefix $(srcdir)/, $(man6)) $(mandir)/man6 +- sed -e '1,/^$$/d' -e 's/^/# /g' <$(srcdir)/doc/schedule >$(schedule).dist +- echo >>$(schedule).dist +- echo 'every 10 minutes' >>$(schedule).dist +- [ -e $(schedule) ] || mv $(schedule).dist $(schedule) +- if [ -e $(econfig) ]; then \ ++ $(INSTALL_PROGRAM) $(util) $(server) $(DESTDIR)$(sbindir) ++ $(INSTALL_PROGRAM) $(client) $(DESTDIR)$(bindir) ++ $(INSTALL) -m 444 $(addprefix $(srcdir)/, $(builtins)) $(DESTDIR)$(builtindir) ++ $(INSTALL_DATA) $(info.nr) $(DESTDIR)$(einfodir) ++ $(INSTALL_DATA) $(addprefix $(srcdir)/, $(man6)) $(DESTDIR)$(mandir)/man6 ++ sed -e '1,/^$$/d' -e 's/^/# /g' <$(srcdir)/doc/schedule >$(DESTDIR)$(schedule).dist ++ echo >>$(DESTDIR)$(schedule).dist ++ echo 'every 10 minutes' >>$(DESTDIR)$(schedule).dist ++ [ -e $(DESTDIR)$(schedule) ] || mv $(DESTDIR)$(schedule).dist $(DESTDIR)$(schedule) ++ if [ -e $(DESTDIR)$(econfig) ]; then \ + echo "Attempting to update your econfig"; \ +- if src/util/pconfig $(econfig) >$(econfig).dist; then \ +- if cmp -s $(econfig) $(econfig).dist; then \ ++ if src/util/pconfig $(DESTDIR)$(econfig) >$(DESTDIR)$(econfig).dist; then \ ++ if cmp -s $(DESTDIR)$(econfig) $(DESTDIR)$(econfig).dist; then \ + echo "$(econfig) unchanged"; \ +- rm $(econfig).dist; \ ++ rm $(DESTDIR)$(econfig).dist; \ + fi; \ + else \ + echo "Your $(econfig) doesn't work"; \ +- src/util/pconfig >$(econfig).dist; \ ++ src/util/pconfig >$(DESTDIR)$(econfig).dist; \ + fi; \ +- if [ -e $(econfig).dist ]; then \ ++ if [ -e $(DESTDIR)$(econfig).dist ]; then \ + echo "Check out $(econfig).dist"; \ + fi; \ + else \ +- src/util/pconfig >$(econfig); \ ++ src/util/pconfig >$(DESTDIR)$(econfig); \ + fi + + .PHONY: installdirs + installdirs: +- mkdir -p $(sbindir) $(bindir) $(builtindir) $(einfodir) $(mandir)/man6 $(dir $(econfig)) $(gamedir) ++ mkdir -p $(DESTDIR)$(sbindir) $(DESTDIR)$(bindir) $(DESTDIR)$(builtindir) $(DESTDIR)$(einfodir) $(DESTDIR)$(mandir)/man6 $(dir $(DESTDIR)$(econfig)) $(DESTDIR)$(gamedir) + + .PHONY: install-html + install-html: html +- mkdir -p $(ehtmldir) +- $(INSTALL_DATA) $(info.html) $(ehtmldir) ++ mkdir -p $(DESTDIR)$(ehtmldir) ++ $(INSTALL_DATA) $(info.html) $(DESTDIR)$(ehtmldir) + + .PHONY: uninstall + uninstall: Modified: head/games/wolfpack/pkg-plist ============================================================================== --- head/games/wolfpack/pkg-plist Sat Jan 25 23:07:59 2014 (r341135) +++ head/games/wolfpack/pkg-plist Sat Jan 25 23:08:38 2014 (r341136) @@ -7,6 +7,13 @@ lib/wolfpack/empsched lib/wolfpack/pconfig lib/wolfpack/files lib/wolfpack/fairland +man/man6/empire.6.gz +man/man6/emp_server.6.gz +man/man6/empdump.6.gz +man/man6/empsched.6.gz +man/man6/fairland.6.gz +man/man6/files.6.gz +man/man6/pconfig.6.gz %%DATADIR%%/README %%DATADIR%%/builtin/infra.config %%DATADIR%%/builtin/item.config @@ -304,3 +311,4 @@ etc/wolfpack/econfig.orig @dirrm lib/wolfpack @dirrmtry etc/wolfpack @dirrmtry var/wolfpack +@dirrmtry var From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 23:25:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 602FB5A3; Sat, 25 Jan 2014 23:25:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4B2821175; Sat, 25 Jan 2014 23:25:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PNPF8Z077685; Sat, 25 Jan 2014 23:25:15 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PNPF3d077684; Sat, 25 Jan 2014 23:25:15 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252325.s0PNPF3d077684@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 23:25:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341137 - head/games/pushover X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 23:25:16 -0000 Author: bapt Date: Sat Jan 25 23:25:14 2014 New Revision: 341137 URL: http://svnweb.freebsd.org/changeset/ports/341137 QAT: https://qat.redports.org/buildarchive/r341137/ Log: Switch to use lua 5.2 Modified: head/games/pushover/Makefile Modified: head/games/pushover/Makefile ============================================================================== --- head/games/pushover/Makefile Sat Jan 25 23:08:38 2014 (r341136) +++ head/games/pushover/Makefile Sat Jan 25 23:25:14 2014 (r341137) @@ -3,11 +3,12 @@ PORTNAME= pushover PORTVERSION= 0.0.5 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/Pushover/${PORTVERSION} MAINTAINER= amdmi3@FreeBSD.org -COMMENT= A puzzle game where the goal is to push over all dominoes +COMMENT= Puzzle game where the goal is to push over all dominoes LICENSE= GPLv3 @@ -15,10 +16,9 @@ LIB_DEPENDS= libpng.so:${PORTSDIR}/graph GNU_CONFIGURE= yes USE_SDL= sdl mixer ttf -USE_LUA= 5.1 CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -USES= gettext gmake pkgconfig +USES= gettext gmake pkgconfig lua PORTDOCS= * PORTDATA= * @@ -33,6 +33,6 @@ DESKTOP_ENTRIES="Pushover" \ OPTIONS_DEFINE= DOCS post-patch: - @${REINPLACE_CMD} -e 's|lua5.1|lua-5.1|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|lua5.1|lua-${LUA_VER}|' ${WRKSRC}/configure .include From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 23:39:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF41D82D; Sat, 25 Jan 2014 23:39:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BA7221233; Sat, 25 Jan 2014 23:39:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PNdL8I081825; Sat, 25 Jan 2014 23:39:21 GMT (envelope-from nemysis@svn.freebsd.org) Received: (from nemysis@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PNdLJ5081824; Sat, 25 Jan 2014 23:39:21 GMT (envelope-from nemysis@svn.freebsd.org) Message-Id: <201401252339.s0PNdLJ5081824@svn.freebsd.org> From: Rusmir Dusko Date: Sat, 25 Jan 2014 23:39:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341138 - head/games/pysol X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 23:39:21 -0000 Author: nemysis Date: Sat Jan 25 23:39:21 2014 New Revision: 341138 URL: http://svnweb.freebsd.org/changeset/ports/341138 QAT: https://qat.redports.org/buildarchive/r341138/ Log: - Mark DEPRECATED, set EXPIRATION_DATE Modified: head/games/pysol/Makefile Modified: head/games/pysol/Makefile ============================================================================== --- head/games/pysol/Makefile Sat Jan 25 23:25:14 2014 (r341137) +++ head/games/pysol/Makefile Sat Jan 25 23:39:21 2014 (r341138) @@ -23,6 +23,9 @@ NO_BUILD= yes MAN6= pysol.6 +DEPRECATED= Broken, abondonware, use pysolfc +EXPIRATION_DATE= 2014-03-27 + NO_STAGE= yes post-patch: @${RM} ${WRKSRC}/src/tk/soundoptionsdialog.py.orig From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 23:44:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1BB6B9DC; Sat, 25 Jan 2014 23:44:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0723C12BE; Sat, 25 Jan 2014 23:44:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PNifVB085119; Sat, 25 Jan 2014 23:44:41 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PNif8U085114; Sat, 25 Jan 2014 23:44:41 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252344.s0PNif8U085114@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 23:44:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341139 - head/x11-wm/i3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 23:44:42 -0000 Author: bapt Date: Sat Jan 25 23:44:40 2014 New Revision: 341139 URL: http://svnweb.freebsd.org/changeset/ports/341139 QAT: https://qat.redports.org/buildarchive/r341139/ Log: Update to 4.7.2 Modified: head/x11-wm/i3/Makefile head/x11-wm/i3/distinfo head/x11-wm/i3/pkg-plist Modified: head/x11-wm/i3/Makefile ============================================================================== --- head/x11-wm/i3/Makefile Sat Jan 25 23:39:21 2014 (r341138) +++ head/x11-wm/i3/Makefile Sat Jan 25 23:44:40 2014 (r341139) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= i3 -DISTVERSION= 4.7 +DISTVERSION= 4.7.2 CATEGORIES= x11-wm MASTER_SITES= http://i3wm.org/downloads/ Modified: head/x11-wm/i3/distinfo ============================================================================== --- head/x11-wm/i3/distinfo Sat Jan 25 23:39:21 2014 (r341138) +++ head/x11-wm/i3/distinfo Sat Jan 25 23:44:40 2014 (r341139) @@ -1,2 +1,2 @@ -SHA256 (i3-4.7.tar.bz2) = e29acafdf7c7d3483c13ea80e45b407f62244b355e425c7161fdfc915c9f83c5 -SIZE (i3-4.7.tar.bz2) = 896723 +SHA256 (i3-4.7.2.tar.bz2) = 6fe4565e364a5017eb6a89ce104d6bb21afcdb4bb0b3bee9526781fa64b1f393 +SIZE (i3-4.7.2.tar.bz2) = 897398 Modified: head/x11-wm/i3/pkg-plist ============================================================================== --- head/x11-wm/i3/pkg-plist Sat Jan 25 23:39:21 2014 (r341138) +++ head/x11-wm/i3/pkg-plist Sat Jan 25 23:44:40 2014 (r341139) @@ -9,6 +9,7 @@ bin/i3-nagbar bin/i3-sensible-editor bin/i3-sensible-pager bin/i3-sensible-terminal +bin/i3-with-shmlog bin/i3bar %%ETCDIR%%/config %%ETCDIR%%/config.keycodes @@ -27,6 +28,7 @@ man/man1/i3.1.gz man/man1/i3bar.1.gz share/applications/i3.desktop share/xsessions/i3.desktop +share/xsessions/i3-with-shmlog.desktop @dirrmtry share/xsessions @dirrm include/i3 @dirrm %%ETCDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Jan 25 23:54:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C177CAA; Sat, 25 Jan 2014 23:54:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8709B1352; Sat, 25 Jan 2014 23:54:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0PNsGqJ088904; Sat, 25 Jan 2014 23:54:16 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0PNsGPg088903; Sat, 25 Jan 2014 23:54:16 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401252354.s0PNsGPg088903@svn.freebsd.org> From: Baptiste Daroussin Date: Sat, 25 Jan 2014 23:54:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341141 - head/devel/yajl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-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, 25 Jan 2014 23:54:16 -0000 Author: bapt Date: Sat Jan 25 23:54:15 2014 New Revision: 341141 URL: http://svnweb.freebsd.org/changeset/ports/341141 QAT: https://qat.redports.org/buildarchive/r341141/ Log: License is acually ISC Modified: head/devel/yajl/Makefile Modified: head/devel/yajl/Makefile ============================================================================== --- head/devel/yajl/Makefile Sat Jan 25 23:45:17 2014 (r341140) +++ head/devel/yajl/Makefile Sat Jan 25 23:54:15 2014 (r341141) @@ -12,7 +12,7 @@ USE_GITHUB= yes GH_ACCOUNT= lloyd GH_COMMIT= fee1ebe -LICENSE= BSD +LICENSE= ISCL USE_LDCONFIG= yes USES= cmake